blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2 values | repo_name stringlengths 6 115 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 21 values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 141k 586M ⌀ | star_events_count int64 0 30.4k | fork_events_count int64 0 9.67k | gha_license_id stringclasses 8 values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 50 values | src_encoding stringclasses 23 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 5 10.4M | extension stringclasses 29 values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
5afb891434d40dbf2193c72d4432094e23edaee0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2345/CH6/EX6.8/Ex6_8.sce | 8dba475cb7d368946d8958a7e571fc4bf64385a1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 704 | sce | Ex6_8.sce | //Finding losses
//Example 6.8(pg 215)
clc
clear
m=10//mass in kg
T1=20//total loss in watts
f1=50//frequency in c/s
T2=35//total loss in watts
f2=75//frequency in c/s
//both have same peak flux density
//total loss=hysteresis loss+ Eddy current loss
//all quantities except frequency are constant
//so Total loss=Af+Bf^2
//let c1 and c2 be constants such that total loss=c1*f + c2*f^2
c2=[T2-(T1*f2/f1)]/(f2^2-f1*f2)
c1=(T1-c2*f1^2)/f1
k=c1/c2//hysteresis loss/eddy current loss
H50=T1*k/101//hysteresis loss at 50 c/s
E50=T1-H50//eddy current loss at 50 c/s
printf('Thus hysteresis loss at 50 c/s is %3.1f Watts \n',H50)
printf('And Eddy current loss at 50c/s is %3.1f Watts',E50)
|
38fa635bae25f3d5e0cb44f13b5ad10186c30def | 449d555969bfd7befe906877abab098c6e63a0e8 | /3756/CH1/EX1.11/Ex1_11.sce | 3299913faed0d8162c5ebf8cee715f009bfbb9d0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 290 | sce | Ex1_11.sce | clc
//
//
//
//Variable declaration
d=3.6125*10**-3 //slit separation
D=1 //Distance from Screen
lambdaa=5870*10**-10 //Wavelength
//Calculations
Beta=(D*lambdaa*10**4)/d
//Result
printf("\n The Fringe width is %0.3f *10**-4 m",Beta)
|
cfafa08ac103a2b48afcc630b897bc4397855efa | 449d555969bfd7befe906877abab098c6e63a0e8 | /2795/CH13/EX13.10/Ex13_10.sce | c995684ad519580b8ec63cea56b21f06df918397 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 874 | sce | Ex13_10.sce | // Scilab Code Ex13.10: Page-509(2014)
clc; clear;
k = 1.38e-023; // Boltzmann constant, J/K
e = 1.6e-019; // Energy equivalent of 1 eV, J
h = 6.62e-034; // Planck's oconstant, Js
m = 1.67e-027; // Mass of the neutron, kg
lambda = 0.060e-009; // Wavelength of the neutron beam, m
p = h/lambda; // Momentum of the neutron from de-Broglie relation, kg-m/s
K = p^2/(2*m*e); // Kinetic energy of the neutron needed to study atomic structure, eV
// As K = 3/2*k*T, solving for T
T = 2/3*K*e/k; // The temperature of the neutron needed to study atomic structure, K
printf("\nThe energy and temperature of the neutron needed to study the atomic structure of solids = %4.2f eV and %4d K respectively", K, T);
// Result
// The energy and temperature of the neutron needed to study the atomic structure of solids = 0.23 eV and 1760 K respectively |
ffed5811f91e28fcafccbd813b950dd828ab85db | 449d555969bfd7befe906877abab098c6e63a0e8 | /764/CH4/EX4.14.a/data4_14.sci | 1b920daf848ef188ea5a76cd02b16e7477774ca8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 358 | sci | data4_14.sci |
//(Design against Static Load) Example 4.14
//Refer Fig.4.41
//Force acting on the overhang crank P (kN)
P = 1
//Tensile yield strength of 30C8 material Syt (N/mm2)
Syt = 400
//Factor of safety fs
fs = 2
//Horizontal distance between the point load and D h (mm)
h = 500
//Vertical distance between the point load and D v (mm)
v = 50 + 25 + 100
|
adde909b3024859a4eb7e2ee7d6a33fe263b56fc | df9b25ceab5916f0a9256bce2d326a82f8daa2b8 | /app/public/views/student_new.sce | b47907c0900e4ca738fddf8f328be531746b2564 | [] | no_license | TheBrenny/SAD-assignment2 | 6625611ebde9619ca45bdb7996ef51a653868059 | 1f2b247c275b2d3327e58b8752d3e2e5a0cc5823 | refs/heads/master | 2023-01-21T16:46:45.535129 | 2020-11-02T01:22:18 | 2020-11-02T01:22:18 | 297,238,799 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,427 | sce | student_new.sce | [[i= partials/header ]]
<div class="actionButtons">
<div class="btn red" target="cancel">Cancel</div>
<div class="btn" target="save">Save</div>
</div>
<div class="hr"></div>
<div class="studentBlock flex">
[[c= components/student || fname="" lname="" studentID="" ]]
<div class="studentInfo flex">
<label for="studentID">Student ID</label>
<input disabled id="studentID" placeholder="Student ID" type="text" class="" value="will be auto-generated">
<!-- <div class="flex-br"></div> -->
<label for="firstName">First Name</label>
<input id="firstName" placeholder="First Name" type="text" class="" value="">
<label for="lastName">Last Name</label>
<input id="lastName" placeholder="Last Name" type="text" class="" value="">
<label for="dob">Date of Birth</label>
<input id="dob" placeholder="Date Of Birth" type="date" class="" value="">
<!-- <input id="groupID" placeholder="Group" type="select" class="" value=""> -->
<label for="groupID">Group</label>
<select name="groupID" id="groupID" placeholder="Group">
<option value="" disabled selected>Select a group</option>
[[e= g in groups ]]
<option value="[[g.groupID]]">[[g.groupName]]</option>
[[?==]]
</select>
</div>
</div>
<script src="/assets/js/students.js"></script>
[[i= partials/footer ]] |
ed2b570779ad071c8bad2282abb13ad615b765ef | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set10/s_Fluid_Mechanics_J._F._Douglas_557.zip/Fluid_Mechanics_J._F._Douglas_557/CH1/EX1.1/1.sce | 8abde851e6a31cffb6654f8750a49e0af25b76bb | [] | 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 | 262 | sce | 1.sce | errcatch(-1,"stop");mode(2);funcprot(0); ;
//Example 1.1
//Initialization of Variable
sigma = 72.7*10^-3; //Surface Tension
r = 1 *10^-3; //Radius of Bubble
//Calculations
P = 2*sigma/r;
disp(P,"Excess Pressure(N/m2) :")
exit();
|
8ac9637257f9fe24534949f3c892e6714db2d73f | 6227c5ef4e1c5d72cdebd6eac81f82161dda7e17 | /digi_dc_dc/Scilab/ConverterModels/dualPWM.sci | 5b93a74eefc4a86a0f63cf7688dcbd65a3813b38 | [] | no_license | maxsimmonds1337/Scilab | b4e8a03a9fbeda4d8f6e51e07d205bcf51addce8 | b413659e2b697565c24ad440d158f5bd28203570 | refs/heads/master | 2022-11-04T23:17:50.045864 | 2020-06-13T20:35:24 | 2020-06-13T20:35:24 | 272,081,285 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,752 | sci | dualPWM.sci |
// function for extracting the discrete model from the State mateixes A1,0 b1,0 c1,0 and input vector of a converters
//It will propagate the Matrixes through the pulses of a trailing edge PWM and devolve the transfer functions discrete and continous
//Taken from "Digital control of high frequency PWM converters" p.14
// It will assume a leading edge modulator
//This function is assuming that the sampling and the control action takes place each n_sub samples subsampling=n_sub
function [Gvuz,Gvus,Giuz,Gius]=dualPWM(A1,A0,b1,b0,c1,c0,V,D,tctrl,Fs,n_sub,mod)
//Outputs are the discrete Model Wz and the continous model Ws
// steady state duty cycle D
//, delay between sample and latch of the duty cyce tcntrl and switching frquency Fs
//Mod indicates the transfer function to plot 1 for control to output voltage, 2 control to current voltage and 3 both
//Transformation of Parameters
Ts=1/Fs;
td=tctrl+D*Ts;
Dprime=1-D;
//Continous case
//Steady state operating point - continous
X=-((D*A1+Dprime*A0)^-1)*(D*b1+Dprime*b0)*V;
//Dynamic model continous
A=D*A1+Dprime*A0;
F=(A1-A0)*X+(b1-b0)*V;
c=D*c1+Dprime*c0;
// Definition of the continous system
sys=syslin('c',A,F,c(2,:))
Gvus=ss2tf(sys); //Lets call it vu u control input as the book
sys=syslin('c',A,F,c(1,:))
Gius=ss2tf(sys);
//Definition of the discrete system page 93
A1i=A1^-1;
A0i=A0^-1;
Xdowna=(eye(A1)-expm(A1*D*Ts)*expm(A0*Dprime*Ts))^-1;
Xdownb=(-expm(A1*D*Ts)*A0i*(eye(A0) -expm(A0*Dprime*Ts)))*b0; //eye(A0) is an identity matrix with the same size
Xdownc=-A1i*(eye(A1)-expm(A1*D*Ts))*b1;
Xdown=Xdowna*(Xdownb+Xdownc)*V; //States at the falling edge of the steady state duty
//States at the leading edge derived from the falling edge (pag 89)
//Luca's book
Xup=expm(A0*Dprime*Ts)*Xdown-A0i*(eye(A0)-expm(A0*Dprime*Ts))*b0*V;
Phi=expm(A0*Dprime*Ts/2)*(expm(A1*(D*Ts))*expm(A0*(Dprime*Ts)))^(n_sub-1)*expm(A1*(D*Ts))*expm(A0*Dprime*Ts/2); //Evolution of the states in n_sub swiching cycle
gam_n_down=((A1-A0)*Xdown + (b1-b0)*V)*Ts/2; // Influece of the input at the last falling instant multiply by 0.5 because for each sampling there are two
gam_n_up=-1*((A0-A1)*Xup + (b0-b1)*V)*Ts/2; // Influece of the input at the last up transition instant
// Included the -1 to deal with the 180 deg at the beginning, this
gam_delay=zeros(gam_n_up); //initially the zero same size of gam_n
for i=0:n_sub-1
new_gam_delay=expm(A0*Dprime*Ts/2)*((expm(A1*Dprime*Ts)*expm(A0*D*Ts))^(i)*gam_n_down + (expm(A1*Dprime*Ts)*expm(A0*D*Ts))^(i)*expm(A1*D*Ts)*gam_n_up);// The influence of the input is propagated n_sub times
gam_delay=gam_delay+new_gam_delay;
end
gam=gam_delay;
delta=c0; //observation matrix sample taken in state 0 with switch closed
//Definition of the discrete state space model
sysz=syslin(n_sub*Ts,Phi,gam,delta(2,:)); //in Scilabs this is called Sampled
Gvuz=ss2tf(sysz)// control to output voltage response
sysz=syslin(n_sub*Ts,Phi,gam,delta(1,:)); //in Scilabs this is called Sampled
Giuz=ss2tf(sysz)// control to inductor current response
//Representations of the frequency responses
frq=1e0:1:Fs/(2*n_sub); //To avoid the Nyquist Frequency
if(or([mod==1,mod==3])) then
scf();
subplot(1,2,1);
bode(Gvuz,frq,'Gvd Discrete');
subplot(1,2,2);
bode(Gvus,frq,'Gvd Continous');
end
if(or([mod==2,mod==3])) then
scf();
subplot(1,2,1);
bode(Giuz,frq,'Gid Discrete');
subplot(1,2,2);
bode(Gius,frq,'Gid Continous');
end
end
|
560fffd5cecf362a39237e1c1ae2a577d869e6b3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3792/CH5/EX5.17/Ex5_17.sce | 238d910c4da62777b680c05d74b1420efb204d1a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 906 | sce | Ex5_17.sce | // SAMPLE PROBLEM 5/17
clc;clear;funcprot(0);
// Given data
omega=2;// rad/sec
theta=45;// degree
OCbar=450;// mm
CAbar=225;// mm
// Calculation
// v_A=omega_CA*r_CA;
// v_A=(225/sqrt(2))omega_CA*(i-j)
OPbar=sqrt((OCbar-CAbar)^2+(CAbar)^2);// mm
r=OPbar;// mm
omega=omega;//(k) rad/s
O=omega*r;// mm/s
// Substitution into the relative-velocity equation gives
// (225/sqrt(2))omega_CA*(i-j)=(450*sqrt(2)j+xdoti)
// Equating separately the coefficients of the i and j terms yields
omega_CA=O/(225/sqrt(2));// mm/s
xdot=(225/sqrt(2))*omega_CA;// mm/s
v_rel=xdot;// mm/s
v_A=CAbar*abs(omega_CA);// mm/s
v_P=OPbar*omega;// mm/s
v_AP=abs(v_rel);// mm/s
omega_AC=v_A/CAbar;// rad/s
printf("\nThe actual angular velocity of CA,omega_CA=%1.0f rad/s \nThe velocity of A relative to the rotating slot in OD,xdot=v_rel=%3.2f mm/s \nThe velocity of pin A,v_A=%3.0f mm/s",omega_CA,xdot,v_A);
|
0a7fd32c49c8f1fa55c6e30a76b81b2cda566592 | 449d555969bfd7befe906877abab098c6e63a0e8 | /992/CH2/EX2.15/ex2_15.sce | 9aa23ab4d21a21e0324d2389b900e9d78c6f320f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 183 | sce | ex2_15.sce |
//Exa:2.15
clc;
clear;
close;
//Given:
Smax=8;//maximum span in V
Smin=0;//minimum span in V
m=(Smax-Smin)/(Smax+Smin);
printf("\n\n\t modulation index = %f percent",m*100); |
ec5690e6177d049b67e95d403e5feaee87ee2cf7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2045/CH4/EX4.24/Ex4_24.sce | a9812273b48efac561ab5ca05a308ae3e3df0a80 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 259 | sce | Ex4_24.sce | //example 24
clear
alpha1=0.98;
revcur=1*10^-6;//ampere
emicur=1*10^-3;//ampere
colcur=alpha1*emicur+revcur;
bascur=emicur-colcur;
disp("collector current = "+string((colcur))+"ampere");
disp("base current = "+string((bascur))+"ampere");
|
babdcd33b73e37a541b77160e6127e2a3a0a4962 | 9d59fb06cf0644f9c0c84aae7977eeff57116a45 | /1-RDMP/RDMP-5.sce | d8227d05e884e909c3d639e5ff54e3581d54a273 | [] | no_license | aguadix/RQ | f353b8fa0e36828c8cca9af53f5c3275ed476a75 | 43e8a31003bf038b0cd72487868c760829b9797c | refs/heads/master | 2023-03-07T10:50:29.102260 | 2023-03-06T01:35:58 | 2023-03-06T01:35:58 | 53,548,175 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,066 | sce | RDMP-5.sce | clear; clc;
// RDMP-5.sce
// A + B <=> C
// Adiabático
// SISTEMA DE ECUACIONES DIFERENCIALES
function dxdt = f(t,x)
// Variables diferenciales
CA = x(1)
CB = x(2)
CC = x(3)
T = x(4)
// Ecuación de Arrhenius
kd = kd0*exp(-E/(R*T))
// Ecuación de Van't Hoff
Keq = Keq0*exp(-H/(R*T))
// Velocidad de reacción
// r = rd - ri = kd*CA*CB - ki*CC = kd*CA*CB - kd*CC/Keq
r = kd*(CA*CB - CC/Keq)
// Balance de materia para A
// d(V*CA)dt = -r*V
dCAdt = -r
// Balance de materia para B
// d(V*CB)dt = -r*V
dCBdt = -r
// Balance de materia para C
// d(V*CC)dt = r*V
dCCdt = r
// Balance de energía
// d(V*RHO*CP*T)dt = -H*r*V
dTdt = -H*r/(RHO*CP) // Balance de energía
// Derivadas
dxdt(1) = dCAdt
dxdt(2) = dCBdt
dxdt(3) = dCCdt
dxdt(4) = dTdt
endfunction
// CONSTANTES
H = -136400; // J/mol
RHO = 1150; // g/L
CP = 3.8; // J/(g*K)
kd0 = 1.75E8; // L/(mol*h)
E = 62350; // J/mol
Keq0 = 8.25E-22; // L/mol
R = 8.314; // J/(mol*K)
// CONDICIONES INICIALES
CAini = 1; CBini = 2; CCini = 0; // mol/L
Tini = 300; // K
xini = [CAini; CBini; CCini; Tini];
// TIEMPO
dt = 0.1; tfin = 500; t = 0:dt:tfin; // h
// RESOLVER
x = ode(xini,0,t,f);
CA = x(1,:); CAfin = CA($)
CB = x(2,:); CBfin = CB($)
CC = x(3,:); CCfin = CC($)
T = x(4,:); Tfin = T($)
XA = 1 - CA/CAini; XAfin = XA($)
dTdt = diff(T)/dt;
dTdteq = 1E-3; // K/h
indexTeq = find(abs(dTdt)<dTdteq,1);
tTeq = t(indexTeq)
Teq = T(indexTeq)
// GRÁFICAS
scf(1); clf(1);
plot(t,CA,t,CB,t,CC);
xgrid; xlabel('t'); legend('CA','CB','CC',-2,%f);
scf(2); clf(2);
plot(t,T,'r-',tTeq,Teq,'r.');
xgrid; xlabel('t'); legend('T',-2,%f);
XATeq = XA(indexTeq)
XAobj = 0.5;
indexXAobj = find(XA>XAobj,1);
tXAobj = t(indexXAobj)
scf(3); clf(3);
plot(t,XA,'m-',tTeq,XATeq,'m.',tXAobj,XAobj,'mo');
xgrid; xlabel('t'); legend('XA',-2,%f);
scf(4);
subplot(211); plot(Tini,XATeq,'mo');
xgrid; xlabel('Tini'); ylabel('XATeq');
subplot(212); plot(Tini,tXAobj,'go');
xgrid; xlabel('Tini'); ylabel('tXAobj');
|
84e0d1679e4f4497d896fff726aa08a6e18d62f6 | c90039f74887835096a93884110d643c4823e530 | /doc/oficial/dados para treinamento RNA/RNA_ANALISE_TECNICA/RESULTADO/RESULTADO_INDICADOR.sce | 448b3881f9630eeb7a25d3152b54708784347034 | [] | no_license | igorlima/CellInvest | da991366b329b5d8021e9b949d7b726023489ec8 | c5411247e504b8a8d0ad77d32d41bbd2aee39930 | refs/heads/master | 2020-04-06T03:40:05.614164 | 2012-10-23T12:58:20 | 2012-10-23T12:58:20 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 6,938 | sce | RESULTADO_INDICADOR.sce | clear;
path_resultado = get_absolute_file_path('RESULTADO_INDICADOR.sce');
exec( path_resultado+"\_dados_entrada.sce" );
exec( path_resultado+"\..\RNA_ANALISE_TECNICA.sce" );
printf( 'Iniciando calculos dos resultados finais...\n' );
codigoAtivo = 'BBAS3';
dados_entrada = getDadosEntrada( codigoAtivo, MAXIMO_LINHA_ARQUIVO );
ifr = dados_entrada(:,1);
estocastico = dados_entrada(:,2);
histograma = dados_entrada(:,3);
macd_line = dados_entrada(:,4);
macd_sinal = dados_entrada(:,5);
obv = dados_entrada(:,6);
coeficientes = regressao_linear( [[1:length(histograma)]' histograma], 3 );
b_max_abs_histograma = maximo_absoluto( coeficientes(:,1) );
valor_max_abs_hist = maximo_absoluto( histograma );
coeficientes = regressao_linear( [[1:length(macd_line)]' macd_line], 3 );
b_max_abs_macdline = maximo_absoluto( coeficientes(:,1) );
valor_max_abs_macdline = maximo_absoluto( macd_line );
coeficientes = regressao_linear( [[1:length(macd_sinal)]' macd_sinal], 3 );
b_max_abs_macdsinal = maximo_absoluto( coeficientes(:,1) );
valor_max_abs_macdsinal = maximo_absoluto( macd_sinal );
coeficientes = regressao_linear( [[1:length(obv)]' obv], 3 );
b_max_abs_obv = maximo_absoluto( coeficientes(:,1) );
result_ifr = [];
result_est = [];
result_momento = [];
result_hist_valor = [];
result_hist_alpha = [];
result_histograma = [];
result_macdline_valor = [];
result_macdline_alpha = [];
result_macdline = [];
result_macdsinal_valor = [];
result_macdsinal_alpha = [];
result_macdsinal = [];
result_macd = [];
result_sinal = [];
result_obv_alpha = [];
result_volume = [];
result_indicador = [];
for i=1:length( ifr )
valorIfr = ifr(i)/100;
valorEstocastico = estocastico(i)/100;
valorHistograma = normalizar_valor( histograma(i), valor_max_abs_hist );
valorMacdLine = normalizar_valor( macd_line(i), valor_max_abs_macdline );
valorMacdSinal = normalizar_valor( macd_sinal(i), valor_max_abs_macdsinal );
if i <= 2
alphaHistograma = 0.5;
alphaMacdLine = 0.5;
alphaMacdSinal = 0.5;
alphaObv = 0.5;
else
cof = regressaoLinear( [[1:3]' [histograma(i-2);histograma(i-1);histograma(i)]] );
b = cof(1);
alphaHistograma = normalizar_valor( b, b_max_abs_histograma );
cof = regressaoLinear( [[1:3]' [macd_line(i-2);macd_line(i-1);macd_line(i)]] );
b = cof(1);
alphaMacdLine = normalizar_valor( b, b_max_abs_macdline );
cof = regressaoLinear( [[1:3]' [macd_sinal(i-2);macd_sinal(i-1);macd_sinal(i)]] );
b = cof(1);
alphaMacdSinal = normalizar_valor( b, b_max_abs_macdsinal );
cof = regressaoLinear( [[1:3]' [obv(i-2);obv(i-1);obv(i)]] );
b = cof(1);
alphaObv = normalizar_valor( b, b_max_abs_obv );
end
saida_ifr = rna_ifr( valorIfr );
saida_est = rna_estocastico( valorEstocastico );
saida_momento = rna_momento( valorIfr, valorEstocastico );
saida_hist_valor = rna_valorHIST( valorHistograma );
saida_hist_alpha = rna_alphaHIST( alphaHistograma );
saida_histograma = rna_HISTOGRAMA( valorHistograma, alphaHistograma );
saida_macdline_valor = rna_valorMACDLINE( valorMacdLine );
saida_macdline_alpha = rna_alphaMACDLINE( alphaMacdLine );
saida_macdline = rna_MACDLINE( valorMacdLine, alphaMacdLine );
saida_macdsinal_valor = rna_valorMACDSINAL( valorMacdSinal );
saida_macdsinal_alpha = rna_alphaMACDSINAL( alphaMacdSinal );
saida_macdsinal = rna_MACDSINAL( valorMacdSinal, alphaMacdSinal );
saida_macd = rna_MACD( valorMacdLine, alphaMacdLine, valorMacdSinal, alphaMacdSinal );
saida_sinal = rna_sinal( valorHistograma, alphaHistograma, valorMacdLine, alphaMacdLine, valorMacdSinal, alphaMacdSinal );
saida_obv_alpha = rna_obv( alphaObv );
saida_volume = rna_volume( alphaObv );
saida_indicador = rna_indicador( valorIfr,valorEstocastico,valorHistograma,alphaHistograma,valorMacdLine,alphaMacdLine,valorMacdSinal,alphaMacdSinal,alphaObv );
result_ifr = [ result_ifr ; saida_ifr' ];
result_est = [ result_est ; saida_est' ];
result_momento = [ result_momento ; saida_momento' ];
result_hist_valor = [ result_hist_valor ; saida_hist_valor' ];
result_hist_alpha = [ result_hist_alpha ; saida_hist_alpha' ];
result_histograma = [ result_histograma ; saida_histograma' ];
result_macdline_valor = [ result_macdline_valor ; saida_macdline_valor' ];
result_macdline_alpha = [ result_macdline_alpha ; saida_macdline_alpha' ];
result_macdline = [ result_macdline ; saida_macdline' ];
result_macdsinal_valor = [ result_macdsinal_valor ; saida_macdsinal_valor' ];
result_macdsinal_alpha = [ result_macdsinal_alpha ; saida_macdsinal_alpha' ];
result_macdsinal = [ result_macdsinal ; saida_macdsinal' ];
result_macd = [ result_macd; saida_macd' ];
result_sinal = [ result_sinal ; saida_sinal' ];
result_obv_alpha = [ result_obv_alpha ; saida_obv_alpha' ];
result_volume = [ result_volume ; saida_volume' ];
result_indicador = [ result_indicador ; saida_indicador' ];
if pmodulo( i, 10 ) == 0 then
printf( ' (' );
printf( string( i ) );
printf( ') ' );
end
if pmodulo( i, 100 ) == 0 then
printf( '\n' );
end
end
printf( '\nCalculos efetuados com sucesso.' );
printf( '\nGravando resultado...' );
gravarDados( path_resultado + '\Saida\RESULTADO_IFR_'+codigoAtivo+'.txt', result_ifr );
gravarDados( path_resultado + '\Saida\RESULTADO_ESTOCASTICO_'+codigoAtivo+'.txt', result_est );
gravarDados( path_resultado + '\Saida\RESULTADO_MOMENTO_'+codigoAtivo+'.txt', result_momento );
gravarDados( path_resultado + '\Saida\RESULTADO_HIST_VALOR_'+codigoAtivo+'.txt', result_hist_valor );
gravarDados( path_resultado + '\Saida\RESULTADO_HIST_ALPHA_'+codigoAtivo+'.txt', result_hist_alpha );
gravarDados( path_resultado + '\Saida\RESULTADO_HISTOGRAMA_'+codigoAtivo+'.txt', result_histograma );
gravarDados( path_resultado + '\Saida\RESULTADO_MACDLINE_VALOR_'+codigoAtivo+'.txt', result_macdline_valor );
gravarDados( path_resultado + '\Saida\RESULTADO_MACDLINE_ALPHA_'+codigoAtivo+'.txt', result_macdline_alpha );
gravarDados( path_resultado + '\Saida\RESULTADO_MACDLINE_'+codigoAtivo+'.txt', result_macdline );
gravarDados( path_resultado + '\Saida\RESULTADO_MACDSINAL_VALOR_'+codigoAtivo+'.txt', result_macdsinal_valor );
gravarDados( path_resultado + '\Saida\RESULTADO_MACDSINAL_ALPHA_'+codigoAtivo+'.txt', result_macdsinal_alpha );
gravarDados( path_resultado + '\Saida\RESULTADO_MACDSINAL_'+codigoAtivo+'.txt', result_macdsinal );
gravarDados( path_resultado + '\Saida\RESULTADO_MACD_'+codigoAtivo+'.txt', result_macd );
gravarDados( path_resultado + '\Saida\RESULTADO_SINAL_'+codigoAtivo+'.txt', result_sinal );
gravarDados( path_resultado + '\Saida\RESULTADO_OBV_'+codigoAtivo+'.txt', result_obv_alpha );
gravarDados( path_resultado + '\Saida\RESULTADO_VOLUME_'+codigoAtivo+'.txt', result_volume );
gravarDados( path_resultado + '\Saida\RESULTADO_INDICADOR_'+codigoAtivo+'.txt', result_indicador );
printf( '\nResultado Gravado.' ); |
475c7ac81660d22a0978250255e62a3dd81e5609 | 9bc415d58bf063a1bca303fea640e644333dbdbd | /Scilab/smg_plot_zeros1.sci | b2d266250f20256b508c6a4bdb568307ce4adcc9 | [] | no_license | Roast-Lord/SMGcodes | 36e55be6c1cc17af91ab2e3f5117c78684f20604 | b75107be829fb4373dc1bc4b8696fe4b9cec437a | refs/heads/main | 2023-07-05T05:25:50.557705 | 2021-08-17T17:46:25 | 2021-08-17T17:46:25 | 301,012,145 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 148 | sci | smg_plot_zeros1.sci | function smg_plot_zeros1(H,a,b)
w = a:0.1:b;
plot_polos_zeros2(H)
s = %i*w;
H;
p2 = scf(2);
plot(w,abs(H))
endfunction
|
a674f2e3ef46658dd6f493cf6dd280a003de6f7e | 449d555969bfd7befe906877abab098c6e63a0e8 | /3764/CH7/EX7.2/Ex7_2.sce | 6083da5b9ddcdde05ce668667fddaa377d61454a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,808 | sce | Ex7_2.sce | clc
//
//
//Variable declaration
P=150 // Horizontal force(lb)
T=(150*18)/(1000.0) // Force couple system(kip.in)
Mx=(150*10)/(1000.0) // Force couple system(kip.in)
sx=0 // Stress at x
M=1.5 // Torque(kip.in)
c=0.6 // Radius(in)
n=-1
//Calculation
//Case(a) Stresses S x , S y , T xy at Point H
sy=(((M)*(c))/((1/4.0)*(%pi)*((0.6**4)))**2) // Stress(ksi)
txy=(((T)*(c))/((1/2.0)*(%pi)*((0.6**4)))**2) // Shearing stress(ksi)
//Case(b) Principal Planes and Principal Stresses
phyp1=(n*61)/2.0 // Angle(degree)
phyp2=180-61 // Angle(degree)
Smax=8.84/2.0 + sqrt(4.42**2 + 7.96**2) // Maximum stress(ksi)
Smin=8.84/2.0 - sqrt(4.42**2 + 7.96**2) // Minimum stress(ksi)
// Result
printf("\n Case(a) Normal stress = %0.3f ksi' ,sy)
printf("\n Case(a) Shearing stress = %0.3f ksi' ,txy)
printf("\n Case(b) Principal plane angle = %0.3f degree' ,phyp1)
printf("\n Case(b) Principal plane angle = %0.3f degree' ,phyp2)
printf("\n Case(c) Maximum stress at point H = %0.3f ksi' ,Smax)
printf("\n Case(c) Minimum stress at point H = %0.3f ksi' ,Smin)
|
5ca61f7be5c1f902bd43614c6cad77e58803450c | 6e257f133dd8984b578f3c9fd3f269eabc0750be | /ScilabFromTheoryToPractice/Programming/testsansthen.sce | 042841c1c54afd9a10313457837618c341cd7124 | [] | 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 | 222 | sce | testsansthen.sce | // if then else
x=1;
if x==1 txt='x is equal to 1';
else txt='x is not equal to 1';
end
disp(txt)
// select
x=2;
select x
case 1
txt='x is equal to 1';
else txt='x is not equal to 1';
end
disp(txt)
|
6ec516fa3bdef2138edddf327b21c678a4a59a93 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/ngram/5.5_10.tst | 0ca9169e14b24ff60e41df4ae238f3ea09d19fcd | [] | 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 | 550,467 | tst | 5.5_10.tst | 5 28:1 68:1 200:1 227:1 353:1 477:1 738:1 833:1 865:1 1213:1 1242:1 1252:1 1336:1 1337:2 1340:1 1408:1 1578:1 1635:1 1643:1 1654:1 1658:1 1680:1 1694:1 2030:1 2129:1 2138:1 2230:1 2255:2 2394:2 2471:1 2656:1 2876:1 2882:1 2977:1 3007:1 3222:1 3263:1 3429:1 3594:1 3745:1 3759:1 3854:1 3855:2 3914:1 4256:1 4387:1 4419:1 4725:1 4726:1 4766:1 4854:1 4896:1 4944:1 5099:1 5153:153 5212:1 5400:1 5404:1 5426:1 5695:1 6016:1 6026:1 6064:1 6189:1 6311:1 6377:1 6392:1 6405:1 6485:1 6572:1 6813:1 6860:1 7153:1 7232:1 7247:1 7357:1 7420:1 7422:1 7444:1 7473:1 7583:1 7642:1 8023:2 8056:1 8058:1 8194:1 8247:1 8333:1 8573:1 8779:1 8786:1 8809:1 9129:1 9251:1 9260:1 9333:1 9337:1 9380:1 9443:1 9624:2 9632:1 9865:1 10125:1 10272:1 10442:2 10459:2 10479:2 10721:1 10756:1 10790:1 10820:1 11058:4 11081:1 11200:1 11276:1 11321:1 11362:1 11446:1 11568:1 11641:1 11658:1 11842:1 11937:1 12228:1 12251:1 12260:1 12280:1 12355:1 12437:1 12519:1 13028:1 13072:1 13121:1 13238:1 13307:1 13481:1 13769:1 13948:1 13956:1 13959:1 14090:1 14095:2 14105:1 14142:1 14271:1 14278:1 14279:1 14362:1 14603:1 14641:1 14780:1 14796:1 14828:1 14884:1 14916:1 15142:1 15396:1 15452:2 15511:1 15521:1 15532:1 15582:1 15598:1 15698:1 15820:1 16101:1 16157:2 16175:1 16314:1 16462:1 16558:1 16592:1 17031:1 17043:1 17139:1 17202:1 17336:1 17418:1 17434:2 17616:1 17695:1 17718:1 17835:1 17897:2 17936:1 18117:2 18258:1 18435:1 18460:1 18656:1 18681:1 19221:2 19324:1 19347:1 19430:1 19435:1 19629:1 19669:1 19672:1 19681:1 19760:1
5 28:1 68:1 160:1 200:1 227:1 352:1 353:1 422:1 477:1 720:1 738:1 833:1 865:1 1104:1 1213:1 1214:1 1242:1 1252:1 1310:1 1323:1 1336:1 1337:2 1340:1 1380:1 1408:1 1578:1 1635:1 1643:1 1654:1 1658:1 1680:1 1694:1 1714:1 1902:1 2030:1 2097:1 2129:1 2138:1 2230:1 2255:2 2394:2 2471:1 2656:1 2823:1 2876:1 2882:1 2972:1 2977:1 3007:1 3139:1 3178:1 3222:1 3263:1 3429:1 3594:1 3745:1 3759:1 3854:1 3855:2 3914:1 4256:1 4387:1 4419:1 4446:1 4532:1 4591:1 4656:1 4725:2 4726:1 4727:1 4735:1 4766:1 4800:1 4854:1 4896:1 4944:1 5037:1 5099:1 5153:294 5155:1 5212:1 5250:1 5400:1 5404:1 5426:1 5427:1 5695:1 6016:1 6026:1 6064:1 6133:1 6189:1 6311:1 6377:1 6392:3 6405:1 6485:1 6538:1 6551:1 6572:2 6581:1 6690:1 6813:1 6828:1 6860:1 7127:1 7153:1 7232:1 7247:5 7357:1 7384:1 7420:1 7422:1 7443:1 7444:1 7459:1 7473:1 7583:1 7642:1 7913:1 7988:1 8012:1 8023:2 8056:1 8057:1 8058:2 8098:1 8192:1 8194:1 8196:1 8247:1 8248:1 8280:1 8333:1 8533:2 8542:1 8573:1 8779:1 8786:1 8809:1 8959:2 9129:1 9238:1 9251:1 9260:2 9333:1 9337:1 9347:1 9380:1 9443:1 9624:2 9632:2 9683:1 9788:1 9813:1 9865:1 9870:1 9884:1 9924:1 10013:1 10058:1 10125:2 10193:1 10272:2 10442:2 10459:3 10479:2 10721:2 10756:1 10790:1 10820:1 10922:1 11058:4 11081:1 11140:1 11200:2 11276:1 11321:1 11362:1 11446:1 11559:1 11568:1 11641:1 11658:1 11664:1 11668:1 11687:1 11736:2 11842:1 11937:1 12161:1 12210:1 12228:1 12251:1 12260:1 12280:1 12355:1 12437:1 12497:1 12519:1 12759:1 12978:1 13028:1 13072:1 13121:1 13153:1 13207:1 13219:1 13238:1 13307:1 13446:1 13481:1 13485:1 13627:1 13642:1 13670:1 13727:1 13769:1 13866:1 13912:1 13942:1 13948:2 13956:1 13959:1 14090:1 14095:2 14105:1 14142:1 14271:1 14278:1 14279:1 14362:1 14363:1 14527:1 14575:1 14603:1 14641:1 14651:1 14694:1 14780:1 14796:1 14828:1 14884:1 14889:1 14916:1 14981:1 15048:1 15142:1 15256:1 15396:1 15452:2 15499:1 15511:1 15521:2 15532:2 15582:1 15598:1 15608:1 15698:1 15721:1 15820:1 16060:1 16101:1 16109:1 16157:2 16175:2 16314:1 16345:1 16462:1 16558:1 16592:1 16807:1 16826:1 16875:1 17031:1 17043:1 17139:1 17175:1 17202:2 17336:1 17399:1 17418:1 17427:1 17434:2 17481:1 17540:1 17565:1 17616:1 17695:1 17718:1 17826:1 17835:1 17897:3 17936:1 18044:1 18117:2 18189:1 18258:1 18282:1 18294:1 18394:1 18435:1 18437:1 18460:1 18521:1 18656:1 18681:1 18785:1 18935:1 19060:1 19067:1 19182:1 19217:1 19221:2 19244:1 19263:1 19324:1 19347:1 19430:1 19435:1 19572:1 19584:1 19629:1 19669:1 19672:1 19674:1 19681:1 19760:1
5 28:1 68:1 160:2 185:1 200:1 220:1 227:1 352:1 353:1 422:1 477:1 720:1 738:1 825:1 833:1 865:1 1104:1 1213:1 1214:1 1242:1 1252:1 1310:1 1323:1 1336:1 1337:2 1340:1 1380:1 1408:1 1512:1 1578:1 1635:1 1643:1 1654:1 1658:1 1670:1 1680:1 1694:1 1714:1 1902:1 1975:1 2030:1 2097:1 2129:1 2138:1 2230:1 2255:2 2394:2 2471:2 2656:1 2823:2 2876:1 2882:1 2923:1 2972:1 2977:1 3007:1 3015:1 3139:1 3178:1 3222:1 3263:1 3429:1 3532:1 3554:1 3594:2 3745:1 3759:1 3854:1 3855:3 3914:2 4246:1 4256:1 4387:1 4419:1 4446:1 4532:1 4591:1 4650:1 4656:1 4725:2 4726:1 4727:2 4735:1 4766:1 4782:1 4800:1 4828:1 4854:1 4896:1 4944:1 5037:1 5099:1 5153:329 5155:1 5212:1 5250:1 5400:1 5404:1 5426:1 5427:1 5695:1 5741:1 5867:1 6016:1 6026:1 6064:1 6133:1 6189:1 6311:1 6345:1 6377:1 6387:1 6392:4 6405:1 6485:1 6538:1 6551:1 6572:2 6581:1 6594:1 6637:1 6690:1 6813:1 6828:2 6860:2 7127:1 7153:1 7232:1 7247:7 7357:1 7384:1 7420:1 7422:1 7443:1 7444:2 7459:1 7473:1 7583:1 7642:1 7913:1 7988:1 8012:1 8013:1 8023:2 8056:1 8057:1 8058:2 8098:1 8192:1 8194:1 8196:1 8247:1 8248:1 8253:1 8280:1 8333:1 8533:2 8542:1 8573:1 8779:1 8786:1 8809:1 8959:2 9006:1 9129:1 9238:1 9251:1 9260:2 9329:1 9333:1 9337:1 9347:1 9380:1 9443:1 9605:1 9624:2 9632:2 9683:1 9704:1 9721:1 9788:1 9813:1 9865:1 9870:1 9879:1 9884:1 9924:1 10013:1 10058:1 10125:2 10193:1 10272:2 10298:1 10442:2 10459:4 10479:3 10484:1 10640:1 10721:3 10756:2 10790:1 10820:1 10865:1 10922:1 11058:5 11081:1 11140:1 11200:2 11276:1 11321:1 11326:1 11362:1 11416:1 11446:1 11559:1 11563:1 11568:1 11573:1 11639:1 11641:1 11656:1 11658:1 11664:1 11668:1 11687:1 11730:1 11736:2 11842:1 11937:1 12161:1 12210:1 12228:1 12251:1 12260:1 12280:1 12355:1 12437:1 12481:1 12497:1 12519:1 12759:1 12978:1 13028:1 13072:1 13121:1 13153:1 13207:2 13219:1 13238:1 13307:1 13446:1 13481:1 13485:1 13627:1 13642:1 13662:1 13670:1 13727:1 13769:1 13866:1 13912:1 13926:1 13942:1 13948:2 13956:1 13959:1 14090:1 14095:2 14105:1 14142:1 14271:1 14278:1 14279:1 14362:1 14363:1 14527:1 14575:1 14603:1 14641:1 14651:1 14664:1 14694:1 14780:1 14796:1 14828:1 14884:1 14889:1 14916:1 14981:1 15048:1 15142:1 15156:1 15256:1 15308:1 15396:1 15452:2 15458:1 15499:1 15511:1 15521:3 15532:3 15582:2 15598:1 15608:1 15698:1 15721:1 15797:1 15820:1 15882:1 16060:1 16101:1 16109:1 16157:2 16175:2 16314:1 16345:1 16462:1 16558:1 16592:1 16756:1 16807:1 16826:1 16875:1 17031:1 17043:1 17139:1 17175:1 17202:2 17317:1 17336:1 17399:1 17418:1 17427:1 17434:2 17481:1 17540:1 17565:1 17616:1 17695:1 17718:1 17826:1 17835:1 17897:6 17936:1 18044:1 18117:2 18189:1 18258:1 18282:1 18294:1 18394:1 18435:1 18437:1 18460:1 18521:1 18616:1 18656:1 18670:1 18681:1 18785:1 18916:1 18935:1 19060:1 19067:1 19182:1 19217:1 19221:2 19244:1 19263:1 19324:1 19347:1 19430:1 19435:1 19572:1 19584:2 19629:1 19669:1 19672:1 19674:1 19681:1 19760:1
5 28:1 68:1 160:2 185:1 200:1 220:1 227:1 352:1 353:1 422:1 477:1 485:1 600:1 720:1 738:1 793:1 825:1 833:1 865:1 950:2 1014:1 1104:1 1213:2 1214:1 1242:1 1252:1 1279:1 1310:1 1323:1 1336:1 1337:3 1340:1 1380:2 1408:1 1424:1 1463:1 1504:1 1512:1 1578:1 1635:1 1643:1 1654:1 1657:1 1658:1 1659:1 1670:1 1675:1 1680:1 1683:1 1694:1 1714:1 1759:1 1786:1 1902:1 1920:1 1975:1 2030:1 2050:1 2097:1 2108:1 2112:1 2129:1 2138:1 2230:1 2255:2 2280:1 2356:1 2394:2 2405:1 2471:2 2656:1 2816:1 2823:2 2876:1 2882:1 2923:1 2972:1 2977:1 3007:1 3015:1 3139:1 3178:1 3222:1 3243:1 3258:1 3263:1 3355:1 3429:2 3532:1 3554:1 3594:2 3745:1 3759:1 3854:1 3855:3 3914:2 3977:2 4246:1 4256:1 4279:1 4282:1 4387:1 4401:1 4419:1 4446:1 4532:1 4591:1 4650:1 4656:1 4714:1 4725:2 4726:1 4727:3 4735:1 4752:1 4766:2 4782:1 4800:1 4828:2 4854:1 4896:2 4906:1 4944:1 5017:1 5037:1 5058:1 5099:1 5147:1 5153:452 5155:1 5158:1 5171:1 5212:1 5250:1 5400:1 5404:1 5426:1 5427:1 5455:1 5695:1 5741:1 5825:1 5840:1 5867:1 5931:1 6013:1 6016:1 6026:1 6064:1 6133:1 6189:1 6311:1 6345:1 6377:1 6387:1 6392:4 6405:1 6485:1 6538:1 6551:1 6572:2 6581:1 6594:1 6637:1 6672:1 6690:1 6813:1 6828:2 6860:2 6883:1 6999:1 7114:1 7127:1 7153:1 7169:1 7232:1 7247:8 7271:1 7291:1 7357:1 7384:1 7420:1 7422:1 7443:1 7444:2 7459:1 7473:1 7574:1 7579:1 7582:1 7583:1 7642:1 7652:1 7700:1 7701:1 7913:1 7988:1 8009:1 8012:1 8013:1 8017:1 8023:2 8056:1 8057:1 8058:3 8098:1 8100:1 8113:1 8192:1 8194:1 8196:1 8200:1 8247:1 8248:1 8253:1 8280:1 8333:1 8533:2 8542:1 8573:1 8779:1 8786:1 8809:2 8840:1 8872:1 8959:2 8980:1 9006:1 9129:1 9177:1 9238:1 9251:1 9260:4 9329:1 9333:1 9337:1 9347:1 9380:1 9406:2 9443:1 9597:1 9605:1 9624:2 9632:2 9683:1 9704:1 9721:1 9788:1 9813:1 9865:1 9870:1 9879:1 9884:1 9924:1 10013:1 10058:1 10125:2 10129:1 10193:2 10200:1 10212:1 10272:2 10298:1 10399:1 10442:3 10459:4 10479:3 10484:1 10554:1 10640:1 10721:3 10756:2 10764:1 10790:1 10797:1 10820:1 10865:1 10922:1 10968:1 10996:1 11058:8 11081:1 11140:1 11197:1 11200:3 11276:1 11310:1 11321:1 11326:1 11362:1 11416:1 11417:1 11420:1 11446:1 11520:1 11559:1 11563:1 11568:1 11573:1 11634:1 11637:1 11639:1 11641:1 11656:1 11658:1 11664:1 11668:1 11687:1 11715:1 11730:1 11736:2 11800:1 11842:1 11877:1 11937:1 11978:1 12132:1 12161:1 12210:1 12228:1 12251:1 12260:1 12280:1 12355:1 12433:1 12437:1 12481:1 12497:1 12519:1 12537:1 12642:1 12648:1 12759:1 12858:1 12978:1 13028:1 13072:1 13121:1 13153:1 13207:2 13219:1 13238:1 13307:1 13370:2 13446:1 13481:1 13483:2 13485:1 13627:1 13631:1 13642:1 13662:1 13670:1 13677:1 13727:1 13769:1 13789:1 13866:1 13912:1 13926:1 13939:2 13942:1 13948:2 13956:1 13959:1 13999:1 14090:1 14095:2 14105:1 14112:1 14142:1 14258:1 14261:1 14271:1 14278:1 14279:1 14288:1 14362:1 14363:1 14429:1 14470:1 14527:1 14575:1 14603:1 14641:1 14651:1 14664:1 14672:1 14694:1 14780:1 14796:1 14828:1 14884:1 14889:1 14916:1 14981:1 15048:1 15142:1 15156:1 15256:1 15305:1 15308:1 15311:1 15363:1 15396:1 15452:2 15458:1 15499:1 15511:2 15521:3 15532:3 15582:2 15598:1 15608:1 15619:1 15679:1 15698:1 15721:1 15797:1 15820:1 15882:1 15983:1 16060:1 16101:1 16109:1 16157:2 16175:2 16299:1 16314:1 16345:1 16462:1 16558:1 16592:1 16707:1 16746:1 16756:1 16807:1 16826:1 16875:1 16999:1 17003:1 17031:1 17043:1 17139:1 17175:1 17202:2 17208:1 17260:1 17282:1 17317:1 17336:1 17383:1 17399:2 17418:1 17427:1 17434:2 17481:1 17540:1 17565:1 17616:1 17637:1 17667:1 17695:1 17718:1 17826:1 17835:1 17897:8 17936:1 18044:1 18073:1 18117:2 18189:1 18258:1 18282:1 18294:1 18394:1 18435:1 18437:1 18460:1 18521:1 18616:1 18656:1 18670:1 18681:1 18785:1 18830:1 18916:1 18935:1 19060:1 19067:1 19086:1 19176:1 19182:1 19217:1 19221:2 19244:1 19263:1 19324:1 19346:1 19347:1 19430:1 19435:1 19572:1 19584:2 19629:1 19669:1 19672:1 19674:1 19681:1 19760:1 19779:1 19784:1 19799:1
5 28:1 35:1 68:1 160:2 185:1 200:1 220:1 227:1 352:1 353:1 417:1 418:1 422:1 477:1 485:1 565:1 600:1 605:1 615:1 720:1 738:1 793:1 825:1 833:1 865:2 950:2 972:1 1014:1 1015:1 1104:1 1108:1 1213:2 1214:1 1242:1 1252:1 1279:1 1288:1 1310:1 1323:1 1335:1 1336:1 1337:3 1340:1 1380:2 1408:1 1424:2 1463:1 1486:1 1504:1 1512:1 1578:1 1635:1 1643:1 1649:1 1654:1 1657:2 1658:1 1659:1 1670:1 1675:1 1680:1 1683:1 1694:1 1714:1 1759:1 1786:1 1894:1 1902:1 1920:1 1975:1 2030:1 2050:1 2066:1 2078:1 2097:1 2108:1 2112:1 2129:1 2138:1 2230:1 2255:2 2280:1 2356:1 2394:2 2405:1 2471:2 2521:1 2656:1 2695:1 2748:1 2764:1 2812:1 2816:1 2823:2 2876:1 2882:1 2923:1 2972:1 2977:1 2982:1 2992:2 3007:1 3015:1 3062:1 3139:1 3178:1 3222:1 3243:1 3258:2 3263:1 3287:1 3355:1 3429:2 3513:1 3516:1 3532:1 3554:1 3594:2 3692:1 3745:1 3759:1 3854:1 3855:5 3876:1 3914:2 3965:1 3977:2 4103:1 4135:1 4177:1 4202:1 4246:1 4256:1 4279:1 4282:1 4387:1 4401:1 4419:1 4446:1 4532:1 4591:1 4610:1 4650:1 4656:1 4714:1 4725:2 4726:1 4727:3 4735:1 4752:1 4766:2 4782:1 4800:1 4828:2 4854:1 4896:3 4906:1 4944:1 5017:1 5037:1 5058:1 5099:1 5116:1 5147:1 5153:517 5155:1 5158:1 5171:1 5212:1 5250:1 5400:1 5404:1 5426:1 5427:1 5455:1 5616:1 5695:1 5741:1 5825:1 5840:1 5864:1 5867:1 5931:1 6013:1 6016:1 6020:1 6026:1 6064:1 6133:1 6189:1 6311:1 6345:1 6377:1 6387:1 6392:4 6405:1 6485:1 6538:1 6551:1 6572:2 6581:1 6594:1 6602:1 6637:1 6652:1 6672:1 6690:1 6813:1 6828:2 6844:1 6845:1 6860:2 6883:2 6999:1 7034:1 7114:1 7127:1 7140:1 7153:1 7169:1 7232:1 7244:1 7247:9 7271:1 7291:1 7353:1 7357:1 7384:1 7420:1 7422:1 7443:1 7444:2 7454:1 7459:1 7473:1 7574:1 7579:2 7582:1 7583:1 7609:1 7642:1 7652:1 7668:1 7700:1 7701:1 7900:1 7913:1 7930:1 7988:1 8009:1 8012:1 8013:1 8017:1 8023:2 8042:1 8056:1 8057:1 8058:3 8098:1 8100:1 8113:1 8137:1 8192:1 8194:1 8196:1 8200:1 8247:1 8248:1 8253:1 8280:1 8333:1 8533:2 8542:1 8573:1 8616:1 8779:1 8786:1 8809:3 8840:1 8843:1 8872:1 8959:2 8980:1 9006:1 9051:1 9129:1 9177:1 9183:1 9238:1 9251:1 9260:5 9329:1 9333:1 9337:1 9347:1 9380:1 9404:1 9406:3 9443:1 9461:1 9597:1 9605:1 9612:1 9624:2 9632:2 9683:2 9704:1 9721:1 9759:1 9788:1 9813:1 9829:1 9859:1 9865:1 9870:1 9879:1 9884:1 9924:1 10010:1 10013:1 10058:1 10111:1 10125:2 10129:2 10193:2 10200:1 10212:1 10263:1 10272:2 10298:1 10399:1 10409:1 10442:3 10459:6 10479:5 10484:1 10554:1 10640:1 10721:3 10725:1 10742:1 10749:1 10756:2 10764:1 10790:1 10797:1 10820:1 10824:1 10865:1 10922:1 10948:1 10968:1 10996:1 11058:10 11081:1 11140:1 11197:1 11200:4 11276:1 11310:1 11321:1 11326:1 11330:1 11362:1 11416:1 11417:1 11420:1 11446:2 11457:1 11520:1 11559:1 11563:1 11568:1 11573:1 11608:1 11634:1 11637:1 11639:1 11641:1 11652:1 11656:1 11658:1 11664:1 11668:1 11687:1 11715:1 11730:1 11736:2 11800:1 11842:1 11877:1 11937:1 11978:1 12026:1 12063:1 12132:1 12161:1 12210:1 12228:1 12251:1 12260:1 12280:1 12331:1 12355:1 12397:1 12415:1 12433:1 12437:1 12481:1 12497:1 12519:1 12532:1 12537:1 12556:1 12566:1 12610:1 12642:1 12648:1 12759:1 12809:1 12858:1 12978:1 13028:1 13072:1 13121:1 13141:1 13153:1 13207:2 13219:1 13238:1 13250:1 13307:1 13370:2 13388:1 13446:1 13481:1 13483:2 13485:1 13556:1 13627:1 13631:1 13642:1 13662:1 13670:1 13677:2 13682:1 13727:1 13769:1 13789:1 13866:2 13912:1 13926:1 13939:3 13942:1 13948:2 13956:1 13959:1 13999:1 14090:1 14095:2 14105:1 14112:1 14142:1 14258:1 14261:1 14271:1 14278:1 14279:1 14284:1 14288:1 14298:1 14362:1 14363:1 14429:1 14470:2 14527:1 14575:1 14603:1 14641:1 14651:1 14664:1 14672:1 14694:1 14780:1 14781:1 14796:1 14828:2 14846:1 14868:1 14884:1 14889:1 14916:1 14981:1 15048:1 15110:1 15142:1 15156:1 15171:1 15256:1 15262:1 15305:1 15308:1 15311:1 15363:1 15396:1 15452:2 15458:3 15499:1 15511:2 15521:3 15532:3 15582:2 15598:1 15608:1 15619:1 15651:1 15679:1 15698:1 15721:1 15741:1 15797:1 15820:1 15878:1 15882:1 15966:1 15983:1 15990:1 16029:1 16060:1 16101:1 16109:1 16154:1 16157:2 16175:2 16299:1 16314:1 16345:1 16462:1 16558:1 16560:1 16592:1 16707:1 16746:1 16756:1 16766:1 16807:1 16825:1 16826:1 16875:1 16999:1 17003:1 17031:1 17043:1 17050:1 17139:1 17175:1 17202:2 17208:1 17260:1 17282:1 17317:1 17336:1 17340:1 17383:1 17399:2 17418:1 17427:1 17434:2 17470:1 17481:1 17533:1 17540:2 17565:1 17616:1 17637:1 17667:1 17695:1 17718:1 17781:1 17826:1 17835:1 17894:1 17897:9 17902:1 17936:1 17947:2 18044:1 18073:1 18117:2 18189:1 18258:1 18282:1 18294:1 18332:1 18394:1 18404:1 18417:1 18435:1 18437:1 18460:1 18521:1 18550:1 18558:1 18583:1 18616:1 18656:1 18670:1 18681:1 18785:1 18830:1 18916:1 18935:1 18958:1 19060:1 19067:1 19086:1 19176:1 19182:1 19217:1 19221:2 19244:1 19263:1 19324:1 19346:1 19347:1 19430:1 19435:1 19572:1 19584:2 19629:1 19669:1 19672:1 19674:1 19681:1 19706:1 19760:1 19772:1 19779:1 19784:1 19799:1
5 5:1 28:1 33:1 35:1 68:2 160:2 178:1 185:1 200:1 220:1 227:1 233:1 352:1 353:1 417:1 418:1 422:1 477:1 485:1 495:1 565:1 600:1 605:1 615:1 661:1 720:1 738:1 749:1 793:1 825:1 833:1 864:1 865:2 880:1 931:1 950:2 972:1 1014:1 1015:1 1104:1 1108:1 1145:1 1213:2 1214:1 1242:1 1252:1 1274:2 1279:2 1288:1 1310:1 1323:1 1324:1 1335:1 1336:1 1337:3 1340:1 1380:2 1408:1 1424:2 1463:1 1486:1 1504:1 1512:1 1578:1 1635:1 1643:1 1649:1 1654:1 1657:2 1658:1 1659:1 1670:1 1675:1 1680:1 1683:1 1694:1 1714:1 1732:1 1759:1 1786:1 1859:1 1894:1 1902:1 1920:1 1975:1 2030:1 2050:1 2066:1 2074:1 2078:1 2097:1 2108:1 2112:1 2129:1 2138:1 2180:1 2230:1 2255:2 2280:1 2356:1 2394:2 2405:1 2471:2 2521:1 2656:1 2695:1 2748:1 2764:1 2812:1 2816:1 2823:3 2876:1 2882:1 2923:1 2972:1 2977:1 2979:1 2982:1 2992:2 3007:2 3015:1 3062:1 3139:1 3143:1 3178:1 3222:1 3243:1 3258:2 3263:1 3287:1 3355:1 3429:2 3513:1 3516:2 3532:1 3554:1 3587:1 3594:2 3692:1 3695:1 3705:1 3745:1 3759:1 3854:1 3855:5 3868:1 3876:1 3914:2 3965:1 3977:2 4050:1 4103:1 4135:1 4177:1 4185:1 4202:1 4210:1 4246:1 4256:1 4279:1 4282:1 4387:1 4401:1 4419:1 4446:1 4532:1 4591:1 4610:1 4650:1 4656:1 4714:1 4725:2 4726:1 4727:3 4735:1 4752:1 4761:1 4766:2 4782:1 4800:1 4828:2 4854:1 4896:3 4906:1 4944:1 5017:1 5037:1 5058:1 5099:1 5110:1 5116:1 5147:1 5153:603 5155:1 5158:1 5171:1 5212:2 5250:1 5400:1 5404:1 5426:1 5427:1 5455:1 5497:1 5592:1 5612:1 5616:1 5695:1 5741:1 5757:1 5825:1 5840:1 5864:1 5867:1 5931:1 6013:1 6016:1 6020:2 6026:1 6064:1 6069:1 6133:1 6189:1 6219:1 6262:1 6311:1 6345:1 6377:1 6387:1 6392:4 6405:1 6460:1 6485:1 6538:1 6551:1 6572:2 6581:1 6587:1 6594:2 6602:1 6605:1 6608:1 6637:1 6652:2 6672:1 6690:1 6764:1 6797:1 6813:1 6828:2 6844:1 6845:2 6860:2 6883:3 6967:1 6974:1 6999:1 7021:1 7034:1 7114:1 7127:1 7134:1 7140:1 7153:1 7169:1 7232:1 7244:1 7247:9 7271:1 7291:2 7353:1 7357:1 7361:1 7384:1 7420:1 7422:1 7443:1 7444:2 7454:1 7457:1 7459:1 7473:1 7560:1 7564:1 7574:1 7579:2 7582:1 7583:1 7609:1 7642:1 7652:1 7668:1 7700:1 7701:1 7900:1 7913:1 7930:1 7988:1 8009:1 8012:1 8013:1 8017:1 8023:2 8042:1 8056:1 8057:1 8058:3 8094:1 8098:1 8100:1 8113:1 8137:1 8192:1 8194:1 8196:1 8200:1 8247:1 8248:1 8253:1 8280:1 8333:1 8533:2 8542:1 8573:1 8616:1 8755:1 8776:1 8779:1 8786:2 8794:1 8809:3 8840:1 8843:1 8872:1 8959:2 8971:1 8980:1 9006:1 9026:1 9051:1 9072:1 9129:1 9177:1 9183:1 9189:1 9238:1 9251:1 9260:6 9268:1 9295:1 9329:1 9333:1 9337:1 9347:1 9380:1 9404:1 9406:4 9443:1 9461:1 9597:1 9605:1 9612:1 9624:2 9632:2 9683:2 9704:1 9721:2 9759:1 9788:1 9798:1 9813:1 9818:1 9829:1 9859:1 9865:2 9870:1 9879:1 9884:1 9910:1 9916:1 9924:1 9940:1 9963:1 10010:1 10013:1 10058:1 10092:1 10111:1 10125:2 10129:2 10193:2 10200:2 10212:1 10263:1 10272:2 10297:1 10298:1 10399:1 10409:1 10442:3 10459:7 10479:6 10484:1 10554:1 10640:1 10721:3 10725:1 10742:1 10749:1 10756:2 10764:1 10790:1 10797:1 10820:1 10824:1 10865:1 10922:1 10925:1 10948:1 10968:1 10996:1 11058:10 11081:1 11123:1 11140:1 11159:1 11175:1 11197:1 11200:5 11276:1 11310:1 11321:1 11326:1 11330:1 11362:1 11416:1 11417:1 11420:2 11446:2 11457:1 11520:1 11559:1 11563:1 11568:1 11573:1 11608:1 11634:1 11637:1 11639:1 11641:1 11652:1 11656:1 11658:1 11664:1 11667:1 11668:1 11687:1 11715:1 11730:2 11736:2 11765:1 11770:1 11800:1 11842:1 11877:1 11895:1 11937:1 11978:1 12026:1 12063:1 12132:1 12161:1 12172:1 12210:1 12228:1 12251:1 12260:1 12280:1 12331:1 12355:1 12397:1 12415:1 12433:1 12437:1 12440:1 12481:1 12497:1 12519:1 12532:1 12537:1 12556:2 12566:1 12610:1 12642:1 12648:1 12722:1 12731:1 12759:1 12779:1 12809:1 12836:1 12858:1 12978:1 13028:1 13072:1 13121:1 13141:1 13153:1 13207:2 13219:1 13238:1 13250:1 13266:1 13307:1 13370:2 13388:1 13446:1 13481:1 13483:2 13485:1 13546:1 13556:1 13627:1 13631:1 13642:1 13646:1 13662:1 13670:1 13677:2 13682:1 13727:1 13769:1 13789:1 13826:1 13866:2 13876:1 13912:1 13926:1 13939:4 13942:1 13948:2 13956:1 13959:1 13999:1 14090:1 14095:2 14105:1 14112:1 14142:1 14212:1 14258:1 14261:1 14271:1 14278:1 14279:1 14284:1 14288:1 14298:2 14311:1 14344:1 14362:1 14363:1 14374:1 14429:1 14470:2 14479:1 14527:1 14575:1 14603:1 14641:1 14651:1 14663:1 14664:1 14672:1 14694:1 14780:1 14781:1 14796:1 14815:1 14828:2 14846:1 14868:1 14884:1 14889:1 14916:1 14981:1 15048:1 15086:1 15110:1 15130:1 15142:1 15156:1 15171:1 15256:1 15262:1 15305:1 15308:1 15311:1 15363:1 15396:1 15404:1 15452:2 15458:3 15499:1 15511:2 15521:3 15532:3 15537:1 15582:2 15598:1 15607:1 15608:1 15619:1 15651:1 15679:1 15698:1 15721:1 15727:1 15741:1 15760:1 15773:1 15797:1 15820:1 15878:1 15882:2 15936:1 15949:1 15966:1 15983:1 15990:1 16019:1 16029:1 16060:1 16101:1 16109:1 16115:1 16147:1 16154:1 16157:2 16175:2 16299:1 16314:1 16345:1 16462:1 16475:1 16535:1 16558:1 16560:1 16592:1 16707:1 16746:1 16756:1 16763:1 16766:1 16807:1 16820:1 16825:1 16826:1 16875:1 16886:1 16999:1 17003:1 17031:1 17043:1 17050:1 17120:1 17139:1 17169:1 17175:1 17202:2 17207:1 17208:1 17260:1 17282:1 17317:1 17319:1 17336:1 17340:1 17383:1 17399:2 17418:1 17427:1 17432:1 17434:2 17468:2 17470:1 17481:1 17533:1 17540:2 17565:1 17616:1 17637:1 17667:1 17695:1 17718:1 17781:1 17791:1 17796:1 17826:1 17835:1 17891:1 17894:1 17897:10 17902:1 17936:1 17947:2 17967:1 18044:1 18073:1 18117:2 18189:1 18257:1 18258:1 18281:1 18282:1 18294:1 18332:1 18394:1 18404:1 18417:1 18435:1 18437:1 18460:1 18521:1 18550:1 18558:1 18583:1 18616:1 18656:1 18670:1 18681:1 18785:1 18830:2 18899:1 18916:1 18935:1 18958:1 19060:1 19067:1 19086:1 19176:1 19182:1 19217:1 19221:2 19244:1 19263:1 19324:1 19346:1 19347:1 19430:1 19435:1 19490:1 19572:1 19584:2 19629:1 19664:1 19669:1 19672:1 19674:1 19681:1 19706:1 19760:1 19772:2 19779:1 19784:1 19799:1
5 2:1 5:1 28:1 33:1 35:1 68:2 145:1 160:3 178:1 185:2 200:1 220:1 227:1 233:1 352:1 353:1 365:1 417:1 418:1 422:1 461:2 477:1 485:1 495:1 510:1 565:1 595:1 600:1 605:1 615:1 639:1 661:1 720:1 738:1 749:1 793:1 825:1 826:1 833:1 864:1 865:2 880:2 931:1 950:2 971:1 972:1 1014:1 1015:1 1045:1 1104:1 1108:1 1138:1 1145:1 1213:3 1214:1 1232:1 1242:1 1252:1 1274:2 1279:2 1288:1 1310:1 1320:1 1323:1 1324:1 1328:1 1335:1 1336:1 1337:3 1340:1 1357:1 1380:2 1408:1 1424:2 1427:1 1463:3 1486:1 1504:1 1512:1 1578:1 1635:1 1643:1 1649:1 1653:1 1654:2 1657:2 1658:1 1659:1 1670:1 1675:1 1680:1 1683:1 1694:1 1714:1 1732:1 1759:1 1767:1 1786:1 1859:1 1884:1 1894:1 1901:1 1902:1 1910:1 1920:1 1975:1 2030:1 2050:1 2066:1 2074:1 2078:1 2097:1 2108:1 2112:2 2129:1 2138:1 2180:1 2207:1 2230:1 2255:2 2280:1 2356:1 2394:2 2405:1 2471:2 2521:1 2656:1 2695:1 2716:1 2748:1 2764:1 2812:1 2816:1 2823:3 2876:1 2882:1 2916:1 2923:1 2972:1 2975:1 2977:1 2979:1 2982:1 2992:2 3007:2 3015:1 3062:1 3139:1 3143:1 3165:1 3178:1 3222:1 3237:1 3243:1 3253:1 3258:2 3263:1 3287:1 3355:1 3429:3 3513:1 3516:2 3521:1 3532:1 3554:1 3587:1 3591:1 3594:2 3682:1 3692:1 3695:1 3705:1 3745:1 3759:1 3765:1 3838:1 3854:1 3855:5 3868:1 3876:1 3914:2 3961:1 3965:1 3977:2 4050:1 4052:2 4103:1 4135:1 4177:1 4185:1 4202:1 4210:1 4214:1 4246:2 4256:1 4279:1 4282:1 4387:1 4401:1 4419:1 4446:1 4456:1 4532:1 4591:1 4602:3 4603:1 4609:1 4610:1 4650:2 4656:1 4714:1 4721:1 4725:2 4726:1 4727:3 4735:1 4752:1 4761:1 4766:3 4782:1 4800:1 4828:2 4854:1 4896:3 4900:1 4906:1 4944:1 4952:1 5017:1 5037:1 5058:1 5099:1 5110:1 5116:1 5141:1 5147:1 5153:687 5155:1 5158:1 5171:1 5196:1 5212:2 5250:1 5311:1 5400:1 5404:1 5426:1 5427:1 5433:1 5455:1 5497:1 5592:1 5612:1 5616:1 5658:1 5670:1 5683:1 5695:1 5741:1 5757:1 5825:1 5840:1 5864:1 5867:1 5931:1 6013:2 6016:1 6020:2 6026:1 6064:1 6069:1 6133:1 6189:1 6219:1 6240:1 6262:1 6281:1 6311:1 6345:1 6377:1 6387:1 6392:4 6405:1 6460:1 6485:1 6538:1 6551:1 6572:2 6581:1 6587:1 6594:3 6602:1 6605:1 6608:1 6637:1 6649:1 6652:2 6672:1 6690:1 6743:1 6764:1 6797:1 6813:1 6828:3 6844:1 6845:2 6860:2 6883:5 6886:1 6892:1 6959:1 6967:1 6974:1 6999:1 7021:1 7034:1 7114:1 7127:1 7134:1 7140:1 7153:1 7169:1 7232:1 7244:1 7247:15 7271:1 7291:3 7353:1 7357:1 7361:1 7384:1 7387:3 7420:1 7422:1 7443:1 7444:2 7454:1 7457:1 7459:1 7473:1 7556:1 7560:1 7564:1 7574:1 7579:2 7582:1 7583:1 7609:1 7642:1 7652:1 7668:1 7700:1 7701:1 7900:1 7913:1 7930:1 7957:1 7988:1 8009:1 8012:1 8013:2 8017:1 8023:2 8042:1 8056:1 8057:1 8058:3 8094:1 8098:1 8100:1 8113:1 8137:1 8192:1 8194:1 8196:1 8200:1 8247:1 8248:1 8253:1 8280:1 8296:1 8333:1 8360:1 8434:1 8533:2 8542:1 8573:1 8616:1 8755:1 8776:1 8779:1 8786:2 8794:1 8809:3 8840:1 8843:1 8872:1 8959:2 8971:1 8980:1 9006:1 9026:1 9051:1 9072:1 9090:1 9122:1 9129:1 9177:1 9183:1 9189:1 9238:1 9251:1 9260:7 9268:1 9295:2 9329:1 9333:1 9337:1 9347:1 9357:1 9380:1 9404:1 9406:4 9443:1 9444:1 9456:1 9461:1 9499:1 9508:1 9548:1 9560:1 9569:1 9597:1 9605:1 9612:1 9624:2 9626:1 9632:2 9659:1 9683:2 9704:1 9721:3 9759:1 9788:1 9798:1 9813:1 9818:1 9829:1 9842:1 9859:1 9865:2 9870:1 9879:1 9884:1 9910:1 9916:1 9924:1 9940:1 9948:1 9952:1 9963:1 10010:1 10013:1 10058:1 10059:1 10070:1 10092:1 10111:1 10125:2 10129:4 10193:2 10200:2 10212:1 10243:1 10263:1 10272:2 10280:1 10297:1 10298:1 10349:1 10399:1 10409:1 10442:3 10459:8 10468:1 10479:6 10484:1 10554:1 10639:1 10640:1 10685:1 10721:3 10725:1 10742:1 10749:1 10756:2 10764:1 10790:1 10797:1 10820:1 10824:1 10865:2 10922:1 10925:1 10930:1 10948:1 10968:1 10996:1 11017:1 11032:1 11046:2 11058:12 11081:1 11123:1 11140:1 11159:1 11175:1 11197:1 11200:6 11276:1 11310:1 11321:1 11326:1 11330:1 11362:1 11405:1 11416:2 11417:1 11420:2 11446:2 11457:1 11520:1 11559:1 11563:1 11568:1 11573:1 11608:1 11634:1 11637:1 11639:1 11641:2 11652:1 11656:1 11658:1 11664:1 11667:1 11668:1 11678:1 11687:1 11715:1 11730:2 11736:2 11765:1 11770:1 11773:1 11800:1 11842:1 11866:1 11877:1 11895:1 11937:1 11978:1 12026:1 12052:1 12055:1 12063:1 12132:1 12161:1 12172:1 12210:1 12228:1 12251:1 12260:1 12280:1 12331:1 12355:1 12397:1 12415:1 12433:1 12437:1 12440:1 12481:1 12497:1 12519:1 12532:1 12537:1 12556:2 12566:1 12610:1 12642:1 12648:1 12712:1 12722:1 12723:1 12731:2 12759:1 12779:1 12809:1 12836:1 12858:1 12938:1 12978:1 13028:1 13072:1 13106:1 13121:1 13141:1 13153:1 13179:1 13200:1 13207:3 13208:1 13219:1 13238:1 13250:1 13256:1 13266:1 13307:1 13358:1 13370:2 13388:1 13446:1 13481:1 13483:2 13485:1 13546:1 13556:1 13627:1 13631:1 13642:1 13646:1 13662:1 13670:1 13672:1 13677:2 13682:1 13727:1 13769:1 13789:1 13826:1 13853:1 13866:3 13876:1 13899:1 13912:1 13915:1 13926:1 13939:4 13942:2 13948:3 13950:1 13956:1 13959:1 13999:1 14090:1 14095:2 14105:1 14112:1 14142:1 14212:1 14238:1 14258:1 14261:1 14271:1 14278:1 14279:1 14284:1 14288:1 14298:2 14311:1 14344:1 14361:1 14362:1 14363:1 14374:1 14429:1 14470:2 14479:1 14527:1 14575:1 14603:1 14637:1 14641:1 14651:1 14663:1 14664:1 14672:1 14694:2 14706:1 14780:1 14781:1 14796:1 14811:2 14815:1 14828:2 14846:1 14868:1 14884:1 14889:1 14916:1 14933:1 14981:1 15025:1 15040:1 15048:1 15086:1 15110:1 15130:1 15142:1 15156:1 15166:1 15171:1 15232:1 15249:1 15256:1 15262:1 15287:1 15305:1 15308:1 15311:1 15363:1 15396:1 15404:1 15452:2 15455:1 15458:3 15499:1 15511:3 15521:3 15532:3 15537:1 15582:3 15598:1 15607:1 15608:1 15619:1 15651:1 15678:1 15679:1 15698:1 15721:1 15727:1 15741:1 15753:1 15760:1 15773:1 15797:1 15820:1 15878:1 15882:3 15886:3 15936:1 15949:1 15966:1 15983:1 15990:1 16019:1 16029:1 16060:1 16101:1 16109:1 16115:1 16147:1 16154:1 16157:2 16175:2 16299:1 16314:1 16333:1 16345:1 16462:1 16475:1 16535:1 16558:1 16560:1 16592:1 16679:1 16707:1 16746:1 16756:1 16763:1 16766:1 16807:1 16820:1 16825:1 16826:1 16875:1 16880:1 16886:1 16905:2 16983:1 16999:1 17002:1 17003:1 17031:1 17043:1 17050:1 17067:1 17119:1 17120:1 17137:2 17139:1 17143:1 17169:1 17175:1 17202:2 17207:1 17208:1 17260:1 17282:1 17317:1 17319:1 17336:1 17340:1 17383:1 17399:2 17414:1 17418:1 17422:1 17427:1 17432:1 17434:2 17468:2 17470:1 17481:1 17533:1 17540:2 17565:1 17570:1 17616:1 17637:1 17667:1 17695:1 17718:1 17781:2 17791:1 17796:1 17826:1 17835:1 17844:1 17891:1 17894:1 17897:11 17902:1 17936:1 17947:2 17967:1 18044:1 18073:2 18117:2 18189:1 18257:1 18258:1 18281:1 18282:1 18294:1 18332:1 18394:1 18404:1 18417:1 18435:1 18437:1 18460:1 18521:1 18550:1 18558:1 18583:1 18616:1 18645:1 18656:1 18670:1 18681:1 18763:3 18785:1 18830:3 18899:1 18916:1 18935:1 18958:1 19060:1 19067:1 19086:1 19134:1 19176:1 19182:1 19208:1 19217:1 19221:2 19244:1 19263:1 19324:1 19346:1 19347:1 19430:1 19435:1 19489:1 19490:1 19542:1 19572:1 19584:3 19629:1 19664:1 19669:1 19672:1 19674:1 19681:1 19706:1 19760:1 19772:2 19779:1 19784:1 19799:1 19828:1
5 2:1 5:1 28:1 33:1 35:1 65:1 68:2 105:1 131:1 145:1 160:3 178:1 185:2 200:1 220:1 227:1 233:1 289:1 352:1 353:1 365:1 393:1 417:1 418:2 422:1 461:2 477:1 485:1 495:1 510:1 511:1 565:1 592:1 595:1 600:1 605:1 615:1 639:1 661:1 720:1 738:1 749:1 793:1 825:1 826:1 833:1 864:1 865:2 880:3 931:1 942:1 950:2 971:1 972:1 1014:1 1015:1 1045:1 1074:1 1104:1 1108:1 1138:1 1145:1 1213:3 1214:1 1232:1 1242:1 1252:1 1274:2 1279:2 1288:1 1310:1 1320:1 1323:1 1324:1 1328:1 1335:1 1336:1 1337:3 1340:2 1357:1 1380:2 1392:1 1408:1 1424:2 1427:1 1463:3 1486:1 1504:2 1512:1 1578:1 1635:1 1643:1 1649:1 1653:1 1654:2 1657:2 1658:1 1659:1 1670:1 1675:1 1680:1 1683:1 1694:1 1714:1 1732:1 1759:1 1767:1 1786:1 1859:1 1884:1 1894:1 1901:1 1902:1 1910:1 1920:1 1975:1 2030:1 2045:1 2050:1 2066:1 2074:1 2078:1 2097:1 2108:1 2112:2 2129:1 2138:1 2180:1 2207:1 2230:1 2255:2 2280:1 2356:1 2394:2 2405:1 2471:2 2521:1 2656:1 2695:1 2716:1 2748:1 2764:1 2812:1 2816:1 2823:4 2876:1 2882:1 2916:1 2923:1 2929:1 2972:1 2975:1 2977:1 2979:1 2982:1 2984:1 2992:2 3007:2 3015:1 3062:1 3087:1 3139:1 3143:1 3165:1 3178:1 3222:1 3237:1 3243:1 3253:1 3258:2 3263:1 3287:1 3293:1 3355:1 3429:3 3513:1 3516:2 3521:2 3532:1 3554:1 3587:1 3590:1 3591:1 3594:2 3650:1 3682:1 3692:1 3695:1 3705:1 3719:1 3745:1 3759:1 3765:1 3838:1 3854:1 3855:9 3868:2 3876:1 3914:2 3961:1 3965:1 3977:2 4050:1 4052:2 4063:1 4103:1 4135:1 4177:1 4185:1 4202:1 4210:2 4214:1 4246:2 4256:1 4279:1 4282:2 4387:1 4401:1 4419:1 4446:1 4456:1 4462:1 4532:1 4591:1 4602:4 4603:1 4609:1 4610:1 4650:2 4656:1 4671:1 4714:1 4721:1 4725:3 4726:1 4727:5 4735:1 4752:1 4761:1 4766:3 4782:1 4800:1 4828:2 4854:1 4896:4 4900:1 4906:1 4944:1 4952:1 5004:1 5017:1 5037:1 5039:1 5058:1 5099:1 5110:1 5116:1 5121:1 5141:1 5147:1 5153:797 5155:1 5158:1 5171:1 5196:1 5212:3 5250:1 5311:1 5358:1 5400:1 5404:1 5414:1 5426:1 5427:1 5433:1 5455:1 5497:1 5592:1 5612:1 5616:1 5658:1 5670:1 5683:1 5695:1 5741:1 5757:1 5825:1 5840:1 5864:1 5867:1 5931:1 6013:2 6016:1 6020:2 6026:1 6035:1 6053:1 6064:1 6069:1 6133:1 6135:1 6189:1 6219:1 6240:1 6262:1 6281:1 6311:1 6345:1 6375:1 6377:1 6387:1 6392:5 6395:1 6400:1 6405:2 6460:1 6485:1 6538:1 6551:1 6572:2 6581:1 6587:1 6594:3 6597:1 6602:1 6605:1 6608:1 6637:1 6649:1 6652:2 6672:1 6690:1 6743:1 6764:1 6797:1 6813:1 6828:3 6844:1 6845:2 6860:2 6883:5 6886:1 6892:1 6959:1 6967:1 6974:1 6999:1 7021:1 7034:1 7114:1 7127:1 7134:1 7140:1 7153:1 7169:1 7192:1 7232:1 7244:1 7247:19 7271:1 7291:3 7312:1 7353:1 7357:1 7361:1 7384:1 7387:4 7420:1 7422:3 7443:1 7444:2 7450:1 7454:1 7457:1 7459:1 7473:1 7556:1 7560:1 7564:1 7574:1 7579:2 7582:1 7583:2 7609:1 7642:1 7652:1 7656:1 7668:1 7692:1 7700:1 7701:1 7835:1 7880:1 7900:1 7913:1 7930:1 7940:1 7957:1 7988:1 8009:1 8012:1 8013:2 8017:1 8023:2 8042:1 8056:1 8057:1 8058:3 8094:1 8098:1 8100:1 8113:1 8137:1 8138:1 8192:1 8194:1 8196:1 8199:1 8200:1 8247:1 8248:1 8253:1 8280:1 8296:1 8333:1 8347:1 8360:1 8387:1 8434:1 8491:1 8520:1 8533:2 8542:1 8554:1 8573:1 8616:2 8732:1 8755:1 8776:1 8779:1 8786:2 8794:1 8809:3 8840:1 8843:1 8848:1 8872:1 8959:2 8971:1 8980:1 9006:1 9026:1 9051:1 9072:1 9090:1 9122:1 9129:1 9177:1 9183:1 9189:1 9228:1 9234:1 9238:1 9251:1 9260:8 9261:1 9268:1 9295:2 9329:1 9333:1 9337:1 9347:1 9357:1 9370:1 9380:1 9404:1 9406:4 9443:2 9444:1 9456:1 9461:1 9499:1 9508:1 9548:1 9560:1 9569:1 9597:1 9605:1 9606:1 9612:1 9624:4 9626:1 9627:1 9632:2 9641:1 9659:1 9683:2 9693:1 9704:1 9721:3 9759:1 9788:1 9798:1 9813:1 9818:1 9829:1 9842:1 9859:1 9865:2 9870:1 9879:1 9884:1 9910:1 9916:1 9924:1 9940:1 9948:1 9952:1 9963:1 10010:1 10013:1 10044:1 10058:1 10059:1 10070:1 10092:1 10111:2 10125:2 10129:4 10193:2 10200:2 10212:1 10243:1 10263:1 10272:3 10280:1 10297:1 10298:1 10349:1 10376:1 10378:1 10398:1 10399:1 10409:1 10442:3 10459:9 10468:1 10479:10 10484:1 10554:2 10573:1 10639:1 10640:1 10649:1 10685:1 10721:3 10725:1 10740:1 10742:1 10749:1 10756:2 10764:1 10790:1 10797:1 10820:1 10824:1 10865:2 10877:1 10922:1 10925:1 10930:1 10948:1 10968:1 10996:1 11017:1 11032:1 11046:2 11058:12 11081:1 11117:1 11123:1 11140:1 11159:1 11164:1 11175:1 11197:1 11200:7 11276:1 11310:2 11321:1 11326:1 11330:1 11362:1 11405:1 11416:2 11417:1 11420:2 11446:2 11457:1 11520:1 11559:1 11563:1 11568:1 11573:1 11608:1 11634:1 11637:1 11639:1 11641:2 11652:1 11656:1 11658:1 11664:1 11667:1 11668:1 11678:1 11679:1 11687:1 11715:1 11730:2 11736:2 11765:1 11770:1 11773:1 11800:1 11842:1 11866:1 11877:1 11895:1 11937:1 11958:1 11978:1 12026:1 12052:2 12055:1 12063:1 12132:1 12161:1 12172:1 12210:1 12228:1 12251:1 12260:1 12280:1 12331:1 12355:1 12357:1 12397:1 12405:1 12415:1 12433:1 12437:1 12440:1 12454:1 12481:1 12497:2 12519:1 12532:1 12537:1 12556:2 12566:1 12610:1 12642:1 12648:1 12712:1 12722:1 12723:1 12731:2 12747:1 12759:1 12779:1 12809:1 12836:1 12858:1 12938:1 12978:1 13028:1 13072:1 13106:1 13121:1 13141:1 13153:1 13179:1 13200:1 13207:3 13208:1 13219:1 13238:1 13250:1 13256:1 13266:1 13307:1 13358:1 13370:2 13388:1 13426:1 13446:1 13481:1 13483:2 13485:1 13508:1 13546:1 13556:1 13627:1 13631:1 13642:1 13646:1 13662:1 13670:1 13672:1 13677:2 13682:1 13727:1 13769:1 13789:1 13817:1 13826:1 13853:1 13866:4 13876:1 13899:1 13904:1 13912:1 13915:1 13926:1 13939:5 13942:2 13948:3 13950:1 13956:1 13959:1 13981:1 13983:1 13999:1 14090:1 14095:2 14105:1 14112:1 14142:1 14188:1 14212:1 14238:1 14258:1 14261:1 14271:1 14278:1 14279:1 14284:1 14288:1 14293:1 14298:2 14311:1 14344:1 14349:1 14361:1 14362:1 14363:1 14374:1 14383:1 14429:1 14470:2 14479:1 14527:1 14575:1 14603:1 14636:1 14637:1 14641:1 14651:1 14663:1 14664:1 14672:1 14694:2 14706:1 14779:1 14780:1 14781:1 14796:1 14811:2 14815:1 14828:2 14846:1 14868:1 14884:1 14889:2 14916:1 14933:1 14981:1 15025:1 15040:1 15048:1 15069:1 15086:1 15110:1 15130:1 15142:1 15156:1 15166:1 15171:1 15226:1 15232:1 15249:1 15256:1 15262:1 15287:1 15305:1 15308:1 15311:1 15363:1 15396:1 15404:1 15452:2 15455:1 15458:3 15499:1 15511:3 15516:1 15521:3 15532:3 15537:1 15545:1 15582:3 15584:1 15598:3 15607:1 15608:1 15619:1 15643:1 15651:1 15678:1 15679:1 15698:1 15721:1 15727:1 15741:1 15753:1 15760:1 15764:1 15773:1 15797:1 15820:1 15827:1 15865:1 15878:1 15882:3 15886:4 15936:1 15949:1 15966:1 15983:1 15990:1 16019:1 16029:1 16057:1 16060:2 16101:1 16109:1 16115:1 16147:1 16154:1 16157:2 16175:3 16299:1 16314:1 16333:1 16345:1 16462:1 16475:1 16535:2 16558:1 16560:1 16592:1 16679:1 16707:1 16746:1 16756:1 16763:1 16766:1 16807:1 16820:1 16825:1 16826:1 16853:1 16875:1 16880:1 16886:1 16905:2 16915:1 16919:1 16981:1 16983:1 16999:1 17000:1 17002:1 17003:1 17009:1 17031:1 17043:1 17050:1 17067:1 17097:1 17119:1 17120:1 17137:2 17139:1 17143:1 17169:1 17175:1 17202:3 17207:1 17208:1 17260:1 17282:1 17317:1 17319:1 17336:1 17340:1 17341:1 17383:1 17384:1 17399:2 17414:1 17418:1 17422:1 17427:1 17432:1 17434:2 17468:2 17470:1 17481:1 17533:1 17540:2 17565:1 17570:1 17616:1 17637:1 17667:1 17695:1 17718:1 17781:3 17791:1 17796:1 17826:1 17835:1 17844:2 17891:1 17894:1 17897:11 17902:1 17936:1 17947:2 17961:1 17967:1 18044:1 18073:2 18084:1 18106:1 18117:2 18119:1 18189:1 18196:1 18257:1 18258:1 18281:1 18282:1 18294:1 18295:1 18332:1 18367:1 18394:1 18404:1 18412:1 18417:2 18435:1 18437:1 18460:1 18521:1 18550:1 18558:1 18562:1 18580:1 18583:1 18616:1 18645:1 18656:1 18670:2 18681:1 18687:1 18728:1 18763:4 18785:2 18830:3 18899:1 18916:1 18935:1 18958:1 18996:1 19015:1 19060:1 19067:1 19086:1 19134:1 19176:1 19182:1 19208:1 19217:1 19221:2 19244:1 19263:1 19324:1 19346:1 19347:1 19430:1 19435:1 19489:1 19490:1 19542:1 19572:1 19584:3 19588:1 19629:1 19664:1 19669:1 19672:1 19674:1 19681:1 19706:1 19760:1 19772:2 19779:1 19784:1 19799:1 19828:1 19861:1
5 2:1 5:1 28:1 33:1 35:1 65:1 68:2 105:1 131:1 145:1 160:3 167:1 178:1 185:2 200:1 220:1 227:1 233:1 289:1 352:1 353:1 365:1 393:1 413:1 417:1 418:2 422:1 461:2 477:1 485:1 495:1 510:1 511:1 565:1 574:1 592:1 595:1 600:1 605:1 615:1 639:1 661:1 720:1 738:1 749:1 793:1 825:1 826:1 833:1 864:1 865:2 880:3 931:2 942:1 950:2 971:1 972:1 1014:1 1015:1 1045:1 1074:1 1104:1 1108:1 1138:1 1145:1 1213:3 1214:1 1232:1 1242:1 1252:1 1274:2 1279:2 1288:1 1310:1 1320:1 1323:1 1324:1 1328:1 1335:1 1336:1 1337:3 1340:2 1357:1 1380:2 1392:1 1408:1 1424:2 1427:1 1463:3 1486:1 1504:2 1512:1 1578:1 1635:1 1643:1 1649:1 1653:1 1654:2 1657:2 1658:1 1659:1 1670:1 1675:1 1680:1 1683:1 1694:1 1714:1 1723:1 1732:1 1759:1 1767:1 1786:1 1859:1 1884:1 1894:1 1901:1 1902:1 1910:1 1920:1 1975:1 2030:1 2045:1 2050:1 2060:1 2066:1 2074:1 2078:1 2097:2 2108:1 2112:2 2129:1 2138:1 2180:1 2207:1 2230:1 2255:3 2280:1 2345:1 2356:1 2394:2 2405:1 2471:2 2521:1 2656:1 2695:1 2716:1 2748:1 2764:1 2812:1 2816:1 2823:5 2876:1 2882:1 2916:1 2923:1 2929:1 2954:1 2972:1 2975:1 2977:1 2979:1 2982:1 2984:1 2992:2 3006:1 3007:2 3015:1 3062:1 3087:1 3139:1 3143:1 3165:1 3178:1 3222:1 3237:1 3243:1 3253:1 3258:2 3263:1 3287:1 3293:1 3355:1 3429:3 3513:1 3516:2 3521:2 3532:1 3554:1 3587:1 3590:1 3591:1 3594:3 3650:1 3682:1 3692:1 3695:2 3705:1 3719:1 3745:1 3759:1 3765:1 3838:1 3854:1 3855:10 3868:3 3876:1 3914:2 3956:1 3961:1 3965:1 3977:2 4050:1 4052:2 4063:1 4103:1 4135:1 4177:1 4185:1 4202:1 4210:2 4214:1 4246:2 4256:1 4279:1 4282:2 4387:1 4401:1 4419:3 4446:1 4455:1 4456:1 4462:1 4532:1 4591:1 4598:1 4602:4 4603:1 4609:1 4610:1 4650:3 4656:1 4671:1 4714:1 4721:1 4725:3 4726:1 4727:7 4735:1 4752:1 4761:1 4766:3 4782:1 4800:1 4828:2 4854:1 4896:4 4900:1 4906:1 4944:1 4952:1 5004:1 5017:1 5037:1 5039:1 5058:1 5076:1 5099:1 5110:1 5116:1 5121:1 5141:1 5147:1 5153:817 5155:1 5158:1 5171:1 5196:1 5212:3 5250:1 5311:1 5358:1 5380:1 5400:1 5404:1 5414:1 5426:1 5427:1 5433:1 5455:1 5497:1 5592:1 5612:1 5616:1 5658:1 5670:1 5683:1 5695:1 5741:1 5757:1 5825:1 5840:1 5864:1 5867:1 5931:1 6013:2 6016:1 6020:2 6026:1 6035:1 6053:1 6064:1 6069:1 6133:1 6135:1 6155:1 6189:1 6219:1 6240:1 6262:1 6281:1 6311:1 6345:1 6375:1 6377:1 6387:1 6392:5 6395:1 6400:1 6405:2 6460:1 6485:1 6538:1 6551:1 6572:2 6581:1 6587:1 6594:3 6597:1 6602:1 6604:1 6605:1 6608:1 6637:1 6649:1 6652:2 6672:1 6690:1 6743:1 6764:1 6797:1 6813:1 6828:3 6844:1 6845:2 6860:2 6883:5 6886:1 6892:1 6959:1 6967:1 6974:1 6999:1 7021:1 7034:1 7114:1 7127:1 7134:1 7140:1 7153:1 7169:1 7192:1 7232:1 7244:1 7247:24 7271:1 7284:1 7291:3 7312:1 7353:1 7357:1 7361:1 7384:1 7387:4 7409:1 7420:1 7422:3 7443:1 7444:2 7450:1 7454:1 7457:1 7459:1 7473:1 7556:1 7560:1 7564:1 7574:1 7579:2 7582:1 7583:2 7609:1 7642:1 7652:1 7656:1 7668:1 7692:1 7700:1 7701:1 7835:1 7841:1 7880:1 7900:1 7913:1 7930:1 7940:1 7957:2 7988:1 7998:1 8009:1 8012:1 8013:2 8017:1 8023:2 8042:1 8056:1 8057:1 8058:3 8094:1 8098:1 8100:1 8113:1 8137:1 8138:1 8192:1 8194:1 8196:1 8199:1 8200:1 8247:1 8248:1 8253:1 8267:1 8280:1 8296:1 8333:1 8347:1 8360:1 8387:1 8434:1 8491:1 8520:1 8533:2 8542:1 8554:1 8573:1 8616:2 8732:1 8755:1 8776:1 8779:1 8780:1 8786:2 8794:1 8809:3 8840:1 8843:1 8848:1 8872:1 8959:2 8971:1 8980:1 9006:1 9026:1 9051:1 9072:1 9090:1 9122:1 9129:1 9177:1 9183:1 9189:1 9228:1 9234:1 9238:1 9251:1 9260:8 9261:1 9268:1 9295:2 9329:1 9333:1 9337:1 9347:1 9357:1 9370:1 9380:1 9404:1 9406:4 9443:2 9444:1 9456:1 9461:1 9478:1 9499:1 9508:1 9534:1 9548:2 9560:1 9569:1 9597:1 9605:1 9606:1 9612:1 9624:4 9626:1 9627:1 9632:2 9641:1 9659:1 9683:2 9693:1 9704:1 9721:3 9759:1 9788:1 9798:1 9813:1 9818:1 9829:1 9842:1 9859:1 9865:2 9870:1 9879:1 9884:1 9910:1 9916:1 9924:1 9940:1 9948:1 9952:1 9963:1 10010:1 10013:1 10044:1 10058:1 10059:1 10070:1 10092:1 10105:1 10111:2 10125:2 10129:4 10193:2 10200:2 10212:1 10243:1 10263:1 10272:3 10280:1 10297:1 10298:1 10318:1 10349:1 10376:1 10378:1 10398:1 10399:1 10409:1 10442:3 10459:9 10468:1 10479:12 10484:1 10554:2 10573:1 10639:1 10640:1 10649:1 10685:1 10721:3 10725:1 10740:1 10742:1 10749:1 10756:2 10764:1 10790:1 10797:1 10820:1 10824:1 10865:2 10877:1 10922:1 10925:1 10930:1 10948:1 10968:1 10996:1 11017:1 11032:1 11046:2 11058:12 11081:1 11117:1 11123:1 11140:1 11159:1 11164:1 11175:1 11197:1 11200:7 11276:1 11310:2 11321:1 11326:1 11330:1 11362:1 11403:1 11405:1 11416:2 11417:1 11420:2 11446:2 11457:1 11520:1 11559:1 11563:1 11568:1 11573:2 11608:1 11634:1 11637:1 11639:1 11641:2 11652:1 11656:1 11658:1 11664:1 11667:1 11668:1 11678:1 11679:1 11687:1 11702:1 11715:1 11730:2 11736:2 11765:1 11770:1 11773:1 11800:1 11842:1 11866:1 11877:1 11895:1 11898:1 11921:1 11937:1 11958:1 11978:1 12026:1 12043:1 12052:2 12055:1 12063:1 12132:1 12161:1 12172:1 12210:1 12228:1 12251:1 12260:1 12280:1 12331:1 12355:1 12357:1 12397:1 12405:1 12415:1 12433:1 12437:1 12440:1 12454:1 12480:1 12481:1 12497:2 12519:1 12532:1 12537:1 12556:2 12566:1 12610:1 12642:1 12648:1 12712:1 12722:1 12723:1 12731:2 12747:1 12759:1 12779:1 12809:1 12836:1 12858:1 12938:1 12962:1 12978:1 13028:1 13072:1 13106:1 13108:1 13121:1 13141:1 13143:1 13153:1 13179:1 13200:1 13207:3 13208:1 13219:1 13238:1 13250:1 13256:2 13266:1 13307:1 13358:1 13370:2 13388:1 13426:1 13446:1 13481:1 13483:2 13485:1 13508:1 13546:1 13556:1 13627:1 13631:1 13642:1 13646:1 13662:1 13670:1 13672:1 13677:2 13682:1 13727:1 13769:1 13783:1 13789:1 13817:1 13826:1 13853:1 13866:4 13876:1 13899:2 13904:1 13907:1 13912:1 13915:1 13926:1 13939:5 13942:2 13948:3 13950:1 13956:1 13959:1 13981:1 13983:1 13999:1 14090:1 14095:2 14105:1 14112:1 14142:1 14151:1 14188:1 14212:1 14238:1 14258:1 14261:1 14271:1 14278:1 14279:1 14284:1 14288:1 14293:1 14298:2 14311:1 14344:1 14349:1 14361:1 14362:1 14363:1 14374:1 14383:1 14429:1 14470:2 14479:1 14527:1 14575:1 14603:1 14636:1 14637:1 14641:2 14651:1 14663:1 14664:1 14672:1 14694:2 14706:1 14739:1 14779:1 14780:1 14781:1 14796:1 14811:3 14815:1 14828:2 14845:1 14846:1 14868:1 14884:1 14889:2 14916:1 14933:1 14981:1 15003:1 15025:1 15040:1 15048:1 15069:1 15086:1 15110:1 15130:1 15142:1 15156:2 15166:1 15171:1 15226:1 15232:1 15249:1 15256:1 15262:1 15287:1 15305:1 15308:1 15311:1 15363:1 15396:1 15404:1 15452:2 15455:1 15458:3 15499:1 15511:3 15516:1 15521:3 15532:3 15537:1 15545:1 15582:4 15584:1 15598:4 15607:1 15608:1 15619:1 15635:1 15643:1 15651:1 15678:1 15679:1 15698:1 15721:1 15727:1 15741:1 15753:1 15760:1 15764:1 15773:1 15797:1 15820:1 15827:1 15865:1 15878:1 15882:3 15886:4 15936:1 15949:1 15966:1 15983:1 15990:1 16019:1 16029:1 16057:1 16060:2 16101:1 16109:1 16115:1 16145:1 16147:1 16154:1 16157:2 16175:3 16299:1 16314:1 16333:1 16345:1 16462:1 16475:1 16535:2 16558:1 16560:1 16592:1 16679:1 16707:1 16746:1 16756:2 16763:1 16766:1 16807:1 16820:1 16825:1 16826:1 16853:1 16875:1 16880:1 16886:2 16905:2 16915:1 16919:1 16981:1 16983:1 16999:1 17000:1 17002:1 17003:1 17009:1 17024:1 17031:1 17043:1 17050:1 17067:1 17097:1 17119:1 17120:1 17137:2 17139:1 17143:1 17169:1 17175:1 17202:3 17207:1 17208:2 17260:1 17282:1 17311:1 17317:1 17319:1 17336:1 17340:1 17341:1 17383:1 17384:1 17399:2 17414:1 17418:1 17422:1 17427:1 17432:1 17434:2 17468:2 17470:1 17481:1 17533:1 17540:2 17565:1 17570:1 17616:1 17637:1 17667:1 17695:1 17718:1 17781:3 17791:1 17796:1 17826:1 17827:1 17835:1 17844:2 17878:1 17891:1 17894:1 17897:12 17902:1 17936:1 17947:2 17961:1 17967:1 18044:1 18053:1 18073:2 18084:1 18106:1 18117:2 18119:1 18189:1 18196:1 18236:1 18255:1 18257:1 18258:1 18281:1 18282:1 18294:1 18295:1 18332:1 18367:1 18394:1 18404:1 18412:1 18417:2 18435:1 18437:1 18460:1 18461:1 18521:1 18550:1 18558:1 18562:1 18580:1 18583:1 18616:1 18645:1 18656:1 18666:1 18670:3 18681:1 18687:1 18728:1 18763:6 18785:2 18830:3 18899:1 18916:1 18935:1 18942:1 18958:1 18996:1 19015:1 19060:1 19067:1 19086:1 19134:1 19176:1 19182:1 19208:1 19217:1 19221:2 19244:1 19263:1 19324:1 19346:1 19347:1 19397:1 19430:1 19435:1 19489:1 19490:1 19542:1 19572:1 19584:3 19588:1 19629:1 19664:1 19669:1 19672:1 19674:1 19681:1 19706:1 19760:1 19772:2 19779:1 19784:1 19799:1 19828:1 19861:1
5 2:1 5:1 28:1 33:1 35:1 65:1 68:2 105:1 131:1 145:1 160:3 167:1 178:1 185:2 200:1 220:1 227:1 233:1 289:1 352:1 353:1 365:1 390:1 393:2 399:1 413:1 417:1 418:2 422:1 461:2 477:1 485:1 495:1 510:1 511:1 565:1 574:1 592:1 595:1 600:1 605:1 615:1 639:1 661:1 720:1 738:1 749:1 793:1 825:1 826:1 833:1 864:1 865:2 880:3 931:2 942:1 950:2 971:1 972:1 1014:1 1015:1 1045:1 1074:1 1104:1 1108:1 1134:1 1138:1 1140:1 1145:1 1176:1 1177:1 1213:3 1214:1 1232:1 1242:1 1252:1 1264:1 1274:3 1279:2 1288:1 1310:2 1320:1 1323:1 1324:1 1328:2 1335:1 1336:1 1337:3 1340:2 1357:1 1380:3 1392:1 1408:1 1415:1 1424:2 1427:3 1463:3 1486:1 1504:2 1512:1 1578:1 1635:1 1643:1 1649:1 1653:1 1654:2 1657:2 1658:1 1659:2 1670:1 1675:1 1680:1 1683:1 1694:1 1714:1 1723:1 1732:1 1759:1 1767:1 1786:1 1859:1 1884:1 1894:1 1901:1 1902:1 1910:1 1920:1 1975:1 2030:1 2035:1 2045:1 2050:1 2060:1 2066:1 2074:1 2078:1 2097:4 2108:1 2112:2 2129:1 2138:1 2180:1 2207:1 2230:1 2255:3 2280:1 2345:1 2356:1 2363:1 2394:2 2405:1 2471:2 2521:1 2656:2 2695:1 2716:1 2748:1 2764:1 2812:1 2816:1 2823:5 2876:1 2882:1 2916:1 2923:1 2929:1 2954:1 2972:1 2975:1 2977:2 2979:1 2982:1 2984:1 2992:2 3006:1 3007:2 3015:1 3062:1 3087:1 3139:1 3143:1 3165:2 3178:1 3222:1 3237:1 3243:1 3253:1 3258:2 3263:1 3287:1 3293:1 3355:1 3371:1 3429:3 3513:1 3516:2 3521:2 3532:1 3554:1 3587:1 3590:1 3591:1 3594:3 3650:1 3682:2 3692:1 3695:2 3705:1 3719:1 3745:1 3759:1 3765:1 3838:1 3854:1 3855:10 3868:3 3876:1 3914:2 3956:1 3961:1 3965:1 3977:2 4050:1 4052:2 4063:1 4103:1 4135:1 4142:1 4177:1 4185:1 4202:1 4210:2 4214:1 4246:2 4256:1 4259:1 4279:1 4282:2 4387:1 4401:1 4419:4 4446:1 4455:1 4456:1 4462:1 4532:1 4591:1 4596:1 4598:1 4602:4 4603:1 4609:1 4610:1 4650:3 4656:1 4671:2 4714:1 4721:1 4725:3 4726:1 4727:8 4735:1 4752:1 4761:1 4766:3 4782:1 4800:1 4828:3 4854:1 4896:4 4900:1 4906:1 4944:1 4952:1 5004:1 5017:1 5037:1 5039:1 5058:1 5076:1 5099:1 5110:1 5116:1 5121:2 5141:1 5147:1 5153:864 5155:1 5158:1 5171:1 5196:1 5212:3 5250:1 5288:1 5311:1 5358:1 5380:1 5400:1 5404:1 5414:1 5426:1 5427:1 5433:1 5455:1 5497:1 5562:1 5592:1 5612:1 5616:1 5658:1 5670:1 5683:2 5695:1 5741:1 5757:1 5776:1 5825:1 5840:1 5864:1 5867:1 5931:1 6013:2 6016:2 6020:2 6026:1 6035:1 6053:1 6064:1 6069:1 6133:1 6135:1 6155:1 6189:1 6219:1 6240:1 6262:1 6281:1 6311:1 6345:1 6375:1 6377:1 6387:1 6392:5 6395:1 6400:1 6405:2 6460:1 6485:1 6538:2 6551:1 6572:2 6581:1 6587:1 6594:4 6597:1 6602:1 6604:1 6605:1 6608:1 6637:2 6649:1 6652:2 6672:1 6690:1 6743:1 6764:1 6797:1 6813:1 6828:3 6844:1 6845:2 6860:2 6883:6 6886:1 6892:1 6959:1 6967:1 6974:1 6999:1 7021:1 7034:1 7114:1 7127:1 7134:3 7140:1 7153:1 7169:1 7192:1 7232:2 7244:1 7247:26 7271:1 7284:1 7291:3 7312:1 7353:1 7357:1 7361:1 7384:1 7387:4 7409:1 7420:1 7422:3 7443:1 7444:2 7450:1 7454:1 7457:1 7459:1 7473:1 7556:1 7560:1 7564:1 7574:1 7579:2 7582:1 7583:2 7609:1 7642:1 7652:1 7656:1 7668:1 7692:1 7700:1 7701:1 7835:1 7841:1 7874:1 7880:1 7900:1 7913:1 7930:1 7940:1 7957:2 7988:1 7998:1 8009:1 8012:1 8013:2 8017:1 8023:2 8042:1 8055:1 8056:1 8057:1 8058:3 8094:1 8098:1 8100:1 8105:1 8113:1 8137:1 8138:1 8192:1 8194:1 8196:2 8199:1 8200:1 8247:1 8248:1 8253:1 8267:1 8280:1 8296:1 8333:1 8347:1 8360:1 8387:1 8434:1 8491:1 8520:1 8533:2 8542:1 8554:1 8573:1 8606:1 8616:2 8732:1 8755:1 8776:1 8779:1 8780:1 8786:2 8794:1 8797:1 8809:3 8840:1 8843:1 8848:1 8872:1 8959:2 8971:2 8980:1 9006:2 9026:1 9051:1 9072:1 9090:1 9122:1 9129:1 9177:1 9183:1 9189:1 9228:1 9234:1 9237:1 9238:1 9251:1 9260:8 9261:1 9268:1 9295:2 9329:1 9333:1 9337:1 9347:1 9357:1 9370:1 9380:1 9404:1 9406:4 9443:2 9444:1 9456:1 9461:1 9478:1 9499:1 9508:2 9512:1 9534:1 9548:2 9560:1 9569:1 9594:1 9597:1 9605:1 9606:1 9612:1 9624:4 9626:1 9627:1 9632:2 9641:1 9659:1 9683:2 9693:1 9704:1 9721:4 9759:1 9788:1 9798:1 9813:1 9817:1 9818:1 9829:1 9842:1 9859:1 9865:2 9870:1 9879:2 9884:1 9888:1 9910:1 9916:1 9924:1 9940:1 9948:1 9952:1 9963:1 10010:1 10013:1 10044:2 10058:1 10059:1 10070:1 10092:1 10105:2 10111:2 10125:2 10129:4 10193:3 10200:2 10204:1 10212:1 10243:1 10263:1 10272:3 10280:1 10297:1 10298:1 10318:1 10349:1 10376:1 10378:1 10398:2 10399:1 10409:1 10442:3 10459:10 10463:1 10468:1 10479:12 10484:1 10554:2 10573:1 10639:1 10640:1 10649:1 10685:1 10721:3 10725:1 10740:1 10742:1 10749:1 10756:2 10764:1 10790:1 10797:1 10820:1 10824:1 10865:2 10877:1 10922:1 10925:1 10930:1 10948:1 10968:1 10996:1 11017:1 11032:2 11046:2 11058:13 11081:1 11099:1 11117:1 11123:1 11140:1 11159:1 11164:1 11175:1 11197:1 11200:7 11276:1 11289:1 11310:2 11311:1 11321:1 11326:1 11330:1 11362:1 11403:2 11405:1 11416:2 11417:1 11420:2 11439:1 11446:2 11457:1 11520:1 11559:1 11563:1 11568:1 11573:2 11608:1 11634:1 11637:1 11639:1 11641:2 11652:1 11656:2 11658:1 11664:1 11667:1 11668:1 11678:1 11679:1 11687:1 11702:1 11715:1 11730:2 11736:2 11765:1 11770:1 11773:1 11800:1 11831:1 11842:1 11864:1 11866:1 11877:1 11895:1 11898:1 11921:1 11937:1 11958:1 11978:1 11980:1 12026:1 12043:1 12052:3 12055:1 12063:1 12132:1 12161:1 12172:1 12210:1 12228:1 12234:1 12251:1 12260:1 12280:1 12331:1 12355:1 12357:1 12397:1 12405:1 12415:1 12433:1 12437:1 12440:1 12454:1 12480:1 12481:1 12497:2 12519:1 12532:1 12537:1 12556:2 12566:1 12585:1 12610:1 12642:1 12648:1 12712:1 12722:1 12723:1 12731:2 12747:1 12759:1 12779:1 12809:1 12836:1 12858:1 12938:1 12962:3 12978:1 12993:1 13028:1 13072:1 13106:1 13108:1 13121:1 13141:1 13143:1 13153:1 13179:1 13200:3 13207:3 13208:1 13219:1 13238:1 13240:1 13250:1 13256:2 13266:1 13307:1 13358:1 13370:4 13388:1 13426:1 13446:1 13481:1 13483:2 13485:1 13508:1 13516:1 13546:1 13556:1 13583:1 13585:1 13627:2 13631:1 13642:1 13646:1 13662:1 13670:1 13672:1 13677:2 13682:1 13727:1 13769:1 13783:1 13789:1 13817:1 13826:1 13853:1 13866:4 13876:1 13899:2 13904:2 13907:1 13912:1 13915:1 13921:1 13926:2 13939:5 13942:2 13948:3 13950:1 13956:1 13959:1 13981:1 13983:1 13999:1 14090:1 14095:2 14105:1 14112:1 14142:1 14151:1 14188:1 14212:1 14238:1 14258:1 14261:1 14271:2 14278:1 14279:1 14284:1 14288:1 14293:1 14298:2 14311:1 14344:1 14349:1 14361:1 14362:1 14363:1 14374:1 14383:1 14411:1 14429:1 14470:2 14479:1 14527:1 14575:1 14603:1 14636:1 14637:2 14641:3 14651:2 14663:1 14664:1 14672:1 14694:2 14706:1 14739:1 14775:1 14779:1 14780:1 14781:1 14796:1 14811:5 14815:1 14828:2 14845:1 14846:1 14868:1 14884:1 14889:2 14916:1 14933:1 14981:1 15003:1 15025:1 15040:1 15048:1 15069:1 15086:1 15110:1 15130:1 15142:1 15156:2 15166:1 15171:2 15226:1 15232:1 15249:1 15256:1 15262:1 15287:1 15305:1 15308:1 15311:1 15363:1 15396:1 15404:1 15452:2 15455:1 15458:3 15499:1 15511:3 15516:1 15521:3 15532:3 15537:1 15545:1 15582:4 15584:1 15598:4 15607:1 15608:1 15619:1 15635:1 15643:1 15651:1 15678:1 15679:1 15698:1 15710:1 15721:1 15727:1 15741:1 15753:1 15760:1 15764:1 15773:1 15797:1 15820:1 15827:1 15865:1 15878:1 15882:4 15886:4 15936:1 15949:1 15966:1 15983:1 15990:1 16019:1 16029:1 16057:1 16060:2 16101:1 16109:1 16115:1 16145:1 16147:1 16154:1 16157:2 16175:3 16299:1 16314:1 16333:1 16345:1 16425:1 16462:1 16475:1 16509:1 16535:2 16558:1 16560:1 16592:1 16679:1 16707:1 16746:1 16756:2 16763:2 16766:1 16807:1 16820:1 16825:1 16826:1 16853:1 16875:1 16880:1 16886:2 16905:2 16915:1 16919:1 16981:1 16983:1 16999:1 17000:1 17002:2 17003:1 17009:1 17024:1 17031:1 17034:2 17043:1 17050:1 17067:1 17097:1 17119:1 17120:1 17137:2 17139:1 17143:1 17169:1 17175:1 17202:3 17207:1 17208:2 17260:1 17282:1 17311:1 17317:2 17318:1 17319:1 17336:1 17340:1 17341:1 17383:1 17384:1 17399:3 17414:1 17418:1 17422:1 17427:1 17432:1 17434:3 17468:2 17470:1 17481:1 17533:1 17540:2 17565:1 17570:1 17616:1 17637:1 17667:1 17695:1 17718:1 17781:3 17784:2 17791:1 17796:1 17826:1 17827:1 17835:1 17844:3 17878:1 17891:1 17894:1 17897:13 17902:1 17936:1 17947:2 17961:1 17967:1 17978:1 18044:1 18053:1 18073:2 18084:1 18106:1 18117:2 18119:1 18189:1 18196:1 18236:1 18255:3 18257:1 18258:1 18281:1 18282:1 18294:1 18295:1 18309:1 18332:1 18367:1 18394:1 18404:1 18412:1 18417:2 18435:1 18437:1 18460:1 18461:1 18482:1 18499:2 18521:1 18550:1 18558:1 18562:1 18580:1 18583:1 18616:2 18645:1 18656:1 18666:1 18670:3 18681:1 18687:1 18728:1 18763:6 18785:2 18830:3 18899:1 18916:1 18935:1 18942:1 18958:1 18996:1 19005:1 19015:1 19060:1 19067:1 19086:1 19134:1 19176:3 19182:1 19208:1 19217:1 19221:2 19244:1 19263:1 19268:1 19324:1 19346:1 19347:1 19361:2 19397:1 19430:1 19435:1 19489:1 19490:1 19542:1 19572:1 19584:3 19588:1 19629:1 19654:1 19657:1 19664:1 19669:1 19672:1 19674:1 19681:1 19706:1 19760:1 19772:2 19779:1 19784:1 19799:1 19828:1 19861:1
5 2:1 5:1 28:1 33:1 35:1 65:1 68:2 105:1 131:1 145:1 160:3 167:1 178:1 185:2 200:1 220:1 227:1 233:1 289:1 352:1 353:1 365:1 366:1 390:1 393:2 399:2 413:1 417:1 418:2 422:1 461:2 477:1 485:1 495:2 510:1 511:1 540:1 565:1 574:1 592:1 595:1 600:1 605:1 615:1 639:1 661:1 720:1 738:1 749:1 793:1 811:1 825:1 826:1 833:1 864:1 865:2 880:3 931:2 942:1 950:2 971:1 972:1 1007:1 1014:1 1015:1 1045:1 1074:1 1104:1 1108:1 1134:1 1138:1 1140:1 1145:1 1176:1 1177:1 1213:3 1214:1 1232:1 1242:1 1252:1 1264:1 1274:3 1279:2 1288:1 1310:2 1320:1 1323:1 1324:1 1328:2 1335:1 1336:1 1337:3 1340:2 1357:1 1380:3 1388:1 1392:1 1408:1 1415:1 1424:2 1427:3 1463:3 1486:1 1494:1 1504:2 1512:1 1578:1 1635:1 1637:1 1643:1 1649:1 1653:1 1654:3 1657:2 1658:1 1659:2 1666:1 1670:1 1675:1 1680:1 1682:1 1683:1 1694:1 1714:1 1717:1 1723:1 1732:1 1735:1 1759:1 1767:1 1777:1 1786:1 1859:1 1884:1 1894:1 1901:1 1902:1 1910:1 1920:1 1970:1 1975:1 1980:1 2030:1 2035:1 2045:1 2050:1 2060:1 2066:1 2068:1 2074:1 2078:1 2097:5 2108:1 2112:2 2129:1 2138:1 2178:1 2180:1 2185:1 2207:1 2230:1 2255:3 2280:1 2345:1 2356:1 2363:1 2394:2 2405:1 2450:1 2471:2 2521:1 2544:1 2647:1 2656:2 2695:1 2713:1 2716:1 2746:1 2748:1 2764:1 2812:1 2816:1 2823:5 2876:1 2882:1 2916:1 2923:1 2929:1 2954:1 2955:1 2972:1 2975:1 2977:2 2979:1 2982:1 2984:1 2992:2 3006:1 3007:2 3015:1 3051:1 3062:1 3087:1 3139:1 3143:1 3165:2 3178:1 3179:1 3192:1 3222:1 3237:1 3243:1 3253:1 3258:2 3263:1 3287:1 3293:1 3355:1 3371:1 3429:3 3513:1 3516:2 3521:2 3532:1 3540:1 3554:1 3587:1 3590:1 3591:1 3594:3 3628:1 3650:1 3682:2 3692:1 3694:1 3695:2 3705:1 3719:1 3745:1 3759:1 3765:1 3838:1 3854:1 3855:11 3868:4 3876:1 3914:2 3956:1 3961:1 3965:1 3977:3 4050:1 4052:2 4063:1 4103:1 4135:1 4142:1 4177:1 4185:1 4202:1 4210:2 4214:1 4246:2 4256:1 4259:1 4279:1 4282:2 4310:1 4387:1 4401:1 4419:4 4446:2 4455:1 4456:1 4462:1 4532:1 4591:1 4596:2 4598:2 4602:4 4603:1 4609:1 4610:1 4650:3 4656:1 4671:2 4714:1 4721:1 4725:3 4726:1 4727:9 4735:1 4752:1 4761:1 4766:3 4782:1 4800:1 4828:3 4854:1 4885:1 4890:1 4896:4 4900:1 4906:1 4944:1 4952:1 4983:1 5004:1 5017:1 5037:1 5039:1 5058:1 5076:1 5099:1 5110:1 5116:1 5121:2 5141:1 5145:1 5147:1 5153:975 5155:1 5158:1 5171:1 5196:1 5212:3 5250:1 5288:1 5311:1 5358:1 5380:1 5400:1 5404:1 5414:1 5426:1 5427:1 5433:1 5455:1 5497:1 5562:1 5592:1 5612:1 5616:1 5658:1 5670:1 5683:3 5695:1 5704:1 5741:1 5757:1 5776:1 5825:2 5840:1 5864:1 5867:1 5931:1 5934:1 6013:3 6016:2 6020:3 6026:1 6035:1 6053:1 6064:1 6069:1 6133:1 6135:1 6155:1 6189:1 6219:1 6240:1 6262:1 6281:1 6311:1 6345:1 6375:1 6377:1 6387:1 6392:5 6395:1 6400:1 6405:2 6434:1 6460:1 6485:1 6533:1 6538:2 6551:1 6572:2 6581:1 6587:1 6594:4 6597:1 6602:1 6604:1 6605:1 6608:1 6637:2 6649:1 6652:3 6672:1 6690:1 6743:1 6764:2 6797:1 6813:1 6828:3 6844:1 6845:2 6860:2 6883:7 6886:1 6892:1 6959:1 6967:1 6974:1 6999:1 7021:1 7034:1 7043:1 7114:1 7127:1 7134:3 7140:1 7145:1 7153:1 7169:1 7181:1 7192:1 7232:3 7244:1 7247:29 7263:1 7271:1 7280:1 7284:1 7291:3 7312:1 7353:1 7357:1 7361:1 7384:1 7387:4 7409:1 7420:1 7422:3 7442:1 7443:1 7444:2 7450:1 7454:1 7457:1 7459:1 7473:1 7504:1 7556:1 7560:1 7564:2 7574:1 7577:1 7579:2 7582:2 7583:2 7584:1 7609:1 7642:1 7652:1 7656:1 7668:1 7692:1 7700:1 7701:1 7835:1 7841:1 7874:1 7880:1 7900:1 7913:1 7930:1 7940:1 7957:3 7988:1 7998:1 8009:1 8012:1 8013:2 8017:1 8023:2 8042:1 8055:1 8056:1 8057:1 8058:3 8094:1 8098:1 8100:1 8105:1 8113:1 8137:1 8138:1 8192:1 8194:1 8196:2 8199:1 8200:1 8211:1 8247:1 8248:1 8253:1 8267:1 8280:1 8296:1 8324:1 8333:1 8347:1 8360:1 8387:1 8399:1 8434:1 8491:1 8520:1 8533:2 8542:1 8554:1 8556:1 8573:1 8606:1 8616:2 8648:1 8732:1 8755:1 8776:1 8779:1 8780:1 8786:2 8794:1 8797:1 8809:3 8840:1 8843:1 8848:1 8872:1 8959:2 8971:2 8980:1 9006:2 9026:1 9051:1 9067:1 9072:1 9090:1 9103:1 9122:1 9129:1 9177:1 9183:1 9189:1 9228:1 9234:1 9237:1 9238:1 9251:1 9260:9 9261:1 9268:1 9295:3 9329:1 9333:1 9337:1 9347:1 9357:1 9370:1 9380:1 9385:1 9404:1 9406:5 9443:2 9444:1 9456:1 9461:1 9478:1 9499:1 9508:2 9512:1 9534:1 9548:2 9560:1 9569:1 9594:3 9597:1 9605:1 9606:1 9612:1 9624:5 9626:1 9627:1 9632:2 9641:2 9659:1 9683:2 9693:1 9704:1 9721:4 9759:1 9788:1 9798:2 9813:1 9817:1 9818:1 9829:1 9842:1 9859:1 9865:2 9870:1 9879:2 9884:1 9888:1 9910:1 9916:1 9924:1 9940:1 9948:1 9952:1 9963:1 10010:1 10013:1 10044:2 10058:1 10059:1 10070:1 10092:1 10105:3 10111:2 10115:1 10125:2 10129:4 10193:3 10200:2 10204:2 10212:1 10243:1 10263:1 10272:3 10280:1 10297:1 10298:1 10318:1 10349:3 10376:1 10378:1 10398:2 10399:2 10409:1 10442:3 10459:10 10463:1 10468:1 10479:13 10484:1 10554:3 10573:1 10639:1 10640:1 10649:1 10685:1 10721:3 10725:1 10740:1 10742:1 10749:1 10756:2 10764:1 10790:1 10797:1 10820:1 10824:1 10865:2 10877:1 10922:1 10925:1 10930:1 10948:1 10968:1 10972:1 10978:1 10996:1 11017:1 11032:2 11046:2 11058:16 11081:1 11099:1 11117:1 11123:1 11140:1 11159:1 11164:1 11175:1 11197:1 11200:8 11273:1 11276:1 11289:1 11310:2 11311:1 11321:1 11326:1 11330:1 11362:1 11403:3 11405:1 11416:2 11417:1 11420:2 11439:1 11446:2 11448:1 11457:1 11520:1 11559:1 11563:1 11568:1 11573:2 11608:1 11634:1 11637:1 11639:1 11641:2 11652:1 11654:1 11656:2 11658:1 11664:1 11667:1 11668:1 11678:1 11679:1 11687:1 11702:1 11715:1 11730:2 11732:1 11736:2 11765:1 11770:1 11773:1 11800:1 11831:2 11835:1 11842:1 11864:1 11866:1 11877:2 11888:1 11895:1 11898:1 11921:1 11937:1 11951:1 11958:1 11978:1 11980:1 12026:1 12043:1 12052:4 12055:1 12063:1 12132:1 12161:1 12172:1 12210:1 12228:1 12234:1 12251:1 12260:1 12280:1 12331:1 12355:1 12357:1 12397:1 12405:1 12415:1 12433:1 12437:1 12439:1 12440:1 12454:1 12471:1 12480:1 12481:1 12497:2 12519:1 12532:1 12537:1 12556:2 12558:1 12566:1 12577:1 12585:1 12610:1 12642:1 12648:1 12678:1 12709:1 12712:1 12722:1 12723:1 12731:3 12747:1 12759:1 12779:1 12809:1 12836:1 12858:1 12938:1 12962:5 12977:1 12978:1 12993:1 13028:1 13072:1 13106:1 13108:1 13121:1 13141:2 13143:1 13153:1 13179:1 13200:3 13207:3 13208:1 13212:1 13219:1 13238:1 13240:1 13250:1 13256:3 13266:1 13307:1 13358:2 13370:4 13383:1 13388:1 13426:1 13446:1 13481:1 13483:3 13485:1 13491:1 13506:1 13508:1 13516:1 13546:1 13556:1 13574:1 13583:1 13585:1 13586:1 13627:2 13631:1 13642:1 13646:1 13660:1 13662:1 13670:1 13672:1 13677:2 13682:1 13727:1 13769:1 13783:1 13789:2 13817:1 13826:1 13853:1 13866:4 13876:1 13899:2 13904:2 13907:1 13912:1 13913:1 13915:1 13921:1 13926:2 13939:6 13942:2 13944:1 13948:3 13950:1 13956:1 13959:1 13981:1 13983:1 13999:1 14051:1 14059:1 14090:1 14095:2 14105:1 14112:1 14142:1 14151:1 14188:1 14212:1 14228:1 14238:1 14258:1 14261:1 14271:2 14278:1 14279:1 14284:1 14288:1 14293:1 14298:2 14311:1 14344:1 14349:1 14361:1 14362:1 14363:1 14374:1 14383:1 14411:1 14429:1 14470:2 14479:1 14527:1 14575:1 14603:1 14618:1 14636:1 14637:2 14641:3 14651:3 14663:1 14664:1 14672:1 14694:2 14706:1 14739:2 14775:1 14779:1 14780:1 14781:1 14796:1 14811:7 14815:1 14828:2 14845:1 14846:1 14868:1 14884:1 14889:2 14895:1 14916:1 14933:1 14981:1 15003:1 15025:1 15040:1 15048:1 15069:1 15086:1 15096:1 15110:1 15130:1 15142:1 15156:2 15166:1 15171:3 15226:1 15232:1 15249:1 15254:1 15256:1 15262:1 15287:1 15305:1 15308:1 15311:1 15363:1 15396:1 15404:1 15452:2 15455:1 15457:1 15458:3 15499:1 15511:3 15516:1 15521:3 15532:3 15537:1 15545:1 15560:1 15582:4 15584:1 15598:4 15607:1 15608:2 15619:1 15635:1 15643:1 15651:1 15678:1 15679:1 15698:1 15703:1 15710:2 15721:1 15727:1 15730:1 15741:1 15753:1 15760:1 15764:1 15773:1 15776:1 15797:1 15820:1 15827:1 15865:1 15876:1 15878:1 15882:4 15886:4 15936:1 15949:1 15966:1 15983:1 15990:1 16019:1 16029:1 16057:1 16060:2 16101:1 16109:1 16115:1 16125:1 16145:1 16147:1 16154:1 16157:2 16175:3 16181:1 16299:1 16314:1 16333:1 16345:1 16369:1 16399:1 16425:1 16462:1 16475:1 16509:1 16535:2 16558:1 16560:1 16592:2 16679:1 16707:1 16746:1 16756:2 16763:2 16766:1 16807:1 16820:1 16825:1 16826:1 16853:1 16875:1 16880:1 16886:2 16905:2 16915:1 16917:1 16919:1 16981:1 16983:1 16999:1 17000:1 17002:2 17003:1 17009:1 17024:1 17031:1 17034:2 17043:1 17050:1 17067:1 17097:1 17119:2 17120:1 17137:2 17139:1 17143:1 17169:1 17175:1 17202:3 17204:1 17207:1 17208:3 17260:1 17282:1 17311:1 17317:2 17318:1 17319:1 17336:1 17340:1 17341:1 17383:1 17384:1 17399:3 17414:1 17418:1 17422:1 17427:1 17432:1 17434:3 17468:2 17470:1 17481:1 17533:1 17540:2 17565:1 17570:1 17582:1 17603:1 17616:1 17637:1 17640:1 17667:1 17695:1 17718:1 17750:1 17781:3 17784:2 17791:1 17796:1 17826:1 17827:1 17835:1 17844:4 17878:1 17891:1 17894:1 17897:13 17902:1 17936:1 17947:3 17961:1 17967:1 17974:1 17978:1 18044:1 18053:1 18073:2 18084:1 18106:1 18117:2 18119:1 18189:1 18196:1 18236:1 18255:5 18257:1 18258:1 18281:1 18282:1 18294:1 18295:1 18309:1 18311:1 18332:1 18367:1 18394:1 18404:1 18412:1 18417:2 18435:1 18437:1 18460:1 18461:1 18482:1 18489:1 18499:3 18521:1 18550:1 18558:1 18562:1 18580:1 18583:1 18616:2 18645:1 18656:1 18666:2 18670:4 18681:1 18687:1 18728:1 18763:7 18785:2 18830:5 18866:1 18881:1 18899:1 18916:1 18935:1 18942:1 18958:1 18996:1 19005:3 19015:1 19060:1 19067:1 19082:1 19086:1 19134:1 19176:3 19182:1 19208:1 19217:1 19221:2 19244:2 19263:1 19268:1 19302:1 19324:1 19346:1 19347:1 19361:2 19397:1 19430:1 19435:1 19467:1 19489:1 19490:1 19542:1 19572:1 19584:3 19588:1 19615:1 19629:1 19654:1 19657:1 19664:1 19669:1 19672:1 19674:1 19681:1 19706:1 19760:1 19772:3 19779:1 19784:1 19799:1 19828:1 19861:1
5 2:1 5:1 28:1 33:1 35:1 65:1 68:2 105:1 131:1 145:1 160:3 164:1 167:1 178:1 185:2 196:1 200:1 220:1 227:1 233:1 289:1 352:1 353:1 365:1 366:1 390:1 393:2 399:2 413:1 417:1 418:2 422:1 461:2 477:1 485:1 495:2 510:2 511:1 525:1 540:1 565:1 574:1 576:1 592:1 595:1 600:1 605:1 615:1 639:1 661:1 720:1 738:1 749:1 793:1 811:1 825:1 826:1 833:1 864:1 865:2 880:3 931:2 942:1 950:2 971:1 972:1 1007:1 1014:1 1015:1 1045:1 1074:1 1104:1 1108:1 1134:1 1138:1 1140:1 1145:1 1176:1 1177:1 1213:3 1214:1 1232:1 1242:1 1252:1 1264:1 1274:3 1276:1 1279:2 1288:1 1310:3 1320:1 1323:1 1324:2 1328:2 1335:1 1336:1 1337:3 1340:2 1357:1 1380:3 1388:1 1392:1 1408:1 1415:1 1424:2 1427:3 1434:2 1463:4 1486:1 1494:1 1504:2 1512:1 1519:1 1578:1 1635:1 1637:1 1643:1 1649:1 1650:1 1653:1 1654:3 1657:2 1658:1 1659:2 1666:1 1670:1 1675:1 1680:1 1682:1 1683:1 1694:1 1714:1 1717:1 1723:2 1732:1 1735:1 1759:1 1767:1 1777:1 1786:1 1859:1 1884:1 1894:1 1901:1 1902:1 1910:1 1920:1 1970:1 1975:1 1980:1 2012:1 2030:1 2035:1 2045:1 2050:1 2060:1 2066:1 2067:1 2068:1 2074:1 2078:1 2097:5 2108:1 2112:2 2129:1 2138:1 2178:1 2180:1 2185:1 2207:1 2230:1 2255:3 2280:1 2345:1 2356:1 2363:1 2394:2 2405:1 2450:1 2471:3 2521:1 2544:1 2623:1 2647:1 2656:2 2695:1 2713:1 2716:1 2746:1 2748:1 2764:1 2812:1 2816:1 2823:5 2876:1 2882:1 2916:1 2923:1 2929:1 2954:1 2955:1 2972:1 2975:1 2976:1 2977:2 2979:1 2982:1 2984:1 2992:2 3006:1 3007:2 3015:1 3051:1 3062:1 3087:1 3139:1 3143:1 3165:2 3178:1 3179:1 3192:1 3222:1 3237:1 3239:1 3243:1 3253:1 3258:2 3263:1 3287:1 3293:1 3355:1 3371:1 3429:3 3513:1 3516:2 3521:2 3532:1 3540:1 3554:1 3587:1 3590:1 3591:1 3594:3 3628:1 3650:1 3682:2 3692:1 3694:1 3695:2 3705:1 3719:1 3745:1 3759:1 3765:1 3838:1 3854:1 3855:11 3868:4 3876:1 3914:3 3956:1 3961:1 3965:1 3977:3 4050:1 4052:2 4063:1 4103:1 4135:1 4142:1 4177:1 4185:1 4202:1 4210:2 4214:2 4246:2 4256:1 4259:1 4279:1 4282:2 4310:1 4387:1 4401:1 4419:4 4446:2 4455:1 4456:1 4462:1 4532:1 4591:1 4596:2 4598:2 4602:4 4603:1 4609:1 4610:1 4650:3 4656:1 4660:1 4671:2 4714:1 4721:1 4725:3 4726:1 4727:9 4735:1 4752:1 4761:1 4766:3 4777:1 4782:1 4800:1 4822:2 4828:3 4854:1 4885:1 4890:1 4896:4 4900:1 4901:1 4906:1 4944:1 4952:1 4983:1 5004:1 5017:1 5037:1 5039:1 5058:1 5076:1 5099:1 5110:1 5116:1 5121:2 5141:1 5145:1 5147:1 5153:1004 5155:1 5158:1 5171:1 5195:1 5196:1 5212:3 5232:1 5250:1 5288:1 5311:1 5358:1 5380:1 5400:1 5404:1 5414:1 5426:1 5427:1 5433:1 5455:1 5497:1 5562:1 5592:1 5612:1 5616:1 5658:1 5670:1 5683:4 5695:1 5704:1 5741:1 5757:1 5776:1 5825:2 5840:1 5864:1 5867:1 5921:1 5931:1 5934:2 6013:4 6016:2 6020:3 6026:1 6035:1 6053:1 6064:1 6069:1 6133:1 6135:1 6155:1 6189:1 6219:1 6240:1 6262:1 6281:1 6311:1 6345:1 6375:1 6377:1 6387:1 6392:6 6395:1 6400:1 6405:2 6434:1 6460:1 6485:1 6533:1 6538:2 6551:1 6572:2 6581:1 6587:1 6594:4 6597:1 6602:1 6604:1 6605:1 6608:1 6637:2 6649:1 6652:3 6658:1 6672:1 6690:1 6743:1 6764:2 6797:1 6813:1 6828:3 6844:1 6845:2 6860:3 6883:8 6886:1 6892:1 6959:1 6967:1 6974:1 6999:1 7021:1 7034:1 7043:1 7114:1 7127:1 7134:3 7140:1 7145:1 7153:1 7169:1 7181:1 7192:1 7201:1 7232:3 7244:1 7247:30 7263:1 7271:1 7280:1 7284:1 7291:3 7312:1 7353:1 7357:1 7361:1 7384:1 7387:4 7409:1 7420:1 7422:3 7442:1 7443:1 7444:3 7450:1 7454:1 7457:1 7459:1 7473:1 7504:1 7550:1 7556:1 7560:1 7564:2 7574:1 7577:1 7579:2 7582:2 7583:2 7584:1 7609:1 7642:1 7652:1 7656:1 7668:1 7692:1 7700:1 7701:1 7835:1 7841:1 7874:1 7880:1 7900:1 7913:1 7930:1 7940:1 7957:3 7988:1 7998:1 8009:1 8012:1 8013:2 8017:1 8023:2 8042:1 8055:1 8056:1 8057:1 8058:3 8094:1 8098:1 8100:1 8105:1 8113:1 8137:1 8138:1 8192:1 8194:1 8196:2 8199:1 8200:1 8211:1 8231:1 8245:1 8247:1 8248:1 8253:1 8267:1 8272:1 8280:1 8296:1 8324:1 8333:1 8347:1 8358:1 8360:1 8387:2 8399:1 8414:1 8434:1 8491:1 8520:1 8522:1 8533:2 8542:1 8554:1 8556:1 8573:1 8606:1 8616:2 8648:1 8732:1 8755:1 8776:1 8779:1 8780:1 8786:2 8794:1 8797:1 8809:3 8840:1 8843:1 8848:1 8872:1 8923:1 8959:2 8971:2 8980:1 8996:1 9006:2 9026:1 9051:1 9067:1 9072:1 9090:1 9103:1 9122:1 9129:1 9177:1 9183:1 9189:1 9228:1 9234:1 9237:1 9238:1 9251:1 9260:9 9261:1 9268:1 9295:3 9329:1 9333:1 9337:1 9347:1 9357:1 9370:1 9380:1 9385:1 9404:1 9406:5 9429:1 9443:2 9444:1 9456:1 9461:1 9474:1 9478:1 9499:1 9508:2 9512:1 9534:1 9548:2 9560:1 9569:1 9591:1 9594:3 9597:1 9605:1 9606:1 9612:1 9624:5 9626:1 9627:1 9632:2 9641:2 9659:1 9683:2 9693:1 9704:1 9721:4 9759:1 9788:1 9798:2 9813:1 9817:1 9818:1 9822:1 9829:1 9842:1 9859:1 9865:2 9870:1 9879:2 9884:1 9888:1 9910:1 9916:1 9920:1 9924:1 9940:1 9948:1 9952:1 9963:1 10010:1 10013:1 10044:2 10058:1 10059:1 10070:1 10092:1 10105:3 10111:2 10115:1 10125:2 10129:5 10193:3 10200:2 10204:2 10212:1 10243:1 10263:1 10272:3 10280:1 10297:1 10298:1 10318:1 10349:3 10376:1 10377:1 10378:1 10398:2 10399:2 10409:1 10442:3 10459:11 10463:1 10468:1 10479:13 10484:2 10554:3 10573:1 10639:1 10640:1 10649:1 10685:1 10720:1 10721:4 10725:1 10740:1 10742:1 10749:1 10756:3 10764:1 10790:1 10797:1 10820:2 10824:1 10865:2 10877:1 10922:1 10925:1 10930:1 10948:1 10968:1 10972:1 10978:1 10996:1 11017:1 11032:2 11046:2 11058:17 11081:1 11099:1 11117:1 11123:1 11126:1 11140:1 11159:1 11164:1 11175:1 11197:1 11200:8 11273:1 11276:1 11289:1 11310:2 11311:1 11321:1 11326:1 11330:1 11362:1 11403:3 11405:2 11416:2 11417:1 11420:2 11439:1 11446:2 11448:1 11457:1 11520:1 11559:1 11563:1 11568:1 11573:2 11608:1 11634:1 11637:1 11639:1 11641:2 11646:1 11649:1 11652:1 11654:1 11656:2 11658:1 11664:1 11667:1 11668:1 11678:1 11679:1 11687:1 11702:1 11715:1 11730:2 11732:1 11736:2 11765:1 11770:1 11773:1 11800:1 11831:2 11835:1 11842:1 11864:1 11866:1 11877:2 11888:1 11895:1 11898:1 11914:1 11921:1 11937:1 11951:1 11958:1 11978:1 11980:1 12026:1 12043:1 12052:4 12055:1 12063:1 12116:1 12132:1 12138:1 12161:1 12172:1 12210:1 12228:1 12234:1 12251:1 12260:1 12280:1 12331:1 12355:1 12357:1 12397:1 12405:1 12415:1 12433:1 12437:1 12439:1 12440:1 12454:1 12471:1 12480:1 12481:1 12497:2 12519:1 12532:1 12537:1 12556:2 12558:1 12566:1 12577:1 12585:1 12591:1 12610:1 12642:1 12648:1 12678:1 12709:1 12712:1 12722:1 12723:1 12731:3 12747:1 12759:1 12772:1 12779:1 12809:1 12836:1 12858:1 12938:1 12962:5 12977:1 12978:1 12993:1 13021:1 13028:1 13056:1 13072:1 13106:1 13108:1 13121:1 13141:2 13143:1 13153:1 13179:1 13200:3 13203:2 13207:3 13208:1 13212:1 13219:1 13231:1 13238:1 13240:1 13250:1 13256:3 13266:1 13307:1 13358:2 13370:4 13383:1 13388:1 13426:1 13446:1 13481:1 13483:3 13485:1 13491:1 13506:1 13508:1 13516:1 13546:1 13556:1 13574:1 13583:1 13585:1 13586:1 13627:2 13631:1 13642:1 13646:1 13660:1 13662:1 13670:1 13672:1 13677:2 13682:1 13727:1 13753:1 13769:1 13783:1 13789:3 13817:1 13826:1 13853:1 13866:4 13876:1 13899:3 13904:2 13907:1 13912:1 13913:1 13915:1 13921:1 13926:2 13939:6 13942:2 13944:1 13947:1 13948:3 13950:1 13956:1 13959:1 13981:1 13983:1 13999:1 14051:1 14059:1 14090:1 14095:2 14105:1 14112:1 14142:1 14151:1 14188:1 14205:1 14212:1 14228:1 14238:1 14258:1 14261:1 14271:2 14278:1 14279:1 14284:1 14288:1 14293:1 14298:2 14311:1 14344:1 14349:1 14361:1 14362:1 14363:1 14374:1 14383:1 14411:1 14429:1 14470:2 14472:1 14479:1 14527:1 14575:1 14603:1 14618:1 14636:1 14637:2 14641:3 14651:3 14663:1 14664:1 14672:1 14687:1 14694:2 14706:1 14739:2 14747:1 14775:1 14779:1 14780:1 14781:1 14796:1 14811:7 14815:1 14828:2 14845:1 14846:1 14868:1 14884:1 14889:2 14895:1 14916:1 14933:1 14981:1 15003:1 15025:1 15040:1 15048:1 15069:1 15086:1 15096:1 15110:1 15130:1 15142:1 15156:2 15166:1 15171:3 15226:1 15232:1 15241:1 15249:1 15254:1 15256:1 15262:1 15265:1 15287:1 15305:1 15308:1 15311:1 15363:1 15396:1 15404:1 15452:2 15455:1 15457:1 15458:3 15478:1 15499:1 15511:3 15516:1 15521:4 15532:4 15537:1 15545:1 15560:1 15582:4 15584:1 15598:6 15607:1 15608:2 15619:1 15635:1 15643:1 15651:1 15678:1 15679:1 15698:1 15703:1 15710:2 15721:1 15727:1 15730:1 15741:1 15753:1 15760:1 15764:1 15773:1 15774:1 15776:1 15797:1 15806:1 15820:1 15827:1 15865:1 15876:1 15878:1 15882:4 15886:4 15936:1 15949:1 15966:1 15983:1 15990:1 16019:1 16029:1 16057:1 16060:2 16067:1 16101:1 16109:1 16115:1 16125:1 16145:1 16147:1 16154:1 16157:2 16175:3 16181:1 16299:1 16314:1 16333:2 16345:1 16369:1 16399:1 16425:1 16462:1 16475:1 16509:1 16535:2 16558:1 16560:1 16587:1 16592:2 16679:1 16707:1 16746:1 16756:2 16763:2 16766:1 16807:1 16820:1 16825:1 16826:1 16853:1 16875:1 16880:1 16886:2 16905:2 16915:1 16917:1 16919:1 16961:1 16981:1 16983:1 16999:1 17000:1 17002:2 17003:1 17009:1 17024:2 17031:2 17034:2 17043:1 17050:1 17058:1 17067:1 17097:1 17119:2 17120:1 17137:2 17139:1 17143:1 17169:1 17175:1 17202:3 17204:1 17207:1 17208:3 17260:1 17282:1 17311:1 17317:2 17318:1 17319:1 17336:1 17340:1 17341:1 17383:1 17384:1 17399:3 17414:1 17418:1 17422:1 17427:2 17432:1 17434:3 17468:2 17470:1 17481:1 17533:1 17540:2 17565:1 17570:1 17582:1 17603:1 17616:1 17637:1 17640:1 17667:1 17695:1 17718:1 17750:1 17781:3 17784:2 17791:1 17796:1 17826:1 17827:1 17835:1 17844:4 17878:1 17891:2 17894:1 17897:15 17902:1 17936:1 17947:3 17961:1 17967:1 17974:1 17978:1 18044:1 18053:1 18073:2 18084:1 18106:1 18115:1 18117:2 18119:1 18145:1 18189:1 18196:1 18236:1 18255:5 18257:1 18258:1 18281:1 18282:1 18294:1 18295:1 18303:1 18309:1 18311:1 18332:1 18367:1 18394:1 18401:1 18404:1 18412:1 18417:2 18426:1 18434:1 18435:1 18437:1 18460:1 18461:1 18482:1 18489:1 18499:3 18521:1 18550:1 18558:1 18562:2 18580:1 18583:1 18616:2 18645:1 18656:1 18666:2 18670:4 18681:1 18687:1 18728:1 18763:8 18785:2 18830:5 18866:1 18881:1 18899:1 18916:1 18935:1 18942:1 18958:1 18996:1 19005:3 19015:1 19060:1 19067:1 19082:1 19086:1 19134:1 19176:3 19182:1 19188:1 19206:1 19208:1 19217:1 19221:2 19244:2 19263:1 19268:1 19280:1 19302:1 19324:1 19346:1 19347:1 19361:2 19397:1 19430:1 19435:1 19467:1 19489:1 19490:1 19542:1 19572:1 19584:3 19588:1 19615:1 19629:1 19654:1 19657:1 19664:1 19669:1 19672:1 19674:1 19681:1 19706:1 19760:1 19772:3 19779:1 19784:1 19799:1 19828:1 19861:1
5 2:1 5:1 28:1 33:1 35:2 65:1 68:2 105:1 131:1 145:1 160:3 164:1 167:1 178:1 185:3 196:1 200:1 220:1 227:1 233:1 289:1 348:1 349:1 352:1 353:1 365:1 366:1 390:1 393:2 399:2 413:1 417:1 418:2 422:1 434:1 461:2 477:1 485:1 495:2 510:2 511:1 525:1 540:1 565:1 574:2 576:1 592:1 595:1 600:1 605:1 615:1 639:1 641:1 661:1 714:1 720:1 738:1 749:1 793:1 811:1 825:1 826:1 833:1 864:1 865:2 880:3 909:1 931:2 942:1 950:2 971:1 972:1 1007:1 1014:1 1015:1 1045:1 1074:1 1083:1 1104:1 1108:1 1134:1 1138:1 1140:1 1145:1 1176:1 1177:1 1213:3 1214:1 1232:1 1242:1 1252:1 1264:1 1274:3 1276:1 1279:2 1288:2 1310:3 1320:1 1323:1 1324:2 1328:2 1335:1 1336:1 1337:3 1340:2 1357:1 1380:3 1388:1 1392:1 1408:1 1415:1 1421:1 1424:2 1427:3 1434:2 1463:4 1486:1 1494:1 1504:3 1512:1 1519:1 1578:1 1635:1 1637:1 1643:1 1649:1 1650:1 1653:1 1654:3 1657:2 1658:1 1659:2 1666:1 1670:1 1675:2 1680:1 1682:1 1683:1 1694:1 1714:1 1717:1 1723:2 1732:1 1735:1 1759:1 1767:1 1777:1 1786:1 1859:1 1862:1 1884:1 1894:1 1901:1 1902:1 1910:1 1920:1 1970:1 1975:1 1980:1 2012:1 2030:1 2035:1 2045:1 2050:1 2060:1 2066:1 2067:1 2068:1 2074:1 2078:1 2097:5 2108:1 2112:3 2129:1 2138:1 2178:1 2180:1 2185:1 2207:1 2230:1 2255:3 2280:1 2345:1 2356:1 2363:1 2384:1 2394:2 2405:1 2450:1 2453:1 2471:4 2521:1 2544:1 2623:1 2645:1 2647:1 2656:2 2695:1 2713:1 2716:1 2746:1 2748:1 2764:1 2812:1 2816:1 2823:5 2876:1 2882:1 2916:1 2923:1 2929:1 2954:1 2955:1 2972:1 2975:1 2976:2 2977:2 2979:1 2982:1 2984:2 2992:2 3006:1 3007:2 3015:1 3051:1 3062:1 3087:1 3139:1 3143:1 3153:1 3165:2 3169:1 3178:1 3179:1 3192:1 3196:1 3222:1 3237:1 3239:1 3243:1 3253:1 3258:2 3263:1 3287:1 3293:1 3355:1 3371:1 3429:3 3513:1 3516:2 3521:2 3532:1 3540:1 3554:1 3587:1 3590:1 3591:1 3594:3 3628:1 3650:1 3682:2 3692:1 3694:1 3695:2 3705:1 3719:1 3745:1 3759:1 3765:1 3838:1 3854:1 3855:12 3868:4 3876:1 3914:4 3941:1 3956:1 3961:1 3965:1 3977:3 4050:1 4052:2 4063:1 4103:1 4135:1 4142:1 4177:1 4185:1 4202:1 4210:2 4214:2 4228:1 4246:2 4256:1 4258:2 4259:1 4279:1 4282:3 4310:1 4345:1 4387:1 4401:1 4419:4 4430:1 4446:2 4455:1 4456:1 4462:1 4532:1 4591:1 4596:2 4598:2 4602:4 4603:1 4609:1 4610:1 4650:3 4656:1 4660:1 4671:2 4677:1 4714:1 4721:1 4725:3 4726:1 4727:9 4735:1 4752:1 4761:1 4766:3 4777:1 4782:1 4800:1 4822:2 4828:3 4854:1 4885:1 4890:1 4896:5 4900:1 4901:1 4906:1 4909:1 4944:1 4952:1 4983:1 5004:1 5017:1 5037:1 5039:1 5058:1 5076:1 5099:1 5110:1 5116:1 5121:2 5141:1 5145:1 5147:1 5153:1066 5155:1 5158:1 5168:1 5171:1 5195:1 5196:1 5212:3 5232:1 5250:1 5259:1 5288:1 5306:1 5311:1 5358:1 5380:1 5400:1 5404:1 5414:1 5426:1 5427:1 5433:1 5455:1 5487:1 5497:1 5562:1 5592:1 5612:1 5616:2 5658:1 5670:1 5683:4 5695:1 5704:1 5741:1 5757:1 5776:1 5825:2 5830:1 5840:1 5861:1 5864:1 5867:1 5909:1 5921:1 5931:1 5934:2 6013:4 6016:2 6020:4 6026:1 6035:1 6053:1 6064:1 6069:1 6133:1 6135:1 6139:1 6142:1 6155:1 6189:1 6219:1 6240:1 6262:1 6281:1 6301:1 6311:1 6345:1 6375:1 6377:1 6387:1 6392:6 6395:1 6400:1 6405:2 6434:1 6460:1 6485:1 6533:1 6538:2 6551:1 6572:2 6581:1 6587:1 6594:4 6597:1 6602:1 6604:1 6605:1 6608:1 6637:2 6649:1 6652:4 6658:1 6672:1 6690:1 6693:1 6743:1 6764:2 6797:1 6813:1 6828:4 6844:1 6845:2 6860:4 6883:9 6886:2 6892:1 6959:1 6967:1 6974:1 6999:1 7021:1 7034:1 7043:1 7114:1 7127:1 7134:3 7140:1 7145:1 7153:1 7169:1 7181:1 7192:1 7201:1 7232:3 7244:1 7247:30 7263:1 7271:1 7280:1 7284:1 7291:3 7312:1 7353:1 7357:1 7361:1 7384:1 7387:4 7409:1 7420:1 7422:3 7442:1 7443:1 7444:4 7450:1 7454:1 7457:1 7459:1 7473:1 7494:1 7504:1 7550:1 7556:1 7560:1 7563:1 7564:2 7574:1 7577:1 7579:2 7582:2 7583:2 7584:1 7609:1 7642:1 7647:1 7652:1 7656:1 7668:1 7692:1 7700:1 7701:1 7835:1 7841:1 7874:1 7880:1 7900:1 7913:1 7930:1 7940:1 7957:3 7988:1 7998:1 8009:1 8012:1 8013:2 8017:1 8023:2 8042:1 8055:1 8056:1 8057:1 8058:3 8094:1 8098:1 8100:1 8105:1 8113:1 8137:1 8138:1 8192:1 8194:1 8196:2 8199:1 8200:1 8211:1 8231:1 8245:1 8247:1 8248:1 8253:1 8267:1 8272:1 8280:1 8296:1 8324:1 8333:1 8347:1 8358:1 8360:1 8387:3 8391:1 8399:1 8411:1 8414:1 8434:1 8491:1 8496:1 8520:1 8522:1 8533:2 8542:1 8552:1 8554:1 8556:1 8573:1 8606:1 8616:2 8648:1 8732:1 8755:1 8776:1 8779:1 8780:1 8786:2 8794:1 8797:2 8809:3 8840:1 8843:1 8848:1 8872:1 8923:1 8959:2 8971:2 8980:1 8996:1 9006:2 9026:1 9051:1 9067:1 9072:1 9090:1 9103:1 9122:1 9129:1 9177:1 9183:1 9189:1 9228:1 9234:1 9237:1 9238:1 9251:2 9260:9 9261:1 9268:1 9295:3 9329:1 9333:1 9337:1 9347:1 9357:1 9360:1 9370:1 9380:1 9385:1 9394:1 9404:1 9406:5 9429:1 9443:2 9444:1 9456:1 9461:1 9474:1 9478:1 9499:2 9508:2 9512:1 9534:1 9548:2 9560:1 9569:1 9591:1 9594:3 9597:1 9605:2 9606:1 9612:1 9624:5 9626:1 9627:1 9632:2 9641:2 9659:1 9683:2 9693:1 9704:2 9721:4 9759:1 9788:1 9798:2 9813:1 9817:1 9818:1 9822:1 9829:1 9842:1 9859:1 9865:2 9870:2 9879:2 9884:1 9888:1 9910:1 9916:1 9920:1 9924:1 9940:1 9948:1 9952:1 9963:1 9980:1 10001:1 10010:1 10013:1 10044:2 10058:1 10059:1 10070:1 10092:1 10098:1 10105:3 10111:2 10115:1 10125:2 10129:5 10193:3 10200:2 10204:2 10212:1 10243:1 10263:1 10272:3 10280:1 10297:1 10298:1 10318:1 10349:3 10376:1 10377:1 10378:1 10398:2 10399:2 10409:2 10442:3 10459:13 10463:1 10468:1 10479:14 10484:3 10551:1 10554:3 10567:1 10573:1 10632:1 10639:1 10640:1 10642:1 10649:1 10685:1 10720:1 10721:4 10725:1 10740:1 10742:1 10749:1 10756:4 10764:1 10790:1 10797:1 10820:2 10824:1 10865:2 10877:1 10922:1 10925:1 10930:1 10948:1 10968:1 10972:1 10978:1 10996:1 11017:1 11032:2 11046:2 11058:17 11081:1 11085:1 11099:1 11117:1 11123:1 11126:1 11140:1 11159:1 11164:1 11175:1 11180:1 11197:1 11200:8 11273:1 11276:1 11289:1 11310:2 11311:1 11321:1 11326:1 11330:1 11362:1 11403:3 11405:2 11416:2 11417:1 11420:2 11439:1 11446:3 11448:1 11457:1 11520:1 11523:1 11559:1 11563:2 11565:1 11568:1 11573:2 11608:1 11634:1 11637:1 11639:1 11641:2 11646:1 11649:1 11652:1 11654:1 11656:2 11658:1 11664:1 11667:1 11668:1 11678:1 11679:1 11687:1 11702:2 11715:1 11730:2 11732:1 11736:2 11765:1 11770:1 11773:1 11800:1 11831:2 11835:1 11842:1 11864:1 11866:1 11877:2 11888:1 11895:1 11898:1 11914:1 11921:1 11937:1 11951:1 11958:1 11978:1 11980:1 12026:1 12043:1 12052:4 12055:1 12063:1 12116:1 12132:1 12138:1 12161:1 12172:1 12210:1 12228:1 12234:1 12245:1 12251:1 12260:1 12280:1 12289:2 12331:1 12355:1 12357:2 12397:1 12405:1 12415:1 12433:1 12437:1 12439:1 12440:1 12454:1 12471:1 12480:1 12481:1 12497:2 12519:1 12532:1 12537:1 12556:2 12558:1 12566:1 12572:1 12577:1 12581:1 12585:3 12591:1 12610:1 12642:1 12648:1 12678:1 12709:1 12712:1 12722:1 12723:1 12731:3 12747:1 12759:1 12769:1 12772:1 12779:1 12808:1 12809:1 12836:1 12858:1 12938:1 12962:5 12977:1 12978:2 12993:1 13021:1 13028:1 13052:1 13056:1 13072:1 13106:1 13108:1 13121:1 13141:2 13143:1 13153:1 13179:1 13200:3 13203:2 13207:4 13208:1 13212:1 13219:1 13231:2 13238:1 13240:1 13250:1 13256:3 13266:1 13307:1 13358:2 13370:4 13383:1 13388:1 13426:1 13446:1 13448:1 13481:1 13483:3 13485:2 13491:1 13506:1 13508:1 13516:1 13546:1 13556:1 13574:1 13583:1 13585:1 13586:1 13627:2 13628:1 13631:1 13642:1 13646:1 13660:1 13662:3 13670:1 13672:1 13677:2 13682:1 13727:1 13753:1 13769:1 13783:1 13789:3 13817:1 13826:1 13853:1 13866:4 13876:1 13899:3 13904:2 13907:1 13912:2 13913:1 13915:1 13921:1 13926:2 13927:1 13939:6 13942:2 13944:1 13947:1 13948:3 13950:1 13956:1 13959:1 13981:1 13983:2 13999:1 14051:1 14059:1 14064:1 14090:1 14095:2 14100:1 14105:1 14112:1 14142:1 14148:1 14151:1 14188:1 14205:1 14212:1 14228:1 14238:1 14258:1 14261:1 14271:2 14278:1 14279:1 14284:1 14286:1 14288:1 14293:1 14298:2 14311:1 14344:1 14346:1 14349:1 14361:1 14362:1 14363:2 14374:1 14383:1 14411:1 14429:1 14470:2 14472:1 14479:1 14527:2 14575:1 14603:1 14618:1 14636:1 14637:2 14641:3 14651:3 14663:1 14664:1 14672:1 14687:1 14694:2 14698:1 14706:1 14739:2 14747:1 14756:1 14775:1 14779:1 14780:1 14781:1 14796:1 14811:7 14815:1 14828:2 14845:1 14846:1 14858:1 14868:1 14884:1 14889:2 14895:1 14916:1 14933:2 14981:1 15003:1 15025:1 15040:1 15048:1 15069:1 15086:1 15096:1 15110:1 15130:1 15142:1 15156:2 15166:1 15171:6 15195:1 15226:1 15232:1 15241:1 15249:1 15254:1 15256:1 15262:1 15265:1 15287:1 15305:1 15308:1 15311:1 15363:1 15396:1 15404:1 15452:2 15455:1 15457:1 15458:3 15461:1 15478:1 15499:1 15511:3 15516:1 15521:4 15532:4 15537:1 15545:1 15560:1 15582:4 15584:1 15598:6 15607:1 15608:2 15619:1 15635:1 15643:2 15651:1 15678:1 15679:1 15698:1 15703:1 15710:2 15721:1 15727:1 15730:1 15741:1 15753:1 15760:1 15764:1 15773:1 15774:1 15776:1 15797:1 15806:1 15820:1 15827:1 15865:1 15876:1 15878:1 15882:4 15886:4 15936:1 15949:1 15966:2 15983:1 15990:1 16019:1 16029:1 16057:1 16060:2 16067:1 16101:1 16109:1 16115:1 16125:1 16145:1 16147:1 16154:1 16157:2 16175:3 16181:1 16299:1 16314:1 16333:2 16345:1 16369:1 16399:1 16425:1 16462:1 16475:1 16509:1 16535:3 16558:1 16560:1 16587:1 16592:2 16630:1 16679:1 16693:1 16707:1 16746:1 16753:1 16756:2 16763:2 16766:1 16807:1 16820:1 16825:1 16826:1 16853:1 16875:1 16880:1 16886:2 16905:2 16915:1 16917:1 16919:1 16961:1 16962:1 16981:1 16983:1 16999:1 17000:1 17002:2 17003:1 17009:1 17024:2 17029:1 17031:2 17034:2 17043:1 17050:1 17054:1 17058:1 17067:1 17076:1 17097:2 17119:2 17120:1 17137:2 17139:1 17143:1 17169:1 17175:1 17202:3 17204:1 17207:1 17208:3 17260:1 17282:1 17311:1 17317:2 17318:1 17319:1 17336:1 17340:1 17341:1 17383:1 17384:1 17399:3 17414:1 17418:1 17422:1 17427:2 17432:1 17434:4 17468:2 17470:1 17481:1 17533:1 17540:2 17565:1 17570:1 17582:1 17603:1 17616:1 17637:1 17640:1 17667:1 17695:1 17718:1 17750:1 17781:3 17784:2 17791:1 17796:1 17826:1 17827:1 17835:1 17844:4 17878:1 17891:2 17894:1 17897:16 17902:1 17936:1 17947:3 17961:1 17967:1 17974:1 17978:1 18044:1 18053:1 18073:2 18084:1 18106:1 18115:1 18117:2 18119:1 18145:1 18189:1 18196:1 18219:1 18236:1 18255:5 18257:1 18258:1 18261:1 18281:1 18282:1 18294:1 18295:1 18303:1 18309:1 18311:1 18332:1 18367:1 18370:1 18394:1 18401:1 18402:1 18404:1 18412:1 18417:2 18426:1 18434:1 18435:1 18437:1 18460:1 18461:1 18482:1 18489:1 18499:3 18521:1 18550:1 18558:1 18562:2 18580:2 18583:1 18608:1 18616:2 18645:1 18656:1 18666:2 18670:4 18681:1 18687:1 18728:1 18763:8 18785:2 18830:6 18835:1 18866:1 18881:1 18882:1 18899:1 18916:1 18935:1 18942:1 18958:1 18996:1 19005:3 19015:1 19022:1 19060:1 19067:1 19082:1 19086:1 19134:1 19176:3 19182:1 19188:1 19206:1 19208:1 19217:2 19221:2 19244:2 19263:1 19268:1 19280:1 19302:1 19324:1 19340:1 19346:1 19347:1 19361:2 19397:1 19426:1 19430:1 19435:1 19467:1 19489:1 19490:1 19542:1 19572:1 19584:3 19588:2 19615:1 19629:1 19654:1 19657:1 19663:2 19664:1 19669:1 19672:1 19674:1 19681:1 19706:1 19760:1 19768:1 19772:4 19779:1 19784:1 19799:1 19828:1 19861:1
5 2:1 5:1 28:1 33:1 35:2 65:1 68:2 105:2 131:1 145:1 160:3 164:1 167:1 178:1 185:3 196:1 200:1 220:1 227:1 233:1 289:1 316:1 348:1 349:1 352:1 353:1 365:1 366:1 390:1 393:2 399:2 413:1 417:1 418:2 422:1 434:1 461:2 477:1 485:1 495:2 510:2 511:1 525:1 540:1 565:1 574:2 576:1 592:1 595:1 600:1 605:1 615:1 639:1 641:1 661:1 714:1 720:1 738:1 749:1 793:1 811:1 825:1 826:1 833:1 864:1 865:2 880:3 909:1 931:2 942:1 950:2 971:1 972:1 1007:1 1014:1 1015:1 1032:1 1045:1 1074:1 1083:1 1104:1 1108:1 1134:1 1138:1 1140:1 1145:1 1176:1 1177:1 1194:1 1213:3 1214:1 1232:1 1242:1 1252:1 1264:1 1274:3 1276:1 1279:2 1288:2 1310:3 1320:1 1323:1 1324:2 1328:2 1335:1 1336:1 1337:3 1340:2 1357:1 1380:3 1388:1 1392:1 1408:1 1415:1 1421:1 1424:2 1427:3 1434:2 1463:4 1486:1 1494:1 1504:3 1512:1 1519:1 1578:1 1635:1 1637:1 1643:1 1649:1 1650:1 1653:1 1654:3 1657:2 1658:1 1659:2 1666:1 1670:1 1675:2 1680:1 1682:1 1683:1 1694:1 1714:1 1717:1 1723:2 1732:1 1735:1 1759:1 1767:1 1777:1 1786:1 1859:1 1862:1 1884:1 1894:1 1901:1 1902:1 1910:1 1920:1 1952:1 1970:1 1975:1 1980:1 2012:1 2030:1 2035:1 2045:1 2050:1 2060:1 2066:1 2067:1 2068:1 2074:1 2078:1 2097:5 2108:1 2112:3 2129:1 2138:1 2178:1 2180:1 2185:1 2207:1 2230:1 2255:3 2280:1 2345:1 2356:1 2363:1 2384:1 2394:2 2405:1 2450:1 2453:1 2471:4 2521:1 2544:1 2623:1 2645:1 2647:1 2656:2 2695:1 2713:1 2716:1 2746:1 2748:1 2764:1 2791:1 2801:1 2812:1 2815:1 2816:1 2823:5 2876:1 2882:1 2916:1 2923:1 2929:1 2954:1 2955:1 2972:1 2975:1 2976:2 2977:2 2979:1 2982:1 2984:2 2992:2 3006:1 3007:2 3015:1 3051:1 3062:1 3087:1 3139:1 3143:1 3153:1 3165:2 3169:1 3178:1 3179:1 3192:1 3196:1 3222:1 3237:1 3239:1 3243:1 3253:1 3258:2 3263:1 3287:1 3293:1 3355:1 3371:1 3429:3 3513:1 3516:2 3521:3 3532:1 3540:1 3554:1 3587:1 3590:1 3591:1 3594:3 3628:1 3650:1 3682:2 3692:1 3694:1 3695:2 3705:1 3719:1 3745:1 3759:1 3765:1 3838:1 3854:1 3855:12 3868:4 3876:1 3914:4 3941:1 3956:1 3961:1 3965:1 3977:3 4050:1 4052:2 4063:1 4103:1 4135:1 4142:1 4177:1 4185:1 4202:1 4210:2 4214:2 4228:1 4246:3 4256:1 4258:2 4259:1 4279:1 4282:3 4300:1 4310:1 4345:1 4387:1 4401:1 4419:4 4430:1 4446:2 4455:1 4456:1 4462:1 4532:1 4591:1 4596:2 4598:2 4601:1 4602:4 4603:1 4609:1 4610:1 4650:3 4656:1 4660:1 4671:2 4677:1 4714:1 4721:1 4725:3 4726:1 4727:11 4735:1 4752:1 4761:1 4766:3 4777:1 4782:1 4800:1 4809:1 4822:2 4828:3 4836:1 4854:1 4885:1 4890:1 4896:5 4900:1 4901:1 4906:1 4909:1 4944:1 4952:1 4954:1 4983:1 5004:1 5017:1 5037:1 5039:1 5058:1 5076:1 5099:1 5110:1 5116:1 5121:2 5141:1 5145:1 5147:1 5153:1101 5155:1 5158:1 5168:1 5171:1 5195:1 5196:1 5212:3 5230:1 5232:1 5250:1 5259:1 5288:1 5306:1 5311:1 5358:1 5380:1 5400:1 5404:1 5414:1 5426:1 5427:1 5433:1 5455:1 5487:1 5497:1 5562:1 5592:1 5612:1 5616:2 5658:1 5670:1 5683:4 5695:1 5704:1 5741:1 5757:1 5776:1 5825:2 5830:1 5840:1 5861:1 5864:1 5867:1 5909:1 5921:1 5931:1 5934:2 6013:4 6016:2 6020:4 6026:1 6035:1 6053:1 6064:1 6069:1 6133:1 6135:1 6139:1 6142:1 6155:1 6189:1 6219:1 6240:1 6262:1 6281:1 6301:1 6311:1 6345:1 6375:1 6377:1 6387:1 6392:6 6395:1 6400:1 6405:2 6434:1 6459:1 6460:1 6485:1 6533:1 6538:2 6551:1 6572:2 6581:1 6587:1 6594:4 6597:1 6602:1 6604:1 6605:1 6608:1 6637:2 6649:1 6652:4 6658:1 6672:1 6690:1 6693:1 6743:1 6764:2 6797:1 6813:1 6828:5 6844:1 6845:2 6860:4 6883:10 6886:2 6892:1 6959:1 6967:1 6974:1 6999:1 7021:2 7034:1 7043:1 7114:1 7127:1 7134:3 7140:1 7145:1 7153:1 7169:1 7181:1 7192:1 7201:1 7232:3 7244:1 7247:33 7263:1 7271:1 7280:1 7284:1 7291:3 7312:1 7353:1 7357:1 7361:1 7384:1 7387:4 7409:1 7420:1 7422:3 7442:1 7443:1 7444:4 7450:1 7453:1 7454:1 7457:1 7459:1 7473:1 7494:1 7504:1 7550:1 7556:1 7560:1 7563:1 7564:2 7574:1 7577:1 7579:2 7582:2 7583:2 7584:1 7609:1 7642:1 7647:1 7652:1 7656:1 7668:1 7692:1 7700:1 7701:1 7710:1 7835:1 7841:1 7874:1 7880:1 7900:1 7913:1 7930:1 7940:1 7957:3 7988:1 7998:1 8009:1 8012:1 8013:3 8017:1 8023:2 8042:1 8055:1 8056:1 8057:1 8058:3 8065:1 8094:1 8098:1 8100:1 8105:1 8113:1 8137:1 8138:1 8192:1 8194:1 8196:2 8199:1 8200:1 8211:1 8231:1 8245:1 8247:1 8248:1 8253:1 8263:1 8267:1 8272:1 8280:1 8296:1 8324:1 8333:1 8347:1 8358:1 8360:1 8387:3 8391:1 8399:1 8411:1 8414:1 8434:1 8491:1 8496:1 8520:1 8522:1 8533:2 8542:2 8552:1 8554:1 8556:1 8559:1 8573:1 8606:1 8616:2 8626:1 8648:1 8732:1 8755:1 8776:1 8779:1 8780:1 8786:2 8794:1 8797:2 8809:3 8840:1 8843:1 8848:1 8872:1 8923:1 8959:2 8971:2 8980:1 8996:1 9006:2 9025:1 9026:1 9051:1 9067:1 9072:1 9085:1 9090:1 9103:1 9122:1 9129:1 9177:1 9180:1 9183:1 9189:1 9191:1 9228:1 9234:1 9237:1 9238:1 9251:2 9260:9 9261:1 9268:1 9275:1 9295:3 9308:1 9329:1 9333:1 9337:1 9347:1 9357:1 9360:1 9370:1 9378:1 9380:1 9385:1 9394:1 9404:1 9406:5 9429:1 9443:2 9444:1 9456:1 9461:1 9474:1 9478:1 9499:2 9508:2 9512:1 9534:1 9548:2 9560:1 9569:1 9591:1 9594:3 9597:1 9605:2 9606:1 9612:1 9624:5 9625:1 9626:1 9627:1 9632:2 9641:2 9659:1 9683:2 9693:1 9704:2 9721:4 9759:1 9788:1 9798:2 9813:1 9817:1 9818:1 9822:1 9829:1 9842:1 9859:1 9865:2 9870:2 9879:2 9884:1 9888:1 9910:1 9916:1 9920:1 9924:2 9940:1 9948:1 9952:1 9963:1 9980:1 10001:1 10010:1 10013:1 10044:2 10058:1 10059:1 10070:1 10092:1 10098:1 10105:3 10111:2 10115:1 10125:2 10129:5 10193:3 10200:2 10204:2 10212:1 10243:1 10263:1 10272:3 10280:1 10297:1 10298:1 10315:1 10318:1 10349:3 10376:1 10377:1 10378:1 10398:2 10399:2 10409:2 10442:3 10459:13 10463:1 10468:1 10479:14 10484:3 10485:1 10551:1 10554:3 10567:1 10573:1 10632:1 10639:1 10640:1 10642:1 10649:1 10685:1 10720:1 10721:4 10725:1 10740:1 10742:1 10749:1 10756:4 10764:1 10790:1 10797:1 10820:2 10824:1 10865:2 10877:1 10922:1 10925:1 10930:1 10948:1 10968:1 10972:1 10978:1 10996:1 11017:1 11032:2 11046:2 11058:17 11081:1 11085:1 11099:1 11117:1 11123:1 11126:1 11140:1 11159:1 11164:1 11175:1 11180:1 11197:1 11200:8 11273:1 11276:1 11289:1 11310:2 11311:1 11321:1 11326:1 11330:1 11362:1 11403:3 11405:2 11416:2 11417:1 11420:2 11439:1 11446:3 11448:1 11457:1 11520:1 11523:1 11559:1 11563:2 11565:1 11568:1 11573:2 11608:1 11634:1 11637:1 11639:1 11641:3 11646:1 11649:1 11652:1 11654:1 11656:2 11658:1 11664:1 11667:1 11668:1 11678:1 11679:1 11687:1 11702:2 11715:1 11730:2 11732:1 11736:2 11765:1 11770:1 11773:1 11800:1 11831:2 11835:1 11842:1 11864:1 11866:1 11877:2 11888:1 11895:1 11898:1 11914:1 11921:1 11937:1 11951:1 11958:1 11978:1 11980:1 12026:1 12043:1 12052:4 12055:1 12063:1 12116:1 12132:1 12138:1 12161:1 12172:1 12210:1 12228:1 12234:1 12245:1 12251:1 12260:1 12280:1 12289:2 12331:1 12355:1 12357:2 12397:1 12405:1 12415:1 12433:1 12437:1 12439:1 12440:1 12454:1 12471:1 12480:1 12481:1 12497:2 12519:1 12532:1 12537:1 12556:2 12558:1 12566:2 12572:1 12577:1 12581:1 12585:3 12591:1 12610:1 12617:1 12642:1 12648:1 12678:1 12688:1 12709:1 12710:1 12712:1 12722:1 12723:1 12731:3 12747:1 12759:1 12769:1 12772:1 12779:1 12808:1 12809:1 12836:1 12858:1 12938:1 12962:5 12977:1 12978:2 12993:1 13019:1 13021:1 13028:1 13052:1 13056:2 13072:1 13106:1 13108:1 13121:1 13141:2 13143:1 13153:1 13179:1 13200:3 13203:2 13207:5 13208:1 13212:1 13219:1 13231:2 13238:1 13240:1 13250:1 13256:3 13266:1 13307:1 13358:2 13370:4 13383:1 13388:1 13426:1 13446:1 13448:1 13481:1 13483:3 13485:2 13491:1 13506:1 13508:1 13516:1 13546:1 13556:1 13574:1 13583:1 13585:1 13586:1 13627:2 13628:1 13631:1 13642:1 13646:1 13660:1 13662:3 13670:1 13672:1 13677:2 13682:1 13727:1 13753:1 13769:1 13783:1 13789:3 13817:1 13826:1 13853:1 13866:5 13876:1 13899:3 13904:2 13907:1 13912:2 13913:3 13915:1 13921:1 13926:2 13927:1 13934:1 13939:6 13942:2 13944:1 13947:1 13948:3 13950:1 13956:1 13959:1 13981:1 13983:2 13999:1 14051:1 14055:1 14059:1 14064:1 14090:1 14095:2 14100:1 14105:1 14112:1 14142:1 14148:1 14151:1 14188:1 14205:1 14212:1 14228:1 14238:1 14258:1 14261:1 14271:2 14278:1 14279:1 14284:1 14286:1 14288:1 14293:1 14298:2 14311:1 14344:1 14346:1 14349:1 14361:1 14362:1 14363:2 14374:1 14383:1 14411:1 14429:1 14470:2 14472:1 14479:1 14527:2 14575:1 14603:1 14618:1 14636:1 14637:2 14641:3 14651:3 14663:1 14664:1 14672:1 14687:1 14694:2 14698:1 14706:1 14739:2 14747:1 14756:1 14775:1 14779:1 14780:1 14781:1 14796:1 14811:7 14815:1 14828:2 14845:1 14846:1 14858:1 14868:1 14884:1 14889:2 14895:1 14916:1 14933:2 14981:1 15003:1 15025:1 15040:2 15048:1 15069:1 15086:1 15096:1 15110:1 15130:1 15142:1 15156:2 15166:1 15171:7 15195:1 15226:1 15232:1 15241:1 15249:1 15254:1 15256:1 15262:1 15265:1 15287:1 15305:1 15308:1 15311:1 15363:1 15396:1 15404:1 15452:2 15455:1 15457:2 15458:3 15461:1 15478:1 15499:1 15511:3 15516:1 15521:4 15532:4 15537:1 15545:2 15560:1 15572:1 15582:4 15584:1 15598:6 15607:1 15608:2 15619:1 15635:1 15643:2 15651:1 15678:1 15679:1 15698:1 15703:1 15710:2 15721:1 15727:1 15730:1 15741:1 15753:1 15760:1 15764:1 15773:1 15774:1 15776:1 15797:1 15806:1 15820:1 15827:1 15865:1 15876:1 15878:1 15882:4 15886:4 15922:1 15936:1 15949:1 15966:2 15983:1 15990:1 16019:1 16029:1 16057:1 16060:2 16067:1 16101:1 16109:1 16115:1 16125:1 16145:1 16147:1 16154:1 16157:2 16175:3 16181:1 16299:1 16314:1 16333:2 16345:1 16369:1 16399:1 16425:1 16462:1 16475:1 16509:1 16535:3 16558:1 16560:1 16587:1 16592:2 16630:1 16679:1 16693:1 16707:1 16746:2 16753:1 16756:2 16763:2 16766:1 16807:1 16820:1 16825:1 16826:1 16853:1 16875:1 16880:1 16886:2 16905:2 16915:1 16917:1 16919:1 16961:1 16962:1 16981:1 16983:1 16999:1 17000:1 17002:2 17003:1 17009:1 17024:2 17029:1 17031:2 17034:2 17043:1 17050:1 17054:1 17058:1 17067:1 17071:1 17076:1 17097:2 17119:2 17120:1 17137:2 17139:1 17143:1 17169:1 17175:1 17202:3 17204:1 17207:1 17208:3 17260:1 17282:1 17311:1 17317:2 17318:1 17319:1 17336:1 17340:1 17341:1 17383:1 17384:1 17399:3 17414:1 17418:1 17422:1 17427:2 17432:1 17434:4 17468:2 17470:1 17481:1 17533:1 17540:2 17565:1 17570:1 17582:1 17603:1 17616:1 17637:1 17640:1 17667:1 17695:1 17718:1 17750:1 17781:4 17784:2 17791:1 17796:1 17826:1 17827:1 17835:1 17844:4 17878:1 17891:2 17894:1 17897:17 17902:1 17936:1 17947:3 17961:1 17967:1 17974:1 17978:1 18044:1 18053:1 18073:2 18084:1 18106:1 18115:1 18117:2 18119:1 18141:1 18145:1 18189:1 18196:1 18219:1 18236:1 18255:5 18257:1 18258:1 18261:1 18281:1 18282:1 18294:1 18295:1 18303:1 18309:1 18311:1 18332:1 18367:1 18370:1 18394:1 18401:1 18402:1 18404:1 18412:1 18415:1 18417:2 18426:1 18434:1 18435:1 18437:1 18460:1 18461:1 18482:1 18489:1 18499:3 18521:1 18550:1 18558:1 18562:2 18580:2 18583:1 18608:1 18616:2 18645:1 18656:1 18666:2 18670:4 18681:1 18687:1 18728:1 18763:8 18785:2 18830:6 18835:1 18866:1 18881:1 18882:1 18899:1 18909:1 18916:2 18935:1 18942:1 18958:1 18996:1 19005:3 19015:1 19022:1 19060:1 19067:1 19082:1 19086:1 19134:1 19176:3 19182:1 19188:1 19206:1 19208:1 19217:2 19221:2 19244:2 19263:1 19268:1 19280:1 19302:1 19324:1 19340:1 19346:1 19347:1 19361:2 19397:1 19426:1 19430:1 19435:1 19467:1 19484:1 19489:1 19490:1 19542:1 19572:1 19584:3 19588:2 19615:1 19629:1 19654:1 19657:1 19663:2 19664:1 19669:1 19672:1 19674:1 19681:1 19706:1 19760:1 19768:1 19772:4 19779:1 19784:1 19799:1 19828:1 19861:1
5 2:1 5:1 28:1 33:1 35:3 65:1 68:3 105:2 131:1 145:1 160:3 164:1 167:1 178:1 185:3 196:1 200:1 215:1 220:1 227:1 233:2 272:1 289:1 316:1 348:2 349:1 352:1 353:1 365:1 366:1 390:1 393:2 399:2 413:1 417:1 418:2 422:1 434:1 461:2 477:1 485:1 495:2 510:2 511:1 525:1 540:1 565:1 574:2 576:1 592:1 595:1 600:1 605:1 615:1 639:1 641:1 661:1 714:1 720:1 738:1 749:1 763:1 793:1 811:1 825:1 826:1 833:2 864:1 865:2 880:3 901:1 909:1 931:2 942:1 950:2 971:1 972:1 1007:1 1014:1 1015:1 1032:1 1045:1 1074:1 1083:1 1104:1 1108:1 1134:1 1138:1 1140:1 1145:1 1176:1 1177:1 1194:2 1213:3 1214:1 1232:2 1242:1 1252:1 1264:1 1274:3 1276:1 1279:2 1288:3 1310:3 1320:1 1323:1 1324:2 1328:2 1335:1 1336:1 1337:3 1340:2 1355:1 1357:2 1380:3 1388:1 1392:1 1408:1 1415:1 1421:1 1424:2 1427:3 1434:2 1463:5 1486:1 1494:1 1504:3 1512:1 1519:1 1576:1 1578:1 1628:1 1635:1 1637:1 1643:1 1649:1 1650:1 1653:1 1654:3 1657:2 1658:1 1659:2 1666:1 1670:2 1675:2 1677:1 1680:1 1682:1 1683:1 1694:1 1714:1 1717:1 1723:2 1732:1 1735:1 1759:1 1767:1 1777:1 1786:1 1859:1 1862:1 1884:1 1894:1 1901:1 1902:1 1910:1 1920:1 1952:1 1963:1 1968:1 1970:1 1975:1 1980:1 2012:1 2030:1 2035:1 2045:1 2050:1 2060:1 2066:1 2067:1 2068:1 2074:1 2078:2 2097:6 2108:1 2112:3 2123:1 2129:1 2138:1 2178:1 2180:1 2185:1 2207:1 2230:1 2255:3 2280:1 2345:1 2356:1 2363:1 2384:1 2394:2 2405:1 2450:1 2453:1 2471:5 2521:1 2541:1 2544:1 2623:1 2645:1 2647:1 2656:2 2695:1 2713:1 2716:1 2717:1 2742:1 2746:1 2748:1 2764:1 2791:1 2799:1 2801:1 2812:1 2815:2 2816:1 2823:5 2876:1 2882:1 2916:1 2923:1 2929:1 2954:1 2955:1 2972:1 2975:1 2976:2 2977:2 2979:1 2982:1 2984:2 2992:3 3006:2 3007:2 3014:1 3015:1 3051:1 3062:1 3087:1 3137:1 3139:1 3143:1 3148:1 3153:1 3165:2 3169:1 3178:1 3179:1 3192:1 3196:1 3222:1 3237:1 3239:1 3243:1 3253:1 3258:2 3263:1 3287:1 3293:1 3323:1 3355:1 3371:1 3429:3 3513:1 3516:2 3521:3 3532:1 3540:1 3547:1 3554:1 3580:1 3587:1 3590:1 3591:1 3594:3 3628:1 3650:1 3682:2 3692:2 3694:1 3695:2 3705:1 3708:1 3719:1 3745:1 3759:1 3765:1 3838:1 3854:1 3855:12 3868:4 3876:1 3914:5 3941:1 3956:1 3961:1 3965:1 3977:3 4050:1 4052:2 4063:1 4103:1 4135:1 4142:1 4177:1 4185:1 4202:1 4210:2 4214:2 4228:1 4246:3 4256:1 4258:2 4259:1 4279:2 4282:3 4300:1 4310:1 4345:1 4387:1 4401:1 4419:4 4423:1 4430:1 4446:2 4455:1 4456:1 4462:1 4532:1 4578:1 4591:1 4596:2 4598:2 4601:1 4602:4 4603:2 4609:1 4610:1 4650:3 4656:1 4660:1 4671:2 4677:1 4696:1 4714:1 4721:1 4725:3 4726:1 4727:11 4735:1 4752:1 4761:1 4766:3 4777:1 4782:1 4800:1 4809:1 4822:2 4828:3 4836:1 4854:1 4885:1 4890:1 4896:5 4900:1 4901:1 4906:1 4909:1 4944:1 4952:1 4954:1 4983:1 5004:1 5017:1 5037:1 5039:1 5058:1 5076:1 5099:1 5110:1 5116:1 5121:2 5141:1 5145:1 5147:1 5153:1188 5155:1 5158:1 5168:1 5171:1 5195:1 5196:1 5212:3 5230:1 5232:1 5250:1 5259:1 5288:1 5306:1 5311:1 5358:1 5380:1 5400:1 5404:1 5414:1 5426:1 5427:1 5433:1 5441:1 5444:1 5455:1 5487:1 5497:1 5562:1 5592:1 5612:1 5616:3 5658:1 5670:1 5683:4 5690:1 5695:1 5704:1 5741:1 5757:1 5776:1 5825:2 5830:1 5840:1 5861:1 5864:1 5867:1 5909:1 5921:1 5931:1 5934:2 5959:1 5973:1 6010:1 6013:4 6016:2 6020:4 6026:1 6035:2 6053:1 6064:1 6069:1 6133:1 6135:1 6139:1 6142:1 6155:1 6189:1 6219:1 6240:1 6262:1 6281:1 6301:1 6311:1 6345:1 6375:1 6377:1 6387:1 6392:7 6395:1 6400:1 6405:2 6434:1 6459:1 6460:1 6485:1 6533:1 6538:2 6551:1 6572:2 6581:1 6587:1 6594:4 6597:1 6602:1 6604:1 6605:1 6607:1 6608:1 6637:2 6649:1 6652:4 6658:1 6672:1 6690:1 6693:1 6743:1 6764:2 6797:1 6813:1 6828:6 6844:1 6845:2 6860:5 6883:11 6886:2 6892:1 6947:1 6959:1 6967:2 6974:2 6999:1 7021:2 7034:1 7043:1 7114:1 7127:1 7134:3 7140:1 7145:1 7153:1 7169:1 7181:1 7192:1 7201:1 7232:4 7244:1 7247:36 7250:1 7263:1 7271:1 7280:1 7284:1 7291:3 7312:1 7353:1 7357:1 7361:1 7384:1 7387:4 7409:1 7420:1 7422:3 7442:1 7443:1 7444:5 7450:1 7453:1 7454:1 7457:1 7459:1 7473:1 7478:1 7494:1 7504:1 7550:1 7556:1 7560:1 7563:1 7564:2 7572:1 7574:1 7577:1 7579:2 7582:2 7583:2 7584:1 7609:1 7642:1 7647:1 7652:1 7656:1 7668:1 7692:1 7700:1 7701:1 7710:1 7711:1 7770:1 7835:1 7841:1 7849:1 7874:1 7880:1 7900:1 7912:1 7913:1 7930:1 7940:1 7957:3 7988:1 7998:1 8009:1 8012:2 8013:3 8017:1 8023:2 8042:1 8055:1 8056:1 8057:1 8058:3 8065:1 8094:1 8098:1 8100:1 8105:1 8113:1 8137:1 8138:1 8152:1 8192:1 8194:1 8196:2 8199:1 8200:1 8211:1 8231:1 8245:1 8247:1 8248:1 8253:1 8263:1 8267:1 8272:1 8280:1 8296:1 8324:1 8333:1 8346:1 8347:1 8358:1 8360:1 8371:1 8387:3 8391:1 8399:1 8411:1 8414:1 8434:1 8437:1 8491:1 8496:1 8513:1 8520:2 8522:1 8533:2 8542:2 8552:2 8554:1 8556:1 8559:1 8573:1 8606:1 8616:2 8626:1 8648:1 8651:1 8732:1 8755:1 8772:1 8776:1 8779:1 8780:1 8785:1 8786:2 8794:1 8797:2 8809:3 8840:1 8843:1 8848:1 8872:1 8901:1 8923:1 8959:2 8971:2 8980:1 8996:1 9006:2 9025:1 9026:1 9051:1 9067:1 9072:1 9085:1 9090:1 9103:1 9122:2 9129:1 9177:1 9180:1 9183:1 9189:1 9191:1 9228:1 9234:1 9237:1 9238:1 9251:4 9252:1 9260:9 9261:2 9268:1 9275:1 9295:3 9308:1 9329:1 9333:1 9337:1 9347:1 9357:1 9360:1 9370:1 9378:1 9380:1 9385:1 9388:1 9394:1 9404:1 9406:5 9429:1 9443:2 9444:1 9456:1 9461:1 9474:1 9478:1 9499:2 9508:2 9512:1 9534:1 9548:2 9560:1 9569:1 9591:1 9594:5 9597:1 9605:2 9606:1 9612:1 9624:5 9625:1 9626:1 9627:1 9632:2 9641:2 9659:1 9683:2 9693:1 9704:2 9721:4 9759:1 9788:1 9798:2 9813:1 9817:1 9818:1 9822:1 9829:1 9842:1 9859:1 9865:3 9870:2 9879:2 9884:1 9888:1 9910:1 9916:1 9920:1 9924:2 9926:1 9940:1 9948:1 9952:1 9963:1 9980:1 10001:1 10010:1 10013:1 10044:2 10058:1 10059:1 10070:1 10092:1 10098:1 10105:3 10111:3 10115:1 10125:2 10129:6 10193:3 10200:2 10204:2 10212:1 10243:1 10263:1 10272:3 10280:1 10286:1 10297:1 10298:1 10315:1 10318:1 10349:3 10356:1 10376:1 10377:1 10378:1 10398:2 10399:2 10409:3 10442:3 10459:15 10463:1 10468:1 10479:14 10484:4 10485:1 10551:1 10554:3 10567:1 10573:1 10632:1 10639:2 10640:1 10642:1 10649:1 10654:1 10685:1 10720:1 10721:4 10725:1 10740:1 10742:1 10749:1 10756:5 10764:1 10769:1 10790:1 10797:1 10820:2 10824:1 10865:2 10877:1 10892:1 10922:1 10925:1 10930:1 10948:1 10968:1 10972:1 10978:1 10996:1 11017:1 11032:2 11046:2 11058:19 11081:1 11085:1 11099:1 11117:1 11123:1 11126:1 11140:1 11159:1 11164:1 11175:1 11180:1 11195:1 11197:1 11200:8 11273:1 11276:1 11280:1 11289:1 11310:2 11311:1 11321:1 11326:1 11330:1 11362:1 11403:3 11405:2 11415:1 11416:2 11417:1 11420:3 11439:1 11446:3 11448:1 11457:1 11458:1 11459:1 11473:1 11496:1 11520:1 11523:1 11559:1 11563:2 11565:1 11568:2 11573:2 11607:1 11608:1 11623:1 11634:1 11637:1 11639:1 11641:3 11646:1 11649:1 11652:1 11654:1 11656:2 11658:1 11664:1 11667:1 11668:1 11678:1 11679:1 11687:1 11702:2 11715:1 11730:3 11732:1 11736:3 11765:1 11770:1 11773:1 11800:1 11831:3 11835:1 11842:1 11864:1 11866:1 11877:2 11888:1 11895:1 11898:1 11914:1 11921:1 11937:1 11951:1 11958:1 11978:1 11980:1 12026:1 12043:1 12052:4 12055:1 12063:1 12116:1 12132:1 12138:1 12161:1 12172:1 12210:1 12228:1 12234:1 12245:1 12251:1 12260:1 12280:1 12289:2 12305:1 12328:1 12331:1 12355:1 12357:2 12397:1 12405:1 12415:1 12433:1 12437:1 12439:1 12440:1 12454:1 12471:1 12480:1 12481:1 12497:2 12519:1 12532:1 12537:1 12556:2 12557:1 12558:1 12566:3 12572:1 12577:1 12581:1 12585:3 12591:1 12610:1 12617:1 12642:1 12648:1 12678:1 12688:1 12709:1 12710:1 12712:1 12722:1 12723:1 12731:3 12747:1 12759:1 12769:1 12772:1 12779:1 12808:1 12809:1 12828:1 12836:1 12858:1 12877:1 12938:1 12962:5 12970:1 12977:1 12978:2 12993:1 13019:1 13021:1 13028:1 13052:1 13056:2 13072:1 13106:1 13108:1 13121:1 13141:2 13143:1 13153:1 13156:1 13179:1 13200:3 13203:2 13207:6 13208:1 13212:1 13219:1 13231:2 13238:1 13240:1 13247:1 13250:1 13256:3 13266:1 13307:1 13358:2 13370:4 13383:1 13388:1 13402:1 13426:1 13446:1 13448:1 13481:1 13483:3 13485:2 13491:1 13506:1 13508:1 13516:1 13517:1 13538:1 13546:1 13556:1 13574:1 13583:1 13585:1 13586:1 13627:2 13628:1 13631:1 13642:1 13646:1 13655:1 13660:1 13662:3 13670:1 13672:1 13677:2 13682:1 13727:1 13753:1 13759:1 13769:1 13783:1 13789:3 13817:1 13826:1 13853:1 13866:5 13876:1 13899:3 13904:2 13907:1 13912:2 13913:3 13915:1 13921:1 13926:2 13927:1 13934:1 13939:7 13942:2 13944:1 13947:1 13948:3 13950:1 13956:1 13959:1 13981:1 13983:2 13999:1 14051:1 14055:1 14059:1 14064:1 14090:1 14095:2 14100:1 14105:1 14112:1 14142:1 14148:1 14151:1 14172:1 14188:1 14205:1 14212:1 14228:1 14238:1 14258:1 14261:1 14271:2 14278:1 14279:1 14284:1 14286:1 14288:1 14293:1 14298:2 14311:1 14344:1 14346:1 14349:1 14361:1 14362:1 14363:2 14374:1 14383:1 14411:1 14429:1 14470:2 14472:1 14479:1 14527:2 14575:1 14603:1 14618:1 14625:1 14636:1 14637:2 14641:3 14651:3 14663:1 14664:1 14672:1 14687:1 14694:2 14698:1 14706:1 14739:2 14747:1 14756:1 14775:1 14779:1 14780:1 14781:1 14796:1 14811:7 14815:1 14828:2 14845:1 14846:1 14852:1 14858:1 14868:1 14884:1 14889:2 14895:1 14916:1 14933:2 14981:1 15003:1 15025:1 15040:2 15048:1 15069:1 15086:1 15096:1 15110:2 15130:1 15142:1 15156:2 15166:1 15171:9 15190:1 15195:1 15226:1 15232:1 15241:1 15249:1 15254:1 15256:1 15262:1 15265:1 15267:1 15268:1 15287:1 15305:1 15308:1 15311:1 15363:1 15396:1 15404:1 15452:2 15455:1 15457:2 15458:3 15461:1 15478:1 15490:1 15499:1 15511:3 15513:1 15516:1 15521:4 15532:4 15537:1 15545:2 15560:1 15572:1 15582:4 15584:1 15598:6 15607:1 15608:2 15619:1 15635:2 15643:2 15651:1 15678:1 15679:1 15698:1 15703:1 15710:3 15721:1 15727:1 15730:1 15741:1 15753:1 15760:1 15764:1 15773:1 15774:1 15776:1 15797:1 15806:1 15820:1 15827:1 15865:1 15876:1 15878:1 15882:4 15886:4 15922:1 15936:1 15949:1 15962:1 15966:3 15983:1 15990:1 16019:1 16020:1 16023:1 16029:1 16057:1 16060:2 16067:1 16101:1 16109:1 16115:1 16125:1 16145:1 16147:1 16154:1 16157:2 16175:3 16181:1 16274:1 16299:1 16305:1 16314:1 16333:2 16345:1 16369:1 16399:1 16425:1 16462:1 16475:1 16509:1 16535:3 16558:1 16560:1 16579:1 16583:1 16587:1 16592:2 16630:1 16679:1 16693:1 16707:1 16746:2 16753:1 16756:2 16763:2 16766:1 16807:1 16820:1 16825:1 16826:1 16853:1 16875:1 16880:1 16886:2 16905:2 16915:1 16917:2 16919:1 16948:1 16957:1 16961:1 16962:1 16981:1 16983:1 16999:1 17000:1 17002:2 17003:1 17009:1 17024:2 17029:1 17031:2 17034:2 17043:1 17050:1 17054:1 17058:1 17067:1 17071:1 17076:1 17097:2 17119:2 17120:2 17137:2 17139:1 17143:1 17169:1 17175:1 17202:3 17204:1 17207:1 17208:3 17250:1 17260:1 17282:1 17311:1 17317:2 17318:1 17319:1 17336:1 17340:1 17341:1 17383:1 17384:1 17399:3 17414:1 17418:1 17422:1 17427:2 17432:1 17434:4 17468:2 17470:1 17481:1 17533:1 17540:2 17565:1 17570:1 17582:1 17603:1 17604:1 17616:1 17637:1 17640:1 17667:1 17695:1 17718:1 17750:1 17781:4 17784:2 17791:1 17796:1 17826:1 17827:1 17835:1 17844:4 17878:1 17891:2 17894:1 17897:18 17902:2 17936:1 17947:3 17961:1 17967:1 17974:1 17978:1 18044:1 18053:1 18073:2 18080:1 18084:1 18106:1 18115:1 18117:2 18119:1 18141:1 18145:1 18189:1 18196:1 18219:1 18236:1 18255:5 18257:1 18258:1 18261:1 18270:1 18281:1 18282:1 18294:1 18295:1 18296:1 18303:1 18309:1 18311:1 18332:1 18367:1 18370:1 18392:1 18394:1 18401:1 18402:1 18404:1 18412:1 18415:1 18417:2 18426:1 18434:1 18435:1 18437:1 18460:1 18461:1 18482:1 18489:1 18499:4 18521:1 18524:1 18550:1 18558:1 18562:2 18580:2 18582:1 18583:1 18608:1 18616:2 18645:1 18652:1 18656:2 18666:2 18670:4 18681:1 18687:1 18728:1 18763:8 18785:2 18830:6 18835:1 18866:1 18881:1 18882:1 18899:1 18909:1 18916:2 18935:1 18942:1 18958:1 18996:1 19005:5 19015:1 19022:1 19060:1 19067:1 19082:1 19086:1 19134:1 19176:3 19182:1 19188:1 19206:1 19208:1 19217:2 19221:2 19244:2 19263:1 19268:1 19280:1 19302:1 19324:1 19340:1 19346:1 19347:1 19361:2 19397:1 19426:1 19430:1 19435:1 19467:1 19484:1 19489:1 19490:1 19498:1 19542:1 19572:1 19584:3 19588:2 19615:1 19629:1 19633:1 19644:1 19654:1 19657:1 19663:2 19664:1 19669:1 19672:1 19674:1 19681:1 19706:1 19760:1 19768:1 19772:4 19779:1 19784:1 19799:1 19828:1 19861:1
5 2:1 5:1 28:1 33:1 35:3 65:1 68:3 105:2 131:1 145:1 160:3 164:1 167:1 178:1 185:3 196:1 200:1 215:1 220:1 227:1 233:2 272:1 289:1 316:1 348:2 349:1 352:1 353:1 365:1 366:1 390:1 393:2 399:2 413:1 417:1 418:2 422:1 434:1 461:2 477:1 485:1 495:2 510:2 511:1 525:1 540:1 565:1 574:2 576:1 592:1 595:1 600:1 605:1 615:1 639:1 641:1 661:1 714:1 720:1 738:1 749:1 763:1 793:1 798:1 811:1 825:1 826:1 833:2 864:1 865:2 880:3 901:1 909:1 931:2 942:1 950:2 971:1 972:1 1007:1 1014:1 1015:1 1032:1 1045:1 1074:1 1083:1 1104:1 1108:1 1134:1 1138:1 1140:1 1145:1 1176:1 1177:1 1194:2 1213:3 1214:1 1232:2 1242:1 1252:1 1264:1 1274:3 1276:1 1279:2 1288:3 1310:3 1320:1 1323:1 1324:2 1328:2 1335:1 1336:1 1337:3 1340:2 1355:1 1357:2 1380:3 1388:1 1392:1 1408:1 1415:1 1421:1 1424:2 1427:3 1434:2 1463:5 1486:1 1494:1 1504:3 1512:1 1519:1 1576:1 1578:1 1628:1 1635:1 1637:1 1643:1 1649:1 1650:1 1653:1 1654:3 1657:2 1658:1 1659:2 1666:1 1670:2 1675:2 1677:1 1680:1 1682:1 1683:1 1694:1 1714:1 1717:1 1723:2 1732:1 1735:1 1756:1 1759:1 1767:1 1777:1 1786:1 1859:1 1862:1 1884:1 1894:1 1901:1 1902:1 1910:1 1920:1 1952:1 1963:1 1968:1 1970:1 1975:1 1980:1 2012:1 2030:1 2035:1 2045:1 2050:1 2060:1 2066:1 2067:1 2068:1 2074:1 2078:2 2097:7 2108:1 2112:3 2123:1 2129:1 2138:1 2178:1 2180:1 2185:1 2207:1 2230:1 2255:3 2280:1 2345:1 2356:1 2363:1 2384:1 2394:2 2405:1 2450:1 2453:1 2471:5 2521:1 2541:1 2544:1 2623:1 2645:1 2647:1 2656:2 2695:1 2713:1 2716:1 2717:1 2742:1 2746:1 2748:1 2764:1 2791:1 2799:1 2801:1 2812:1 2815:2 2816:1 2823:5 2876:1 2882:1 2916:1 2917:1 2923:1 2929:1 2954:1 2955:1 2972:1 2975:1 2976:2 2977:2 2979:1 2982:1 2984:2 2992:3 3006:2 3007:2 3014:1 3015:1 3051:1 3062:1 3087:1 3137:1 3139:1 3143:1 3148:1 3153:1 3165:2 3169:1 3178:1 3179:1 3192:1 3196:1 3222:1 3237:1 3239:1 3243:1 3253:1 3258:2 3263:1 3287:1 3293:1 3323:1 3355:1 3365:1 3371:1 3429:3 3513:1 3516:2 3521:4 3532:1 3540:1 3547:1 3554:1 3580:1 3587:1 3590:1 3591:1 3594:3 3628:1 3650:1 3682:2 3692:2 3694:1 3695:2 3705:1 3708:1 3719:1 3745:1 3759:1 3765:1 3838:1 3854:1 3855:12 3868:4 3876:1 3882:1 3914:6 3941:1 3956:1 3961:1 3965:1 3977:3 4050:1 4052:2 4063:1 4103:1 4135:1 4142:1 4177:1 4185:1 4202:1 4210:2 4214:2 4228:1 4246:3 4256:1 4258:2 4259:1 4279:2 4282:3 4300:1 4310:1 4345:1 4387:1 4401:1 4419:5 4423:1 4430:1 4446:2 4455:1 4456:1 4462:1 4532:1 4578:1 4591:1 4596:2 4598:2 4601:1 4602:4 4603:2 4609:1 4610:1 4650:3 4656:1 4660:1 4671:2 4677:1 4696:1 4714:1 4721:1 4725:3 4726:1 4727:13 4735:1 4752:1 4761:1 4766:3 4777:1 4782:1 4800:1 4809:1 4822:2 4828:3 4836:1 4854:1 4885:1 4890:1 4896:5 4900:1 4901:1 4906:1 4909:1 4944:1 4952:1 4954:1 4983:1 5004:1 5017:1 5037:1 5039:1 5058:1 5076:1 5099:1 5110:1 5116:1 5121:2 5141:1 5145:1 5147:1 5153:1203 5155:1 5158:1 5168:1 5171:1 5195:1 5196:1 5212:3 5230:1 5232:1 5250:1 5259:1 5288:1 5306:1 5311:1 5358:1 5380:1 5400:1 5404:1 5414:1 5426:1 5427:1 5433:1 5441:1 5444:1 5455:1 5487:1 5497:1 5562:1 5592:1 5612:1 5616:3 5658:1 5670:1 5683:4 5690:1 5695:1 5704:1 5741:1 5757:1 5776:1 5825:2 5830:1 5840:1 5861:1 5864:1 5867:1 5909:1 5921:1 5930:1 5931:1 5934:2 5959:1 5973:1 6010:1 6013:4 6016:2 6020:4 6026:1 6035:2 6053:1 6064:1 6069:1 6133:1 6135:1 6139:1 6142:1 6155:1 6189:1 6219:1 6240:1 6262:1 6281:1 6301:1 6311:1 6345:1 6375:1 6377:1 6387:1 6392:7 6395:1 6400:1 6405:2 6410:1 6434:1 6459:1 6460:1 6485:1 6533:1 6538:2 6551:1 6572:2 6581:1 6587:1 6594:4 6597:1 6602:1 6604:1 6605:1 6607:1 6608:1 6637:3 6649:1 6652:4 6658:1 6672:1 6690:1 6693:1 6743:1 6764:2 6797:1 6813:1 6828:6 6844:1 6845:2 6860:5 6883:12 6886:2 6892:1 6947:1 6959:1 6967:2 6974:2 6999:1 7021:2 7034:1 7043:1 7114:1 7127:1 7134:3 7140:1 7145:1 7153:1 7169:1 7181:1 7192:1 7201:1 7232:4 7244:1 7247:38 7250:1 7263:1 7271:1 7280:1 7284:1 7291:3 7312:1 7353:1 7357:1 7361:1 7384:1 7387:4 7409:1 7420:1 7422:3 7442:1 7443:1 7444:5 7450:1 7453:1 7454:1 7457:1 7459:1 7473:1 7478:1 7494:1 7504:1 7525:1 7550:1 7556:1 7560:1 7563:1 7564:2 7572:1 7574:1 7577:1 7579:2 7582:2 7583:2 7584:1 7609:1 7642:1 7647:1 7652:1 7656:1 7668:1 7692:1 7700:1 7701:1 7707:1 7710:1 7711:1 7770:1 7835:1 7841:1 7849:1 7874:1 7880:1 7900:1 7912:1 7913:1 7930:1 7940:1 7957:3 7988:1 7998:1 8009:1 8012:2 8013:3 8017:1 8023:2 8042:1 8055:1 8056:1 8057:1 8058:3 8065:1 8094:1 8098:1 8100:1 8105:1 8113:1 8137:1 8138:1 8152:1 8192:1 8194:1 8196:2 8199:1 8200:1 8211:1 8231:1 8245:1 8247:1 8248:1 8253:1 8263:1 8267:1 8272:1 8280:1 8296:1 8324:1 8333:1 8346:1 8347:1 8358:1 8360:1 8371:1 8387:3 8391:1 8399:1 8411:1 8414:1 8434:1 8437:1 8491:1 8496:1 8513:1 8520:2 8522:1 8533:2 8542:2 8552:2 8554:1 8556:1 8559:1 8573:1 8606:1 8616:2 8626:1 8648:1 8651:1 8732:1 8755:1 8772:1 8776:1 8779:1 8780:1 8785:1 8786:2 8794:1 8797:2 8809:3 8840:1 8843:1 8848:1 8872:1 8901:1 8923:1 8959:2 8971:2 8980:1 8996:1 9006:2 9025:1 9026:1 9051:1 9067:1 9072:1 9085:1 9090:1 9103:1 9122:2 9129:1 9177:1 9180:1 9183:1 9189:1 9191:1 9228:1 9234:1 9237:1 9238:1 9251:4 9252:1 9260:9 9261:2 9268:1 9275:1 9295:3 9308:1 9329:1 9333:1 9337:1 9347:1 9357:1 9360:1 9370:1 9378:1 9380:1 9385:1 9388:1 9394:1 9404:1 9406:5 9429:1 9443:2 9444:1 9456:1 9461:1 9474:1 9478:1 9499:2 9508:2 9512:1 9522:1 9534:1 9548:3 9560:1 9569:1 9591:1 9594:5 9597:1 9605:2 9606:1 9612:1 9624:5 9625:1 9626:1 9627:1 9632:2 9641:2 9659:1 9683:2 9693:1 9704:2 9721:4 9759:1 9780:1 9788:1 9798:2 9813:1 9817:1 9818:1 9822:1 9829:1 9842:1 9859:1 9865:3 9870:2 9879:2 9884:1 9888:1 9910:1 9916:1 9920:1 9924:2 9926:1 9940:1 9948:1 9952:1 9963:1 9980:1 10001:1 10010:1 10013:1 10044:2 10058:1 10059:1 10070:1 10092:1 10098:1 10105:3 10111:3 10115:1 10125:2 10129:6 10193:3 10200:2 10204:2 10212:1 10243:1 10263:1 10272:3 10280:1 10286:1 10297:1 10298:1 10315:1 10318:1 10349:3 10356:1 10376:1 10377:1 10378:1 10398:2 10399:2 10409:3 10442:3 10459:15 10463:1 10468:1 10479:14 10484:5 10485:1 10551:1 10554:3 10567:1 10573:1 10632:1 10639:2 10640:1 10642:1 10649:1 10654:1 10685:1 10720:1 10721:4 10725:1 10740:1 10742:1 10749:1 10756:5 10764:1 10769:1 10790:1 10797:1 10820:2 10824:1 10865:2 10877:1 10892:1 10922:1 10925:1 10930:1 10948:1 10968:1 10972:1 10978:1 10990:1 10996:1 11017:1 11032:2 11046:2 11058:19 11081:1 11085:1 11099:1 11117:1 11123:1 11126:1 11140:1 11159:1 11164:1 11175:1 11180:1 11195:1 11197:1 11200:8 11272:1 11273:1 11276:1 11280:1 11289:1 11310:2 11311:1 11321:1 11326:1 11330:1 11362:1 11376:1 11403:3 11405:2 11415:1 11416:2 11417:1 11420:3 11439:1 11446:3 11448:1 11457:1 11458:1 11459:1 11473:1 11496:1 11520:1 11523:1 11559:1 11563:2 11565:1 11568:2 11573:2 11607:1 11608:1 11623:1 11634:1 11637:1 11639:1 11641:3 11646:1 11649:1 11652:1 11654:1 11656:2 11658:1 11664:1 11667:1 11668:1 11678:1 11679:1 11687:1 11702:2 11715:1 11730:3 11732:1 11736:3 11765:1 11770:1 11773:1 11800:1 11831:3 11835:1 11842:1 11864:1 11866:1 11877:2 11888:1 11895:1 11898:1 11914:1 11921:1 11937:1 11951:1 11958:1 11978:1 11980:1 12000:1 12026:1 12043:1 12052:4 12055:1 12063:1 12116:1 12132:1 12138:1 12161:1 12172:1 12210:1 12228:1 12234:1 12245:1 12251:1 12260:1 12280:1 12289:2 12305:1 12328:1 12331:1 12355:1 12357:2 12397:1 12405:1 12415:1 12433:1 12437:1 12439:1 12440:1 12454:1 12471:1 12480:1 12481:1 12497:2 12519:1 12532:1 12537:1 12556:2 12557:1 12558:1 12566:3 12572:1 12577:1 12581:1 12585:3 12591:1 12610:1 12617:1 12642:1 12648:1 12678:1 12688:1 12709:1 12710:1 12712:1 12722:1 12723:1 12731:3 12747:1 12759:1 12769:1 12772:1 12779:1 12808:1 12809:1 12828:1 12836:1 12858:1 12877:1 12918:1 12938:1 12962:5 12970:1 12977:1 12978:2 12993:1 13019:1 13021:1 13028:1 13052:1 13056:2 13072:1 13106:1 13108:1 13121:1 13141:2 13143:1 13153:1 13156:1 13179:1 13200:3 13203:2 13207:6 13208:1 13212:1 13219:1 13231:2 13238:1 13240:1 13247:1 13250:1 13256:3 13266:1 13307:1 13358:2 13370:4 13383:1 13388:1 13402:1 13426:1 13446:1 13448:1 13481:1 13483:3 13485:2 13491:2 13506:1 13508:1 13516:1 13517:1 13538:1 13546:1 13556:1 13574:1 13583:1 13585:1 13586:1 13627:2 13628:1 13631:1 13642:1 13646:1 13655:1 13660:1 13662:3 13670:1 13672:1 13677:2 13682:1 13727:1 13753:1 13759:1 13769:1 13783:1 13789:3 13817:1 13826:1 13853:1 13866:6 13876:1 13899:4 13902:1 13904:2 13907:1 13912:3 13913:3 13915:1 13921:1 13926:2 13927:1 13934:1 13939:7 13942:2 13944:1 13947:1 13948:3 13950:1 13956:1 13959:1 13981:1 13983:2 13999:1 14051:1 14055:1 14059:1 14064:1 14090:1 14095:2 14100:1 14105:1 14112:1 14142:1 14148:1 14151:1 14172:1 14188:1 14205:1 14212:1 14228:1 14238:1 14258:1 14261:1 14271:2 14278:1 14279:1 14284:1 14286:1 14288:1 14293:1 14298:2 14311:1 14344:1 14346:1 14349:1 14361:1 14362:1 14363:2 14374:1 14383:1 14411:1 14429:1 14470:2 14472:1 14479:1 14527:2 14575:1 14603:1 14618:1 14625:1 14636:1 14637:2 14641:4 14651:3 14663:1 14664:1 14672:1 14687:1 14694:2 14698:1 14706:1 14739:2 14747:1 14756:1 14775:1 14779:1 14780:1 14781:1 14796:1 14811:7 14815:1 14828:2 14845:1 14846:1 14852:1 14858:1 14868:1 14884:1 14889:2 14895:1 14916:1 14933:2 14981:1 15003:1 15025:1 15040:2 15048:1 15069:1 15086:1 15096:1 15110:2 15130:1 15142:1 15156:2 15166:1 15171:9 15190:1 15195:1 15226:1 15232:1 15241:1 15249:1 15254:1 15256:1 15262:1 15265:1 15267:1 15268:1 15287:1 15305:1 15308:1 15311:1 15363:1 15396:1 15404:1 15452:2 15455:1 15457:2 15458:4 15461:1 15478:1 15490:1 15499:1 15511:3 15513:1 15516:1 15521:4 15532:4 15537:1 15545:2 15560:1 15572:1 15582:4 15584:1 15592:1 15598:6 15607:1 15608:2 15619:1 15635:2 15643:2 15651:1 15678:1 15679:1 15698:1 15703:1 15710:3 15721:1 15727:1 15730:1 15741:1 15753:1 15760:1 15764:1 15773:1 15774:1 15776:1 15797:1 15806:1 15820:1 15827:1 15865:1 15876:1 15878:1 15882:4 15886:4 15922:1 15936:1 15949:1 15962:1 15966:3 15983:1 15990:1 16019:1 16020:1 16023:1 16029:1 16057:1 16060:2 16067:1 16101:1 16109:1 16115:1 16125:1 16145:1 16147:1 16154:1 16157:2 16175:3 16181:1 16274:1 16299:1 16305:1 16314:1 16329:1 16333:2 16345:1 16369:1 16399:1 16425:1 16462:1 16475:1 16509:1 16535:3 16558:1 16560:1 16579:1 16583:1 16587:1 16591:1 16592:2 16630:1 16679:1 16693:1 16707:1 16746:2 16753:1 16756:2 16763:3 16766:1 16807:1 16820:1 16825:1 16826:1 16853:1 16875:1 16880:1 16886:2 16905:2 16915:1 16917:2 16919:1 16948:1 16957:1 16961:1 16962:1 16981:1 16983:1 16999:1 17000:1 17002:2 17003:1 17009:1 17021:1 17024:2 17029:1 17031:2 17034:2 17043:1 17050:1 17054:1 17058:1 17067:1 17071:1 17076:1 17097:2 17119:2 17120:2 17137:2 17139:1 17143:1 17169:1 17175:1 17202:3 17204:1 17207:1 17208:3 17250:1 17260:1 17282:1 17311:1 17317:2 17318:1 17319:1 17336:1 17340:1 17341:1 17383:1 17384:1 17399:3 17414:1 17418:1 17422:1 17427:2 17432:1 17434:4 17468:2 17470:1 17481:1 17533:1 17540:2 17565:1 17570:1 17582:1 17603:1 17604:1 17616:1 17637:1 17640:1 17667:1 17695:1 17718:1 17750:1 17781:4 17784:2 17791:1 17796:1 17826:1 17827:1 17835:1 17844:4 17878:1 17891:2 17894:1 17897:18 17902:2 17936:1 17947:3 17961:1 17967:1 17974:1 17978:1 18044:1 18053:1 18073:2 18080:1 18084:1 18106:1 18115:1 18117:2 18119:1 18141:1 18145:1 18189:1 18196:1 18219:1 18236:1 18255:5 18257:1 18258:1 18261:1 18270:1 18281:1 18282:1 18294:1 18295:1 18296:1 18303:1 18309:1 18311:1 18332:1 18367:1 18370:1 18392:1 18394:1 18401:1 18402:1 18404:1 18412:1 18415:1 18417:2 18426:1 18434:1 18435:1 18437:1 18460:1 18461:1 18463:1 18482:1 18489:1 18499:4 18521:1 18524:1 18550:1 18558:1 18562:2 18580:2 18582:1 18583:1 18608:1 18616:2 18645:1 18652:1 18656:2 18666:2 18670:4 18681:1 18687:1 18718:1 18728:1 18763:8 18785:2 18830:6 18835:1 18866:1 18881:1 18882:1 18899:1 18909:1 18916:2 18935:1 18942:1 18958:1 18996:1 19005:5 19015:1 19022:1 19060:1 19067:1 19082:1 19086:1 19134:1 19159:1 19176:3 19182:1 19188:1 19206:1 19208:1 19217:2 19221:2 19244:2 19263:1 19268:1 19280:1 19302:1 19324:1 19340:1 19346:1 19347:1 19361:2 19397:1 19426:1 19430:1 19435:1 19467:1 19484:1 19489:2 19490:1 19498:1 19542:1 19572:1 19584:3 19588:2 19615:1 19629:1 19633:1 19644:1 19654:1 19657:1 19663:2 19664:1 19669:1 19672:1 19674:1 19681:1 19706:1 19737:1 19760:1 19768:1 19772:4 19779:1 19784:1 19799:1 19828:1 19861:1
5 2:1 5:1 28:1 33:1 35:3 65:1 68:3 105:2 131:1 145:1 160:3 164:1 167:1 178:1 185:3 196:1 200:1 215:1 220:1 227:1 233:2 272:1 289:1 316:1 348:2 349:2 352:1 353:1 365:1 366:1 390:1 393:2 399:2 413:1 417:1 418:2 422:1 434:1 461:2 477:1 485:1 495:2 510:2 511:1 525:1 540:1 565:1 574:2 576:1 592:1 595:1 600:1 605:1 615:1 639:1 641:1 661:1 714:1 720:1 738:1 749:1 763:1 793:1 798:1 811:1 825:1 826:1 833:2 864:1 865:2 880:3 901:1 909:1 931:2 942:1 950:2 971:1 972:1 1007:1 1014:1 1015:1 1032:1 1045:1 1074:1 1083:1 1104:1 1108:1 1134:1 1138:1 1140:1 1145:1 1176:1 1177:1 1194:2 1213:3 1214:1 1232:2 1242:1 1252:1 1264:1 1274:3 1276:1 1279:2 1288:3 1310:3 1320:1 1323:1 1324:2 1328:2 1335:1 1336:1 1337:3 1340:2 1355:1 1357:2 1380:3 1388:1 1392:1 1408:1 1415:1 1421:1 1424:2 1427:3 1434:2 1463:5 1486:1 1494:1 1504:3 1512:1 1519:1 1576:1 1578:1 1622:1 1628:1 1635:1 1637:1 1643:1 1649:1 1650:1 1653:2 1654:3 1657:2 1658:1 1659:2 1666:1 1670:3 1675:2 1677:1 1680:1 1682:1 1683:1 1694:1 1714:1 1717:1 1723:2 1732:1 1735:1 1756:1 1759:1 1767:1 1777:1 1786:1 1859:1 1862:2 1884:1 1894:1 1901:1 1902:1 1910:1 1920:1 1952:1 1963:2 1968:1 1970:1 1975:1 1980:1 2012:1 2030:1 2035:1 2045:1 2050:1 2060:1 2066:1 2067:1 2068:1 2074:1 2078:2 2097:7 2108:1 2112:3 2123:1 2129:1 2138:1 2139:1 2178:1 2180:1 2185:1 2207:1 2230:1 2255:3 2280:1 2345:1 2356:1 2363:1 2384:1 2394:2 2405:1 2435:1 2450:1 2453:1 2471:6 2521:1 2541:1 2544:1 2623:1 2645:1 2647:1 2656:2 2695:1 2713:1 2716:1 2717:1 2742:1 2746:1 2748:1 2764:1 2791:1 2799:1 2801:1 2812:1 2815:2 2816:1 2823:6 2876:1 2882:1 2916:1 2917:1 2923:1 2929:1 2954:1 2955:1 2972:1 2975:1 2976:2 2977:2 2979:1 2982:1 2984:2 2992:3 3006:2 3007:2 3014:1 3015:1 3051:1 3062:1 3087:1 3137:1 3139:1 3143:1 3148:1 3153:1 3165:2 3169:1 3178:1 3179:1 3192:1 3196:1 3222:1 3237:1 3239:1 3243:1 3253:1 3258:2 3263:1 3287:1 3293:1 3323:1 3355:1 3365:1 3371:1 3429:3 3513:1 3516:2 3521:4 3532:1 3540:1 3547:1 3554:1 3580:1 3587:1 3590:1 3591:1 3594:3 3628:1 3650:1 3682:2 3692:2 3694:1 3695:2 3705:1 3708:1 3719:1 3745:1 3759:1 3765:1 3830:1 3838:1 3854:1 3855:12 3868:4 3876:1 3882:1 3899:1 3910:1 3914:7 3941:1 3956:1 3958:1 3961:1 3965:1 3977:3 4050:1 4052:2 4063:1 4103:1 4135:1 4142:1 4177:1 4185:1 4202:1 4210:2 4214:2 4228:1 4246:3 4256:1 4258:2 4259:1 4279:2 4282:3 4300:1 4310:1 4345:1 4387:1 4401:1 4419:5 4423:1 4430:1 4446:2 4455:1 4456:1 4462:1 4532:1 4558:1 4578:1 4591:1 4596:2 4598:2 4601:1 4602:4 4603:2 4609:1 4610:1 4613:1 4650:3 4656:1 4660:1 4671:2 4677:1 4696:1 4714:1 4721:1 4725:3 4726:1 4727:14 4735:1 4752:1 4761:1 4766:3 4777:1 4782:1 4800:1 4809:1 4822:2 4828:4 4836:1 4854:1 4885:1 4890:1 4896:5 4900:1 4901:1 4906:1 4909:1 4944:1 4952:1 4954:1 4983:1 5004:1 5017:1 5037:1 5039:1 5058:1 5076:1 5099:1 5110:1 5116:1 5121:2 5141:1 5145:1 5147:1 5153:1216 5155:1 5158:1 5168:1 5171:1 5195:1 5196:1 5212:3 5213:1 5230:1 5232:1 5250:1 5259:1 5288:1 5306:1 5311:1 5358:1 5380:1 5400:1 5404:1 5414:1 5426:1 5427:1 5433:1 5441:1 5444:2 5455:1 5487:1 5497:1 5562:1 5592:1 5612:1 5616:3 5658:1 5670:1 5683:4 5690:1 5695:1 5704:1 5741:1 5757:1 5776:1 5825:2 5830:1 5840:1 5861:1 5864:1 5867:1 5909:2 5921:1 5930:1 5931:1 5934:2 5959:1 5973:1 6010:1 6013:4 6016:2 6020:4 6026:1 6035:2 6053:1 6064:1 6069:1 6133:1 6135:1 6139:1 6142:1 6155:1 6189:1 6219:1 6240:1 6262:1 6281:1 6301:2 6311:1 6345:1 6375:1 6377:1 6387:1 6392:7 6395:1 6400:1 6405:2 6410:1 6434:1 6459:1 6460:1 6485:1 6533:1 6538:2 6551:1 6572:2 6581:1 6587:1 6594:5 6597:1 6602:1 6604:1 6605:1 6607:1 6608:1 6637:3 6649:1 6652:4 6658:1 6672:1 6690:1 6693:1 6743:1 6764:2 6797:1 6813:1 6828:6 6844:1 6845:2 6860:6 6883:12 6886:2 6892:1 6947:1 6959:1 6967:2 6974:2 6999:1 7021:2 7034:1 7043:1 7091:1 7114:1 7127:1 7134:3 7140:1 7145:1 7153:1 7169:1 7181:1 7192:1 7201:1 7232:4 7244:1 7247:40 7250:1 7263:1 7271:1 7280:1 7284:1 7291:3 7312:1 7353:1 7357:1 7361:1 7384:1 7387:4 7409:1 7420:1 7422:3 7442:1 7443:1 7444:6 7450:2 7453:1 7454:1 7457:1 7459:1 7473:1 7478:1 7494:1 7504:1 7525:1 7550:1 7556:1 7560:1 7563:1 7564:2 7572:1 7574:1 7577:1 7579:2 7582:2 7583:2 7584:1 7609:1 7642:1 7647:1 7652:1 7656:1 7668:1 7692:1 7700:1 7701:1 7707:1 7710:1 7711:1 7742:1 7770:1 7835:1 7841:1 7849:1 7874:1 7880:1 7900:1 7912:1 7913:1 7930:1 7940:1 7957:3 7988:1 7998:1 8009:1 8012:2 8013:3 8017:1 8023:2 8042:1 8055:1 8056:1 8057:1 8058:3 8065:1 8094:1 8098:1 8100:1 8105:1 8113:1 8137:1 8138:1 8152:1 8192:1 8194:1 8196:2 8199:1 8200:1 8211:1 8231:1 8245:1 8247:1 8248:1 8253:1 8263:1 8267:1 8272:1 8280:1 8296:1 8324:1 8333:1 8346:1 8347:1 8358:1 8360:1 8371:1 8387:3 8391:1 8399:1 8411:1 8414:1 8434:1 8437:1 8491:1 8496:1 8513:1 8520:2 8522:1 8533:2 8542:2 8552:2 8554:1 8556:1 8559:1 8573:1 8606:1 8616:2 8626:1 8648:1 8651:1 8732:1 8755:1 8772:1 8776:1 8779:1 8780:1 8785:1 8786:2 8794:1 8797:2 8809:3 8840:1 8843:1 8848:1 8872:1 8901:1 8923:1 8959:2 8971:2 8980:1 8994:1 8996:1 9006:3 9019:1 9025:1 9026:1 9051:1 9067:1 9072:1 9085:1 9090:1 9103:1 9122:2 9129:1 9165:1 9177:1 9180:1 9183:1 9189:1 9191:1 9228:1 9234:1 9237:1 9238:1 9251:4 9252:1 9260:9 9261:2 9268:1 9275:1 9295:3 9308:1 9329:1 9333:1 9337:1 9347:1 9357:1 9360:1 9370:1 9378:1 9380:1 9385:1 9388:1 9394:1 9404:1 9406:5 9429:1 9443:2 9444:1 9456:1 9461:1 9474:1 9478:1 9499:2 9508:2 9512:1 9522:1 9534:1 9548:3 9560:1 9569:1 9591:1 9594:5 9597:1 9605:2 9606:1 9612:1 9624:5 9625:1 9626:1 9627:1 9632:2 9641:2 9659:1 9683:2 9693:1 9704:2 9721:5 9759:1 9780:1 9788:1 9795:1 9798:2 9813:1 9817:1 9818:1 9822:1 9829:1 9842:1 9859:1 9865:3 9870:2 9879:2 9884:1 9888:1 9910:1 9916:1 9920:1 9924:2 9926:1 9940:1 9948:1 9952:1 9963:1 9980:1 10001:1 10010:1 10013:1 10044:2 10058:1 10059:1 10070:1 10092:1 10098:1 10105:3 10111:3 10115:1 10125:2 10129:6 10193:3 10200:2 10204:2 10212:1 10243:1 10263:1 10271:1 10272:3 10280:1 10286:1 10297:1 10298:1 10315:1 10318:1 10349:3 10356:1 10376:1 10377:1 10378:1 10398:2 10399:2 10409:3 10442:3 10459:15 10463:1 10468:1 10479:14 10484:5 10485:1 10551:1 10554:3 10567:1 10573:2 10595:1 10632:1 10639:2 10640:1 10642:1 10649:1 10654:1 10685:1 10720:1 10721:4 10725:1 10740:1 10742:1 10749:1 10756:6 10764:1 10769:1 10790:1 10797:1 10820:2 10824:1 10865:2 10877:1 10892:1 10922:1 10925:1 10930:1 10948:1 10968:1 10972:1 10978:1 10990:1 10996:1 11017:1 11032:2 11046:2 11058:21 11081:1 11085:1 11099:1 11117:1 11123:1 11126:1 11140:1 11159:1 11164:1 11175:1 11180:1 11195:1 11197:1 11200:8 11272:1 11273:1 11276:1 11280:1 11289:1 11310:2 11311:1 11321:1 11326:1 11330:1 11362:1 11376:1 11403:3 11405:2 11415:1 11416:2 11417:1 11420:3 11439:1 11446:3 11448:1 11457:1 11458:1 11459:1 11473:1 11496:1 11520:1 11523:1 11559:1 11563:2 11565:1 11568:2 11573:3 11607:1 11608:1 11623:1 11634:1 11637:1 11639:1 11641:3 11646:1 11649:1 11652:1 11654:1 11656:3 11658:2 11664:1 11667:1 11668:1 11678:1 11679:2 11687:1 11702:2 11715:1 11730:3 11732:1 11736:3 11765:1 11770:1 11773:1 11800:1 11831:3 11835:1 11842:1 11864:1 11866:1 11877:2 11888:1 11895:1 11898:1 11914:1 11921:1 11937:1 11951:1 11958:1 11978:1 11980:1 12000:1 12026:1 12043:1 12052:4 12055:1 12063:1 12116:1 12132:1 12138:1 12161:1 12172:1 12210:1 12228:1 12234:1 12245:1 12251:1 12260:1 12280:1 12289:2 12305:1 12328:1 12331:1 12355:1 12357:2 12397:1 12405:1 12415:1 12433:1 12437:1 12439:1 12440:1 12454:1 12471:1 12480:1 12481:1 12497:2 12519:1 12532:1 12537:1 12556:2 12557:1 12558:1 12566:3 12572:1 12577:1 12581:1 12585:3 12591:1 12610:1 12617:1 12642:1 12648:1 12678:1 12688:1 12709:1 12710:1 12712:1 12722:1 12723:1 12728:1 12731:3 12747:1 12759:1 12769:1 12772:1 12779:1 12808:1 12809:1 12828:1 12836:1 12858:1 12877:1 12918:1 12938:1 12962:5 12970:1 12977:1 12978:2 12993:1 13019:1 13021:1 13028:1 13052:1 13056:2 13072:1 13106:1 13108:1 13121:1 13136:1 13141:2 13143:1 13153:1 13156:1 13179:1 13200:3 13203:2 13207:6 13208:1 13212:1 13219:1 13231:2 13238:1 13240:1 13247:1 13250:1 13256:3 13266:1 13307:1 13358:2 13370:4 13383:1 13388:1 13402:1 13426:2 13446:1 13448:1 13481:1 13483:3 13485:2 13491:2 13506:1 13508:1 13516:1 13517:1 13538:1 13546:1 13556:1 13574:1 13583:1 13585:1 13586:1 13627:2 13628:2 13631:1 13642:1 13646:1 13655:1 13660:1 13662:3 13670:1 13672:1 13677:2 13682:1 13727:1 13735:1 13753:1 13759:1 13769:1 13783:1 13789:3 13817:1 13826:1 13853:1 13866:6 13876:1 13899:4 13902:1 13904:2 13907:1 13912:3 13913:4 13915:1 13921:1 13926:2 13927:1 13934:1 13939:7 13942:2 13944:1 13947:1 13948:3 13950:1 13956:1 13959:1 13981:1 13983:2 13999:1 14051:1 14055:1 14059:1 14064:1 14090:1 14095:2 14100:1 14105:1 14112:1 14142:1 14148:1 14151:1 14172:1 14188:1 14205:1 14212:1 14228:1 14238:1 14258:1 14261:1 14271:2 14278:1 14279:1 14284:1 14286:1 14288:1 14293:1 14298:2 14311:1 14344:1 14346:2 14349:1 14361:1 14362:1 14363:2 14374:1 14383:1 14411:1 14429:1 14470:2 14472:1 14479:1 14527:2 14575:1 14603:1 14618:1 14625:1 14636:1 14637:2 14641:4 14651:3 14663:1 14664:1 14672:1 14687:1 14694:2 14698:1 14706:1 14739:2 14747:1 14756:1 14775:1 14779:1 14780:1 14781:1 14796:1 14811:7 14815:1 14828:2 14845:1 14846:1 14852:1 14858:1 14868:1 14884:1 14889:2 14895:1 14916:1 14933:2 14981:1 15003:1 15025:1 15040:2 15048:1 15069:1 15086:1 15096:1 15110:2 15130:1 15142:1 15156:2 15166:1 15171:9 15190:1 15195:1 15226:1 15232:1 15241:1 15249:1 15254:1 15256:1 15262:1 15265:1 15267:1 15268:1 15287:1 15305:1 15308:1 15311:1 15363:1 15396:1 15404:1 15452:2 15455:1 15457:2 15458:4 15461:1 15478:1 15490:1 15499:1 15511:3 15513:1 15516:1 15521:4 15532:4 15537:1 15545:2 15560:1 15572:1 15582:4 15584:1 15592:1 15598:6 15607:1 15608:2 15619:1 15635:2 15643:2 15651:1 15678:1 15679:1 15698:1 15703:1 15710:3 15721:1 15727:1 15730:1 15741:1 15753:1 15760:1 15764:1 15773:1 15774:1 15776:1 15797:2 15806:1 15820:1 15827:1 15865:1 15876:1 15878:1 15882:5 15886:4 15922:1 15936:1 15949:1 15962:1 15966:3 15983:1 15990:1 16019:1 16020:1 16023:1 16029:1 16057:1 16060:2 16067:1 16101:1 16109:1 16115:1 16125:1 16145:1 16147:1 16154:1 16157:2 16175:3 16181:1 16274:1 16299:1 16305:1 16314:1 16329:1 16333:2 16345:1 16364:1 16369:1 16399:1 16425:1 16462:1 16475:1 16509:1 16535:3 16558:1 16560:1 16579:1 16583:1 16587:1 16591:1 16592:2 16630:1 16679:1 16693:1 16707:1 16746:2 16753:1 16756:2 16763:3 16766:1 16807:1 16820:1 16825:1 16826:1 16853:1 16875:1 16880:1 16886:2 16900:1 16905:2 16915:1 16917:2 16919:1 16948:1 16957:1 16961:1 16962:2 16981:1 16983:1 16999:1 17000:1 17002:2 17003:1 17009:1 17021:1 17024:2 17029:1 17031:2 17034:2 17043:1 17050:1 17054:1 17058:1 17060:1 17067:1 17071:1 17076:1 17097:2 17119:2 17120:2 17137:2 17139:1 17143:1 17164:1 17169:1 17175:1 17202:3 17204:1 17207:1 17208:3 17250:1 17260:1 17282:1 17304:1 17311:1 17317:2 17318:1 17319:1 17336:1 17340:1 17341:1 17383:1 17384:1 17399:3 17414:1 17418:1 17422:1 17427:2 17432:1 17434:4 17468:2 17470:1 17481:1 17533:1 17540:2 17565:1 17570:1 17582:1 17603:1 17604:2 17616:1 17637:1 17640:1 17667:1 17695:1 17718:1 17750:1 17781:4 17784:2 17791:1 17796:1 17826:1 17827:1 17835:1 17844:4 17878:1 17891:2 17894:1 17897:20 17902:2 17936:1 17947:3 17961:1 17967:1 17974:1 17978:1 18044:1 18053:1 18073:2 18080:2 18084:1 18106:1 18115:1 18117:2 18119:1 18141:1 18145:1 18189:1 18196:1 18219:1 18236:1 18255:5 18257:1 18258:1 18261:1 18270:1 18281:1 18282:1 18294:1 18295:1 18296:1 18303:1 18309:1 18311:1 18332:1 18367:1 18370:1 18392:1 18394:1 18401:1 18402:1 18404:1 18412:1 18415:1 18417:2 18426:1 18434:1 18435:1 18437:1 18460:1 18461:1 18463:1 18482:1 18489:1 18499:4 18521:1 18524:1 18550:1 18558:1 18562:2 18580:2 18582:1 18583:1 18608:1 18616:3 18645:1 18652:1 18656:2 18666:2 18670:4 18681:1 18687:1 18718:1 18728:1 18763:9 18785:2 18830:6 18835:1 18866:1 18881:1 18882:1 18899:1 18909:1 18916:2 18935:1 18942:1 18958:1 18996:1 19005:5 19015:1 19022:1 19060:1 19067:1 19082:1 19086:1 19134:1 19159:1 19176:3 19182:1 19188:1 19206:1 19208:1 19212:1 19217:2 19221:2 19244:2 19263:1 19268:1 19280:1 19302:1 19324:1 19340:1 19346:1 19347:1 19361:2 19397:1 19426:2 19430:1 19435:1 19467:1 19484:1 19489:2 19490:1 19498:1 19542:1 19572:1 19584:3 19588:2 19615:1 19629:1 19633:1 19644:1 19654:1 19657:1 19663:2 19664:1 19669:1 19672:1 19674:1 19681:1 19706:1 19737:1 19760:1 19768:1 19772:4 19779:1 19784:1 19799:1 19828:1 19861:1
5 2:1 5:1 28:1 33:1 35:3 65:1 68:3 105:3 131:1 145:1 160:3 164:1 167:1 178:1 185:3 196:1 200:1 215:1 220:1 227:1 233:2 272:1 289:1 316:1 348:2 349:2 352:1 353:1 365:1 366:1 390:1 393:2 399:2 413:1 417:1 418:2 422:1 434:1 461:2 477:1 485:1 495:2 510:2 511:1 525:1 530:1 540:1 565:1 574:3 576:1 592:1 595:1 600:1 605:1 615:1 639:1 641:1 661:2 714:1 720:1 738:1 749:1 763:1 793:1 798:1 811:1 825:1 826:1 833:2 864:1 865:2 880:4 901:1 909:1 931:2 942:1 950:2 971:1 972:1 980:1 1007:1 1014:1 1015:1 1017:1 1032:1 1045:1 1074:1 1083:1 1104:1 1108:1 1134:1 1138:1 1140:1 1145:1 1176:1 1177:1 1194:2 1213:3 1214:1 1232:2 1242:1 1252:1 1264:1 1274:3 1276:1 1279:2 1288:3 1310:3 1320:1 1323:1 1324:2 1328:2 1335:1 1336:1 1337:3 1340:2 1355:1 1357:2 1380:3 1388:2 1392:1 1408:1 1415:1 1421:1 1424:2 1427:3 1434:2 1463:6 1486:1 1494:1 1504:3 1512:1 1519:1 1576:1 1578:1 1622:1 1628:1 1635:1 1637:1 1643:1 1649:1 1650:1 1653:2 1654:3 1657:2 1658:1 1659:2 1666:1 1670:3 1675:2 1677:1 1680:1 1682:1 1683:1 1694:1 1714:1 1717:1 1721:1 1723:2 1732:1 1735:1 1756:1 1759:1 1766:1 1767:1 1777:1 1786:1 1859:1 1862:2 1884:1 1894:1 1901:1 1902:1 1910:1 1920:1 1952:2 1963:2 1968:1 1970:1 1975:1 1980:1 2012:1 2030:1 2035:1 2045:1 2050:1 2060:1 2066:1 2067:1 2068:1 2074:1 2078:2 2097:7 2108:1 2112:4 2123:1 2129:1 2138:1 2139:1 2178:1 2180:1 2185:1 2207:1 2230:1 2255:3 2280:1 2345:1 2356:1 2363:1 2383:1 2384:1 2394:2 2405:1 2435:1 2450:1 2453:1 2471:7 2521:1 2541:1 2544:1 2623:1 2645:1 2647:1 2656:2 2661:1 2674:1 2695:1 2699:1 2713:1 2716:1 2717:1 2723:1 2735:1 2742:1 2746:1 2748:1 2753:1 2764:1 2791:1 2799:1 2801:1 2812:1 2815:2 2816:1 2823:6 2876:1 2882:1 2916:1 2917:1 2923:1 2929:1 2954:1 2955:1 2972:1 2973:1 2975:1 2976:2 2977:2 2979:1 2982:1 2984:2 2992:3 3006:2 3007:2 3011:1 3014:1 3015:1 3051:1 3062:1 3087:1 3102:1 3137:1 3139:1 3143:1 3148:1 3153:1 3165:2 3169:1 3178:1 3179:1 3190:1 3192:1 3196:1 3222:1 3237:1 3239:1 3243:1 3253:1 3258:2 3263:1 3287:1 3293:1 3323:1 3355:1 3365:1 3371:1 3429:3 3467:1 3513:2 3516:2 3521:4 3532:1 3540:1 3547:1 3554:1 3580:1 3587:1 3590:1 3591:2 3594:3 3619:1 3628:1 3650:1 3682:2 3692:2 3693:1 3694:1 3695:2 3705:1 3708:1 3719:1 3745:1 3759:1 3765:1 3830:1 3838:1 3854:1 3855:13 3868:4 3876:1 3882:1 3899:1 3910:1 3914:8 3941:1 3956:1 3958:1 3961:1 3965:1 3977:3 4050:1 4052:2 4063:1 4103:1 4135:1 4142:1 4177:1 4185:1 4202:1 4210:2 4214:2 4228:1 4246:3 4256:1 4258:2 4259:1 4279:2 4282:3 4300:1 4310:1 4345:1 4387:1 4401:1 4419:5 4423:1 4430:1 4446:3 4455:2 4456:1 4462:1 4532:1 4558:1 4578:1 4591:2 4596:2 4598:2 4601:1 4602:4 4603:2 4609:1 4610:1 4613:1 4650:3 4656:1 4660:1 4671:2 4677:1 4696:1 4714:1 4721:1 4725:3 4726:1 4727:14 4735:1 4739:1 4744:1 4752:1 4761:1 4766:3 4777:1 4782:1 4800:1 4809:1 4822:2 4828:5 4836:1 4844:1 4854:1 4885:1 4890:1 4896:5 4900:1 4901:1 4906:1 4909:1 4944:1 4952:2 4954:1 4983:1 5004:1 5012:1 5017:1 5037:1 5039:1 5058:1 5076:1 5099:1 5110:1 5116:1 5121:2 5125:1 5141:1 5145:1 5147:1 5153:1261 5155:1 5158:1 5168:1 5171:1 5195:1 5196:1 5212:3 5213:1 5230:1 5232:1 5237:1 5250:1 5259:1 5288:1 5306:1 5311:1 5358:1 5380:1 5400:1 5404:2 5414:1 5426:1 5427:1 5433:1 5441:1 5444:2 5455:1 5487:1 5497:1 5562:1 5592:1 5612:1 5616:3 5619:1 5658:1 5670:1 5683:4 5690:1 5695:1 5704:1 5741:1 5757:1 5776:1 5825:2 5830:1 5840:1 5861:1 5864:1 5867:1 5909:2 5921:1 5930:1 5931:1 5934:2 5959:1 5973:1 6010:1 6013:4 6016:2 6020:5 6026:1 6035:2 6053:1 6064:1 6069:1 6133:1 6135:1 6139:1 6142:1 6155:1 6189:1 6219:1 6240:1 6262:1 6281:1 6301:2 6311:1 6345:1 6375:1 6377:1 6387:1 6392:7 6395:1 6400:1 6405:2 6410:1 6434:1 6459:1 6460:1 6485:1 6533:1 6536:1 6538:2 6551:1 6572:2 6581:1 6587:1 6594:5 6597:1 6602:1 6604:1 6605:1 6607:1 6608:1 6637:3 6649:1 6652:5 6658:1 6672:1 6690:1 6693:1 6743:1 6764:2 6797:1 6813:1 6828:6 6844:1 6845:2 6860:7 6877:1 6883:14 6886:2 6892:1 6947:1 6959:1 6967:2 6974:2 6990:1 6999:1 7021:3 7034:1 7043:1 7091:1 7114:1 7127:1 7134:3 7140:1 7145:1 7153:1 7169:1 7181:1 7192:1 7201:1 7232:4 7244:1 7247:41 7250:1 7263:1 7271:1 7280:1 7284:1 7291:3 7312:1 7353:1 7357:1 7361:1 7384:1 7387:4 7409:1 7420:1 7422:4 7442:1 7443:1 7444:7 7450:2 7453:1 7454:1 7457:1 7459:1 7473:1 7478:1 7494:1 7504:1 7525:1 7550:1 7556:1 7558:1 7560:1 7563:1 7564:2 7572:1 7574:1 7577:1 7579:2 7582:2 7583:3 7584:1 7609:1 7642:1 7647:1 7652:1 7656:1 7668:1 7692:1 7700:1 7701:1 7707:1 7710:1 7711:1 7731:1 7742:1 7770:1 7808:1 7835:1 7841:1 7843:1 7849:1 7874:1 7880:1 7900:1 7912:1 7913:1 7930:1 7940:1 7957:3 7988:1 7998:1 8009:1 8012:2 8013:3 8017:1 8023:2 8042:1 8055:1 8056:1 8057:1 8058:3 8065:1 8094:1 8098:1 8100:1 8105:1 8113:1 8137:1 8138:1 8152:1 8192:1 8194:1 8196:2 8199:1 8200:1 8211:1 8231:1 8245:1 8247:1 8248:1 8253:1 8263:1 8267:1 8272:1 8280:1 8296:1 8324:1 8333:1 8346:1 8347:1 8358:1 8360:1 8371:1 8382:1 8387:4 8390:1 8391:1 8399:1 8411:1 8414:1 8431:1 8434:1 8437:1 8491:1 8496:1 8513:1 8520:2 8522:1 8533:2 8542:2 8552:3 8554:1 8556:1 8559:1 8573:1 8576:1 8606:1 8616:2 8626:1 8648:1 8651:1 8732:1 8755:1 8772:1 8776:1 8779:1 8780:1 8785:1 8786:2 8794:1 8797:2 8809:3 8840:1 8843:1 8848:1 8872:1 8901:1 8923:1 8959:2 8971:2 8980:1 8986:1 8994:1 8996:1 9006:3 9019:1 9025:1 9026:1 9051:1 9067:1 9072:1 9085:1 9090:1 9100:1 9103:1 9122:2 9129:1 9165:1 9177:1 9180:1 9183:1 9189:1 9191:1 9228:1 9234:1 9237:1 9238:1 9251:4 9252:1 9260:9 9261:2 9268:1 9275:1 9283:1 9295:3 9308:1 9329:1 9333:1 9337:1 9347:1 9357:1 9360:2 9370:1 9378:1 9380:1 9385:1 9388:1 9394:1 9404:1 9406:5 9429:1 9443:2 9444:2 9456:1 9461:1 9474:1 9478:1 9499:2 9508:2 9512:1 9522:1 9534:1 9548:3 9560:1 9569:1 9591:1 9594:5 9597:1 9605:2 9606:1 9612:1 9624:6 9625:1 9626:1 9627:1 9632:2 9641:2 9659:1 9683:2 9693:1 9704:2 9721:5 9759:1 9780:1 9788:1 9795:1 9798:2 9813:1 9817:1 9818:1 9822:1 9829:1 9842:1 9859:1 9865:3 9870:2 9879:2 9884:1 9888:1 9910:2 9916:1 9920:1 9924:2 9926:1 9940:1 9948:1 9952:1 9963:1 9980:1 10001:1 10010:1 10013:1 10044:2 10058:1 10059:1 10070:1 10092:1 10098:1 10105:3 10111:3 10115:1 10125:2 10129:7 10193:3 10200:2 10204:2 10212:1 10243:1 10262:1 10263:1 10271:1 10272:3 10280:1 10286:1 10297:1 10298:1 10315:1 10318:1 10349:4 10356:1 10376:1 10377:1 10378:1 10398:2 10399:2 10409:3 10442:3 10459:17 10463:1 10468:1 10479:15 10484:6 10485:1 10551:1 10554:3 10567:1 10573:2 10595:1 10632:1 10639:2 10640:1 10642:1 10649:1 10654:1 10685:1 10720:1 10721:4 10725:1 10740:1 10742:1 10749:1 10756:7 10764:1 10769:1 10790:1 10797:1 10820:2 10824:1 10865:2 10877:1 10892:1 10922:1 10925:1 10930:1 10948:1 10968:1 10972:1 10978:1 10990:1 10996:1 11013:1 11017:1 11032:2 11046:2 11055:1 11058:21 11081:1 11085:1 11099:1 11117:1 11123:1 11126:1 11132:1 11140:1 11159:1 11164:1 11175:1 11180:1 11195:1 11197:1 11200:8 11272:1 11273:1 11276:1 11280:1 11289:1 11310:2 11311:1 11321:1 11326:1 11330:1 11362:1 11376:1 11403:3 11405:2 11415:1 11416:2 11417:1 11420:3 11439:1 11446:3 11448:1 11457:1 11458:1 11459:1 11473:1 11496:1 11520:1 11523:1 11559:1 11563:2 11565:1 11568:2 11573:3 11607:1 11608:1 11623:1 11634:1 11637:1 11639:1 11641:3 11646:1 11649:1 11652:1 11654:1 11656:3 11658:2 11664:1 11667:1 11668:1 11678:1 11679:2 11687:1 11702:3 11715:1 11730:3 11732:1 11736:3 11765:1 11770:1 11773:1 11782:1 11800:1 11831:3 11835:1 11842:1 11864:1 11866:1 11877:2 11881:1 11888:1 11895:1 11898:1 11914:1 11921:1 11937:1 11951:1 11958:1 11978:1 11980:1 12000:1 12026:1 12043:1 12052:4 12055:1 12063:1 12116:1 12132:1 12138:1 12161:1 12172:1 12210:1 12228:1 12234:1 12245:1 12251:1 12260:2 12280:1 12289:2 12305:1 12328:1 12331:1 12355:1 12357:2 12397:1 12405:1 12415:1 12433:1 12437:1 12439:1 12440:1 12454:1 12471:1 12480:1 12481:1 12497:2 12519:1 12532:1 12537:1 12556:2 12557:1 12558:1 12566:3 12572:1 12577:2 12581:1 12585:3 12591:1 12610:1 12617:1 12642:1 12648:1 12678:1 12688:1 12709:1 12710:1 12712:1 12722:1 12723:1 12728:1 12731:3 12747:1 12759:1 12769:1 12772:1 12779:1 12808:1 12809:1 12828:2 12836:1 12858:1 12877:1 12918:1 12938:1 12962:5 12970:1 12977:1 12978:2 12993:1 13019:1 13021:1 13028:1 13052:1 13056:2 13072:1 13102:1 13106:1 13108:1 13121:1 13136:1 13141:2 13143:1 13153:1 13156:1 13179:1 13200:3 13203:2 13207:6 13208:1 13212:1 13219:1 13231:2 13238:1 13240:1 13247:1 13250:1 13256:3 13266:1 13307:1 13358:2 13370:4 13383:1 13388:1 13402:1 13426:2 13446:1 13448:2 13481:1 13483:3 13485:2 13491:2 13506:1 13508:1 13516:1 13517:1 13538:1 13546:1 13556:1 13574:1 13583:1 13585:1 13586:1 13627:2 13628:2 13631:1 13642:1 13646:1 13652:1 13655:1 13660:1 13662:3 13670:1 13672:1 13677:2 13682:1 13727:1 13735:1 13753:1 13759:1 13769:1 13783:1 13789:4 13817:1 13826:1 13853:1 13866:6 13876:1 13899:4 13902:1 13904:2 13907:1 13912:3 13913:4 13915:1 13918:1 13921:1 13926:2 13927:1 13934:2 13939:7 13942:2 13944:1 13947:1 13948:3 13950:1 13956:1 13959:1 13981:1 13983:2 13999:1 14051:1 14055:1 14059:1 14064:1 14090:1 14095:2 14100:1 14105:1 14112:2 14142:1 14148:1 14151:1 14172:1 14188:1 14205:1 14212:1 14228:1 14238:1 14258:1 14261:1 14271:2 14278:1 14279:1 14284:1 14286:1 14288:1 14293:1 14298:2 14311:1 14344:1 14346:2 14349:1 14361:1 14362:1 14363:2 14374:1 14383:1 14411:1 14429:1 14470:2 14472:1 14479:1 14527:2 14532:1 14575:1 14603:1 14618:1 14625:1 14636:1 14637:2 14641:4 14651:3 14663:1 14664:1 14672:1 14687:1 14694:2 14698:1 14706:1 14739:2 14747:1 14756:1 14775:1 14779:1 14780:1 14781:1 14796:1 14811:7 14815:1 14828:2 14845:1 14846:1 14852:1 14858:1 14868:1 14884:1 14889:2 14895:1 14916:1 14933:2 14981:1 15003:1 15025:1 15040:2 15048:1 15069:1 15086:1 15096:1 15110:2 15130:1 15139:1 15142:1 15156:2 15166:1 15171:9 15190:1 15195:1 15226:1 15232:2 15241:1 15249:2 15254:1 15256:1 15262:1 15265:1 15267:2 15268:1 15287:1 15305:1 15308:1 15311:1 15363:1 15396:1 15404:1 15452:2 15455:1 15457:2 15458:4 15461:1 15478:1 15490:1 15499:1 15511:3 15513:1 15516:1 15521:4 15532:4 15537:1 15545:2 15560:1 15572:1 15582:5 15584:1 15592:1 15596:1 15598:7 15607:1 15608:2 15619:1 15635:2 15643:2 15651:1 15678:1 15679:1 15698:1 15703:1 15710:3 15721:2 15727:1 15730:1 15741:1 15753:1 15760:1 15764:1 15773:1 15774:1 15776:1 15797:2 15806:1 15820:1 15827:1 15865:1 15876:1 15878:1 15882:5 15886:4 15922:1 15936:1 15949:1 15962:1 15966:3 15983:1 15990:1 16019:1 16020:1 16023:1 16029:1 16032:1 16057:1 16060:2 16067:1 16101:1 16109:1 16115:1 16122:1 16123:1 16125:1 16145:1 16147:1 16154:1 16157:2 16175:3 16181:1 16274:1 16299:1 16305:1 16314:1 16329:1 16333:2 16345:1 16364:1 16369:2 16399:1 16425:1 16462:1 16475:1 16509:1 16535:3 16558:1 16560:1 16579:1 16583:1 16587:1 16591:1 16592:2 16630:1 16652:1 16679:1 16693:1 16707:1 16746:2 16753:1 16756:2 16763:3 16766:1 16807:1 16820:1 16825:1 16826:1 16827:1 16853:1 16875:1 16880:1 16886:2 16900:1 16905:2 16915:1 16917:2 16919:1 16922:1 16948:1 16957:1 16961:1 16962:2 16981:1 16983:1 16999:1 17000:1 17002:2 17003:1 17009:1 17021:1 17024:2 17029:1 17031:2 17034:2 17043:1 17050:1 17054:1 17058:1 17060:1 17067:1 17071:2 17076:1 17097:2 17119:2 17120:2 17137:2 17139:2 17143:1 17164:1 17169:1 17175:1 17202:3 17204:1 17207:1 17208:3 17250:1 17260:1 17282:1 17304:1 17311:1 17317:2 17318:1 17319:1 17336:1 17340:1 17341:1 17383:1 17384:1 17399:3 17404:1 17414:1 17418:1 17422:1 17427:2 17432:1 17434:4 17468:2 17470:1 17481:1 17533:1 17540:2 17565:1 17570:1 17582:1 17603:1 17604:2 17616:1 17637:1 17640:1 17667:1 17695:1 17718:1 17750:1 17781:4 17784:2 17791:1 17796:1 17826:1 17827:1 17835:1 17844:4 17878:1 17891:2 17894:1 17897:21 17902:2 17936:1 17947:3 17961:1 17967:1 17974:1 17978:1 18044:1 18053:1 18073:2 18080:2 18084:1 18106:1 18115:1 18117:2 18119:1 18141:1 18145:1 18189:1 18196:1 18219:1 18236:1 18255:5 18257:1 18258:1 18261:1 18270:2 18281:1 18282:1 18294:1 18295:1 18296:1 18303:1 18309:1 18311:1 18332:1 18367:1 18370:1 18392:1 18394:1 18401:1 18402:1 18404:1 18412:1 18415:1 18417:2 18426:1 18434:1 18435:1 18437:1 18460:1 18461:1 18463:1 18482:1 18489:1 18499:4 18521:1 18524:1 18550:1 18558:1 18562:2 18580:2 18582:1 18583:1 18608:1 18616:3 18645:2 18652:1 18656:3 18666:2 18670:4 18681:1 18687:1 18718:1 18728:1 18763:9 18785:2 18830:6 18835:1 18866:1 18881:1 18882:1 18899:1 18909:1 18916:2 18935:1 18942:1 18958:2 18996:1 19005:5 19015:1 19022:1 19060:1 19067:1 19082:1 19086:1 19134:1 19159:1 19176:3 19182:1 19188:1 19206:1 19208:1 19212:1 19217:2 19221:2 19244:2 19263:1 19268:1 19280:1 19302:1 19324:1 19340:1 19346:1 19347:1 19361:2 19397:1 19426:2 19430:1 19435:1 19467:1 19484:1 19489:2 19490:1 19495:1 19498:1 19542:1 19572:1 19584:3 19588:2 19615:1 19629:1 19633:1 19644:1 19654:1 19657:1 19663:2 19664:1 19669:1 19672:1 19674:1 19681:1 19706:1 19737:1 19760:1 19768:1 19772:5 19779:1 19784:1 19799:1 19828:1 19857:1 19861:1
5 2:1 5:1 28:1 33:1 35:3 65:1 68:3 105:3 131:1 145:1 160:3 164:1 167:1 178:1 185:3 196:1 200:1 215:1 220:1 227:1 233:2 272:1 289:1 316:1 348:2 349:2 352:1 353:1 365:1 366:1 390:1 393:2 399:2 413:1 417:1 418:2 422:1 434:1 461:2 477:1 485:1 495:2 510:2 511:1 525:1 530:1 540:1 559:1 565:1 574:3 576:1 592:1 595:1 600:1 605:1 615:1 639:1 641:1 661:2 714:1 720:1 738:1 749:1 763:1 793:1 798:1 811:1 825:1 826:1 833:2 864:1 865:2 880:4 901:1 909:1 931:2 942:1 950:2 971:1 972:1 980:1 1007:1 1014:1 1015:1 1017:1 1032:1 1045:1 1074:1 1083:1 1104:1 1108:1 1134:1 1138:1 1140:1 1145:1 1176:1 1177:1 1194:2 1213:3 1214:1 1232:2 1242:1 1252:1 1264:1 1274:3 1276:1 1279:2 1288:3 1310:3 1320:1 1323:1 1324:2 1328:2 1335:1 1336:1 1337:3 1340:2 1355:1 1357:2 1380:3 1388:2 1392:1 1408:1 1415:1 1421:1 1424:2 1427:3 1434:3 1463:6 1486:1 1494:1 1504:4 1512:1 1519:1 1576:1 1578:1 1622:1 1628:1 1635:1 1637:1 1643:1 1649:1 1650:1 1653:2 1654:3 1657:2 1658:1 1659:2 1666:1 1670:3 1675:2 1677:1 1680:1 1682:1 1683:1 1694:1 1714:1 1717:1 1721:1 1723:2 1732:1 1735:1 1756:1 1759:1 1766:1 1767:1 1777:1 1786:1 1859:1 1862:2 1884:1 1894:1 1901:1 1902:1 1910:2 1920:1 1952:2 1963:2 1968:1 1970:1 1975:1 1980:1 2012:1 2030:1 2035:1 2045:1 2050:1 2060:1 2066:1 2067:1 2068:1 2074:1 2078:2 2097:7 2108:1 2112:4 2123:1 2129:1 2138:1 2139:1 2178:1 2180:1 2185:1 2207:1 2230:1 2255:3 2280:1 2345:1 2356:1 2363:1 2383:1 2384:1 2394:2 2405:1 2435:1 2450:1 2453:1 2471:7 2521:1 2541:1 2544:1 2623:1 2645:1 2647:1 2656:2 2661:1 2674:1 2695:1 2699:1 2713:1 2716:1 2717:1 2723:1 2735:1 2742:1 2746:1 2748:1 2753:1 2764:1 2791:1 2799:1 2801:1 2812:1 2815:2 2816:1 2823:6 2876:1 2882:1 2916:1 2917:2 2923:1 2929:1 2954:1 2955:1 2972:1 2973:1 2975:1 2976:2 2977:2 2979:1 2982:1 2984:2 2992:3 3006:2 3007:2 3011:1 3014:1 3015:1 3051:1 3062:1 3087:1 3102:1 3137:1 3139:1 3143:1 3148:1 3153:1 3165:2 3169:1 3178:1 3179:1 3190:1 3192:1 3196:1 3222:1 3237:1 3239:1 3243:1 3253:1 3258:2 3263:1 3287:1 3293:1 3323:1 3355:1 3365:2 3371:1 3429:3 3467:1 3513:2 3516:2 3521:4 3532:1 3540:1 3547:1 3554:1 3580:1 3587:1 3590:1 3591:2 3594:3 3619:1 3628:1 3650:1 3668:1 3682:2 3692:2 3693:1 3694:1 3695:2 3705:1 3708:1 3719:1 3745:1 3759:1 3765:1 3830:1 3838:1 3854:1 3855:13 3866:1 3868:4 3876:1 3882:1 3899:1 3910:1 3914:9 3941:1 3956:1 3958:1 3961:1 3965:1 3977:3 4050:1 4052:2 4063:1 4103:1 4115:1 4135:1 4142:1 4177:1 4185:1 4202:1 4210:2 4214:2 4228:1 4246:3 4256:1 4258:2 4259:1 4279:2 4282:4 4300:1 4310:1 4345:1 4362:1 4380:1 4387:1 4401:1 4419:5 4423:1 4430:1 4446:3 4455:2 4456:1 4462:1 4532:1 4558:1 4578:1 4591:2 4596:2 4598:2 4601:1 4602:5 4603:2 4609:1 4610:1 4613:1 4650:3 4656:1 4660:1 4671:2 4677:1 4696:1 4714:1 4721:1 4725:3 4726:1 4727:14 4735:1 4739:1 4744:1 4752:1 4761:1 4766:3 4777:1 4782:1 4800:1 4809:1 4822:2 4828:5 4836:1 4844:1 4854:1 4885:1 4890:1 4896:5 4900:1 4901:1 4906:1 4909:1 4944:1 4952:2 4954:1 4983:1 5004:1 5012:1 5017:1 5037:1 5039:1 5058:1 5076:1 5099:1 5110:1 5116:1 5121:2 5125:1 5141:1 5145:1 5147:1 5153:1295 5155:1 5158:1 5168:1 5171:1 5195:1 5196:1 5212:3 5213:1 5230:1 5232:1 5237:1 5250:1 5259:1 5288:1 5306:1 5311:1 5358:1 5380:1 5400:1 5404:2 5414:1 5426:1 5427:1 5433:1 5441:1 5444:2 5455:1 5487:1 5497:1 5562:1 5592:1 5612:1 5616:3 5619:1 5658:1 5670:1 5683:5 5690:1 5695:1 5704:1 5741:1 5757:1 5776:1 5825:2 5830:1 5840:1 5861:1 5864:1 5867:1 5909:2 5921:1 5930:2 5931:1 5934:2 5959:1 5973:1 6010:1 6013:4 6016:2 6020:5 6026:1 6035:2 6053:1 6064:1 6069:1 6133:1 6135:1 6139:1 6142:1 6155:1 6189:1 6219:1 6240:1 6262:1 6281:1 6301:2 6311:1 6345:1 6375:1 6377:1 6387:1 6392:8 6395:1 6400:1 6405:2 6410:1 6434:1 6459:1 6460:1 6485:1 6533:1 6536:1 6538:2 6551:1 6572:2 6581:1 6587:1 6594:5 6597:1 6602:1 6604:1 6605:1 6607:1 6608:1 6637:3 6649:1 6652:5 6658:1 6672:1 6690:1 6693:1 6743:1 6764:2 6797:1 6813:1 6828:6 6844:1 6845:2 6860:7 6877:1 6883:15 6886:2 6892:1 6947:1 6959:1 6967:2 6974:2 6990:1 6999:1 7021:3 7034:1 7043:1 7072:1 7091:1 7114:1 7127:1 7134:3 7140:1 7145:1 7153:1 7169:1 7181:1 7192:1 7201:1 7232:4 7244:1 7247:42 7250:1 7263:1 7271:1 7280:1 7284:1 7291:3 7312:1 7353:1 7357:1 7361:1 7384:1 7387:4 7409:1 7420:1 7422:4 7442:1 7443:1 7444:7 7450:2 7453:1 7454:1 7457:1 7459:1 7473:1 7478:1 7494:1 7504:1 7525:2 7550:1 7556:1 7558:1 7560:1 7563:1 7564:2 7572:1 7574:1 7577:1 7579:2 7582:2 7583:3 7584:1 7609:1 7642:1 7647:1 7652:1 7656:1 7668:1 7692:1 7700:1 7701:1 7707:1 7710:1 7711:1 7731:1 7742:1 7770:1 7808:1 7835:1 7841:1 7843:1 7849:1 7874:1 7880:1 7900:1 7912:1 7913:1 7930:1 7940:1 7957:3 7988:1 7998:1 8009:1 8012:2 8013:3 8017:1 8023:2 8042:1 8055:1 8056:1 8057:1 8058:3 8065:1 8094:1 8098:1 8100:1 8105:1 8113:1 8137:1 8138:1 8152:1 8192:1 8194:1 8196:2 8199:1 8200:1 8211:1 8231:1 8245:1 8247:1 8248:1 8253:1 8263:1 8267:1 8272:1 8280:1 8296:1 8324:1 8333:1 8339:1 8346:1 8347:1 8358:1 8360:1 8371:1 8382:1 8387:4 8390:1 8391:1 8399:1 8411:1 8414:1 8431:1 8434:1 8437:1 8491:1 8496:1 8513:1 8520:2 8522:1 8532:1 8533:2 8542:2 8552:3 8554:1 8556:1 8559:1 8573:1 8576:1 8606:1 8616:2 8626:2 8648:1 8651:1 8732:1 8755:1 8772:1 8776:1 8779:1 8780:1 8785:1 8786:2 8794:1 8797:2 8809:3 8840:1 8843:1 8848:1 8872:1 8901:1 8923:1 8926:1 8959:2 8971:2 8980:1 8986:1 8994:1 8996:1 9006:3 9019:1 9025:2 9026:1 9051:1 9067:1 9072:1 9085:1 9090:1 9100:1 9103:1 9122:2 9129:1 9165:1 9177:1 9180:1 9183:1 9189:1 9191:1 9228:1 9234:1 9237:1 9238:1 9251:4 9252:1 9260:9 9261:2 9268:1 9275:1 9283:1 9295:3 9308:1 9329:1 9333:1 9337:1 9347:1 9357:1 9360:2 9370:1 9378:1 9380:1 9385:1 9388:1 9394:1 9404:1 9406:5 9429:1 9443:2 9444:2 9456:1 9461:1 9474:1 9478:1 9499:2 9508:2 9512:1 9522:1 9534:1 9548:3 9560:1 9569:1 9591:1 9594:5 9597:1 9605:2 9606:1 9612:1 9624:6 9625:1 9626:1 9627:1 9632:2 9641:2 9659:1 9683:2 9693:1 9704:2 9721:5 9759:1 9780:1 9788:1 9795:1 9798:2 9813:1 9817:1 9818:1 9822:1 9829:1 9842:1 9859:1 9865:3 9870:2 9879:2 9884:1 9888:1 9910:2 9916:1 9920:1 9924:2 9926:1 9940:1 9948:1 9952:1 9963:1 9980:1 10001:1 10010:1 10013:1 10044:2 10058:1 10059:1 10070:1 10092:1 10098:1 10105:3 10111:3 10115:1 10125:2 10129:7 10193:3 10200:2 10204:3 10212:1 10243:1 10262:1 10263:1 10271:1 10272:3 10280:1 10286:1 10297:1 10298:1 10315:1 10318:1 10349:4 10356:1 10376:1 10377:1 10378:1 10398:2 10399:2 10409:3 10442:3 10459:17 10463:1 10468:1 10479:15 10484:7 10485:1 10551:1 10554:3 10567:1 10573:2 10595:1 10632:1 10639:2 10640:1 10642:1 10649:1 10654:1 10685:2 10720:1 10721:4 10725:1 10740:1 10742:1 10749:1 10756:7 10764:1 10769:1 10790:1 10797:1 10820:2 10824:1 10865:2 10877:1 10892:1 10922:1 10925:1 10930:1 10948:1 10968:1 10972:1 10978:1 10990:1 10996:1 11013:1 11017:1 11032:2 11046:2 11055:1 11058:21 11081:1 11085:1 11099:1 11117:1 11123:1 11126:1 11132:1 11140:1 11159:1 11164:1 11175:1 11180:1 11195:1 11197:1 11200:8 11272:1 11273:1 11276:1 11280:1 11289:1 11310:2 11311:1 11321:1 11326:1 11330:1 11362:1 11376:2 11403:3 11405:2 11415:1 11416:2 11417:1 11420:3 11439:1 11446:3 11448:1 11457:1 11458:1 11459:1 11473:1 11496:1 11520:1 11523:1 11559:1 11563:2 11565:1 11568:2 11573:3 11607:1 11608:1 11623:1 11634:1 11637:1 11639:1 11641:3 11646:1 11649:1 11652:1 11654:1 11656:3 11658:2 11664:1 11667:1 11668:1 11678:1 11679:2 11687:1 11702:3 11715:1 11730:3 11732:1 11736:3 11765:1 11770:1 11773:1 11782:1 11800:1 11831:3 11835:1 11842:1 11864:1 11866:1 11877:2 11881:1 11888:1 11895:1 11898:1 11914:1 11921:1 11937:1 11951:1 11958:1 11978:1 11980:1 12000:1 12026:1 12043:1 12052:4 12055:1 12063:1 12116:1 12132:1 12138:1 12161:1 12172:1 12210:1 12228:1 12234:1 12245:1 12251:1 12260:2 12280:2 12289:2 12305:1 12328:1 12331:1 12355:1 12357:2 12397:1 12405:1 12415:1 12433:1 12437:1 12439:1 12440:1 12454:1 12471:1 12480:1 12481:1 12497:2 12519:1 12532:1 12537:1 12556:2 12557:1 12558:1 12566:3 12572:1 12577:2 12581:1 12585:3 12591:1 12610:1 12617:1 12642:1 12648:1 12678:1 12688:1 12709:1 12710:1 12712:1 12722:1 12723:1 12728:1 12731:3 12747:1 12759:1 12769:1 12772:1 12779:1 12808:1 12809:1 12828:2 12836:1 12858:1 12877:1 12918:2 12938:1 12962:5 12970:1 12977:1 12978:2 12993:1 13019:1 13021:1 13028:1 13052:1 13056:2 13072:1 13102:1 13106:1 13108:1 13121:1 13136:1 13141:2 13143:1 13153:1 13156:1 13179:1 13200:3 13203:3 13207:6 13208:1 13212:1 13219:1 13231:2 13238:1 13240:1 13247:1 13250:1 13256:3 13266:1 13307:1 13358:2 13370:4 13383:1 13388:1 13402:1 13426:2 13446:1 13448:2 13481:1 13483:3 13485:2 13491:2 13506:1 13508:1 13516:1 13517:1 13538:1 13546:1 13556:1 13574:1 13583:1 13585:1 13586:1 13627:2 13628:2 13631:1 13642:1 13646:1 13652:1 13655:1 13660:1 13662:3 13670:1 13672:1 13677:2 13682:1 13727:1 13735:1 13753:1 13759:1 13769:1 13783:1 13789:5 13817:1 13826:1 13853:1 13866:6 13876:1 13899:4 13902:1 13904:2 13907:1 13912:3 13913:5 13915:1 13918:1 13921:1 13926:2 13927:1 13934:2 13939:7 13942:2 13944:1 13947:1 13948:3 13950:1 13956:1 13959:1 13981:1 13983:2 13999:1 14051:1 14055:1 14059:1 14064:1 14090:1 14095:2 14100:1 14105:1 14112:2 14142:1 14148:1 14151:1 14172:1 14188:1 14205:1 14212:1 14228:1 14238:1 14258:1 14261:1 14271:2 14278:1 14279:1 14284:1 14286:1 14288:1 14293:1 14298:2 14311:1 14344:1 14346:2 14349:1 14361:1 14362:1 14363:2 14374:1 14383:1 14411:1 14429:1 14470:2 14472:1 14479:1 14527:2 14532:1 14575:1 14599:1 14603:1 14618:1 14625:1 14636:1 14637:2 14641:4 14651:3 14663:1 14664:1 14672:1 14687:1 14694:2 14698:1 14706:1 14739:2 14747:1 14756:1 14775:1 14779:1 14780:1 14781:1 14796:1 14811:7 14815:1 14828:2 14845:1 14846:1 14852:1 14858:1 14868:1 14884:1 14889:2 14895:1 14916:1 14933:2 14981:1 15003:1 15025:2 15040:2 15048:1 15069:1 15086:1 15096:1 15110:2 15130:1 15139:1 15142:1 15156:2 15166:1 15171:9 15190:1 15195:1 15226:1 15232:2 15241:1 15249:2 15254:1 15256:1 15262:1 15265:1 15267:2 15268:1 15287:1 15305:1 15308:1 15311:1 15363:1 15396:1 15404:1 15452:2 15455:1 15457:2 15458:5 15461:1 15478:1 15490:1 15499:1 15511:3 15513:1 15516:1 15521:4 15532:4 15537:1 15545:2 15560:1 15572:2 15582:5 15584:1 15592:1 15596:1 15598:8 15607:1 15608:2 15619:1 15635:2 15643:2 15651:1 15678:2 15679:1 15698:1 15703:1 15710:3 15721:2 15727:1 15730:1 15741:1 15753:1 15760:1 15764:1 15773:1 15774:1 15776:1 15797:2 15806:1 15820:1 15827:1 15865:1 15876:1 15878:1 15882:5 15886:4 15922:1 15936:1 15949:1 15962:1 15966:3 15983:1 15990:1 16019:1 16020:1 16023:1 16029:1 16032:1 16057:1 16060:2 16067:1 16101:1 16109:1 16115:1 16122:1 16123:1 16125:1 16145:1 16147:1 16154:1 16157:2 16175:3 16181:1 16274:1 16299:1 16305:1 16314:1 16329:2 16333:2 16345:1 16364:1 16369:2 16399:1 16425:1 16462:1 16475:1 16509:1 16535:3 16558:1 16560:1 16579:1 16583:1 16587:1 16591:1 16592:2 16630:1 16652:1 16679:1 16693:1 16707:1 16746:2 16753:1 16756:2 16763:3 16766:1 16807:1 16820:1 16825:1 16826:1 16827:1 16853:1 16875:1 16880:1 16886:2 16900:1 16905:2 16915:1 16917:2 16919:1 16922:1 16948:1 16957:1 16961:1 16962:2 16981:1 16983:1 16999:1 17000:1 17002:2 17003:1 17009:1 17021:1 17024:2 17029:1 17031:2 17034:2 17043:1 17050:1 17054:1 17058:1 17060:1 17067:1 17071:2 17076:1 17097:2 17119:2 17120:2 17137:2 17139:2 17143:2 17164:1 17169:1 17175:1 17202:3 17204:1 17207:1 17208:3 17250:1 17260:1 17282:1 17304:1 17311:1 17317:2 17318:1 17319:1 17336:1 17340:1 17341:1 17383:1 17384:1 17399:3 17404:1 17414:1 17418:1 17422:1 17427:2 17432:1 17434:4 17468:2 17470:1 17481:1 17533:1 17540:2 17565:1 17570:1 17582:1 17603:1 17604:2 17616:1 17637:1 17640:1 17667:1 17695:1 17718:1 17750:1 17781:4 17784:2 17791:1 17796:1 17826:1 17827:1 17835:1 17844:4 17878:1 17891:2 17894:1 17897:21 17902:2 17936:1 17947:3 17961:1 17967:1 17974:1 17978:1 18044:1 18053:1 18073:2 18080:2 18084:1 18106:1 18115:1 18117:2 18119:1 18141:1 18145:1 18189:1 18196:1 18219:1 18236:1 18255:5 18257:1 18258:1 18261:1 18270:2 18281:1 18282:1 18294:1 18295:1 18296:1 18303:1 18309:1 18311:1 18332:1 18367:1 18370:1 18392:1 18394:1 18401:1 18402:1 18404:1 18412:1 18415:2 18417:2 18426:1 18434:1 18435:1 18437:1 18460:1 18461:1 18463:1 18482:1 18489:2 18499:4 18521:1 18524:1 18550:1 18558:1 18562:2 18580:2 18582:1 18583:1 18608:1 18616:3 18645:2 18652:1 18656:3 18666:2 18670:4 18681:1 18687:1 18718:1 18728:1 18763:9 18785:2 18830:6 18835:1 18866:1 18881:1 18882:1 18899:1 18909:1 18916:2 18935:1 18942:1 18958:2 18996:1 19005:5 19015:1 19022:1 19060:1 19067:1 19082:1 19086:1 19134:1 19159:1 19176:3 19182:1 19188:1 19206:1 19208:1 19212:1 19217:2 19221:2 19244:2 19263:1 19268:1 19280:1 19302:1 19324:1 19340:1 19346:1 19347:1 19361:2 19397:1 19426:2 19430:1 19435:1 19467:1 19484:1 19489:2 19490:1 19495:1 19498:1 19542:1 19572:1 19584:3 19588:2 19602:1 19615:1 19629:1 19633:1 19644:1 19654:1 19657:1 19663:2 19664:1 19669:1 19672:1 19674:1 19681:1 19706:1 19737:1 19760:1 19768:1 19772:5 19779:1 19784:1 19799:1 19828:1 19857:1 19861:1
5 2:1 5:1 28:1 33:1 35:3 65:1 68:3 105:3 131:1 145:1 160:3 164:1 167:1 178:1 185:3 196:1 200:1 215:1 220:1 221:1 227:1 233:2 246:2 272:1 278:1 289:1 316:1 348:2 349:2 352:1 353:1 365:1 366:1 390:1 393:2 399:2 413:1 417:1 418:2 422:1 434:1 461:2 477:1 480:1 485:1 495:2 510:2 511:1 525:1 530:1 540:1 547:1 559:1 565:1 574:3 576:1 592:1 595:1 600:1 605:1 615:1 639:1 641:1 661:2 699:1 714:1 720:1 738:1 749:1 763:1 793:1 798:1 811:1 825:1 826:2 833:2 864:1 865:2 880:5 901:1 909:1 931:2 942:1 950:2 971:2 972:1 980:1 1007:1 1014:1 1015:1 1017:1 1032:1 1045:1 1074:1 1083:1 1104:1 1108:2 1134:1 1138:1 1140:1 1145:1 1176:1 1177:1 1194:2 1213:3 1214:1 1232:2 1242:1 1252:1 1264:1 1274:3 1276:1 1279:2 1288:3 1310:3 1320:1 1323:1 1324:2 1328:2 1335:1 1336:1 1337:3 1340:2 1355:1 1357:2 1380:4 1388:2 1392:1 1408:1 1415:1 1421:1 1424:2 1427:3 1434:3 1463:6 1486:1 1494:1 1498:1 1504:4 1512:1 1519:1 1576:1 1578:1 1622:1 1628:1 1635:1 1637:1 1643:1 1649:1 1650:1 1653:2 1654:3 1657:2 1658:1 1659:2 1666:1 1670:3 1675:2 1677:2 1680:1 1682:1 1683:1 1694:1 1714:1 1717:1 1721:1 1723:2 1732:1 1735:1 1756:2 1759:1 1766:1 1767:1 1777:1 1786:1 1859:1 1862:2 1881:1 1884:1 1894:1 1901:1 1902:1 1910:2 1920:1 1952:2 1963:2 1968:1 1970:1 1975:1 1980:1 2012:1 2030:1 2035:1 2045:1 2050:1 2060:1 2066:1 2067:1 2068:1 2074:1 2078:2 2097:7 2108:1 2112:4 2123:1 2129:1 2133:1 2138:1 2139:2 2178:1 2180:1 2185:1 2195:1 2207:1 2230:1 2255:4 2280:1 2345:1 2356:1 2363:1 2374:1 2383:1 2384:1 2394:2 2405:1 2435:1 2450:1 2453:1 2471:9 2521:1 2541:1 2544:1 2623:1 2645:1 2647:1 2656:2 2661:1 2674:1 2695:1 2699:1 2713:1 2716:1 2717:1 2723:1 2735:1 2742:1 2746:1 2748:1 2753:1 2764:1 2791:1 2799:1 2801:1 2812:1 2815:2 2816:1 2823:6 2876:1 2882:1 2916:1 2917:2 2923:1 2929:1 2947:1 2954:1 2955:1 2972:1 2973:1 2975:1 2976:2 2977:2 2979:1 2982:1 2984:2 2992:3 3006:2 3007:2 3011:1 3014:1 3015:1 3051:1 3062:1 3087:1 3102:1 3137:1 3139:1 3143:1 3148:1 3153:1 3165:2 3169:1 3178:1 3179:1 3190:1 3192:1 3196:1 3222:1 3237:1 3239:1 3243:1 3253:1 3258:2 3263:1 3287:1 3293:1 3323:1 3355:1 3365:2 3371:1 3429:3 3467:1 3513:2 3516:3 3521:4 3532:1 3540:1 3547:1 3554:1 3580:1 3587:1 3590:1 3591:2 3594:3 3619:1 3628:1 3650:1 3668:1 3682:2 3692:2 3693:1 3694:1 3695:2 3705:1 3708:1 3719:1 3745:1 3759:1 3765:1 3778:1 3830:1 3838:1 3854:1 3855:13 3866:1 3868:4 3876:1 3882:1 3899:1 3910:1 3914:11 3941:1 3956:1 3958:1 3961:1 3965:1 3977:3 4050:1 4052:2 4063:1 4103:1 4115:1 4135:1 4142:1 4177:1 4185:1 4202:1 4210:2 4214:2 4228:1 4246:3 4256:1 4258:2 4259:1 4279:2 4282:4 4300:1 4310:1 4345:1 4362:1 4380:1 4387:1 4401:1 4419:5 4423:1 4430:1 4446:3 4455:2 4456:1 4462:1 4532:1 4558:1 4578:1 4591:3 4596:2 4598:2 4601:1 4602:6 4603:2 4607:1 4609:1 4610:1 4613:1 4633:1 4650:3 4656:1 4660:1 4671:2 4677:1 4696:1 4714:1 4721:1 4725:3 4726:1 4727:14 4735:1 4739:1 4744:1 4752:1 4761:1 4766:3 4777:1 4782:1 4800:1 4809:1 4822:2 4828:5 4836:1 4844:1 4854:1 4885:1 4890:1 4896:5 4900:1 4901:1 4906:1 4909:1 4944:1 4952:2 4954:1 4983:1 5004:1 5012:1 5017:1 5037:1 5039:1 5058:1 5076:1 5079:1 5099:1 5110:1 5116:1 5121:2 5125:1 5141:1 5145:1 5147:1 5153:1335 5155:1 5158:1 5168:1 5171:1 5187:1 5195:1 5196:1 5212:3 5213:1 5230:1 5232:1 5237:1 5250:1 5259:1 5288:1 5306:1 5311:2 5334:1 5358:1 5380:1 5400:1 5404:2 5414:1 5426:1 5427:1 5433:1 5441:1 5444:2 5455:1 5487:1 5497:1 5562:1 5592:1 5612:1 5616:3 5619:1 5658:1 5670:2 5683:5 5690:1 5695:1 5704:1 5741:1 5757:1 5776:1 5825:2 5830:1 5840:1 5861:1 5864:1 5867:1 5909:2 5921:1 5930:2 5931:1 5934:2 5959:1 5973:1 6010:1 6013:4 6016:2 6020:6 6026:1 6035:2 6053:1 6064:1 6069:1 6118:1 6133:1 6135:1 6139:1 6142:1 6155:1 6189:1 6219:1 6240:1 6262:1 6281:1 6301:2 6311:1 6345:1 6375:1 6377:1 6387:1 6392:8 6395:1 6400:1 6405:2 6410:1 6434:1 6459:1 6460:1 6485:1 6533:1 6536:1 6538:3 6551:1 6572:2 6581:2 6587:1 6594:5 6597:1 6602:1 6604:1 6605:1 6607:1 6608:1 6637:3 6649:1 6652:6 6658:1 6672:1 6690:1 6693:1 6743:1 6764:2 6797:1 6813:1 6828:6 6844:1 6845:2 6860:9 6877:1 6883:15 6886:2 6892:1 6947:1 6959:1 6967:2 6974:2 6990:1 6999:1 7007:1 7021:3 7034:1 7037:1 7043:1 7072:1 7091:1 7114:1 7127:1 7134:3 7140:1 7145:1 7153:1 7155:1 7169:1 7181:1 7192:1 7198:1 7201:1 7232:4 7244:1 7247:45 7250:1 7263:1 7271:1 7280:1 7284:1 7291:3 7312:1 7353:1 7357:1 7361:1 7384:1 7387:4 7409:1 7420:1 7422:5 7442:1 7443:1 7444:9 7450:2 7453:1 7454:1 7457:1 7459:1 7473:1 7478:1 7494:1 7504:1 7525:2 7550:1 7556:1 7558:1 7560:1 7563:1 7564:2 7572:1 7574:1 7577:1 7579:2 7582:2 7583:3 7584:1 7609:1 7642:1 7647:1 7652:1 7656:1 7668:1 7692:1 7700:1 7701:1 7707:1 7710:1 7711:1 7731:1 7742:1 7770:1 7808:1 7835:1 7841:1 7843:1 7849:1 7874:1 7880:1 7900:1 7912:1 7913:1 7930:1 7940:1 7957:3 7988:1 7998:1 8009:1 8012:2 8013:3 8017:1 8023:2 8042:1 8050:1 8055:1 8056:2 8057:1 8058:3 8065:1 8094:1 8098:1 8100:1 8105:1 8113:1 8116:1 8135:1 8137:1 8138:2 8152:1 8167:1 8192:1 8194:1 8196:2 8199:1 8200:1 8211:1 8231:1 8245:1 8247:1 8248:1 8253:1 8263:1 8267:1 8272:1 8280:1 8296:1 8324:1 8333:1 8339:1 8346:1 8347:1 8358:1 8360:1 8371:1 8382:1 8387:5 8390:1 8391:1 8399:1 8411:1 8414:1 8431:1 8434:1 8437:1 8491:1 8496:1 8513:1 8520:2 8522:1 8532:1 8533:2 8542:2 8552:3 8554:1 8556:1 8559:1 8573:1 8576:1 8606:1 8616:2 8626:2 8648:1 8651:1 8732:1 8755:1 8772:1 8776:1 8779:1 8780:2 8785:1 8786:2 8794:1 8797:2 8809:3 8840:1 8843:1 8848:1 8859:1 8872:1 8901:1 8923:1 8926:1 8959:2 8971:2 8980:1 8986:1 8994:1 8996:1 9006:3 9019:1 9025:2 9026:1 9051:1 9067:1 9072:1 9084:1 9085:1 9090:1 9100:1 9103:1 9117:1 9122:2 9129:1 9165:1 9177:1 9180:1 9183:1 9189:1 9191:1 9228:1 9234:1 9237:1 9238:1 9251:4 9252:1 9260:10 9261:2 9268:1 9275:1 9283:1 9295:3 9308:1 9309:1 9329:1 9333:1 9337:1 9347:1 9357:1 9360:2 9370:1 9378:1 9380:1 9385:1 9388:1 9394:1 9404:1 9406:5 9429:1 9443:2 9444:4 9456:1 9461:1 9474:1 9478:1 9499:2 9508:2 9512:1 9522:1 9534:1 9548:3 9560:1 9569:1 9591:1 9594:5 9597:1 9605:2 9606:1 9612:1 9624:7 9625:1 9626:1 9627:1 9632:2 9641:2 9659:1 9683:2 9693:1 9704:2 9721:5 9759:1 9780:1 9788:1 9795:1 9798:2 9813:1 9817:1 9818:1 9822:1 9829:1 9842:1 9859:1 9865:3 9870:2 9879:2 9884:1 9886:1 9888:1 9910:2 9916:1 9920:1 9924:2 9926:1 9940:1 9948:1 9952:1 9963:1 9980:1 10001:1 10010:1 10013:1 10044:2 10058:1 10059:2 10070:1 10075:1 10092:1 10098:1 10105:3 10111:3 10115:1 10125:2 10129:7 10193:3 10200:2 10204:3 10212:1 10223:1 10243:1 10262:1 10263:2 10271:1 10272:3 10280:1 10286:1 10297:1 10298:1 10315:1 10318:1 10335:1 10349:4 10356:1 10376:1 10377:1 10378:1 10398:2 10399:2 10409:3 10442:3 10459:17 10463:1 10468:1 10479:15 10484:8 10485:1 10551:1 10554:3 10567:1 10570:1 10573:3 10595:1 10632:1 10639:2 10640:1 10642:1 10649:1 10654:1 10685:2 10720:1 10721:4 10725:1 10740:1 10742:1 10749:1 10756:9 10764:1 10769:1 10790:1 10797:1 10820:2 10824:1 10865:2 10877:1 10892:1 10922:1 10925:1 10930:1 10948:1 10957:1 10968:1 10972:1 10978:1 10982:1 10990:1 10996:1 11013:1 11017:1 11032:2 11046:2 11055:1 11058:22 11081:1 11085:1 11099:1 11117:1 11123:1 11126:1 11132:1 11140:1 11159:1 11164:1 11175:1 11180:1 11195:1 11197:2 11200:8 11272:1 11273:1 11276:1 11280:1 11289:1 11310:2 11311:1 11319:1 11321:1 11326:1 11330:1 11362:2 11376:2 11403:3 11405:2 11408:1 11415:1 11416:2 11417:1 11420:3 11433:1 11439:1 11446:3 11448:1 11456:1 11457:1 11458:1 11459:1 11473:2 11496:1 11520:1 11523:1 11559:1 11563:2 11565:1 11568:2 11573:3 11607:1 11608:1 11623:1 11634:1 11637:1 11639:1 11641:3 11646:1 11649:1 11652:1 11654:1 11656:3 11658:2 11664:1 11667:1 11668:1 11678:1 11679:2 11687:1 11702:3 11715:1 11730:5 11732:1 11736:3 11765:1 11770:1 11773:1 11782:1 11800:1 11831:3 11835:1 11842:1 11864:1 11866:1 11877:2 11881:1 11888:1 11895:1 11898:1 11914:1 11921:1 11937:1 11951:1 11958:1 11978:1 11980:1 12000:1 12026:1 12037:1 12043:1 12052:4 12055:1 12063:1 12116:1 12132:1 12138:1 12161:1 12172:1 12210:1 12228:1 12234:1 12245:1 12251:1 12260:2 12274:1 12280:2 12289:2 12305:1 12328:1 12331:1 12355:1 12357:3 12397:1 12405:1 12415:1 12433:1 12437:1 12439:1 12440:1 12454:1 12471:1 12480:1 12481:1 12497:2 12519:1 12532:1 12537:1 12556:2 12557:1 12558:1 12566:3 12572:1 12577:2 12578:1 12581:2 12585:3 12591:1 12610:1 12617:1 12642:1 12648:1 12678:1 12688:1 12709:1 12710:1 12712:1 12722:1 12723:1 12728:1 12731:3 12747:1 12759:1 12769:1 12772:1 12779:1 12808:1 12809:1 12828:2 12836:1 12858:1 12877:1 12918:2 12938:1 12962:5 12970:1 12977:1 12978:2 12993:1 13019:1 13021:1 13028:1 13052:1 13056:2 13058:1 13072:1 13102:1 13106:1 13108:1 13121:1 13136:1 13141:2 13143:1 13153:1 13156:1 13179:1 13200:3 13203:3 13207:6 13208:1 13212:1 13219:1 13231:2 13238:1 13240:1 13247:1 13250:1 13256:3 13266:1 13269:1 13307:1 13358:2 13370:4 13383:1 13388:1 13402:1 13426:2 13446:1 13448:2 13481:1 13483:3 13485:2 13491:2 13506:1 13508:1 13516:1 13517:1 13538:1 13546:1 13556:1 13574:1 13583:1 13585:1 13586:1 13627:2 13628:2 13631:1 13642:1 13646:1 13652:1 13655:1 13660:1 13662:3 13670:1 13672:1 13677:2 13682:1 13727:1 13735:1 13753:1 13759:1 13769:1 13783:1 13789:5 13817:1 13826:1 13853:1 13866:6 13876:1 13899:4 13902:1 13904:2 13907:1 13912:3 13913:5 13915:1 13918:1 13921:1 13926:2 13927:1 13934:2 13939:7 13942:2 13944:1 13947:1 13948:3 13950:1 13956:1 13959:1 13981:1 13983:2 13999:1 14049:1 14051:2 14055:1 14059:1 14064:1 14090:1 14095:2 14100:1 14105:1 14112:2 14142:1 14148:1 14151:1 14172:1 14188:1 14205:1 14212:2 14228:1 14238:1 14258:1 14261:1 14271:2 14278:1 14279:1 14284:1 14286:1 14288:1 14293:1 14298:2 14311:1 14344:1 14346:2 14349:1 14353:1 14361:1 14362:1 14363:2 14374:1 14383:1 14411:1 14429:1 14470:2 14472:1 14479:1 14527:2 14532:1 14575:1 14599:1 14603:1 14618:1 14625:1 14636:1 14637:2 14641:4 14651:3 14663:1 14664:1 14672:1 14687:1 14694:2 14698:1 14701:1 14706:1 14739:2 14747:1 14756:1 14775:1 14779:1 14780:1 14781:1 14796:1 14811:7 14815:1 14828:3 14845:1 14846:1 14852:1 14858:1 14868:1 14884:1 14889:2 14895:1 14916:1 14933:2 14981:1 15003:1 15025:2 15040:2 15048:1 15069:1 15086:1 15096:1 15110:2 15130:1 15139:1 15142:1 15156:2 15166:1 15171:9 15190:1 15195:1 15226:1 15232:4 15241:1 15249:2 15254:1 15256:1 15262:1 15265:1 15267:2 15268:1 15287:1 15305:1 15308:1 15311:1 15363:1 15396:1 15404:1 15452:2 15455:1 15457:3 15458:5 15461:1 15478:1 15490:1 15493:1 15499:1 15511:3 15513:1 15516:1 15521:4 15532:4 15537:1 15545:2 15560:1 15572:2 15582:5 15584:1 15592:1 15596:1 15598:9 15607:1 15608:2 15619:1 15635:2 15643:2 15651:1 15678:2 15679:1 15698:1 15703:1 15710:3 15721:3 15727:1 15730:1 15741:1 15753:1 15760:1 15764:1 15773:1 15774:1 15776:1 15797:2 15806:1 15820:1 15827:1 15865:1 15876:1 15878:1 15882:5 15886:4 15922:1 15936:1 15949:1 15960:1 15962:1 15965:1 15966:3 15983:2 15990:1 16019:1 16020:1 16023:1 16029:1 16032:1 16057:1 16060:2 16067:1 16101:1 16109:1 16115:1 16122:1 16123:1 16125:1 16145:1 16147:1 16154:1 16157:2 16175:3 16181:1 16274:1 16299:1 16305:1 16314:1 16329:2 16333:2 16345:1 16364:1 16369:2 16399:1 16408:1 16425:1 16462:1 16475:1 16509:1 16535:3 16558:1 16560:1 16579:1 16583:1 16587:1 16591:1 16592:2 16630:1 16652:1 16662:1 16668:1 16679:1 16693:1 16707:1 16746:2 16753:1 16756:2 16763:3 16766:1 16776:1 16807:1 16820:1 16825:1 16826:1 16827:1 16853:1 16875:1 16880:1 16886:2 16900:1 16905:2 16915:1 16917:2 16919:1 16922:1 16948:1 16957:1 16961:1 16962:2 16978:1 16981:1 16983:1 16999:1 17000:1 17002:2 17003:1 17009:1 17021:2 17024:2 17029:1 17031:2 17034:2 17043:1 17050:1 17054:1 17058:1 17060:1 17067:1 17071:2 17076:1 17097:3 17119:2 17120:2 17137:2 17139:2 17143:2 17164:1 17169:1 17175:1 17202:3 17204:1 17207:1 17208:3 17250:1 17260:1 17282:1 17304:1 17311:1 17317:2 17318:1 17319:1 17336:1 17340:1 17341:1 17345:1 17349:1 17382:1 17383:1 17384:1 17399:4 17404:1 17414:1 17418:1 17422:1 17427:2 17432:1 17434:4 17468:2 17470:1 17481:1 17533:1 17540:2 17565:1 17570:1 17582:1 17603:1 17604:2 17616:1 17637:1 17640:1 17667:1 17695:1 17718:1 17750:1 17781:4 17784:2 17791:1 17796:1 17826:1 17827:1 17835:1 17844:4 17873:1 17878:1 17891:2 17894:1 17897:23 17902:2 17936:1 17947:3 17961:1 17967:1 17974:1 17978:1 18044:2 18053:1 18073:2 18080:2 18084:1 18106:1 18115:1 18117:2 18119:1 18141:1 18145:1 18189:1 18196:1 18219:1 18232:1 18236:1 18255:5 18257:1 18258:1 18261:1 18270:2 18281:1 18282:1 18294:1 18295:1 18296:1 18303:1 18309:1 18311:1 18332:1 18367:1 18370:1 18392:1 18394:1 18401:1 18402:1 18404:1 18412:1 18415:2 18417:2 18426:1 18434:1 18435:1 18437:1 18460:1 18461:1 18463:1 18482:1 18489:2 18499:4 18521:1 18524:1 18550:1 18558:1 18562:2 18580:2 18582:1 18583:1 18608:1 18616:3 18628:1 18645:2 18652:1 18656:3 18666:2 18670:4 18681:1 18687:1 18718:1 18728:1 18763:10 18785:2 18830:6 18835:1 18866:1 18881:1 18882:1 18899:1 18909:1 18916:2 18935:1 18942:1 18958:2 18996:1 19005:5 19015:2 19022:1 19060:1 19067:1 19082:1 19086:1 19134:1 19159:1 19176:3 19182:1 19188:1 19206:1 19208:1 19212:1 19217:2 19221:2 19244:2 19262:1 19263:1 19268:1 19280:1 19302:1 19324:1 19340:1 19346:1 19347:2 19361:2 19397:1 19426:2 19430:1 19435:1 19467:1 19484:1 19489:2 19490:1 19495:1 19498:1 19542:1 19561:1 19572:1 19584:3 19588:2 19602:1 19615:1 19629:1 19633:1 19644:1 19654:1 19657:1 19663:2 19664:1 19669:1 19672:1 19674:1 19681:1 19706:1 19737:1 19760:1 19768:1 19772:6 19779:1 19784:1 19799:1 19828:1 19857:1 19861:1
5 2:1 5:1 28:1 33:1 35:3 65:1 68:3 105:3 131:1 145:1 160:3 164:1 167:1 178:1 185:3 196:1 200:1 215:1 220:1 221:1 227:1 233:2 246:2 261:1 272:1 278:1 289:1 316:1 348:2 349:2 352:1 353:1 365:1 366:1 390:1 393:2 399:2 413:1 417:1 418:2 422:1 434:1 461:2 477:1 480:1 485:1 495:2 510:2 511:1 525:1 530:1 540:1 547:1 559:1 565:1 574:3 576:1 592:1 595:1 600:1 605:1 615:1 639:1 641:1 661:2 699:1 714:1 720:1 738:1 749:1 763:1 793:1 798:1 811:1 825:1 826:2 833:2 864:1 865:2 880:5 901:1 909:1 918:1 931:2 942:1 950:2 971:2 972:1 980:1 1007:1 1014:1 1015:1 1017:1 1032:1 1045:1 1074:1 1083:1 1104:2 1108:2 1134:1 1138:1 1140:1 1145:2 1176:1 1177:1 1194:2 1213:3 1214:1 1232:3 1242:1 1252:1 1264:1 1274:3 1276:1 1279:2 1286:1 1288:3 1310:3 1312:1 1320:1 1323:1 1324:2 1328:2 1335:1 1336:2 1337:3 1340:2 1355:1 1357:2 1380:4 1388:2 1392:1 1408:1 1415:1 1421:1 1424:2 1427:3 1434:3 1463:6 1486:1 1493:1 1494:1 1498:1 1504:4 1512:1 1519:1 1576:1 1578:1 1616:1 1622:1 1628:1 1635:1 1637:1 1643:1 1649:1 1650:1 1653:2 1654:3 1657:2 1658:1 1659:3 1666:2 1670:3 1675:2 1677:2 1680:1 1682:2 1683:1 1694:1 1714:1 1717:1 1721:1 1723:2 1732:1 1735:1 1756:2 1759:1 1766:1 1767:1 1777:1 1786:1 1859:1 1862:2 1881:1 1884:1 1894:1 1901:1 1902:1 1910:2 1920:1 1952:2 1963:2 1968:1 1970:1 1973:1 1975:1 1980:1 2012:1 2030:1 2035:1 2045:1 2050:2 2060:1 2066:1 2067:1 2068:1 2074:1 2078:2 2097:7 2108:1 2112:6 2123:1 2129:1 2133:1 2138:1 2139:2 2178:1 2180:1 2185:1 2195:1 2207:1 2230:1 2255:4 2280:1 2345:1 2356:1 2363:1 2374:1 2383:1 2384:1 2394:2 2405:1 2433:1 2435:1 2450:1 2453:1 2471:9 2490:1 2521:1 2541:1 2544:1 2609:1 2623:1 2645:1 2647:1 2656:2 2661:1 2663:1 2674:1 2695:1 2699:1 2713:1 2716:1 2717:1 2723:1 2735:1 2742:1 2746:1 2748:1 2750:1 2753:1 2764:1 2791:1 2799:1 2801:1 2812:1 2815:2 2816:1 2823:6 2876:1 2882:1 2896:2 2916:1 2917:2 2923:1 2929:1 2939:1 2947:1 2954:1 2955:1 2957:7 2972:1 2973:1 2975:1 2976:2 2977:2 2979:1 2982:1 2984:2 2992:3 3006:2 3007:2 3011:1 3014:1 3015:1 3051:1 3062:1 3087:1 3102:1 3137:1 3139:1 3143:1 3148:1 3153:1 3165:2 3169:1 3178:1 3179:1 3190:1 3192:1 3196:1 3222:1 3237:1 3239:1 3243:1 3253:1 3258:2 3263:1 3287:1 3293:1 3323:1 3355:1 3365:2 3371:1 3429:3 3467:1 3472:1 3513:2 3516:3 3521:4 3532:1 3540:1 3547:1 3554:1 3580:1 3587:1 3590:1 3591:2 3594:3 3619:1 3628:1 3650:1 3668:1 3682:2 3692:2 3693:1 3694:1 3695:2 3705:1 3708:1 3719:1 3732:1 3745:1 3759:1 3765:1 3778:2 3830:1 3838:1 3854:1 3855:13 3866:1 3868:4 3876:1 3882:1 3899:1 3910:1 3914:11 3941:1 3956:1 3958:1 3961:1 3965:1 3977:3 4050:1 4052:2 4063:1 4103:1 4115:1 4135:1 4142:1 4177:1 4185:1 4202:1 4210:2 4214:2 4228:1 4246:3 4256:1 4258:2 4259:1 4279:2 4282:4 4300:1 4310:1 4345:1 4362:1 4363:1 4374:1 4380:1 4387:1 4401:1 4419:5 4423:1 4430:1 4446:3 4455:2 4456:1 4462:1 4532:1 4558:1 4578:1 4591:3 4595:1 4596:3 4598:2 4601:1 4602:6 4603:2 4607:1 4609:1 4610:1 4613:1 4633:1 4650:3 4656:1 4660:1 4671:2 4677:1 4696:1 4714:1 4721:1 4725:3 4726:1 4727:15 4735:1 4739:1 4744:1 4752:1 4760:1 4761:1 4766:3 4777:1 4782:1 4800:1 4809:1 4822:2 4828:5 4836:1 4844:1 4854:1 4871:1 4885:1 4890:1 4891:1 4896:5 4900:1 4901:1 4906:1 4909:1 4934:1 4944:1 4952:2 4954:1 4983:1 5004:1 5012:1 5017:1 5037:1 5039:1 5058:1 5076:1 5079:1 5099:1 5110:1 5116:1 5121:2 5125:1 5141:1 5145:1 5147:1 5153:1461 5155:1 5158:1 5168:1 5171:1 5187:1 5195:1 5196:1 5212:3 5213:1 5230:1 5232:1 5237:1 5250:1 5259:1 5288:1 5306:1 5311:2 5334:1 5358:1 5380:1 5400:1 5404:2 5414:1 5426:1 5427:1 5433:1 5441:1 5444:2 5455:1 5487:1 5497:1 5526:1 5562:1 5592:1 5612:1 5616:3 5619:1 5620:1 5658:1 5670:2 5683:5 5690:1 5695:1 5704:1 5741:1 5757:1 5776:1 5825:2 5830:1 5840:1 5861:1 5864:1 5867:1 5909:2 5921:1 5930:2 5931:1 5934:2 5959:1 5973:1 6010:1 6013:4 6016:2 6020:6 6026:1 6035:3 6053:1 6054:1 6064:1 6069:1 6118:1 6133:1 6135:1 6139:1 6142:1 6155:1 6189:1 6212:1 6219:1 6240:1 6262:1 6281:1 6301:2 6311:1 6345:1 6375:3 6377:1 6387:1 6392:8 6395:1 6400:1 6405:2 6410:1 6434:1 6459:1 6460:1 6485:1 6533:1 6536:1 6538:3 6551:1 6572:2 6581:2 6582:1 6586:1 6587:1 6594:5 6597:1 6602:1 6604:1 6605:1 6607:1 6608:1 6637:3 6649:1 6652:6 6658:1 6672:1 6690:1 6691:1 6693:1 6743:1 6764:2 6797:1 6813:1 6828:6 6839:1 6844:1 6845:2 6860:9 6877:2 6883:17 6886:2 6892:1 6947:2 6959:1 6967:2 6974:2 6990:1 6999:1 7007:1 7013:1 7021:3 7034:1 7037:1 7043:1 7072:1 7091:1 7114:1 7127:1 7134:3 7140:1 7145:1 7153:1 7155:1 7169:1 7181:1 7192:1 7198:1 7201:1 7218:1 7232:4 7244:1 7247:48 7250:1 7263:1 7271:1 7280:1 7284:1 7291:3 7312:1 7353:1 7357:1 7361:1 7384:1 7387:4 7409:1 7420:1 7422:5 7442:1 7443:1 7444:9 7450:2 7453:1 7454:1 7457:1 7459:1 7473:1 7478:1 7494:1 7504:1 7525:2 7550:2 7556:1 7558:1 7560:1 7563:1 7564:2 7572:1 7574:1 7577:1 7579:2 7582:3 7583:3 7584:1 7609:1 7642:1 7647:1 7652:1 7656:1 7668:1 7692:1 7700:1 7701:1 7707:1 7710:1 7711:1 7731:1 7742:1 7770:1 7808:1 7835:1 7841:1 7843:1 7849:1 7874:1 7880:1 7900:1 7912:1 7913:1 7930:1 7940:1 7952:1 7957:3 7988:1 7998:1 8009:1 8012:3 8013:3 8017:1 8023:2 8042:1 8050:1 8055:1 8056:2 8057:1 8058:3 8065:1 8094:1 8098:1 8100:1 8105:1 8113:1 8116:1 8128:1 8135:1 8137:1 8138:3 8152:1 8167:1 8192:1 8194:1 8196:2 8199:1 8200:1 8211:1 8231:1 8245:1 8247:1 8248:1 8253:1 8263:1 8267:1 8272:1 8280:1 8296:1 8324:1 8333:1 8339:1 8346:1 8347:1 8358:1 8360:1 8371:1 8382:1 8387:5 8390:1 8391:1 8399:1 8411:1 8414:1 8421:1 8431:1 8434:1 8437:2 8460:1 8491:1 8496:1 8513:1 8520:3 8522:1 8532:1 8533:2 8542:2 8552:3 8554:1 8556:1 8559:1 8573:1 8576:1 8606:1 8616:2 8626:2 8648:1 8651:1 8732:1 8743:1 8755:1 8772:1 8776:1 8779:1 8780:2 8785:1 8786:2 8794:1 8797:2 8809:3 8840:1 8843:1 8848:1 8859:1 8872:1 8901:1 8923:1 8926:1 8959:2 8968:1 8971:2 8980:1 8986:1 8994:1 8996:1 9006:3 9019:1 9025:2 9026:1 9051:1 9067:1 9072:1 9084:1 9085:1 9090:1 9100:1 9103:2 9117:1 9122:2 9129:1 9165:1 9177:1 9180:1 9183:1 9189:1 9191:1 9228:1 9234:1 9237:1 9238:1 9251:4 9252:2 9260:11 9261:2 9268:1 9275:1 9283:1 9295:3 9303:1 9308:1 9309:1 9329:1 9333:1 9337:1 9347:1 9357:1 9360:2 9370:1 9378:1 9380:1 9385:1 9388:1 9394:1 9404:1 9406:7 9429:1 9443:2 9444:4 9456:1 9461:1 9474:1 9478:1 9499:2 9508:2 9512:1 9522:1 9534:1 9548:3 9560:1 9569:1 9591:1 9594:5 9597:1 9605:2 9606:1 9612:1 9624:7 9625:1 9626:1 9627:1 9632:2 9641:2 9659:1 9675:6 9683:2 9693:1 9704:2 9721:5 9759:1 9780:1 9787:1 9788:1 9795:1 9798:2 9813:1 9817:1 9818:1 9822:1 9829:1 9842:1 9859:1 9865:3 9870:2 9879:2 9884:1 9886:1 9888:1 9910:2 9916:1 9917:1 9920:1 9924:2 9926:1 9940:1 9948:1 9952:1 9963:1 9968:1 9980:1 9992:1 10001:1 10010:1 10013:1 10044:2 10058:1 10059:3 10070:1 10075:1 10092:1 10098:1 10105:3 10111:3 10115:1 10125:2 10129:7 10193:3 10200:2 10204:3 10212:1 10223:1 10243:1 10262:1 10263:2 10271:1 10272:3 10280:1 10286:1 10297:1 10298:1 10315:1 10318:1 10335:1 10349:4 10356:1 10376:1 10377:1 10378:1 10398:2 10399:2 10409:3 10442:3 10459:17 10463:1 10468:1 10479:15 10484:8 10485:1 10494:1 10504:1 10551:1 10554:4 10567:1 10570:1 10573:3 10595:1 10632:1 10639:2 10640:1 10642:1 10649:1 10654:1 10685:2 10720:1 10721:4 10725:1 10740:1 10742:1 10749:1 10756:9 10764:1 10769:1 10790:1 10797:1 10820:2 10824:1 10857:1 10865:2 10877:1 10892:1 10922:1 10925:1 10930:1 10948:1 10957:1 10963:1 10968:1 10972:1 10978:1 10982:1 10990:1 10996:1 11013:1 11017:1 11032:2 11046:2 11055:1 11058:25 11081:1 11085:1 11088:1 11099:1 11117:1 11123:1 11126:1 11132:1 11140:1 11159:1 11164:1 11175:1 11180:1 11195:1 11197:3 11200:8 11272:1 11273:1 11276:1 11280:1 11289:1 11310:2 11311:1 11319:1 11321:1 11326:1 11328:1 11330:1 11362:2 11376:2 11403:3 11405:2 11408:1 11415:1 11416:2 11417:1 11420:3 11433:1 11439:1 11446:3 11448:1 11456:1 11457:1 11458:1 11459:1 11473:2 11496:1 11520:1 11523:1 11527:1 11559:1 11563:2 11565:1 11568:2 11573:3 11607:1 11608:1 11623:1 11634:1 11637:1 11639:1 11641:3 11646:1 11649:1 11652:1 11654:1 11656:3 11658:2 11664:1 11667:1 11668:1 11678:1 11679:2 11687:1 11702:3 11715:1 11724:1 11730:5 11732:1 11736:3 11765:1 11770:1 11773:1 11782:1 11800:1 11831:3 11835:1 11842:1 11864:1 11866:1 11877:2 11881:1 11888:1 11895:1 11898:1 11914:1 11921:1 11937:1 11951:1 11958:1 11978:1 11980:1 12000:1 12026:1 12037:1 12043:1 12052:4 12055:1 12063:1 12116:1 12130:1 12132:1 12138:1 12161:1 12172:1 12210:1 12228:1 12234:1 12245:1 12251:1 12256:1 12260:2 12274:1 12280:2 12289:2 12305:1 12328:1 12331:1 12355:1 12357:3 12365:1 12397:1 12405:1 12415:1 12433:1 12437:1 12439:1 12440:1 12454:1 12461:1 12471:1 12480:1 12481:1 12497:2 12519:1 12532:1 12537:1 12556:2 12557:1 12558:1 12566:3 12572:1 12577:2 12578:1 12581:2 12585:3 12591:1 12610:1 12617:1 12642:2 12648:1 12672:1 12678:1 12687:1 12688:1 12709:1 12710:1 12712:1 12722:1 12723:1 12728:1 12731:3 12747:1 12759:1 12769:1 12772:1 12779:1 12808:1 12809:1 12828:2 12836:1 12858:1 12877:1 12893:1 12918:2 12938:1 12962:5 12970:1 12977:1 12978:3 12983:1 12993:1 13019:1 13021:1 13028:1 13041:1 13052:1 13056:2 13058:1 13072:1 13087:1 13102:1 13106:1 13108:1 13121:1 13136:1 13141:2 13143:1 13153:1 13156:1 13179:1 13200:3 13203:3 13207:6 13208:1 13212:1 13219:1 13231:2 13238:1 13240:1 13247:1 13250:1 13256:3 13266:1 13269:1 13307:1 13358:2 13370:4 13383:1 13388:1 13402:1 13426:2 13432:1 13446:1 13448:2 13481:1 13483:3 13485:2 13491:2 13506:1 13508:1 13516:1 13517:1 13538:1 13546:1 13556:1 13574:1 13583:1 13585:1 13586:2 13627:2 13628:2 13631:1 13642:1 13646:1 13652:1 13655:1 13660:1 13662:3 13668:1 13670:1 13672:1 13677:2 13682:1 13703:1 13727:1 13735:1 13753:1 13759:1 13769:1 13783:1 13789:5 13817:1 13825:1 13826:1 13853:1 13866:6 13876:1 13899:4 13902:1 13904:2 13907:1 13912:3 13913:5 13915:1 13918:1 13921:1 13924:1 13926:2 13927:1 13934:2 13939:9 13942:2 13944:1 13947:1 13948:3 13950:1 13956:1 13959:1 13981:1 13983:2 13999:1 14049:1 14051:2 14055:1 14059:1 14064:1 14090:1 14095:2 14100:1 14105:1 14112:2 14142:1 14148:1 14151:1 14172:2 14188:1 14205:1 14212:2 14228:1 14238:1 14258:1 14261:1 14271:2 14278:1 14279:1 14284:1 14286:1 14288:1 14293:1 14298:2 14311:1 14344:1 14346:2 14349:1 14353:1 14361:1 14362:1 14363:2 14374:1 14383:1 14411:1 14429:1 14470:2 14472:1 14479:1 14527:2 14532:1 14575:2 14599:1 14603:1 14618:1 14625:2 14636:1 14637:2 14641:4 14651:4 14656:1 14663:1 14664:1 14672:1 14687:1 14694:2 14698:1 14701:1 14706:1 14739:2 14747:1 14756:1 14775:1 14779:1 14780:1 14781:1 14796:1 14811:7 14815:1 14828:5 14845:1 14846:1 14852:1 14858:1 14868:1 14884:1 14889:2 14895:1 14916:1 14933:2 14981:1 15003:1 15025:2 15040:2 15048:1 15052:1 15069:1 15086:1 15096:1 15110:3 15130:1 15139:1 15142:1 15149:1 15156:2 15166:1 15171:9 15190:1 15195:1 15226:1 15232:4 15241:1 15249:2 15254:1 15256:1 15262:1 15265:1 15267:2 15268:1 15287:1 15305:1 15308:1 15311:1 15354:1 15363:1 15396:1 15404:1 15452:2 15455:1 15457:3 15458:5 15461:1 15478:1 15490:1 15493:1 15499:1 15511:3 15513:1 15514:1 15516:1 15521:4 15532:4 15537:1 15545:2 15560:1 15572:2 15582:5 15584:1 15592:1 15596:1 15598:9 15607:1 15608:2 15618:1 15619:1 15635:2 15643:2 15651:1 15678:2 15679:1 15698:1 15703:1 15710:3 15721:3 15727:1 15730:1 15741:1 15753:1 15760:1 15764:1 15773:1 15774:1 15776:1 15797:2 15806:1 15820:1 15827:1 15865:2 15873:1 15876:1 15878:1 15882:5 15886:4 15922:1 15936:1 15940:1 15949:1 15957:1 15960:1 15962:2 15965:1 15966:3 15983:2 15990:1 16001:1 16019:1 16020:1 16023:1 16029:1 16032:1 16057:1 16060:2 16065:1 16067:1 16101:1 16109:1 16115:1 16122:1 16123:1 16125:1 16145:1 16147:1 16154:1 16157:2 16175:3 16181:1 16274:1 16299:1 16305:1 16309:1 16314:1 16329:2 16333:2 16345:1 16364:1 16369:2 16399:1 16408:1 16425:1 16462:1 16475:1 16509:1 16535:3 16558:1 16560:2 16579:1 16583:1 16587:1 16591:1 16592:2 16630:1 16652:1 16662:1 16668:1 16679:1 16693:1 16706:1 16707:1 16746:2 16753:1 16756:2 16763:3 16766:1 16776:1 16793:1 16807:1 16820:1 16825:1 16826:1 16827:1 16853:1 16875:1 16880:1 16886:2 16900:1 16905:2 16915:1 16917:2 16919:1 16922:1 16948:1 16957:1 16961:1 16962:2 16978:1 16981:1 16983:1 16999:1 17000:1 17002:2 17003:1 17009:1 17021:2 17024:2 17029:1 17031:2 17034:2 17043:1 17050:1 17054:1 17058:1 17060:1 17067:1 17071:2 17076:1 17097:3 17119:2 17120:2 17137:2 17139:2 17143:2 17164:1 17169:1 17175:1 17196:1 17202:3 17204:1 17207:1 17208:3 17250:1 17260:1 17282:1 17304:1 17311:1 17317:2 17318:1 17319:1 17336:1 17340:1 17341:1 17345:1 17349:1 17382:1 17383:1 17384:1 17399:4 17404:1 17414:1 17418:1 17422:1 17427:2 17432:1 17434:4 17468:2 17470:1 17481:1 17486:1 17533:1 17540:2 17565:1 17570:1 17582:1 17599:1 17603:1 17604:2 17616:1 17637:1 17640:1 17667:1 17695:1 17713:1 17718:1 17750:1 17781:4 17784:2 17791:1 17796:1 17826:1 17827:1 17833:1 17835:1 17844:4 17873:1 17878:1 17891:2 17894:1 17897:23 17902:2 17936:1 17947:3 17961:1 17967:1 17974:1 17978:1 18044:2 18053:1 18073:2 18080:2 18084:1 18106:1 18107:1 18115:1 18117:2 18119:1 18141:1 18145:1 18189:1 18196:1 18219:1 18232:1 18236:1 18255:5 18257:1 18258:1 18261:1 18262:1 18270:2 18281:1 18282:1 18294:1 18295:1 18296:1 18303:1 18309:1 18311:1 18332:1 18367:1 18370:2 18392:1 18394:1 18401:1 18402:1 18404:1 18412:1 18414:1 18415:2 18417:2 18426:1 18434:1 18435:1 18437:1 18460:1 18461:1 18463:1 18465:1 18482:1 18489:2 18498:1 18499:4 18521:1 18524:1 18546:1 18550:1 18558:1 18562:2 18575:1 18580:2 18582:1 18583:1 18608:1 18616:3 18628:1 18645:2 18652:1 18656:3 18666:2 18670:4 18681:1 18687:1 18718:1 18728:1 18763:10 18785:2 18830:6 18835:1 18866:1 18881:1 18882:1 18891:1 18899:1 18909:1 18913:1 18916:3 18917:1 18935:1 18942:1 18958:3 18965:1 18996:1 19001:1 19005:5 19015:2 19022:1 19060:1 19067:1 19082:1 19086:1 19134:1 19159:1 19176:3 19182:1 19188:1 19206:1 19208:1 19212:1 19217:2 19221:2 19244:2 19262:1 19263:1 19268:1 19280:1 19302:1 19324:1 19340:1 19346:1 19347:2 19361:2 19397:1 19426:2 19430:1 19435:1 19467:1 19484:1 19489:2 19490:1 19495:1 19496:1 19498:1 19542:1 19561:1 19569:1 19572:1 19584:3 19588:2 19602:1 19615:1 19629:1 19633:1 19644:1 19654:1 19657:1 19663:2 19664:1 19669:1 19672:1 19674:1 19681:1 19689:1 19706:1 19737:1 19760:1 19768:1 19772:6 19779:1 19784:1 19799:1 19828:1 19857:1 19861:1
5 2:1 5:1 28:1 33:1 35:3 65:1 68:3 105:3 131:1 145:1 160:3 164:1 167:1 178:1 185:3 196:1 200:1 215:1 220:1 221:1 227:1 233:2 246:3 261:1 272:1 278:1 289:1 312:1 316:1 348:2 349:2 352:1 353:1 365:1 366:1 382:1 390:1 393:2 399:2 413:1 417:1 418:2 422:1 434:1 453:1 461:2 477:1 480:1 485:1 495:2 510:3 511:1 525:1 530:1 540:1 547:1 559:1 565:1 574:3 576:1 592:1 595:1 600:1 605:1 615:1 639:1 641:1 661:2 699:1 714:1 720:1 738:1 749:1 763:1 793:1 798:1 811:1 825:1 826:2 833:2 864:1 865:2 880:5 901:1 909:1 918:1 931:2 942:1 950:2 971:2 972:1 980:1 1007:1 1014:1 1015:1 1017:1 1026:1 1032:1 1045:1 1074:1 1083:1 1104:2 1108:2 1134:1 1138:1 1140:1 1145:2 1157:1 1176:1 1177:2 1194:2 1213:4 1214:1 1232:3 1242:1 1252:1 1264:1 1274:3 1276:1 1279:2 1286:1 1288:3 1310:3 1312:1 1320:1 1323:1 1324:2 1328:2 1335:1 1336:2 1337:3 1340:2 1355:1 1357:2 1368:1 1380:4 1388:2 1392:1 1408:1 1415:1 1421:1 1424:2 1427:3 1434:3 1463:6 1486:1 1493:1 1494:1 1498:1 1504:4 1512:1 1519:1 1576:2 1578:1 1616:1 1622:1 1628:1 1635:1 1637:1 1643:1 1649:1 1650:1 1653:2 1654:3 1657:2 1658:1 1659:3 1666:3 1670:3 1675:2 1677:2 1679:1 1680:1 1682:3 1683:1 1694:1 1700:1 1714:1 1717:1 1721:1 1723:2 1732:1 1735:1 1756:2 1759:1 1765:1 1766:1 1767:1 1777:1 1786:1 1859:1 1862:2 1881:1 1884:1 1894:1 1901:1 1902:1 1910:2 1920:1 1923:1 1952:2 1963:2 1968:1 1970:1 1973:1 1975:1 1980:1 2012:1 2030:1 2035:1 2045:1 2050:2 2060:1 2066:1 2067:1 2068:1 2074:1 2078:2 2097:7 2108:1 2112:6 2123:1 2129:1 2133:1 2138:1 2139:2 2178:1 2180:1 2185:1 2195:1 2207:1 2230:1 2255:4 2280:1 2345:1 2356:1 2363:1 2374:1 2383:1 2384:1 2394:2 2397:1 2405:1 2433:1 2435:1 2450:1 2453:1 2471:9 2490:1 2521:1 2541:1 2544:1 2609:1 2623:1 2645:2 2647:1 2656:2 2661:1 2663:2 2673:1 2674:1 2695:1 2699:1 2713:1 2716:1 2717:2 2723:1 2735:1 2742:1 2746:1 2748:1 2750:1 2753:1 2764:1 2791:1 2799:1 2801:1 2812:1 2815:2 2816:1 2823:7 2876:1 2882:2 2896:3 2916:1 2917:2 2923:1 2929:1 2939:1 2947:1 2954:1 2955:1 2957:9 2972:1 2973:1 2975:1 2976:3 2977:2 2979:1 2982:1 2984:2 2992:3 3006:2 3007:2 3011:1 3014:1 3015:1 3051:1 3062:1 3087:1 3102:1 3137:1 3139:1 3143:1 3148:1 3153:1 3165:2 3169:1 3178:1 3179:1 3190:1 3192:1 3194:1 3196:1 3222:1 3237:1 3239:1 3243:1 3253:1 3258:2 3263:1 3286:1 3287:1 3293:1 3323:1 3355:1 3365:2 3371:1 3407:1 3429:3 3467:1 3472:1 3513:2 3516:3 3521:5 3532:1 3540:1 3547:1 3554:1 3580:1 3587:1 3590:1 3591:2 3594:3 3619:1 3621:1 3627:1 3628:1 3650:1 3668:1 3682:2 3692:2 3693:1 3694:1 3695:2 3705:1 3708:1 3719:1 3732:1 3745:1 3759:1 3761:1 3765:1 3778:2 3808:1 3830:1 3838:1 3854:1 3855:13 3866:1 3868:4 3876:1 3882:1 3899:1 3910:1 3914:11 3941:1 3956:1 3958:1 3961:1 3965:1 3969:1 3977:3 4050:1 4052:2 4063:1 4103:1 4115:1 4135:1 4136:1 4142:1 4177:1 4185:1 4202:1 4210:2 4214:2 4228:1 4246:3 4256:1 4258:2 4259:1 4279:2 4282:4 4300:1 4310:1 4345:1 4362:1 4363:1 4374:1 4380:1 4387:1 4401:1 4414:1 4419:5 4423:1 4430:1 4446:3 4455:2 4456:1 4462:1 4532:1 4558:1 4578:1 4591:3 4595:1 4596:3 4598:2 4601:2 4602:6 4603:3 4607:1 4609:1 4610:1 4613:1 4633:1 4650:3 4656:1 4660:1 4671:2 4677:1 4696:1 4714:1 4721:1 4725:3 4726:1 4727:15 4735:1 4739:1 4744:1 4752:1 4760:1 4761:1 4766:5 4777:2 4782:1 4800:1 4809:1 4822:2 4828:5 4836:1 4844:2 4854:1 4871:1 4885:1 4890:1 4891:1 4896:5 4900:1 4901:1 4906:1 4909:1 4934:1 4944:1 4952:2 4954:1 4983:1 5004:1 5012:1 5017:1 5037:1 5039:1 5058:1 5076:1 5079:1 5099:1 5110:1 5112:1 5116:1 5121:2 5125:1 5141:1 5145:1 5147:1 5153:1599 5155:1 5158:1 5168:2 5171:1 5187:1 5195:1 5196:1 5212:3 5213:1 5230:1 5232:1 5237:1 5250:1 5259:1 5280:1 5288:1 5306:1 5311:2 5334:1 5345:1 5358:1 5380:1 5400:1 5404:2 5414:1 5426:1 5427:1 5433:1 5441:1 5444:2 5455:1 5483:1 5487:1 5497:1 5526:1 5562:1 5573:1 5592:1 5612:1 5616:3 5619:1 5620:1 5658:1 5662:1 5670:2 5683:5 5690:1 5695:1 5704:1 5741:1 5754:1 5757:1 5776:1 5825:2 5830:1 5840:1 5861:2 5864:1 5867:1 5909:2 5921:2 5930:2 5931:1 5934:2 5959:1 5973:1 6010:1 6013:4 6016:2 6020:6 6026:1 6035:3 6053:1 6054:1 6064:1 6069:1 6095:1 6118:1 6133:1 6135:1 6139:1 6142:1 6155:2 6189:1 6212:1 6219:1 6221:1 6240:1 6262:1 6281:1 6301:2 6311:1 6345:1 6375:3 6377:1 6387:1 6392:10 6395:1 6400:1 6405:2 6410:1 6434:1 6459:1 6460:1 6485:1 6533:1 6536:1 6538:3 6551:1 6572:2 6576:1 6581:2 6582:1 6586:1 6587:1 6594:5 6597:1 6602:1 6604:1 6605:1 6607:1 6608:1 6637:3 6649:1 6652:6 6658:1 6672:1 6690:1 6691:2 6693:1 6743:1 6764:2 6797:1 6813:1 6828:6 6839:1 6844:1 6845:2 6860:9 6877:2 6883:17 6886:2 6892:1 6947:2 6959:1 6967:2 6974:2 6990:1 6999:1 7007:1 7013:1 7021:3 7034:1 7037:1 7043:1 7072:1 7091:1 7114:1 7127:1 7134:3 7140:1 7145:1 7153:1 7155:1 7169:1 7181:1 7192:1 7198:1 7201:1 7218:1 7232:4 7244:1 7247:50 7250:1 7263:1 7271:1 7280:1 7284:1 7291:3 7312:1 7353:1 7357:1 7361:1 7384:1 7387:4 7409:1 7420:1 7422:5 7442:1 7443:1 7444:9 7450:2 7453:1 7454:1 7457:1 7459:1 7473:1 7478:1 7494:1 7504:1 7525:2 7550:3 7556:1 7558:1 7560:1 7563:1 7564:2 7572:1 7574:1 7577:1 7579:2 7582:4 7583:3 7584:1 7609:1 7642:1 7647:1 7652:1 7656:1 7668:1 7692:1 7700:1 7701:1 7707:1 7710:1 7711:1 7731:1 7742:1 7743:1 7770:1 7808:1 7835:2 7841:1 7843:1 7849:1 7874:1 7880:1 7900:1 7912:1 7913:1 7930:1 7940:1 7952:1 7957:3 7988:1 7998:1 8009:1 8012:3 8013:3 8017:1 8023:2 8042:1 8050:1 8055:1 8056:2 8057:1 8058:3 8065:1 8094:2 8098:1 8100:1 8105:1 8113:1 8116:1 8128:1 8135:2 8137:1 8138:3 8152:1 8167:1 8192:1 8194:1 8196:2 8199:1 8200:1 8211:1 8231:1 8245:1 8247:1 8248:1 8253:1 8263:1 8267:1 8272:1 8280:1 8296:1 8324:1 8333:1 8339:1 8341:1 8346:1 8347:1 8358:2 8360:1 8368:1 8371:1 8382:1 8387:5 8390:1 8391:1 8399:1 8411:1 8414:1 8421:1 8431:1 8434:1 8437:2 8460:1 8491:1 8496:1 8513:1 8520:3 8522:1 8532:1 8533:2 8542:2 8546:1 8552:3 8554:1 8556:1 8559:1 8573:1 8576:1 8606:1 8616:3 8626:2 8648:1 8651:1 8732:1 8742:1 8743:1 8755:1 8772:1 8776:1 8779:1 8780:2 8785:1 8786:2 8794:1 8797:2 8809:4 8840:1 8843:1 8848:1 8859:1 8872:1 8901:2 8923:1 8926:1 8959:2 8968:1 8971:2 8980:1 8986:1 8994:1 8996:1 9006:3 9019:1 9025:2 9026:1 9051:1 9067:1 9072:1 9084:1 9085:1 9090:1 9100:1 9103:2 9114:1 9117:1 9122:2 9125:1 9129:1 9165:1 9177:1 9180:1 9183:1 9189:1 9191:1 9228:1 9234:1 9237:1 9238:1 9251:4 9252:2 9253:1 9260:12 9261:2 9268:1 9275:1 9279:1 9283:1 9295:3 9303:1 9308:1 9309:1 9329:1 9333:1 9337:1 9347:1 9357:1 9360:2 9370:1 9378:1 9380:1 9385:1 9388:1 9394:1 9404:1 9406:7 9429:1 9432:1 9443:2 9444:4 9456:1 9461:1 9474:1 9478:1 9499:2 9508:2 9512:1 9522:1 9534:1 9548:3 9560:1 9569:1 9591:1 9594:5 9597:1 9605:2 9606:1 9612:1 9624:7 9625:1 9626:1 9627:1 9632:2 9641:2 9657:1 9659:1 9675:7 9683:2 9693:1 9704:2 9721:5 9759:1 9780:1 9787:1 9788:1 9795:1 9798:2 9813:1 9817:1 9818:1 9822:1 9829:1 9842:1 9859:1 9865:3 9870:2 9879:2 9884:1 9886:1 9888:1 9910:2 9916:1 9917:1 9920:1 9924:2 9926:1 9940:1 9948:1 9952:1 9963:1 9968:1 9980:1 9992:1 10001:1 10010:1 10013:1 10044:2 10058:1 10059:3 10070:1 10075:1 10092:1 10098:1 10105:3 10111:3 10115:1 10125:2 10129:7 10175:1 10193:3 10200:2 10204:3 10212:1 10223:1 10243:1 10262:1 10263:2 10271:1 10272:4 10280:1 10286:1 10297:1 10298:1 10306:1 10315:1 10318:1 10335:1 10349:4 10356:1 10376:1 10377:1 10378:1 10398:2 10399:2 10409:3 10442:3 10459:18 10463:1 10468:1 10479:15 10484:8 10485:1 10494:1 10504:1 10551:1 10554:4 10567:1 10570:1 10573:3 10595:1 10632:2 10639:2 10640:1 10642:1 10649:1 10654:1 10685:2 10720:1 10721:5 10725:1 10740:1 10742:1 10749:1 10756:9 10764:1 10769:1 10790:1 10797:1 10820:2 10824:1 10857:1 10865:2 10877:1 10886:1 10892:1 10922:1 10925:1 10930:1 10948:1 10957:1 10963:1 10968:1 10972:1 10978:1 10982:1 10990:1 10996:1 11013:1 11017:1 11032:2 11046:2 11055:1 11058:29 11081:1 11085:1 11088:1 11099:1 11117:1 11123:1 11126:1 11132:1 11140:1 11159:1 11164:1 11175:1 11180:1 11195:1 11197:4 11200:8 11272:1 11273:1 11276:1 11280:2 11289:1 11310:2 11311:1 11319:1 11321:2 11326:1 11328:1 11330:1 11362:2 11376:2 11403:3 11405:2 11407:1 11408:1 11415:1 11416:2 11417:1 11420:3 11433:1 11439:1 11446:4 11448:1 11456:1 11457:1 11458:1 11459:1 11473:2 11496:1 11520:1 11523:1 11527:1 11559:1 11563:2 11565:1 11568:2 11573:3 11588:1 11607:1 11608:1 11623:1 11634:1 11637:1 11639:1 11641:3 11646:1 11649:1 11652:1 11654:1 11656:3 11658:2 11664:1 11667:1 11668:1 11669:1 11678:1 11679:2 11687:1 11702:3 11715:1 11724:1 11730:6 11732:1 11735:1 11736:3 11765:1 11770:1 11773:1 11782:1 11800:1 11831:3 11835:1 11842:1 11864:1 11866:1 11877:2 11881:1 11888:1 11895:1 11898:1 11914:1 11921:1 11937:1 11951:1 11958:1 11978:1 11980:1 12000:1 12026:1 12037:1 12043:1 12052:4 12055:1 12063:1 12116:1 12130:1 12132:1 12138:1 12161:1 12172:1 12186:1 12210:1 12228:1 12234:1 12245:1 12251:1 12256:1 12260:2 12274:1 12280:2 12289:2 12305:1 12328:1 12331:1 12355:1 12357:3 12365:1 12397:1 12405:1 12415:1 12433:1 12437:1 12439:1 12440:1 12454:1 12461:1 12471:1 12480:1 12481:1 12497:2 12519:1 12532:1 12537:1 12556:2 12557:1 12558:1 12566:3 12572:1 12577:2 12578:1 12581:2 12585:3 12591:1 12592:1 12610:1 12617:1 12642:2 12648:1 12672:2 12678:1 12687:1 12688:1 12709:1 12710:1 12712:1 12722:1 12723:1 12726:1 12728:1 12731:3 12739:1 12747:1 12752:1 12759:1 12769:1 12772:1 12779:1 12808:1 12809:1 12828:3 12836:1 12858:1 12877:1 12893:1 12918:2 12938:1 12962:5 12970:1 12977:1 12978:3 12983:1 12993:2 13018:1 13019:1 13021:1 13028:1 13041:1 13052:1 13056:2 13058:1 13072:1 13087:1 13100:1 13102:1 13106:1 13108:1 13121:1 13136:1 13141:2 13143:1 13153:1 13156:1 13179:1 13200:3 13203:3 13207:6 13208:1 13212:1 13219:1 13231:2 13238:1 13240:1 13247:1 13250:1 13256:3 13266:1 13269:1 13307:1 13358:2 13370:4 13383:1 13388:1 13402:1 13426:2 13432:1 13446:1 13448:2 13481:1 13483:3 13485:2 13491:2 13506:2 13508:1 13516:1 13517:1 13538:1 13546:1 13556:1 13574:1 13583:1 13585:1 13586:2 13627:2 13628:2 13631:1 13642:1 13646:1 13652:1 13655:1 13659:1 13660:1 13662:3 13668:1 13670:1 13672:1 13677:2 13682:1 13703:1 13727:1 13735:1 13753:1 13759:1 13769:1 13783:1 13789:5 13817:1 13825:2 13826:1 13853:1 13866:6 13876:1 13899:4 13902:1 13904:2 13907:1 13912:3 13913:5 13915:1 13918:1 13921:1 13924:1 13926:2 13927:1 13934:2 13939:9 13942:2 13944:1 13947:1 13948:3 13950:1 13956:1 13959:1 13981:1 13983:2 13999:1 14049:1 14051:2 14055:1 14059:1 14064:1 14090:1 14095:2 14100:1 14105:1 14112:2 14142:1 14148:1 14151:1 14172:3 14188:1 14199:1 14205:1 14212:2 14228:1 14238:1 14258:1 14261:1 14271:2 14278:1 14279:1 14284:1 14286:1 14288:1 14293:1 14298:2 14311:1 14344:1 14346:2 14349:1 14353:1 14361:1 14362:1 14363:2 14374:1 14383:1 14411:1 14429:1 14470:2 14472:1 14479:1 14527:2 14532:1 14575:2 14599:1 14603:1 14618:1 14624:2 14625:2 14636:1 14637:2 14641:4 14651:4 14656:1 14663:1 14664:1 14672:1 14687:1 14694:2 14698:1 14701:1 14706:1 14739:2 14747:1 14756:1 14775:1 14779:1 14780:1 14781:1 14796:1 14807:1 14811:7 14815:1 14828:5 14845:1 14846:1 14852:1 14858:1 14868:1 14884:1 14889:2 14895:1 14916:1 14933:2 14981:1 15003:1 15025:3 15040:2 15048:1 15052:1 15069:1 15086:1 15096:1 15110:3 15130:1 15139:1 15142:1 15149:1 15156:2 15166:1 15171:9 15190:1 15195:1 15226:1 15230:1 15232:4 15241:1 15249:2 15254:1 15256:1 15262:1 15265:2 15267:2 15268:1 15287:1 15305:1 15308:1 15311:1 15331:1 15351:1 15354:1 15363:1 15396:1 15404:1 15413:1 15452:2 15455:1 15457:3 15458:5 15461:1 15478:1 15490:1 15493:1 15499:1 15511:5 15513:1 15514:1 15516:1 15521:5 15525:1 15527:1 15532:4 15537:1 15545:2 15560:1 15572:2 15582:5 15584:1 15592:1 15596:1 15598:9 15607:1 15608:3 15618:1 15619:1 15635:2 15643:2 15651:1 15678:2 15679:1 15681:1 15698:1 15703:1 15710:3 15721:3 15727:1 15730:1 15741:1 15753:1 15760:1 15764:1 15773:1 15774:1 15776:1 15797:2 15806:1 15820:1 15827:1 15865:2 15873:1 15876:1 15878:1 15882:5 15886:4 15922:1 15936:1 15940:1 15949:1 15957:1 15960:1 15962:2 15965:1 15966:3 15983:2 15990:1 16001:1 16019:1 16020:1 16023:1 16029:1 16032:1 16057:1 16060:2 16065:1 16067:1 16101:1 16109:1 16115:1 16122:2 16123:2 16125:1 16136:1 16145:1 16147:1 16154:1 16157:2 16175:4 16181:1 16274:1 16299:1 16305:1 16309:1 16314:1 16329:2 16333:2 16345:1 16364:1 16369:2 16399:1 16408:1 16425:1 16462:1 16475:1 16509:1 16535:3 16558:1 16560:2 16579:1 16583:1 16587:1 16591:1 16592:2 16630:1 16652:1 16662:1 16668:1 16679:1 16693:1 16705:1 16706:1 16707:1 16746:2 16753:1 16756:2 16763:3 16766:1 16776:1 16792:1 16793:1 16807:1 16820:1 16825:1 16826:1 16827:1 16842:1 16853:1 16875:1 16880:1 16886:2 16900:1 16905:2 16915:1 16917:2 16919:1 16922:2 16948:1 16957:1 16961:2 16962:2 16978:1 16981:1 16983:1 16999:1 17000:1 17002:2 17003:1 17008:1 17009:1 17021:2 17024:2 17029:1 17031:2 17034:2 17043:1 17050:1 17054:1 17058:1 17060:1 17067:1 17071:2 17076:1 17088:1 17097:3 17119:2 17120:3 17137:2 17139:2 17143:2 17164:1 17169:1 17175:1 17196:1 17202:4 17204:1 17207:1 17208:3 17250:1 17260:1 17267:1 17282:1 17304:1 17311:1 17317:2 17318:1 17319:1 17336:1 17340:1 17341:1 17345:1 17349:1 17382:1 17383:1 17384:1 17399:4 17404:1 17414:1 17415:1 17418:1 17422:1 17427:2 17432:1 17434:4 17468:2 17470:1 17481:1 17486:1 17533:1 17540:2 17565:1 17570:1 17582:1 17599:1 17603:1 17604:2 17616:1 17629:1 17637:1 17640:1 17662:1 17667:1 17695:1 17713:1 17718:1 17733:1 17750:1 17781:5 17784:2 17791:1 17796:1 17826:1 17827:1 17833:1 17835:1 17844:4 17873:1 17878:1 17891:2 17894:1 17897:24 17902:2 17936:1 17947:3 17961:1 17967:1 17974:1 17978:1 18044:2 18053:1 18069:1 18073:2 18080:2 18084:1 18106:1 18107:1 18115:1 18117:2 18119:1 18141:1 18145:1 18189:1 18196:1 18219:1 18232:1 18236:1 18255:5 18257:2 18258:1 18261:1 18262:1 18270:3 18281:1 18282:1 18283:1 18294:1 18295:1 18296:1 18303:1 18309:1 18311:1 18332:1 18367:1 18370:2 18392:1 18394:1 18401:1 18402:1 18404:1 18412:1 18414:1 18415:2 18417:3 18426:1 18434:1 18435:1 18437:1 18460:1 18461:1 18463:1 18465:1 18482:1 18489:2 18498:1 18499:6 18521:1 18524:1 18546:1 18550:1 18558:1 18562:2 18575:1 18580:2 18582:1 18583:1 18608:1 18616:3 18628:1 18645:2 18652:1 18656:4 18666:2 18670:4 18681:1 18687:1 18718:1 18728:1 18730:1 18763:11 18785:2 18830:6 18835:1 18866:1 18881:1 18882:1 18891:1 18899:1 18909:1 18913:1 18916:3 18917:1 18935:1 18942:1 18958:3 18965:1 18996:1 19001:1 19005:5 19015:2 19022:1 19060:1 19067:1 19082:1 19086:1 19134:1 19159:1 19176:3 19182:1 19188:1 19206:1 19208:1 19212:1 19217:2 19221:2 19231:1 19244:2 19262:1 19263:1 19268:1 19280:1 19302:1 19324:1 19340:1 19346:1 19347:2 19361:2 19397:1 19426:2 19429:1 19430:1 19435:1 19467:1 19484:1 19489:2 19490:1 19495:1 19496:1 19498:1 19542:1 19561:1 19569:1 19572:1 19584:3 19588:2 19602:1 19615:1 19618:1 19629:1 19633:1 19644:1 19654:1 19655:1 19657:1 19663:2 19664:1 19669:1 19670:1 19672:1 19674:1 19681:1 19689:1 19706:1 19737:1 19748:1 19760:1 19768:1 19772:6 19779:1 19784:1 19799:1 19828:1 19857:2 19861:1
5 2:1 5:1 28:1 33:1 35:3 65:1 68:3 70:1 105:3 131:1 145:1 160:3 164:1 167:1 178:1 185:3 196:1 200:1 215:1 220:1 221:1 227:1 233:2 246:4 261:1 272:1 278:1 289:1 312:1 316:1 348:2 349:2 352:1 353:1 365:1 366:1 382:2 390:1 393:2 399:2 413:1 417:1 418:2 422:1 434:1 453:1 461:2 477:1 480:2 483:1 485:1 495:2 510:3 511:1 525:1 530:1 540:1 547:1 559:1 565:1 574:3 576:1 592:1 595:1 600:1 605:1 615:2 625:1 639:1 641:1 661:2 699:1 714:1 720:1 738:1 749:2 754:1 763:1 793:1 798:1 811:1 825:1 826:2 833:2 849:1 861:1 864:1 865:2 880:5 901:1 909:1 918:1 931:2 942:1 950:2 971:2 972:1 980:1 1007:1 1014:1 1015:1 1017:1 1026:1 1028:1 1032:1 1045:1 1074:1 1083:1 1104:2 1108:2 1134:1 1138:1 1140:1 1145:2 1157:1 1176:1 1177:2 1194:2 1213:4 1214:1 1232:3 1242:1 1252:1 1264:1 1274:3 1276:1 1279:2 1286:1 1288:4 1310:3 1312:1 1320:1 1323:1 1324:2 1328:2 1335:1 1336:2 1337:3 1340:3 1355:1 1357:2 1368:1 1380:4 1388:2 1392:1 1408:1 1415:1 1421:1 1424:2 1427:3 1434:3 1458:1 1463:6 1486:1 1493:1 1494:1 1498:1 1504:4 1512:1 1519:1 1576:2 1578:1 1616:1 1622:2 1628:1 1635:1 1637:1 1643:1 1649:2 1650:1 1653:2 1654:3 1657:2 1658:1 1659:3 1666:3 1670:3 1675:2 1677:2 1679:1 1680:1 1682:3 1683:1 1694:1 1700:1 1714:1 1717:1 1721:1 1723:2 1732:1 1734:3 1735:1 1756:2 1759:1 1765:1 1766:1 1767:1 1777:1 1786:1 1826:1 1859:1 1862:2 1881:1 1884:1 1894:1 1901:1 1902:1 1910:2 1920:1 1923:1 1942:1 1952:2 1963:2 1968:1 1970:1 1973:1 1975:1 1980:1 2012:1 2030:1 2035:1 2045:1 2050:2 2060:1 2066:1 2067:1 2068:1 2074:1 2078:2 2097:8 2108:1 2112:7 2123:1 2129:1 2133:1 2138:1 2139:2 2175:1 2178:1 2180:1 2185:1 2195:1 2207:1 2220:1 2230:1 2255:4 2280:1 2332:1 2345:1 2356:1 2363:1 2374:1 2383:1 2384:1 2394:2 2397:1 2405:1 2433:1 2435:1 2440:1 2450:1 2453:1 2471:9 2479:1 2490:1 2521:1 2541:1 2544:1 2609:1 2623:1 2645:2 2647:1 2656:2 2661:1 2663:2 2666:1 2673:1 2674:1 2695:1 2699:1 2713:1 2716:1 2717:2 2723:1 2735:1 2742:1 2746:1 2748:1 2750:1 2753:1 2764:1 2791:1 2799:1 2801:1 2812:1 2815:2 2816:1 2823:7 2870:1 2876:1 2882:2 2896:3 2916:1 2917:2 2923:1 2929:1 2939:1 2947:1 2951:1 2954:1 2955:1 2957:11 2972:2 2973:1 2975:1 2976:3 2977:2 2979:1 2982:1 2984:2 2990:1 2992:3 2999:1 3006:2 3007:2 3011:1 3014:1 3015:1 3051:1 3062:1 3087:1 3095:1 3102:1 3117:1 3128:1 3137:1 3139:1 3143:1 3148:1 3153:1 3165:2 3169:1 3178:1 3179:1 3190:1 3192:1 3194:1 3196:1 3222:1 3237:1 3239:1 3243:1 3253:1 3258:2 3263:1 3286:1 3287:1 3293:1 3323:1 3325:1 3355:1 3365:2 3371:1 3407:1 3429:3 3467:1 3472:1 3513:2 3516:3 3521:5 3532:1 3540:1 3547:1 3554:1 3580:1 3587:1 3590:1 3591:2 3594:3 3613:1 3619:1 3621:1 3627:1 3628:1 3650:1 3668:2 3682:2 3692:2 3693:1 3694:1 3695:2 3705:1 3708:1 3719:1 3732:1 3745:1 3759:1 3761:1 3765:1 3778:2 3808:1 3830:1 3838:1 3854:2 3855:15 3857:1 3866:1 3868:4 3876:1 3882:1 3899:1 3910:1 3914:11 3941:1 3956:1 3958:1 3961:1 3965:1 3969:1 3977:3 4050:1 4052:2 4063:1 4095:1 4103:1 4115:1 4134:1 4135:1 4136:2 4142:2 4144:1 4177:1 4185:1 4202:1 4210:2 4214:2 4228:1 4246:3 4256:1 4258:2 4259:1 4279:3 4282:4 4300:1 4310:1 4345:1 4362:1 4363:1 4374:1 4380:2 4387:1 4401:1 4414:1 4419:5 4423:1 4430:1 4446:3 4455:2 4456:1 4462:1 4532:1 4558:1 4578:1 4591:3 4595:1 4596:3 4598:2 4601:2 4602:6 4603:4 4607:1 4609:1 4610:1 4613:1 4633:1 4646:1 4650:4 4656:1 4660:1 4671:2 4677:1 4696:1 4714:1 4721:1 4725:3 4726:1 4727:15 4735:2 4739:1 4744:1 4752:1 4760:1 4761:1 4766:5 4777:2 4782:1 4800:1 4809:1 4822:2 4828:5 4830:1 4836:1 4844:2 4854:1 4871:1 4885:1 4890:1 4891:1 4896:5 4900:1 4901:1 4906:1 4909:1 4934:1 4944:1 4952:2 4954:1 4983:1 5004:1 5012:1 5014:1 5017:1 5037:1 5039:1 5058:1 5076:1 5079:1 5099:1 5110:1 5112:1 5116:1 5119:1 5121:2 5125:1 5141:1 5145:1 5147:1 5153:1706 5155:1 5158:1 5168:2 5171:1 5187:1 5195:1 5196:1 5212:3 5213:1 5230:1 5232:1 5237:1 5250:2 5259:1 5280:1 5288:1 5306:1 5311:2 5318:1 5334:1 5345:2 5358:1 5380:1 5400:1 5404:2 5414:1 5426:1 5427:1 5433:1 5441:1 5444:2 5455:1 5482:1 5483:1 5487:1 5497:1 5526:1 5562:1 5573:1 5592:1 5612:1 5616:3 5619:1 5620:1 5658:1 5662:1 5670:2 5683:5 5690:1 5695:1 5704:1 5741:1 5754:1 5757:1 5776:1 5825:2 5830:1 5840:1 5861:2 5864:1 5867:1 5909:2 5921:3 5930:2 5931:1 5934:2 5959:1 5973:1 6010:1 6013:4 6016:2 6020:8 6026:1 6035:3 6053:1 6054:1 6064:1 6069:1 6095:1 6118:1 6133:1 6135:1 6139:1 6142:2 6155:2 6189:1 6212:1 6219:1 6221:1 6240:1 6262:1 6281:1 6301:2 6311:1 6345:1 6375:4 6377:1 6387:1 6392:10 6395:1 6400:1 6405:2 6410:1 6434:1 6440:1 6459:1 6460:1 6485:1 6533:1 6536:1 6538:3 6551:1 6572:2 6576:1 6581:3 6582:1 6586:1 6587:1 6590:1 6594:5 6597:1 6602:1 6604:1 6605:1 6607:1 6608:1 6637:3 6643:1 6649:1 6652:8 6658:1 6672:1 6690:1 6691:2 6693:1 6743:1 6764:2 6797:1 6813:1 6828:6 6839:1 6844:1 6845:2 6860:9 6877:2 6883:17 6886:3 6892:1 6947:2 6959:1 6967:2 6974:2 6990:1 6999:1 7007:1 7013:1 7021:3 7034:1 7037:1 7043:1 7072:1 7091:1 7114:1 7127:1 7134:3 7140:1 7145:1 7153:1 7155:1 7169:1 7181:1 7183:1 7192:1 7198:1 7201:1 7218:1 7232:4 7244:1 7247:52 7250:1 7263:1 7271:1 7280:1 7284:1 7291:3 7312:1 7353:1 7357:1 7361:1 7384:1 7387:4 7409:1 7420:1 7422:6 7442:1 7443:1 7444:9 7450:2 7453:1 7454:2 7457:1 7459:1 7473:1 7478:1 7494:1 7504:1 7525:2 7540:1 7550:4 7556:1 7558:1 7560:1 7563:1 7564:2 7572:1 7574:1 7577:1 7579:2 7582:4 7583:3 7584:1 7609:1 7642:1 7647:2 7652:1 7656:1 7668:1 7692:1 7700:1 7701:1 7707:1 7710:2 7711:1 7731:1 7742:1 7743:1 7770:1 7808:1 7835:2 7841:1 7843:1 7849:1 7874:1 7880:1 7900:1 7912:1 7913:1 7930:1 7940:1 7952:1 7957:3 7988:1 7998:1 8009:1 8012:3 8013:3 8017:1 8023:2 8042:1 8050:1 8055:1 8056:2 8057:1 8058:3 8065:1 8094:3 8096:1 8098:1 8100:1 8105:1 8113:1 8116:1 8128:1 8135:3 8137:1 8138:3 8152:1 8167:1 8192:1 8194:1 8196:2 8199:1 8200:1 8211:1 8231:1 8245:1 8247:2 8248:1 8253:1 8263:1 8267:1 8272:1 8280:1 8296:1 8324:1 8333:1 8339:1 8341:1 8346:1 8347:1 8358:2 8360:1 8368:1 8371:1 8382:1 8383:1 8387:5 8390:1 8391:1 8399:1 8411:1 8414:1 8421:1 8431:1 8434:1 8437:2 8460:1 8491:1 8496:1 8507:1 8513:1 8520:3 8522:1 8532:1 8533:2 8539:1 8542:2 8546:1 8552:4 8554:1 8556:1 8559:1 8573:1 8576:1 8606:1 8616:3 8623:1 8626:2 8648:1 8651:1 8732:1 8742:1 8743:1 8755:1 8772:1 8776:1 8779:1 8780:2 8785:1 8786:2 8794:1 8797:2 8809:4 8840:1 8843:1 8848:1 8859:1 8872:1 8901:2 8923:1 8926:1 8959:2 8968:1 8971:2 8980:1 8983:1 8986:1 8994:1 8996:1 9006:3 9019:1 9025:2 9026:1 9051:1 9067:1 9072:1 9084:1 9085:1 9090:1 9100:1 9103:2 9114:1 9117:1 9122:2 9125:1 9129:1 9159:1 9165:1 9177:1 9180:1 9183:1 9189:1 9191:1 9204:1 9228:1 9234:1 9237:1 9238:1 9251:4 9252:2 9253:1 9260:13 9261:2 9268:1 9275:1 9279:1 9283:1 9295:3 9303:1 9308:1 9309:1 9329:1 9333:1 9337:1 9347:1 9357:1 9360:2 9370:1 9378:1 9380:1 9385:1 9388:2 9394:1 9404:1 9406:7 9429:1 9432:1 9443:2 9444:4 9456:1 9461:1 9474:1 9478:1 9499:2 9508:2 9512:1 9522:1 9534:1 9548:3 9560:1 9569:1 9591:1 9594:5 9597:1 9605:2 9606:1 9612:1 9613:1 9624:8 9625:1 9626:1 9627:1 9632:2 9641:2 9657:1 9659:1 9675:9 9683:2 9693:1 9698:1 9704:2 9712:1 9721:5 9759:1 9780:1 9787:1 9788:1 9795:1 9798:2 9813:2 9817:1 9818:1 9822:1 9829:1 9842:1 9859:1 9865:3 9870:2 9879:2 9884:1 9886:1 9888:1 9904:1 9910:2 9916:1 9917:1 9920:1 9924:2 9926:1 9940:1 9948:1 9952:1 9959:1 9963:1 9968:1 9980:2 9983:1 9992:1 10001:1 10010:1 10013:1 10044:2 10058:1 10059:3 10068:1 10070:1 10075:1 10092:1 10098:1 10105:3 10111:4 10115:1 10125:2 10129:7 10160:1 10175:1 10193:3 10200:2 10204:3 10212:1 10223:1 10243:1 10262:1 10263:2 10271:1 10272:4 10280:1 10286:1 10297:1 10298:1 10306:1 10315:1 10318:1 10335:1 10349:4 10356:1 10376:1 10377:1 10378:1 10398:2 10399:2 10409:4 10442:3 10459:20 10463:1 10468:1 10479:16 10484:8 10485:1 10494:1 10504:1 10551:1 10554:4 10567:1 10570:1 10573:3 10595:2 10632:2 10639:2 10640:1 10642:1 10649:1 10654:1 10685:2 10720:1 10721:5 10725:2 10740:1 10742:1 10749:1 10756:9 10764:1 10769:1 10777:1 10790:1 10797:1 10820:2 10824:1 10857:1 10865:2 10877:1 10886:1 10892:2 10922:1 10925:1 10930:1 10945:1 10948:1 10957:1 10963:1 10968:1 10972:1 10978:1 10982:1 10990:1 10996:1 11013:1 11017:1 11032:2 11046:2 11050:2 11055:1 11058:30 11081:1 11085:1 11088:1 11099:1 11117:1 11123:1 11126:1 11132:1 11140:1 11159:1 11164:1 11175:1 11180:1 11195:1 11197:5 11200:8 11272:1 11273:1 11276:1 11280:2 11289:1 11310:2 11311:1 11319:1 11321:3 11326:1 11328:1 11330:2 11362:2 11376:2 11403:3 11405:2 11407:1 11408:1 11415:2 11416:2 11417:1 11420:3 11433:1 11439:1 11446:4 11448:1 11456:1 11457:1 11458:1 11459:2 11473:2 11496:1 11520:1 11523:1 11527:1 11559:1 11563:2 11565:1 11568:2 11573:3 11588:1 11607:1 11608:1 11623:1 11634:1 11637:1 11639:1 11641:3 11646:1 11649:1 11652:1 11654:1 11656:3 11658:2 11664:1 11667:1 11668:1 11669:1 11678:1 11679:2 11687:2 11702:3 11715:1 11724:1 11730:7 11732:1 11735:1 11736:3 11765:1 11770:1 11773:1 11782:1 11800:1 11831:3 11835:1 11842:1 11864:1 11866:1 11877:2 11881:1 11888:1 11895:1 11898:1 11914:1 11921:1 11937:1 11951:1 11958:1 11978:1 11980:1 12000:1 12026:1 12037:1 12043:1 12052:4 12055:1 12063:1 12116:1 12130:1 12132:1 12138:1 12161:1 12172:1 12186:1 12210:1 12228:1 12234:1 12245:1 12251:1 12256:2 12260:2 12274:1 12280:2 12289:2 12305:1 12328:1 12331:1 12355:1 12357:3 12365:1 12397:1 12405:1 12415:1 12433:1 12437:1 12439:1 12440:1 12454:1 12461:1 12471:1 12480:1 12481:1 12497:2 12519:1 12532:1 12537:1 12556:2 12557:1 12558:1 12559:1 12566:3 12572:1 12577:2 12578:1 12581:2 12585:3 12591:1 12592:1 12610:2 12617:1 12642:2 12648:1 12672:2 12678:1 12687:1 12688:1 12709:1 12710:1 12712:1 12722:1 12723:1 12726:1 12728:1 12731:3 12739:1 12747:1 12752:1 12759:1 12769:1 12772:1 12779:1 12808:1 12809:1 12828:3 12836:1 12858:1 12877:1 12893:1 12914:1 12918:2 12938:1 12962:5 12970:1 12977:1 12978:3 12983:1 12993:2 13005:1 13018:1 13019:2 13021:1 13028:1 13041:1 13052:1 13056:2 13058:1 13072:1 13087:1 13100:1 13102:1 13106:1 13108:1 13121:1 13136:1 13141:2 13143:1 13153:1 13156:1 13170:1 13179:1 13189:1 13200:3 13203:3 13207:6 13208:1 13212:1 13219:1 13231:2 13238:2 13240:1 13247:1 13250:1 13256:3 13266:1 13269:1 13307:1 13358:2 13370:4 13383:1 13386:1 13388:1 13402:1 13426:2 13432:1 13446:1 13448:2 13462:1 13481:1 13483:3 13485:2 13491:2 13506:3 13508:1 13516:1 13517:2 13538:1 13546:1 13556:1 13574:1 13583:1 13585:1 13586:2 13627:2 13628:2 13631:1 13642:1 13646:1 13652:1 13655:1 13659:1 13660:1 13662:3 13668:1 13670:1 13672:1 13677:2 13682:1 13698:1 13703:1 13727:1 13735:1 13753:1 13759:1 13769:1 13783:1 13789:5 13812:1 13817:1 13825:2 13826:1 13853:1 13866:6 13876:1 13891:1 13899:4 13902:1 13904:2 13907:1 13912:3 13913:5 13915:1 13918:1 13921:1 13924:1 13926:2 13927:1 13934:2 13939:9 13942:2 13944:1 13947:1 13948:4 13950:1 13956:1 13959:1 13981:1 13983:2 13999:1 14049:1 14051:2 14055:1 14059:1 14064:1 14090:1 14095:2 14100:2 14105:1 14112:2 14142:1 14148:1 14151:1 14172:3 14188:1 14199:1 14205:1 14212:2 14228:1 14238:1 14258:1 14261:1 14271:2 14278:1 14279:1 14284:1 14286:1 14288:1 14293:1 14298:3 14311:1 14344:1 14346:2 14349:1 14353:1 14361:1 14362:1 14363:2 14371:1 14374:1 14376:1 14383:1 14411:1 14413:1 14429:1 14446:1 14470:2 14472:1 14479:1 14527:2 14532:1 14575:2 14599:1 14603:1 14618:1 14624:2 14625:2 14636:1 14637:3 14641:4 14651:4 14656:1 14663:1 14664:1 14672:1 14687:1 14694:2 14698:1 14701:1 14706:1 14739:2 14747:1 14756:1 14770:1 14775:1 14779:1 14780:1 14781:1 14796:1 14807:1 14811:7 14815:1 14828:5 14845:1 14846:1 14852:1 14856:1 14858:1 14868:1 14884:1 14889:2 14895:1 14916:1 14933:2 14957:1 14981:1 15003:1 15025:3 15040:2 15048:1 15052:1 15069:1 15086:1 15089:1 15096:1 15097:1 15110:3 15130:1 15139:1 15142:1 15149:2 15156:2 15166:1 15171:10 15190:1 15195:1 15215:1 15226:1 15230:1 15232:4 15241:1 15249:2 15254:1 15256:1 15262:1 15265:2 15267:2 15268:1 15287:1 15305:1 15308:1 15311:1 15331:1 15351:1 15354:1 15363:1 15396:1 15404:1 15413:1 15452:2 15455:1 15457:3 15458:5 15461:1 15478:1 15490:1 15493:1 15499:1 15511:5 15513:1 15514:1 15516:1 15521:5 15525:1 15527:1 15532:4 15537:1 15545:2 15560:1 15572:2 15582:5 15584:2 15592:1 15596:1 15598:10 15607:1 15608:3 15614:1 15618:1 15619:1 15635:2 15643:2 15651:1 15678:2 15679:1 15681:1 15698:1 15703:1 15710:3 15721:3 15727:1 15730:1 15741:1 15753:1 15760:1 15764:1 15773:1 15774:1 15776:1 15797:2 15806:1 15820:1 15827:1 15865:2 15873:1 15876:1 15878:1 15882:5 15886:4 15890:1 15922:1 15936:1 15940:1 15949:1 15957:1 15960:1 15962:2 15965:1 15966:3 15983:2 15990:1 16001:1 16019:1 16020:2 16023:1 16029:1 16032:1 16057:1 16060:2 16065:1 16067:1 16101:1 16109:1 16115:1 16122:2 16123:2 16125:1 16136:1 16145:1 16147:1 16154:1 16157:2 16175:4 16181:1 16202:1 16274:1 16299:1 16301:1 16305:1 16309:1 16314:1 16329:2 16333:2 16345:2 16350:1 16364:1 16369:2 16374:1 16395:1 16399:1 16408:1 16425:1 16462:1 16475:1 16509:1 16535:3 16558:1 16560:2 16575:1 16579:1 16583:1 16587:1 16591:1 16592:2 16630:1 16652:1 16662:1 16668:1 16679:1 16693:1 16705:1 16706:1 16707:1 16746:2 16753:1 16756:2 16763:3 16766:1 16776:1 16792:1 16793:1 16807:1 16820:1 16825:1 16826:1 16827:1 16842:1 16853:1 16875:1 16880:1 16886:2 16900:1 16905:2 16915:1 16917:2 16919:1 16922:2 16948:1 16957:1 16961:3 16962:2 16978:1 16981:1 16983:1 16999:1 17000:1 17002:2 17003:1 17006:1 17008:1 17009:1 17021:2 17024:2 17029:1 17031:2 17034:2 17043:1 17050:1 17054:1 17058:1 17060:1 17067:1 17071:2 17076:1 17088:1 17097:3 17108:1 17119:2 17120:3 17125:1 17137:2 17139:2 17143:2 17164:1 17169:1 17175:1 17196:1 17202:4 17204:1 17207:1 17208:3 17250:1 17260:1 17267:1 17282:1 17304:1 17311:1 17317:2 17318:1 17319:1 17336:1 17340:1 17341:1 17345:1 17349:1 17382:1 17383:1 17384:1 17399:4 17404:1 17414:1 17415:1 17418:1 17422:1 17427:2 17432:1 17434:5 17468:2 17470:1 17481:1 17486:1 17533:1 17540:2 17565:1 17570:1 17582:1 17599:1 17602:1 17603:1 17604:2 17616:1 17629:2 17637:1 17640:1 17662:1 17667:1 17695:1 17713:1 17718:1 17733:1 17750:1 17757:1 17781:5 17784:2 17791:1 17796:1 17826:1 17827:1 17833:1 17835:1 17844:4 17861:1 17873:1 17878:1 17891:2 17894:1 17897:25 17902:2 17936:1 17947:3 17961:1 17967:2 17974:2 17978:1 18044:2 18053:1 18069:1 18073:2 18080:2 18084:1 18106:1 18107:2 18115:1 18117:2 18119:1 18141:1 18145:1 18189:1 18196:1 18217:1 18219:1 18232:1 18236:1 18255:5 18257:2 18258:1 18261:1 18262:1 18270:4 18278:1 18281:1 18282:1 18283:1 18294:1 18295:1 18296:1 18303:1 18309:1 18311:1 18313:1 18332:1 18367:1 18370:2 18392:1 18394:1 18401:1 18402:1 18404:1 18412:1 18414:1 18415:2 18417:3 18426:1 18434:1 18435:1 18437:1 18460:1 18461:1 18463:1 18465:1 18482:1 18489:3 18498:1 18499:7 18521:1 18524:1 18546:1 18549:1 18550:1 18558:1 18562:2 18575:1 18580:2 18582:1 18583:1 18608:1 18616:3 18628:1 18645:2 18652:1 18656:4 18666:2 18670:4 18681:1 18687:1 18718:1 18728:1 18730:1 18763:11 18785:2 18799:1 18830:6 18835:1 18866:1 18881:1 18882:1 18891:1 18899:1 18909:1 18913:1 18916:3 18917:1 18927:1 18935:1 18942:1 18958:3 18965:1 18996:1 19001:1 19005:5 19015:2 19022:1 19060:1 19067:1 19082:1 19086:1 19134:1 19154:1 19159:1 19175:1 19176:3 19182:1 19188:1 19206:1 19208:1 19212:1 19217:2 19221:2 19231:1 19244:2 19262:1 19263:1 19266:1 19268:1 19280:1 19302:1 19324:1 19340:1 19346:1 19347:2 19361:2 19397:1 19426:2 19429:1 19430:1 19435:1 19467:1 19484:1 19489:2 19490:1 19495:1 19496:1 19498:1 19542:1 19543:1 19561:1 19569:1 19572:1 19584:3 19588:2 19602:2 19609:1 19615:1 19618:1 19629:1 19633:1 19644:1 19654:1 19655:1 19657:1 19663:3 19664:1 19669:1 19670:1 19672:1 19674:1 19681:1 19689:1 19706:1 19733:1 19737:1 19748:1 19760:1 19768:1 19772:8 19776:1 19779:1 19784:1 19799:1 19828:1 19857:2 19861:1
5 2:1 5:1 28:1 33:1 35:3 65:1 68:3 70:1 105:3 131:1 145:1 160:3 164:1 167:1 178:1 185:3 196:1 200:1 215:1 220:1 221:1 227:1 233:2 246:4 261:1 272:1 278:1 289:1 297:1 312:1 316:1 348:2 349:2 352:1 353:1 365:1 366:1 382:2 390:1 393:2 399:3 413:1 417:1 418:2 422:1 434:1 453:1 461:2 477:1 480:2 483:1 485:1 495:2 510:3 511:1 525:1 530:1 540:1 547:1 559:1 565:1 574:3 576:1 592:1 595:1 600:1 605:1 615:2 625:1 639:1 641:1 661:2 699:1 714:1 720:1 738:1 749:3 754:1 763:1 793:1 797:1 798:1 811:1 825:1 826:2 833:3 849:2 861:1 864:1 865:2 880:5 901:1 909:1 918:1 931:2 942:1 943:1 950:2 971:2 972:1 980:2 1007:1 1014:1 1015:1 1017:1 1026:1 1028:1 1032:1 1045:1 1074:1 1083:1 1104:2 1108:2 1134:1 1138:1 1140:1 1145:2 1157:1 1176:1 1177:2 1194:2 1213:4 1214:1 1232:3 1242:1 1252:1 1264:1 1274:4 1276:1 1279:2 1286:1 1288:4 1310:3 1312:1 1320:1 1323:1 1324:3 1328:2 1335:1 1336:2 1337:3 1340:4 1355:1 1357:2 1368:1 1380:4 1388:2 1392:1 1408:1 1415:1 1421:1 1424:2 1427:3 1434:3 1458:1 1463:6 1486:1 1493:1 1494:1 1498:1 1504:4 1512:1 1519:1 1576:2 1578:1 1616:1 1622:2 1628:1 1635:1 1637:1 1643:1 1649:2 1650:1 1653:2 1654:4 1657:3 1658:1 1659:3 1666:3 1670:3 1675:2 1677:2 1679:1 1680:1 1682:3 1683:1 1692:1 1694:1 1700:1 1714:1 1717:1 1721:1 1723:2 1732:1 1734:3 1735:1 1756:2 1759:1 1765:1 1766:1 1767:1 1777:1 1786:1 1826:1 1859:1 1862:2 1881:1 1884:1 1894:1 1901:1 1902:1 1910:2 1920:1 1923:1 1942:1 1952:2 1963:2 1968:1 1970:1 1973:1 1975:1 1980:1 2012:1 2030:1 2035:1 2045:1 2050:2 2060:1 2066:1 2067:1 2068:1 2074:1 2078:2 2097:8 2108:1 2112:7 2123:1 2129:1 2133:1 2138:1 2139:2 2160:1 2175:1 2178:1 2180:1 2185:1 2195:1 2207:1 2220:2 2230:1 2255:4 2280:1 2298:1 2332:1 2345:1 2356:1 2363:1 2374:1 2383:1 2384:1 2394:2 2397:1 2405:1 2433:1 2435:1 2440:1 2450:1 2453:1 2471:9 2479:1 2490:1 2511:1 2521:1 2541:1 2544:1 2609:1 2622:1 2623:1 2645:2 2647:1 2652:1 2656:2 2661:1 2663:2 2666:1 2673:1 2674:1 2695:1 2699:1 2713:1 2716:1 2717:2 2723:1 2735:2 2742:1 2746:1 2748:1 2750:1 2753:1 2757:1 2764:1 2791:1 2799:1 2801:1 2812:1 2815:2 2816:1 2823:7 2850:1 2870:1 2876:1 2882:2 2896:3 2916:1 2917:2 2923:1 2929:1 2939:1 2947:1 2951:1 2954:1 2955:1 2957:11 2972:3 2973:1 2975:1 2976:5 2977:2 2979:1 2982:2 2984:2 2990:1 2992:3 2999:1 3006:2 3007:2 3011:1 3014:1 3015:1 3051:1 3062:1 3065:1 3087:1 3095:1 3102:1 3117:1 3128:1 3137:1 3139:1 3143:1 3148:1 3153:1 3165:2 3169:1 3178:1 3179:1 3190:1 3192:1 3194:1 3196:1 3197:1 3222:1 3237:1 3239:1 3243:1 3253:1 3258:2 3263:1 3286:1 3287:1 3293:1 3323:1 3325:1 3326:1 3355:1 3365:2 3371:1 3407:1 3429:3 3467:1 3472:1 3513:2 3516:3 3521:5 3532:1 3540:1 3547:1 3554:1 3580:1 3587:1 3590:1 3591:2 3594:3 3613:1 3619:1 3621:1 3627:1 3628:1 3640:1 3650:1 3668:2 3682:2 3692:2 3693:1 3694:1 3695:2 3704:1 3705:1 3708:1 3719:1 3732:1 3745:1 3759:1 3761:1 3765:1 3778:2 3808:1 3830:1 3838:1 3854:2 3855:17 3857:1 3866:1 3868:4 3876:1 3882:1 3899:1 3910:1 3914:11 3941:1 3956:1 3958:1 3961:1 3965:1 3969:1 3977:3 4050:1 4052:2 4063:1 4095:1 4103:1 4115:1 4134:1 4135:1 4136:2 4142:2 4144:1 4159:1 4177:1 4185:1 4202:1 4210:3 4214:2 4228:1 4246:3 4256:1 4258:2 4259:1 4279:3 4282:4 4300:1 4310:1 4345:1 4362:1 4363:1 4374:1 4380:2 4387:1 4401:1 4414:1 4419:5 4423:1 4430:1 4446:3 4455:2 4456:1 4462:1 4532:1 4558:1 4578:1 4591:3 4595:1 4596:3 4598:2 4601:2 4602:6 4603:4 4607:1 4609:1 4610:1 4613:1 4630:2 4633:1 4646:1 4650:4 4656:1 4660:1 4671:2 4677:1 4696:1 4714:1 4721:1 4725:5 4726:1 4727:15 4735:2 4739:1 4744:1 4752:1 4760:1 4761:1 4766:5 4777:2 4782:1 4800:1 4809:1 4822:2 4828:6 4830:2 4836:1 4844:2 4854:1 4859:1 4871:1 4885:1 4890:1 4891:1 4896:5 4900:1 4901:1 4906:1 4909:1 4934:1 4944:1 4952:2 4954:1 4983:1 5004:1 5012:1 5014:1 5017:1 5037:1 5039:1 5058:1 5076:1 5079:1 5099:2 5110:1 5112:1 5116:1 5119:1 5121:2 5125:1 5141:1 5145:1 5147:1 5153:1809 5155:1 5158:1 5168:2 5171:1 5187:1 5188:1 5195:1 5196:1 5212:3 5213:1 5230:1 5232:1 5237:1 5250:2 5259:1 5280:1 5288:1 5306:1 5311:2 5318:1 5334:1 5345:2 5358:1 5380:1 5400:1 5404:2 5414:1 5426:1 5427:1 5433:1 5441:1 5444:2 5447:1 5455:1 5482:1 5483:1 5487:1 5497:1 5526:1 5562:1 5573:1 5592:1 5612:1 5616:3 5619:1 5620:1 5658:1 5662:1 5670:2 5683:5 5690:1 5695:1 5704:1 5741:1 5754:1 5757:1 5776:1 5825:2 5830:1 5840:1 5861:2 5864:1 5867:1 5909:2 5921:4 5930:2 5931:1 5934:2 5959:1 5973:1 6010:1 6013:4 6016:2 6020:8 6026:1 6035:3 6053:1 6054:1 6064:1 6069:1 6087:1 6095:1 6118:1 6133:1 6135:1 6139:1 6142:3 6155:2 6189:1 6212:2 6219:1 6221:1 6240:1 6262:1 6281:1 6301:2 6311:1 6345:1 6375:4 6377:1 6387:1 6392:10 6395:1 6400:1 6405:2 6410:1 6434:1 6440:1 6459:2 6460:1 6485:1 6533:1 6536:1 6538:3 6551:1 6571:1 6572:2 6576:1 6581:3 6582:1 6584:1 6586:1 6587:1 6590:1 6594:5 6597:1 6602:1 6604:1 6605:1 6607:1 6608:1 6637:4 6643:1 6649:1 6652:8 6658:1 6664:1 6672:1 6690:1 6691:2 6693:1 6695:1 6743:1 6744:1 6764:2 6797:1 6813:1 6828:6 6830:1 6839:1 6844:1 6845:2 6860:9 6877:2 6883:18 6886:3 6892:1 6947:2 6959:1 6967:2 6974:2 6990:1 6996:1 6999:1 7007:1 7013:1 7021:4 7034:1 7037:1 7043:1 7072:1 7091:1 7114:1 7127:1 7134:4 7140:1 7145:1 7153:1 7155:1 7169:1 7181:1 7183:1 7192:1 7198:1 7201:1 7218:1 7232:4 7244:1 7247:54 7250:1 7263:1 7271:1 7280:1 7284:1 7291:3 7312:1 7353:1 7357:1 7361:1 7384:1 7387:4 7409:1 7420:1 7422:7 7442:1 7443:1 7444:9 7450:2 7453:1 7454:2 7457:1 7459:1 7473:1 7478:1 7494:1 7504:1 7525:2 7540:1 7550:5 7556:1 7558:1 7560:1 7563:1 7564:2 7572:1 7574:1 7577:1 7579:2 7582:4 7583:3 7584:1 7609:1 7642:1 7647:2 7652:1 7656:1 7668:1 7687:1 7692:1 7700:1 7701:1 7707:1 7710:2 7711:1 7731:2 7742:1 7743:1 7770:1 7783:1 7808:1 7835:2 7841:1 7843:1 7849:1 7874:1 7880:1 7900:1 7912:1 7913:1 7930:1 7940:1 7952:1 7957:3 7988:1 7998:1 8000:1 8009:1 8012:3 8013:3 8017:1 8023:2 8042:1 8050:1 8055:1 8056:2 8057:1 8058:4 8065:1 8094:3 8096:1 8098:1 8100:1 8105:2 8113:1 8116:1 8119:1 8128:1 8135:3 8137:1 8138:3 8152:1 8167:1 8192:1 8194:1 8196:2 8199:2 8200:1 8211:1 8231:1 8245:1 8247:3 8248:1 8253:1 8263:1 8267:1 8272:1 8280:1 8296:1 8324:1 8333:1 8339:1 8341:1 8346:1 8347:1 8358:2 8360:1 8368:1 8371:1 8382:1 8383:2 8387:5 8390:1 8391:1 8399:1 8411:1 8414:1 8421:1 8431:1 8434:1 8437:2 8441:1 8460:1 8491:1 8496:1 8507:1 8513:1 8520:3 8522:1 8532:1 8533:2 8539:1 8542:2 8546:1 8552:4 8554:1 8556:1 8559:1 8573:1 8576:1 8606:1 8616:3 8623:1 8626:2 8648:1 8651:1 8732:1 8742:1 8743:1 8755:1 8772:1 8776:1 8779:1 8780:2 8785:1 8786:2 8794:1 8797:2 8809:4 8840:1 8843:1 8848:1 8859:1 8872:1 8901:2 8923:1 8926:1 8959:2 8967:1 8968:1 8971:2 8980:1 8983:1 8986:1 8994:1 8996:1 9006:3 9019:1 9025:2 9026:1 9051:1 9067:1 9072:1 9084:1 9085:1 9090:1 9100:1 9103:2 9114:1 9117:1 9122:2 9125:1 9129:1 9159:1 9165:1 9177:1 9180:1 9183:1 9189:1 9191:1 9204:1 9228:1 9234:1 9237:1 9238:1 9251:4 9252:2 9253:1 9260:14 9261:2 9268:1 9275:1 9279:1 9283:1 9295:3 9303:1 9308:1 9309:1 9329:1 9333:1 9337:1 9347:1 9357:1 9360:2 9370:1 9378:1 9380:1 9385:1 9388:2 9394:1 9404:1 9406:7 9429:1 9432:1 9443:2 9444:4 9456:1 9461:1 9474:1 9478:1 9499:2 9508:2 9512:1 9522:1 9525:1 9534:1 9548:3 9560:1 9569:1 9591:1 9594:5 9597:1 9605:2 9606:1 9612:1 9613:1 9624:9 9625:1 9626:1 9627:2 9632:2 9641:2 9657:1 9659:1 9675:9 9683:2 9693:1 9698:1 9704:2 9712:1 9721:5 9759:1 9780:1 9787:1 9788:1 9795:1 9798:2 9813:2 9817:1 9818:1 9822:1 9829:1 9842:1 9859:1 9865:3 9870:2 9879:2 9884:1 9886:1 9888:1 9904:1 9910:2 9916:1 9917:1 9920:1 9924:3 9926:1 9940:1 9948:1 9952:1 9959:1 9963:1 9968:1 9980:2 9983:1 9992:1 10001:1 10010:1 10013:1 10044:2 10045:1 10058:1 10059:3 10068:1 10070:1 10075:1 10092:1 10098:1 10105:3 10111:5 10115:1 10125:2 10127:1 10129:7 10160:1 10175:1 10193:3 10200:2 10204:3 10212:1 10223:1 10243:1 10262:1 10263:2 10271:1 10272:4 10280:1 10286:1 10297:1 10298:1 10306:1 10315:1 10318:1 10335:1 10349:4 10356:1 10376:1 10377:1 10378:1 10398:2 10399:2 10409:4 10442:3 10459:24 10463:1 10468:1 10479:18 10484:8 10485:1 10494:1 10504:1 10551:1 10554:4 10567:1 10570:1 10573:4 10595:2 10632:2 10639:2 10640:1 10642:1 10649:1 10654:1 10685:2 10720:1 10721:5 10725:2 10740:1 10742:1 10749:1 10756:9 10764:1 10769:1 10777:1 10790:1 10797:1 10820:2 10824:1 10845:1 10857:1 10865:2 10868:1 10877:1 10886:1 10892:2 10922:1 10925:1 10930:1 10934:1 10945:1 10948:1 10957:1 10963:1 10968:1 10972:1 10978:1 10982:1 10990:1 10996:1 11013:1 11017:1 11032:2 11046:2 11050:2 11055:1 11058:32 11081:1 11082:1 11085:1 11088:1 11099:1 11117:1 11123:1 11126:1 11132:1 11140:1 11159:1 11164:1 11175:1 11180:1 11195:1 11197:6 11200:8 11272:1 11273:1 11276:1 11280:2 11289:1 11310:2 11311:1 11319:1 11321:4 11326:1 11328:1 11330:2 11362:2 11376:2 11403:3 11405:2 11407:1 11408:1 11415:2 11416:2 11417:1 11420:3 11433:1 11439:1 11446:4 11448:1 11456:1 11457:1 11458:1 11459:2 11473:2 11496:1 11520:1 11523:1 11527:1 11559:1 11563:2 11565:1 11568:3 11573:3 11588:1 11607:1 11608:1 11623:1 11634:1 11637:1 11639:1 11641:3 11646:1 11649:1 11652:1 11654:1 11656:3 11658:2 11664:1 11667:1 11668:1 11669:1 11678:1 11679:2 11687:2 11702:3 11715:1 11724:1 11730:7 11732:1 11735:1 11736:3 11765:1 11770:1 11773:1 11782:1 11800:1 11829:1 11831:3 11835:1 11842:1 11864:1 11866:1 11877:2 11881:1 11885:1 11888:1 11895:1 11898:1 11914:1 11921:1 11937:1 11951:1 11958:1 11978:1 11980:1 12000:1 12026:1 12037:1 12043:1 12052:4 12055:1 12063:1 12102:1 12116:1 12130:1 12132:1 12138:1 12161:1 12172:1 12186:1 12210:1 12228:1 12234:1 12245:1 12251:1 12256:2 12260:2 12274:1 12280:2 12289:2 12305:1 12328:1 12331:1 12355:1 12357:3 12365:1 12392:1 12397:1 12405:1 12415:1 12433:1 12435:1 12437:1 12439:1 12440:1 12454:1 12461:2 12471:1 12480:1 12481:1 12497:3 12519:1 12532:1 12537:1 12541:1 12556:2 12557:1 12558:1 12559:1 12566:3 12572:1 12577:2 12578:1 12581:2 12585:3 12591:1 12592:1 12610:2 12611:1 12617:1 12640:1 12642:2 12648:1 12672:2 12678:1 12687:1 12688:1 12709:1 12710:1 12712:1 12713:1 12722:1 12723:1 12726:1 12728:1 12731:3 12739:1 12747:1 12752:1 12759:1 12769:1 12772:1 12779:1 12808:1 12809:1 12828:3 12836:1 12858:1 12877:1 12893:1 12914:1 12918:2 12938:1 12962:5 12970:1 12977:1 12978:3 12983:1 12993:2 13005:1 13018:1 13019:3 13021:1 13028:1 13041:1 13052:1 13056:2 13058:1 13072:1 13087:1 13100:1 13102:2 13106:1 13108:1 13121:1 13136:1 13141:2 13142:1 13143:1 13153:1 13156:1 13170:1 13179:1 13189:1 13200:3 13203:3 13207:6 13208:1 13212:1 13214:1 13219:1 13231:2 13237:1 13238:3 13240:1 13247:1 13250:1 13256:3 13266:1 13269:1 13307:1 13358:2 13370:5 13383:1 13386:1 13388:1 13402:1 13426:2 13432:1 13446:1 13448:2 13462:1 13481:1 13483:3 13485:2 13491:2 13506:3 13508:1 13516:1 13517:2 13538:1 13546:1 13556:1 13574:1 13583:1 13585:1 13586:2 13627:2 13628:2 13631:1 13642:1 13646:1 13652:1 13655:1 13659:1 13660:1 13662:3 13668:1 13670:1 13672:1 13677:2 13682:1 13698:1 13703:2 13727:1 13735:1 13753:1 13759:1 13769:1 13783:1 13789:5 13812:1 13817:1 13825:2 13826:1 13853:1 13866:6 13876:1 13891:1 13899:4 13902:2 13904:2 13907:1 13912:3 13913:5 13915:1 13918:1 13921:1 13924:1 13926:2 13927:1 13934:2 13939:9 13942:2 13944:1 13947:1 13948:5 13950:1 13956:1 13959:1 13981:1 13983:3 13999:1 14049:1 14051:2 14055:1 14059:1 14060:1 14064:1 14077:1 14090:1 14095:2 14100:4 14105:1 14112:2 14140:1 14142:1 14148:1 14151:1 14172:3 14188:1 14199:1 14205:1 14212:2 14228:1 14238:1 14258:1 14261:1 14271:2 14278:1 14279:1 14284:1 14286:1 14288:1 14293:1 14298:3 14311:1 14344:1 14346:2 14349:1 14353:1 14361:1 14362:1 14363:2 14371:1 14374:1 14376:1 14383:1 14411:1 14413:1 14429:2 14446:1 14470:2 14472:1 14479:1 14498:1 14527:2 14532:1 14575:2 14599:1 14603:1 14618:1 14624:2 14625:2 14636:1 14637:3 14641:4 14651:4 14656:1 14663:1 14664:1 14672:1 14687:1 14694:2 14698:1 14701:1 14706:1 14739:2 14747:1 14756:1 14770:2 14775:1 14779:1 14780:1 14781:1 14796:1 14807:1 14811:7 14815:1 14828:5 14845:1 14846:1 14852:1 14856:1 14858:1 14868:1 14884:1 14889:2 14895:1 14916:1 14933:2 14957:1 14981:1 15003:1 15025:3 15040:2 15048:1 15052:1 15069:1 15086:1 15089:1 15096:1 15097:1 15110:3 15113:1 15120:1 15130:1 15139:1 15142:1 15149:2 15156:2 15166:1 15170:1 15171:10 15190:1 15195:1 15210:1 15215:1 15226:1 15230:1 15232:4 15241:1 15249:2 15254:1 15256:1 15262:1 15265:2 15267:2 15268:1 15287:1 15305:1 15308:1 15311:1 15331:1 15351:1 15354:1 15363:1 15370:1 15396:1 15404:1 15413:1 15452:2 15455:1 15457:3 15458:5 15461:1 15478:1 15490:1 15493:1 15499:1 15511:5 15513:1 15514:1 15516:1 15521:5 15525:1 15527:1 15532:4 15537:1 15545:2 15560:1 15572:2 15582:5 15584:2 15587:1 15592:1 15596:1 15598:11 15607:1 15608:3 15614:1 15618:1 15619:1 15635:2 15643:2 15651:1 15678:2 15679:1 15681:1 15698:1 15703:1 15710:3 15721:3 15727:1 15730:1 15741:1 15753:1 15760:1 15764:1 15773:1 15774:1 15776:1 15797:2 15806:1 15820:1 15827:1 15865:2 15873:1 15876:1 15878:1 15882:5 15886:4 15890:1 15922:1 15936:1 15940:1 15949:1 15957:1 15960:1 15962:2 15965:1 15966:3 15983:2 15990:1 16001:1 16019:1 16020:2 16023:1 16029:1 16032:1 16057:1 16060:2 16065:1 16067:1 16101:1 16109:1 16115:1 16122:2 16123:3 16125:1 16136:1 16145:1 16147:1 16154:1 16157:2 16175:4 16181:1 16202:1 16274:1 16299:1 16301:1 16305:1 16308:1 16309:1 16314:1 16329:2 16333:2 16345:2 16350:1 16364:1 16369:2 16374:1 16395:1 16399:1 16408:1 16425:1 16462:1 16475:1 16509:1 16535:3 16558:1 16560:2 16575:1 16579:1 16583:1 16587:1 16591:1 16592:2 16594:1 16630:1 16652:1 16662:1 16668:1 16679:1 16693:1 16705:1 16706:1 16707:1 16746:2 16753:1 16756:3 16763:3 16766:1 16776:1 16792:1 16793:1 16807:1 16820:1 16825:1 16826:1 16827:1 16842:1 16853:1 16875:1 16880:1 16886:2 16900:1 16902:1 16905:2 16915:1 16917:2 16919:1 16922:2 16940:1 16948:1 16957:1 16961:4 16962:2 16978:1 16981:1 16983:1 16999:1 17000:1 17002:2 17003:1 17006:1 17008:1 17009:1 17021:2 17024:2 17029:1 17031:2 17034:2 17043:1 17050:1 17054:2 17058:1 17060:1 17067:1 17071:2 17076:1 17088:1 17093:1 17097:3 17108:1 17119:2 17120:3 17125:1 17137:2 17139:2 17143:2 17164:1 17169:1 17175:1 17196:1 17202:4 17204:1 17207:1 17208:3 17250:1 17260:1 17267:1 17282:1 17304:1 17311:1 17317:3 17318:1 17319:1 17336:1 17340:1 17341:1 17345:1 17349:1 17382:1 17383:1 17384:1 17399:4 17404:1 17414:1 17415:1 17418:1 17422:1 17427:2 17432:1 17434:6 17455:1 17468:2 17470:1 17481:1 17486:1 17533:1 17540:2 17565:1 17570:1 17582:1 17599:1 17602:2 17603:1 17604:2 17616:1 17629:2 17637:1 17640:1 17662:1 17667:1 17695:1 17713:1 17718:1 17733:1 17750:1 17757:1 17781:5 17784:2 17791:1 17796:1 17826:1 17827:1 17833:1 17835:1 17844:4 17861:1 17873:1 17878:1 17891:3 17894:1 17897:25 17902:2 17936:1 17947:3 17961:1 17967:2 17974:2 17978:1 18044:2 18053:1 18069:1 18073:2 18080:2 18084:1 18098:1 18106:1 18107:2 18115:1 18117:2 18119:1 18141:1 18145:1 18153:1 18161:1 18189:1 18196:1 18217:1 18219:1 18232:1 18236:1 18255:5 18257:2 18258:1 18259:1 18261:1 18262:1 18270:4 18278:1 18281:1 18282:1 18283:1 18294:1 18295:1 18296:1 18303:1 18309:1 18311:1 18313:1 18332:1 18367:1 18370:2 18392:1 18394:1 18401:1 18402:1 18404:1 18412:1 18414:1 18415:2 18417:3 18426:1 18434:1 18435:1 18437:1 18449:1 18460:1 18461:1 18463:1 18465:1 18482:1 18489:3 18498:1 18499:7 18521:1 18524:1 18546:1 18549:1 18550:1 18558:1 18562:2 18575:1 18580:2 18582:1 18583:1 18608:1 18616:3 18628:1 18645:2 18652:1 18656:4 18666:2 18670:4 18681:1 18687:1 18718:1 18728:1 18730:1 18762:1 18763:11 18785:3 18799:1 18830:6 18835:1 18866:1 18881:1 18882:1 18891:1 18899:1 18909:1 18913:1 18916:3 18917:1 18927:2 18935:1 18942:1 18947:1 18958:3 18965:1 18996:1 19001:1 19005:5 19015:2 19022:1 19060:1 19067:1 19082:1 19086:1 19095:1 19134:1 19154:1 19159:1 19175:1 19176:3 19182:1 19188:1 19206:1 19208:1 19212:1 19217:2 19221:2 19231:1 19244:2 19262:1 19263:1 19266:1 19268:1 19280:1 19302:1 19324:1 19340:1 19346:1 19347:2 19361:2 19397:1 19426:2 19429:1 19430:1 19435:1 19467:1 19484:1 19485:1 19489:2 19490:1 19495:1 19496:1 19498:1 19542:1 19543:2 19561:1 19569:1 19572:1 19584:3 19588:2 19602:2 19609:1 19615:1 19618:1 19629:1 19633:1 19644:1 19654:1 19655:1 19657:1 19660:1 19663:4 19664:1 19669:1 19670:1 19672:1 19674:1 19681:1 19689:1 19700:1 19706:1 19733:1 19737:1 19748:1 19760:1 19768:1 19772:8 19776:1 19779:1 19784:1 19799:1 19828:1 19857:3 19861:1
5 2:1 5:1 28:1 33:1 35:3 65:1 68:3 70:1 105:3 131:1 145:1 160:3 164:1 167:1 178:1 185:3 196:1 200:1 215:1 220:1 221:1 227:1 233:2 246:4 261:1 272:1 278:1 289:1 297:1 312:1 316:1 348:2 349:2 352:1 353:1 365:1 366:1 382:2 390:1 393:2 399:3 413:1 417:1 418:2 422:1 434:1 453:1 461:2 477:1 480:2 483:1 485:1 495:2 510:3 511:1 525:1 530:1 540:1 547:1 559:1 565:1 573:2 574:3 576:1 592:1 595:1 600:1 605:1 615:2 625:1 639:1 641:1 661:3 699:1 714:1 720:1 738:1 749:3 754:1 763:1 793:1 797:1 798:1 811:1 825:1 826:2 833:3 834:1 849:2 861:1 864:1 865:2 880:6 881:1 901:1 909:1 918:1 931:2 942:1 943:1 950:2 971:2 972:1 980:2 1007:1 1014:1 1015:1 1017:1 1026:1 1028:1 1032:1 1045:1 1074:1 1083:1 1104:2 1108:2 1134:1 1138:1 1140:1 1145:2 1157:1 1176:1 1177:2 1194:2 1213:4 1214:2 1231:1 1232:3 1242:1 1252:1 1264:2 1274:4 1276:1 1279:2 1286:1 1288:4 1310:3 1312:1 1320:1 1323:1 1324:3 1328:2 1335:1 1336:2 1337:3 1340:4 1355:1 1357:2 1368:1 1380:4 1388:2 1392:1 1408:1 1415:1 1421:1 1424:2 1427:3 1434:3 1458:1 1463:6 1486:1 1493:1 1494:1 1498:1 1504:4 1512:1 1519:1 1576:2 1578:1 1616:1 1622:2 1628:1 1635:1 1637:1 1643:1 1649:2 1650:1 1653:2 1654:4 1657:3 1658:1 1659:3 1666:3 1670:3 1675:2 1677:2 1679:1 1680:1 1682:3 1683:1 1692:1 1694:1 1700:1 1714:1 1717:1 1721:1 1723:2 1732:1 1734:3 1735:1 1756:2 1759:1 1765:1 1766:1 1767:1 1777:1 1786:1 1826:1 1859:1 1862:2 1881:1 1884:1 1894:1 1901:1 1902:1 1910:2 1920:1 1923:1 1939:1 1942:1 1952:2 1963:2 1968:1 1970:1 1973:1 1975:1 1980:1 2012:1 2030:1 2035:1 2045:1 2050:2 2060:1 2066:1 2067:1 2068:1 2074:1 2078:2 2097:8 2108:1 2112:7 2123:1 2129:1 2133:1 2138:1 2139:3 2160:1 2175:1 2178:1 2180:1 2185:1 2195:1 2207:1 2220:2 2230:1 2255:4 2280:1 2298:1 2332:1 2345:1 2356:1 2363:1 2374:1 2383:1 2384:1 2394:2 2397:1 2405:1 2433:1 2435:1 2440:1 2450:1 2453:1 2471:9 2479:1 2490:1 2511:1 2521:1 2541:1 2544:1 2586:1 2609:1 2622:1 2623:2 2645:2 2647:1 2652:1 2656:2 2661:1 2663:2 2666:1 2673:1 2674:1 2695:1 2699:1 2713:1 2716:2 2717:2 2723:1 2735:2 2742:1 2746:1 2748:1 2750:1 2753:1 2757:2 2764:1 2791:1 2799:1 2801:1 2812:1 2815:2 2816:1 2823:7 2850:1 2870:1 2876:1 2882:2 2896:3 2916:1 2917:2 2922:1 2923:1 2928:1 2929:1 2939:1 2947:1 2951:1 2954:1 2955:1 2957:11 2972:4 2973:1 2975:2 2976:6 2977:2 2979:1 2982:2 2984:2 2990:1 2992:3 2999:1 3006:2 3007:2 3011:1 3014:1 3015:1 3051:1 3062:1 3065:1 3087:1 3095:1 3102:2 3117:1 3128:1 3137:1 3139:1 3143:1 3148:1 3153:1 3165:2 3169:1 3178:1 3179:1 3190:1 3192:1 3194:1 3196:1 3197:1 3222:1 3237:1 3239:1 3243:1 3253:1 3258:2 3263:1 3286:1 3287:1 3293:1 3323:1 3325:1 3326:1 3355:1 3365:2 3371:1 3407:1 3429:3 3467:1 3472:1 3500:1 3513:3 3516:3 3521:5 3532:1 3540:1 3547:1 3554:1 3580:1 3587:1 3590:1 3591:2 3594:3 3613:1 3619:1 3621:1 3627:1 3628:1 3640:1 3650:1 3668:2 3682:2 3692:2 3693:1 3694:1 3695:2 3700:1 3704:1 3705:1 3708:1 3719:1 3732:1 3745:1 3759:1 3761:1 3765:1 3778:2 3808:1 3830:1 3838:1 3854:2 3855:18 3857:1 3866:1 3868:4 3876:1 3882:1 3899:1 3910:1 3914:11 3941:1 3956:1 3958:1 3961:1 3965:1 3969:1 3977:3 4050:1 4052:2 4063:1 4095:1 4103:1 4115:1 4134:1 4135:1 4136:2 4142:2 4144:1 4159:1 4161:1 4177:1 4185:1 4202:1 4210:3 4214:2 4228:1 4246:3 4256:1 4258:2 4259:1 4279:3 4282:4 4300:1 4310:1 4345:1 4362:1 4363:1 4374:1 4380:2 4387:1 4401:1 4414:1 4419:6 4423:1 4430:1 4446:3 4455:2 4456:1 4462:1 4532:1 4558:1 4572:1 4578:1 4591:3 4595:1 4596:3 4598:2 4599:1 4601:2 4602:6 4603:4 4607:1 4609:1 4610:1 4613:1 4630:2 4633:1 4646:1 4650:4 4656:2 4660:1 4671:2 4677:1 4696:1 4714:1 4721:1 4725:5 4726:1 4727:17 4735:2 4739:1 4744:1 4752:1 4760:1 4761:1 4766:5 4777:2 4782:1 4800:1 4809:1 4822:2 4828:6 4830:2 4836:1 4844:2 4854:1 4859:1 4871:1 4885:1 4890:1 4891:1 4896:5 4900:1 4901:1 4906:1 4909:1 4934:1 4944:1 4952:2 4954:1 4983:1 5004:1 5012:1 5014:1 5017:1 5037:2 5039:1 5058:1 5076:1 5079:1 5099:2 5110:1 5112:1 5116:1 5119:1 5121:2 5125:1 5141:1 5145:1 5147:1 5153:1866 5155:1 5158:1 5168:2 5171:1 5187:1 5188:1 5195:1 5196:1 5212:4 5213:1 5230:1 5232:1 5237:1 5250:2 5259:1 5280:1 5288:1 5306:1 5311:2 5318:1 5334:1 5345:2 5358:1 5380:1 5400:1 5404:2 5414:1 5426:1 5427:1 5433:1 5441:1 5444:2 5447:1 5455:1 5482:1 5483:1 5487:1 5497:1 5526:1 5562:1 5573:1 5592:1 5612:1 5613:1 5616:3 5619:1 5620:1 5658:1 5662:1 5670:2 5683:5 5690:1 5695:1 5704:1 5741:1 5754:1 5757:1 5776:1 5825:2 5830:1 5840:1 5861:2 5864:1 5867:1 5909:2 5921:4 5930:2 5931:1 5934:3 5959:1 5967:1 5973:1 6010:1 6013:4 6016:2 6020:8 6025:1 6026:1 6035:3 6053:1 6054:1 6064:1 6069:1 6087:1 6095:1 6118:1 6133:1 6135:1 6139:1 6142:3 6155:3 6189:1 6212:2 6219:2 6221:1 6240:1 6262:1 6273:1 6281:1 6301:2 6311:1 6345:1 6375:4 6377:1 6387:1 6392:10 6395:1 6400:1 6405:2 6410:1 6434:1 6440:1 6459:2 6460:1 6483:1 6485:1 6533:1 6536:1 6538:4 6551:1 6571:1 6572:2 6576:1 6581:3 6582:1 6584:1 6586:1 6587:2 6590:1 6594:5 6597:1 6602:1 6604:1 6605:1 6607:1 6608:1 6637:4 6643:1 6649:1 6652:8 6658:1 6664:1 6672:1 6690:1 6691:2 6693:1 6695:1 6743:1 6744:1 6764:2 6797:1 6813:1 6828:6 6830:1 6839:1 6844:1 6845:3 6860:9 6877:2 6883:18 6886:3 6892:1 6947:2 6959:1 6967:2 6974:2 6990:1 6996:1 6998:1 6999:1 7001:1 7007:1 7013:1 7021:4 7034:1 7037:1 7043:1 7072:1 7091:1 7114:1 7127:1 7134:4 7140:1 7145:1 7153:1 7155:1 7169:1 7181:1 7183:1 7192:1 7198:1 7201:1 7218:1 7232:4 7244:1 7247:58 7250:1 7263:1 7271:1 7280:1 7284:1 7291:3 7312:1 7353:1 7357:1 7361:1 7384:1 7387:4 7409:1 7420:1 7422:7 7442:1 7443:1 7444:9 7450:2 7453:1 7454:2 7457:1 7459:1 7473:1 7478:1 7494:1 7504:1 7525:2 7540:1 7550:5 7556:1 7558:1 7560:1 7563:1 7564:2 7572:2 7574:1 7577:1 7578:1 7579:2 7582:4 7583:3 7584:1 7609:1 7642:1 7647:2 7652:1 7656:1 7668:1 7670:1 7678:1 7687:1 7692:1 7700:1 7701:1 7707:1 7710:2 7711:1 7731:3 7742:1 7743:1 7770:1 7783:1 7808:1 7835:2 7841:1 7843:1 7849:1 7874:1 7880:1 7900:1 7912:1 7913:1 7930:1 7940:1 7952:1 7957:3 7988:2 7998:1 8000:1 8009:1 8012:3 8013:3 8017:1 8023:2 8042:1 8050:1 8055:1 8056:2 8057:1 8058:4 8065:1 8094:3 8096:1 8098:1 8100:1 8105:2 8113:1 8116:1 8119:1 8128:1 8135:3 8137:1 8138:3 8152:1 8167:1 8192:2 8194:1 8196:3 8199:2 8200:1 8211:1 8231:1 8245:1 8247:3 8248:1 8253:1 8263:1 8267:1 8272:1 8280:1 8296:1 8324:1 8333:1 8339:1 8341:1 8346:1 8347:1 8358:2 8360:1 8368:1 8371:1 8382:1 8383:2 8387:5 8390:1 8391:1 8399:1 8411:1 8414:1 8421:1 8431:1 8434:1 8437:2 8441:1 8460:1 8491:1 8496:1 8507:1 8513:1 8520:3 8522:1 8532:1 8533:2 8539:1 8542:2 8546:1 8552:4 8554:1 8556:1 8559:1 8573:1 8576:1 8606:1 8616:4 8623:1 8626:2 8648:1 8651:1 8732:2 8742:1 8743:1 8755:1 8770:1 8772:1 8776:1 8779:1 8780:2 8785:1 8786:2 8794:1 8797:2 8809:4 8840:1 8843:1 8848:1 8859:1 8872:1 8886:1 8899:1 8901:2 8923:1 8926:1 8928:1 8959:2 8967:1 8968:1 8971:2 8980:1 8983:1 8986:1 8994:1 8996:1 9006:3 9019:1 9025:2 9026:1 9051:1 9067:1 9072:1 9084:1 9085:1 9090:1 9100:1 9103:2 9114:1 9117:1 9122:2 9125:1 9129:1 9159:1 9165:1 9177:1 9180:1 9183:1 9189:1 9191:1 9204:1 9228:1 9234:1 9237:1 9238:1 9251:4 9252:2 9253:1 9260:15 9261:2 9268:1 9275:1 9279:1 9283:1 9295:4 9303:1 9308:1 9309:1 9329:1 9333:1 9337:1 9347:1 9357:1 9360:2 9370:1 9378:1 9380:1 9385:1 9388:2 9394:1 9404:1 9406:8 9429:1 9432:1 9443:2 9444:4 9456:1 9461:1 9474:1 9478:1 9486:1 9499:2 9508:2 9512:1 9522:1 9525:1 9534:2 9548:3 9560:1 9569:1 9591:1 9594:5 9597:1 9605:2 9606:1 9612:1 9613:1 9624:9 9625:1 9626:1 9627:2 9632:2 9641:2 9657:1 9659:1 9675:9 9683:2 9693:1 9698:1 9704:2 9712:1 9721:5 9759:1 9780:1 9787:1 9788:1 9795:1 9798:2 9813:2 9817:1 9818:1 9822:1 9829:1 9842:1 9859:1 9865:3 9870:2 9879:2 9884:1 9886:1 9888:1 9890:1 9904:1 9910:2 9916:1 9917:1 9920:1 9924:3 9926:1 9929:1 9940:1 9948:1 9952:1 9959:1 9963:1 9968:1 9980:2 9983:1 9992:1 10001:1 10009:1 10010:1 10013:1 10044:2 10045:1 10058:1 10059:3 10068:1 10070:1 10075:1 10092:1 10098:1 10105:3 10111:5 10115:1 10125:2 10127:1 10129:7 10160:1 10175:1 10193:4 10200:2 10204:3 10212:1 10215:1 10223:1 10243:1 10262:1 10263:2 10271:1 10272:4 10280:1 10286:1 10297:1 10298:1 10306:1 10315:1 10318:1 10335:1 10349:4 10356:1 10376:1 10377:1 10378:1 10398:2 10399:2 10409:4 10442:3 10459:27 10463:1 10468:2 10479:19 10484:8 10485:1 10494:1 10504:1 10551:1 10554:4 10567:2 10570:1 10573:4 10595:2 10632:2 10639:2 10640:1 10642:1 10649:1 10654:1 10685:2 10720:1 10721:5 10725:2 10740:1 10742:1 10749:1 10756:9 10764:1 10769:1 10777:1 10790:1 10797:1 10820:3 10824:1 10845:1 10857:1 10865:2 10868:1 10877:1 10886:1 10892:2 10922:1 10925:1 10930:1 10934:1 10945:1 10948:1 10957:1 10963:1 10968:1 10972:1 10978:1 10982:1 10990:1 10996:1 11013:1 11017:1 11032:2 11046:2 11050:2 11055:1 11058:32 11081:1 11082:1 11085:1 11088:1 11099:1 11117:1 11123:1 11126:1 11132:1 11140:1 11159:1 11164:1 11175:1 11180:1 11195:1 11197:7 11200:8 11272:2 11273:1 11276:1 11280:2 11289:1 11310:2 11311:1 11319:1 11321:5 11326:1 11328:1 11330:2 11362:2 11376:2 11403:3 11405:2 11407:1 11408:1 11415:2 11416:2 11417:1 11420:3 11433:1 11439:1 11446:4 11448:1 11456:1 11457:1 11458:1 11459:2 11473:2 11496:1 11520:1 11523:1 11527:1 11559:1 11563:2 11565:1 11568:3 11573:3 11588:1 11607:1 11608:1 11623:1 11634:1 11637:1 11639:1 11641:3 11646:1 11649:1 11652:1 11654:1 11656:3 11658:2 11664:1 11667:1 11668:1 11669:1 11678:1 11679:2 11687:2 11702:3 11715:1 11721:1 11724:1 11730:7 11732:1 11735:1 11736:3 11765:1 11770:1 11773:1 11782:1 11800:1 11829:2 11831:3 11835:1 11842:1 11864:1 11866:1 11877:2 11881:1 11885:1 11888:1 11895:1 11898:1 11914:1 11921:1 11937:1 11951:1 11958:1 11978:1 11980:1 11992:1 12000:1 12019:1 12026:1 12037:1 12043:1 12052:4 12055:1 12063:1 12102:1 12116:1 12130:1 12132:1 12138:1 12161:1 12172:1 12186:1 12210:1 12228:1 12234:1 12245:1 12251:1 12256:2 12260:2 12274:1 12280:3 12289:2 12305:1 12328:1 12331:1 12355:1 12357:3 12365:1 12392:1 12397:2 12405:1 12415:1 12433:1 12435:2 12437:1 12439:1 12440:1 12454:1 12461:2 12471:1 12480:1 12481:1 12497:3 12499:1 12519:1 12532:1 12537:1 12541:1 12556:2 12557:1 12558:1 12559:1 12566:3 12572:1 12577:2 12578:1 12581:2 12585:3 12591:1 12592:1 12610:2 12611:1 12617:1 12640:1 12642:2 12648:1 12672:2 12678:1 12687:1 12688:2 12709:1 12710:1 12712:1 12713:1 12722:1 12723:1 12726:1 12728:1 12731:3 12739:1 12747:1 12752:1 12759:1 12769:1 12772:1 12779:1 12808:1 12809:1 12828:3 12836:1 12858:1 12877:1 12893:1 12914:1 12918:2 12938:1 12962:5 12970:1 12977:1 12978:3 12983:1 12993:2 13005:1 13018:1 13019:3 13021:1 13028:1 13041:1 13048:1 13052:1 13056:2 13058:1 13072:1 13087:1 13100:1 13102:2 13106:1 13108:1 13121:1 13136:1 13141:2 13142:1 13143:1 13153:1 13156:1 13170:1 13179:1 13189:1 13192:1 13197:1 13200:3 13203:3 13207:6 13208:1 13212:1 13214:1 13219:1 13231:2 13237:1 13238:4 13240:1 13247:1 13250:1 13256:3 13266:1 13269:1 13307:1 13358:2 13370:5 13383:1 13386:1 13388:1 13402:1 13426:2 13432:1 13446:1 13448:2 13462:1 13481:1 13483:3 13485:3 13491:2 13506:3 13508:1 13516:1 13517:2 13538:1 13546:1 13556:1 13574:1 13583:1 13585:1 13586:2 13627:3 13628:2 13631:1 13642:1 13646:1 13652:1 13655:1 13659:1 13660:1 13662:3 13668:1 13670:2 13672:1 13677:2 13682:1 13698:1 13703:2 13727:1 13735:1 13753:1 13759:1 13769:1 13783:1 13789:5 13812:1 13817:1 13825:2 13826:1 13853:1 13866:6 13876:1 13891:1 13899:4 13902:2 13904:2 13907:1 13911:1 13912:3 13913:5 13915:1 13918:1 13921:1 13924:1 13926:2 13927:1 13934:2 13939:10 13942:2 13944:2 13947:1 13948:5 13950:1 13956:1 13959:1 13981:1 13983:3 13999:1 14049:1 14051:2 14055:1 14058:1 14059:1 14060:1 14064:1 14077:1 14090:1 14095:2 14100:4 14105:1 14112:2 14140:1 14142:1 14148:1 14151:1 14172:3 14188:1 14199:1 14205:1 14212:2 14228:1 14238:1 14258:1 14261:1 14271:2 14278:1 14279:1 14284:1 14286:1 14288:1 14293:1 14298:5 14311:1 14338:1 14344:1 14346:2 14349:1 14353:1 14361:1 14362:1 14363:3 14371:1 14374:1 14376:1 14383:1 14411:1 14413:1 14429:2 14446:1 14470:2 14472:1 14479:1 14492:1 14498:1 14527:3 14532:1 14535:1 14575:2 14599:1 14603:1 14618:1 14624:2 14625:2 14636:1 14637:3 14641:5 14651:4 14656:1 14663:1 14664:1 14672:1 14687:1 14694:2 14698:1 14701:1 14706:1 14739:2 14747:1 14756:1 14770:2 14775:1 14779:1 14780:1 14781:1 14796:1 14807:1 14811:7 14815:1 14828:5 14845:1 14846:1 14852:1 14853:1 14856:1 14858:1 14868:1 14884:1 14889:2 14895:1 14916:1 14933:2 14957:1 14981:1 15003:1 15025:3 15040:2 15048:1 15051:1 15052:1 15055:1 15069:1 15086:1 15089:1 15096:1 15097:1 15110:3 15113:1 15120:1 15130:1 15135:1 15139:1 15142:1 15149:2 15156:2 15166:1 15170:1 15171:10 15190:1 15195:1 15210:1 15215:1 15226:1 15230:1 15232:4 15241:1 15249:2 15254:1 15256:1 15262:1 15265:2 15267:2 15268:1 15287:1 15305:1 15308:1 15311:1 15331:1 15351:1 15354:1 15356:1 15363:1 15370:1 15396:1 15404:2 15413:1 15452:2 15455:1 15457:3 15458:5 15461:1 15466:1 15478:1 15490:1 15493:1 15499:1 15511:5 15513:1 15514:1 15516:1 15521:5 15525:1 15527:1 15532:4 15537:1 15545:2 15560:1 15572:2 15582:5 15584:2 15587:1 15592:1 15596:1 15598:11 15607:1 15608:3 15614:1 15616:1 15618:1 15619:1 15635:2 15643:2 15651:1 15678:2 15679:1 15681:1 15693:1 15698:1 15703:1 15710:3 15721:3 15727:1 15730:1 15741:1 15753:1 15760:1 15764:1 15773:1 15774:1 15776:1 15797:2 15806:1 15820:1 15827:1 15865:2 15873:1 15876:1 15878:1 15882:5 15886:4 15890:1 15922:1 15936:1 15940:1 15949:1 15957:1 15960:1 15962:2 15965:1 15966:3 15983:2 15990:1 16001:1 16019:1 16020:2 16023:1 16029:1 16032:1 16057:1 16060:2 16065:1 16067:1 16101:1 16109:1 16115:1 16122:2 16123:3 16125:1 16132:1 16136:1 16145:1 16147:1 16154:1 16157:2 16175:4 16181:1 16202:1 16274:1 16299:1 16301:1 16305:1 16308:1 16309:1 16314:1 16329:2 16333:2 16345:2 16350:1 16364:1 16369:2 16374:1 16379:1 16395:1 16399:1 16408:1 16425:1 16462:1 16475:1 16509:1 16535:3 16558:1 16560:2 16575:1 16579:1 16583:1 16587:1 16591:1 16592:2 16594:1 16624:1 16630:1 16652:1 16662:1 16668:1 16670:1 16679:1 16687:1 16693:1 16705:1 16706:1 16707:1 16746:2 16753:1 16756:3 16763:3 16766:1 16776:1 16785:1 16792:1 16793:1 16807:1 16810:1 16819:1 16820:1 16825:1 16826:2 16827:1 16842:1 16853:1 16875:1 16880:1 16886:2 16900:1 16902:1 16905:2 16915:1 16917:2 16919:1 16922:2 16940:1 16948:1 16957:1 16961:4 16962:2 16978:1 16981:1 16983:1 16999:1 17000:1 17002:2 17003:1 17006:1 17008:1 17009:1 17021:2 17024:2 17029:1 17031:2 17034:2 17043:1 17050:1 17054:2 17058:1 17060:1 17067:1 17071:2 17076:1 17088:1 17093:1 17097:3 17108:1 17113:1 17119:2 17120:3 17125:1 17137:2 17139:2 17143:2 17164:1 17169:1 17175:1 17196:1 17202:4 17204:1 17207:1 17208:3 17220:1 17250:1 17260:1 17267:1 17282:1 17304:1 17311:1 17317:3 17318:1 17319:1 17336:1 17340:1 17341:1 17345:1 17349:1 17382:1 17383:1 17384:1 17399:4 17404:1 17414:1 17415:1 17418:1 17422:1 17427:2 17432:1 17434:7 17455:1 17468:2 17470:1 17481:1 17486:1 17513:1 17533:1 17540:2 17561:1 17565:1 17570:1 17572:1 17582:1 17599:1 17602:2 17603:1 17604:2 17616:1 17629:2 17637:1 17640:3 17662:1 17667:1 17695:1 17713:1 17718:1 17733:1 17750:1 17757:1 17781:6 17784:2 17791:1 17796:1 17826:1 17827:1 17828:1 17833:1 17835:1 17844:4 17861:1 17873:1 17878:1 17891:3 17894:1 17897:25 17902:2 17936:1 17947:3 17961:1 17967:2 17974:2 17978:1 18044:2 18053:1 18069:1 18073:2 18080:2 18084:1 18098:1 18106:1 18107:2 18115:1 18117:2 18119:1 18141:1 18145:1 18153:1 18161:1 18189:1 18196:1 18217:1 18219:1 18232:1 18236:1 18255:5 18257:2 18258:1 18259:2 18261:1 18262:1 18270:4 18278:1 18281:1 18282:1 18283:1 18294:1 18295:1 18296:1 18303:1 18309:1 18311:1 18313:1 18332:1 18367:1 18370:2 18392:1 18394:1 18401:1 18402:1 18404:1 18412:1 18414:1 18415:2 18417:4 18426:1 18434:1 18435:1 18437:1 18449:1 18460:1 18461:1 18463:1 18465:1 18474:1 18482:1 18489:3 18498:1 18499:7 18521:1 18524:1 18546:1 18549:1 18550:1 18558:1 18562:2 18575:1 18580:2 18582:1 18583:1 18584:1 18608:1 18616:3 18628:1 18645:2 18652:1 18656:4 18666:2 18670:4 18681:1 18687:1 18718:1 18728:1 18730:1 18762:1 18763:12 18785:3 18794:1 18799:1 18830:6 18835:1 18866:1 18881:1 18882:1 18891:1 18899:1 18909:1 18913:1 18916:3 18917:1 18927:2 18935:1 18942:1 18947:1 18958:3 18965:1 18996:1 19001:1 19005:5 19015:2 19022:1 19045:1 19060:1 19067:1 19082:1 19086:1 19095:1 19134:1 19154:1 19159:2 19175:1 19176:3 19182:1 19188:1 19206:1 19208:1 19212:1 19217:3 19221:2 19231:1 19242:1 19244:2 19262:1 19263:1 19266:1 19268:1 19280:1 19302:1 19324:1 19340:1 19346:1 19347:2 19361:2 19397:1 19405:1 19426:2 19429:1 19430:1 19435:1 19467:1 19484:1 19485:1 19489:2 19490:1 19495:1 19496:1 19498:1 19542:1 19543:2 19561:1 19569:1 19572:1 19584:3 19588:2 19602:2 19609:1 19615:1 19618:1 19629:1 19633:1 19644:1 19654:1 19655:1 19657:1 19660:1 19663:4 19664:1 19669:1 19670:1 19672:1 19674:1 19681:1 19689:1 19700:1 19706:1 19733:1 19737:1 19748:1 19760:1 19768:1 19772:8 19776:1 19779:1 19784:1 19799:1 19828:1 19857:3 19861:1
5 2:1 5:1 28:1 33:1 35:3 65:1 68:3 70:1 105:3 131:1 145:1 160:3 164:1 167:1 178:1 185:3 196:1 200:1 215:1 220:1 221:1 227:1 233:2 246:4 261:1 272:2 274:1 278:1 289:1 297:1 312:2 316:1 348:2 349:2 352:1 353:1 365:1 366:1 382:2 390:1 393:2 399:3 413:1 417:1 418:2 422:1 434:1 453:1 461:2 477:1 480:2 483:1 485:1 495:2 510:3 511:1 525:1 530:1 540:1 547:1 559:1 565:1 573:2 574:3 576:1 592:1 595:1 600:1 605:1 615:2 625:1 639:1 641:1 661:3 699:1 714:1 720:1 738:1 749:3 754:1 763:1 793:1 797:1 798:1 811:1 825:1 826:2 833:3 834:1 849:2 861:1 864:1 865:2 880:6 881:1 901:1 909:1 918:1 931:2 942:1 943:1 950:2 971:2 972:1 980:2 1007:1 1014:1 1015:1 1017:1 1026:1 1028:1 1032:1 1045:1 1074:1 1083:2 1104:2 1108:2 1134:1 1138:1 1140:1 1145:2 1157:1 1176:1 1177:2 1194:2 1213:4 1214:3 1231:1 1232:5 1242:1 1243:1 1252:1 1264:2 1274:4 1276:1 1279:2 1286:1 1288:4 1310:3 1312:1 1320:1 1323:1 1324:3 1328:2 1335:1 1336:2 1337:3 1340:4 1355:1 1357:2 1368:1 1380:4 1388:2 1392:1 1408:1 1415:1 1421:1 1424:2 1427:3 1434:3 1458:1 1463:6 1486:1 1493:1 1494:1 1498:1 1504:4 1512:1 1519:1 1566:1 1576:2 1578:1 1616:1 1622:2 1628:1 1635:1 1637:1 1643:1 1649:2 1650:1 1653:2 1654:4 1657:4 1658:1 1659:3 1666:3 1670:3 1675:2 1677:2 1679:1 1680:1 1681:1 1682:3 1683:1 1692:1 1694:1 1700:1 1714:1 1717:1 1721:1 1723:2 1732:1 1734:3 1735:1 1742:1 1756:2 1759:1 1765:1 1766:1 1767:1 1777:1 1786:1 1826:1 1859:1 1862:2 1881:1 1884:1 1894:1 1901:1 1902:1 1910:2 1920:1 1921:1 1923:1 1939:1 1942:1 1952:2 1963:2 1968:1 1970:1 1973:1 1975:1 1980:1 2012:1 2030:1 2035:1 2045:1 2050:2 2060:1 2066:1 2067:1 2068:1 2074:1 2078:2 2088:1 2097:8 2108:1 2112:8 2123:1 2129:1 2133:1 2138:1 2139:3 2160:1 2175:1 2178:1 2180:1 2185:1 2195:1 2207:1 2220:2 2230:1 2255:4 2280:1 2298:1 2302:1 2332:1 2345:1 2356:1 2363:1 2374:1 2383:1 2384:1 2394:2 2397:1 2405:1 2433:1 2435:1 2440:1 2450:1 2453:1 2471:9 2479:1 2490:1 2511:1 2521:2 2535:1 2541:1 2544:1 2586:1 2590:1 2609:1 2622:1 2623:3 2645:2 2647:1 2652:1 2656:2 2661:1 2663:2 2666:1 2673:1 2674:1 2695:1 2699:1 2713:1 2716:2 2717:2 2723:1 2735:2 2742:1 2746:1 2748:1 2750:1 2753:1 2757:2 2764:1 2791:1 2799:1 2801:1 2812:1 2815:2 2816:1 2823:7 2850:1 2870:1 2876:1 2882:2 2896:3 2916:1 2917:3 2922:1 2923:1 2928:1 2929:1 2939:1 2947:1 2951:1 2954:1 2955:1 2957:11 2972:4 2973:1 2975:2 2976:7 2977:2 2978:2 2979:1 2982:3 2984:2 2990:1 2992:3 2996:1 2999:1 3006:2 3007:2 3011:1 3014:1 3015:1 3042:1 3051:1 3062:1 3065:1 3087:1 3095:1 3102:2 3117:1 3128:1 3132:1 3137:1 3139:1 3143:1 3148:1 3153:1 3165:2 3169:1 3178:1 3179:1 3190:1 3192:1 3194:1 3196:1 3197:1 3222:1 3237:1 3239:1 3243:1 3253:1 3258:2 3263:1 3286:1 3287:1 3289:1 3293:1 3323:1 3325:1 3326:1 3355:1 3365:3 3371:1 3407:1 3429:3 3467:1 3472:1 3487:1 3500:1 3513:4 3516:3 3521:5 3532:1 3540:1 3547:1 3554:1 3580:1 3587:1 3590:1 3591:2 3594:3 3613:1 3619:1 3621:1 3627:1 3628:1 3640:1 3643:1 3650:1 3668:2 3682:2 3692:2 3693:1 3694:1 3695:2 3700:1 3704:1 3705:1 3708:2 3719:1 3732:1 3745:1 3759:1 3761:1 3765:1 3778:2 3808:1 3830:1 3838:1 3854:2 3855:18 3857:1 3866:1 3868:5 3876:1 3882:1 3899:1 3910:1 3914:12 3941:1 3956:1 3958:1 3961:1 3965:1 3969:1 3977:3 4049:1 4050:1 4052:2 4063:1 4075:1 4095:1 4103:1 4115:1 4134:1 4135:1 4136:2 4142:2 4144:1 4159:1 4161:1 4177:1 4185:1 4202:1 4210:3 4214:2 4228:1 4239:1 4246:3 4256:1 4258:2 4259:1 4279:3 4282:4 4300:1 4310:1 4345:1 4362:1 4363:1 4374:1 4380:2 4387:1 4401:1 4414:1 4419:6 4423:1 4430:1 4446:3 4455:2 4456:1 4462:1 4532:1 4558:1 4572:1 4578:1 4591:3 4595:1 4596:3 4598:2 4599:1 4601:2 4602:6 4603:4 4606:1 4607:2 4609:1 4610:1 4613:1 4630:2 4633:1 4646:1 4650:4 4656:2 4660:1 4671:2 4677:1 4696:1 4714:1 4721:1 4725:5 4726:1 4727:18 4735:2 4739:1 4744:1 4752:2 4760:1 4761:1 4766:5 4777:2 4782:1 4800:1 4809:1 4822:2 4828:6 4830:2 4832:1 4836:1 4844:2 4854:1 4859:1 4871:1 4883:1 4885:1 4890:1 4891:1 4896:5 4900:1 4901:1 4906:1 4909:1 4934:1 4944:1 4952:2 4954:1 4983:1 5004:1 5012:1 5014:1 5017:1 5037:2 5039:1 5058:1 5076:1 5079:1 5099:2 5110:1 5112:1 5116:1 5119:1 5121:2 5125:1 5141:1 5145:1 5147:1 5153:1989 5155:1 5158:2 5168:3 5171:1 5187:1 5188:1 5191:1 5195:1 5196:1 5212:4 5213:1 5230:1 5232:1 5237:1 5250:2 5259:1 5280:1 5288:1 5306:1 5311:2 5318:1 5334:1 5345:2 5358:1 5380:1 5400:1 5404:2 5414:1 5426:1 5427:1 5433:1 5441:1 5444:2 5447:1 5455:1 5482:1 5483:1 5487:1 5497:1 5526:1 5562:1 5573:1 5592:1 5612:1 5613:1 5616:3 5619:1 5620:1 5658:1 5662:1 5670:2 5683:5 5690:1 5695:1 5704:1 5741:1 5754:1 5755:1 5757:1 5776:1 5825:3 5830:2 5840:1 5859:1 5861:3 5864:1 5867:1 5909:2 5921:4 5930:3 5931:1 5934:3 5956:1 5959:1 5967:1 5973:1 5981:1 6010:1 6013:4 6016:2 6020:8 6025:1 6026:1 6035:3 6053:1 6054:2 6064:1 6069:1 6087:1 6095:1 6118:1 6133:1 6135:1 6139:1 6142:4 6155:3 6189:1 6212:2 6219:2 6221:1 6240:1 6262:1 6273:1 6281:1 6301:2 6311:1 6345:1 6375:4 6377:1 6387:1 6392:11 6395:1 6400:1 6405:2 6410:1 6434:1 6440:1 6459:2 6460:1 6483:1 6485:1 6533:1 6536:1 6538:5 6551:1 6571:1 6572:2 6576:1 6581:4 6582:1 6584:1 6586:1 6587:2 6590:1 6594:5 6597:1 6602:1 6604:1 6605:1 6607:1 6608:1 6637:4 6643:1 6649:1 6652:8 6658:1 6664:1 6672:1 6690:1 6691:2 6693:1 6695:1 6743:1 6744:1 6764:2 6797:1 6813:1 6828:6 6830:1 6839:1 6844:1 6845:3 6860:9 6866:1 6877:2 6883:18 6886:4 6892:1 6915:1 6947:3 6959:1 6967:2 6974:2 6990:1 6996:1 6998:1 6999:1 7001:1 7007:1 7013:1 7021:4 7034:1 7037:1 7043:1 7060:1 7072:1 7091:1 7114:1 7127:1 7134:4 7140:1 7145:1 7153:1 7155:1 7169:1 7181:1 7183:1 7192:1 7198:1 7201:1 7204:1 7218:1 7232:4 7244:1 7247:60 7250:1 7263:1 7271:1 7280:1 7284:1 7291:4 7312:1 7353:1 7357:1 7361:1 7384:1 7387:4 7409:1 7420:1 7422:7 7442:1 7443:1 7444:9 7450:2 7453:1 7454:2 7457:1 7459:1 7473:1 7478:1 7494:1 7504:1 7525:3 7540:1 7550:5 7556:2 7558:1 7560:1 7563:1 7564:2 7568:1 7572:2 7574:1 7577:1 7578:1 7579:2 7582:4 7583:3 7584:1 7609:1 7642:1 7647:2 7652:1 7656:1 7668:1 7670:1 7678:1 7687:1 7692:1 7700:1 7701:1 7707:1 7710:2 7711:1 7731:3 7742:1 7743:1 7770:1 7783:1 7808:1 7835:2 7841:1 7843:1 7849:1 7874:1 7878:1 7880:1 7900:1 7912:1 7913:1 7930:1 7940:1 7952:1 7957:3 7988:2 7998:1 8000:1 8009:1 8012:3 8013:3 8017:1 8023:2 8042:1 8050:1 8055:1 8056:2 8057:1 8058:4 8065:1 8094:3 8096:1 8098:1 8100:1 8105:2 8113:1 8116:1 8119:1 8128:1 8135:3 8137:1 8138:3 8152:1 8167:1 8192:3 8194:1 8196:3 8199:2 8200:1 8211:1 8231:1 8245:1 8247:4 8248:1 8253:1 8263:1 8267:1 8272:1 8280:1 8296:1 8324:1 8333:1 8339:1 8341:1 8346:1 8347:1 8358:2 8360:1 8368:1 8371:1 8382:1 8383:2 8387:5 8390:1 8391:1 8399:1 8411:1 8414:1 8421:1 8431:1 8434:1 8437:2 8441:1 8456:1 8460:1 8491:1 8496:1 8507:1 8513:1 8520:3 8522:1 8532:1 8533:2 8539:1 8542:2 8546:1 8552:4 8554:1 8556:1 8559:1 8573:1 8576:1 8606:1 8616:4 8623:1 8626:2 8648:1 8651:1 8664:1 8669:1 8678:1 8712:1 8732:2 8742:1 8743:1 8744:1 8755:1 8770:1 8772:1 8776:1 8779:1 8780:2 8785:1 8786:2 8794:1 8797:2 8809:4 8840:1 8843:1 8848:1 8859:1 8860:1 8872:1 8886:1 8899:1 8901:2 8923:1 8926:1 8928:1 8953:1 8959:2 8967:1 8968:1 8971:2 8980:1 8983:1 8986:1 8994:1 8996:1 9006:3 9019:1 9025:2 9026:1 9051:1 9067:1 9072:1 9084:1 9085:1 9090:1 9100:1 9103:2 9114:1 9117:1 9122:2 9124:1 9125:1 9129:2 9159:1 9162:1 9165:1 9177:1 9180:1 9183:1 9185:1 9189:1 9191:1 9204:1 9228:1 9234:1 9237:1 9238:1 9251:4 9252:3 9253:1 9260:16 9261:2 9268:1 9275:1 9279:1 9283:1 9295:4 9303:1 9308:1 9309:1 9329:1 9333:1 9337:1 9347:1 9357:1 9360:2 9370:1 9378:1 9380:1 9385:1 9388:2 9394:1 9404:1 9406:9 9429:1 9432:1 9443:2 9444:4 9456:1 9461:1 9474:1 9478:1 9486:1 9499:2 9508:2 9512:1 9522:1 9525:1 9534:2 9548:3 9560:1 9569:1 9591:1 9594:5 9597:1 9605:2 9606:1 9612:1 9613:1 9624:9 9625:1 9626:1 9627:2 9632:2 9641:2 9657:1 9659:1 9675:9 9683:2 9693:1 9698:1 9704:2 9712:1 9721:5 9759:1 9780:1 9787:1 9788:1 9795:1 9798:2 9813:2 9817:1 9818:1 9822:1 9829:1 9842:1 9859:1 9865:3 9870:2 9879:2 9884:1 9886:1 9888:1 9890:1 9904:1 9910:2 9916:1 9917:1 9920:1 9924:3 9926:1 9929:1 9940:1 9948:1 9952:1 9959:1 9963:1 9968:1 9980:2 9983:1 9992:1 10001:1 10009:1 10010:1 10013:2 10044:2 10045:1 10058:1 10059:3 10068:2 10070:1 10075:1 10092:1 10098:1 10105:3 10111:5 10115:1 10125:2 10127:1 10129:7 10160:1 10175:1 10193:4 10200:2 10204:3 10212:1 10215:1 10223:1 10243:1 10254:1 10262:1 10263:2 10271:1 10272:4 10280:1 10283:1 10286:1 10297:1 10298:1 10301:1 10306:1 10315:1 10318:1 10334:1 10335:1 10349:4 10356:1 10376:1 10377:1 10378:1 10398:2 10399:2 10409:4 10442:3 10459:32 10463:1 10468:2 10479:19 10484:9 10485:1 10494:1 10504:1 10510:1 10551:1 10554:4 10564:1 10567:2 10570:1 10573:4 10595:2 10632:2 10639:2 10640:1 10642:1 10649:1 10654:1 10685:2 10720:1 10721:7 10725:2 10740:1 10742:1 10749:1 10756:9 10764:1 10769:1 10773:1 10777:1 10790:1 10797:1 10820:3 10822:1 10824:1 10845:1 10857:1 10865:2 10868:1 10877:1 10886:1 10892:2 10922:1 10925:1 10930:1 10934:1 10945:1 10948:1 10957:1 10963:1 10968:1 10972:1 10978:1 10982:1 10990:1 10996:1 11013:1 11017:1 11032:2 11046:2 11050:2 11055:1 11058:34 11075:1 11081:1 11082:1 11085:1 11088:1 11099:1 11117:1 11123:1 11126:1 11132:1 11140:1 11159:1 11164:1 11175:1 11180:1 11195:1 11197:8 11200:8 11272:2 11273:1 11276:1 11280:2 11289:1 11310:2 11311:1 11313:1 11319:1 11321:6 11326:1 11328:1 11330:2 11357:1 11362:2 11376:3 11379:1 11403:3 11405:2 11407:1 11408:1 11415:2 11416:2 11417:1 11420:3 11433:1 11439:1 11446:4 11448:1 11456:1 11457:1 11458:1 11459:2 11473:2 11496:1 11520:1 11523:1 11527:1 11559:1 11563:2 11565:1 11568:3 11573:3 11588:1 11600:1 11607:1 11608:1 11623:1 11634:1 11637:1 11639:1 11641:3 11646:1 11649:1 11652:1 11654:1 11656:3 11658:2 11664:1 11667:1 11668:1 11669:1 11678:1 11679:2 11687:2 11698:1 11702:3 11715:1 11721:1 11724:1 11730:7 11732:1 11735:2 11736:3 11765:1 11770:1 11773:1 11782:1 11800:1 11829:2 11831:3 11835:1 11842:1 11864:1 11866:1 11877:2 11881:1 11885:1 11888:1 11895:1 11898:1 11914:1 11921:1 11937:1 11951:1 11958:1 11978:1 11980:1 11992:1 12000:1 12019:1 12026:1 12037:1 12043:1 12052:4 12055:1 12063:1 12102:1 12116:1 12130:1 12132:1 12138:1 12161:1 12172:1 12186:1 12210:1 12228:1 12234:1 12245:1 12251:1 12256:2 12260:2 12274:1 12280:3 12289:2 12305:1 12328:1 12331:1 12355:1 12357:3 12365:1 12392:1 12397:2 12405:1 12415:1 12433:1 12435:2 12437:1 12439:1 12440:1 12454:1 12461:2 12471:1 12480:1 12481:1 12497:3 12499:1 12519:1 12532:1 12537:2 12541:1 12556:2 12557:1 12558:1 12559:1 12566:3 12572:1 12577:2 12578:1 12581:2 12585:3 12591:1 12592:1 12610:2 12611:1 12617:1 12640:1 12642:2 12645:1 12648:1 12672:2 12678:1 12687:1 12688:3 12709:1 12710:1 12712:1 12713:1 12722:1 12723:1 12726:1 12728:1 12731:3 12739:1 12747:1 12752:1 12759:1 12769:1 12772:1 12779:1 12808:1 12809:1 12828:3 12836:1 12838:1 12858:1 12866:1 12877:2 12893:1 12914:1 12918:3 12922:1 12938:1 12962:5 12970:1 12977:1 12978:3 12983:1 12992:1 12993:2 13005:1 13018:1 13019:4 13021:1 13028:1 13041:1 13048:1 13052:1 13056:2 13058:1 13072:1 13087:1 13100:1 13102:2 13106:1 13108:1 13121:1 13136:1 13141:2 13142:1 13143:1 13153:1 13156:1 13170:1 13179:1 13189:1 13192:1 13197:1 13200:3 13203:3 13207:6 13208:1 13212:1 13214:1 13219:1 13231:2 13237:1 13238:5 13240:1 13247:1 13250:1 13256:3 13266:1 13269:1 13307:1 13358:2 13370:5 13383:1 13386:1 13388:1 13402:1 13426:2 13432:1 13446:1 13448:2 13462:1 13481:1 13483:3 13485:3 13491:2 13506:3 13508:1 13516:1 13517:2 13538:1 13546:1 13556:1 13574:1 13582:1 13583:1 13585:1 13586:2 13627:3 13628:2 13631:1 13642:1 13646:1 13652:2 13655:1 13659:1 13660:1 13662:3 13668:1 13670:2 13672:1 13677:2 13682:1 13684:1 13698:1 13703:2 13710:1 13727:1 13735:1 13753:1 13759:1 13769:1 13783:1 13789:5 13812:1 13817:1 13825:2 13826:1 13846:1 13853:1 13855:1 13866:7 13876:1 13891:1 13899:4 13902:2 13904:2 13907:1 13911:1 13912:3 13913:5 13915:1 13918:1 13921:1 13924:1 13926:2 13927:1 13934:2 13939:11 13942:2 13944:2 13947:1 13948:6 13950:1 13956:1 13959:1 13981:1 13983:3 13999:1 14049:1 14051:3 14055:1 14058:1 14059:1 14060:1 14064:1 14077:1 14090:1 14095:2 14100:5 14105:1 14112:2 14140:1 14142:1 14148:1 14151:1 14172:3 14188:1 14199:2 14205:1 14212:2 14228:1 14238:1 14258:1 14261:1 14271:2 14278:1 14279:1 14284:1 14286:1 14288:1 14293:1 14298:6 14311:1 14338:1 14344:1 14346:2 14349:1 14353:1 14361:1 14362:1 14363:3 14371:1 14374:1 14376:1 14383:1 14411:1 14413:1 14429:2 14446:1 14470:2 14472:1 14479:1 14492:1 14498:1 14527:3 14532:1 14535:1 14575:2 14599:1 14603:1 14618:2 14624:2 14625:2 14636:1 14637:4 14641:5 14651:5 14652:1 14656:1 14663:1 14664:1 14672:1 14687:1 14694:2 14698:1 14701:2 14705:1 14706:1 14739:2 14747:1 14756:1 14770:2 14775:1 14779:1 14780:1 14781:1 14796:1 14807:1 14811:7 14815:1 14828:5 14845:1 14846:1 14852:1 14853:1 14856:1 14858:1 14868:1 14884:1 14889:2 14895:1 14916:1 14933:2 14957:1 14981:1 15003:1 15004:1 15025:3 15040:2 15048:1 15051:1 15052:1 15055:1 15069:1 15086:1 15089:1 15096:1 15097:1 15110:4 15113:1 15120:1 15130:1 15135:1 15139:1 15142:1 15149:3 15156:2 15164:1 15166:1 15170:1 15171:10 15190:1 15195:1 15210:1 15215:1 15226:1 15230:1 15232:4 15241:1 15249:2 15254:1 15256:1 15262:1 15265:2 15267:2 15268:1 15287:1 15305:1 15308:1 15311:1 15331:1 15351:1 15354:1 15356:2 15363:1 15370:1 15396:1 15404:3 15413:1 15452:2 15455:1 15457:4 15458:6 15461:1 15466:1 15478:1 15490:1 15493:1 15499:1 15511:5 15513:1 15514:1 15516:1 15521:6 15525:1 15527:1 15532:6 15537:1 15545:2 15549:1 15560:1 15572:2 15582:5 15584:2 15587:1 15592:1 15596:1 15598:11 15607:1 15608:3 15614:1 15616:1 15618:1 15619:1 15635:2 15643:4 15651:1 15661:1 15678:2 15679:1 15681:1 15693:1 15698:1 15703:1 15710:3 15721:3 15727:1 15730:1 15741:1 15753:1 15760:1 15764:1 15773:1 15774:1 15776:1 15797:2 15806:1 15820:1 15827:1 15865:2 15873:1 15876:1 15878:1 15882:5 15886:4 15890:1 15922:1 15936:1 15940:1 15943:1 15949:1 15950:1 15957:1 15960:1 15962:2 15965:1 15966:3 15983:2 15990:1 16001:1 16019:1 16020:2 16023:1 16029:1 16032:1 16036:1 16057:1 16060:2 16065:1 16067:1 16101:1 16109:1 16115:1 16122:2 16123:3 16125:1 16132:1 16136:1 16145:1 16147:1 16154:1 16157:2 16175:4 16181:1 16202:1 16274:1 16297:1 16299:2 16301:1 16305:1 16308:1 16309:1 16314:1 16319:1 16329:3 16333:2 16345:2 16350:1 16364:1 16369:2 16374:1 16379:1 16395:1 16399:1 16406:1 16408:1 16425:1 16462:1 16475:1 16509:1 16535:3 16558:1 16560:2 16575:1 16579:1 16583:1 16587:1 16591:1 16592:2 16594:1 16624:1 16630:1 16652:1 16662:1 16668:1 16670:1 16679:1 16687:1 16693:1 16705:1 16706:1 16707:1 16746:2 16753:1 16756:3 16763:3 16766:1 16776:1 16785:1 16792:1 16793:1 16807:1 16810:1 16819:1 16820:1 16825:1 16826:2 16827:1 16842:1 16853:1 16875:1 16880:1 16886:2 16898:1 16900:1 16902:1 16905:2 16915:1 16917:2 16919:1 16922:2 16940:1 16948:1 16951:1 16953:1 16957:1 16961:4 16962:2 16978:2 16981:1 16983:1 16993:1 16999:1 17000:1 17002:2 17003:1 17006:1 17008:1 17009:2 17021:2 17024:2 17029:1 17031:2 17032:1 17034:2 17043:1 17050:1 17054:2 17058:1 17060:1 17067:1 17071:2 17076:2 17088:1 17093:1 17097:3 17108:1 17113:1 17119:2 17120:3 17125:1 17137:2 17139:2 17143:2 17164:1 17169:1 17175:1 17196:1 17202:4 17204:1 17207:1 17208:3 17220:1 17250:1 17260:1 17267:1 17282:1 17304:1 17311:1 17317:3 17318:1 17319:1 17336:1 17340:1 17341:1 17345:1 17349:1 17382:1 17383:1 17384:1 17399:4 17404:1 17414:1 17415:1 17418:1 17422:1 17427:2 17432:1 17434:8 17455:1 17468:2 17470:1 17481:1 17486:1 17511:1 17513:1 17533:1 17540:2 17561:1 17565:1 17570:1 17572:1 17582:1 17599:1 17602:2 17603:1 17604:2 17615:1 17616:1 17629:2 17637:1 17640:3 17662:1 17667:1 17695:1 17713:1 17718:1 17733:1 17750:1 17757:1 17781:6 17784:2 17791:1 17792:2 17796:1 17826:1 17827:1 17828:1 17833:1 17835:1 17844:4 17861:1 17873:1 17878:1 17891:3 17894:1 17897:25 17902:2 17936:1 17947:3 17961:1 17967:2 17974:2 17978:1 18044:2 18053:1 18069:1 18073:2 18080:2 18084:1 18098:1 18106:1 18107:2 18115:1 18117:2 18119:1 18141:1 18145:1 18151:1 18153:1 18161:1 18189:1 18190:1 18196:1 18217:1 18219:1 18232:1 18236:1 18255:5 18257:2 18258:1 18259:2 18261:1 18262:1 18270:4 18278:1 18281:1 18282:1 18283:1 18288:1 18294:1 18295:1 18296:1 18303:1 18305:1 18309:1 18311:1 18313:1 18325:1 18332:1 18367:1 18370:2 18392:1 18394:1 18401:1 18402:1 18404:1 18412:1 18414:1 18415:2 18417:4 18426:1 18434:1 18435:1 18437:1 18449:1 18460:1 18461:1 18463:1 18465:1 18474:1 18482:1 18489:3 18498:1 18499:7 18521:1 18524:1 18546:1 18549:1 18550:1 18558:1 18562:2 18575:1 18580:4 18582:1 18583:1 18584:1 18608:1 18616:3 18628:1 18645:2 18652:1 18656:4 18666:2 18670:4 18681:1 18687:1 18718:1 18728:1 18730:1 18762:1 18763:12 18785:3 18794:1 18799:1 18830:6 18835:2 18866:1 18881:1 18882:1 18891:1 18899:1 18909:1 18913:1 18916:4 18917:1 18927:2 18935:1 18942:1 18947:1 18958:3 18965:1 18996:1 19001:1 19005:5 19015:2 19022:1 19045:1 19060:1 19067:1 19082:1 19086:1 19095:1 19134:1 19154:1 19159:2 19175:1 19176:3 19182:1 19185:1 19188:1 19206:1 19208:1 19212:1 19217:3 19221:2 19231:1 19237:1 19242:1 19244:2 19262:1 19263:1 19266:1 19268:1 19280:1 19302:1 19322:1 19324:1 19340:1 19346:1 19347:2 19361:2 19397:1 19405:1 19426:2 19429:1 19430:1 19435:1 19467:1 19484:1 19485:1 19489:2 19490:1 19495:1 19496:1 19498:1 19502:1 19542:1 19543:3 19561:1 19569:1 19572:1 19584:3 19588:3 19602:2 19609:1 19615:1 19618:1 19629:1 19633:1 19644:1 19654:1 19655:1 19657:1 19660:1 19663:5 19664:1 19669:2 19670:1 19672:1 19674:1 19681:1 19689:1 19700:1 19706:1 19733:1 19737:1 19748:1 19760:1 19768:1 19772:8 19776:1 19779:1 19784:1 19799:1 19828:1 19857:3 19861:1
5 2:1 5:1 28:1 33:1 35:3 65:1 68:3 70:1 71:1 105:3 131:1 145:1 160:3 164:1 167:1 178:1 185:3 196:1 200:1 215:1 220:1 221:1 227:1 233:2 246:4 261:1 272:2 274:1 278:1 289:1 297:1 312:2 316:1 348:2 349:2 352:1 353:1 365:1 366:1 382:2 390:1 393:2 395:1 399:3 413:1 417:1 418:2 422:1 434:1 453:1 461:2 477:1 480:2 483:1 485:1 490:1 495:2 510:3 511:1 525:1 530:1 532:1 540:1 547:1 559:1 565:1 573:2 574:3 576:1 592:1 595:1 600:1 605:1 615:2 625:1 639:1 641:1 661:3 699:1 714:1 720:1 738:1 749:4 754:1 763:1 793:1 797:1 798:1 811:1 825:1 826:2 833:3 834:1 849:2 861:1 864:1 865:2 880:6 881:1 901:1 909:1 918:1 931:2 942:1 943:1 950:2 956:1 971:2 972:1 980:2 1007:1 1014:1 1015:1 1017:1 1026:1 1028:1 1032:1 1045:1 1074:1 1083:2 1104:2 1108:2 1110:1 1134:1 1138:1 1140:1 1145:2 1157:1 1176:1 1177:2 1185:1 1194:2 1213:4 1214:3 1231:1 1232:5 1242:1 1243:1 1252:1 1264:2 1274:4 1276:1 1279:2 1286:1 1288:4 1310:3 1312:2 1320:1 1323:1 1324:3 1328:3 1332:1 1335:1 1336:2 1337:3 1340:4 1355:1 1357:2 1362:1 1368:1 1380:4 1388:2 1392:1 1408:1 1415:1 1421:1 1424:2 1427:3 1434:3 1458:1 1463:6 1486:1 1493:1 1494:1 1498:1 1504:4 1512:1 1519:1 1566:1 1576:2 1578:1 1616:1 1622:2 1628:1 1635:1 1637:1 1643:1 1649:2 1650:1 1653:2 1654:4 1657:4 1658:1 1659:3 1666:3 1670:3 1675:2 1677:2 1679:1 1680:1 1681:1 1682:5 1683:1 1692:1 1694:1 1700:1 1714:1 1717:1 1721:1 1723:2 1732:1 1734:3 1735:1 1742:1 1756:2 1759:1 1765:1 1766:1 1767:1 1777:1 1786:1 1826:1 1859:1 1862:2 1881:1 1884:1 1894:1 1901:1 1902:1 1910:2 1920:1 1921:1 1923:1 1939:1 1942:1 1952:2 1963:2 1968:1 1970:1 1973:1 1975:1 1980:1 2012:1 2030:1 2035:1 2045:1 2050:2 2060:1 2066:1 2067:1 2068:1 2074:1 2078:2 2088:1 2097:8 2108:1 2112:8 2123:1 2129:1 2133:1 2138:1 2139:3 2160:1 2175:1 2178:1 2180:1 2185:1 2195:1 2207:1 2220:2 2230:1 2255:4 2280:1 2298:1 2302:1 2332:1 2335:1 2345:1 2356:1 2363:1 2374:1 2383:1 2384:1 2394:2 2397:1 2405:1 2433:1 2435:1 2440:1 2450:1 2453:1 2471:9 2479:1 2490:1 2511:1 2521:2 2535:1 2541:1 2544:1 2558:1 2586:1 2590:1 2609:1 2622:1 2623:3 2624:1 2645:2 2647:1 2652:1 2656:2 2661:1 2663:2 2666:1 2673:1 2674:1 2695:1 2699:1 2713:1 2716:2 2717:2 2723:1 2735:2 2742:1 2746:1 2748:1 2750:1 2753:1 2757:2 2764:1 2791:1 2799:1 2801:1 2812:1 2815:2 2816:1 2823:7 2850:1 2870:1 2876:1 2882:2 2896:3 2916:1 2917:3 2922:1 2923:1 2928:1 2929:1 2939:1 2947:1 2951:1 2954:1 2955:1 2957:11 2972:4 2973:1 2975:2 2976:7 2977:2 2978:2 2979:1 2982:3 2984:2 2990:1 2992:3 2996:1 2999:1 3002:1 3006:2 3007:2 3011:1 3014:1 3015:1 3042:1 3051:1 3062:1 3065:1 3087:1 3090:1 3095:1 3102:2 3117:1 3128:1 3132:1 3137:1 3139:1 3143:1 3148:1 3153:1 3165:3 3169:1 3178:1 3179:1 3190:1 3192:1 3194:1 3196:1 3197:1 3222:1 3237:1 3239:1 3243:1 3253:1 3258:2 3263:1 3286:1 3287:1 3289:1 3293:1 3323:1 3325:1 3326:1 3355:1 3365:3 3371:1 3407:1 3429:3 3446:1 3467:1 3472:1 3487:1 3500:1 3513:4 3516:3 3521:5 3532:1 3540:1 3547:1 3554:1 3580:1 3587:1 3590:1 3591:2 3594:3 3613:1 3619:1 3621:1 3627:1 3628:1 3640:1 3643:1 3650:1 3668:2 3682:3 3692:2 3693:1 3694:1 3695:2 3700:1 3704:1 3705:1 3708:2 3719:1 3732:1 3745:1 3759:1 3761:1 3765:1 3778:2 3808:1 3830:1 3838:1 3854:2 3855:18 3857:1 3861:1 3866:1 3868:6 3876:1 3882:1 3899:2 3910:1 3914:12 3932:1 3935:1 3941:1 3956:1 3958:2 3961:1 3965:1 3969:1 3977:3 3984:1 4049:1 4050:1 4052:2 4063:1 4075:1 4095:1 4102:1 4103:1 4115:1 4134:1 4135:1 4136:2 4142:2 4144:1 4159:1 4161:1 4177:1 4185:1 4202:1 4210:3 4214:2 4228:1 4233:1 4239:1 4246:3 4256:1 4258:2 4259:1 4279:3 4282:4 4300:1 4310:1 4345:1 4362:1 4363:1 4374:1 4380:2 4387:1 4401:1 4414:1 4419:6 4423:1 4430:1 4446:3 4455:2 4456:1 4462:1 4532:1 4558:1 4572:1 4578:1 4591:3 4595:1 4596:3 4598:3 4599:1 4601:2 4602:6 4603:4 4606:1 4607:2 4609:1 4610:1 4613:1 4630:2 4633:1 4646:1 4650:4 4656:3 4660:1 4671:2 4677:1 4696:1 4714:2 4721:1 4725:7 4726:1 4727:18 4731:1 4735:2 4739:1 4744:1 4752:2 4760:1 4761:1 4766:5 4777:2 4782:1 4800:1 4809:1 4822:2 4828:6 4830:2 4832:1 4836:1 4844:2 4854:1 4859:1 4871:1 4883:1 4885:1 4890:1 4891:2 4896:5 4900:1 4901:1 4906:1 4909:1 4934:1 4944:1 4952:2 4954:1 4983:1 5004:1 5012:1 5014:1 5017:1 5037:2 5039:1 5058:1 5076:1 5079:1 5099:2 5110:1 5112:1 5116:1 5119:1 5121:2 5125:1 5141:1 5145:1 5147:1 5153:2028 5155:1 5158:2 5168:3 5171:1 5187:1 5188:1 5191:1 5195:1 5196:1 5212:4 5213:1 5230:1 5232:1 5237:1 5250:2 5259:1 5280:1 5288:1 5306:1 5311:2 5318:1 5334:1 5338:1 5345:2 5358:1 5380:2 5400:1 5404:2 5414:1 5426:1 5427:1 5433:1 5441:1 5444:2 5447:1 5455:1 5482:1 5483:1 5487:1 5497:1 5526:1 5562:1 5573:1 5592:1 5612:1 5613:1 5616:3 5619:1 5620:1 5658:1 5662:1 5670:2 5683:5 5690:1 5695:1 5704:1 5741:1 5754:1 5755:1 5757:1 5776:1 5825:3 5830:2 5840:1 5845:1 5859:1 5861:3 5864:1 5867:1 5909:2 5921:4 5930:3 5931:1 5934:3 5956:1 5959:1 5967:1 5973:1 5981:1 6010:1 6013:4 6016:2 6020:8 6025:1 6026:1 6035:3 6053:1 6054:2 6064:1 6069:1 6087:1 6095:1 6118:1 6133:1 6135:1 6139:1 6142:4 6155:3 6178:1 6189:1 6212:3 6219:2 6221:1 6240:1 6262:1 6273:1 6281:1 6301:2 6311:1 6345:1 6375:4 6377:1 6384:1 6387:1 6392:11 6395:1 6400:1 6405:2 6410:1 6434:2 6440:1 6459:2 6460:1 6468:1 6483:1 6485:1 6533:1 6536:1 6538:5 6545:1 6551:1 6571:1 6572:2 6576:1 6581:4 6582:1 6584:1 6586:1 6587:2 6590:1 6594:5 6597:1 6602:1 6604:1 6605:1 6607:1 6608:1 6637:4 6643:1 6649:1 6652:8 6658:1 6664:1 6672:1 6690:1 6691:2 6693:1 6695:1 6743:1 6744:1 6758:1 6764:2 6774:1 6797:1 6813:1 6828:6 6830:1 6839:1 6844:1 6845:3 6860:9 6866:1 6877:2 6883:18 6886:4 6892:1 6915:1 6947:3 6959:1 6967:2 6974:2 6990:1 6996:1 6998:1 6999:1 7001:1 7007:1 7013:1 7021:4 7034:1 7037:1 7043:1 7060:1 7072:1 7091:1 7099:1 7114:1 7127:1 7134:4 7140:1 7145:1 7153:1 7155:1 7169:1 7181:1 7183:1 7192:1 7198:1 7201:1 7204:1 7218:1 7220:1 7232:4 7244:1 7247:63 7250:1 7263:1 7270:1 7271:1 7280:1 7284:1 7291:4 7312:1 7329:1 7353:1 7357:1 7361:1 7372:1 7384:1 7387:4 7409:2 7420:1 7422:7 7442:1 7443:1 7444:9 7450:2 7453:1 7454:2 7457:1 7459:1 7473:1 7478:1 7494:1 7504:1 7525:3 7540:2 7550:5 7556:2 7558:1 7560:1 7563:1 7564:2 7568:1 7572:2 7574:1 7577:1 7578:1 7579:2 7582:4 7583:3 7584:1 7609:1 7642:1 7647:2 7652:1 7656:1 7668:1 7670:1 7678:1 7687:1 7692:1 7700:1 7701:1 7707:1 7710:2 7711:1 7731:3 7742:1 7743:1 7769:1 7770:1 7783:1 7808:1 7835:2 7841:1 7843:1 7849:1 7874:1 7878:1 7880:1 7900:1 7912:1 7913:1 7915:1 7930:1 7940:1 7952:1 7957:3 7988:2 7998:1 8000:1 8009:1 8012:3 8013:3 8017:1 8023:2 8042:1 8050:1 8055:1 8056:2 8057:1 8058:4 8065:1 8072:1 8075:1 8080:1 8094:3 8096:1 8098:1 8100:1 8105:2 8113:1 8116:1 8119:1 8128:2 8135:3 8137:1 8138:3 8152:1 8167:1 8192:3 8194:1 8196:5 8199:2 8200:1 8211:1 8231:1 8245:1 8247:6 8248:1 8253:1 8263:1 8267:1 8272:1 8280:1 8296:1 8324:1 8333:1 8339:1 8341:1 8346:1 8347:1 8358:2 8360:1 8368:1 8371:1 8382:1 8383:2 8387:5 8390:1 8391:1 8399:1 8411:1 8414:1 8421:2 8431:1 8434:1 8437:2 8441:1 8456:1 8460:1 8491:1 8496:1 8507:1 8513:1 8520:3 8522:1 8532:1 8533:2 8539:1 8542:2 8546:1 8552:4 8554:1 8556:1 8559:1 8573:1 8576:1 8606:1 8616:4 8623:1 8626:2 8648:1 8651:1 8664:1 8669:1 8678:1 8712:1 8732:2 8742:1 8743:1 8744:1 8755:1 8770:1 8772:1 8776:1 8779:1 8780:2 8785:2 8786:2 8794:1 8797:2 8809:4 8840:1 8843:1 8848:1 8859:1 8860:1 8872:1 8886:1 8899:1 8901:2 8923:1 8926:1 8928:1 8953:1 8959:2 8967:1 8968:1 8971:2 8980:1 8983:1 8986:1 8994:1 8996:1 9006:3 9019:1 9025:2 9026:1 9051:1 9067:2 9072:1 9084:1 9085:1 9090:1 9100:1 9103:2 9114:1 9117:1 9122:3 9124:1 9125:1 9129:2 9159:1 9162:1 9165:1 9177:1 9180:1 9183:1 9185:1 9189:1 9191:1 9204:1 9215:1 9228:1 9234:1 9237:1 9238:1 9251:4 9252:3 9253:1 9260:18 9261:2 9268:1 9275:1 9279:1 9283:1 9295:4 9303:1 9308:1 9309:1 9329:1 9333:1 9337:1 9347:1 9357:1 9360:2 9370:1 9378:1 9380:1 9385:1 9388:2 9394:1 9404:1 9406:9 9429:1 9432:1 9443:2 9444:4 9449:1 9456:1 9461:1 9474:1 9478:1 9486:1 9499:2 9508:3 9512:1 9522:1 9525:1 9534:2 9548:3 9560:1 9569:1 9591:1 9594:5 9597:1 9605:2 9606:1 9612:1 9613:1 9624:9 9625:1 9626:1 9627:2 9632:2 9641:2 9657:1 9659:1 9675:9 9683:2 9693:1 9698:1 9704:2 9712:1 9721:5 9754:1 9759:1 9780:1 9787:1 9788:1 9795:1 9798:2 9813:2 9817:1 9818:1 9822:1 9829:1 9842:1 9859:1 9865:3 9870:2 9879:2 9884:1 9886:1 9888:1 9890:1 9904:1 9910:2 9916:1 9917:1 9920:1 9924:3 9926:1 9929:1 9940:1 9948:1 9952:1 9959:1 9963:1 9968:1 9980:2 9983:1 9992:1 10001:1 10009:1 10010:1 10013:2 10044:2 10045:1 10058:1 10059:3 10068:2 10070:1 10075:1 10092:1 10098:1 10105:3 10111:5 10115:1 10125:2 10127:1 10129:7 10160:1 10175:1 10193:4 10200:2 10204:3 10212:1 10215:1 10223:1 10243:1 10254:1 10262:1 10263:2 10271:2 10272:4 10280:1 10283:1 10286:1 10297:1 10298:1 10301:1 10306:1 10315:1 10318:1 10334:1 10335:1 10349:4 10356:1 10376:1 10377:2 10378:1 10398:2 10399:2 10409:4 10442:3 10459:33 10463:1 10468:2 10479:19 10484:9 10485:1 10494:1 10504:1 10510:1 10551:1 10554:4 10564:1 10567:2 10570:1 10573:4 10595:2 10632:2 10639:3 10640:1 10642:1 10649:1 10654:1 10685:2 10720:1 10721:7 10725:2 10740:1 10742:1 10749:1 10756:9 10764:1 10769:1 10773:1 10777:1 10790:1 10797:1 10820:3 10822:1 10824:1 10845:1 10857:1 10865:2 10868:1 10877:1 10886:1 10892:2 10922:1 10925:1 10930:1 10934:1 10945:1 10948:1 10957:1 10963:1 10968:1 10972:1 10975:1 10978:1 10982:1 10990:1 10996:1 11013:1 11017:1 11032:3 11042:1 11046:2 11050:2 11055:1 11058:36 11075:1 11081:1 11082:1 11085:1 11088:1 11099:1 11117:1 11123:1 11126:1 11132:1 11140:1 11159:1 11164:1 11175:1 11180:1 11195:1 11197:9 11200:8 11203:1 11207:1 11272:2 11273:1 11276:1 11280:2 11281:1 11289:1 11310:2 11311:1 11313:1 11319:1 11321:7 11326:1 11328:1 11330:2 11357:1 11362:2 11376:3 11379:1 11403:3 11405:2 11407:1 11408:1 11415:2 11416:2 11417:1 11420:3 11433:1 11439:1 11446:4 11448:1 11456:1 11457:1 11458:1 11459:2 11473:2 11496:1 11520:1 11523:1 11527:1 11559:1 11563:2 11565:1 11568:3 11573:3 11588:1 11600:1 11607:1 11608:1 11623:1 11634:1 11637:1 11639:1 11641:3 11646:1 11649:1 11652:1 11654:1 11656:3 11658:2 11664:1 11667:1 11668:1 11669:1 11678:1 11679:2 11687:2 11698:1 11702:3 11715:1 11721:1 11724:1 11730:7 11732:1 11735:2 11736:3 11765:1 11770:1 11773:1 11782:1 11800:1 11829:2 11831:3 11835:1 11842:1 11864:1 11866:1 11877:2 11881:1 11885:1 11888:1 11895:1 11898:1 11914:1 11921:1 11937:1 11951:1 11958:1 11978:1 11980:1 11992:1 12000:1 12019:1 12026:1 12037:1 12043:1 12052:5 12055:1 12063:1 12102:1 12116:1 12130:1 12132:1 12138:1 12161:1 12172:1 12186:1 12210:1 12228:1 12234:1 12245:1 12251:1 12256:2 12260:2 12274:1 12280:3 12289:2 12305:1 12328:1 12331:1 12355:1 12357:3 12365:2 12392:1 12397:2 12405:1 12415:1 12433:1 12435:2 12437:1 12439:1 12440:1 12454:1 12461:3 12471:1 12480:1 12481:1 12497:3 12499:1 12519:1 12532:1 12537:2 12541:1 12556:2 12557:1 12558:1 12559:1 12566:3 12572:1 12577:2 12578:1 12581:2 12585:3 12591:1 12592:1 12610:2 12611:1 12617:1 12640:1 12642:2 12645:1 12648:1 12671:1 12672:3 12678:2 12687:1 12688:3 12709:1 12710:1 12712:1 12713:1 12722:1 12723:1 12726:1 12728:1 12731:3 12739:1 12747:1 12752:1 12759:1 12769:1 12772:1 12779:1 12808:1 12809:1 12828:3 12836:1 12838:1 12858:1 12866:1 12877:2 12893:1 12914:1 12918:3 12919:1 12922:1 12928:1 12938:1 12962:5 12970:1 12977:2 12978:3 12983:1 12992:1 12993:2 13005:1 13018:1 13019:4 13021:1 13028:1 13041:1 13048:1 13052:1 13056:2 13058:1 13072:1 13087:1 13100:1 13102:2 13106:1 13108:1 13121:1 13136:1 13141:2 13142:1 13143:1 13153:1 13156:1 13170:1 13179:1 13189:1 13192:1 13197:1 13200:3 13203:3 13207:6 13208:1 13212:1 13214:1 13219:1 13220:1 13231:2 13237:1 13238:6 13240:1 13247:1 13250:1 13256:3 13266:1 13269:1 13307:1 13358:2 13370:5 13383:1 13386:1 13388:1 13402:1 13426:2 13432:1 13446:1 13448:2 13462:1 13481:1 13483:3 13485:3 13491:2 13506:3 13508:1 13516:1 13517:2 13538:1 13546:1 13556:1 13574:1 13582:1 13583:1 13585:1 13586:2 13627:6 13628:2 13631:1 13642:1 13646:1 13652:2 13655:1 13659:1 13660:1 13662:3 13668:1 13670:2 13672:1 13677:2 13682:1 13684:1 13698:1 13703:2 13710:1 13727:1 13735:1 13753:1 13759:1 13769:1 13783:1 13789:5 13812:1 13817:1 13825:2 13826:1 13832:1 13846:1 13853:1 13855:1 13866:8 13876:1 13891:1 13899:4 13902:2 13904:2 13907:1 13911:1 13912:3 13913:5 13915:1 13918:1 13921:1 13924:1 13926:2 13927:1 13934:2 13939:11 13942:2 13944:2 13947:1 13948:8 13950:1 13956:1 13959:1 13981:1 13983:3 13999:1 14049:1 14051:3 14055:1 14058:1 14059:1 14060:1 14064:1 14077:1 14090:1 14095:2 14100:5 14105:1 14112:2 14140:1 14142:1 14148:1 14151:1 14172:3 14188:1 14199:2 14205:1 14212:2 14228:1 14238:1 14258:1 14261:1 14271:2 14278:1 14279:1 14284:1 14286:1 14288:1 14293:1 14298:6 14311:1 14338:1 14344:1 14346:2 14349:1 14353:1 14361:1 14362:1 14363:3 14371:1 14374:1 14376:1 14383:1 14411:1 14413:1 14429:2 14445:1 14446:1 14470:2 14472:1 14479:1 14492:1 14498:1 14527:3 14532:1 14535:1 14572:1 14575:2 14599:1 14603:1 14618:2 14624:2 14625:2 14636:1 14637:4 14641:5 14651:6 14652:1 14656:1 14663:1 14664:1 14672:1 14687:1 14694:2 14698:1 14701:2 14705:1 14706:1 14739:2 14747:1 14756:1 14770:3 14775:1 14779:1 14780:1 14781:1 14796:1 14807:1 14811:7 14815:1 14828:5 14845:1 14846:1 14852:1 14853:1 14856:1 14858:1 14868:1 14884:1 14889:3 14895:1 14916:1 14933:2 14957:1 14981:1 14995:1 15003:1 15004:1 15025:3 15040:2 15048:1 15051:1 15052:1 15055:1 15069:1 15086:1 15089:1 15096:1 15097:1 15110:4 15113:1 15120:1 15130:1 15135:2 15139:1 15142:1 15149:3 15156:2 15164:1 15166:1 15170:1 15171:10 15190:1 15195:1 15210:1 15215:1 15226:1 15230:1 15232:4 15240:1 15241:1 15249:2 15254:1 15256:1 15262:1 15265:2 15267:2 15268:1 15287:1 15305:1 15308:1 15311:1 15331:1 15351:1 15354:1 15356:2 15363:1 15370:1 15396:1 15404:3 15413:1 15452:2 15455:1 15457:4 15458:6 15461:1 15466:1 15478:1 15490:1 15493:1 15499:1 15511:5 15513:1 15514:1 15516:1 15521:6 15525:1 15527:1 15532:7 15537:1 15545:2 15549:1 15560:1 15572:2 15582:5 15583:1 15584:2 15587:1 15592:1 15596:1 15598:11 15607:1 15608:3 15614:1 15616:1 15618:2 15619:1 15635:2 15643:4 15651:1 15661:1 15678:2 15679:1 15681:1 15693:1 15698:1 15703:1 15710:3 15721:3 15727:1 15730:1 15741:1 15753:1 15760:1 15764:1 15773:1 15774:1 15776:1 15797:2 15806:1 15820:1 15827:1 15865:2 15873:1 15876:1 15878:1 15882:5 15886:4 15890:1 15922:1 15936:1 15940:1 15943:1 15949:1 15950:1 15957:1 15960:1 15962:2 15965:1 15966:3 15983:2 15990:1 16001:1 16019:1 16020:2 16023:1 16029:1 16032:1 16036:1 16057:1 16060:2 16065:1 16067:1 16101:1 16109:1 16115:1 16122:2 16123:3 16125:1 16132:1 16136:1 16145:2 16147:1 16154:1 16157:2 16175:4 16181:1 16202:1 16274:1 16297:1 16299:2 16301:1 16305:2 16308:1 16309:1 16314:1 16319:1 16329:3 16333:2 16345:2 16350:1 16364:1 16369:2 16374:1 16379:1 16395:1 16399:1 16406:1 16408:1 16425:1 16462:1 16475:1 16509:1 16535:3 16558:1 16560:2 16575:1 16579:2 16583:1 16587:1 16591:1 16592:2 16594:1 16624:1 16630:1 16652:1 16662:1 16668:1 16670:1 16679:1 16687:1 16693:1 16705:1 16706:1 16707:1 16746:2 16753:1 16756:3 16763:3 16766:1 16776:1 16785:1 16792:1 16793:1 16807:1 16810:1 16819:1 16820:1 16825:1 16826:2 16827:1 16842:1 16853:1 16875:1 16880:1 16886:3 16898:1 16900:1 16902:1 16905:2 16915:1 16917:2 16919:1 16922:2 16940:1 16948:1 16951:1 16953:1 16957:1 16961:4 16962:2 16978:2 16981:1 16983:1 16993:1 16999:1 17000:1 17002:3 17003:1 17006:1 17008:1 17009:2 17021:2 17024:2 17029:1 17031:2 17032:1 17034:2 17043:1 17050:1 17054:2 17058:1 17060:1 17067:1 17071:2 17076:2 17088:1 17093:1 17097:3 17108:1 17113:1 17119:2 17120:3 17125:1 17137:2 17139:2 17143:2 17164:2 17169:1 17175:1 17190:1 17196:1 17199:1 17202:4 17204:1 17207:1 17208:3 17209:1 17220:1 17250:1 17260:1 17267:1 17282:1 17304:1 17311:1 17317:3 17318:1 17319:1 17336:1 17340:1 17341:1 17345:1 17349:1 17382:1 17383:1 17384:1 17399:4 17404:1 17414:1 17415:1 17418:1 17422:1 17427:2 17432:1 17434:10 17455:1 17468:2 17470:1 17481:1 17486:1 17511:1 17513:1 17533:1 17540:2 17561:1 17565:1 17570:1 17572:1 17582:1 17599:1 17602:2 17603:1 17604:2 17615:1 17616:1 17629:2 17637:1 17640:3 17662:1 17667:1 17695:1 17713:2 17718:1 17733:1 17750:1 17757:1 17781:6 17784:2 17789:1 17791:1 17792:2 17793:1 17796:1 17820:1 17826:1 17827:1 17828:1 17833:1 17835:1 17844:5 17861:2 17873:1 17878:2 17891:3 17894:1 17897:25 17902:2 17936:1 17947:3 17961:1 17967:2 17974:2 17978:1 18044:2 18053:1 18069:1 18073:2 18080:2 18084:1 18098:1 18106:1 18107:2 18115:1 18117:2 18119:1 18133:1 18141:1 18145:1 18151:1 18153:1 18161:1 18189:1 18190:1 18196:1 18217:1 18219:1 18232:1 18236:1 18255:5 18257:2 18258:1 18259:2 18261:1 18262:1 18270:4 18278:1 18281:1 18282:1 18283:1 18288:1 18294:1 18295:1 18296:1 18303:1 18305:1 18309:1 18311:2 18313:1 18325:1 18332:1 18367:1 18370:2 18392:1 18394:1 18401:1 18402:1 18404:1 18412:1 18414:1 18415:2 18417:4 18426:1 18434:1 18435:1 18437:1 18449:1 18460:1 18461:1 18463:1 18465:1 18474:1 18482:1 18489:3 18498:1 18499:7 18521:1 18524:1 18546:1 18549:1 18550:1 18558:1 18562:2 18575:1 18576:1 18580:4 18582:1 18583:1 18584:1 18608:1 18616:3 18628:1 18645:2 18652:1 18656:4 18666:2 18670:4 18681:1 18687:1 18718:1 18728:1 18730:1 18762:1 18763:12 18785:3 18794:1 18799:1 18830:6 18835:2 18844:1 18866:1 18881:1 18882:1 18891:2 18899:1 18909:1 18913:1 18916:4 18917:1 18927:2 18935:1 18942:1 18947:1 18958:3 18965:1 18968:1 18996:1 19001:1 19005:5 19015:2 19022:1 19045:1 19060:1 19067:1 19082:1 19086:1 19095:1 19134:1 19154:1 19159:2 19168:1 19175:1 19176:3 19182:1 19185:1 19188:1 19206:1 19208:1 19212:1 19217:3 19221:2 19231:1 19237:1 19242:1 19244:2 19262:1 19263:1 19266:1 19268:1 19280:1 19302:1 19306:1 19322:1 19324:1 19340:1 19346:1 19347:2 19361:2 19397:1 19405:1 19426:2 19429:1 19430:1 19435:1 19467:1 19484:1 19485:1 19489:2 19490:1 19495:1 19496:1 19498:1 19502:1 19542:1 19543:3 19561:1 19569:2 19572:1 19584:3 19588:3 19602:2 19609:1 19615:1 19618:1 19629:1 19633:1 19644:1 19654:1 19655:1 19657:1 19660:1 19663:5 19664:1 19669:2 19670:1 19672:1 19674:1 19681:1 19689:1 19700:1 19706:1 19733:1 19737:1 19748:1 19760:1 19768:1 19772:8 19776:1 19779:1 19784:1 19799:1 19828:1 19857:3 19861:1
5 1:1 2:1 5:1 28:1 33:1 35:3 65:1 68:3 70:1 71:1 105:3 131:1 145:1 160:3 164:1 167:1 178:1 185:3 196:1 200:1 215:1 220:1 221:1 227:1 233:2 246:4 261:1 272:2 274:1 278:1 289:1 297:1 312:2 316:1 348:2 349:2 352:1 353:1 361:1 365:1 366:1 382:2 390:1 393:2 395:1 399:3 413:1 417:1 418:2 422:1 434:1 453:1 461:2 477:1 480:2 483:1 485:1 490:1 495:2 510:4 511:1 525:1 530:1 532:1 540:1 547:1 559:1 565:1 573:2 574:3 576:1 592:1 595:1 599:1 600:1 605:1 615:2 625:1 639:1 641:1 661:3 699:1 714:1 720:1 738:1 749:4 753:1 754:1 763:1 793:1 797:1 798:1 811:1 825:1 826:2 833:3 834:1 849:2 861:1 864:1 865:2 880:6 881:1 901:1 909:1 918:1 931:2 942:1 943:1 950:2 956:1 971:2 972:1 980:3 1007:1 1014:1 1015:1 1017:1 1026:1 1028:1 1032:1 1045:1 1074:1 1083:2 1104:2 1108:2 1110:1 1134:1 1138:1 1140:1 1145:2 1157:1 1176:1 1177:2 1185:1 1194:2 1213:4 1214:3 1231:1 1232:5 1242:1 1243:1 1252:1 1264:2 1274:4 1276:1 1279:2 1286:1 1288:4 1310:3 1312:2 1320:1 1323:1 1324:3 1328:3 1332:1 1335:1 1336:2 1337:3 1340:5 1355:1 1357:2 1362:1 1368:1 1380:4 1388:2 1392:1 1408:1 1415:1 1421:1 1424:2 1427:3 1434:3 1458:1 1463:6 1486:1 1493:1 1494:1 1498:1 1504:4 1512:1 1519:1 1566:1 1576:2 1578:1 1616:1 1617:1 1622:2 1628:1 1635:1 1637:1 1643:1 1649:3 1650:1 1653:2 1654:4 1657:5 1658:1 1659:3 1666:3 1670:3 1675:2 1677:2 1679:1 1680:1 1681:1 1682:5 1683:1 1692:1 1694:1 1700:1 1714:1 1717:1 1721:1 1723:2 1725:1 1732:1 1734:3 1735:1 1742:1 1756:2 1759:1 1765:1 1766:1 1767:1 1777:1 1786:1 1826:1 1858:1 1859:1 1862:2 1881:1 1884:1 1894:1 1901:1 1902:1 1910:2 1911:1 1920:1 1921:1 1923:1 1939:3 1942:1 1952:2 1963:2 1968:1 1970:1 1973:1 1975:1 1978:1 1980:1 1985:1 2012:1 2030:1 2035:1 2045:1 2050:2 2060:1 2066:1 2067:1 2068:1 2074:1 2078:2 2088:1 2097:8 2108:1 2112:9 2123:1 2129:1 2133:1 2138:1 2139:3 2160:1 2175:1 2178:1 2180:1 2185:1 2195:1 2207:1 2220:2 2230:1 2255:4 2280:1 2298:1 2302:1 2332:1 2335:1 2337:1 2344:1 2345:1 2356:1 2363:1 2374:1 2383:1 2384:1 2394:2 2397:1 2405:1 2433:1 2435:1 2440:1 2450:1 2453:1 2471:10 2479:1 2490:1 2511:1 2521:2 2535:1 2541:1 2544:1 2558:1 2586:1 2590:1 2595:1 2609:1 2622:1 2623:3 2624:1 2645:2 2647:1 2652:1 2656:2 2661:1 2663:2 2666:1 2673:1 2674:1 2695:1 2699:1 2712:1 2713:1 2716:2 2717:2 2723:1 2735:2 2742:1 2746:1 2748:1 2750:1 2753:1 2757:2 2764:1 2791:1 2794:1 2799:1 2801:1 2812:1 2815:2 2816:1 2823:7 2850:1 2870:1 2876:1 2882:2 2896:3 2916:1 2917:3 2922:1 2923:1 2928:1 2929:1 2939:1 2947:1 2951:1 2954:1 2955:1 2957:11 2972:4 2973:1 2975:2 2976:7 2977:2 2978:2 2979:1 2982:3 2984:2 2990:1 2992:3 2996:1 2999:1 3002:1 3006:2 3007:2 3011:1 3014:1 3015:1 3042:1 3051:1 3062:1 3065:1 3087:1 3090:1 3095:1 3102:2 3117:1 3128:1 3132:1 3137:1 3139:1 3143:1 3148:1 3153:1 3165:3 3169:1 3178:1 3179:1 3190:1 3192:1 3194:1 3196:1 3197:1 3222:1 3237:1 3239:1 3243:1 3253:1 3258:2 3263:1 3286:1 3287:1 3289:1 3293:1 3323:1 3325:1 3326:1 3355:1 3365:3 3369:1 3371:1 3407:1 3429:3 3430:1 3446:1 3467:2 3470:1 3472:1 3475:1 3487:1 3500:1 3513:4 3516:4 3521:5 3532:1 3540:1 3547:1 3554:1 3580:1 3587:1 3590:1 3591:2 3594:3 3613:1 3619:1 3621:1 3627:1 3628:1 3640:1 3643:1 3650:1 3668:2 3682:3 3687:1 3692:2 3693:1 3694:1 3695:2 3700:1 3704:1 3705:1 3708:2 3719:1 3732:1 3745:1 3759:1 3761:1 3765:1 3778:2 3808:1 3830:1 3838:1 3854:2 3855:19 3857:1 3861:1 3866:1 3868:6 3876:1 3882:2 3899:2 3910:1 3914:13 3932:1 3935:1 3941:1 3956:1 3958:2 3961:2 3965:1 3969:1 3977:3 3984:1 4049:1 4050:1 4052:2 4063:1 4075:1 4095:1 4102:1 4103:1 4115:1 4134:1 4135:1 4136:2 4142:2 4144:1 4159:1 4161:1 4177:1 4185:1 4202:1 4210:3 4214:2 4228:1 4233:1 4239:1 4246:3 4256:1 4258:2 4259:1 4279:4 4282:4 4300:1 4310:1 4316:1 4345:1 4362:1 4363:1 4374:1 4380:2 4387:1 4401:1 4414:1 4419:6 4423:1 4430:1 4446:3 4455:2 4456:1 4462:1 4532:1 4558:2 4572:3 4578:1 4591:3 4595:1 4596:4 4598:3 4599:1 4601:2 4602:6 4603:4 4606:1 4607:2 4609:1 4610:1 4613:1 4630:2 4633:1 4646:1 4650:4 4656:3 4660:2 4671:2 4677:1 4696:1 4714:2 4721:1 4725:7 4726:1 4727:18 4731:2 4735:2 4739:1 4744:1 4745:1 4752:2 4760:1 4761:1 4766:6 4777:2 4782:1 4800:1 4809:1 4822:2 4828:7 4830:2 4832:1 4836:1 4844:2 4854:1 4859:1 4871:1 4883:1 4885:1 4890:1 4891:2 4896:5 4900:1 4901:1 4906:1 4909:1 4934:1 4942:1 4944:1 4952:2 4954:1 4983:1 5002:1 5004:1 5012:1 5014:1 5017:1 5037:2 5039:1 5058:1 5076:1 5079:1 5099:2 5110:1 5112:1 5116:1 5119:1 5121:2 5125:1 5141:1 5145:1 5147:1 5153:2083 5155:1 5158:2 5168:3 5171:1 5187:1 5188:1 5191:1 5195:1 5196:1 5212:5 5213:1 5230:1 5232:1 5237:1 5250:2 5259:1 5280:1 5288:1 5293:1 5306:1 5311:2 5318:1 5334:1 5338:2 5345:2 5358:1 5380:2 5400:1 5404:2 5414:1 5426:1 5427:1 5433:1 5441:1 5444:2 5447:1 5455:1 5482:1 5483:1 5487:1 5497:1 5526:1 5562:1 5573:1 5592:1 5612:1 5613:1 5615:1 5616:3 5619:1 5620:1 5658:1 5662:1 5670:2 5683:5 5690:1 5695:1 5698:1 5704:1 5741:1 5754:1 5755:1 5757:1 5776:1 5809:1 5825:3 5830:2 5840:1 5845:1 5859:1 5861:3 5864:1 5867:1 5909:2 5921:4 5930:3 5931:1 5934:4 5952:1 5956:1 5959:1 5967:1 5973:1 5981:1 6010:1 6013:4 6016:2 6020:8 6025:1 6026:1 6035:3 6040:1 6053:1 6054:2 6064:1 6069:1 6087:1 6095:1 6118:1 6133:1 6135:1 6139:1 6142:4 6155:3 6178:2 6189:1 6212:3 6219:2 6221:1 6240:1 6244:1 6262:1 6273:1 6281:1 6301:2 6311:1 6345:1 6375:4 6377:1 6384:1 6387:1 6392:13 6395:1 6400:1 6405:2 6410:1 6434:2 6440:1 6459:2 6460:1 6468:1 6483:3 6485:1 6533:1 6536:1 6538:5 6545:1 6551:1 6571:1 6572:3 6576:1 6581:4 6582:1 6584:1 6586:1 6587:2 6590:1 6594:5 6597:1 6602:1 6604:1 6605:1 6607:1 6608:1 6637:4 6643:1 6649:1 6652:8 6658:1 6664:1 6672:1 6690:1 6691:2 6693:1 6695:1 6743:1 6744:1 6749:1 6758:1 6764:2 6774:2 6797:1 6813:1 6828:6 6830:1 6839:1 6844:1 6845:3 6860:10 6866:1 6877:2 6883:20 6886:4 6892:1 6915:1 6947:3 6959:1 6967:2 6974:2 6983:1 6990:1 6996:1 6998:1 6999:1 7001:1 7007:1 7013:1 7021:4 7034:1 7037:1 7043:1 7050:1 7060:1 7072:1 7091:1 7099:1 7114:1 7127:1 7134:4 7140:1 7145:1 7153:1 7155:1 7169:1 7181:1 7183:1 7192:1 7198:1 7201:1 7204:1 7218:1 7220:1 7232:4 7244:1 7247:65 7250:1 7263:1 7270:1 7271:1 7280:1 7284:1 7291:4 7312:1 7329:1 7353:1 7357:1 7361:1 7372:1 7384:1 7387:4 7390:1 7409:2 7420:1 7422:7 7442:1 7443:1 7444:10 7450:2 7453:1 7454:2 7457:1 7459:1 7473:1 7478:1 7487:1 7494:1 7504:2 7525:3 7540:2 7550:5 7556:2 7558:1 7560:1 7563:1 7564:2 7568:1 7572:2 7574:1 7577:1 7578:1 7579:2 7582:4 7583:3 7584:1 7609:1 7642:1 7647:2 7652:1 7656:1 7668:1 7670:1 7678:1 7687:1 7692:1 7700:1 7701:1 7707:1 7710:2 7711:1 7731:3 7737:1 7742:1 7743:1 7769:1 7770:1 7783:1 7808:1 7835:2 7841:1 7843:1 7849:1 7874:1 7878:1 7880:1 7900:1 7912:1 7913:1 7915:1 7930:1 7940:1 7952:1 7957:3 7988:2 7998:1 8000:1 8009:1 8012:3 8013:3 8017:1 8023:2 8042:1 8050:1 8055:1 8056:2 8057:1 8058:4 8065:1 8072:1 8075:2 8080:2 8094:3 8096:1 8098:1 8100:1 8105:2 8113:1 8116:1 8119:1 8128:2 8135:3 8137:1 8138:3 8152:1 8167:1 8192:3 8194:1 8196:5 8199:2 8200:1 8211:1 8231:1 8245:1 8247:6 8248:1 8253:1 8263:1 8267:1 8272:1 8280:2 8296:1 8319:1 8324:1 8333:1 8339:1 8341:1 8346:1 8347:1 8358:2 8360:1 8368:1 8371:1 8382:1 8383:2 8387:5 8390:1 8391:1 8399:1 8411:1 8414:1 8421:2 8431:1 8434:1 8437:2 8441:1 8456:1 8460:1 8491:1 8496:1 8507:1 8513:1 8520:3 8522:1 8532:1 8533:2 8539:1 8542:2 8546:1 8552:4 8554:1 8556:1 8559:1 8573:1 8576:1 8606:1 8616:4 8623:1 8626:2 8648:1 8651:1 8664:1 8669:1 8678:1 8712:1 8732:2 8742:1 8743:1 8744:1 8755:1 8770:1 8772:1 8776:1 8779:1 8780:2 8785:3 8786:2 8794:1 8797:2 8809:4 8840:1 8843:1 8848:1 8859:1 8860:1 8872:1 8886:1 8899:1 8901:2 8923:1 8926:1 8928:1 8937:1 8953:1 8959:2 8967:1 8968:1 8971:2 8974:1 8980:1 8983:1 8986:1 8994:1 8996:1 9006:3 9019:1 9025:2 9026:1 9051:1 9067:2 9072:1 9084:1 9085:1 9090:1 9100:1 9103:2 9107:1 9114:1 9117:1 9122:3 9124:1 9125:1 9129:2 9159:1 9162:1 9165:1 9177:1 9180:1 9183:1 9185:1 9189:1 9191:1 9204:1 9215:1 9228:1 9234:1 9237:1 9238:1 9251:4 9252:3 9253:1 9260:19 9261:2 9268:1 9275:1 9279:1 9283:1 9295:6 9303:1 9308:1 9309:1 9329:1 9333:1 9337:1 9347:1 9357:1 9360:2 9370:1 9378:1 9380:1 9385:1 9388:2 9394:1 9404:1 9406:9 9429:1 9432:1 9443:2 9444:4 9449:1 9456:1 9461:1 9474:1 9478:1 9486:1 9499:2 9508:3 9512:1 9522:1 9525:1 9534:2 9548:3 9560:1 9569:1 9591:1 9594:6 9596:1 9597:1 9605:2 9606:1 9607:1 9612:1 9613:1 9624:9 9625:1 9626:1 9627:2 9632:2 9641:2 9657:1 9659:1 9675:9 9683:2 9693:1 9698:1 9704:2 9712:1 9721:5 9754:1 9759:1 9780:1 9787:1 9788:1 9795:1 9798:2 9813:2 9817:1 9818:1 9822:1 9829:1 9842:1 9859:1 9865:3 9870:2 9879:2 9884:1 9886:1 9888:1 9890:1 9904:1 9910:2 9916:1 9917:1 9920:1 9924:3 9926:1 9929:1 9940:1 9948:1 9952:1 9959:1 9963:1 9968:1 9980:2 9983:1 9992:1 10001:1 10009:1 10010:1 10013:2 10044:2 10045:1 10057:1 10058:1 10059:3 10068:2 10070:1 10075:1 10092:1 10098:1 10105:3 10111:5 10115:1 10125:2 10127:1 10129:7 10160:1 10169:1 10175:1 10193:4 10200:2 10204:3 10212:1 10215:1 10223:1 10243:1 10254:1 10262:1 10263:2 10271:2 10272:4 10280:1 10283:1 10286:1 10297:1 10298:1 10301:1 10306:1 10315:1 10318:1 10334:1 10335:1 10349:4 10356:1 10376:1 10377:2 10378:1 10398:2 10399:2 10409:4 10415:1 10442:3 10459:33 10463:1 10468:2 10479:20 10484:9 10485:1 10494:1 10504:1 10510:1 10551:1 10554:4 10564:1 10567:2 10570:1 10573:4 10595:2 10632:2 10639:3 10640:1 10642:1 10649:1 10654:1 10685:2 10720:1 10721:7 10725:2 10740:1 10742:1 10749:1 10756:10 10764:1 10769:1 10773:1 10777:1 10790:2 10797:1 10820:3 10822:1 10824:1 10845:1 10857:1 10865:2 10868:1 10877:1 10886:1 10888:1 10892:2 10922:1 10925:1 10930:1 10934:1 10945:1 10948:1 10957:1 10963:1 10968:1 10972:1 10975:1 10978:1 10982:1 10990:1 10996:1 11013:1 11017:1 11032:3 11042:1 11046:2 11050:2 11055:1 11058:38 11075:1 11081:1 11082:1 11085:1 11088:1 11099:1 11117:1 11123:1 11126:1 11132:1 11140:1 11159:1 11164:1 11175:1 11180:1 11195:1 11197:10 11200:8 11203:1 11207:1 11272:2 11273:1 11276:1 11280:2 11281:1 11289:1 11310:2 11311:1 11313:1 11319:1 11321:7 11326:1 11328:1 11330:2 11357:1 11362:2 11376:3 11379:1 11403:3 11405:2 11407:1 11408:1 11415:2 11416:2 11417:1 11420:3 11433:1 11439:1 11446:4 11448:1 11456:1 11457:1 11458:1 11459:2 11473:2 11496:1 11520:1 11523:1 11527:1 11559:1 11563:2 11565:1 11568:3 11573:3 11588:1 11600:1 11607:1 11608:1 11623:1 11634:1 11636:1 11637:1 11639:1 11641:3 11646:1 11649:1 11652:1 11654:1 11656:3 11658:2 11664:1 11667:1 11668:1 11669:1 11678:1 11679:2 11684:1 11687:2 11698:1 11702:3 11715:1 11721:1 11724:1 11730:7 11732:1 11735:2 11736:3 11765:1 11770:1 11773:1 11782:1 11800:1 11829:2 11831:3 11835:1 11842:1 11859:1 11864:1 11866:1 11877:2 11881:1 11885:1 11888:1 11895:1 11898:1 11914:1 11921:1 11937:1 11951:1 11958:1 11978:2 11980:1 11992:1 12000:1 12019:1 12026:1 12037:1 12043:1 12052:6 12055:1 12063:1 12102:1 12116:1 12130:1 12132:1 12138:1 12161:1 12172:1 12186:1 12210:1 12228:1 12234:1 12245:1 12251:1 12256:2 12260:2 12274:1 12280:3 12289:2 12305:1 12306:1 12328:1 12331:1 12355:1 12357:3 12365:2 12392:1 12397:2 12403:1 12405:1 12415:1 12433:1 12435:2 12437:1 12439:1 12440:1 12454:1 12461:3 12471:1 12480:1 12481:1 12497:3 12499:1 12519:1 12532:1 12537:2 12541:1 12556:2 12557:2 12558:1 12559:1 12566:3 12572:1 12577:2 12578:1 12581:2 12585:3 12591:1 12592:1 12610:2 12611:1 12613:1 12617:1 12640:1 12642:2 12645:1 12648:1 12671:1 12672:3 12678:2 12687:1 12688:3 12709:1 12710:1 12712:1 12713:1 12722:1 12723:1 12726:1 12728:1 12731:3 12739:1 12747:1 12752:1 12754:1 12759:1 12769:1 12772:1 12779:1 12808:1 12809:1 12828:3 12836:1 12838:1 12857:1 12858:1 12866:1 12876:1 12877:2 12893:1 12914:1 12918:3 12919:1 12922:1 12928:1 12938:1 12962:5 12967:1 12970:1 12977:2 12978:3 12983:1 12992:1 12993:2 13001:1 13005:1 13018:1 13019:4 13021:1 13028:1 13041:1 13048:1 13052:1 13056:2 13058:1 13072:1 13087:1 13100:1 13102:2 13106:1 13108:1 13121:1 13136:2 13141:2 13142:1 13143:2 13153:1 13156:1 13170:1 13179:1 13189:1 13192:1 13197:1 13200:3 13203:3 13207:6 13208:1 13212:1 13214:1 13219:1 13220:1 13231:2 13237:1 13238:6 13240:1 13247:1 13250:1 13256:3 13266:1 13269:1 13307:1 13338:1 13358:2 13370:5 13383:1 13386:1 13388:1 13402:1 13426:2 13432:1 13446:1 13448:2 13462:1 13468:1 13481:1 13483:3 13485:3 13491:2 13506:3 13508:1 13516:1 13517:2 13538:1 13546:1 13556:1 13574:1 13582:1 13583:1 13585:1 13586:2 13627:6 13628:2 13631:1 13642:1 13646:1 13652:2 13655:1 13659:1 13660:2 13662:3 13668:1 13670:2 13672:1 13677:2 13682:1 13684:1 13698:1 13703:2 13710:1 13727:1 13735:2 13753:1 13759:1 13769:1 13783:1 13789:5 13812:1 13817:1 13825:2 13826:1 13832:1 13846:1 13853:1 13855:1 13866:8 13876:1 13891:1 13899:4 13902:2 13904:2 13907:1 13911:1 13912:3 13913:5 13915:1 13918:1 13921:1 13924:1 13926:2 13927:1 13934:2 13939:12 13942:2 13944:2 13947:1 13948:8 13950:2 13956:1 13959:1 13981:1 13983:3 13999:1 14049:1 14051:3 14055:1 14058:3 14059:1 14060:1 14064:1 14077:1 14090:1 14095:2 14100:5 14105:1 14112:2 14140:1 14142:1 14148:1 14151:1 14172:3 14188:1 14199:2 14205:1 14212:3 14228:1 14238:1 14258:1 14261:1 14271:2 14278:1 14279:1 14284:1 14286:1 14288:1 14293:1 14298:6 14311:1 14338:1 14344:1 14346:2 14349:1 14353:1 14361:1 14362:1 14363:3 14366:1 14371:1 14374:1 14376:1 14379:1 14383:1 14411:1 14413:1 14429:2 14445:1 14446:1 14470:2 14472:1 14479:1 14492:1 14498:1 14527:3 14532:1 14535:1 14572:1 14575:2 14599:1 14603:1 14618:2 14624:2 14625:3 14636:1 14637:4 14641:5 14651:6 14652:1 14656:1 14663:1 14664:1 14672:1 14687:1 14694:3 14698:1 14701:2 14705:1 14706:1 14739:2 14747:1 14756:1 14770:3 14775:1 14779:1 14780:1 14781:1 14796:1 14807:1 14811:7 14815:1 14828:5 14832:1 14845:1 14846:1 14852:1 14853:1 14856:1 14858:1 14868:1 14881:1 14884:1 14889:3 14895:1 14916:1 14933:2 14957:1 14981:1 14995:1 15003:1 15004:1 15025:3 15040:2 15048:1 15051:1 15052:1 15055:1 15066:1 15069:1 15086:1 15087:1 15089:1 15096:1 15097:1 15110:4 15113:1 15120:1 15130:1 15135:2 15139:1 15142:1 15149:3 15156:2 15164:1 15166:1 15170:2 15171:11 15190:1 15195:1 15210:1 15215:1 15226:1 15230:1 15232:4 15240:1 15241:1 15249:2 15254:1 15256:1 15262:1 15265:2 15267:2 15268:1 15287:1 15304:1 15305:1 15308:1 15311:1 15331:1 15351:1 15354:1 15356:2 15363:1 15370:1 15396:1 15404:3 15413:1 15452:2 15455:1 15457:4 15458:6 15461:1 15466:1 15478:1 15490:3 15493:1 15499:1 15511:6 15513:1 15514:1 15516:1 15521:6 15525:1 15527:1 15532:7 15537:1 15545:2 15549:1 15560:1 15572:2 15582:5 15583:2 15584:2 15587:1 15592:1 15596:1 15598:11 15607:1 15608:3 15614:1 15616:1 15618:2 15619:1 15635:2 15643:4 15651:1 15661:1 15678:2 15679:1 15681:1 15686:1 15693:1 15698:1 15703:1 15710:4 15721:3 15727:1 15730:1 15741:1 15753:1 15760:1 15764:1 15773:1 15774:1 15776:1 15797:2 15805:1 15806:1 15820:1 15827:1 15865:2 15873:1 15876:1 15878:1 15882:5 15886:4 15890:1 15922:1 15936:1 15940:1 15943:1 15949:1 15950:1 15957:1 15960:1 15962:3 15965:1 15966:3 15969:1 15983:2 15990:1 16001:1 16019:1 16020:2 16023:1 16029:1 16032:1 16036:1 16057:1 16060:2 16065:1 16067:1 16071:1 16101:1 16109:1 16115:1 16122:2 16123:3 16125:1 16132:1 16136:1 16145:2 16147:1 16154:1 16157:2 16175:4 16181:1 16202:1 16274:1 16278:1 16297:1 16299:2 16301:1 16305:3 16308:1 16309:1 16314:1 16319:1 16329:3 16333:2 16345:2 16350:1 16364:1 16369:2 16374:1 16379:1 16395:1 16399:1 16406:1 16408:1 16425:1 16462:1 16475:1 16509:1 16535:3 16541:1 16558:1 16560:2 16575:1 16579:2 16583:1 16587:1 16591:1 16592:2 16594:1 16624:1 16630:1 16652:1 16662:1 16668:1 16670:1 16679:1 16687:1 16693:1 16705:1 16706:1 16707:1 16746:2 16753:1 16756:3 16763:3 16766:1 16776:1 16785:1 16792:1 16793:1 16807:1 16810:1 16819:1 16820:1 16825:1 16826:2 16827:1 16842:1 16853:1 16875:1 16880:1 16886:3 16898:1 16900:1 16902:1 16905:2 16915:1 16917:2 16919:1 16922:2 16940:1 16948:1 16951:1 16953:1 16957:1 16961:4 16962:2 16972:1 16978:2 16981:1 16983:1 16993:1 16999:1 17000:1 17002:3 17003:1 17006:1 17008:1 17009:2 17021:2 17024:2 17029:1 17031:2 17032:1 17034:2 17043:1 17050:1 17054:2 17058:1 17060:1 17067:1 17071:2 17076:2 17088:1 17093:1 17097:3 17108:1 17113:1 17119:2 17120:3 17125:1 17137:2 17139:2 17143:2 17164:2 17169:1 17175:1 17190:1 17196:1 17199:1 17202:4 17204:1 17207:1 17208:3 17209:2 17220:1 17227:1 17250:1 17260:1 17267:1 17278:1 17282:1 17304:1 17311:1 17317:3 17318:1 17319:1 17336:1 17340:1 17341:1 17345:1 17349:1 17382:1 17383:1 17384:1 17399:4 17404:1 17414:1 17415:1 17418:1 17422:1 17427:2 17432:1 17434:10 17455:1 17468:2 17470:1 17481:1 17486:1 17511:1 17513:1 17533:1 17540:2 17561:1 17565:1 17570:1 17572:1 17582:1 17599:1 17602:2 17603:1 17604:2 17615:1 17616:1 17629:2 17637:1 17640:3 17662:1 17667:1 17695:1 17713:2 17718:1 17733:1 17750:1 17753:1 17757:1 17781:6 17784:2 17789:1 17791:1 17792:2 17793:1 17796:1 17820:1 17826:1 17827:1 17828:1 17833:1 17835:1 17844:6 17861:2 17873:1 17878:2 17891:3 17894:1 17897:26 17902:2 17933:1 17936:1 17947:3 17961:1 17967:2 17974:2 17978:1 18044:2 18053:1 18069:1 18073:2 18080:2 18084:1 18098:1 18106:1 18107:2 18115:1 18117:2 18119:1 18133:1 18141:1 18145:1 18151:1 18153:1 18161:1 18189:1 18190:1 18196:1 18217:1 18219:1 18232:1 18236:1 18255:6 18257:2 18258:1 18259:2 18261:1 18262:1 18270:4 18278:1 18281:1 18282:1 18283:1 18288:1 18294:1 18295:1 18296:1 18303:1 18305:1 18309:1 18311:2 18313:1 18325:1 18332:1 18358:1 18367:1 18370:2 18372:1 18392:1 18394:1 18401:1 18402:1 18404:1 18412:1 18414:1 18415:2 18417:4 18426:1 18434:1 18435:1 18437:1 18449:1 18460:1 18461:1 18463:1 18465:1 18474:1 18482:1 18489:3 18498:1 18499:7 18505:1 18521:1 18524:1 18546:1 18549:1 18550:1 18558:1 18562:2 18575:1 18576:1 18577:1 18580:4 18582:1 18583:1 18584:1 18608:1 18616:3 18628:1 18645:2 18652:1 18656:4 18666:2 18670:4 18681:1 18687:1 18718:1 18719:1 18728:1 18730:1 18762:1 18763:12 18785:3 18794:1 18799:1 18830:6 18835:2 18844:1 18866:1 18881:1 18882:1 18891:2 18899:1 18909:1 18913:1 18916:4 18917:1 18927:2 18935:1 18937:1 18942:1 18947:1 18958:3 18965:1 18968:1 18976:1 18996:1 19001:1 19005:5 19015:2 19022:1 19045:1 19060:1 19067:1 19082:1 19086:1 19095:1 19134:1 19154:1 19159:2 19168:1 19175:1 19176:3 19182:2 19185:1 19188:1 19206:1 19208:1 19212:1 19217:3 19221:2 19231:1 19237:1 19242:1 19244:3 19262:1 19263:1 19266:1 19268:1 19280:1 19302:1 19306:1 19322:1 19324:1 19339:1 19340:1 19346:1 19347:2 19361:2 19397:1 19405:1 19426:2 19429:1 19430:1 19435:1 19467:1 19484:1 19485:1 19489:2 19490:1 19495:1 19496:1 19498:1 19502:1 19528:1 19542:1 19543:3 19561:1 19569:2 19572:1 19584:3 19588:3 19594:1 19602:2 19609:1 19615:1 19618:1 19629:1 19633:1 19639:1 19644:1 19654:1 19655:1 19657:1 19660:1 19663:5 19664:1 19669:2 19670:1 19672:1 19674:1 19681:1 19689:1 19700:1 19706:1 19733:1 19734:1 19737:1 19738:1 19748:1 19760:1 19768:1 19772:8 19776:1 19779:1 19784:1 19799:1 19828:1 19857:3 19861:1
5 1:1 2:1 5:1 28:1 33:1 35:3 65:1 68:3 70:1 71:1 105:3 131:1 145:1 160:3 164:1 167:1 178:1 185:3 196:1 200:1 215:1 220:1 221:1 227:1 233:2 246:4 261:1 272:2 274:1 278:1 289:1 292:1 297:1 312:2 316:1 348:3 349:2 352:1 353:1 361:1 365:1 366:1 382:2 390:1 393:2 395:1 399:3 413:1 417:1 418:2 422:1 434:1 453:1 461:3 477:1 480:2 483:1 485:1 490:1 495:2 510:4 511:1 525:1 530:1 532:1 540:1 543:1 547:1 559:1 565:1 573:2 574:4 576:1 592:1 595:1 599:1 600:1 605:1 615:2 625:1 639:1 641:1 661:3 669:1 699:2 714:1 720:1 738:1 749:5 753:1 754:1 763:1 793:1 797:1 798:1 811:1 825:1 826:2 833:3 834:1 849:2 860:1 861:1 864:1 865:2 880:8 881:1 901:1 909:1 918:1 920:1 931:2 942:1 943:1 950:2 956:1 960:1 971:2 972:1 980:3 1007:2 1014:1 1015:1 1017:1 1026:1 1028:1 1032:1 1045:1 1074:1 1083:2 1104:2 1108:2 1110:1 1134:1 1138:1 1140:1 1145:3 1157:1 1176:1 1177:2 1185:1 1194:2 1213:4 1214:3 1231:1 1232:5 1242:1 1243:1 1252:1 1264:2 1274:6 1276:1 1279:2 1286:1 1288:4 1310:3 1312:2 1320:1 1323:1 1324:3 1328:3 1332:1 1335:1 1336:2 1337:3 1340:5 1355:2 1357:2 1362:1 1368:1 1380:4 1388:2 1392:1 1408:1 1415:1 1421:1 1424:2 1427:3 1434:3 1458:1 1463:6 1486:1 1493:1 1494:1 1498:1 1504:4 1512:1 1519:1 1566:1 1576:2 1578:1 1616:1 1617:1 1622:2 1628:1 1635:1 1637:1 1643:1 1649:3 1650:1 1653:2 1654:4 1657:5 1658:1 1659:3 1666:3 1669:1 1670:3 1675:2 1677:2 1679:1 1680:1 1681:1 1682:5 1683:1 1685:1 1692:1 1694:1 1700:1 1714:1 1717:1 1721:1 1723:2 1725:1 1732:1 1734:3 1735:1 1742:1 1756:2 1759:1 1765:1 1766:1 1767:1 1769:1 1777:1 1786:1 1807:1 1826:1 1858:1 1859:1 1862:2 1881:1 1884:1 1894:1 1901:1 1902:1 1910:2 1911:1 1920:1 1921:1 1923:3 1939:3 1942:1 1952:2 1963:2 1968:1 1970:1 1973:1 1975:1 1978:1 1980:1 1985:1 2012:1 2030:1 2035:1 2045:1 2050:3 2060:1 2066:1 2067:1 2068:1 2074:1 2078:2 2088:1 2097:9 2099:1 2108:1 2112:9 2123:1 2129:1 2133:1 2138:1 2139:3 2160:1 2175:1 2178:1 2180:1 2185:1 2195:1 2207:1 2220:2 2230:1 2255:4 2269:1 2280:1 2298:1 2302:1 2332:1 2335:1 2337:1 2344:1 2345:1 2356:1 2363:1 2374:1 2383:1 2384:1 2394:2 2397:1 2405:1 2433:1 2435:1 2440:1 2450:1 2453:1 2471:11 2479:1 2490:1 2511:1 2521:2 2532:1 2535:1 2541:1 2544:1 2558:1 2586:1 2590:1 2595:1 2609:1 2622:1 2623:3 2624:1 2645:2 2647:1 2652:1 2656:2 2661:1 2663:2 2666:1 2673:1 2674:1 2695:1 2699:1 2712:1 2713:1 2716:2 2717:2 2723:1 2735:2 2742:2 2746:1 2748:1 2750:1 2753:1 2757:2 2764:1 2791:1 2794:1 2799:1 2801:1 2812:1 2815:2 2816:1 2823:7 2850:1 2870:1 2876:1 2882:3 2896:3 2911:1 2916:1 2917:3 2922:1 2923:1 2928:1 2929:1 2939:1 2947:1 2951:1 2954:1 2955:1 2957:11 2972:4 2973:1 2975:2 2976:7 2977:2 2978:2 2979:1 2982:3 2984:2 2990:1 2992:4 2996:1 2999:1 3002:1 3006:2 3007:2 3011:1 3014:1 3015:1 3042:1 3051:1 3062:1 3065:1 3082:1 3087:1 3090:1 3095:1 3102:3 3117:1 3128:1 3132:1 3137:1 3139:1 3143:1 3148:1 3153:1 3165:3 3169:1 3178:1 3179:1 3180:1 3190:1 3192:1 3194:1 3196:1 3197:1 3222:1 3237:1 3239:1 3243:1 3253:1 3258:2 3263:1 3286:1 3287:1 3289:1 3293:1 3323:1 3325:1 3326:1 3355:1 3365:3 3369:1 3371:1 3407:1 3429:3 3430:1 3446:1 3467:2 3470:1 3472:1 3475:1 3487:1 3499:1 3500:1 3513:4 3516:4 3521:6 3532:1 3540:1 3547:1 3554:1 3572:1 3580:1 3587:1 3590:1 3591:2 3594:3 3613:1 3619:1 3621:1 3627:1 3628:1 3640:1 3643:1 3650:1 3668:2 3682:3 3687:1 3692:2 3693:1 3694:1 3695:2 3700:1 3704:1 3705:1 3708:2 3719:1 3732:1 3745:1 3759:1 3761:1 3765:1 3778:2 3794:1 3808:1 3830:1 3838:1 3854:3 3855:19 3857:1 3861:1 3866:1 3868:7 3876:1 3882:2 3899:2 3910:1 3914:14 3932:1 3935:1 3941:1 3956:1 3958:2 3961:2 3965:1 3969:1 3977:3 3984:1 4049:1 4050:1 4052:2 4063:1 4075:1 4095:1 4102:1 4103:1 4115:1 4134:1 4135:1 4136:2 4142:3 4144:1 4159:1 4161:1 4177:1 4185:1 4202:1 4210:3 4214:2 4228:1 4233:1 4239:1 4246:3 4256:1 4258:2 4259:1 4279:4 4282:4 4299:1 4300:2 4310:1 4316:1 4345:1 4362:1 4363:1 4374:1 4380:2 4387:1 4401:1 4414:1 4415:1 4419:6 4423:1 4430:1 4446:3 4455:2 4456:1 4462:2 4532:1 4537:1 4558:2 4572:3 4578:1 4591:3 4595:1 4596:4 4598:4 4599:2 4601:2 4602:6 4603:4 4605:1 4606:1 4607:2 4609:1 4610:1 4613:1 4630:2 4633:1 4646:1 4650:4 4656:3 4660:2 4671:2 4677:1 4696:1 4714:2 4721:1 4725:7 4726:1 4727:18 4731:2 4735:2 4739:1 4744:1 4745:1 4752:2 4760:1 4761:2 4766:6 4777:2 4782:1 4783:1 4800:1 4809:1 4822:2 4828:7 4830:2 4832:1 4836:1 4844:2 4854:1 4859:1 4871:1 4883:1 4885:1 4890:1 4891:2 4896:5 4900:1 4901:1 4906:1 4909:1 4934:1 4942:1 4944:1 4952:2 4954:1 4983:1 5002:1 5004:1 5012:1 5014:1 5017:1 5037:2 5039:1 5058:1 5076:1 5079:1 5099:2 5110:1 5112:1 5116:1 5119:1 5121:2 5125:1 5141:1 5145:1 5147:1 5153:2173 5155:1 5158:2 5159:1 5168:3 5171:1 5187:1 5188:1 5191:1 5195:1 5196:1 5212:5 5213:1 5230:1 5232:1 5237:1 5250:2 5259:1 5280:1 5288:1 5293:1 5297:1 5306:1 5311:2 5318:1 5334:1 5338:2 5345:2 5358:1 5380:2 5400:1 5404:2 5414:1 5426:1 5427:1 5433:1 5441:1 5444:2 5447:1 5455:1 5482:1 5483:1 5487:1 5497:2 5517:1 5526:1 5560:1 5562:1 5573:1 5592:1 5612:1 5613:1 5615:1 5616:3 5619:1 5620:1 5658:1 5662:1 5670:2 5683:5 5690:1 5695:1 5698:1 5704:1 5741:1 5754:1 5755:1 5757:1 5776:1 5809:1 5825:3 5830:2 5840:1 5845:1 5859:1 5861:3 5864:1 5867:1 5909:2 5921:4 5930:3 5931:1 5934:4 5952:1 5956:1 5959:1 5967:1 5973:1 5981:1 6010:1 6013:4 6016:2 6020:8 6025:1 6026:1 6035:3 6040:1 6053:1 6054:2 6064:1 6069:1 6087:1 6095:1 6115:1 6118:1 6133:1 6135:1 6139:1 6142:4 6155:3 6178:2 6189:1 6212:3 6219:2 6221:1 6240:1 6244:1 6262:3 6273:1 6281:1 6301:2 6311:1 6345:1 6375:4 6377:1 6384:1 6387:1 6392:13 6395:1 6400:1 6405:2 6410:1 6434:2 6440:1 6444:1 6459:2 6460:1 6468:1 6483:3 6485:1 6533:1 6536:1 6538:6 6545:2 6551:1 6563:1 6571:1 6572:3 6576:1 6581:4 6582:1 6584:1 6586:1 6587:3 6590:1 6594:6 6597:1 6602:1 6604:1 6605:1 6607:2 6608:1 6617:1 6637:4 6643:1 6649:1 6652:8 6658:1 6664:1 6672:1 6690:1 6691:2 6693:1 6695:1 6707:1 6711:1 6743:1 6744:1 6749:1 6758:1 6764:2 6774:2 6797:1 6813:1 6828:6 6830:1 6839:1 6844:1 6845:3 6860:11 6866:1 6877:2 6883:20 6886:4 6892:1 6915:1 6947:3 6959:1 6967:2 6974:2 6983:1 6990:1 6996:1 6998:1 6999:1 7001:1 7007:1 7013:1 7021:4 7034:1 7037:1 7043:1 7050:1 7060:1 7072:1 7080:1 7091:1 7099:1 7114:1 7127:1 7134:4 7140:1 7145:1 7153:1 7155:1 7169:1 7181:1 7183:1 7192:1 7198:1 7201:1 7204:1 7218:1 7220:1 7232:4 7244:1 7247:68 7250:1 7256:1 7263:1 7270:1 7271:1 7280:1 7284:1 7291:4 7312:1 7329:1 7353:1 7357:1 7361:1 7372:1 7384:1 7387:4 7390:1 7409:2 7420:1 7422:7 7442:1 7443:1 7444:11 7450:2 7453:1 7454:2 7457:1 7459:1 7473:1 7478:1 7487:1 7494:1 7504:2 7525:3 7540:2 7543:1 7550:5 7556:2 7558:1 7560:1 7563:1 7564:2 7568:1 7572:2 7574:1 7577:1 7578:1 7579:2 7582:4 7583:3 7584:1 7609:1 7642:1 7647:2 7652:1 7656:1 7668:1 7670:1 7678:1 7687:1 7692:1 7700:1 7701:1 7707:1 7710:2 7711:1 7731:4 7737:1 7742:1 7743:1 7769:1 7770:1 7783:1 7803:1 7808:1 7835:2 7838:1 7841:1 7843:1 7849:1 7874:1 7878:1 7880:1 7900:1 7912:1 7913:1 7915:1 7924:1 7930:1 7940:1 7952:1 7957:3 7988:2 7998:1 8000:1 8009:1 8012:3 8013:3 8017:1 8023:2 8042:1 8050:1 8055:1 8056:2 8057:1 8058:4 8065:2 8072:1 8075:2 8080:2 8087:1 8094:3 8096:1 8098:1 8100:1 8105:3 8113:1 8116:1 8119:1 8128:2 8135:3 8137:1 8138:3 8152:1 8167:1 8168:1 8192:3 8194:1 8196:5 8199:2 8200:1 8211:1 8231:1 8245:1 8247:6 8248:1 8253:2 8263:1 8267:1 8272:1 8280:2 8296:1 8319:1 8324:1 8333:1 8339:1 8341:1 8346:1 8347:1 8358:2 8360:1 8368:1 8371:1 8382:1 8383:2 8387:5 8390:1 8391:1 8399:1 8411:1 8414:1 8421:2 8431:1 8434:1 8437:4 8441:1 8456:1 8460:1 8491:1 8496:1 8507:1 8513:1 8520:3 8522:1 8532:1 8533:2 8539:1 8542:2 8546:1 8552:5 8554:1 8556:1 8559:1 8573:1 8576:1 8606:1 8616:4 8623:1 8626:2 8648:1 8651:1 8664:1 8669:1 8678:1 8712:1 8732:2 8742:1 8743:1 8744:1 8755:1 8770:1 8772:1 8776:1 8779:1 8780:2 8785:3 8786:2 8794:1 8797:2 8809:4 8821:1 8840:1 8843:1 8848:1 8859:1 8860:1 8872:1 8886:1 8899:1 8901:2 8923:1 8926:1 8928:1 8937:1 8953:1 8959:2 8967:1 8968:1 8971:2 8974:1 8980:1 8983:1 8986:1 8994:1 8996:1 9006:3 9019:1 9025:2 9026:2 9051:1 9067:2 9072:1 9084:1 9085:1 9090:1 9100:1 9103:2 9107:1 9114:1 9117:1 9122:3 9124:1 9125:1 9129:2 9159:1 9162:1 9165:1 9177:1 9180:2 9183:1 9185:1 9189:1 9191:1 9204:1 9215:1 9228:1 9234:1 9237:1 9238:1 9251:5 9252:3 9253:1 9260:20 9261:2 9268:1 9275:1 9279:1 9283:1 9295:6 9303:1 9308:1 9309:1 9329:1 9333:1 9337:1 9347:1 9357:1 9360:2 9370:1 9378:1 9380:1 9385:1 9388:3 9394:1 9404:1 9406:9 9429:1 9432:1 9443:2 9444:4 9449:1 9456:1 9461:1 9474:1 9478:1 9486:1 9499:2 9508:3 9512:1 9522:1 9525:1 9534:2 9548:3 9560:1 9569:1 9591:1 9594:6 9596:1 9597:1 9605:2 9606:1 9607:1 9612:1 9613:1 9624:9 9625:1 9626:1 9627:2 9632:2 9641:2 9657:1 9659:1 9675:9 9683:2 9693:1 9698:1 9704:2 9712:1 9721:6 9754:1 9759:1 9780:1 9787:1 9788:1 9795:1 9798:2 9813:2 9817:1 9818:1 9822:1 9829:1 9842:1 9859:1 9865:3 9870:2 9879:2 9881:1 9884:1 9886:1 9888:1 9890:1 9904:1 9910:2 9916:1 9917:1 9920:1 9924:3 9926:1 9929:1 9940:1 9948:1 9952:1 9959:1 9963:1 9968:1 9980:2 9983:1 9992:1 10001:1 10007:1 10009:1 10010:1 10013:2 10044:2 10045:1 10057:1 10058:1 10059:3 10068:2 10070:1 10075:1 10092:1 10098:1 10105:3 10111:5 10115:1 10125:2 10127:1 10129:7 10160:1 10163:1 10169:1 10175:1 10193:4 10200:2 10204:3 10212:1 10215:1 10223:1 10243:1 10254:1 10262:1 10263:2 10271:2 10272:4 10280:1 10283:1 10286:1 10297:1 10298:1 10301:1 10306:1 10315:1 10318:1 10334:1 10335:1 10349:4 10356:1 10376:1 10377:2 10378:1 10398:2 10399:2 10409:4 10415:1 10442:3 10459:34 10463:1 10468:2 10479:20 10484:9 10485:1 10494:1 10504:1 10510:1 10515:1 10551:1 10554:4 10564:1 10567:2 10570:1 10573:4 10595:2 10632:2 10639:3 10640:1 10642:1 10649:1 10654:1 10685:2 10720:1 10721:7 10723:1 10725:2 10740:1 10742:2 10749:1 10756:11 10764:1 10769:1 10773:1 10777:1 10790:2 10797:1 10820:3 10822:1 10824:1 10845:1 10857:1 10865:2 10868:1 10877:1 10886:1 10888:1 10892:2 10922:1 10925:1 10930:1 10934:1 10945:1 10948:1 10950:1 10957:1 10963:1 10968:1 10972:1 10975:1 10978:1 10982:1 10990:1 10996:1 11013:1 11017:1 11032:3 11042:1 11046:2 11050:2 11055:1 11058:39 11075:1 11081:2 11082:1 11085:1 11088:1 11099:1 11117:1 11123:1 11126:1 11132:1 11140:1 11159:1 11164:1 11175:1 11180:1 11195:1 11197:11 11200:8 11203:1 11207:1 11272:2 11273:1 11276:1 11280:2 11281:1 11289:1 11310:2 11311:1 11313:1 11319:1 11321:7 11326:2 11328:1 11330:2 11357:1 11362:2 11376:3 11379:1 11403:3 11405:2 11407:1 11408:1 11415:2 11416:2 11417:1 11420:3 11433:1 11439:1 11446:4 11448:1 11456:1 11457:1 11458:1 11459:2 11473:2 11496:1 11520:1 11523:1 11527:1 11557:1 11559:1 11563:2 11565:1 11568:3 11573:3 11588:1 11599:1 11600:1 11607:1 11608:1 11623:1 11634:1 11636:1 11637:1 11639:1 11641:3 11643:1 11646:1 11649:1 11652:1 11654:1 11656:3 11658:2 11664:1 11667:1 11668:1 11669:1 11678:1 11679:2 11684:1 11687:2 11698:1 11702:4 11715:1 11721:1 11724:1 11730:7 11732:1 11735:2 11736:3 11761:1 11765:1 11770:1 11773:1 11782:1 11788:1 11800:1 11829:2 11831:3 11835:1 11842:1 11859:1 11864:1 11866:1 11877:2 11881:1 11885:2 11888:1 11895:1 11898:1 11914:1 11921:1 11937:1 11951:1 11958:1 11978:2 11980:1 11992:1 12000:1 12019:1 12026:1 12037:1 12043:1 12050:1 12052:6 12055:1 12063:1 12092:1 12102:1 12116:1 12130:1 12132:1 12138:1 12161:1 12172:1 12186:1 12210:1 12228:1 12234:1 12245:1 12251:1 12256:2 12260:2 12274:1 12280:4 12289:2 12305:1 12306:1 12328:1 12331:1 12355:1 12357:3 12365:2 12392:1 12397:2 12403:1 12405:1 12415:1 12433:1 12435:2 12437:1 12439:1 12440:1 12454:1 12461:3 12466:1 12471:1 12480:1 12481:1 12497:3 12499:1 12519:1 12532:1 12537:2 12541:1 12556:2 12557:2 12558:1 12559:1 12566:3 12572:1 12577:2 12578:1 12581:2 12585:3 12591:1 12592:1 12610:2 12611:1 12613:1 12617:1 12640:1 12642:3 12645:1 12648:1 12671:1 12672:3 12678:2 12687:1 12688:3 12709:1 12710:1 12712:1 12713:1 12720:1 12722:1 12723:1 12726:1 12728:1 12731:3 12739:1 12747:1 12752:1 12754:1 12759:1 12769:1 12772:1 12779:1 12808:1 12809:1 12828:3 12836:1 12837:1 12838:1 12857:1 12858:1 12866:1 12876:1 12877:2 12893:1 12914:1 12918:3 12919:1 12922:1 12928:1 12938:1 12962:5 12967:1 12970:1 12977:2 12978:3 12983:1 12992:1 12993:2 13001:1 13005:1 13018:1 13019:4 13021:1 13028:1 13041:1 13048:1 13052:1 13056:2 13058:1 13072:1 13087:1 13100:1 13102:2 13106:1 13108:1 13121:1 13136:2 13141:2 13142:1 13143:2 13153:1 13156:1 13170:1 13179:1 13189:1 13192:1 13197:1 13200:3 13203:3 13207:6 13208:1 13212:1 13214:1 13219:1 13220:1 13231:2 13237:1 13238:6 13240:1 13247:1 13250:1 13256:3 13262:1 13266:1 13269:1 13307:1 13338:1 13358:2 13370:6 13383:1 13386:1 13388:1 13402:1 13426:2 13432:1 13446:1 13448:2 13462:1 13468:1 13481:1 13483:3 13485:3 13491:2 13506:3 13508:1 13513:1 13516:1 13517:3 13538:1 13546:1 13556:1 13574:1 13582:1 13583:1 13585:1 13586:2 13627:6 13628:2 13631:1 13642:1 13646:1 13652:2 13655:1 13659:1 13660:2 13662:3 13668:1 13670:2 13672:1 13677:2 13682:1 13684:1 13698:1 13703:2 13710:1 13727:1 13735:2 13753:1 13759:1 13769:1 13783:1 13789:5 13812:1 13817:1 13825:2 13826:1 13832:1 13846:1 13853:1 13855:1 13856:1 13866:8 13876:1 13891:1 13899:4 13902:2 13904:2 13907:1 13911:1 13912:3 13913:5 13915:1 13918:1 13921:1 13924:1 13926:2 13927:1 13934:2 13939:12 13942:2 13944:2 13947:1 13948:8 13950:2 13956:1 13959:1 13981:1 13983:3 13999:1 14049:1 14051:3 14055:1 14058:3 14059:1 14060:1 14064:1 14077:1 14090:1 14095:2 14100:5 14105:1 14112:2 14140:1 14142:1 14148:1 14151:1 14172:5 14188:1 14192:1 14199:2 14205:1 14212:3 14228:1 14238:1 14258:1 14261:1 14271:2 14278:1 14279:1 14284:1 14286:1 14288:1 14293:1 14298:7 14311:1 14338:1 14344:1 14346:2 14349:1 14353:1 14361:1 14362:1 14363:3 14366:1 14371:1 14374:2 14376:1 14379:1 14383:1 14411:1 14413:1 14429:2 14445:1 14446:1 14470:2 14472:1 14479:1 14492:1 14498:1 14527:3 14532:1 14535:1 14572:1 14575:2 14599:1 14603:1 14618:2 14624:2 14625:3 14636:1 14637:4 14641:5 14651:6 14652:1 14656:1 14663:1 14664:1 14672:1 14687:1 14694:3 14698:1 14701:2 14705:1 14706:1 14739:2 14747:1 14756:1 14770:4 14775:1 14779:1 14780:1 14781:1 14790:1 14796:1 14807:1 14811:7 14815:1 14828:5 14832:1 14845:1 14846:1 14852:1 14853:1 14856:1 14858:1 14868:1 14881:1 14882:1 14884:1 14889:3 14895:1 14916:1 14933:2 14957:1 14981:1 14995:1 15003:1 15004:1 15025:3 15040:2 15048:1 15051:1 15052:1 15055:1 15066:1 15069:1 15086:1 15087:1 15089:1 15096:1 15097:1 15110:4 15113:1 15120:1 15130:1 15135:2 15139:1 15142:1 15149:3 15151:1 15156:2 15164:1 15166:1 15170:3 15171:11 15190:1 15195:1 15210:1 15215:1 15226:1 15230:1 15232:4 15240:1 15241:1 15249:2 15254:1 15256:1 15262:1 15265:2 15267:2 15268:1 15284:1 15287:1 15304:1 15305:1 15308:1 15311:1 15331:1 15351:1 15354:1 15356:2 15363:1 15370:1 15396:1 15404:3 15413:1 15452:2 15455:1 15457:4 15458:6 15461:1 15466:1 15478:1 15490:3 15493:1 15499:1 15511:6 15513:1 15514:1 15516:1 15521:6 15525:1 15527:1 15532:7 15537:1 15545:2 15549:1 15560:1 15572:2 15582:5 15583:2 15584:2 15587:1 15592:1 15596:1 15598:11 15607:1 15608:3 15614:1 15616:1 15618:2 15619:1 15635:2 15643:4 15651:1 15661:1 15678:2 15679:1 15681:1 15686:1 15693:1 15698:1 15703:1 15710:4 15721:3 15727:1 15730:1 15741:1 15753:1 15760:1 15764:1 15773:1 15774:1 15776:1 15797:2 15805:1 15806:1 15820:1 15827:1 15865:2 15873:1 15876:1 15878:1 15882:6 15886:4 15890:2 15922:1 15936:1 15940:1 15943:1 15949:1 15950:1 15957:1 15960:1 15962:3 15965:1 15966:3 15969:1 15983:2 15990:1 16001:1 16019:2 16020:2 16023:1 16029:1 16032:1 16036:1 16057:1 16060:2 16065:1 16067:1 16071:1 16101:1 16109:1 16115:1 16122:2 16123:3 16125:1 16132:1 16136:1 16145:2 16147:1 16154:1 16157:2 16175:4 16181:1 16202:1 16232:1 16274:1 16278:1 16297:1 16299:2 16301:1 16305:3 16308:1 16309:1 16314:1 16319:1 16329:3 16333:2 16345:2 16350:1 16364:1 16369:2 16374:1 16379:1 16395:1 16399:1 16403:1 16406:1 16408:1 16425:1 16462:1 16475:1 16509:1 16535:3 16541:1 16558:1 16560:3 16575:1 16579:2 16583:1 16587:1 16591:1 16592:2 16594:1 16624:1 16630:1 16652:1 16662:1 16668:1 16670:1 16679:1 16687:1 16693:1 16705:1 16706:1 16707:1 16746:2 16753:1 16756:3 16763:3 16766:1 16776:1 16785:1 16792:1 16793:1 16807:1 16810:1 16819:1 16820:1 16825:1 16826:2 16827:1 16842:1 16853:1 16875:1 16880:1 16886:4 16898:1 16900:1 16902:1 16905:2 16915:1 16917:3 16919:1 16922:2 16940:1 16948:1 16951:1 16953:1 16957:1 16961:4 16962:2 16972:1 16978:2 16981:1 16983:1 16993:1 16999:1 17000:1 17002:3 17003:1 17006:1 17008:1 17009:2 17021:2 17024:2 17029:1 17030:1 17031:2 17032:1 17034:2 17043:1 17050:1 17054:2 17058:1 17060:1 17067:1 17071:2 17076:2 17088:1 17093:1 17097:3 17108:1 17113:1 17115:1 17119:2 17120:3 17125:1 17137:2 17139:2 17143:2 17164:2 17169:1 17175:1 17190:1 17196:1 17199:1 17202:4 17204:1 17207:1 17208:4 17209:2 17220:1 17227:1 17250:1 17260:1 17267:1 17278:1 17282:1 17304:1 17311:1 17317:3 17318:1 17319:1 17336:1 17340:1 17341:1 17345:1 17349:1 17382:1 17383:1 17384:1 17399:4 17404:1 17405:1 17414:1 17415:1 17418:1 17422:1 17427:2 17432:1 17434:10 17455:1 17468:2 17470:1 17481:1 17486:1 17511:1 17513:1 17533:1 17540:2 17561:1 17565:1 17570:1 17572:1 17582:1 17599:1 17602:2 17603:1 17604:2 17615:1 17616:1 17629:2 17637:1 17640:3 17662:1 17667:1 17695:1 17713:2 17718:1 17733:1 17750:1 17753:1 17757:1 17781:6 17784:2 17789:1 17791:1 17792:2 17793:1 17796:1 17820:1 17826:1 17827:1 17828:1 17833:1 17835:1 17844:6 17861:2 17873:1 17878:2 17891:3 17894:1 17897:28 17902:2 17933:1 17936:1 17947:3 17961:1 17967:2 17974:2 17978:1 18044:2 18053:1 18069:1 18073:2 18080:2 18084:1 18098:1 18106:1 18107:2 18115:1 18117:2 18119:1 18133:1 18141:1 18145:1 18151:1 18153:1 18161:1 18189:1 18190:1 18196:1 18217:1 18219:1 18232:1 18236:2 18255:6 18257:2 18258:1 18259:2 18261:1 18262:1 18270:4 18278:1 18281:1 18282:1 18283:1 18288:1 18294:1 18295:1 18296:1 18303:1 18305:1 18309:1 18311:2 18313:1 18325:1 18332:1 18358:1 18367:1 18370:2 18372:1 18392:1 18394:1 18401:1 18402:1 18404:1 18412:1 18414:1 18415:2 18417:4 18426:1 18434:1 18435:1 18437:1 18449:1 18460:1 18461:1 18463:1 18465:1 18474:1 18482:1 18489:3 18498:1 18499:7 18505:1 18521:1 18524:2 18546:1 18549:1 18550:1 18558:1 18562:2 18575:1 18576:1 18577:1 18580:4 18582:1 18583:1 18584:1 18608:1 18616:3 18628:1 18645:2 18652:1 18656:4 18666:2 18670:5 18681:1 18687:1 18718:1 18719:1 18728:1 18730:1 18762:1 18763:12 18785:3 18794:1 18799:1 18830:6 18835:2 18844:1 18866:1 18881:1 18882:1 18891:2 18899:1 18909:1 18913:1 18916:4 18917:1 18927:2 18935:1 18937:1 18942:1 18947:1 18958:3 18965:1 18968:1 18976:1 18996:1 19001:1 19005:5 19015:2 19022:1 19045:1 19060:1 19067:1 19082:1 19086:1 19095:1 19134:1 19154:1 19159:2 19168:1 19175:1 19176:4 19182:2 19185:1 19188:1 19206:1 19208:1 19212:1 19217:3 19221:2 19231:1 19237:1 19242:1 19244:3 19260:1 19262:1 19263:1 19266:1 19268:1 19280:1 19302:1 19306:1 19322:1 19324:1 19339:1 19340:1 19346:1 19347:2 19361:2 19397:1 19405:1 19426:2 19429:1 19430:1 19431:1 19435:1 19467:1 19484:1 19485:1 19489:2 19490:1 19495:1 19496:1 19498:1 19502:1 19528:1 19542:1 19543:3 19561:1 19569:2 19572:1 19584:3 19588:3 19594:1 19602:2 19609:1 19615:1 19618:1 19629:1 19633:1 19639:1 19644:1 19654:1 19655:1 19657:1 19660:1 19663:5 19664:1 19669:2 19670:1 19672:1 19674:1 19681:1 19689:1 19700:1 19706:1 19733:1 19734:1 19737:1 19738:1 19748:1 19760:1 19768:1 19772:8 19776:1 19779:1 19784:1 19799:1 19828:1 19857:3 19861:1
5 1:1 2:1 5:1 28:1 33:1 35:3 65:1 68:3 70:1 71:1 77:1 105:3 131:1 145:1 160:3 164:1 167:1 178:1 185:3 196:1 200:1 215:1 220:1 221:1 227:1 233:2 246:4 261:1 272:2 274:1 278:1 289:1 292:1 297:1 312:2 316:1 348:3 349:2 352:1 353:1 361:1 365:1 366:1 382:2 390:1 393:2 395:1 399:3 413:1 417:1 418:2 422:1 434:1 453:1 461:3 477:1 480:2 483:1 485:1 490:1 495:2 510:5 511:1 525:1 530:1 532:1 540:1 543:1 547:1 559:1 565:1 573:2 574:4 576:1 592:1 595:1 599:1 600:1 605:1 615:2 625:1 634:2 639:1 641:1 661:3 669:1 699:2 714:2 720:1 738:1 749:6 753:1 754:1 763:1 793:1 797:1 798:1 811:1 825:1 826:2 833:3 834:1 849:2 860:1 861:1 863:1 864:1 865:2 880:8 881:1 901:1 909:1 918:1 920:1 931:2 942:1 943:1 950:2 956:1 960:1 971:2 972:1 980:4 1007:2 1014:1 1015:1 1017:1 1026:1 1028:1 1032:1 1045:1 1074:1 1083:2 1104:2 1108:2 1110:1 1134:1 1138:1 1140:1 1145:3 1157:1 1176:1 1177:2 1185:1 1194:2 1213:4 1214:3 1231:1 1232:5 1242:1 1243:1 1252:1 1264:2 1274:6 1276:1 1279:2 1286:1 1288:4 1310:3 1312:2 1320:1 1323:1 1324:3 1328:3 1332:1 1335:1 1336:2 1337:3 1340:5 1355:2 1357:2 1362:1 1368:1 1380:4 1388:2 1392:1 1408:1 1415:1 1421:1 1424:2 1427:3 1434:3 1458:1 1463:6 1486:1 1493:1 1494:1 1498:1 1504:4 1512:1 1519:1 1566:1 1576:2 1578:1 1616:1 1617:1 1622:2 1628:1 1635:1 1637:1 1643:1 1649:3 1650:1 1653:2 1654:4 1657:5 1658:1 1659:3 1666:3 1669:2 1670:4 1675:2 1677:2 1679:1 1680:1 1681:1 1682:5 1683:1 1685:1 1692:1 1694:1 1700:1 1714:1 1717:1 1721:1 1723:2 1725:1 1732:1 1734:3 1735:1 1742:1 1756:2 1759:1 1765:1 1766:1 1767:1 1769:1 1777:1 1786:1 1807:1 1826:1 1858:1 1859:1 1862:2 1881:1 1884:1 1894:1 1901:1 1902:1 1910:3 1911:1 1920:1 1921:1 1923:4 1939:3 1942:1 1952:2 1963:2 1968:1 1970:1 1973:1 1975:1 1978:1 1980:1 1985:1 2012:1 2030:1 2035:1 2045:1 2050:3 2060:1 2066:1 2067:1 2068:1 2074:1 2078:2 2088:1 2096:1 2097:10 2099:1 2108:1 2112:10 2123:1 2129:1 2133:1 2138:1 2139:3 2160:1 2175:1 2178:1 2180:1 2185:1 2195:1 2207:1 2220:2 2230:1 2255:5 2269:1 2280:1 2298:1 2302:1 2332:1 2335:1 2337:1 2344:1 2345:1 2356:1 2363:1 2374:1 2383:1 2384:2 2394:2 2397:1 2405:1 2433:1 2435:1 2440:1 2450:1 2453:1 2471:12 2479:1 2490:1 2511:1 2521:2 2532:1 2535:1 2541:1 2544:1 2558:1 2586:1 2590:1 2594:1 2595:1 2609:2 2622:1 2623:3 2624:1 2645:2 2647:1 2652:1 2656:2 2661:1 2663:2 2666:1 2673:1 2674:1 2695:1 2699:1 2712:1 2713:1 2716:3 2717:2 2723:1 2735:2 2742:2 2746:1 2748:1 2750:1 2753:1 2757:2 2764:1 2791:1 2794:1 2799:1 2801:1 2812:1 2815:2 2816:1 2823:8 2850:1 2870:1 2876:1 2882:3 2891:1 2896:3 2911:1 2916:1 2917:3 2918:1 2922:1 2923:1 2928:1 2929:1 2939:1 2947:1 2951:1 2954:1 2955:1 2957:11 2972:4 2973:1 2975:3 2976:7 2977:2 2978:3 2979:1 2982:3 2984:2 2990:1 2992:4 2996:1 2999:1 3002:1 3006:2 3007:2 3011:1 3014:1 3015:1 3042:1 3051:1 3062:1 3065:1 3082:1 3087:2 3090:1 3095:1 3102:3 3117:1 3128:1 3132:1 3137:1 3139:1 3143:1 3148:1 3153:1 3165:3 3169:1 3178:1 3179:1 3180:1 3190:1 3192:2 3194:1 3196:1 3197:1 3222:1 3237:1 3239:1 3243:1 3253:1 3258:2 3263:1 3284:1 3286:1 3287:1 3289:1 3293:1 3323:1 3325:1 3326:1 3355:1 3365:3 3369:1 3371:1 3407:1 3429:3 3430:1 3446:1 3467:2 3470:1 3472:1 3475:1 3487:1 3499:1 3500:1 3513:4 3516:4 3521:6 3532:1 3540:1 3547:1 3554:1 3572:1 3580:1 3587:1 3590:1 3591:2 3594:3 3613:1 3619:1 3621:1 3627:1 3628:1 3640:1 3643:1 3650:1 3668:2 3682:3 3687:1 3692:2 3693:2 3694:1 3695:2 3700:1 3704:1 3705:1 3708:2 3719:1 3732:1 3745:1 3759:1 3761:1 3765:1 3778:2 3794:1 3808:1 3830:1 3838:1 3854:3 3855:19 3857:1 3861:1 3866:1 3868:7 3876:1 3882:2 3899:2 3910:1 3914:15 3932:1 3935:1 3941:1 3956:1 3958:2 3961:2 3965:1 3969:1 3977:3 3984:1 4049:1 4050:1 4052:2 4063:1 4075:1 4095:1 4102:1 4103:1 4115:1 4134:1 4135:1 4136:2 4142:4 4144:1 4159:1 4161:2 4177:1 4185:1 4202:1 4210:3 4214:2 4228:1 4233:1 4239:1 4246:3 4256:1 4258:2 4259:1 4279:4 4282:4 4299:1 4300:2 4310:1 4316:1 4345:1 4362:1 4363:1 4374:1 4380:2 4387:1 4401:1 4414:1 4415:1 4419:6 4423:1 4430:1 4446:3 4455:2 4456:1 4462:2 4532:1 4537:1 4549:1 4558:2 4572:3 4578:1 4591:3 4595:1 4596:4 4598:4 4599:3 4601:2 4602:6 4603:4 4605:1 4606:1 4607:2 4609:1 4610:1 4613:1 4630:2 4633:1 4646:1 4650:4 4656:3 4660:4 4671:2 4677:1 4696:1 4714:2 4721:1 4725:7 4726:1 4727:19 4731:2 4735:2 4739:1 4744:1 4745:1 4752:2 4760:1 4761:2 4766:6 4777:2 4782:1 4783:1 4800:1 4809:1 4822:2 4828:7 4830:2 4832:1 4836:1 4844:2 4854:1 4859:1 4871:1 4883:1 4885:1 4890:1 4891:2 4896:5 4900:1 4901:1 4906:1 4909:1 4934:1 4942:1 4944:1 4952:2 4954:1 4983:1 5002:1 5004:1 5012:1 5014:1 5017:1 5037:2 5039:1 5058:1 5076:1 5079:1 5099:2 5110:1 5112:1 5116:1 5119:1 5121:2 5125:1 5141:1 5145:1 5147:1 5153:2250 5155:1 5158:2 5159:1 5168:3 5171:1 5187:1 5188:1 5191:1 5195:1 5196:1 5212:6 5213:1 5230:1 5232:1 5237:1 5250:2 5259:1 5280:2 5288:1 5293:1 5297:1 5306:1 5311:2 5318:1 5334:1 5338:2 5345:2 5358:1 5380:2 5400:1 5404:2 5414:1 5426:1 5427:1 5433:1 5441:1 5444:2 5447:1 5455:1 5482:1 5483:1 5487:1 5497:2 5517:1 5526:1 5560:1 5562:1 5573:1 5592:1 5612:1 5613:1 5615:1 5616:3 5619:1 5620:1 5658:1 5662:1 5670:2 5683:5 5690:1 5695:1 5698:1 5704:1 5741:1 5754:1 5755:1 5757:1 5776:1 5809:1 5825:3 5830:2 5840:1 5845:1 5859:1 5861:3 5864:1 5867:1 5909:2 5921:4 5930:3 5931:1 5934:4 5952:1 5956:1 5959:1 5967:1 5973:1 5981:1 6003:1 6010:1 6013:4 6016:2 6020:8 6025:1 6026:1 6035:3 6040:1 6053:1 6054:2 6064:1 6069:1 6087:1 6095:1 6115:1 6118:1 6120:1 6133:1 6135:1 6139:1 6142:5 6155:3 6178:2 6189:1 6212:3 6219:2 6221:1 6240:1 6244:1 6262:3 6273:1 6281:1 6301:2 6303:1 6311:1 6345:1 6357:1 6375:4 6377:1 6384:1 6387:1 6392:13 6395:1 6400:1 6405:2 6410:1 6434:2 6440:1 6444:1 6459:2 6460:1 6468:1 6483:3 6485:1 6533:1 6536:1 6538:6 6545:2 6551:1 6563:1 6564:1 6571:1 6572:3 6576:1 6581:4 6582:2 6584:1 6586:1 6587:3 6590:2 6594:6 6597:1 6602:1 6604:1 6605:2 6606:1 6607:2 6608:1 6617:1 6637:4 6643:1 6649:1 6652:8 6658:1 6664:1 6672:1 6690:1 6691:2 6693:1 6695:1 6707:1 6711:1 6743:2 6744:1 6749:1 6758:1 6764:2 6774:2 6797:1 6813:1 6828:6 6830:1 6839:1 6844:1 6845:3 6860:12 6866:1 6877:3 6883:20 6886:4 6892:1 6915:1 6947:4 6959:1 6967:2 6974:2 6983:1 6990:2 6996:1 6998:1 6999:1 7001:1 7007:1 7013:1 7021:4 7034:1 7037:1 7043:1 7050:1 7060:1 7072:1 7080:1 7091:1 7099:1 7114:1 7127:1 7134:4 7140:1 7145:1 7153:1 7155:1 7169:1 7181:1 7183:1 7192:1 7198:1 7201:1 7204:1 7218:1 7220:1 7232:4 7244:1 7247:72 7250:1 7256:1 7263:2 7270:1 7271:1 7280:1 7284:1 7291:4 7312:1 7329:1 7353:1 7357:1 7361:1 7372:1 7384:1 7387:4 7390:1 7409:2 7420:1 7422:8 7434:1 7442:1 7443:1 7444:12 7450:2 7453:1 7454:2 7457:1 7459:1 7473:1 7478:1 7487:1 7494:1 7504:2 7525:3 7540:2 7543:1 7550:5 7556:2 7558:1 7560:1 7563:1 7564:2 7568:1 7572:2 7574:1 7577:1 7578:1 7579:2 7582:5 7583:3 7584:1 7609:1 7642:1 7647:2 7652:1 7656:1 7668:1 7670:1 7678:1 7687:1 7692:1 7700:1 7701:1 7707:1 7710:2 7711:1 7731:4 7737:1 7742:1 7743:1 7769:1 7770:2 7783:1 7803:1 7808:1 7835:2 7838:1 7841:1 7843:1 7849:1 7874:1 7878:1 7880:1 7900:1 7912:1 7913:1 7915:1 7924:1 7930:1 7940:1 7952:1 7957:3 7988:2 7998:1 8000:1 8009:1 8012:3 8013:3 8017:1 8023:2 8042:1 8050:1 8055:1 8056:2 8057:1 8058:4 8065:2 8072:1 8075:2 8080:2 8087:1 8094:3 8096:1 8098:1 8100:1 8105:3 8113:1 8116:1 8119:1 8128:2 8135:3 8137:1 8138:4 8152:1 8167:1 8168:1 8192:3 8194:1 8196:5 8199:2 8200:1 8211:1 8231:1 8245:1 8247:6 8248:1 8253:2 8263:1 8267:1 8272:1 8280:2 8296:1 8319:1 8324:1 8333:1 8339:1 8341:1 8346:1 8347:1 8358:2 8360:1 8368:1 8371:1 8382:1 8383:2 8387:5 8390:1 8391:1 8399:1 8411:1 8414:1 8421:2 8431:1 8434:1 8437:5 8441:1 8456:1 8460:1 8491:1 8496:1 8507:1 8513:1 8520:3 8522:1 8532:1 8533:2 8539:1 8542:2 8546:1 8552:5 8554:1 8556:1 8559:1 8573:1 8576:1 8606:1 8616:4 8623:1 8626:2 8648:2 8651:1 8664:1 8669:1 8678:1 8712:1 8732:2 8742:1 8743:1 8744:1 8755:1 8770:1 8772:1 8776:1 8779:1 8780:2 8785:3 8786:2 8794:1 8797:2 8809:4 8821:1 8840:1 8843:1 8848:1 8859:1 8860:1 8872:1 8886:1 8899:1 8901:2 8923:1 8926:1 8928:1 8937:1 8953:1 8959:2 8967:1 8968:1 8971:2 8974:1 8980:1 8983:1 8986:1 8994:1 8996:1 9006:3 9019:1 9025:2 9026:2 9051:1 9067:2 9072:1 9084:1 9085:1 9090:1 9100:2 9103:2 9107:1 9113:1 9114:1 9117:1 9122:3 9124:1 9125:1 9129:2 9159:1 9162:1 9165:1 9177:1 9180:2 9183:1 9185:1 9189:1 9191:2 9204:1 9215:1 9228:1 9234:1 9237:1 9238:1 9251:5 9252:4 9253:1 9260:22 9261:2 9268:1 9275:1 9279:1 9283:1 9295:6 9303:1 9308:1 9309:1 9329:1 9333:1 9337:1 9347:1 9357:1 9360:2 9370:1 9378:1 9380:1 9385:1 9388:3 9394:1 9404:1 9406:10 9429:1 9432:1 9443:2 9444:5 9449:1 9456:1 9461:1 9474:1 9478:1 9486:1 9499:2 9508:3 9512:2 9522:1 9525:1 9534:2 9548:3 9560:1 9569:1 9591:1 9594:6 9596:1 9597:1 9605:2 9606:1 9607:1 9612:1 9613:1 9624:10 9625:1 9626:1 9627:2 9632:2 9641:2 9657:1 9659:1 9675:9 9683:2 9693:1 9698:1 9704:2 9712:1 9721:6 9754:1 9759:1 9780:1 9787:1 9788:1 9795:1 9798:2 9813:2 9817:1 9818:1 9822:1 9829:1 9842:1 9859:1 9865:3 9870:2 9879:2 9881:1 9884:1 9886:1 9888:1 9890:1 9904:1 9910:2 9916:1 9917:1 9918:1 9920:1 9924:3 9926:1 9929:1 9940:1 9948:1 9952:1 9959:2 9963:1 9968:1 9980:2 9983:1 9992:1 10001:1 10007:1 10009:1 10010:1 10013:2 10017:1 10044:2 10045:1 10057:1 10058:1 10059:3 10068:2 10070:1 10075:1 10092:1 10098:1 10105:3 10111:5 10115:1 10124:1 10125:2 10127:1 10129:7 10160:1 10163:1 10169:1 10175:1 10193:4 10200:2 10204:3 10212:1 10215:1 10223:1 10243:1 10254:1 10262:1 10263:2 10271:2 10272:4 10280:1 10283:1 10286:1 10297:1 10298:1 10301:1 10306:1 10315:1 10318:1 10334:1 10335:1 10349:4 10356:1 10376:2 10377:2 10378:1 10398:2 10399:2 10409:4 10415:1 10442:3 10459:36 10463:1 10468:3 10474:1 10479:20 10484:9 10485:1 10494:1 10504:1 10510:1 10515:1 10551:1 10554:4 10564:1 10567:2 10570:1 10573:6 10595:2 10632:2 10639:3 10640:1 10642:1 10649:1 10654:1 10685:2 10720:1 10721:7 10723:1 10725:2 10740:1 10742:2 10749:1 10756:12 10764:1 10769:1 10773:1 10777:1 10790:2 10797:1 10820:3 10822:1 10824:1 10845:1 10857:1 10865:2 10868:1 10877:1 10886:1 10888:1 10892:2 10922:1 10925:1 10930:1 10934:1 10945:1 10948:1 10950:1 10957:1 10963:1 10968:1 10972:1 10975:1 10978:1 10982:1 10990:1 10996:1 11013:1 11017:1 11032:3 11042:1 11046:2 11050:2 11055:2 11058:42 11075:1 11081:2 11082:1 11085:1 11088:1 11099:1 11117:1 11123:1 11126:1 11132:1 11140:1 11159:1 11164:1 11175:1 11180:2 11195:1 11197:12 11200:9 11203:1 11207:1 11272:2 11273:2 11276:1 11280:2 11281:1 11289:1 11310:2 11311:1 11313:1 11319:1 11321:7 11326:2 11328:1 11330:2 11344:1 11357:1 11362:2 11376:3 11379:1 11391:1 11403:3 11405:2 11407:1 11408:1 11415:2 11416:2 11417:1 11420:3 11433:1 11439:1 11446:4 11448:1 11456:1 11457:1 11458:1 11459:2 11473:2 11496:1 11520:1 11523:2 11527:1 11557:1 11559:1 11563:2 11565:1 11568:3 11573:4 11588:1 11599:1 11600:1 11601:1 11607:1 11608:1 11623:1 11634:1 11636:1 11637:1 11639:1 11641:3 11643:2 11646:1 11649:1 11652:1 11654:1 11656:3 11658:2 11664:1 11667:1 11668:1 11669:1 11678:1 11679:3 11684:2 11687:2 11689:1 11698:1 11702:4 11715:1 11721:1 11724:1 11730:7 11732:1 11735:2 11736:3 11739:1 11761:1 11765:1 11770:1 11773:1 11782:2 11788:1 11800:1 11829:2 11831:3 11835:1 11842:1 11859:1 11864:1 11866:1 11877:2 11881:1 11885:2 11888:1 11895:1 11898:1 11914:1 11921:1 11937:1 11951:2 11958:1 11978:2 11980:1 11992:1 12000:1 12019:1 12026:1 12037:1 12043:1 12050:2 12052:7 12055:1 12063:1 12092:1 12102:1 12116:1 12130:1 12132:1 12138:1 12161:1 12172:1 12186:1 12210:1 12228:1 12234:1 12245:1 12251:1 12256:2 12260:2 12274:1 12276:1 12280:4 12289:2 12305:1 12306:1 12328:1 12331:1 12355:1 12357:3 12365:2 12392:1 12397:2 12403:1 12405:1 12415:1 12433:1 12435:3 12437:1 12439:1 12440:1 12451:1 12454:1 12461:3 12466:1 12471:1 12480:1 12481:1 12497:3 12499:1 12519:1 12532:1 12537:2 12541:1 12556:2 12557:2 12558:1 12559:1 12566:3 12572:1 12577:2 12578:1 12581:2 12585:3 12591:1 12592:1 12610:2 12611:1 12613:1 12617:1 12640:1 12642:3 12645:1 12648:1 12671:1 12672:3 12678:2 12687:1 12688:3 12709:1 12710:1 12712:1 12713:1 12720:1 12722:1 12723:1 12726:1 12728:1 12731:3 12739:1 12747:1 12752:1 12754:1 12759:1 12769:1 12772:1 12779:1 12808:1 12809:1 12828:4 12836:1 12837:1 12838:1 12857:1 12858:1 12866:1 12876:1 12877:3 12893:1 12914:1 12918:3 12919:1 12922:1 12928:1 12938:1 12962:5 12967:1 12970:1 12977:2 12978:3 12983:1 12992:1 12993:2 13001:1 13005:1 13018:1 13019:4 13021:1 13028:1 13041:1 13048:1 13052:1 13056:2 13058:1 13072:1 13087:1 13100:1 13102:2 13106:1 13108:1 13121:1 13136:2 13141:2 13142:1 13143:2 13153:1 13156:1 13170:1 13179:1 13189:1 13192:1 13197:1 13200:3 13203:3 13207:6 13208:1 13212:1 13214:1 13219:1 13220:1 13231:2 13237:1 13238:6 13239:1 13240:1 13247:1 13250:1 13256:3 13262:1 13266:1 13269:1 13307:1 13338:1 13358:2 13370:6 13383:1 13386:1 13388:1 13402:1 13426:2 13432:1 13446:1 13448:2 13462:1 13468:1 13481:1 13483:3 13485:3 13491:3 13506:3 13508:1 13512:1 13513:1 13516:1 13517:3 13538:1 13546:1 13556:1 13574:1 13582:1 13583:1 13585:1 13586:2 13608:1 13627:6 13628:2 13631:1 13642:1 13646:1 13652:3 13655:1 13659:1 13660:2 13662:3 13668:1 13670:2 13672:1 13677:2 13682:1 13684:1 13698:1 13703:2 13710:1 13727:1 13735:2 13753:1 13759:1 13769:1 13783:1 13789:5 13812:1 13817:1 13825:2 13826:1 13832:1 13846:1 13853:1 13855:1 13856:1 13866:8 13876:1 13891:1 13899:4 13902:2 13904:2 13907:1 13911:1 13912:3 13913:5 13915:1 13918:1 13921:1 13924:1 13926:2 13927:1 13934:2 13939:13 13942:2 13944:2 13947:1 13948:8 13950:2 13956:1 13959:1 13981:1 13983:3 13999:1 14049:1 14051:5 14055:1 14058:3 14059:1 14060:1 14064:1 14077:1 14090:1 14095:2 14100:6 14105:1 14112:2 14140:1 14142:1 14148:1 14151:1 14172:6 14188:1 14192:1 14199:2 14205:1 14212:3 14228:1 14238:1 14258:1 14261:1 14271:2 14278:1 14279:1 14284:1 14286:1 14288:1 14293:1 14298:7 14311:1 14338:1 14344:1 14346:2 14349:1 14353:1 14361:1 14362:1 14363:3 14366:1 14371:1 14372:1 14374:2 14376:1 14379:1 14383:1 14411:2 14413:1 14429:2 14445:1 14446:1 14470:2 14472:1 14479:1 14492:1 14498:1 14527:3 14532:1 14535:1 14572:1 14575:3 14599:1 14603:1 14618:2 14624:2 14625:3 14636:1 14637:4 14641:5 14651:6 14652:1 14656:1 14663:1 14664:1 14672:1 14687:1 14694:3 14698:1 14701:2 14705:1 14706:1 14739:2 14747:1 14756:1 14770:5 14775:1 14779:1 14780:1 14781:1 14790:1 14796:1 14807:1 14811:7 14815:1 14828:5 14832:1 14845:1 14846:1 14852:1 14853:1 14856:1 14858:1 14868:1 14881:1 14882:1 14884:1 14889:3 14895:1 14916:1 14933:2 14947:1 14957:1 14981:1 14995:1 15003:1 15004:1 15025:4 15040:2 15048:1 15051:1 15052:1 15055:1 15066:1 15069:1 15086:1 15087:1 15089:1 15096:2 15097:1 15110:4 15113:1 15120:1 15128:1 15130:1 15135:2 15139:1 15142:1 15149:3 15151:1 15156:2 15164:1 15166:1 15170:4 15171:11 15190:1 15195:1 15210:1 15215:1 15226:1 15230:1 15232:5 15240:1 15241:1 15249:2 15254:1 15256:1 15262:1 15265:2 15267:2 15268:1 15284:1 15287:1 15293:1 15304:2 15305:1 15308:1 15311:1 15331:1 15351:1 15354:1 15356:2 15363:1 15370:1 15396:1 15404:3 15413:1 15452:2 15455:1 15457:6 15458:6 15461:1 15466:1 15478:1 15490:3 15493:1 15499:1 15511:6 15513:1 15514:1 15516:1 15521:6 15525:1 15527:1 15532:7 15537:1 15545:2 15549:1 15560:1 15572:2 15582:5 15583:2 15584:2 15587:1 15592:1 15596:1 15598:12 15602:1 15607:1 15608:3 15614:1 15616:1 15618:2 15619:1 15635:2 15643:4 15651:1 15658:1 15661:1 15678:3 15679:1 15681:1 15686:1 15693:1 15698:1 15703:1 15710:4 15721:3 15727:1 15730:1 15741:1 15753:1 15760:1 15764:1 15773:1 15774:1 15776:1 15797:2 15805:1 15806:3 15820:1 15827:1 15865:2 15873:1 15876:1 15878:1 15882:6 15886:4 15890:2 15922:1 15936:1 15940:1 15943:1 15949:1 15950:1 15957:1 15960:1 15962:3 15965:1 15966:3 15969:1 15983:2 15990:1 16001:1 16019:2 16020:2 16023:1 16029:1 16032:1 16036:1 16057:1 16060:2 16065:1 16067:1 16071:1 16073:1 16101:1 16109:1 16115:1 16122:2 16123:3 16125:1 16132:1 16136:1 16145:2 16147:1 16154:1 16157:2 16175:4 16181:1 16202:1 16232:1 16274:1 16278:1 16297:1 16299:2 16301:1 16305:3 16308:1 16309:1 16314:1 16319:1 16329:3 16333:2 16345:2 16350:1 16364:1 16369:2 16374:1 16379:1 16395:1 16399:1 16403:1 16406:1 16408:1 16425:1 16462:1 16475:1 16509:1 16535:3 16541:1 16558:1 16560:3 16562:1 16575:1 16579:2 16583:1 16587:1 16591:1 16592:2 16594:1 16624:1 16630:1 16652:1 16662:1 16668:1 16670:1 16679:1 16687:1 16693:1 16705:1 16706:1 16707:1 16746:2 16753:1 16756:3 16763:3 16766:1 16776:1 16785:1 16792:1 16793:1 16807:1 16810:1 16819:1 16820:1 16823:1 16825:1 16826:2 16827:1 16842:1 16853:1 16875:1 16880:1 16886:4 16898:1 16900:1 16902:1 16905:2 16915:1 16917:3 16919:1 16922:2 16940:1 16948:1 16951:1 16953:1 16957:1 16961:4 16962:2 16972:1 16978:2 16981:1 16983:1 16993:1 16999:1 17000:2 17002:3 17003:1 17006:1 17008:1 17009:2 17021:2 17024:2 17029:1 17030:1 17031:2 17032:1 17034:2 17043:1 17050:1 17054:2 17058:1 17060:1 17067:1 17071:2 17076:2 17088:1 17093:1 17097:3 17108:1 17113:1 17115:2 17119:2 17120:3 17125:1 17137:2 17139:2 17143:2 17154:1 17164:2 17169:1 17175:1 17190:1 17196:1 17199:1 17202:4 17204:1 17207:1 17208:4 17209:2 17220:1 17227:1 17235:1 17250:1 17260:1 17267:1 17278:1 17282:1 17304:1 17311:1 17317:3 17318:1 17319:1 17336:1 17340:1 17341:1 17345:1 17349:1 17380:1 17382:1 17383:1 17384:1 17399:4 17404:1 17405:1 17414:1 17415:1 17418:1 17422:1 17427:2 17432:1 17434:10 17455:1 17468:2 17470:1 17481:1 17486:1 17511:1 17513:1 17533:1 17540:2 17561:1 17565:1 17570:1 17572:1 17582:1 17599:1 17602:2 17603:1 17604:2 17615:1 17616:1 17629:2 17637:1 17640:3 17662:1 17667:1 17695:1 17713:2 17718:1 17733:1 17750:1 17753:1 17757:1 17781:6 17784:2 17789:1 17791:1 17792:2 17793:1 17796:1 17820:1 17826:1 17827:1 17828:1 17833:1 17835:1 17844:7 17861:2 17873:1 17878:2 17891:3 17894:1 17897:29 17902:2 17933:1 17935:1 17936:1 17947:3 17960:1 17961:1 17967:2 17974:2 17978:1 18044:2 18053:1 18069:1 18073:3 18080:2 18084:1 18098:1 18106:1 18107:2 18115:1 18117:2 18119:1 18133:1 18141:1 18145:1 18151:1 18153:1 18161:1 18189:1 18190:1 18196:2 18217:1 18219:1 18232:1 18236:2 18255:6 18257:2 18258:1 18259:2 18261:1 18262:1 18270:5 18278:1 18281:1 18282:1 18283:1 18288:1 18294:1 18295:1 18296:1 18303:1 18305:1 18306:1 18309:1 18311:2 18313:1 18325:1 18332:1 18358:1 18367:1 18370:2 18372:1 18392:1 18394:1 18401:1 18402:1 18404:1 18412:2 18414:1 18415:2 18417:4 18426:1 18434:1 18435:1 18437:1 18449:1 18460:1 18461:1 18463:1 18465:1 18474:1 18482:1 18489:3 18498:1 18499:7 18505:1 18521:1 18522:1 18524:2 18546:1 18549:1 18550:1 18558:1 18562:2 18575:1 18576:1 18577:1 18580:4 18582:1 18583:1 18584:1 18608:1 18616:3 18628:1 18645:2 18652:1 18656:5 18666:2 18670:5 18681:1 18687:1 18718:1 18719:1 18728:1 18730:1 18762:1 18763:12 18785:3 18794:1 18799:1 18830:6 18835:2 18844:1 18866:1 18881:1 18882:1 18891:2 18899:1 18909:1 18913:1 18916:4 18917:1 18927:2 18935:1 18937:1 18942:1 18947:1 18958:4 18965:1 18968:1 18976:1 18996:1 19001:1 19005:5 19015:2 19022:1 19045:1 19060:1 19067:1 19082:1 19086:1 19095:1 19134:1 19154:1 19159:2 19168:1 19175:1 19176:4 19182:2 19185:1 19188:1 19206:1 19208:1 19212:1 19217:3 19221:2 19231:1 19237:1 19242:1 19244:3 19260:2 19262:1 19263:1 19266:1 19268:1 19280:1 19302:1 19306:1 19322:1 19324:1 19339:1 19340:1 19346:1 19347:2 19361:2 19397:1 19405:1 19414:1 19426:2 19429:2 19430:1 19431:1 19435:1 19467:1 19469:1 19484:1 19485:1 19489:2 19490:1 19495:2 19496:1 19498:1 19502:1 19528:1 19542:1 19543:3 19561:1 19569:2 19572:1 19584:3 19588:3 19594:1 19602:2 19609:1 19615:1 19618:1 19629:1 19633:1 19639:1 19644:1 19654:1 19655:1 19657:1 19660:1 19663:6 19664:1 19669:2 19670:1 19672:1 19674:1 19681:1 19689:1 19700:1 19706:1 19733:1 19734:1 19737:1 19738:1 19748:1 19760:1 19768:1 19772:8 19776:1 19779:1 19784:1 19799:1 19823:1 19828:1 19857:3 19861:1
5 1:1 2:1 5:1 28:1 33:1 35:3 65:1 68:3 70:1 71:1 77:1 103:1 105:3 131:1 145:1 160:3 164:1 167:1 178:1 185:3 196:1 200:1 215:1 220:1 221:1 227:1 233:2 246:5 261:1 272:2 274:1 276:1 278:1 289:1 292:1 297:1 312:2 316:1 348:3 349:2 352:1 353:1 361:1 365:1 366:1 382:2 390:1 393:2 395:1 399:3 413:1 417:1 418:3 422:1 434:1 453:1 461:3 477:1 480:2 483:1 485:1 490:1 495:2 510:5 511:1 525:1 530:1 532:1 540:1 543:1 547:1 559:1 565:1 573:2 574:4 576:1 592:1 595:1 599:1 600:1 605:1 615:2 625:1 634:2 639:1 641:1 661:3 669:1 699:2 714:2 720:1 738:1 749:6 753:1 754:1 763:1 793:1 797:1 798:1 811:1 825:1 826:2 833:4 834:1 849:2 860:1 861:1 863:1 864:1 865:2 880:8 881:1 901:1 909:1 918:1 920:1 931:2 942:1 943:1 950:2 956:1 960:1 971:2 972:1 980:4 1007:2 1014:1 1015:1 1017:1 1026:1 1028:1 1032:1 1045:1 1074:1 1083:2 1104:2 1108:2 1110:1 1134:1 1138:1 1140:1 1145:3 1157:1 1176:1 1177:2 1185:1 1194:2 1213:4 1214:3 1231:1 1232:5 1242:1 1243:1 1252:1 1264:2 1274:6 1276:1 1279:2 1286:1 1288:4 1310:4 1312:2 1320:1 1323:1 1324:3 1328:3 1332:1 1335:1 1336:2 1337:3 1340:5 1355:2 1357:2 1362:1 1368:1 1380:4 1385:1 1388:2 1392:1 1408:1 1415:1 1421:1 1424:2 1427:3 1434:3 1458:1 1463:6 1486:1 1493:1 1494:1 1498:1 1504:4 1512:1 1519:2 1566:1 1576:2 1578:1 1616:1 1617:1 1622:2 1628:1 1635:1 1637:1 1643:1 1649:3 1650:1 1653:2 1654:5 1657:5 1658:2 1659:3 1666:3 1669:2 1670:4 1675:2 1677:2 1679:1 1680:1 1681:1 1682:5 1683:1 1685:1 1692:1 1694:1 1700:1 1714:1 1717:1 1721:1 1723:2 1725:1 1732:1 1734:3 1735:1 1742:1 1756:2 1759:1 1765:1 1766:1 1767:1 1769:1 1777:1 1786:1 1807:1 1826:1 1858:1 1859:1 1862:2 1881:1 1884:1 1894:1 1898:1 1901:1 1902:1 1910:3 1911:1 1920:1 1921:1 1923:4 1939:3 1942:1 1952:2 1963:3 1968:1 1970:1 1973:1 1975:1 1978:1 1980:1 1985:1 2012:1 2030:1 2033:1 2035:1 2045:1 2050:3 2060:1 2066:1 2067:1 2068:1 2074:1 2078:2 2088:1 2096:1 2097:10 2099:1 2108:1 2112:10 2123:1 2129:1 2133:1 2138:1 2139:3 2160:1 2175:1 2178:1 2180:1 2185:1 2195:1 2207:1 2218:1 2220:3 2230:1 2253:1 2255:5 2269:1 2280:1 2298:1 2302:1 2332:1 2335:1 2337:1 2344:1 2345:1 2356:1 2363:1 2374:2 2383:1 2384:2 2394:2 2397:1 2405:1 2433:1 2435:1 2440:1 2450:1 2453:1 2471:13 2479:1 2490:1 2511:1 2521:2 2532:1 2535:1 2541:1 2544:1 2558:1 2586:1 2590:1 2594:1 2595:1 2609:2 2622:1 2623:3 2624:1 2645:2 2647:1 2652:1 2656:2 2661:1 2663:2 2666:1 2673:1 2674:1 2695:1 2699:1 2712:1 2713:1 2716:3 2717:3 2723:1 2735:2 2742:2 2746:1 2748:1 2750:1 2753:1 2757:2 2764:1 2791:1 2794:1 2799:1 2801:1 2812:1 2815:2 2816:1 2823:8 2850:2 2870:1 2876:1 2882:3 2891:1 2896:3 2911:1 2916:1 2917:3 2918:1 2922:1 2923:1 2928:1 2929:1 2939:1 2947:1 2951:1 2954:1 2955:1 2957:11 2972:4 2973:1 2975:3 2976:7 2977:2 2978:3 2979:1 2982:3 2984:2 2990:1 2992:4 2996:1 2999:1 3002:1 3006:2 3007:2 3011:1 3014:1 3015:1 3042:1 3051:1 3062:1 3065:1 3082:1 3087:3 3090:1 3095:1 3102:3 3117:1 3128:1 3132:1 3137:1 3139:1 3143:1 3148:1 3153:1 3165:3 3169:1 3178:1 3179:1 3180:1 3190:1 3192:2 3194:1 3196:1 3197:1 3222:1 3237:1 3239:1 3243:1 3253:1 3258:2 3263:1 3284:1 3286:1 3287:1 3289:1 3293:1 3323:2 3325:1 3326:1 3355:1 3365:3 3369:1 3371:1 3407:1 3429:3 3430:1 3446:1 3467:2 3470:1 3472:1 3475:1 3487:1 3499:1 3500:1 3513:4 3516:4 3521:6 3532:1 3540:1 3547:1 3554:1 3572:1 3580:1 3587:1 3590:1 3591:3 3594:3 3613:1 3619:1 3621:1 3627:1 3628:1 3640:1 3643:1 3650:1 3668:2 3682:3 3687:1 3692:2 3693:2 3694:1 3695:2 3700:1 3704:1 3705:1 3708:2 3711:1 3719:1 3732:1 3735:1 3745:1 3759:1 3761:1 3765:1 3778:2 3794:1 3808:1 3830:1 3838:1 3854:3 3855:19 3857:1 3861:1 3866:1 3868:7 3876:1 3882:2 3899:2 3910:1 3914:16 3926:1 3932:1 3935:1 3941:1 3956:1 3958:2 3961:2 3965:1 3969:1 3977:3 3984:1 4049:1 4050:1 4052:2 4063:1 4075:1 4095:1 4102:1 4103:1 4115:1 4134:1 4135:1 4136:2 4142:4 4144:1 4159:1 4161:2 4177:1 4185:1 4202:1 4210:3 4214:2 4228:1 4233:1 4239:1 4246:3 4256:1 4258:2 4259:1 4279:4 4282:4 4299:1 4300:2 4310:1 4316:1 4345:1 4362:1 4363:1 4374:1 4380:2 4387:1 4401:1 4414:1 4415:1 4419:6 4423:1 4430:1 4446:3 4455:2 4456:1 4462:2 4532:1 4537:1 4549:1 4558:2 4572:3 4578:1 4591:3 4595:1 4596:4 4598:4 4599:3 4601:2 4602:6 4603:4 4605:1 4606:1 4607:2 4609:1 4610:1 4613:1 4630:2 4633:1 4646:1 4650:4 4656:3 4660:4 4671:2 4677:1 4696:1 4714:2 4721:1 4725:7 4726:1 4727:19 4731:2 4735:2 4739:1 4744:1 4745:1 4752:2 4760:1 4761:2 4766:6 4777:3 4782:1 4783:1 4793:1 4800:1 4809:1 4822:2 4828:7 4830:2 4832:1 4836:2 4844:2 4854:1 4859:1 4871:1 4883:1 4885:1 4890:1 4891:2 4896:5 4900:1 4901:1 4906:1 4909:1 4934:1 4942:1 4944:1 4952:2 4954:1 4983:1 5002:1 5004:1 5012:1 5014:1 5017:1 5037:2 5039:1 5058:1 5076:1 5079:1 5099:2 5107:1 5110:1 5112:1 5116:1 5119:1 5121:2 5125:1 5141:1 5145:1 5147:1 5153:2299 5155:1 5158:2 5159:1 5168:3 5171:1 5187:1 5188:1 5191:1 5195:1 5196:1 5212:6 5213:1 5230:1 5232:1 5237:1 5250:2 5259:1 5280:2 5288:1 5293:1 5297:1 5306:1 5311:2 5318:1 5334:1 5338:2 5345:2 5358:1 5380:2 5400:1 5404:2 5414:1 5426:1 5427:1 5433:1 5441:1 5444:3 5447:1 5455:1 5482:1 5483:1 5487:1 5497:2 5517:1 5526:1 5560:1 5562:1 5573:2 5592:1 5612:1 5613:1 5615:1 5616:3 5619:1 5620:1 5643:1 5658:1 5662:1 5670:2 5683:5 5690:1 5695:1 5698:1 5704:1 5741:1 5754:1 5755:1 5757:1 5776:1 5809:1 5825:3 5830:2 5840:1 5845:1 5859:1 5861:3 5864:1 5867:1 5909:2 5921:4 5930:3 5931:1 5934:4 5952:1 5956:1 5959:1 5967:1 5973:1 5981:1 6003:1 6010:1 6013:4 6016:2 6020:8 6025:1 6026:1 6035:3 6040:1 6053:1 6054:2 6064:1 6069:1 6087:1 6095:1 6115:1 6118:1 6120:1 6133:1 6135:1 6139:1 6142:5 6155:3 6178:2 6189:1 6212:3 6219:2 6221:2 6240:1 6244:1 6262:3 6273:1 6281:1 6301:2 6303:1 6311:1 6345:1 6357:1 6375:4 6377:1 6384:1 6387:1 6392:13 6395:1 6400:1 6405:2 6410:1 6434:2 6440:1 6444:1 6459:2 6460:1 6468:1 6483:3 6485:1 6533:1 6536:1 6538:6 6545:2 6551:1 6563:1 6564:1 6571:1 6572:3 6576:1 6581:5 6582:2 6584:1 6586:1 6587:3 6590:2 6594:6 6597:1 6602:1 6604:1 6605:2 6606:1 6607:2 6608:1 6617:1 6637:4 6643:1 6649:1 6652:8 6658:1 6664:1 6665:1 6672:1 6690:1 6691:2 6693:1 6695:1 6707:1 6711:1 6743:2 6744:1 6749:1 6758:1 6764:2 6774:2 6797:1 6813:1 6828:6 6830:1 6839:1 6844:1 6845:3 6860:13 6866:1 6870:1 6877:3 6883:20 6886:4 6892:1 6915:1 6947:4 6959:1 6967:2 6974:2 6983:1 6990:2 6996:1 6998:1 6999:1 7001:1 7007:1 7013:1 7021:4 7034:1 7037:1 7043:1 7050:1 7060:1 7072:1 7080:1 7091:1 7099:1 7114:1 7127:1 7134:4 7140:1 7145:1 7153:1 7155:1 7169:1 7181:1 7183:1 7192:1 7198:1 7201:1 7204:1 7218:1 7220:1 7221:1 7232:4 7244:1 7247:72 7250:1 7256:1 7263:2 7270:1 7271:1 7280:1 7284:1 7291:4 7312:1 7329:1 7353:1 7357:1 7361:1 7372:1 7384:1 7387:4 7390:1 7409:2 7420:1 7422:9 7434:1 7442:1 7443:1 7444:13 7450:2 7453:1 7454:2 7457:1 7459:1 7473:1 7478:1 7487:1 7494:1 7504:2 7525:3 7540:2 7543:1 7550:5 7556:2 7558:1 7560:1 7563:1 7564:2 7568:1 7572:2 7574:1 7577:1 7578:1 7579:2 7582:5 7583:4 7584:1 7609:1 7641:1 7642:1 7647:2 7652:1 7656:1 7668:1 7670:1 7678:1 7687:1 7692:1 7700:1 7701:1 7707:1 7710:2 7711:1 7731:4 7737:1 7742:1 7743:1 7769:1 7770:2 7783:1 7803:1 7808:1 7835:2 7838:1 7841:1 7843:1 7849:1 7874:1 7878:1 7880:1 7900:1 7912:1 7913:1 7915:1 7924:1 7930:1 7940:1 7952:1 7957:3 7988:2 7998:1 8000:1 8009:1 8012:3 8013:3 8017:1 8023:2 8042:1 8050:1 8055:1 8056:2 8057:1 8058:4 8065:2 8072:1 8075:2 8080:2 8087:1 8094:3 8096:1 8098:1 8100:1 8105:3 8113:1 8116:1 8119:1 8128:2 8135:4 8137:1 8138:4 8146:1 8152:1 8167:1 8168:1 8192:3 8194:1 8196:5 8199:2 8200:1 8211:1 8231:1 8245:1 8247:6 8248:1 8253:2 8263:1 8267:1 8272:1 8280:2 8296:1 8319:1 8324:1 8333:1 8339:1 8341:1 8346:1 8347:1 8358:2 8360:1 8368:1 8371:1 8382:1 8383:3 8387:5 8390:1 8391:1 8399:1 8411:1 8414:1 8421:2 8431:1 8434:1 8437:5 8441:1 8456:1 8460:1 8491:1 8496:1 8507:1 8513:1 8520:3 8522:1 8532:1 8533:2 8539:1 8542:2 8546:2 8552:5 8554:1 8556:1 8559:1 8573:1 8576:1 8606:1 8616:4 8623:1 8626:2 8648:2 8651:1 8664:1 8669:1 8678:1 8712:1 8732:2 8742:1 8743:1 8744:1 8755:1 8770:1 8772:1 8776:1 8779:1 8780:2 8785:3 8786:2 8794:1 8797:2 8809:4 8821:1 8840:1 8843:1 8848:1 8859:1 8860:1 8872:1 8886:1 8899:1 8901:2 8923:1 8926:1 8928:1 8937:1 8953:1 8959:2 8967:1 8968:1 8971:2 8974:1 8980:1 8983:1 8986:1 8994:1 8996:1 9006:3 9019:1 9025:2 9026:2 9051:1 9067:2 9072:1 9084:1 9085:1 9090:1 9100:2 9103:2 9107:1 9113:1 9114:1 9117:1 9122:3 9124:1 9125:1 9129:2 9159:1 9162:1 9165:1 9177:1 9180:2 9183:1 9185:1 9189:1 9191:2 9204:1 9215:1 9228:1 9234:1 9237:1 9238:1 9251:5 9252:4 9253:1 9260:23 9261:2 9268:1 9275:1 9279:1 9283:1 9295:6 9303:1 9308:1 9309:1 9329:1 9331:1 9333:1 9337:1 9347:1 9357:1 9360:2 9370:1 9378:1 9380:1 9385:1 9388:3 9394:1 9404:1 9406:10 9429:1 9432:1 9443:2 9444:5 9449:1 9456:2 9461:1 9474:1 9478:1 9486:1 9499:3 9508:3 9512:2 9522:1 9525:1 9534:2 9548:3 9560:1 9569:1 9591:1 9594:6 9596:1 9597:1 9605:2 9606:1 9607:1 9612:1 9613:1 9624:11 9625:1 9626:1 9627:2 9632:2 9641:2 9657:1 9659:1 9675:9 9683:2 9693:1 9698:1 9704:2 9712:1 9721:6 9754:1 9759:1 9780:1 9787:1 9788:1 9795:2 9798:2 9813:2 9815:1 9817:1 9818:1 9822:1 9829:1 9842:1 9859:1 9865:3 9870:2 9879:2 9881:1 9884:1 9886:1 9888:1 9890:1 9904:1 9910:2 9916:1 9917:1 9918:1 9920:1 9924:3 9926:1 9929:1 9940:1 9948:1 9952:1 9959:2 9963:1 9968:1 9980:2 9983:1 9992:1 10001:1 10007:1 10009:1 10010:1 10013:2 10017:1 10039:1 10044:2 10045:1 10049:1 10057:1 10058:1 10059:3 10068:2 10070:1 10075:1 10092:1 10098:1 10105:3 10111:5 10115:1 10124:2 10125:2 10127:1 10129:7 10160:1 10163:1 10169:1 10175:1 10193:4 10200:2 10204:3 10212:2 10215:1 10223:1 10243:1 10254:1 10262:1 10263:2 10271:2 10272:4 10280:1 10283:1 10286:1 10297:1 10298:1 10301:1 10306:1 10315:1 10318:1 10334:1 10335:1 10349:4 10356:1 10376:3 10377:2 10378:1 10380:1 10398:2 10399:2 10408:1 10409:4 10415:1 10442:3 10459:36 10463:1 10468:3 10474:1 10479:20 10484:10 10485:1 10494:1 10504:1 10510:1 10515:1 10551:1 10554:4 10564:1 10567:2 10570:1 10573:6 10595:2 10632:2 10639:3 10640:1 10642:1 10649:1 10654:1 10685:2 10709:1 10720:1 10721:7 10723:1 10725:2 10740:1 10742:2 10749:1 10756:13 10764:1 10769:1 10773:1 10777:1 10787:1 10790:2 10797:1 10820:3 10822:1 10824:1 10845:1 10857:1 10865:2 10868:1 10877:1 10886:1 10888:1 10892:2 10922:1 10925:1 10930:1 10934:1 10945:1 10948:1 10950:1 10957:1 10963:1 10968:1 10972:1 10975:1 10978:1 10982:1 10990:1 10996:1 11013:1 11017:1 11032:3 11042:1 11046:2 11050:2 11055:2 11058:44 11075:1 11081:2 11082:1 11085:1 11088:1 11099:1 11117:1 11123:1 11126:1 11132:1 11140:1 11159:1 11164:1 11175:1 11180:2 11195:1 11197:13 11200:9 11203:1 11207:1 11272:2 11273:2 11276:1 11280:2 11281:1 11287:1 11289:1 11310:2 11311:1 11313:1 11319:1 11321:7 11326:2 11328:1 11330:2 11344:1 11357:1 11362:2 11376:3 11379:1 11391:1 11403:3 11405:2 11407:1 11408:1 11415:2 11416:2 11417:1 11420:3 11433:1 11439:1 11446:4 11448:1 11456:1 11457:1 11458:1 11459:2 11473:2 11496:1 11520:1 11523:2 11527:1 11557:1 11559:1 11563:2 11565:1 11568:4 11573:4 11588:1 11599:1 11600:1 11601:1 11607:1 11608:1 11623:1 11634:1 11636:1 11637:1 11639:1 11641:3 11643:2 11646:1 11649:1 11652:1 11654:1 11656:3 11658:2 11664:1 11667:1 11668:1 11669:1 11678:1 11679:3 11684:2 11687:2 11689:1 11698:2 11702:4 11715:1 11721:1 11724:1 11730:8 11732:1 11735:2 11736:3 11739:1 11761:1 11765:1 11770:1 11773:1 11782:2 11788:1 11800:1 11829:2 11831:3 11835:1 11842:1 11859:1 11864:1 11866:1 11877:2 11881:1 11885:2 11888:1 11895:1 11898:1 11914:1 11921:1 11937:1 11951:2 11958:1 11978:2 11980:1 11992:1 12000:1 12019:1 12026:1 12037:1 12043:1 12050:2 12052:7 12055:1 12063:1 12092:1 12102:1 12116:1 12130:1 12132:1 12138:1 12161:1 12172:1 12186:1 12210:1 12228:1 12234:1 12245:1 12251:1 12256:2 12260:2 12274:1 12276:1 12280:4 12289:2 12305:1 12306:1 12328:1 12331:1 12355:1 12357:3 12365:2 12392:1 12397:2 12403:1 12405:1 12415:1 12433:1 12435:3 12437:1 12439:1 12440:1 12451:1 12454:1 12461:3 12466:1 12471:1 12480:1 12481:1 12497:3 12499:1 12513:1 12519:1 12530:1 12532:1 12537:2 12541:1 12556:2 12557:2 12558:2 12559:1 12565:1 12566:3 12572:1 12577:2 12578:1 12581:2 12585:3 12591:1 12592:1 12610:2 12611:1 12613:1 12617:1 12640:1 12642:3 12645:1 12648:1 12671:1 12672:3 12678:2 12687:1 12688:3 12709:1 12710:1 12712:1 12713:1 12720:1 12722:1 12723:1 12726:1 12728:1 12731:3 12739:1 12747:1 12752:1 12754:1 12759:1 12769:1 12772:1 12779:1 12797:1 12808:1 12809:1 12828:4 12836:1 12837:1 12838:1 12857:1 12858:1 12866:1 12876:1 12877:3 12893:1 12914:1 12918:3 12919:1 12922:1 12928:1 12938:1 12962:5 12967:1 12970:1 12977:2 12978:3 12983:1 12986:1 12992:1 12993:2 13001:1 13005:1 13018:1 13019:4 13021:1 13028:1 13041:1 13048:1 13052:1 13056:2 13058:1 13072:1 13087:1 13100:1 13102:2 13106:1 13108:1 13121:1 13136:2 13141:2 13142:1 13143:2 13153:1 13156:1 13170:1 13179:1 13189:1 13192:1 13197:1 13200:3 13203:3 13207:6 13208:1 13212:1 13214:1 13219:1 13220:1 13231:2 13236:1 13237:1 13238:6 13239:1 13240:1 13247:1 13250:1 13256:3 13262:1 13266:1 13269:1 13307:1 13338:1 13358:2 13370:6 13383:1 13386:1 13388:1 13402:1 13426:2 13432:1 13446:1 13448:2 13462:1 13468:1 13481:1 13483:3 13485:3 13491:3 13506:3 13508:1 13512:1 13513:1 13516:1 13517:3 13538:1 13546:1 13556:1 13574:1 13582:1 13583:1 13585:1 13586:2 13608:1 13627:6 13628:2 13631:1 13639:1 13642:1 13646:1 13652:3 13655:1 13659:1 13660:2 13662:3 13668:1 13670:2 13672:1 13677:2 13682:1 13684:1 13698:1 13703:2 13710:1 13727:1 13735:2 13753:1 13759:1 13769:1 13783:1 13789:6 13812:1 13817:1 13825:2 13826:1 13832:1 13846:1 13853:1 13855:1 13856:1 13866:8 13876:1 13891:1 13899:4 13902:2 13904:2 13907:1 13911:1 13912:3 13913:5 13915:1 13918:1 13921:1 13924:1 13926:2 13927:1 13934:2 13939:13 13942:2 13944:2 13947:1 13948:8 13950:2 13956:1 13958:1 13959:1 13981:1 13983:3 13999:1 14049:1 14051:6 14055:1 14058:3 14059:1 14060:1 14064:1 14077:1 14090:1 14095:2 14100:6 14105:1 14108:1 14112:2 14140:1 14142:1 14148:1 14151:1 14172:6 14188:1 14192:1 14199:2 14205:1 14212:3 14228:1 14238:1 14258:1 14261:1 14271:2 14278:1 14279:1 14284:1 14286:1 14288:1 14293:1 14298:7 14311:1 14338:1 14344:1 14346:2 14349:1 14353:1 14361:1 14362:1 14363:3 14366:1 14371:1 14372:2 14374:2 14376:1 14379:1 14383:1 14411:2 14413:1 14429:2 14445:1 14446:1 14470:2 14472:1 14479:1 14492:1 14498:1 14527:3 14532:1 14535:1 14572:1 14575:3 14599:1 14603:1 14618:2 14624:2 14625:3 14636:1 14637:4 14641:5 14651:6 14652:1 14656:1 14663:1 14664:1 14672:1 14687:1 14694:3 14698:2 14701:2 14705:1 14706:1 14739:2 14747:1 14756:1 14770:5 14775:1 14779:1 14780:1 14781:1 14790:1 14796:1 14807:1 14811:7 14815:1 14828:5 14832:1 14845:1 14846:1 14852:1 14853:1 14856:1 14858:1 14868:1 14881:1 14882:1 14884:1 14889:3 14895:1 14916:1 14933:2 14947:1 14957:1 14981:1 14995:1 15003:1 15004:1 15025:4 15040:2 15048:1 15049:1 15051:1 15052:1 15055:1 15066:1 15069:1 15086:1 15087:1 15089:1 15096:2 15097:1 15110:4 15113:1 15120:1 15122:1 15128:1 15130:1 15135:2 15139:1 15142:1 15149:3 15151:1 15156:2 15164:1 15166:1 15170:4 15171:12 15190:1 15195:1 15210:1 15215:1 15226:1 15230:1 15232:5 15240:1 15241:1 15249:2 15254:1 15256:1 15262:1 15265:2 15267:2 15268:1 15284:1 15287:1 15293:1 15304:2 15305:1 15308:1 15311:1 15331:1 15337:1 15351:1 15354:1 15356:2 15363:1 15370:1 15396:1 15404:3 15413:1 15452:2 15455:1 15457:7 15458:6 15461:1 15466:1 15478:1 15490:3 15493:1 15499:1 15511:7 15513:1 15514:1 15516:1 15521:6 15525:1 15527:1 15532:7 15537:1 15545:2 15549:1 15560:1 15572:2 15582:6 15583:2 15584:2 15587:1 15592:1 15596:1 15598:13 15602:1 15607:1 15608:3 15614:1 15616:1 15618:2 15619:1 15635:2 15643:4 15651:1 15658:1 15661:1 15678:3 15679:1 15681:1 15686:1 15693:1 15698:1 15703:1 15710:4 15721:3 15727:1 15730:1 15741:1 15753:1 15760:1 15764:1 15773:1 15774:1 15776:1 15797:2 15805:1 15806:3 15820:1 15827:1 15865:2 15873:1 15876:1 15878:1 15882:6 15886:4 15890:2 15922:1 15936:1 15940:1 15943:1 15949:1 15950:1 15957:1 15960:1 15962:3 15965:1 15966:3 15969:1 15983:2 15990:1 16001:1 16019:2 16020:2 16023:1 16029:1 16032:1 16036:1 16057:1 16060:2 16065:1 16067:1 16071:1 16073:1 16101:1 16109:1 16115:1 16122:2 16123:3 16125:1 16132:1 16136:1 16145:2 16147:1 16154:1 16157:2 16175:4 16181:1 16202:1 16232:1 16274:1 16278:1 16297:1 16299:2 16301:1 16305:3 16308:1 16309:1 16314:1 16319:1 16329:3 16333:2 16345:2 16350:1 16364:1 16369:2 16374:1 16379:1 16395:1 16399:1 16403:1 16406:1 16408:1 16425:1 16462:1 16475:1 16509:1 16535:3 16541:1 16558:1 16560:3 16562:1 16575:1 16579:2 16583:1 16587:1 16591:1 16592:2 16594:1 16624:1 16630:1 16652:1 16662:1 16668:1 16670:1 16679:1 16687:1 16693:1 16705:1 16706:1 16707:1 16746:2 16753:1 16756:3 16763:3 16766:1 16776:1 16785:1 16792:1 16793:1 16807:1 16810:1 16819:1 16820:1 16823:1 16825:1 16826:2 16827:1 16842:1 16853:1 16875:1 16880:1 16886:4 16898:1 16900:1 16902:2 16905:2 16915:1 16917:3 16919:1 16922:2 16940:1 16948:1 16951:1 16953:1 16957:1 16961:4 16962:2 16972:1 16978:2 16981:1 16983:1 16993:1 16999:1 17000:3 17002:3 17003:1 17006:1 17008:1 17009:2 17021:2 17024:2 17029:1 17030:1 17031:3 17032:1 17034:2 17043:1 17050:1 17054:2 17058:1 17060:1 17067:1 17071:2 17076:2 17088:1 17093:1 17097:3 17108:1 17113:1 17115:2 17119:2 17120:3 17125:1 17137:2 17139:2 17143:2 17154:1 17164:2 17169:1 17175:1 17190:1 17196:1 17199:1 17202:4 17204:1 17207:1 17208:4 17209:2 17220:1 17227:1 17235:1 17250:1 17260:1 17267:1 17278:1 17282:1 17304:1 17311:1 17317:3 17318:1 17319:1 17336:1 17340:1 17341:1 17345:1 17349:1 17380:1 17382:1 17383:1 17384:1 17399:4 17404:1 17405:1 17414:1 17415:1 17418:1 17422:1 17427:2 17432:1 17434:11 17455:1 17468:2 17470:1 17481:1 17486:1 17511:1 17513:1 17533:1 17540:2 17561:1 17565:1 17570:1 17572:1 17582:1 17599:1 17602:2 17603:1 17604:3 17615:1 17616:1 17629:2 17637:1 17640:3 17662:1 17667:1 17695:1 17713:2 17718:1 17733:1 17750:1 17753:1 17757:1 17781:6 17784:2 17789:1 17791:1 17792:2 17793:1 17796:1 17820:1 17826:1 17827:1 17828:1 17833:1 17835:1 17844:7 17861:2 17873:1 17878:2 17891:3 17894:1 17897:30 17902:2 17933:1 17935:1 17936:1 17947:3 17960:1 17961:1 17967:2 17974:2 17978:1 18044:2 18053:1 18069:1 18073:4 18080:3 18084:1 18098:1 18106:1 18107:2 18115:2 18117:2 18119:1 18133:1 18141:1 18145:1 18151:1 18153:1 18161:1 18177:1 18189:1 18190:1 18196:3 18217:1 18219:1 18232:1 18236:2 18255:6 18257:3 18258:1 18259:2 18261:1 18262:1 18270:5 18278:1 18281:1 18282:1 18283:1 18288:1 18294:1 18295:1 18296:1 18303:1 18305:1 18306:1 18309:1 18311:2 18313:1 18325:1 18332:1 18358:1 18367:1 18370:2 18372:1 18392:1 18394:1 18401:1 18402:1 18404:1 18412:2 18414:1 18415:2 18417:4 18426:1 18434:1 18435:1 18437:1 18449:1 18460:1 18461:1 18463:1 18465:1 18474:1 18482:1 18489:3 18498:1 18499:7 18505:1 18521:1 18522:1 18524:2 18546:1 18549:1 18550:1 18558:1 18559:1 18562:2 18575:1 18576:1 18577:1 18580:4 18582:1 18583:1 18584:1 18608:1 18616:3 18628:1 18645:2 18652:1 18656:5 18666:2 18670:5 18681:1 18687:1 18718:1 18719:1 18728:1 18730:1 18762:1 18763:12 18785:3 18794:1 18799:1 18830:6 18835:2 18844:1 18866:1 18881:1 18882:1 18891:2 18899:1 18909:1 18913:1 18916:4 18917:1 18927:2 18935:1 18937:1 18942:1 18947:1 18957:1 18958:4 18965:1 18968:1 18976:1 18996:1 19001:1 19005:5 19015:2 19022:1 19045:1 19060:1 19067:1 19082:1 19086:1 19095:1 19134:1 19154:1 19159:2 19168:1 19175:1 19176:4 19182:2 19185:1 19188:1 19206:1 19208:1 19212:1 19217:3 19221:2 19231:1 19237:1 19242:1 19244:3 19260:2 19262:1 19263:1 19266:1 19268:1 19280:1 19302:1 19306:1 19322:1 19324:1 19339:1 19340:1 19346:1 19347:2 19361:2 19383:1 19397:1 19405:1 19414:1 19426:2 19429:2 19430:1 19431:1 19435:1 19467:1 19469:1 19484:2 19485:1 19489:2 19490:1 19495:2 19496:1 19498:1 19502:1 19528:1 19542:1 19543:3 19561:1 19569:2 19572:1 19584:3 19588:3 19594:1 19602:2 19609:1 19615:1 19618:1 19629:1 19633:1 19635:1 19639:1 19644:1 19654:1 19655:1 19657:1 19660:1 19663:6 19664:1 19669:2 19670:1 19672:1 19674:1 19681:1 19689:1 19700:2 19706:1 19733:1 19734:1 19737:1 19738:1 19748:1 19760:1 19768:1 19772:8 19776:1 19779:1 19784:1 19799:1 19823:1 19828:1 19857:3 19861:1
5 1:1 2:1 5:1 28:1 33:1 35:3 65:1 68:3 70:1 71:1 77:1 103:1 105:3 131:1 145:1 160:3 164:1 167:1 178:1 185:3 196:1 200:1 215:1 220:1 221:1 227:1 233:2 246:5 261:1 272:2 274:1 276:1 278:1 288:1 289:1 292:1 297:1 312:2 316:1 348:4 349:2 352:1 353:1 361:1 365:1 366:1 382:2 390:1 393:2 395:1 399:3 413:1 417:1 418:3 422:1 434:1 453:1 461:3 477:1 480:2 483:1 485:1 490:1 495:2 510:5 511:1 525:1 530:1 532:1 540:1 543:1 547:1 559:1 565:1 573:2 574:4 576:1 592:1 595:1 599:1 600:1 605:1 615:2 625:1 634:2 639:1 641:1 661:3 669:1 699:2 714:2 720:1 738:1 749:6 753:1 754:1 763:1 787:1 793:1 797:1 798:1 811:1 825:1 826:2 833:4 834:1 849:2 860:1 861:1 863:1 864:1 865:2 880:8 881:1 901:1 909:1 918:1 920:1 931:2 942:1 943:2 950:2 956:1 960:1 971:3 972:1 980:4 1007:2 1014:1 1015:1 1017:1 1026:1 1028:1 1032:1 1045:1 1074:1 1083:2 1104:2 1108:2 1110:1 1134:1 1138:1 1140:1 1145:3 1157:1 1176:1 1177:2 1185:1 1194:2 1213:4 1214:3 1231:1 1232:5 1242:1 1243:1 1252:1 1264:2 1274:6 1276:1 1279:3 1286:1 1288:4 1310:4 1312:2 1320:1 1323:1 1324:3 1328:3 1332:1 1335:1 1336:2 1337:3 1340:5 1355:2 1357:2 1362:1 1368:1 1380:4 1385:1 1388:2 1392:1 1408:1 1415:1 1421:1 1424:2 1427:3 1434:4 1458:1 1463:6 1486:1 1493:1 1494:1 1498:1 1504:4 1509:1 1512:1 1519:2 1566:1 1576:2 1578:1 1616:1 1617:1 1622:2 1628:1 1635:1 1637:1 1643:1 1649:3 1650:1 1653:3 1654:5 1657:5 1658:2 1659:3 1666:3 1669:2 1670:4 1675:2 1677:2 1679:1 1680:1 1681:1 1682:7 1683:2 1685:1 1692:1 1694:1 1700:1 1714:1 1717:1 1721:1 1723:2 1725:1 1732:1 1734:3 1735:1 1742:1 1756:2 1759:1 1765:1 1766:1 1767:1 1769:1 1777:1 1786:1 1807:1 1826:1 1858:1 1859:1 1862:2 1881:1 1884:1 1894:1 1898:1 1901:1 1902:1 1910:3 1911:1 1920:1 1921:1 1923:4 1939:3 1942:1 1952:2 1963:3 1968:1 1970:1 1973:1 1975:1 1978:1 1980:1 1985:1 2012:1 2030:1 2033:1 2035:1 2045:1 2050:3 2060:1 2066:1 2067:1 2068:1 2074:1 2078:2 2088:1 2096:1 2097:10 2099:1 2108:1 2112:11 2123:1 2129:1 2133:1 2138:1 2139:3 2160:1 2175:1 2178:1 2180:1 2185:1 2195:1 2207:1 2218:1 2220:3 2230:1 2231:1 2238:1 2253:1 2255:5 2269:1 2280:1 2298:1 2302:1 2332:1 2335:1 2337:1 2344:1 2345:1 2356:1 2363:1 2374:2 2383:1 2384:2 2394:2 2397:1 2405:1 2433:1 2435:1 2440:1 2450:1 2453:2 2471:13 2479:1 2490:1 2511:1 2521:2 2532:1 2535:1 2541:1 2544:1 2558:1 2586:1 2590:1 2594:1 2595:1 2609:2 2622:1 2623:3 2624:1 2645:2 2647:2 2652:1 2656:2 2661:1 2663:2 2666:2 2673:1 2674:1 2695:1 2699:1 2712:1 2713:1 2716:3 2717:3 2723:1 2735:2 2742:2 2746:1 2748:1 2750:1 2753:1 2757:2 2764:1 2791:1 2794:1 2799:1 2801:1 2812:1 2815:2 2816:1 2823:8 2850:2 2870:1 2876:1 2882:4 2891:1 2896:3 2911:1 2916:1 2917:3 2918:1 2922:1 2923:1 2928:1 2929:1 2939:1 2947:1 2951:1 2954:1 2955:1 2957:11 2972:4 2973:1 2975:3 2976:7 2977:2 2978:3 2979:1 2982:3 2984:3 2990:1 2992:4 2996:1 2999:1 3001:1 3002:1 3006:2 3007:2 3011:1 3014:1 3015:1 3042:1 3051:1 3062:1 3065:1 3082:1 3087:3 3090:1 3095:1 3102:3 3117:1 3128:1 3132:1 3137:1 3139:1 3143:1 3148:1 3153:1 3165:3 3169:1 3178:1 3179:1 3180:1 3190:1 3192:2 3194:1 3196:1 3197:2 3222:1 3237:1 3239:1 3243:1 3253:1 3258:2 3263:1 3284:1 3286:1 3287:1 3289:1 3293:1 3323:2 3325:1 3326:1 3355:1 3365:3 3369:1 3371:1 3407:1 3429:3 3430:1 3446:1 3467:2 3470:1 3472:1 3475:1 3487:1 3499:1 3500:1 3513:4 3516:4 3521:6 3532:1 3540:1 3547:1 3554:1 3572:1 3580:1 3587:1 3590:1 3591:3 3594:3 3613:1 3619:1 3621:1 3627:1 3628:1 3640:1 3643:1 3644:1 3650:1 3668:3 3682:3 3687:1 3692:2 3693:2 3694:1 3695:2 3700:1 3704:1 3705:1 3708:2 3711:1 3719:1 3732:1 3735:1 3745:1 3759:1 3761:1 3765:1 3778:2 3794:1 3808:1 3830:1 3838:1 3854:3 3855:19 3857:1 3861:1 3866:1 3868:9 3876:1 3882:2 3899:2 3910:1 3914:16 3926:1 3932:1 3935:1 3941:1 3952:1 3956:1 3958:2 3961:2 3965:1 3969:1 3977:3 3984:1 4049:1 4050:1 4052:2 4063:1 4075:1 4095:1 4102:1 4103:1 4115:1 4134:1 4135:1 4136:2 4142:4 4144:1 4159:1 4161:2 4177:1 4185:1 4202:1 4210:3 4214:2 4228:1 4233:1 4239:1 4246:3 4256:1 4258:2 4259:1 4279:5 4282:4 4299:1 4300:2 4310:1 4316:1 4345:1 4362:1 4363:1 4374:1 4380:3 4385:1 4387:1 4401:1 4414:1 4415:1 4419:6 4423:1 4430:1 4446:3 4455:2 4456:1 4459:1 4462:2 4495:1 4532:1 4537:1 4549:1 4558:2 4572:3 4578:2 4591:3 4595:1 4596:4 4598:4 4599:3 4601:3 4602:6 4603:4 4605:1 4606:1 4607:2 4609:1 4610:1 4613:1 4630:2 4633:1 4646:1 4650:4 4656:3 4660:4 4671:2 4677:1 4696:1 4714:2 4721:1 4725:7 4726:1 4727:19 4731:2 4735:2 4739:1 4744:1 4745:1 4752:2 4760:1 4761:2 4766:6 4777:3 4782:1 4783:1 4793:1 4800:1 4809:1 4822:2 4828:7 4830:2 4832:1 4836:2 4844:2 4854:1 4859:1 4871:1 4883:1 4885:1 4890:1 4891:3 4896:5 4900:1 4901:1 4906:1 4909:1 4934:1 4942:1 4944:1 4952:2 4954:1 4983:1 5002:1 5004:1 5012:1 5014:1 5017:1 5037:2 5039:1 5058:1 5076:1 5079:1 5099:2 5107:1 5110:1 5112:1 5116:1 5119:1 5121:2 5125:1 5141:1 5145:2 5147:1 5153:2396 5155:1 5158:2 5159:1 5168:3 5171:1 5187:1 5188:1 5191:1 5195:1 5196:1 5212:6 5213:2 5230:1 5232:1 5233:1 5237:1 5250:2 5259:1 5260:1 5280:2 5288:1 5293:1 5297:1 5306:1 5311:3 5318:1 5334:2 5338:2 5345:2 5358:1 5380:2 5400:1 5404:2 5414:1 5426:1 5427:1 5433:1 5441:1 5444:3 5447:1 5455:1 5482:1 5483:1 5487:1 5494:1 5497:2 5517:1 5526:1 5560:1 5562:1 5573:2 5592:1 5612:1 5613:1 5615:1 5616:3 5619:1 5620:1 5643:1 5645:1 5658:1 5662:1 5670:2 5683:5 5690:1 5695:1 5698:1 5704:1 5741:1 5754:1 5755:1 5757:1 5776:1 5809:1 5825:3 5830:2 5840:1 5845:1 5859:1 5861:3 5864:1 5867:1 5878:1 5909:2 5921:4 5930:3 5931:1 5934:4 5952:1 5956:1 5959:1 5967:1 5973:1 5981:1 6003:1 6010:1 6013:4 6016:2 6020:8 6025:1 6026:1 6035:3 6040:1 6053:1 6054:2 6064:1 6069:1 6087:1 6095:1 6115:1 6118:1 6120:1 6133:1 6135:1 6139:1 6142:5 6155:3 6178:2 6189:1 6192:1 6212:3 6219:2 6221:2 6240:1 6244:1 6262:3 6273:1 6281:1 6301:2 6303:1 6311:1 6317:1 6345:1 6357:1 6375:4 6377:1 6384:1 6387:1 6392:13 6395:1 6400:1 6405:2 6410:1 6434:2 6440:1 6444:1 6459:2 6460:1 6468:1 6483:3 6485:1 6533:1 6536:1 6538:7 6545:2 6551:1 6563:1 6564:2 6571:2 6572:4 6573:1 6576:1 6581:5 6582:2 6584:1 6586:1 6587:3 6590:2 6594:6 6597:1 6602:1 6604:1 6605:2 6606:1 6607:2 6608:1 6617:1 6637:4 6643:1 6649:1 6652:8 6658:1 6664:1 6665:1 6672:1 6690:1 6691:2 6693:1 6695:1 6707:1 6711:1 6743:3 6744:1 6749:1 6758:1 6764:2 6774:2 6797:1 6813:1 6828:6 6830:1 6839:1 6844:1 6845:3 6860:13 6866:1 6870:1 6877:3 6883:21 6886:4 6892:1 6915:1 6922:1 6947:4 6959:1 6967:2 6974:2 6983:1 6990:2 6996:1 6998:1 6999:1 7001:1 7007:1 7013:1 7021:5 7034:1 7037:1 7043:1 7050:1 7060:1 7072:1 7080:1 7091:1 7099:1 7114:1 7127:1 7134:4 7140:1 7145:2 7153:1 7155:1 7169:1 7181:1 7183:1 7192:1 7198:1 7201:1 7204:1 7218:1 7220:1 7221:1 7232:4 7244:1 7247:74 7250:1 7256:1 7263:2 7270:1 7271:1 7280:1 7284:1 7291:5 7312:1 7329:1 7353:1 7357:1 7361:1 7372:1 7384:1 7387:4 7390:1 7409:2 7420:1 7422:10 7434:2 7442:1 7443:1 7444:13 7450:2 7453:1 7454:2 7457:1 7459:1 7473:1 7478:1 7487:1 7494:1 7504:2 7525:3 7540:2 7543:1 7550:5 7554:1 7556:2 7558:1 7560:1 7563:1 7564:2 7568:1 7572:2 7574:1 7577:1 7578:1 7579:2 7582:5 7583:5 7584:1 7609:1 7641:1 7642:1 7647:2 7652:1 7656:1 7668:1 7670:1 7678:1 7687:1 7692:1 7700:1 7701:1 7707:1 7710:2 7711:1 7731:4 7737:1 7742:1 7743:1 7769:1 7770:3 7783:1 7803:1 7808:1 7835:2 7838:1 7841:2 7843:1 7849:1 7868:1 7874:1 7878:1 7880:1 7900:1 7912:1 7913:1 7915:1 7924:1 7930:1 7940:1 7952:1 7957:3 7988:2 7998:1 8000:1 8009:1 8012:3 8013:3 8017:1 8023:2 8042:1 8050:1 8055:1 8056:2 8057:1 8058:4 8065:2 8072:1 8075:2 8080:2 8087:1 8094:3 8096:1 8098:1 8100:1 8105:3 8113:1 8116:1 8119:2 8128:2 8135:4 8137:1 8138:4 8146:1 8152:1 8167:1 8168:1 8189:1 8192:3 8194:1 8196:5 8199:2 8200:1 8211:1 8231:1 8245:1 8247:6 8248:1 8253:2 8263:1 8267:1 8272:1 8280:2 8296:1 8319:1 8324:1 8333:1 8339:1 8341:1 8346:1 8347:1 8358:2 8360:1 8368:1 8371:1 8382:1 8383:4 8387:5 8390:1 8391:1 8399:2 8411:1 8414:1 8415:2 8421:3 8431:1 8434:1 8437:5 8441:1 8456:1 8460:1 8491:1 8496:1 8507:1 8513:1 8520:3 8522:2 8524:1 8532:1 8533:2 8539:1 8542:2 8546:2 8552:7 8554:1 8556:1 8559:1 8573:1 8576:1 8606:1 8616:4 8623:1 8626:2 8648:2 8651:1 8664:1 8669:1 8678:1 8712:1 8732:2 8742:1 8743:1 8744:1 8755:1 8770:1 8772:1 8776:1 8779:1 8780:2 8785:3 8786:2 8794:1 8797:3 8809:4 8821:1 8840:1 8843:1 8848:1 8859:1 8860:1 8872:1 8886:1 8899:1 8901:2 8923:1 8926:1 8928:1 8937:1 8953:1 8959:2 8967:1 8968:1 8971:2 8974:1 8980:1 8983:1 8986:1 8993:1 8994:1 8996:1 9006:3 9019:1 9025:2 9026:2 9051:1 9067:2 9072:1 9084:1 9085:1 9090:1 9100:2 9103:2 9107:1 9113:1 9114:1 9117:1 9122:3 9124:1 9125:1 9129:2 9143:1 9159:1 9162:1 9165:1 9177:1 9180:2 9183:1 9185:1 9189:1 9191:2 9204:1 9215:1 9228:1 9234:1 9237:1 9238:1 9251:6 9252:4 9253:1 9260:24 9261:2 9268:1 9275:1 9279:1 9283:1 9295:6 9303:1 9308:1 9309:1 9329:1 9331:1 9333:1 9337:1 9347:1 9357:1 9358:1 9360:2 9370:1 9378:1 9380:1 9385:1 9388:5 9394:1 9404:1 9406:10 9429:1 9432:1 9443:2 9444:5 9449:1 9456:2 9461:1 9474:1 9478:1 9486:1 9499:3 9508:3 9512:2 9522:1 9525:1 9534:2 9548:3 9560:1 9569:1 9591:1 9594:6 9596:1 9597:1 9605:2 9606:1 9607:1 9612:1 9613:1 9624:12 9625:1 9626:1 9627:3 9632:2 9641:2 9657:1 9659:1 9675:9 9683:2 9693:1 9698:1 9704:2 9712:1 9719:1 9721:6 9754:1 9759:1 9780:1 9786:1 9787:1 9788:1 9795:2 9798:2 9813:2 9815:1 9817:1 9818:1 9822:1 9829:1 9842:1 9859:1 9865:3 9870:2 9879:2 9881:1 9884:1 9886:1 9888:1 9890:1 9904:1 9910:3 9916:1 9917:1 9918:1 9920:1 9924:3 9926:1 9929:1 9940:1 9948:1 9952:1 9959:2 9963:1 9968:1 9980:2 9983:1 9992:1 10001:1 10007:1 10009:1 10010:1 10013:2 10017:1 10039:1 10044:2 10045:1 10049:1 10057:1 10058:1 10059:4 10068:2 10070:1 10075:1 10092:1 10098:1 10105:3 10111:5 10115:1 10124:2 10125:2 10127:1 10129:7 10130:1 10160:1 10163:1 10169:1 10175:1 10193:4 10200:2 10204:3 10212:2 10215:1 10223:1 10230:1 10243:1 10254:1 10262:1 10263:2 10271:2 10272:4 10280:1 10283:1 10286:1 10297:1 10298:1 10301:1 10306:1 10315:1 10318:1 10334:1 10335:1 10349:4 10356:1 10376:3 10377:2 10378:1 10380:1 10398:2 10399:3 10408:1 10409:4 10415:1 10442:4 10459:37 10463:1 10468:3 10474:1 10479:20 10484:10 10485:1 10494:1 10504:1 10510:1 10515:1 10551:1 10554:4 10564:1 10567:2 10570:1 10573:7 10595:2 10632:2 10637:1 10639:3 10640:1 10642:1 10649:1 10654:1 10685:2 10709:1 10720:1 10721:7 10723:1 10725:2 10740:1 10742:2 10749:1 10756:13 10764:1 10769:1 10773:1 10777:1 10787:1 10790:2 10797:1 10820:4 10822:1 10824:1 10845:1 10857:1 10865:2 10868:1 10877:1 10886:1 10888:1 10892:2 10922:1 10925:1 10930:1 10934:1 10945:1 10948:1 10950:1 10957:1 10963:1 10968:1 10972:1 10975:1 10978:1 10982:1 10990:1 10996:1 11013:1 11017:1 11032:3 11042:1 11046:2 11050:2 11055:2 11058:46 11075:1 11081:2 11082:1 11085:1 11088:1 11099:1 11117:1 11123:1 11126:1 11132:1 11140:1 11159:1 11164:1 11175:1 11180:2 11195:1 11197:14 11200:9 11203:1 11207:1 11272:2 11273:2 11276:1 11280:2 11281:1 11287:1 11289:1 11310:2 11311:1 11313:1 11319:1 11321:7 11326:2 11328:1 11330:2 11344:1 11357:1 11362:2 11376:3 11379:1 11391:1 11403:3 11405:2 11407:1 11408:1 11415:2 11416:2 11417:1 11420:3 11433:1 11439:1 11446:4 11448:1 11456:1 11457:1 11458:1 11459:2 11473:2 11496:1 11520:1 11523:2 11527:1 11557:1 11559:1 11563:2 11565:1 11568:4 11573:4 11588:1 11599:1 11600:1 11601:1 11607:1 11608:1 11623:1 11634:1 11636:1 11637:1 11639:1 11641:3 11643:2 11646:1 11649:1 11652:1 11654:1 11656:3 11658:2 11664:1 11667:1 11668:1 11669:1 11678:1 11679:3 11684:2 11687:2 11689:2 11698:2 11702:4 11715:1 11721:1 11724:1 11730:8 11732:1 11735:2 11736:3 11739:1 11761:1 11765:1 11770:1 11773:1 11782:2 11788:1 11800:1 11829:2 11831:3 11835:1 11842:1 11859:1 11864:1 11866:1 11877:2 11881:1 11885:2 11888:1 11895:1 11898:1 11914:1 11921:1 11937:1 11951:2 11958:1 11978:2 11980:1 11992:1 12000:1 12019:1 12026:1 12037:1 12043:1 12050:2 12052:7 12055:1 12063:1 12092:1 12102:1 12116:1 12130:1 12132:1 12138:1 12161:1 12172:1 12186:1 12190:1 12210:1 12228:1 12234:1 12245:1 12251:1 12256:2 12260:2 12274:1 12276:1 12280:4 12289:2 12305:1 12306:1 12328:1 12331:1 12355:1 12357:3 12365:2 12392:1 12397:2 12403:1 12405:1 12415:1 12433:1 12435:3 12437:1 12439:1 12440:1 12451:2 12454:1 12461:3 12466:1 12471:1 12480:1 12481:1 12497:3 12499:1 12513:1 12519:1 12530:1 12532:1 12537:2 12541:1 12556:2 12557:2 12558:2 12559:1 12565:1 12566:3 12572:1 12577:2 12578:1 12581:2 12585:3 12591:1 12592:1 12603:1 12610:2 12611:1 12613:1 12617:1 12640:1 12642:3 12645:1 12648:1 12671:1 12672:3 12678:3 12687:1 12688:3 12703:1 12709:1 12710:1 12712:1 12713:1 12720:1 12722:1 12723:1 12726:1 12728:2 12731:3 12739:1 12747:1 12752:1 12754:1 12759:1 12769:1 12772:1 12779:1 12797:1 12808:1 12809:1 12828:4 12836:1 12837:1 12838:1 12857:1 12858:1 12866:1 12876:1 12877:3 12893:1 12914:1 12918:3 12919:1 12922:1 12928:1 12938:1 12962:5 12967:1 12970:1 12977:2 12978:3 12983:1 12986:1 12992:1 12993:2 13001:1 13005:1 13018:1 13019:4 13021:1 13028:1 13041:1 13048:1 13052:1 13056:2 13058:1 13072:1 13075:1 13087:1 13100:1 13102:2 13106:1 13108:1 13121:1 13136:2 13141:2 13142:1 13143:2 13153:1 13156:1 13170:1 13179:1 13189:1 13192:1 13197:1 13200:3 13203:4 13207:6 13208:1 13212:1 13214:1 13219:1 13220:1 13231:2 13236:1 13237:1 13238:6 13239:1 13240:1 13247:1 13250:1 13256:3 13262:1 13266:1 13269:1 13307:1 13338:1 13358:2 13367:1 13370:6 13383:1 13386:1 13388:1 13402:1 13426:2 13432:1 13446:1 13448:2 13462:1 13468:1 13481:1 13483:3 13485:3 13491:3 13506:3 13508:1 13512:1 13513:1 13516:1 13517:5 13538:1 13546:1 13556:1 13573:1 13574:1 13582:1 13583:1 13585:1 13586:2 13608:1 13627:6 13628:2 13631:1 13639:1 13642:1 13646:2 13652:3 13655:1 13659:1 13660:2 13662:3 13668:1 13670:2 13672:1 13677:2 13682:1 13684:1 13698:1 13703:2 13710:1 13727:1 13735:2 13753:1 13759:1 13769:1 13783:1 13789:6 13812:1 13817:1 13825:2 13826:1 13832:1 13846:1 13853:1 13855:1 13856:1 13861:1 13866:8 13876:1 13891:1 13899:4 13900:1 13902:2 13904:3 13907:1 13911:1 13912:3 13913:5 13915:1 13918:1 13921:1 13924:1 13926:2 13927:1 13934:2 13939:13 13942:2 13944:2 13947:1 13948:8 13950:2 13956:1 13958:1 13959:1 13981:1 13983:3 13999:1 14028:1 14049:1 14051:7 14055:1 14058:3 14059:1 14060:1 14064:1 14077:1 14090:1 14095:2 14100:6 14105:1 14108:1 14112:2 14140:1 14142:1 14148:1 14151:1 14172:6 14186:1 14188:1 14192:1 14199:2 14205:1 14212:3 14228:1 14238:1 14258:1 14261:1 14265:1 14271:2 14273:1 14278:1 14279:1 14284:1 14286:1 14288:1 14293:1 14298:7 14311:1 14338:1 14344:1 14346:2 14349:1 14353:1 14361:1 14362:1 14363:3 14366:1 14371:1 14372:2 14374:2 14376:1 14379:1 14383:1 14411:2 14413:1 14429:2 14445:1 14446:1 14470:2 14472:1 14479:1 14492:1 14498:1 14519:1 14527:3 14532:1 14535:1 14572:1 14575:3 14599:1 14603:1 14618:2 14624:2 14625:3 14636:1 14637:4 14641:5 14651:7 14652:1 14656:1 14663:1 14664:1 14672:1 14687:1 14694:3 14698:2 14701:2 14705:1 14706:1 14739:2 14747:1 14756:1 14770:5 14775:1 14779:1 14780:1 14781:1 14790:1 14796:1 14807:1 14811:7 14815:1 14828:6 14832:1 14845:1 14846:1 14852:1 14853:1 14856:1 14858:1 14868:1 14881:1 14882:1 14884:1 14889:3 14895:1 14916:1 14933:2 14947:1 14957:1 14981:1 14995:1 15003:1 15004:1 15025:4 15040:2 15048:1 15049:1 15051:1 15052:1 15055:1 15064:1 15066:1 15069:1 15086:1 15087:1 15089:1 15096:2 15097:1 15110:4 15113:1 15116:1 15120:1 15122:1 15128:1 15130:1 15135:2 15139:1 15142:1 15149:3 15151:1 15156:2 15164:1 15166:1 15170:4 15171:12 15190:1 15195:1 15210:1 15215:1 15226:1 15230:1 15232:5 15240:1 15241:1 15249:2 15254:1 15256:1 15262:1 15265:2 15267:2 15268:1 15284:1 15287:1 15293:1 15304:2 15305:1 15308:1 15311:1 15331:1 15337:1 15351:1 15354:1 15356:2 15363:1 15370:1 15396:1 15404:3 15413:1 15452:2 15455:1 15457:8 15458:6 15461:1 15466:1 15478:1 15490:3 15493:1 15499:1 15511:7 15513:1 15514:1 15516:1 15521:6 15525:1 15527:1 15532:7 15537:1 15545:2 15549:1 15560:1 15572:2 15580:1 15582:6 15583:2 15584:2 15587:1 15592:1 15596:1 15598:15 15602:1 15607:1 15608:3 15614:1 15616:1 15618:2 15619:1 15635:2 15643:4 15651:1 15658:1 15661:1 15678:3 15679:1 15681:1 15686:1 15693:1 15698:1 15703:1 15710:4 15721:3 15727:1 15730:1 15741:1 15753:1 15760:1 15764:1 15773:1 15774:1 15776:1 15797:2 15805:1 15806:3 15820:1 15827:1 15865:2 15873:1 15876:1 15878:1 15882:6 15886:4 15890:2 15922:1 15936:1 15940:1 15943:1 15949:1 15950:1 15957:1 15960:1 15962:3 15965:1 15966:3 15969:1 15983:2 15990:1 16001:1 16019:2 16020:2 16023:1 16029:1 16032:1 16036:1 16057:1 16060:2 16065:1 16067:1 16071:1 16073:1 16101:1 16109:1 16115:1 16122:2 16123:3 16125:1 16132:1 16136:1 16145:2 16147:1 16154:1 16157:2 16175:4 16181:1 16185:1 16202:1 16232:1 16274:1 16278:1 16297:1 16299:3 16301:1 16305:3 16308:1 16309:1 16314:1 16319:1 16329:3 16333:2 16345:2 16350:1 16364:1 16369:2 16374:1 16379:1 16395:1 16399:1 16403:1 16406:1 16408:1 16425:1 16462:1 16475:1 16509:1 16535:3 16541:1 16558:1 16560:3 16562:1 16575:1 16579:2 16583:1 16587:1 16591:1 16592:2 16594:1 16624:1 16630:1 16652:1 16662:1 16668:1 16670:1 16679:1 16687:1 16693:1 16705:1 16706:1 16707:1 16746:2 16753:1 16756:3 16763:3 16766:1 16776:1 16785:1 16792:1 16793:1 16807:1 16810:1 16819:1 16820:1 16823:1 16825:1 16826:2 16827:1 16842:1 16853:1 16875:1 16880:1 16886:5 16891:1 16898:1 16900:1 16902:2 16905:2 16915:1 16917:3 16919:1 16922:2 16940:1 16948:1 16951:1 16953:1 16957:1 16961:4 16962:2 16972:1 16978:2 16981:1 16983:1 16993:1 16999:1 17000:3 17002:3 17003:1 17006:1 17008:1 17009:2 17021:2 17024:2 17029:1 17030:2 17031:4 17032:1 17034:2 17043:1 17050:1 17054:3 17058:1 17060:1 17067:1 17071:2 17076:2 17088:1 17093:1 17097:3 17108:1 17113:1 17115:2 17119:2 17120:3 17125:1 17137:2 17139:2 17143:2 17154:1 17164:2 17169:1 17175:1 17190:1 17196:1 17199:1 17202:4 17204:2 17207:1 17208:4 17209:2 17220:1 17227:1 17235:1 17250:1 17260:1 17267:1 17278:1 17282:1 17304:1 17311:1 17317:3 17318:1 17319:1 17336:1 17340:1 17341:1 17345:1 17349:1 17380:1 17382:1 17383:1 17384:1 17399:4 17404:1 17405:1 17414:1 17415:1 17418:1 17422:1 17427:2 17432:1 17434:11 17455:1 17468:2 17470:1 17481:1 17486:1 17511:1 17513:1 17533:1 17540:2 17561:1 17565:1 17570:1 17572:1 17582:1 17599:1 17602:2 17603:1 17604:3 17615:1 17616:1 17629:2 17637:1 17640:3 17662:1 17667:1 17675:1 17695:1 17713:2 17718:1 17733:1 17750:1 17753:1 17757:1 17781:6 17784:2 17789:1 17791:1 17792:2 17793:1 17796:1 17820:1 17826:1 17827:1 17828:1 17833:1 17835:1 17844:7 17861:2 17873:1 17878:2 17891:3 17894:1 17897:30 17902:2 17933:1 17935:1 17936:1 17947:3 17960:2 17961:1 17967:2 17974:2 17978:1 18044:2 18053:1 18069:1 18073:4 18080:3 18084:1 18098:1 18106:1 18107:2 18115:2 18117:2 18119:1 18133:1 18141:1 18145:1 18151:1 18153:1 18161:1 18177:1 18189:1 18190:1 18196:3 18217:1 18219:1 18232:1 18236:2 18255:6 18257:3 18258:1 18259:2 18261:1 18262:1 18270:5 18278:1 18281:1 18282:1 18283:1 18288:2 18294:1 18295:1 18296:1 18303:1 18305:1 18306:1 18309:1 18311:2 18313:1 18325:1 18332:1 18358:1 18367:1 18370:2 18372:1 18373:1 18392:1 18394:1 18401:1 18402:1 18404:1 18412:2 18414:1 18415:2 18417:4 18426:1 18434:1 18435:1 18437:1 18449:1 18460:1 18461:1 18463:1 18465:1 18468:1 18474:1 18482:1 18489:7 18498:1 18499:8 18505:1 18521:1 18522:1 18524:2 18546:1 18549:1 18550:1 18558:1 18559:1 18562:3 18575:1 18576:1 18577:1 18580:4 18582:1 18583:1 18584:1 18608:1 18616:3 18628:1 18645:2 18652:1 18656:5 18666:2 18670:5 18681:1 18687:1 18718:1 18719:1 18728:1 18730:1 18762:1 18763:12 18785:3 18794:1 18799:1 18830:6 18835:2 18844:1 18848:1 18866:1 18881:1 18882:1 18891:2 18899:1 18909:1 18913:1 18916:4 18917:1 18927:2 18935:1 18937:1 18942:1 18947:1 18957:1 18958:4 18965:1 18968:1 18976:1 18996:1 19001:1 19005:5 19015:2 19022:1 19045:1 19060:1 19067:1 19082:1 19086:1 19095:1 19134:1 19154:1 19159:2 19168:1 19175:1 19176:4 19182:2 19185:1 19188:1 19190:1 19205:1 19206:1 19208:1 19210:1 19212:1 19217:3 19221:3 19231:1 19237:1 19242:1 19244:3 19260:2 19262:1 19263:1 19266:1 19268:1 19280:1 19295:1 19302:1 19306:1 19322:1 19324:1 19339:1 19340:1 19346:2 19347:2 19361:2 19383:1 19397:1 19405:1 19414:1 19426:2 19429:2 19430:1 19431:1 19435:1 19467:1 19469:1 19484:2 19485:1 19489:2 19490:1 19495:2 19496:1 19498:1 19502:1 19528:1 19542:1 19543:3 19561:1 19569:2 19572:1 19584:3 19588:3 19594:1 19602:3 19609:1 19615:2 19618:1 19619:1 19629:1 19633:1 19635:1 19639:1 19644:1 19654:1 19655:1 19657:1 19660:1 19663:6 19664:1 19669:2 19670:1 19672:1 19674:1 19681:1 19689:1 19700:2 19706:1 19733:1 19734:1 19737:1 19738:1 19748:1 19760:1 19768:1 19772:8 19776:2 19779:1 19784:1 19799:1 19823:1 19828:1 19857:3 19861:1
5 1:1 2:1 5:1 28:1 33:1 35:3 65:1 68:3 70:1 71:1 77:1 103:1 105:3 131:1 145:1 160:3 164:1 167:1 178:1 185:3 196:1 200:1 215:1 220:1 221:1 227:1 233:2 246:5 261:1 272:2 274:1 276:1 278:1 288:1 289:1 292:1 297:1 312:2 316:1 348:4 349:2 352:1 353:1 361:1 365:1 366:1 382:2 390:1 393:2 395:1 399:3 413:1 417:1 418:3 422:1 434:1 453:1 461:3 477:1 480:2 483:1 485:1 490:1 495:2 510:5 511:1 525:1 530:1 532:1 540:1 543:1 547:1 559:1 565:1 573:2 574:4 576:1 592:1 595:1 599:1 600:1 605:1 615:2 625:1 634:2 639:1 641:1 661:3 669:1 699:2 714:2 720:1 738:1 749:6 753:1 754:1 763:1 787:1 793:1 797:1 798:1 811:1 825:1 826:2 833:4 834:1 849:2 860:1 861:1 863:1 864:1 865:2 880:8 881:1 901:1 909:1 918:1 920:1 931:2 942:1 943:2 950:2 956:1 960:1 971:3 972:1 980:4 1007:2 1014:1 1015:1 1017:1 1026:1 1028:1 1032:1 1045:1 1074:1 1083:2 1084:1 1104:2 1108:2 1110:1 1134:1 1138:1 1140:1 1145:3 1157:1 1176:1 1177:2 1185:1 1194:2 1213:4 1214:3 1231:1 1232:5 1242:1 1243:1 1252:1 1264:2 1274:6 1276:1 1279:3 1286:1 1288:4 1310:4 1312:2 1320:1 1323:1 1324:3 1328:3 1332:1 1335:1 1336:2 1337:3 1340:5 1355:2 1357:3 1362:1 1368:1 1380:4 1385:1 1388:2 1392:1 1408:1 1415:1 1421:1 1424:2 1427:3 1434:4 1458:1 1463:6 1486:1 1493:1 1494:1 1498:1 1504:4 1509:1 1512:1 1519:2 1566:1 1576:2 1578:1 1616:1 1617:1 1622:2 1628:1 1635:1 1637:1 1643:1 1649:3 1650:1 1653:3 1654:5 1657:5 1658:2 1659:3 1666:3 1669:2 1670:4 1675:2 1677:2 1679:1 1680:1 1681:1 1682:7 1683:2 1685:1 1692:1 1694:1 1700:1 1714:1 1717:1 1721:1 1723:2 1725:1 1732:1 1734:3 1735:1 1742:1 1756:2 1759:1 1765:1 1766:1 1767:1 1769:1 1777:1 1786:1 1807:1 1826:1 1858:1 1859:1 1862:2 1881:1 1884:1 1894:1 1898:1 1901:1 1902:1 1910:3 1911:1 1920:1 1921:1 1923:4 1939:3 1942:1 1952:2 1963:3 1968:1 1970:1 1973:1 1975:1 1978:1 1980:1 1985:1 2012:1 2030:1 2033:1 2035:1 2045:1 2050:3 2060:1 2066:1 2067:1 2068:1 2074:1 2078:2 2088:1 2096:1 2097:10 2099:1 2108:1 2112:11 2123:1 2129:1 2133:1 2138:1 2139:3 2160:1 2175:1 2178:1 2180:1 2185:1 2195:1 2207:1 2218:1 2220:3 2230:1 2231:1 2238:1 2253:1 2255:5 2269:1 2280:1 2298:1 2302:1 2332:1 2335:1 2337:1 2344:1 2345:1 2356:1 2363:1 2374:2 2383:1 2384:2 2394:2 2397:1 2405:1 2433:1 2435:1 2440:1 2450:1 2453:2 2471:14 2479:1 2490:1 2511:1 2521:2 2532:1 2535:1 2541:1 2544:1 2558:1 2586:1 2590:1 2594:1 2595:1 2609:2 2622:1 2623:3 2624:1 2645:2 2647:2 2652:1 2656:2 2661:1 2663:2 2666:2 2673:1 2674:1 2695:1 2699:1 2712:1 2713:1 2716:3 2717:3 2723:1 2735:2 2742:2 2746:1 2748:1 2750:1 2753:1 2757:2 2764:1 2791:1 2794:1 2799:1 2801:1 2812:1 2815:2 2816:1 2823:8 2850:2 2870:1 2876:1 2882:4 2891:1 2896:3 2911:1 2913:2 2916:1 2917:3 2918:1 2922:1 2923:1 2928:1 2929:1 2939:1 2947:1 2951:1 2954:1 2955:1 2957:11 2972:4 2973:1 2975:3 2976:7 2977:2 2978:3 2979:1 2982:3 2984:3 2990:1 2992:4 2996:1 2999:1 3001:1 3002:1 3006:2 3007:2 3011:1 3014:1 3015:1 3042:1 3051:1 3062:1 3065:1 3082:1 3087:3 3090:1 3095:1 3102:3 3117:1 3128:1 3132:1 3137:1 3139:1 3143:1 3148:1 3153:1 3165:3 3169:1 3178:1 3179:1 3180:1 3190:1 3192:2 3194:1 3196:1 3197:2 3222:1 3237:1 3239:1 3243:1 3253:1 3258:2 3263:1 3284:1 3286:1 3287:1 3289:1 3293:1 3323:2 3325:1 3326:1 3355:1 3365:3 3369:1 3371:1 3407:1 3429:3 3430:1 3446:1 3467:2 3470:1 3472:1 3475:1 3487:1 3499:1 3500:1 3513:4 3516:4 3521:6 3532:1 3540:1 3547:1 3554:1 3572:1 3580:1 3587:1 3590:1 3591:3 3594:3 3613:1 3619:1 3621:1 3627:1 3628:1 3640:1 3643:1 3644:1 3650:1 3668:3 3682:3 3687:1 3692:2 3693:2 3694:1 3695:2 3700:1 3704:1 3705:1 3708:2 3711:1 3719:1 3732:3 3735:1 3745:1 3759:1 3761:1 3765:1 3778:2 3794:1 3808:1 3830:1 3838:1 3854:3 3855:19 3857:1 3861:1 3866:1 3868:9 3876:1 3882:2 3899:2 3910:1 3914:17 3926:1 3932:1 3935:1 3941:1 3952:1 3956:1 3958:2 3959:1 3961:2 3965:1 3969:1 3977:3 3984:1 4049:1 4050:1 4052:2 4063:1 4075:1 4095:1 4102:1 4103:1 4115:1 4134:1 4135:1 4136:2 4142:4 4144:1 4159:1 4161:2 4177:1 4185:1 4202:1 4210:3 4214:2 4228:1 4233:1 4239:1 4246:3 4256:1 4258:2 4259:1 4279:5 4282:4 4299:1 4300:2 4310:1 4316:1 4345:1 4362:1 4363:1 4374:1 4380:3 4385:1 4387:1 4401:1 4414:1 4415:1 4419:6 4423:1 4430:1 4446:3 4455:2 4456:1 4459:1 4462:2 4495:1 4532:1 4537:1 4549:1 4558:2 4572:3 4578:2 4591:3 4595:1 4596:4 4598:4 4599:3 4601:3 4602:6 4603:4 4605:1 4606:1 4607:3 4609:1 4610:1 4613:1 4630:2 4633:1 4646:1 4650:4 4656:3 4660:4 4671:2 4677:1 4696:1 4714:2 4721:1 4725:7 4726:1 4727:19 4731:2 4735:2 4739:1 4744:1 4745:1 4752:2 4760:1 4761:2 4766:6 4777:3 4782:1 4783:1 4793:1 4800:1 4809:1 4822:2 4828:7 4830:2 4832:1 4836:2 4844:2 4854:1 4859:1 4871:1 4883:1 4885:1 4890:1 4891:3 4896:5 4900:1 4901:1 4906:1 4909:1 4934:1 4942:1 4944:1 4952:2 4954:1 4983:1 5002:1 5004:1 5012:1 5014:1 5017:1 5037:2 5039:1 5058:1 5076:1 5079:1 5099:2 5107:1 5110:1 5112:1 5116:1 5119:1 5121:2 5125:1 5141:1 5145:2 5147:1 5153:2420 5155:1 5158:2 5159:1 5168:3 5171:1 5187:1 5188:1 5191:1 5195:1 5196:1 5212:6 5213:2 5230:1 5232:1 5233:1 5237:1 5250:2 5259:1 5260:1 5280:2 5288:1 5293:1 5297:1 5306:1 5311:3 5318:1 5334:2 5338:2 5345:2 5358:1 5380:2 5400:1 5404:2 5414:1 5426:1 5427:1 5433:1 5441:1 5444:3 5447:1 5455:1 5482:1 5483:1 5487:1 5494:1 5497:2 5517:1 5526:1 5560:1 5562:1 5573:2 5592:1 5612:1 5613:1 5615:1 5616:3 5619:1 5620:1 5643:1 5645:1 5658:1 5662:1 5670:2 5683:5 5690:1 5695:1 5698:1 5704:1 5741:1 5754:1 5755:1 5757:1 5776:1 5809:1 5825:3 5830:2 5840:1 5845:1 5859:1 5861:3 5864:1 5867:1 5878:1 5909:2 5916:1 5921:4 5930:3 5931:1 5934:4 5952:1 5956:1 5959:1 5967:2 5973:1 5981:1 6003:1 6010:1 6013:4 6016:2 6020:10 6025:1 6026:1 6035:3 6040:1 6053:1 6054:2 6064:1 6069:1 6087:1 6095:1 6115:1 6118:1 6120:1 6133:1 6135:1 6139:1 6142:5 6155:3 6178:2 6189:1 6192:1 6212:3 6219:2 6221:2 6240:1 6244:1 6262:3 6273:1 6281:1 6301:2 6303:1 6311:1 6317:1 6345:1 6357:1 6375:4 6377:1 6384:1 6387:1 6392:13 6395:1 6400:1 6405:2 6410:1 6434:2 6440:1 6444:1 6459:2 6460:1 6468:1 6483:3 6485:1 6533:1 6536:1 6538:7 6545:2 6551:1 6563:1 6564:2 6571:2 6572:4 6573:1 6576:1 6581:5 6582:2 6584:1 6586:1 6587:3 6590:2 6594:6 6597:1 6602:1 6604:1 6605:2 6606:1 6607:2 6608:1 6617:1 6637:4 6643:1 6649:1 6652:10 6658:1 6664:1 6665:1 6672:1 6690:1 6691:2 6693:1 6695:1 6707:1 6711:1 6743:3 6744:1 6749:1 6758:1 6764:2 6774:2 6797:1 6813:1 6828:6 6830:1 6839:1 6844:1 6845:3 6860:14 6866:1 6870:1 6877:3 6883:22 6886:4 6892:1 6915:1 6922:1 6947:4 6959:1 6967:2 6974:2 6978:1 6983:1 6990:2 6996:1 6998:1 6999:1 7001:1 7007:1 7013:1 7021:5 7034:1 7037:1 7043:1 7050:1 7060:1 7072:1 7080:1 7091:1 7099:1 7114:1 7127:1 7134:4 7140:1 7145:2 7153:1 7155:1 7169:1 7181:1 7183:1 7192:1 7198:1 7201:1 7204:1 7218:1 7220:1 7221:1 7232:5 7244:1 7247:75 7250:1 7256:1 7263:2 7270:1 7271:1 7280:1 7284:1 7291:5 7312:1 7329:1 7353:1 7357:1 7361:1 7372:1 7384:1 7387:4 7390:1 7409:2 7420:1 7422:10 7434:2 7442:1 7443:1 7444:14 7450:2 7453:1 7454:2 7457:1 7459:1 7473:1 7478:1 7487:1 7494:1 7504:2 7525:3 7540:2 7543:1 7550:5 7554:1 7556:2 7558:1 7560:1 7563:1 7564:2 7568:1 7572:2 7574:1 7577:1 7578:1 7579:2 7582:5 7583:5 7584:1 7609:1 7641:1 7642:1 7647:2 7652:1 7656:1 7668:1 7670:1 7678:1 7687:1 7692:1 7700:1 7701:1 7707:1 7710:2 7711:1 7731:4 7737:1 7742:1 7743:1 7769:1 7770:3 7783:1 7803:1 7808:1 7835:2 7838:1 7841:2 7843:2 7849:1 7868:1 7874:1 7878:1 7880:1 7900:1 7912:1 7913:1 7915:1 7924:1 7930:1 7940:1 7952:1 7957:3 7988:2 7998:1 8000:1 8009:1 8012:3 8013:3 8017:1 8023:2 8042:1 8050:1 8055:1 8056:2 8057:1 8058:4 8065:2 8072:1 8075:2 8080:2 8087:1 8094:3 8096:1 8098:1 8100:1 8105:3 8113:1 8116:1 8119:2 8128:2 8135:4 8137:1 8138:4 8146:1 8152:1 8167:1 8168:1 8189:1 8192:3 8194:1 8196:5 8199:2 8200:1 8211:1 8231:1 8245:1 8247:6 8248:1 8253:2 8263:1 8267:1 8272:1 8280:2 8296:1 8319:1 8324:1 8333:1 8339:1 8341:1 8346:1 8347:1 8358:2 8360:1 8368:1 8371:1 8382:1 8383:4 8387:5 8390:1 8391:1 8399:2 8411:1 8414:1 8415:2 8421:3 8431:1 8434:1 8437:5 8441:1 8456:1 8460:1 8491:1 8496:1 8507:1 8513:1 8520:3 8522:2 8524:1 8532:1 8533:2 8539:1 8542:2 8546:2 8552:7 8554:1 8556:1 8559:1 8573:1 8576:1 8606:1 8616:4 8623:1 8626:2 8648:2 8651:1 8664:1 8669:1 8678:1 8712:1 8732:2 8742:1 8743:1 8744:1 8755:1 8770:1 8772:1 8776:1 8779:2 8780:2 8785:3 8786:2 8794:1 8797:3 8809:4 8821:1 8840:1 8843:1 8848:1 8859:1 8860:1 8872:1 8886:1 8899:1 8901:2 8923:1 8926:1 8928:2 8937:1 8953:1 8959:2 8967:1 8968:1 8971:2 8974:1 8980:1 8983:1 8986:1 8990:1 8993:1 8994:1 8996:1 9006:3 9019:1 9025:2 9026:2 9051:1 9067:2 9072:1 9084:1 9085:1 9090:1 9100:2 9103:2 9107:1 9113:1 9114:1 9117:1 9122:4 9124:1 9125:1 9129:2 9143:1 9159:1 9162:1 9165:1 9177:1 9180:2 9183:1 9185:1 9189:1 9191:2 9204:1 9215:1 9228:1 9234:1 9237:1 9238:1 9251:6 9252:4 9253:1 9260:24 9261:2 9268:1 9275:1 9279:1 9283:1 9295:6 9303:1 9308:1 9309:1 9329:1 9331:1 9333:1 9337:1 9347:1 9357:1 9358:1 9360:2 9370:1 9378:1 9380:1 9385:1 9388:5 9394:1 9404:1 9406:10 9429:1 9432:1 9443:2 9444:5 9449:1 9456:2 9461:1 9474:1 9478:2 9486:1 9499:3 9508:3 9512:2 9522:1 9525:1 9534:2 9548:3 9560:1 9569:1 9591:1 9594:6 9596:1 9597:1 9605:2 9606:1 9607:1 9612:1 9613:1 9624:12 9625:1 9626:1 9627:3 9632:2 9641:2 9657:1 9659:1 9675:9 9683:2 9693:1 9698:1 9704:2 9712:1 9719:1 9721:6 9754:1 9759:1 9780:1 9786:1 9787:1 9788:1 9795:2 9798:2 9813:2 9815:1 9817:1 9818:1 9822:1 9829:1 9842:1 9859:1 9865:3 9870:2 9879:2 9881:1 9884:1 9886:1 9888:1 9890:1 9904:1 9910:3 9916:1 9917:1 9918:1 9920:1 9924:3 9926:1 9929:1 9940:1 9948:1 9952:1 9959:2 9963:1 9968:1 9980:2 9983:1 9992:2 10001:1 10007:1 10009:1 10010:1 10013:2 10017:1 10039:1 10044:2 10045:1 10049:1 10057:1 10058:1 10059:4 10068:2 10070:1 10075:1 10092:1 10098:1 10105:3 10111:5 10115:1 10124:2 10125:2 10127:1 10129:7 10130:1 10160:1 10163:1 10169:1 10175:1 10193:5 10200:2 10204:3 10212:2 10215:1 10223:1 10230:1 10243:1 10254:1 10262:1 10263:2 10271:2 10272:4 10280:1 10283:1 10286:1 10297:1 10298:1 10301:1 10306:1 10315:1 10318:1 10334:1 10335:1 10349:4 10356:1 10376:3 10377:2 10378:1 10380:1 10398:2 10399:3 10408:1 10409:4 10415:1 10442:4 10459:37 10463:1 10468:3 10474:1 10479:20 10484:10 10485:1 10494:1 10504:1 10510:1 10515:1 10551:1 10554:4 10564:1 10567:2 10570:1 10573:7 10595:2 10632:2 10637:1 10639:4 10640:1 10642:1 10649:1 10654:1 10685:2 10709:1 10720:1 10721:7 10723:1 10725:2 10740:1 10742:2 10748:1 10749:1 10756:14 10764:1 10769:1 10773:1 10777:1 10787:1 10790:2 10797:1 10820:4 10822:1 10824:1 10845:1 10857:1 10865:2 10868:1 10877:1 10886:1 10888:1 10892:2 10922:1 10925:1 10930:1 10934:1 10945:1 10948:1 10950:1 10957:1 10963:3 10968:1 10972:1 10975:1 10978:1 10982:1 10990:1 10996:1 11013:1 11017:1 11032:3 11042:1 11046:2 11050:2 11055:2 11058:46 11075:1 11081:2 11082:1 11085:1 11088:1 11099:1 11117:1 11123:1 11126:1 11132:1 11140:1 11159:1 11164:1 11175:1 11180:2 11195:1 11197:14 11200:9 11203:1 11207:1 11272:2 11273:2 11276:1 11280:2 11281:1 11287:1 11289:1 11310:2 11311:1 11313:1 11319:1 11321:7 11326:2 11328:1 11330:2 11344:1 11357:1 11362:2 11376:3 11379:1 11391:1 11403:3 11405:2 11407:1 11408:1 11415:2 11416:2 11417:1 11420:3 11433:1 11439:1 11446:4 11448:1 11456:1 11457:1 11458:1 11459:2 11473:2 11496:1 11520:1 11523:2 11527:1 11557:1 11559:1 11563:2 11565:1 11568:4 11573:4 11588:1 11599:1 11600:1 11601:1 11607:1 11608:1 11623:1 11634:1 11636:1 11637:1 11639:1 11641:3 11643:2 11646:1 11649:1 11652:1 11654:1 11656:3 11658:3 11664:1 11667:1 11668:1 11669:1 11678:1 11679:3 11684:2 11687:2 11689:2 11698:2 11702:4 11715:1 11721:1 11724:1 11730:8 11732:1 11735:2 11736:3 11739:1 11761:1 11765:1 11770:1 11773:1 11782:2 11788:1 11800:1 11829:2 11831:3 11835:1 11842:1 11859:1 11864:1 11866:1 11877:2 11881:1 11885:2 11888:1 11895:1 11898:1 11914:1 11921:1 11937:1 11951:2 11958:1 11978:2 11980:1 11992:1 12000:1 12019:1 12026:1 12037:1 12043:1 12050:2 12052:7 12055:1 12063:1 12092:1 12102:1 12116:1 12130:1 12132:1 12138:1 12161:1 12172:1 12186:1 12190:1 12210:1 12228:1 12234:1 12245:1 12251:1 12256:2 12260:2 12274:1 12276:1 12280:4 12289:2 12305:1 12306:1 12328:1 12331:1 12355:1 12357:3 12365:2 12392:1 12397:2 12403:1 12405:1 12415:1 12433:1 12435:3 12437:1 12439:1 12440:1 12451:2 12454:1 12461:3 12466:1 12471:1 12480:1 12481:1 12497:3 12499:1 12513:1 12519:1 12530:1 12532:1 12537:2 12541:1 12556:2 12557:2 12558:2 12559:1 12565:1 12566:3 12572:1 12577:2 12578:1 12580:2 12581:2 12585:3 12591:1 12592:1 12603:1 12610:2 12611:1 12613:1 12617:1 12640:1 12642:3 12645:1 12648:1 12671:1 12672:3 12678:3 12687:1 12688:3 12703:1 12709:1 12710:1 12712:1 12713:1 12720:1 12722:1 12723:1 12726:1 12728:2 12731:3 12739:1 12747:1 12752:1 12754:1 12759:1 12769:1 12772:1 12779:1 12797:1 12808:1 12809:1 12828:4 12836:1 12837:1 12838:1 12857:1 12858:1 12866:1 12876:1 12877:3 12893:1 12914:1 12918:3 12919:1 12922:1 12928:1 12938:1 12962:5 12967:1 12970:1 12977:2 12978:3 12983:1 12986:1 12992:1 12993:2 13001:1 13005:1 13018:1 13019:4 13021:1 13028:1 13041:1 13048:1 13052:1 13056:2 13058:1 13072:1 13075:1 13087:1 13100:1 13102:2 13106:1 13108:1 13121:1 13136:2 13141:2 13142:1 13143:2 13153:1 13156:1 13170:1 13179:1 13189:1 13192:1 13197:1 13200:3 13203:4 13207:6 13208:1 13212:1 13214:1 13219:1 13220:1 13231:2 13236:1 13237:1 13238:6 13239:1 13240:1 13247:1 13250:1 13256:3 13262:1 13266:1 13269:2 13307:1 13338:1 13339:1 13358:2 13367:1 13370:6 13383:1 13386:1 13388:1 13402:1 13426:2 13432:1 13446:1 13448:2 13462:1 13468:1 13481:1 13483:3 13485:3 13491:3 13506:3 13508:1 13512:1 13513:1 13516:1 13517:5 13538:1 13546:1 13556:1 13573:1 13574:1 13582:1 13583:1 13585:1 13586:2 13608:1 13627:6 13628:2 13631:1 13639:1 13642:1 13646:2 13652:3 13655:1 13659:1 13660:2 13662:3 13668:1 13670:2 13672:1 13677:2 13682:1 13684:1 13698:1 13703:2 13710:1 13727:1 13735:2 13753:1 13759:1 13769:1 13783:1 13789:6 13812:1 13817:1 13825:2 13826:1 13832:1 13846:1 13853:1 13855:1 13856:1 13861:1 13866:8 13876:1 13891:1 13899:4 13900:1 13902:2 13904:3 13907:2 13911:1 13912:3 13913:5 13915:1 13918:1 13921:1 13924:1 13926:2 13927:1 13934:2 13939:13 13942:2 13944:2 13947:1 13948:8 13950:2 13956:1 13958:1 13959:1 13981:1 13983:3 13999:1 14028:1 14049:1 14051:8 14055:1 14058:3 14059:1 14060:1 14064:1 14077:1 14090:1 14095:2 14100:6 14105:1 14108:1 14112:2 14140:1 14142:1 14148:1 14151:1 14172:6 14186:1 14188:1 14192:1 14199:2 14205:1 14212:3 14228:1 14238:1 14258:1 14261:1 14265:1 14271:2 14273:1 14278:1 14279:1 14284:1 14286:1 14288:1 14293:1 14298:7 14311:1 14338:1 14344:1 14346:2 14349:1 14353:1 14361:1 14362:1 14363:3 14366:1 14371:1 14372:2 14374:2 14376:1 14379:1 14383:1 14411:2 14413:1 14429:2 14445:1 14446:1 14470:2 14472:1 14479:1 14492:2 14498:1 14519:1 14527:3 14532:1 14535:1 14572:1 14575:3 14599:1 14603:1 14618:2 14624:2 14625:3 14636:1 14637:4 14641:5 14651:7 14652:1 14656:1 14663:1 14664:1 14672:1 14687:1 14694:3 14698:2 14701:2 14705:1 14706:1 14739:2 14747:1 14756:1 14770:5 14775:1 14779:1 14780:1 14781:1 14790:1 14795:1 14796:1 14807:1 14811:7 14815:1 14828:6 14832:1 14845:1 14846:1 14852:1 14853:1 14856:1 14858:1 14868:1 14881:1 14882:1 14884:1 14889:3 14895:1 14916:1 14933:2 14947:1 14957:1 14981:1 14995:1 15003:1 15004:1 15025:4 15040:2 15048:1 15049:1 15051:1 15052:1 15055:2 15064:1 15066:1 15069:1 15086:1 15087:1 15089:1 15096:2 15097:1 15110:4 15113:1 15116:1 15120:1 15122:1 15128:1 15130:1 15135:2 15139:1 15142:1 15149:3 15151:1 15156:2 15164:1 15166:1 15170:4 15171:12 15190:1 15195:1 15210:1 15215:1 15226:1 15230:1 15232:5 15240:1 15241:1 15249:2 15254:1 15256:1 15262:1 15265:2 15267:2 15268:1 15284:1 15287:1 15293:1 15304:2 15305:1 15308:1 15311:1 15331:1 15337:1 15351:1 15354:1 15356:2 15363:1 15370:1 15396:1 15404:3 15413:1 15452:2 15455:1 15457:8 15458:6 15461:1 15466:1 15478:1 15490:3 15493:1 15499:1 15511:7 15513:1 15514:1 15516:1 15521:6 15525:1 15527:1 15532:7 15537:1 15545:2 15549:1 15560:1 15572:2 15580:1 15582:6 15583:2 15584:2 15587:1 15592:1 15596:1 15598:15 15602:1 15607:1 15608:3 15614:1 15616:1 15618:2 15619:1 15631:1 15635:2 15643:4 15651:1 15658:1 15661:1 15678:3 15679:1 15681:1 15686:1 15693:1 15698:1 15703:1 15710:4 15721:3 15727:1 15730:1 15741:1 15753:1 15760:1 15764:1 15773:1 15774:1 15776:1 15797:2 15805:1 15806:3 15820:1 15827:1 15865:2 15873:1 15876:1 15878:1 15882:6 15886:4 15890:2 15922:1 15936:1 15940:1 15943:1 15949:1 15950:1 15957:1 15960:1 15962:3 15965:1 15966:3 15969:1 15983:2 15990:1 16001:1 16019:2 16020:2 16023:1 16029:1 16032:1 16036:1 16057:2 16060:2 16065:1 16067:1 16071:1 16073:1 16101:1 16109:1 16115:1 16122:2 16123:3 16125:1 16132:1 16136:1 16145:2 16147:1 16154:1 16157:2 16175:4 16181:1 16185:1 16202:1 16232:1 16274:1 16278:1 16297:1 16299:3 16301:1 16305:3 16308:1 16309:1 16314:1 16319:1 16329:3 16333:2 16345:2 16350:1 16364:1 16369:2 16374:1 16379:1 16395:1 16399:1 16403:1 16406:1 16408:1 16425:1 16462:1 16475:1 16509:1 16535:3 16541:1 16558:1 16560:3 16562:1 16575:1 16579:2 16583:1 16587:1 16591:1 16592:2 16594:1 16624:1 16630:1 16652:1 16662:1 16668:1 16670:1 16679:1 16687:1 16690:1 16693:1 16705:1 16706:1 16707:1 16746:2 16753:1 16756:3 16763:3 16766:1 16776:1 16785:1 16792:1 16793:1 16807:1 16810:2 16819:1 16820:1 16823:1 16825:1 16826:2 16827:1 16842:1 16853:1 16875:1 16880:1 16886:5 16891:1 16898:1 16900:1 16902:2 16905:2 16915:1 16917:3 16919:1 16922:2 16940:1 16948:1 16951:1 16953:1 16957:1 16961:4 16962:2 16972:1 16978:2 16981:1 16983:1 16993:2 16999:1 17000:3 17002:3 17003:1 17006:1 17008:1 17009:2 17021:2 17024:2 17029:1 17030:2 17031:4 17032:1 17034:2 17043:1 17050:1 17054:3 17058:1 17060:1 17067:1 17071:2 17076:2 17088:1 17093:1 17097:3 17108:1 17113:1 17115:2 17119:2 17120:3 17125:1 17137:2 17139:2 17143:2 17154:1 17164:2 17169:1 17175:1 17190:1 17196:1 17199:1 17202:4 17204:2 17207:1 17208:4 17209:2 17220:1 17227:1 17235:1 17250:1 17260:1 17267:1 17278:1 17282:1 17304:1 17311:1 17317:3 17318:1 17319:1 17336:1 17340:1 17341:1 17345:1 17349:1 17380:1 17382:1 17383:1 17384:1 17399:4 17404:1 17405:1 17414:1 17415:1 17418:1 17422:1 17427:2 17432:1 17434:11 17455:1 17468:2 17470:1 17481:1 17486:1 17511:1 17513:1 17533:1 17540:2 17561:1 17565:1 17570:1 17572:1 17582:1 17599:1 17602:2 17603:1 17604:3 17615:1 17616:1 17629:2 17637:1 17640:4 17662:1 17667:1 17675:1 17695:1 17713:2 17718:1 17733:1 17750:1 17753:1 17757:1 17781:6 17784:2 17789:1 17791:1 17792:2 17793:1 17796:1 17820:1 17826:1 17827:1 17828:1 17833:1 17835:1 17844:7 17861:2 17873:1 17878:2 17891:3 17894:1 17897:31 17902:2 17933:1 17935:1 17936:1 17947:3 17960:2 17961:1 17967:2 17974:2 17978:1 18044:2 18053:1 18056:1 18069:1 18073:4 18080:3 18084:1 18098:1 18106:1 18107:2 18115:2 18117:2 18119:1 18133:1 18141:1 18145:1 18151:1 18153:1 18161:1 18177:1 18180:1 18189:1 18190:1 18196:3 18217:1 18219:1 18232:1 18236:2 18255:6 18257:4 18258:1 18259:2 18261:1 18262:1 18270:5 18278:1 18281:1 18282:1 18283:1 18288:2 18294:1 18295:1 18296:1 18303:1 18305:1 18306:1 18309:1 18311:2 18313:1 18325:1 18332:1 18358:1 18367:1 18370:2 18372:1 18373:1 18392:1 18394:1 18401:1 18402:1 18404:1 18412:2 18414:1 18415:2 18417:4 18426:1 18434:1 18435:1 18437:1 18449:1 18460:1 18461:1 18463:1 18465:1 18468:1 18474:1 18482:1 18489:7 18498:1 18499:9 18505:1 18521:1 18522:1 18524:2 18546:1 18549:1 18550:1 18558:1 18559:1 18562:3 18575:1 18576:1 18577:1 18580:4 18582:1 18583:1 18584:1 18608:1 18616:3 18628:1 18645:2 18652:1 18656:5 18666:2 18670:5 18681:1 18687:1 18718:1 18719:1 18728:1 18730:1 18762:1 18763:12 18785:3 18794:1 18799:1 18830:6 18835:2 18844:1 18848:1 18866:1 18881:1 18882:1 18891:2 18899:1 18909:1 18913:1 18916:4 18917:1 18927:2 18935:1 18937:1 18942:1 18947:1 18957:1 18958:4 18965:1 18968:1 18976:1 18996:1 19001:1 19005:5 19015:2 19022:1 19045:1 19060:1 19067:1 19082:1 19086:1 19095:1 19112:1 19134:1 19154:1 19159:2 19168:1 19175:1 19176:4 19182:2 19185:1 19188:1 19190:1 19205:1 19206:1 19208:1 19210:1 19212:1 19217:3 19221:3 19231:1 19237:1 19242:2 19244:3 19260:2 19262:1 19263:1 19266:1 19268:1 19280:1 19295:1 19302:1 19306:1 19322:1 19324:1 19339:1 19340:1 19346:2 19347:2 19361:2 19383:1 19394:1 19397:1 19405:1 19414:1 19426:2 19429:2 19430:1 19431:1 19435:1 19467:1 19469:1 19484:2 19485:1 19489:2 19490:1 19495:2 19496:1 19498:1 19502:1 19528:1 19542:1 19543:3 19561:1 19569:2 19572:1 19584:3 19588:3 19594:1 19602:3 19609:1 19615:2 19618:1 19619:1 19629:1 19633:1 19635:1 19639:1 19644:1 19654:1 19655:1 19657:1 19660:1 19663:6 19664:1 19669:2 19670:1 19672:1 19674:1 19681:1 19689:1 19700:2 19706:1 19733:1 19734:1 19737:1 19738:1 19748:1 19760:1 19768:1 19772:10 19776:2 19779:1 19784:1 19799:1 19823:1 19828:1 19857:3 19861:2
5 1:1 2:1 5:1 28:1 33:1 35:3 65:1 68:3 70:1 71:1 77:1 103:1 105:3 131:1 145:1 160:3 164:1 167:1 178:1 185:3 196:1 200:1 215:1 220:1 221:1 227:1 233:2 246:6 261:1 272:2 274:1 276:1 278:1 288:1 289:1 292:1 297:1 312:2 316:1 348:5 349:2 352:1 353:1 361:1 365:1 366:1 382:2 390:1 393:2 395:1 399:3 413:1 417:1 418:3 419:1 422:1 434:1 453:1 461:3 477:1 480:2 483:1 485:1 490:1 495:2 510:5 511:1 525:1 530:1 532:1 540:1 543:1 547:1 559:1 565:1 573:2 574:4 576:1 578:1 592:1 595:1 599:1 600:1 605:1 615:2 625:1 634:2 639:1 641:1 661:4 669:1 699:2 714:2 720:1 738:1 749:6 753:1 754:1 763:1 787:1 793:1 797:1 798:1 811:1 825:1 826:3 833:4 834:1 849:2 860:1 861:1 863:1 864:1 865:2 880:9 881:1 901:1 909:1 918:1 920:1 931:2 942:1 943:2 950:2 956:1 960:1 971:4 972:1 980:4 1007:2 1014:1 1015:1 1017:1 1026:1 1028:1 1032:2 1045:1 1074:1 1083:2 1084:1 1104:2 1108:2 1110:1 1134:1 1138:1 1140:1 1145:3 1157:1 1176:1 1177:2 1185:1 1194:2 1213:4 1214:3 1231:1 1232:5 1242:1 1243:1 1252:1 1264:3 1274:7 1276:1 1279:3 1286:1 1288:4 1310:5 1312:2 1320:1 1323:1 1324:3 1328:3 1332:1 1335:1 1336:2 1337:3 1340:5 1355:2 1357:3 1362:1 1368:1 1380:4 1385:1 1388:2 1392:1 1408:1 1415:1 1421:1 1424:2 1427:4 1434:4 1458:1 1463:6 1486:1 1493:1 1494:1 1498:1 1504:5 1509:1 1512:1 1519:2 1566:1 1576:2 1578:1 1616:1 1617:1 1622:2 1628:1 1635:1 1637:1 1643:1 1649:3 1650:1 1653:3 1654:5 1657:5 1658:2 1659:3 1666:4 1669:2 1670:4 1675:2 1677:2 1679:1 1680:1 1681:1 1682:7 1683:2 1685:1 1692:1 1694:1 1700:1 1714:1 1717:1 1721:1 1723:2 1725:1 1732:1 1734:3 1735:1 1742:1 1756:2 1759:1 1765:1 1766:1 1767:1 1769:1 1777:1 1786:1 1807:1 1826:1 1858:1 1859:1 1862:2 1881:1 1884:1 1894:1 1898:1 1901:1 1902:1 1910:3 1911:1 1920:1 1921:1 1923:4 1939:4 1942:1 1952:2 1963:3 1968:1 1970:1 1973:1 1975:1 1978:1 1980:1 1985:1 2012:1 2030:1 2033:1 2035:1 2045:1 2050:3 2060:1 2066:1 2067:1 2068:1 2074:1 2078:2 2088:1 2096:1 2097:10 2099:1 2108:1 2112:11 2123:1 2129:1 2133:1 2138:1 2139:3 2160:1 2175:1 2178:2 2180:1 2185:1 2195:1 2207:1 2218:1 2220:3 2230:1 2231:1 2238:1 2253:1 2255:5 2269:1 2280:1 2298:1 2302:1 2332:1 2335:1 2337:1 2344:1 2345:1 2356:1 2363:1 2374:2 2383:1 2384:2 2394:2 2397:1 2405:1 2433:1 2435:1 2440:1 2450:1 2453:2 2471:15 2479:1 2490:1 2494:1 2511:1 2521:2 2532:1 2535:1 2541:1 2544:1 2558:1 2586:1 2590:1 2594:1 2595:1 2609:2 2622:1 2623:3 2624:1 2645:2 2647:2 2652:1 2656:2 2661:1 2663:2 2666:2 2673:1 2674:1 2695:1 2699:1 2712:1 2713:2 2716:3 2717:3 2723:1 2735:2 2742:2 2746:1 2748:1 2750:1 2753:1 2757:2 2764:1 2791:1 2794:1 2799:1 2801:1 2812:2 2815:2 2816:1 2823:8 2850:2 2870:1 2876:1 2882:4 2891:1 2896:3 2911:1 2913:2 2916:1 2917:3 2918:1 2922:1 2923:1 2928:1 2929:2 2939:1 2947:1 2951:1 2954:1 2955:1 2957:11 2972:4 2973:1 2975:3 2976:7 2977:2 2978:3 2979:1 2982:3 2984:3 2990:1 2992:4 2996:1 2999:1 3001:1 3002:1 3006:2 3007:2 3011:1 3014:1 3015:1 3042:1 3051:1 3062:1 3065:1 3082:1 3087:3 3090:1 3095:1 3102:3 3107:1 3117:1 3128:1 3132:1 3137:1 3139:1 3143:1 3148:1 3153:1 3165:3 3169:1 3178:1 3179:1 3180:1 3190:1 3192:2 3194:1 3196:1 3197:2 3222:1 3237:1 3239:1 3243:1 3253:2 3258:2 3263:1 3284:1 3286:1 3287:1 3289:1 3293:1 3323:2 3325:1 3326:1 3355:1 3365:3 3369:1 3371:1 3407:1 3412:1 3429:3 3430:1 3446:1 3467:2 3470:1 3472:1 3475:1 3487:1 3499:1 3500:1 3513:4 3516:4 3521:6 3532:1 3540:1 3547:1 3554:1 3572:1 3580:1 3587:1 3590:1 3591:3 3594:3 3613:1 3619:1 3621:1 3627:1 3628:2 3640:1 3643:1 3644:1 3650:1 3668:3 3682:3 3687:1 3692:2 3693:2 3694:1 3695:2 3700:1 3704:1 3705:1 3708:2 3711:1 3719:1 3732:3 3735:1 3745:1 3759:1 3761:1 3765:1 3778:2 3794:1 3808:1 3830:1 3838:1 3854:3 3855:19 3857:1 3861:1 3866:1 3868:9 3876:1 3882:2 3899:2 3910:1 3914:18 3926:1 3932:1 3935:1 3941:1 3952:1 3956:1 3958:2 3959:1 3961:2 3965:1 3969:1 3977:3 3984:1 4049:1 4050:1 4052:2 4063:1 4075:1 4095:1 4102:1 4103:1 4115:1 4134:1 4135:1 4136:2 4142:4 4144:1 4159:1 4161:2 4177:1 4185:1 4202:1 4210:3 4214:2 4228:1 4233:1 4239:1 4246:3 4256:1 4258:2 4259:1 4279:5 4282:4 4299:1 4300:2 4310:1 4316:1 4345:1 4362:1 4363:1 4374:1 4380:3 4385:1 4387:1 4401:1 4414:1 4415:1 4419:6 4423:1 4430:1 4446:3 4455:2 4456:1 4459:1 4462:2 4495:1 4532:1 4537:1 4549:1 4558:2 4572:4 4578:3 4585:1 4591:3 4595:1 4596:4 4598:4 4599:3 4601:3 4602:6 4603:4 4605:1 4606:1 4607:3 4609:1 4610:1 4613:1 4630:2 4633:1 4646:1 4648:1 4650:4 4656:3 4660:4 4671:2 4677:1 4696:1 4714:2 4721:1 4725:7 4726:1 4727:19 4731:2 4735:3 4739:1 4744:1 4745:1 4752:2 4760:1 4761:2 4766:7 4777:3 4782:1 4783:1 4793:1 4800:1 4809:1 4822:2 4828:7 4830:2 4832:1 4836:2 4844:2 4854:1 4859:1 4871:1 4883:1 4885:1 4890:1 4891:3 4896:6 4900:1 4901:1 4906:1 4909:1 4934:1 4942:1 4944:1 4948:1 4952:2 4954:1 4983:1 5002:1 5004:1 5012:1 5014:1 5017:1 5037:2 5039:1 5058:1 5076:1 5079:1 5099:2 5107:1 5110:1 5112:1 5116:1 5119:1 5121:2 5125:1 5141:1 5145:2 5147:1 5153:2498 5155:1 5158:2 5159:1 5168:3 5171:1 5187:1 5188:1 5191:1 5195:1 5196:1 5212:6 5213:2 5230:1 5232:1 5233:1 5237:1 5250:3 5259:1 5260:1 5280:2 5288:1 5293:1 5297:1 5306:1 5311:4 5318:1 5334:2 5338:2 5345:2 5358:1 5380:2 5400:1 5404:2 5414:1 5426:1 5427:1 5433:1 5441:1 5444:3 5447:1 5455:1 5482:1 5483:1 5487:1 5494:1 5497:2 5517:1 5526:1 5554:1 5560:1 5562:1 5573:2 5592:1 5612:1 5613:1 5615:1 5616:3 5619:2 5620:1 5643:1 5645:1 5658:1 5662:1 5670:2 5683:5 5690:1 5695:1 5698:1 5704:1 5741:1 5754:1 5755:1 5757:1 5776:1 5809:1 5825:3 5830:2 5840:1 5845:1 5859:1 5861:3 5864:1 5867:1 5878:1 5909:2 5916:1 5921:5 5930:3 5931:1 5934:4 5952:1 5956:1 5959:1 5967:4 5973:1 5981:1 6003:1 6010:1 6013:4 6016:2 6020:10 6025:1 6026:1 6035:3 6040:1 6053:1 6054:2 6064:1 6069:1 6087:1 6095:1 6115:1 6118:1 6120:1 6133:1 6135:1 6139:1 6142:5 6155:3 6178:2 6189:1 6192:1 6212:3 6219:2 6221:2 6240:1 6244:1 6262:3 6273:1 6281:1 6301:2 6303:1 6311:1 6317:1 6322:1 6345:1 6357:1 6375:4 6377:1 6384:1 6387:1 6392:13 6395:1 6400:1 6405:2 6410:1 6434:2 6440:1 6444:1 6459:2 6460:1 6468:1 6483:4 6485:1 6533:2 6536:1 6538:8 6545:3 6551:1 6563:1 6564:2 6571:2 6572:4 6573:1 6576:2 6581:5 6582:2 6584:1 6586:1 6587:4 6590:2 6594:7 6597:1 6602:1 6604:1 6605:2 6606:1 6607:2 6608:1 6617:1 6637:4 6643:1 6649:1 6652:10 6658:1 6664:1 6665:1 6672:1 6690:1 6691:2 6693:1 6695:1 6707:2 6711:1 6743:3 6744:1 6749:1 6758:1 6764:2 6774:2 6797:1 6813:1 6828:7 6830:1 6839:1 6844:1 6845:3 6860:15 6866:1 6870:1 6877:3 6883:23 6886:4 6892:1 6915:1 6922:1 6947:4 6959:1 6967:2 6974:2 6978:1 6983:1 6990:2 6996:1 6998:1 6999:1 7001:1 7007:1 7013:1 7021:5 7034:1 7037:1 7043:1 7050:1 7060:1 7072:1 7080:1 7091:1 7099:1 7114:1 7127:1 7134:5 7140:1 7145:2 7153:1 7155:1 7169:1 7181:1 7183:1 7192:1 7198:1 7201:1 7204:1 7218:1 7220:1 7221:1 7232:5 7244:1 7247:76 7250:1 7256:1 7263:2 7270:1 7271:1 7280:1 7284:1 7291:5 7312:1 7329:1 7353:1 7357:1 7361:1 7372:1 7384:1 7387:4 7390:1 7409:2 7420:1 7422:10 7434:2 7442:2 7443:1 7444:15 7450:3 7453:1 7454:2 7457:1 7459:1 7473:1 7478:1 7487:1 7494:1 7504:3 7525:3 7540:2 7543:1 7550:5 7554:1 7556:2 7558:1 7560:2 7563:1 7564:2 7568:1 7572:2 7574:1 7577:1 7578:1 7579:2 7582:5 7583:5 7584:1 7609:1 7641:1 7642:1 7647:2 7652:1 7656:1 7668:1 7670:1 7678:1 7687:1 7692:1 7700:1 7701:1 7707:1 7710:2 7711:1 7731:4 7737:1 7742:1 7743:1 7769:1 7770:3 7783:1 7803:1 7808:1 7835:2 7838:1 7841:2 7843:2 7849:1 7868:1 7874:1 7878:1 7880:1 7900:1 7912:1 7913:1 7915:1 7923:1 7924:1 7930:1 7940:1 7952:1 7957:3 7988:2 7998:1 8000:1 8009:1 8012:3 8013:3 8017:1 8023:2 8042:1 8050:1 8055:1 8056:2 8057:1 8058:4 8065:2 8072:1 8075:2 8080:2 8087:1 8094:3 8096:1 8098:1 8100:1 8105:3 8113:1 8116:1 8119:2 8128:2 8135:5 8137:1 8138:4 8146:1 8152:1 8163:1 8167:1 8168:1 8189:1 8192:3 8194:1 8196:5 8199:2 8200:1 8211:1 8231:1 8245:1 8247:6 8248:1 8253:2 8263:1 8267:1 8272:1 8280:2 8296:1 8319:1 8324:1 8333:1 8339:1 8341:1 8346:1 8347:1 8358:2 8360:1 8368:1 8371:1 8382:1 8383:4 8387:6 8390:1 8391:1 8399:2 8411:1 8414:1 8415:2 8421:3 8431:1 8434:1 8437:5 8441:1 8456:1 8460:1 8491:1 8496:1 8507:1 8513:1 8520:3 8522:2 8524:1 8532:1 8533:2 8539:1 8542:2 8546:2 8552:8 8554:1 8556:1 8559:1 8573:1 8576:1 8606:1 8616:5 8623:1 8626:2 8648:2 8651:1 8664:1 8669:1 8678:1 8712:1 8732:2 8742:1 8743:1 8744:1 8755:1 8770:1 8772:1 8776:1 8779:2 8780:2 8785:3 8786:2 8794:1 8797:3 8809:4 8821:1 8832:1 8840:1 8843:1 8848:1 8858:1 8859:1 8860:1 8872:1 8886:1 8899:1 8901:2 8909:1 8919:1 8923:1 8926:1 8928:2 8937:1 8953:1 8959:2 8967:1 8968:1 8971:2 8974:1 8980:1 8983:1 8986:1 8990:1 8993:1 8994:1 8996:1 9006:3 9019:1 9025:2 9026:2 9051:1 9067:2 9072:1 9084:1 9085:1 9090:1 9100:2 9103:2 9107:1 9113:1 9114:1 9117:1 9122:4 9124:1 9125:1 9129:2 9143:1 9159:1 9162:1 9165:1 9177:1 9180:2 9183:1 9185:1 9189:1 9191:2 9204:1 9215:1 9228:1 9234:1 9237:1 9238:1 9251:7 9252:4 9253:1 9260:25 9261:2 9268:1 9275:1 9279:1 9283:1 9295:8 9303:1 9308:1 9309:1 9329:1 9331:1 9333:1 9337:1 9347:1 9357:1 9358:1 9360:2 9370:1 9378:1 9380:1 9385:1 9388:5 9394:1 9404:1 9406:10 9429:1 9432:1 9443:2 9444:5 9449:1 9456:2 9461:1 9474:1 9478:2 9486:1 9492:1 9499:3 9508:3 9512:2 9522:1 9525:1 9534:2 9548:3 9560:1 9569:1 9591:1 9594:6 9596:1 9597:1 9605:2 9606:1 9607:1 9612:1 9613:1 9624:12 9625:1 9626:1 9627:3 9632:2 9641:2 9655:1 9657:1 9659:1 9675:9 9683:2 9693:1 9698:1 9704:2 9712:1 9719:1 9721:7 9754:1 9759:1 9780:1 9786:1 9787:1 9788:1 9795:2 9798:2 9813:2 9815:1 9816:1 9817:1 9818:1 9822:1 9826:1 9829:1 9842:1 9859:1 9865:3 9870:2 9879:2 9881:1 9884:1 9886:1 9888:1 9890:1 9904:1 9910:3 9916:1 9917:1 9918:1 9920:1 9924:3 9926:1 9929:1 9940:1 9943:1 9948:1 9952:1 9959:2 9963:1 9968:1 9980:2 9983:1 9992:2 10001:1 10007:1 10009:2 10010:1 10013:2 10017:1 10039:1 10044:2 10045:1 10049:1 10057:1 10058:1 10059:4 10068:2 10070:1 10075:1 10092:1 10098:1 10105:3 10111:5 10115:1 10124:2 10125:2 10127:1 10129:7 10130:1 10160:1 10163:1 10169:1 10175:1 10193:5 10200:2 10204:3 10212:2 10215:1 10223:1 10230:1 10243:1 10254:1 10262:1 10263:2 10271:2 10272:4 10280:1 10283:1 10286:1 10297:1 10298:1 10301:1 10306:1 10315:1 10318:1 10334:1 10335:1 10349:4 10356:1 10376:3 10377:2 10378:1 10380:1 10398:2 10399:3 10408:1 10409:4 10415:1 10442:4 10459:37 10463:1 10468:3 10474:1 10479:20 10484:11 10485:1 10494:1 10504:1 10510:1 10515:1 10551:1 10554:4 10564:1 10567:2 10570:1 10573:7 10595:2 10632:2 10637:1 10639:4 10640:1 10642:1 10649:1 10654:1 10683:1 10685:2 10709:1 10720:1 10721:7 10723:1 10725:2 10740:1 10742:2 10748:1 10749:1 10756:15 10764:1 10769:1 10773:1 10777:1 10787:1 10790:2 10797:1 10820:4 10822:1 10824:1 10845:1 10857:1 10865:2 10868:1 10877:1 10886:1 10888:1 10892:2 10922:1 10925:1 10930:1 10934:1 10945:1 10948:1 10950:1 10957:1 10963:3 10968:1 10972:1 10975:1 10978:2 10982:1 10990:1 10996:1 11013:1 11017:1 11032:3 11042:1 11046:2 11050:2 11055:2 11058:47 11075:1 11081:2 11082:1 11085:1 11088:1 11099:1 11117:1 11123:1 11126:1 11132:1 11140:1 11159:1 11164:1 11175:1 11180:2 11195:1 11197:15 11200:9 11203:1 11207:1 11272:2 11273:2 11276:1 11280:2 11281:1 11287:1 11289:1 11310:2 11311:1 11313:1 11319:1 11321:7 11326:2 11328:1 11330:2 11333:1 11344:1 11357:1 11362:2 11376:3 11379:1 11391:1 11403:3 11405:2 11407:1 11408:1 11415:2 11416:2 11417:1 11420:3 11433:1 11439:1 11446:4 11448:1 11456:1 11457:1 11458:1 11459:2 11473:2 11496:1 11520:1 11523:2 11527:1 11540:1 11557:1 11559:1 11563:2 11565:1 11568:4 11573:4 11588:1 11599:1 11600:1 11601:1 11607:1 11608:1 11623:1 11634:1 11636:1 11637:1 11639:1 11641:3 11643:2 11646:1 11649:1 11652:1 11654:1 11656:3 11658:3 11664:1 11667:1 11668:1 11669:2 11678:1 11679:3 11684:2 11687:3 11689:2 11698:2 11702:4 11715:1 11720:1 11721:1 11724:1 11730:9 11732:1 11735:2 11736:3 11739:1 11742:1 11761:1 11765:1 11770:1 11773:1 11782:2 11788:1 11800:1 11829:2 11831:3 11835:1 11842:1 11859:1 11864:1 11866:1 11877:2 11881:1 11885:2 11888:1 11895:1 11898:1 11914:1 11921:1 11937:1 11951:2 11958:1 11978:2 11980:1 11992:1 12000:1 12019:1 12026:1 12037:1 12043:1 12050:2 12052:7 12055:1 12063:1 12092:1 12102:1 12116:1 12130:1 12132:1 12138:1 12161:1 12172:1 12186:1 12190:1 12210:1 12228:1 12234:1 12245:1 12251:1 12256:2 12260:2 12274:1 12276:1 12280:4 12289:2 12305:1 12306:1 12328:1 12331:1 12348:1 12355:1 12357:3 12365:2 12392:1 12397:2 12403:1 12405:1 12415:1 12433:1 12435:3 12437:1 12439:1 12440:1 12451:2 12454:1 12461:3 12466:1 12471:1 12480:1 12481:1 12497:3 12499:1 12513:1 12519:1 12530:1 12532:1 12537:2 12541:1 12556:2 12557:2 12558:2 12559:1 12565:1 12566:3 12572:1 12577:2 12578:1 12580:2 12581:2 12585:3 12591:1 12592:1 12603:1 12610:2 12611:1 12613:1 12617:1 12640:1 12642:3 12645:1 12648:1 12671:1 12672:3 12678:3 12687:1 12688:3 12699:1 12703:1 12709:1 12710:1 12712:1 12713:1 12720:1 12722:1 12723:1 12726:1 12728:2 12731:4 12739:1 12747:1 12752:1 12754:1 12759:1 12769:1 12772:2 12779:1 12797:1 12808:1 12809:1 12825:1 12828:4 12836:2 12837:1 12838:1 12857:1 12858:1 12866:1 12876:1 12877:3 12893:1 12914:1 12918:3 12919:1 12922:1 12928:1 12938:1 12962:5 12967:1 12970:1 12977:2 12978:3 12983:1 12986:1 12992:1 12993:2 13001:1 13005:1 13018:1 13019:4 13021:1 13028:1 13041:1 13048:1 13052:1 13056:2 13058:1 13072:1 13075:1 13087:1 13100:1 13102:2 13106:1 13108:1 13121:1 13136:2 13141:3 13142:1 13143:2 13153:1 13156:1 13170:1 13179:1 13189:1 13192:1 13197:1 13200:4 13203:4 13207:7 13208:1 13212:1 13214:1 13219:1 13220:1 13231:2 13236:1 13237:1 13238:6 13239:1 13240:1 13247:1 13250:1 13256:3 13262:1 13266:1 13269:2 13307:1 13338:1 13339:1 13358:2 13367:1 13370:6 13383:1 13386:1 13388:1 13402:1 13426:3 13432:1 13446:2 13448:2 13462:1 13468:1 13481:1 13483:3 13485:3 13491:3 13506:3 13508:1 13512:1 13513:1 13516:1 13517:5 13538:1 13546:1 13556:1 13567:1 13573:1 13574:1 13582:1 13583:1 13585:1 13586:2 13608:1 13627:6 13628:2 13631:1 13639:1 13642:1 13646:2 13652:3 13655:1 13659:1 13660:2 13662:4 13668:1 13670:2 13672:1 13677:2 13682:1 13684:1 13698:1 13703:2 13710:1 13727:1 13735:2 13753:1 13759:1 13769:1 13783:1 13789:6 13812:1 13817:1 13825:2 13826:1 13832:1 13846:1 13853:1 13855:1 13856:1 13861:1 13866:8 13876:1 13891:1 13899:4 13900:1 13902:2 13904:3 13907:2 13911:1 13912:3 13913:5 13915:1 13918:1 13921:1 13922:1 13924:1 13926:2 13927:1 13934:2 13939:13 13942:2 13944:2 13947:1 13948:8 13950:2 13956:1 13958:1 13959:1 13981:1 13983:3 13999:1 14028:1 14049:1 14051:8 14055:1 14058:4 14059:1 14060:1 14064:1 14077:1 14090:1 14095:2 14100:6 14105:1 14108:1 14112:2 14113:1 14140:1 14142:1 14148:1 14151:1 14172:6 14186:1 14188:1 14192:1 14199:2 14205:1 14212:3 14228:1 14238:1 14258:1 14261:1 14265:1 14271:2 14273:1 14278:1 14279:1 14284:1 14286:1 14288:1 14293:1 14298:7 14311:1 14338:1 14344:1 14346:2 14349:1 14353:1 14361:1 14362:1 14363:3 14366:1 14371:1 14372:2 14374:2 14376:1 14379:1 14383:1 14411:2 14413:1 14429:2 14445:1 14446:1 14470:2 14472:1 14479:1 14492:2 14498:1 14519:1 14527:3 14532:1 14535:1 14572:1 14575:3 14599:1 14603:1 14618:2 14624:2 14625:3 14636:1 14637:4 14641:5 14651:8 14652:1 14656:1 14663:1 14664:1 14672:1 14687:1 14694:3 14698:3 14701:2 14705:1 14706:1 14736:1 14739:2 14747:2 14756:1 14770:5 14775:1 14779:1 14780:1 14781:1 14790:1 14795:1 14796:1 14807:1 14811:7 14815:1 14828:6 14832:1 14845:1 14846:1 14852:1 14853:1 14856:1 14858:1 14868:1 14881:1 14882:1 14884:1 14889:3 14895:1 14916:1 14933:2 14947:1 14957:1 14981:1 14995:1 15003:1 15004:1 15025:4 15040:2 15048:1 15049:1 15051:1 15052:1 15055:2 15064:1 15066:1 15069:1 15086:1 15087:1 15089:1 15096:2 15097:1 15110:5 15113:1 15116:1 15120:1 15122:1 15128:1 15130:1 15135:2 15139:1 15142:1 15149:3 15151:1 15156:2 15163:1 15164:1 15166:1 15170:4 15171:12 15190:1 15195:1 15210:1 15215:1 15226:1 15230:1 15232:5 15240:1 15241:1 15249:2 15254:1 15256:1 15262:1 15265:2 15267:2 15268:1 15284:1 15287:1 15293:1 15294:1 15304:2 15305:1 15308:1 15311:1 15331:1 15337:1 15351:1 15354:1 15356:2 15363:1 15370:1 15396:1 15404:4 15411:1 15413:1 15452:2 15455:1 15457:8 15458:6 15461:1 15466:1 15478:1 15490:3 15493:1 15499:1 15511:8 15513:1 15514:1 15516:1 15521:6 15525:1 15527:1 15532:7 15537:1 15545:3 15549:1 15560:1 15572:2 15574:1 15580:1 15582:6 15583:2 15584:2 15587:1 15592:1 15596:1 15598:15 15602:1 15607:1 15608:3 15614:1 15616:1 15618:2 15619:1 15631:1 15635:2 15643:4 15651:1 15658:1 15661:1 15678:3 15679:1 15681:1 15686:1 15693:1 15698:1 15703:1 15710:4 15721:3 15727:1 15730:2 15741:1 15753:1 15760:1 15764:1 15773:1 15774:1 15776:1 15797:2 15805:1 15806:3 15820:1 15827:1 15865:2 15868:1 15873:1 15876:1 15878:1 15882:7 15886:4 15890:2 15922:1 15936:1 15940:1 15943:1 15949:1 15950:1 15957:1 15960:1 15962:3 15965:1 15966:3 15969:1 15983:2 15990:1 16001:1 16019:2 16020:2 16023:1 16029:1 16032:1 16036:1 16057:2 16060:2 16065:1 16067:1 16071:1 16073:1 16101:1 16109:1 16115:1 16122:2 16123:3 16125:1 16132:1 16136:1 16145:2 16147:1 16154:1 16157:2 16175:4 16178:1 16181:1 16185:1 16202:1 16232:1 16274:1 16278:1 16297:1 16299:3 16301:1 16305:3 16308:1 16309:1 16314:1 16319:1 16329:3 16333:2 16345:2 16350:1 16364:1 16369:2 16374:1 16379:1 16395:1 16399:1 16403:1 16406:1 16408:1 16425:1 16462:1 16475:1 16509:1 16535:3 16541:1 16558:1 16560:3 16562:1 16575:1 16579:2 16583:1 16587:1 16591:1 16592:2 16594:1 16624:1 16630:1 16652:2 16662:1 16668:1 16670:1 16679:2 16687:1 16690:1 16693:1 16705:1 16706:1 16707:1 16746:2 16753:1 16755:1 16756:3 16763:3 16766:1 16776:1 16785:1 16792:1 16793:1 16807:1 16810:2 16819:1 16820:1 16823:1 16825:1 16826:2 16827:1 16842:1 16853:1 16875:1 16880:1 16886:5 16891:1 16898:1 16900:1 16902:2 16905:2 16915:1 16917:3 16919:1 16922:2 16940:1 16948:1 16951:1 16953:1 16957:1 16961:5 16962:2 16972:1 16978:2 16981:1 16983:1 16993:2 16999:2 17000:3 17002:3 17003:1 17006:1 17008:1 17009:2 17021:2 17024:2 17029:1 17030:2 17031:4 17032:1 17034:3 17043:1 17050:1 17054:3 17058:1 17060:1 17067:1 17071:2 17076:2 17088:1 17093:1 17097:3 17108:1 17113:1 17115:2 17119:2 17120:3 17125:1 17137:2 17139:2 17143:2 17154:1 17164:2 17169:1 17175:1 17190:1 17196:1 17199:1 17202:4 17204:2 17207:1 17208:4 17209:2 17220:1 17227:1 17235:1 17250:1 17260:1 17267:1 17278:1 17282:1 17304:1 17311:1 17317:3 17318:1 17319:1 17336:1 17340:1 17341:1 17345:1 17349:1 17380:1 17382:1 17383:1 17384:1 17399:4 17404:1 17405:1 17414:1 17415:1 17418:1 17422:1 17427:2 17432:1 17434:11 17455:1 17468:2 17470:1 17481:1 17486:1 17511:1 17513:1 17533:1 17540:2 17561:1 17565:1 17570:1 17572:1 17582:1 17599:1 17602:2 17603:2 17604:3 17615:1 17616:1 17629:2 17637:1 17640:5 17662:1 17667:1 17675:1 17695:1 17713:2 17718:1 17733:1 17750:1 17753:1 17754:1 17757:1 17781:6 17784:3 17789:1 17791:1 17792:2 17793:1 17796:1 17820:1 17826:1 17827:1 17828:1 17833:1 17835:1 17844:7 17861:2 17873:1 17878:2 17891:3 17894:1 17897:32 17902:2 17933:1 17935:1 17936:1 17947:4 17960:2 17961:1 17967:2 17974:2 17978:1 18044:2 18053:1 18056:1 18069:1 18073:4 18080:3 18084:1 18098:1 18106:1 18107:2 18115:2 18117:2 18119:1 18133:1 18141:1 18144:1 18145:1 18151:1 18153:1 18161:1 18177:1 18180:1 18189:1 18190:1 18196:3 18217:1 18219:1 18232:1 18236:2 18255:6 18257:4 18258:1 18259:2 18261:1 18262:1 18270:6 18278:1 18281:1 18282:1 18283:1 18288:2 18294:1 18295:1 18296:1 18303:1 18305:1 18306:1 18309:1 18311:2 18313:1 18325:1 18332:1 18358:1 18367:1 18370:2 18372:1 18373:1 18392:1 18394:1 18401:1 18402:1 18404:1 18412:2 18414:1 18415:2 18417:5 18426:1 18434:1 18435:1 18437:1 18449:1 18460:1 18461:1 18463:1 18465:1 18468:1 18474:1 18482:1 18489:7 18498:1 18499:10 18505:1 18521:1 18522:1 18524:2 18546:1 18549:1 18550:1 18558:1 18559:1 18562:4 18575:1 18576:1 18577:1 18580:4 18582:1 18583:1 18584:1 18606:1 18608:1 18616:3 18628:1 18645:2 18652:1 18656:5 18666:2 18670:5 18681:1 18687:1 18718:1 18719:1 18728:1 18730:1 18762:1 18763:12 18785:3 18794:1 18799:1 18830:7 18835:2 18844:1 18848:1 18866:1 18881:2 18882:1 18891:2 18899:1 18909:1 18913:1 18916:4 18917:1 18927:2 18935:1 18937:1 18942:1 18947:1 18957:1 18958:4 18965:1 18968:1 18976:1 18996:1 19001:1 19005:5 19015:2 19022:1 19045:1 19060:1 19067:1 19082:1 19086:1 19095:1 19112:1 19134:1 19154:1 19159:2 19161:2 19168:1 19175:1 19176:4 19182:2 19185:1 19188:2 19190:1 19205:1 19206:1 19208:1 19210:1 19212:1 19217:3 19221:3 19231:1 19237:1 19242:2 19244:4 19260:2 19262:1 19263:1 19266:1 19268:1 19280:1 19295:1 19302:1 19306:1 19322:1 19324:1 19339:1 19340:1 19346:2 19347:2 19361:3 19383:1 19394:1 19397:1 19405:1 19414:1 19426:2 19429:2 19430:1 19431:1 19435:1 19467:1 19469:1 19484:2 19485:1 19489:2 19490:1 19495:2 19496:1 19498:1 19502:1 19528:1 19542:4 19543:3 19561:1 19569:2 19572:1 19584:3 19588:3 19594:1 19602:3 19609:1 19615:2 19618:1 19619:1 19629:1 19633:1 19635:1 19639:1 19644:1 19654:1 19655:1 19657:1 19660:1 19663:6 19664:1 19669:2 19670:1 19672:1 19674:1 19681:1 19689:1 19700:2 19706:1 19733:1 19734:1 19737:1 19738:1 19746:1 19748:1 19760:1 19768:1 19772:10 19776:2 19779:1 19784:1 19788:1 19799:1 19823:1 19828:1 19857:3 19861:2
5 1:1 2:1 5:1 28:1 33:1 35:3 65:1 68:3 70:1 71:1 77:1 103:1 105:3 131:1 136:1 145:1 151:1 160:3 164:1 167:1 178:1 185:3 196:1 200:1 215:1 220:1 221:1 227:1 233:2 246:6 255:1 261:1 272:2 274:1 276:1 278:1 288:1 289:1 292:1 297:1 312:2 316:1 337:1 348:5 349:2 352:1 353:1 361:2 365:1 366:1 382:2 390:1 393:3 395:1 399:3 413:1 417:1 418:3 419:1 422:1 434:1 453:1 461:3 477:1 480:2 483:1 485:1 490:1 495:2 510:5 511:1 517:1 525:1 530:1 532:1 540:1 543:1 547:1 559:1 565:1 573:2 574:4 576:1 578:1 592:1 595:1 599:1 600:1 605:1 615:3 625:1 634:2 639:1 641:2 656:1 661:4 669:1 699:2 714:2 720:1 734:1 738:1 749:7 753:1 754:1 763:1 787:1 793:1 797:1 798:1 811:1 825:1 826:4 833:4 834:1 849:2 860:1 861:1 863:1 864:1 865:2 880:9 881:1 901:1 909:1 918:1 920:1 931:2 942:1 943:2 950:2 956:1 960:1 971:5 972:1 980:5 1007:2 1014:1 1015:1 1017:1 1026:1 1028:1 1032:2 1045:1 1074:1 1078:1 1083:2 1084:1 1104:2 1108:2 1110:1 1113:1 1132:1 1134:2 1138:1 1140:1 1145:3 1157:1 1163:1 1176:1 1177:2 1185:1 1194:2 1213:4 1214:3 1231:1 1232:6 1242:1 1243:1 1252:1 1264:3 1266:1 1274:7 1276:1 1279:3 1286:1 1288:4 1310:7 1312:2 1320:1 1323:1 1324:3 1328:3 1332:1 1335:1 1336:2 1337:3 1340:5 1355:2 1357:3 1362:1 1368:1 1380:4 1385:2 1388:2 1392:1 1408:1 1415:1 1421:1 1424:2 1427:4 1434:4 1458:1 1463:6 1486:1 1493:1 1494:1 1498:1 1504:5 1509:1 1512:1 1519:2 1566:1 1576:2 1578:2 1616:1 1617:1 1622:2 1626:1 1628:1 1635:1 1637:1 1643:1 1649:3 1650:1 1653:3 1654:5 1657:5 1658:2 1659:3 1666:4 1669:2 1670:4 1675:2 1677:2 1679:1 1680:1 1681:1 1682:7 1683:2 1685:1 1692:1 1694:1 1700:1 1714:1 1717:1 1721:1 1723:2 1725:1 1732:1 1734:3 1735:1 1742:1 1756:2 1759:1 1765:1 1766:1 1767:1 1769:1 1777:1 1786:1 1807:1 1826:1 1858:1 1859:1 1862:2 1881:1 1884:1 1894:1 1898:1 1901:1 1902:1 1910:3 1911:1 1920:1 1921:1 1923:4 1939:4 1942:1 1952:2 1963:3 1968:2 1970:1 1973:1 1975:1 1978:1 1980:1 1985:1 2012:1 2030:1 2033:1 2035:1 2045:1 2050:3 2060:1 2066:1 2067:1 2068:1 2074:1 2078:2 2088:1 2096:1 2097:11 2099:1 2108:1 2112:11 2123:2 2129:1 2133:1 2138:1 2139:3 2160:1 2175:1 2178:2 2180:1 2185:1 2195:1 2207:1 2218:1 2220:4 2230:1 2231:1 2238:1 2253:1 2255:6 2269:1 2280:1 2298:1 2302:1 2325:1 2332:1 2335:1 2337:1 2344:1 2345:1 2356:1 2363:1 2374:2 2383:1 2384:2 2394:2 2397:1 2405:1 2433:1 2435:1 2440:1 2450:1 2453:2 2471:15 2479:1 2490:1 2494:1 2511:1 2521:2 2525:1 2532:1 2535:1 2541:1 2544:1 2558:1 2586:1 2590:1 2594:1 2595:1 2609:2 2622:1 2623:3 2624:1 2627:1 2645:2 2647:2 2652:1 2656:2 2661:1 2663:2 2666:2 2673:1 2674:1 2695:1 2699:1 2712:1 2713:2 2716:3 2717:3 2723:1 2735:2 2742:2 2746:1 2748:1 2750:1 2753:1 2757:2 2764:1 2791:2 2794:1 2799:1 2801:1 2812:2 2815:2 2816:1 2823:8 2825:1 2850:2 2870:1 2876:1 2882:4 2885:1 2891:1 2896:3 2911:1 2913:2 2916:1 2917:3 2918:1 2921:1 2922:1 2923:1 2928:1 2929:2 2939:1 2947:1 2951:1 2954:1 2955:1 2957:11 2972:4 2973:1 2975:3 2976:8 2977:2 2978:4 2979:1 2982:3 2984:3 2990:1 2992:4 2996:1 2999:1 3001:1 3002:1 3006:2 3007:2 3011:2 3014:1 3015:1 3042:1 3051:2 3062:1 3065:1 3082:1 3087:3 3090:1 3095:1 3102:3 3107:1 3117:2 3128:1 3132:1 3137:1 3139:1 3143:1 3148:1 3153:1 3165:3 3169:1 3178:1 3179:1 3180:1 3190:1 3192:2 3194:1 3196:1 3197:2 3222:1 3237:1 3239:1 3243:1 3253:2 3258:2 3263:1 3284:1 3286:1 3287:1 3289:1 3293:1 3323:2 3325:1 3326:1 3355:1 3365:3 3369:1 3371:1 3407:1 3412:1 3429:3 3430:1 3446:1 3467:2 3470:1 3472:1 3475:1 3487:1 3499:1 3500:1 3513:4 3516:4 3521:6 3532:1 3540:1 3544:1 3547:1 3554:1 3572:1 3580:1 3587:1 3590:1 3591:3 3594:3 3613:1 3619:1 3621:1 3627:1 3628:2 3640:1 3643:1 3644:1 3650:1 3668:3 3682:3 3687:1 3692:2 3693:2 3694:1 3695:2 3700:1 3704:1 3705:1 3708:2 3711:1 3719:2 3732:3 3735:1 3745:1 3759:1 3761:1 3765:1 3778:2 3794:1 3808:1 3830:1 3838:1 3854:3 3855:19 3857:1 3861:1 3866:1 3868:9 3876:1 3882:2 3899:2 3910:1 3914:18 3926:1 3932:1 3935:1 3941:1 3952:1 3956:1 3958:3 3959:1 3961:2 3965:1 3969:1 3977:3 3984:1 4031:1 4049:2 4050:1 4052:2 4063:1 4075:1 4095:1 4102:1 4103:1 4115:1 4134:1 4135:1 4136:2 4142:4 4144:1 4159:1 4161:2 4177:1 4185:1 4202:1 4210:3 4214:2 4228:1 4233:1 4239:1 4246:4 4256:1 4258:2 4259:1 4279:5 4282:4 4285:1 4299:1 4300:2 4310:1 4316:1 4345:1 4362:1 4363:1 4364:1 4374:1 4380:3 4385:1 4387:1 4401:1 4414:1 4415:1 4419:6 4423:1 4430:1 4446:3 4455:2 4456:1 4459:1 4462:2 4495:1 4498:1 4532:1 4537:1 4549:1 4558:2 4572:4 4578:3 4585:1 4591:3 4595:1 4596:4 4598:4 4599:3 4601:3 4602:6 4603:4 4605:1 4606:1 4607:3 4609:1 4610:1 4613:1 4630:2 4633:1 4646:1 4648:1 4650:4 4656:4 4660:4 4671:3 4677:1 4696:1 4714:2 4721:1 4725:7 4726:1 4727:20 4731:2 4735:3 4737:1 4739:1 4744:1 4745:1 4752:2 4760:1 4761:2 4766:7 4777:3 4782:1 4783:1 4793:1 4800:1 4809:1 4822:2 4828:7 4830:2 4832:1 4836:3 4844:2 4854:1 4859:1 4871:1 4883:1 4885:1 4890:1 4891:3 4896:6 4900:1 4901:1 4906:1 4909:1 4934:1 4942:1 4944:1 4948:1 4952:2 4954:1 4983:1 5002:1 5004:1 5012:1 5014:1 5017:1 5037:2 5039:1 5058:1 5059:1 5076:1 5079:1 5099:2 5107:1 5110:1 5112:1 5116:1 5118:1 5119:1 5121:3 5125:1 5141:1 5145:2 5147:1 5152:1 5153:2608 5155:1 5158:2 5159:1 5160:1 5168:3 5171:1 5187:1 5188:1 5191:1 5195:1 5196:1 5212:7 5213:2 5230:1 5232:1 5233:1 5237:1 5250:4 5259:1 5260:1 5280:2 5288:1 5293:1 5297:1 5306:1 5311:5 5318:1 5328:1 5334:2 5338:2 5345:2 5358:1 5380:2 5400:1 5404:2 5414:1 5426:1 5427:1 5433:1 5441:1 5444:3 5447:1 5455:1 5482:1 5483:2 5487:1 5494:1 5497:2 5517:1 5526:1 5554:1 5560:1 5562:1 5573:2 5592:1 5612:1 5613:1 5615:1 5616:3 5619:2 5620:1 5643:1 5645:1 5658:1 5662:1 5670:2 5683:5 5690:1 5695:1 5698:1 5704:1 5741:1 5754:1 5755:1 5757:1 5775:1 5776:1 5809:1 5825:3 5830:2 5840:1 5845:1 5859:1 5861:3 5864:1 5867:1 5878:1 5883:1 5909:2 5916:1 5921:5 5930:3 5931:1 5934:5 5952:1 5956:1 5959:1 5967:4 5973:1 5981:1 6003:1 6010:1 6013:4 6016:3 6020:11 6025:1 6026:1 6032:1 6035:3 6040:1 6053:1 6054:2 6055:1 6064:1 6069:1 6087:1 6095:1 6115:1 6118:1 6120:1 6133:1 6135:1 6139:1 6142:6 6155:3 6178:2 6189:1 6192:1 6212:3 6219:2 6221:2 6240:1 6244:1 6262:3 6273:1 6281:1 6301:2 6303:1 6311:1 6317:1 6322:1 6345:1 6357:1 6375:4 6377:1 6384:1 6385:1 6387:1 6392:13 6395:1 6400:1 6405:2 6410:1 6434:2 6440:1 6444:1 6457:1 6459:2 6460:1 6468:1 6483:4 6485:1 6533:2 6536:1 6538:10 6545:3 6551:1 6563:1 6564:2 6571:2 6572:5 6573:1 6576:2 6581:5 6582:2 6584:1 6586:1 6587:4 6590:2 6594:7 6597:1 6602:1 6604:1 6605:2 6606:1 6607:2 6608:1 6617:1 6637:4 6643:1 6649:1 6652:11 6658:1 6664:1 6665:1 6672:1 6690:1 6691:2 6693:1 6695:1 6707:2 6711:1 6743:3 6744:1 6749:1 6758:1 6764:2 6767:1 6774:2 6788:1 6797:1 6813:1 6828:7 6830:1 6839:1 6844:1 6845:3 6860:15 6866:1 6870:1 6877:3 6883:23 6886:4 6892:1 6915:2 6922:1 6947:4 6959:1 6967:2 6974:2 6978:1 6983:1 6990:2 6996:2 6998:1 6999:1 7001:1 7007:1 7013:1 7021:6 7034:1 7037:1 7043:1 7050:1 7052:1 7060:1 7072:1 7080:1 7091:1 7099:2 7114:1 7127:1 7134:5 7140:1 7145:2 7153:1 7155:1 7169:1 7181:1 7183:1 7192:1 7198:1 7201:1 7204:1 7218:1 7220:1 7221:1 7232:5 7244:1 7247:78 7250:1 7256:1 7263:2 7270:1 7271:1 7280:1 7284:1 7291:6 7312:1 7329:2 7353:1 7357:1 7361:1 7372:1 7384:1 7387:4 7390:1 7409:2 7411:1 7420:1 7422:10 7434:2 7442:2 7443:1 7444:15 7450:3 7453:1 7454:2 7457:1 7459:1 7473:1 7478:1 7487:1 7494:1 7504:3 7525:3 7540:2 7543:1 7550:6 7554:1 7556:3 7558:1 7560:2 7563:1 7564:2 7568:1 7572:3 7574:1 7577:1 7578:1 7579:2 7582:5 7583:6 7584:1 7609:1 7641:1 7642:1 7647:2 7652:1 7656:1 7668:1 7670:1 7678:1 7687:1 7692:1 7700:1 7701:1 7707:1 7710:2 7711:1 7731:4 7737:1 7742:1 7743:1 7769:1 7770:3 7783:1 7803:1 7808:1 7835:2 7838:1 7841:2 7843:2 7849:1 7868:1 7874:1 7878:1 7880:1 7900:1 7912:1 7913:1 7915:1 7923:1 7924:1 7930:1 7940:1 7952:1 7957:3 7988:2 7998:1 8000:1 8009:1 8012:3 8013:3 8017:2 8023:2 8042:1 8050:1 8055:1 8056:2 8057:1 8058:4 8065:2 8072:1 8075:2 8080:2 8087:1 8094:3 8096:1 8098:1 8100:1 8105:3 8113:1 8116:1 8119:2 8128:2 8135:5 8137:1 8138:4 8146:1 8152:1 8163:1 8167:1 8168:1 8189:2 8192:3 8194:2 8196:5 8199:2 8200:1 8207:1 8211:1 8214:1 8231:1 8245:1 8247:6 8248:1 8253:2 8263:1 8267:1 8272:1 8280:2 8296:1 8319:1 8324:1 8333:1 8339:1 8341:1 8346:1 8347:1 8358:2 8360:1 8368:1 8371:1 8382:1 8383:5 8387:6 8390:1 8391:1 8399:2 8411:1 8414:1 8415:2 8421:3 8431:1 8434:1 8437:5 8441:1 8456:2 8460:1 8491:1 8496:1 8507:1 8513:1 8520:3 8522:2 8524:1 8528:1 8532:1 8533:3 8539:1 8542:2 8546:2 8552:9 8554:1 8556:1 8559:1 8573:1 8576:1 8591:1 8606:1 8616:5 8623:1 8626:2 8648:2 8651:1 8664:1 8669:1 8678:1 8712:1 8732:2 8742:1 8743:1 8744:1 8755:1 8770:1 8772:1 8776:1 8779:3 8780:2 8785:3 8786:2 8794:1 8797:3 8809:4 8821:1 8832:1 8840:1 8843:1 8848:1 8858:1 8859:1 8860:1 8872:1 8886:1 8899:1 8901:2 8909:2 8919:1 8923:1 8926:1 8928:2 8937:1 8953:1 8955:1 8959:2 8967:1 8968:1 8971:2 8974:1 8980:1 8983:1 8986:1 8990:1 8993:1 8994:1 8996:1 9006:3 9019:1 9025:2 9026:2 9041:1 9051:1 9067:2 9072:1 9084:1 9085:1 9090:1 9100:2 9103:2 9107:1 9113:1 9114:1 9117:1 9122:4 9124:1 9125:1 9129:2 9143:1 9159:1 9162:1 9165:1 9177:1 9180:2 9183:1 9185:1 9189:1 9191:3 9204:1 9215:1 9228:1 9234:1 9237:1 9238:1 9251:7 9252:4 9253:1 9260:26 9261:2 9268:1 9275:1 9279:1 9283:1 9295:8 9303:1 9308:1 9309:1 9329:1 9331:1 9333:1 9334:1 9337:1 9340:1 9347:1 9357:1 9358:1 9360:2 9370:1 9378:1 9380:1 9385:1 9388:6 9394:1 9404:1 9406:11 9408:1 9429:1 9432:1 9443:2 9444:5 9449:1 9456:2 9461:1 9474:1 9478:2 9486:1 9492:1 9499:3 9508:3 9512:2 9522:1 9525:1 9534:2 9548:3 9560:1 9569:1 9591:1 9594:6 9596:2 9597:1 9605:2 9606:1 9607:1 9612:1 9613:1 9624:12 9625:1 9626:1 9627:3 9632:2 9641:2 9655:1 9657:1 9659:1 9675:9 9683:2 9693:1 9698:1 9704:2 9712:1 9719:1 9721:7 9754:1 9759:1 9780:1 9786:1 9787:1 9788:1 9795:2 9798:2 9813:2 9815:1 9816:1 9817:1 9818:1 9822:2 9826:1 9829:1 9842:1 9859:1 9865:3 9870:2 9879:2 9881:1 9884:1 9886:1 9888:1 9890:1 9904:1 9910:3 9916:1 9917:1 9918:1 9920:1 9924:4 9926:2 9929:1 9936:1 9940:1 9943:1 9948:1 9952:1 9959:2 9963:1 9968:1 9980:2 9983:1 9992:2 10001:1 10007:1 10009:2 10010:1 10013:2 10017:1 10039:1 10044:3 10045:1 10049:1 10057:1 10058:1 10059:4 10068:2 10070:1 10075:1 10086:1 10092:1 10098:1 10105:3 10111:5 10115:1 10124:2 10125:2 10127:1 10129:7 10130:1 10160:1 10163:1 10169:1 10175:1 10193:5 10200:2 10204:3 10212:2 10215:1 10223:1 10230:1 10243:1 10254:1 10262:1 10263:2 10271:3 10272:4 10280:1 10283:1 10286:1 10297:1 10298:1 10301:1 10306:1 10315:1 10318:1 10334:1 10335:1 10349:4 10356:1 10376:3 10377:2 10378:1 10380:1 10398:3 10399:3 10408:2 10409:4 10415:1 10442:4 10459:40 10463:1 10468:3 10474:1 10479:20 10484:11 10485:1 10494:1 10504:1 10510:1 10515:1 10551:1 10554:4 10564:1 10567:2 10570:1 10573:7 10595:2 10632:2 10637:1 10639:4 10640:1 10642:1 10649:1 10654:1 10683:1 10685:2 10709:1 10720:1 10721:7 10723:1 10725:3 10740:1 10742:2 10748:1 10749:1 10756:15 10764:1 10769:1 10773:1 10777:1 10787:1 10790:2 10797:1 10820:4 10822:1 10824:1 10845:1 10857:1 10865:2 10868:1 10877:1 10886:1 10888:1 10892:2 10922:1 10925:1 10930:1 10934:1 10945:1 10948:1 10950:1 10957:1 10963:3 10968:1 10972:1 10975:1 10978:2 10982:1 10990:1 10996:1 11005:1 11010:1 11013:1 11017:1 11032:3 11042:1 11046:2 11050:2 11055:2 11058:47 11075:1 11081:2 11082:1 11085:1 11088:1 11099:1 11117:1 11123:1 11126:1 11132:1 11140:1 11159:1 11164:1 11175:1 11180:2 11195:1 11197:16 11200:9 11203:1 11207:1 11272:2 11273:2 11276:1 11280:2 11281:1 11287:1 11289:1 11310:2 11311:1 11313:1 11319:1 11321:7 11326:2 11328:1 11330:2 11333:1 11344:1 11357:1 11362:2 11376:3 11379:1 11391:1 11403:3 11405:2 11407:1 11408:1 11415:2 11416:2 11417:1 11420:3 11433:1 11439:1 11446:4 11448:1 11456:1 11457:1 11458:1 11459:2 11473:2 11496:1 11520:1 11523:2 11527:1 11540:1 11557:1 11559:1 11563:2 11565:1 11568:4 11573:4 11588:1 11599:1 11600:1 11601:1 11607:1 11608:1 11623:1 11634:1 11636:1 11637:1 11639:1 11641:3 11643:2 11646:1 11649:1 11652:1 11654:1 11656:3 11658:3 11664:1 11666:1 11667:1 11668:1 11669:2 11678:1 11679:3 11684:2 11687:3 11689:2 11698:2 11702:4 11715:1 11720:1 11721:1 11724:1 11730:9 11732:1 11735:2 11736:3 11739:1 11742:1 11761:1 11765:1 11770:1 11773:1 11782:2 11788:1 11800:1 11829:2 11831:3 11835:1 11842:1 11859:1 11864:1 11866:1 11877:2 11881:1 11885:3 11888:1 11895:1 11898:2 11914:1 11921:1 11937:1 11951:2 11958:1 11978:2 11980:1 11992:1 12000:1 12019:1 12026:1 12037:1 12043:1 12050:2 12052:7 12053:1 12055:1 12063:1 12092:1 12102:1 12116:1 12130:1 12132:1 12138:1 12161:1 12172:1 12173:1 12186:1 12190:1 12210:1 12228:1 12234:1 12245:1 12251:1 12256:2 12260:2 12274:1 12276:1 12280:4 12284:1 12289:2 12305:1 12306:1 12328:1 12331:1 12348:1 12355:1 12357:3 12365:2 12392:1 12397:2 12403:1 12405:1 12415:1 12433:1 12435:4 12437:1 12439:1 12440:1 12451:2 12454:1 12461:3 12466:1 12470:1 12471:1 12480:1 12481:1 12497:3 12499:1 12513:1 12519:1 12530:1 12532:1 12535:1 12537:2 12541:1 12556:2 12557:2 12558:2 12559:1 12565:1 12566:3 12572:1 12577:2 12578:1 12580:2 12581:2 12582:1 12585:3 12591:1 12592:1 12603:1 12610:2 12611:1 12613:1 12617:1 12621:1 12640:1 12642:3 12645:1 12648:1 12671:1 12672:3 12678:3 12687:1 12688:3 12699:1 12703:1 12709:1 12710:1 12712:1 12713:1 12720:1 12722:1 12723:1 12726:1 12728:2 12731:4 12739:1 12747:1 12752:1 12754:1 12759:1 12769:1 12772:2 12779:1 12797:1 12808:1 12809:1 12825:1 12828:4 12836:2 12837:1 12838:1 12856:1 12857:1 12858:1 12866:1 12876:1 12877:3 12893:1 12901:1 12914:1 12918:3 12919:1 12922:1 12928:1 12938:1 12962:5 12967:1 12970:1 12977:2 12978:3 12983:1 12986:1 12992:1 12993:2 13001:1 13005:1 13018:1 13019:4 13021:1 13028:1 13041:1 13048:1 13052:1 13056:3 13058:1 13072:2 13075:1 13087:1 13100:1 13102:2 13106:1 13108:1 13121:1 13136:2 13141:3 13142:1 13143:2 13153:1 13156:1 13170:1 13179:1 13189:1 13191:2 13192:1 13197:1 13200:4 13203:4 13207:7 13208:1 13212:1 13214:1 13219:1 13220:1 13223:1 13231:2 13236:1 13237:1 13238:6 13239:1 13240:1 13247:1 13250:1 13256:3 13262:1 13266:1 13269:2 13307:1 13338:1 13339:1 13358:3 13367:1 13370:6 13383:1 13386:1 13388:1 13402:1 13426:3 13432:1 13446:2 13448:2 13459:1 13462:1 13468:1 13481:1 13483:3 13485:3 13491:3 13506:3 13508:1 13512:1 13513:1 13516:1 13517:5 13534:1 13538:1 13546:1 13556:1 13567:1 13573:1 13574:1 13582:1 13583:1 13585:1 13586:2 13608:1 13627:6 13628:2 13631:1 13639:1 13642:1 13645:1 13646:2 13652:3 13655:1 13659:1 13660:2 13662:4 13668:1 13670:2 13672:1 13677:2 13682:1 13684:2 13698:1 13703:2 13710:1 13727:1 13735:2 13753:1 13759:1 13769:1 13783:1 13789:6 13812:1 13817:1 13825:2 13826:1 13832:1 13846:1 13853:1 13855:1 13856:2 13861:1 13866:8 13876:1 13891:1 13899:4 13900:1 13902:2 13904:3 13907:2 13911:1 13912:3 13913:5 13915:1 13918:1 13921:1 13922:1 13924:1 13926:2 13927:1 13934:2 13939:14 13942:2 13944:3 13947:1 13948:8 13950:2 13956:1 13958:1 13959:2 13981:1 13983:3 13999:1 14028:1 14049:1 14051:8 14055:1 14058:4 14059:1 14060:1 14063:1 14064:1 14077:1 14090:1 14095:3 14100:8 14105:1 14108:1 14112:2 14113:1 14135:1 14140:1 14142:1 14148:1 14151:1 14172:6 14186:1 14188:2 14192:1 14199:2 14205:1 14212:3 14228:1 14238:1 14258:1 14261:1 14265:1 14271:2 14273:1 14278:1 14279:1 14284:1 14286:1 14288:1 14293:1 14298:7 14311:1 14338:1 14344:1 14346:2 14349:1 14353:1 14361:1 14362:1 14363:3 14366:1 14371:1 14372:2 14374:2 14376:1 14379:2 14383:1 14411:2 14413:1 14429:2 14445:1 14446:1 14470:2 14472:1 14478:1 14479:1 14492:2 14498:1 14511:1 14519:1 14527:3 14532:1 14535:1 14561:1 14572:1 14575:3 14599:1 14603:1 14618:2 14624:3 14625:3 14636:1 14637:5 14641:5 14651:8 14652:1 14656:1 14663:1 14664:1 14672:1 14687:1 14694:3 14698:3 14701:3 14705:1 14706:1 14736:1 14739:3 14747:2 14756:1 14770:5 14775:1 14779:2 14780:1 14781:1 14790:1 14795:1 14796:1 14807:1 14811:7 14815:1 14827:1 14828:6 14832:1 14845:1 14846:1 14852:1 14853:1 14856:1 14858:1 14868:1 14881:1 14882:1 14884:1 14889:3 14895:1 14909:1 14916:1 14933:2 14947:1 14957:1 14981:1 14995:1 15003:1 15004:1 15018:1 15025:4 15040:3 15048:1 15049:1 15051:1 15052:1 15055:2 15064:1 15066:1 15069:1 15086:1 15087:1 15089:1 15096:2 15097:1 15110:5 15113:1 15116:1 15120:1 15122:1 15128:1 15130:2 15135:2 15139:1 15142:2 15149:3 15151:1 15156:2 15163:1 15164:1 15166:1 15170:5 15171:13 15190:1 15195:1 15210:1 15215:1 15226:1 15230:1 15232:5 15240:1 15241:1 15249:2 15254:1 15256:1 15262:1 15265:2 15267:2 15268:1 15284:1 15287:1 15293:1 15294:1 15304:2 15305:1 15308:1 15311:1 15331:1 15337:1 15351:1 15354:1 15356:2 15363:1 15370:1 15396:1 15404:5 15411:1 15413:1 15452:2 15455:1 15457:8 15458:6 15461:1 15466:1 15478:1 15490:3 15493:1 15499:1 15511:8 15513:1 15514:1 15516:1 15521:6 15525:1 15527:1 15532:7 15537:1 15545:3 15549:1 15560:1 15572:2 15574:1 15580:1 15582:7 15583:2 15584:2 15587:1 15592:1 15596:1 15598:15 15602:1 15607:1 15608:4 15614:1 15616:1 15618:2 15619:1 15631:1 15635:2 15643:4 15651:1 15658:1 15661:2 15678:3 15679:1 15681:1 15686:1 15693:1 15695:1 15698:1 15703:1 15710:4 15721:3 15727:1 15730:2 15741:1 15753:1 15760:1 15764:1 15773:1 15774:1 15776:2 15797:2 15805:1 15806:3 15820:1 15827:1 15865:2 15868:1 15873:1 15876:1 15878:1 15882:7 15886:4 15890:2 15922:1 15936:1 15940:1 15943:1 15949:1 15950:1 15956:1 15957:1 15960:1 15962:3 15965:1 15966:3 15969:1 15983:2 15990:1 16001:1 16019:2 16020:2 16023:1 16029:1 16032:1 16036:1 16057:2 16059:1 16060:2 16065:1 16067:1 16071:1 16073:1 16101:1 16109:1 16115:1 16122:2 16123:3 16125:1 16132:1 16136:1 16145:2 16147:1 16154:1 16157:2 16175:4 16178:1 16181:1 16185:1 16202:1 16232:1 16274:1 16275:1 16278:1 16297:1 16299:3 16301:1 16305:3 16308:1 16309:1 16314:1 16319:1 16329:3 16333:2 16345:2 16350:1 16364:1 16369:2 16374:1 16379:1 16395:1 16399:1 16403:1 16406:1 16408:1 16425:1 16462:1 16475:1 16509:1 16535:3 16541:1 16558:1 16560:3 16562:1 16575:1 16579:2 16583:1 16587:1 16591:1 16592:2 16594:1 16613:1 16624:1 16630:1 16636:1 16652:2 16662:1 16668:1 16670:1 16674:1 16679:2 16687:1 16690:1 16693:1 16705:1 16706:1 16707:1 16745:1 16746:2 16753:1 16755:1 16756:3 16763:3 16766:1 16776:1 16785:1 16792:1 16793:1 16807:1 16810:2 16819:1 16820:1 16823:1 16825:1 16826:2 16827:1 16842:1 16853:1 16875:1 16880:1 16886:5 16891:2 16898:1 16900:1 16902:2 16905:2 16915:1 16917:3 16919:1 16922:2 16940:1 16948:1 16951:1 16953:2 16957:1 16961:5 16962:2 16972:1 16978:3 16981:2 16983:1 16993:2 16999:2 17000:3 17002:3 17003:1 17006:1 17008:1 17009:2 17015:1 17021:2 17024:2 17029:1 17030:2 17031:5 17032:1 17034:3 17043:1 17050:1 17054:3 17058:1 17060:1 17067:1 17071:2 17076:2 17088:1 17089:1 17093:1 17097:3 17108:1 17113:1 17115:2 17119:2 17120:3 17125:1 17137:2 17139:2 17143:2 17144:1 17154:1 17164:3 17169:1 17175:1 17190:1 17196:1 17199:1 17202:4 17204:2 17207:1 17208:4 17209:2 17212:1 17220:1 17227:1 17235:1 17250:1 17260:1 17267:1 17278:1 17282:1 17304:1 17311:1 17317:3 17318:1 17319:1 17336:1 17340:1 17341:1 17345:1 17349:1 17380:1 17382:1 17383:1 17384:1 17399:4 17404:1 17405:1 17414:1 17415:1 17418:1 17422:1 17427:2 17432:1 17434:12 17455:1 17468:2 17470:1 17481:1 17486:1 17511:1 17513:1 17533:1 17540:2 17561:1 17565:1 17570:1 17572:1 17582:1 17599:1 17602:2 17603:2 17604:3 17615:1 17616:1 17629:2 17637:1 17640:6 17662:1 17667:1 17675:1 17695:1 17713:2 17718:1 17733:1 17750:1 17753:1 17754:1 17757:1 17769:1 17781:6 17784:4 17789:1 17791:1 17792:2 17793:1 17796:1 17820:1 17826:1 17827:1 17828:1 17833:1 17835:1 17844:7 17861:2 17873:1 17878:2 17891:3 17894:1 17897:32 17902:2 17933:1 17935:1 17936:1 17947:4 17960:2 17961:1 17967:2 17974:2 17978:1 18044:2 18053:1 18056:1 18069:1 18073:4 18080:3 18084:1 18098:1 18106:1 18107:3 18115:2 18117:2 18119:1 18133:1 18141:2 18144:1 18145:2 18151:1 18153:1 18161:1 18177:1 18180:1 18189:1 18190:2 18196:3 18217:1 18219:1 18232:1 18236:2 18255:6 18257:4 18258:1 18259:2 18261:1 18262:1 18270:6 18277:1 18278:1 18281:1 18282:1 18283:1 18288:2 18294:2 18295:1 18296:1 18303:1 18305:2 18306:1 18309:2 18311:2 18313:1 18325:1 18332:1 18358:1 18367:1 18370:2 18372:1 18373:1 18392:1 18394:1 18401:1 18402:1 18404:1 18412:2 18414:1 18415:2 18417:5 18426:1 18434:1 18435:1 18437:1 18438:1 18449:1 18460:1 18461:1 18463:1 18465:1 18468:1 18474:1 18482:1 18489:7 18498:1 18499:10 18505:1 18513:1 18521:1 18522:1 18524:2 18546:1 18549:1 18550:1 18558:1 18559:1 18562:4 18573:1 18575:1 18576:1 18577:1 18580:4 18582:1 18583:1 18584:1 18606:1 18608:1 18616:3 18628:1 18645:2 18647:1 18652:1 18656:5 18666:3 18670:6 18681:1 18687:1 18718:1 18719:1 18728:1 18730:1 18762:1 18763:12 18785:3 18794:1 18799:1 18830:7 18835:2 18844:1 18848:1 18866:1 18881:2 18882:1 18891:2 18899:1 18909:1 18913:1 18916:4 18917:1 18927:3 18935:1 18937:1 18942:1 18947:2 18957:1 18958:4 18965:1 18968:1 18976:1 18996:1 19001:1 19005:5 19015:2 19022:1 19045:1 19060:1 19067:1 19082:1 19086:1 19095:1 19112:1 19134:1 19154:1 19159:2 19161:2 19168:1 19175:1 19176:4 19182:2 19185:1 19188:2 19190:1 19205:1 19206:1 19208:1 19210:1 19212:1 19217:3 19221:3 19231:1 19237:1 19242:2 19244:4 19260:2 19262:1 19263:1 19266:1 19268:1 19280:1 19295:1 19302:1 19306:1 19322:1 19324:1 19339:1 19340:2 19346:2 19347:2 19361:3 19383:1 19394:1 19397:1 19405:1 19414:1 19426:2 19429:2 19430:1 19431:1 19435:1 19467:2 19469:1 19484:3 19485:1 19489:2 19490:1 19495:2 19496:1 19498:1 19502:1 19528:1 19542:4 19543:3 19561:1 19569:2 19572:1 19584:3 19588:3 19594:1 19602:3 19609:1 19615:2 19618:1 19619:1 19629:1 19633:1 19635:1 19639:1 19644:1 19652:1 19654:1 19655:1 19657:1 19660:1 19663:7 19664:1 19669:2 19670:1 19672:1 19674:1 19681:1 19689:1 19700:2 19706:1 19733:2 19734:1 19737:1 19738:2 19746:1 19748:1 19760:1 19768:1 19772:11 19776:2 19779:1 19784:1 19788:1 19799:1 19823:1 19828:1 19857:3 19861:2
5 1:1 2:1 5:1 17:1 28:1 33:1 35:3 65:1 68:3 70:1 71:1 77:1 103:1 105:3 131:1 136:1 145:1 151:1 160:3 164:1 167:1 178:1 185:3 196:1 200:1 215:1 220:1 221:1 227:1 233:2 246:6 255:1 261:1 272:2 274:1 276:1 278:1 288:1 289:1 292:1 297:1 312:2 316:1 318:1 337:1 348:6 349:2 352:1 353:1 361:3 365:1 366:1 382:2 390:1 393:3 395:1 399:3 413:1 417:1 418:3 419:1 422:1 434:1 453:1 461:3 477:1 480:2 483:1 485:1 490:1 495:2 510:5 511:1 517:1 525:1 530:1 532:1 540:1 543:1 547:1 559:1 565:1 573:2 574:5 576:1 578:1 592:1 595:1 599:1 600:1 605:1 615:3 625:1 634:2 639:1 641:2 656:1 661:4 669:1 699:2 714:3 720:1 734:1 738:1 749:7 753:1 754:1 763:1 787:1 793:1 797:1 798:1 811:1 825:1 826:4 833:4 834:1 849:2 860:1 861:1 863:1 864:1 865:2 880:9 881:1 901:1 909:1 918:1 920:1 931:2 942:1 943:2 950:2 956:1 960:1 971:5 972:1 980:5 1007:2 1014:1 1015:1 1017:1 1026:1 1028:1 1032:2 1045:1 1074:1 1078:1 1083:2 1084:1 1104:2 1108:2 1110:1 1113:1 1132:1 1134:2 1138:1 1140:1 1145:3 1157:1 1163:1 1176:1 1177:2 1185:1 1194:2 1213:4 1214:3 1231:1 1232:6 1242:1 1243:1 1252:1 1264:3 1266:1 1274:7 1276:1 1279:3 1286:1 1288:4 1310:7 1312:2 1320:1 1323:1 1324:3 1328:3 1332:1 1335:1 1336:2 1337:3 1340:5 1355:2 1357:3 1362:1 1368:1 1380:4 1385:2 1388:2 1392:1 1408:1 1415:1 1421:1 1424:2 1427:4 1434:4 1458:1 1463:6 1486:1 1493:1 1494:1 1498:1 1504:5 1509:1 1512:1 1519:2 1566:1 1576:2 1578:2 1616:1 1617:1 1622:2 1626:1 1628:1 1635:1 1637:1 1641:1 1643:1 1649:3 1650:1 1653:4 1654:5 1657:5 1658:2 1659:3 1666:4 1669:2 1670:4 1675:2 1677:2 1679:1 1680:1 1681:1 1682:7 1683:2 1685:1 1692:1 1694:1 1700:1 1714:1 1717:1 1721:1 1723:2 1725:1 1732:1 1734:3 1735:1 1742:1 1756:2 1759:1 1765:1 1766:1 1767:1 1769:1 1777:1 1786:1 1807:1 1826:1 1858:1 1859:1 1862:2 1881:1 1884:1 1894:1 1898:1 1901:1 1902:1 1910:3 1911:1 1920:1 1921:1 1923:4 1939:4 1942:1 1952:2 1963:3 1968:2 1970:1 1973:1 1975:1 1978:1 1980:1 1985:1 2012:1 2030:1 2033:1 2035:1 2045:1 2050:3 2060:1 2066:1 2067:1 2068:1 2074:1 2078:2 2088:1 2096:1 2097:11 2099:1 2108:1 2112:12 2123:2 2129:1 2133:1 2138:1 2139:3 2160:1 2175:1 2178:2 2180:1 2185:1 2195:1 2207:1 2218:1 2220:4 2230:1 2231:1 2238:1 2253:1 2255:6 2269:1 2280:1 2298:1 2302:1 2325:1 2332:1 2335:1 2337:1 2344:1 2345:1 2356:1 2363:1 2374:2 2383:1 2384:2 2394:2 2397:1 2405:1 2433:1 2435:1 2440:1 2450:1 2453:2 2471:16 2479:1 2490:1 2494:1 2511:1 2521:2 2525:1 2532:1 2535:2 2541:1 2544:1 2558:1 2586:1 2590:1 2594:1 2595:1 2609:2 2622:1 2623:3 2624:1 2627:1 2645:2 2647:2 2652:1 2656:2 2661:1 2663:2 2666:2 2673:1 2674:1 2695:1 2699:1 2712:1 2713:2 2716:3 2717:3 2723:1 2735:2 2742:2 2746:1 2748:1 2750:1 2751:1 2753:1 2757:2 2763:1 2764:1 2791:3 2794:1 2799:1 2801:1 2812:2 2815:2 2816:1 2823:8 2825:1 2850:2 2870:1 2876:1 2882:4 2885:1 2891:1 2896:3 2911:1 2913:2 2916:1 2917:3 2918:1 2921:1 2922:2 2923:1 2928:1 2929:2 2939:1 2947:1 2951:1 2954:1 2955:1 2957:11 2972:4 2973:1 2975:3 2976:8 2977:2 2978:4 2979:1 2982:3 2984:3 2990:2 2992:4 2996:1 2999:1 3001:1 3002:1 3006:2 3007:2 3011:2 3014:1 3015:1 3042:1 3051:2 3062:1 3065:1 3082:1 3087:3 3090:1 3095:1 3102:3 3107:1 3117:2 3128:1 3132:1 3137:1 3139:1 3143:1 3148:1 3153:1 3165:3 3169:1 3178:1 3179:1 3180:1 3190:1 3192:2 3194:1 3196:1 3197:2 3222:1 3237:1 3239:1 3243:1 3253:2 3258:2 3263:1 3284:1 3286:1 3287:1 3289:1 3293:1 3323:2 3325:1 3326:1 3355:1 3365:3 3369:1 3371:1 3407:1 3412:1 3429:3 3430:1 3446:1 3467:2 3470:1 3472:1 3475:1 3487:1 3499:1 3500:1 3513:4 3516:4 3521:6 3532:1 3540:1 3544:1 3547:1 3554:1 3572:1 3580:1 3587:1 3590:1 3591:3 3594:3 3613:1 3619:1 3621:1 3627:1 3628:2 3640:1 3643:1 3644:1 3650:1 3668:3 3682:3 3687:1 3692:2 3693:2 3694:1 3695:2 3700:1 3704:1 3705:1 3708:2 3711:1 3719:2 3732:3 3735:1 3745:1 3759:1 3761:1 3765:1 3778:2 3794:1 3808:1 3830:1 3838:1 3854:3 3855:19 3857:1 3861:1 3866:1 3868:10 3876:1 3882:2 3899:2 3910:1 3914:19 3926:1 3932:1 3935:1 3941:1 3952:1 3956:1 3958:3 3959:1 3961:2 3965:1 3969:1 3977:3 3984:1 4031:1 4049:2 4050:1 4052:2 4063:1 4075:1 4095:1 4102:1 4103:1 4115:1 4134:1 4135:1 4136:2 4142:4 4144:1 4159:1 4161:2 4177:1 4185:1 4202:1 4210:3 4214:2 4228:1 4233:1 4239:1 4246:4 4256:1 4258:2 4259:1 4279:5 4282:4 4285:1 4299:1 4300:2 4310:1 4316:1 4345:1 4362:1 4363:1 4364:1 4374:1 4380:3 4385:1 4387:1 4401:1 4414:1 4415:1 4419:6 4423:1 4430:1 4446:3 4455:3 4456:1 4459:1 4462:2 4495:1 4498:1 4532:1 4537:1 4549:1 4558:2 4572:4 4578:3 4585:1 4591:3 4595:1 4596:4 4598:5 4599:3 4601:3 4602:6 4603:4 4605:1 4606:1 4607:3 4609:1 4610:1 4613:1 4630:2 4633:1 4646:1 4648:1 4650:4 4656:5 4660:4 4671:3 4677:1 4696:1 4714:2 4721:1 4725:7 4726:1 4727:21 4731:2 4735:3 4737:1 4739:1 4744:1 4745:1 4752:2 4760:1 4761:2 4766:7 4777:3 4782:1 4783:1 4793:1 4800:1 4809:1 4822:2 4828:7 4830:2 4832:1 4836:3 4844:2 4854:1 4859:1 4871:1 4883:1 4885:1 4890:1 4891:3 4896:7 4900:1 4901:1 4906:1 4909:1 4934:1 4942:1 4944:1 4948:1 4952:2 4954:1 4983:1 5002:1 5004:1 5012:1 5013:1 5014:1 5017:1 5037:2 5039:1 5058:1 5059:1 5072:1 5074:1 5076:1 5079:1 5099:2 5107:1 5110:1 5112:1 5116:1 5118:1 5119:1 5121:3 5125:1 5141:1 5145:2 5147:1 5152:1 5153:2634 5155:1 5158:2 5159:1 5160:1 5168:3 5171:1 5174:1 5187:1 5188:1 5191:1 5195:1 5196:1 5212:8 5213:2 5230:1 5232:1 5233:1 5237:1 5250:4 5259:1 5260:1 5280:2 5288:1 5293:1 5297:1 5306:1 5311:5 5318:1 5328:1 5334:2 5338:2 5345:2 5358:1 5380:3 5400:1 5404:2 5414:1 5426:1 5427:1 5433:1 5441:1 5444:3 5447:1 5455:1 5482:1 5483:2 5487:1 5494:1 5497:2 5517:1 5526:1 5554:1 5560:1 5562:1 5573:2 5592:1 5612:1 5613:1 5615:1 5616:3 5619:2 5620:1 5643:1 5645:1 5658:1 5662:1 5670:2 5683:6 5690:1 5695:1 5698:1 5704:1 5741:1 5754:1 5755:1 5757:1 5775:1 5776:1 5809:1 5825:3 5830:2 5840:1 5845:1 5859:1 5861:3 5864:1 5867:1 5878:1 5883:1 5909:2 5916:1 5921:5 5930:3 5931:1 5934:5 5952:1 5956:1 5959:1 5967:4 5973:1 5981:1 6003:2 6010:1 6013:4 6016:4 6020:11 6025:1 6026:1 6032:1 6035:3 6040:1 6053:1 6054:2 6055:1 6064:1 6069:1 6087:1 6095:1 6115:1 6118:1 6120:1 6133:1 6135:1 6139:1 6142:6 6155:3 6178:2 6189:1 6192:1 6212:3 6215:1 6219:2 6221:2 6240:1 6244:1 6262:3 6273:1 6281:1 6301:2 6303:1 6304:1 6311:1 6317:1 6322:1 6345:1 6357:1 6375:4 6377:1 6384:1 6385:1 6387:1 6392:13 6395:1 6400:1 6405:2 6410:1 6434:2 6440:1 6444:1 6457:1 6459:2 6460:1 6468:1 6483:4 6485:1 6533:2 6536:1 6538:10 6545:3 6551:1 6563:1 6564:2 6571:2 6572:6 6573:1 6576:2 6581:5 6582:2 6584:1 6586:1 6587:4 6590:2 6594:7 6597:1 6602:1 6604:1 6605:2 6606:1 6607:2 6608:1 6617:1 6637:4 6643:1 6649:1 6652:11 6658:1 6664:1 6665:1 6672:1 6690:1 6691:2 6693:1 6695:1 6707:2 6711:1 6743:3 6744:1 6749:1 6758:1 6764:2 6767:1 6774:2 6788:1 6797:1 6813:1 6819:1 6828:7 6830:1 6839:1 6844:1 6845:3 6860:16 6866:1 6870:1 6877:3 6883:23 6886:4 6892:1 6915:2 6922:1 6947:4 6959:1 6967:2 6974:2 6978:1 6983:1 6990:2 6996:2 6998:1 6999:1 7001:1 7007:1 7013:1 7021:7 7034:1 7037:1 7043:1 7050:1 7052:2 7060:1 7072:1 7080:1 7091:1 7099:2 7114:1 7127:1 7134:5 7140:1 7145:2 7153:1 7155:1 7169:1 7181:1 7183:1 7186:1 7192:1 7198:1 7201:1 7204:1 7218:1 7220:1 7221:1 7232:5 7244:1 7247:81 7250:1 7256:1 7263:2 7270:1 7271:1 7280:1 7284:1 7291:6 7312:1 7329:2 7337:1 7353:1 7357:1 7361:1 7372:1 7384:1 7387:4 7390:1 7409:2 7411:1 7420:1 7422:10 7434:2 7442:2 7443:1 7444:16 7450:4 7453:1 7454:2 7457:1 7459:1 7473:1 7478:1 7487:1 7494:1 7504:3 7525:3 7540:2 7543:1 7550:6 7554:1 7556:3 7558:1 7560:2 7563:1 7564:2 7568:1 7572:3 7574:2 7577:1 7578:1 7579:2 7582:5 7583:6 7584:1 7609:2 7641:1 7642:1 7647:2 7652:1 7656:1 7668:1 7670:1 7678:1 7687:1 7692:1 7700:1 7701:1 7707:1 7710:2 7711:1 7731:4 7737:1 7742:1 7743:1 7769:1 7770:3 7783:1 7803:1 7808:1 7835:2 7838:1 7841:2 7843:2 7849:1 7868:1 7874:1 7878:1 7880:1 7900:2 7912:1 7913:1 7915:1 7923:1 7924:1 7930:1 7940:1 7952:1 7957:3 7988:2 7998:1 8000:1 8009:1 8012:3 8013:3 8017:2 8023:2 8042:1 8050:1 8055:1 8056:2 8057:1 8058:5 8065:2 8072:1 8075:2 8080:2 8081:1 8087:1 8094:3 8096:1 8098:1 8100:1 8105:3 8113:1 8116:1 8119:2 8128:2 8135:5 8137:1 8138:4 8146:1 8152:1 8163:1 8167:1 8168:1 8189:2 8192:3 8194:2 8196:5 8199:2 8200:1 8207:1 8211:1 8214:1 8231:1 8245:1 8247:6 8248:1 8253:2 8263:1 8267:2 8272:1 8280:2 8296:1 8319:1 8324:1 8333:1 8339:1 8341:1 8346:1 8347:1 8358:2 8360:1 8368:1 8371:1 8382:1 8383:5 8387:7 8390:1 8391:1 8399:2 8411:1 8414:1 8415:2 8421:3 8431:1 8434:1 8437:5 8441:1 8456:2 8460:1 8491:2 8496:1 8507:1 8513:1 8520:3 8522:2 8524:1 8528:1 8532:1 8533:3 8539:1 8542:2 8546:2 8552:9 8554:1 8556:1 8559:1 8573:1 8576:1 8591:1 8606:1 8616:6 8623:1 8626:2 8634:1 8648:2 8651:1 8664:1 8669:1 8678:1 8712:1 8732:2 8742:1 8743:1 8744:1 8755:1 8770:1 8772:1 8776:1 8779:3 8780:2 8785:3 8786:2 8794:1 8797:3 8809:4 8821:1 8832:1 8840:1 8843:1 8848:1 8858:1 8859:1 8860:1 8872:1 8886:1 8899:1 8901:2 8909:2 8919:1 8923:1 8926:1 8928:2 8937:1 8953:1 8955:1 8959:2 8967:1 8968:1 8971:3 8974:1 8980:1 8983:1 8986:1 8990:1 8993:1 8994:2 8996:1 9006:3 9019:1 9025:2 9026:2 9041:1 9051:1 9067:2 9072:1 9084:1 9085:1 9090:1 9100:2 9103:2 9107:1 9113:1 9114:1 9117:1 9122:4 9124:1 9125:1 9129:2 9143:1 9159:1 9162:1 9165:1 9177:1 9180:2 9183:1 9185:1 9189:1 9191:4 9204:1 9215:1 9228:1 9234:1 9237:1 9238:1 9251:8 9252:4 9253:1 9258:1 9260:26 9261:2 9268:1 9275:1 9279:1 9283:1 9295:8 9303:1 9308:1 9309:1 9329:1 9331:1 9333:1 9334:1 9337:1 9340:2 9347:1 9357:1 9358:1 9360:2 9370:1 9378:1 9380:1 9385:1 9388:6 9390:1 9394:1 9404:1 9406:11 9408:1 9429:1 9432:1 9443:2 9444:5 9449:1 9456:2 9461:1 9474:1 9478:2 9486:1 9492:1 9499:3 9508:3 9512:2 9522:1 9525:1 9534:2 9548:3 9555:1 9560:1 9569:1 9591:1 9594:6 9596:3 9597:1 9605:2 9606:1 9607:1 9612:1 9613:1 9624:12 9625:1 9626:1 9627:3 9632:2 9641:2 9655:1 9657:1 9659:1 9675:9 9683:4 9693:1 9698:1 9704:2 9712:1 9719:1 9721:7 9754:1 9759:1 9780:1 9786:1 9787:1 9788:1 9795:2 9796:1 9798:2 9813:2 9815:1 9816:1 9817:1 9818:1 9822:2 9826:1 9829:1 9842:1 9851:1 9859:1 9865:3 9870:2 9879:2 9881:1 9884:1 9886:1 9888:1 9890:1 9904:1 9910:3 9916:1 9917:1 9918:1 9920:1 9924:5 9926:2 9929:1 9936:1 9940:1 9943:1 9948:1 9952:1 9959:2 9963:1 9968:1 9980:2 9983:1 9992:2 10001:1 10007:1 10009:2 10010:1 10013:2 10017:1 10039:1 10044:3 10045:1 10049:1 10057:1 10058:1 10059:4 10068:2 10070:1 10075:1 10086:1 10092:1 10098:1 10105:3 10111:5 10115:1 10124:2 10125:2 10127:1 10129:7 10130:1 10147:1 10160:1 10163:1 10169:1 10175:1 10193:5 10200:2 10204:4 10212:2 10215:1 10223:1 10230:1 10243:1 10254:1 10262:1 10263:2 10271:3 10272:4 10280:1 10283:1 10286:1 10297:1 10298:1 10301:1 10306:1 10315:1 10318:1 10334:1 10335:1 10349:4 10356:1 10376:3 10377:2 10378:1 10380:1 10398:3 10399:3 10408:2 10409:4 10415:1 10427:1 10442:4 10459:41 10463:1 10468:3 10474:1 10479:20 10484:12 10485:1 10494:1 10504:1 10510:1 10515:1 10551:1 10554:4 10564:1 10567:2 10570:1 10573:7 10595:2 10632:2 10637:1 10639:4 10640:1 10642:1 10649:1 10654:1 10683:1 10685:2 10709:1 10720:1 10721:7 10723:1 10725:3 10740:1 10742:2 10748:1 10749:1 10756:16 10764:1 10769:1 10773:1 10777:1 10787:1 10790:2 10797:1 10810:1 10820:4 10822:1 10824:1 10845:1 10857:1 10865:2 10868:1 10877:1 10886:1 10888:1 10892:2 10902:1 10922:1 10925:1 10930:1 10934:1 10945:1 10948:1 10950:1 10957:1 10963:3 10968:1 10972:1 10975:1 10978:2 10982:1 10990:1 10996:1 11005:2 11010:1 11013:1 11017:1 11032:3 11042:1 11046:2 11050:2 11055:2 11058:48 11075:1 11081:2 11082:1 11085:1 11088:1 11099:1 11117:1 11123:1 11126:1 11132:1 11140:1 11159:1 11164:1 11175:1 11180:3 11195:1 11197:16 11200:9 11203:1 11207:1 11267:1 11272:2 11273:2 11276:1 11280:2 11281:1 11287:1 11289:1 11310:2 11311:1 11313:1 11319:1 11321:7 11326:2 11328:1 11330:2 11333:1 11344:1 11357:1 11362:2 11376:3 11379:1 11384:1 11391:1 11403:3 11405:2 11407:1 11408:1 11415:2 11416:2 11417:1 11420:3 11433:1 11439:1 11446:4 11448:1 11456:1 11457:1 11458:1 11459:2 11473:2 11496:1 11520:1 11523:2 11527:1 11540:1 11557:1 11559:1 11563:2 11565:1 11568:4 11573:4 11588:1 11599:1 11600:1 11601:1 11607:1 11608:1 11623:1 11634:1 11636:1 11637:1 11639:1 11641:4 11643:2 11646:1 11649:1 11652:1 11654:1 11656:3 11658:4 11664:1 11666:1 11667:1 11668:1 11669:2 11678:1 11679:3 11684:2 11687:3 11689:2 11698:2 11702:5 11715:1 11720:1 11721:1 11724:1 11730:9 11732:1 11735:2 11736:3 11739:1 11742:1 11761:1 11765:1 11770:1 11773:1 11782:2 11788:1 11800:1 11829:2 11831:3 11835:1 11842:1 11859:1 11864:1 11866:1 11877:2 11881:1 11885:3 11888:1 11895:1 11898:2 11914:1 11921:1 11937:1 11951:2 11958:1 11978:2 11980:1 11992:1 12000:1 12019:1 12026:1 12037:1 12043:1 12050:2 12052:7 12053:1 12055:1 12063:1 12092:1 12102:1 12116:1 12130:1 12132:1 12138:1 12161:1 12167:1 12172:1 12173:1 12186:1 12190:1 12210:1 12228:1 12234:1 12245:2 12251:1 12256:2 12260:2 12274:1 12276:1 12280:4 12284:1 12289:2 12305:1 12306:1 12328:1 12331:1 12348:1 12355:1 12357:3 12365:2 12371:1 12392:1 12397:2 12403:1 12405:1 12415:1 12433:1 12435:4 12437:1 12439:1 12440:1 12451:2 12454:1 12461:3 12466:1 12470:1 12471:1 12480:1 12481:1 12497:3 12499:1 12513:1 12519:1 12530:1 12532:1 12535:2 12537:2 12541:1 12556:2 12557:2 12558:2 12559:1 12565:1 12566:3 12572:1 12577:2 12578:1 12580:2 12581:2 12582:1 12585:3 12591:1 12592:1 12603:1 12610:2 12611:1 12613:1 12617:1 12621:1 12640:1 12642:3 12645:1 12648:1 12671:1 12672:3 12678:3 12687:1 12688:3 12699:1 12703:1 12709:1 12710:1 12712:1 12713:1 12720:1 12722:1 12723:2 12726:1 12728:2 12731:4 12739:1 12747:1 12752:1 12754:1 12759:1 12769:1 12772:2 12779:1 12797:1 12808:1 12809:1 12825:1 12828:4 12836:2 12837:1 12838:1 12856:1 12857:1 12858:1 12866:1 12876:1 12877:3 12893:1 12901:2 12914:1 12918:3 12919:1 12922:1 12928:1 12938:1 12962:5 12967:1 12970:1 12977:2 12978:3 12983:1 12986:1 12989:1 12992:1 12993:2 13001:1 13005:1 13018:1 13019:4 13021:1 13028:1 13041:1 13048:1 13052:2 13056:3 13058:1 13072:2 13075:1 13087:1 13100:1 13102:2 13106:1 13108:1 13121:1 13136:2 13141:3 13142:1 13143:3 13153:1 13156:1 13170:1 13179:1 13186:1 13189:1 13191:2 13192:1 13197:1 13200:4 13203:4 13207:7 13208:1 13212:1 13214:1 13219:1 13220:1 13223:1 13231:2 13236:1 13237:1 13238:7 13239:1 13240:1 13247:1 13250:1 13256:3 13262:1 13266:1 13269:2 13307:1 13338:1 13339:1 13358:3 13367:1 13370:6 13383:1 13386:1 13388:1 13402:1 13426:4 13432:1 13446:2 13448:2 13459:1 13462:1 13468:1 13481:1 13483:3 13485:3 13491:3 13506:3 13508:1 13512:1 13513:1 13516:1 13517:5 13534:2 13538:1 13546:1 13556:1 13567:1 13573:1 13574:1 13582:1 13583:1 13585:1 13586:2 13608:1 13627:6 13628:2 13631:1 13639:1 13642:1 13645:1 13646:2 13652:3 13655:1 13659:1 13660:2 13662:4 13668:1 13670:2 13672:1 13677:2 13682:1 13684:2 13698:1 13703:2 13710:1 13727:1 13735:2 13753:1 13759:1 13769:1 13783:2 13789:6 13812:1 13817:1 13825:2 13826:1 13832:1 13846:1 13853:1 13855:1 13856:2 13861:1 13866:8 13876:1 13891:1 13899:4 13900:1 13902:2 13904:3 13907:2 13911:1 13912:3 13913:5 13915:1 13918:1 13921:1 13922:1 13924:1 13926:2 13927:1 13934:2 13939:15 13942:2 13944:3 13947:1 13948:8 13950:2 13956:1 13958:1 13959:2 13981:1 13983:3 13999:1 14028:1 14049:1 14051:8 14055:1 14058:4 14059:1 14060:1 14063:1 14064:1 14077:1 14090:1 14095:3 14100:8 14105:1 14108:1 14112:2 14113:1 14135:1 14140:1 14142:1 14148:1 14151:2 14172:6 14186:1 14188:2 14192:1 14199:2 14205:1 14212:3 14228:1 14238:1 14258:1 14261:1 14265:1 14271:2 14273:1 14278:1 14279:1 14284:1 14286:1 14288:1 14293:1 14298:7 14311:1 14338:1 14344:1 14346:2 14349:1 14353:1 14361:1 14362:1 14363:3 14366:1 14371:1 14372:2 14374:2 14376:1 14379:4 14383:1 14411:2 14413:1 14429:2 14445:1 14446:1 14470:2 14472:1 14478:1 14479:1 14492:2 14498:1 14511:1 14519:1 14527:3 14532:1 14535:1 14561:1 14572:1 14575:3 14599:1 14603:1 14618:2 14624:3 14625:3 14631:1 14636:1 14637:5 14641:5 14651:8 14652:1 14656:1 14663:1 14664:1 14672:1 14687:1 14694:3 14698:3 14701:3 14705:1 14706:1 14736:1 14739:3 14747:2 14756:1 14770:5 14775:1 14779:2 14780:1 14781:1 14790:1 14795:1 14796:1 14807:1 14811:7 14815:1 14827:1 14828:7 14832:1 14845:1 14846:1 14850:1 14852:1 14853:1 14856:1 14858:1 14868:1 14881:1 14882:1 14884:1 14889:3 14895:1 14909:1 14916:1 14933:2 14947:1 14957:1 14981:1 14995:1 15003:2 15004:1 15018:1 15025:4 15040:3 15048:1 15049:1 15051:1 15052:1 15055:2 15064:1 15066:1 15069:1 15086:1 15087:1 15089:1 15096:2 15097:1 15110:5 15113:1 15116:1 15120:1 15122:1 15128:1 15130:2 15135:2 15139:1 15142:2 15149:3 15151:1 15156:2 15163:1 15164:1 15166:1 15170:5 15171:13 15190:1 15195:1 15210:1 15215:1 15226:1 15230:1 15232:5 15240:1 15241:1 15249:2 15254:1 15256:1 15262:1 15265:2 15267:2 15268:1 15284:1 15287:1 15293:1 15294:1 15304:2 15305:1 15308:1 15311:1 15331:1 15337:1 15342:1 15351:1 15354:1 15356:2 15363:1 15370:1 15396:1 15404:5 15411:1 15413:1 15452:2 15455:1 15457:8 15458:6 15461:1 15466:1 15478:1 15490:3 15493:1 15499:1 15511:8 15513:1 15514:1 15516:1 15521:6 15525:1 15527:1 15532:7 15537:1 15545:3 15549:1 15560:1 15572:2 15574:1 15580:1 15582:7 15583:2 15584:2 15587:1 15592:1 15596:1 15598:15 15602:1 15607:1 15608:4 15614:1 15616:2 15618:2 15619:1 15631:1 15635:2 15643:4 15651:1 15658:1 15661:2 15678:3 15679:1 15681:1 15686:1 15693:1 15695:1 15698:1 15703:1 15710:4 15721:3 15727:1 15730:2 15741:1 15753:1 15760:1 15764:1 15773:1 15774:1 15776:2 15797:2 15805:1 15806:3 15820:1 15827:1 15865:2 15868:1 15873:1 15876:1 15878:1 15882:7 15886:4 15890:2 15922:1 15936:1 15940:1 15943:1 15949:1 15950:2 15956:1 15957:1 15960:1 15962:3 15965:1 15966:3 15969:1 15983:2 15990:1 16001:1 16019:2 16020:2 16023:1 16029:1 16032:1 16036:2 16057:2 16059:1 16060:2 16065:1 16067:1 16071:1 16073:1 16101:1 16109:1 16115:1 16122:2 16123:3 16125:1 16132:1 16136:1 16145:2 16147:1 16154:1 16157:2 16175:4 16178:1 16181:1 16185:1 16202:1 16232:1 16274:1 16275:2 16278:1 16297:1 16299:3 16301:1 16305:3 16308:1 16309:1 16314:1 16319:1 16329:3 16333:2 16345:2 16350:1 16363:1 16364:1 16369:2 16374:1 16379:1 16395:1 16399:1 16403:1 16406:1 16408:1 16425:1 16462:1 16471:1 16475:1 16509:1 16535:3 16541:1 16558:1 16560:3 16562:1 16575:1 16579:2 16583:1 16587:1 16589:1 16591:1 16592:2 16594:1 16613:1 16624:1 16630:1 16636:1 16652:2 16662:1 16668:1 16670:1 16674:1 16679:2 16687:1 16690:1 16693:1 16705:1 16706:1 16707:1 16745:1 16746:2 16753:1 16755:1 16756:3 16763:3 16766:1 16776:1 16785:2 16792:1 16793:1 16807:1 16810:2 16819:1 16820:1 16823:1 16825:1 16826:2 16827:1 16842:1 16853:2 16875:1 16880:1 16886:6 16891:2 16898:1 16900:1 16902:2 16905:2 16915:1 16917:3 16919:1 16922:2 16940:1 16948:1 16951:1 16953:2 16957:1 16961:5 16962:2 16972:1 16978:3 16981:2 16983:1 16993:2 16999:2 17000:3 17002:3 17003:1 17006:1 17008:1 17009:2 17015:1 17021:2 17024:2 17029:1 17030:2 17031:5 17032:1 17034:3 17043:1 17050:1 17054:3 17058:1 17060:1 17067:1 17071:2 17076:2 17088:1 17089:1 17093:1 17097:3 17108:1 17113:1 17115:2 17119:2 17120:3 17125:1 17137:2 17139:2 17143:2 17144:1 17154:1 17164:3 17169:1 17175:1 17190:1 17196:1 17199:1 17202:4 17204:2 17207:1 17208:5 17209:2 17212:1 17220:1 17227:1 17235:1 17250:1 17260:1 17267:1 17278:1 17282:1 17304:1 17311:2 17317:3 17318:1 17319:1 17336:1 17340:1 17341:1 17345:1 17349:1 17380:1 17382:1 17383:1 17384:1 17399:4 17404:1 17405:1 17414:1 17415:1 17418:1 17422:1 17427:2 17432:1 17434:13 17455:1 17468:2 17470:1 17481:1 17486:1 17511:2 17513:1 17529:1 17533:1 17540:2 17561:1 17565:1 17570:1 17572:1 17582:1 17599:1 17602:2 17603:2 17604:3 17615:1 17616:1 17629:2 17637:1 17640:6 17662:1 17667:1 17675:1 17695:1 17713:2 17718:1 17733:1 17750:1 17753:1 17754:1 17757:1 17769:1 17781:8 17784:4 17789:1 17791:1 17792:2 17793:1 17796:1 17820:1 17826:1 17827:1 17828:1 17833:1 17835:1 17844:7 17861:2 17873:1 17878:2 17891:3 17894:1 17897:35 17902:2 17933:1 17935:1 17936:1 17947:4 17960:2 17961:1 17967:2 17974:2 17978:1 18044:2 18053:1 18056:1 18069:1 18073:4 18080:3 18084:1 18098:1 18106:1 18107:3 18115:2 18117:2 18119:1 18133:1 18141:2 18144:1 18145:2 18151:1 18153:1 18161:1 18177:1 18180:1 18189:1 18190:2 18196:3 18217:1 18219:1 18232:1 18236:3 18255:6 18257:4 18258:1 18259:2 18261:2 18262:1 18270:6 18277:1 18278:1 18281:1 18282:1 18283:1 18288:2 18294:2 18295:1 18296:1 18303:1 18305:2 18306:1 18309:3 18311:2 18313:1 18325:1 18332:1 18358:1 18367:1 18370:2 18372:1 18373:1 18392:1 18394:1 18401:1 18402:1 18404:1 18412:2 18414:1 18415:2 18417:6 18426:1 18434:1 18435:1 18437:1 18438:1 18449:1 18460:1 18461:1 18463:1 18465:1 18468:1 18474:1 18482:1 18489:7 18498:1 18499:10 18505:1 18513:1 18521:1 18522:2 18524:2 18546:1 18549:1 18550:1 18558:1 18559:1 18562:4 18573:1 18575:1 18576:1 18577:1 18580:4 18582:1 18583:1 18584:1 18606:1 18608:1 18616:3 18628:1 18645:2 18647:1 18652:1 18656:5 18666:3 18670:6 18681:1 18687:1 18718:1 18719:1 18728:1 18730:1 18762:1 18763:13 18785:3 18794:1 18799:1 18830:7 18835:2 18844:1 18848:1 18866:1 18881:2 18882:1 18891:2 18899:1 18909:1 18913:1 18916:4 18917:1 18927:3 18935:1 18937:1 18942:1 18947:2 18957:1 18958:4 18965:1 18968:1 18976:1 18996:1 18997:1 19001:1 19005:5 19015:2 19022:1 19045:1 19058:1 19060:1 19067:1 19082:1 19086:1 19095:1 19112:1 19134:1 19147:1 19154:1 19159:2 19161:2 19168:1 19175:1 19176:4 19182:2 19185:1 19188:2 19190:1 19205:1 19206:1 19208:1 19210:1 19212:1 19217:3 19221:3 19231:1 19237:1 19242:2 19244:4 19260:2 19262:1 19263:1 19266:1 19268:1 19280:1 19295:1 19302:1 19306:1 19322:1 19324:1 19339:1 19340:2 19346:2 19347:2 19361:3 19383:1 19394:1 19397:1 19405:2 19414:1 19426:2 19429:2 19430:1 19431:1 19435:1 19467:2 19469:1 19484:3 19485:1 19489:2 19490:1 19495:2 19496:1 19498:1 19502:1 19528:1 19542:4 19543:3 19561:1 19569:2 19572:1 19584:3 19588:3 19594:1 19602:3 19609:1 19615:2 19618:1 19619:1 19629:1 19633:1 19635:1 19639:1 19644:1 19652:1 19654:1 19655:1 19657:1 19660:1 19663:7 19664:1 19669:2 19670:1 19672:1 19674:1 19681:1 19689:1 19700:2 19706:1 19733:2 19734:1 19737:1 19738:2 19746:1 19748:1 19760:1 19768:1 19772:11 19776:2 19779:1 19784:1 19788:1 19799:1 19823:1 19828:1 19857:3 19861:2
5 1:1 2:1 5:1 17:1 28:1 33:1 35:3 65:1 68:3 70:1 71:1 77:1 103:1 105:3 112:1 131:1 136:1 145:1 151:1 160:3 164:1 167:1 178:1 185:3 196:1 200:1 215:1 220:1 221:1 227:1 233:2 246:6 255:1 261:1 264:1 272:2 274:1 276:1 278:1 288:1 289:1 292:1 297:1 312:2 316:1 318:1 337:1 348:6 349:2 352:1 353:1 361:3 365:1 366:1 382:2 390:1 393:3 395:1 399:3 413:1 417:1 418:3 419:1 422:1 434:1 453:1 461:3 477:1 480:2 483:1 485:1 490:1 495:2 510:6 511:1 517:1 525:1 530:1 532:1 540:1 543:1 547:1 559:1 565:1 573:2 574:6 576:1 578:1 592:1 595:1 599:1 600:1 605:1 615:4 625:1 634:2 639:1 641:2 656:1 661:4 669:2 699:2 714:3 720:1 734:1 738:1 749:7 753:1 754:1 763:1 787:1 793:1 797:1 798:1 811:1 825:1 826:4 833:4 834:1 849:2 860:1 861:1 863:1 864:1 865:2 880:10 881:1 901:1 909:1 918:1 920:1 931:2 942:1 943:2 950:2 956:1 960:1 971:5 972:1 980:6 989:1 1007:2 1014:1 1015:1 1017:1 1026:1 1028:1 1032:2 1045:1 1074:1 1078:1 1083:2 1084:1 1104:2 1108:2 1110:1 1113:1 1132:1 1134:2 1138:1 1140:1 1145:3 1157:1 1163:1 1176:1 1177:2 1185:1 1194:2 1213:4 1214:3 1231:1 1232:6 1242:1 1243:1 1252:1 1264:3 1266:1 1274:7 1276:1 1279:3 1286:1 1288:4 1310:7 1312:2 1320:1 1323:1 1324:3 1328:4 1332:1 1335:1 1336:2 1337:3 1340:5 1355:2 1357:3 1362:1 1368:1 1380:4 1385:2 1388:2 1392:1 1403:1 1408:1 1415:1 1421:1 1424:2 1427:4 1434:4 1437:1 1458:1 1463:6 1477:1 1486:1 1493:1 1494:1 1498:1 1504:5 1509:1 1512:1 1519:3 1566:1 1576:2 1578:2 1616:1 1617:1 1622:2 1626:1 1628:1 1635:1 1637:1 1641:1 1643:1 1649:3 1650:1 1653:4 1654:5 1657:5 1658:2 1659:3 1666:4 1669:2 1670:4 1675:2 1677:2 1679:1 1680:1 1681:1 1682:7 1683:2 1685:1 1692:1 1694:1 1700:1 1714:1 1717:1 1721:1 1723:2 1725:1 1732:1 1734:3 1735:1 1742:2 1756:2 1759:1 1765:1 1766:1 1767:1 1769:1 1777:1 1786:1 1807:1 1826:1 1858:1 1859:1 1862:2 1881:1 1884:1 1894:1 1898:1 1901:1 1902:1 1910:3 1911:1 1920:1 1921:1 1923:5 1939:5 1942:1 1952:2 1963:3 1968:2 1970:1 1973:1 1975:1 1978:1 1980:1 1985:1 2012:1 2030:1 2033:1 2035:1 2045:1 2050:3 2060:1 2066:1 2067:1 2068:1 2074:1 2078:2 2088:1 2096:1 2097:11 2099:1 2108:1 2112:12 2123:2 2129:1 2133:1 2138:1 2139:3 2160:1 2175:1 2178:2 2180:1 2185:1 2195:1 2207:1 2218:1 2220:4 2230:1 2231:1 2238:1 2253:1 2255:6 2269:1 2277:1 2280:1 2298:1 2302:1 2325:1 2332:1 2335:1 2337:1 2344:1 2345:1 2356:1 2363:1 2374:2 2383:1 2384:2 2394:3 2397:1 2405:1 2433:1 2435:1 2440:1 2450:1 2453:2 2471:17 2479:1 2490:1 2494:1 2511:1 2521:2 2525:1 2532:1 2535:2 2541:1 2544:1 2558:1 2586:1 2590:1 2594:1 2595:1 2609:2 2622:1 2623:3 2624:1 2627:1 2645:2 2647:2 2652:1 2656:2 2661:1 2663:2 2666:2 2673:1 2674:1 2695:1 2699:1 2712:1 2713:2 2716:3 2717:3 2723:1 2735:2 2742:2 2746:1 2748:1 2750:1 2751:1 2753:1 2757:2 2763:1 2764:1 2791:3 2794:1 2799:1 2801:1 2812:2 2815:2 2816:1 2823:8 2825:1 2836:1 2850:2 2870:1 2876:1 2882:4 2885:1 2891:1 2896:3 2911:1 2913:2 2916:1 2917:3 2918:1 2921:1 2922:2 2923:1 2928:1 2929:2 2939:1 2947:1 2951:1 2954:1 2955:1 2957:11 2972:4 2973:1 2975:3 2976:8 2977:2 2978:4 2979:1 2982:3 2984:3 2990:2 2992:4 2996:1 2999:1 3001:1 3002:1 3006:2 3007:2 3011:2 3014:1 3015:2 3042:1 3051:2 3062:1 3065:1 3082:1 3087:3 3090:1 3095:1 3102:3 3107:1 3117:2 3128:1 3132:1 3137:1 3139:1 3143:1 3148:1 3153:1 3165:3 3169:1 3178:1 3179:1 3180:1 3190:1 3192:2 3194:1 3196:1 3197:2 3222:1 3237:1 3239:1 3243:1 3253:2 3258:2 3263:1 3284:1 3286:1 3287:1 3289:1 3293:1 3323:2 3325:1 3326:1 3355:1 3365:3 3369:1 3371:1 3407:1 3412:1 3429:3 3430:1 3446:1 3467:2 3470:1 3472:1 3475:1 3487:1 3499:1 3500:1 3513:4 3516:4 3521:6 3532:1 3540:1 3544:1 3547:1 3554:1 3567:1 3572:1 3580:1 3587:1 3590:1 3591:5 3594:3 3613:1 3619:1 3621:1 3627:1 3628:2 3640:1 3643:1 3644:1 3650:1 3668:3 3682:3 3687:1 3692:2 3693:2 3694:1 3695:2 3700:1 3704:1 3705:1 3708:2 3711:1 3719:2 3732:3 3735:1 3745:1 3759:1 3761:1 3765:1 3778:2 3794:1 3808:1 3830:1 3838:1 3854:3 3855:20 3857:1 3861:1 3866:1 3868:10 3876:1 3882:2 3899:2 3910:1 3914:20 3926:1 3932:1 3935:1 3941:1 3952:1 3956:1 3958:3 3959:1 3961:2 3965:1 3969:1 3976:1 3977:3 3984:1 4031:1 4049:2 4050:1 4052:2 4063:1 4075:1 4095:1 4102:1 4103:1 4115:1 4134:1 4135:1 4136:2 4142:4 4144:1 4159:1 4161:2 4177:1 4185:1 4190:1 4202:1 4210:3 4214:4 4228:1 4233:1 4239:1 4246:4 4256:1 4258:2 4259:1 4279:5 4282:4 4285:1 4299:1 4300:2 4310:1 4316:1 4345:1 4362:1 4363:1 4364:1 4374:1 4380:3 4385:1 4387:1 4401:1 4414:1 4415:1 4419:6 4423:1 4430:1 4446:3 4455:4 4456:1 4459:1 4462:3 4495:1 4498:1 4532:1 4537:1 4549:1 4558:2 4572:5 4578:3 4585:1 4591:3 4595:1 4596:4 4598:5 4599:3 4601:3 4602:7 4603:4 4605:1 4606:1 4607:3 4609:1 4610:1 4613:1 4630:2 4633:1 4646:1 4648:1 4650:5 4656:5 4660:4 4671:3 4677:1 4696:1 4714:2 4721:1 4725:7 4726:1 4727:22 4731:2 4735:3 4737:1 4739:1 4744:1 4745:1 4752:2 4760:1 4761:2 4766:7 4777:3 4782:1 4783:1 4793:1 4800:1 4809:1 4818:1 4822:2 4828:7 4830:2 4832:1 4836:3 4844:2 4854:1 4859:1 4871:1 4881:1 4883:1 4885:1 4890:1 4891:3 4896:7 4900:1 4901:1 4906:1 4909:1 4934:1 4942:1 4944:1 4948:1 4952:2 4954:1 4983:1 5002:1 5004:1 5012:1 5013:1 5014:1 5017:1 5037:2 5039:1 5058:1 5059:1 5072:1 5074:1 5076:1 5079:1 5099:2 5107:1 5110:1 5112:1 5116:1 5118:1 5119:1 5121:3 5125:1 5141:1 5145:2 5147:1 5152:1 5153:2720 5155:1 5158:2 5159:1 5160:1 5168:3 5171:1 5174:1 5187:1 5188:1 5191:2 5195:1 5196:1 5212:8 5213:2 5230:1 5232:1 5233:1 5237:1 5250:4 5259:1 5260:1 5280:2 5288:1 5293:1 5297:1 5306:1 5311:5 5318:1 5328:1 5334:2 5338:2 5345:2 5358:1 5380:3 5400:1 5404:2 5414:1 5426:1 5427:1 5433:1 5441:2 5444:3 5447:1 5455:1 5482:1 5483:2 5487:1 5494:1 5497:2 5517:1 5526:1 5554:1 5560:1 5562:1 5573:2 5592:1 5612:1 5613:1 5615:1 5616:3 5619:2 5620:1 5643:1 5645:1 5647:1 5658:1 5662:1 5670:2 5683:7 5690:1 5695:1 5698:1 5704:1 5741:1 5754:1 5755:1 5757:1 5775:1 5776:1 5809:1 5825:3 5830:2 5840:1 5845:1 5859:1 5861:3 5864:1 5867:1 5878:1 5883:1 5909:2 5916:1 5921:5 5930:3 5931:1 5934:5 5952:1 5956:1 5959:1 5967:4 5973:1 5981:1 6003:2 6010:1 6013:4 6016:4 6020:11 6025:1 6026:1 6029:1 6032:1 6035:3 6040:1 6053:1 6054:2 6055:1 6064:1 6069:1 6087:1 6095:1 6115:1 6118:1 6120:1 6133:1 6135:1 6139:1 6142:6 6155:3 6160:1 6178:2 6189:1 6192:1 6212:3 6215:1 6219:2 6221:2 6240:1 6244:1 6262:3 6273:1 6281:1 6301:2 6303:1 6304:1 6311:1 6317:1 6322:1 6345:1 6357:1 6375:4 6377:1 6384:1 6385:1 6387:1 6392:13 6395:1 6400:1 6405:2 6410:1 6434:2 6440:1 6444:1 6457:1 6459:2 6460:1 6468:1 6483:5 6485:1 6532:1 6533:2 6536:1 6538:10 6545:3 6551:1 6563:1 6564:2 6571:2 6572:6 6573:1 6576:2 6581:5 6582:2 6584:1 6586:1 6587:4 6590:2 6594:7 6597:1 6602:1 6604:1 6605:3 6606:1 6607:2 6608:1 6617:1 6637:4 6643:1 6649:1 6652:11 6658:1 6664:1 6665:2 6672:1 6690:2 6691:2 6693:1 6695:1 6707:2 6711:1 6743:3 6744:1 6749:1 6758:1 6764:2 6767:1 6774:2 6788:1 6797:1 6813:1 6819:1 6828:7 6830:1 6839:1 6844:1 6845:3 6860:17 6866:1 6870:1 6877:3 6883:23 6886:4 6892:1 6915:2 6922:1 6947:4 6959:1 6967:2 6974:2 6978:1 6983:2 6990:2 6996:2 6998:1 6999:1 7001:1 7007:1 7013:1 7021:7 7034:1 7037:1 7043:1 7050:1 7052:2 7060:1 7072:1 7080:1 7091:1 7099:2 7114:1 7127:1 7134:5 7140:1 7145:2 7153:1 7155:1 7169:1 7181:1 7183:1 7186:1 7192:1 7198:1 7201:1 7204:1 7218:1 7220:1 7221:1 7232:5 7244:2 7247:84 7250:1 7256:1 7263:2 7270:1 7271:1 7280:1 7284:1 7291:6 7312:1 7329:2 7337:1 7353:1 7357:1 7361:1 7372:1 7384:1 7387:4 7390:1 7409:2 7411:1 7420:1 7422:10 7431:1 7434:2 7442:2 7443:1 7444:17 7450:4 7453:1 7454:2 7457:1 7459:1 7473:1 7478:1 7487:1 7494:1 7504:3 7525:3 7540:2 7543:1 7550:6 7554:1 7556:3 7558:1 7560:2 7563:1 7564:2 7568:1 7572:3 7574:2 7577:1 7578:1 7579:2 7582:5 7583:7 7584:1 7609:2 7636:1 7641:1 7642:1 7647:2 7652:1 7656:1 7668:1 7670:1 7678:1 7687:1 7692:1 7700:1 7701:1 7707:1 7710:2 7711:1 7731:4 7737:1 7742:1 7743:1 7769:1 7770:3 7783:1 7803:1 7808:1 7835:2 7838:1 7841:2 7843:2 7849:1 7868:1 7874:1 7878:1 7880:1 7900:2 7912:1 7913:1 7915:1 7923:1 7924:1 7930:1 7940:1 7952:1 7957:3 7988:2 7998:1 8000:1 8009:1 8012:3 8013:3 8017:2 8023:2 8042:1 8050:1 8055:1 8056:2 8057:1 8058:5 8065:2 8072:1 8075:2 8080:3 8081:1 8087:1 8094:3 8096:1 8098:1 8100:1 8105:3 8113:1 8116:1 8119:2 8128:2 8135:5 8137:1 8138:5 8146:2 8152:1 8163:1 8167:1 8168:1 8189:2 8192:3 8194:2 8196:5 8199:2 8200:1 8207:1 8211:1 8214:1 8231:1 8245:1 8247:6 8248:1 8253:2 8263:1 8267:2 8272:1 8280:2 8296:1 8319:1 8324:1 8333:1 8339:1 8341:1 8346:1 8347:1 8358:2 8360:1 8368:1 8371:1 8382:1 8383:5 8387:8 8390:1 8391:1 8399:2 8411:1 8414:1 8415:2 8421:3 8431:1 8434:1 8437:6 8441:1 8454:1 8456:2 8460:1 8491:2 8496:1 8507:1 8511:1 8513:1 8520:3 8522:2 8524:1 8528:1 8532:1 8533:4 8539:1 8542:2 8546:2 8552:9 8554:1 8556:1 8559:1 8571:1 8573:1 8576:1 8591:1 8606:1 8616:6 8623:1 8626:2 8634:1 8648:2 8651:1 8664:1 8669:1 8678:1 8712:1 8732:2 8742:1 8743:1 8744:1 8755:1 8770:1 8772:1 8776:1 8779:3 8780:2 8785:3 8786:2 8794:1 8797:3 8809:4 8821:1 8832:1 8840:1 8843:1 8848:1 8858:1 8859:1 8860:1 8872:1 8886:1 8899:1 8901:2 8909:2 8919:2 8923:1 8926:1 8928:2 8937:1 8953:1 8955:1 8959:2 8961:1 8967:1 8968:1 8971:3 8974:1 8980:1 8983:1 8986:1 8990:1 8993:1 8994:2 8996:1 9006:3 9019:1 9025:2 9026:2 9041:1 9051:1 9067:2 9072:1 9084:1 9085:1 9090:1 9100:2 9103:2 9107:1 9113:1 9114:1 9117:1 9122:4 9124:1 9125:1 9129:2 9143:1 9159:1 9162:1 9165:1 9177:1 9180:2 9183:1 9185:1 9189:1 9191:4 9204:1 9215:1 9228:1 9234:1 9237:1 9238:1 9251:8 9252:4 9253:1 9258:1 9260:26 9261:2 9268:1 9275:1 9279:1 9283:1 9295:9 9303:1 9308:1 9309:1 9329:1 9331:1 9333:1 9334:1 9337:1 9340:2 9347:1 9357:1 9358:1 9360:2 9370:1 9378:1 9380:1 9385:1 9388:6 9390:1 9394:1 9404:1 9406:11 9408:1 9429:1 9432:1 9443:2 9444:5 9449:1 9456:2 9461:1 9474:1 9478:2 9486:1 9492:1 9499:3 9508:3 9512:2 9522:1 9525:1 9534:2 9548:3 9555:2 9560:1 9569:1 9591:1 9594:6 9596:3 9597:1 9605:2 9606:1 9607:1 9612:1 9613:1 9624:12 9625:1 9626:1 9627:3 9629:1 9632:2 9641:2 9655:1 9657:1 9659:1 9675:9 9683:4 9693:1 9698:1 9704:2 9712:1 9719:1 9721:7 9752:1 9754:1 9759:1 9780:1 9786:1 9787:1 9788:1 9795:2 9796:1 9798:2 9813:2 9815:1 9816:1 9817:1 9818:1 9822:2 9826:1 9829:1 9842:1 9851:1 9859:1 9865:3 9870:2 9879:2 9881:1 9884:1 9886:1 9888:1 9890:1 9904:1 9910:3 9916:2 9917:1 9918:1 9920:1 9924:5 9926:2 9929:1 9936:1 9940:1 9943:1 9948:1 9952:1 9959:2 9963:1 9968:1 9980:2 9983:1 9992:2 10001:1 10007:1 10009:2 10010:1 10013:2 10017:1 10039:1 10044:3 10045:1 10049:1 10057:1 10058:1 10059:4 10068:2 10070:1 10075:1 10086:1 10092:1 10098:1 10105:3 10111:5 10115:1 10124:2 10125:2 10127:1 10129:7 10130:1 10147:1 10160:1 10163:1 10169:1 10175:1 10193:5 10200:2 10204:5 10212:2 10215:1 10223:1 10230:1 10243:1 10254:1 10262:1 10263:2 10271:3 10272:4 10280:1 10283:1 10286:1 10297:1 10298:1 10301:1 10306:1 10315:1 10318:1 10323:1 10334:1 10335:1 10349:4 10356:1 10376:3 10377:2 10378:1 10380:1 10398:3 10399:3 10408:2 10409:4 10415:1 10427:1 10442:4 10459:43 10463:1 10468:3 10474:1 10479:21 10484:13 10485:1 10494:1 10504:1 10510:1 10515:1 10551:1 10554:4 10564:1 10567:2 10570:1 10573:8 10595:2 10619:1 10632:2 10637:1 10639:4 10640:1 10642:1 10649:1 10654:1 10683:1 10685:2 10709:1 10720:1 10721:7 10723:1 10724:1 10725:3 10740:1 10742:2 10748:1 10749:1 10756:17 10764:1 10769:1 10773:1 10777:1 10787:1 10790:2 10797:1 10810:1 10820:4 10822:1 10824:1 10845:1 10857:1 10865:2 10868:1 10877:1 10886:1 10888:1 10892:2 10902:1 10917:1 10922:1 10925:1 10930:1 10934:1 10945:1 10948:1 10950:1 10957:1 10963:3 10968:1 10972:1 10975:1 10978:2 10982:1 10990:1 10996:1 11005:2 11010:1 11013:1 11017:1 11032:3 11042:1 11046:2 11050:2 11055:2 11058:48 11075:1 11081:2 11082:1 11085:1 11088:1 11099:1 11117:1 11123:1 11126:1 11132:1 11140:1 11159:2 11164:1 11175:1 11180:3 11195:1 11197:16 11200:9 11203:1 11207:1 11267:1 11272:2 11273:2 11276:1 11280:2 11281:1 11287:1 11289:1 11310:2 11311:1 11313:2 11319:1 11321:7 11326:2 11328:1 11330:2 11333:1 11344:1 11357:1 11362:2 11376:3 11379:1 11384:1 11391:1 11403:3 11405:2 11407:1 11408:1 11415:2 11416:2 11417:1 11420:3 11433:1 11439:1 11446:4 11448:1 11456:1 11457:1 11458:1 11459:2 11473:2 11496:1 11520:1 11523:2 11527:1 11540:1 11557:1 11559:1 11563:2 11565:1 11568:4 11573:4 11588:1 11599:1 11600:1 11601:1 11607:1 11608:1 11623:1 11634:1 11636:1 11637:1 11639:1 11641:4 11643:2 11646:1 11649:1 11652:1 11654:1 11656:3 11658:4 11664:1 11666:1 11667:1 11668:1 11669:2 11678:1 11679:3 11684:3 11687:3 11689:2 11698:2 11702:6 11715:1 11720:1 11721:1 11724:1 11730:9 11732:2 11735:2 11736:3 11739:1 11742:1 11761:1 11765:1 11770:1 11773:1 11782:2 11788:1 11800:1 11829:2 11831:3 11835:1 11842:1 11859:1 11864:1 11866:1 11877:2 11881:1 11885:3 11888:1 11895:1 11898:2 11914:1 11921:1 11937:1 11951:2 11958:1 11978:2 11980:1 11992:1 12000:1 12019:1 12026:1 12037:1 12043:1 12050:2 12052:7 12053:2 12055:1 12063:1 12092:1 12102:1 12116:1 12129:1 12130:1 12132:1 12138:1 12161:1 12167:1 12172:1 12173:1 12186:1 12190:1 12210:1 12228:1 12230:1 12234:1 12245:2 12251:1 12256:2 12260:2 12274:1 12276:1 12280:4 12284:1 12289:2 12305:1 12306:1 12328:1 12331:1 12348:1 12351:1 12355:1 12357:3 12365:2 12371:1 12392:1 12397:2 12403:1 12405:1 12415:1 12433:1 12435:4 12437:1 12439:1 12440:1 12451:2 12454:1 12461:3 12466:1 12470:1 12471:1 12480:1 12481:1 12497:3 12499:1 12513:1 12519:1 12530:1 12532:1 12535:2 12537:2 12541:1 12556:2 12557:2 12558:2 12559:1 12565:1 12566:3 12572:1 12577:2 12578:1 12580:2 12581:2 12582:1 12585:3 12591:1 12592:1 12603:1 12610:2 12611:1 12613:1 12617:1 12621:1 12640:1 12642:3 12645:1 12648:1 12671:1 12672:3 12678:3 12687:1 12688:3 12699:1 12703:1 12709:1 12710:1 12712:1 12713:1 12720:1 12722:1 12723:2 12726:1 12728:2 12731:4 12739:1 12747:1 12752:1 12754:1 12759:1 12769:1 12772:2 12779:1 12797:1 12808:1 12809:1 12813:1 12825:1 12828:5 12836:2 12837:2 12838:1 12856:1 12857:1 12858:1 12866:1 12876:1 12877:3 12893:1 12901:2 12914:1 12918:3 12919:1 12922:1 12928:1 12938:1 12962:5 12967:1 12970:1 12977:2 12978:3 12983:1 12986:1 12989:1 12992:1 12993:2 13001:1 13005:1 13018:1 13019:4 13021:1 13028:1 13041:1 13048:1 13052:2 13056:3 13058:1 13072:2 13075:1 13087:1 13100:1 13102:2 13106:1 13108:1 13121:1 13136:2 13141:3 13142:1 13143:3 13153:1 13156:1 13170:1 13179:1 13186:1 13189:1 13191:2 13192:1 13197:1 13200:4 13203:4 13207:7 13208:1 13212:1 13214:1 13219:1 13220:1 13223:1 13231:2 13236:1 13237:1 13238:7 13239:1 13240:1 13247:1 13249:1 13250:1 13256:3 13262:1 13266:1 13269:2 13307:1 13327:1 13338:1 13339:1 13358:3 13367:1 13370:6 13383:1 13386:1 13388:1 13402:1 13426:4 13432:1 13446:2 13448:2 13459:1 13462:1 13468:1 13481:1 13483:3 13485:3 13491:3 13506:3 13508:1 13512:1 13513:1 13516:1 13517:5 13534:2 13538:1 13546:2 13556:1 13567:1 13572:1 13573:1 13574:1 13582:2 13583:1 13585:1 13586:2 13608:1 13627:6 13628:2 13631:1 13639:1 13642:1 13645:1 13646:2 13652:3 13655:1 13659:1 13660:2 13662:4 13668:1 13670:2 13672:1 13677:2 13682:1 13684:2 13698:1 13703:2 13710:1 13727:1 13735:2 13753:1 13759:1 13769:1 13783:2 13789:7 13812:1 13817:1 13825:2 13826:1 13832:1 13846:1 13853:1 13855:1 13856:2 13861:1 13866:9 13876:1 13891:1 13899:4 13900:1 13902:2 13904:3 13907:2 13911:1 13912:3 13913:5 13915:1 13918:1 13921:1 13922:2 13924:1 13926:2 13927:1 13934:2 13939:15 13942:2 13944:3 13947:1 13948:8 13950:3 13956:2 13958:1 13959:2 13981:1 13983:3 13999:1 14028:1 14049:1 14051:8 14055:1 14058:5 14059:1 14060:1 14063:2 14064:1 14068:1 14077:1 14090:1 14095:3 14100:8 14105:1 14108:1 14112:2 14113:1 14135:1 14140:1 14142:1 14148:1 14151:2 14172:7 14186:1 14188:2 14192:1 14199:2 14205:1 14212:3 14228:1 14238:1 14251:1 14258:1 14261:1 14265:1 14271:2 14273:1 14278:1 14279:1 14284:1 14286:1 14288:1 14293:1 14298:7 14311:1 14338:1 14344:1 14346:2 14349:1 14353:1 14361:1 14362:1 14363:3 14366:2 14371:1 14372:2 14374:2 14376:1 14379:4 14383:1 14411:2 14413:1 14429:2 14445:1 14446:1 14470:2 14472:1 14478:1 14479:1 14492:2 14498:1 14511:1 14519:1 14527:3 14532:1 14535:1 14561:1 14572:1 14575:3 14599:1 14603:1 14618:2 14624:3 14625:3 14631:1 14636:1 14637:5 14641:5 14651:9 14652:1 14656:1 14663:1 14664:1 14672:1 14687:1 14694:4 14698:3 14701:3 14705:1 14706:1 14736:1 14739:3 14747:2 14756:1 14770:5 14775:1 14779:2 14780:1 14781:1 14790:1 14795:1 14796:1 14807:1 14811:7 14815:1 14827:1 14828:7 14832:1 14845:1 14846:1 14850:1 14852:1 14853:1 14856:1 14858:1 14868:1 14881:1 14882:2 14884:1 14888:1 14889:3 14895:1 14909:1 14916:1 14933:2 14947:1 14957:1 14981:1 14995:1 15003:2 15004:1 15018:1 15025:4 15040:3 15048:1 15049:1 15051:1 15052:1 15055:2 15064:1 15066:1 15069:1 15086:1 15087:1 15089:1 15096:3 15097:1 15110:5 15113:1 15116:1 15120:1 15122:1 15128:1 15130:2 15135:2 15139:1 15142:2 15149:3 15151:1 15156:2 15163:1 15164:1 15166:1 15170:6 15171:13 15190:1 15195:1 15210:1 15215:1 15226:1 15230:1 15232:5 15240:1 15241:1 15249:2 15254:1 15256:1 15262:1 15265:2 15267:2 15268:1 15284:1 15287:1 15293:1 15294:1 15304:3 15305:1 15308:1 15311:1 15331:1 15337:1 15342:1 15351:1 15354:1 15356:2 15363:1 15370:1 15396:1 15404:6 15411:1 15413:1 15452:2 15455:1 15457:8 15458:6 15461:1 15466:1 15478:1 15490:3 15493:1 15499:1 15511:8 15513:1 15514:1 15516:1 15521:6 15525:1 15527:1 15532:7 15537:1 15545:3 15549:1 15560:1 15572:2 15574:1 15580:1 15582:9 15583:2 15584:2 15587:1 15592:1 15596:1 15598:15 15602:1 15607:1 15608:4 15614:1 15616:2 15618:2 15619:1 15631:1 15635:2 15643:4 15651:1 15658:1 15661:2 15678:3 15679:1 15681:1 15686:1 15693:1 15695:1 15698:1 15703:1 15710:4 15721:3 15727:1 15730:2 15741:1 15753:1 15760:1 15764:1 15773:1 15774:1 15776:2 15797:2 15805:1 15806:3 15820:1 15827:1 15865:2 15868:1 15873:1 15876:1 15878:1 15882:7 15886:4 15890:2 15922:1 15936:1 15940:1 15943:1 15949:1 15950:2 15956:1 15957:1 15960:1 15962:3 15965:1 15966:3 15969:1 15983:2 15990:1 16001:1 16019:2 16020:2 16023:1 16029:1 16032:1 16036:2 16057:2 16059:1 16060:2 16065:1 16067:1 16071:1 16073:1 16077:1 16101:1 16109:1 16115:1 16122:2 16123:3 16125:1 16132:1 16136:1 16145:2 16147:1 16154:1 16157:2 16164:1 16175:4 16178:1 16181:1 16185:1 16202:1 16232:1 16274:1 16275:2 16278:1 16297:1 16299:3 16301:1 16305:3 16308:1 16309:1 16314:1 16319:1 16329:3 16333:3 16345:2 16350:1 16363:1 16364:1 16369:2 16374:1 16379:1 16395:1 16399:1 16403:1 16406:1 16408:1 16425:1 16462:1 16471:1 16475:1 16478:1 16509:1 16535:3 16541:1 16558:1 16560:3 16562:1 16575:1 16579:2 16583:1 16587:1 16589:1 16591:1 16592:2 16594:1 16613:2 16624:1 16630:1 16636:1 16652:2 16662:1 16668:1 16670:1 16674:1 16679:2 16687:1 16690:1 16693:1 16705:1 16706:1 16707:1 16745:1 16746:2 16753:1 16755:1 16756:3 16763:3 16766:1 16776:1 16785:2 16792:1 16793:1 16807:1 16810:2 16819:1 16820:1 16823:1 16825:1 16826:2 16827:1 16842:1 16853:2 16875:1 16880:1 16886:6 16891:2 16898:1 16900:1 16902:2 16905:2 16915:1 16917:4 16919:1 16922:2 16940:1 16948:1 16951:1 16953:2 16957:1 16961:5 16962:2 16972:1 16978:3 16981:2 16983:1 16993:2 16999:2 17000:3 17002:3 17003:1 17006:1 17008:1 17009:2 17015:2 17021:2 17024:2 17029:1 17030:2 17031:6 17032:1 17034:3 17043:1 17050:1 17054:3 17058:1 17060:1 17067:1 17071:2 17076:2 17088:1 17089:1 17093:1 17097:3 17108:1 17113:1 17115:2 17119:2 17120:3 17125:1 17137:2 17139:2 17143:3 17144:1 17154:1 17164:3 17169:2 17175:1 17190:1 17196:1 17199:1 17202:4 17204:2 17207:1 17208:5 17209:2 17212:1 17220:1 17227:1 17235:1 17250:1 17260:1 17267:1 17278:1 17282:1 17304:1 17311:2 17317:3 17318:1 17319:1 17336:1 17340:1 17341:1 17345:1 17349:1 17380:1 17382:1 17383:1 17384:1 17399:4 17404:1 17405:1 17414:1 17415:1 17418:1 17422:1 17427:2 17432:1 17434:14 17455:1 17468:2 17470:1 17481:1 17486:1 17511:2 17513:1 17529:1 17533:1 17540:2 17561:1 17565:1 17570:1 17572:1 17582:1 17599:1 17602:2 17603:2 17604:3 17615:1 17616:1 17629:2 17637:1 17640:6 17662:1 17667:1 17675:1 17695:1 17713:2 17718:1 17733:1 17750:1 17753:1 17754:1 17757:1 17769:1 17781:8 17784:4 17789:1 17791:1 17792:2 17793:1 17796:1 17820:1 17826:1 17827:1 17828:1 17833:1 17835:1 17844:7 17861:2 17873:1 17878:2 17891:3 17894:1 17897:36 17902:2 17933:1 17935:1 17936:1 17947:4 17960:2 17961:1 17967:2 17974:2 17978:1 18031:1 18044:2 18053:1 18056:1 18069:1 18073:4 18080:3 18084:1 18098:1 18106:1 18107:3 18115:3 18117:2 18119:1 18133:1 18141:2 18144:1 18145:2 18151:1 18153:1 18161:1 18177:1 18180:1 18189:1 18190:2 18196:3 18217:1 18219:1 18232:1 18236:3 18255:6 18257:4 18258:1 18259:2 18261:2 18262:1 18270:7 18277:1 18278:1 18281:1 18282:1 18283:1 18288:2 18294:2 18295:1 18296:1 18303:1 18305:2 18306:1 18309:3 18311:2 18313:1 18325:1 18332:1 18358:1 18367:1 18370:2 18372:1 18373:1 18392:1 18394:1 18401:1 18402:1 18404:1 18412:2 18414:1 18415:2 18417:6 18426:1 18434:1 18435:1 18437:1 18438:1 18449:1 18460:1 18461:1 18463:1 18465:1 18468:1 18474:1 18482:1 18489:7 18498:1 18499:11 18505:1 18513:1 18521:1 18522:2 18524:2 18546:1 18549:1 18550:1 18558:1 18559:1 18562:4 18572:1 18573:1 18575:1 18576:1 18577:1 18580:4 18582:1 18583:1 18584:1 18606:1 18608:1 18616:3 18628:1 18645:2 18647:1 18652:1 18656:5 18666:3 18670:6 18681:1 18687:1 18718:1 18719:1 18728:1 18730:1 18762:1 18763:13 18785:3 18794:1 18799:1 18830:7 18835:2 18844:1 18848:1 18866:1 18881:2 18882:1 18891:2 18899:1 18909:1 18913:1 18916:4 18917:1 18921:1 18927:3 18935:1 18937:1 18942:1 18947:2 18957:1 18958:4 18965:1 18968:1 18976:1 18996:1 18997:1 19001:1 19005:5 19015:2 19022:1 19045:1 19058:1 19060:1 19067:1 19082:1 19086:1 19095:1 19112:1 19134:1 19147:1 19154:1 19159:2 19161:2 19168:1 19175:1 19176:4 19182:2 19185:1 19188:2 19190:1 19205:1 19206:1 19208:1 19210:1 19212:1 19217:3 19221:3 19231:1 19237:1 19242:2 19244:4 19260:2 19262:1 19263:1 19266:1 19268:1 19280:1 19295:1 19302:2 19306:1 19322:1 19324:1 19339:1 19340:2 19346:2 19347:2 19361:3 19383:1 19394:1 19397:1 19405:2 19414:1 19426:2 19429:2 19430:1 19431:1 19435:1 19467:2 19469:1 19484:3 19485:1 19489:2 19490:1 19495:2 19496:1 19498:1 19502:1 19516:1 19528:1 19529:1 19542:4 19543:4 19561:1 19569:2 19572:1 19584:3 19588:3 19594:1 19602:3 19609:1 19615:2 19618:1 19619:1 19629:1 19633:1 19635:1 19639:1 19644:1 19652:1 19654:1 19655:1 19657:1 19660:1 19663:7 19664:1 19669:2 19670:1 19672:1 19674:1 19681:1 19689:1 19695:1 19700:2 19706:1 19733:2 19734:1 19737:1 19738:2 19746:1 19748:1 19760:1 19768:1 19772:11 19776:2 19779:1 19784:1 19788:1 19799:1 19823:1 19828:1 19857:3 19861:2
5 1:1 2:1 5:1 17:1 28:1 33:1 35:3 65:1 68:3 70:1 71:1 77:1 103:1 105:3 112:1 131:1 136:1 145:1 151:1 160:3 164:1 167:1 178:1 185:3 196:1 200:1 215:1 220:1 221:1 227:1 233:2 246:6 255:1 261:1 264:1 272:2 274:1 276:1 278:1 288:1 289:1 292:1 297:1 312:2 316:1 318:1 337:1 348:6 349:2 352:1 353:1 361:3 365:1 366:1 382:2 390:1 393:3 395:1 399:3 413:1 417:1 418:3 419:1 422:1 434:1 453:1 461:3 477:1 480:2 483:1 485:1 490:1 495:2 510:6 511:1 517:1 525:1 530:1 532:1 540:1 543:1 547:1 559:1 565:1 573:2 574:6 576:1 578:1 592:2 595:1 599:1 600:1 605:1 615:4 625:1 634:2 639:1 641:2 656:2 661:4 669:2 694:1 699:2 714:3 720:1 734:1 738:1 749:7 753:1 754:1 763:1 780:1 787:1 793:1 797:1 798:1 811:1 825:1 826:4 833:4 834:1 849:2 860:1 861:1 863:1 864:1 865:2 880:10 881:1 901:1 909:1 918:1 920:1 931:2 942:1 943:2 950:2 956:1 960:1 971:5 972:1 980:6 989:1 1007:2 1014:1 1015:1 1017:1 1026:1 1028:1 1032:2 1045:1 1074:1 1078:1 1083:2 1084:1 1104:2 1108:2 1110:1 1113:1 1132:1 1134:2 1138:1 1140:1 1145:3 1157:1 1163:1 1176:1 1177:2 1185:1 1194:2 1213:4 1214:3 1231:1 1232:6 1242:1 1243:1 1252:1 1264:3 1266:1 1274:7 1276:1 1279:3 1286:1 1288:4 1310:7 1312:2 1320:1 1323:1 1324:4 1328:4 1332:1 1335:1 1336:2 1337:4 1340:5 1355:2 1357:3 1362:1 1368:1 1380:4 1385:2 1388:2 1392:1 1403:1 1408:1 1415:1 1421:1 1424:2 1427:4 1434:4 1437:1 1458:1 1463:6 1477:1 1486:1 1493:1 1494:1 1498:1 1504:5 1509:1 1512:1 1519:3 1566:1 1576:2 1578:2 1616:1 1617:1 1622:2 1626:1 1628:1 1635:1 1637:1 1641:1 1643:1 1649:3 1650:1 1653:4 1654:5 1657:5 1658:2 1659:3 1666:4 1669:2 1670:4 1675:2 1676:1 1677:2 1679:1 1680:1 1681:1 1682:7 1683:2 1685:1 1692:1 1694:1 1700:1 1714:1 1717:1 1721:1 1723:2 1725:1 1732:1 1734:3 1735:1 1742:2 1756:2 1759:1 1765:1 1766:1 1767:1 1769:1 1777:1 1786:1 1807:1 1826:1 1858:1 1859:1 1862:2 1881:1 1884:1 1894:1 1898:1 1901:1 1902:1 1910:3 1911:1 1920:1 1921:1 1923:5 1939:5 1942:1 1952:2 1963:3 1968:2 1970:1 1973:1 1975:1 1978:1 1980:1 1985:1 2012:1 2030:1 2033:1 2035:1 2045:1 2050:3 2060:1 2066:1 2067:1 2068:1 2074:1 2078:2 2088:1 2096:1 2097:13 2099:1 2108:1 2112:12 2123:2 2129:1 2133:1 2138:1 2139:3 2160:1 2175:1 2178:2 2180:1 2185:1 2195:1 2207:1 2218:1 2220:4 2230:1 2231:1 2238:1 2253:1 2255:6 2269:1 2277:1 2280:1 2298:1 2302:1 2325:1 2332:1 2335:1 2337:1 2344:1 2345:1 2356:1 2363:1 2374:2 2383:1 2384:2 2394:3 2397:1 2405:1 2433:1 2435:1 2440:1 2450:1 2453:3 2471:17 2479:1 2490:1 2494:1 2511:1 2521:2 2525:1 2530:1 2532:1 2535:2 2541:1 2544:1 2558:1 2586:1 2590:1 2594:1 2595:1 2609:2 2621:1 2622:1 2623:3 2624:1 2627:1 2645:2 2647:2 2652:1 2656:2 2661:1 2663:2 2666:2 2673:1 2674:1 2695:1 2699:1 2712:1 2713:2 2716:3 2717:3 2723:1 2735:2 2742:2 2746:1 2748:1 2750:1 2751:1 2753:1 2757:2 2763:1 2764:1 2791:3 2794:1 2799:1 2801:1 2812:2 2815:2 2816:1 2823:8 2825:1 2827:1 2836:1 2850:2 2870:1 2876:1 2882:4 2885:1 2891:1 2896:3 2911:1 2913:2 2916:1 2917:3 2918:1 2921:1 2922:2 2923:1 2928:1 2929:2 2939:1 2947:1 2951:1 2954:1 2955:1 2957:11 2972:4 2973:1 2975:3 2976:8 2977:2 2978:4 2979:1 2982:3 2984:4 2990:2 2992:4 2996:1 2999:1 3001:1 3002:1 3006:3 3007:2 3011:2 3014:1 3015:3 3042:1 3051:2 3062:1 3065:1 3082:1 3087:3 3090:1 3095:1 3102:4 3107:1 3117:2 3122:1 3128:1 3132:1 3137:1 3139:1 3143:2 3148:1 3153:1 3165:3 3169:1 3178:1 3179:1 3180:1 3190:1 3192:2 3194:1 3196:1 3197:2 3222:1 3237:1 3239:1 3243:1 3253:2 3258:2 3263:1 3284:1 3286:1 3287:1 3289:1 3293:1 3323:2 3325:1 3326:1 3355:1 3365:3 3369:1 3371:1 3407:1 3412:1 3429:3 3430:1 3446:1 3467:2 3470:1 3472:1 3475:1 3487:1 3499:1 3500:1 3513:4 3516:4 3521:6 3532:1 3540:1 3544:1 3547:1 3554:1 3563:1 3567:1 3572:1 3580:1 3587:1 3590:1 3591:5 3594:3 3613:1 3619:1 3621:1 3627:1 3628:2 3634:1 3640:1 3643:1 3644:1 3650:1 3668:3 3682:3 3687:1 3692:2 3693:2 3694:1 3695:2 3700:1 3704:1 3705:1 3708:2 3711:1 3719:2 3732:3 3735:1 3745:1 3759:1 3761:1 3765:1 3778:2 3794:1 3808:1 3830:1 3838:1 3854:3 3855:21 3857:1 3861:1 3866:1 3868:12 3876:1 3882:2 3899:2 3910:1 3914:20 3926:1 3932:1 3935:1 3941:1 3952:1 3956:1 3958:3 3959:1 3961:2 3965:1 3969:1 3976:1 3977:3 3984:1 4031:1 4049:2 4050:1 4052:2 4063:1 4075:1 4095:1 4102:1 4103:1 4115:1 4121:1 4134:1 4135:1 4136:2 4142:4 4144:1 4159:1 4161:2 4177:1 4185:2 4190:1 4202:1 4210:3 4214:4 4228:1 4233:1 4239:1 4246:4 4256:1 4258:2 4259:1 4279:5 4282:4 4285:1 4299:1 4300:3 4310:1 4316:1 4345:1 4362:1 4363:1 4364:1 4374:1 4380:3 4385:1 4387:1 4399:1 4401:1 4414:1 4415:1 4419:6 4423:1 4430:1 4446:3 4455:4 4456:1 4459:1 4462:3 4495:1 4498:1 4532:1 4537:1 4549:1 4558:2 4570:1 4572:5 4578:3 4585:1 4591:3 4595:1 4596:4 4598:6 4599:3 4601:3 4602:7 4603:4 4605:1 4606:1 4607:3 4609:1 4610:1 4613:1 4630:2 4633:1 4646:1 4648:1 4650:5 4656:5 4660:4 4671:3 4677:1 4696:1 4714:2 4721:1 4725:7 4726:1 4727:23 4731:2 4735:3 4737:1 4739:1 4742:1 4744:1 4745:1 4752:2 4760:1 4761:2 4766:7 4777:3 4782:1 4783:1 4793:1 4800:1 4809:1 4818:1 4822:2 4826:1 4828:7 4830:2 4832:1 4836:3 4844:2 4854:1 4859:1 4871:1 4881:1 4883:1 4885:1 4890:1 4891:3 4896:7 4900:1 4901:1 4906:1 4909:1 4934:1 4942:1 4944:1 4948:1 4952:2 4954:1 4983:1 5002:1 5004:1 5012:1 5013:1 5014:1 5017:1 5037:2 5039:1 5058:1 5059:1 5072:1 5074:1 5076:1 5079:1 5099:2 5107:1 5110:1 5112:1 5116:1 5118:1 5119:1 5121:3 5125:1 5141:1 5145:2 5147:1 5152:1 5153:2798 5155:1 5158:2 5159:1 5160:1 5168:3 5171:1 5174:1 5187:1 5188:1 5191:2 5195:1 5196:1 5212:8 5213:2 5230:1 5232:1 5233:1 5237:1 5250:4 5259:1 5260:1 5280:2 5288:1 5293:2 5297:1 5306:1 5311:5 5318:1 5328:1 5334:2 5338:2 5345:2 5358:1 5380:4 5400:1 5404:2 5410:1 5414:1 5426:1 5427:1 5433:1 5441:2 5444:3 5447:1 5455:1 5482:1 5483:2 5487:1 5494:1 5497:2 5517:1 5526:1 5554:1 5560:1 5562:1 5573:2 5592:1 5612:1 5613:1 5615:1 5616:3 5619:2 5620:1 5627:1 5643:1 5645:1 5647:1 5658:1 5662:1 5670:2 5683:7 5690:1 5695:1 5698:1 5704:1 5741:1 5754:1 5755:1 5757:1 5775:1 5776:1 5809:1 5825:3 5830:2 5840:1 5845:1 5859:1 5861:3 5864:1 5867:1 5878:1 5883:1 5909:2 5916:1 5921:5 5930:3 5931:1 5934:5 5952:1 5956:1 5959:1 5967:4 5973:1 5981:1 6003:2 6010:1 6013:4 6016:4 6020:11 6024:1 6025:1 6026:1 6029:1 6032:1 6035:3 6040:1 6053:1 6054:2 6055:1 6064:1 6069:1 6087:1 6092:1 6095:1 6115:1 6118:1 6120:1 6133:1 6135:1 6139:1 6142:6 6155:3 6160:1 6178:2 6189:1 6192:1 6212:3 6215:1 6219:2 6221:2 6240:1 6244:1 6262:3 6273:1 6281:1 6301:2 6303:1 6304:1 6311:1 6317:1 6322:1 6345:1 6357:1 6375:4 6377:1 6384:1 6385:1 6387:1 6392:13 6395:1 6400:1 6405:2 6410:1 6434:2 6440:1 6444:1 6457:1 6459:2 6460:1 6468:1 6483:5 6485:1 6532:1 6533:2 6536:1 6538:10 6545:3 6551:1 6563:1 6564:2 6571:2 6572:6 6573:1 6575:1 6576:2 6581:5 6582:2 6584:1 6586:1 6587:4 6590:2 6594:7 6597:1 6602:1 6604:1 6605:3 6606:1 6607:2 6608:1 6617:1 6637:4 6643:1 6649:1 6652:11 6658:1 6664:1 6665:2 6672:1 6690:2 6691:2 6693:1 6695:1 6707:2 6711:1 6743:3 6744:1 6749:1 6758:1 6764:2 6767:1 6774:2 6788:1 6797:1 6813:1 6819:1 6828:7 6830:1 6834:1 6839:1 6844:1 6845:3 6860:17 6866:1 6870:1 6877:3 6883:23 6886:4 6892:1 6915:2 6922:1 6947:4 6959:1 6967:2 6974:2 6978:1 6983:2 6990:2 6996:2 6998:1 6999:1 7001:1 7007:1 7013:1 7021:7 7034:1 7037:1 7043:2 7050:1 7052:2 7060:1 7072:1 7080:1 7091:1 7099:2 7114:1 7127:1 7134:5 7140:1 7145:2 7153:1 7155:1 7169:1 7181:1 7183:1 7186:1 7192:1 7198:1 7201:1 7204:1 7218:1 7220:1 7221:1 7232:5 7244:2 7247:86 7250:1 7256:1 7263:2 7270:1 7271:1 7280:1 7284:1 7291:6 7312:1 7329:2 7337:1 7353:1 7357:1 7361:1 7372:1 7384:1 7387:5 7390:1 7409:2 7411:1 7420:1 7422:10 7431:1 7434:2 7442:2 7443:1 7444:17 7450:4 7453:1 7454:2 7457:1 7459:1 7473:1 7478:1 7487:1 7494:1 7504:3 7525:3 7540:2 7543:1 7550:6 7554:1 7556:3 7558:1 7560:2 7563:1 7564:2 7568:1 7572:3 7574:2 7577:1 7578:1 7579:2 7582:5 7583:7 7584:1 7609:2 7617:1 7636:1 7641:1 7642:1 7647:2 7652:1 7656:1 7668:1 7670:1 7678:1 7687:1 7692:1 7699:1 7700:1 7701:1 7707:1 7710:2 7711:1 7729:1 7731:5 7737:1 7742:1 7743:1 7769:1 7770:3 7783:1 7803:1 7808:1 7835:2 7838:1 7841:3 7843:2 7849:1 7868:1 7874:1 7878:1 7880:1 7900:2 7912:1 7913:1 7915:1 7923:1 7924:1 7930:1 7940:1 7952:1 7957:3 7988:2 7998:1 8000:1 8009:1 8012:3 8013:3 8017:2 8023:2 8042:1 8050:1 8055:1 8056:2 8057:1 8058:5 8065:3 8072:1 8075:2 8080:3 8081:1 8087:1 8094:3 8096:1 8098:1 8100:1 8105:3 8113:1 8116:1 8119:2 8128:2 8135:5 8137:1 8138:5 8146:2 8152:1 8163:1 8167:1 8168:1 8189:2 8192:3 8194:2 8196:5 8199:2 8200:1 8207:1 8211:1 8214:1 8231:1 8245:1 8247:6 8248:1 8253:2 8263:1 8267:2 8272:1 8280:2 8296:1 8319:1 8324:1 8333:1 8339:1 8341:1 8346:1 8347:1 8358:2 8360:1 8368:1 8371:1 8382:1 8383:5 8387:8 8390:1 8391:1 8399:2 8411:1 8414:1 8415:2 8421:3 8431:1 8434:1 8437:6 8441:1 8454:2 8456:2 8460:1 8491:2 8496:1 8507:1 8511:1 8513:1 8520:3 8522:2 8524:1 8528:1 8532:1 8533:4 8539:1 8542:2 8546:2 8552:9 8554:1 8556:1 8559:1 8571:2 8573:1 8576:1 8591:1 8606:1 8616:6 8623:1 8626:2 8634:1 8648:2 8651:1 8664:1 8669:1 8678:1 8712:1 8732:2 8742:1 8743:1 8744:1 8755:1 8770:1 8772:1 8776:1 8779:3 8780:2 8785:3 8786:2 8794:1 8797:3 8807:1 8809:4 8821:1 8832:1 8840:1 8843:1 8848:1 8858:1 8859:1 8860:1 8872:1 8886:1 8899:1 8901:2 8909:2 8919:2 8923:1 8926:1 8928:2 8937:1 8953:1 8955:1 8959:2 8961:1 8967:1 8968:1 8971:3 8974:1 8980:1 8983:1 8986:1 8990:1 8993:1 8994:2 8996:1 9006:3 9019:1 9025:2 9026:2 9041:1 9051:1 9067:2 9072:1 9084:1 9085:1 9090:1 9100:2 9103:2 9107:1 9113:1 9114:1 9117:1 9122:4 9124:1 9125:1 9129:2 9143:1 9159:1 9162:1 9165:1 9177:1 9180:3 9183:1 9185:1 9189:2 9191:4 9204:1 9215:1 9228:1 9234:1 9237:1 9238:1 9251:8 9252:4 9253:1 9258:1 9260:26 9261:2 9268:1 9275:2 9279:1 9283:1 9295:9 9303:1 9308:1 9309:1 9329:1 9331:1 9333:1 9334:1 9337:1 9340:2 9347:1 9357:1 9358:1 9360:2 9370:1 9378:1 9380:1 9385:1 9388:6 9390:1 9394:1 9404:1 9406:11 9408:1 9429:1 9432:1 9443:2 9444:5 9449:1 9456:2 9461:1 9474:1 9478:2 9486:1 9492:1 9499:3 9508:3 9512:2 9522:1 9525:1 9534:2 9548:3 9555:2 9560:1 9569:1 9591:1 9594:6 9596:3 9597:1 9605:2 9606:1 9607:1 9612:1 9613:1 9624:12 9625:1 9626:1 9627:3 9629:1 9632:2 9641:2 9655:1 9657:1 9659:1 9675:9 9683:4 9693:1 9698:1 9704:2 9712:1 9719:1 9721:7 9752:1 9754:1 9759:1 9780:1 9786:1 9787:1 9788:1 9795:2 9796:1 9798:2 9813:2 9815:1 9816:1 9817:1 9818:1 9822:2 9826:1 9829:1 9842:1 9851:1 9859:1 9865:3 9870:2 9879:2 9881:1 9884:1 9886:1 9888:1 9890:1 9904:1 9910:3 9916:2 9917:1 9918:1 9920:1 9924:5 9926:2 9929:1 9936:1 9940:1 9943:1 9948:1 9952:1 9959:2 9963:1 9968:1 9980:2 9983:1 9991:1 9992:2 10001:1 10007:1 10009:2 10010:1 10013:2 10017:1 10039:1 10044:3 10045:1 10049:1 10057:1 10058:1 10059:5 10068:2 10070:1 10075:1 10086:1 10092:1 10098:1 10105:3 10111:5 10115:1 10124:2 10125:2 10127:1 10129:7 10130:1 10147:1 10160:1 10163:1 10169:1 10175:1 10193:5 10200:2 10204:5 10212:2 10215:1 10223:1 10230:1 10243:1 10254:1 10262:1 10263:2 10271:3 10272:4 10280:1 10283:1 10286:1 10297:1 10298:1 10301:1 10306:1 10315:1 10318:1 10323:1 10334:1 10335:1 10349:4 10356:1 10376:3 10377:2 10378:2 10380:1 10398:3 10399:3 10408:2 10409:4 10415:1 10427:1 10442:4 10459:45 10463:1 10468:3 10474:1 10479:22 10484:13 10485:1 10494:1 10504:1 10510:1 10515:1 10551:1 10554:4 10564:1 10567:2 10570:1 10573:8 10595:2 10619:1 10632:2 10637:1 10639:4 10640:1 10642:1 10649:1 10654:1 10683:1 10685:2 10709:1 10720:1 10721:7 10723:1 10724:1 10725:3 10740:1 10742:2 10748:1 10749:1 10756:17 10764:2 10769:1 10773:1 10777:1 10787:2 10790:2 10797:1 10810:1 10820:4 10822:1 10824:1 10845:1 10857:1 10865:2 10868:1 10877:1 10886:1 10888:1 10892:2 10902:1 10917:1 10922:1 10925:1 10930:1 10934:1 10945:1 10948:1 10950:1 10954:1 10957:1 10963:3 10968:1 10972:1 10975:1 10978:2 10982:1 10990:1 10996:1 11005:2 11010:1 11013:1 11017:1 11032:3 11042:1 11046:2 11050:2 11055:2 11058:48 11075:1 11081:2 11082:1 11085:1 11088:2 11099:1 11117:1 11123:1 11126:1 11132:1 11140:1 11159:2 11164:1 11175:1 11180:3 11195:1 11197:16 11200:9 11203:1 11207:1 11267:1 11272:2 11273:2 11276:1 11280:2 11281:1 11287:1 11289:1 11310:2 11311:1 11313:2 11319:1 11321:7 11326:2 11328:1 11330:2 11333:1 11344:1 11357:1 11362:2 11376:3 11379:1 11384:1 11391:1 11403:3 11405:2 11407:1 11408:1 11415:2 11416:2 11417:1 11420:3 11433:1 11439:1 11446:4 11448:1 11456:1 11457:1 11458:1 11459:2 11473:2 11496:1 11508:1 11520:1 11523:2 11527:1 11540:1 11557:1 11559:1 11563:2 11565:1 11568:4 11573:4 11588:1 11599:1 11600:1 11601:1 11607:1 11608:1 11623:1 11634:1 11636:1 11637:1 11639:1 11641:4 11643:2 11646:1 11649:1 11652:1 11654:1 11656:3 11658:4 11664:1 11666:1 11667:1 11668:1 11669:2 11678:1 11679:3 11684:3 11687:3 11689:2 11698:2 11702:6 11704:1 11715:1 11720:1 11721:1 11724:1 11730:9 11732:2 11735:2 11736:3 11739:1 11742:1 11761:1 11765:1 11770:1 11773:1 11782:2 11788:1 11800:1 11829:2 11831:3 11835:1 11842:1 11859:1 11864:1 11866:1 11877:2 11881:1 11885:3 11888:1 11895:1 11898:2 11914:1 11921:1 11937:1 11951:2 11958:2 11978:3 11980:1 11992:1 12000:1 12019:1 12026:1 12037:1 12043:1 12050:2 12052:7 12053:2 12055:1 12063:1 12092:1 12102:1 12116:1 12129:1 12130:1 12132:1 12138:1 12161:1 12167:1 12172:1 12173:1 12186:1 12190:1 12210:1 12228:1 12230:1 12234:1 12245:2 12251:1 12256:2 12260:2 12274:1 12276:1 12280:4 12284:1 12289:2 12305:1 12306:1 12328:1 12331:1 12348:1 12351:1 12355:1 12357:3 12365:2 12371:1 12392:1 12397:2 12403:1 12405:1 12415:1 12433:1 12435:4 12437:1 12439:1 12440:1 12451:2 12454:1 12461:3 12466:1 12470:1 12471:1 12480:1 12481:1 12497:3 12499:2 12513:1 12519:1 12530:1 12532:1 12535:2 12537:2 12541:1 12556:2 12557:2 12558:2 12559:1 12565:1 12566:3 12572:1 12577:2 12578:1 12580:2 12581:2 12582:1 12585:3 12591:1 12592:1 12603:1 12610:2 12611:1 12613:1 12617:2 12621:1 12640:1 12642:3 12645:1 12648:1 12671:1 12672:3 12678:3 12687:1 12688:3 12699:1 12703:1 12709:1 12710:1 12712:1 12713:1 12720:1 12722:1 12723:2 12726:1 12728:2 12731:4 12739:1 12747:1 12752:1 12754:1 12759:1 12769:1 12772:2 12779:1 12797:1 12808:1 12809:1 12813:1 12825:1 12828:5 12836:2 12837:2 12838:1 12856:1 12857:1 12858:2 12866:1 12876:1 12877:3 12893:1 12901:2 12914:1 12918:3 12919:1 12922:1 12928:1 12938:1 12962:5 12967:1 12970:1 12977:2 12978:3 12983:1 12986:1 12989:1 12992:1 12993:3 13001:1 13005:1 13018:1 13019:4 13021:1 13028:1 13041:1 13048:1 13052:2 13056:3 13058:1 13072:2 13075:1 13087:1 13100:1 13102:2 13106:1 13108:1 13121:1 13136:2 13141:3 13142:1 13143:3 13153:1 13156:1 13170:1 13179:1 13186:1 13189:1 13191:2 13192:1 13197:1 13200:4 13203:4 13207:7 13208:1 13212:1 13214:1 13219:1 13220:1 13223:1 13231:2 13236:1 13237:1 13238:7 13239:1 13240:1 13247:1 13249:1 13250:1 13256:3 13262:1 13266:1 13269:2 13307:1 13327:1 13338:1 13339:1 13358:3 13367:1 13370:6 13383:1 13386:1 13388:1 13402:1 13426:4 13430:1 13432:1 13446:2 13448:2 13459:1 13462:1 13468:1 13481:1 13483:3 13485:3 13491:3 13506:3 13508:1 13512:1 13513:1 13516:1 13517:5 13534:2 13538:1 13546:2 13556:1 13567:1 13572:1 13573:1 13574:1 13582:2 13583:1 13585:1 13586:2 13608:1 13627:6 13628:2 13631:1 13639:1 13642:1 13645:1 13646:2 13652:3 13655:1 13659:1 13660:2 13662:4 13668:1 13670:2 13672:1 13677:2 13682:1 13684:2 13698:1 13703:2 13710:1 13727:1 13735:2 13753:1 13759:1 13769:1 13783:2 13789:7 13812:1 13817:1 13825:2 13826:1 13832:1 13846:1 13853:1 13855:1 13856:2 13861:1 13866:9 13876:1 13891:1 13899:4 13900:1 13902:2 13904:3 13907:2 13911:1 13912:3 13913:5 13915:1 13918:1 13921:1 13922:2 13924:1 13926:2 13927:1 13934:3 13939:15 13942:2 13944:4 13947:1 13948:8 13950:3 13956:2 13958:1 13959:2 13981:1 13983:3 13999:1 14028:1 14049:1 14051:8 14055:1 14058:5 14059:1 14060:1 14063:2 14064:1 14068:1 14077:1 14090:1 14095:3 14100:8 14105:1 14108:1 14112:2 14113:1 14135:1 14140:1 14142:1 14148:1 14151:2 14172:7 14186:1 14188:2 14192:1 14199:2 14205:1 14212:3 14228:1 14238:1 14251:2 14258:2 14261:1 14265:1 14271:2 14273:1 14278:1 14279:1 14284:1 14286:1 14288:1 14293:1 14298:7 14311:1 14338:1 14344:1 14346:2 14349:1 14353:1 14361:1 14362:1 14363:3 14366:2 14371:1 14372:2 14374:2 14376:1 14379:4 14383:1 14411:2 14413:1 14429:2 14445:1 14446:1 14470:2 14472:1 14478:1 14479:1 14492:2 14498:1 14511:1 14519:1 14527:3 14532:1 14535:1 14561:1 14572:1 14575:3 14599:1 14603:1 14618:2 14624:3 14625:3 14631:1 14636:1 14637:5 14641:5 14651:10 14652:1 14656:1 14663:1 14664:1 14672:1 14687:1 14694:4 14698:3 14701:3 14705:1 14706:1 14736:1 14739:4 14747:2 14756:1 14770:5 14775:1 14779:2 14780:1 14781:1 14790:1 14795:1 14796:1 14807:1 14811:7 14815:1 14827:1 14828:7 14832:1 14845:1 14846:1 14850:1 14852:1 14853:1 14856:1 14858:1 14868:1 14881:1 14882:2 14884:1 14888:1 14889:3 14895:1 14909:1 14916:1 14933:2 14947:1 14957:1 14981:1 14995:1 15003:2 15004:1 15018:1 15025:4 15040:3 15048:2 15049:1 15051:1 15052:1 15055:2 15064:1 15066:1 15069:1 15086:1 15087:1 15089:1 15096:3 15097:1 15110:5 15113:1 15116:1 15120:1 15122:1 15128:1 15130:2 15135:2 15139:1 15142:2 15149:3 15151:1 15156:2 15163:1 15164:1 15166:1 15170:6 15171:13 15190:1 15195:1 15210:1 15214:1 15215:1 15226:2 15230:1 15232:5 15240:1 15241:1 15249:2 15254:1 15256:1 15262:1 15265:2 15267:2 15268:1 15282:1 15284:1 15287:1 15293:1 15294:1 15304:3 15305:1 15308:1 15311:1 15331:1 15337:1 15342:1 15351:1 15354:1 15356:2 15363:1 15370:1 15396:1 15404:6 15411:1 15413:1 15452:2 15455:1 15457:8 15458:6 15461:1 15466:1 15478:1 15490:3 15493:1 15499:1 15511:8 15513:1 15514:1 15516:1 15521:6 15525:1 15527:1 15532:7 15537:1 15545:3 15549:1 15560:1 15572:2 15574:1 15580:1 15582:9 15583:2 15584:2 15587:1 15592:1 15596:1 15598:15 15602:1 15607:1 15608:4 15614:1 15616:2 15618:2 15619:1 15631:1 15635:2 15643:4 15651:1 15658:1 15661:2 15678:3 15679:1 15681:1 15686:1 15693:1 15695:1 15698:1 15703:1 15710:4 15711:1 15721:3 15727:1 15730:2 15741:1 15753:1 15760:1 15764:1 15773:1 15774:1 15776:2 15797:2 15805:1 15806:3 15810:1 15816:1 15820:1 15827:1 15865:2 15868:1 15873:1 15876:1 15878:1 15882:7 15886:5 15890:2 15922:1 15924:1 15936:1 15940:1 15943:1 15949:1 15950:2 15956:1 15957:1 15960:1 15962:3 15965:1 15966:3 15969:1 15976:1 15983:2 15990:1 16001:1 16019:2 16020:2 16023:1 16029:1 16032:1 16036:2 16057:2 16059:1 16060:2 16065:1 16067:1 16071:1 16073:1 16077:1 16101:1 16103:1 16109:1 16115:1 16122:2 16123:4 16125:1 16132:1 16136:1 16145:2 16147:1 16154:1 16157:2 16164:1 16175:4 16178:1 16181:1 16185:1 16202:1 16232:1 16258:1 16274:1 16275:2 16278:1 16297:1 16299:3 16301:1 16305:3 16308:1 16309:1 16314:1 16319:1 16329:3 16333:3 16345:2 16350:1 16363:1 16364:1 16369:2 16374:1 16379:1 16395:1 16399:1 16403:1 16406:1 16408:1 16425:1 16462:1 16471:1 16475:1 16478:1 16509:1 16535:3 16541:1 16558:1 16560:3 16562:1 16575:1 16579:2 16583:1 16587:1 16589:1 16591:1 16592:2 16594:1 16613:2 16624:1 16630:1 16636:1 16652:2 16662:1 16668:1 16670:1 16674:1 16679:2 16687:1 16690:1 16693:1 16705:1 16706:1 16707:1 16727:1 16745:1 16746:2 16753:1 16755:1 16756:4 16763:3 16766:1 16776:1 16785:2 16792:1 16793:1 16807:1 16810:2 16819:1 16820:1 16823:1 16825:1 16826:2 16827:1 16842:1 16853:2 16875:1 16880:1 16886:8 16891:2 16898:1 16900:1 16902:2 16905:2 16915:1 16917:4 16919:1 16922:2 16940:1 16948:1 16951:1 16953:2 16957:1 16961:5 16962:2 16972:1 16978:3 16981:2 16983:1 16993:2 16999:2 17000:3 17002:3 17003:1 17006:1 17008:1 17009:2 17015:2 17021:2 17024:2 17029:1 17030:2 17031:6 17032:1 17034:3 17043:1 17050:1 17054:3 17058:1 17060:1 17067:1 17071:2 17076:2 17088:1 17089:1 17093:1 17097:3 17108:1 17113:1 17115:2 17119:2 17120:3 17125:1 17137:2 17139:2 17143:3 17144:1 17154:1 17164:3 17169:2 17175:1 17190:1 17196:1 17199:1 17202:4 17204:2 17207:1 17208:6 17209:2 17212:1 17220:1 17227:1 17235:1 17250:1 17260:1 17267:1 17278:1 17282:1 17304:1 17311:2 17317:3 17318:1 17319:1 17336:1 17340:1 17341:1 17345:1 17349:1 17380:1 17382:1 17383:1 17384:1 17399:4 17404:1 17405:1 17414:1 17415:1 17418:1 17422:1 17427:2 17432:1 17434:14 17455:1 17468:2 17470:1 17481:1 17486:1 17511:2 17513:1 17529:1 17533:1 17540:2 17561:1 17565:1 17570:1 17572:1 17582:1 17599:1 17602:2 17603:2 17604:3 17615:2 17616:1 17629:2 17637:1 17640:7 17662:1 17667:1 17675:1 17695:1 17713:2 17718:1 17733:1 17750:1 17753:1 17754:1 17757:1 17769:1 17781:8 17784:4 17789:1 17791:1 17792:2 17793:1 17796:1 17820:1 17826:1 17827:1 17828:1 17833:1 17835:1 17844:7 17861:2 17873:1 17878:2 17891:4 17894:1 17897:36 17902:2 17933:1 17935:1 17936:1 17947:4 17960:2 17961:1 17967:2 17974:2 17978:1 18031:1 18044:2 18053:1 18056:1 18069:1 18073:4 18080:3 18084:1 18098:1 18106:2 18107:3 18115:3 18117:2 18119:1 18133:1 18141:2 18144:1 18145:2 18151:1 18153:1 18161:1 18170:1 18177:1 18180:1 18189:1 18190:2 18196:3 18217:1 18219:1 18232:1 18236:4 18255:6 18257:4 18258:1 18259:2 18261:2 18262:1 18270:7 18277:1 18278:2 18281:1 18282:1 18283:1 18288:2 18294:2 18295:1 18296:1 18303:1 18305:2 18306:1 18309:3 18311:2 18313:1 18325:1 18332:1 18358:1 18367:1 18370:2 18372:1 18373:1 18392:1 18394:1 18401:1 18402:1 18404:1 18412:2 18414:1 18415:2 18417:6 18426:1 18434:1 18435:1 18437:1 18438:1 18449:1 18460:1 18461:1 18463:1 18465:1 18468:1 18474:1 18482:1 18489:7 18498:1 18499:11 18505:1 18513:1 18521:1 18522:2 18524:2 18546:1 18549:1 18550:1 18558:1 18559:1 18562:4 18572:1 18573:1 18575:1 18576:1 18577:1 18580:4 18582:1 18583:1 18584:1 18606:1 18608:1 18616:3 18628:1 18645:2 18647:1 18652:1 18656:5 18666:4 18670:7 18681:1 18687:1 18718:1 18719:1 18728:1 18730:1 18762:1 18763:13 18785:3 18794:1 18799:1 18830:7 18835:2 18844:1 18848:1 18866:1 18881:2 18882:1 18891:2 18899:1 18909:1 18913:1 18916:4 18917:1 18921:2 18927:3 18935:1 18937:1 18942:1 18947:2 18957:1 18958:4 18965:1 18968:1 18976:1 18996:1 18997:1 19001:1 19005:5 19015:2 19022:1 19045:1 19058:1 19060:1 19067:1 19082:1 19086:1 19095:1 19112:1 19134:1 19147:1 19154:1 19159:2 19161:2 19168:1 19175:1 19176:4 19182:2 19185:1 19188:2 19190:1 19205:1 19206:1 19208:1 19210:1 19212:1 19217:3 19221:3 19231:1 19237:1 19242:2 19244:4 19260:2 19262:1 19263:1 19266:1 19268:1 19280:1 19295:1 19302:2 19306:1 19322:1 19324:1 19339:1 19340:2 19346:2 19347:2 19361:3 19383:1 19394:1 19397:1 19405:2 19414:1 19426:2 19429:2 19430:2 19431:1 19435:1 19467:2 19469:1 19484:3 19485:1 19489:2 19490:1 19495:2 19496:1 19498:1 19502:1 19516:1 19528:1 19529:1 19542:4 19543:4 19561:1 19569:2 19572:1 19584:3 19588:3 19594:1 19602:3 19609:1 19615:2 19618:1 19619:1 19629:1 19633:1 19635:1 19639:1 19644:1 19652:1 19654:1 19655:1 19657:1 19660:1 19663:7 19664:1 19669:2 19670:1 19672:1 19673:1 19674:1 19681:1 19689:1 19695:1 19700:2 19706:1 19727:1 19733:2 19734:1 19737:1 19738:2 19746:1 19748:1 19760:1 19768:1 19772:11 19776:2 19779:1 19784:1 19788:1 19799:1 19823:1 19828:1 19857:3 19861:2
5 1:1 2:1 5:1 17:1 28:1 33:1 35:3 65:1 68:3 70:1 71:1 77:1 103:1 105:3 112:1 131:1 136:1 145:1 151:1 160:3 164:1 167:1 178:1 185:3 196:1 200:1 215:1 220:1 221:1 227:1 233:2 246:6 255:1 261:1 264:1 272:2 274:1 276:1 278:1 288:2 289:1 292:1 297:1 312:2 316:1 318:1 337:1 348:6 349:2 352:1 353:1 361:3 365:1 366:1 382:2 390:1 393:3 395:1 399:3 413:1 417:1 418:3 419:1 422:1 434:1 453:1 461:3 477:1 480:2 483:1 485:1 490:1 495:2 510:6 511:1 517:1 525:1 530:1 532:1 540:1 543:1 547:1 559:1 565:1 573:2 574:7 576:1 578:1 592:2 595:1 599:2 600:1 605:1 615:4 625:1 634:2 639:1 641:2 656:2 661:4 669:2 694:1 699:2 714:3 720:1 734:1 738:1 749:7 753:1 754:1 763:1 780:1 787:1 793:1 797:1 798:1 811:1 825:1 826:5 833:4 834:1 849:2 860:1 861:1 863:1 864:1 865:2 880:10 881:1 901:1 909:1 918:1 920:1 931:2 936:1 942:1 943:2 950:2 956:1 960:1 971:5 972:1 980:6 989:1 1007:2 1014:1 1015:1 1017:1 1026:1 1028:1 1032:2 1045:1 1074:1 1078:1 1083:2 1084:1 1104:2 1108:2 1110:1 1113:1 1132:1 1134:2 1138:1 1140:1 1145:3 1157:1 1163:1 1176:1 1177:2 1185:1 1194:2 1213:4 1214:3 1231:1 1232:6 1242:1 1243:1 1251:1 1252:1 1263:1 1264:3 1266:1 1274:7 1276:1 1279:3 1286:1 1288:4 1310:8 1312:2 1320:1 1323:1 1324:4 1328:4 1332:1 1335:1 1336:2 1337:4 1340:5 1355:2 1357:3 1362:1 1368:1 1380:4 1385:3 1388:2 1392:1 1403:1 1408:1 1415:1 1421:1 1424:2 1427:4 1434:4 1437:1 1458:1 1463:6 1477:1 1486:1 1493:1 1494:1 1498:1 1504:6 1509:1 1512:1 1519:3 1566:1 1576:2 1578:2 1616:1 1617:1 1622:2 1626:1 1628:1 1635:1 1637:1 1641:1 1643:1 1649:3 1650:1 1653:4 1654:5 1657:5 1658:2 1659:3 1666:4 1669:2 1670:4 1675:2 1676:1 1677:2 1679:1 1680:1 1681:1 1682:7 1683:2 1685:1 1692:1 1694:1 1700:1 1714:1 1717:1 1721:1 1723:2 1725:1 1732:1 1734:3 1735:1 1742:2 1756:2 1759:1 1765:1 1766:1 1767:1 1769:1 1777:1 1786:1 1807:1 1826:1 1858:1 1859:1 1862:2 1881:1 1884:1 1894:1 1898:1 1901:2 1902:1 1910:4 1911:1 1920:1 1921:1 1923:5 1939:5 1942:1 1952:2 1963:3 1968:2 1970:1 1973:1 1975:1 1978:1 1980:1 1985:1 2012:1 2030:1 2033:1 2035:1 2045:1 2050:3 2060:1 2066:1 2067:1 2068:1 2074:1 2078:2 2088:1 2096:1 2097:13 2099:1 2108:1 2112:12 2123:2 2129:1 2133:1 2138:1 2139:3 2160:1 2175:1 2178:3 2180:1 2185:1 2195:1 2207:1 2218:1 2220:5 2230:1 2231:1 2238:1 2253:1 2255:6 2269:1 2277:1 2280:1 2298:1 2302:1 2325:1 2332:1 2335:1 2337:1 2344:1 2345:1 2356:1 2363:1 2374:2 2383:1 2384:2 2394:3 2395:1 2397:1 2405:1 2409:1 2433:1 2435:1 2440:1 2450:1 2453:3 2471:18 2479:1 2490:1 2494:1 2511:1 2521:2 2525:1 2530:1 2532:1 2535:2 2541:1 2544:1 2555:1 2558:1 2586:1 2590:1 2594:1 2595:1 2609:2 2621:1 2622:1 2623:3 2624:1 2625:1 2627:1 2645:2 2647:2 2652:1 2656:2 2661:1 2663:2 2666:2 2673:1 2674:1 2695:1 2699:1 2712:1 2713:3 2716:3 2717:3 2723:1 2735:2 2739:1 2742:2 2746:1 2748:1 2750:1 2751:1 2753:1 2757:2 2763:1 2764:1 2791:3 2794:1 2795:1 2799:1 2801:1 2812:2 2815:2 2816:1 2823:8 2825:1 2827:1 2836:1 2850:2 2870:1 2876:1 2882:4 2885:1 2889:1 2891:1 2896:3 2911:1 2913:2 2916:2 2917:3 2918:1 2921:1 2922:2 2923:1 2926:1 2928:1 2929:2 2939:1 2947:1 2951:1 2954:1 2955:1 2957:11 2972:4 2973:1 2975:3 2976:8 2977:2 2978:4 2979:1 2982:3 2984:4 2990:2 2992:4 2996:1 2999:1 3001:1 3002:1 3006:3 3007:2 3011:2 3014:1 3015:3 3042:1 3051:2 3062:1 3065:1 3082:1 3087:3 3090:1 3095:1 3102:4 3107:1 3117:2 3122:1 3128:1 3132:1 3137:1 3139:1 3143:2 3148:1 3153:1 3165:3 3169:1 3178:1 3179:1 3180:1 3190:1 3192:2 3194:1 3196:1 3197:3 3222:1 3237:1 3239:1 3243:1 3253:2 3258:2 3263:1 3284:1 3286:1 3287:1 3289:1 3293:1 3314:1 3323:2 3325:1 3326:1 3355:1 3365:3 3369:1 3371:1 3407:1 3412:1 3429:3 3430:1 3446:1 3467:2 3470:1 3472:1 3475:1 3487:1 3499:1 3500:1 3513:4 3516:4 3521:6 3532:1 3540:1 3544:1 3547:1 3554:1 3563:1 3567:1 3572:1 3580:1 3587:1 3590:1 3591:5 3594:3 3613:1 3619:1 3621:1 3627:1 3628:2 3634:1 3640:1 3643:1 3644:1 3650:1 3668:3 3682:3 3687:1 3692:2 3693:2 3694:1 3695:2 3700:1 3704:1 3705:1 3708:2 3711:1 3719:2 3732:3 3735:1 3745:1 3759:1 3761:1 3765:1 3778:2 3794:1 3808:1 3812:1 3830:1 3838:1 3854:3 3855:22 3857:1 3861:1 3866:1 3868:12 3876:1 3882:2 3899:2 3910:1 3914:21 3926:1 3932:1 3935:1 3941:1 3952:1 3956:1 3958:3 3959:1 3961:2 3965:2 3969:1 3976:1 3977:3 3984:1 4031:1 4049:2 4050:1 4052:2 4063:1 4075:1 4095:1 4102:1 4103:1 4115:1 4121:1 4134:1 4135:1 4136:2 4142:4 4144:1 4159:1 4161:2 4177:1 4185:2 4190:1 4202:1 4210:3 4214:4 4228:1 4233:1 4239:1 4246:4 4256:1 4258:2 4259:1 4279:5 4282:5 4285:1 4299:1 4300:3 4310:1 4316:1 4345:1 4362:1 4363:1 4364:1 4374:1 4380:3 4385:1 4387:1 4399:1 4401:1 4414:1 4415:1 4419:6 4423:1 4430:2 4446:3 4455:4 4456:1 4459:1 4462:3 4495:1 4498:1 4532:1 4537:1 4549:1 4558:2 4570:1 4572:5 4578:3 4585:1 4591:3 4595:1 4596:4 4598:6 4599:3 4601:3 4602:7 4603:4 4605:1 4606:1 4607:3 4609:1 4610:1 4613:1 4630:2 4633:1 4646:1 4648:1 4650:5 4656:5 4660:4 4671:3 4677:1 4696:1 4700:1 4714:2 4721:1 4725:7 4726:1 4727:23 4731:2 4735:4 4737:1 4739:1 4742:1 4744:1 4745:1 4752:2 4754:1 4760:1 4761:2 4766:7 4777:3 4782:1 4783:1 4793:1 4800:1 4809:1 4818:1 4822:2 4826:1 4828:7 4830:2 4832:1 4836:4 4844:3 4854:1 4859:1 4871:1 4881:1 4883:1 4885:1 4890:1 4891:3 4896:8 4900:1 4901:1 4906:1 4909:1 4934:1 4942:1 4944:1 4948:1 4952:2 4954:1 4983:1 5002:1 5004:1 5012:1 5013:1 5014:1 5017:1 5037:2 5039:1 5058:1 5059:1 5072:1 5074:1 5076:1 5079:1 5099:2 5107:1 5110:1 5112:1 5116:1 5118:1 5119:2 5121:3 5125:1 5141:1 5145:2 5147:1 5152:1 5153:2832 5155:1 5158:2 5159:1 5160:1 5168:3 5171:1 5174:1 5187:1 5188:1 5191:2 5195:1 5196:2 5212:8 5213:2 5230:1 5232:1 5233:1 5237:1 5250:5 5259:1 5260:1 5280:2 5288:1 5293:2 5297:1 5306:1 5311:5 5318:1 5328:1 5334:2 5338:2 5345:2 5358:1 5380:4 5400:1 5404:2 5410:1 5414:1 5426:1 5427:1 5433:1 5441:2 5444:3 5447:1 5455:1 5482:1 5483:2 5487:1 5494:1 5497:2 5517:1 5526:1 5540:1 5554:1 5560:1 5562:1 5573:2 5592:1 5612:1 5613:1 5615:1 5616:3 5619:2 5620:1 5627:1 5643:1 5645:1 5647:1 5658:1 5662:1 5670:2 5679:1 5683:7 5690:1 5695:1 5698:1 5704:1 5741:1 5754:1 5755:1 5757:1 5759:1 5773:1 5775:1 5776:1 5809:1 5825:3 5830:2 5840:1 5845:1 5859:1 5861:3 5864:1 5867:1 5878:1 5883:1 5909:2 5916:1 5921:5 5930:3 5931:1 5934:7 5952:1 5956:1 5959:1 5967:4 5973:1 5981:1 6003:2 6010:1 6013:4 6016:5 6020:12 6024:1 6025:1 6026:1 6029:1 6032:1 6035:3 6040:1 6053:1 6054:2 6055:1 6064:1 6069:2 6087:1 6092:1 6095:1 6115:1 6118:1 6120:1 6133:1 6135:1 6139:1 6142:6 6155:3 6160:1 6178:2 6189:1 6192:1 6212:3 6215:1 6219:2 6221:2 6240:1 6244:1 6262:3 6273:1 6281:1 6301:2 6303:1 6304:1 6311:1 6317:1 6322:1 6345:1 6357:1 6375:4 6377:1 6384:1 6385:1 6387:1 6392:14 6395:1 6400:1 6405:2 6407:1 6410:1 6434:2 6440:1 6444:1 6457:1 6459:2 6460:1 6468:1 6483:5 6485:1 6532:1 6533:2 6536:1 6538:10 6545:3 6551:1 6563:1 6564:2 6571:2 6572:6 6573:1 6575:1 6576:2 6581:5 6582:2 6584:1 6586:1 6587:4 6590:2 6594:8 6597:1 6602:1 6604:1 6605:3 6606:1 6607:2 6608:1 6617:1 6637:4 6643:1 6649:1 6652:12 6658:1 6664:1 6665:2 6672:1 6690:2 6691:2 6693:1 6695:1 6707:2 6711:1 6743:4 6744:1 6749:1 6758:1 6764:2 6767:1 6774:2 6788:1 6797:1 6813:1 6819:1 6828:7 6830:1 6834:1 6839:1 6844:1 6845:3 6860:18 6866:1 6870:1 6877:3 6883:25 6886:4 6892:1 6915:2 6922:1 6947:4 6959:1 6967:2 6974:2 6978:1 6983:2 6990:2 6996:2 6998:1 6999:1 7001:1 7007:1 7013:1 7021:7 7034:1 7037:1 7043:2 7050:1 7052:3 7060:1 7072:1 7080:1 7091:1 7099:2 7114:1 7127:1 7134:5 7140:1 7145:2 7153:1 7155:1 7169:1 7181:1 7183:1 7186:1 7192:1 7198:1 7201:1 7204:1 7218:1 7220:1 7221:1 7232:5 7244:2 7247:86 7250:1 7256:1 7263:2 7270:1 7271:1 7280:1 7284:1 7291:6 7312:1 7329:2 7337:1 7353:1 7357:1 7361:1 7372:1 7384:1 7387:5 7390:1 7409:2 7411:1 7420:1 7422:11 7431:1 7434:2 7442:2 7443:1 7444:18 7450:4 7453:1 7454:2 7457:1 7459:1 7473:1 7478:1 7487:1 7494:1 7504:3 7525:3 7540:2 7543:1 7550:6 7554:1 7556:3 7558:1 7560:2 7561:1 7563:1 7564:2 7568:1 7572:3 7574:2 7577:1 7578:1 7579:2 7582:5 7583:7 7584:2 7609:2 7617:1 7636:1 7641:1 7642:1 7647:2 7652:1 7656:1 7668:1 7670:1 7678:1 7687:1 7692:1 7699:1 7700:1 7701:1 7707:1 7710:2 7711:1 7729:1 7731:5 7737:1 7742:1 7743:1 7769:1 7770:3 7783:1 7803:1 7808:1 7835:2 7838:1 7841:3 7843:2 7849:1 7868:1 7874:1 7878:1 7880:1 7890:1 7900:2 7912:1 7913:1 7915:1 7919:1 7923:1 7924:1 7930:1 7940:1 7952:1 7957:4 7988:2 7998:1 8000:1 8009:1 8012:3 8013:3 8017:2 8023:2 8042:1 8050:1 8055:1 8056:2 8057:1 8058:5 8065:3 8072:1 8075:2 8080:3 8081:1 8087:1 8094:3 8096:1 8098:1 8100:1 8105:3 8113:1 8116:1 8119:2 8128:2 8135:5 8137:1 8138:6 8146:2 8152:1 8163:1 8167:1 8168:1 8189:2 8192:3 8194:2 8196:5 8199:2 8200:1 8207:1 8211:1 8214:1 8231:1 8245:1 8247:6 8248:1 8253:2 8263:1 8267:2 8272:1 8280:2 8296:1 8299:1 8319:1 8324:1 8333:1 8335:1 8339:1 8341:1 8346:1 8347:1 8358:2 8360:1 8368:1 8371:1 8382:1 8383:6 8387:9 8390:1 8391:1 8399:2 8411:1 8414:1 8415:2 8421:3 8431:1 8434:2 8437:6 8441:1 8454:2 8456:2 8460:1 8491:2 8496:1 8507:1 8511:1 8513:1 8520:3 8522:2 8524:1 8528:1 8532:1 8533:4 8539:1 8542:2 8546:2 8552:9 8554:1 8556:1 8559:1 8571:2 8573:1 8576:1 8591:1 8606:2 8616:6 8623:1 8626:2 8634:1 8648:2 8651:1 8664:1 8669:1 8678:1 8712:1 8732:2 8742:1 8743:1 8744:1 8755:1 8770:1 8772:1 8776:1 8779:3 8780:2 8785:3 8786:2 8794:1 8797:3 8807:1 8809:4 8821:1 8832:1 8840:1 8843:1 8848:1 8858:1 8859:1 8860:1 8872:1 8886:1 8890:1 8899:1 8901:2 8909:2 8919:2 8923:1 8926:1 8928:2 8937:1 8953:1 8955:1 8959:2 8961:1 8967:1 8968:1 8971:3 8974:1 8980:1 8983:1 8986:1 8990:1 8993:1 8994:2 8996:1 9006:3 9019:1 9025:2 9026:2 9041:1 9051:1 9067:2 9072:1 9084:1 9085:1 9090:1 9100:2 9103:2 9107:1 9113:1 9114:1 9117:1 9122:4 9124:1 9125:1 9129:2 9143:1 9159:1 9162:1 9165:1 9177:1 9180:3 9183:1 9185:1 9189:2 9191:4 9204:1 9205:1 9215:1 9228:1 9234:1 9237:1 9238:1 9251:8 9252:4 9253:1 9258:1 9260:26 9261:3 9268:1 9275:2 9279:1 9283:1 9295:9 9303:1 9308:1 9309:1 9329:1 9331:1 9333:1 9334:1 9337:1 9340:2 9347:1 9357:1 9358:1 9360:2 9364:1 9370:1 9378:1 9380:1 9385:1 9388:6 9390:1 9394:1 9404:1 9406:11 9408:1 9429:1 9432:1 9443:2 9444:5 9449:1 9456:2 9461:1 9474:1 9478:2 9486:1 9492:1 9499:3 9508:3 9512:2 9522:1 9525:1 9534:2 9548:3 9550:1 9555:2 9560:1 9569:1 9589:1 9591:1 9594:6 9596:3 9597:1 9605:2 9606:1 9607:1 9612:1 9613:1 9624:13 9625:1 9626:1 9627:3 9629:1 9632:2 9641:2 9655:1 9657:1 9659:1 9675:9 9683:4 9693:1 9698:1 9704:2 9712:1 9719:1 9721:8 9752:1 9754:1 9759:1 9774:1 9780:1 9786:1 9787:1 9788:1 9795:2 9796:1 9798:2 9813:2 9815:1 9816:1 9817:1 9818:1 9822:2 9826:1 9829:1 9842:1 9851:1 9859:1 9865:3 9870:2 9879:2 9881:1 9884:1 9886:1 9888:1 9890:1 9904:1 9910:3 9916:2 9917:1 9918:1 9920:1 9924:5 9926:2 9929:1 9936:1 9940:1 9943:2 9948:1 9952:2 9959:2 9963:1 9968:1 9980:2 9983:1 9991:1 9992:2 10001:1 10007:1 10009:2 10010:1 10013:3 10017:1 10039:1 10044:3 10045:1 10049:1 10057:3 10058:1 10059:6 10068:2 10070:1 10075:1 10086:1 10092:1 10098:1 10105:3 10111:5 10115:1 10124:2 10125:2 10127:1 10129:7 10130:1 10147:1 10160:1 10163:1 10169:1 10175:1 10193:5 10200:2 10204:5 10212:2 10215:1 10223:1 10230:1 10243:1 10254:1 10262:1 10263:2 10271:3 10272:4 10280:1 10283:1 10286:1 10297:1 10298:1 10301:1 10306:1 10315:1 10318:1 10323:1 10334:1 10335:1 10349:4 10356:1 10376:3 10377:2 10378:2 10380:1 10398:3 10399:3 10408:3 10409:4 10415:1 10427:1 10442:4 10459:45 10463:1 10468:3 10474:1 10479:23 10484:14 10485:1 10494:1 10504:1 10510:1 10515:1 10551:1 10554:4 10564:1 10567:2 10570:1 10573:9 10595:2 10619:1 10632:2 10637:1 10639:4 10640:1 10642:1 10649:1 10654:1 10683:1 10685:2 10709:1 10720:1 10721:8 10723:1 10724:1 10725:3 10740:1 10742:2 10748:1 10749:1 10756:18 10764:2 10769:1 10773:1 10777:1 10787:2 10790:2 10797:1 10810:1 10820:4 10822:1 10824:1 10845:1 10857:1 10865:2 10868:1 10877:1 10886:1 10888:1 10892:2 10902:1 10917:1 10922:1 10925:2 10930:1 10934:1 10945:1 10948:1 10950:1 10954:1 10957:1 10963:3 10968:1 10972:1 10975:1 10978:3 10982:1 10990:1 10996:1 11005:2 11010:1 11013:1 11017:1 11032:3 11042:1 11046:2 11050:3 11054:1 11055:2 11058:48 11075:1 11081:2 11082:1 11085:1 11088:2 11099:1 11117:1 11123:1 11126:1 11132:1 11140:1 11159:2 11164:1 11175:1 11180:3 11195:1 11197:16 11200:9 11203:1 11207:1 11260:1 11267:1 11272:2 11273:2 11276:1 11280:2 11281:1 11287:1 11289:1 11310:2 11311:1 11313:2 11319:1 11321:7 11326:2 11328:1 11330:2 11333:1 11344:1 11357:1 11362:2 11376:3 11379:1 11384:1 11391:1 11403:3 11405:2 11407:1 11408:1 11415:2 11416:2 11417:1 11420:3 11433:1 11439:1 11445:1 11446:4 11448:1 11456:1 11457:1 11458:1 11459:2 11473:2 11496:1 11508:1 11520:1 11523:2 11527:1 11540:1 11557:1 11559:1 11563:2 11565:1 11568:4 11573:4 11588:1 11599:1 11600:1 11601:1 11607:1 11608:1 11623:1 11629:1 11634:1 11636:1 11637:1 11639:1 11641:4 11643:2 11646:1 11649:1 11652:1 11654:1 11656:3 11658:4 11664:1 11666:1 11667:1 11668:1 11669:2 11678:1 11679:3 11684:3 11687:4 11689:2 11698:2 11702:7 11704:1 11715:1 11720:1 11721:1 11724:1 11730:9 11732:2 11735:2 11736:3 11739:1 11742:1 11761:1 11765:1 11770:1 11773:1 11782:2 11788:1 11800:1 11829:2 11831:3 11835:1 11842:1 11857:1 11859:1 11864:1 11866:1 11877:2 11881:1 11885:3 11888:1 11895:1 11898:2 11914:1 11921:1 11937:1 11951:2 11958:2 11978:3 11980:1 11992:1 12000:1 12019:1 12026:1 12037:1 12043:1 12050:2 12052:7 12053:2 12055:1 12063:1 12092:1 12102:1 12116:1 12129:1 12130:1 12132:1 12138:1 12161:1 12167:1 12172:1 12173:1 12186:1 12190:1 12210:1 12228:1 12230:1 12234:1 12245:2 12251:1 12256:2 12260:2 12274:1 12276:1 12280:4 12284:1 12289:2 12305:1 12306:1 12328:1 12331:1 12348:1 12351:1 12355:1 12357:3 12365:2 12371:1 12392:1 12397:2 12403:1 12405:1 12415:1 12433:1 12435:4 12437:1 12439:1 12440:1 12451:2 12454:1 12461:3 12466:1 12470:1 12471:1 12480:1 12481:1 12497:3 12499:2 12502:1 12513:1 12519:1 12530:1 12532:1 12535:2 12537:2 12541:1 12556:3 12557:2 12558:2 12559:1 12565:1 12566:3 12572:1 12577:2 12578:1 12580:2 12581:2 12582:1 12585:3 12591:1 12592:2 12603:1 12610:2 12611:1 12613:1 12617:2 12621:1 12640:1 12642:3 12645:1 12648:1 12671:1 12672:3 12678:3 12687:1 12688:3 12699:1 12703:1 12709:1 12710:1 12712:1 12713:1 12720:1 12722:1 12723:2 12726:1 12728:2 12731:4 12739:1 12747:1 12752:1 12754:1 12759:1 12769:1 12772:2 12779:1 12797:1 12808:1 12809:1 12813:1 12825:1 12828:5 12836:2 12837:2 12838:1 12856:1 12857:1 12858:2 12866:1 12876:1 12877:3 12893:1 12901:2 12914:1 12918:3 12919:1 12922:1 12928:1 12938:1 12962:5 12965:1 12967:1 12970:1 12977:2 12978:3 12983:1 12986:1 12989:1 12992:1 12993:3 13001:1 13005:1 13018:1 13019:4 13021:1 13028:1 13041:1 13048:1 13052:2 13056:3 13058:1 13072:2 13075:1 13087:1 13100:1 13102:3 13106:1 13108:1 13121:1 13136:2 13141:4 13142:1 13143:3 13153:1 13156:1 13170:1 13179:1 13186:1 13189:1 13191:2 13192:1 13193:1 13197:1 13200:4 13203:4 13207:7 13208:1 13212:1 13214:1 13219:1 13220:1 13223:1 13231:2 13236:1 13237:1 13238:7 13239:1 13240:1 13247:1 13249:1 13250:1 13256:4 13262:1 13266:1 13269:2 13307:1 13327:1 13338:1 13339:1 13358:3 13367:1 13370:6 13383:1 13386:1 13388:1 13402:1 13426:4 13430:1 13432:1 13446:2 13448:2 13459:1 13462:1 13468:1 13480:1 13481:1 13483:3 13485:3 13491:3 13506:3 13508:1 13512:1 13513:1 13516:1 13517:5 13534:2 13538:1 13546:2 13556:1 13567:1 13572:1 13573:1 13574:1 13582:2 13583:1 13585:1 13586:2 13608:1 13627:6 13628:2 13631:1 13639:1 13642:1 13645:1 13646:2 13652:3 13655:1 13659:1 13660:2 13662:4 13668:1 13670:2 13672:1 13677:2 13682:1 13684:2 13698:1 13703:2 13710:1 13727:1 13735:2 13753:1 13759:1 13769:1 13783:2 13789:7 13812:1 13813:1 13817:1 13825:2 13826:1 13832:1 13846:1 13853:1 13855:1 13856:2 13861:1 13866:9 13876:1 13891:1 13899:4 13900:1 13902:2 13904:4 13907:2 13911:1 13912:3 13913:5 13915:1 13918:1 13921:1 13922:2 13924:1 13926:2 13927:1 13934:3 13939:16 13942:2 13944:4 13947:1 13948:8 13950:3 13956:2 13958:1 13959:2 13981:1 13983:3 13999:1 14028:1 14049:1 14051:8 14055:1 14058:5 14059:1 14060:1 14063:2 14064:1 14068:1 14077:1 14090:1 14095:3 14100:8 14105:1 14108:1 14112:2 14113:1 14135:1 14140:1 14142:1 14148:1 14151:2 14172:7 14186:1 14188:2 14192:1 14199:2 14205:1 14212:3 14228:1 14238:2 14251:2 14258:2 14261:2 14265:1 14271:2 14273:1 14278:1 14279:1 14284:1 14286:1 14288:1 14293:1 14298:7 14311:1 14325:1 14338:1 14344:1 14346:2 14349:1 14353:1 14361:1 14362:1 14363:3 14366:2 14371:1 14372:2 14374:2 14376:1 14379:4 14383:1 14411:2 14413:1 14429:2 14445:1 14446:1 14470:2 14472:1 14478:1 14479:1 14492:2 14498:1 14511:1 14519:1 14526:1 14527:3 14532:1 14535:1 14561:1 14572:1 14575:3 14599:2 14603:1 14618:2 14624:3 14625:3 14631:1 14636:1 14637:5 14641:5 14651:10 14652:1 14656:1 14663:1 14664:1 14672:1 14687:1 14694:5 14698:3 14701:3 14705:1 14706:1 14736:1 14739:4 14747:2 14756:1 14770:5 14775:1 14779:2 14780:1 14781:1 14790:1 14795:1 14796:1 14807:1 14811:7 14815:1 14827:1 14828:7 14832:3 14845:1 14846:1 14850:1 14852:1 14853:1 14856:1 14858:1 14868:1 14881:1 14882:2 14884:1 14888:1 14889:3 14895:1 14909:1 14916:1 14933:2 14947:1 14957:1 14981:1 14995:1 15003:2 15004:1 15018:1 15025:5 15040:3 15048:2 15049:1 15051:1 15052:1 15055:2 15064:1 15066:1 15069:1 15084:1 15086:1 15087:1 15089:1 15093:1 15096:3 15097:1 15110:5 15113:1 15116:1 15120:1 15122:1 15128:1 15130:2 15135:2 15139:1 15142:2 15149:3 15151:1 15156:2 15163:1 15164:1 15166:1 15170:6 15171:13 15190:1 15195:1 15210:1 15214:1 15215:1 15226:2 15230:1 15232:5 15240:1 15241:1 15249:2 15250:1 15254:1 15256:1 15262:1 15265:2 15267:2 15268:1 15282:1 15284:1 15287:1 15293:1 15294:1 15304:3 15305:1 15308:1 15311:1 15312:1 15331:1 15337:1 15342:1 15351:1 15354:1 15356:2 15363:1 15370:1 15396:1 15404:6 15411:1 15413:1 15452:2 15455:1 15457:8 15458:6 15461:1 15466:2 15478:1 15490:3 15493:1 15499:1 15511:8 15513:1 15514:1 15516:1 15521:7 15525:1 15527:1 15532:7 15537:1 15545:3 15549:1 15560:1 15572:2 15574:2 15580:1 15582:9 15583:2 15584:2 15587:1 15592:1 15596:1 15598:16 15602:1 15607:1 15608:4 15614:1 15616:2 15618:2 15619:1 15624:1 15631:1 15635:2 15643:4 15651:1 15658:1 15661:2 15678:4 15679:1 15681:1 15686:1 15693:1 15695:1 15698:1 15703:1 15710:4 15711:1 15721:3 15727:1 15730:3 15741:1 15753:1 15760:1 15764:1 15773:1 15774:1 15776:2 15797:2 15805:2 15806:3 15810:1 15816:1 15820:1 15827:1 15865:2 15868:2 15873:1 15876:1 15878:1 15882:8 15886:5 15890:2 15922:1 15924:1 15936:1 15940:1 15943:1 15949:1 15950:2 15956:1 15957:1 15960:1 15962:3 15965:1 15966:3 15969:1 15976:1 15983:2 15990:1 16001:1 16019:2 16020:2 16023:1 16029:1 16032:1 16036:2 16057:2 16059:1 16060:2 16065:1 16067:1 16071:1 16073:1 16077:1 16101:1 16103:1 16109:1 16115:1 16122:3 16123:5 16125:1 16132:1 16136:1 16145:2 16147:1 16153:1 16154:1 16157:2 16164:1 16175:4 16178:1 16181:1 16185:1 16202:1 16232:1 16258:1 16274:1 16275:2 16278:1 16297:1 16299:3 16301:1 16305:3 16308:1 16309:1 16314:1 16319:1 16329:3 16333:3 16345:2 16350:1 16363:1 16364:1 16369:2 16374:1 16379:1 16395:1 16399:1 16403:1 16406:1 16408:1 16425:1 16462:1 16471:1 16475:1 16478:1 16509:1 16535:3 16541:1 16558:1 16560:3 16562:1 16575:1 16579:2 16583:1 16587:1 16589:1 16591:1 16592:2 16594:1 16613:2 16624:1 16630:1 16636:1 16652:2 16662:1 16668:1 16670:1 16674:1 16679:2 16687:1 16690:1 16693:1 16705:1 16706:1 16707:1 16727:1 16745:1 16746:2 16753:1 16755:1 16756:4 16763:3 16766:1 16776:1 16785:2 16792:1 16793:1 16807:1 16810:2 16819:1 16820:1 16823:1 16825:1 16826:2 16827:1 16842:1 16853:2 16875:1 16880:1 16886:8 16891:2 16898:1 16900:1 16902:2 16905:2 16915:1 16917:4 16919:1 16922:3 16934:1 16940:1 16948:1 16951:1 16953:2 16957:1 16961:5 16962:2 16972:1 16978:3 16981:2 16983:1 16993:2 16999:2 17000:3 17002:3 17003:1 17006:1 17008:1 17009:2 17015:2 17021:2 17024:2 17029:1 17030:2 17031:6 17032:1 17034:3 17043:1 17050:1 17054:4 17055:1 17058:1 17060:1 17067:1 17071:2 17076:2 17088:2 17089:1 17093:1 17097:3 17108:1 17113:1 17115:2 17119:2 17120:3 17125:1 17137:2 17139:2 17143:3 17144:1 17152:1 17154:1 17164:3 17169:2 17175:1 17190:1 17196:1 17199:1 17202:4 17204:2 17207:1 17208:6 17209:2 17212:1 17220:1 17227:1 17235:1 17250:1 17260:1 17267:1 17278:1 17282:1 17304:1 17311:2 17317:3 17318:1 17319:1 17336:1 17340:1 17341:1 17345:1 17349:1 17380:1 17382:1 17383:1 17384:1 17399:4 17404:1 17405:1 17414:1 17415:1 17418:1 17422:1 17427:2 17432:1 17434:15 17455:1 17468:2 17470:1 17481:1 17486:1 17511:2 17513:1 17529:1 17533:1 17540:2 17561:1 17565:1 17570:1 17572:1 17582:1 17599:1 17602:2 17603:3 17604:3 17615:2 17616:1 17629:2 17637:2 17640:9 17662:1 17667:1 17675:1 17695:1 17713:2 17718:1 17733:1 17750:1 17753:1 17754:1 17757:1 17769:1 17781:8 17784:4 17789:1 17791:2 17792:2 17793:1 17796:1 17820:1 17826:1 17827:1 17828:1 17833:1 17835:1 17844:7 17861:2 17873:1 17878:2 17891:4 17894:1 17897:38 17902:2 17933:1 17935:1 17936:1 17947:5 17960:2 17961:1 17967:2 17974:2 17978:1 18031:1 18044:2 18053:1 18056:1 18069:1 18073:4 18080:3 18084:1 18098:1 18106:2 18107:3 18115:3 18117:2 18119:1 18133:1 18141:2 18144:1 18145:2 18151:1 18153:1 18161:1 18170:1 18177:1 18180:1 18189:1 18190:2 18196:3 18217:1 18219:1 18232:1 18236:4 18255:6 18257:4 18258:1 18259:2 18261:2 18262:1 18270:7 18277:1 18278:2 18281:1 18282:1 18283:1 18288:2 18294:2 18295:1 18296:1 18303:1 18305:2 18306:1 18309:4 18311:2 18313:1 18325:1 18332:1 18358:1 18367:1 18370:2 18372:1 18373:1 18392:1 18394:1 18401:1 18402:1 18404:1 18412:2 18414:1 18415:2 18417:6 18426:1 18434:1 18435:1 18437:1 18438:1 18449:1 18460:1 18461:1 18463:1 18465:1 18468:1 18474:1 18482:1 18489:7 18498:1 18499:11 18505:1 18513:1 18521:1 18522:2 18524:2 18546:1 18549:1 18550:1 18558:1 18559:1 18562:4 18572:1 18573:1 18575:1 18576:1 18577:1 18580:4 18582:1 18583:1 18584:1 18606:1 18608:1 18616:3 18628:1 18645:2 18647:1 18652:1 18656:5 18666:4 18670:7 18681:1 18687:1 18718:1 18719:1 18728:1 18730:1 18762:1 18763:13 18785:3 18794:1 18799:1 18830:8 18835:2 18844:1 18848:1 18866:1 18881:3 18882:1 18891:2 18899:1 18909:1 18913:1 18916:4 18917:1 18921:2 18927:3 18935:1 18937:1 18942:1 18947:2 18957:1 18958:4 18965:1 18968:1 18976:1 18996:1 18997:1 19001:1 19005:5 19015:2 19022:1 19045:1 19058:1 19060:1 19067:1 19082:1 19086:1 19095:1 19112:1 19134:1 19147:1 19154:1 19159:2 19161:2 19168:1 19175:1 19176:4 19182:2 19185:1 19188:2 19190:1 19205:1 19206:1 19208:1 19210:1 19212:1 19217:3 19221:3 19231:1 19237:1 19242:2 19244:4 19260:2 19262:1 19263:1 19266:1 19268:1 19280:1 19295:1 19302:2 19306:1 19322:1 19324:1 19339:1 19340:2 19346:2 19347:2 19361:3 19383:1 19394:1 19397:1 19405:2 19414:1 19426:2 19429:2 19430:2 19431:1 19435:1 19467:2 19469:1 19484:4 19485:1 19489:2 19490:1 19495:2 19496:1 19498:1 19502:1 19516:1 19528:1 19529:1 19542:4 19543:5 19561:1 19569:2 19572:1 19584:3 19588:3 19594:1 19602:3 19609:1 19615:2 19618:1 19619:1 19629:1 19633:1 19635:1 19639:1 19644:1 19652:1 19654:2 19655:1 19657:1 19660:1 19663:7 19664:1 19669:2 19670:1 19672:1 19673:1 19674:1 19681:1 19689:1 19695:1 19700:2 19706:1 19727:1 19733:2 19734:1 19737:1 19738:2 19746:1 19748:1 19760:1 19768:1 19772:12 19776:2 19779:1 19784:1 19788:1 19799:1 19823:1 19828:1 19857:4 19861:2
5 1:1 2:1 5:1 17:1 28:1 33:1 35:3 65:1 68:3 70:1 71:1 77:1 103:1 105:3 112:1 131:1 134:1 136:1 145:1 151:1 160:3 164:1 167:1 178:1 185:3 196:1 200:1 215:1 220:1 221:1 227:1 233:2 246:6 255:1 261:1 264:1 272:2 274:1 276:1 278:1 288:2 289:1 292:1 297:1 312:2 316:1 318:1 337:1 348:6 349:2 352:1 353:1 361:3 365:1 366:1 382:2 390:1 393:3 395:1 399:3 413:1 417:1 418:3 419:1 422:1 434:1 453:1 461:3 477:1 480:2 483:1 485:1 490:1 495:2 510:6 511:1 517:1 525:1 530:1 532:1 540:1 543:1 547:2 559:1 565:1 573:2 574:8 576:1 577:1 578:1 592:2 595:1 599:2 600:1 605:1 615:4 625:1 634:2 639:1 641:2 656:2 661:4 669:2 694:1 699:2 714:3 720:1 734:1 738:1 749:7 753:1 754:1 763:1 780:1 787:1 793:1 797:2 798:1 811:1 825:1 826:5 833:4 834:1 849:2 860:1 861:1 863:1 864:1 865:2 880:10 881:1 901:1 909:1 918:1 920:1 931:2 936:1 942:1 943:3 950:2 956:1 960:1 971:5 972:1 980:6 981:1 989:1 1007:2 1014:1 1015:1 1017:1 1026:1 1028:1 1032:2 1045:1 1074:1 1078:1 1083:2 1084:1 1104:2 1105:1 1108:2 1110:1 1113:1 1132:1 1134:3 1138:1 1140:1 1145:3 1157:1 1163:1 1176:1 1177:2 1185:1 1194:2 1213:4 1214:3 1231:1 1232:6 1234:1 1242:1 1243:1 1251:1 1252:1 1263:1 1264:3 1266:1 1274:7 1276:1 1279:3 1286:1 1288:4 1310:8 1312:2 1320:1 1323:1 1324:4 1328:4 1332:1 1335:1 1336:2 1337:4 1340:5 1355:2 1357:3 1362:1 1368:1 1380:4 1385:3 1388:2 1392:1 1403:1 1408:1 1415:1 1421:1 1424:2 1427:4 1434:4 1437:1 1458:1 1463:7 1477:1 1486:1 1493:1 1494:1 1498:1 1504:6 1509:1 1512:1 1519:3 1552:1 1566:1 1576:2 1578:2 1616:1 1617:1 1622:2 1626:1 1628:1 1635:1 1637:1 1641:1 1643:1 1645:1 1649:3 1650:1 1653:4 1654:5 1657:5 1658:2 1659:3 1666:4 1669:2 1670:4 1675:2 1676:1 1677:2 1679:1 1680:1 1681:1 1682:7 1683:3 1685:1 1692:1 1694:1 1700:1 1714:1 1717:1 1721:1 1723:2 1725:1 1732:1 1734:3 1735:1 1742:2 1756:2 1759:2 1765:1 1766:1 1767:1 1769:1 1777:1 1786:1 1807:1 1816:1 1826:1 1858:1 1859:1 1862:2 1881:1 1884:1 1894:1 1898:1 1901:2 1902:1 1910:4 1911:1 1920:1 1921:1 1923:5 1939:5 1942:1 1952:2 1963:3 1968:2 1970:1 1973:3 1975:1 1978:1 1980:1 1985:1 2012:1 2016:1 2030:1 2033:1 2035:1 2045:1 2050:3 2060:1 2066:1 2067:1 2068:1 2074:1 2078:2 2088:1 2096:1 2097:14 2099:1 2108:1 2112:12 2123:2 2129:1 2133:1 2138:1 2139:3 2160:1 2175:1 2178:3 2180:1 2185:1 2195:1 2207:1 2218:1 2220:5 2230:1 2231:1 2238:1 2253:1 2255:7 2269:1 2277:1 2280:1 2298:1 2302:1 2325:1 2332:1 2335:1 2337:1 2344:1 2345:1 2356:1 2363:1 2374:2 2383:1 2384:2 2394:3 2395:1 2397:1 2405:2 2409:1 2433:1 2435:1 2440:1 2450:1 2453:3 2471:18 2479:1 2490:1 2494:1 2511:2 2521:2 2525:1 2530:1 2532:1 2535:2 2541:1 2544:1 2555:1 2558:1 2586:1 2590:1 2594:1 2595:1 2609:2 2621:1 2622:1 2623:3 2624:1 2625:1 2627:1 2645:2 2647:2 2652:1 2656:2 2661:1 2663:2 2666:2 2673:1 2674:1 2695:1 2699:1 2712:1 2713:3 2716:3 2717:3 2723:1 2735:2 2739:1 2742:2 2746:1 2748:1 2750:1 2751:1 2753:1 2757:2 2763:1 2764:1 2791:3 2794:1 2795:2 2799:1 2801:1 2812:2 2815:2 2816:1 2823:8 2825:1 2827:1 2836:1 2850:2 2870:1 2876:1 2882:4 2885:1 2889:1 2891:1 2896:3 2911:1 2913:2 2916:2 2917:3 2918:1 2921:1 2922:2 2923:1 2926:1 2928:1 2929:2 2939:1 2947:1 2951:1 2954:1 2955:1 2957:11 2972:4 2973:1 2975:3 2976:8 2977:2 2978:4 2979:1 2982:4 2984:4 2990:2 2992:4 2996:1 2999:1 3001:1 3002:1 3006:3 3007:2 3011:2 3014:1 3015:3 3042:1 3051:2 3062:1 3065:1 3077:1 3082:1 3087:3 3090:1 3095:1 3102:4 3107:1 3117:2 3122:1 3128:1 3132:1 3137:1 3139:1 3143:2 3148:1 3153:1 3165:3 3169:1 3178:1 3179:1 3180:1 3190:1 3192:2 3194:1 3196:1 3197:3 3222:1 3237:1 3239:1 3243:1 3253:2 3258:2 3263:1 3284:1 3286:1 3287:1 3289:1 3293:1 3314:1 3323:2 3325:1 3326:1 3355:1 3365:3 3369:1 3371:1 3407:1 3412:1 3429:3 3430:1 3446:1 3467:2 3470:1 3472:1 3475:1 3487:1 3499:1 3500:1 3513:4 3516:4 3521:7 3532:1 3537:1 3540:1 3544:1 3547:1 3554:1 3563:1 3567:1 3572:1 3580:1 3587:1 3590:1 3591:5 3594:3 3613:1 3619:1 3621:1 3627:1 3628:2 3634:1 3640:1 3643:1 3644:1 3650:1 3668:3 3682:3 3687:1 3692:2 3693:2 3694:1 3695:2 3700:1 3704:1 3705:1 3708:2 3711:1 3719:2 3732:3 3735:1 3745:1 3759:1 3761:1 3765:1 3778:2 3794:1 3808:1 3812:1 3830:1 3838:1 3854:3 3855:22 3857:1 3861:1 3866:2 3868:12 3876:1 3882:2 3899:2 3910:1 3914:21 3926:1 3932:1 3935:1 3941:1 3952:1 3956:1 3958:3 3959:1 3961:2 3965:2 3969:1 3976:1 3977:3 3984:1 4031:1 4049:2 4050:1 4052:2 4063:1 4075:1 4095:1 4102:1 4103:1 4108:1 4115:2 4121:1 4134:1 4135:1 4136:2 4142:4 4144:1 4159:1 4161:3 4177:1 4185:2 4190:1 4202:1 4210:3 4214:4 4228:1 4233:1 4239:1 4246:4 4250:1 4256:1 4258:2 4259:1 4279:5 4282:5 4285:1 4299:1 4300:3 4310:1 4316:1 4345:1 4362:1 4363:1 4364:1 4374:1 4380:3 4385:1 4387:1 4399:1 4401:1 4414:1 4415:1 4419:6 4423:1 4430:3 4446:3 4455:4 4456:1 4459:1 4462:3 4495:1 4498:1 4532:1 4537:1 4549:1 4558:2 4570:1 4572:5 4578:3 4585:1 4591:3 4595:1 4596:4 4598:6 4599:3 4601:3 4602:7 4603:5 4605:1 4606:1 4607:3 4609:1 4610:1 4613:1 4630:2 4633:1 4646:1 4648:1 4650:5 4656:5 4660:5 4671:3 4677:1 4696:1 4700:2 4714:2 4721:1 4725:7 4726:1 4727:24 4731:2 4735:4 4737:1 4739:1 4742:1 4744:1 4745:1 4752:2 4754:1 4760:1 4761:2 4766:7 4777:3 4782:1 4783:1 4793:1 4798:1 4800:1 4809:1 4818:1 4822:2 4826:1 4828:8 4830:2 4832:1 4836:4 4844:3 4854:1 4859:1 4871:1 4881:1 4883:1 4885:1 4890:1 4891:3 4896:8 4900:1 4901:1 4906:1 4909:1 4934:1 4942:1 4944:1 4948:1 4952:2 4954:1 4983:1 5002:1 5004:1 5012:1 5013:1 5014:1 5017:1 5037:2 5039:1 5058:1 5059:1 5072:1 5074:2 5076:1 5079:1 5099:2 5107:1 5110:1 5112:1 5116:1 5118:1 5119:2 5121:3 5125:1 5141:1 5145:2 5147:1 5152:1 5153:2891 5155:1 5158:2 5159:1 5160:1 5168:3 5171:1 5174:1 5187:1 5188:1 5191:2 5195:1 5196:2 5212:9 5213:2 5230:1 5232:1 5233:1 5237:1 5250:5 5259:1 5260:1 5280:2 5288:1 5293:2 5297:1 5306:1 5311:5 5318:1 5328:1 5334:2 5338:2 5345:2 5358:1 5380:4 5400:1 5404:2 5410:1 5414:1 5426:1 5427:1 5433:1 5441:2 5444:3 5447:1 5455:1 5482:1 5483:2 5487:1 5494:1 5497:2 5517:1 5526:1 5540:1 5554:1 5560:1 5562:1 5573:2 5592:1 5612:1 5613:1 5615:1 5616:3 5619:2 5620:1 5627:1 5643:1 5645:1 5647:1 5658:1 5662:1 5670:2 5679:1 5683:7 5690:1 5695:1 5698:1 5704:1 5741:1 5754:1 5755:1 5757:1 5759:1 5773:1 5775:1 5776:1 5809:1 5825:3 5830:2 5840:1 5845:1 5859:1 5861:3 5864:1 5867:1 5878:1 5883:1 5909:2 5916:1 5921:5 5930:3 5931:1 5934:7 5952:1 5956:1 5959:1 5967:4 5973:1 5981:1 6003:2 6010:1 6013:4 6016:5 6020:12 6024:1 6025:1 6026:1 6029:1 6032:1 6035:3 6040:1 6053:1 6054:2 6055:1 6064:1 6069:2 6070:1 6087:1 6092:1 6095:1 6115:1 6118:1 6120:1 6133:1 6135:1 6139:1 6142:6 6155:3 6160:2 6178:2 6189:1 6192:1 6212:3 6215:1 6219:2 6221:2 6240:1 6244:1 6262:3 6273:1 6281:1 6301:2 6303:1 6304:1 6311:1 6317:1 6322:1 6345:1 6357:1 6375:4 6377:1 6384:1 6385:1 6387:1 6392:14 6395:2 6400:1 6405:2 6407:1 6410:1 6432:1 6434:2 6440:1 6444:1 6457:1 6459:3 6460:1 6468:1 6483:5 6485:1 6532:1 6533:2 6536:1 6538:10 6545:3 6551:1 6563:1 6564:2 6571:3 6572:6 6573:1 6575:1 6576:2 6581:5 6582:2 6584:1 6586:1 6587:4 6590:2 6594:8 6597:1 6602:1 6604:1 6605:3 6606:1 6607:2 6608:1 6617:1 6637:5 6643:1 6649:1 6652:12 6658:1 6664:1 6665:2 6672:1 6690:2 6691:2 6693:1 6695:1 6707:2 6711:1 6743:4 6744:1 6749:1 6758:1 6764:2 6767:1 6774:2 6788:1 6797:1 6813:1 6819:1 6828:7 6830:1 6834:1 6839:1 6844:1 6845:3 6860:18 6866:1 6870:1 6877:3 6883:26 6886:4 6892:1 6915:2 6922:1 6947:4 6959:1 6967:2 6974:2 6978:1 6983:2 6990:2 6996:2 6998:1 6999:1 7001:1 7007:1 7013:1 7021:7 7022:1 7034:1 7037:1 7043:2 7050:1 7052:3 7060:1 7072:2 7080:1 7091:1 7099:2 7114:1 7127:1 7134:5 7140:1 7145:2 7153:1 7155:1 7169:1 7181:1 7183:1 7186:1 7192:1 7198:1 7201:1 7204:1 7218:1 7220:1 7221:1 7232:5 7244:2 7247:89 7250:1 7256:1 7263:2 7270:1 7271:1 7280:1 7284:1 7291:6 7312:1 7329:2 7337:1 7353:1 7357:1 7361:1 7372:1 7384:1 7387:5 7390:1 7409:2 7411:1 7420:1 7422:11 7431:1 7434:2 7442:2 7443:1 7444:18 7450:4 7453:1 7454:2 7457:1 7459:1 7473:1 7478:1 7479:1 7487:1 7494:1 7504:3 7525:3 7540:2 7543:1 7550:6 7554:1 7556:3 7558:1 7559:1 7560:2 7561:1 7563:1 7564:2 7568:1 7572:3 7574:2 7577:1 7578:1 7579:2 7582:5 7583:7 7584:2 7609:2 7617:1 7636:1 7641:1 7642:1 7647:2 7652:1 7656:1 7668:1 7670:1 7678:1 7687:1 7692:1 7699:1 7700:1 7701:1 7707:1 7710:2 7711:1 7729:1 7731:5 7737:1 7742:1 7743:1 7769:1 7770:3 7783:1 7803:1 7808:1 7835:2 7838:1 7841:3 7843:2 7849:1 7868:1 7874:1 7878:1 7880:1 7890:1 7900:2 7912:1 7913:1 7915:1 7919:1 7923:1 7924:1 7930:1 7940:1 7952:1 7957:4 7988:2 7993:1 7998:1 8000:1 8009:1 8012:3 8013:3 8017:2 8023:2 8042:1 8050:1 8055:1 8056:2 8057:1 8058:5 8065:3 8072:1 8075:2 8080:3 8081:2 8087:1 8094:3 8096:1 8098:1 8100:1 8105:3 8113:1 8116:1 8119:2 8128:2 8135:5 8137:1 8138:7 8146:2 8152:1 8155:1 8163:1 8167:1 8168:1 8189:2 8192:3 8194:2 8196:5 8199:2 8200:1 8207:1 8211:1 8214:1 8231:1 8245:1 8247:6 8248:1 8253:2 8263:1 8267:2 8272:1 8280:2 8296:1 8299:1 8319:1 8324:1 8333:1 8335:1 8339:1 8341:1 8342:1 8346:1 8347:1 8358:2 8360:1 8368:1 8371:1 8382:1 8383:6 8387:9 8390:1 8391:1 8399:2 8411:1 8414:1 8415:2 8421:3 8431:1 8434:2 8437:6 8441:1 8454:2 8456:2 8460:1 8491:2 8496:1 8501:1 8507:1 8511:1 8513:1 8520:3 8522:3 8524:1 8528:1 8532:1 8533:4 8539:2 8542:2 8546:2 8552:9 8554:1 8556:1 8559:2 8571:2 8573:1 8576:1 8591:1 8606:2 8616:6 8623:1 8626:2 8634:1 8647:1 8648:2 8651:1 8654:1 8664:1 8669:1 8678:1 8712:1 8732:2 8742:1 8743:1 8744:1 8755:1 8770:1 8772:1 8776:1 8779:3 8780:2 8785:3 8786:2 8787:1 8794:1 8797:3 8807:1 8809:4 8821:1 8832:1 8840:1 8843:1 8848:1 8858:1 8859:1 8860:1 8872:1 8886:1 8890:1 8899:1 8901:2 8909:2 8919:2 8923:1 8926:1 8928:2 8937:1 8953:1 8955:1 8959:2 8961:1 8967:1 8968:1 8971:3 8974:1 8980:1 8983:1 8986:1 8990:1 8993:2 8994:2 8996:1 9006:3 9019:1 9025:2 9026:2 9041:1 9051:1 9067:2 9072:1 9084:1 9085:1 9090:1 9100:2 9103:2 9107:1 9113:1 9114:1 9117:1 9122:4 9124:1 9125:1 9129:2 9143:1 9159:1 9162:1 9165:1 9177:1 9180:3 9183:1 9185:1 9189:2 9191:4 9193:1 9204:1 9205:1 9215:1 9228:1 9234:1 9237:1 9238:1 9251:8 9252:4 9253:1 9258:1 9260:26 9261:3 9268:1 9275:2 9279:1 9283:1 9295:9 9303:1 9308:2 9309:1 9329:1 9331:1 9333:1 9334:1 9337:1 9340:3 9347:1 9357:1 9358:1 9360:2 9364:1 9370:1 9378:1 9380:1 9385:1 9388:6 9390:1 9394:1 9404:1 9406:11 9408:1 9429:1 9432:1 9443:2 9444:5 9449:1 9456:2 9461:1 9474:1 9478:2 9486:1 9492:1 9499:3 9508:3 9512:2 9522:1 9525:1 9534:2 9548:3 9550:1 9555:2 9560:1 9569:1 9589:1 9591:1 9594:7 9596:3 9597:1 9605:2 9606:1 9607:1 9612:1 9613:1 9624:13 9625:1 9626:1 9627:4 9629:1 9632:2 9641:2 9655:1 9657:1 9659:1 9675:9 9683:4 9693:1 9698:1 9704:2 9712:1 9719:1 9721:8 9752:1 9754:1 9759:1 9774:1 9780:1 9786:1 9787:1 9788:1 9795:2 9796:1 9798:2 9813:2 9815:1 9816:1 9817:1 9818:1 9822:2 9826:1 9829:1 9842:1 9851:1 9859:1 9865:3 9870:2 9879:2 9881:1 9884:1 9886:1 9888:1 9890:1 9904:1 9910:3 9916:2 9917:1 9918:1 9920:1 9924:5 9926:2 9929:1 9936:1 9940:1 9943:2 9948:1 9952:2 9959:2 9963:1 9968:1 9980:2 9983:1 9991:1 9992:2 10001:1 10007:1 10009:2 10010:1 10013:3 10017:1 10039:1 10044:3 10045:1 10049:1 10057:4 10058:1 10059:7 10068:2 10070:1 10075:1 10086:1 10092:1 10098:1 10105:3 10111:5 10115:1 10124:2 10125:2 10127:1 10129:8 10130:1 10147:1 10160:1 10163:1 10169:1 10175:1 10193:5 10200:2 10204:5 10212:2 10215:1 10223:1 10230:1 10243:1 10254:1 10262:1 10263:2 10271:3 10272:4 10280:1 10283:1 10286:1 10297:1 10298:1 10301:1 10306:1 10315:2 10318:1 10323:1 10334:1 10335:1 10349:4 10356:1 10376:3 10377:2 10378:2 10380:1 10398:3 10399:3 10408:3 10409:4 10415:1 10427:1 10442:5 10459:46 10463:1 10468:3 10474:1 10479:23 10483:1 10484:14 10485:1 10494:1 10504:1 10510:1 10515:1 10551:1 10554:4 10564:1 10567:2 10570:1 10573:10 10595:2 10619:1 10632:2 10637:1 10639:4 10640:1 10642:1 10649:1 10654:1 10683:1 10685:2 10709:1 10720:1 10721:8 10723:1 10724:1 10725:3 10740:1 10742:2 10748:1 10749:1 10756:18 10764:2 10769:1 10773:1 10777:1 10787:2 10790:2 10797:1 10810:1 10820:4 10822:1 10824:1 10845:1 10857:1 10865:2 10868:1 10877:1 10886:1 10888:1 10892:2 10902:1 10917:1 10922:1 10925:2 10930:1 10934:1 10945:1 10948:1 10950:1 10954:1 10957:1 10963:3 10968:2 10972:1 10975:1 10978:3 10982:1 10990:1 10996:1 11005:3 11010:1 11013:1 11017:1 11032:3 11042:1 11046:2 11050:3 11054:1 11055:2 11058:48 11075:1 11081:2 11082:1 11085:1 11088:2 11099:1 11117:1 11123:1 11126:1 11132:1 11140:1 11159:2 11164:1 11175:1 11180:3 11195:1 11197:16 11200:9 11203:1 11207:1 11260:1 11267:1 11272:2 11273:2 11276:1 11280:3 11281:1 11287:1 11289:1 11310:2 11311:1 11313:2 11319:1 11321:7 11326:2 11328:1 11330:2 11333:1 11344:1 11357:1 11362:2 11376:3 11379:1 11384:1 11391:1 11403:3 11405:2 11407:1 11408:1 11415:2 11416:2 11417:1 11420:3 11433:1 11439:1 11445:1 11446:4 11448:1 11456:1 11457:1 11458:1 11459:2 11473:2 11496:1 11508:1 11520:1 11523:2 11527:1 11540:1 11557:1 11559:1 11563:2 11565:1 11568:4 11573:4 11588:1 11599:1 11600:1 11601:1 11607:1 11608:1 11623:1 11629:1 11634:1 11636:1 11637:1 11639:1 11641:4 11643:2 11646:1 11649:1 11652:1 11654:1 11656:3 11658:4 11664:1 11666:1 11667:1 11668:1 11669:2 11678:1 11679:3 11684:3 11687:4 11689:2 11698:2 11702:8 11704:1 11715:1 11720:1 11721:1 11724:1 11730:9 11732:2 11735:2 11736:3 11739:1 11742:1 11761:1 11765:1 11770:1 11773:1 11782:2 11788:1 11800:1 11824:1 11829:2 11831:3 11835:1 11842:1 11850:1 11857:1 11859:1 11864:1 11866:1 11877:2 11881:1 11885:3 11888:1 11895:1 11898:2 11914:1 11921:1 11937:1 11951:2 11958:2 11978:3 11980:1 11992:1 12000:1 12019:1 12026:1 12037:1 12043:1 12050:2 12052:7 12053:2 12055:1 12063:1 12092:1 12102:1 12116:1 12129:1 12130:1 12132:1 12138:1 12161:1 12167:1 12172:1 12173:1 12186:1 12190:1 12210:1 12228:1 12230:1 12234:1 12245:2 12251:1 12256:2 12260:2 12274:1 12276:1 12280:5 12284:1 12289:2 12305:1 12306:1 12328:1 12331:1 12348:1 12351:1 12355:1 12357:3 12365:2 12371:1 12386:1 12392:1 12397:2 12403:1 12405:1 12415:1 12433:1 12435:4 12437:1 12439:1 12440:1 12451:2 12454:1 12461:3 12466:1 12470:1 12471:1 12480:1 12481:1 12497:3 12499:2 12502:1 12513:1 12519:1 12530:1 12532:1 12535:3 12537:2 12541:1 12556:3 12557:2 12558:2 12559:1 12565:1 12566:3 12572:1 12577:2 12578:1 12580:2 12581:2 12582:1 12585:3 12591:1 12592:2 12603:1 12610:2 12611:1 12613:1 12617:2 12621:1 12640:1 12642:3 12645:1 12648:1 12653:1 12671:1 12672:3 12678:3 12687:1 12688:3 12699:1 12703:1 12709:1 12710:1 12712:1 12713:1 12720:1 12722:1 12723:2 12726:1 12728:2 12731:4 12739:1 12747:1 12752:1 12754:1 12759:1 12769:1 12772:2 12779:1 12797:1 12808:1 12809:1 12813:1 12825:1 12828:6 12836:2 12837:2 12838:1 12856:1 12857:1 12858:2 12866:1 12876:1 12877:3 12893:1 12901:3 12914:1 12918:3 12919:1 12922:1 12928:1 12938:1 12962:5 12965:1 12967:1 12970:1 12977:2 12978:3 12983:1 12986:1 12989:1 12992:1 12993:3 13001:1 13005:1 13018:1 13019:4 13021:1 13028:1 13041:1 13048:1 13051:1 13052:2 13056:3 13058:1 13072:2 13075:1 13087:1 13100:1 13102:3 13106:1 13108:1 13121:1 13134:1 13136:2 13141:5 13142:1 13143:3 13153:1 13156:1 13170:1 13179:1 13186:1 13189:1 13191:2 13192:1 13193:1 13197:1 13200:4 13203:4 13207:7 13208:1 13212:1 13214:1 13219:1 13220:1 13223:1 13231:2 13236:2 13237:1 13238:7 13239:1 13240:1 13247:1 13249:1 13250:1 13256:4 13262:1 13266:1 13269:2 13307:1 13327:1 13338:1 13339:1 13358:3 13367:1 13370:6 13383:1 13386:1 13388:1 13402:1 13426:4 13430:1 13432:1 13446:2 13448:2 13459:1 13462:1 13468:1 13480:1 13481:1 13483:3 13485:3 13491:3 13506:3 13508:1 13512:1 13513:1 13516:1 13517:5 13534:3 13538:1 13546:2 13556:1 13567:1 13572:1 13573:1 13574:1 13582:2 13583:1 13585:1 13586:2 13608:1 13627:6 13628:2 13631:1 13639:1 13642:1 13645:1 13646:2 13652:3 13655:1 13659:1 13660:2 13662:4 13668:1 13670:2 13672:1 13677:2 13682:1 13684:2 13698:1 13703:2 13710:1 13727:1 13735:2 13753:1 13759:1 13769:1 13783:2 13789:7 13812:1 13813:1 13817:1 13825:2 13826:1 13832:1 13846:1 13853:1 13855:1 13856:2 13861:1 13866:9 13876:1 13891:1 13899:4 13900:1 13902:3 13904:4 13907:2 13911:1 13912:3 13913:5 13915:1 13918:1 13921:1 13922:2 13924:1 13926:2 13927:1 13934:3 13937:1 13939:16 13942:2 13944:4 13947:1 13948:8 13950:3 13956:2 13958:1 13959:2 13981:1 13983:3 13999:1 14028:1 14049:1 14051:8 14055:1 14058:5 14059:1 14060:1 14063:2 14064:1 14068:1 14077:1 14090:1 14095:3 14100:8 14105:1 14108:1 14112:2 14113:1 14135:1 14140:1 14142:1 14148:1 14151:2 14172:7 14186:1 14188:2 14192:1 14199:2 14205:1 14212:3 14228:1 14238:2 14251:2 14258:2 14261:3 14265:1 14271:2 14273:1 14278:1 14279:1 14284:1 14286:1 14288:1 14293:1 14298:7 14311:1 14325:1 14335:1 14338:1 14344:1 14346:2 14349:1 14353:1 14361:1 14362:1 14363:3 14366:2 14371:1 14372:2 14374:2 14376:1 14379:4 14383:1 14411:2 14413:1 14429:2 14445:1 14446:1 14470:2 14472:1 14478:1 14479:1 14492:2 14498:1 14511:1 14519:1 14526:1 14527:3 14532:1 14535:1 14561:1 14572:1 14575:3 14599:2 14603:1 14618:2 14624:3 14625:3 14631:1 14636:1 14637:5 14641:5 14651:10 14652:1 14656:1 14660:1 14663:1 14664:1 14666:1 14672:1 14687:1 14694:5 14698:3 14701:3 14705:1 14706:1 14736:1 14739:4 14747:2 14756:1 14770:5 14775:1 14779:2 14780:1 14781:1 14790:1 14795:1 14796:1 14807:1 14811:7 14815:1 14827:1 14828:7 14832:4 14845:1 14846:1 14850:1 14852:1 14853:1 14856:1 14858:1 14868:1 14881:1 14882:2 14884:1 14888:1 14889:3 14895:1 14909:1 14916:1 14933:2 14947:1 14957:1 14981:1 14995:1 15003:2 15004:1 15018:1 15025:5 15040:3 15048:2 15049:1 15051:1 15052:1 15055:2 15064:1 15066:1 15069:1 15084:2 15086:1 15087:1 15089:1 15093:1 15096:3 15097:1 15110:5 15113:1 15116:1 15120:1 15122:1 15128:1 15130:2 15135:2 15139:1 15142:2 15149:3 15151:1 15156:2 15163:1 15164:1 15166:1 15170:6 15171:13 15190:1 15195:1 15210:1 15214:1 15215:1 15226:2 15230:1 15232:5 15240:1 15241:1 15249:3 15250:1 15254:1 15256:1 15262:1 15265:2 15267:2 15268:1 15282:1 15284:1 15287:1 15293:1 15294:1 15304:3 15305:1 15308:1 15311:1 15312:1 15331:1 15337:1 15342:1 15351:1 15354:1 15356:2 15363:1 15370:1 15396:1 15404:6 15411:1 15413:1 15452:2 15455:1 15457:8 15458:6 15461:1 15466:2 15478:1 15490:3 15493:1 15499:1 15511:9 15513:1 15514:1 15516:1 15521:7 15525:1 15527:1 15532:7 15537:1 15545:4 15549:1 15560:1 15572:2 15574:2 15580:1 15582:9 15583:2 15584:2 15587:1 15592:1 15596:1 15598:16 15602:1 15607:1 15608:4 15614:1 15616:2 15618:2 15619:1 15624:1 15631:1 15635:2 15643:4 15651:1 15658:1 15661:2 15678:4 15679:1 15681:1 15686:1 15693:1 15695:1 15698:1 15703:1 15710:4 15711:1 15721:3 15727:1 15730:3 15741:1 15751:1 15753:1 15760:1 15764:1 15773:1 15774:1 15776:2 15797:2 15805:2 15806:4 15810:1 15816:1 15820:1 15827:1 15865:2 15867:1 15868:2 15873:1 15876:1 15878:1 15882:8 15886:5 15890:2 15922:1 15924:1 15936:1 15940:1 15943:1 15949:1 15950:2 15956:1 15957:1 15960:1 15962:3 15965:1 15966:3 15969:1 15976:1 15983:2 15990:1 16001:1 16019:2 16020:2 16023:1 16029:1 16032:1 16036:2 16057:2 16059:1 16060:2 16065:1 16067:1 16071:1 16073:1 16077:1 16101:1 16103:1 16109:1 16115:1 16122:3 16123:5 16125:1 16132:1 16136:1 16145:2 16147:1 16153:1 16154:1 16157:2 16164:1 16175:4 16178:1 16181:1 16185:1 16202:1 16232:1 16258:1 16274:1 16275:3 16278:1 16297:1 16299:3 16301:1 16305:3 16308:1 16309:1 16314:1 16319:1 16329:3 16333:3 16345:2 16350:1 16363:1 16364:1 16369:2 16374:1 16379:1 16395:1 16399:1 16403:1 16406:1 16408:1 16425:1 16462:1 16471:1 16475:1 16478:1 16509:1 16535:3 16541:1 16558:1 16560:3 16562:1 16575:1 16579:2 16583:1 16587:1 16589:1 16591:1 16592:2 16594:1 16613:2 16624:1 16630:1 16636:1 16652:2 16662:1 16668:1 16670:1 16674:1 16679:2 16687:1 16690:1 16693:1 16705:1 16706:1 16707:1 16727:1 16745:1 16746:2 16753:1 16755:1 16756:4 16763:4 16766:1 16776:1 16785:2 16792:1 16793:1 16807:2 16810:2 16819:1 16820:1 16823:1 16825:1 16826:2 16827:1 16842:1 16853:2 16875:1 16880:1 16886:8 16891:2 16898:1 16900:1 16902:2 16905:2 16915:1 16917:4 16919:1 16922:3 16929:1 16934:1 16940:2 16948:1 16951:1 16953:2 16957:1 16961:5 16962:2 16972:1 16978:3 16981:2 16983:1 16993:2 16999:2 17000:3 17002:3 17003:1 17004:1 17006:1 17008:1 17009:2 17015:2 17021:2 17024:2 17029:1 17030:2 17031:6 17032:1 17034:3 17043:1 17050:1 17054:4 17055:1 17058:1 17060:1 17067:1 17071:2 17076:2 17088:2 17089:1 17091:1 17093:1 17097:3 17108:1 17113:1 17115:2 17119:2 17120:3 17125:2 17137:2 17139:2 17143:3 17144:1 17152:1 17154:1 17164:3 17168:1 17169:2 17175:1 17190:1 17196:1 17199:1 17202:4 17204:2 17207:1 17208:6 17209:2 17212:1 17220:1 17227:1 17235:1 17250:1 17260:1 17267:1 17278:1 17282:1 17304:1 17311:2 17317:4 17318:1 17319:1 17336:1 17340:1 17341:1 17345:1 17349:1 17380:1 17382:1 17383:1 17384:1 17399:4 17404:1 17405:1 17414:1 17415:1 17418:1 17422:1 17427:2 17432:1 17434:16 17439:1 17455:1 17468:2 17470:1 17481:1 17486:1 17511:2 17513:1 17529:1 17533:1 17540:2 17561:1 17565:1 17570:1 17572:1 17582:1 17599:1 17602:2 17603:3 17604:3 17615:2 17616:1 17629:2 17637:3 17640:9 17662:1 17667:1 17675:1 17695:1 17713:2 17718:1 17733:1 17750:1 17753:1 17754:1 17757:1 17769:1 17781:8 17784:4 17789:1 17791:2 17792:2 17793:1 17796:1 17820:1 17826:1 17827:1 17828:1 17833:1 17835:1 17844:7 17861:2 17873:1 17878:2 17891:4 17894:1 17897:39 17902:2 17933:1 17935:1 17936:1 17947:6 17960:2 17961:1 17967:2 17974:2 17978:1 18031:1 18044:2 18053:1 18056:1 18069:1 18073:4 18080:3 18084:1 18098:1 18106:2 18107:3 18115:3 18117:2 18119:1 18133:1 18141:2 18144:1 18145:2 18151:1 18153:1 18161:1 18170:1 18177:1 18180:1 18189:1 18190:2 18196:3 18217:1 18219:1 18232:1 18236:4 18255:6 18257:5 18258:1 18259:2 18261:2 18262:1 18270:8 18277:1 18278:2 18281:1 18282:1 18283:1 18288:2 18294:2 18295:1 18296:1 18303:1 18305:2 18306:1 18309:4 18311:2 18313:1 18325:1 18332:1 18358:1 18367:1 18370:2 18372:1 18373:1 18388:1 18392:1 18394:1 18401:1 18402:1 18404:1 18412:2 18414:1 18415:2 18417:6 18426:1 18434:1 18435:1 18437:1 18438:1 18449:1 18460:1 18461:1 18463:1 18465:1 18468:1 18474:1 18482:1 18489:7 18498:1 18499:11 18505:1 18513:1 18521:1 18522:2 18524:2 18546:1 18549:1 18550:1 18558:1 18559:1 18562:4 18572:1 18573:1 18575:1 18576:1 18577:1 18580:4 18582:1 18583:1 18584:1 18606:1 18608:1 18616:3 18628:1 18645:3 18647:1 18652:1 18655:1 18656:6 18666:4 18670:7 18681:1 18687:1 18718:1 18719:1 18728:1 18730:1 18762:1 18763:13 18785:3 18794:1 18799:2 18830:8 18835:2 18844:1 18848:1 18866:1 18881:3 18882:1 18891:2 18899:1 18909:1 18913:1 18916:4 18917:1 18921:2 18927:3 18935:1 18937:1 18942:1 18947:2 18957:1 18958:4 18965:1 18968:1 18976:1 18996:1 18997:1 19001:1 19005:6 19015:2 19022:1 19045:1 19058:1 19060:1 19067:1 19082:1 19086:1 19095:1 19112:1 19132:1 19134:1 19147:1 19154:1 19159:2 19161:2 19168:1 19175:1 19176:4 19182:2 19185:1 19188:2 19190:1 19205:1 19206:1 19208:1 19210:1 19212:1 19217:3 19221:3 19231:1 19237:1 19242:2 19244:4 19260:2 19262:1 19263:1 19266:1 19268:1 19280:1 19295:1 19302:2 19306:1 19322:1 19324:1 19339:1 19340:2 19346:2 19347:2 19361:3 19383:1 19394:1 19397:1 19405:2 19411:1 19414:1 19426:2 19429:2 19430:2 19431:1 19435:1 19467:2 19469:1 19484:4 19485:1 19489:2 19490:1 19495:2 19496:1 19498:1 19502:1 19516:1 19528:1 19529:1 19542:4 19543:5 19561:1 19569:2 19572:1 19584:3 19588:3 19594:1 19602:3 19609:1 19615:2 19618:1 19619:1 19629:1 19633:1 19635:1 19639:1 19644:1 19652:1 19654:2 19655:1 19657:1 19660:1 19663:7 19664:1 19669:2 19670:1 19672:1 19673:1 19674:1 19681:1 19689:1 19695:1 19700:2 19706:1 19727:1 19733:2 19734:1 19737:1 19738:2 19746:1 19748:1 19760:1 19768:1 19772:12 19776:2 19779:1 19784:1 19788:1 19799:1 19823:1 19828:1 19857:4 19861:2
|
4cb657b1b8a3f66182c4d92db59c145b07746654 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3751/CH11/EX11.16/Ex11_16.sce | e7435d7a10b1ece33648f31ccfec28ae23ca6626 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 900 | sce | Ex11_16.sce | //Fluid Systems - By - Shiv Kumar
//Chapter 11- Centrifugal Pumps
//Example 11.16
//To Determine Minimum Starting Speed of the Pump.
clc
clear
//Given Data:-
Di=200; //Diameter of Impeller at Inlet, mm
Do=400; //Diameter of the Impeller at Outlet, mm
Hm=25; //Manometric Head, m
//Data Used:-
g=9.81; //Acceleration due to gravity, m/s^2
//Computations:-
Di=Di/1000; //m
Do=Do/1000; //m
uo_by_Nmin=%pi*Do/60; // uo/Nmin
ui_by_Nmin=%pi*Di/60; // ui/Nmin
//Minimum Starting Speed of The Centrifugal Pump, Nmin
Nmin=sqrt(2*g*Hm/(uo_by_Nmin^2-ui_by_Nmin^2)); //rpm
//Results:-
printf("The Minimum Starting Speed of the Centrifugal Pump, Nmin =%.f rpm \n",Nmin ) //The answer vary due to round off error
|
48f27ef2567422fd83abfcd90f5213362e6acd29 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2159/CH3/EX3.2/32.sce | aa44ba3bb9848bde0a8aa70c2fe7f26db7687d19 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 262 | sce | 32.sce | // problem 3.2
d1=1
d2=0.5
q=0.1
p1=70*1000
l=60
z2=0
z1=l/20
a1=3.142*d1*d1/4
a2=3.142*d2*d2/4
v1=q/a1
v2=q/a2
w=9810
g=9.91
// applying bernoulli equation
p2=((z1-z2)+(((v1^2)-(v2^2))/(2*g))+(p1/w))*w
disp(p2,"presssure at lower end in N/m2")
|
d91606d780944dce42bc6b0eb075c8d471bebd76 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1583/CH7/EX7.3/Oscillators_Ex_7_3.sce | 5ef000eae462cea12ee62bee3fab8a78f35526ca | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 213 | sce | Oscillators_Ex_7_3.sce | clc
//Chapter 7:Conditions for Oscillation
//example 7.3
//given
rpi=1000
C1=200*10^-12
r=3.14//series resistance
C_1=C1/(1+(r/rpi))//capacitance
mprintf('the capacitor value is %f pF',round(C_1*1e12))
|
ecaef3e3c5456edc0d1dcc0de82eaa61d2c70ad3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2411/CH5/EX5.6/Ex5_6.sce | 6270b6b4bd9421e0911cf68e18c92184c660f984 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 664 | sce | Ex5_6.sce | // Scilab Code Ex5.6: Page-286 (2008)
clc; clear;
h = 6.62e-034; // Planck's constant, Js
c = 3e+008; // Speed of light, m/s
e = 1.6e-019; // Energy quivalent of 1 eV, J
phi = 2.28*e; // Work function for material, J
m = 9.1e-031; // Mass of an electron, kg
lambda = 3000e-010; // Wavelength of incident radiation, m
E = h*c/lambda; // Energy of the incidnt radiation, J
KE = E - phi; // Kinetic energy of the ejected photoelectrons, J
v = sqrt(2*KE/m); // Velocity of emitted electron, m/s
printf("\nThe velocity of the emitted electron = %4.2e m/s", v);
// Result
// The velocity of the emitted electron = 8.08e+005 m/s |
eab3b9b54e9b6733c4a7dc61380a37614ea9317c | e9c0e1d526fe35284a1d3adcaeb880730adae854 | /code/gradproj.sci | b5cc6e0c1ffdb157b59c8c097262d2daf427ad72 | [] | no_license | louity/least_squares_inequality | f42649621ca2a86849cc7d76c8325e45000ff9cb | aebb99bf306af905b4fa20c29b1e8586c8c11464 | refs/heads/master | 2021-01-11T21:20:04.279793 | 2017-01-30T16:40:38 | 2017-01-30T16:40:38 | 78,764,470 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 1,687 | sci | gradproj.sci | function [xf_v, error_v, X_m] = gradproj(A_m, b_v, x0_v, N, rho)
// Use projected gradient to solve the linear inequalities least-
// square problem.
// Input variables:
// A_m -- a matrix of size mxn.
// b_v -- a vector of size mx1.
// x0_v -- an input vector of size nx1.
// N -- number of iterations.
// rho -- step size of the algorithm.
//
// Output variables:
// xf_v -- a vector of size nx1
// error_v -- a vector of size Nx1
// X_m -- a matrix of size nxM storing all the values of x
[m, n] = size(A_m);
error_v = [];
X_m = [x0_v];
tildeA_m = [A_m -A_m eye(m,m)];
Xf_v = [x0_v ; 0*x0_v ; 0*b_v];
for k = 1:N
Xint_v = Xf_v;
Xf_v = Xf_v - 2*rho*tildeA_m'*(tildeA_m*Xf_v - b_v);
Xf_v = (Xf_v>0) .* Xf_v;
X_m = [X_m Xf_v(1:n)-Xf_v(n+1:2*n)];
error_v = [error_v sum(abs(Xf_v-Xint_v))];
end
xf_v = Xf_v(1:n) - Xf_v(n+1:2*n)
endfunction
function [] = plot_gradproj(X_m, error_v, A_m, b_v)
figure;
clf;
plot2d(1:length(error_v), log(abs(error_v)))
a = gca();
fig = a.children.children;
fig.thickness = 2;
ylabel("Erreur itérée logarithmique")
xlabel("Itérations")
res=[]
for k = 1:size(X_m,2)
res = [res A_m*(X_m(:,k))-b_v];
end
for k = 1:size(X_m,1)
figure;
clf;
plot(1:size(X_m,2), res(k,:))
a = gca();
fig = a.children.children;
fig.thickness = 2;
ylabel("Valeur résiduelle")
xlabel("Itérations")
end
endfunction
|
4ac509142d24af19931c7dbd4a1e6376af657301 | 7d080f5a520b49242d8d5d362be8378358f324b5 | /ge.sce | 6328c35b989cafc03604a6ec1f4c1d46a28a33ca | [] | no_license | pradyumnaym/LA_Algos | 1d4cc539b531ffaea88ceb475ca3c4b59318270a | 561df9e8b2d706927c735f2b2e30db9ff1a45ade | refs/heads/master | 2020-12-29T16:50:23.235497 | 2020-02-06T11:41:10 | 2020-02-06T11:41:10 | 238,675,439 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 339 | sce | ge.sce | disp("Name: Pradyumna YM")
disp("SRN: PES1201700986")
a=input("enter the Matrix A: ")
[m,n]=size(a)
[v,pivot]=rref(a)
disp(pivot,"pivots in U")
cs=a(:,pivot)
disp(cs,"Column space=")
rs=a(:,pivot)'
disp(rs,"Row space=")
null1= kernel(a)
disp(null1,"Null space=")
ln=kernel(a')
disp(ln,"Left null space=")
r=length(pivot)
disp(r,"rank=")
|
3053f93f0a751f45551b1d2dd1b82a1e9a30d9e6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2204/CH10/EX10.3/ex10_3.sce | eea7aca569037209e06c55149dd3b645f2ed1277 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 445 | sce | ex10_3.sce | // Exa 10.3
clc;
clear;
close;
// Given data
V_P = 5;// in V
V_LT = -1.5;// in V
V_H = 2;// in V
f = 1;// in kHz
f = f * 10^3;// in Hz
V_UT = V_H-V_LT;// in V
V_m = V_P/2;// in V
// Formula V_LT= V_m*sind(theta)
theta= asind(-V_LT/V_m);
T = 1/f;// in sec
theta1 = theta+180;// in degree
T1 = (T*theta1)/360;// in sec
T2 = T-T1;// in sec
disp(T1*10^3,"The value of T1 in ms is : ")
disp(T2*10^3,"The value of T2 in ms is : ")
|
8758e4f7836e5e7a58c6e4b5f17bbaeda6825dff | 449d555969bfd7befe906877abab098c6e63a0e8 | /569/CH9/EX9.14/9_14.sci | bd602c98263b0f02b32bc23d5e2a00c0ad671d36 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 278 | sci | 9_14.sci | // calculate thickness of diaphram and natural frequency
clc;
P=7*10^6;
R=6.25*10^-3;
v=0.28;
E=200*10^9;
t={[9*P*R^4*(1-v^2)/(16*E)]^0.25}*10^3;
disp(t,'thickness of diaphram(mm)')
ds=7800;
fn=[2.5*t/(%pi*R^2)]*[E/(3*ds*(1-v^2))]^0.5;
disp(fn,'natural frequency(Hz)') |
bf34c2f22cf7d642920257c56fce04784e6623e1 | 897ce6a3fd5b682122c396af7e24fa53014c7cb3 | /src_script/scilab/_import/rtsx_10/ReplaceFrame.sci | dc52ff166ed32c3f9bedc5ac5e8b4735b385df5e | [] | no_license | stub22/glue-ai-v1_friendularity | e66f5ab357eba45de2def6f7900f414e358a4125 | 74949dc3e9b0d08b39857735aad901915e61322d | refs/heads/master | 2022-12-19T18:57:01.336831 | 2017-08-04T12:55:12 | 2017-08-04T12:55:12 | 284,544,364 | 0 | 0 | null | 2020-10-14T00:08:14 | 2020-08-02T21:24:34 | Java | UTF-8 | Scilab | false | false | 725 | sci | ReplaceFrame.sci | // ReplaceFrame.sci replace a frame in frame structure
// www.controlsytemslab.com August 2012
// Create a frame using Frame() first
// Example:
// F = Frame(trotx(pi/2)*transl([1 0 0])),'name','{W}');
// Fs = ReplaceFrame(Fs, F, 2) // replace frame at position 2 in the chain
function Fs=ReplaceFrame(Fs, F, fidx)
nframes = size(Fs,1); // number of frames in structure
if fidx<1 | fidx>nframes then
msg=sprintf("Frame replace location must be between 1 - %d",nframes);
error(msg);
end
Fs(fidx) = F; // replace old frame at fidx with new frame
endfunction
function Fs=replaceframe(Fs, F, fidx)
Fs=ReplaceFrame(Fs, F, fidx);
endfunction |
cf472c6d6b7e9bfb66bf9fa3db66611daf803ff3 | 6da5fdc518b7e7a8992fa4b663164bfb3bdcb9b6 | /drivers/ik/ik_lidar.sci | 925c2d726b8c67f6652b011a1009333bdd460b77 | [] | no_license | wmacevoy/grit | 8042bab120604ca25dcf61764442b36b7545b546 | a8dfa9114debd09afba2b6199c2766f1349f6d32 | refs/heads/master | 2020-12-26T21:38:33.825695 | 2016-02-14T00:45:05 | 2016-02-14T00:45:05 | 23,447,543 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 6,227 | sci | ik_lidar.sci |
// declare globals
global ik_lidarepsilon ik_lidarsteps;
// define function
function ik_lidary=ik_lidarf(ik_lidarparameters,ik_lidarx)
// declare globals
global ik_lidarepsilon ik_lidarsteps;
// import globals
epsilon=ik_lidarepsilon; // epsilon
steps=ik_lidarsteps; // steps
// import parameters
necklr=ik_lidarparameters(1);
neckud=ik_lidarparameters(2);
px=ik_lidarparameters(3);
py=ik_lidarparameters(4);
pz=ik_lidarparameters(5);
waist=ik_lidarparameters(6);
residual=ik_lidarparameters(7);
// import variables
_necklr=ik_lidarx(1);
_neckud=ik_lidarx(2);
residual0=cos(0.0174532925199433*_necklr)*px+sin((-0.0174532925199433)*_neckud)*sin(0.0174532925199433*_necklr)*pz+(-1)*cos((-0.0174532925199433)*_neckud)*sin(0.0174532925199433*_necklr)*py;
residual1=sin((-0.0174532925199433)*waist)*sin(0.0174532925199433*_necklr)*px+(cos((-0.0174532925199433)*_neckud)*cos((-0.0174532925199433)*waist)+(-1)*cos(0.0174532925199433*_necklr)*sin((-0.0174532925199433)*_neckud)*sin((-0.0174532925199433)*waist))*pz+(cos((-0.0174532925199433)*_neckud)*cos(0.0174532925199433*_necklr)*sin((-0.0174532925199433)*waist)+cos((-0.0174532925199433)*waist)*sin((-0.0174532925199433)*_neckud))*py;
ik_lidary=zeros(2,1);
ik_lidary(1)=residual0;
ik_lidary(2)=residual1;
endfunction
function ik_lidardy=ik_lidardf(ik_lidarparameters,ik_lidarx)
// declare globals
global ik_lidarepsilon ik_lidarsteps;
// import globals
epsilon=ik_lidarepsilon; // epsilon
steps=ik_lidarsteps; // steps
// import parameters
necklr=ik_lidarparameters(1);
neckud=ik_lidarparameters(2);
px=ik_lidarparameters(3);
py=ik_lidarparameters(4);
pz=ik_lidarparameters(5);
waist=ik_lidarparameters(6);
residual=ik_lidarparameters(7);
// import variables
_necklr=ik_lidarx(1);
_neckud=ik_lidarx(2);
dresidual0_d_necklr=(-0.0174532925199433)*cos((-0.0174532925199433)*_neckud)*cos(0.0174532925199433*_necklr)*py+(-0.0174532925199433)*sin(0.0174532925199433*_necklr)*px+0.0174532925199433*cos(0.0174532925199433*_necklr)*sin((-0.0174532925199433)*_neckud)*pz;
dresidual0_d_neckud=(-0.0174532925199433)*cos((-0.0174532925199433)*_neckud)*sin(0.0174532925199433*_necklr)*pz+(-0.0174532925199433)*sin((-0.0174532925199433)*_neckud)*sin(0.0174532925199433*_necklr)*py;
dresidual1_d_necklr=(-0.0174532925199433)*cos((-0.0174532925199433)*_neckud)*sin((-0.0174532925199433)*waist)*sin(0.0174532925199433*_necklr)*py+0.0174532925199433*cos(0.0174532925199433*_necklr)*sin((-0.0174532925199433)*waist)*px+0.0174532925199433*sin((-0.0174532925199433)*_neckud)*sin((-0.0174532925199433)*waist)*sin(0.0174532925199433*_necklr)*pz;
dresidual1_d_neckud=((-0.0174532925199433)*cos((-0.0174532925199433)*_neckud)*cos((-0.0174532925199433)*waist)+0.0174532925199433*cos(0.0174532925199433*_necklr)*sin((-0.0174532925199433)*_neckud)*sin((-0.0174532925199433)*waist))*py+(0.0174532925199433*cos((-0.0174532925199433)*_neckud)*cos(0.0174532925199433*_necklr)*sin((-0.0174532925199433)*waist)+0.0174532925199433*cos((-0.0174532925199433)*waist)*sin((-0.0174532925199433)*_neckud))*pz;
// place derivatives in dy
ik_lidardy=zeros(2,2);
ik_lidardy(1,1)=dresidual0_d_necklr;
ik_lidardy(1,2)=dresidual0_d_neckud;
ik_lidardy(2,1)=dresidual1_d_necklr;
ik_lidardy(2,2)=dresidual1_d_neckud;
endfunction
function ik_lidarx=ik_lidarsolve(ik_lidarparameters)
// declare globals
global ik_lidarepsilon ik_lidarsteps;
// import globals
epsilon=ik_lidarepsilon; // epsilon
steps=ik_lidarsteps; // steps
// import parameters
necklr=ik_lidarparameters(1);
neckud=ik_lidarparameters(2);
px=ik_lidarparameters(3);
py=ik_lidarparameters(4);
pz=ik_lidarparameters(5);
waist=ik_lidarparameters(6);
residual=ik_lidarparameters(7);
ik_lidarresidual=0;
// initialize unknowns from parameters
ik_lidarx=zeros(2,1);
_necklr=necklr;
_neckud=neckud;
// setup unknown vector x
ik_lidarx=zeros(2,1);
ik_lidarx(1)=_necklr;
ik_lidarx(2)=_neckud;
// newton iteration
for step=1:steps
ik_lidary=ik_lidarf(ik_lidarparameters,ik_lidarx);
ik_lidardy=ik_lidardf(ik_lidarparameters,ik_lidarx);
ik_lidarx=ik_lidarx-ik_lidardy\ik_lidary;
ik_lidarresidual=norm(ik_lidary);
if (ik_lidarresidual <= epsilon) then
break;
end
end
ik_lidarparameters(7)=ik_lidarresidual;
endfunction
function ik_lidarnew_parameters=ik_lidarupdate(ik_lidarparameters)
// declare globals
global ik_lidarepsilon ik_lidarsteps;
// import globals
epsilon=ik_lidarepsilon; // epsilon
steps=ik_lidarsteps; // steps
// import parameters
necklr=ik_lidarparameters(1);
neckud=ik_lidarparameters(2);
px=ik_lidarparameters(3);
py=ik_lidarparameters(4);
pz=ik_lidarparameters(5);
waist=ik_lidarparameters(6);
residual=ik_lidarparameters(7);
ik_lidarx=ik_lidarsolve(ik_lidarparameters);
// import variables
_necklr=ik_lidarx(1);
_neckud=ik_lidarx(2);
necklr=_necklr;
neckud=_neckud;
// assign to new_parameters
ik_lidarnew_parameters=zeros(7,1);
ik_lidarnew_parameters(1)=necklr;
ik_lidarnew_parameters(2)=neckud;
ik_lidarnew_parameters(3)=px;
ik_lidarnew_parameters(4)=py;
ik_lidarnew_parameters(5)=pz;
ik_lidarnew_parameters(6)=waist;
ik_lidarnew_parameters(7)=residual;
endfunction
function ik_lidartests(ik_lidarname)
// declare globals
global ik_lidarepsilon ik_lidarsteps;
ik_lidarcase_name='';
ik_lidarcase_count=1;
ik_lidarmax_x_error_name="none";
ik_lidarmax_x_error_count=0;
ik_lidarmax_x_error=0;
ik_lidarx_error=0;
ik_lidarmax_y_error_name="none";
ik_lidarmax_y_error_count=0;
ik_lidarmax_y_error=0;
ik_lidary_error=0;
if (ik_lidarname == "all") then
printf("test summary: max_x_error=%1.15g from %d/""%s"", max_y_error=%1.15g from %d/""%s""\n",ik_lidarmax_x_error,ik_lidarmax_x_error_count,ik_lidarmax_x_error_name,ik_lidarmax_y_error,ik_lidarmax_y_error_count,ik_lidarmax_y_error_name);
end
endfunction
function ik_lidarruns(name)
// declare globals
global ik_lidarepsilon ik_lidarsteps;
ik_lidarcase_count=1;
endfunction
|
4e0e052c5845c442d8fca6ac2146af94af64200e | 449d555969bfd7befe906877abab098c6e63a0e8 | /692/CH2/EX2.7/P2_7.sce | a20487216695ebef2989439c8608a08031c3b24b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 307 | sce | P2_7.sce | //EXAMPLE 2.7,Example of Power signal
clear ;
clc ;
Sum=0;
N=1:10000;
for i=1:length(N)
h1= 3*((-1)^i);
h=h1^2;
end
Energy = sum(h);
if (Energy/(2*(length(N))+1)<%inf ) then
disp ('Power Signal') ;
disp(Energy/2,'Power Signal = ');
else
disp ('Not a Power Signal') ;
end
|
fd74723e83b44a8e82a74466c134defc4af382e4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /116/CH8/EX8.5/exa8_5.sce | 107eeb6abb134ee22392f0b13133e8ca67b55b91 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 556 | sce | exa8_5.sce |
//Example 8.5
//Page 405
//Refer to table 8.2 and figure 8.8 on page 394
dr=565//data rate
wl=1550*10^-9//wavelength
disp('The use of 5B6B line code implies the line data rate is,')
565*(6/5)
//678Mbps
disp('The receiver sensitivity for 678 Mbps is determined from fig 8.8 or table 8.2 as ')
rsen=-34.5
A=(-5-rsen)//system gain
BDP=[500/(17*0.4)]
BDPs=[73.6/0.678]
lossp=(0.2+0.2)*(65)
lossm=A-lossp
//Result
//System gain = 29.5 dB
//BDP = 73.6 Gbps
//BDP spacing = 109 km
//Path Loss = 26 dB
//Loss Margin = 3.5 dB
|
a0a5e1036aa94c08811557f84df8340b73105da0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2240/CH27/EX26.7/EX26_7.sce | 5a2d9dac689f7264a71c453df8a2888988979b68 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 410 | sce | EX26_7.sce | // Grob's Basic Electronics 11e
// Chapter No. 26
// Example No. 26_7
clc; clear;
// The input power to a filter is 100 mW, and the output power is 5 mW. Calculate the attenuation, in decibels, offered by the filter.
// Given data
Pi = 100*10^-3; // Input power=1 Watts
Po = 5*10^-3; // Output power=100 Watts
N = 10*log10(Po/Pi);
disp (N,'The Attenuation offered by the Filter in dB')
|
69ad65e0bf011f66f3f5bbd533ddc1a08a19cef6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /23/CH13/EX13.8/Example_13_8.sce | 9a553a066fb0ff9df821b7648f3aaf49e949939e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,099 | sce | Example_13_8.sce | clear;
clc;
//To find Approx Value
function[A]=approx(V,n)
A=round(V*10^n)/10^n;//V-Value n-To what place
funcprot(0)
endfunction
//Example 13.8
//Caption : Program to Find the Mole fraction of Ethyl Acetate
T0=298.15;
T=373.15;//[K]
R=8.314;
//CH3COOH(l)+C2H5OH(l) --> CH3COOC2H5(l) + H2O(l)
//From Table C.4
dHo_EtAc=-480000;//[J]
dHo_H2O=-285830;//[J]
dHo_EtOH=-277690;//[J]
dHo_AcH=-484500;//[J]
dGo_EtAc=-332200;//[J]
dGo_H2O=-237130;//[J]
dGo_EtOH=-174780;//[J]
dGo_AcH=-389900;//[J]
dHo_298=dHo_EtAc+dHo_H2O-dHo_EtOH-dHo_AcH;
dGo_298=dGo_EtAc+dGo_H2O-dGo_EtOH-dGo_AcH;
K_298=approx(exp(-dGo_298/(R*T0)),4);
//Using Eqn(13.15)
//ln(K_373/K_298)=c=-(dHo_298/R)*((1/373.15)-(1/298.15))
c=approx(-(dHo_298/R)*((1/373.15)-(1/298.15)),4);
K_373=approx(K_298*exp(c),4);
//x_AcH=x_EtOH=(1-e)/2 and x_EtAc=x_H2O=e/2
//K=(x_EtAc*x_H2O)/(x_AcH*x_EtOH)
//Hence The Eqn is
q=poly([K_373 -2*K_373 K_373-1],'e','c')
root=approx(roots(q),4)
e=root(1);
//Since Other Root is > 1 hence e=0.6879
x_EtAc=approx(e/2,3);
disp(x_EtAc,'Composition of Ethyl Acetate in the Reacting Mixture')
//End |
6ba0556a5ce1c7e6baf0b7e770263d2dc8eb0702 | 449d555969bfd7befe906877abab098c6e63a0e8 | /331/CH10/EX10.10/Example_10_10.sce | b2c39d3463eacfbfabf1df29ee2507289e8cc048 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,297 | sce | Example_10_10.sce | //Caption: Linear regression and Time series
//Simple regression
//Example10.10
//Page391
clear;
clc;
x = [10,15,20,25,30,35,40];//R&D expenditure
X = x-25;
y = [25,35,45,55,70,65,85];//Sales
disp('Regression model to estimate the sales(Y) for a given level of R&D activity')
[b,a,sig]=reglin(X,y);//Linear Regression
disp(b,'Regression coefficient b=')
disp(a,'Regression coefficient a=')
Y = a+b*X;
disp(Y,'Forecast of Y=')
Error = y-Y;
disp(Error,'Error y-Y=')
SqrError = (y-Y).^2;
disp(SqrError,'Squared Error=')
MeanSqrErr = sum(SqrError)/length(x);
disp(MeanSqrErr,'Mean Squared Error =')
disp('Regession Model to estimate the R&D expenditure (X) for a desired sales (Y)')
[b1,a1,sig] = reglin(y,x)
disp(b1,'Regression coefficient b=')
disp(a1,'Regression coefficient a=')
X = -2.4416+0.5055*y;
disp(X,'Forecast of X=')
Error = x-X;
disp(Error,'Error x-X=')
SqrError = (x-X).^2;
disp(SqrError,'Squared Error=')
MeanSqrErr = sum(SqrError)/length(x);
disp(MeanSqrErr,'Mean Squared Error =')
//Result
//
// Regression model to estimate the sales(Y) for a given level of R&D activity
//
// Regression coefficient b=
//
// 1.8928571
//
// Regression coefficient a=
//
// 54.285714
//
// Forecast of Y=
//
// 25.892857 35.357143 44.821429 54.285714 63.75 73.214286 82.678571
//
// Error y-Y=
//
// - 0.8928571 - 0.3571429 0.1785714 0.7142857 6.25 - 8.2142857 2.3214286
//
// Squared Error=
//
// 0.7971939 0.1275510 0.0318878 0.5102041 39.0625 67.47449 5.3890306
//
// Mean Squared Error =
//
// 16.19898
//
// Regession Model to estimate the R&D expenditure (X) for a desired sales (Y)
//
// Regression coefficient b=
//
// 0.5054496
//
// Regression coefficient a=
//
// - 2.4386921
//
// Forecast of X=
//
// 10.1959 15.2509 20.3059 25.3609 32.9434 30.4159 40.5259
//
// Error x-X=
//
// - 0.1959 - 0.2509 - 0.3059 - 0.3609 - 2.9434 4.5841 - 0.5259
//
// Squared Error=
//
// 0.0383768 0.0629508 0.0935748 0.1302488 8.6636036 21.013973 0.2765708
//
// Mean Squared Error =
//
// 4.3256141
// |
da12ab59076b564797e07891e2dcc46885ab250a | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/vco/vco17.sce | cffebf1c9decf2e82bd0b26b34697123bb51f86f | [] | 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 | 264 | sce | vco17.sce | //i/p arg fc is a vector
x=[-1 0.3 0.4 .45 1 .2 1];
fc=[150 300];
y=vco(x,fc,600);
disp(y);
//output
// column 1 to 6
//
// 0.7071068 - 0.2334454 - 0.2334454 0.6190939 - 0.6190939 0.9624552
//
// column 7
//
// - 0.9624552
//
|
8a62a794248c7f167bec5c28f26425f3278a3cef | e708f81011d4a09a8ad1ee85f0c1872e1634f35c | /Documentation/Wrapping/Scilab/btk/demos/btk.dem.gateway.sce | c8229b574f4954888b5d66c960b48ebb9dbad8f1 | [
"BSD-3-Clause"
] | permissive | allardhoeve/BTKCore | ef26f818acf06780c3e57147097f65f2d72c1c27 | f6805699fe37f64ac6434a92736c6b59f0ea148d | refs/heads/master | 2020-04-27T07:58:51.948297 | 2019-03-28T11:03:41 | 2019-03-28T11:03:41 | 174,155,043 | 0 | 1 | NOASSERTION | 2019-03-06T14:27:02 | 2019-03-06T13:55:59 | C++ | UTF-8 | Scilab | false | false | 204 | sce | btk.dem.gateway.sce | demopath = get_absolute_file_path("btk.dem.gateway.sce");
subdemolist = [];
subdemolist(:,2) = demopath + subdemolist(:,2);
// ====================================================================
|
1f1d407d9c8240a59857bd8fef6b59afc0b2036e | 449d555969bfd7befe906877abab098c6e63a0e8 | /29/CH6/EX6.10.1/exa6_10_1.sce | e1b05de909a2e0e6fe109c2bb94bb4220ba1858e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 524 | sce | exa6_10_1.sce | //Caption:time_response_for_step_function
//example 6.10.1
//page 170
// we have defined parallel and series function which we are going to use here
exec parallel.sce;
exec series.sce;
s=%s;
syms t;
a=4/(s*(s+4))
b=s+1.2
c=s+0.8
d=a/(1+a)
e=parallel(b,c)
f=d/.e;
disp(f,"C(s)/R(s)=");//transfer function
//since input:r(t)=2, so R(s)=2/s;//step_function_of_magnitude_2
g=f*(2/s);
disp(g,"C(s)=");
[A]=pfss(8/(s*(s+2)*(s+6)))
F=ilaplace((8/(s*(s+2)*(s+6))),s,t);
disp(F,"time_response_for_step_function_of_magnitude_2,f(t)=") |
aefb614a3fc712f47da822bff450e0755a00ce6a | 449d555969bfd7befe906877abab098c6e63a0e8 | /581/CH11/EX11.2/Example11_2.sce | 8cd91c37b26b6b207e3515b4248e6889f5ccc9dd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,114 | sce | Example11_2.sce |
clear;
clc;
printf("\t Example 11.2\n");
r=0.00241; //rate of consumption of carbon,kg/(m^2*s)
Mo2=0.2; //concentration of oxygen at surface s
Mco2=0.052; //concentration of CO2 at surface s
as=0.29; //density of surface s,kg/m^3
//since carbon flows through a second imaginary surface u, the mass fluxes are relatedd by Ncu=-12/32*No2s=12/44*Nco2s
//the minus sign arises because the O2 flow is opposite the C and CO2 flows.in steady state if we apply mass conservation to the control volume between the u and s surface, wee find that the total mass flux entering the u surface equals that leaving the s surface
Ncu=r; //mass fluxes of carbon in u surface,kg/m^2/s
No2s=-32/12*Ncu; //mass flux of O2 in surface s,kg/(m^2*s)
Nco2s=44/12*Ncu; //mass flux of CO2 in surface s,kg/(m^2*s)
Vo2s=No2s/(Mo2*as); //mass average speed,m/s
Vco2s=Nco2s/(as); //mass average speed,m/s
Vs=(Nco2s+No2s)/as; //effective mass average speed,m/s
j1=0.0584*(Vo2s-Vs)+0.000526; //diffusional mass flux,kg/(m^2*s)
j2=0.0087+0.00014; //diffusional mass flux,kg/(m^2*s)
//the diffusional mass fluxes are very nearly equal to the species m ss fluxes. tha is because the mass average speed is much less than species speeds.
N1=Ncu/12; //mole flux of carbon through the surface s,kmol/(m^2*s)
N2=-N1; //mole flux of oxygen through the surface s,kmol/(m^2*s)
printf("\t mass flux of O2 through an imaginary surface is :%.5f kg/(m^2*s)\n",j1);
printf("\t mass flux of CO2 through an imaginary surface is :%.5f kg/(m^2*s)\n",j2);
printf("\t mole flux of Co2 through an imaginary surface is :%f kmol/(m^2*s)\n",N1);
printf("\t mole flux of O2through an imaginary surface is :%f kmol/(m^2*s)\n",N2);
printf("\t the two diffusional mole fluxes sum to zero themselves because ther is no convective mole flux for other species to diffuse against. the reader may ind the velocity of the interface.that calculation shows the interface to be receding so slowly that the velocities are equal to those that would be seen by a stationary observer. ")
//end
|
5a40c318095f94f48f4073caac49c75142989c3b | 449d555969bfd7befe906877abab098c6e63a0e8 | /944/CH5/EX5.6/example5_6_TACC.sce | bf4b73ef58b79f2a7306db32c1a3325d557ec6cc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 352 | sce | example5_6_TACC.sce | //example 5.6
clear;
clc;
//Given:
W=1728;//Isothermal and reversible work done[J/mol]
T=298;//Isothermal temperature[K]
//to find the change in molar entropy when the gas expands isothermally and reversibly
S=W/T;//change in molar entropy for isothermal and reversible process
printf("The change in molar entropy = %f J/mol/K", S );
|
e4ae4d8f4130f31b338922192369180b006eea02 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2495/CH2/EX2.11.8/Ex2_11_8.sce | c418817cfbd4f29e11ba20e57553ebaf10a6577c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 606 | sce | Ex2_11_8.sce | clear
clc
Kf=1.86;//in Kkg/mol
m=0.2;//amount of aqueous solution of KCL freezes in mol/kg
DelTf_0=Kf*m;//in K
DelTf_1=0.680;//in K
i1=DelTf_1/DelTf_0;//van't hoff factor
printf('i1=%.2f',i1)
v=2;
alpha=(i1-1)/(v-1);//degree of dissociation
printf('\nalpha=%.2f',alpha)
z=1;//valency
mu=(1/2)*((m*z^1)+(m*z^1))
printf('\nmu=%.1f',mu)
i2=v*(1-((0.375+z-z)*(sqrt(mu))))
printf('\ni2=%.4f',i2)
Kb=0.52;//in Kkg/mol
DelTb=i1*Kb*m
printf('\nDelTb=%.3f K',DelTb)
R=8.314;//in J/Kmol
T=273;//in K
P=i1*(m*10^3)*R*T*(1/101325);//osmotic pressure in atm
printf('\nP=%.1f atm',P)
//page 79
|
eed4659a78a5b181ca990158f63d2bcd7dd600a4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1835/CH2/EX2.14/Ex2_14.sce | 0e0b98dd12b7f512474bb567a431dc6cd52f01c7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,439 | sce | Ex2_14.sce | //CHAPTER 2,ILLUSTRATION 14 PAGE 68
//TITLE:TRANSMISSION OF MOTION AND POWER BY BELTS AND PULLEYS
clc
clear
//============================================================================================================================
//INPUT
PI=3.141
e=2.71
P=75// POWER IN kW
D=1.5// DIAMETER OF PULLEY IN m
U=.3// COEFFICIENT OF FRICTION
beeta=45/2// GROOVE ANGLE
THETA=160*PI/180// ANGLE OF CONTACT IN radians
m=.6// MASS OF BELT IN kg/m
Tmax=800// MAX TENSION IN N
N=200// SPEED OF SHAFT IN rpm
//=============================================================================================================================
//calculation
V=PI*D*N/60// VELOCITY OF ROPE IN m/s
Tc=m*V^2// CENTRIFUGAL TENSION IN N
T1=Tmax-Tc// TENSION ON TIGHT SIDE IN N
T2=T1/(e^(U*THETA/sind(beeta)))//TENSION ON SLACKSIDE IN N
P2=(T1-T2)*V/1000// POWER TRANSMITTED PER BELT kW
No=P/P2// NO OF V-BELTS
N3=No+1// ROUNDING OFF
To=(T1+T2+Tc*2)/2// INITIAL TENSION
//================================================================================================================================
//OUTPUT
printf('NO OF BELTS REQUIRED TO TRANSMIT POWER=%f APPROXIMATELY=%d\n',No,N3)
printf('INITIAL ROPE TENSION=%f N',To)
|
5ef790a64a572442deb7b62f2c65850149b86e49 | 449d555969bfd7befe906877abab098c6e63a0e8 | /620/CH19/EX19.3/example19_3.sce | 3521be9d05c9cc3a3e95ca2cd49369bc45122c27 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 409 | sce | example19_3.sce | l=8;
r=400;
v=20;
disp("Part a");
t=l/r;
disp("the time constant (in ms) of the circuit is"); disp(t*10^3);
disp("Part b");
i=v/r;
disp("final value of the current (in mA) is"); disp(i*10^3);
disp("Part c");
rate=v/l;
disp("the initial rate of rise of current (in A/s) is"); disp(rate);
disp("Part d");
t1=i/rate;
disp("time taken (in ms) to reach the final value of current is"); disp(t1*10^3); |
a2e3aa07a1eeda03dd881df03f6bfe1edd46cc31 | 449d555969bfd7befe906877abab098c6e63a0e8 | /401/CH9/EX9.7/Example9_7.sce | 2bfc37563637c4290a9a829f35e593a62938b51f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 923 | sce | Example9_7.sce | //Example 9.7
//Program to determine the optimum avalanche multiplication factor
clear;
clc ;
close ;
//Given data
Rl=10*10^3; //Ohms - LOAD RESISTANCE
T=120; //Kelvin - TEMPERATURE
SNR=35; //dB - SIGNAL TO NOISE RATIO
Fn=1; //dB - AMPLIFIER NOISE FIGURE
B=10*10^6; //Hz - POST DETECTION BANDWIDTH
x=1;
k=1.381*10^(-23); //m^2 kg/s - BOLTZMANN's CONSTANT
e=1.602*10^(-19); //Coulumbs - CHARGE OF AN ELECTRON
//As Ip=10*Id, Minimum Photo Current
Ip=(10^(SNR/10)*(12*k*T*B*10^(Fn/10)/Rl)/(4*k*T*10^(Fn/10)/(1.1*e*Rl))^(2/(2+x)))^(3/4);
//Optimum avalanche multiplication factor
Mop=(4*k*T*10^(Fn/10)/(e*Rl/10*1.1*Ip))^(1/(2+x));
//Displaying the Result in Command Window
printf("\n\n Optimum avalanche multiplication factor, Mop = %0.2f.",Mop); |
0d9b1fbbde74c5b77a989c057e3efef03a214ae0 | e0124ace5e8cdd9581e74c4e29f58b56f7f97611 | /3899/CH15/EX15.14/Ex15_14.sce | 167bcd608a21e5686bd71a9c4c13fef28aa90664 | [] | no_license | psinalkar1988/Scilab-TBC-Uploads-1 | 159b750ddf97aad1119598b124c8ea6508966e40 | ae4c2ff8cbc3acc5033a9904425bc362472e09a3 | refs/heads/master | 2021-09-25T22:44:08.781062 | 2018-10-26T06:57:45 | 2018-10-26T06:57:45 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 328 | sce | Ex15_14.sce | //clear//
//Example15.14:Inverse Lapalce Transform
//X(S) = s/((s+3)*((s^2)+(4*s)+5))
s =%s ;
syms t ;
[A]=pfss (s)/((s+3)*((s^2)+(4*s)+5)) ; //partial fraction of F(s)
F1 = ilaplace(A(1),s,t)
F2 = ilaplace(A(2),s,t)
//F3 = ilaplace(A(3),s,t)
F = F1+F2;
disp(F,"f(t)=")
//Result
//(s)/((s+3)*((s^2)+(4*s)+5))
|
7128ebcf4ef947b3bea239c73ff5820853505acb | 449d555969bfd7befe906877abab098c6e63a0e8 | /3492/CH2/EX2.13/Ex2_13.sce | a73ede7893e4b79e9f54ee0d06163908c6002833 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 206 | sce | Ex2_13.sce | clc
//Chapter2
//Ex_2.13
//Given
Xd=0.15
p_c=1*10^-7 //ohm*m
p_eff=p_c*((1+0.5*Xd)/(1-Xd))
disp(p_eff,"Effective resistivity in ohm m is")
//slight change in the answer due to printing the answer
|
6e09887ae147c5c983eea37392efa15504561582 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2159/CH9/EX9.6/96.sce | cfa1ad5cdbcd62eefb5ad0acb2d26104a480a526 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 253 | sce | 96.sce | // problem 9.6
D=0.08
s=0.15
Hs=3
ds=0.03
g=9.81
Ls=4.5
p=78.86*(1000)
w=9810
W=2*3.142/60
z=(D/ds)^2
Hsep=p/w
Habs=10.3-Hsep
Has=Hsep-Hs
N=((Has*g*2)/(z*W*W*s*Ls))^0.5
disp(N,"maximium speed in rpm at which may run without separation")
|
711172f95320202de7f807c7069714bcc426a1a8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1646/CH10/EX10.9/Ch10Ex09.sce | b7a0b0ee3560d6d453dc2fedb68afa6f35819700 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 457 | sce | Ch10Ex09.sce | // Scilab Code Ex10.9: Page:513 (2011)
clc;clear;
x = poly(0, 'x');
V = 1000/x+1500/x^2+500/x^3; // Given electric potential at a point (x,0,0), V
E = -1*derivat(V); // Electric field at a point as gradient of scalar potential, N/C
E_x = horner(E, 1); // Electric field at the point x = 1, N/C
printf("\nThe electric field strength at point x = 1 is %4di V/m", E_x);
// Result
// The electric field strength at point x = 1 is 5500i V/m
|
13c52ce7dd75c346119151f479e3b02d60c8c79a | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.3/macros/percent/%ros.sci | 475477b265661c3994a16fe8c11a48a1bf871308 | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 173 | sci | %ros.sci | function r=%ros(l1,l2)
//%ros(l1,l2) <=> l1==l2 with l1 rational
//and l2 constant
//!
r=degree(l1(2))==0°ree(l1(3))==0
if r then r=coeff(l1(2))./coeff(l1(3))==l2,end
|
a6e325d46018e5b7ab4f18223c408492fed60049 | 3dbdc1a91ad07ea5fc4c4fa52a6fa2a6870125a6 | /calculo-numerico/deff.sci | 4bfc5535890bf8a708b4b99932181ecde76a22f1 | [
"Apache-2.0"
] | permissive | geovani-moc/Algoritmos | 226ceea9b599bb1979770ac001f5108a0533bb00 | d2d838c158da62a94946a7af29b24ca7396af34e | refs/heads/master | 2023-01-09T12:40:50.330766 | 2020-11-06T17:46:46 | 2020-11-06T17:46:46 | 256,744,544 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 272 | sci | deff.sci | a =[2 -1 3];
// definir equação
deff('[y] = yh(x)', 'y = a(1)+a(2).*x+a(3).*x.^2');
yy = yh(x);
//regressao linear multipla
x1 = [1 1 2 3 1 5];
x2 = [2 -1 3 1 -2 1];
x3 = [4 5 6 -1 2 8];
y = [1; 2; 3; 4; 5; 6];
z = [ones(1, 6)' x1' x2' x3'];
a = z\y;
|
375e4b6f59e71c274c42bc8bb742877ef348c721 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1868/CH9/EX9.6/Ch09Ex6.sce | e3910860c82c676972d242ba17ff4313f2db767d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 339 | sce | Ch09Ex6.sce | // Scilab code Ex9.6: Pg 317 (2005)
clc; clear;
E_i = 5.14; // Ionisation energy of Na, eV
n = 3; // Principal quantum number
Z_eff = sqrt((n^2*E_i)/13.6); // Effective atmic number
printf("\nEffective atomic number for 3s electron in Na = %4.2f", Z_eff);
// Result
// Effective atomic number for 3s electron in Na = 1.84
|
8ef3f0202794621a5330eb9cbd91b7c6d462c668 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2882/CH3/EX3.1/Ex3_1.sce | 1bf7ccb68db1ce35091ed6583e3335ffad4da337 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 512 | sce | Ex3_1.sce | //Tested on Windows 7 Ultimate 32-bit
//Chapter 3 Semiconductor Diodes and Miscellaneous Devices Pg no. 71
clear;
clc;
//Given Data
//Figure 3.14
e1=4;//Relative emf of primary side
e2=1;//Relative emf of secondary side
vinp=220;//Input peak voltage in volts
Vd=0.7;//Forward voltage drop of diode
//Solution
tr=e2/e1;//turns ratio n2/n1
V2=tr*vinp;//as v2/v1=n2/n1
Voutp=V2-Vd;//Vout across Rl in volts
printf("The peak value of rectified output voltage is:\n(Vout)peak=%.1f V",Voutp);
|
d766597e7e11f82bcbdf79ce3cc2d5ee1a84aeb2 | 2c7d57943183c872fd791ffd9d27ee476338a4d3 | /exampleFiles/score.PCs.tst | fc845785d738f07b8245956791de7fb2608e021b | [] | no_license | davenomiddlenamecurtis/geneVarAssoc | 0be49198a2dcfff234f9fcc0ebbf43a53732c6f8 | 0354e9df1c4c9ac4ae68c499831ecfdca16728ec | refs/heads/master | 2023-08-17T01:02:24.576182 | 2023-08-10T12:32:37 | 2023-08-10T12:32:37 | 60,511,430 | 3 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 266 | tst | score.PCs.tst | score 0.0 0 1
PC1 0.0 1 1
PC2 0.0 1 1
PC3 0.0 1 1
PC4 0.0 1 1
PC5 0.0 1 1
PC6 0.0 1 1
PC7 0.0 1 1
PC8 0.0 1 1
PC9 0.0 1 1
PC10 0.0 1 1
PC11 0.0 1 1
PC12 0.0 1 1
PC13 0.0 1 1
PC14 0.0 1 1
PC15 0.0 1 1
PC16 0.0 1 1
PC17 0.0 1 1
PC18 0.0 1 1
PC19 0.0 1 1
PC20 0.0 1 1
|
8f3af34d684885c9791ce23fc69dac04c6ea7918 | 449d555969bfd7befe906877abab098c6e63a0e8 | /991/CH15/EX15.4/Example15_4.sce | 94564b3387cdc34847b0ae64c7dad3b482c481c7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 388 | sce | Example15_4.sce | //Example 15.4.
clc
format(7)
C1=0.2*10^-6
C2=0.02*10^-6
fo=10*10^3
disp("The frequency of the Colpitts oscillator is given by")
disp(" fo = 1/2pi * sqrt(C1+C2/L*C1*C2)")
L=(C1+C2)/(4*%pi^2*fo^2*C1*C2)
x1=L*10^3
disp(x1,"Therefore, L(mH) = (C1+C2) / (4*%pi^2*fo^2*C1*C2) =")
disp("The voltage gain required to produce oscillation is")
x2=C1/C2
disp(x2," Av > C1/C2 =") |
7ba8a9099cd278dab76b00a6ea926e54213d9e73 | 417f69e36190edf7e19a030d2bb6aa4f15bb390c | /SMTTests/tests/err_getAssertions.tst | 8035e004d05d91fbc7bc91cf7120b2b71fb0cf80 | [] | no_license | IETS3/jSMTLIB | aeaa7ad19be88117c7454d807a944e8581184a66 | c724ac63056101bfeeb39cc3f366c8719aa23f7b | refs/heads/master | 2020-12-24T12:41:17.664907 | 2019-01-04T10:47:43 | 2019-01-04T10:47:43 | 76,446,229 | 1 | 0 | null | 2016-12-14T09:46:41 | 2016-12-14T09:46:41 | null | UTF-8 | Scilab | false | false | 119 | tst | err_getAssertions.tst | ; tests get-assertions with illegal arguments
(set-option :interactive-mode true)
(set-logic QF_UF)
(get-assertions 1)
|
ef32be2b45790b11942b8e112ad39dd21583cf50 | 3cebec609a7a9400f632d5c0cfb6261beb898ba4 | /HammingCode.sce | f4422035dd19d31fb6abbffb8f87b2009881c13e | [] | no_license | dikshitakambri/scilab-programs | 93cb5aea24bd53377f73cd394cb742294382796e | 61172a7301fd49b5e69f2da53280a1a22a34ee1d | refs/heads/master | 2023-01-09T06:47:38.704641 | 2020-10-31T12:44:12 | 2020-10-31T12:44:12 | 308,216,078 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 554 | sce | HammingCode.sce | clc();
clear();
R = input('Enter the received codeword=");
P = [1 1 0;0 1 1;1 1 1;1 0 1]
I = [1 0 0 ;0 1 0 ;0 0 1]
H = [P' I]
H1 = H'
S = R*H1
S = modulo(S,2)
disp(S,'Syndrome')
if S==[0 0 0] then
disp('','No error in received code')
disp(R,'Corrected code')
else
disp('','Error is present in ewceived code')
end
for i =1:7
if S==H1(i,:) then
mprintf('%i bit is in error',i)
corrected_code = R
corrected_code(i)=bitxor(1,R(i))
disp(corrected_code,'Corected code is','')
end
end
|
11479c774ef628b12d82078719230f3f82021729 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2219/CH6/EX6.19/Ex6_19.sce | a989b8b853b9af830d889e89a4b63389db5fca23 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 566 | sce | Ex6_19.sce | // Chapter 6 example 19
//------------------------------------------------------------------------------
clc;
clear;
// Given data
A = 100*100*10^-12; // Area of electrode
er = 9.6; // relative permitivity
t = 500*10^-6; // substrate thickness
eo = 8.85*10^-12; // permitivity
// Calculations
C = (eo*er*A)/t; // capacitance in farad
// Output
mprintf('Capacitance = %3.2e pF',C*10^12);
//------------------------------------------------------------------------------
|
0517658d3027be5e60012bd4e64fc18fff19990c | 449d555969bfd7befe906877abab098c6e63a0e8 | /564/CH12/EX12.2/12_2.sce | 1123d647622f5339524bdb106673d214295fedd1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 518 | sce | 12_2.sce | pathname=get_absolute_file_path('12_2.sce')
filename=pathname+filesep()+'12_2data.sci'
exec(filename)
clear
Pe=Load*CL;
V=Load/6;
r=(DC^2 +AD^2)^0.5;
sumr=4*r^2 +2*DC^2;//sum(r^2)
S=(Pe/sumr)*r//shear on rivets A and B
printf("\nshear force on A & B (S): %f N",S);
thetaA=3*%pi/4;
thetaB= %pi/4;
RA=(S^2 + V^2 +2*S*V*cos(thetaA))^0.5;//resultent force on A
RB=(S^2 + V^2 +2*S*V*cos(thetaB))^0.5;//resultent force on B
printf("\nresultent force on A: %f N",RA);
printf("\nresultent force on B: %f N",RB); |
0e23074c0e4ea50e8d04dd379f9f15b061bf1b70 | 8df791f9387f1c5538e8fb4cccb82ea4a130e879 | /itpp_crc_decode/builder_gateway_cpp.sce | 6dcb900ab42089e9dfa4d09644d1abda1b5ea814 | [] | no_license | tripathiaishwarya/itpp_repo | b94552677dbbfc2ed461d59de6a7efde37ec547e | fcd832287f3651b192339dbdbf15933045ca8aff | refs/heads/master | 2021-01-10T21:54:05.263442 | 2015-06-25T08:19:01 | 2015-06-25T08:19:01 | 37,813,835 | 2 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 382 | sce | builder_gateway_cpp.sce | // Builder gateway function for CRC Code decoding
function builder_gw_cpp()
WITHOUT_AUTO_PUTLHSVAR = %t;
tbx_build_gateway("skeleton_cpp", ..
["crc_decode","itpp_crc_decode"], ..
["itpp_crc_decode.cpp"], ..
get_absolute_file_path("builder_gateway_cpp.sce"), [], "-litpp");
endfunction
builder_gw_cpp();
clear builder_gw_cpp; // remove builder_gw_cpp on stack
|
2a35967e785ac433de39bcbeb3c37109a727f981 | 0c419c1490bd9c25db94e8ae9f8279ce1acbe842 | /LUD.sce | 3e93413aacec517c27752441cbc4c8d7432da0a3 | [] | no_license | Girishgn23/LA_ASSIGNMENTS | 792079f0b997a9dd0cd6d09f4daa57d25d3f974b | 33bd4e67af5580a462433681cdd4be3009ae8a75 | refs/heads/master | 2022-09-28T03:03:25.643882 | 2020-06-04T05:03:36 | 2020-06-04T05:03:36 | 269,264,829 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 478 | sce | LUD.sce | //2.5.13 LU Decomposition of a matrix
n=input("Enter n value")
for i=1:n
for j=1:n
A(i,j)=input("Enter elements for matrix A")
end
end
U=A;
disp(A)
m=det (U ( 1,1) );
disp(m)
n=det (U (2,1) );
a=n/m;
U(2,:)=U(2,:)-U(1,:)/(m/n)
n=det(U(3,1));
b=n/m;
U(3,:)=U(3,:)-U(1,:)/(m/n)
m=det(U(2,2));
n=det(U(3,2));
c=n/m;
U(3,:)=U(3,:)-U(2,:)/(m/n)
disp(U,'upper triangular matrix')
L=[1 ,0 ,0; a ,1 ,0; b ,c ,1]
disp(L,'LOWER triangular matrix')
|
8eea91021cd90e219c2ade7a56089a1dc77822f6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1757/CH6/EX6.26/EX6_26.sce | 1133c4644eacad1704daa3ce2dcc713fadde67c1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 602 | sce | EX6_26.sce |
//Example6.26 // to calculate the output voltage of op-amp circuit
clc;
clear;
close;
Rf = 100*10^3 ; // ohm
R1 = 10*10^3 ; // ohm
R2 = 25*10^3 ; // ohm
R3 = 50*10^3 ; // ohm
// the output of op-amp A1 is
// VA1 = (-Rf/R1)*V1 ;
VA1 = (-Rf/R1);
disp('The output of op-amp A1 is = '+string(VA1)+'V1' ); // *V1 because the output is come from 1 op-amp
// the output of op-amp A2 is
// Vo = -Rf*((VA1/R2)+(V2/R3));
//Vo = -100*(-0.4*V1+0.02V2);
disp('The output of op-amp A2 is Vo = 40V1 - 2V2 ');
disp('The output is equal to the difference between 40V1 and 2V2 ');
|
fae8e4c37fad18bb9604bdf3b4ce1add3e60dfba | 3b0bbca23dbe4e146c7dc527c155475a77d339dd | /projects/02/Negate16.tst | 7b6fe45820715d89e9c8f105fa74d4ab7a6837a4 | [] | no_license | curiousYi/nand2tetris | 1cc3157bcdefd7180303dcd22f277a9d183fb4a4 | 04deca20962695de9d1c7c09af11fafdade2615a | refs/heads/master | 2021-08-31T22:45:18.772744 | 2017-12-23T06:55:16 | 2017-12-23T06:55:16 | 111,237,568 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 423 | tst | Negate16.tst | // This file is part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by Nisan and Schocken, MIT Press.
// File name: projects/02/Add16.tst
load Negate16.hdl,
output-file Negate16.out,
compare-to Negate16.cmp,
output-list in%B1.16.1 out%B1.16.1;
set in %B0000000000000000,
eval,
output;
set in %B0000000000000001,
eval,
output;
set in %B0000000000000010,
eval,
output;
|
6948054ad32030f92d29e6655f6cc57110b2df97 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.5/Unix-Windows/scilab-2.5/macros/sci2for/sci2for.sci | c3a7c5ac65e4e583818425d689805ad4fd696289 | [
"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 | 7,241 | sci | sci2for.sci | function txt=sci2for(fun,nam,vtps,lvtps)
//!
// Copyright INRIA
[lhs,rhs]=argn()
if type(fun)==11 then comp(fun),end
if type(fun)<>13 then
error('sci2for: first argument must be a scilab function'),
end
lst=modlst(macr2lst(fun))
lst(1)=nam;
count=0;level=0;nwrk=list(0,[],[],0,[],[],0,list(),1,[],[],[],[],[],[])
forparam()
//
inputs=lst(3)
macrhs=size(vtps)
vnms=[],for k=1:macrhs,vnms=[vnms;[inputs(k),inputs(k)]],end,
na=prod(size(vnms))/2
maclhs=prod(size(lst(2)))
kl=1
for k=lst(2),
if find(vnms(:,1)==k)==[] then
vnms=[vnms;[k,k]],
na=na+1;
if rhs==4 then // output variable type given
vtps(na)=lvtps(kl);kl=kl+1
else
vtps(na)=list('?','0','0',0)
end
end
end
//stack of variables
k=1
while k<=na
w=vtps(k);
nw=size(w)
if nw==3 then w(4)=0;vtps(k)=w;nw=4;end
for iw=2:nw-1
if find(vnms(:,1)==w(iw))==[] then
ch=part(w(iw),1)
if find(ch==string(0:9))==[]
na=na+1
vtps(na)=list('0','1','1',0)
vnms=[vnms;[w(iw),w(iw)]]
end
end
end
k=k+1
end
bot=na
//
forexp=0
[crp,vnms,vtps,nwrk]=ins2for(lst,4,vnms,vtps,nwrk)
if strindex(strcat(crp),'WARNING local variable')<>[] then
nwrk=list(0,[],[],0,[],[],0,list(),1,[],[],[],[],[],[])
// pause
[crp,vnms,vtps,nwrk]=ins2for(lst,4,vnms,vtps,nwrk)
end
na=size(vtps)
if find(vnms(:,1)=='%eps')<>[] then
crp=[' %eps = d1mach(4)';'c';crp]
vnms=[vnms;['d1mach','d1mach']]
vtps(na+1)=list('1','1','1',0)
na=na+1
end
//
//header
if nwrk(10)<>[]|nwrk(12)<>[] then
pntrs='c adress of local variables',
else
pntrs=[];
end
v1=vnms(1:bot,1)
//
if nwrk(3)<>[]|nwrk(10)<>[] then
if prod(size(nwrk(3)))==1 then
used=nwrk(3)
else
used='max('+makeargs(nwrk(3))+')'
end
if nwrk(10)<>[] then
nams=nwrk(10);loc=nwrk(11);nl=prod(size(loc))/2
pntrs=[pntrs;' iw'+nams(1)+' = 1']
for k=2:nl
pntrs=[pntrs;' iw'+nams(k)+' = '+addf('iw'+nams(k-1),loc(1,k-1))];
used=addf(used,loc(1,k-1))
end
pntrs=[pntrs;'c';' iw0 = '+addf('iw'+nams(nl),loc(1,nl))]
used=addf(used,loc(1,nl))
else
pntrs=[pntrs;' iw0 = 1']
end
if ~isnum(used) then
v1=[v1;'work'];
end
end
// tableau de travail entier
if nwrk(6)<>[]|nwrk(12)<>[] then
if prod(size(nwrk(6)))==1 then
iused=nwrk(6)
else
iused='max('+makeargs(nwrk(6))+')'
end
if nwrk(12)<>[] then
nams=nwrk(12);loc=nwrk(13);nl=prod(size(loc))/2
pntrs=[pntrs;' iiw'+nams(1)+' = 1']
for k=2:nl
pntrs=[pntrs;' iiw'+nams(k)+' = '+addf('iiw'+nams(k-1),loc(1,k-1))];
iused=addf(iused,loc(1,k-1))
end
pntrs=[pntrs;'c';' iiw0 = '+addf('iiw'+nams(nl),loc(1,nl))]
iused=addf(iused,loc(1,nl))
else
pntrs=[pntrs;' iiw0 = 1']
end
if ~isnum(iused) then
v1=[v1;'iwork'];
end
end
//if nwrk(10)<>[]|nwrk(12)<>[] then pntrs=[pntrs;'c'],end
// variable d'erreur
if nwrk(7)>0 then
v1=[v1;'ierr']
end
//
kv1=0;nvc=na
for k=1:bot
kv1=kv1+1
vk=vtps(k);
if vk(4)==1 then
v1=[v1(1:k-1);v1(k)+'_r';v1(k)+'_i';v1(k+1:nvc)]
kv1=kv1+1
nvc=nvc+2
end
end
hdr=[' subroutine '+lst(1)+'('+makeargs(v1)+')';
'c!';
'c automatic translation';
'c';
'c! calling sequence';
'c ----------------';
'c' ]
//
//declarations
argld=[];//double precision argument list
argli=[];// integer argument list
argls=[];// character argument list
locals=[]
for iv=1:na
// var=vnms(iv,1);
var=vnms(iv,2);
vartyp=vtps(iv)
if part(var,1:4)<>'work'&part(var,1:5)<>'iwork' then
nl=vartyp(2);nc=vartyp(3);it=vartyp(4)
if type(nl)==1 then
nl=string(maxi(1,nl)),
else
if isnum(nl) then
nl=string(maxi(evstr(nl),1))
end
end
if type(nc)==1 then
nc=string(maxi(1,nc)),
else
if isnum(nc) then
nc=string(maxi(evstr(nc),1))
end
end
if nl+nc=='11' then
if it==0 then
nm=var
else
nm=nm+'_r'+','+nm+'_i',
var=var+'(_r,_i)'
end
com='variable '
elseif nl=='1' then
if it==0 then
nm=var+'('+nc+')'
else
nm=var+'_r('+nc+')'+','+var+'_i('+nc+')'
var=var+'(_r,_i)'
end
com='vector of size '+nc
elseif nc=='1' then
if it==0 then
nm=var+'('+nl+')'
else
nm=var+'_r('+nl+')'+','+var+'_i('+nl+')'
var=var+'(_r,_i)'
end
com='vector of size '+nl
else
if it==0 then
nm=var+'('+makeargs([nl;nc])+')'
else
nm=var+'_r('+makeargs([nl,nc])+')'+','+var+'_i('+makeargs([nl,nc])+')'
var=var+'(_r,_i)'
end
com='vector of size '+nl+','+nc
end
if vartyp(1)=='1' then
argld=[argld;nm]
com='c '+part(var,1:10)+' : double precision '+com
elseif vartyp(1)=='0' then
argli=[argli;nm]
com='c '+ part(var,1:10)+' : integer '+com
elseif vartyp(1)=='10' then
argls=[argls;nm]
com='c '+ part(var,1:10)+' : string '+com
end
if iv<=bot then
hdr=[hdr;com],
end
else
locals=[locals;'c '+ vnms(iv,2)+' : size ('+..
vartyp(2)+','+vartyp(3)+'), implemented in '+vnms(iv,1)]
end
end
if nwrk(3)<>[]|nwrk(10)<>[] then
if ~isnum(used) then
nm='work(*)';argld=[argld;nm]
hdr=[hdr;'c work : working array :';
'c '+used]
else
nm='work('+used+')';argld=[argld;nm]
hdr=[hdr;'c work : working array :'+used]
end
end
if nwrk(6)<>[]|nwrk(12)<>[] then
if ~isnum(iused) then
nm='iwork(*)';argli=[argli;nm]
hdr=[hdr;'c iwork : working array :';
'c '+iused]
else
nm='iwork('+iused+')';argli=[argli;nm]
hdr=[hdr;'c iwork : working array :'+iused]
end
end
if nwrk(7)>0 then
msgs=nwrk(8)
argli($+1)='ierr'
hdr=[hdr;'c ierr : error indicator']
hdr=[hdr;'c 0 : correct run']
for k=1:nwrk(7)
msgk=msgs(k)
for l=1:prod(size(msgk))
hdr=[hdr;'c '+string(k)+' : '+msgk(l)]
end
end
end
if nwrk(10)<>[]|nwrk(12)<>[] then
hdr=[hdr;'c';..
'c dimension of local variables ';..
'c -----------------------------';
locals]
end
hdr=[hdr;'c!']
//
dcl=[]
if argld<>[] then dcl=[dcl;' double precision '+makeargs(argld)],end
if argli<>[] then dcl=[dcl;' integer '+makeargs(argli)],end
if argls<>[] then dcl=[dcl;' character*(*) '+makeargs(argls)],end
if nwrk(14)<>[]|nwrk(15)<>[] then dcl=[dcl;'c external functions'],end
if nwrk(14)<>[] then dcl=[dcl;' integer '+makeargs(nwrk(14))],end
if nwrk(15)<>[] then dcl=[dcl;' double precision '+makeargs(nwrk(15))],end
dcl=[dcl;'c']
txt=[hdr;dcl;pntrs;crp;' end']
k=find(part(txt,1)==' ')
txt(k)=' '+txt(k)
kk=1
while kk<>[] then
kk=find(length(txt)>72)
nk=prod(size(kk))
for k=nk:-1:1
k1=kk(k)
t1=txt(k1),
if part(t1,1)=='c' then
t1=[part(t1,1:72);
'c '+part(t1,73:length(t1))];
else
ksplit=max(strindex(part(t1,1:71),[',','+','-','*','/',' ']))
if ksplit==[] then ksplit=72,end
t1=[part(t1,1:ksplit);
' & '+part(t1,ksplit+1:length(t1))];
end
txt=[txt(1:k1-1);t1;txt(k1+1:prod(size(txt)))]
end
end
|
ab119e24b263053950f4d7f3b2aa48763a8e0b8a | 6bbc9f4f7e12ef440acd3fe25a51b4f048cde42d | /Image-Enhancement-in-the-Spatial-Domain/aritmetic-operation.sce | c2a67b845cd54beb51d66990d8d491bf7e440adb | [] | no_license | krisbimantara/Image-Processing-SCILAB | 9dee568676b4f2943c54074d8c88c84cb33b3bb2 | bf8e8905efcdd6e3e0096f7a87cce8212fe0f14c | refs/heads/main | 2023-03-27T04:55:37.463238 | 2021-03-29T13:30:26 | 2021-03-29T13:30:26 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,607 | sce | aritmetic-operation.sce | A=imread('bima.jpg');
B=imread('angkasa.jpg');
C=imadd(A, B);
D=imsubtract(A, B);
DD=imsubtract(B, A);
E=immultiply(A, B);
F=imdivide(A, B);
figure();
subplot(221); imshow(C); xtitle('Foto Asli Operator ADD');
subplot(222); imshow(C(:,:,1)); xtitle('Lapisan Merah Operator ADD');
subplot(223); imshow(C(:,:,2)); xtitle('Lapisan Hijau Operator ADD');
subplot(224); imshow(C(:,:,3)); xtitle('Lapisan Biru Operator ADD');
figure();
subplot(221); imshow(D); xtitle('Foto Asli Operator SUB(A,B)');
subplot(222); imshow(D(:,:,1)); xtitle('Lapisan Merah Operator SUB(A,B)');
subplot(223); imshow(D(:,:,2)); xtitle('Lapisan Hijau Operator SUB(A,B)');
subplot(224); imshow(D(:,:,3)); xtitle('Lapisan Biru Operator SUB(A,B)');
figure();
subplot(221); imshow(DD); xtitle('Foto Asli Operator SUB(B,A)');
subplot(222); imshow(DD(:,:,1)); xtitle('Lapisan Merah Operator SUB(B,A)');
subplot(223); imshow(DD(:,:,2)); xtitle('Lapisan Hijau Operator SUB(B,A)');
subplot(224); imshow(DD(:,:,3)); xtitle('Lapisan Biru Operator SUB(B,A)');
figure();
subplot(221); imshow(E); xtitle('Foto Asli Operator MULTIPLY');
subplot(222); imshow(E(:,:,1)); xtitle('Lapisan Merah Operator MULTIPLY');
subplot(223); imshow(E(:,:,2)); xtitle('Lapisan Hijau Operator MULTIPLY');
subplot(224); imshow(E(:,:,3)); xtitle('Lapisan Biru Operator MULTIPLY');
figure();
subplot(221); imshow(F); xtitle('Foto Asli Operator DIVIDE');
subplot(222); imshow(F(:,:,1)); xtitle('Lapisan Merah Operator DIVIDE');
subplot(223); imshow(F(:,:,2)); xtitle('Lapisan Hijau Operator DIVIDE');
subplot(224); imshow(F(:,:,3)); xtitle('Lapisan Biru Operator DIVIDE');
|
e298c4f10c51e5e8fb75b162ff62d4a79cb82ec8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /620/CH12/EX12.7/example12_7.sce | 0602db90f1b83f1e32d42df9bd5fa9e4ddcf4130 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 343 | sce | example12_7.sce | im=0.05;
rm=3;
v1=5;
v2=15;
v3=50;
rt1=v1/im;
rt2=v2/im;
rt3=v3/im;
rs1=rt1-rm;
rs2=rt2-rm;
rs3=rt3-rm;
disp("for a range of 5 V the required resistance (in kΩ) is"); disp(rs1);
disp("for a range of 15 V the required resistance (in kΩ) is"); disp(rs2);
disp("for a range of 50 V the required resistance (in kΩ) is"); disp(rs3); |
ae70c48d51beec75f42d36403bfa536da6e8eed9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /876/CH6/EX6.2/Ex6_2t.txt | 456efe2959f2a62be0d1f87cdc65a810f0751e33 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 237 | txt | Ex6_2t.txt | //caption:Find output voltage
//Ex6.2
clc
clear
close
Lo=0//input voltage logic0(in V)
L1=20//input voltage logic1(in V)
V1msb=L1/2
V2msb=L1/4
V3msb=L1/8
V4msb=L1/16
Va=V1msb+V2msb+V3msb+V4msb
disp(Va,'output voltage(in V)=') |
b3696dc4907febc5e57087b4b52690e126f8d21a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3826/CH3/EX3.19/Ex3_19.sce | 236610f524d4470f89564df1b5b08a4707502d74 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 502 | sce | Ex3_19.sce | //Example 3_19 page no:240
clc;
//given
vol = 3000;
t1 = 4.5;//in C
t2 = 18.5;//in C
h1 = 75;//in percentage
h2 = 60;//in percentage
eng_for_1cm = 1.22 * 10^3;
eng = eng_for_1cm *vol * 14;
eng = eng/(3.6*10 ^ 6);//converting to kW
moist = 0.00440;//in kgm^-3
latent_heat = 2450 * 10 ^ 3;
weight_of_moist = moist * vol;
heat_req = latent_heat * weight_of_moist;
heat_req = heat_req/(3.6*10^6);
tot_heat_req = eng + heat_req;
disp(tot_heat_req,"the total heat requirement is (in kW)");
|
3a1eb1c98382e6fcfe4485838c523b0dd8b9f3b8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /260/CH6/EX6.2/6_2.sce | 96999ba90cfe440d554386cfbf14a1f358ffa2b9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 109 | sce | 6_2.sce | //Eg-6.2
//pg-279
clear
clc
//Theoretical Problem
disp("given example is Theoretical")
|
49becadbf396258ee733240379081546e6b63b3a | cc2d34f24c651a9d4b81fc3ebd32ef5a23c5ef13 | /SCILAB5/MAT2SCI/myfirst.sci | 9aed51109c310cabbf34a7fa4d4b3e4a93961816 | [] | no_license | b4ss3k/D_DSP | 85cfacf4e948109faa33cbc424390b44f53cc197 | aabcc12fe0305e29713de6c0538428dd9ef323d3 | refs/heads/master | 2020-04-06T04:46:40.053395 | 2015-08-05T01:24:16 | 2015-08-05T01:24:16 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 184 | sci | myfirst.sci |
// Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
t = ((1/16:1/8:1)'*2)*%pi;
x = sin(t);
y = cos(t);
// fill(x,y,''r'')
// axis square
plot(t,x);
//
|
9fd3a22e320eff5bca880446d5551e4e9eb24a04 | 449d555969bfd7befe906877abab098c6e63a0e8 | /866/CH18/EX18.7/18_7.sce | 246b0b85434c3ec1cd92b6eb6f05fcc7cdb5decd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 315 | sce | 18_7.sce | clc
//initialisation of variables
Load= 100 //KN
Length= 10 //m
yieldstress= 300 //N/mm^2
loadfactor= 1.5
//CALCULATIONS
requiredultimateload= loadfactor*Load
Mp= requiredultimateload*Length/6
Zp= Mp/yieldstress
//RESULTS
printf ('Zp= %.1e mm^3',Zp)
disp("The appropriate beam for this is 406*140*49")
|
6125f951e2ef0ac27bc648b6c16074090fd1863a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2699/CH11/EX11.2/Ex11_2.sce | 024befbb9468239d09ebc7709e80281b388b1809 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 537 | sce | Ex11_2.sce | //EX11_2 PG-11.19
clc
Vd=2;//voltage per division in(V/div)
Td=2e-3;//time base division in (s/div)
Vdiv=3;//vertical occupancy in division as shown in the screen
Vpp=Vd*Vdiv;//peak to peak voltage
Vm=Vpp/2;//peak voltage
Vrms=Vm/sqrt(2);//rms value of the output voltage
printf("\n Therefore rms value of the output voltage in volts=%.4f V \n",Vrms)
Hdiv=2;//horizontal occupancy in division as shown in the screen
T=Hdiv*Td;//time period of the waveform
f=1/T;//frequency
printf("\n Therefore frequency f=%.0f Hz \n ",f)
|
7dcda53c7ae6b415b3ead787a961edacc3f2371f | eac3cfc2721389036753c792674af1164112999f | /teste.sce | ebfda93473de9f44f297127ac536b7dc3452f81d | [] | no_license | Sergio-Saraiva/trabalho1inteligenciacomputacional | 8d9fa2b4be967c503a6c8ba51c1393513799f500 | 509d88c97361c47f3d4c3f6ba8cc10f06b2e33ae | refs/heads/master | 2020-03-12T10:58:30.973304 | 2018-04-22T16:23:18 | 2018-04-22T16:23:18 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 334 | sce | teste.sce | clc;
clear;
X = fscanfMat("C:\Users\sergi\Desktop\Trabalho1-IC\aerogerador.dat");
y = X(:,2);
x = X(:,1);
ybarra = mean(y,'r');
xbarra = mean(x,'r');
b1 = (sum(x'*y)- (ybarra*sum(x)))/(sum(x^2)-(xbarra^2));
b0 = ybarra - b1*xbarra;
ychap = b0 + b1*x;
e = y - ychap;
reta = b0 + b1*x + e;
plot(x,y, "b*");
plot(y, reta, "r-");
|
05f7a41194ea82f81cd756099af87ba85a993884 | 449d555969bfd7befe906877abab098c6e63a0e8 | /671/CH4/EX4.39/4_39.sce | 872b2b604fe5c60959792e97117b4d11bdf4d5e0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 108 | sce | 4_39.sce | Pm=600
Vm=sqrt(3*Pm)
f=15.36E6
w=2*%pi*f
t=20.3E-3
theta=%pi/2-modulo(w*t,2*%pi)
disp(theta*180/%pi) |
3334b80ee33b40f234de8881e071b818f5685b86 | 449d555969bfd7befe906877abab098c6e63a0e8 | /32/CH7/EX7.06/7_06.sce | cbbd33f328520e6c5ede5fa26284c068dd7c5956 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 7_06.sce | //pathname=get_absolute_file_path('7.06.sce')
//filename=pathname+filesep()+'7.06-data.sci'
//exec(filename)
//Temperature of IC engine(in K):
T1=800+273
//Work per kg of gas in engine(in kJ/kg):
W=1050
//Cp of gas(in kJ/kg.K):
Cp=1.1
//Temperature of the surroundings(in K):
T0=30+273
//Change in entropy of system(in kJ/kg.K):
dSsys=W/T1
//Change in entropy of surroundings(in kJ/kg.K):
dSsurr=-Cp*(T1-T0)/T0
//Loss of available energy(in kJ/kg):
L=-T0*(dSsys+dSsurr)
//Ratio of lost available exhaust energy to engine work:
r=L/W
printf("\nRESULT")
printf("\nRatio of available exhaust energy to engine work= %f/1",r) |
707fa14147c78c2ac1cf50c37e169b57b8c870a0 | 262ac6443426f24d5d9b13945d080affb0bd6d9b | /opgaves/vpw-binaire-puzzel/edit-me.sce | 85f595572df82d3de043719bc4c96b0af77cf303 | [] | no_license | slegers/Scilab | 9ebd1d486f28cf66e04b1552ad6e94ea4bc98a0b | 1b5dc3434def66355dafeb97c01916736a936301 | refs/heads/master | 2021-01-12T01:42:01.493578 | 2017-01-09T10:54:09 | 2017-01-09T10:54:09 | 78,420,343 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,458 | sce | edit-me.sce | function [valid] = solve(ns)
if size(ns, 'r') <> size(ns, 'c') then
valid = %f;
return;
end
for i = 1:length(ns)
if (ns(i) <> 0 & ns(i) <> 1) then
valid = %f;
return;
end
end
for i = 1:size(ns, 'r')
if sum(ns(i,:)) <> size(ns, 'r')/2 then
valid = %f;
return;
elseif sum(ns(:,i)) <> size(ns, 'r')/2 then
valid = %f;
return;
end
end
if size(ns, 'r') >= 3 then
for i = 1:(size(ns, 'r') - 2)
for j = 1:(size(ns, 'r'))
if ns(i,j) == ns(i + 1,j) then
if ns(i,j) == ns(i + 2,j) then
valid = %f;
return;
end
end
if ns(j,i) == ns(j,i + 1) then
if ns(j,i) == ns(j, i + 2) then
valid = %f;
return;
end
end
end
end
end
for i = 1:size(ns, 'r')
for j = 1:size(ns, 'r')
if i <> j then
if ns(i,:) == ns(j,:) then
valid = %f;
return;
elseif ns(:,i) == ns(:,j) then
valid = %f;
return;
end
end
end
end
valid = %t;
endfunction
|
317d8c04eb6581bf514753f668e717cee0ac4833 | 449d555969bfd7befe906877abab098c6e63a0e8 | /978/CH8/EX8.8/Example8_8.sce | 6b2a8c4a4464d48bc755535a149f6782e33bb62d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 307 | sce | Example8_8.sce | //chapter-8,Example8_8,pg 500
V=4//peak voltage
I=0.4//peak current
f=1*10^3//operating frequency
fs=40*10^3//sampling rate
delt=2.2//time interval
phi=((2*%pi*f)/fs)//phase
Et=(V*I*phi)/(4*%pi*f*delt*sin(phi))//truncation error
printf("truncation error\n")
printf("Et=%.8f ",Et) |
639b306c50d60cbd5e35437341b5fddcd32a8508 | 449d555969bfd7befe906877abab098c6e63a0e8 | /821/CH8/EX8.10/8_10.sce | 8316372ac9d155d391c9c32aeec2974f4db389a6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 357 | sce | 8_10.sce | k=8.676*10^-3;//average value of k in per min//
printf('Average value of k=8.676*10^-3per min');
r0=22.4;
rt=0;
rinfinite=-11.1;
t=(2.303/k)*log10((r0-rinfinite)/(rt-rinfinite));
printf('\nThe time at which the mixture is optically inactive=t=%fmin',t);//here in textbook the answer is given wrong,but by solving we get the same result as executed//
|
b0b320374c65c1cfde490be69614dc6315090e08 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2444/CH4/EX4.2/ex4_2.sce | beeb742da8683bc72e7d2fd3a4a8fdd369b6f196 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | ex4_2.sce | // Exa 4.2
clc;
clear;
close;
format('v',6)
// Given data
delV_BE = 0.02;// in V
delI_B = 10;// in µA
delI_B = delI_B * 10^-6;// in A
delI_C = 1;// in mA
delI_C = delI_C * 10^-3;// in A
R_C = 5;// in k ohm
R_C = R_C * 10^3;// in ohm
R_L = 10;// in k ohm
R_L = R_L * 10^3;// in ohm
Zin = delV_BE/delI_B;// in ohm
Zin= Zin*10^-3;// in k ohm
disp(Zin,"The input impedance in k ohm is");
Zin= Zin*10^3;// in ohm
Beta = delI_C/delI_B;// unit less
disp(Beta,"The current gain is");
Rac = (R_C*R_L)/(R_C+R_L);// in ohm
Rac= Rac*10^-3;// in k ohm
disp(Rac,"The AC load resistance in k ohm is");
Rac= Rac*10^3;// in ohm
Rin = 2;// in k ohm
Rin = Rin * 10^3;// in ohm
Av = Beta*(Rac/Rin);
disp(Av,"The voltage gain is");
Ai = 100;// unit less
Ap = Av*Ai;// unit less
disp(Ap,"The power gain is");
|
42e4de34fda8f2344d0e34cb2a15e24e215325de | 449d555969bfd7befe906877abab098c6e63a0e8 | /1938/CH6/EX6.3/6_3.sce | ab19695f2c691ccf0bd71632a4523ce1a1ce21c6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,120 | sce | 6_3.sce | clc,clear
printf('Example 6.3\n\n')
//note that a new function p2z has been defined below for direct representation of complex numbers in polar form
function [FUN] = p2z(RRRR,Theeeta)
FUN = RRRR.*exp(%i*%pi*Theeeta/180.);
endfunction
Z1=complex(0,3) //impedance of alternator 1
Z2=complex(0,4) //impedance of alternator 2
Z=6 //load
E1=p2z(220,0) //induced emf vector on no load
E2=p2z(220,10)//induced emf vector on no load
I1=((E1-E2)*Z+E1*Z2)/(Z*(Z1+Z2)+Z1*Z2)
I2=((E2-E1)*Z+E2*Z1)/(Z*(Z1+Z2)+Z1*Z2)
phi1=phasemag(I1) //Phasemag returns the angle of complex number in degrees
phi2=phasemag(I2) //Phasemag returns the angle of complex number in degrees
I=I1+I2
V=I*Z //Terminal voltage
printf('(i) Terminal voltage is %.1f volts at %.2f degrees\n',abs(V),phasemag(V))
printf('(ii) Currents are %.2f A at %.2f degrees and %.2f A at %.2f degrees\n Total current is %.2f A at %.2f degrees ',abs(I1),phasemag(I1),abs(I2),phasemag(I2),abs(I),phasemag(I))
P1=abs(V)*abs(I1)*cosd(phi1)
P2=abs(V)*abs(I2)*cosd(phi2)
printf('\n(iii)Power delivered is %.2f watts and %.2f watts',P1,P2)
|
1ed261565deefc2e78469a9ea09840e78ce6261f | 938b639f4809d16f8a8b9fcd95a846932d82f30f | /170221T.sce | 621a28ef1f418bc37bbedb83d5c4b60c50ddf5e7 | [] | no_license | ramithuh/Promoter-Discovery-in-Bacteria | d9e6e09124f4fd57c9664e8fb88ee76336149de7 | 48b977e9481ee05803e6a119625990f710f2dfa7 | refs/heads/main | 2023-08-28T10:27:19.605555 | 2021-10-18T08:47:57 | 2021-10-18T08:47:57 | 418,209,261 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 11,722 | sce | 170221T.sce | // Clear Variables and Load helper functions
clear;
exec('helpers.sce');
function [extended_strand] = extend_strand(strand)
// For each gene in the protein table array modify its start and end indexes such that
// we obtain 50 bases upstream and 3 bases downstream
for i=1:length(strand)/2
strand(i,1) = strand(i,1) - 50;
strand(i,2) = strand(i,2) + 3;
end
extended_strand = strand;
endfunction
function [ filtered_genes, ignore_rows ] = ignore_genes(strand, verbose )
if ~exists("verbose","local") then
verbose = 0
end
//A gene is ignored if the previous gene is less than 50 bases upstream of it
ignored_count = 0
overlap_count = 0
ignore_rows = [];
filtered_genes = [] //variable to store the filtered genes
i = 1;
while(i <= length(strand)/2) //loop through each gene
if(i==1)
filtered_genes = [filtered_genes;strand(i,1),strand(i,2)];
else
last_pos = length(filtered_genes)/2;
last_gene_end = filtered_genes(last_pos,2) //'end' of the last_gene that was added to the filtered genes
if(strand(i,1) - last_gene_end -1 < 50) //closer than 50 bases
ignored_count = ignored_count+1;
ignore_rows = [ignore_rows; strand(i,1),strand(i,2)]; //save ignored start,end positions
if(strand(i,1) - last_gene_end < 0) //overlapping genes
overlap_count = overlap_count+1;
end
else //if the gap between the genes is greater than 50 bases
filtered_genes = [filtered_genes;strand(i,1),strand(i,2)];
end
end
i = i+1;
end
if(verbose)
disp('Total Genes : ' + string(length(strand)/2));
disp('Ignored genes : ' + string(ignored_count));
disp(' Overlapping genes : ' + string(overlap_count));
disp('Remaining genes after filtering : ' + string(length(filtered_genes)/2));
end
endfunction
function [remaining_seq] = get_remaining_seq(f_gp, f_gn)
pribnow_start = 30; // Start position offset of pribnow Box (upstream positions upto 30)
pribnow_stop = 5; // Stop position offset of pribnow Box (upstream positions upto 5)
remaining_seq = []
for n_key=1000:length(f_gp)/2
remaining_seq = [remaining_seq; f_gp(n_key,1) - pribnow_start, f_gp(n_key,1) - pribnow_stop];
end
for n_key=1:length(f_gn)
//TODO
//reverse (eg: seq((:,$:-1:1)) )
//remaining_seq = [remaining_seq; ];
end
endfunction
function [consensus_score] = get_consensus_score(PPM)
[ max_val, _ ] = max(PPM,'r');
consensus_score = sum(log(max_val));
endfunction
function [distribution, proportion_ignored] = Question_1(filtered_strand, ignored_genes, fasta_in, strand_type, verbose)
// Question 1 :
// Obtain the distribution of bases between genes and the proportion
// of genes that can be neglected for being less than 50 bases downstream
// of the next one.
if(~exists("verbose","local")) then
verbose = 0;
end
total_genes = length(filtered_strand)/2 + length(ignored_genes)/2;
proportion_ignored = (length(ignored_genes)/2) /total_genes;
bases = []
//loop through the filtered genes and update the bases array
for i=1:length(filtered_strand)/2
try
b = get_fasta_at(fasta_in, filtered_strand(i,1), filtered_strand(i,2), strand_type);
catch
disp("Error in get_fasta_at, at position " + string(filtered_strand(i,1)) + ":" + string(filtered_strand(i,2)));
end
bases = [bases, b];
end
distribution = get_base_hist(bases);
if(verbose)
if(strand_type == 1) then
strand_type = 'sense'
else
strand_type = 'antisense'
end
disp('Question 1')
disp(' ⟶ Distribution of bases in the filtered genes' + ' of the ' + strand_type + ' strand');
disp(' ⟶ ' + string(distribution));
disp(' ⟶ Total Genes : ' + string(total_genes));
disp(' ⟶ Ignored genes : ' + string(length(ignored_genes)/2));
disp(' ⟶ Proportion of ignored genes ' + string(proportion_ignored));
end
endfunction
function [PPM] = Question_2(filtered_strand, count, fasta_in, verbose)
// Question 2
// Perform a W matching local search (for an intact query) to
// locate a Pribnow box promoter within upstream positions 5 to 30
// of each sequence.
// Using the first 1000 sequences, obtain a position probability matrix (PPM)
// with 10 positions for the Pribnow box.
fs = filtered_strand
u_row = size(filtered_strand,1);
index = [1:1:1000];
r_index = grand(1, "prm", index)
// Get region with Pribnow Box
pribnow_start = 30; // Start position offset of pribnow Box (upstream positions upto 30)
pribnow_stop = 5; // Stop position offset of pribnow Box (upstream positions upto 5)
pribnow_len = pribnow_start - pribnow_stop; // Length of region with pribnow Box
pribnow_mat_len = 10; // Length of PPM of pribnow Box
k_init = 0.01; // Initial probability (to allow log calculations)
pribnow_pos_freq_matrix = k_init*ones(4,pribnow_mat_len); // Create empty frequency matrix for nucleotides to subsequently generate PPM of pribnow Box
pribnow_query = ascii('TATAAT'); // pribnow box of Escherichia coli
// Start search
cs = 0
for i=1:min(count, length(fs)/2)
n_key = r_index(i)
// Get position of pribnow Box
try
pribnow_seq = get_fasta_at(fasta_in, fs(n_key,1) - pribnow_start, fs(n_key,1) - pribnow_stop, 1); // Potential region to search
catch
disp("Error in get_fasta_at, at position " + string(fs(n_key,1)) + ":" + string(fs(n_key,2)));
end
[ax,ay,pribnow_pos] = traceback_prom(pribnow_seq,pribnow_query,1,-1,gap_penalty); // Promoter alignment match A or T (W) with A or T (W)
if ((pribnow_pos>0)&(pribnow_pos<(pribnow_len-pribnow_mat_len))) then
// Update the pribnow position frequency matrix
cs = cs +1
pribnow_post_prom_seq = pribnow_seq((pribnow_pos+1):length(pribnow_seq));
pribnow_pos_freq_matrix = update_pos_freq_mat(pribnow_post_prom_seq,pribnow_pos_freq_matrix,pribnow_mat_len);
end
end
disp('Considered ' + string(cs));
pribnow_ppm = get_ppm(pribnow_pos_freq_matrix); // Generate pribnow Box PPM
PPM = pribnow_ppm;
disp('Pribnow Box PPM');
disp(pribnow_ppm);
endfunction
function [col_entropy] = Question_3(PPM, count)
// Question 3
// 3.1 : Using a suitable entropy measure, eliminate the redundant positions of the PPM.
// 3.2 : Plot the distribution of the entropy vs. number of positions
// 3.3 : Select a suitable threshold
[w,su]=ppm_info(PPM,[0.25 0.25 0.25 0.25]);
disp("entropy of PPM");
col_entropy = sum(su,1); // Get the entropy for each column
disp(col_entropy);
clf
scf(0);
x = length(col_entropy);
x = [1:1:x]';
plot(x,col_entropy')
xtitle("Distribution of the Entropy vs. Number of Positions");
xlabel("Number of Positions");
ylabel('Entropy');
//PDF export
filename = string(count);
xs2pdf(0,filename);
endfunction
function [promotor_presence] = update_promotor_presence(remaining_seq, PPM, consensus_score, entropy_thresh)
promotor_presence = zeros(5,length(rs)/2)
for n_key=1:length(remaining_seq)/2
seq = get_fasta_at(fasta_in, rs(n_key,1),rs(n_key,2),1); // extract sequence
ps_p = stat_align_entropy(seq, PPM, entropy_thresh); // Search for promoter
n_ps_p = ps_p - consensus_score*ones(1,length(ps_p))
for thresh=-5:-1 //loop through all the thresholds
presence = n_ps_p > thresh; // boolean array of presence of promoters
if(sum(presence))
promotor_presence(abs(thresh),n_key) = 1; // Update the presence of promoters
end
end
end
end
function print_promotor_presence_stat(promotor_presence, text)
for i = 1:5
proportion = sum(promotor_presence(i,:))/length(promotor_presence(i,:))
disp(text + " " + string(-i) + " " + string(proportion));
end
end
function [promotor_presence_initial_PPM, promotor_presence_reduced_PPM ] = Question_4(remaining_seq, PPM, entropy_thresh, verbose)
// Question 4
// 4.1 : Perform a statistical alignment for the remaining sequences
// - Using the initial PPM of Q2
// - Reduced PPM of Q3
//
// 4.2 : Compare the two results
// - for the aligned sequences determine the proportion of genes that *do not* have promoters.
// For the statistical alignment you may use the thresholds of -1 to -5 (in decrements of 1)
// after normalizing with the consensus score.
// 4.3 Give result in terms of the proportion of genes used for testing that have detectable promoters.
if(~exists("verbose","local")) then
verbose = 0;
end
rs = remaining_seq
// 4.1
consensus_score = get_consensus_score(PPM);
consensus_score_r = get_consensus_score_(PPM, entropy_thresh)
promotor_presence_initial_PPM = update_promotor_presence(rs, PPM, consensus_score, 0);
promotor_presence_reduced_PPM = update_promotor_presence(rs, PPM, consensus_score_r, entropy_thresh);
if(verbose) then
print_promotor_presence_stat(promotor_presence_initial_PPM, "Initial PPM");
print_promotor_presence_stat(promotor_presence_reduced_PPM, "Reduced PPM");
end
endfunction
txt_files = listfiles(['Genomics Assignment Files/*.txt']);
fasta_files = listfiles(['Genomics Assignment Files/*.fasta']);
//sort names
txt_files = gsort(txt_files,'lr','i')
fasta_files = gsort(fasta_files,'lr','i')
// 1. Preprocessing
// extract the gene positions from the protein table
// [gp, gn, ncp, ncn] = get_protein_pos_array('proteins_152_747609.txt');
// fasta_in = 'NZ_CP046291.1.fasta';
[gp, gn, ncp, ncn] = get_protein_pos_array('other/NZ_CP046280_1_protein_table.txt');
fasta_in = 'other/NZ_CP046280_1_genome.fasta';
[gp,k] = gsort(gp,'lr','i')
[gn,k] = gsort(gn,'lr','i')
// Filtering and extending of the sense strand
[f_gp, i_gp] = ignore_genes(gp);
e_gp = extend_strand(f_gp);
// Filtering and extending of the antisense strand
[f_gn, i_gn] = ignore_genes(gn);
e_gn = extend_strand(f_gn);
// Answer of Question 1 :
[dist1, _ ] = Question_1(f_gp, i_gp, fasta_in,1,1);
[dist2, _ ] = Question_1(f_gn, i_gn, fasta_in,0,1);
distribution = dist1 + dist2;
total_ignored_proportion = (length(i_gp)/2 + length(i_gn)/2) / (length(gn)/2 + length(gp)/2);
disp(" Distribution " + string(distribution));
disp(" Total igored proportion " + string(total_ignored_proportion));
// Answer of Question 2 :
PPM = Question_2(f_gp, fasta_in, 1);
[w,su]=ppm_info(PPM,[0.25 0.25 0.25 0.25]);
disp("entropy of PPM");
col_entropy = sum(su,1); // Get the entropy for each column
disp(col_entropy);
// Question_2(e_gn, fasta_in, 1);
// Answer of Question 3 :
//Answer of Question 4 : Perform statistical alignment of the remaining sequences
//display first row of variables gp and e_gp
// disp(gp(1:5,:));
// disp("ignored..")
// disp(length(i_gp)/2);
// disp(e_gp(1:5,:));
// c = []
// c = get_fasta_at(fasta_in,0,70,1)
// disp(c);
// c = [c; c]
// histogram = get_base_hist(c);
// disp(histogram); |
4f6dae8c40201da6287abdded631eabd7852ac2f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1808/CH2/EX2.13/Chapter2_Example13.sce | cdfe7f236f03c2544232025cc08888249d1cfc83 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 558 | sce | Chapter2_Example13.sce | clc
clear
//INPUT DATA
p=50;//Power output in kW
m=0.05;//mass flow rate in kg/s
//C8H18 +2*12.5 O2 +2*12.5*3.76 N2= 8 CO2 +9 H2O +12.5 O2 +99N2 ;//Rate of heat transfer from the engine in kJ/kmol
//Qcv+x1=x2+Wcv ;//rate of heat transfer
x1=-249952;//inlet heat transfer in kJ/kmol
x2=-2415445.5;//exit heat transfer in kJ/kmol
//CALCULATIONS
Wcv=(p/m)*114.28;//work done in J/kmol of fuel
Qcv=x2+Wcv-x1;//Heat transfer rate from the engine in kJ/kmol
//OUTPUT
printf('(i)Heat transfer rate from the engine is %3.1f kJ/kmol',Qcv)
|
b3d22d02499ace8d1ac4e5e807c72ddada126cb0 | 33f77c32fb16283501d950b6fc6b43a07914f32e | /scilab_autopilot/lib/math/quat/quat_definePositive.sce | 69f6049e38b2c616b2d5f49109e3f3b89186b10d | [] | no_license | CLUBMODELISMECEADSTOULOUSE/autopilot | 26b79d6a2a632f08989a5528e82f553616617646 | a6ffae2f8a86fbc79e636ddd5173af104e1af9cd | refs/heads/master | 2021-01-21T00:59:06.271128 | 2015-10-25T09:31:54 | 2015-10-25T09:31:54 | 34,409,237 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 628 | sce | quat_definePositive.sce | // Define positive a quaternion
//
// This function ensures that the scalar part is positive.
// This function is typically used to ensure sign of vectorial part
// when considering the product of two quaternions with a small angles
// approximation.
//
// INTPUT
// - qIn: input quaternion
//
// OUTPUT
// - qOut: quaternion with positive scalar part
//
// USAGE
// qOut = quat_definePositive(qIn);
//
// HISTORY
// 28/03/2014: T. Pareaud - Creation
function [qOut] = quat_definePositive(qIn)
qOut = [sign(qIn(1,:)).*qIn(1,:) ; sign(qIn(1,:)).*qIn(2,:) ; sign(qIn(1,:)).*qIn(3,:) ; sign(qIn(1,:)).*qIn(4,:)];
endfunction
|
3323f99a41d90f6d0d0d306a755eeed64eb28025 | 449d555969bfd7befe906877abab098c6e63a0e8 | /608/CH38/EX38.05/38_05.sce | 74a5525c997f04e6bfbe1b0ac2525f635a9de944 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 616 | sce | 38_05.sce | //Problem 38.05: The eddy current loss in a particular magnetic circuit is 10 W/m3. If the frequency of operation is reduced from 50 Hz to 30 Hz with the flux density remaining unchanged, determine the new value of eddy current loss per cubic metre.
//initializing the variables:
Pe1 = 10; // in W/m3
f1 = 50; // in Hz
f2 = 30; // in Hz
//calculation:
//When the eddy current loss is 10 W/m3, frequency f is 50 Hz.
//constant k
k = Pe1/(f1^2)
//When the frequency is 30 Hz, eddy current loss,
Pe2 = k*(f2^2)
printf("\n\n Result \n\n")
printf("\neddy current loss per cubic metre is %.1f W/m3",Pe2) |
d3e63f90c341a6cd26eded0f80998b47a1983154 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2252/CH5/EX5.7/Ex5_7.sce | ffea3f37a879ed74a4371662576c61b6cad15386 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 284 | sce | Ex5_7.sce |
mu_not=4D-7*%pi
N=1200//no. of turns in the coil on solenoid
l=80D-2//length of solenoid
A=%pi/4*(5D-2)^2//cross-sectional area
L=N*(mu_not*N*A/l)
mprintf("Self inductance=%f mH\n",L*1000)
//calculating induced emf
di=-5-5
dt=.03
e=-L*di/dt
mprintf("Induced emf=%f V",e)
|
08cc5e0f421395241049593f471461b564d43814 | 449d555969bfd7befe906877abab098c6e63a0e8 | /647/CH6/EX6.4/Example6_4.sce | 78d4720554e0d515e1a85a4e5f6c66a48f47d68f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 401 | sce | Example6_4.sce | clear;
clc;
// Example: 6.4
// Page: 206
printf("Example: 6.4 - Page: 206\n\n");
// Solution
// *****Data******//
T1 = -40 + 273;// [K]
T2 = -45 + 273;// [K]
P1 = 51.25;// [kPa]
R = 0.0815;// [kJ/kg K]
Hv = 225.86;// [kJ/kg]
//****************//
// From Eqn. 6.61:
P2 = P1*exp((Hv/R)*((1/T1) - (1/T2)));// [kPa]
printf("Saturation pressure of the refrigerant is %.2f kPa",P2); |
0bc97921ec161ac23613d1ad135ef498cb0f842c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3456/CH2/EX2.2/Ex2_2.sce | adbd12766f7f9630e3fd97159adef744fea87e22 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 545 | sce | Ex2_2.sce | //Example 2.2
//State of Stress in three dimensions
//Page No. 29
clc;clear;close;
s=poly(0,'s')
A=[s-0,-240,0;-240,s-200,0;0,0,s+280]; //in Mpa
p=determ(A);
X=roots(p);
for i=1:3
printf('\nsigma%i = %g MPa',i,X(i));
end
printf('\n\nLogic: The matrix provided in the book is a state of stress of a body which includes a combination of normal and shear stresses acting in a triaxial direction. So the determinant of the matrix results in the cubic equation in ""sigma"" which when solved gives the principal stresses');
|
36eb69a25690c7b84a6231bc6d1ac409ec8bdf95 | f7d0f456b8e29ce4f81d9cbe1ca2a57fede3bc5d | /solvers/cyclist/bench/entl/14.tst | 4027258795697582020f5d637d26d98ea37d3a8c | [] | no_license | mihasighi/smtcomp14-sl | 22467201b3f7e74e2001e259134c040d80afd6b6 | 8dd4ff648e16e31acd193f882082df349e211251 | refs/heads/master | 2021-06-06T17:01:18.752298 | 2018-06-28T10:04:32 | 2018-06-28T10:04:32 | 19,853,856 | 1 | 3 | null | null | null | null | UTF-8 | Scilab | false | false | 57 | tst | 14.tst | BinListSecond(x) |- BinTree(x)
|
1456ff9b91a5ad65bd06341076d161aa1f34f3d0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2360/CH2/EX2.20/ex2_20.sce | 0ed009edc0e12b73199d8b7c32626a7f05955251 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,011 | sce | ex2_20.sce | // Exa 2.20
format('v',7);clc;clear;close;
// Given data
x=[101.2 101.4 101.7 101.3 101.3 101.2 101.0 101.3 101.5 101.1];// measured value
n = 10;// number of reading
sigma_x= 0;// initialization of variable
for i=1:1:n
sigma_x= sigma_x+x(i);// sum of readings
end
x_bar=sigma_x/n;// mean value
disp(x_bar,"The arithmatic mean is");
sigma_d_sq=0;// initialization of variable
sigma_d=0;// initialization of variable
for i=1:1:n
d(i)=x(i)-x_bar
sigma_d= sigma_d+abs(d(i));
sigma_d_sq= sigma_d_sq+d(i)*d(i);
end
DevFrommean =sigma_d/n;// Deviation from mean
disp(DevFrommean,"The Deviation from mean is");
sigma = sqrt( sigma_d_sq/(n-1) );//standard deviation in V
disp(sigma,"The standard deviation in V is");
ProError= 0.6745*sigma;//probable error of one reading in V
disp(ProError,"The probable error of one reading in V is : ")
ProError = 0.6745*sigma;// in V
e_m = ProError/( sqrt(n-1) );// probable error of mean
disp(e_m,"The probable error of mean is : ");
|
0def77eb65e22ef07de9541f785a2783bc9649fd | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/CONT/XW75EDU/ATWM1_Working_Memory_MEG_XW75EDU_Session2/ATWM1_Working_Memory_MEG_Salient_Uncued_Run2.sce | 1d8dda03884da2f5be4e8e87e24fe8bf305afeb1 | [] | 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,405 | sce | ATWM1_Working_Memory_MEG_Salient_Uncued_Run2.sce | # ATWM1 MEG Experiment
scenario = "ATWM1_Working_Memory_MEG_salient_uncued_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 = 36;
default_font = "Arial";
default_background_color = 0 ,0 ,0 ;
write_codes=true; # for MEG only
begin;
#Picture definitions
box { height = 382; width = 382; color = 0, 0, 0;} frame1;
box { height = 369; width = 369; 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 = 369; width = 369; color = 42, 42, 42;} 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;
42 61 292 292 399 125 1842 2992 2042 fixation_cross gabor_079 gabor_169 gabor_010 gabor_045 gabor_079 gabor_169_alt gabor_010 gabor_045_alt "2_1_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2050_gabor_patch_orientation_079_169_010_045_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_095_framed blank blank blank blank fixation_cross_white "2_1_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_095_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2092 2992 1892 fixation_cross gabor_136 gabor_005 gabor_156 gabor_073 gabor_136 gabor_005 gabor_156_alt gabor_073_alt "2_2_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_1900_gabor_patch_orientation_136_005_156_073_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_073_framed blank blank blank blank fixation_cross_white "2_2_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_073_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1792 2992 2342 fixation_cross gabor_128 gabor_080 gabor_007 gabor_145 gabor_128 gabor_080 gabor_007_alt gabor_145_alt "2_3_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2350_gabor_patch_orientation_128_080_007_145_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_097_framed blank blank blank blank fixation_cross_white "2_3_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_097_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1742 2992 2092 fixation_cross gabor_128 gabor_096 gabor_051 gabor_161 gabor_128 gabor_096_alt gabor_051 gabor_161_alt "2_4_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2100_gabor_patch_orientation_128_096_051_161_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_022_framed blank blank blank blank fixation_cross_white "2_4_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_022_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2242 2992 2292 fixation_cross gabor_164 gabor_142 gabor_090 gabor_053 gabor_164 gabor_142_alt gabor_090 gabor_053_alt "2_5_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2300_gabor_patch_orientation_164_142_090_053_target_position_2_4_retrieval_position_2" gabor_circ gabor_007_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_5_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_007_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 1942 2992 2192 fixation_cross gabor_167 gabor_084 gabor_149 gabor_133 gabor_167_alt gabor_084_alt gabor_149 gabor_133 "2_6_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_UncuedRetriev_300_300_399_1950_3000_2200_gabor_patch_orientation_167_084_149_133_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_149_framed gabor_circ blank blank blank blank fixation_cross_white "2_6_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_149_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2042 2992 2292 fixation_cross gabor_114 gabor_132 gabor_064 gabor_091 gabor_114_alt gabor_132_alt gabor_064 gabor_091 "2_7_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2300_gabor_patch_orientation_114_132_064_091_target_position_1_2_retrieval_position_2" gabor_circ gabor_177_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_7_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_177_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2242 2992 2142 fixation_cross gabor_108 gabor_155 gabor_041 gabor_172 gabor_108 gabor_155_alt gabor_041_alt gabor_172 "2_8_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2150_gabor_patch_orientation_108_155_041_172_target_position_2_3_retrieval_position_2" gabor_circ gabor_155_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_8_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_155_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2192 2992 2042 fixation_cross gabor_124 gabor_085 gabor_157 gabor_109 gabor_124_alt gabor_085_alt gabor_157 gabor_109 "2_9_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2050_gabor_patch_orientation_124_085_157_109_target_position_1_2_retrieval_position_2" gabor_circ gabor_085_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_9_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_085_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1892 2992 2442 fixation_cross gabor_148 gabor_001 gabor_120 gabor_177 gabor_148 gabor_001 gabor_120_alt gabor_177_alt "2_10_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2450_gabor_patch_orientation_148_001_120_177_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_070_framed gabor_circ blank blank blank blank fixation_cross_white "2_10_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_070_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 1742 2992 2042 fixation_cross gabor_110 gabor_135 gabor_157 gabor_175 gabor_110 gabor_135_alt gabor_157 gabor_175_alt "2_11_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_UncuedRetriev_300_300_399_1750_3000_2050_gabor_patch_orientation_110_135_157_175_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_022_framed gabor_circ blank blank blank blank fixation_cross_white "2_11_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_022_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1892 2992 2192 fixation_cross gabor_141 gabor_013 gabor_068 gabor_052 gabor_141_alt gabor_013 gabor_068 gabor_052_alt "2_12_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2200_gabor_patch_orientation_141_013_068_052_target_position_1_4_retrieval_position_1" gabor_141_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_12_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_141_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1942 2992 2392 fixation_cross gabor_091 gabor_111 gabor_076 gabor_053 gabor_091 gabor_111_alt gabor_076 gabor_053_alt "2_13_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2400_gabor_patch_orientation_091_111_076_053_target_position_2_4_retrieval_position_2" gabor_circ gabor_111_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_13_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_111_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1792 2992 2292 fixation_cross gabor_094 gabor_077 gabor_041 gabor_109 gabor_094_alt gabor_077 gabor_041 gabor_109_alt "2_14_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2300_gabor_patch_orientation_094_077_041_109_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_109_framed blank blank blank blank fixation_cross_white "2_14_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_109_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1992 2992 2042 fixation_cross gabor_098 gabor_118 gabor_158 gabor_031 gabor_098 gabor_118_alt gabor_158 gabor_031_alt "2_15_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2050_gabor_patch_orientation_098_118_158_031_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_031_framed blank blank blank blank fixation_cross_white "2_15_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_031_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 1742 2992 1942 fixation_cross gabor_117 gabor_059 gabor_177 gabor_097 gabor_117_alt gabor_059 gabor_177_alt gabor_097 "2_16_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_UncuedRetriev_300_300_399_1750_3000_1950_gabor_patch_orientation_117_059_177_097_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_097_framed blank blank blank blank fixation_cross_white "2_16_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_097_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2142 2992 1892 fixation_cross gabor_035 gabor_069 gabor_088 gabor_003 gabor_035 gabor_069_alt gabor_088_alt gabor_003 "2_17_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_1900_gabor_patch_orientation_035_069_088_003_target_position_2_3_retrieval_position_2" gabor_circ gabor_069_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_17_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_069_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2242 2992 2192 fixation_cross gabor_038 gabor_153 gabor_021 gabor_075 gabor_038_alt gabor_153_alt gabor_021 gabor_075 "2_18_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2200_gabor_patch_orientation_038_153_021_075_target_position_1_2_retrieval_position_2" gabor_circ gabor_153_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_18_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_153_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2042 2992 1942 fixation_cross gabor_056 gabor_168 gabor_009 gabor_123 gabor_056_alt gabor_168_alt gabor_009 gabor_123 "2_19_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_1950_gabor_patch_orientation_056_168_009_123_target_position_1_2_retrieval_position_2" gabor_circ gabor_033_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_19_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_033_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2192 2992 2192 fixation_cross gabor_024 gabor_148 gabor_007 gabor_080 gabor_024 gabor_148 gabor_007_alt gabor_080_alt "2_20_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2200_gabor_patch_orientation_024_148_007_080_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_130_framed blank blank blank blank fixation_cross_white "2_20_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_130_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2142 2992 2292 fixation_cross gabor_161 gabor_028 gabor_044 gabor_105 gabor_161 gabor_028_alt gabor_044_alt gabor_105 "2_21_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2300_gabor_patch_orientation_161_028_044_105_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_180_framed gabor_circ blank blank blank blank fixation_cross_white "2_21_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_180_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 2142 2992 2542 fixation_cross gabor_045 gabor_133 gabor_178 gabor_069 gabor_045 gabor_133 gabor_178_alt gabor_069_alt "2_22_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_UncuedRetriev_300_300_399_2150_3000_2550_gabor_patch_orientation_045_133_178_069_target_position_3_4_retrieval_position_1" gabor_094_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_22_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_094_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1842 2992 2142 fixation_cross gabor_083 gabor_036 gabor_017 gabor_168 gabor_083 gabor_036_alt gabor_017 gabor_168_alt "2_23_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2150_gabor_patch_orientation_083_036_017_168_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_168_framed blank blank blank blank fixation_cross_white "2_23_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_168_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 2042 2992 2492 fixation_cross gabor_041 gabor_007 gabor_128 gabor_088 gabor_041 gabor_007 gabor_128_alt gabor_088_alt "2_24_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_UncuedRetriev_300_300_399_2050_3000_2500_gabor_patch_orientation_041_007_128_088_target_position_3_4_retrieval_position_2" gabor_circ gabor_007_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_24_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_007_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1742 2992 1992 fixation_cross gabor_034 gabor_063 gabor_089 gabor_122 gabor_034_alt gabor_063 gabor_089 gabor_122_alt "2_25_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2000_gabor_patch_orientation_034_063_089_122_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_122_framed blank blank blank blank fixation_cross_white "2_25_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_122_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1792 2992 2342 fixation_cross gabor_029 gabor_094 gabor_141 gabor_064 gabor_029 gabor_094 gabor_141_alt gabor_064_alt "2_26_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2350_gabor_patch_orientation_029_094_141_064_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_113_framed blank blank blank blank fixation_cross_white "2_26_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_113_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1792 2992 2042 fixation_cross gabor_102 gabor_128 gabor_015 gabor_073 gabor_102_alt gabor_128 gabor_015 gabor_073_alt "2_27_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2050_gabor_patch_orientation_102_128_015_073_target_position_1_4_retrieval_position_1" gabor_102_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_27_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_102_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1842 2992 1992 fixation_cross gabor_079 gabor_048 gabor_157 gabor_098 gabor_079_alt gabor_048 gabor_157 gabor_098_alt "2_28_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2000_gabor_patch_orientation_079_048_157_098_target_position_1_4_retrieval_position_1" gabor_030_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_28_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_030_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1992 2992 2542 fixation_cross gabor_132 gabor_076 gabor_004 gabor_026 gabor_132_alt gabor_076 gabor_004 gabor_026_alt "2_29_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2550_gabor_patch_orientation_132_076_004_026_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_026_framed blank blank blank blank fixation_cross_white "2_29_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_026_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2242 2992 2392 fixation_cross gabor_004 gabor_136 gabor_080 gabor_115 gabor_004_alt gabor_136_alt gabor_080 gabor_115 "2_30_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2400_gabor_patch_orientation_004_136_080_115_target_position_1_2_retrieval_position_1" gabor_052_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_30_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_052_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1992 2992 2592 fixation_cross gabor_043 gabor_115 gabor_081 gabor_008 gabor_043_alt gabor_115 gabor_081_alt gabor_008 "2_31_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2600_gabor_patch_orientation_043_115_081_008_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_131_framed gabor_circ blank blank blank blank fixation_cross_white "2_31_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_131_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 2092 2992 2442 fixation_cross gabor_136 gabor_050 gabor_069 gabor_026 gabor_136 gabor_050_alt gabor_069 gabor_026_alt "2_32_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_UncuedRetriev_300_300_399_2100_3000_2450_gabor_patch_orientation_136_050_069_026_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_116_framed gabor_circ blank blank blank blank fixation_cross_white "2_32_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_116_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1792 2992 2142 fixation_cross gabor_145 gabor_039 gabor_014 gabor_179 gabor_145_alt gabor_039 gabor_014 gabor_179_alt "2_33_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2150_gabor_patch_orientation_145_039_014_179_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_129_framed blank blank blank blank fixation_cross_white "2_33_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_129_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1842 2992 2492 fixation_cross gabor_002 gabor_060 gabor_090 gabor_032 gabor_002 gabor_060_alt gabor_090_alt gabor_032 "2_34_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2500_gabor_patch_orientation_002_060_090_032_target_position_2_3_retrieval_position_2" gabor_circ gabor_060_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_34_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_060_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 1892 2992 2492 fixation_cross gabor_159 gabor_012 gabor_044 gabor_176 gabor_159_alt gabor_012 gabor_044_alt gabor_176 "2_35_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_UncuedRetriev_300_300_399_1900_3000_2500_gabor_patch_orientation_159_012_044_176_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_176_framed blank blank blank blank fixation_cross_white "2_35_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_176_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1892 2992 2292 fixation_cross gabor_034 gabor_080 gabor_007 gabor_057 gabor_034 gabor_080 gabor_007_alt gabor_057_alt "2_36_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2300_gabor_patch_orientation_034_080_007_057_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_145_framed gabor_circ blank blank blank blank fixation_cross_white "2_36_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_145_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2192 2992 2542 fixation_cross gabor_014 gabor_080 gabor_102 gabor_138 gabor_014_alt gabor_080 gabor_102_alt gabor_138 "2_37_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2550_gabor_patch_orientation_014_080_102_138_target_position_1_3_retrieval_position_1" gabor_064_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_37_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_064_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2092 2992 2242 fixation_cross gabor_056 gabor_008 gabor_177 gabor_032 gabor_056 gabor_008_alt gabor_177 gabor_032_alt "2_38_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2250_gabor_patch_orientation_056_008_177_032_target_position_2_4_retrieval_position_2" gabor_circ gabor_008_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_38_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_008_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2092 2992 2142 fixation_cross gabor_119 gabor_082 gabor_102 gabor_147 gabor_119 gabor_082_alt gabor_102 gabor_147_alt "2_39_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2150_gabor_patch_orientation_119_082_102_147_target_position_2_4_retrieval_position_2" gabor_circ gabor_082_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_39_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_082_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2092 2992 2342 fixation_cross gabor_002 gabor_154 gabor_080 gabor_029 gabor_002_alt gabor_154 gabor_080_alt gabor_029 "2_40_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2350_gabor_patch_orientation_002_154_080_029_target_position_1_3_retrieval_position_1" gabor_002_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_40_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_002_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 1742 2992 2592 fixation_cross gabor_043 gabor_092 gabor_150 gabor_002 gabor_043 gabor_092_alt gabor_150_alt gabor_002 "2_41_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_UncuedRetriev_300_300_399_1750_3000_2600_gabor_patch_orientation_043_092_150_002_target_position_2_3_retrieval_position_1" gabor_178_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_41_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_178_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1792 2992 1942 fixation_cross gabor_111 gabor_024 gabor_049 gabor_130 gabor_111 gabor_024_alt gabor_049 gabor_130_alt "2_42_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_1950_gabor_patch_orientation_111_024_049_130_target_position_2_4_retrieval_position_2" gabor_circ gabor_160_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_42_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_160_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1792 2992 1992 fixation_cross gabor_036 gabor_142 gabor_055 gabor_168 gabor_036_alt gabor_142 gabor_055 gabor_168_alt "2_43_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2000_gabor_patch_orientation_036_142_055_168_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_122_framed blank blank blank blank fixation_cross_white "2_43_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_122_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2092 2992 1992 fixation_cross gabor_066 gabor_002 gabor_125 gabor_152 gabor_066_alt gabor_002 gabor_125_alt gabor_152 "2_44_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2000_gabor_patch_orientation_066_002_125_152_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_125_framed gabor_circ blank blank blank blank fixation_cross_white "2_44_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_125_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2242 2992 2242 fixation_cross gabor_014 gabor_061 gabor_090 gabor_132 gabor_014_alt gabor_061 gabor_090_alt gabor_132 "2_45_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2250_gabor_patch_orientation_014_061_090_132_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_043_framed gabor_circ blank blank blank blank fixation_cross_white "2_45_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_043_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 1992 2992 2242 fixation_cross gabor_072 gabor_109 gabor_039 gabor_178 gabor_072 gabor_109 gabor_039_alt gabor_178_alt "2_46_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_UncuedRetriev_300_300_399_2000_3000_2250_gabor_patch_orientation_072_109_039_178_target_position_3_4_retrieval_position_1" gabor_022_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_46_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_022_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1992 2992 1892 fixation_cross gabor_167 gabor_100 gabor_085 gabor_145 gabor_167_alt gabor_100_alt gabor_085 gabor_145 "2_47_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_1900_gabor_patch_orientation_167_100_085_145_target_position_1_2_retrieval_position_2" gabor_circ gabor_100_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_47_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_100_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1842 2992 2492 fixation_cross gabor_014 gabor_142 gabor_037 gabor_091 gabor_014 gabor_142_alt gabor_037_alt gabor_091 "2_48_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2500_gabor_patch_orientation_014_142_037_091_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_037_framed gabor_circ blank blank blank blank fixation_cross_white "2_48_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_037_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2142 2992 2392 fixation_cross gabor_007 gabor_029 gabor_074 gabor_096 gabor_007_alt gabor_029 gabor_074_alt gabor_096 "2_49_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2400_gabor_patch_orientation_007_029_074_096_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_119_framed gabor_circ blank blank blank blank fixation_cross_white "2_49_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_119_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1892 2992 1942 fixation_cross gabor_096 gabor_165 gabor_140 gabor_116 gabor_096 gabor_165_alt gabor_140 gabor_116_alt "2_50_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_1950_gabor_patch_orientation_096_165_140_116_target_position_2_4_retrieval_position_2" gabor_circ gabor_027_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_50_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_027_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 1742 2992 2242 fixation_cross gabor_098 gabor_159 gabor_176 gabor_114 gabor_098_alt gabor_159_alt gabor_176 gabor_114 "2_51_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_UncuedRetriev_300_300_399_1750_3000_2250_gabor_patch_orientation_098_159_176_114_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_176_framed gabor_circ blank blank blank blank fixation_cross_white "2_51_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_176_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2042 2992 2342 fixation_cross gabor_123 gabor_081 gabor_034 gabor_155 gabor_123_alt gabor_081 gabor_034 gabor_155_alt "2_52_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2350_gabor_patch_orientation_123_081_034_155_target_position_1_4_retrieval_position_1" gabor_171_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_52_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_171_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2042 2992 2142 fixation_cross gabor_092 gabor_172 gabor_145 gabor_011 gabor_092 gabor_172 gabor_145_alt gabor_011_alt "2_53_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2150_gabor_patch_orientation_092_172_145_011_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_058_framed blank blank blank blank fixation_cross_white "2_53_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_058_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1842 2992 1892 fixation_cross gabor_067 gabor_015 gabor_035 gabor_142 gabor_067 gabor_015_alt gabor_035 gabor_142_alt "2_54_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_1900_gabor_patch_orientation_067_015_035_142_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_142_framed blank blank blank blank fixation_cross_white "2_54_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_142_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1942 2992 2092 fixation_cross gabor_069 gabor_014 gabor_085 gabor_119 gabor_069_alt gabor_014 gabor_085_alt gabor_119 "2_55_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2100_gabor_patch_orientation_069_014_085_119_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_085_framed gabor_circ blank blank blank blank fixation_cross_white "2_55_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_085_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1892 2992 1892 fixation_cross gabor_157 gabor_113 gabor_085 gabor_173 gabor_157_alt gabor_113 gabor_085 gabor_173_alt "2_56_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_1900_gabor_patch_orientation_157_113_085_173_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_173_framed blank blank blank blank fixation_cross_white "2_56_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_173_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2192 2992 2442 fixation_cross gabor_103 gabor_167 gabor_146 gabor_021 gabor_103_alt gabor_167 gabor_146_alt gabor_021 "2_57_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2450_gabor_patch_orientation_103_167_146_021_target_position_1_3_retrieval_position_1" gabor_058_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_57_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_058_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 1942 2992 2192 fixation_cross gabor_065 gabor_050 gabor_034 gabor_179 gabor_065_alt gabor_050 gabor_034_alt gabor_179 "2_58_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_UncuedRetriev_300_300_399_1950_3000_2200_gabor_patch_orientation_065_050_034_179_target_position_1_3_retrieval_position_2" gabor_circ gabor_099_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_58_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_099_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1892 2992 2592 fixation_cross gabor_017 gabor_086 gabor_102 gabor_166 gabor_017 gabor_086_alt gabor_102_alt gabor_166 "2_59_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2600_gabor_patch_orientation_017_086_102_166_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_148_framed gabor_circ blank blank blank blank fixation_cross_white "2_59_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_148_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2142 2992 1992 fixation_cross gabor_098 gabor_161 gabor_034 gabor_018 gabor_098_alt gabor_161 gabor_034_alt gabor_018 "2_60_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2000_gabor_patch_orientation_098_161_034_018_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_082_framed gabor_circ blank blank blank blank fixation_cross_white "2_60_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_082_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1992 2992 2342 fixation_cross gabor_063 gabor_108 gabor_039 gabor_172 gabor_063 gabor_108 gabor_039_alt gabor_172_alt "2_61_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2350_gabor_patch_orientation_063_108_039_172_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_126_framed blank blank blank blank fixation_cross_white "2_61_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_126_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 2192 2992 2442 fixation_cross gabor_091 gabor_062 gabor_116 gabor_135 gabor_091_alt gabor_062 gabor_116_alt gabor_135 "2_62_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_UncuedRetriev_300_300_399_2200_3000_2450_gabor_patch_orientation_091_062_116_135_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_135_framed blank blank blank blank fixation_cross_white "2_62_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_135_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2242 2992 1942 fixation_cross gabor_004 gabor_163 gabor_053 gabor_135 gabor_004 gabor_163_alt gabor_053 gabor_135_alt "2_63_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_1950_gabor_patch_orientation_004_163_053_135_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_135_framed blank blank blank blank fixation_cross_white "2_63_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_135_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1842 2992 2392 fixation_cross gabor_150 gabor_174 gabor_044 gabor_061 gabor_150_alt gabor_174 gabor_044 gabor_061_alt "2_64_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2400_gabor_patch_orientation_150_174_044_061_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_061_framed blank blank blank blank fixation_cross_white "2_64_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_061_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1942 2992 2092 fixation_cross gabor_042 gabor_089 gabor_005 gabor_025 gabor_042_alt gabor_089 gabor_005 gabor_025_alt "2_65_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2100_gabor_patch_orientation_042_089_005_025_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_025_framed blank blank blank blank fixation_cross_white "2_65_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_025_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1942 2992 2092 fixation_cross gabor_095 gabor_165 gabor_079 gabor_009 gabor_095 gabor_165_alt gabor_079 gabor_009_alt "2_66_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2100_gabor_patch_orientation_095_165_079_009_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_055_framed blank blank blank blank fixation_cross_white "2_66_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_055_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1742 2992 2542 fixation_cross gabor_145 gabor_090 gabor_029 gabor_062 gabor_145 gabor_090 gabor_029_alt gabor_062_alt "2_67_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2550_gabor_patch_orientation_145_090_029_062_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_062_framed blank blank blank blank fixation_cross_white "2_67_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_062_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 2192 2992 2092 fixation_cross gabor_037 gabor_096 gabor_079 gabor_054 gabor_037_alt gabor_096 gabor_079 gabor_054_alt "2_68_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_UncuedRetriev_300_300_399_2200_3000_2100_gabor_patch_orientation_037_096_079_054_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_127_framed gabor_circ blank blank blank blank fixation_cross_white "2_68_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_127_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2142 2992 2592 fixation_cross gabor_095 gabor_061 gabor_147 gabor_038 gabor_095_alt gabor_061_alt gabor_147 gabor_038 "2_69_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2600_gabor_patch_orientation_095_061_147_038_target_position_1_2_retrieval_position_2" gabor_circ gabor_061_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_69_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_061_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 2042 2992 2242 fixation_cross gabor_008 gabor_157 gabor_067 gabor_138 gabor_008_alt gabor_157_alt gabor_067 gabor_138 "2_70_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_UncuedRetriev_300_300_399_2050_3000_2250_gabor_patch_orientation_008_157_067_138_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_138_framed blank blank blank blank fixation_cross_white "2_70_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_138_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
};
# 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;
}; |
0210472da6ddb80f3795ca05f7ba67f2626de752 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1895/CH5/EX5.45/EXAMPLE5_45.SCE | 45d49f62b9c09cd7cc5273cb43b230a0b446318c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 851 | sce | EXAMPLE5_45.SCE | //ANALOG AND DIGITAL COMMUNICATION
//BY Dr.SANJAY SHARMA
//CHAPTER 5
//ANGLE MODULATION
clear all;
clc;
printf("EXAMPLE 5.45(PAGENO 263)");
//given
//x_c(t) = 10*cos(w_c*t + 3*sin(w_m*t))
//comparing with std eqn of PM signal x_PM(t) = A*cos(w_c*t + k_p*m(t))
//m(t) = a_m*sin(w_m*t)
//beeta = k_p*a_m
beeta = 3;
f_m1 = 1*10^3//modulating frequency for first case
f_m2 = 2*10^3//modulating frequency for second case
f_m3 = 500//modulating frequency for third case
//calculations
f_B1 = 2*(beeta + 1)*f_m1//bandwidth for first case
f_B2 = 2*(beeta + 1)*f_m2//bandwidth for first case
f_B3 = 2*(beeta + 1)*f_m3//bandwidth for first case
//results
printf("\n\ni.Bandwidth for first case = %.2f Hz",f_B1);
printf("\n\nii.Bandwidth for second case = %.2f Hz",f_B2);
printf("\n\nii.Bandwidth for third case = %.2f Hz",f_B3);
|
4ce50065bd862536ed97ba2a5a159785632ec773 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1445/CH7/EX7.3/ch7_ex_3.sce | 980731a82aad56386519cd8893d05fa27a554ae3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,082 | sce | ch7_ex_3.sce | //CHAPTER 7- SINGLE PHASE TRANSFORMER
//Example 3
disp("CHAPTER 7");
disp("EXAMPLE 3");
//VARIABLE INITIALIZATION
v1=2300; //primary voltage in Volts
v2=230; //secondary voltage in Volts
f=50;
R1=0.286;
X1=0.73;
R_dash_2=0.319;
X_dash_2=0.73;
Rc=250;
Xphi=1250;
Zl=0.387+0.29*%i;
//
//SOLUTION
Z_e1=(R1+R_dash_2)+(X1+X_dash_2)*%i;
Z_dash_l=(v1/v2)^2*Zl;
//
I_dash_1=v1/(Z_dash_l+Z_e1);
//[mag,angle]=rect2pol(real(I_dash_1),imag(I_dash_1));
//disp(sprintf("The current is %f <%f A",mag,angle));
//impedance of shunt branch
Zm=Rc*(Xphi*%i)/(Rc+Xphi*%i);
//[mag,angle]=rect2pol(real(Zm),imag(Zm));
//disp(sprintf("The Zm is %f <%f A",mag,angle));
I0=v1/Zm;
//[mag,angle]=rect2pol(real(I0),imag(I0));
//disp(sprintf("The I0 is %f <%f A",mag,angle));
//
//primary current
I1=I0+I_dash_1;
function [mag,angle]=rect2pol(x,y);
mag=sqrt((x^2)+(y^2)); //z is impedance & the resultant of x and y
angle=atan(y/x)*(180/%pi); //to convert the angle from radians to degrees
endfunction;
[mag,angle]=rect2pol(real(I1),imag(I1));
theta1=angle;
disp("SOLUTION (i)");
disp(sprintf("The primay current is %f%f A",real(I1),imag(I1)));
disp(sprintf("The primay current is %f <%f A",mag,angle));
//
//input power
Pin=v1*I1; ; //=I1.cos(theta1)
disp(sprintf("The input power is %f W",Pin));
//output power
V_dash_2=I_dash_1*Z_dash_l;
[mag,angle]=rect2pol(real(V_dash_2),imag(V_dash_2));
theta2=angle;
disp(sprintf("The V_dash_2 is %f <%f A",mag,angle));
//
Pout= V_dash_2*I_dash_1; //I_dash_1.cos(theta1)
disp(sprintf("The output power is %f W",real(Pout)));
Pc=v1*I0; //core loss
loss=Pin-Pout;
Pcu=loss-Pc; //copper loss
disp(sprintf("The core loss is %f W",Pc));
disp(sprintf("The copper loss is %f W",Pcu));
//efficiency
eff=Pout*100/Pin;
disp(sprintf("The percent efficiency is %f W",eff));
disp(" ");
// The answers from V_dash_2 calculation onward do not match with the book on page 7.21 and 7.22
//END
|
1333b97d63f9ace845bddca525f7295cbf0b7e3b | 7dbe475cd217e686e9689cb0536a9a73f625a85b | /Rez/univariate-lcmsr-wavetime/hrz_col_d/~LCM-SR-hrz_col_d-nat.tst | bb27e0dfad658b001dd4f20f5bc1cc2ef25b6a8a | [] | no_license | jflournoy/lnt_pxvx | fac8d6b00b886fa3dc800dcaa288aa186027b9ea | 3f1ddc64e4bf0aecddfa21d45f889620dbdd442d | refs/heads/master | 2021-10-20T12:52:55.625243 | 2019-02-27T17:06:09 | 2019-02-27T17:06:09 | 64,423,528 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,999 | tst | ~LCM-SR-hrz_col_d-nat.tst |
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
1 2 3 4 5
________ ________ ________ ________ ________
1 0.320296D+00
2 -0.400441D-01 0.391718D-01
3 0.866446D-03 0.159308D-03 0.593955D-02
4 -0.116542D+01 0.795091D+00 0.109307D+01 0.453215D+03
5 -0.390081D+00 -0.747149D-01 0.561666D+00 0.126507D+03 0.884060D+02
6 -0.265088D+01 -0.250470D+00 -0.111293D+01 -0.378423D+03 -0.123368D+03
7 -0.378420D-01 0.153697D-01 0.351866D+00 0.121505D+03 0.414446D+02
8 0.181438D-01 -0.629902D-01 -0.219648D+00 -0.618837D+02 -0.260356D+02
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
6 7 8
________ ________ ________
6 0.555097D+03
7 -0.129806D+03 0.477950D+02
8 0.607779D+02 -0.212314D+02 0.129933D+02
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
1 2 3 4 5
________ ________ ________ ________ ________
1 1.000
2 -0.358 1.000
3 0.020 0.010 1.000
4 -0.097 0.189 0.666 1.000
5 -0.073 -0.040 0.775 0.632 1.000
6 -0.199 -0.054 -0.613 -0.754 -0.557
7 -0.010 0.011 0.660 0.826 0.638
8 0.009 -0.088 -0.791 -0.806 -0.768
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
6 7 8
________ ________ ________
6 1.000
7 -0.797 1.000
8 0.716 -0.852 1.000
|
f72718e980072f6b1624a7725c9f0a33b4586956 | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/JP05.prev.tst | 018d1fce07f271ec5d0cc10b729a1e18f205385e | [
"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 | 19 | tst | JP05.prev.tst | Recurrence.main()
|
62bdb6b8bc30c79d70317f3bd6d04b5c62ba944b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1802/CH5/EX5.1/Exa5_1.sce | fa62936451b8e37587956e2be21d14725fc837e7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 588 | sce | Exa5_1.sce | //Exa 5.1
clc;
clear;
close;
//Given Data :
format('v',6);
Load=100;//in MW
V=380;//in KV
d=100;//in km
rho=0.045;//in ohm/cm^2/km
w=0.01;//in kg/cm^3
Eff=90;//in %
IL=Load*10^6/(sqrt(3)*V*10^3);//in Ampere
P_loss=Load*(100-Eff)/100;//in MW
P_loss=P_loss*10^6;//in Watt
P_loss=P_loss/3;//in watt/conductor
R_con=P_loss/IL^2;//in ohm/conductor
//R_con=R_con/d;//in ohm/conductor/km
a=rho*d/R_con;//in cm^2
vol=a*d;//in cm^3
W_cu=vol*w;//in Kg
disp(W_cu*100*10^3*3,"Weight of Cu for 3 onductors of 100 km length(in Kg) :");
//Note : answer in the book is not accurate. |
6590829321fa67060966fa37f1361dec5c830646 | 449d555969bfd7befe906877abab098c6e63a0e8 | /23/CH13/EX13.1/Example_13_1.sce | 0c0da20b776093d39f87d21f28b12d2b981786c3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 936 | sce | Example_13_1.sce | clear;
clc;
//To find Approx Value
function[A]=approx(V,n)
A=round(V*10^n)/10^n;//V-Value n-To what place
funcprot(0)
endfunction
//Example 13.1
//Caption : Program to determine the Expressions for mole Fractions yi
//CH4 + H2O --> CO + 3H2
n_CH4=2;//Moles of CH4
n_H2O=1;//Moles of H20
n_CO=1;//Moles of CO
n_H2=4;//Moles of H2
v_CH4=-1;
v_H2O=-1
v_CO=1;
v_H2=3;
v=v_CH4+v_H2O+v_CO+v_H2;
n=n_CH4+n_H2O+n_CO+n_H2;
//y_CH4=(n_CH4+(v_CH4e)/n+(v*e))
//y_H2O=(n_H2O+(v_H2Oe)/n+(v*e))
//y_CO=(n_CO+(v_CO*e)/n+(v*e))
//y_H2=(n_H2+(v_H2*e)/n+(v*e))
y_CH4='(n_CH4+(v_CH4e)/n+(v*e))';
y_H2O='(n_H2O+(v_H2Oe)/n+(v*e))';
y_CO='(n_CO+(v_CO*e)/n+(v*e))';
y_H2='(n_H2+(v_H2*e)/n+(v*e))';
//Hence
y_CH4='(2-e/8+2e)';
y_H2O='(1-e/8+2e)';
y_CO='(1+e/8+2e)';
y_H2='(4+3e/8+2e)';
disp(y_CH4,'y_CH4 = ')
disp(y_H2O,'y_H2O = ')
disp(y_CO,'y_CO = ')
disp(y_H2,'y_H2 = ')
//End
|
b6a27db61e57f106fef712af77e69d412e717698 | 449d555969bfd7befe906877abab098c6e63a0e8 | /551/CH11/EX11.17/17.sce | fbdea59584d783e433e1cc4940e21fd282abe58e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 556 | sce | 17.sce | clc
// C2H6 + 3.5O2 → 2CO2 + 3H2O
// C2H6 + (0.9)*(3.5) O2 + (0.9)*(3.5)*(79/21)N2→a CO2 + b CO + 3H2O + (0.9)*(3.5)*(79/21)*N2
// a+b=2
// 2*a+b+3=0.9*3.5*2
// a=1.3
// b=0.7
// C2H6 + (0.9)*(3.5) O2 + (0.9)*(3.5)*(79/21)*N2→ 1.3CO2 + 0.7CO + 3H2O + (0.9)*(3.5)*(79/21)N2
n=1.3+0.7+0.9*3.5*(79/21);
CO2=1.3/n*100;
CO=0.7/n*100;
N2=11.85/n*100;
disp("Volumetric analysis of dry products of combustion is as follows ")
disp("CO2 =")
disp(CO2)
disp("%")
disp("CO =")
disp(CO)
disp("%")
disp("N2 =")
disp(N2)
disp("%") |
47ea3452eca60a8abb54c35f459fb50a10cf2832 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1529/CH7/EX7.12/7_12.sce | 12fca39eeb669d3e7fb01e3c60b16624ed0d0dff | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 812 | sce | 7_12.sce | //Chapter 7, Problem 12
clc;
l1=6*10^-2; //length 1
A1=1*10^-4; //area 1
l2=2*10^-2; //length 2
A2=0.5*10^-4; //area 2
N=200; //no of turns
I=0.4; //current in the coil
u0=4*%pi*10^-7; //permeability of free space
ur=750; //relative permeability
S1=l1/(u0*ur*A1); //calculating reluctance for 6 cm long path
S2=l2/(u0*ur*A2); //calculating reluctance for 2 cm long path
S=S1+S2; //calculating total reluctance
phi=(N*I)/S; //calculating flux
B=phi/A2; //calculating flux density in 2cm path
printf("Flux density in 2cm path = %f T",B);
|
d36b06f1769145fdf641c4e25b8217ae1b6bd8e4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1439/CH12/EX12.4/12_4.sce | 7d80277c1c380c5b339fd37bd0dc42eac8fec25d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 157 | sce | 12_4.sce | clc
//initialisation of variables
y= 0.550
x= 2400
d= 0.00494
//CALCULATIONS
s= y/x
k= s*2.303/d
//RESULTS
printf ('k= %.3f lit mol^-1 sec^-1',k)
|
0d064f1e08e9568f6b76da3214d8e09b9dd16cac | 449d555969bfd7befe906877abab098c6e63a0e8 | /1868/CH10/EX10.4/Ch10Ex4.sce | 9b2cbf9f55896391eca4165ae46d2a7e5aac9208 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,309 | sce | Ch10Ex4.sce | // Scilab code Ex10.4: Pg 356 (2005)
clc; clear;
// Part (a)
k_B = 8.62e-05; // Boltzmann constant, eV/K
T_E = 1300; // Temperature, K
h_cross = 6.58e-16; // Reduced plank's constant, eV-s
omega = (k_B*T_E)/h_cross; // Frequency of vibration of carbon atom in diamond, Hz
spacing = (h_cross*omega); // Spacing between adjacent oscillator energy level, eV
printf("\nFrequency of vibration of carbon atom in diamond = %4.2e Hz", omega);
printf("\nSpacing between adjacent oscillator energy level = %5.3f eV", spacing);
// Part (b)
T_R = 300; // Room temperature, K
p = exp((h_cross*omega)/(k_B*T_R)); // For simplication
E_R = (h_cross*omega)/(p-1); // Average energy of oscillator at room temperature, eV
T = 1500; // Temperature, K
q = exp((h_cross*omega)/(k_B*T)); // For simplication
E_bar = (h_cross*omega)/(q-1); // Average energy at 1500 K, eV
printf("\nAverage energy of oscillator at room temperature = %7.5f eV", E_R);
printf("\nAverage oscillator energy at %4d K = %7.5f eV", T, E_bar);
// Result
// Frequency of vibration of carbon atom in diamond = 1.70e+14 Hz
// Spacing between adjacent oscillator energy level = 0.112 eV
// Average energy of oscillator at room temperature = 0.00149 eV
// Average oscillator energy at 1500 K = 0.0813 eV
|
e3bbb40cbea1088ae32078a74900694eaa77ad5e | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/uencode/uencode12.sce | 5f6fa71e9954578f384bb2d4f548dd4b3d1e46b6 | [] | 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 | 165 | sce | uencode12.sce | //check o/p when i/p is a matrix
u=[1 2 .3 .4 5;-2 3 4 .5 6;.3 4 5 6 7];
y=uencode(u,3);
disp(y);
//output
//7 7 5 5 7
// 0 7 7 6 7
// 5 7 7 7 7
|
854619376888ac8a13682b58b8ec90b622c78791 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.4/macros/scicos/do_region2block.sci | 0df86c2828d6f741b446bc47e2ad8e369c0c1d69 | [
"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 | 3,382 | sci | do_region2block.sci | function scs_m=do_region2block(scs_m)
// Copyright INRIA
[btn,xc,yc,win,Cmenu]=getclick()
if Cmenu<>[] then
Cmenu=resume(Cmenu)
end
scs_m_save=scs_m,nc_save=needcompile
[scs_mb,rect,prt]=get_region2(xc,yc,win)
if rect==[] then return,end
ox=rect(1);oy=rect(2)+rect(4);w=rect(3),h=rect(4)
n=0
W=max(600,rect(3))
H=max(450,rect(4))
for k=2:size(scs_mb)
o=scs_mb(k)
// translate blocks
if o(1)=='Link' then
o(2)=o(2)-rect(1)
o(3)=o(3)-rect(2)
else
o(2)(1)(1)=o(2)(1)(1)-rect(1)
o(2)(1)(2)=o(2)(1)(2)-rect(2)
end
scs_mb(k)=o
end
scs_mb(1)(1)=[max(600,rect(3)),max(450,rect(4)),-rect(3)/5,-rect(4)/5,..
7*rect(3)/5,7*rect(4)/5]
//max(600,rect(3)),max(450,rect(4))]
sup=SUPER_f('define')
sup(2)(1)=[rect(1)+rect(3)/2-20,rect(2)+rect(4)/2-20]
sup(2)(2)=[40 40]
sup(3)=list('super',1,1,[],[],[],' ',scs_mb,[],'h',[],[%f %f])
// open the superblock in editor
//sup=SUPER_f('set',sup)
[ok,sup]=adjust_s_ports(sup)
// detruire la region
del=[]
for k=2:size(scs_m)
o=scs_m(k)
if o(1)=='Block'|o(1)=='Text' then
// check if block is outside rectangle
orig=o(2)(1)
sz=o(2)(2)
x=[0 1 1 0]*sz(1)+orig(1)
y=[0 0 1 1]*sz(2)+orig(2)
ok=%f
for kk=1:4
data=[(ox-x(kk))'*(ox+w-x(kk)),(oy-h-y(kk))'*(oy-y(kk))];
if data(1)<0&data(2)<0 then ok=%t;del=[del k];break;end
end
end
end
[scs_m,DEL]=do_delete2(scs_m,del,%t)
// add super block
drawobj(sup)
scs_m($+1)=sup
// connect it
nn=size(scs_m)
nnk=nn
for k=1:size(prt,1)
k1=prt(k,6)
o1=scs_m(k1) // block origin of the link
if prt(k,1)==1 then //regular input port
[x,y,vtyp]=getoutputs(o1)
[xn,yn,vtypn]=getinputs(sup),
p=prt(k,7)
pn=prt(k,2)
xl=[x(p);xn(pn)]
yl=[y(p);yn(pn)]
from=[prt(k,6),prt(k,7)]
to=[nn,prt(k,2)]
o1(2)(6)(prt(k,7))=nnk+1
scs_m(nn)(2)(5)(prt(k,2))=nnk+1
elseif prt(k,1)==2 then //regular output port
[x,y,vtyp]=getinputs(o1)
[xn,yn,vtypn]=getoutputs(sup),
p=prt(k,7)
pn=prt(k,2)
xl=[xn(pn);x(p)]
yl=[yn(pn);y(p)]
from=[nn,prt(k,2)]
to=[prt(k,6),prt(k,7)]
o1(2)(5)(prt(k,7))=nnk+1
scs_m(nn)(2)(6)(prt(k,2))=nnk+1
elseif prt(k,1)==3 then //event input port
[x,y,vtyp]=getoutputs(o1)
[xn,yn,vtypn]=getinputs(sup),
p=prt(k,7)+size(find(vtyp==1),'*')
pn=prt(k,2)+size(find(vtypn==1),'*')
xl=[x(p);xn(pn)]
yl=[y(p);yn(pn)]
from=[prt(k,6),prt(k,7)]
to=[nn,prt(k,2)]
o1(2)(8)(prt(k,2))=nnk+1
scs_m(nn)(2)(7)(prt(k,7))=nnk+1
elseif prt(k,1)==4 then //event output port
[x,y,vtyp]=getinputs(o1)
[xn,yn,vtypn]=getoutputs(sup),
p=prt(k,7)+size(find(vtyp==1),'*')
pn=prt(k,2)+size(find(vtypn==1),'*')
xl=[xn(pn);x(p)]
yl=[yn(pn);y(p)]
from=[nn,prt(k,2)]
to=[prt(k,6),prt(k,7)]
o1(2)(7)(prt(k,7))=nnk+1
scs_m(nn)(2)(8)(prt(k,2))=nnk+1
end
if xl(1)<>xl(2)&yl(1)<>yl(2) then //oblique link
if prt(k,1)<=2 then //regular port
xl=[xl(1);xl(1)+(xl(2)-xl(1))/2;xl(1)+(xl(2)-xl(1))/2;xl(2)]
yl=[yl(1);yl(1);yl(2);yl(2)]
else
xl=[xl(1);xl(1);xl(2);xl(2)]
yl=[yl(1);yl(1)+(yl(2)-yl(1))/2;yl(1)+(yl(2)-yl(1))/2;yl(2)]
end
end
lk=list('Link',xl,yl,'drawlink',' ',[0 0],[prt(k,5),prt(k,4)],from,to)
drawobj(lk)
scs_m($+1)=lk
scs_m(k1)=o1
nnk=nnk+1
end
[scs_m_save,nc_save,enable_undo,edited,needcompile,Cmenu]=resume(scs_m_save,nc_save,%t,%t,4,[])
|
738c063a49861e1128a9c73923bcf56c386ee898 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1022/CH6/EX6.3/6_3.sce | 4d9623991c25ba981d4eacbac922b2c1dea3ac62 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 294 | sce | 6_3.sce | clc
//initialisation of variables
F= 30 //lb
w= 40 //lb
l= 10 //ft
t= 2 //sec
mu= 0.1
//CALCULATIONS
f= mu*w
W= F*l-f*l
FW= f*l
Fhp= FW/(550*t)
//RESULTS
printf ('Total work done= %.f ft lbf',W)
printf (' \n FW= %.f ft lbf',FW)
printf (' \n Frictional horsepower= %.3f hp',Fhp)
|
97af8a7c99ba14eab74508156f4e86015e24ed29 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2087/CH3/EX3.5/example3_5.sce | e94453b4376c81271ca29fc3eb55f40b66fae08c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 605 | sce | example3_5.sce |
//example 3.5
//calculate Field Capacity
clc;
//Given
d=2; //root zone depth
Wc=0.05; //existing water content
gammad=15; //dry density of soil
gammaw=9.81; //unit weigth of water
Vw=500 //water applied to the soil
Wl=0.1; //water loss
A=1000; //area of plot
Vu=Vw*0.9; //volume of water used in soil
Wu=Vu*gammaw; //weigth of water used in soil
Ws=A*d*gammad; //total dry weigth of soil
Wa=Wu*100/Ws; //percent water added
Fc=Wc*100+Wa;
Fc=round(Fc*100)/100;
mprintf("The Field Capacity of soil is=%f percent.",Fc);
|
20405d1d497539d3d0b2f73429a15757ad989762 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.1/macros/percent/%sxr.sci | 5c55046970b58d34e4575f532e0516130e1bde17 | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer",
"MIT"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 202 | sci | %sxr.sci | function f=%sxr(n1,f2)
// %sxr(,M,r) calcule le produit element par element de la matrice de
//scalaires M par la matrice de fractions rationnelles r . (M.*r)
//!
f=list(f2(1),n1.*f2(2),f2(3),f2(4))
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.