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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0826b76db379d00e456a29429eab349a9fee4d1f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1358/CH5/EX5.8/Example58.sce | d5f6556d5987f5ae3a23f6cfd18cce236f94dae1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Example58.sce | // Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
clear;
clc;
disp("Turbomachinery Design and Theory,Rama S. R. Gorla and Aijaz A. Khan, Chapter 5, Example 8")
disp("Since the degree of reaction at the mean radius is 50%, alpha1 = beta2 and alpha2 = beta1. From the velocity triangles, the relative outlet velocity component in the x-direction is given by:")
Ca = 158;
beta2 = 30;
Vx2 = Ca*tan(beta2*%pi/180)
disp("V1 = C2 = (U - Vx2)^2 + Ca^2)^1/2")
U = 245;
Vx2 = 91.22;
Ca = 158;
C2 = ((U - Vx2)^2 + Ca^2)^0.5
V1 = C2
beta1 = acos(Ca/V1)*180/%pi
disp("Stagnation temperature rise in the stage, in Kelvin")
disp("DeltaT0s = UCa(tanbeta1 - tanbeta2)/Cp")
Cp = 1005;
DeltaT0s = U*Ca*(tan(beta1*%pi/180) - tan(beta2*%pi/180))/Cp
disp("n /(n-1) = inf * gamma/(gamm-1 = 3.05)")
disp("Number of stages")
N = (4.5^(1/3.05) -1)*290/DeltaT0s
disp("implies N = 12 stages")
|
903bceef0ce0aff287a92b6284bfacaa513c8fad | 449d555969bfd7befe906877abab098c6e63a0e8 | /3511/CH7/EX7.5/Ex7_5.sce | 34887bc878ae54ef1f9cac89065cce3ef6a586ab | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,494 | sce | Ex7_5.sce | clc;
pa=0.458; // Ambient pressure in bar
Ta=248; // Ambient temperature in kelvin
Ci=805*1000/3600; // Speed of the aircraft in m/s
rp=4;// Pressure ratio
DelP_comb=0.21; // Combustion chamber pressure loss in bar
T03=1100; // Turbine inlet temperature in kelvin
eff_ram=0.95; // Intake duct efficiency
eff_c=0.85; // Compressor efficiency
eff_T=0.90; // Turbine efficiency
eff_m=0.99; // Mechanical efficiency of transmission
eff_nozzle=0.95; // Nozzle efficiency
CV=43; // Low calorific value in MJ/kg
Ac=0.0935; // Nozzle outlet area in m^2
Cpa=1.005;// Specific heat of air at constant pressure in kJ/kg K
Cpg=1.147;// Specific heat of fuel at constant pressure in kJ/kg K
rg=1.33;// Specific heat ratio of fuel
r=1.4; // Specific heat ratio of air
R=287; // Characteristic gas constant in J/kg K
p01=pa*(1+eff_ram*((1+Ci^2/(2*Cpa*Ta*10^3))^(r/(r-1))-1));
p02=p01*rp;
T01=Ta+Ci^2/(2*Cpa*10^3);
T02=T01+T01*(rp^((r-1)/r)-1)/eff_c;
T04=T03-(Cpa*(T02-T01))/(Cpg*eff_m);
p03=p02-DelP_comb;
T_04=T03-(T03-T04)/eff_T;
p04=p03*(T_04/T03)^(r/(r-1));
p04_pc=1/(1-(((rg-1)/(rg+1))/eff_nozzle))^(rg/(rg-1));
Tc=T04*(1/p04_pc)^((rg-1)/rg);
pc=p04/p04_pc;
row_c=(pc*10^5)/(R*Tc);
cj=sqrt (rg*R*Tc);
m=row_c*Ac*cj;
F=m*(cj-Ci)+Ac*(pc-pa)*10^5; // Total thrust
mf=(m*Cpg*(T03-T02))/(CV*10^3);
sfc=mf*3600/F; // specific fuel consumption
disp ("N (roundoff error)",F,"Total thrust = ");
disp ("kg/N h (roundoff error)",sfc,"specific fuel consumption = ");
|
c0045fa0089ac0e6cd9735593088d2c8eaafd6a9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /833/CH14/EX14.1/Ex14_1.sce | 681aa2156794bb838731fd313a169d2a183f9faa | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 526 | sce | Ex14_1.sce | //Caption:Find the excitation voltage in per unit
//Exa:14.1
clc;
clear;
close;
pf=0.9//Power factor
Xd=1//Direct axis synchronous reactance(in per unit)
Xq=0.6//Quadrature axis synchronous reactance(in per unit)
V=1//Terminal voltage(in volts)
ang=49//Phase angle between Ia and excitation voltage(in degrees)
Ia=0.9-(%i*0.436)//Armature current(in A)
v=(%i)*Ia*Xq
E=V+v
Id=sqrt(Ia*conj(Ia))*sind(ang)
Iq=sqrt(Ia*conj(Ia))*cosd(ang)
Ef=sqrt(E*conj(E))+(Id*(Xd-Xq))
disp(Ef,'Excitation voltage (in per unit)=') |
bef9dd6e60b9df411acaf5285ebf6a461daca39e | 717ddeb7e700373742c617a95e25a2376565112c | /806/DEPENDENCIES/218.sci | d75a99a0699403466270d1a397d38cf1d4df2871 | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 47 | sci | 218.sci | h=20//inches
S=1.9//Specific gravity of liquid |
c13de89bc2ccf01c021e9db106481f9885fd6b6d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2921/CH18/EX18.4/Ex18_4.sce | df93a3c5239fee93e16c8861f066bdba4c42c0fb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 241 | sce | Ex18_4.sce | clc;
clear;
mprintf('MACHINE DESIGN \n Timothy H. Wentzell, P.E. \n EXAMPLE-18.4 Page No.405\n');
//Torque
L=0.5;
F=5800/2;
T=0.177*F*L;
mprintf('\n Torque = %f in-lb.',T);
//Power
n=175*2/3;
P=T*n/63000;
mprintf('\n Power = %f hp.',P);
|
55e05ab2a6bc41fc428ff7fe5166c1a785e28129 | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/BV3.prev.tst | 886d524fff35b9832b00071dcf2498fb233e2aff | [
"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 | 57 | tst | BV3.prev.tst | [1,2,-5] - [1,1,1,7] = [0,1,-6,-7], original = [1,2,-5]
|
7886d139d162dea4350832e6cc55eaa6a83a52c4 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/1.1/macros/auto/dt_ility.sci | afaa2ef5259ed421a6a68f2d19f4da9b5f9c309d | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-unknown-license-reference"
] | 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 | 820 | sci | dt_ility.sci | function [n,u,sl]=dt_ility(sl,tol)
//!
[lhs,rhs]=argn(0)
if type(sl)<>15 then error(91,1),end
if sl(1)<>'lss' then error(91,1),end
[a,b,c,d,x0,dom]=sl(2:7)
select dom
case 'c' then typ='c'
case 'd' then typ='d'
case [] then typ='c';warning('dt_ility-->sl assumed continuous!');
else typ='d'
end;
[na,nb]=size(b)
//
if rhs=1 then [a,c,u,n]=contr(a',c');
else [a,c,u,n]=contr(a',c',tol);
end;
a=a';c=c';n=sum(n);
if lhs=3 then b=u'*b;x0=u'*x0;end
if n<>na then
//
nn=n+1:na
[v,n1]=schur(a(nn,nn),part(typ,1))
n=n+n1
//
if lhs>1 then
u(:,nn)=u(:,nn)*v
if lhs=3 then
a(:,nn)=a(:,nn)*v;a(nn,nn)=v'*a(nn,nn)
b(nn,:)=v'*b(nn,:)
c(:,nn)=c(:,nn)*v
x0(nn)=v'*x0(nn)
end;
end;
end;
//
if lhs=3 then sl=list('lss',a,b,c,d,x0,dom),end
|
6112f7ec9f10f9dbf22e96a7896610baa79fc29c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1529/CH3/EX3.10/3_10.sce | 2b2a78e95c0b5b1fbfb004ff47cd433092a456ab | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 321 | sce | 3_10.sce | //Chapter 3, Problem 10
clc;
R0=1000; //resistance at 0◦C
T=80; //tempreture in ◦C
a=-0.0005; //temperature coefficient of resistance at 0◦C
Rt=R0*(1+(a*T)); //calculating resistance at 80◦C
printf("Resistance at 80◦C = %f ohm",Rt);
|
4dffbce7acbea2fed3ff6b3b108cd805b03eed47 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2165/CH3/EX3.2/3_2.sce | 9c1b84bedae9895048e1f9b97407e74a4cd93def | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 330 | sce | 3_2.sce | clc
//initialisation of variables
t1=35//degree C
p=100//lb/in^2
L=435//C.H.U
L2=539.3//C.H.U
h1=165.9//H.C.U/lb
h2=493.4//C.H.U/lb
S=(h1-t1)//C.H.U
h3=304.1//C.H.U
h4=335//C.H.U/lb
//CALCULATIONS
X1=h3/h2//C.H.U/lb
X2=h4/L2//C.H.U/lb
//RESULTS
printf('The heat giving to the water and steam is =% f C.H.U/lb',X2)
|
3a5a944aa973037b6c92a86ec61db6b879f73da4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3733/CH22/EX22.20/Ex22_20.sce | 240a3a64c68db4cd1644d1ee2c95a8996018f729 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,799 | sce | Ex22_20.sce | // Example 22_20
clc;funcprot(0);
//Given data
T_1=556;// °C
T_2=222;// °C
m_s=20;// kg/sec
n_m=80/100;// Mechanical efficiency
n_t=95/100;// Transmission efficiency
n_g=85/100;// Generator efficiency
W_act=50/100;
h_f1=76;// kJ/kg
h_f2=29;// kJ/kg
h_fg1=290;// kJ/kg
h_fg2=302;// kJ/kg
h_g1=366;// kJ/kg
h_g2=331;// kJ/kg
s_f1=0.152;// kJ/kg-K
s_f2=0.08;// kJ/kg-K
s_fg1=0.359;// kJ/kg-K
s_fg2=0.626;// kJ/kg-K
s_g1=0.511;// kJ/kg-K
s_g2=0.706;// kJ/kg-K
p_a=17;// bar
p_b=0.035;// bar
h_fa=874;// kJ/kg
h_fb=111;// kJ/kg
h_fga=1932;// kJ/kg
h_fgb=2453;// kJ/kg
h_ga=2806;// kJ/kg
h_gb=2564;// kJ/kg
s_fa=2.37;// kJ/kg-K
s_fb=0.388;// kJ/kg-K
s_ga=6.42;// kJ/kg-K
s_gb=0.388;// kJ/kg-K
// Calculation
//(a)
x_2=(s_g1-s_f2)/s_fg2;// The condition of the mercury vapour at point2
m_hg=h_fga/(x_2*h_fg2);// kg
//(b)
W=h_g1-(h_f2+(x_2*h_fg2));// kJ/kg
W_m=W*m_hg;//Work done per kg of Hg vapour in kJ
//(c)
// From steam tables,
T_sup=380+273;// K
T_sa=203.4+273;// K
T_b=26.5+273;// K
x_b=(((s_ga+(2*2.303*log(T_sup/T_sa)))*(T_b))-s_fb)/(T_b/h_fga);
T_sup=383+273;// K
x_2=0.72;
W_s=(h_ga+(2*(T_sup-T_sa)))-(h_fb+(x_2*h_fgb));// Work done per kg of steam in kJ/kg
//(d)
W=W_m+W_s;// Total work done in kJ
Q_s=(m_hg*(h_g1-h_f2))+(1*(h_fa-h_fb))+(2*(T_sup-T_sa));// Heat supplied in kJ
n_o=(W/Q_s)*100;// Overall efficiency of the cycle in %
E=((m_s*W*W_act)*n_m*n_t*n_g)/1000;// Total energy generated per sec in MW
printf('\n(a)Mass of Hg required per kg of steam used=%0.1f kg \n(b)Work done per kg of Hg vapour=%0.1f kJ/kg \n(c)Work done per kg of steam=%0.0f kJ/kg \n(d)Overall efficiency of the cycle=%0.1f percentage \n(e)Total energy generated per sec=%0.3f MW',m_hg,W_m,W_s,n_o,E);
// The answer provided in the textbook is wrong
|
0f2a187d2a9f09bac353793c75290f75f0f503cd | 449d555969bfd7befe906877abab098c6e63a0e8 | /3793/CH4/EX4.10/exp_.sce | 19007ba9427848dbb20f0337d3c46f934bce155d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 498 | sce | exp_.sce | clear;
clc;
v=400;
Xl=.30;
Xc=3.75*10^(-6);
l=300;
L=Xl/(2*%pi*50);
C=Xc/(2*%pi*50);
Zc=sqrt(L/C);
mprintf(" surge impedence is %.3f ohm\n",Zc);
phase=2*%pi*50*sqrt(L*C);
pconstant=%i*phase;
mprintf("propagation constant is %.4f\n",imag(pconstant));
A=cos(phase*l);
D=A;
B=%i*Zc*sin(phase*l);
C=(%i*sin(phase*l))/Zc;
lamda=(3*10^(8))/50;
SIL=v^(2)/Zc;
mprintf("A,B,C and D parameters are respectively\n")
disp(A,B,C,D);
mprintf("Lamda and SIL is %.5fm and %.5fMW",lamda,SIL);
|
e73850e8ddf414140d7d237fa012831bfc1b9516 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3161/CH5/EX5.6/Ex5_6.sce | 70eb06d50f2c3faacd26901ffcaa0f6dde9d31f7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 977 | sce | Ex5_6.sce | clc;
//page 273
//problem 5.6
//The y axis is uniformly quantized with step size(step_size) = 1/[(2^8)/(2-1)] in both +ve & -ve direction between 1 & -1 when peak of input varies between 1 & -1.
//The smallest step in x direction occurs nearest to x=0 i.e between y1 = 0 & y2 = step_size
step_size = 1/[(2^8)/2-1]
y1 = 0
y2 = step_size
//Then, y1 = [ln(1+255*x1)]/[ln(1+255)]
x1 = (%e^(y1*log(256)) - 1)/255;
//y2 = [ln(1+255*x2)]/[ln(1+255)]
x2 = (%e^(y2*log(256)) - 1)/255;
//The smallest step size is 10*(x2-x1)
disp('The smallest step size is '+string(10*(x2-x1))+' Volts')
//The largest step size occurs when x is at its extreme between y1 = 1-1/127 = 126/127 & y2 = 1
y1 = 1-1/127
y2 = 1
//Then, y1 = [ln(1+255*x1)]/[ln(1+255)]
x1 = (%e^(y1*log(256)) - 1)/255;
//y2 = [ln(1+255*x2)]/[ln(1+255)]
x2 = (%e^(y2*log(256)) - 1)/255;
//The largest step size is 10*(x2-x1)
disp('The largest step size is '+string(10*(x2-x1))+' Volts')
|
9ba550d65c8f1919300a2de0ebaa8889cc8fcabc | b7244fbbe0a8f6bc96fc19e6cb8529d3e744b709 | /07/T2/T2.tst | efdb74742ed3234026f3b9c8d82806f5a57389d3 | [] | no_license | Shulik95/nand2tetris | 6dfd15765a8a33c64f38b6a41d8542f7cd62fd1c | 1c9ca781a582c201e8170188cb0c7e0310df9983 | refs/heads/master | 2020-09-08T00:02:57.479436 | 2020-01-25T17:33:42 | 2020-01-25T17:33:42 | 220,951,197 | 0 | 1 | null | 2020-01-08T16:56:49 | 2019-11-11T09:59:46 | Hack | UTF-8 | Scilab | false | false | 780 | tst | T2.tst | // This file is part of the materials accompanying the book
// "The Elements of Computing Systems" by Nisan and Schocken,
// MIT Press 2004. Book site: http://www.idc.ac.il/tecs
// File name: projects/07/MemoryAccess/StaticTest/StaticTest.tst.
// Version: beta 1.4
load T2.asm,
output-file T2.out,
compare-to T2.cmp,
output-list RAM[256]%D1.6.1 RAM[3]%D1.6.1 RAM[4]%D1.6.1
RAM[5]%D1.6.1 RAM[6]%D1.6.1 RAM[7]%D1.6.1 RAM[8]%D1.6.1
RAM[9]%D1.6.1 RAM[10]%D1.6.1 RAM[11]%D1.6.1 RAM[12]%D1.6.1
RAM[259]%D1.6.1 RAM[3040]%D1.6.1 RAM[3032]%D1.6.1 RAM[3046]%D1.6.1;
set RAM[0] 256,
set RAM[5] 17,
set RAM[6] 18,
set RAM[7] 25,
set RAM[8] 69,
set RAM[9] 62,
set RAM[10] 55,
set RAM[11] 100,
set RAM[12] 36,
repeat 10000 {
ticktock;
}
output;
|
ee9cf381e51704646b4533681b10e2d0b9774fdd | 43799901e22e995d4db64000ef28c0a787aeb11b | /ISAWIN/LINOV/VIP2019/appli.tst | 8a71439213332a4a191a32669c870612826565da | [
"WTFPL"
] | permissive | aquaforum/tench_catch | 7082d8e8f3a224aa50be9150a96362f2f323a2be | 3f377476d82d7343edd985a6d3a41b57dc301f98 | refs/heads/master | 2023-07-17T13:33:10.901467 | 2021-08-22T19:29:09 | 2021-08-22T19:29:09 | 398,885,059 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 17,512 | tst | appli.tst | @ISA_SYMBOLS,74770071
#NAME,vip2019,3.41
#DATE,28.09.2020
#SIZE,G=12,S=0,T=0,L=0,P=5,V=104
#COMMENT,wsma1tst
@PROGRAMS,12
#!5001,PARM_RAM
#!5002,ANALOG
#!5003,SELECT
#!5004,CONTROL
#!5005,TX_X
#!5006,DEXPO
#!5007,MUX2
#!5008,PIDMY
#!5009,SLOW_UP
#!500A,P_P0
#!500B,SWITCH2
#!500C,KALMAN
@STEPS,0
@TRANSITIONS,0
@BOOLEANS,136
#!1001,X_01,+I,!0000,FALSE,TRUE
#!1002,X_02,+I,!0000,FALSE,TRUE
#!1003,X_03,+I,!0000,FALSE,TRUE
#!1004,X_04,+I,!0000,FALSE,TRUE
#!1005,X_05,+I,!0000,FALSE,TRUE
#!1006,X_07,+I,!0000,FALSE,TRUE
#!1007,X_08,+I,!0000,FALSE,TRUE
#!1008,X_06,+I,!0000,FALSE,TRUE
#!1009,X_09,+I,!0000,FALSE,TRUE
#!100A,X_10,+I,!0000,FALSE,TRUE
#!100B,X_11,+I,!0000,FALSE,TRUE
#!100C,X_12,+I,!0000,FALSE,TRUE
#!100D,X_13,+I,!0000,FALSE,TRUE
#!100E,X_14,+I,!0000,FALSE,TRUE
#!100F,X_15,+I,!0000,FALSE,TRUE
#!1010,X_16,+I,!0000,FALSE,TRUE
#!1011,Y_01,+O,!0000,FALSE,TRUE
#!1028,REJ_19,+X,!0000,FALSE,TRUE
#!1029,Y_10,+X,!0000,FALSE,TRUE
#!102A,Y_02,+X,!0000,FALSE,TRUE
#!102B,Y_11,+X,!0000,FALSE,TRUE
#!102C,Y_03,+X,!0000,FALSE,TRUE
#!102D,Y_12,+X,!0000,FALSE,TRUE
#!102E,RUN,+X,!0000,FALSE,TRUE
#!102F,Y_04,+X,!0000,FALSE,TRUE
#!1030,Y_13,+X,!0000,FALSE,TRUE
#!1031,Y_05,+X,!0000,FALSE,TRUE
#!1032,Y_14,+X,!0000,FALSE,TRUE
#!1033,Y_06,+X,!0000,FALSE,TRUE
#!1034,Y_15,+X,!0000,FALSE,TRUE
#!1035,Y_07,+X,!0000,FALSE,TRUE
#!1036,Y_16,+X,!0000,FALSE,TRUE
#!1037,Y_08,+X,!0000,FALSE,TRUE
#!1038,Y_09,+X,!0000,FALSE,TRUE
#!1039,SAVE,+X,!0000,FALSE,TRUE
#!103A,TIME_SET,+X,!0000,FALSE,TRUE
#!103B,MODE_01,+X,!0000,FALSE,TRUE
#!103C,MODE_10,+X,!0000,FALSE,TRUE
#!103D,MODE_02,+X,!0000,FALSE,TRUE
#!103E,SW001,+X,!0000,FALSE,TRUE
#!103F,MODE_11,+X,!0000,FALSE,TRUE
#!1040,MODE_03,+X,!0000,FALSE,TRUE
#!1041,MODE_20,+X,!0000,FALSE,TRUE
#!1042,MODE_12,+X,!0000,FALSE,TRUE
#!1043,MODE_04,+X,!0000,FALSE,TRUE
#!1044,MODE_21,+X,!0000,FALSE,TRUE
#!1045,SW002,+X,!0000,FALSE,TRUE
#!1046,MODE_13,+X,!0000,FALSE,TRUE
#!1047,MODE_05,+X,!0000,FALSE,TRUE
#!1048,MODE_14,+X,!0000,FALSE,TRUE
#!1049,MODE_06,+X,!0000,FALSE,TRUE
#!104A,MODE_15,+X,!0000,FALSE,TRUE
#!104B,SW003,+X,!0000,FALSE,TRUE
#!104C,MODE_07,+X,!0000,FALSE,TRUE
#!104D,MODE_16,+X,!0000,FALSE,TRUE
#!104E,MODE_08,+X,!0000,FALSE,TRUE
#!104F,MODE_09,+X,!0000,FALSE,TRUE
#!1050,SW004,+X,!0000,FALSE,TRUE
#!1051,MODE_18,+X,!0000,FALSE,TRUE
#!1052,MODE_19,+X,!0000,FALSE,TRUE
#!1053,M_C_01,+X,!0000,FALSE,TRUE
#!1054,M_C_10,+X,!0000,FALSE,TRUE
#!1055,M_C_02,+X,!0000,FALSE,TRUE
#!1056,M_C_11,+X,!0000,FALSE,TRUE
#!1057,M_C_20,+X,!0000,FALSE,TRUE
#!1058,M_C_03,+X,!0000,FALSE,TRUE
#!1059,M_C_12,+X,!0000,FALSE,TRUE
#!105A,M_C_21,+X,!0000,FALSE,TRUE
#!105B,M_C_04,+X,!0000,FALSE,TRUE
#!105C,M_C_13,+X,!0000,FALSE,TRUE
#!105D,M_C_22,+X,!0000,FALSE,TRUE
#!105E,M_C_05,+X,!0000,FALSE,TRUE
#!105F,M_C_14,+X,!0000,FALSE,TRUE
#!1060,M_C_23,+X,!0000,FALSE,TRUE
#!1061,M_C_06,+X,!0000,FALSE,TRUE
#!1062,M_C_15,+X,!0000,FALSE,TRUE
#!1063,M_C_24,+X,!0000,FALSE,TRUE
#!1064,M_C_07,+X,!0000,FALSE,TRUE
#!1065,M_C_16,+X,!0000,FALSE,TRUE
#!1066,M_C_08,+X,!0000,FALSE,TRUE
#!1067,M_C_09,+X,!0000,FALSE,TRUE
#!1068,M_C_18,+X,!0000,FALSE,TRUE
#!1069,M_C_19,+X,!0000,FALSE,TRUE
#!106A,AM_01,+X,!0000,FALSE,TRUE
#!106B,AM_10,+X,!0000,FALSE,TRUE
#!106C,AM_02,+X,!0000,FALSE,TRUE
#!106D,AM_11,+X,!0000,FALSE,TRUE
#!106E,AM_03,+X,!0000,FALSE,TRUE
#!106F,AM_20,+X,!0000,FALSE,TRUE
#!1070,AM_12,+X,!0000,FALSE,TRUE
#!1071,AM_04,+X,!0000,FALSE,TRUE
#!1072,AM_21,+X,!0000,FALSE,TRUE
#!1073,AM_13,+X,!0000,FALSE,TRUE
#!1074,AM_05,+X,!0000,FALSE,TRUE
#!1075,AM_22,+X,!0000,FALSE,TRUE
#!1076,AM_14,+X,!0000,FALSE,TRUE
#!1077,AM_06,+X,!0000,FALSE,TRUE
#!1078,AM_23,+X,!0000,FALSE,TRUE
#!1079,AM_15,+X,!0000,FALSE,TRUE
#!107A,AM_07,+X,!0000,FALSE,TRUE
#!107B,AM_24,+X,!0000,FALSE,TRUE
#!107C,AM_16,+X,!0000,FALSE,TRUE
#!107D,AM_08,+X,!0000,FALSE,TRUE
#!107E,AM_17,+X,!0000,FALSE,TRUE
#!107F,AM_09,+X,!0000,FALSE,TRUE
#!1080,AM_18,+X,!0000,FALSE,TRUE
#!1081,AM_19,+X,!0000,FALSE,TRUE
#!1082,INIT,+X,!5001,FALSE,TRUE
#!1083,AMV_01,+X,!0000,FALSE,TRUE
#!1084,REJ_01,+X,!0000,FALSE,TRUE
#!1085,REJ_07,+X,!0000,FALSE,TRUE
#!1086,RES,+X,!5001,FALSE,TRUE
#!1087,R_UP,+X,!0000,FALSE,TRUE
#!1088,R_DW,+X,!0000,FALSE,TRUE
#!1089,REJ_14,+X,!0000,FALSE,TRUE
#!108A,D_1_0,+X,!0000,FALSE,TRUE
#!108B,O_UP,+X,!0000,FALSE,TRUE
#!108C,O_DW,+X,!0000,FALSE,TRUE
#!108D,C_UP,+X,!0000,FALSE,TRUE
#!108E,C_DW,+X,!0000,FALSE,TRUE
#!108F,LINK,+X,!5002,FALSE,TRUE
#!1090,FIRST,+X,!5009,FALSE,TRUE
#!1091,AUTO_O,+X,!500A,FALSE,TRUE
#!1092,REX_08,+X,!5005,FALSE,TRUE
#!1093,REX_07,+X,!5005,FALSE,TRUE
#!1094,REX_05,+X,!5005,FALSE,TRUE
#!1095,SL,+X,!5007,FALSE,TRUE
#!1096,AUTO_,+X,!5008,FALSE,TRUE
#!1097,MODE_,+X,!5008,FALSE,TRUE
#!1098,FIRSTRUN,+X,!5008,FALSE,TRUE
#!1099,REJ,+X,!5008,FALSE,TRUE
#!109A,REJ_,+X,!5008,FALSE,TRUE
#!109B,MODE_,+X,!500A,FALSE,TRUE
#!109C,AUTO_,+X,!500A,FALSE,TRUE
#!109D,CH,+X,!500B,FALSE,TRUE
#!109E,RUN_,+X,!500C,FALSE,TRUE
@ANALOGS,452
#!2042,XMIN_01,+X,!0000,F,
#!2043,TD_05,+X,!0000,F,
#!2044,TD_22,+X,!0000,F,
#!2045,K2_02,+X,!0000,F,
#!2046,XMIN_10,+X,!0000,F,
#!2047,XMIN_02,+X,!0000,F,
#!2048,V_01,+X,!0000,F,
#!2049,TD_14,+X,!0000,F,
#!204A,XMIN_11,+X,!0000,F,
#!204B,V_10,+X,!0000,F,
#!204C,XMAX_01,+X,!0000,F,
#!204D,XMIN_03,+X,!0000,F,
#!204E,XMIN_20,+X,!0000,F,
#!204F,TD_06,+X,!0000,F,
#!2050,TD_23,+X,!0000,F,
#!2051,XMAX_10,+X,!0000,F,
#!2052,XMIN_12,+X,!0000,F,
#!2053,K2_03,+X,!0000,F,
#!2054,XMAX_02,+X,!0000,F,
#!2055,XMIN_04,+X,!0000,F,
#!2056,XMIN_21,+X,!0000,F,
#!2057,MM_S,+X,!0000,I,
#!2058,XMAX_11,+X,!0000,F,
#!2059,XMIN_13,+X,!0000,F,
#!205A,TD_15,+X,!0000,F,
#!205B,K101,+X,!0000,F,
#!205C,XMAX_03,+X,!0000,F,
#!205D,XMIN_05,+X,!0000,F,
#!205E,XMIN_22,+X,!0000,F,
#!205F,XMAX_20,+X,!0000,F,
#!2060,XMAX_12,+X,!0000,F,
#!2061,XMIN_14,+X,!0000,F,
#!2062,TD_07,+X,!0000,F,
#!2063,V_02,+X,!0000,F,
#!2064,TD_24,+X,!0000,F,
#!2065,XMAX_04,+X,!0000,F,
#!2066,XMIN_06,+X,!0000,F,
#!2067,XMIN_23,+X,!0000,F,
#!2068,XMAX_21,+X,!0000,F,
#!2069,K2_04,+X,!0000,F,
#!206A,V_11,+X,!0000,F,
#!206B,XMAX_13,+X,!0000,F,
#!206C,XMIN_15,+X,!0000,F,
#!206D,XMAX_05,+X,!0000,F,
#!206E,XMIN_07,+X,!0000,F,
#!206F,TD_16,+X,!0000,F,
#!2070,V_20,+X,!0000,F,
#!2071,XMAX_22,+X,!0000,F,
#!2072,XMIN_24,+X,!0000,F,
#!2073,XMAX_14,+X,!0000,F,
#!2074,XMIN_16,+X,!0000,F,
#!2075,XMAX_06,+X,!0000,F,
#!2076,XMIN_08,+X,!0000,F,
#!2077,TD_08,+X,!0000,F,
#!2078,XMAX_23,+X,!0000,F,
#!2079,XMIN_17,+X,!0000,F,
#!207A,K2_05,+X,!0000,F,
#!207B,XMAX_15,+X,!0000,F,
#!207C,XMAX_07,+X,!0000,F,
#!207D,XMIN_09,+X,!0000,F,
#!207E,XMAX_24,+X,!0000,F,
#!207F,V_03,+X,!0000,F,
#!2080,XMIN_18,+X,!0000,F,
#!2081,XMAX_16,+X,!0000,F,
#!2082,K2_14,+X,!0000,F,
#!2083,XMAX_08,+X,!0000,F,
#!2084,V_12,+X,!0000,F,
#!2085,TD_09,+X,!0000,F,
#!2086,XMIN_19,+X,!0000,F,
#!2087,XMAX_17,+X,!0000,F,
#!2088,V_21,+X,!0000,F,
#!2089,K2_06,+X,!0000,F,
#!208A,XMAX_09,+X,!0000,F,
#!208B,V_30,+X,!0000,F,
#!208C,XMAX_18,+X,!0000,F,
#!208D,TD_18,+X,!0000,F,
#!208E,K3_04,+X,!0000,F,
#!208F,XMAX_19,+X,!0000,F,
#!2090,V_04,+X,!0000,F,
#!2091,V_01I,+X,!0000,I,
#!2092,K2_07,+X,!0000,F,
#!2093,V_13,+X,!0000,F,
#!2094,TD_19,+X,!0000,F,
#!2095,V_22,+X,!0000,F,
#!2096,V_31,+X,!0000,F,
#!2097,K3_14,+X,!0000,F,
#!2098,V_40,+X,!0000,F,
#!2099,V_05,+X,!0000,F,
#!209A,V_02I,+X,!0000,I,
#!209B,V_14,+X,!0000,F,
#!209C,V_23,+X,!0000,F,
#!209D,V_32,+X,!0000,F,
#!209E,V_41,+X,!0000,F,
#!209F,P0_01,+X,!0000,F,
#!20A0,TI_01,+X,!0000,F,
#!20A1,V_50,+X,!0000,F,
#!20A2,V_06,+X,!0000,F,
#!20A3,V_03I,+X,!0000,I,
#!20A4,MON_S,+X,!0000,I,
#!20A5,P0_10,+X,!0000,F,
#!20A6,V_15,+X,!0000,F,
#!20A7,TI_10,+X,!0000,F,
#!20A8,K2_19,+X,!0000,F,
#!20A9,V_24,+X,!0000,F,
#!20AA,P0_02,+X,!0000,F,
#!20AB,TI_02,+X,!0000,F,
#!20AC,V_33,+X,!0000,F,
#!20AD,V_42,+X,!0000,F,
#!20AE,P0_11,+X,!0000,F,
#!20AF,TI_11,+X,!0000,F,
#!20B0,V_51,+X,!0000,F,
#!20B1,V_07,+X,!0000,F,
#!20B2,V_04I,+X,!0000,I,
#!20B3,P0_03,+X,!0000,F,
#!20B4,P0_20,+X,!0000,F,
#!20B5,TI_03,+X,!0000,F,
#!20B6,V_16,+X,!0000,F,
#!20B7,TI_20,+X,!0000,F,
#!20B8,V_25,+X,!0000,F,
#!20B9,P0_12,+X,!0000,F,
#!20BA,TI_12,+X,!0000,F,
#!20BB,V_34,+X,!0000,F,
#!20BC,P0_04,+X,!0000,F,
#!20BD,V_43,+X,!0000,F,
#!20BE,V_40I,+X,!0000,I,
#!20BF,K107,+X,!0000,F,
#!20C0,P0_21,+X,!0000,F,
#!20C1,TI_04,+X,!0000,F,
#!20C2,K3_19,+X,!0000,F,
#!20C3,TI_21,+X,!0000,F,
#!20C4,V_52,+X,!0000,F,
#!20C5,V_08,+X,!0000,F,
#!20C6,V_05I,+X,!0000,I,
#!20C7,P0_13,+X,!0000,F,
#!20C8,TI_13,+X,!0000,F,
#!20C9,V_17,+X,!0000,F,
#!20CA,P0_05,+X,!0000,F,
#!20CB,V_26,+X,!0000,F,
#!20CC,TI_05,+X,!0000,F,
#!20CD,TI_22,+X,!0000,F,
#!20CE,V_35,+X,!0000,F,
#!20CF,P0_14,+X,!0000,F,
#!20D0,V_44,+X,!0000,F,
#!20D1,TI_14,+X,!0000,F,
#!20D2,V_53,+X,!0000,F,
#!20D3,P0_06,+X,!0000,F,
#!20D4,V_09,+X,!0000,F,
#!20D5,V_06I,+X,!0000,I,
#!20D6,TI_06,+X,!0000,F,
#!20D7,TI_23,+X,!0000,F,
#!20D8,V_18,+X,!0000,F,
#!20D9,V_15I,+X,!0000,I,
#!20DA,P0_15,+X,!0000,F,
#!20DB,V_27,+X,!0000,F,
#!20DC,TI_15,+X,!0000,F,
#!20DD,V_36,+X,!0000,F,
#!20DE,P0_07,+X,!0000,F,
#!20DF,TI_07,+X,!0000,F,
#!20E0,V_45,+X,!0000,F,
#!20E1,TI_24,+X,!0000,F,
#!20E2,P0_16,+X,!0000,F,
#!20E3,V_07I,+X,!0000,I,
#!20E4,TI_16,+X,!0000,F,
#!20E5,V_19,+X,!0000,F,
#!20E6,P0_08,+X,!0000,F,
#!20E7,TI_08,+X,!0000,F,
#!20E8,V_28,+X,!0000,F,
#!20E9,V_37,+X,!0000,F,
#!20EA,V_46,+X,!0000,F,
#!20EB,P0_09,+X,!0000,F,
#!20EC,TI_09,+X,!0000,F,
#!20ED,KPR_01,+X,!0000,F,
#!20EE,P0_18,+X,!0000,F,
#!20EF,KPR_10,+X,!0000,F,
#!20F0,TI_18,+X,!0000,F,
#!20F1,V_29,+X,!0000,F,
#!20F2,KPR_02,+X,!0000,F,
#!20F3,V_38,+X,!0000,F,
#!20F4,KPR_11,+X,!0000,F,
#!20F5,V_47,+X,!0000,F,
#!20F6,P0_19,+X,!0000,F,
#!20F7,KPR_20,+X,!0000,F,
#!20F8,TI_19,+X,!0000,F,
#!20F9,KPR_03,+X,!0000,F,
#!20FA,KPR_12,+X,!0000,F,
#!20FB,KPR_21,+X,!0000,F,
#!20FC,KPR_04,+X,!0000,F,
#!20FD,V_39,+X,!0000,F,
#!20FE,KPR_13,+X,!0000,F,
#!20FF,V_48,+X,!0000,F,
#!2100,KPR_22,+X,!0000,F,
#!2101,KPR_05,+X,!0000,F,
#!2102,KPR_14,+X,!0000,F,
#!2103,KPR_23,+X,!0000,F,
#!2104,KPR_06,+X,!0000,F,
#!2105,KPR_15,+X,!0000,F,
#!2106,C_01,+X,!0000,F,
#!2107,KPR_24,+X,!0000,F,
#!2108,V_49,+X,!0000,F,
#!2109,KPR_07,+X,!0000,F,
#!210A,C_10,+X,!0000,F,
#!210B,KPR_16,+X,!0000,F,
#!210C,KPR_08,+X,!0000,F,
#!210D,F_1,+X,!0000,F,
#!210E,KV_41,+X,!0000,F,
#!210F,KPR_17,+X,!0000,F,
#!2110,C_02,+X,!0000,F,
#!2111,KPR_09,+X,!0000,F,
#!2112,C_11,+X,!0000,F,
#!2113,KPR_18,+X,!0000,F,
#!2114,SP_01,+X,!0000,F,
#!2115,C_20,+X,!0000,F,
#!2116,KPR_19,+X,!0000,F,
#!2117,SP_10,+X,!0000,F,
#!2118,F_2,+X,!0000,F,
#!2119,SP_02,+X,!0000,F,
#!211A,C_03,+X,!0000,F,
#!211B,C_12,+X,!0000,F,
#!211C,SP_11,+X,!0000,F,
#!211D,C_21,+X,!0000,F,
#!211E,SP_03,+X,!0000,F,
#!211F,SP_20,+X,!0000,F,
#!2120,SP_12,+X,!0000,F,
#!2121,C_04,+X,!0000,F,
#!2122,F_3,+X,!0000,F,
#!2123,C_13,+X,!0000,F,
#!2124,SP_04,+X,!0000,F,
#!2125,SP_21,+X,!0000,F,
#!2126,C_22,+X,!0000,F,
#!2127,SP_13,+X,!0000,F,
#!2128,SP_05,+X,!0000,F,
#!2129,SP_22,+X,!0000,F,
#!212A,C_05,+X,!0000,F,
#!212B,DD_S,+X,!0000,I,
#!212C,C_14,+X,!0000,F,
#!212D,F_4,+X,!0000,F,
#!212E,SP_14,+X,!0000,F,
#!212F,C_23,+X,!0000,F,
#!2130,SP_06,+X,!0000,F,
#!2131,SP_23,+X,!0000,F,
#!2132,SP_15,+X,!0000,F,
#!2133,C_06,+X,!0000,F,
#!2134,SP_07,+X,!0000,F,
#!2135,C_15,+X,!0000,F,
#!2136,SP_24,+X,!0000,F,
#!2137,C_24,+X,!0000,F,
#!2138,SP_16,+X,!0000,F,
#!2139,SP_08,+X,!0000,F,
#!213A,C_07,+X,!0000,F,
#!213B,C_16,+X,!0000,F,
#!213C,SP_09,+X,!0000,F,
#!213D,SP_18,+X,!0000,F,
#!213E,C_08,+X,!0000,F,
#!213F,SP_19,+X,!0000,F,
#!2140,SS_S,+X,!0000,I,
#!2141,C_09,+X,!0000,F,
#!2142,C_18,+X,!0000,F,
#!2143,C_19,+X,!0000,F,
#!2144,SPR_19,+X,!0000,F,
#!2145,SPV_01,+X,!0000,F,
#!2146,SPV_02,+X,!0000,F,
#!2147,F_V_01,+X,!0000,I,
#!2148,F_V_10,+X,!0000,I,
#!2149,HH_S,+X,!0000,I,
#!214A,F_V_02,+X,!0000,I,
#!214B,F_V_11,+X,!0000,I,
#!214C,F_V_20,+X,!0000,I,
#!214D,F_V_03,+X,!0000,I,
#!214E,F_V_12,+X,!0000,I,
#!214F,F_V_21,+X,!0000,I,
#!2150,F_V_04,+X,!0000,I,
#!2151,F_V_30,+X,!0000,I,
#!2152,F_V_13,+X,!0000,I,
#!2153,F_V_22,+X,!0000,I,
#!2154,F_V_05,+X,!0000,I,
#!2155,F_V_31,+X,!0000,I,
#!2156,F_V_14,+X,!0000,I,
#!2157,F_V_23,+X,!0000,I,
#!2158,SP2_01,+X,!0000,F,
#!2159,F_V_06,+X,!0000,I,
#!215A,F_V_32,+X,!0000,I,
#!215B,KE01,+X,!0000,F,
#!215C,F_V_15,+X,!0000,I,
#!215D,F_V_24,+X,!0000,I,
#!215E,F_V_07,+X,!0000,I,
#!215F,F_V_50,+X,!0000,I,
#!2160,F_V_33,+X,!0000,I,
#!2161,F_V_16,+X,!0000,I,
#!2162,F_V_42,+X,!0000,I,
#!2163,Q_1,+X,!0000,F,
#!2164,F_V_25,+X,!0000,I,
#!2165,F_V_51,+X,!0000,I,
#!2166,F_V_08,+X,!0000,I,
#!2167,F_V_34,+X,!0000,I,
#!2168,F_V_17,+X,!0000,I,
#!2169,KE02,+X,!0000,F,
#!216A,F_V_43,+X,!0000,I,
#!216B,F_V_26,+X,!0000,I,
#!216C,SP2_04,+X,!0000,F,
#!216D,F_V_09,+X,!0000,I,
#!216E,F_V_35,+X,!0000,I,
#!216F,F_V_18,+X,!0000,I,
#!2170,F_V_44,+X,!0000,I,
#!2171,F_V_27,+X,!0000,I,
#!2172,F_V_36,+X,!0000,I,
#!2173,Q_2,+X,!0000,F,
#!2174,SP2_14,+X,!0000,F,
#!2175,F_V_19,+X,!0000,I,
#!2176,F_V_45,+X,!0000,I,
#!2177,KE03,+X,!0000,F,
#!2178,F_V_28,+X,!0000,I,
#!2179,F_V_37,+X,!0000,I,
#!217A,F_V_29,+X,!0000,I,
#!217B,SP2_07,+X,!0000,F,
#!217C,F_V_38,+X,!0000,I,
#!217D,Q_3,+X,!0000,F,
#!217E,KE04,+X,!0000,F,
#!217F,F_V_39,+X,!0000,I,
#!2180,SP3_07,+X,!0000,F,
#!2181,KE05,+X,!0000,F,
#!2182,Q_4,+X,!0000,F,
#!2183,DSPV_01,+X,!0000,F,
#!2184,DSPV_02,+X,!0000,F,
#!2185,KE06,+X,!0000,F,
#!2186,KE07,+X,!0000,F,
#!2187,YY_S,+X,!0000,I,
#!2188,SCA0001,+X,!0000,I,
#!2189,TD_01,+X,!0000,F,
#!218A,SCA0002,+X,!0000,I,
#!218B,TD_10,+X,!0000,F,
#!218C,SCA0003,+X,!0000,I,
#!218D,TD_02,+X,!0000,F,
#!218E,SCA0004,+X,!0000,I,
#!218F,TD_11,+X,!0000,F,
#!2190,KF0001,+X,!0000,F,
#!2191,TD_03,+X,!0000,F,
#!2192,TD_20,+X,!0000,F,
#!2193,TD_12,+X,!0000,F,
#!2194,TD_04,+X,!0000,F,
#!2195,TD_21,+X,!0000,F,
#!2196,K2_01,+X,!0000,F,
#!2197,TD_13,+X,!0000,F,
#!2198,TPV_02,+X,!0000,F,
#!2199,TPV_01,+X,!0000,F,
#!219A,TIME_S,+X,!0000,I,
#!219B,XT_05,+X,!0000,F,
#!219C,XT_04,+X,!0000,F,
#!219D,XT_03,+X,!0000,F,
#!219E,XT_02,+X,!0000,F,
#!219F,XT_01,+X,!0000,F,
#!21A0,TSP_06,+X,!0000,F,
#!21A1,TSP_05,+X,!0000,F,
#!21A2,TSP_04,+X,!0000,F,
#!21A3,TSP_03,+X,!0000,F,
#!21A4,TSP_02,+X,!0000,F,
#!21A5,TSP_01,+X,!0000,F,
#!21A6,TPV_07,+X,!0000,F,
#!21A7,TPV_06,+X,!0000,F,
#!21A8,TPV_05,+X,!0000,F,
#!21A9,TPV_04,+X,!0000,F,
#!21AA,TPV_03,+X,!0000,F,
#!21AB,XT_21,+X,!0000,F,
#!21AC,XT_20,+X,!0000,F,
#!21AD,XT_19,+X,!0000,F,
#!21AE,XT_18,+X,!0000,F,
#!21AF,XT_17,+X,!0000,F,
#!21B0,XT_16,+X,!0000,F,
#!21B1,XT_15,+X,!0000,F,
#!21B2,XT_14,+X,!0000,F,
#!21B3,XT_13,+X,!0000,F,
#!21B4,XT_12,+X,!0000,F,
#!21B5,XT_11,+X,!0000,F,
#!21B6,XT_10,+X,!0000,F,
#!21B7,XT_09,+X,!0000,F,
#!21B8,XT_08,+X,!0000,F,
#!21B9,XT_07,+X,!0000,F,
#!21BA,XT_06,+X,!0000,F,
#!21BB,XT_24,+X,!0000,F,
#!21BC,XT_23,+X,!0000,F,
#!21BD,XT_22,+X,!0000,F,
#!21BE,II,+X,!5001,I,
#!21BF,ADR,+X,!5001,I,
#!21C0,F,+X,!500C,F,
#!21C1,P0,+X,!500C,F,
#!21C2,X0,+X,!500C,F,
#!21C3,STATE_,+X,!500C,F,
#!21C4,C2,+X,!500B,F,
#!21C5,C1,+X,!500B,F,
#!21C6,Q2,+X,!500B,F,
#!21C7,Q1,+X,!500B,F,
#!21C8,LV_44,+X,!5002,F,
#!21C9,LV_43,+X,!5002,F,
#!21CA,LV_42,+X,!5002,F,
#!21CB,K_,+X,!500C,F,
#!21CC,COVARIANCE,+X,!500C,F,
#!21CD,STATE,+X,!500C,F,
#!21CE,RR,+X,!500C,F,
#!21CF,H,+X,!500C,F,
#!21D0,Q,+X,!500C,F,
#!21D1,LV_45,+X,!5002,F,
#!21D2,K3,+X,!5003,F,
#!21D3,K2,+X,!5003,F,
#!21D4,K1,+X,!5003,F,
#!21D5,KS,+X,!5003,F,
#!21D6,LOCOUT,+X,!5009,F,
#!21D7,DELTA,+X,!5009,F,
#!21D8,OUT_,+X,!5009,F,
#!21D9,KP_O,+X,!500A,F,
#!21DA,X0_O,+X,!500A,F,
#!21DB,SP_O,+X,!500A,F,
#!21DC,PV_O,+X,!500A,F,
#!21DD,K3_19S,+X,!5004,F,
#!21DE,Q_1_4,+X,!5004,I,
#!21DF,Q_1_3,+X,!5004,I,
#!21E0,Q_1_2,+X,!5004,I,
#!21E1,Q_1_1,+X,!5004,I,
#!21E2,Q_2_1,+X,!5004,I,
#!21E3,DEXPO,+X,!5006,F,
#!21E4,EXP_,+X,!5006,F,
#!21E5,SP_,+X,!5006,F,
#!21E6,PV_,+X,!5006,F,
#!21E7,D_,+X,!5006,F,
#!21E8,MUX2,+X,!5007,F,
#!21E9,IN2,+X,!5007,F,
#!21EA,IN1,+X,!5007,F,
#!21EB,XMAX_,+X,!5008,F,
#!21EC,XMIN_,+X,!5008,F,
#!21ED,P0_,+X,!5008,F,
#!21EE,TI_,+X,!5008,F,
#!21EF,KP_,+X,!5008,F,
#!21F0,X0_,+X,!5008,F,
#!21F1,SP_,+X,!5008,F,
#!21F2,PV_,+X,!5008,F,
#!21F3,KE_,+X,!5008,F,
#!21F4,SUM_,+X,!5008,F,
#!21F5,XT_,+X,!5008,F,
#!21F6,SUM0_,+X,!5008,F,
#!21F7,XOUT_,+X,!5008,F,
#!21F8,KSP_,+X,!5008,F,
#!21F9,KPV_,+X,!5008,F,
#!21FA,MAX_,+X,!5009,F,
#!21FB,MIN_,+X,!5009,F,
#!21FC,IN_,+X,!5009,F,
#!21FD,KP_,+X,!500A,F,
#!21FE,X0_,+X,!500A,F,
#!21FF,SP_,+X,!500A,F,
#!2200,PV_,+X,!500A,F,
#!2201,P0_,+X,!500A,F,
#!2202,X2,+X,!500B,F,
#!2203,X1,+X,!500B,F,
#!2204,XIN_,+X,!500C,F,
#!2205,F_,+X,!500C,F,
@TIMERS,5
#!3001,TSL_19,+X,!0000
#!3002,TSL_14,+X,!0000
#!3003,V_UP,+X,!0000
#!3004,V_DW,+X,!0000
#!3005,TUP_,+X,!5009
@MESSAGES,0
@USP,5
#!B001,WDT_EN
#!B002,RETAIN_X
#!B003,V0_10_TO
#!B004,A4_20_TO
#!B005,TO_A4_20
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@FBINSTANCES,0
@END_SYMBOLS
|
ee4fbef5c701803755c615eb86a80fce4b174c89 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1332/CH9/EX9.2/9_2.sce | 3d0d4911acb982dd7eba720bfb18ea339749f5c8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,432 | sce | 9_2.sce | //Example 9.2
//Curve Fitting
//Page no. 293
clc;clear;close;
x(1)=0.25;
for i=2:6
x(1,i)=x(1,i-1)+0.25;
end //x values
y(1,1)=3.1;y(1,2)=1.7;y(1,3)=1;y(1,4)=0.68;y(1,5)=0.42;y(1,6)=0.26; //y values
//construction of normal equations
for i=1:6
Y(1,i)=log10(y(1,i));
end
Ex=0;
for i=1:6
Ex=Ex+x(1,i);
end
EY=0;
for i=1:6
EY=EY+Y(1,i);
end
Ex2=0;
for i=1:6
Ex2=Ex2+x(1,i)^2;
end
ExY=0;
for i=1:6
ExY=ExY+x(1,i)*Y(1,i);
end
printf('E x(k)\t\t y(k)\t\tE Y(k)\t\tE x2(k)\t\tE x(k)*Y(k)')
printf('\n----------------------------------------------------------------------------')
for i=1:6
printf('\n%f\t%f\t%f\t%f\t%f',x(1,i),y(1,i),Y(1,i),x(1,i)^2,x(1,i)*Y(1,i))
end
printf('\n----------------------------------------------------------------------------')
printf('\n%f\t%f\t%f\t%f\t%f',Ex,0,EY,Ex2,ExY)
printf('\n----------------------------------------------------------------------------\n\n')
A=[6,Ex;Ex,Ex2]; //system of normal equations
B=[EY;ExY];
X=inv(A)*B;
a=exp(X(1,1));
b=-1*X(2,1);
for i=1:2
for j=1:2
printf('%f ',A(i,j))
end
if(i==1)
printf(' *')
end
printf('\ta%i',i);
if(i==1)
printf(' =')
end
printf('\t%f\n',B(i,1))
end
printf('\n\na1=%f\na2=%f\n\na=%f\nb=%f\n\n',X(1,1),X(2,1),a,b)
printf('The fitted curve is:\n %fx\ny=%f e',b,a) |
6b8a88fa6fc328cf0d4a2247f73dc642d8622737 | 2707da68619819d8105f9ae472647dc578c75730 | /FindUnknownLoopCurrent.sci | 3885622e544157f1212c533c12c737643d61d7e8 | [
"Apache-2.0"
] | permissive | KrayzeX/ToE | 1aa62db747841e960fb47fbd59e38c6afa3a0723 | ad81dd433c0d3b23ebb00f0e65095ab6c1bed34e | refs/heads/master | 2020-05-26T09:19:33.970171 | 2017-06-02T08:50:16 | 2017-06-02T08:50:16 | 82,474,743 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,578 | sci | FindUnknownLoopCurrent.sci | //Марчук Л.Б. 5307 подгруппа 3
//Данный модуль принимает в качестве входных параметров
//матрицу сопротивлений контуров Resistances
//и матрицу-столбец сумм напряжений источников напряжений контуров;
//возвращает матрицу-столбец контурных токов.
function [result] = FindUnknownLoopCurrent(Resistances, EMF)
//Проверка корректности входных данных
[rows columns] = size(Resistances);
if rows ~= columns then
error('Ошибка! Матрица сопротивлений контуров должна быть квадратной.');
end;
[rows columns] = size(EMF);
/*if columns ~= 1 then
error('Ошибка! Второй параметр должен представлять собой матрицу-столбец.');
end;*/
n = size(Resistances);
if n ~= rows then
error('Ошибка! Размер матрицы сопротивлений должен совпадать с числом строк матрицы-столбца сумм напряжений источников напряжений контуров.');
end;
//Обращаем матрицу сопротивлений
Resistances = inv(Resistances);
//Находим контурные токи
result = Resistances * EMF;
endfunction
|
4c2549f86bec8d99860949a12094180f8bb00efc | 449d555969bfd7befe906877abab098c6e63a0e8 | /374/CH9/EX9.4.a/94a.sci | 67b4728df8f52d6480cbe02e5327cc5d1f4a3f72 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 417 | sci | 94a.sci | //chapter 9 example 4a//
clc
clear
//angular velocity=A,llength at which rotating mirror from the photo detector=L,shadow pulse of width=We,shadow velocity=V,outer diametetr=do//
L=0.1;//in mts//
A=4;//in rad sec-1//
V=L*A;//in mts/sec//
printf("\n shadow velocity=%f m/sec\n",V)
We=250;//in micro seconds//
do=We*V;//outer diameter of the fibre//
printf("\n outer diamter of the fibre=%f micro meter\n",do) |
357b66a070fdc524a23fb23790601b347e32b1b2 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/1.1/Unix/scilab-1.1/macros/robust/h_norm.sci | b336197555c087d2c4bfc7b557032c60715686f8 | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-unknown-license-reference"
] | 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 | 2,779 | sci | h_norm.sci | //[hinfnorm,frequency]=H_norm(Sl,rerr)
// produces the infinitynorm of a state-space system
// (the maximum over all frequencies of the maximum singular value).
//%Syntaxe et description des parametres
// [hinfnorm [,frequency]]=H_norm(Sl,rerr)
// [hinfnorm [,frequency]]=H_norm(Sl)
//
// sl : the state space system (see syslin)
// Rerr : max. relative error, default value 1e-8
//
// hinfnorm : the infinitynorm of sl
// frequency : frequency at which hinfnorm is achieved
// see also: linfn, linf
//!
// Version 3.2, 09-27-1990
// N.A. Bruinsma T.U.Delft/Philips Research Eindhoven, see also
// Systems & Control Letters, vol. 14 pp. 287-293.
[lhs,rhs]=argn(0);
eps=1.d-8;
flag='ss';if Sl(1)='r' then Sl=tf2ss(Sl);end
[A,B,C,D]=sl(2:5);
eiga=spec(a);
if maxi(real(eiga)) >= -1e-12 then ...
write(%io(2),'Warning : system is not stable ! '),end
if rhs=1 then rerr=1e-8; end;
[no,ns] = size(c); [ns,ni] = size(b);
if mini(ni,no) = 1 then isiso = 2; else isiso = 1; end;
[p,a] = hess(a); [u,d,v] = svd(d); b = p' * b * v; c = u' * c * p;
dtd = diag(d'*d); ddt = diag(d*d'); dtc = d' * c;
aj = sqrt(-1)*eye(ns); R1 = ones(ni,1); S1 = ones(no,1);
l = [];
// compute starting value
q = ((imag(eiga) + 0.01 * ones(eiga)) ./ real(eiga)) ./ abs(eiga);
[q,i] = maxi(q); w = abs(eiga(i));
svw = norm( c * ((w*aj*eye-a)\b) + d );
sv0 = norm( -c * (a\b) + d );
svdd = norm(d);
[lb,i] = maxi([svdd sv0 svw]);l=lb;
w = [1.d30 0 w ]; M = w(i);
// to avoid numerical problems with Rinv and Sinv if lb = norm(d), lb must be
// enlarged to at least (1+1e-3)*lb;
if lb = svdd then lb=1.001*lb+eps;end;
for it = 1:15,
gam = (1 + 2 * rerr) * lb; gam2 = gam * gam;
Rinv = diag(R1./(dtd - gam2 * R1));
Sinv = diag(S1./(ddt - gam2 * S1));
H11 = a-b*Rinv*dtc;
evH = spec([H11 -gam*b*Rinv*b'; gam*c'*Sinv*c -H11']);
// idx1=ceil(abs(real(evh)),1.e-3);
// idx2=ceil(-imag(evh(idx1)),0);
// idx=idx1(idx2);
idx = find(abs(real(evH)) < 1e-8 & imag(evH) >= 0);
imev= imag(evH(idx));
[imev] = sort(imev);
q = maxi(size(imev));
if q <= 1 then
// q=1 can only happen in the first step if H-norm=maxsv(D) or H-norm=maxsv(0)
// due to inaccurate eigenvalue computation (so gam must be an upper bound).
ub = gam;
// pause;
else
M = 0.5 * (imev(1:q-1) + imev(2:q)); M = M(1:isiso:q-1);
sv=[];
for j = 1:maxi(size(M)),
sv = [sv maxi(svd(d + c*((M(j)*aj*eye - a)\b)))];
end;
lb = maxi(sv);l=[l;lb];
end;
end;
if M = 1.d30 then
lb=svdd;
write(%io(2),"Warning:norm cannot be computed rel. accuracy smaller than 1e-3")
write(%io(2),'Hinfnorm is probably exactly max sv(D)')
write(%io(2),'The system might be all-pass')
end;
if exists('ub')=0 then ub=lb;end
hinfnorm = 0.5 * (ub+lb); frequency = M;
//end;
|
601bf8a66103bcf1e4afef69e2dae4ced2784747 | e7055fdf94e8a24293cab7ccbeac12039d6fe512 | /macros/ftrans2.sci | 7fa2077319d370d45ecfd424ebe5b42480e77cd0 | [] | no_license | sidn77/FOSSEE-Image-Processing-Toolbox | 6c6b8b860f637362a73d28dcfe13e87d18af3e2c | 8dfbdbdfd38c73dc8a02d1a25678c4a6a724fe18 | refs/heads/master | 2020-12-02T16:26:06.431376 | 2017-11-08T17:54:03 | 2017-11-08T17:54:03 | 96,552,565 | 0 | 0 | null | 2017-07-07T15:37:18 | 2017-07-07T15:37:18 | null | UTF-8 | Scilab | false | false | 1,549 | sci | ftrans2.sci | // Copyright (C) 2015 - IIT Bombay - FOSSEE
//
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
// Author: Vinay
// Organization: FOSSEE, IIT Bombay
// Email: toolbox@scilab.in
function h = ftrans2(b, varargin)
// 2-D FIR filter using frequency transformation.
//
// Calling Sequence
// h = ftrans2(b, t);
//
// Parameters
// b: A bandpass filter
// t: Transformation matrix
//
// Description
// Produces the two-dimensional FIR filter h that corresponds to the one-dimensional FIR filter b
// using the transform t.
// (ftrans2 returns h as a computational molecule, which is the appropriate form to use with filter2.)
// b must be a one-dimensional, Type I (even symmetric, odd-length) filter such as can be returned by
// fir1, fir2, or firpm in the Signal Processing Toolbox software. The transform matrix t contains
// coefficients that define the frequency transformation to use. If t is m-by-n and b has length Q,
// then h is size ((m - 1) * (Q - 1) / 2 + 1)-by-((n - 1) * (Q - 1) / 2 + 1).
//
// Examples
// b = [1, 1, 1]
// h = ftrans2(b);
//
// Authors
// Vinay
[lhs, rhs] = argn(0)
_b = mattolist(b);
select rhs
case 1 then
out = raw_ftrans2(_b)
case 2 then
out = raw_ftrans2(_b, varargin(1))
end
channel = size(out)
for i = 1: channel
h(:,:,i) = out(i)
end
endfunction
|
8ddbdd79df970cec5d676d76d681b3980fa8993b | 127061b879bebda7ce03f6910c80d0702ad1a713 | /bin/PIL_atom_spec_conv.sci | 36d9b00fa3e1a1651d62c8d6892bad6db50d0b1c | [] | no_license | pipidog/PiLib-Scilab | 961df791bb59b9a16b3a32288f54316c6954f128 | 125ffa71b0752bfdcef922a0b898263e726db533 | refs/heads/master | 2021-01-18T20:30:43.364412 | 2017-08-17T00:58:50 | 2017-08-17T00:58:50 | 100,546,695 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 800 | sci | PIL_atom_spec_conv.sci | // **** Purpose ****
// This function is to convert the standard atomic species input to
// code readable row format
// crystal structure.
// **** Variables ****
// [atom_spec]: nx1, string
// <= the species of atoms. e.g: ['4*Bi','4*O','8*Sr']
// [atom_spec_row]: nx1, string
// => the specie of atom in row: ['Bi,'Bi','Bi','Bi',...]
// **** Version ****
// 09/24/2016: first built
// **** Comment ****
function atom_spec_row=PIL_atom_spec_conv(atom_spec)
atom_spec_tmp=[];
for n=1:length(length(atom_spec))
tmp=strsplit(atom_spec(n));
tmp_idx=find(tmp=='*');
tmp_rep=evstr(strcat(tmp(1:tmp_idx-1)));
tmp_at=strcat(tmp(tmp_idx+1:$));
atom_spec_tmp=cat(2,atom_spec_tmp,repmat(tmp_at,1,tmp_rep));
end
atom_spec_row=atom_spec_tmp;
endfunction
|
6176166de4de559fdc050621014e508808b20e80 | 505dbe6f806a6e0354b4f1f2326dc36f01fbe3e0 | /S3/Proba-Stats/56_4.sce | c8765b6be8ff2f3063df8627ee41fb8d39af874e | [] | no_license | MalikZouhiri/DropIUT | 5d1dea760cc1114114a2caf0bab1701e9adc815b | 1ae2cdd14f10182dbe6d0b2546e452851076591f | refs/heads/master | 2020-06-05T06:20:05.109658 | 2015-01-23T06:04:33 | 2015-01-23T06:04:33 | 29,574,014 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 80 | sce | 56_4.sce | // Vecteurs (1)
x=0:0.1:1 //commentaire
x(1)
x(2)
x+2
x(3)=-5
x
y=1:0.1:2
z=x+y |
303d100295e13553151dcf194b618bc8f1c01c5f | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/poly2rc/poly2rc8.sce | 239feae026e7757b37fa9f9697389447d661b187 | [] | 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 | 177 | sce | poly2rc8.sce | a=[0 0 0 0 0 0 0];
b=poly2rc(a);
disp(b);
//output
// !--error 10000
//Leading coefficient cannot be zero.
//at line 42 of function poly2rc called by :
//b=poly2rc(a);
|
bab52d52ff4aeb9b31f08e4ff794a4878f098dda | 449d555969bfd7befe906877abab098c6e63a0e8 | /3293/CH3/EX3.19/Ex3_19.sce | 1139b14c8122e62df7cd679d4e47a32b41afe152 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 565 | sce | Ex3_19.sce | //page 98
//Example 3.19
clc;
clear;
close;
function [tr] = trace_matrix(M,n)
for i = 1 : n
tr = tr + M(i,i);
end
endfunction
n = round(rand() * 10 + 2);
disp(n,'n = ');
A = round(rand(n,n) * 10);
disp(A,'A = ');
tr = 0;
disp('Trace of A:');
tr1 = trace_matrix(A,n);
disp(tr1,'tr(A) = ');
disp('--------------------------------');
c = round(rand() * 10 + 2);
disp(c,'c = ');
B = round(rand(n,n) * 10);
disp(B,'B = ');
disp('Trace of B:');
tr2 = trace_matrix(B,n);
disp(tr2,'tr(B) = ');
disp(c*tr1+tr2,'tr(cA + B) = ');
//end
|
f86eac9cd7d90c5d234c6ea4bf4dd1a7a9f6c9eb | 449d555969bfd7befe906877abab098c6e63a0e8 | /1271/CH15/EX15.8/example15_8.sce | 79950f1af341b497474582a00c16c9a53e10202e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 536 | sce | example15_8.sce | clc
// Given that
v = 5e3 // speed of electron in m/sec
a = 0.003 // percentage accuracy in measurement of speed
e = 1.6e-19 // charge on an electron in C
m = 9.1e-31 // mass of electron in kg
h = 6.62e-34 // Planck constant in J-sec
// Sample Problem 8 on page no. 15.27
printf("\n # PROBLEM 8 # \n")
printf("Standard formula used \n")
printf(" del_x*del_p = h/(4*pi) \n")
delta_v = v * a / 100
delta_p = m * delta_v
delta_x = h / (4 * %pi * delta_p)
printf("\n Uncertainty in determining the position of electron is %e m.",delta_x)
|
5767e9656cf7a84998864d53ca7a87bb66780353 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/ngram/5.17_12.tst | ac9a03a7055eadee3113244df2cdbbd523fba9a3 | [] | 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 | 574,734 | tst | 5.17_12.tst | 17 992:1 1008:1 1034:1 1638:1 1669:1 2778:1 3142:1 3210:1 3671:1 4761:1 4787:1 5070:1 5209:1 5673:1 5735:1 5896:1 6202:1 6440:1 6569:1 7312:1 8879:1 9013:1 9062:1 9149:1 9305:1 10650:1 10891:1 10960:1 11113:1 11429:1 12055:1 12086:1 12451:1 12944:1 13261:1 13390:1 13680:1 13731:1 13934:1 14333:1 14377:1 14712:1 14753:1 15953:1 15959:1 16085:1 16835:1 16948:1 16971:1 16972:1 16997:1 18380:1 18592:1 18900:1 19087:1 19707:1 20105:1 20126:61 20668:1 21035:1 21630:1 21965:1 22312:1 22845:1 22975:1 23962:1 24034:1 24163:1 24200:1 24442:1 24517:1 24850:1 25364:1 25469:1 26129:1 27285:1 28104:1 28220:1 28748:1 29290:1 29355:1 29852:1 29930:1 30330:1 30942:1
17 992:1 1008:1 1034:1 1039:1 1382:1 1414:1 1433:1 1638:1 1669:1 1790:1 1851:1 1896:1 2778:1 3032:1 3142:1 3197:1 3210:1 3671:1 3778:1 3881:1 4282:1 4385:1 4443:1 4535:1 4761:1 4787:2 4931:1 5070:2 5192:1 5209:1 5345:1 5600:1 5673:1 5735:1 5896:1 6202:1 6320:1 6346:1 6440:2 6569:1 6640:1 6868:1 6885:1 7277:1 7312:1 7616:1 7659:1 7775:1 8440:1 8879:1 9013:1 9062:1 9149:1 9175:1 9268:1 9305:1 9385:1 10051:1 10650:1 10676:1 10884:1 10891:1 10960:1 11021:1 11113:1 11429:1 11522:1 11981:1 12055:1 12086:1 12451:1 12769:1 12846:1 12944:1 12995:1 13138:1 13157:1 13261:1 13390:1 13579:1 13680:1 13731:1 13934:1 13937:1 14333:1 14377:1 14690:1 14712:1 14753:1 15329:1 15615:1 15704:1 15750:1 15953:1 15959:2 16085:1 16300:1 16835:1 16948:1 16971:1 16972:1 16997:1 17134:1 17814:1 17882:1 18380:1 18592:1 18900:1 19087:1 19707:1 20105:1 20126:98 20577:1 20668:2 21035:1 21437:1 21489:1 21630:1 21965:1 22042:1 22312:1 22378:1 22837:1 22845:1 22975:1 23077:1 23193:1 23424:1 23629:1 23758:1 23961:1 23962:1 24034:1 24102:1 24163:1 24200:1 24324:1 24442:1 24517:1 24602:1 24850:1 24989:1 25022:1 25364:1 25469:1 25511:1 25720:1 25968:1 25998:1 26129:1 26309:1 26603:1 26609:1 27248:1 27285:1 27319:1 27427:1 28081:1 28104:1 28220:1 28548:1 28748:1 29006:1 29266:1 29290:1 29355:1 29504:1 29642:1 29806:1 29852:1 29930:1 30090:1 30114:1 30330:1 30390:1 30392:1 30556:1 30558:1 30942:1 30981:1
17 227:1 420:1 992:1 1008:1 1011:1 1034:1 1039:1 1186:1 1339:1 1382:1 1414:1 1433:1 1638:1 1650:1 1669:1 1790:1 1851:1 1896:1 1933:1 1961:1 2139:1 2270:1 2638:1 2778:1 3032:2 3142:1 3197:1 3210:1 3313:1 3671:1 3778:1 3881:2 3913:1 4282:1 4385:1 4443:1 4535:2 4761:1 4787:2 4891:1 4931:1 5070:2 5192:1 5209:1 5221:1 5314:1 5345:1 5544:1 5547:1 5600:1 5673:1 5684:1 5735:1 5896:1 6121:1 6202:1 6320:1 6346:1 6440:2 6569:1 6640:1 6865:1 6868:1 6885:1 7277:1 7312:1 7332:1 7616:1 7659:1 7775:1 7819:1 7974:1 8053:1 8286:1 8440:1 8879:1 8987:1 9013:1 9062:1 9149:1 9175:1 9192:1 9268:1 9305:1 9385:1 10051:2 10353:1 10631:1 10650:1 10676:1 10884:1 10891:1 10960:1 10972:1 11021:1 11113:1 11223:1 11263:1 11370:1 11429:1 11464:1 11501:1 11522:1 11981:1 12055:1 12086:1 12412:1 12435:1 12451:1 12769:1 12846:1 12944:1 12995:1 13138:1 13157:1 13261:1 13390:1 13468:1 13579:1 13608:1 13680:1 13704:1 13731:1 13934:1 13937:1 14051:1 14333:1 14377:1 14556:1 14690:1 14712:1 14753:1 14856:1 15176:1 15329:1 15444:1 15570:1 15615:1 15704:1 15750:1 15953:1 15959:2 16085:1 16116:1 16300:1 16309:1 16321:1 16454:1 16835:1 16948:1 16971:1 16972:1 16997:1 17134:1 17215:1 17320:1 17330:1 17622:1 17768:1 17814:1 17882:1 17985:1 18380:1 18592:1 18900:1 19061:1 19087:1 19187:1 19707:1 19734:1 20105:1 20126:156 20577:1 20668:2 20722:1 21035:1 21054:1 21122:1 21358:1 21437:1 21489:1 21630:1 21670:1 21771:1 21953:1 21965:1 22042:1 22294:1 22312:1 22378:1 22557:1 22599:1 22639:1 22680:1 22837:2 22845:1 22847:1 22854:1 22975:1 23077:1 23096:1 23193:1 23280:1 23424:1 23629:1 23758:1 23832:1 23887:1 23900:1 23952:1 23961:1 23962:1 24034:1 24102:1 24163:1 24200:1 24207:1 24216:1 24324:1 24413:1 24442:1 24467:1 24517:1 24582:1 24602:1 24773:1 24850:1 24989:1 25022:1 25060:1 25364:1 25469:1 25511:1 25577:1 25719:1 25720:2 25886:1 25968:1 25998:2 26129:1 26190:1 26309:1 26328:1 26603:1 26609:1 26636:1 26885:1 27074:1 27248:1 27285:1 27319:1 27427:1 27485:1 27491:1 27541:1 27543:1 28081:1 28104:1 28220:1 28444:1 28548:1 28725:1 28748:1 29006:2 29056:1 29205:1 29266:1 29290:1 29355:1 29388:1 29504:1 29642:2 29708:1 29806:1 29852:1 29865:1 29930:1 30090:2 30114:1 30330:1 30390:1 30392:1 30556:1 30558:1 30578:1 30942:1 30981:1 31002:1 31054:1 31135:1
17 173:1 227:1 304:1 420:1 977:1 992:1 1008:1 1011:1 1034:1 1039:1 1186:1 1339:1 1382:1 1414:1 1433:1 1638:1 1650:1 1669:1 1790:1 1851:1 1896:1 1933:1 1956:1 1961:1 2139:1 2270:1 2638:1 2778:1 2821:1 3032:2 3101:1 3142:1 3197:1 3210:1 3313:1 3392:1 3671:1 3778:1 3848:1 3881:2 3913:1 4268:1 4282:1 4385:1 4443:1 4535:2 4761:1 4787:2 4842:1 4891:1 4931:1 5070:2 5147:1 5192:1 5209:1 5221:1 5314:1 5345:1 5347:1 5355:1 5436:1 5544:1 5547:1 5600:1 5673:1 5684:1 5735:1 5785:1 5896:1 6121:1 6166:1 6202:1 6233:1 6312:1 6320:1 6346:1 6440:2 6569:1 6640:1 6865:1 6868:1 6885:1 7121:1 7277:1 7312:1 7332:1 7353:1 7616:1 7659:1 7676:1 7775:1 7819:1 7974:1 8053:1 8082:1 8161:1 8286:1 8305:1 8440:1 8450:1 8493:1 8879:1 8987:1 9013:1 9062:1 9077:1 9131:1 9132:1 9149:1 9175:1 9192:1 9268:1 9305:1 9385:1 9937:1 10051:2 10326:1 10353:1 10503:1 10516:1 10532:1 10568:1 10631:1 10650:1 10676:1 10884:1 10891:1 10945:1 10960:1 10972:1 11021:1 11113:1 11223:2 11263:1 11370:1 11373:1 11429:1 11464:1 11501:1 11522:1 11981:1 12055:1 12086:1 12095:1 12412:1 12435:1 12451:1 12769:1 12846:1 12944:1 12995:1 13138:1 13141:1 13157:1 13171:1 13261:1 13390:1 13465:1 13468:1 13579:1 13608:1 13680:1 13704:1 13731:1 13934:1 13937:1 14051:1 14333:1 14377:1 14556:1 14690:1 14712:1 14753:1 14856:1 14897:1 15176:1 15329:1 15444:1 15570:1 15580:1 15615:1 15704:1 15720:1 15750:1 15953:1 15959:2 16056:1 16083:1 16085:1 16089:1 16116:1 16300:1 16309:1 16321:1 16454:1 16835:1 16948:1 16971:1 16972:1 16997:1 17134:1 17215:1 17257:1 17320:1 17330:1 17622:1 17768:1 17814:1 17882:1 17985:1 18366:1 18380:1 18592:1 18900:1 19061:1 19087:1 19088:1 19180:1 19187:1 19291:1 19298:1 19707:1 19734:1 19961:1 20105:1 20126:218 20577:1 20668:2 20722:1 21035:1 21054:1 21122:1 21128:1 21172:1 21358:1 21437:1 21489:1 21630:1 21670:1 21771:1 21815:1 21912:1 21953:1 21965:1 22042:1 22294:1 22312:1 22378:1 22390:1 22557:1 22599:1 22639:1 22680:1 22738:1 22795:1 22837:2 22845:2 22847:1 22854:1 22975:1 22984:1 23043:1 23077:1 23096:1 23193:1 23280:1 23328:1 23424:1 23629:1 23649:1 23652:1 23758:1 23832:1 23887:1 23900:1 23952:1 23961:1 23962:1 24034:1 24051:1 24102:1 24163:1 24200:1 24207:1 24216:1 24324:1 24413:1 24442:1 24467:1 24517:1 24582:1 24602:1 24773:1 24793:1 24850:1 24989:1 25022:1 25060:1 25364:1 25422:1 25438:1 25469:1 25511:1 25577:1 25719:1 25720:2 25782:1 25886:1 25968:1 25998:2 26129:1 26190:1 26260:1 26309:1 26328:1 26603:1 26609:1 26636:1 26885:1 27074:1 27248:1 27285:1 27319:1 27427:1 27485:1 27491:1 27541:1 27543:1 28081:1 28104:1 28220:1 28418:1 28444:2 28548:1 28586:1 28725:1 28748:1 29006:2 29056:1 29205:1 29266:1 29290:1 29355:1 29388:1 29504:1 29642:2 29708:1 29731:1 29806:1 29852:1 29865:1 29930:1 30090:2 30104:1 30114:1 30330:1 30365:1 30390:1 30392:1 30556:1 30558:1 30578:1 30942:1 30981:1 31002:1 31054:1 31135:1 31197:1
17 19:1 62:1 122:1 173:1 227:1 256:1 304:1 420:1 504:1 719:1 864:1 969:1 977:1 992:1 1008:1 1011:1 1034:1 1039:1 1186:1 1339:1 1382:1 1414:1 1433:1 1638:1 1650:1 1669:1 1676:1 1790:1 1851:1 1896:1 1933:1 1956:1 1961:1 2139:1 2270:1 2600:1 2638:1 2737:1 2778:1 2784:1 2821:1 3032:2 3101:1 3142:1 3189:1 3197:1 3210:1 3313:1 3392:1 3419:1 3671:1 3778:1 3848:1 3881:2 3913:1 4268:1 4282:1 4385:1 4443:1 4535:2 4761:1 4787:3 4842:1 4891:1 4931:1 4985:1 5070:3 5147:1 5192:1 5209:1 5221:1 5314:1 5345:1 5347:1 5355:1 5436:1 5540:1 5544:1 5547:1 5600:1 5673:1 5684:1 5735:1 5785:1 5896:1 6040:1 6121:1 6166:1 6200:1 6202:1 6207:1 6233:1 6246:1 6312:1 6320:1 6346:1 6411:1 6440:3 6569:1 6640:1 6865:1 6868:1 6885:1 6886:1 7121:1 7171:1 7277:1 7312:1 7332:1 7353:1 7395:1 7616:1 7659:1 7663:1 7676:1 7775:1 7819:1 7974:1 8053:1 8082:1 8161:1 8286:1 8305:1 8337:1 8372:1 8440:1 8450:1 8493:1 8740:1 8837:1 8879:1 8987:1 9013:1 9062:1 9077:1 9131:1 9132:1 9149:1 9175:1 9192:1 9268:1 9305:1 9316:1 9385:1 9500:1 9795:1 9937:1 9981:1 10051:2 10119:1 10326:1 10353:1 10451:1 10500:1 10503:1 10516:1 10532:1 10568:1 10631:1 10650:1 10676:1 10884:1 10891:1 10945:1 10954:1 10960:1 10972:1 11021:1 11059:1 11113:1 11223:2 11263:1 11370:1 11373:1 11429:1 11464:1 11501:1 11522:1 11745:1 11869:1 11981:1 12016:1 12055:1 12086:1 12095:1 12159:1 12412:1 12435:1 12451:1 12769:1 12846:1 12944:1 12995:1 13138:1 13141:1 13157:1 13171:1 13261:1 13390:1 13410:1 13465:1 13468:1 13579:1 13608:1 13680:1 13704:1 13731:2 13828:1 13934:1 13937:1 13989:1 14051:1 14333:1 14377:1 14556:1 14690:1 14712:1 14753:1 14856:1 14897:1 15176:1 15271:1 15329:1 15444:1 15570:1 15580:1 15615:1 15704:1 15720:1 15750:1 15953:1 15959:3 16056:1 16083:1 16085:1 16089:1 16116:1 16146:1 16300:1 16309:2 16321:1 16410:1 16454:2 16558:1 16835:1 16839:1 16948:1 16971:1 16972:1 16996:1 16997:1 17134:1 17215:1 17257:1 17320:1 17330:1 17622:1 17768:1 17814:1 17882:1 17985:1 18366:1 18380:1 18592:1 18610:1 18900:1 18911:1 18999:1 19022:1 19061:1 19087:1 19088:1 19136:1 19180:1 19187:1 19276:1 19291:1 19298:1 19707:1 19734:1 19911:1 19961:1 20105:1 20126:313 20577:1 20591:1 20668:3 20722:1 20777:1 20820:1 20921:1 21035:1 21054:1 21122:1 21128:1 21140:1 21172:1 21253:1 21315:1 21358:1 21437:1 21489:1 21630:1 21670:1 21771:1 21815:1 21912:1 21953:1 21965:1 22042:1 22294:1 22312:1 22378:1 22390:1 22557:1 22599:1 22639:1 22680:1 22738:1 22795:1 22837:2 22845:2 22847:1 22854:1 22975:1 22984:1 23011:1 23043:1 23077:1 23096:1 23180:1 23193:1 23226:1 23280:1 23328:1 23379:1 23384:1 23424:1 23534:1 23564:1 23585:1 23629:1 23644:1 23649:1 23652:1 23758:1 23832:1 23887:1 23900:1 23952:1 23961:1 23962:1 24034:1 24051:1 24102:1 24163:1 24200:1 24207:1 24216:1 24324:1 24413:1 24442:1 24467:1 24507:1 24517:1 24582:1 24602:1 24773:1 24793:1 24850:1 24989:1 25022:1 25060:1 25275:1 25364:1 25422:1 25438:1 25469:1 25511:1 25544:1 25577:1 25638:1 25681:1 25695:1 25719:1 25720:2 25782:1 25886:1 25968:1 25983:1 25998:2 26129:1 26190:1 26250:1 26260:1 26309:1 26328:1 26603:1 26609:1 26636:1 26805:1 26885:1 27074:2 27083:1 27115:1 27247:1 27248:1 27285:1 27319:1 27332:1 27427:1 27439:1 27485:1 27491:1 27541:1 27543:1 28065:1 28081:1 28104:1 28220:1 28418:1 28444:2 28499:1 28548:1 28582:1 28586:1 28725:1 28748:2 29006:2 29056:1 29205:1 29266:1 29290:2 29355:1 29388:1 29402:1 29417:1 29504:1 29577:1 29620:1 29642:2 29708:1 29731:1 29806:1 29852:1 29865:1 29930:1 30090:2 30104:1 30114:1 30330:1 30365:1 30390:1 30392:1 30556:1 30558:1 30578:1 30867:1 30931:1 30942:1 30981:1 31002:1 31046:1 31054:1 31135:1 31197:1 31208:1
17 19:1 62:1 122:1 173:1 227:1 256:1 304:1 351:1 420:1 504:1 577:1 719:1 864:2 969:1 977:1 992:1 1008:1 1011:1 1034:1 1039:1 1095:1 1098:1 1186:1 1339:1 1382:1 1414:1 1433:1 1638:1 1650:1 1669:1 1676:1 1790:1 1851:1 1896:1 1910:1 1933:1 1956:1 1961:2 2036:1 2078:1 2139:1 2270:1 2395:1 2531:1 2600:1 2638:1 2737:2 2757:1 2778:1 2784:1 2821:1 3032:2 3101:1 3142:1 3189:1 3197:2 3210:1 3313:1 3392:1 3419:1 3671:1 3778:1 3848:1 3881:2 3913:1 4204:1 4227:1 4268:1 4282:1 4385:1 4443:1 4535:2 4761:1 4787:3 4842:1 4891:1 4931:1 4985:1 5050:1 5070:3 5147:1 5192:1 5209:1 5221:1 5314:1 5338:1 5345:1 5347:1 5355:1 5436:1 5540:1 5544:1 5547:1 5600:1 5673:1 5684:1 5735:1 5785:1 5896:1 6013:1 6040:1 6121:1 6166:1 6200:1 6202:1 6207:1 6233:1 6246:1 6310:1 6312:1 6320:1 6346:1 6411:1 6440:3 6456:1 6484:1 6569:1 6589:1 6640:1 6865:1 6868:1 6885:1 6886:1 7121:1 7171:1 7277:1 7312:2 7332:1 7353:1 7395:1 7422:1 7616:1 7659:1 7663:1 7676:1 7745:1 7775:1 7799:1 7819:1 7955:1 7974:1 8050:1 8053:1 8082:1 8161:1 8286:1 8300:1 8305:1 8337:1 8372:1 8420:1 8440:2 8450:1 8493:1 8678:1 8740:1 8837:1 8879:1 8987:1 9013:1 9062:1 9077:1 9094:1 9125:1 9131:1 9132:1 9141:1 9149:1 9175:1 9192:1 9268:1 9305:1 9316:1 9367:1 9385:1 9421:1 9500:1 9715:1 9795:1 9796:1 9857:1 9937:1 9981:1 10051:2 10119:1 10306:1 10326:2 10353:1 10451:1 10500:1 10503:1 10516:1 10532:1 10568:1 10578:1 10631:1 10650:1 10676:1 10884:1 10891:1 10945:1 10954:1 10960:1 10972:1 11021:1 11035:1 11042:1 11059:1 11113:1 11223:2 11263:1 11360:1 11370:1 11373:1 11429:1 11437:2 11445:1 11464:1 11501:1 11522:1 11745:1 11869:1 11981:1 12016:1 12055:1 12086:1 12095:1 12159:1 12412:1 12435:1 12450:1 12451:1 12500:1 12623:1 12769:1 12827:1 12846:1 12944:1 12995:1 13138:1 13141:1 13157:1 13171:1 13261:1 13390:1 13410:1 13465:1 13468:1 13579:1 13608:1 13680:1 13704:1 13731:2 13828:1 13858:1 13934:1 13937:1 13989:1 14051:1 14333:1 14377:1 14556:1 14690:1 14712:1 14753:1 14856:1 14897:1 15176:1 15271:1 15329:1 15443:1 15444:1 15495:1 15570:1 15580:1 15615:1 15704:1 15720:1 15750:1 15953:1 15959:3 16056:1 16083:1 16085:1 16089:2 16116:1 16146:1 16300:1 16309:2 16321:1 16410:1 16454:2 16508:1 16525:1 16558:1 16598:1 16835:1 16839:1 16940:1 16948:1 16971:1 16972:1 16996:1 16997:1 17035:1 17134:1 17215:1 17257:2 17320:1 17330:1 17622:1 17768:1 17814:1 17878:1 17882:1 17911:1 17985:1 18077:1 18366:1 18380:1 18519:1 18592:1 18610:1 18751:1 18900:1 18911:1 18999:1 19011:1 19022:1 19061:1 19087:1 19088:1 19136:1 19180:1 19187:1 19235:1 19276:1 19291:1 19298:1 19707:1 19734:1 19911:1 19933:1 19961:1 19991:1 20105:1 20122:1 20126:409 20577:1 20591:1 20668:3 20722:1 20777:1 20820:1 20921:1 21035:1 21054:1 21122:1 21128:1 21140:1 21172:1 21253:1 21315:1 21358:1 21437:1 21489:2 21630:1 21670:1 21771:1 21815:1 21912:1 21953:1 21965:1 22000:1 22030:1 22042:2 22262:1 22281:1 22294:1 22312:1 22366:1 22378:1 22390:1 22551:1 22557:1 22599:1 22639:1 22680:1 22738:1 22795:1 22837:2 22845:2 22847:1 22854:1 22975:1 22984:1 23011:1 23043:1 23077:1 23096:1 23180:1 23193:1 23226:1 23280:1 23328:1 23379:1 23384:1 23424:2 23445:1 23512:1 23534:1 23564:1 23585:1 23629:1 23644:1 23649:1 23652:1 23702:1 23758:1 23832:1 23841:1 23887:1 23900:1 23952:1 23961:1 23962:1 24034:1 24051:1 24102:1 24163:1 24200:1 24207:1 24216:1 24324:1 24413:1 24442:1 24467:1 24507:1 24517:1 24582:1 24602:1 24658:1 24773:1 24793:1 24850:1 24989:1 25022:1 25060:1 25096:1 25100:1 25275:1 25321:1 25364:1 25422:1 25438:1 25469:1 25511:1 25544:1 25577:1 25638:1 25681:1 25695:1 25719:1 25720:2 25782:1 25886:1 25968:1 25983:1 25998:2 26129:1 26190:1 26250:1 26260:1 26309:1 26328:1 26341:1 26541:2 26603:1 26609:1 26636:1 26805:1 26868:1 26885:1 27074:2 27083:1 27115:1 27134:2 27247:1 27248:1 27285:1 27319:1 27332:1 27427:1 27439:1 27485:1 27491:1 27541:1 27543:1 28042:1 28065:1 28081:1 28104:1 28139:1 28220:1 28349:1 28418:1 28444:2 28499:1 28548:1 28582:1 28586:1 28725:1 28748:2 28811:1 29006:2 29056:1 29061:1 29163:1 29205:1 29266:1 29290:2 29355:1 29388:1 29402:1 29409:1 29417:1 29504:1 29577:1 29620:1 29642:2 29708:1 29718:1 29731:1 29806:2 29852:1 29865:1 29930:1 30090:2 30104:1 30114:1 30149:1 30330:1 30365:1 30390:1 30392:1 30477:1 30517:1 30556:1 30558:1 30578:1 30867:1 30931:1 30942:1 30973:1 30981:1 31002:1 31046:1 31054:1 31087:1 31135:1 31182:1 31197:1 31208:1
17 19:1 62:1 122:1 173:1 183:1 227:1 256:1 304:1 351:1 420:1 504:1 577:1 641:1 690:1 719:1 864:2 969:1 977:3 979:1 992:1 1008:2 1011:1 1034:1 1039:1 1095:1 1098:1 1186:1 1339:1 1382:1 1414:1 1433:1 1638:1 1644:1 1650:1 1669:1 1676:1 1714:1 1790:1 1851:1 1896:1 1910:1 1933:1 1942:1 1956:1 1961:2 1963:1 2036:1 2078:1 2139:1 2270:1 2395:1 2531:1 2569:1 2600:1 2638:1 2737:2 2757:1 2778:1 2784:1 2804:1 2821:1 2872:1 3032:2 3101:1 3142:1 3189:1 3197:2 3210:1 3313:1 3322:1 3392:1 3419:1 3457:1 3671:1 3778:1 3848:1 3881:2 3913:1 4032:1 4127:1 4204:1 4207:1 4227:1 4262:1 4268:1 4282:1 4385:1 4443:1 4448:1 4535:2 4761:1 4787:3 4842:1 4891:1 4931:1 4984:1 4985:1 5050:1 5070:3 5147:1 5192:1 5209:1 5221:1 5314:1 5329:1 5338:1 5345:1 5347:1 5355:1 5436:1 5540:1 5544:1 5547:1 5580:1 5600:1 5646:1 5673:1 5684:1 5735:1 5785:1 5877:1 5896:1 6013:1 6040:1 6082:1 6121:1 6166:1 6200:1 6202:1 6207:1 6233:1 6246:1 6306:1 6310:1 6312:2 6320:1 6346:1 6411:1 6440:3 6456:1 6484:1 6513:1 6569:1 6589:1 6640:1 6865:1 6868:1 6885:1 6886:1 7121:1 7171:1 7270:1 7277:1 7312:2 7332:1 7353:1 7395:1 7422:1 7427:1 7616:1 7659:1 7663:1 7676:1 7745:1 7775:1 7799:1 7819:1 7955:1 7974:1 8019:1 8050:1 8053:1 8082:1 8092:1 8151:1 8161:1 8286:1 8300:1 8305:1 8337:1 8372:1 8420:1 8440:2 8450:1 8493:1 8509:1 8678:1 8740:1 8837:1 8879:1 8961:1 8987:1 9013:1 9062:1 9077:1 9079:1 9094:1 9125:1 9131:1 9132:1 9141:1 9149:1 9175:1 9192:1 9224:1 9268:1 9305:2 9316:1 9367:1 9385:1 9421:1 9500:1 9715:1 9795:1 9796:1 9857:1 9937:1 9981:1 10051:2 10119:1 10216:1 10306:1 10326:2 10353:1 10451:1 10500:1 10501:1 10503:1 10516:1 10532:1 10568:1 10578:1 10623:1 10631:1 10650:1 10676:1 10884:1 10891:1 10945:1 10954:1 10960:1 10972:1 11010:1 11021:1 11035:1 11042:1 11059:1 11113:1 11150:1 11223:2 11263:1 11360:1 11370:1 11373:1 11429:1 11437:2 11445:1 11464:1 11501:1 11522:1 11745:1 11869:1 11981:1 11996:1 12016:1 12055:1 12086:1 12095:1 12159:1 12290:1 12407:1 12412:1 12435:1 12450:1 12451:1 12473:1 12500:1 12623:1 12769:1 12827:1 12846:1 12944:1 12995:1 13028:1 13034:1 13038:2 13047:1 13138:1 13141:1 13157:1 13171:1 13261:1 13390:2 13410:1 13465:1 13468:1 13497:1 13579:1 13608:1 13680:1 13704:1 13731:2 13746:1 13799:1 13828:1 13858:1 13934:1 13937:1 13989:1 14051:1 14298:1 14333:1 14339:1 14377:1 14420:1 14556:1 14690:1 14712:1 14732:1 14753:1 14804:1 14856:1 14897:1 14987:1 15176:1 15271:1 15329:1 15387:1 15443:1 15444:1 15454:1 15495:1 15570:1 15580:1 15608:1 15615:1 15617:1 15704:1 15720:1 15742:1 15750:1 15953:1 15959:3 16028:1 16056:3 16083:1 16085:1 16089:3 16105:1 16116:1 16146:1 16300:1 16309:2 16321:1 16410:1 16454:2 16478:1 16508:1 16525:1 16558:1 16598:1 16638:1 16835:1 16839:1 16940:1 16948:1 16971:1 16972:1 16996:1 16997:1 17035:1 17134:1 17215:1 17257:3 17320:1 17330:1 17338:1 17366:1 17459:1 17503:1 17622:1 17768:1 17814:1 17878:1 17882:1 17911:1 17985:1 18077:1 18328:1 18366:1 18380:1 18519:1 18561:1 18592:1 18610:1 18751:1 18900:1 18911:1 18999:1 19011:1 19022:1 19061:1 19087:1 19088:1 19136:1 19180:1 19187:1 19235:1 19276:1 19291:1 19298:1 19584:1 19707:1 19734:1 19911:1 19933:1 19961:1 19991:1 20105:1 20122:1 20126:509 20513:1 20556:1 20577:1 20591:1 20668:3 20707:1 20722:1 20768:1 20777:1 20820:1 20921:1 21035:1 21054:1 21062:1 21122:1 21128:1 21140:1 21141:1 21172:1 21253:1 21315:1 21358:1 21437:1 21489:2 21587:1 21630:1 21670:1 21771:1 21815:1 21912:1 21949:1 21953:1 21965:1 22000:1 22030:1 22042:2 22064:1 22262:1 22281:1 22294:1 22312:1 22366:1 22374:1 22378:1 22390:1 22466:1 22551:1 22557:1 22571:1 22599:1 22639:1 22680:1 22738:1 22795:1 22837:2 22845:2 22847:1 22854:1 22975:1 22984:1 23011:1 23043:1 23077:1 23096:1 23180:1 23193:1 23226:1 23280:1 23328:1 23379:1 23384:1 23424:2 23445:1 23512:1 23534:1 23559:1 23564:1 23585:1 23629:1 23644:1 23649:1 23652:1 23702:1 23758:1 23832:1 23841:1 23887:1 23900:1 23952:1 23961:1 23962:1 24034:1 24051:1 24102:1 24163:1 24200:2 24207:1 24215:1 24216:1 24324:1 24413:1 24442:1 24467:1 24507:1 24517:1 24566:1 24582:1 24602:1 24658:1 24773:1 24793:1 24850:1 24867:2 24975:1 24989:1 25022:1 25060:1 25061:1 25096:1 25100:1 25267:1 25275:1 25321:1 25364:1 25422:1 25438:1 25442:1 25457:1 25469:1 25486:1 25511:1 25544:1 25577:1 25638:1 25681:1 25695:1 25719:1 25720:2 25782:1 25886:1 25968:1 25983:1 25990:1 25998:2 26129:1 26190:1 26250:1 26260:1 26262:1 26309:1 26328:1 26341:1 26541:2 26557:1 26603:1 26609:1 26636:1 26805:1 26868:1 26885:1 27074:2 27083:1 27094:1 27095:1 27115:1 27134:2 27167:1 27247:1 27248:1 27285:1 27319:1 27332:1 27427:1 27439:1 27485:1 27491:1 27541:1 27543:1 28042:1 28065:1 28081:1 28104:1 28139:1 28149:1 28220:1 28299:2 28349:1 28389:1 28418:1 28444:3 28499:1 28548:1 28582:1 28586:1 28639:1 28725:1 28748:2 28811:1 29006:2 29056:1 29061:1 29062:1 29148:1 29163:1 29205:1 29266:1 29290:2 29355:1 29388:1 29402:1 29409:1 29417:1 29504:1 29577:1 29620:1 29642:2 29708:1 29718:1 29731:1 29806:2 29852:1 29865:1 29930:1 30090:2 30104:1 30114:1 30149:1 30330:1 30365:1 30390:1 30392:1 30414:1 30477:1 30517:1 30556:1 30558:1 30578:1 30625:1 30750:1 30867:1 30931:1 30942:1 30973:1 30981:1 31002:1 31046:1 31054:1 31087:1 31135:1 31182:1 31197:1 31208:1
17 19:1 62:1 122:1 173:1 183:1 227:1 256:1 304:1 351:1 420:1 426:1 504:1 577:1 641:1 690:1 719:1 726:1 824:1 864:2 969:1 977:3 979:1 992:1 997:1 1002:1 1008:2 1011:1 1034:1 1039:1 1095:1 1098:1 1161:1 1186:1 1248:1 1269:1 1339:1 1382:1 1414:1 1433:1 1601:1 1638:1 1644:1 1650:1 1669:1 1676:1 1714:1 1790:1 1851:1 1896:1 1905:1 1910:1 1933:1 1942:1 1956:1 1961:2 1963:1 2036:1 2078:1 2099:1 2139:1 2270:1 2395:1 2531:1 2569:1 2600:1 2638:1 2737:2 2741:1 2757:1 2778:1 2783:1 2784:1 2799:1 2804:1 2821:1 2872:1 3032:2 3101:1 3131:1 3142:1 3189:1 3197:2 3210:1 3310:1 3313:1 3322:1 3341:1 3392:1 3412:1 3419:1 3457:1 3671:1 3778:1 3779:1 3848:1 3881:2 3913:1 3992:1 4032:1 4127:1 4204:1 4207:1 4227:1 4262:1 4268:1 4282:1 4385:1 4443:1 4448:1 4463:1 4535:2 4754:1 4761:1 4780:1 4787:3 4842:1 4891:1 4931:1 4984:1 4985:1 5012:1 5050:1 5070:3 5147:1 5179:1 5192:1 5209:1 5221:1 5248:1 5314:1 5329:1 5338:1 5345:1 5347:1 5355:1 5436:1 5540:1 5544:1 5547:1 5569:1 5580:1 5600:1 5646:1 5673:1 5684:1 5735:1 5785:1 5877:1 5888:1 5896:1 5950:1 6013:1 6040:1 6082:1 6121:1 6166:1 6170:1 6200:1 6202:1 6207:1 6233:1 6246:1 6268:1 6306:1 6310:1 6312:2 6320:1 6346:1 6411:1 6440:3 6456:1 6484:1 6513:1 6569:1 6589:1 6640:1 6865:1 6868:2 6885:1 6886:1 6937:1 7115:1 7121:2 7171:1 7270:1 7277:1 7312:2 7332:1 7353:1 7395:1 7422:1 7427:1 7598:1 7616:1 7659:1 7663:1 7676:1 7745:1 7761:1 7775:1 7799:1 7819:1 7955:1 7974:1 8019:1 8050:1 8053:1 8082:1 8092:1 8151:1 8153:1 8161:1 8170:1 8286:1 8300:1 8301:1 8305:1 8337:1 8372:1 8420:1 8440:2 8450:1 8493:1 8509:1 8678:1 8740:1 8823:1 8837:1 8879:1 8903:1 8961:1 8987:1 9013:1 9062:1 9077:1 9079:1 9094:1 9125:1 9131:1 9132:1 9141:1 9149:1 9175:1 9192:1 9224:1 9268:1 9305:2 9316:1 9367:1 9378:1 9385:1 9421:1 9500:1 9568:1 9588:1 9715:1 9795:1 9796:1 9857:1 9937:1 9981:1 10051:2 10119:1 10216:1 10273:1 10306:1 10326:2 10353:1 10393:1 10422:1 10451:1 10500:1 10501:1 10503:1 10516:1 10532:1 10568:1 10578:1 10623:1 10626:1 10631:1 10650:1 10676:1 10884:1 10891:1 10945:1 10954:1 10960:1 10972:1 11010:1 11018:1 11021:1 11035:1 11042:1 11059:1 11103:1 11113:1 11150:1 11223:2 11237:2 11263:1 11360:1 11370:1 11373:1 11426:2 11429:1 11437:2 11445:1 11464:1 11501:1 11522:1 11605:1 11700:1 11745:1 11869:1 11981:1 11996:1 12016:1 12026:1 12038:1 12055:2 12086:2 12095:1 12159:1 12169:1 12272:1 12290:1 12380:1 12407:1 12412:1 12435:1 12450:1 12451:1 12473:1 12500:1 12623:1 12708:1 12769:1 12827:1 12846:1 12944:1 12995:1 12996:1 13028:1 13034:2 13038:2 13047:1 13138:1 13141:1 13157:1 13171:1 13261:1 13372:1 13390:2 13410:1 13465:1 13468:1 13472:1 13497:1 13540:1 13579:1 13591:1 13608:1 13680:1 13704:1 13731:2 13746:1 13799:1 13828:1 13858:1 13934:1 13937:1 13989:1 14051:1 14298:1 14333:1 14339:1 14377:1 14420:1 14556:1 14690:1 14712:1 14732:1 14753:1 14804:1 14856:1 14897:1 14923:1 14987:1 15176:1 15271:1 15329:1 15387:1 15412:1 15443:1 15444:1 15454:1 15495:1 15570:1 15577:1 15580:1 15608:1 15615:1 15617:1 15672:1 15704:1 15720:1 15742:1 15750:1 15953:1 15959:3 16028:1 16056:3 16083:1 16085:1 16089:5 16105:1 16116:1 16138:1 16146:1 16259:1 16300:1 16309:2 16321:1 16361:1 16410:1 16454:2 16478:1 16508:1 16525:1 16558:1 16598:2 16638:1 16835:1 16839:1 16940:1 16948:1 16971:1 16972:1 16996:1 16997:1 17035:1 17134:1 17215:1 17257:3 17320:1 17330:1 17331:1 17338:1 17366:1 17459:1 17503:1 17622:1 17768:2 17814:1 17878:1 17882:1 17911:1 17985:1 18077:1 18177:1 18328:1 18366:1 18380:1 18519:1 18561:1 18592:1 18610:1 18643:1 18751:1 18900:1 18911:1 18926:1 18999:1 19011:1 19022:1 19061:1 19081:1 19085:1 19087:1 19088:1 19136:1 19180:1 19187:1 19225:1 19235:1 19276:1 19291:1 19298:1 19371:1 19584:1 19707:1 19734:1 19810:1 19821:1 19842:1 19911:1 19933:1 19961:1 19991:1 20105:1 20122:1 20126:621 20264:1 20513:1 20520:1 20556:1 20577:1 20591:1 20668:3 20707:1 20722:1 20768:1 20777:1 20820:1 20921:1 21035:1 21054:1 21062:1 21122:1 21128:1 21140:1 21141:1 21145:1 21172:1 21194:1 21253:1 21315:1 21358:1 21437:1 21489:2 21525:1 21587:1 21608:1 21630:1 21670:1 21700:1 21771:1 21815:1 21912:1 21949:1 21953:1 21965:1 22000:1 22030:1 22042:2 22064:1 22244:1 22262:1 22281:1 22294:1 22312:1 22366:1 22374:1 22378:1 22390:1 22466:1 22551:1 22557:1 22571:1 22599:1 22639:1 22680:1 22711:1 22738:1 22786:1 22795:1 22837:2 22845:3 22847:1 22854:1 22975:1 22984:1 23011:1 23043:1 23077:1 23096:1 23180:1 23193:1 23217:1 23226:1 23280:1 23328:1 23339:1 23371:1 23379:1 23384:1 23424:2 23445:1 23512:1 23534:1 23559:1 23564:1 23585:1 23629:1 23644:1 23649:1 23652:1 23702:1 23712:1 23741:1 23748:1 23758:1 23832:1 23841:1 23843:1 23887:1 23900:1 23952:1 23961:1 23962:1 24034:1 24051:1 24102:1 24163:1 24200:2 24207:1 24215:1 24216:1 24324:1 24363:1 24413:1 24442:1 24467:1 24489:1 24499:1 24507:1 24517:1 24566:1 24582:1 24602:1 24658:1 24773:1 24793:1 24850:1 24867:3 24974:1 24975:1 24989:1 25022:1 25060:1 25061:1 25096:1 25100:1 25256:1 25267:1 25275:1 25321:1 25349:1 25364:1 25422:1 25438:1 25442:1 25457:1 25469:1 25486:1 25511:1 25544:1 25577:1 25638:1 25681:1 25695:1 25719:1 25720:2 25782:1 25886:1 25968:1 25974:1 25983:1 25990:1 25998:2 26129:1 26190:1 26250:1 26260:1 26262:1 26283:1 26287:1 26309:1 26316:1 26328:1 26341:1 26399:1 26541:2 26557:1 26583:1 26584:1 26603:1 26609:1 26636:1 26669:1 26805:1 26868:1 26885:1 26902:1 26923:1 27074:2 27083:1 27094:1 27095:1 27115:1 27134:3 27167:1 27206:1 27247:1 27248:1 27285:1 27297:1 27319:1 27332:1 27427:1 27439:1 27485:1 27491:1 27541:1 27543:1 27654:1 27991:1 28042:1 28065:1 28081:1 28104:1 28139:1 28149:1 28220:1 28299:2 28349:1 28389:1 28418:1 28444:3 28448:1 28499:1 28548:1 28582:1 28586:1 28639:1 28725:1 28748:2 28811:1 29006:2 29056:1 29061:1 29062:1 29148:1 29163:1 29205:1 29266:1 29290:2 29345:1 29355:1 29388:1 29402:1 29409:1 29417:1 29422:1 29504:1 29577:1 29620:1 29642:2 29708:1 29718:1 29731:1 29746:1 29806:3 29852:1 29865:1 29930:1 30090:2 30104:1 30114:1 30149:1 30330:1 30365:1 30381:1 30390:1 30392:1 30414:1 30477:1 30517:1 30556:1 30558:1 30578:1 30625:1 30676:1 30750:1 30867:1 30931:1 30942:1 30973:1 30978:1 30981:1 31002:1 31046:1 31054:1 31087:1 31135:1 31179:1 31182:2 31195:1 31197:1 31208:1
17 19:1 33:1 62:1 122:1 173:1 183:1 227:1 256:1 304:1 351:1 401:1 420:1 426:1 504:1 577:1 641:1 690:1 719:1 726:1 824:1 864:2 969:1 977:3 979:1 986:1 992:1 997:1 1002:1 1008:2 1011:1 1034:1 1039:1 1095:1 1098:1 1161:1 1186:1 1248:1 1269:1 1339:1 1382:1 1414:1 1433:1 1601:1 1638:1 1644:1 1650:1 1669:1 1676:1 1714:1 1771:1 1790:1 1827:1 1851:1 1896:1 1905:1 1910:1 1921:1 1933:1 1942:1 1956:1 1961:2 1963:1 1972:1 2036:1 2078:1 2099:1 2139:1 2270:1 2395:1 2442:1 2531:1 2552:1 2569:1 2600:1 2638:1 2650:1 2721:1 2737:2 2741:1 2757:1 2778:1 2783:1 2784:1 2799:1 2804:1 2821:1 2872:1 2964:1 3031:1 3032:2 3101:1 3110:1 3131:1 3142:1 3189:1 3197:2 3210:1 3310:1 3313:1 3322:1 3341:1 3392:1 3412:1 3419:1 3457:1 3563:1 3671:2 3747:1 3778:1 3779:1 3848:1 3881:2 3913:1 3992:1 4032:1 4063:1 4127:1 4204:1 4207:2 4227:1 4262:1 4268:1 4282:1 4284:1 4385:1 4443:1 4448:1 4463:1 4535:2 4754:1 4761:1 4780:1 4787:3 4842:1 4891:1 4931:1 4984:1 4985:1 5012:1 5050:1 5070:3 5147:1 5179:1 5188:1 5192:1 5209:1 5221:1 5248:1 5298:1 5314:1 5329:1 5338:1 5345:1 5347:1 5355:1 5436:1 5540:1 5544:1 5547:1 5569:1 5580:1 5600:1 5646:1 5673:1 5684:1 5735:1 5785:1 5877:1 5888:1 5896:1 5950:1 6013:1 6040:1 6082:1 6121:1 6166:1 6170:1 6200:1 6202:1 6207:1 6233:1 6246:1 6268:1 6280:1 6306:1 6310:1 6312:3 6320:1 6346:1 6411:1 6440:3 6450:1 6456:1 6484:1 6513:1 6569:1 6589:1 6640:1 6705:1 6768:1 6865:1 6868:2 6875:1 6885:2 6886:1 6937:1 7115:1 7121:2 7171:1 7270:1 7277:1 7312:2 7332:1 7353:1 7395:1 7422:1 7423:1 7427:1 7598:1 7616:1 7659:1 7663:1 7676:1 7745:1 7761:1 7775:1 7798:1 7799:1 7819:1 7955:1 7974:1 8019:1 8034:1 8050:1 8053:1 8082:1 8092:1 8126:1 8151:1 8153:1 8161:1 8170:1 8214:1 8247:1 8286:1 8300:1 8301:1 8305:1 8337:1 8372:1 8420:2 8440:2 8450:1 8493:1 8509:1 8678:1 8693:1 8740:1 8823:1 8837:1 8879:1 8903:1 8961:1 8987:1 9013:1 9062:1 9077:1 9079:1 9094:1 9125:1 9131:1 9132:1 9141:1 9149:1 9165:1 9175:1 9186:1 9192:1 9224:1 9268:1 9305:2 9316:1 9367:1 9378:1 9385:1 9421:1 9500:1 9568:1 9588:1 9715:1 9795:1 9796:1 9857:1 9872:1 9937:1 9981:1 10051:2 10119:1 10216:1 10273:1 10306:1 10326:2 10353:1 10368:1 10393:1 10422:1 10451:1 10500:1 10501:1 10503:1 10516:1 10532:1 10568:1 10578:1 10623:1 10626:1 10631:1 10650:2 10676:1 10769:1 10881:1 10884:1 10891:1 10945:1 10954:1 10960:1 10972:1 11010:1 11018:1 11021:1 11035:1 11042:1 11059:1 11103:1 11113:1 11137:1 11150:1 11223:2 11237:2 11263:1 11360:1 11370:1 11373:1 11426:2 11429:1 11437:2 11445:1 11448:1 11464:1 11501:1 11522:1 11605:1 11700:1 11745:1 11793:1 11869:1 11981:1 11996:1 12016:1 12026:1 12038:1 12055:3 12086:2 12095:1 12103:1 12159:1 12169:1 12246:1 12254:1 12272:1 12290:1 12380:1 12407:1 12412:1 12435:1 12450:1 12451:1 12457:1 12473:1 12500:1 12530:1 12623:1 12708:1 12769:1 12827:1 12831:2 12846:1 12890:1 12944:1 12995:1 12996:1 13028:1 13034:2 13037:1 13038:2 13047:1 13050:1 13098:1 13138:1 13141:1 13144:1 13157:1 13171:1 13261:1 13372:1 13390:2 13410:1 13465:1 13468:1 13472:1 13497:1 13540:1 13579:1 13591:1 13608:1 13680:1 13704:1 13731:2 13746:1 13799:1 13828:1 13858:1 13934:1 13937:1 13971:1 13989:1 14051:1 14298:1 14333:1 14339:1 14377:1 14420:1 14556:1 14690:1 14712:1 14732:1 14753:1 14804:3 14856:1 14897:1 14923:1 14987:1 15176:1 15220:1 15271:1 15329:1 15387:1 15412:1 15443:1 15444:1 15454:1 15495:1 15570:1 15577:1 15580:1 15608:1 15615:1 15617:1 15672:1 15704:1 15720:1 15742:1 15750:1 15953:1 15959:3 16028:1 16056:4 16083:1 16085:1 16089:5 16105:1 16116:1 16138:1 16146:1 16259:1 16300:1 16309:2 16321:1 16361:1 16410:1 16454:2 16478:1 16508:1 16525:1 16558:1 16598:2 16638:1 16835:1 16839:1 16940:1 16948:1 16971:1 16972:1 16996:1 16997:1 17035:1 17053:1 17134:1 17213:1 17215:1 17257:3 17320:1 17330:1 17331:1 17338:1 17366:1 17390:2 17459:1 17503:2 17622:1 17768:2 17814:1 17878:1 17882:1 17911:1 17977:1 17985:1 18077:1 18177:1 18328:1 18366:1 18380:1 18471:1 18519:1 18561:1 18592:1 18610:1 18643:1 18751:1 18900:1 18911:1 18926:1 18974:1 18982:1 18999:1 19011:1 19022:1 19023:1 19061:1 19081:1 19085:1 19087:1 19088:1 19136:1 19180:1 19187:1 19225:1 19235:1 19276:1 19278:1 19291:1 19298:1 19371:1 19391:1 19405:1 19584:1 19707:1 19734:1 19810:1 19821:1 19842:1 19873:1 19911:1 19933:1 19961:1 19991:1 20105:1 20122:1 20126:769 20264:1 20513:1 20520:1 20556:1 20577:1 20591:1 20668:3 20707:1 20722:1 20768:1 20777:1 20816:1 20820:1 20921:1 21035:1 21054:1 21062:1 21122:1 21128:1 21140:1 21141:1 21145:1 21172:1 21194:1 21253:1 21288:1 21315:1 21358:1 21437:1 21489:2 21525:1 21587:1 21608:1 21630:1 21670:1 21700:1 21771:1 21815:1 21872:1 21912:1 21934:1 21949:1 21953:1 21965:1 22000:1 22030:1 22042:2 22064:1 22099:1 22244:1 22262:1 22281:1 22294:1 22312:1 22366:1 22374:1 22378:1 22390:1 22466:1 22551:1 22557:1 22571:1 22599:1 22639:1 22680:1 22711:1 22738:1 22786:1 22795:1 22837:2 22845:3 22847:1 22854:1 22975:1 22984:1 23011:1 23043:1 23077:1 23096:1 23180:1 23193:2 23217:1 23226:1 23280:1 23328:1 23339:1 23371:1 23373:1 23379:1 23384:1 23424:2 23445:1 23512:1 23534:1 23559:1 23564:1 23585:1 23609:1 23629:1 23644:1 23649:1 23652:1 23702:1 23712:1 23741:1 23748:1 23758:1 23832:1 23841:1 23843:1 23887:1 23900:1 23948:1 23952:1 23961:1 23962:1 24034:1 24051:1 24102:1 24163:1 24200:2 24207:1 24215:1 24216:1 24324:1 24363:1 24413:1 24442:1 24467:1 24477:1 24489:1 24499:1 24507:1 24517:1 24566:1 24582:1 24602:1 24658:1 24773:1 24793:1 24850:1 24867:3 24974:1 24975:1 24989:1 25022:1 25060:1 25061:1 25096:1 25100:1 25256:1 25267:1 25275:2 25321:1 25349:1 25364:1 25422:1 25438:1 25442:1 25457:1 25469:1 25486:1 25507:1 25511:1 25544:1 25577:1 25638:1 25681:1 25695:1 25719:1 25720:2 25782:1 25873:1 25886:1 25968:1 25974:1 25983:1 25990:1 25998:2 26009:1 26129:1 26155:2 26190:1 26250:1 26260:1 26262:1 26283:1 26287:1 26309:1 26316:1 26328:1 26341:1 26399:1 26541:2 26557:1 26583:1 26584:1 26602:1 26603:1 26609:1 26636:1 26669:1 26805:1 26838:1 26868:1 26885:1 26902:1 26923:1 27074:2 27083:1 27094:2 27095:1 27115:1 27134:3 27167:1 27178:1 27206:1 27247:1 27248:1 27285:1 27297:1 27319:1 27332:1 27427:1 27439:1 27485:1 27491:1 27512:1 27541:1 27543:1 27568:1 27654:1 27770:1 27991:1 28042:1 28051:1 28053:1 28065:1 28081:1 28102:1 28104:1 28139:1 28149:1 28212:1 28220:1 28299:2 28349:1 28389:1 28418:1 28444:3 28448:1 28499:1 28548:1 28582:1 28586:1 28622:1 28639:1 28725:1 28748:2 28811:1 29006:2 29056:2 29061:1 29062:1 29096:1 29148:1 29163:1 29205:1 29266:1 29290:2 29345:1 29355:1 29388:1 29402:1 29409:1 29417:1 29422:1 29504:1 29577:1 29620:1 29642:2 29708:1 29718:1 29731:1 29746:1 29780:1 29806:3 29852:2 29865:1 29930:1 30020:1 30090:2 30104:1 30114:1 30149:1 30247:1 30330:2 30365:1 30381:1 30390:1 30392:1 30414:1 30477:1 30517:1 30556:1 30558:1 30578:1 30625:1 30676:1 30750:1 30867:1 30922:1 30931:1 30942:1 30973:1 30978:1 30981:1 31002:1 31046:1 31054:1 31087:1 31133:1 31135:1 31143:1 31179:1 31182:2 31195:1 31197:1 31208:1
17 19:1 33:1 62:1 122:1 173:1 183:1 227:1 256:1 304:1 351:1 401:1 420:1 426:1 504:1 577:1 641:1 690:1 719:1 726:1 824:1 864:2 928:1 969:1 977:3 979:1 986:1 992:1 997:1 1002:1 1008:2 1011:1 1034:1 1039:1 1095:1 1098:1 1161:1 1166:1 1186:1 1192:1 1248:1 1269:1 1339:1 1382:1 1399:1 1414:1 1433:1 1601:1 1638:1 1644:1 1650:1 1669:1 1676:1 1714:1 1771:1 1790:1 1827:1 1851:1 1896:1 1905:1 1910:1 1921:1 1933:1 1942:1 1956:1 1961:2 1963:1 1972:1 2036:1 2078:1 2099:1 2108:1 2139:1 2270:1 2395:1 2442:1 2531:1 2552:1 2569:1 2600:1 2638:1 2650:1 2721:1 2737:2 2741:1 2757:1 2778:1 2783:1 2784:1 2799:1 2804:1 2821:1 2872:1 2964:1 3031:1 3032:2 3101:1 3110:1 3131:1 3142:1 3189:2 3197:2 3210:1 3257:1 3310:1 3313:1 3320:1 3322:1 3341:1 3392:1 3412:1 3419:1 3457:1 3563:1 3671:2 3747:1 3778:1 3779:1 3848:1 3881:2 3913:1 3992:1 4032:1 4063:1 4127:1 4128:1 4204:1 4207:2 4227:1 4262:1 4268:1 4282:1 4284:1 4337:1 4385:1 4443:1 4448:1 4463:1 4487:1 4507:1 4535:2 4754:1 4761:1 4780:1 4787:3 4842:1 4891:1 4931:1 4984:1 4985:2 5012:1 5050:1 5070:3 5147:1 5172:1 5179:1 5188:1 5192:2 5209:1 5221:1 5248:1 5296:1 5298:1 5302:1 5314:1 5329:1 5338:1 5345:1 5347:1 5355:1 5417:1 5436:1 5540:1 5544:1 5547:1 5569:1 5580:1 5600:1 5646:1 5673:1 5684:1 5735:1 5785:1 5877:1 5888:1 5889:1 5896:1 5950:1 6000:1 6013:1 6014:1 6040:1 6082:1 6121:1 6166:1 6170:1 6200:1 6202:1 6207:1 6233:1 6246:1 6268:1 6280:1 6306:1 6310:1 6312:3 6320:1 6346:1 6411:1 6433:1 6440:3 6450:1 6456:1 6484:1 6513:1 6531:1 6569:1 6589:1 6640:1 6659:1 6668:1 6705:1 6768:1 6829:1 6844:1 6865:1 6868:2 6875:1 6885:2 6886:1 6937:1 7115:1 7121:2 7171:2 7270:1 7277:1 7312:2 7332:1 7353:1 7374:1 7383:1 7395:1 7422:1 7423:1 7427:2 7598:2 7616:1 7659:1 7663:1 7676:1 7745:1 7761:1 7769:1 7775:1 7798:1 7799:1 7819:1 7955:1 7959:1 7974:1 8019:1 8034:1 8050:1 8053:1 8082:1 8092:1 8126:1 8151:2 8153:1 8161:1 8170:1 8187:1 8214:1 8247:1 8286:1 8300:1 8301:1 8305:1 8337:1 8372:1 8420:2 8440:2 8442:1 8450:1 8493:1 8509:1 8557:1 8678:1 8693:1 8716:1 8740:1 8823:1 8834:1 8837:1 8879:1 8903:1 8956:1 8961:1 8987:1 9013:1 9062:1 9077:1 9079:1 9094:1 9125:1 9131:1 9132:1 9141:1 9149:1 9165:1 9175:1 9186:1 9192:1 9224:1 9268:1 9305:2 9316:1 9367:1 9378:2 9385:1 9421:1 9500:1 9510:1 9568:2 9588:1 9685:1 9715:1 9795:2 9796:1 9857:1 9872:1 9937:1 9981:1 10051:2 10119:1 10216:1 10229:1 10273:1 10306:1 10326:2 10353:1 10368:1 10393:1 10421:1 10422:1 10451:1 10500:2 10501:1 10503:1 10516:1 10532:1 10568:1 10578:1 10623:1 10626:1 10631:1 10650:3 10676:1 10769:1 10881:1 10884:1 10891:1 10945:1 10954:1 10960:1 10972:1 11010:1 11018:1 11021:1 11035:1 11042:1 11059:2 11103:1 11113:1 11137:1 11150:1 11223:2 11237:2 11263:1 11360:1 11370:1 11373:1 11426:2 11429:1 11437:2 11445:1 11448:1 11464:1 11501:1 11522:1 11605:1 11700:1 11730:1 11745:1 11793:1 11869:1 11981:1 11996:1 12004:1 12016:1 12026:1 12038:1 12055:3 12086:2 12095:1 12103:1 12159:1 12169:1 12236:1 12246:1 12254:1 12268:1 12272:1 12290:1 12380:1 12407:1 12412:1 12435:1 12450:1 12451:1 12457:1 12473:1 12500:1 12530:1 12623:1 12708:1 12743:1 12769:1 12776:1 12827:1 12831:2 12839:1 12846:1 12890:1 12944:1 12977:1 12995:1 12996:1 13028:1 13034:2 13037:1 13038:2 13047:1 13050:1 13098:1 13138:1 13141:1 13144:1 13157:1 13171:1 13261:1 13266:1 13372:1 13374:1 13390:2 13410:1 13465:1 13468:1 13472:1 13497:1 13540:1 13579:1 13584:1 13591:1 13608:1 13680:1 13704:1 13731:2 13746:1 13799:1 13828:2 13858:1 13934:1 13937:1 13965:1 13971:2 13989:1 14051:1 14276:1 14298:1 14333:1 14339:1 14377:1 14420:1 14556:1 14690:1 14704:1 14712:1 14732:1 14753:1 14804:3 14856:1 14860:1 14897:1 14923:1 14941:1 14987:1 15176:1 15220:1 15245:1 15251:1 15271:1 15329:1 15387:1 15412:1 15443:1 15444:1 15454:1 15468:1 15495:1 15570:1 15577:1 15580:1 15608:1 15615:1 15617:1 15672:1 15704:1 15720:1 15742:1 15750:1 15859:1 15953:1 15959:3 16028:1 16056:4 16083:1 16085:1 16089:6 16105:1 16116:1 16138:1 16146:2 16259:1 16300:1 16309:2 16321:1 16361:1 16410:1 16454:2 16478:1 16508:1 16525:1 16558:1 16598:2 16638:1 16835:1 16839:1 16940:1 16948:1 16971:1 16972:1 16996:1 16997:1 17035:1 17053:1 17134:1 17213:1 17215:1 17257:3 17320:1 17330:1 17331:1 17338:1 17366:1 17390:2 17459:1 17503:2 17516:1 17620:1 17622:1 17768:2 17806:1 17814:1 17878:1 17882:1 17911:1 17977:1 17985:1 18077:1 18080:2 18164:1 18177:1 18328:1 18366:1 18380:1 18471:1 18519:1 18561:1 18592:1 18610:1 18643:1 18751:1 18759:1 18900:1 18911:1 18926:1 18974:1 18982:1 18999:1 19011:1 19022:1 19023:1 19061:1 19081:1 19085:1 19087:1 19088:1 19136:1 19180:1 19187:1 19225:1 19235:1 19276:1 19278:1 19291:1 19298:1 19362:1 19371:1 19391:1 19405:1 19584:1 19645:1 19707:1 19734:1 19810:1 19821:1 19842:1 19873:1 19911:1 19933:1 19961:1 19991:1 20058:1 20105:1 20122:1 20126:849 20264:1 20513:1 20520:1 20524:1 20556:1 20577:1 20591:1 20668:3 20707:1 20722:1 20768:1 20777:1 20816:1 20820:1 20830:1 20921:1 20923:1 21035:1 21054:1 21062:1 21122:1 21128:1 21140:1 21141:1 21145:1 21172:1 21194:1 21253:1 21286:1 21288:1 21315:1 21358:1 21437:1 21489:2 21525:1 21536:1 21587:2 21608:1 21628:1 21630:1 21670:1 21700:1 21771:1 21781:1 21815:1 21872:1 21912:1 21934:1 21949:1 21953:1 21965:1 22000:1 22030:1 22042:2 22064:1 22099:1 22150:1 22244:1 22262:1 22270:1 22281:1 22294:1 22312:1 22332:1 22366:1 22374:1 22376:1 22378:1 22390:1 22466:1 22551:1 22557:1 22571:1 22599:1 22639:1 22680:1 22711:1 22738:1 22786:1 22795:1 22837:2 22845:3 22847:1 22854:1 22888:1 22973:1 22975:1 22984:1 23011:1 23043:1 23077:1 23096:1 23180:1 23193:2 23217:1 23226:1 23280:1 23285:1 23328:1 23339:1 23371:1 23373:1 23379:2 23384:1 23424:2 23445:1 23512:1 23534:1 23559:1 23564:1 23585:1 23609:1 23629:1 23644:1 23649:1 23652:1 23702:1 23712:1 23741:1 23748:1 23758:1 23804:1 23832:1 23841:1 23843:1 23887:1 23900:1 23948:1 23952:1 23961:1 23962:1 24034:1 24051:1 24102:1 24163:1 24200:2 24207:1 24215:1 24216:1 24292:1 24318:1 24324:1 24363:1 24413:1 24442:1 24467:1 24477:1 24489:1 24499:1 24507:1 24517:1 24566:1 24582:1 24602:1 24658:1 24773:1 24793:1 24850:1 24867:3 24974:1 24975:1 24989:1 24990:1 25022:1 25060:1 25061:1 25096:1 25100:1 25256:1 25267:1 25275:2 25321:1 25349:1 25364:1 25422:1 25438:1 25442:1 25457:2 25469:1 25486:1 25507:1 25511:1 25518:2 25544:1 25577:1 25638:1 25681:1 25684:1 25695:2 25713:1 25719:1 25720:2 25782:1 25805:1 25873:1 25886:1 25968:1 25974:2 25983:1 25990:1 25998:2 26009:1 26021:1 26129:1 26155:2 26190:1 26250:1 26260:1 26262:1 26283:1 26287:1 26309:1 26316:1 26328:1 26341:1 26399:1 26541:2 26557:1 26583:1 26584:1 26602:1 26603:1 26609:1 26636:1 26669:1 26805:1 26838:1 26868:1 26885:1 26902:1 26923:1 26978:1 27074:2 27083:1 27094:3 27095:1 27115:1 27134:3 27167:1 27178:1 27206:1 27247:1 27248:1 27285:1 27297:1 27319:1 27332:1 27427:1 27439:1 27485:1 27491:1 27512:1 27541:1 27543:1 27568:1 27654:1 27770:1 27991:1 28042:1 28051:1 28053:1 28065:1 28081:1 28098:1 28102:1 28104:2 28139:1 28149:2 28212:1 28220:1 28299:2 28349:1 28389:1 28418:1 28444:3 28448:1 28499:1 28548:1 28582:1 28586:1 28622:1 28639:1 28725:1 28748:2 28811:1 28960:1 29006:2 29056:2 29061:1 29062:1 29076:1 29096:1 29148:1 29163:2 29205:1 29266:1 29290:2 29345:1 29355:1 29388:1 29402:1 29409:1 29417:1 29422:1 29504:1 29577:1 29620:1 29642:2 29681:1 29708:1 29718:1 29731:1 29746:1 29780:1 29806:4 29852:3 29865:1 29930:1 30020:1 30090:2 30104:1 30114:1 30149:1 30247:1 30330:2 30365:1 30381:1 30390:1 30392:1 30414:1 30477:1 30517:1 30556:1 30558:1 30578:1 30625:1 30676:1 30750:1 30867:1 30922:1 30931:1 30935:1 30942:1 30973:1 30978:1 30981:1 31002:1 31013:1 31036:1 31046:1 31054:1 31083:1 31087:1 31090:1 31133:1 31135:1 31143:1 31179:1 31182:2 31195:1 31197:1 31208:1
17 19:1 33:1 62:1 122:1 173:1 183:1 227:1 256:1 304:1 351:1 401:1 420:1 426:1 504:1 577:1 641:1 690:1 719:1 726:1 824:1 864:2 928:1 969:1 977:3 979:1 986:2 992:1 997:1 1002:1 1008:2 1011:1 1034:1 1039:1 1095:1 1098:2 1133:1 1161:1 1166:1 1186:1 1192:1 1210:1 1248:1 1269:1 1339:1 1382:1 1399:1 1414:1 1433:1 1601:1 1638:1 1644:1 1650:1 1669:1 1676:1 1714:1 1771:1 1790:1 1827:1 1851:1 1895:1 1896:1 1905:1 1910:1 1921:1 1933:1 1942:1 1956:1 1961:2 1963:1 1972:1 2036:1 2078:1 2099:1 2108:1 2136:1 2139:1 2164:1 2270:1 2395:1 2442:1 2530:1 2531:1 2543:2 2550:1 2552:1 2569:1 2584:1 2600:1 2638:1 2650:1 2721:1 2737:2 2741:1 2757:1 2778:1 2783:1 2784:1 2799:1 2804:1 2821:1 2872:1 2964:1 3031:1 3032:2 3101:1 3110:1 3131:1 3142:1 3147:1 3189:2 3197:3 3210:1 3257:1 3310:1 3313:2 3320:1 3322:1 3341:1 3392:1 3412:1 3419:1 3457:1 3563:1 3671:2 3747:1 3778:1 3779:1 3848:1 3881:2 3913:1 3992:1 4032:1 4063:1 4127:1 4128:1 4204:1 4207:2 4227:1 4262:1 4268:1 4282:1 4284:1 4337:1 4385:1 4443:1 4448:1 4463:1 4487:1 4507:1 4535:2 4754:1 4761:1 4780:1 4787:3 4842:1 4891:1 4931:1 4984:1 4985:2 5012:1 5050:1 5070:3 5147:1 5172:1 5179:1 5188:1 5192:2 5209:1 5221:1 5248:1 5296:1 5298:1 5302:1 5314:1 5329:1 5338:1 5345:1 5347:1 5355:1 5417:1 5436:1 5540:1 5544:1 5547:1 5569:1 5580:2 5600:1 5646:1 5673:1 5684:1 5735:1 5785:1 5877:1 5888:1 5889:1 5896:1 5950:1 6000:1 6013:1 6014:1 6040:1 6082:1 6121:1 6166:1 6170:1 6200:1 6202:1 6207:1 6233:1 6246:1 6268:1 6280:1 6306:1 6310:1 6312:3 6320:1 6346:1 6411:1 6433:1 6439:1 6440:3 6450:1 6456:1 6484:1 6513:1 6531:1 6569:1 6589:1 6640:1 6659:1 6668:1 6705:1 6727:1 6768:1 6786:1 6829:1 6844:1 6865:1 6868:2 6875:1 6885:2 6886:1 6937:1 7115:1 7121:2 7171:2 7227:1 7270:1 7277:1 7312:2 7332:1 7353:1 7374:1 7383:1 7395:1 7422:1 7423:1 7427:2 7598:2 7616:1 7659:1 7663:1 7676:1 7745:1 7761:1 7769:1 7775:1 7798:1 7799:1 7819:1 7955:1 7959:1 7974:1 8000:1 8019:1 8034:1 8050:1 8053:1 8082:1 8092:1 8126:1 8151:2 8153:1 8161:1 8170:1 8187:1 8214:1 8247:1 8286:1 8300:1 8301:1 8305:1 8337:1 8371:1 8372:1 8420:4 8440:3 8442:1 8450:1 8493:1 8509:1 8557:1 8678:1 8693:1 8716:1 8740:1 8823:1 8834:1 8837:1 8879:1 8903:1 8956:1 8961:1 8987:1 9013:1 9062:1 9077:1 9079:1 9094:1 9125:1 9129:1 9131:1 9132:1 9141:1 9149:1 9165:1 9175:1 9186:1 9192:1 9224:1 9268:1 9305:2 9316:1 9367:1 9378:2 9385:1 9390:1 9421:1 9500:1 9510:1 9568:2 9588:1 9685:1 9715:1 9795:2 9796:1 9848:1 9857:1 9872:1 9937:1 9981:1 10051:2 10092:1 10119:1 10216:2 10229:1 10254:1 10273:1 10306:1 10326:2 10353:1 10368:1 10393:1 10421:1 10422:1 10451:1 10500:2 10501:1 10503:1 10516:1 10532:1 10568:1 10578:1 10623:1 10626:1 10631:1 10650:3 10676:1 10769:1 10881:1 10884:1 10891:1 10945:1 10954:1 10960:1 10972:1 11010:1 11018:1 11021:1 11035:1 11042:1 11059:2 11103:1 11113:1 11137:1 11150:1 11223:2 11237:2 11263:1 11360:1 11370:1 11373:1 11426:2 11429:1 11437:2 11445:1 11448:1 11464:1 11501:1 11522:1 11565:1 11605:1 11700:1 11730:1 11745:1 11793:1 11869:1 11981:1 11996:1 12004:1 12016:1 12026:1 12038:1 12055:3 12086:2 12095:1 12103:1 12159:1 12169:1 12236:1 12246:1 12254:1 12268:1 12272:1 12290:1 12380:1 12407:1 12412:1 12435:1 12450:1 12451:1 12457:1 12473:1 12500:1 12530:1 12623:1 12708:1 12743:1 12769:1 12776:1 12827:1 12831:2 12839:1 12846:1 12890:1 12944:1 12977:1 12995:1 12996:1 13028:1 13034:2 13037:1 13038:2 13047:1 13050:1 13098:1 13138:1 13141:1 13144:1 13157:1 13163:1 13171:1 13261:1 13266:1 13372:1 13374:1 13390:2 13410:1 13465:1 13468:1 13472:1 13497:1 13540:1 13579:1 13584:1 13591:1 13608:1 13680:1 13695:1 13704:1 13731:2 13746:1 13799:1 13828:2 13858:1 13934:1 13937:1 13965:1 13971:2 13989:1 14051:1 14276:1 14298:1 14333:1 14339:1 14377:1 14420:1 14556:1 14690:1 14704:1 14712:1 14732:2 14753:1 14803:1 14804:3 14843:1 14856:1 14860:1 14877:1 14897:1 14923:1 14931:1 14941:1 14987:1 15020:1 15176:1 15220:1 15245:1 15251:1 15271:1 15329:1 15387:1 15412:1 15443:1 15444:1 15454:1 15468:1 15495:1 15570:1 15577:1 15580:1 15605:1 15608:1 15615:1 15617:1 15672:1 15704:1 15720:1 15742:1 15750:1 15789:1 15859:1 15953:1 15959:3 16028:1 16056:4 16083:1 16085:1 16089:6 16105:1 16116:1 16138:1 16146:2 16259:1 16300:1 16309:2 16321:1 16361:1 16410:1 16454:2 16478:1 16508:1 16525:1 16558:1 16598:2 16633:1 16638:1 16744:1 16835:1 16839:1 16940:1 16948:1 16971:1 16972:1 16995:1 16996:1 16997:1 17035:1 17053:1 17134:1 17153:1 17213:1 17215:1 17240:1 17257:3 17320:1 17330:1 17331:1 17338:1 17366:1 17390:2 17459:1 17503:2 17516:1 17620:1 17622:1 17768:2 17806:1 17814:1 17878:1 17882:1 17911:1 17977:1 17985:1 18005:1 18077:1 18080:2 18164:1 18177:1 18328:1 18366:1 18380:1 18471:1 18519:1 18561:1 18592:1 18608:1 18610:1 18643:1 18751:1 18759:1 18796:1 18900:1 18911:1 18926:1 18974:1 18982:1 18999:1 19011:1 19022:1 19023:1 19061:1 19081:1 19083:1 19085:1 19087:1 19088:1 19136:1 19180:1 19187:1 19225:1 19235:1 19255:1 19263:1 19276:1 19278:1 19291:1 19298:1 19362:1 19371:1 19391:1 19405:1 19584:1 19645:1 19707:1 19734:1 19810:1 19821:1 19842:1 19862:1 19873:1 19911:1 19933:1 19961:1 19991:1 20058:1 20105:1 20122:1 20126:884 20184:1 20264:1 20513:1 20520:1 20524:1 20556:1 20577:1 20591:1 20668:3 20707:1 20722:1 20768:1 20777:1 20782:1 20816:1 20820:1 20830:1 20921:1 20923:1 21035:1 21054:1 21062:1 21122:1 21128:1 21140:1 21141:1 21145:1 21172:1 21194:1 21253:1 21286:1 21288:1 21315:1 21358:1 21437:1 21489:2 21525:1 21536:1 21587:2 21592:1 21608:1 21628:1 21630:1 21631:1 21670:1 21700:1 21771:1 21781:1 21815:1 21872:1 21912:1 21934:1 21949:1 21953:1 21965:1 22000:1 22003:1 22030:1 22042:2 22064:1 22099:1 22150:1 22244:1 22262:1 22270:1 22281:1 22294:1 22312:1 22332:1 22366:1 22374:1 22376:1 22378:1 22390:1 22466:1 22551:1 22557:1 22571:1 22599:1 22639:1 22680:1 22711:1 22738:1 22786:1 22795:1 22837:2 22845:4 22847:1 22854:1 22888:1 22973:1 22975:1 22984:1 23011:1 23043:1 23077:1 23096:1 23180:1 23193:2 23217:1 23226:1 23280:1 23285:1 23328:1 23339:1 23371:1 23373:1 23379:2 23384:1 23400:1 23424:2 23445:1 23512:1 23534:1 23559:1 23564:1 23585:1 23609:1 23629:1 23644:1 23649:1 23652:1 23702:1 23712:1 23741:1 23748:1 23758:1 23804:1 23832:1 23841:1 23843:1 23887:1 23900:1 23948:1 23952:1 23961:1 23962:1 24034:1 24051:2 24102:1 24163:1 24200:2 24207:1 24215:1 24216:1 24292:1 24314:1 24318:1 24324:1 24363:1 24394:1 24413:1 24442:1 24467:1 24477:1 24489:1 24499:1 24507:1 24517:1 24566:1 24582:1 24602:1 24658:1 24675:1 24773:1 24793:1 24850:1 24867:3 24964:1 24974:1 24975:2 24989:1 24990:1 25022:1 25060:1 25061:1 25096:1 25100:1 25136:1 25256:1 25267:2 25275:2 25321:1 25349:1 25360:1 25364:1 25422:1 25438:1 25442:1 25457:2 25469:1 25486:1 25507:1 25511:1 25518:2 25544:1 25577:1 25638:1 25681:1 25684:1 25695:2 25713:1 25719:1 25720:2 25782:1 25805:1 25873:1 25886:1 25968:1 25974:2 25983:1 25990:1 25998:2 26009:1 26021:1 26048:1 26129:1 26155:2 26190:1 26250:1 26260:1 26262:1 26283:1 26287:1 26309:1 26316:1 26328:1 26341:1 26399:1 26541:2 26557:1 26583:1 26584:1 26602:1 26603:1 26609:1 26636:1 26669:1 26804:1 26805:1 26838:1 26868:1 26885:1 26902:1 26923:1 26978:1 27074:2 27083:1 27094:3 27095:1 27115:1 27134:3 27167:1 27178:1 27206:1 27247:1 27248:1 27285:1 27297:1 27319:1 27332:1 27427:1 27439:1 27485:1 27491:1 27512:1 27541:1 27543:1 27568:1 27654:1 27770:1 27881:1 27991:1 28042:1 28051:1 28053:1 28065:1 28081:1 28098:1 28102:1 28104:2 28139:1 28149:2 28151:1 28212:1 28220:1 28299:2 28349:1 28389:1 28418:1 28444:3 28448:1 28499:1 28548:1 28582:1 28586:1 28622:1 28639:1 28725:1 28748:2 28811:1 28921:1 28960:1 29006:2 29056:2 29061:1 29062:1 29076:1 29096:1 29133:1 29148:1 29163:2 29205:1 29266:1 29290:2 29345:1 29355:1 29367:1 29388:1 29402:1 29409:1 29417:1 29422:1 29483:1 29504:1 29577:1 29620:1 29642:2 29681:1 29708:1 29718:1 29731:1 29746:1 29780:1 29806:4 29852:3 29865:1 29882:1 29930:1 30020:1 30033:1 30053:1 30090:2 30104:1 30114:1 30149:1 30247:1 30330:2 30365:2 30381:1 30390:1 30392:1 30414:1 30477:1 30494:1 30517:1 30556:1 30558:1 30574:1 30578:1 30625:1 30676:1 30750:1 30867:1 30922:1 30931:1 30935:1 30942:1 30973:1 30978:1 30981:1 31002:1 31013:1 31036:1 31046:1 31054:1 31083:1 31087:1 31090:1 31133:1 31135:1 31143:1 31179:1 31182:2 31190:1 31195:1 31197:1 31208:1
17 19:1 33:1 62:1 122:1 173:1 183:1 227:1 256:1 304:1 351:1 358:1 401:2 420:1 426:1 504:1 577:1 591:1 641:1 690:1 719:1 726:1 817:1 824:1 864:2 928:2 969:1 977:3 979:1 986:2 992:1 997:1 1002:1 1008:2 1011:2 1028:1 1034:1 1036:1 1039:1 1095:1 1098:2 1133:1 1161:1 1166:1 1186:1 1192:1 1210:1 1248:1 1269:1 1339:1 1382:1 1399:1 1414:1 1433:1 1601:1 1638:1 1644:1 1650:1 1669:1 1676:1 1688:1 1714:1 1717:1 1771:1 1790:1 1827:1 1851:1 1895:1 1896:1 1905:1 1910:1 1921:2 1933:1 1942:1 1956:1 1961:2 1963:1 1972:1 2027:1 2036:1 2078:1 2099:1 2108:1 2126:1 2136:1 2139:1 2164:1 2224:1 2270:1 2395:1 2442:1 2525:1 2530:2 2531:1 2543:2 2550:1 2552:1 2556:1 2569:1 2584:1 2600:1 2638:1 2650:1 2697:1 2721:1 2737:2 2741:1 2757:1 2778:1 2783:1 2784:1 2799:1 2804:1 2809:1 2821:1 2872:1 2964:1 3031:1 3032:2 3101:1 3110:1 3131:1 3142:1 3147:1 3189:2 3197:3 3210:1 3257:2 3310:1 3313:2 3320:1 3322:1 3341:1 3392:1 3412:1 3419:1 3457:1 3563:1 3671:2 3747:2 3778:1 3779:1 3797:1 3848:1 3881:2 3913:1 3992:1 4032:1 4063:1 4097:1 4127:1 4128:1 4204:1 4207:2 4227:1 4262:1 4264:1 4268:1 4282:1 4284:1 4336:1 4337:1 4385:1 4443:1 4446:1 4448:1 4463:1 4487:1 4507:1 4535:2 4712:1 4754:1 4761:2 4780:1 4787:3 4842:1 4843:1 4891:1 4931:1 4955:1 4984:1 4985:2 4997:1 5012:1 5024:1 5050:1 5070:3 5147:1 5172:1 5179:1 5188:2 5192:3 5209:1 5221:1 5248:1 5281:1 5296:1 5298:1 5302:1 5312:1 5314:1 5329:1 5338:1 5345:1 5347:1 5355:1 5357:1 5417:1 5436:1 5540:1 5544:1 5547:1 5569:1 5580:2 5600:1 5646:1 5673:1 5684:1 5735:1 5785:1 5877:1 5888:1 5889:1 5896:1 5950:1 6000:1 6013:1 6014:1 6040:1 6082:1 6121:1 6166:1 6170:1 6200:1 6202:1 6207:1 6233:1 6246:1 6268:1 6280:1 6293:1 6298:1 6306:1 6310:1 6312:3 6320:1 6346:1 6411:1 6433:2 6439:1 6440:3 6450:1 6456:1 6467:1 6484:1 6513:1 6531:2 6569:1 6589:1 6640:1 6659:1 6668:1 6705:2 6727:1 6768:1 6786:1 6829:1 6844:1 6865:2 6868:2 6875:1 6885:2 6886:1 6937:1 7078:1 7115:1 7121:2 7171:2 7227:1 7270:1 7277:1 7312:2 7332:1 7353:1 7374:1 7383:1 7395:1 7422:1 7423:1 7427:2 7598:3 7616:1 7659:1 7663:1 7676:1 7745:1 7761:1 7769:1 7775:1 7798:1 7799:1 7819:1 7955:1 7959:1 7974:1 8000:1 8019:1 8034:1 8050:1 8053:1 8082:1 8092:1 8126:2 8151:2 8153:1 8161:1 8170:1 8187:1 8214:2 8247:1 8286:1 8300:1 8301:1 8305:1 8337:1 8353:1 8371:1 8372:1 8420:7 8440:3 8442:2 8450:1 8493:1 8509:1 8557:1 8642:1 8650:1 8678:1 8693:1 8716:1 8740:1 8823:1 8834:1 8837:1 8879:1 8903:1 8940:1 8956:1 8961:1 8963:1 8987:1 9013:1 9062:1 9077:1 9079:1 9094:1 9125:1 9129:1 9131:1 9132:1 9141:1 9149:1 9165:1 9175:1 9186:1 9192:1 9194:1 9224:1 9227:1 9268:1 9305:2 9316:1 9367:1 9378:3 9385:1 9390:1 9421:1 9500:1 9510:1 9568:2 9588:1 9685:1 9715:1 9795:2 9796:1 9848:1 9857:1 9872:1 9937:1 9981:1 10051:2 10092:1 10119:1 10191:1 10216:2 10229:1 10254:1 10273:1 10306:1 10326:2 10353:1 10368:1 10393:1 10421:1 10422:1 10451:1 10500:2 10501:1 10503:1 10516:1 10532:1 10568:1 10578:1 10623:1 10626:1 10631:1 10650:3 10676:1 10769:1 10881:1 10884:1 10891:1 10945:1 10954:1 10960:1 10972:1 11010:1 11018:1 11021:1 11035:1 11042:1 11059:2 11103:1 11113:1 11137:1 11150:1 11223:2 11237:2 11263:1 11358:1 11360:1 11370:1 11373:1 11426:3 11429:1 11437:2 11445:1 11448:1 11464:1 11481:1 11501:1 11522:1 11565:1 11605:1 11664:1 11700:1 11703:1 11730:1 11745:1 11793:1 11869:1 11981:1 11996:1 12004:1 12016:1 12026:1 12038:1 12039:1 12052:1 12055:3 12086:2 12095:1 12103:1 12159:1 12169:1 12236:1 12246:2 12254:1 12268:1 12272:1 12290:1 12377:1 12380:1 12407:1 12412:1 12435:1 12450:1 12451:1 12457:1 12473:1 12500:1 12530:1 12623:1 12708:1 12711:1 12743:1 12769:1 12773:1 12776:1 12780:1 12827:1 12831:2 12839:1 12846:1 12890:1 12944:1 12977:1 12995:1 12996:1 13028:1 13034:2 13037:1 13038:2 13047:1 13050:1 13098:1 13138:1 13141:1 13144:1 13157:1 13163:1 13169:1 13171:1 13253:1 13261:1 13266:1 13372:1 13374:1 13390:2 13410:1 13439:1 13465:1 13468:1 13472:1 13497:1 13540:1 13579:1 13584:1 13591:1 13608:1 13680:1 13695:1 13704:1 13725:1 13731:2 13746:1 13799:1 13828:2 13858:1 13934:1 13937:1 13965:1 13971:2 13989:1 14051:1 14200:1 14276:1 14294:1 14298:1 14333:1 14339:1 14377:1 14420:1 14504:1 14556:1 14690:1 14704:1 14712:1 14732:2 14753:1 14803:1 14804:3 14843:1 14856:1 14860:1 14877:1 14882:1 14897:1 14915:1 14923:1 14931:1 14941:1 14987:1 15020:1 15176:1 15220:1 15245:1 15248:1 15251:1 15271:1 15297:1 15329:1 15371:1 15387:1 15400:1 15412:1 15439:1 15443:1 15444:1 15454:1 15468:1 15495:1 15570:1 15577:1 15580:1 15605:1 15608:1 15615:1 15617:1 15672:1 15695:1 15704:1 15720:1 15742:1 15750:1 15789:1 15859:1 15953:1 15959:3 16028:1 16029:1 16056:4 16083:1 16085:1 16089:6 16105:1 16116:1 16138:1 16146:2 16259:1 16298:1 16300:1 16309:2 16321:1 16361:1 16410:1 16443:1 16454:2 16478:1 16508:1 16525:1 16558:1 16598:2 16633:1 16638:1 16669:1 16744:1 16835:1 16839:1 16914:1 16940:1 16948:1 16965:1 16971:1 16972:1 16995:1 16996:1 16997:1 17018:1 17022:1 17035:1 17053:1 17134:1 17153:1 17213:1 17215:1 17240:1 17257:3 17320:1 17330:1 17331:1 17338:1 17366:1 17390:2 17459:1 17503:2 17516:1 17610:1 17620:1 17622:1 17768:2 17806:1 17814:1 17878:1 17882:1 17911:1 17977:1 17985:1 18005:1 18054:1 18077:1 18080:2 18164:2 18177:1 18328:1 18366:1 18380:1 18406:1 18471:1 18519:1 18561:1 18592:1 18608:1 18610:1 18636:1 18643:1 18751:1 18759:1 18796:1 18900:1 18911:1 18926:1 18974:1 18982:1 18999:1 19011:1 19022:1 19023:2 19061:1 19081:1 19083:1 19085:1 19087:1 19088:1 19136:1 19180:1 19187:1 19225:1 19235:1 19255:1 19263:1 19276:1 19278:1 19291:1 19298:1 19321:1 19362:1 19371:1 19391:1 19405:1 19584:1 19645:1 19700:1 19707:1 19721:1 19734:1 19810:1 19821:1 19842:1 19862:1 19873:1 19911:1 19933:1 19961:1 19991:1 19996:1 20058:1 20105:1 20122:1 20126:949 20184:1 20264:1 20513:1 20520:1 20524:1 20556:1 20577:1 20591:1 20600:1 20668:3 20707:1 20722:1 20768:1 20777:1 20782:1 20816:1 20820:1 20830:1 20921:1 20923:1 21035:1 21054:1 21062:1 21122:1 21128:1 21140:1 21141:1 21145:1 21172:1 21194:1 21227:1 21253:1 21286:2 21288:1 21315:1 21358:1 21437:1 21489:2 21525:1 21536:1 21587:2 21592:1 21597:1 21608:1 21628:1 21630:1 21631:1 21670:2 21677:1 21700:1 21771:1 21781:2 21815:1 21872:1 21912:1 21934:1 21949:1 21953:1 21965:1 22000:1 22003:1 22030:1 22042:2 22057:1 22064:1 22099:1 22150:1 22244:1 22262:1 22270:2 22281:1 22294:1 22303:1 22312:1 22332:1 22366:1 22374:1 22376:2 22378:1 22390:1 22391:1 22466:1 22551:1 22557:1 22571:1 22599:1 22639:1 22680:1 22711:1 22738:1 22786:1 22795:1 22837:2 22844:1 22845:4 22847:1 22854:1 22888:1 22953:1 22973:1 22975:1 22984:1 23011:1 23043:1 23077:1 23096:1 23180:1 23193:2 23217:1 23226:1 23280:1 23285:1 23328:1 23339:1 23371:2 23373:1 23379:2 23384:1 23387:1 23400:1 23409:1 23424:2 23445:1 23512:1 23534:1 23559:1 23564:1 23585:1 23609:1 23629:1 23644:1 23649:1 23652:1 23702:1 23712:2 23741:1 23748:1 23758:1 23766:1 23804:1 23832:1 23840:1 23841:1 23843:1 23887:1 23897:1 23900:1 23948:2 23952:1 23961:1 23962:2 24034:1 24051:2 24102:1 24163:1 24200:2 24207:1 24215:1 24216:1 24292:1 24314:1 24318:2 24324:1 24363:1 24394:1 24405:1 24413:1 24417:1 24442:1 24447:1 24467:1 24477:1 24489:1 24499:1 24507:1 24517:1 24566:1 24582:1 24602:1 24658:1 24675:1 24773:1 24793:1 24850:2 24867:3 24912:1 24964:1 24974:1 24975:2 24986:1 24989:1 24990:1 25022:1 25060:1 25061:1 25096:1 25100:1 25106:1 25124:1 25136:1 25172:1 25256:1 25267:2 25275:2 25321:1 25349:1 25360:1 25364:1 25422:1 25438:1 25442:1 25457:2 25469:1 25486:1 25507:2 25511:1 25518:2 25544:1 25577:1 25638:1 25681:1 25684:1 25695:2 25713:1 25719:1 25720:2 25782:1 25805:1 25846:1 25873:1 25886:1 25968:1 25974:2 25983:1 25990:2 25998:2 26009:1 26021:1 26048:1 26129:1 26155:2 26190:1 26250:1 26260:1 26262:1 26283:1 26287:1 26309:1 26316:1 26328:1 26341:1 26399:1 26541:2 26557:1 26583:1 26584:1 26602:1 26603:1 26609:1 26636:1 26669:1 26739:1 26741:1 26804:1 26805:1 26838:1 26868:1 26885:1 26902:1 26923:1 26968:1 26978:1 27055:1 27074:2 27083:1 27094:3 27095:1 27115:1 27134:3 27167:1 27178:1 27206:1 27227:1 27247:1 27248:1 27285:1 27295:1 27297:1 27319:1 27332:1 27427:1 27439:1 27445:1 27485:1 27491:1 27512:2 27541:1 27543:1 27568:1 27654:1 27770:2 27773:1 27875:1 27881:1 27907:1 27991:1 28042:1 28051:1 28053:2 28065:1 28081:1 28098:1 28102:1 28104:2 28139:1 28149:2 28151:1 28212:1 28220:1 28299:2 28349:1 28389:1 28418:1 28444:3 28448:1 28499:1 28548:1 28582:1 28586:1 28599:1 28622:1 28639:1 28674:1 28725:1 28748:2 28804:1 28811:1 28921:1 28960:1 29006:2 29015:1 29056:2 29061:1 29062:1 29076:1 29096:1 29122:1 29133:1 29148:1 29163:2 29178:1 29205:1 29266:1 29290:2 29345:2 29355:1 29367:1 29388:1 29402:1 29409:1 29417:1 29422:1 29483:1 29504:1 29577:1 29620:1 29642:2 29673:1 29681:1 29708:1 29718:1 29731:1 29746:1 29780:1 29806:5 29852:3 29865:1 29882:1 29930:1 30020:1 30033:1 30045:1 30053:1 30090:2 30104:1 30114:1 30116:1 30149:1 30247:2 30330:2 30365:2 30381:1 30390:1 30392:1 30414:1 30429:1 30477:1 30494:1 30517:1 30556:1 30558:1 30574:1 30578:1 30625:1 30676:1 30750:1 30867:1 30922:2 30931:1 30935:1 30942:1 30973:1 30978:1 30981:1 31002:1 31013:1 31036:1 31046:1 31054:1 31071:1 31083:1 31087:1 31090:2 31133:2 31135:1 31143:1 31179:1 31182:2 31190:1 31195:1 31197:1 31208:1
17 19:2 33:1 61:1 62:1 122:1 173:1 183:1 227:1 256:2 304:1 351:1 358:1 401:2 420:1 426:1 504:1 577:1 591:1 641:1 690:1 719:1 726:1 817:1 824:1 864:3 928:2 969:1 977:3 979:1 986:2 992:1 997:1 1002:1 1008:2 1011:2 1028:1 1034:1 1036:1 1039:1 1095:1 1098:2 1133:1 1161:1 1166:1 1175:1 1186:1 1192:1 1210:1 1248:1 1269:1 1339:1 1382:1 1399:1 1414:1 1433:1 1601:1 1638:1 1644:1 1650:1 1669:1 1676:1 1688:1 1714:1 1717:1 1771:1 1790:1 1827:1 1833:1 1851:1 1895:1 1896:1 1905:1 1910:1 1921:2 1933:1 1942:1 1956:1 1961:2 1963:2 1972:1 2027:1 2036:1 2078:1 2099:1 2108:1 2126:1 2136:1 2139:1 2164:1 2224:1 2270:1 2395:1 2442:1 2525:1 2530:2 2531:1 2543:2 2550:1 2552:1 2556:1 2569:1 2584:1 2600:2 2638:1 2650:1 2697:1 2721:1 2737:3 2741:1 2757:1 2778:1 2783:1 2784:1 2799:1 2804:1 2809:1 2821:1 2872:1 2964:1 3031:1 3032:2 3101:1 3110:1 3131:1 3142:1 3147:1 3189:3 3197:3 3210:1 3257:2 3310:1 3313:2 3320:1 3322:1 3341:1 3392:1 3412:1 3419:1 3457:1 3563:1 3671:2 3747:2 3778:1 3779:1 3797:1 3848:1 3881:2 3913:1 3992:1 4032:1 4063:1 4097:1 4127:1 4128:1 4204:1 4207:2 4227:1 4262:1 4264:1 4268:1 4282:1 4284:1 4336:1 4337:1 4385:1 4443:1 4446:1 4448:1 4463:1 4468:1 4487:1 4507:1 4518:1 4535:2 4606:1 4712:1 4754:1 4761:2 4780:1 4787:3 4842:1 4843:1 4891:1 4931:1 4955:1 4981:1 4984:1 4985:3 4997:1 5012:1 5024:1 5050:1 5070:3 5147:1 5172:1 5179:1 5188:2 5192:3 5209:1 5221:1 5248:1 5281:1 5296:1 5298:1 5302:1 5312:1 5314:1 5329:1 5338:1 5345:1 5347:1 5355:1 5357:1 5417:1 5436:1 5540:2 5544:1 5547:1 5569:1 5580:2 5600:1 5646:1 5651:1 5673:1 5684:1 5735:1 5761:1 5785:1 5877:1 5888:1 5889:1 5896:1 5950:1 6000:1 6013:1 6014:1 6040:2 6082:1 6121:1 6166:1 6170:1 6200:2 6202:1 6207:1 6233:1 6246:1 6268:1 6280:1 6293:1 6298:1 6306:1 6310:1 6312:3 6320:1 6346:1 6411:2 6433:2 6439:1 6440:3 6450:1 6456:1 6467:1 6484:1 6513:1 6531:2 6569:1 6575:1 6589:1 6640:1 6659:1 6661:1 6668:1 6672:1 6705:2 6727:1 6768:1 6786:1 6829:1 6844:1 6865:2 6868:2 6875:1 6885:2 6886:1 6937:1 7078:1 7115:1 7121:2 7171:3 7227:1 7270:1 7277:1 7312:2 7332:1 7353:1 7374:1 7383:1 7395:1 7422:1 7423:1 7427:2 7598:3 7616:1 7659:1 7663:1 7676:1 7745:1 7761:1 7769:1 7775:1 7798:1 7799:1 7819:1 7955:1 7959:1 7974:1 8000:1 8019:1 8034:1 8050:1 8053:1 8082:1 8092:1 8126:2 8151:2 8153:1 8161:1 8170:1 8187:1 8214:2 8247:1 8286:1 8300:1 8301:1 8305:1 8337:2 8353:1 8371:1 8372:2 8420:7 8440:3 8442:2 8450:1 8493:1 8509:1 8557:1 8642:1 8650:1 8678:1 8693:1 8716:1 8740:1 8823:2 8834:1 8837:2 8879:1 8903:1 8940:1 8956:1 8961:1 8963:1 8987:1 9013:1 9062:1 9077:1 9079:1 9094:1 9125:1 9129:1 9131:1 9132:1 9141:1 9149:1 9165:1 9175:1 9186:1 9192:1 9194:1 9224:1 9227:1 9268:1 9305:2 9316:1 9367:1 9378:3 9385:1 9390:1 9421:1 9500:1 9510:1 9568:2 9588:1 9685:1 9715:1 9795:3 9796:1 9848:1 9850:1 9857:1 9872:1 9937:1 9981:1 10051:2 10092:1 10119:1 10191:1 10216:2 10229:1 10254:1 10273:1 10306:1 10326:2 10353:1 10368:1 10393:1 10421:1 10422:1 10451:1 10500:3 10501:1 10503:2 10516:1 10532:1 10554:1 10568:1 10578:1 10623:1 10626:1 10631:1 10650:3 10671:1 10676:1 10769:1 10881:1 10884:1 10891:1 10945:1 10954:1 10960:2 10972:1 11010:1 11018:1 11021:1 11035:1 11042:1 11059:3 11103:1 11113:1 11137:1 11150:1 11223:2 11237:2 11263:1 11358:1 11360:1 11370:1 11373:1 11426:3 11429:1 11437:2 11445:1 11448:1 11464:1 11481:1 11501:1 11522:1 11565:1 11605:1 11664:1 11700:1 11703:1 11730:1 11745:1 11793:1 11869:2 11981:1 11996:1 12004:1 12016:2 12026:1 12038:1 12039:1 12052:1 12055:4 12086:2 12095:1 12103:1 12159:1 12169:1 12236:1 12246:2 12254:1 12268:1 12272:1 12290:1 12377:1 12380:1 12407:1 12412:1 12435:1 12450:1 12451:1 12457:1 12473:1 12500:1 12530:1 12623:1 12708:1 12711:1 12743:1 12769:1 12773:1 12776:1 12780:1 12827:1 12831:2 12839:1 12846:1 12890:1 12944:1 12977:1 12995:1 12996:1 13028:1 13034:2 13037:1 13038:2 13047:1 13050:1 13098:1 13138:1 13141:1 13144:1 13157:1 13163:1 13169:1 13171:1 13173:1 13222:1 13253:1 13261:1 13266:1 13372:1 13374:1 13390:2 13399:1 13410:1 13439:1 13465:1 13468:1 13472:1 13497:1 13540:1 13579:1 13584:1 13591:1 13608:1 13680:1 13695:1 13704:1 13725:1 13731:2 13746:1 13799:1 13828:3 13858:1 13934:1 13937:1 13965:1 13971:2 13989:1 14051:1 14200:1 14276:1 14294:1 14298:1 14333:1 14339:1 14377:1 14420:1 14504:1 14556:1 14690:1 14704:1 14712:1 14732:2 14753:1 14803:1 14804:3 14843:1 14856:1 14860:1 14877:1 14882:1 14888:1 14897:1 14915:1 14923:1 14931:1 14941:1 14987:1 15020:1 15176:1 15220:1 15245:1 15248:1 15251:1 15271:1 15297:1 15329:1 15371:1 15387:1 15400:1 15412:1 15439:1 15443:1 15444:1 15454:1 15468:1 15495:1 15570:1 15577:1 15580:2 15605:1 15608:1 15615:1 15617:1 15672:1 15695:1 15704:1 15718:1 15720:1 15742:1 15750:1 15789:1 15859:1 15953:1 15959:3 16028:1 16029:1 16056:4 16083:1 16085:1 16089:6 16105:1 16116:1 16138:1 16146:3 16259:1 16298:1 16300:1 16309:2 16321:1 16361:1 16410:2 16443:1 16454:2 16478:1 16508:1 16519:1 16525:1 16558:1 16596:1 16598:3 16633:1 16635:1 16638:1 16669:1 16744:1 16835:1 16839:2 16914:1 16940:1 16948:1 16965:1 16971:1 16972:1 16995:1 16996:1 16997:1 17018:1 17022:1 17035:1 17053:1 17134:1 17153:1 17213:1 17215:1 17240:1 17257:3 17320:1 17330:1 17331:1 17338:1 17366:1 17390:2 17459:1 17503:2 17516:1 17581:1 17610:1 17620:1 17622:1 17768:2 17806:1 17814:1 17878:1 17882:1 17911:1 17977:1 17985:1 18005:1 18054:1 18077:1 18080:2 18164:2 18177:1 18328:1 18366:1 18380:1 18406:1 18471:1 18519:1 18561:1 18592:1 18608:1 18610:1 18636:1 18643:1 18751:1 18759:1 18796:1 18900:1 18911:1 18926:1 18974:1 18982:1 18999:1 19011:1 19022:1 19023:2 19061:1 19081:1 19083:1 19085:1 19087:1 19088:1 19136:2 19180:1 19187:1 19225:1 19235:1 19255:1 19263:1 19276:1 19278:1 19291:1 19298:1 19321:1 19362:1 19371:1 19391:1 19405:1 19584:1 19645:1 19650:1 19660:1 19700:1 19707:1 19721:1 19734:1 19810:1 19821:1 19842:1 19862:1 19873:1 19911:1 19933:1 19961:1 19991:1 19996:1 20058:1 20105:1 20122:1 20126:1014 20184:1 20264:1 20513:1 20520:1 20524:1 20556:1 20577:1 20591:1 20600:1 20668:3 20707:1 20722:1 20768:1 20777:1 20782:1 20816:1 20820:1 20830:1 20921:1 20923:1 21035:1 21054:1 21062:1 21122:1 21128:1 21140:2 21141:1 21145:1 21165:1 21172:1 21194:1 21227:1 21253:1 21286:2 21288:1 21315:1 21358:1 21437:1 21489:2 21525:1 21536:1 21587:2 21592:1 21597:1 21608:1 21628:1 21630:1 21631:1 21670:2 21677:1 21700:1 21771:1 21781:2 21815:1 21872:1 21912:1 21934:1 21949:1 21953:1 21965:1 22000:1 22003:1 22030:1 22042:2 22057:1 22064:1 22099:1 22150:1 22201:1 22244:1 22262:1 22270:2 22281:1 22294:1 22303:1 22312:1 22332:1 22366:1 22374:1 22376:2 22378:1 22390:1 22391:1 22466:1 22551:1 22557:1 22571:1 22599:1 22639:1 22680:1 22711:1 22738:1 22786:1 22795:1 22837:2 22844:1 22845:4 22847:1 22854:1 22888:1 22953:1 22973:1 22975:1 22984:1 23011:1 23043:1 23077:1 23096:1 23180:1 23193:2 23217:1 23226:1 23280:1 23285:1 23301:1 23328:1 23339:1 23371:2 23373:1 23379:3 23384:1 23387:1 23400:1 23409:1 23424:2 23445:1 23512:1 23534:2 23559:1 23564:1 23585:2 23609:1 23629:1 23644:2 23649:1 23652:1 23702:1 23712:2 23741:1 23748:1 23758:1 23766:1 23804:1 23832:1 23840:1 23841:1 23843:1 23887:1 23897:1 23900:1 23948:2 23952:1 23961:1 23962:2 24034:1 24051:3 24102:1 24142:1 24163:1 24200:2 24207:1 24215:1 24216:1 24292:1 24314:1 24318:2 24324:1 24363:2 24394:1 24405:1 24413:1 24417:1 24442:1 24447:1 24467:1 24477:1 24489:1 24499:1 24507:1 24517:1 24566:1 24582:1 24602:1 24606:1 24658:1 24675:1 24773:1 24793:1 24850:2 24867:3 24912:1 24964:1 24974:1 24975:2 24986:1 24989:1 24990:1 25022:1 25060:1 25061:1 25096:1 25100:1 25106:1 25124:1 25136:1 25172:1 25256:1 25267:2 25275:2 25321:1 25349:1 25360:1 25364:1 25422:1 25438:1 25442:1 25445:1 25457:2 25469:1 25486:1 25507:2 25511:1 25518:2 25544:1 25577:1 25638:2 25681:2 25684:1 25695:3 25713:1 25719:1 25720:2 25782:1 25805:1 25846:1 25873:1 25886:1 25968:1 25974:2 25983:1 25990:2 25998:2 26009:1 26021:1 26048:1 26129:1 26155:2 26190:1 26250:2 26260:1 26262:1 26283:1 26287:1 26309:1 26316:1 26328:1 26341:1 26399:1 26541:2 26557:1 26583:1 26584:1 26602:1 26603:1 26609:1 26636:1 26669:1 26739:1 26741:1 26804:1 26805:1 26838:1 26868:1 26885:1 26902:1 26923:1 26968:1 26978:1 27055:1 27074:2 27083:1 27094:3 27095:1 27115:1 27134:3 27167:1 27178:1 27206:1 27227:1 27247:2 27248:1 27285:1 27295:1 27297:1 27319:1 27332:1 27427:1 27439:2 27445:1 27485:1 27491:1 27512:2 27541:1 27543:1 27568:1 27654:1 27770:2 27773:1 27794:1 27875:1 27881:1 27907:1 27991:1 28042:1 28051:1 28053:2 28065:1 28081:1 28098:1 28102:1 28104:2 28139:1 28149:2 28151:1 28212:1 28220:1 28299:2 28349:1 28389:1 28412:1 28418:1 28444:3 28448:1 28482:1 28499:1 28548:1 28582:1 28586:1 28599:1 28622:1 28639:1 28674:1 28691:1 28725:1 28741:1 28748:2 28804:1 28811:1 28921:1 28960:1 29006:2 29015:1 29056:2 29061:1 29062:1 29076:1 29096:1 29122:1 29133:1 29148:1 29163:2 29178:1 29205:1 29266:1 29290:2 29298:1 29345:2 29355:1 29367:1 29388:1 29402:2 29409:1 29417:1 29422:1 29448:1 29483:1 29504:1 29537:1 29577:1 29620:2 29642:2 29673:1 29681:1 29708:1 29718:1 29731:1 29746:1 29780:1 29806:5 29852:3 29865:1 29882:1 29930:1 30020:1 30033:1 30045:1 30053:1 30090:2 30104:1 30114:1 30116:1 30149:1 30247:2 30330:3 30365:2 30381:1 30390:1 30392:1 30414:1 30429:1 30477:1 30494:1 30517:1 30556:1 30558:1 30574:1 30578:1 30597:1 30625:1 30676:1 30750:1 30867:2 30922:2 30931:1 30935:1 30942:1 30973:1 30978:1 30981:1 31002:1 31013:1 31036:1 31046:2 31054:1 31071:1 31083:1 31087:1 31090:2 31133:2 31135:1 31143:1 31179:1 31182:2 31183:1 31190:1 31195:1 31197:1 31208:1
17 19:2 33:1 61:1 62:1 122:1 173:1 183:1 227:1 256:2 304:1 351:1 358:1 401:2 404:1 420:1 422:1 426:1 504:2 577:1 591:1 641:1 690:1 719:1 726:1 817:1 824:1 864:3 928:2 969:1 977:3 979:1 986:3 992:1 997:1 1002:1 1008:2 1011:2 1028:1 1034:2 1036:1 1039:1 1095:1 1098:2 1129:1 1133:1 1145:1 1161:1 1166:1 1175:1 1186:1 1192:1 1204:1 1210:1 1248:1 1269:1 1339:1 1382:1 1399:1 1414:1 1433:1 1462:1 1601:1 1638:2 1644:1 1650:1 1669:1 1676:1 1688:1 1714:1 1717:1 1771:1 1790:1 1797:1 1825:1 1827:1 1833:1 1851:1 1895:1 1896:1 1905:1 1910:1 1921:3 1933:1 1942:1 1956:1 1961:2 1963:2 1972:1 2027:1 2036:1 2078:1 2099:1 2108:1 2126:1 2136:1 2139:1 2164:1 2224:1 2270:1 2395:1 2442:1 2525:1 2530:2 2531:1 2543:2 2550:1 2552:1 2556:1 2569:1 2584:1 2600:2 2638:1 2650:1 2697:1 2721:1 2737:3 2741:1 2757:1 2778:1 2783:1 2784:1 2799:1 2804:1 2809:1 2821:1 2872:1 2964:1 3031:1 3032:2 3101:1 3110:2 3131:1 3142:1 3147:1 3189:3 3197:3 3210:2 3257:2 3310:1 3313:2 3320:1 3322:1 3341:1 3365:1 3392:1 3412:1 3419:1 3457:1 3497:1 3563:1 3671:2 3747:2 3778:1 3779:2 3797:1 3848:1 3881:2 3913:1 3992:1 4032:1 4063:1 4093:1 4097:1 4127:1 4128:1 4132:1 4204:1 4207:3 4227:1 4262:1 4264:1 4268:1 4282:1 4284:1 4336:1 4337:1 4385:1 4443:1 4446:1 4448:1 4463:1 4468:1 4487:1 4507:1 4518:1 4535:2 4606:1 4650:1 4712:1 4749:1 4754:1 4761:2 4780:1 4787:3 4842:1 4843:1 4891:1 4931:1 4955:1 4981:1 4984:1 4985:3 4997:1 5012:1 5024:1 5050:1 5070:3 5147:1 5172:1 5179:1 5188:3 5190:1 5192:3 5209:1 5221:1 5248:1 5281:1 5296:1 5298:1 5302:1 5312:1 5314:1 5329:1 5338:1 5345:1 5347:1 5355:1 5357:1 5417:1 5436:1 5540:2 5544:1 5547:1 5569:1 5580:2 5600:1 5603:1 5646:1 5651:1 5673:1 5684:1 5735:1 5742:1 5761:1 5785:1 5877:1 5888:1 5889:1 5896:1 5950:1 6000:1 6013:1 6014:1 6040:2 6082:1 6121:1 6166:1 6170:1 6200:2 6202:1 6207:1 6233:1 6246:1 6268:1 6280:1 6293:1 6298:1 6306:1 6310:1 6312:4 6320:1 6346:1 6411:2 6433:2 6439:1 6440:3 6450:1 6456:1 6467:1 6484:1 6513:1 6531:2 6557:1 6562:1 6569:1 6575:1 6589:1 6640:1 6659:1 6661:1 6668:1 6672:1 6705:2 6727:1 6768:1 6786:1 6829:1 6844:1 6865:2 6868:2 6875:1 6885:2 6886:1 6937:1 6959:1 7023:1 7078:1 7101:1 7115:1 7121:2 7171:3 7227:1 7270:1 7277:1 7312:3 7332:1 7353:1 7374:1 7383:1 7395:1 7422:1 7423:1 7427:2 7598:3 7616:1 7659:1 7663:1 7676:1 7745:1 7761:1 7769:1 7775:1 7798:1 7799:1 7819:1 7955:1 7959:1 7974:1 8000:1 8019:1 8034:1 8050:1 8053:1 8082:1 8092:1 8126:3 8150:1 8151:2 8153:1 8161:1 8170:1 8187:1 8214:2 8232:1 8247:1 8286:1 8300:1 8301:1 8305:1 8337:2 8353:1 8371:1 8372:2 8420:7 8440:3 8442:2 8450:1 8493:1 8509:1 8557:1 8642:1 8650:1 8678:1 8693:1 8716:1 8740:1 8823:2 8834:1 8837:2 8879:1 8903:1 8940:1 8956:1 8961:1 8963:1 8987:1 9013:2 9062:1 9077:1 9079:1 9094:1 9125:1 9129:1 9131:1 9132:1 9141:1 9149:1 9165:1 9175:1 9186:1 9192:1 9194:1 9224:1 9227:1 9268:1 9273:1 9305:2 9316:1 9367:1 9378:3 9385:1 9390:1 9421:1 9500:1 9510:1 9568:2 9588:1 9685:1 9715:1 9795:3 9796:1 9848:1 9850:1 9857:1 9872:1 9937:1 9981:1 10051:2 10092:1 10119:1 10191:1 10216:2 10229:1 10254:1 10273:1 10306:1 10326:2 10353:1 10368:1 10393:1 10421:1 10422:1 10451:1 10500:3 10501:1 10503:2 10516:1 10532:1 10554:1 10568:1 10578:1 10623:1 10626:1 10631:1 10650:4 10671:1 10676:1 10769:1 10881:1 10884:1 10891:1 10945:1 10954:1 10960:3 10972:1 11010:1 11018:1 11021:1 11035:1 11042:1 11059:3 11103:1 11113:1 11137:1 11150:1 11223:2 11237:2 11263:1 11338:1 11358:1 11360:1 11370:1 11373:1 11426:3 11429:1 11432:1 11437:2 11445:1 11448:1 11464:1 11481:1 11501:1 11522:1 11565:1 11605:1 11664:1 11700:1 11703:1 11730:1 11745:1 11793:1 11869:2 11981:1 11996:1 12004:1 12016:2 12026:1 12038:1 12039:1 12052:1 12055:4 12086:2 12095:1 12103:1 12159:1 12169:1 12236:1 12246:3 12254:1 12268:1 12272:1 12290:1 12377:1 12380:1 12407:1 12412:1 12435:1 12450:1 12451:1 12457:1 12473:1 12500:1 12530:1 12623:1 12708:1 12711:1 12743:1 12769:1 12773:1 12776:1 12780:1 12827:1 12831:2 12839:1 12846:1 12890:1 12944:1 12977:1 12995:1 12996:1 13028:1 13034:2 13037:1 13038:2 13047:2 13050:1 13098:1 13138:1 13141:1 13144:1 13157:1 13163:1 13169:1 13171:1 13173:1 13222:1 13253:1 13261:1 13266:1 13372:1 13374:1 13390:2 13399:1 13410:1 13439:1 13465:1 13468:1 13470:1 13472:1 13497:1 13540:1 13579:1 13584:1 13591:1 13608:1 13680:2 13695:1 13704:1 13725:1 13731:2 13746:1 13799:1 13828:3 13858:1 13934:2 13937:1 13965:1 13971:2 13989:1 14051:1 14200:1 14276:1 14294:1 14298:1 14333:2 14339:1 14377:2 14420:1 14461:1 14504:1 14556:1 14690:1 14704:1 14712:1 14732:2 14753:2 14803:1 14804:5 14843:1 14856:1 14860:1 14877:1 14882:1 14888:1 14897:1 14915:1 14923:1 14931:1 14941:1 14987:1 15020:1 15045:1 15176:1 15220:1 15245:1 15248:1 15251:1 15271:1 15297:1 15329:1 15348:1 15371:1 15387:1 15400:1 15412:1 15439:1 15443:1 15444:1 15454:1 15468:1 15495:1 15570:1 15577:1 15580:2 15605:1 15608:1 15615:1 15617:1 15672:1 15685:1 15695:1 15704:1 15718:1 15720:1 15742:1 15750:1 15789:1 15859:1 15953:1 15959:3 16028:1 16029:1 16056:5 16083:1 16085:1 16089:7 16105:1 16116:1 16138:1 16146:3 16259:1 16298:1 16300:1 16309:2 16321:1 16361:2 16410:2 16443:1 16454:2 16478:1 16508:1 16515:1 16519:1 16525:1 16558:1 16596:1 16598:3 16633:1 16635:1 16638:1 16669:1 16744:1 16835:1 16839:2 16914:1 16940:1 16948:2 16965:1 16971:1 16972:1 16995:1 16996:1 16997:2 17018:1 17022:1 17035:1 17053:1 17072:1 17134:1 17153:1 17213:1 17215:1 17240:1 17257:4 17320:1 17330:1 17331:1 17338:1 17366:1 17390:2 17459:1 17503:3 17512:1 17516:1 17581:1 17610:1 17620:1 17622:1 17768:2 17806:1 17814:1 17878:1 17882:1 17911:1 17977:2 17985:1 18005:1 18027:1 18054:1 18077:1 18080:2 18164:2 18177:1 18328:1 18366:1 18380:2 18406:1 18471:1 18519:1 18561:1 18592:2 18608:1 18610:1 18636:1 18643:1 18662:1 18751:1 18759:1 18786:1 18796:1 18882:1 18900:1 18911:1 18926:1 18974:1 18982:1 18999:1 19011:1 19022:1 19023:2 19061:1 19081:1 19083:1 19085:1 19087:1 19088:1 19136:2 19150:1 19180:1 19187:1 19225:1 19235:1 19255:1 19263:1 19276:1 19278:1 19291:1 19298:2 19321:1 19362:1 19371:1 19391:1 19405:1 19584:1 19645:1 19650:1 19660:1 19700:1 19706:1 19707:2 19721:1 19734:1 19777:1 19810:1 19821:1 19842:1 19862:1 19873:1 19911:1 19933:1 19961:1 19991:1 19996:1 20058:1 20105:2 20122:1 20126:1097 20184:1 20264:1 20480:1 20513:1 20520:1 20524:1 20556:1 20577:1 20591:1 20600:1 20668:3 20707:1 20722:1 20768:1 20777:1 20782:1 20816:1 20820:1 20830:1 20921:1 20923:1 21035:2 21054:1 21062:1 21122:1 21128:1 21140:2 21141:1 21145:1 21146:1 21165:1 21172:1 21194:1 21227:1 21253:1 21286:2 21288:1 21315:1 21358:1 21437:1 21489:2 21525:1 21536:1 21587:2 21592:1 21597:1 21598:1 21608:1 21628:1 21630:2 21631:1 21670:2 21677:1 21690:1 21700:1 21771:1 21781:2 21815:1 21872:1 21912:1 21934:1 21949:1 21953:1 21965:1 22000:1 22003:1 22030:1 22042:2 22057:1 22064:1 22099:1 22150:1 22152:1 22201:1 22244:1 22262:1 22270:2 22281:1 22294:1 22303:1 22312:1 22332:1 22366:1 22374:1 22376:2 22378:1 22390:1 22391:1 22466:1 22551:1 22557:1 22571:1 22599:1 22639:1 22680:1 22711:1 22738:1 22786:1 22795:1 22837:2 22844:1 22845:4 22847:1 22854:1 22888:1 22953:1 22973:1 22975:1 22984:1 22985:1 23011:1 23043:1 23077:1 23094:1 23096:1 23180:1 23193:2 23217:1 23226:1 23280:1 23285:1 23301:1 23328:1 23339:1 23371:2 23373:1 23379:3 23384:1 23387:1 23400:1 23409:1 23424:2 23445:1 23512:1 23534:2 23559:1 23564:1 23585:2 23609:2 23629:1 23644:2 23649:1 23652:1 23702:1 23712:2 23741:1 23748:1 23758:1 23766:1 23804:1 23832:1 23840:1 23841:1 23843:1 23887:2 23897:1 23900:1 23948:3 23952:1 23961:1 23962:2 24032:1 24034:2 24051:3 24075:1 24102:1 24142:1 24163:1 24200:2 24207:1 24215:1 24216:1 24283:1 24292:1 24314:1 24318:2 24324:1 24363:2 24394:1 24405:1 24413:1 24417:1 24442:1 24447:1 24467:1 24477:1 24489:1 24499:1 24507:1 24517:1 24566:1 24582:1 24602:1 24606:1 24658:1 24675:1 24773:1 24793:1 24850:2 24867:3 24912:1 24964:1 24974:1 24975:2 24986:1 24989:1 24990:1 25022:1 25030:1 25060:1 25061:1 25096:1 25100:1 25106:1 25124:1 25136:1 25172:1 25251:1 25256:1 25267:2 25275:3 25321:1 25349:1 25360:1 25364:2 25422:1 25438:1 25442:1 25445:1 25457:2 25469:1 25486:1 25507:3 25511:1 25518:2 25544:1 25577:1 25638:2 25681:2 25684:1 25695:3 25713:1 25719:1 25720:2 25782:1 25805:1 25846:1 25873:1 25886:1 25968:1 25974:2 25983:1 25990:2 25998:2 26009:1 26021:1 26048:1 26129:1 26155:2 26190:1 26230:1 26231:1 26250:2 26260:1 26262:1 26283:1 26287:1 26309:1 26316:1 26328:1 26341:1 26399:1 26541:2 26557:1 26583:1 26584:1 26602:1 26603:1 26609:1 26636:1 26669:1 26739:1 26741:1 26804:1 26805:1 26838:2 26868:1 26885:1 26902:1 26923:1 26968:1 26978:1 27055:1 27074:2 27083:1 27094:3 27095:1 27115:1 27134:3 27167:1 27178:1 27206:1 27227:1 27247:2 27248:1 27285:1 27295:1 27297:1 27319:1 27332:1 27376:1 27427:1 27439:2 27445:1 27485:1 27491:1 27512:2 27541:1 27543:1 27568:1 27654:1 27770:2 27773:1 27794:1 27875:1 27881:1 27907:1 27991:1 28042:1 28051:1 28053:2 28065:1 28081:1 28098:1 28102:1 28104:3 28139:1 28149:2 28151:1 28205:1 28212:1 28220:2 28299:2 28349:1 28389:1 28412:1 28418:1 28444:3 28448:1 28482:1 28499:1 28548:1 28582:1 28586:1 28599:1 28616:1 28622:1 28639:1 28674:1 28691:1 28725:1 28741:2 28748:2 28804:1 28811:1 28921:1 28960:1 29006:2 29015:1 29056:2 29061:1 29062:1 29076:1 29096:1 29122:1 29133:1 29148:1 29163:2 29178:1 29205:1 29266:1 29290:2 29296:1 29298:1 29345:2 29355:1 29367:1 29369:1 29388:1 29402:2 29409:1 29417:2 29422:1 29448:1 29483:1 29504:1 29537:1 29577:1 29620:2 29642:2 29647:1 29673:1 29681:1 29708:1 29718:1 29731:1 29746:1 29780:2 29806:5 29852:4 29865:1 29882:1 29930:1 30020:2 30033:1 30045:1 30053:1 30090:2 30104:1 30114:1 30116:1 30149:1 30247:3 30330:3 30365:2 30381:1 30390:1 30392:1 30414:1 30429:1 30459:1 30477:1 30494:1 30517:1 30556:1 30558:1 30574:1 30578:1 30597:1 30625:1 30676:1 30750:1 30867:2 30922:3 30931:1 30935:1 30942:1 30973:1 30978:1 30981:1 31002:1 31013:1 31036:1 31046:2 31054:1 31071:1 31083:1 31087:1 31090:2 31133:2 31135:1 31143:1 31179:1 31182:2 31183:1 31190:1 31195:1 31197:1 31208:1
17 19:2 33:1 49:1 61:1 62:1 122:1 173:2 183:1 227:1 256:2 304:1 351:1 358:1 401:2 404:1 420:1 422:1 426:1 504:2 577:1 591:1 641:1 690:1 719:1 726:1 817:1 824:1 846:1 864:3 928:2 969:1 977:3 979:1 986:4 991:1 992:1 997:1 1002:1 1008:2 1011:2 1028:1 1034:2 1036:1 1039:1 1095:1 1098:2 1129:1 1133:1 1145:1 1161:1 1166:1 1175:1 1186:1 1192:1 1204:1 1210:1 1220:1 1248:1 1269:1 1339:1 1382:1 1399:1 1414:1 1433:1 1462:1 1565:1 1601:1 1638:2 1644:1 1650:1 1669:1 1676:1 1688:1 1714:1 1717:1 1771:1 1790:1 1797:1 1825:1 1827:1 1833:1 1851:1 1895:1 1896:1 1905:1 1910:1 1921:3 1933:1 1942:1 1950:1 1956:1 1961:2 1963:2 1972:1 2027:2 2036:1 2078:1 2099:1 2108:1 2126:1 2136:1 2139:1 2164:1 2224:1 2270:1 2395:1 2442:1 2525:1 2530:2 2531:1 2543:2 2550:1 2552:1 2556:1 2569:1 2584:1 2600:2 2638:1 2650:1 2697:1 2698:1 2721:1 2737:3 2741:1 2757:1 2778:2 2783:1 2784:1 2789:1 2799:1 2804:2 2809:1 2821:1 2872:1 2939:1 2964:1 3031:1 3032:2 3101:1 3110:2 3131:1 3138:1 3142:1 3147:1 3189:3 3197:3 3210:2 3247:1 3257:2 3310:1 3313:2 3320:1 3322:1 3341:1 3365:1 3392:1 3412:1 3419:1 3457:1 3497:1 3563:1 3630:1 3671:2 3747:2 3778:1 3779:3 3797:1 3848:1 3881:2 3896:1 3913:1 3992:1 4032:1 4052:1 4063:1 4093:1 4097:1 4127:2 4128:1 4132:1 4204:1 4207:3 4227:1 4262:1 4264:1 4268:1 4282:1 4284:1 4336:1 4337:1 4385:1 4443:1 4446:1 4448:1 4463:1 4468:1 4487:1 4490:1 4507:1 4518:2 4535:2 4606:1 4650:1 4712:1 4749:1 4754:1 4761:2 4765:1 4780:1 4787:3 4842:1 4843:1 4855:1 4891:1 4931:1 4955:1 4981:1 4984:1 4985:3 4997:1 5012:1 5024:1 5050:1 5070:3 5147:1 5172:1 5179:1 5188:3 5190:1 5192:3 5209:1 5221:1 5248:1 5281:1 5296:1 5298:1 5302:1 5312:1 5314:1 5329:1 5338:1 5345:1 5347:1 5355:1 5357:1 5417:1 5436:1 5505:1 5540:2 5544:1 5547:1 5569:1 5580:2 5600:1 5603:1 5646:1 5651:1 5673:1 5684:1 5735:1 5742:1 5761:1 5785:1 5877:1 5888:1 5889:1 5896:1 5950:1 6000:1 6013:1 6014:1 6040:2 6066:1 6082:1 6121:1 6153:1 6166:1 6170:1 6200:2 6202:1 6207:1 6222:1 6233:1 6246:1 6268:1 6280:1 6293:1 6298:1 6301:1 6306:1 6310:1 6312:7 6320:1 6346:1 6411:2 6433:2 6439:1 6440:3 6450:1 6456:1 6467:1 6484:1 6513:1 6531:2 6557:2 6562:1 6569:1 6575:1 6589:1 6640:1 6659:1 6661:1 6668:1 6672:1 6705:2 6727:1 6768:1 6786:1 6829:2 6844:1 6865:2 6868:2 6875:1 6885:2 6886:1 6922:1 6937:1 6959:1 7023:1 7078:1 7101:1 7115:1 7121:2 7171:3 7181:1 7219:1 7227:1 7270:1 7277:1 7312:3 7332:1 7353:1 7374:1 7383:1 7395:1 7422:1 7423:1 7427:2 7598:3 7616:1 7659:1 7663:1 7676:1 7745:1 7761:1 7769:1 7775:1 7798:1 7799:1 7819:1 7955:1 7959:1 7965:1 7974:1 8000:1 8019:1 8034:1 8050:1 8053:1 8082:1 8092:1 8126:3 8150:1 8151:2 8153:1 8161:1 8162:1 8170:1 8171:1 8173:1 8187:1 8214:3 8232:1 8247:1 8286:1 8300:1 8301:1 8305:1 8316:1 8337:2 8353:1 8371:1 8372:2 8420:7 8440:3 8442:2 8450:1 8493:1 8509:1 8557:1 8622:1 8642:1 8650:1 8678:1 8693:1 8716:1 8740:1 8823:2 8834:1 8837:2 8850:1 8879:1 8903:1 8940:1 8956:1 8961:1 8963:1 8987:1 9013:2 9062:1 9077:1 9079:1 9094:1 9125:1 9129:1 9131:1 9132:1 9141:1 9149:1 9165:1 9175:1 9186:1 9192:1 9194:1 9224:1 9227:1 9268:1 9273:1 9305:2 9316:1 9367:1 9378:3 9385:1 9390:1 9421:1 9500:1 9510:1 9568:2 9588:1 9680:1 9685:1 9693:1 9715:1 9795:3 9796:1 9848:1 9850:1 9857:1 9872:1 9937:1 9981:1 10051:2 10092:1 10119:1 10191:1 10216:2 10229:1 10254:1 10273:1 10306:1 10326:2 10353:1 10368:1 10382:1 10390:1 10393:1 10421:1 10422:1 10451:1 10486:1 10500:3 10501:1 10503:2 10516:1 10532:1 10554:1 10561:1 10568:1 10578:1 10597:1 10623:1 10626:1 10631:1 10650:4 10671:1 10676:1 10769:1 10881:1 10884:1 10891:1 10945:1 10954:1 10960:3 10972:1 10973:1 11010:1 11014:1 11018:1 11021:1 11035:1 11042:1 11059:3 11103:1 11113:1 11137:1 11150:1 11217:1 11223:2 11237:2 11263:1 11325:1 11338:1 11358:1 11360:1 11370:1 11373:1 11426:3 11429:1 11432:1 11437:2 11445:1 11448:1 11464:1 11481:1 11501:1 11522:1 11565:1 11605:1 11664:2 11700:1 11703:1 11730:1 11745:1 11793:1 11813:1 11869:2 11981:1 11996:2 12004:1 12010:1 12016:2 12026:1 12038:1 12039:1 12052:1 12055:4 12086:2 12095:1 12103:1 12159:1 12169:1 12236:1 12246:3 12254:1 12268:1 12272:1 12290:1 12325:1 12377:1 12380:1 12407:1 12412:1 12424:1 12435:1 12450:1 12451:1 12457:1 12468:1 12473:1 12500:1 12530:1 12623:1 12708:1 12711:1 12743:1 12769:1 12773:1 12776:1 12780:1 12827:1 12831:2 12839:1 12846:1 12890:1 12944:1 12968:1 12977:1 12995:1 12996:1 13028:1 13034:2 13037:1 13038:2 13047:2 13050:1 13098:1 13138:1 13141:1 13144:1 13157:1 13163:1 13169:1 13171:1 13173:2 13222:1 13228:1 13247:1 13253:1 13261:1 13266:1 13372:1 13374:1 13390:2 13399:1 13410:1 13439:1 13465:1 13468:1 13470:1 13472:1 13497:1 13540:1 13579:1 13584:1 13591:1 13608:1 13680:2 13695:1 13704:1 13725:1 13731:2 13746:1 13799:1 13828:3 13856:1 13858:1 13934:2 13937:1 13965:1 13971:2 13989:1 14051:1 14200:1 14276:1 14294:1 14298:1 14333:2 14339:2 14377:2 14420:1 14461:1 14504:1 14556:1 14690:1 14704:1 14712:1 14732:2 14753:2 14803:1 14804:5 14843:1 14856:1 14860:1 14877:1 14882:1 14888:1 14897:1 14915:1 14923:1 14931:1 14941:1 14987:1 15020:1 15045:2 15169:1 15176:1 15220:1 15245:1 15248:1 15251:1 15271:1 15297:1 15329:1 15348:1 15371:1 15387:2 15400:1 15412:1 15439:1 15443:1 15444:1 15454:1 15458:1 15468:1 15495:1 15570:1 15577:1 15580:3 15605:1 15608:1 15615:1 15617:1 15672:1 15678:1 15685:1 15695:1 15704:1 15718:1 15720:1 15742:1 15750:1 15789:1 15859:1 15953:1 15959:3 16015:1 16028:1 16029:1 16056:7 16083:1 16085:1 16089:10 16105:1 16116:1 16138:1 16146:3 16259:1 16298:1 16300:1 16309:2 16312:1 16321:1 16361:3 16410:2 16443:1 16454:2 16478:1 16508:1 16515:1 16519:1 16525:1 16558:1 16596:1 16598:3 16633:1 16635:1 16638:1 16669:1 16744:1 16835:1 16839:2 16914:1 16940:1 16948:2 16965:1 16971:1 16972:1 16995:1 16996:1 16997:2 17018:1 17022:1 17035:1 17053:1 17072:1 17134:1 17153:1 17179:1 17205:1 17213:1 17215:1 17240:1 17257:4 17320:1 17330:1 17331:1 17338:2 17366:1 17390:2 17459:1 17503:3 17512:1 17516:1 17581:1 17610:1 17620:1 17622:1 17676:1 17768:2 17804:1 17806:1 17814:1 17878:1 17882:1 17911:1 17913:1 17965:1 17977:2 17985:1 17990:1 18005:1 18007:1 18027:1 18054:1 18077:1 18080:2 18164:2 18177:1 18328:1 18366:1 18380:2 18406:1 18471:1 18519:1 18561:1 18592:2 18608:1 18610:1 18636:1 18642:1 18643:1 18662:1 18719:1 18751:1 18759:1 18786:1 18796:1 18882:1 18889:1 18900:1 18911:1 18926:1 18974:1 18982:1 18999:1 19011:1 19017:1 19022:1 19023:2 19034:1 19061:1 19081:1 19083:1 19085:1 19087:1 19088:1 19136:2 19150:1 19180:1 19187:1 19225:1 19235:1 19255:1 19263:1 19276:1 19278:1 19291:1 19298:4 19321:1 19339:1 19362:1 19371:1 19391:1 19405:1 19584:1 19645:1 19650:1 19660:1 19700:1 19706:1 19707:2 19721:1 19734:1 19777:1 19810:1 19821:1 19842:1 19849:1 19862:1 19873:1 19885:1 19911:1 19933:1 19961:1 19991:1 19996:1 20058:1 20105:2 20122:1 20126:1176 20184:1 20187:1 20264:1 20276:1 20480:2 20513:1 20520:1 20524:1 20556:1 20562:1 20577:1 20591:1 20600:1 20668:3 20707:1 20722:1 20768:1 20777:1 20782:1 20816:1 20820:1 20830:1 20921:1 20923:1 21035:2 21054:1 21062:1 21122:1 21128:2 21140:2 21141:1 21145:1 21146:1 21165:1 21172:1 21194:1 21227:1 21253:1 21286:2 21288:1 21315:1 21358:1 21437:1 21489:2 21525:1 21536:1 21587:2 21592:1 21597:1 21598:1 21608:1 21628:1 21630:2 21631:1 21636:1 21670:2 21677:1 21690:1 21700:1 21771:1 21781:2 21815:1 21872:1 21912:1 21934:1 21949:1 21953:1 21965:1 22000:1 22003:1 22030:1 22042:2 22057:1 22064:2 22099:1 22150:1 22152:1 22201:1 22244:1 22262:1 22270:2 22281:1 22294:1 22303:1 22312:1 22332:1 22366:1 22374:1 22376:2 22378:1 22390:1 22391:1 22466:1 22551:1 22557:1 22571:2 22599:1 22639:1 22680:1 22711:1 22738:1 22786:2 22795:1 22837:2 22844:1 22845:4 22847:1 22854:1 22888:1 22903:1 22953:1 22973:1 22975:1 22984:1 22985:1 23011:1 23039:1 23043:2 23044:1 23077:1 23094:1 23096:1 23180:1 23193:2 23217:1 23226:1 23280:1 23285:1 23301:1 23328:1 23339:1 23371:2 23373:1 23379:3 23384:1 23387:1 23400:1 23409:1 23424:2 23445:1 23512:1 23534:2 23559:1 23564:1 23585:2 23609:2 23629:1 23644:2 23649:1 23652:1 23702:1 23712:2 23741:1 23748:1 23758:1 23766:1 23804:1 23832:1 23840:1 23841:1 23843:1 23848:1 23887:2 23897:1 23900:1 23948:3 23952:1 23961:1 23962:2 24032:1 24034:2 24051:4 24075:1 24102:1 24142:1 24156:1 24163:1 24200:2 24207:1 24215:1 24216:1 24283:1 24292:1 24298:1 24314:1 24318:2 24324:1 24348:1 24363:3 24394:1 24405:1 24413:1 24417:1 24442:1 24447:1 24467:1 24473:1 24477:1 24489:1 24499:2 24507:1 24517:1 24566:1 24582:1 24602:1 24606:1 24658:1 24675:1 24773:1 24793:1 24850:2 24867:3 24912:1 24964:1 24974:1 24975:2 24986:1 24989:1 24990:1 25022:1 25030:1 25060:1 25061:1 25096:1 25100:2 25106:1 25124:1 25136:1 25172:1 25251:2 25256:1 25267:2 25275:3 25321:1 25349:1 25360:1 25364:2 25422:1 25438:1 25442:1 25445:1 25457:2 25467:1 25469:1 25486:1 25507:3 25511:1 25518:2 25544:1 25577:1 25638:2 25681:2 25684:1 25695:3 25713:1 25719:1 25720:2 25782:1 25805:1 25846:1 25873:1 25886:1 25968:1 25974:2 25983:1 25990:2 25998:2 26009:1 26021:1 26048:1 26093:1 26129:1 26155:2 26190:1 26230:1 26231:1 26250:2 26260:1 26262:1 26283:1 26287:1 26309:1 26316:1 26317:1 26328:1 26341:1 26399:1 26541:2 26557:1 26583:1 26584:1 26602:1 26603:1 26609:1 26636:1 26669:1 26739:1 26741:1 26804:1 26805:1 26838:2 26868:1 26885:1 26902:1 26923:1 26968:1 26978:1 27055:1 27074:2 27083:1 27094:3 27095:1 27115:1 27134:3 27167:2 27178:1 27206:1 27227:1 27247:2 27248:1 27285:1 27295:1 27297:1 27319:1 27332:1 27376:1 27427:1 27439:2 27445:1 27485:1 27491:1 27512:3 27541:1 27543:1 27568:1 27601:1 27654:1 27770:2 27773:1 27794:1 27795:1 27817:1 27846:1 27875:1 27881:1 27890:1 27907:1 27991:1 28042:1 28051:1 28053:2 28065:1 28081:1 28098:1 28102:1 28104:3 28139:1 28149:2 28151:1 28196:1 28205:2 28212:1 28220:2 28299:2 28300:1 28349:1 28389:1 28412:1 28418:1 28444:3 28448:1 28482:1 28499:1 28548:1 28582:1 28586:1 28599:1 28616:1 28622:1 28639:1 28674:1 28691:1 28725:1 28741:2 28748:2 28804:1 28811:1 28921:1 28960:1 29006:2 29015:1 29056:2 29061:1 29062:1 29076:1 29096:1 29122:1 29133:1 29148:1 29163:2 29178:1 29205:1 29266:1 29290:2 29296:1 29298:1 29345:2 29355:1 29367:1 29369:1 29388:1 29402:2 29409:1 29417:2 29422:1 29448:1 29483:1 29504:1 29537:1 29577:1 29620:2 29642:2 29647:2 29673:1 29681:1 29708:1 29718:1 29731:1 29746:1 29780:2 29806:5 29852:4 29865:1 29882:1 29930:1 30020:3 30033:1 30045:1 30053:1 30078:1 30090:2 30104:1 30114:1 30116:1 30149:1 30189:1 30247:3 30300:1 30330:3 30365:2 30381:1 30390:1 30392:1 30414:1 30429:1 30459:1 30477:1 30494:1 30517:1 30556:1 30558:1 30574:1 30578:1 30597:1 30625:1 30676:1 30750:1 30867:2 30922:4 30931:1 30935:1 30942:1 30973:1 30978:1 30981:1 31002:1 31013:1 31036:1 31046:2 31054:1 31071:1 31083:1 31087:1 31090:2 31133:2 31135:1 31143:1 31179:1 31182:2 31183:1 31190:1 31195:1 31197:1 31208:1
17 19:2 33:1 49:1 61:1 62:1 122:1 173:2 183:1 227:1 256:2 304:1 343:1 351:1 358:1 401:2 404:1 420:1 422:1 426:1 504:2 577:1 591:1 641:1 690:1 708:1 719:1 726:1 817:1 824:1 846:1 864:3 928:2 969:1 977:3 979:1 986:4 991:1 992:1 997:1 1002:1 1008:2 1011:2 1028:1 1034:2 1036:1 1039:1 1095:1 1098:2 1129:1 1133:1 1145:1 1161:1 1166:1 1175:1 1186:1 1192:1 1204:1 1210:1 1220:1 1248:1 1269:1 1339:1 1382:1 1399:1 1414:1 1433:1 1462:1 1565:1 1601:1 1638:2 1644:1 1650:1 1669:1 1676:1 1688:1 1714:1 1717:1 1771:1 1790:1 1797:1 1825:1 1827:1 1833:1 1851:1 1895:1 1896:1 1905:1 1910:1 1921:3 1933:1 1942:1 1950:1 1956:1 1961:2 1963:2 1972:1 2027:2 2036:1 2078:1 2099:1 2108:1 2126:1 2136:1 2139:1 2164:1 2224:1 2270:1 2395:1 2442:1 2525:1 2530:2 2531:1 2543:2 2550:1 2552:1 2556:1 2569:1 2584:1 2600:2 2638:1 2650:1 2697:1 2698:1 2721:1 2737:3 2741:1 2757:1 2778:2 2783:1 2784:1 2789:1 2799:1 2804:2 2809:1 2821:1 2872:1 2939:1 2964:1 3031:1 3032:2 3101:1 3110:2 3131:1 3138:1 3142:1 3147:1 3189:3 3197:3 3210:2 3247:1 3257:2 3310:1 3313:2 3320:1 3322:1 3341:1 3365:1 3392:1 3412:1 3419:1 3457:1 3497:1 3563:1 3630:1 3671:2 3747:2 3778:1 3779:3 3797:1 3848:1 3881:3 3896:1 3913:1 3920:1 3992:1 3997:1 4032:1 4052:1 4063:1 4093:1 4097:1 4127:2 4128:1 4132:1 4204:1 4207:3 4227:1 4262:1 4264:1 4268:1 4282:1 4284:1 4336:1 4337:1 4385:1 4389:1 4443:1 4446:1 4448:1 4463:1 4468:1 4487:1 4490:1 4507:1 4518:2 4535:2 4606:1 4608:1 4650:1 4712:1 4749:1 4754:1 4761:2 4765:1 4767:1 4780:1 4787:3 4842:1 4843:1 4855:1 4891:1 4931:1 4955:1 4981:1 4984:1 4985:3 4997:1 5012:1 5024:1 5050:1 5070:3 5147:1 5154:1 5172:1 5179:1 5188:3 5190:1 5192:3 5209:1 5221:1 5248:1 5281:1 5296:1 5298:1 5302:1 5312:1 5314:1 5329:1 5338:1 5345:1 5347:1 5355:1 5357:1 5417:1 5436:1 5505:1 5540:2 5544:1 5547:1 5569:1 5580:2 5600:1 5603:1 5646:1 5651:1 5673:1 5684:1 5735:1 5742:1 5761:1 5785:1 5877:1 5888:1 5889:1 5896:1 5950:1 6000:1 6013:1 6014:1 6040:2 6066:1 6082:1 6121:1 6153:1 6166:1 6170:1 6200:2 6202:1 6207:1 6222:1 6233:1 6246:1 6268:1 6280:1 6293:1 6298:1 6301:1 6306:1 6310:1 6312:7 6320:1 6346:1 6411:2 6433:2 6439:1 6440:3 6450:1 6456:1 6467:2 6484:1 6513:1 6531:2 6557:2 6562:1 6569:1 6575:1 6589:1 6640:1 6659:1 6661:1 6668:1 6672:1 6705:2 6727:1 6768:1 6786:1 6829:2 6844:1 6865:2 6868:2 6875:1 6885:2 6886:1 6922:1 6937:1 6959:1 7023:1 7078:1 7101:1 7115:1 7121:2 7152:1 7171:3 7181:1 7219:1 7227:1 7270:1 7277:1 7312:3 7332:1 7353:1 7354:1 7374:1 7383:1 7395:1 7422:1 7423:1 7427:2 7598:3 7616:1 7659:1 7663:1 7676:1 7745:1 7761:1 7769:1 7775:1 7798:1 7799:1 7819:1 7955:1 7959:1 7965:1 7974:1 8000:1 8019:1 8034:1 8050:1 8053:1 8082:1 8092:1 8126:3 8150:1 8151:2 8153:1 8161:1 8162:1 8170:1 8171:1 8173:1 8187:1 8214:3 8232:1 8247:1 8286:1 8300:1 8301:1 8305:1 8316:1 8337:2 8353:1 8371:1 8372:2 8420:7 8440:3 8442:2 8450:1 8493:1 8509:1 8557:1 8622:1 8642:1 8650:1 8678:1 8693:1 8716:1 8740:1 8823:2 8834:1 8837:2 8850:1 8857:1 8879:1 8903:1 8940:1 8956:1 8961:1 8963:2 8987:1 9013:2 9062:1 9077:1 9079:1 9094:1 9125:1 9129:1 9131:1 9132:1 9141:1 9149:1 9165:1 9175:1 9186:1 9192:1 9194:1 9224:1 9227:1 9268:1 9273:1 9305:2 9316:1 9367:1 9378:3 9385:1 9390:1 9421:1 9500:1 9510:1 9568:2 9588:1 9680:1 9685:1 9693:1 9715:1 9795:3 9796:1 9848:1 9850:1 9857:1 9872:1 9937:1 9981:1 10051:2 10092:1 10119:1 10168:1 10191:1 10216:2 10229:1 10254:1 10273:1 10306:1 10326:2 10353:1 10368:1 10382:1 10390:1 10393:1 10421:1 10422:1 10451:1 10486:1 10500:3 10501:1 10503:2 10516:1 10532:1 10554:1 10561:1 10568:1 10578:1 10597:1 10623:1 10626:1 10631:1 10650:4 10671:1 10676:1 10769:1 10853:1 10881:1 10884:1 10891:1 10945:1 10954:1 10960:3 10972:1 10973:1 11010:1 11014:1 11018:1 11021:1 11035:1 11042:1 11059:3 11103:1 11113:1 11137:1 11150:1 11217:1 11223:2 11237:2 11263:1 11325:1 11338:1 11358:1 11360:1 11370:1 11373:1 11426:3 11429:1 11432:1 11437:2 11445:1 11448:1 11464:1 11481:1 11501:1 11509:1 11522:1 11565:1 11605:1 11664:2 11700:1 11703:1 11730:1 11745:1 11793:1 11813:1 11869:2 11946:1 11981:1 11996:2 12004:1 12010:1 12016:2 12026:1 12038:1 12039:1 12052:1 12055:4 12086:2 12095:1 12103:1 12159:1 12169:1 12187:1 12236:1 12246:3 12254:1 12268:1 12272:1 12290:1 12325:1 12377:1 12380:1 12407:1 12412:1 12424:1 12435:1 12450:1 12451:1 12457:1 12468:1 12473:1 12488:1 12500:1 12530:1 12623:1 12708:1 12711:1 12743:1 12769:1 12773:1 12776:1 12780:1 12827:1 12831:2 12839:1 12846:1 12890:1 12944:1 12968:1 12977:1 12995:1 12996:1 13028:1 13034:2 13037:1 13038:2 13047:2 13050:1 13098:1 13138:1 13141:1 13144:1 13157:1 13163:1 13169:1 13171:1 13173:2 13222:1 13228:1 13247:1 13253:1 13261:1 13266:1 13279:1 13280:1 13372:1 13374:1 13390:2 13399:1 13410:1 13439:1 13465:1 13468:1 13470:1 13472:1 13497:1 13540:1 13579:1 13584:1 13591:1 13608:1 13680:2 13695:1 13704:1 13713:1 13725:1 13731:2 13746:1 13799:1 13828:3 13856:1 13858:1 13934:2 13937:1 13965:1 13971:2 13989:1 14051:1 14200:1 14276:1 14294:1 14298:1 14333:2 14339:2 14377:2 14420:1 14461:1 14504:1 14556:1 14690:1 14704:1 14712:1 14732:2 14753:2 14757:1 14803:1 14804:5 14843:1 14856:1 14860:1 14877:1 14882:1 14888:1 14897:1 14915:1 14923:1 14931:1 14941:1 14987:1 15020:1 15045:2 15169:1 15176:1 15220:1 15245:1 15248:1 15251:1 15271:1 15297:1 15329:1 15348:1 15371:1 15387:2 15400:1 15412:1 15439:1 15443:1 15444:1 15454:1 15458:1 15468:1 15495:1 15570:1 15577:1 15580:3 15605:1 15608:1 15615:1 15617:1 15672:1 15678:1 15685:1 15695:1 15704:1 15718:1 15720:1 15742:1 15750:1 15789:1 15815:1 15859:1 15953:1 15959:3 16015:1 16028:1 16029:1 16056:7 16083:1 16085:1 16089:10 16105:1 16116:1 16138:1 16146:3 16196:1 16259:1 16298:1 16300:1 16309:2 16312:1 16321:1 16361:3 16410:2 16443:1 16454:2 16478:1 16508:1 16515:1 16519:1 16525:1 16558:1 16596:1 16598:3 16633:1 16635:1 16638:1 16669:1 16744:1 16788:1 16835:1 16839:2 16914:1 16940:1 16948:2 16965:1 16971:1 16972:1 16995:1 16996:1 16997:2 17018:1 17022:1 17035:1 17053:1 17072:1 17112:1 17134:1 17153:1 17179:1 17205:1 17213:1 17215:1 17240:1 17257:4 17320:1 17330:1 17331:1 17338:2 17366:1 17390:2 17459:1 17503:3 17512:1 17516:1 17581:1 17610:1 17620:1 17622:1 17641:1 17676:1 17768:2 17804:1 17806:1 17814:1 17878:1 17882:1 17911:1 17913:1 17965:1 17977:2 17985:1 17990:1 18005:1 18007:1 18027:1 18054:1 18077:1 18080:2 18164:2 18177:1 18283:1 18328:1 18366:1 18380:2 18406:1 18407:1 18471:1 18519:1 18561:1 18592:2 18608:1 18610:1 18636:1 18642:1 18643:1 18662:1 18719:1 18751:1 18759:1 18786:1 18796:1 18882:1 18889:1 18900:1 18911:1 18926:1 18974:1 18982:1 18999:1 19011:1 19017:1 19022:1 19023:2 19034:1 19044:1 19061:1 19081:1 19083:1 19085:1 19087:1 19088:1 19136:2 19150:1 19180:1 19187:1 19225:1 19235:1 19255:1 19263:1 19276:1 19278:1 19291:1 19298:4 19321:1 19339:1 19362:1 19371:1 19391:1 19405:1 19584:1 19645:1 19650:1 19660:1 19699:1 19700:1 19706:1 19707:2 19721:1 19734:1 19743:1 19777:1 19810:1 19821:1 19842:1 19849:1 19862:1 19873:1 19885:1 19911:1 19933:1 19961:1 19991:1 19996:1 20058:1 20105:2 20122:1 20126:1229 20184:1 20187:1 20264:1 20276:1 20480:2 20513:1 20520:1 20524:1 20556:1 20562:2 20577:1 20591:1 20600:1 20668:3 20676:1 20707:1 20722:1 20768:1 20777:1 20782:1 20816:1 20820:1 20830:1 20921:1 20923:1 21035:2 21054:1 21059:1 21062:1 21122:1 21128:2 21140:2 21141:1 21145:1 21146:1 21165:1 21172:1 21194:1 21227:1 21253:1 21286:2 21288:1 21315:1 21358:1 21375:1 21437:1 21489:2 21525:1 21536:1 21544:1 21587:2 21592:1 21597:1 21598:1 21608:1 21628:1 21630:2 21631:1 21636:1 21670:2 21677:1 21690:1 21700:1 21771:1 21781:2 21815:1 21872:1 21912:1 21934:1 21949:1 21953:1 21965:1 21967:1 22000:1 22003:1 22030:1 22042:2 22057:1 22064:2 22099:1 22150:1 22152:1 22167:1 22201:1 22244:1 22262:1 22270:2 22281:1 22294:1 22303:1 22312:1 22332:1 22366:1 22374:1 22376:2 22378:1 22390:1 22391:1 22466:1 22551:1 22557:1 22571:2 22599:1 22639:1 22680:1 22711:1 22738:1 22786:2 22795:1 22837:2 22844:1 22845:4 22847:1 22854:1 22888:1 22903:1 22953:1 22973:1 22975:1 22984:1 22985:1 23011:1 23039:1 23043:2 23044:1 23077:1 23094:1 23096:1 23180:1 23193:2 23217:1 23226:1 23280:1 23285:1 23301:1 23328:1 23339:1 23371:2 23373:1 23379:3 23384:1 23387:1 23400:1 23409:1 23424:2 23445:1 23512:1 23534:2 23559:1 23564:1 23585:2 23609:2 23629:1 23644:2 23649:1 23652:1 23702:1 23712:2 23741:1 23748:1 23758:1 23766:1 23804:1 23832:1 23835:1 23840:1 23841:1 23843:1 23848:1 23887:2 23897:1 23900:1 23948:3 23952:1 23961:1 23962:2 24032:1 24034:2 24051:4 24075:1 24102:1 24142:1 24156:1 24163:1 24200:2 24207:1 24215:1 24216:1 24283:1 24292:1 24298:1 24314:1 24318:2 24324:1 24348:1 24363:3 24394:1 24399:1 24405:1 24413:1 24417:1 24442:1 24447:1 24467:1 24473:1 24477:1 24489:1 24499:2 24507:1 24517:1 24566:1 24582:1 24602:1 24606:1 24658:1 24675:1 24773:1 24793:1 24850:2 24867:3 24912:1 24946:1 24964:1 24974:1 24975:2 24986:1 24989:1 24990:1 25022:1 25030:1 25060:1 25061:1 25096:1 25100:2 25106:1 25124:1 25136:1 25172:1 25251:2 25256:1 25267:2 25275:3 25321:1 25349:1 25360:1 25364:2 25422:1 25438:1 25442:1 25445:1 25457:2 25467:1 25469:1 25486:1 25507:3 25511:1 25518:2 25544:1 25577:1 25638:2 25681:2 25684:1 25695:3 25713:1 25719:1 25720:2 25782:1 25805:1 25846:1 25851:1 25873:1 25886:1 25968:1 25974:2 25983:1 25990:2 25998:2 26009:1 26021:1 26041:1 26048:1 26062:1 26093:1 26129:1 26155:2 26190:1 26230:1 26231:1 26250:2 26260:1 26262:1 26283:1 26287:1 26309:1 26316:1 26317:1 26328:1 26341:1 26399:1 26483:1 26541:2 26557:1 26583:1 26584:1 26602:1 26603:1 26609:1 26636:1 26669:1 26739:1 26741:1 26804:1 26805:1 26838:2 26868:1 26885:1 26902:1 26923:1 26968:1 26978:1 27020:1 27055:1 27074:2 27083:1 27094:3 27095:1 27115:1 27134:3 27167:2 27178:1 27206:1 27227:1 27247:2 27248:1 27249:1 27285:1 27295:1 27297:1 27319:1 27332:1 27376:1 27395:1 27427:1 27439:2 27445:1 27485:1 27491:1 27512:3 27541:1 27543:1 27568:1 27601:1 27654:1 27770:2 27773:1 27794:1 27795:1 27817:1 27846:1 27875:1 27881:1 27882:1 27890:1 27907:1 27991:1 28042:1 28051:1 28053:2 28065:1 28081:1 28098:1 28102:1 28104:3 28139:1 28149:2 28151:1 28196:2 28205:2 28212:1 28220:2 28299:2 28300:1 28349:1 28389:1 28411:1 28412:1 28418:1 28444:3 28448:1 28482:1 28499:1 28548:1 28582:1 28586:1 28599:1 28616:1 28622:1 28639:1 28674:1 28691:1 28725:1 28741:2 28748:2 28804:1 28811:1 28921:1 28960:1 29006:2 29009:1 29015:1 29056:2 29061:1 29062:1 29076:1 29096:1 29122:1 29133:1 29148:1 29163:2 29178:1 29188:1 29205:1 29266:1 29290:2 29296:1 29298:1 29345:2 29355:1 29367:1 29369:1 29388:1 29392:1 29402:2 29409:1 29417:2 29422:1 29448:1 29483:1 29504:1 29537:1 29577:1 29620:2 29642:2 29647:2 29673:1 29681:1 29708:1 29718:1 29731:1 29746:1 29780:2 29806:5 29835:1 29852:4 29865:1 29882:1 29930:1 29974:1 30020:3 30033:1 30045:1 30053:1 30078:1 30090:2 30104:1 30114:1 30116:1 30149:1 30189:1 30247:3 30300:1 30330:3 30365:2 30381:1 30390:1 30392:1 30414:1 30429:1 30459:1 30477:1 30494:1 30517:1 30556:1 30558:1 30574:1 30578:1 30597:1 30625:1 30676:1 30750:1 30867:2 30922:4 30931:1 30935:1 30942:1 30973:1 30978:1 30981:1 31002:1 31013:1 31036:1 31046:2 31054:1 31071:1 31083:1 31087:1 31090:2 31133:2 31135:1 31143:1 31179:1 31182:2 31183:1 31190:1 31195:1 31197:1 31208:1
17 19:2 33:1 49:1 61:1 62:1 110:1 122:1 173:2 183:1 227:1 256:2 304:1 343:1 351:1 357:1 358:1 401:2 404:1 420:1 422:1 426:1 504:2 577:1 591:1 641:1 690:1 708:1 719:1 726:1 817:1 824:1 846:2 864:4 928:2 969:1 973:1 977:4 979:2 982:1 986:4 991:1 992:1 997:1 1002:1 1008:2 1011:2 1028:1 1034:2 1036:1 1039:1 1095:1 1098:2 1129:1 1133:1 1145:1 1161:1 1166:1 1175:1 1186:1 1192:1 1204:1 1210:1 1220:1 1248:1 1269:1 1339:1 1382:1 1399:1 1414:1 1433:1 1462:1 1565:1 1601:1 1638:2 1644:1 1650:1 1669:1 1676:1 1688:1 1714:1 1717:1 1736:1 1771:1 1790:2 1797:1 1825:1 1827:1 1833:1 1851:1 1895:1 1896:2 1905:1 1910:1 1921:3 1933:1 1942:1 1950:1 1956:1 1961:2 1963:2 1964:1 1972:1 2027:2 2036:1 2078:1 2099:1 2108:1 2126:1 2136:1 2139:1 2164:1 2224:1 2270:1 2395:1 2442:1 2504:1 2525:1 2530:2 2531:1 2543:2 2550:1 2552:1 2556:1 2568:1 2569:1 2584:1 2600:2 2638:1 2650:1 2697:1 2698:1 2721:1 2737:4 2741:1 2757:1 2778:2 2783:1 2784:1 2789:1 2799:1 2804:2 2809:1 2821:1 2856:1 2872:1 2923:1 2939:1 2964:1 3031:1 3032:2 3101:1 3110:2 3131:1 3138:1 3142:1 3147:1 3189:3 3197:3 3210:2 3247:1 3257:2 3310:1 3313:2 3320:1 3322:1 3341:1 3365:1 3392:1 3412:1 3419:1 3457:1 3497:1 3563:1 3630:1 3671:2 3747:2 3778:1 3779:3 3797:1 3848:1 3881:3 3896:1 3913:1 3920:1 3926:1 3959:1 3992:1 3997:1 4003:1 4032:2 4052:1 4063:1 4093:1 4097:1 4127:2 4128:1 4132:1 4204:1 4207:3 4227:1 4262:1 4264:1 4268:1 4282:1 4284:1 4336:1 4337:1 4385:1 4389:1 4443:1 4446:1 4448:1 4463:1 4468:1 4487:1 4490:1 4507:1 4518:2 4535:2 4606:1 4608:1 4650:1 4712:1 4749:1 4754:1 4761:2 4765:1 4767:1 4780:1 4787:3 4842:1 4843:1 4855:1 4881:1 4891:1 4903:1 4931:1 4955:1 4981:1 4984:1 4985:4 4997:1 5012:1 5024:1 5050:1 5070:3 5088:1 5147:1 5154:1 5172:1 5179:1 5188:3 5190:1 5192:4 5209:1 5221:1 5248:1 5281:1 5296:1 5298:1 5302:1 5312:1 5314:1 5329:1 5338:1 5345:1 5347:1 5355:1 5357:1 5417:1 5418:1 5436:1 5505:1 5509:1 5540:2 5544:1 5547:1 5569:1 5580:2 5600:2 5603:1 5646:1 5651:1 5673:1 5684:1 5735:1 5742:1 5758:1 5761:1 5785:1 5877:1 5888:1 5889:1 5896:1 5950:1 6000:1 6013:1 6014:1 6040:2 6066:2 6082:1 6121:1 6153:1 6166:1 6170:1 6200:2 6202:1 6207:1 6222:1 6233:1 6246:1 6268:1 6280:1 6293:1 6298:1 6301:1 6306:1 6310:1 6312:7 6320:2 6346:1 6388:1 6409:1 6411:2 6433:2 6439:1 6440:3 6450:1 6456:1 6467:2 6484:1 6513:1 6531:2 6557:2 6562:1 6569:1 6575:1 6589:1 6640:2 6659:2 6661:1 6668:1 6672:1 6705:2 6727:1 6758:1 6768:1 6786:1 6829:3 6844:1 6865:2 6868:2 6875:1 6885:2 6886:1 6917:1 6922:1 6937:1 6959:1 7023:1 7033:1 7078:1 7101:1 7115:1 7121:2 7152:1 7171:3 7181:1 7219:1 7227:1 7270:1 7277:1 7312:3 7332:1 7353:1 7354:1 7374:1 7383:1 7395:1 7422:1 7423:1 7427:2 7577:1 7598:3 7616:2 7659:1 7663:1 7676:1 7715:1 7745:1 7761:1 7769:1 7775:1 7798:1 7799:1 7819:1 7908:1 7955:1 7959:1 7965:1 7974:1 8000:1 8019:1 8034:1 8050:1 8053:1 8082:1 8092:1 8126:3 8150:1 8151:2 8153:1 8161:1 8162:1 8170:1 8171:1 8173:2 8187:1 8214:3 8232:1 8247:1 8286:1 8300:1 8301:1 8305:1 8316:1 8337:2 8353:1 8371:1 8372:2 8420:7 8440:3 8442:2 8450:1 8493:1 8509:1 8557:1 8622:1 8642:1 8650:1 8678:1 8693:1 8716:1 8740:1 8823:3 8834:1 8837:2 8850:1 8857:1 8879:1 8903:1 8940:1 8953:1 8956:1 8961:1 8963:2 8987:1 9013:2 9062:1 9077:1 9079:1 9094:1 9119:1 9125:1 9129:1 9131:1 9132:1 9141:1 9149:1 9165:1 9175:2 9186:1 9192:1 9194:1 9224:1 9227:1 9268:2 9273:1 9305:3 9316:1 9367:1 9378:3 9385:1 9390:1 9421:1 9490:1 9500:1 9510:1 9568:2 9588:1 9680:1 9685:1 9693:1 9715:1 9795:4 9796:1 9826:1 9848:1 9850:1 9857:1 9872:1 9937:1 9981:1 9996:1 10051:2 10092:1 10119:1 10168:1 10191:1 10216:2 10229:1 10254:1 10273:1 10306:1 10326:2 10353:1 10368:1 10382:1 10390:1 10393:1 10402:1 10421:1 10422:1 10451:1 10486:1 10500:3 10501:1 10503:2 10516:1 10532:1 10554:1 10561:1 10568:1 10578:1 10597:1 10623:1 10626:1 10631:1 10650:4 10671:1 10676:2 10769:1 10853:1 10881:1 10884:1 10891:1 10945:1 10954:1 10960:3 10965:1 10972:1 10973:1 11010:1 11014:1 11018:1 11020:1 11021:1 11035:1 11042:1 11059:3 11103:1 11113:1 11137:1 11150:1 11217:1 11223:2 11237:2 11255:1 11263:1 11325:1 11338:1 11358:1 11360:1 11370:1 11373:1 11426:3 11429:1 11432:1 11437:2 11445:1 11448:1 11464:1 11481:1 11501:1 11509:1 11522:2 11565:1 11605:1 11664:2 11700:1 11703:1 11730:2 11745:1 11793:1 11813:1 11869:2 11946:1 11981:1 11996:3 11997:1 12004:1 12010:1 12015:1 12016:2 12026:1 12038:1 12039:1 12052:1 12055:4 12086:3 12095:1 12103:1 12159:1 12169:1 12187:1 12236:1 12246:3 12254:1 12268:1 12272:1 12290:1 12325:1 12332:1 12377:1 12380:1 12407:1 12412:1 12419:1 12424:1 12435:1 12450:1 12451:1 12457:1 12468:1 12473:1 12488:1 12500:1 12530:1 12623:1 12679:1 12708:1 12711:1 12743:1 12769:2 12773:1 12776:1 12780:1 12798:1 12827:1 12831:2 12839:1 12846:2 12890:1 12944:1 12968:1 12977:1 12995:1 12996:1 13025:1 13028:1 13034:2 13037:1 13038:3 13047:2 13050:1 13098:1 13133:1 13138:1 13141:1 13144:1 13157:2 13163:1 13169:1 13171:1 13173:2 13214:1 13222:1 13226:1 13228:1 13247:1 13253:1 13261:1 13266:1 13279:1 13280:1 13372:1 13374:1 13390:2 13399:1 13410:1 13439:1 13465:1 13468:1 13470:1 13472:1 13497:1 13540:1 13559:1 13579:1 13584:1 13591:1 13608:1 13680:2 13695:1 13704:1 13713:1 13725:1 13731:2 13746:1 13799:1 13828:4 13856:1 13858:1 13864:1 13934:2 13937:1 13963:1 13965:1 13971:2 13989:1 14051:1 14200:1 14276:1 14294:1 14298:1 14333:2 14339:2 14377:2 14420:1 14461:1 14504:1 14556:1 14566:1 14690:2 14704:1 14712:1 14728:1 14732:2 14753:2 14757:1 14803:1 14804:6 14843:1 14856:1 14860:1 14877:1 14882:1 14888:1 14897:1 14915:1 14923:1 14931:1 14941:1 14987:1 15020:1 15045:2 15169:1 15176:1 15220:1 15245:1 15248:1 15251:1 15271:1 15297:1 15329:1 15348:1 15371:1 15387:2 15400:1 15412:1 15439:1 15443:1 15444:1 15454:1 15458:1 15468:1 15495:1 15549:1 15570:1 15577:1 15580:3 15605:1 15608:1 15615:1 15617:1 15650:1 15672:1 15678:1 15685:1 15695:1 15704:1 15718:1 15720:1 15742:1 15750:2 15789:1 15815:1 15859:1 15953:1 15959:3 16015:1 16028:1 16029:1 16056:7 16083:1 16085:1 16089:11 16105:2 16116:1 16138:1 16146:3 16196:1 16259:1 16278:1 16298:1 16300:1 16309:2 16312:1 16321:1 16361:3 16410:2 16432:1 16443:1 16454:2 16478:1 16508:1 16515:1 16519:1 16525:1 16558:1 16596:1 16598:4 16633:1 16635:1 16638:1 16669:1 16702:1 16744:1 16788:1 16835:1 16839:2 16914:1 16940:1 16948:2 16965:1 16971:1 16972:1 16995:1 16996:1 16997:2 17018:1 17022:1 17035:1 17053:1 17072:1 17112:1 17134:1 17153:1 17179:1 17205:1 17213:1 17215:1 17238:1 17240:1 17257:4 17320:1 17330:1 17331:1 17338:2 17366:1 17390:2 17459:1 17503:3 17512:1 17516:2 17581:1 17610:1 17620:1 17622:1 17641:1 17676:1 17768:2 17804:1 17806:1 17814:1 17874:1 17878:1 17882:1 17911:1 17913:1 17965:1 17977:2 17985:1 17990:2 18005:2 18007:1 18027:1 18054:1 18077:1 18080:2 18148:1 18164:2 18177:1 18205:1 18283:1 18328:1 18366:1 18380:2 18406:1 18407:1 18471:1 18519:1 18561:1 18592:2 18604:1 18608:1 18610:1 18636:1 18642:1 18643:1 18662:1 18719:1 18751:1 18759:1 18786:1 18796:1 18882:1 18889:1 18900:1 18911:1 18926:1 18974:1 18982:1 18999:1 19011:1 19017:1 19022:1 19023:2 19034:1 19044:1 19061:1 19081:1 19083:1 19085:1 19087:1 19088:1 19136:2 19150:1 19180:1 19187:1 19225:1 19235:1 19255:1 19263:1 19276:1 19278:1 19291:1 19298:4 19321:1 19339:1 19362:1 19371:1 19391:1 19405:1 19584:2 19645:1 19650:1 19660:1 19699:1 19700:1 19706:1 19707:2 19721:1 19734:1 19743:1 19777:1 19810:1 19821:1 19842:1 19849:1 19862:1 19873:1 19885:1 19911:1 19933:1 19961:1 19991:1 19996:1 20058:1 20105:2 20122:1 20126:1305 20184:1 20187:1 20264:1 20276:1 20480:2 20502:1 20513:1 20520:1 20524:1 20556:1 20562:2 20577:1 20591:1 20600:1 20653:1 20668:3 20676:1 20707:1 20722:1 20768:1 20777:1 20782:1 20816:2 20820:1 20830:1 20921:1 20923:1 21035:2 21054:1 21059:1 21062:1 21122:1 21128:2 21140:2 21141:1 21145:1 21146:1 21165:1 21172:1 21194:1 21227:1 21253:1 21286:2 21288:1 21315:1 21358:1 21375:1 21437:1 21489:2 21525:1 21536:1 21544:1 21587:2 21592:1 21597:1 21598:1 21608:1 21628:2 21630:2 21631:1 21636:1 21649:1 21670:2 21677:1 21690:1 21700:1 21771:1 21781:2 21815:1 21872:1 21912:1 21934:1 21949:1 21953:1 21965:1 21967:1 22000:1 22003:1 22030:1 22042:2 22057:1 22064:2 22099:1 22150:1 22152:1 22167:1 22181:1 22201:1 22222:1 22244:1 22262:1 22270:2 22281:1 22294:1 22303:1 22312:1 22332:1 22366:1 22374:1 22376:2 22378:1 22390:1 22391:1 22466:1 22516:1 22551:1 22557:1 22571:2 22599:1 22639:1 22680:1 22711:1 22738:1 22786:2 22795:1 22837:2 22844:1 22845:5 22847:1 22854:1 22888:1 22903:1 22953:1 22973:1 22975:1 22984:1 22985:1 23011:1 23039:1 23043:2 23044:1 23077:1 23094:1 23096:1 23180:1 23193:2 23217:1 23226:1 23280:1 23285:1 23301:1 23328:1 23339:1 23371:2 23373:1 23379:4 23384:1 23387:1 23400:1 23409:1 23424:2 23445:1 23512:1 23520:1 23534:2 23559:1 23564:1 23585:2 23600:1 23609:2 23629:1 23644:2 23649:1 23652:1 23702:1 23712:3 23741:1 23748:1 23758:1 23766:1 23804:1 23832:1 23835:1 23840:1 23841:1 23843:1 23848:1 23887:2 23897:1 23900:1 23948:3 23952:1 23956:1 23961:1 23962:2 24032:1 24034:2 24051:4 24075:1 24102:1 24142:1 24156:1 24163:1 24200:3 24207:1 24215:1 24216:1 24283:1 24292:1 24298:1 24314:1 24318:2 24324:1 24348:1 24363:3 24394:1 24399:1 24405:1 24413:1 24417:1 24442:1 24447:1 24467:1 24473:1 24477:1 24489:1 24499:2 24507:1 24517:1 24566:1 24582:1 24600:1 24602:1 24606:1 24608:1 24658:1 24675:1 24773:1 24793:1 24850:2 24867:3 24912:1 24946:1 24964:1 24974:1 24975:2 24978:1 24986:1 24989:2 24990:2 25022:1 25030:1 25060:1 25061:1 25096:1 25100:2 25106:1 25121:1 25124:1 25136:1 25172:1 25251:2 25256:1 25258:1 25267:2 25275:4 25321:1 25349:1 25360:1 25364:2 25422:1 25438:1 25442:1 25445:1 25457:2 25467:1 25469:1 25486:1 25507:3 25511:1 25518:2 25544:1 25577:1 25638:2 25681:2 25684:1 25695:4 25713:1 25719:1 25720:2 25782:1 25805:1 25846:1 25851:1 25873:1 25886:1 25968:1 25974:2 25983:1 25990:2 25998:2 26009:1 26021:1 26041:1 26048:1 26062:1 26093:1 26120:1 26125:1 26129:1 26155:2 26190:1 26230:1 26231:1 26250:2 26260:1 26262:1 26283:1 26287:1 26309:2 26316:1 26317:1 26328:1 26341:1 26399:1 26483:1 26541:2 26545:1 26557:1 26583:1 26584:1 26602:1 26603:1 26609:1 26636:1 26669:1 26739:1 26741:1 26764:1 26804:1 26805:1 26838:2 26868:1 26885:1 26902:1 26923:1 26968:1 26978:1 27020:1 27055:1 27074:2 27083:1 27084:1 27094:3 27095:1 27108:1 27115:1 27128:1 27134:3 27167:2 27178:1 27206:1 27227:1 27247:2 27248:2 27249:1 27285:1 27295:1 27297:1 27319:1 27332:1 27376:1 27395:1 27408:1 27427:1 27439:2 27445:1 27485:1 27491:1 27512:3 27541:1 27543:1 27568:1 27601:1 27654:1 27770:2 27773:1 27794:1 27795:1 27817:1 27846:1 27851:2 27875:1 27881:1 27882:1 27890:1 27907:1 27920:1 27991:1 28042:1 28051:1 28053:2 28065:1 28081:2 28098:1 28102:1 28104:3 28139:2 28149:2 28151:1 28196:2 28205:2 28212:1 28220:2 28299:3 28300:1 28349:1 28389:1 28411:1 28412:1 28418:1 28444:3 28448:1 28482:1 28499:1 28548:1 28582:1 28586:1 28599:1 28616:1 28622:2 28639:1 28674:1 28691:1 28725:1 28741:2 28742:1 28748:2 28804:1 28811:1 28921:1 28960:1 28997:1 29006:2 29009:1 29015:1 29056:2 29061:1 29062:1 29076:1 29096:1 29122:1 29133:1 29148:1 29163:2 29178:1 29179:1 29188:1 29205:1 29266:2 29290:2 29296:1 29298:1 29345:2 29355:1 29367:1 29369:1 29388:1 29392:1 29402:2 29409:1 29417:2 29422:1 29448:1 29467:1 29483:1 29504:1 29537:1 29577:1 29620:2 29642:2 29647:2 29673:1 29681:1 29708:1 29718:1 29731:1 29746:1 29780:2 29806:5 29835:1 29852:4 29865:1 29882:1 29930:1 29974:1 30020:3 30033:1 30045:1 30053:1 30078:1 30090:2 30104:1 30114:1 30116:1 30149:1 30189:1 30247:3 30300:1 30330:3 30365:2 30381:1 30390:2 30392:2 30414:1 30429:1 30459:1 30477:1 30494:1 30517:1 30556:2 30558:2 30574:1 30578:1 30597:1 30625:1 30676:1 30750:1 30867:2 30922:4 30931:1 30935:1 30942:1 30973:1 30978:1 30981:1 31002:1 31013:1 31036:1 31046:2 31054:1 31071:1 31083:1 31087:1 31090:2 31133:2 31135:1 31143:1 31179:1 31182:3 31183:1 31190:1 31195:1 31197:1 31208:1
17 19:2 33:1 35:1 49:1 61:1 62:1 110:1 122:1 173:2 183:1 192:1 227:1 256:2 304:1 343:1 351:1 357:1 358:1 401:2 404:1 420:1 422:1 426:1 504:2 577:1 591:1 641:1 690:1 708:2 719:1 726:1 817:1 824:1 846:2 857:1 864:4 928:2 969:1 973:1 977:4 979:2 982:1 986:4 991:1 992:1 997:1 1002:1 1008:2 1011:2 1028:1 1034:2 1036:1 1039:1 1094:1 1095:1 1098:2 1129:1 1133:1 1145:1 1161:1 1166:1 1175:1 1186:1 1192:1 1204:1 1210:1 1220:1 1248:1 1269:1 1339:2 1382:1 1398:1 1399:1 1410:1 1414:1 1433:1 1462:1 1464:1 1560:1 1565:1 1601:1 1638:2 1644:1 1650:1 1669:1 1676:1 1688:1 1708:1 1714:1 1717:1 1736:1 1771:1 1790:2 1797:1 1816:1 1825:1 1827:1 1833:1 1851:1 1871:1 1895:1 1896:2 1905:1 1910:1 1921:3 1933:1 1942:1 1950:1 1956:1 1961:2 1963:2 1964:1 1972:1 1991:1 2018:1 2027:2 2036:1 2066:1 2078:1 2099:1 2108:1 2126:1 2136:1 2139:1 2164:1 2224:1 2270:1 2395:2 2442:1 2504:1 2525:1 2530:2 2531:1 2543:3 2550:1 2552:1 2556:1 2558:1 2568:1 2569:1 2584:1 2600:2 2633:1 2638:1 2650:1 2697:1 2698:1 2721:1 2737:4 2741:1 2757:1 2778:2 2783:1 2784:1 2789:1 2799:1 2804:2 2809:1 2821:1 2856:1 2872:1 2923:1 2939:1 2964:1 2982:1 3031:1 3032:2 3101:1 3110:2 3112:1 3131:1 3138:1 3142:1 3147:1 3189:3 3197:3 3210:3 3232:1 3247:1 3257:2 3310:1 3313:2 3320:1 3322:1 3341:1 3365:1 3392:1 3412:1 3419:1 3457:1 3497:1 3563:1 3630:1 3671:2 3747:2 3778:1 3779:3 3797:1 3817:1 3848:1 3849:1 3881:3 3896:1 3913:1 3920:1 3926:1 3959:1 3971:1 3992:1 3997:1 4003:1 4032:2 4052:1 4063:1 4093:1 4097:1 4127:2 4128:1 4132:1 4204:1 4207:3 4227:1 4262:1 4264:1 4268:1 4282:1 4284:1 4336:1 4337:1 4385:1 4389:1 4443:1 4446:1 4448:1 4463:1 4468:1 4487:1 4490:1 4507:1 4518:2 4535:2 4606:1 4608:1 4650:1 4662:1 4712:1 4749:1 4754:1 4761:2 4765:1 4767:1 4780:1 4787:3 4819:1 4842:1 4843:1 4855:1 4881:1 4891:1 4903:1 4931:1 4955:1 4981:1 4984:1 4985:4 4997:1 5012:1 5024:1 5050:1 5070:3 5076:1 5088:1 5147:1 5154:1 5161:1 5172:1 5179:1 5188:3 5190:1 5192:4 5209:1 5221:1 5248:1 5281:1 5296:1 5298:2 5302:1 5312:1 5314:1 5328:1 5329:1 5338:1 5345:2 5347:2 5355:1 5357:1 5417:1 5418:1 5436:1 5505:1 5509:1 5540:2 5544:1 5547:1 5569:1 5580:2 5600:2 5603:1 5646:1 5651:1 5673:1 5684:1 5735:1 5742:1 5758:1 5761:1 5785:1 5877:1 5888:1 5889:1 5896:1 5950:1 6000:1 6013:1 6014:1 6040:2 6066:2 6082:1 6121:1 6153:1 6164:2 6166:1 6170:1 6200:2 6202:1 6207:1 6222:1 6233:1 6246:1 6268:1 6280:1 6293:1 6298:1 6301:1 6306:1 6310:1 6312:7 6320:2 6346:1 6388:1 6409:1 6411:2 6433:2 6439:1 6440:3 6450:1 6456:1 6467:2 6484:1 6513:1 6531:2 6533:1 6557:2 6562:1 6569:1 6575:1 6589:2 6640:2 6659:2 6661:1 6668:1 6672:1 6705:2 6727:1 6748:1 6758:1 6768:1 6786:1 6829:3 6844:1 6865:2 6868:2 6875:1 6883:1 6885:2 6886:1 6917:1 6922:1 6937:1 6959:1 7023:1 7033:1 7078:1 7101:1 7115:1 7121:2 7152:1 7171:3 7181:1 7216:1 7219:1 7227:1 7270:1 7277:1 7312:3 7332:1 7353:1 7354:1 7374:1 7383:1 7395:1 7422:1 7423:1 7427:2 7577:1 7598:3 7616:2 7626:1 7650:1 7659:1 7663:1 7676:1 7715:1 7745:1 7761:1 7769:1 7775:1 7798:1 7799:1 7819:1 7846:1 7908:1 7955:1 7959:1 7965:1 7974:1 8000:2 8019:1 8034:1 8050:1 8053:1 8082:1 8092:1 8126:3 8150:1 8151:2 8153:1 8161:1 8162:1 8170:1 8171:1 8173:2 8187:1 8214:3 8232:1 8247:1 8286:1 8300:1 8301:1 8305:1 8316:1 8337:2 8353:1 8371:1 8372:2 8404:1 8420:8 8440:3 8442:2 8450:1 8493:1 8509:1 8542:2 8557:1 8622:1 8642:1 8644:1 8650:1 8678:1 8693:1 8716:1 8740:1 8823:3 8834:1 8837:2 8850:1 8857:1 8879:1 8886:1 8903:1 8940:1 8953:1 8956:1 8961:1 8963:2 8987:1 9013:2 9062:1 9077:1 9079:1 9094:1 9119:2 9125:1 9129:1 9131:1 9132:1 9141:1 9149:1 9165:1 9175:2 9186:1 9192:1 9194:1 9224:1 9227:1 9268:2 9273:1 9305:3 9316:1 9367:1 9378:3 9385:1 9390:1 9421:1 9490:1 9500:1 9510:1 9568:2 9588:1 9680:1 9685:1 9693:1 9715:1 9795:4 9796:1 9826:1 9835:1 9848:1 9850:1 9857:1 9872:1 9937:1 9981:1 9996:1 10051:2 10092:1 10119:1 10168:1 10191:1 10216:2 10229:1 10254:1 10273:1 10306:1 10326:2 10353:1 10368:1 10382:1 10390:1 10393:1 10402:1 10421:1 10422:1 10451:1 10486:1 10500:3 10501:1 10503:2 10516:1 10532:1 10554:1 10561:1 10568:1 10578:1 10597:1 10623:1 10626:1 10631:1 10650:4 10671:1 10676:2 10769:1 10853:1 10881:1 10884:1 10891:1 10945:1 10954:1 10960:3 10965:1 10966:1 10972:1 10973:1 10982:1 11010:1 11014:1 11018:1 11020:1 11021:1 11035:2 11042:1 11059:3 11103:1 11113:1 11137:1 11150:1 11217:1 11223:2 11237:2 11255:1 11263:1 11325:1 11338:1 11358:1 11360:1 11370:1 11373:1 11426:3 11429:1 11432:1 11437:2 11445:1 11448:1 11464:1 11481:1 11501:2 11509:1 11522:2 11565:1 11585:1 11605:1 11664:2 11700:1 11703:1 11730:2 11745:1 11793:1 11813:1 11869:2 11946:1 11963:1 11981:1 11996:3 11997:1 12004:1 12010:1 12015:1 12016:2 12026:1 12038:1 12039:1 12052:1 12055:4 12086:3 12095:1 12103:1 12104:1 12159:1 12169:1 12187:1 12236:1 12246:3 12254:1 12261:1 12268:1 12272:1 12290:1 12325:1 12332:1 12377:1 12380:1 12407:1 12412:1 12419:1 12424:1 12435:1 12446:1 12450:1 12451:1 12457:1 12468:1 12473:1 12488:1 12500:1 12530:1 12623:1 12679:1 12708:1 12711:1 12743:1 12769:2 12773:1 12776:1 12780:1 12798:1 12827:1 12831:2 12839:1 12846:2 12890:1 12921:1 12944:1 12968:1 12977:1 12995:1 12996:1 13025:1 13028:1 13034:2 13037:1 13038:3 13047:2 13050:1 13098:1 13133:1 13138:1 13141:1 13144:1 13157:2 13163:1 13169:1 13171:1 13173:2 13214:1 13222:1 13226:1 13228:1 13247:1 13253:2 13261:1 13266:1 13279:1 13280:1 13359:1 13372:1 13374:1 13390:2 13399:1 13410:1 13439:1 13465:1 13468:1 13470:1 13472:1 13481:1 13497:1 13540:1 13552:1 13559:1 13579:1 13584:1 13591:1 13608:1 13609:1 13680:2 13695:1 13704:1 13713:1 13725:1 13731:2 13746:1 13799:1 13828:4 13856:1 13858:1 13864:1 13934:3 13937:1 13963:1 13965:1 13971:2 13989:1 13991:1 14051:1 14200:1 14276:1 14294:1 14298:1 14333:2 14339:2 14357:1 14377:2 14420:1 14421:1 14461:1 14473:1 14504:1 14556:1 14566:1 14690:2 14704:1 14712:1 14728:1 14732:2 14744:1 14753:2 14757:1 14803:1 14804:6 14843:1 14856:1 14859:1 14860:1 14877:1 14882:1 14888:1 14897:1 14915:1 14923:1 14931:1 14941:1 14968:1 14987:1 14994:1 15020:1 15045:2 15150:1 15169:1 15176:1 15220:1 15245:1 15248:1 15251:1 15271:1 15297:1 15321:1 15329:1 15348:1 15349:1 15371:1 15387:2 15400:1 15412:1 15422:1 15439:1 15443:1 15444:1 15454:1 15458:1 15468:1 15495:1 15549:1 15570:1 15577:1 15580:3 15605:1 15608:1 15615:1 15617:1 15650:1 15672:1 15678:1 15685:1 15695:1 15704:1 15718:1 15720:1 15742:1 15750:2 15789:1 15815:1 15859:1 15953:1 15959:3 16015:1 16028:1 16029:1 16056:7 16083:1 16085:1 16089:11 16105:2 16116:1 16138:1 16146:3 16159:1 16196:1 16259:1 16278:1 16288:1 16298:1 16300:2 16309:2 16312:1 16321:1 16361:3 16409:1 16410:2 16432:1 16443:1 16454:2 16478:1 16508:1 16515:1 16519:1 16525:1 16558:1 16596:1 16598:4 16633:1 16635:1 16638:1 16651:1 16669:1 16702:1 16744:1 16788:1 16798:1 16835:1 16839:2 16840:1 16914:1 16940:2 16948:2 16965:1 16971:1 16972:1 16995:1 16996:1 16997:2 17018:1 17022:1 17029:1 17035:1 17053:1 17072:1 17112:1 17134:1 17135:1 17153:1 17179:1 17205:1 17213:1 17215:1 17238:1 17240:1 17257:4 17320:1 17330:2 17331:1 17338:2 17366:1 17390:2 17459:1 17503:3 17512:1 17516:2 17581:1 17610:1 17620:1 17622:1 17641:1 17676:1 17768:2 17804:1 17806:1 17814:1 17874:1 17878:1 17882:1 17911:1 17913:1 17965:1 17977:2 17985:1 17990:2 18005:2 18007:1 18027:1 18054:1 18077:1 18080:2 18148:1 18164:2 18177:1 18205:1 18227:1 18264:1 18283:1 18291:1 18328:1 18366:1 18380:2 18406:1 18407:1 18471:1 18519:1 18561:1 18578:1 18592:2 18604:1 18608:1 18610:1 18636:1 18642:1 18643:1 18662:1 18719:1 18751:1 18759:1 18786:1 18796:1 18797:1 18834:1 18882:1 18889:1 18900:1 18911:1 18926:1 18974:1 18982:1 18999:1 19011:1 19017:1 19022:1 19023:2 19034:1 19044:1 19061:1 19081:1 19083:1 19085:1 19087:1 19088:1 19136:2 19150:1 19180:1 19187:1 19225:1 19235:1 19255:1 19263:1 19276:1 19278:1 19291:1 19298:4 19321:1 19339:1 19362:1 19371:1 19391:1 19405:1 19522:1 19584:2 19645:1 19650:1 19660:1 19699:1 19700:1 19706:1 19707:2 19721:1 19734:1 19743:1 19777:1 19810:1 19821:1 19842:1 19849:1 19862:1 19873:1 19885:1 19911:1 19924:1 19933:1 19961:1 19991:1 19996:1 20056:1 20058:1 20105:2 20122:1 20126:1388 20184:1 20187:1 20264:1 20276:1 20480:2 20502:1 20513:1 20520:1 20524:1 20556:1 20562:2 20577:1 20591:1 20600:1 20653:1 20668:3 20676:1 20707:1 20722:1 20768:1 20777:1 20782:1 20816:2 20820:1 20830:1 20921:1 20923:1 21031:1 21035:2 21054:1 21059:1 21062:1 21122:1 21128:2 21140:2 21141:1 21145:1 21146:1 21165:1 21172:1 21194:1 21227:1 21253:1 21286:2 21288:1 21315:1 21358:1 21375:1 21437:1 21489:2 21525:1 21536:1 21544:1 21587:2 21592:1 21597:1 21598:1 21608:1 21628:2 21630:2 21631:1 21636:1 21649:1 21670:2 21677:1 21690:1 21700:1 21771:1 21781:2 21815:1 21872:1 21912:1 21915:1 21925:1 21934:1 21938:1 21949:1 21953:1 21965:1 21967:1 22000:2 22003:1 22030:1 22042:2 22057:1 22064:2 22099:1 22150:1 22152:1 22167:1 22181:1 22186:1 22193:1 22201:1 22222:1 22244:1 22262:1 22270:2 22281:1 22294:1 22303:1 22312:1 22332:1 22366:1 22374:1 22376:2 22378:1 22390:1 22391:1 22466:1 22516:1 22547:1 22551:1 22557:1 22571:2 22599:1 22639:1 22680:1 22711:1 22738:1 22786:2 22795:1 22816:1 22837:2 22844:1 22845:5 22847:1 22854:1 22888:1 22903:1 22953:1 22973:1 22975:1 22984:1 22985:1 23011:1 23017:1 23032:1 23039:1 23043:2 23044:1 23077:1 23094:1 23096:1 23180:1 23187:1 23193:2 23217:1 23226:1 23280:1 23285:1 23301:1 23328:1 23339:1 23371:2 23373:1 23379:4 23384:1 23387:1 23400:1 23409:1 23424:2 23445:1 23512:1 23520:1 23534:2 23559:1 23564:1 23585:2 23586:1 23600:1 23609:2 23625:1 23629:1 23644:2 23649:2 23652:1 23677:1 23702:1 23712:3 23741:1 23748:1 23758:1 23766:1 23767:1 23804:1 23832:1 23835:1 23840:1 23841:1 23843:1 23848:1 23887:2 23897:1 23900:1 23948:3 23952:1 23956:1 23961:1 23962:2 24032:1 24034:2 24051:4 24075:1 24102:1 24142:1 24156:1 24163:1 24200:3 24207:1 24215:1 24216:1 24283:1 24292:1 24298:1 24314:1 24318:2 24324:1 24348:1 24363:3 24394:1 24399:1 24405:1 24413:1 24417:1 24442:1 24447:1 24467:1 24473:1 24477:1 24489:1 24499:2 24507:1 24517:1 24566:1 24582:1 24600:1 24602:1 24606:1 24608:1 24658:1 24675:1 24732:1 24773:1 24793:1 24850:2 24867:3 24912:1 24946:1 24964:2 24974:1 24975:3 24978:1 24986:1 24989:3 24990:2 25022:1 25030:1 25060:1 25061:1 25096:1 25100:2 25106:1 25121:1 25124:1 25136:1 25172:1 25251:2 25256:1 25258:1 25267:2 25275:4 25290:1 25321:1 25349:1 25360:1 25364:2 25422:1 25438:1 25442:1 25445:1 25457:2 25467:1 25469:1 25486:1 25496:1 25507:3 25511:1 25518:2 25544:1 25564:1 25577:1 25638:2 25681:2 25684:1 25695:4 25713:1 25719:1 25720:2 25782:1 25805:1 25846:1 25851:1 25873:1 25886:1 25907:1 25968:1 25974:2 25983:1 25985:1 25990:2 25998:2 26009:1 26021:1 26041:1 26048:1 26062:1 26093:1 26120:1 26125:1 26129:1 26149:1 26155:2 26172:1 26190:1 26230:1 26231:1 26250:2 26260:1 26262:1 26283:1 26287:1 26309:2 26316:1 26317:1 26328:1 26341:1 26399:1 26483:1 26541:2 26545:1 26557:1 26583:1 26584:1 26602:1 26603:1 26609:1 26626:1 26636:1 26669:1 26739:1 26741:1 26764:1 26804:1 26805:1 26838:2 26868:1 26885:1 26902:1 26923:1 26968:1 26978:1 27020:1 27055:1 27074:2 27083:1 27084:1 27094:3 27095:1 27108:1 27115:1 27128:1 27134:3 27167:2 27178:1 27198:1 27206:1 27227:1 27247:2 27248:2 27249:1 27285:1 27287:1 27295:1 27297:1 27319:1 27332:1 27376:1 27395:1 27405:1 27408:1 27427:1 27439:2 27445:1 27485:1 27491:1 27512:3 27541:1 27543:1 27568:1 27601:1 27654:1 27667:1 27770:2 27773:1 27794:1 27795:1 27817:1 27825:1 27846:1 27851:2 27875:1 27881:1 27882:1 27890:1 27907:1 27920:1 27991:1 28042:1 28051:1 28053:2 28065:1 28081:2 28098:1 28102:1 28104:3 28109:1 28139:2 28149:2 28151:1 28196:2 28205:2 28212:1 28220:2 28299:3 28300:1 28349:1 28389:1 28411:1 28412:1 28418:1 28444:3 28448:1 28482:1 28499:1 28548:1 28582:1 28586:1 28599:1 28616:1 28622:2 28639:1 28674:1 28691:1 28725:1 28739:2 28741:2 28742:1 28748:2 28804:1 28811:1 28884:1 28921:1 28960:1 28997:1 29006:2 29009:1 29015:1 29056:2 29061:1 29062:1 29071:1 29076:1 29096:1 29122:1 29123:1 29133:1 29148:1 29163:2 29178:1 29179:1 29188:1 29205:1 29266:2 29290:2 29296:1 29298:1 29345:2 29355:1 29367:1 29369:1 29388:1 29392:1 29402:2 29409:1 29417:2 29422:1 29448:1 29467:1 29483:1 29491:1 29504:1 29537:1 29577:1 29620:2 29642:2 29647:2 29673:1 29681:1 29701:1 29708:1 29718:1 29731:1 29746:1 29780:2 29806:5 29835:1 29852:4 29865:1 29882:1 29930:1 29974:1 30020:3 30033:1 30045:1 30053:1 30075:1 30078:1 30090:2 30104:1 30114:1 30116:1 30149:1 30189:1 30247:3 30251:1 30300:1 30330:3 30365:2 30381:1 30390:2 30392:2 30414:1 30428:1 30429:1 30459:1 30477:1 30494:1 30517:1 30526:1 30556:2 30558:2 30574:1 30578:1 30597:1 30599:1 30625:1 30676:1 30714:1 30750:1 30867:2 30922:4 30931:1 30935:1 30942:1 30973:2 30978:1 30981:1 31002:1 31013:1 31036:1 31046:2 31054:1 31071:1 31083:1 31087:1 31090:2 31133:2 31135:1 31143:2 31179:1 31182:3 31183:1 31190:1 31195:1 31197:1 31208:1
17 19:2 33:1 35:1 49:1 61:1 62:1 110:1 122:1 173:2 183:1 192:1 224:1 227:1 256:2 304:1 343:1 351:1 357:1 358:1 401:2 404:1 420:1 422:1 426:1 504:2 577:1 591:1 633:1 641:1 647:1 690:1 708:2 719:1 726:1 817:1 824:1 846:2 857:1 864:4 928:2 969:1 973:1 977:4 979:2 982:1 986:4 991:1 992:1 997:1 1002:1 1008:2 1011:2 1028:1 1034:2 1036:1 1039:1 1094:1 1095:1 1098:2 1129:1 1133:1 1145:1 1161:1 1166:1 1168:1 1175:1 1186:1 1192:1 1204:1 1210:1 1220:1 1248:1 1269:1 1339:2 1382:1 1398:1 1399:1 1410:1 1414:1 1433:1 1462:1 1464:1 1560:1 1565:1 1601:1 1638:2 1644:1 1650:1 1669:1 1676:1 1688:1 1708:1 1714:1 1717:1 1736:1 1771:1 1790:2 1797:1 1816:1 1825:1 1827:1 1833:1 1851:1 1871:1 1895:1 1896:2 1905:1 1910:1 1921:3 1933:1 1942:1 1950:1 1956:1 1961:2 1963:2 1964:1 1972:1 1991:1 2018:1 2027:2 2036:1 2066:1 2078:1 2099:1 2108:1 2126:1 2136:1 2139:1 2164:1 2224:1 2270:1 2395:2 2442:1 2504:1 2525:1 2530:2 2531:1 2543:3 2550:1 2552:1 2556:1 2558:1 2568:1 2569:3 2584:1 2600:2 2633:1 2638:1 2650:1 2697:1 2698:1 2721:1 2737:4 2741:1 2757:1 2778:2 2783:1 2784:1 2789:1 2799:1 2804:2 2809:1 2821:1 2856:1 2872:1 2923:1 2939:1 2964:1 2982:1 3031:1 3032:2 3101:1 3110:2 3112:1 3131:1 3138:1 3142:1 3147:1 3189:3 3197:3 3210:3 3232:1 3247:1 3257:2 3310:1 3313:2 3320:1 3322:1 3341:1 3365:1 3392:1 3412:1 3419:1 3457:1 3463:1 3497:1 3563:1 3630:1 3671:2 3747:2 3778:1 3779:3 3797:1 3817:1 3848:1 3849:1 3881:3 3896:1 3913:1 3920:1 3926:1 3959:1 3971:1 3992:1 3997:1 4003:1 4032:2 4052:1 4063:1 4093:1 4097:1 4127:2 4128:1 4132:1 4204:1 4207:3 4227:1 4262:1 4264:1 4268:1 4282:1 4284:1 4336:1 4337:1 4385:1 4389:1 4443:1 4446:1 4448:1 4463:1 4468:1 4487:1 4490:1 4507:1 4518:2 4535:2 4606:1 4608:1 4645:1 4650:1 4662:1 4712:1 4749:1 4754:1 4761:3 4765:1 4767:1 4780:1 4787:3 4814:1 4819:1 4842:1 4843:1 4855:1 4881:1 4891:1 4903:1 4931:1 4955:1 4981:1 4984:1 4985:4 4997:1 5012:1 5024:1 5050:1 5070:3 5076:1 5088:1 5147:1 5154:1 5161:1 5172:1 5179:1 5188:3 5190:1 5192:4 5209:1 5221:1 5248:1 5281:1 5296:1 5298:2 5302:1 5312:1 5314:1 5328:1 5329:1 5338:1 5345:2 5347:2 5355:1 5357:1 5394:1 5417:1 5418:1 5436:1 5505:1 5509:1 5540:2 5544:1 5547:1 5569:1 5580:2 5586:1 5592:1 5600:2 5603:1 5646:1 5651:1 5673:1 5684:1 5692:1 5735:1 5742:1 5758:1 5761:1 5785:1 5877:1 5888:1 5889:1 5896:1 5950:1 5979:1 6000:1 6013:1 6014:1 6040:2 6066:2 6082:1 6121:1 6142:1 6153:1 6164:2 6166:1 6170:1 6200:2 6202:1 6207:1 6222:1 6233:1 6246:1 6268:1 6280:1 6293:1 6298:1 6301:1 6306:1 6310:1 6312:7 6320:2 6346:1 6388:2 6409:1 6411:2 6433:2 6439:1 6440:3 6450:1 6456:1 6467:2 6484:1 6513:1 6531:2 6533:3 6557:2 6562:1 6569:1 6575:1 6589:2 6640:2 6659:2 6661:1 6668:1 6672:1 6705:2 6727:1 6748:1 6758:1 6768:1 6786:1 6829:3 6844:1 6865:2 6868:2 6875:1 6883:1 6885:2 6886:1 6917:1 6922:1 6926:1 6937:1 6959:1 7023:1 7033:1 7078:1 7101:1 7115:1 7121:2 7152:1 7169:1 7171:3 7181:1 7216:1 7219:1 7227:1 7270:1 7277:1 7312:3 7332:1 7353:1 7354:1 7374:1 7383:1 7395:1 7422:1 7423:1 7427:2 7577:1 7598:3 7616:2 7626:1 7647:1 7650:1 7659:1 7663:1 7676:1 7715:1 7745:1 7761:1 7769:1 7775:1 7798:1 7799:1 7819:1 7846:1 7908:1 7955:1 7959:1 7965:1 7974:1 8000:2 8019:1 8034:1 8050:1 8053:1 8082:1 8092:1 8126:3 8150:1 8151:2 8153:1 8161:2 8162:1 8170:1 8171:1 8173:2 8187:1 8214:3 8232:1 8247:1 8286:1 8300:1 8301:1 8305:1 8316:1 8337:2 8353:1 8371:1 8372:2 8404:1 8420:8 8440:3 8442:2 8450:1 8474:1 8493:1 8509:1 8542:2 8557:1 8622:1 8642:1 8644:1 8650:1 8678:1 8693:1 8716:1 8740:1 8823:3 8834:1 8837:2 8850:1 8857:1 8879:1 8886:1 8903:1 8940:1 8953:1 8956:1 8961:1 8963:2 8987:1 9013:2 9062:1 9077:1 9079:1 9094:1 9119:2 9125:1 9129:1 9131:1 9132:1 9141:1 9149:1 9165:1 9175:2 9186:1 9192:1 9194:1 9224:1 9227:1 9268:2 9273:1 9305:3 9316:1 9367:1 9370:1 9378:3 9385:1 9390:1 9421:1 9490:1 9500:1 9506:1 9510:1 9568:2 9588:1 9680:1 9685:1 9693:1 9715:1 9795:4 9796:1 9826:1 9835:1 9848:1 9850:1 9857:1 9872:1 9900:1 9922:1 9937:1 9981:1 9996:1 10013:1 10051:2 10092:1 10119:1 10168:1 10191:1 10216:2 10229:1 10254:1 10273:1 10306:1 10326:2 10353:1 10368:1 10372:1 10382:1 10390:1 10393:1 10402:1 10421:1 10422:1 10451:1 10486:1 10500:3 10501:1 10503:2 10516:1 10532:1 10554:1 10561:1 10568:1 10578:1 10597:1 10623:1 10626:1 10631:1 10650:4 10671:1 10676:2 10769:1 10853:1 10881:1 10884:1 10891:1 10945:1 10954:1 10960:3 10965:1 10966:1 10972:1 10973:1 10982:1 11010:1 11014:1 11018:1 11020:1 11021:1 11025:1 11035:2 11042:1 11055:1 11059:3 11103:1 11113:1 11137:1 11144:1 11150:1 11217:1 11223:2 11237:2 11255:1 11263:1 11304:1 11325:1 11338:1 11358:1 11360:1 11370:1 11373:1 11426:4 11429:1 11432:1 11437:2 11445:1 11448:1 11464:1 11481:1 11501:2 11509:1 11522:2 11565:1 11585:1 11605:1 11649:1 11664:2 11685:1 11700:1 11703:1 11730:3 11745:1 11793:1 11813:1 11869:2 11891:1 11946:1 11963:1 11981:1 11996:3 11997:1 12004:1 12010:1 12015:1 12016:2 12026:1 12038:1 12039:1 12052:1 12055:4 12086:3 12095:1 12103:1 12104:3 12159:1 12169:1 12187:1 12236:1 12246:3 12254:1 12261:1 12268:1 12272:1 12290:1 12325:1 12332:1 12377:1 12380:1 12407:1 12412:1 12419:1 12424:1 12435:1 12446:1 12450:1 12451:1 12457:1 12468:1 12473:1 12488:1 12500:1 12530:1 12623:1 12679:1 12708:1 12711:1 12743:1 12769:2 12773:1 12776:1 12780:1 12798:1 12827:1 12831:2 12839:1 12846:2 12890:1 12921:1 12944:1 12968:1 12977:1 12995:1 12996:1 13025:1 13028:1 13034:2 13037:1 13038:3 13047:2 13050:1 13098:1 13133:1 13138:1 13141:1 13144:1 13157:2 13163:1 13169:1 13171:1 13173:2 13214:1 13222:1 13226:1 13228:1 13244:1 13247:1 13253:2 13261:1 13266:1 13279:1 13280:1 13359:1 13372:1 13374:1 13390:2 13399:1 13410:1 13439:1 13465:1 13468:1 13470:1 13472:1 13481:1 13497:1 13540:1 13552:1 13559:1 13579:1 13584:1 13591:1 13608:1 13609:1 13680:2 13695:1 13704:1 13713:1 13725:1 13731:2 13746:1 13799:1 13828:4 13856:1 13858:1 13864:1 13934:3 13937:1 13963:1 13965:1 13971:2 13989:1 13991:1 14051:1 14200:1 14276:1 14294:1 14298:1 14333:2 14339:2 14341:1 14342:1 14357:1 14377:2 14420:1 14421:1 14461:1 14473:1 14504:1 14556:1 14566:1 14690:2 14704:1 14712:1 14728:1 14732:2 14744:1 14753:2 14757:1 14803:1 14804:6 14843:1 14856:1 14859:1 14860:1 14877:1 14882:1 14888:1 14897:1 14915:1 14923:1 14931:1 14941:1 14968:1 14987:1 14994:1 15020:1 15045:2 15150:1 15169:1 15176:1 15220:1 15245:1 15248:2 15251:1 15271:1 15297:1 15321:1 15329:1 15348:1 15349:1 15371:1 15387:2 15400:1 15412:1 15422:1 15439:1 15443:1 15444:1 15454:1 15458:1 15468:1 15495:1 15549:1 15554:1 15570:1 15577:1 15580:3 15605:1 15608:1 15615:1 15617:1 15650:1 15672:1 15678:1 15685:1 15695:1 15704:1 15718:1 15720:1 15742:1 15750:2 15789:1 15804:1 15815:1 15859:1 15953:1 15959:3 16015:1 16028:2 16029:1 16056:7 16080:1 16083:1 16085:1 16089:12 16105:2 16116:1 16138:1 16146:3 16155:1 16159:1 16196:1 16259:1 16278:2 16288:1 16298:1 16300:2 16309:2 16312:1 16321:1 16361:3 16409:1 16410:2 16432:1 16443:1 16454:2 16478:1 16508:1 16515:1 16519:1 16525:1 16558:1 16585:1 16596:1 16598:4 16617:1 16633:1 16635:1 16638:1 16651:1 16669:1 16702:2 16744:1 16788:1 16798:1 16835:1 16839:2 16840:1 16914:1 16940:2 16948:2 16965:1 16971:1 16972:1 16995:1 16996:1 16997:2 17018:1 17022:1 17029:1 17035:1 17053:1 17072:1 17112:1 17134:1 17135:1 17153:1 17179:1 17205:1 17213:1 17215:1 17238:1 17240:1 17257:4 17320:1 17330:2 17331:1 17338:2 17366:1 17390:2 17459:1 17503:3 17512:1 17516:2 17581:1 17610:1 17620:1 17622:1 17641:1 17676:1 17768:2 17804:1 17806:1 17814:1 17843:1 17874:1 17878:1 17882:1 17899:1 17911:1 17913:1 17965:1 17977:2 17985:1 17990:2 18005:2 18007:1 18027:1 18054:1 18077:1 18080:2 18148:1 18164:2 18177:1 18205:1 18227:1 18264:1 18283:1 18291:1 18328:1 18345:1 18366:1 18380:2 18406:1 18407:1 18471:1 18519:1 18561:1 18578:1 18592:2 18604:1 18605:1 18608:1 18610:1 18636:1 18642:1 18643:1 18662:1 18719:1 18751:1 18759:1 18786:1 18796:1 18797:1 18834:1 18882:1 18889:1 18900:1 18911:1 18926:1 18974:1 18982:1 18999:1 19011:1 19017:1 19022:1 19023:2 19034:1 19044:1 19061:1 19081:1 19083:1 19085:1 19087:1 19088:1 19136:2 19147:1 19150:1 19180:1 19187:1 19225:1 19235:1 19255:1 19263:1 19276:1 19278:1 19291:1 19298:4 19321:2 19339:1 19362:1 19371:1 19391:1 19405:1 19522:1 19584:2 19627:1 19645:1 19650:1 19660:1 19699:1 19700:1 19706:1 19707:2 19721:1 19734:1 19743:1 19777:1 19810:1 19821:1 19842:1 19849:1 19862:1 19873:1 19885:1 19911:1 19924:1 19933:1 19961:1 19991:1 19996:1 20056:1 20058:1 20105:2 20122:1 20126:1450 20184:1 20187:1 20264:1 20276:1 20480:2 20502:1 20513:1 20520:1 20524:1 20556:1 20562:2 20577:1 20591:1 20600:1 20653:1 20668:3 20676:1 20707:1 20722:1 20768:1 20777:1 20782:1 20816:2 20820:1 20830:1 20921:1 20923:1 20951:1 21031:1 21035:2 21054:1 21059:1 21062:1 21122:1 21128:2 21140:2 21141:1 21145:1 21146:1 21165:1 21172:1 21194:1 21227:1 21253:1 21286:2 21288:1 21315:1 21329:1 21358:1 21375:1 21437:1 21489:2 21525:1 21536:1 21544:1 21556:1 21587:2 21592:1 21597:1 21598:1 21608:1 21628:2 21630:2 21631:1 21636:1 21649:1 21670:2 21677:1 21690:1 21700:1 21758:1 21771:1 21781:2 21815:1 21872:1 21912:1 21915:1 21925:1 21934:1 21938:1 21949:1 21953:1 21965:1 21967:1 21985:1 22000:2 22003:1 22030:1 22042:2 22057:2 22064:2 22099:1 22150:1 22152:1 22167:1 22181:1 22186:1 22193:1 22201:1 22222:1 22244:1 22262:1 22270:2 22281:1 22294:1 22303:2 22312:1 22332:1 22366:1 22374:1 22376:2 22378:1 22390:1 22391:1 22466:1 22516:1 22547:1 22551:1 22557:1 22571:2 22599:1 22639:1 22680:1 22711:1 22738:1 22786:2 22795:1 22816:1 22837:2 22844:1 22845:5 22847:1 22854:1 22888:1 22903:1 22953:1 22973:1 22975:1 22984:1 22985:1 23011:1 23017:1 23032:1 23039:1 23043:2 23044:1 23077:1 23094:1 23096:1 23180:1 23187:1 23193:2 23217:1 23226:1 23280:1 23285:1 23301:1 23328:1 23339:1 23371:2 23373:1 23379:4 23384:1 23387:1 23400:1 23409:1 23424:2 23445:1 23512:1 23520:1 23534:2 23559:1 23564:1 23585:2 23586:1 23600:1 23609:2 23625:1 23629:1 23644:2 23649:2 23652:1 23677:1 23702:1 23712:3 23741:1 23748:1 23758:1 23766:1 23767:1 23804:1 23832:1 23835:1 23840:1 23841:1 23843:1 23848:1 23887:2 23897:1 23900:1 23948:3 23952:1 23956:1 23961:1 23962:3 24032:1 24034:2 24051:4 24075:1 24102:1 24142:1 24156:1 24163:1 24200:3 24207:1 24215:1 24216:1 24283:1 24292:1 24298:1 24314:1 24318:2 24324:1 24348:1 24363:3 24394:1 24399:1 24405:1 24413:1 24417:1 24442:1 24447:1 24467:1 24473:1 24477:1 24489:1 24499:2 24507:1 24517:1 24566:1 24582:1 24600:1 24602:1 24606:1 24608:2 24658:1 24675:1 24732:1 24773:1 24793:2 24850:3 24867:3 24912:1 24946:1 24964:2 24974:1 24975:3 24978:2 24986:1 24989:3 24990:3 25022:1 25030:1 25060:1 25061:1 25073:1 25096:1 25100:2 25106:1 25121:1 25124:1 25136:1 25172:1 25251:2 25256:1 25258:1 25267:2 25275:4 25290:1 25321:1 25349:1 25360:1 25364:2 25422:1 25438:1 25442:1 25445:2 25457:2 25467:1 25469:1 25486:1 25496:1 25507:3 25511:1 25518:2 25544:1 25564:1 25577:1 25638:2 25681:2 25684:1 25695:4 25713:1 25719:1 25720:2 25782:1 25805:1 25846:1 25851:1 25859:1 25873:1 25886:1 25907:1 25968:1 25974:2 25983:1 25985:1 25990:2 25998:2 26009:1 26021:1 26041:1 26048:1 26062:1 26093:1 26120:1 26125:2 26129:1 26149:1 26155:2 26172:1 26190:1 26230:1 26231:1 26250:2 26260:1 26262:1 26283:1 26287:1 26309:2 26316:1 26317:1 26328:1 26341:1 26399:1 26483:1 26541:2 26545:1 26557:1 26583:1 26584:1 26602:1 26603:1 26609:1 26626:1 26636:1 26669:1 26739:1 26741:1 26764:1 26804:1 26805:1 26838:2 26868:1 26885:1 26902:1 26923:1 26968:1 26978:1 27020:1 27055:1 27072:1 27074:2 27083:1 27084:1 27094:3 27095:1 27108:1 27115:1 27128:1 27134:3 27167:2 27178:1 27198:1 27206:1 27227:1 27247:2 27248:2 27249:1 27285:1 27287:1 27295:1 27297:1 27319:1 27332:1 27376:1 27395:1 27405:1 27408:1 27427:1 27439:2 27445:1 27485:1 27491:1 27512:3 27541:1 27543:1 27568:1 27601:1 27654:1 27667:1 27770:2 27773:1 27794:1 27795:1 27817:1 27825:1 27846:1 27851:2 27875:1 27881:1 27882:1 27890:1 27907:1 27920:1 27991:1 28042:1 28051:1 28053:2 28065:1 28081:2 28098:1 28102:1 28104:3 28109:1 28139:2 28149:2 28151:1 28196:2 28205:2 28211:1 28212:1 28220:2 28299:3 28300:1 28349:1 28389:1 28411:1 28412:1 28418:1 28444:3 28448:1 28482:1 28499:1 28526:1 28548:1 28573:1 28580:1 28582:1 28586:1 28599:1 28616:1 28622:2 28639:1 28674:1 28691:1 28725:1 28739:2 28741:2 28742:1 28748:2 28759:1 28804:2 28811:1 28884:1 28921:1 28960:1 28997:1 29006:2 29009:1 29015:1 29056:2 29061:1 29062:1 29071:1 29076:1 29096:1 29122:1 29123:1 29133:1 29148:1 29163:2 29178:1 29179:1 29188:1 29205:1 29266:2 29290:2 29296:1 29298:1 29345:2 29355:1 29367:1 29369:1 29388:1 29392:1 29402:2 29409:1 29417:2 29422:1 29448:1 29467:1 29483:1 29491:1 29504:1 29537:1 29577:1 29620:2 29642:2 29647:2 29673:1 29681:1 29701:1 29708:1 29718:1 29731:1 29746:1 29780:2 29806:6 29819:1 29835:1 29852:4 29865:1 29882:1 29904:1 29930:1 29974:1 30020:3 30033:1 30045:1 30053:1 30075:1 30078:1 30090:2 30104:1 30114:1 30116:1 30149:1 30189:1 30247:3 30251:1 30300:1 30330:3 30365:2 30381:1 30390:2 30392:2 30414:1 30428:1 30429:1 30459:1 30477:1 30494:1 30517:1 30526:1 30556:2 30558:2 30574:1 30578:1 30597:1 30599:1 30625:1 30676:1 30714:1 30750:1 30867:2 30922:4 30931:1 30935:1 30942:1 30973:2 30978:1 30981:1 31002:1 31013:1 31036:1 31046:2 31054:1 31071:1 31083:1 31087:1 31090:2 31100:1 31133:2 31135:1 31143:2 31179:1 31182:3 31183:1 31190:1 31195:1 31197:1 31208:1
17 19:2 33:1 35:1 49:1 61:1 62:1 86:1 110:1 122:1 173:2 183:1 192:1 224:1 227:1 240:1 256:2 304:2 343:1 351:1 357:1 358:1 401:2 404:1 419:1 420:1 422:1 426:1 504:2 509:1 577:1 591:1 633:1 641:1 647:1 690:1 708:2 719:1 726:1 817:1 824:1 846:2 857:1 864:4 928:2 969:1 973:1 977:4 979:2 982:1 986:4 990:1 991:1 992:1 997:1 1002:1 1008:2 1011:2 1028:1 1034:2 1036:1 1039:1 1074:2 1094:1 1095:1 1098:2 1129:1 1133:1 1145:1 1161:1 1165:1 1166:1 1168:1 1175:1 1186:1 1192:1 1204:1 1210:1 1220:1 1248:1 1269:1 1339:2 1382:1 1398:1 1399:1 1410:1 1414:1 1433:1 1462:1 1464:1 1497:1 1560:1 1565:2 1601:1 1625:1 1638:2 1644:1 1650:1 1669:1 1676:1 1688:1 1708:1 1714:1 1717:1 1736:1 1771:1 1790:2 1797:1 1816:1 1825:1 1827:1 1833:1 1851:1 1871:1 1895:1 1896:2 1905:1 1910:1 1921:3 1933:1 1942:1 1950:1 1956:1 1961:2 1963:2 1964:1 1972:1 1991:1 2018:1 2027:2 2036:1 2066:1 2078:1 2099:1 2108:1 2126:1 2136:1 2139:1 2164:1 2187:1 2224:1 2253:1 2270:1 2282:1 2307:1 2395:2 2442:1 2467:1 2486:1 2504:1 2519:1 2525:1 2530:2 2531:1 2543:3 2550:1 2551:1 2552:1 2556:1 2558:1 2568:1 2569:3 2584:1 2600:2 2633:1 2638:1 2650:1 2697:1 2698:1 2721:1 2737:4 2741:1 2757:1 2778:2 2783:1 2784:1 2789:1 2799:1 2804:2 2809:1 2816:1 2821:1 2856:1 2870:1 2872:1 2923:1 2939:1 2964:1 2982:1 3004:1 3031:1 3032:2 3101:1 3110:2 3112:1 3131:1 3138:1 3142:1 3147:1 3189:3 3197:4 3210:3 3232:1 3247:1 3257:2 3310:1 3313:2 3320:1 3322:1 3341:1 3364:1 3365:1 3376:1 3392:1 3412:1 3419:1 3420:1 3457:1 3463:1 3464:1 3497:1 3563:1 3630:1 3671:2 3747:2 3778:1 3779:3 3797:1 3817:1 3848:1 3849:1 3881:3 3896:1 3913:1 3920:1 3926:1 3959:1 3971:1 3992:1 3997:1 4003:1 4032:2 4052:1 4063:1 4093:1 4097:1 4127:2 4128:1 4132:1 4204:1 4207:3 4227:1 4262:1 4264:1 4268:1 4282:1 4284:1 4312:1 4336:1 4337:1 4385:1 4386:1 4389:1 4443:1 4446:1 4448:1 4463:1 4468:1 4487:1 4490:2 4501:1 4507:1 4518:2 4535:2 4606:1 4608:1 4645:1 4650:1 4662:1 4712:1 4749:1 4754:1 4761:3 4765:1 4767:1 4780:1 4787:3 4814:1 4819:1 4842:1 4843:1 4855:1 4881:1 4891:1 4903:1 4931:1 4955:1 4981:1 4984:1 4985:4 4997:1 5012:1 5024:1 5050:1 5070:3 5076:1 5088:1 5147:1 5154:2 5161:1 5162:1 5172:1 5179:1 5188:3 5190:1 5192:4 5209:1 5221:1 5248:1 5281:1 5296:1 5298:2 5302:1 5312:1 5314:1 5315:1 5328:1 5329:1 5338:1 5345:2 5347:2 5355:1 5357:1 5391:1 5394:1 5417:1 5418:1 5436:1 5505:1 5509:1 5540:2 5544:1 5547:1 5569:1 5580:2 5586:1 5592:1 5600:2 5603:1 5646:1 5651:1 5673:1 5684:1 5692:1 5735:1 5742:1 5758:1 5761:1 5785:1 5877:1 5888:1 5889:1 5896:1 5950:1 5958:1 5979:1 6000:1 6003:1 6006:1 6013:1 6014:1 6040:2 6066:3 6082:1 6121:1 6142:1 6147:1 6153:1 6164:2 6166:1 6170:1 6200:2 6202:1 6207:1 6222:1 6233:2 6246:1 6268:1 6280:1 6293:1 6298:1 6301:2 6306:1 6310:1 6312:7 6320:2 6346:1 6388:2 6409:1 6411:2 6433:2 6439:1 6440:3 6450:1 6456:1 6467:3 6484:1 6507:1 6513:1 6531:2 6533:3 6557:2 6562:1 6569:1 6575:1 6589:2 6640:2 6659:2 6661:1 6668:1 6672:1 6705:2 6727:1 6748:1 6758:1 6768:1 6786:1 6829:5 6844:1 6865:2 6868:2 6875:1 6883:1 6885:2 6886:1 6917:1 6922:1 6926:1 6932:1 6937:1 6959:1 6966:1 7023:1 7033:1 7078:1 7101:1 7115:1 7121:2 7152:1 7169:1 7171:3 7181:1 7216:1 7219:1 7227:1 7270:1 7277:1 7312:3 7332:1 7353:1 7354:1 7374:1 7381:1 7383:1 7395:1 7422:1 7423:1 7427:2 7529:1 7577:1 7598:4 7616:2 7626:1 7647:1 7650:1 7659:1 7663:1 7676:1 7715:1 7745:1 7761:1 7769:1 7775:1 7798:1 7799:1 7819:1 7846:1 7902:1 7903:1 7908:1 7955:1 7959:1 7965:1 7974:1 8000:2 8019:1 8034:1 8050:1 8053:1 8082:1 8092:1 8126:3 8150:1 8151:2 8153:1 8161:3 8162:1 8165:1 8170:1 8171:1 8173:3 8187:1 8214:3 8232:1 8247:1 8286:1 8300:1 8301:1 8305:1 8316:1 8337:2 8353:1 8360:1 8371:1 8372:2 8404:1 8420:10 8440:4 8442:2 8450:1 8474:1 8493:1 8509:1 8542:2 8557:1 8622:1 8642:1 8644:1 8650:2 8678:1 8693:1 8716:1 8740:1 8823:3 8834:1 8837:2 8850:1 8857:2 8879:1 8886:1 8903:1 8940:1 8953:1 8956:1 8961:1 8963:2 8987:1 9013:2 9062:1 9077:1 9079:1 9093:1 9094:1 9119:2 9125:1 9129:1 9131:1 9132:1 9141:1 9149:1 9165:1 9175:2 9186:1 9192:1 9194:1 9224:1 9227:1 9268:2 9273:1 9305:4 9316:1 9367:1 9370:1 9372:1 9378:4 9385:1 9390:1 9421:1 9490:1 9500:1 9506:1 9510:1 9568:2 9583:1 9588:1 9680:1 9685:1 9693:1 9715:1 9726:1 9795:4 9796:1 9826:1 9835:1 9848:1 9850:1 9857:1 9872:1 9900:1 9922:1 9937:1 9981:1 9996:1 10013:1 10026:1 10051:2 10092:2 10119:1 10168:1 10191:1 10216:2 10229:1 10254:1 10273:1 10277:1 10306:1 10326:2 10353:1 10368:1 10372:1 10382:1 10390:2 10393:1 10402:1 10421:1 10422:1 10451:1 10486:1 10500:3 10501:1 10503:2 10516:1 10532:1 10554:1 10561:1 10568:1 10578:1 10597:1 10623:1 10626:1 10631:1 10650:4 10671:1 10676:2 10760:1 10769:1 10799:1 10853:1 10881:1 10884:1 10891:1 10945:1 10954:1 10960:3 10965:1 10966:1 10972:1 10973:1 10982:1 11010:1 11014:1 11018:1 11020:1 11021:1 11025:1 11035:2 11042:1 11055:1 11059:3 11103:1 11113:1 11137:1 11144:1 11150:1 11217:1 11223:3 11237:2 11246:1 11255:1 11263:1 11304:1 11325:1 11338:1 11358:1 11360:1 11370:1 11373:1 11426:4 11429:1 11432:1 11437:2 11445:1 11448:1 11464:1 11481:1 11501:3 11509:1 11514:1 11522:2 11565:1 11572:1 11585:1 11605:1 11649:1 11662:1 11664:2 11685:1 11697:1 11700:1 11703:1 11719:1 11730:3 11737:1 11745:1 11793:1 11813:1 11869:2 11891:1 11946:1 11963:1 11981:1 11996:3 11997:1 12004:1 12010:1 12015:1 12016:2 12026:1 12038:1 12039:1 12052:1 12055:4 12082:1 12086:3 12095:1 12103:1 12104:3 12159:1 12169:1 12187:1 12236:1 12246:3 12251:1 12254:1 12261:1 12268:1 12272:1 12290:1 12325:2 12332:1 12377:1 12380:1 12407:1 12412:1 12419:1 12424:1 12435:1 12446:1 12450:1 12451:1 12457:1 12468:1 12473:1 12488:1 12500:1 12530:1 12623:1 12679:1 12708:1 12711:1 12721:1 12743:1 12769:2 12773:1 12776:1 12780:1 12798:1 12827:1 12831:2 12839:1 12846:2 12890:1 12910:1 12921:1 12944:1 12968:1 12977:1 12995:1 12996:1 13025:1 13028:1 13034:2 13037:1 13038:3 13047:2 13050:1 13098:1 13133:1 13138:1 13141:1 13144:1 13157:2 13163:1 13169:1 13171:1 13173:2 13214:1 13222:1 13226:1 13228:1 13244:2 13247:1 13253:2 13261:1 13266:1 13279:1 13280:1 13295:1 13355:1 13359:1 13372:1 13374:1 13390:2 13399:1 13410:1 13439:1 13465:1 13468:1 13470:1 13472:1 13481:1 13497:1 13540:1 13552:1 13559:1 13579:1 13584:1 13585:1 13591:1 13600:1 13608:1 13609:1 13680:2 13695:1 13704:1 13713:1 13725:1 13731:2 13746:1 13766:1 13799:1 13828:4 13856:1 13858:1 13864:1 13934:3 13937:1 13963:1 13965:1 13971:2 13989:1 13991:1 14051:1 14200:1 14276:1 14294:1 14298:1 14333:3 14339:2 14341:1 14342:1 14357:1 14377:2 14420:1 14421:1 14424:1 14461:1 14473:1 14504:1 14556:1 14566:1 14690:2 14704:1 14712:1 14728:1 14732:2 14744:1 14753:2 14757:1 14798:1 14803:1 14804:6 14843:1 14856:1 14859:1 14860:1 14877:1 14882:1 14888:1 14897:1 14914:1 14915:1 14923:1 14931:1 14941:1 14968:1 14987:1 14994:1 15020:1 15045:2 15150:1 15169:1 15176:1 15220:1 15245:1 15248:2 15251:1 15271:1 15297:1 15321:1 15329:1 15348:1 15349:1 15371:1 15385:1 15387:2 15400:1 15412:1 15422:1 15439:1 15443:1 15444:1 15454:1 15458:1 15459:1 15468:1 15495:1 15549:1 15554:1 15563:1 15570:1 15573:1 15577:1 15580:3 15584:1 15605:1 15608:1 15615:1 15617:1 15650:1 15672:1 15678:1 15685:1 15695:1 15704:1 15718:1 15720:1 15742:1 15750:2 15761:1 15768:1 15789:1 15804:1 15815:1 15859:1 15953:1 15959:3 16015:1 16028:2 16029:1 16056:7 16080:1 16083:1 16085:1 16087:1 16089:14 16105:2 16116:1 16138:1 16146:3 16155:1 16159:1 16196:1 16212:1 16259:1 16278:2 16288:1 16298:1 16300:2 16309:2 16312:1 16321:1 16361:3 16409:1 16410:2 16432:1 16443:1 16454:2 16478:1 16508:1 16515:1 16519:1 16525:1 16558:1 16585:1 16596:1 16598:4 16617:1 16631:1 16633:1 16635:1 16638:1 16651:1 16669:1 16702:2 16744:1 16752:1 16788:1 16798:1 16835:1 16839:2 16840:1 16914:1 16940:2 16948:2 16965:1 16971:1 16972:1 16995:1 16996:1 16997:2 17018:1 17022:1 17029:1 17035:1 17053:1 17072:1 17111:1 17112:1 17113:1 17134:1 17135:1 17153:1 17179:1 17205:1 17213:1 17215:1 17238:1 17240:1 17257:4 17320:1 17330:2 17331:1 17338:2 17366:1 17390:2 17458:1 17459:1 17503:3 17512:1 17516:2 17581:1 17610:1 17620:1 17622:1 17641:1 17676:1 17685:1 17730:1 17768:2 17804:1 17806:1 17814:1 17832:1 17843:1 17844:1 17874:1 17878:1 17882:1 17899:1 17911:1 17913:1 17965:1 17969:1 17977:2 17985:1 17990:2 18005:2 18007:1 18027:1 18054:1 18077:1 18080:2 18148:1 18164:2 18177:1 18205:1 18227:1 18264:1 18283:1 18291:1 18328:1 18345:1 18366:1 18380:2 18406:1 18407:1 18471:1 18519:1 18557:1 18561:1 18578:2 18592:2 18604:1 18605:1 18608:1 18610:1 18636:1 18642:1 18643:1 18662:1 18719:1 18738:1 18751:1 18759:1 18773:1 18786:1 18796:1 18797:1 18834:1 18882:1 18889:2 18900:1 18911:1 18926:1 18958:1 18974:1 18982:1 18999:1 19011:1 19017:1 19022:1 19023:2 19034:1 19044:1 19061:1 19081:1 19083:1 19085:1 19087:1 19088:1 19136:2 19147:1 19150:1 19180:1 19184:1 19187:1 19225:1 19235:1 19255:1 19263:1 19276:1 19278:1 19291:1 19298:5 19321:2 19339:1 19350:1 19362:1 19371:1 19391:1 19405:1 19522:1 19584:2 19627:1 19645:1 19650:1 19660:1 19681:1 19699:1 19700:1 19706:1 19707:2 19721:1 19734:1 19743:1 19777:1 19800:1 19810:1 19821:1 19835:1 19842:1 19849:1 19862:1 19873:1 19885:1 19911:1 19924:1 19933:2 19961:1 19991:1 19996:1 20056:1 20058:1 20105:2 20122:1 20126:1550 20184:1 20187:1 20264:1 20276:1 20466:1 20480:2 20502:1 20513:1 20520:1 20524:1 20556:1 20562:2 20577:1 20591:1 20600:1 20653:1 20668:3 20676:1 20707:1 20722:1 20768:1 20777:1 20782:1 20816:2 20820:1 20826:1 20830:1 20894:1 20921:1 20923:2 20951:1 21031:1 21035:2 21054:1 21059:1 21062:1 21122:1 21128:3 21140:2 21141:1 21145:1 21146:1 21165:1 21172:1 21177:1 21194:1 21227:1 21253:1 21286:2 21288:1 21315:1 21329:1 21358:1 21375:1 21437:1 21489:2 21525:1 21536:1 21544:1 21556:1 21587:2 21592:1 21594:2 21597:1 21598:1 21601:1 21608:1 21628:2 21630:2 21631:1 21636:1 21649:1 21670:2 21677:1 21690:1 21700:1 21713:1 21730:1 21758:1 21771:1 21781:2 21815:1 21872:1 21910:1 21912:1 21915:1 21925:1 21934:1 21938:1 21949:1 21953:1 21965:1 21967:1 21985:1 22000:2 22003:1 22030:1 22042:2 22057:2 22064:2 22099:1 22150:1 22152:1 22167:1 22181:1 22186:1 22193:1 22201:1 22222:1 22244:1 22262:1 22270:3 22281:1 22294:1 22303:2 22312:1 22332:1 22366:1 22374:1 22376:2 22378:1 22390:1 22391:1 22417:1 22453:1 22466:1 22516:1 22547:1 22551:1 22557:1 22571:2 22599:1 22639:1 22680:1 22711:1 22738:1 22782:1 22786:2 22795:1 22816:1 22837:2 22844:1 22845:5 22847:1 22854:1 22888:1 22903:1 22953:1 22973:1 22975:1 22984:1 22985:1 23011:1 23017:1 23032:1 23039:1 23043:2 23044:1 23077:1 23094:1 23096:1 23180:1 23187:1 23193:2 23217:1 23226:1 23280:1 23285:1 23301:1 23306:1 23328:1 23339:1 23371:2 23373:1 23379:4 23384:1 23387:1 23397:1 23400:1 23409:1 23424:2 23445:1 23512:1 23520:1 23534:2 23559:1 23564:1 23585:2 23586:1 23600:1 23609:2 23625:1 23629:1 23644:2 23649:2 23652:1 23677:1 23702:1 23712:3 23741:1 23748:1 23758:1 23766:1 23767:1 23804:1 23832:1 23835:1 23840:1 23841:1 23843:1 23847:1 23848:1 23887:2 23897:1 23900:1 23948:3 23952:1 23956:1 23961:1 23962:3 24031:1 24032:1 24034:3 24051:4 24075:1 24102:1 24142:1 24156:1 24163:1 24200:4 24207:1 24215:1 24216:1 24283:1 24292:1 24298:1 24314:1 24318:2 24324:1 24348:2 24363:3 24394:1 24399:1 24405:1 24413:1 24417:1 24442:1 24447:1 24467:1 24473:1 24477:1 24489:1 24499:2 24507:1 24517:1 24566:1 24582:1 24600:1 24602:1 24606:1 24608:2 24658:1 24675:1 24732:1 24773:1 24793:2 24850:3 24867:3 24912:1 24946:1 24947:1 24964:2 24974:1 24975:3 24978:2 24986:1 24989:3 24990:3 25022:1 25030:1 25060:1 25061:1 25073:1 25096:1 25100:2 25106:1 25121:1 25124:1 25136:1 25172:1 25177:1 25251:2 25256:1 25258:1 25267:2 25275:4 25290:1 25321:1 25349:1 25360:1 25364:2 25422:1 25438:1 25440:1 25442:1 25445:2 25457:2 25467:1 25469:1 25486:1 25496:1 25507:3 25511:1 25518:2 25537:1 25544:1 25564:1 25577:1 25638:2 25681:2 25684:1 25695:4 25713:1 25719:1 25720:2 25782:1 25805:1 25810:1 25846:1 25847:1 25851:1 25859:1 25873:1 25886:1 25907:1 25968:1 25974:2 25983:1 25985:1 25990:2 25998:2 26009:1 26021:1 26041:1 26048:1 26062:1 26066:1 26093:1 26120:1 26125:2 26129:1 26149:1 26155:2 26172:1 26190:1 26230:1 26231:1 26250:2 26260:1 26261:1 26262:1 26267:1 26283:1 26287:1 26309:2 26316:1 26317:1 26328:1 26341:1 26358:1 26359:1 26399:1 26483:1 26541:2 26545:1 26557:1 26583:1 26584:1 26602:1 26603:1 26609:1 26626:1 26636:1 26669:1 26702:1 26739:1 26741:1 26764:1 26804:1 26805:1 26838:2 26868:1 26885:1 26902:1 26923:1 26968:1 26978:1 27020:1 27028:1 27055:1 27063:1 27072:1 27074:2 27083:1 27084:1 27094:3 27095:1 27108:1 27115:1 27128:1 27134:3 27167:2 27178:1 27198:1 27206:1 27222:1 27227:1 27247:2 27248:2 27249:1 27285:1 27287:1 27295:1 27297:1 27319:1 27332:1 27376:1 27395:1 27405:1 27408:1 27427:1 27439:2 27445:1 27485:1 27491:1 27512:3 27541:1 27543:1 27546:1 27568:1 27601:1 27654:1 27667:1 27674:1 27685:1 27770:2 27773:1 27794:1 27795:1 27812:1 27817:1 27825:1 27846:1 27851:2 27875:1 27881:1 27882:1 27890:1 27907:1 27920:1 27991:1 28042:1 28051:1 28053:2 28065:1 28081:2 28098:1 28102:2 28104:3 28109:1 28139:2 28149:2 28151:1 28196:2 28205:2 28211:1 28212:1 28213:1 28220:2 28299:3 28300:2 28349:1 28389:1 28411:1 28412:1 28418:1 28444:4 28448:1 28482:1 28499:1 28526:1 28548:1 28573:1 28580:1 28582:1 28586:1 28599:1 28616:1 28622:2 28639:1 28674:1 28691:1 28725:1 28739:2 28741:2 28742:1 28748:2 28759:1 28804:2 28811:1 28855:1 28884:1 28921:1 28960:1 28997:1 29006:2 29009:1 29015:1 29038:1 29056:2 29061:1 29062:1 29071:1 29076:1 29087:1 29096:1 29122:1 29123:1 29133:1 29148:1 29163:2 29178:1 29179:1 29188:2 29205:1 29266:2 29290:2 29296:1 29298:1 29345:2 29355:1 29367:1 29369:1 29388:1 29392:1 29402:2 29409:1 29417:2 29422:1 29448:1 29467:1 29483:1 29491:1 29504:1 29513:1 29537:1 29577:1 29620:2 29642:2 29647:2 29673:1 29681:1 29701:1 29708:1 29718:1 29731:1 29746:1 29771:1 29780:2 29806:8 29819:1 29835:1 29852:4 29865:1 29882:1 29904:1 29930:1 29974:1 30020:3 30033:1 30045:1 30053:1 30075:1 30078:1 30090:2 30104:1 30114:1 30116:1 30149:1 30189:1 30212:1 30247:3 30251:1 30275:1 30300:1 30330:3 30365:2 30381:1 30390:2 30392:2 30414:1 30428:1 30429:1 30459:1 30477:1 30494:1 30517:1 30526:1 30556:2 30558:2 30574:1 30578:1 30597:1 30599:1 30625:1 30676:1 30714:1 30750:2 30867:2 30922:4 30931:1 30935:1 30942:1 30973:2 30978:1 30981:1 31002:1 31013:1 31036:1 31046:2 31054:1 31071:1 31083:1 31087:1 31090:2 31100:1 31133:2 31135:1 31143:2 31179:1 31182:3 31183:1 31190:1 31195:1 31197:1 31208:1
17 19:2 33:1 35:1 49:1 61:2 62:1 86:1 110:1 122:1 173:2 183:1 192:1 224:1 227:1 240:1 256:2 304:2 343:1 351:1 357:1 358:1 398:1 401:2 404:1 419:1 420:1 422:1 426:1 504:2 509:1 577:1 591:1 633:1 641:1 647:1 690:1 708:2 719:1 726:1 817:1 824:1 846:2 857:1 864:4 928:2 969:1 973:1 977:4 979:2 982:1 986:4 990:1 991:1 992:1 997:1 1002:1 1008:2 1011:2 1028:1 1034:2 1036:1 1039:1 1074:2 1094:1 1095:1 1098:2 1129:1 1133:1 1145:1 1161:1 1165:1 1166:1 1168:1 1175:1 1186:1 1192:1 1204:1 1210:1 1220:1 1221:1 1222:1 1248:1 1269:1 1339:2 1360:1 1377:1 1382:1 1398:1 1399:1 1410:1 1414:1 1433:1 1462:1 1464:1 1487:1 1497:1 1560:1 1565:2 1601:1 1625:1 1638:2 1644:1 1650:1 1669:1 1676:1 1688:1 1708:1 1714:1 1717:1 1736:1 1771:1 1790:2 1797:1 1816:1 1825:1 1827:1 1833:2 1851:1 1871:1 1895:1 1896:2 1905:1 1910:1 1921:3 1933:1 1942:1 1950:1 1956:1 1961:2 1963:2 1964:1 1972:1 1991:1 2018:1 2027:2 2036:1 2066:1 2078:1 2099:1 2108:1 2126:1 2136:1 2139:1 2164:1 2187:1 2224:1 2226:1 2253:1 2270:1 2282:1 2307:1 2395:2 2442:1 2467:1 2486:1 2504:1 2519:1 2525:2 2530:2 2531:1 2543:3 2550:1 2551:1 2552:1 2556:1 2558:1 2568:1 2569:4 2584:1 2600:2 2616:1 2633:1 2638:1 2650:1 2697:1 2698:1 2721:1 2737:4 2741:1 2757:1 2778:2 2783:1 2784:1 2789:1 2799:1 2804:2 2809:1 2816:1 2821:1 2856:1 2870:1 2872:1 2892:1 2923:1 2939:1 2964:1 2982:1 3004:1 3031:1 3032:2 3101:1 3109:1 3110:2 3112:1 3131:1 3138:1 3142:1 3147:1 3189:3 3197:4 3210:3 3232:1 3247:1 3257:2 3295:1 3310:1 3313:2 3320:1 3322:1 3341:1 3364:1 3365:1 3376:1 3392:1 3412:1 3419:1 3420:1 3457:1 3463:1 3464:1 3497:1 3500:1 3552:1 3563:1 3630:1 3671:2 3745:1 3747:2 3778:1 3779:3 3797:1 3817:1 3848:1 3849:1 3869:1 3881:3 3896:1 3913:1 3920:1 3926:1 3959:1 3971:1 3992:1 3997:1 4003:1 4007:1 4032:2 4052:1 4063:1 4093:1 4097:1 4127:2 4128:1 4132:1 4204:1 4207:3 4227:1 4262:1 4264:1 4268:1 4282:1 4284:1 4312:1 4336:1 4337:1 4385:1 4386:1 4389:1 4443:1 4446:1 4448:1 4463:1 4468:1 4487:1 4490:2 4501:1 4507:1 4518:2 4535:2 4606:1 4608:1 4645:1 4650:1 4662:1 4712:1 4716:1 4749:1 4754:1 4761:3 4765:1 4767:1 4780:1 4787:3 4814:1 4819:1 4842:1 4843:1 4855:1 4881:1 4891:1 4903:1 4931:1 4955:1 4970:1 4981:1 4984:1 4985:4 4997:1 5012:1 5024:1 5050:1 5070:3 5076:1 5088:2 5128:1 5147:1 5154:4 5161:1 5162:1 5172:1 5179:1 5188:3 5190:1 5192:4 5209:1 5221:1 5248:1 5281:1 5296:1 5298:2 5302:1 5312:1 5314:1 5315:1 5328:1 5329:1 5338:1 5345:2 5347:2 5355:1 5357:1 5391:1 5394:1 5417:1 5418:1 5436:1 5505:1 5509:1 5540:2 5544:1 5547:1 5569:1 5580:2 5586:1 5592:1 5600:2 5603:1 5646:1 5651:1 5673:1 5684:1 5692:1 5735:1 5742:1 5758:1 5761:1 5785:1 5877:1 5888:1 5889:1 5896:1 5950:1 5958:1 5979:1 6000:1 6003:1 6006:1 6013:1 6014:1 6040:2 6066:3 6082:1 6121:1 6142:1 6147:1 6153:1 6164:2 6166:1 6170:1 6182:1 6200:2 6202:1 6207:1 6222:1 6233:2 6245:1 6246:1 6268:1 6280:1 6293:1 6298:1 6301:2 6306:1 6310:2 6312:7 6320:2 6346:1 6388:2 6409:1 6411:2 6433:2 6439:1 6440:3 6450:1 6456:1 6467:3 6484:1 6507:1 6513:1 6531:2 6533:3 6557:2 6562:1 6569:1 6575:1 6589:2 6640:2 6653:1 6659:2 6661:1 6668:1 6672:1 6705:2 6727:1 6748:1 6758:1 6768:1 6786:1 6829:5 6844:1 6858:1 6865:2 6868:2 6875:1 6883:1 6885:2 6886:1 6917:1 6922:1 6926:1 6932:1 6937:1 6945:1 6959:1 6966:1 7023:1 7033:1 7078:1 7101:1 7115:1 7121:2 7152:1 7169:1 7171:3 7181:1 7216:1 7219:1 7227:1 7270:1 7277:1 7312:3 7332:1 7353:1 7354:1 7374:1 7381:1 7383:1 7395:1 7422:1 7423:1 7427:2 7529:1 7577:1 7598:4 7616:2 7626:1 7647:1 7650:1 7659:1 7663:1 7676:1 7715:1 7745:1 7761:1 7769:1 7775:1 7787:1 7798:1 7799:1 7819:1 7846:1 7902:1 7903:1 7908:1 7929:1 7955:2 7959:1 7965:1 7974:1 8000:2 8019:1 8034:1 8050:1 8053:1 8059:1 8082:1 8092:1 8120:1 8126:3 8127:1 8150:1 8151:2 8153:1 8161:3 8162:1 8165:1 8170:1 8171:1 8172:1 8173:3 8187:1 8214:3 8232:1 8247:1 8286:1 8300:1 8301:1 8305:1 8316:1 8337:2 8353:2 8360:1 8371:1 8372:2 8404:1 8420:11 8440:4 8442:2 8450:1 8474:1 8485:1 8493:1 8509:1 8542:2 8557:1 8622:1 8642:1 8644:1 8650:2 8678:1 8693:1 8716:1 8740:1 8823:3 8834:1 8837:2 8850:1 8857:4 8879:1 8886:1 8903:1 8940:1 8953:1 8956:1 8961:1 8963:3 8987:1 9013:2 9062:1 9077:1 9079:1 9093:1 9094:1 9119:2 9125:1 9129:1 9131:1 9132:1 9141:1 9149:1 9165:1 9175:2 9186:1 9192:1 9194:1 9224:1 9227:1 9268:2 9273:1 9305:4 9316:1 9367:1 9370:1 9372:1 9378:4 9385:1 9390:1 9421:1 9490:1 9500:1 9506:2 9510:1 9568:3 9583:1 9588:1 9680:1 9685:1 9693:1 9715:1 9726:1 9795:4 9796:1 9815:1 9826:1 9835:1 9848:1 9850:1 9857:1 9872:1 9887:1 9900:1 9922:1 9937:1 9981:1 9996:1 10013:1 10026:1 10051:2 10092:2 10119:1 10131:1 10168:1 10191:1 10216:2 10229:1 10254:1 10273:1 10277:1 10306:1 10326:2 10353:1 10368:1 10372:1 10382:1 10390:2 10393:1 10402:1 10421:1 10422:1 10451:1 10483:1 10486:1 10500:3 10501:1 10503:2 10516:1 10532:1 10551:1 10554:1 10561:1 10566:1 10568:1 10578:1 10597:1 10623:1 10626:1 10631:1 10650:4 10671:1 10676:2 10760:1 10769:1 10799:1 10853:1 10881:1 10884:1 10891:1 10945:1 10954:1 10960:3 10965:1 10966:1 10972:1 10973:1 10982:1 11010:1 11014:1 11018:1 11020:1 11021:1 11025:1 11035:2 11042:1 11055:1 11059:3 11103:1 11113:1 11137:1 11144:1 11150:1 11217:1 11223:3 11237:2 11246:1 11255:1 11263:1 11281:1 11304:2 11325:1 11338:1 11358:1 11360:1 11370:1 11373:1 11408:1 11426:4 11429:1 11432:1 11437:3 11445:1 11448:1 11464:1 11481:1 11501:3 11509:1 11514:1 11522:2 11565:1 11572:1 11573:1 11585:1 11605:1 11613:1 11649:1 11662:1 11664:2 11685:1 11697:1 11700:1 11703:1 11719:1 11730:3 11737:1 11742:1 11745:1 11764:1 11793:1 11813:2 11849:1 11869:2 11891:1 11946:1 11963:1 11981:1 11996:3 11997:1 12004:1 12010:1 12015:1 12016:2 12026:1 12038:1 12039:1 12052:1 12055:4 12079:1 12082:1 12086:3 12095:1 12103:1 12104:3 12159:1 12169:1 12187:1 12236:1 12246:3 12251:1 12254:1 12261:1 12268:1 12272:1 12285:1 12290:1 12325:2 12332:1 12377:1 12380:1 12407:1 12412:1 12419:1 12424:1 12435:1 12446:1 12450:1 12451:1 12457:1 12468:1 12473:1 12488:1 12500:1 12530:1 12623:1 12679:1 12708:1 12711:1 12721:1 12743:1 12769:2 12773:1 12776:1 12780:1 12794:1 12798:1 12816:1 12827:1 12831:2 12839:1 12846:2 12890:1 12910:1 12921:1 12944:1 12968:1 12977:1 12990:1 12995:1 12996:1 13025:1 13028:1 13034:2 13037:1 13038:3 13047:2 13050:1 13098:1 13133:1 13138:1 13141:1 13144:1 13157:2 13163:1 13169:1 13171:1 13173:2 13214:1 13222:1 13226:1 13228:1 13244:2 13247:1 13253:2 13261:1 13266:1 13279:1 13280:1 13295:1 13355:1 13359:1 13372:1 13374:1 13390:2 13399:1 13410:1 13439:1 13465:1 13468:1 13470:1 13472:1 13481:1 13497:1 13540:1 13552:1 13559:1 13579:1 13584:1 13585:1 13591:1 13600:1 13608:1 13609:1 13680:2 13695:1 13704:1 13713:1 13725:1 13731:2 13746:1 13766:1 13799:1 13828:4 13856:1 13858:1 13864:1 13934:3 13937:1 13963:1 13965:1 13971:2 13989:1 13991:1 14051:1 14200:1 14276:1 14294:1 14298:1 14333:3 14339:2 14341:1 14342:1 14357:1 14377:2 14420:1 14421:1 14424:1 14461:1 14473:1 14504:1 14556:1 14566:1 14690:2 14704:1 14712:1 14728:1 14732:2 14744:1 14753:2 14757:1 14798:1 14803:1 14804:6 14843:1 14856:1 14859:1 14860:1 14877:1 14882:2 14888:1 14897:1 14914:1 14915:1 14923:1 14931:1 14941:1 14968:1 14987:1 14994:1 15020:2 15045:2 15150:1 15169:1 15176:1 15220:1 15245:1 15248:2 15251:1 15271:1 15297:1 15321:1 15325:1 15329:1 15348:1 15349:1 15371:1 15385:1 15387:2 15397:1 15400:1 15412:1 15422:1 15439:1 15443:1 15444:1 15454:1 15458:1 15459:1 15468:1 15495:1 15549:1 15554:1 15563:1 15570:1 15573:1 15577:1 15580:3 15584:1 15602:1 15605:1 15608:1 15615:1 15617:1 15650:1 15672:1 15678:1 15685:1 15695:1 15704:1 15718:1 15720:1 15742:1 15750:2 15761:1 15768:1 15789:1 15804:1 15815:1 15842:1 15859:1 15953:1 15959:3 15968:1 16015:1 16028:3 16029:1 16056:7 16080:1 16083:1 16085:1 16087:2 16089:15 16105:2 16116:1 16138:1 16146:3 16155:1 16159:1 16196:1 16212:1 16259:1 16278:2 16288:1 16298:1 16300:2 16305:1 16309:2 16312:1 16321:1 16361:3 16409:1 16410:2 16424:1 16432:1 16443:1 16454:2 16478:1 16487:1 16508:1 16515:1 16519:1 16525:1 16558:1 16585:1 16596:1 16598:4 16617:1 16631:1 16633:1 16635:1 16638:1 16651:1 16669:1 16702:2 16744:1 16752:1 16788:1 16798:1 16835:1 16839:2 16840:1 16914:1 16940:2 16948:2 16965:1 16971:1 16972:1 16995:1 16996:1 16997:2 17018:1 17022:1 17029:1 17035:1 17053:1 17072:1 17111:1 17112:1 17113:1 17134:1 17135:1 17153:1 17179:1 17205:1 17213:1 17215:1 17238:1 17240:1 17244:1 17257:4 17320:1 17330:2 17331:1 17338:2 17366:1 17384:1 17390:2 17458:1 17459:1 17503:3 17512:1 17516:2 17581:1 17610:1 17620:1 17622:1 17641:1 17676:1 17685:1 17730:1 17768:2 17787:1 17804:1 17806:1 17814:1 17832:1 17843:1 17844:1 17874:1 17878:1 17882:1 17899:1 17911:2 17913:1 17924:1 17965:1 17969:1 17977:2 17985:1 17990:2 18005:2 18007:1 18027:1 18054:1 18077:1 18080:2 18082:1 18148:1 18164:2 18177:1 18205:1 18227:1 18264:1 18283:1 18291:1 18328:1 18345:1 18366:1 18380:2 18406:1 18407:1 18471:1 18519:1 18557:1 18561:1 18575:1 18578:2 18592:2 18604:1 18605:1 18608:1 18610:1 18636:1 18641:1 18642:1 18643:1 18662:1 18719:1 18738:1 18751:1 18759:1 18773:1 18786:1 18796:2 18797:1 18834:1 18882:1 18889:2 18900:1 18911:1 18926:1 18930:1 18958:1 18974:1 18982:1 18999:1 19011:1 19017:1 19022:1 19023:2 19034:1 19044:1 19061:1 19081:1 19083:1 19085:1 19087:1 19088:1 19136:2 19147:1 19150:1 19180:1 19184:1 19187:1 19198:1 19225:1 19230:1 19235:1 19255:1 19263:1 19276:1 19278:1 19291:1 19298:5 19321:2 19339:1 19350:1 19362:1 19371:1 19391:1 19405:1 19522:1 19559:1 19584:2 19588:1 19627:1 19645:1 19650:1 19660:1 19681:1 19699:1 19700:1 19706:1 19707:2 19721:1 19734:1 19743:1 19777:1 19800:1 19810:1 19821:1 19835:1 19842:1 19849:1 19862:1 19873:1 19885:1 19911:1 19924:1 19933:2 19961:1 19991:1 19996:1 20050:1 20056:1 20058:1 20102:1 20105:2 20122:1 20126:1642 20184:1 20187:1 20264:1 20272:1 20276:1 20466:1 20480:2 20502:1 20513:1 20520:1 20524:1 20556:1 20562:2 20577:1 20591:1 20600:1 20630:1 20648:1 20653:1 20668:3 20676:1 20707:1 20722:1 20768:1 20777:1 20782:1 20816:2 20820:1 20826:1 20830:1 20894:1 20921:1 20923:3 20951:1 21031:1 21035:2 21054:1 21059:1 21062:1 21104:1 21122:1 21128:3 21140:2 21141:1 21145:1 21146:1 21165:1 21172:1 21177:1 21192:1 21194:1 21227:1 21253:1 21286:2 21288:1 21315:1 21329:1 21358:1 21359:1 21375:1 21437:1 21489:2 21525:1 21536:1 21537:1 21544:1 21556:1 21587:2 21592:1 21594:2 21597:1 21598:1 21601:1 21608:1 21628:2 21630:2 21631:1 21636:1 21649:1 21670:2 21677:1 21690:1 21700:1 21713:1 21730:1 21758:1 21771:1 21781:2 21815:1 21872:1 21910:1 21912:1 21915:1 21925:1 21934:1 21938:1 21949:1 21953:1 21965:1 21967:2 21985:1 22000:2 22003:1 22030:1 22042:2 22057:2 22064:2 22099:1 22150:1 22152:1 22167:1 22170:1 22181:1 22186:1 22193:1 22201:1 22222:1 22244:1 22262:1 22270:3 22281:1 22294:1 22303:2 22312:1 22332:1 22366:1 22374:1 22375:1 22376:2 22378:1 22390:1 22391:1 22417:1 22453:1 22466:1 22516:1 22547:1 22551:1 22557:1 22571:2 22599:1 22639:1 22680:1 22711:1 22738:1 22782:1 22786:2 22795:1 22816:1 22837:2 22844:1 22845:5 22847:1 22854:1 22879:1 22888:1 22903:1 22930:1 22953:1 22973:1 22975:1 22984:1 22985:1 23011:1 23017:1 23028:1 23032:1 23039:1 23043:2 23044:1 23077:1 23094:1 23096:1 23180:1 23187:1 23193:2 23217:1 23226:1 23280:1 23285:1 23301:1 23306:1 23328:1 23339:1 23371:2 23373:1 23379:4 23384:1 23387:1 23397:1 23400:1 23409:1 23424:2 23445:1 23512:1 23520:1 23534:2 23559:1 23564:1 23585:2 23586:1 23600:1 23609:2 23625:1 23629:1 23644:2 23649:2 23652:1 23677:1 23702:1 23712:3 23724:1 23741:1 23748:1 23758:1 23766:1 23767:1 23804:1 23832:1 23835:1 23840:1 23841:1 23843:1 23847:1 23848:1 23887:2 23897:1 23900:1 23948:3 23952:1 23956:1 23961:1 23962:3 24031:1 24032:1 24034:3 24051:5 24075:1 24102:1 24119:1 24142:1 24156:1 24163:1 24200:4 24207:1 24215:1 24216:1 24283:1 24292:1 24298:1 24314:1 24318:2 24324:1 24348:2 24363:3 24394:1 24399:1 24405:1 24413:1 24417:1 24442:1 24447:1 24467:1 24473:1 24477:1 24489:1 24499:2 24507:1 24517:1 24566:1 24582:1 24600:1 24602:1 24606:1 24608:2 24658:1 24675:1 24732:1 24773:1 24793:2 24850:3 24867:3 24912:1 24946:1 24947:1 24964:2 24974:1 24975:3 24978:2 24986:1 24989:3 24990:3 25005:1 25022:1 25030:1 25047:1 25051:1 25060:1 25061:1 25073:1 25096:1 25100:2 25106:1 25121:1 25124:1 25136:1 25172:1 25177:1 25251:2 25256:1 25258:1 25265:1 25267:2 25275:4 25290:1 25321:1 25349:1 25360:1 25364:2 25422:1 25438:1 25440:1 25442:1 25445:2 25457:2 25467:1 25469:1 25486:1 25493:1 25496:1 25507:3 25511:1 25518:2 25537:1 25544:1 25564:1 25577:1 25638:2 25681:2 25684:1 25695:4 25713:1 25716:1 25719:1 25720:2 25776:1 25782:1 25805:1 25810:1 25846:1 25847:1 25851:1 25859:1 25873:1 25886:1 25907:1 25968:1 25974:3 25983:1 25985:1 25990:2 25998:2 26009:1 26021:1 26041:1 26048:1 26062:1 26066:1 26093:1 26120:1 26125:2 26129:1 26149:1 26155:2 26172:1 26190:1 26213:1 26230:1 26231:1 26250:2 26260:1 26261:1 26262:1 26267:1 26283:1 26287:1 26309:2 26316:1 26317:1 26328:1 26341:1 26358:1 26359:1 26399:1 26483:1 26541:2 26545:1 26552:1 26557:1 26583:1 26584:1 26602:1 26603:1 26609:1 26626:1 26636:1 26669:1 26702:1 26729:1 26739:1 26741:1 26764:1 26804:1 26805:1 26837:1 26838:2 26868:1 26885:1 26902:1 26923:1 26968:1 26978:1 27005:1 27020:1 27028:1 27040:1 27055:1 27063:1 27072:1 27074:2 27083:1 27084:1 27094:3 27095:1 27108:1 27115:1 27128:1 27134:3 27167:2 27178:1 27198:1 27206:1 27222:1 27227:1 27247:2 27248:2 27249:2 27285:1 27287:1 27295:1 27297:1 27319:1 27332:1 27351:1 27376:1 27395:1 27405:1 27408:1 27427:1 27439:2 27445:1 27485:1 27491:1 27512:3 27541:1 27543:1 27546:1 27568:1 27601:1 27654:1 27667:1 27674:1 27685:1 27770:2 27773:1 27794:1 27795:1 27812:1 27817:1 27825:1 27846:1 27851:2 27875:1 27881:1 27882:1 27890:1 27907:1 27920:1 27929:1 27991:1 28042:1 28051:1 28053:2 28065:1 28081:2 28094:1 28098:1 28102:2 28104:3 28109:1 28139:2 28149:2 28151:1 28196:2 28205:2 28208:1 28211:1 28212:1 28213:1 28220:2 28299:3 28300:2 28349:1 28389:1 28411:1 28412:1 28418:1 28444:4 28448:1 28477:1 28482:1 28499:1 28526:1 28548:1 28573:1 28580:1 28582:1 28586:1 28599:1 28616:1 28622:2 28639:1 28674:1 28691:1 28725:1 28739:2 28741:2 28742:1 28748:2 28759:1 28775:1 28804:2 28811:1 28827:1 28855:1 28884:1 28921:1 28960:1 28997:1 29006:2 29009:1 29015:1 29038:1 29053:1 29056:2 29061:1 29062:1 29071:1 29076:1 29087:1 29096:1 29122:1 29123:1 29133:1 29148:1 29163:2 29178:1 29179:1 29188:3 29205:1 29266:2 29290:2 29296:1 29298:2 29345:2 29355:1 29367:1 29369:1 29388:1 29392:1 29402:2 29409:1 29417:2 29422:1 29448:1 29467:1 29483:1 29491:1 29504:1 29513:1 29537:1 29577:1 29620:2 29642:2 29647:2 29673:1 29681:1 29701:1 29708:1 29718:1 29731:1 29746:1 29771:1 29773:1 29780:2 29806:8 29819:1 29835:1 29852:4 29865:1 29882:2 29904:1 29930:1 29974:1 30020:3 30033:1 30045:2 30053:1 30075:1 30078:1 30083:1 30090:2 30104:1 30114:1 30116:1 30149:1 30189:1 30212:1 30247:3 30251:1 30275:1 30300:1 30330:3 30365:2 30367:1 30381:1 30390:2 30392:2 30414:1 30428:1 30429:1 30459:1 30477:1 30494:1 30517:1 30526:1 30556:2 30558:2 30574:1 30578:1 30597:1 30599:1 30625:1 30676:1 30714:1 30750:2 30867:2 30922:4 30931:1 30935:1 30942:1 30973:3 30978:1 30981:1 31002:1 31005:1 31013:1 31030:1 31036:1 31046:2 31054:1 31071:1 31083:1 31087:1 31090:2 31098:1 31100:1 31133:2 31135:1 31143:2 31179:1 31182:3 31183:1 31190:1 31195:1 31197:1 31208:1
17 19:2 33:1 35:1 49:1 61:2 62:1 86:1 110:1 122:1 173:2 183:1 192:1 224:1 227:1 240:1 256:2 271:1 304:2 343:1 351:1 357:1 358:1 398:1 401:2 404:1 419:1 420:1 422:1 426:1 504:2 509:1 577:1 591:1 633:1 641:1 647:1 690:1 695:1 708:2 719:1 726:1 817:1 824:1 846:2 857:1 864:4 928:2 969:1 973:1 977:4 979:2 982:1 986:4 990:1 991:1 992:1 997:1 1002:1 1008:2 1011:2 1028:1 1034:2 1036:1 1039:1 1074:2 1094:1 1095:1 1098:2 1129:1 1133:1 1145:1 1150:1 1161:1 1165:1 1166:1 1168:1 1175:1 1186:1 1192:1 1204:1 1210:1 1220:1 1221:1 1222:1 1248:1 1269:1 1339:2 1360:1 1377:1 1382:1 1398:1 1399:1 1410:1 1414:1 1433:1 1462:1 1464:1 1472:1 1487:1 1497:1 1560:1 1565:2 1601:1 1625:1 1638:2 1644:1 1650:1 1669:1 1676:1 1688:1 1708:1 1714:1 1717:1 1719:1 1736:1 1771:1 1790:2 1797:1 1816:1 1825:1 1827:1 1833:2 1851:1 1871:1 1895:1 1896:2 1905:1 1910:1 1921:3 1933:1 1942:1 1950:1 1956:1 1961:2 1963:2 1964:1 1972:1 1991:1 2018:1 2027:2 2036:1 2066:1 2078:1 2099:1 2108:1 2126:1 2136:1 2139:1 2164:1 2187:1 2224:1 2226:1 2253:1 2270:1 2282:1 2307:1 2395:2 2442:1 2467:1 2486:1 2504:1 2519:1 2525:2 2530:2 2531:1 2543:3 2550:1 2551:1 2552:1 2556:1 2558:1 2568:1 2569:4 2584:1 2600:2 2616:1 2633:1 2638:1 2650:1 2697:1 2698:1 2721:1 2737:4 2741:1 2757:1 2778:2 2783:1 2784:1 2789:1 2799:1 2804:2 2809:1 2816:1 2821:1 2856:1 2870:1 2872:1 2892:1 2923:1 2939:1 2964:1 2982:1 3004:1 3031:1 3032:2 3101:1 3109:1 3110:2 3112:1 3131:1 3138:1 3142:1 3147:1 3189:3 3197:4 3210:3 3232:1 3247:1 3257:2 3266:1 3295:1 3310:1 3313:2 3320:1 3322:1 3341:1 3364:1 3365:1 3376:1 3392:1 3412:1 3419:1 3420:1 3457:1 3463:1 3464:1 3497:1 3500:1 3552:1 3563:1 3630:1 3671:2 3745:1 3747:2 3778:1 3779:3 3797:1 3817:1 3848:1 3849:1 3869:1 3877:1 3881:3 3896:1 3913:1 3920:1 3926:1 3959:1 3971:1 3992:1 3997:1 4003:1 4007:1 4032:2 4052:1 4063:1 4093:1 4097:1 4127:2 4128:1 4132:1 4204:1 4207:3 4227:1 4255:1 4262:1 4264:1 4268:1 4282:1 4284:1 4312:1 4336:1 4337:1 4385:1 4386:1 4389:1 4443:1 4446:1 4448:1 4463:1 4468:1 4487:1 4490:2 4501:1 4507:1 4518:2 4535:2 4606:1 4608:1 4645:1 4650:1 4662:1 4712:1 4716:1 4749:1 4754:1 4761:3 4765:1 4767:1 4780:1 4787:3 4814:1 4819:1 4842:1 4843:1 4855:1 4881:1 4891:1 4903:1 4931:1 4955:1 4970:1 4981:1 4984:1 4985:4 4997:1 5012:1 5024:1 5050:1 5070:3 5076:1 5088:2 5128:1 5147:1 5154:4 5161:1 5162:1 5172:1 5179:1 5188:3 5190:1 5192:4 5209:1 5221:1 5248:1 5281:1 5296:1 5298:2 5302:1 5312:1 5314:1 5315:1 5328:1 5329:1 5338:1 5345:2 5347:2 5355:1 5357:1 5391:1 5394:1 5417:1 5418:1 5436:1 5505:1 5509:1 5540:2 5544:1 5547:1 5569:1 5580:2 5586:1 5592:1 5600:2 5603:1 5646:1 5651:1 5673:1 5684:1 5692:1 5735:1 5742:1 5758:1 5761:1 5785:1 5806:1 5877:1 5888:1 5889:1 5896:1 5950:1 5958:1 5979:1 6000:1 6003:1 6006:1 6013:1 6014:1 6040:2 6066:3 6082:1 6121:1 6142:1 6147:1 6153:1 6164:2 6166:1 6170:1 6182:1 6200:2 6202:1 6207:1 6222:1 6233:2 6245:1 6246:1 6268:1 6280:1 6293:1 6298:1 6301:2 6306:1 6310:2 6312:7 6320:2 6346:1 6388:2 6409:1 6411:2 6433:2 6439:1 6440:3 6450:1 6456:1 6467:3 6484:1 6507:1 6513:1 6531:2 6533:3 6557:2 6562:1 6569:1 6575:1 6589:2 6640:2 6653:1 6659:2 6661:1 6668:1 6672:1 6705:2 6727:1 6748:1 6758:1 6768:1 6786:1 6829:6 6844:1 6858:1 6865:2 6868:2 6875:1 6883:1 6885:2 6886:1 6917:1 6922:1 6926:1 6932:1 6937:1 6945:1 6959:1 6966:1 7023:1 7033:1 7078:1 7101:1 7115:1 7121:2 7152:1 7169:1 7171:3 7181:1 7216:1 7219:1 7227:1 7270:1 7277:1 7312:3 7332:1 7353:1 7354:1 7374:1 7381:1 7383:1 7395:1 7413:1 7422:1 7423:1 7427:2 7529:1 7567:1 7577:1 7598:4 7616:2 7626:1 7647:1 7650:1 7659:1 7663:1 7676:1 7715:1 7745:1 7761:1 7769:1 7775:1 7787:1 7798:1 7799:1 7819:1 7846:1 7902:1 7903:1 7908:1 7929:1 7955:2 7959:1 7965:1 7974:1 8000:2 8019:2 8034:1 8050:1 8053:1 8059:1 8082:1 8092:1 8120:1 8126:3 8127:1 8128:1 8150:1 8151:2 8153:1 8161:4 8162:1 8165:1 8170:1 8171:1 8172:1 8173:3 8187:1 8214:3 8232:1 8247:1 8286:1 8300:1 8301:1 8305:1 8316:1 8337:2 8353:2 8360:1 8371:1 8372:2 8404:1 8420:11 8440:4 8442:2 8450:1 8474:1 8485:1 8493:1 8509:1 8542:2 8557:1 8622:1 8642:1 8644:1 8650:2 8678:1 8693:1 8716:1 8740:1 8823:3 8834:1 8837:2 8850:1 8857:4 8879:1 8886:1 8903:1 8930:1 8940:1 8953:1 8956:1 8961:1 8963:3 8987:1 9013:2 9062:1 9077:1 9079:1 9093:1 9094:1 9119:2 9125:1 9129:1 9131:1 9132:1 9141:1 9149:1 9165:1 9175:2 9186:1 9192:1 9194:1 9224:1 9227:1 9268:2 9273:1 9305:4 9316:1 9367:1 9370:1 9372:1 9376:1 9378:4 9385:1 9390:1 9421:1 9490:1 9500:1 9506:2 9510:1 9568:3 9583:1 9588:1 9680:1 9685:1 9693:1 9715:1 9726:1 9795:4 9796:1 9815:1 9826:1 9835:1 9848:1 9850:1 9857:1 9872:1 9887:1 9900:1 9922:1 9937:1 9981:1 9996:1 10013:1 10026:1 10051:2 10092:2 10119:1 10131:1 10168:1 10191:1 10216:2 10229:1 10254:1 10273:1 10277:1 10306:1 10326:2 10353:1 10368:1 10372:1 10382:1 10390:2 10393:1 10402:1 10421:1 10422:1 10451:1 10483:1 10486:1 10500:3 10501:1 10503:2 10516:1 10532:1 10551:1 10554:1 10561:1 10566:1 10568:1 10578:1 10597:1 10623:1 10626:1 10631:1 10650:4 10671:1 10676:2 10760:1 10769:1 10799:1 10853:1 10881:1 10884:1 10891:1 10945:1 10954:1 10960:4 10965:1 10966:1 10972:1 10973:1 10982:1 11010:1 11012:1 11014:1 11018:1 11020:1 11021:1 11025:1 11035:2 11042:1 11055:1 11059:3 11103:1 11113:1 11137:1 11144:1 11150:1 11217:1 11223:3 11237:2 11246:1 11255:1 11263:1 11281:1 11304:2 11325:1 11338:1 11358:1 11360:1 11370:1 11373:1 11408:1 11426:4 11429:1 11432:1 11437:3 11445:1 11448:1 11464:1 11481:1 11501:3 11509:1 11514:1 11522:2 11565:1 11572:1 11573:1 11585:1 11605:1 11613:1 11649:1 11662:1 11664:2 11685:1 11697:1 11700:1 11703:1 11719:1 11730:4 11737:1 11742:1 11745:1 11764:1 11793:1 11813:2 11849:1 11869:2 11891:1 11946:1 11963:1 11981:1 11996:3 11997:1 12004:1 12010:1 12015:1 12016:2 12026:1 12038:1 12039:1 12052:1 12055:4 12079:1 12082:1 12086:3 12095:1 12103:1 12104:3 12141:1 12159:1 12169:1 12187:1 12236:1 12246:3 12251:1 12254:1 12261:1 12268:1 12272:1 12285:1 12290:1 12325:2 12329:1 12332:1 12377:1 12380:1 12407:1 12412:1 12419:1 12424:1 12435:1 12446:1 12450:1 12451:1 12457:1 12468:1 12473:1 12488:1 12500:1 12530:1 12623:1 12679:1 12708:1 12711:1 12721:1 12743:1 12769:2 12773:1 12776:1 12780:1 12794:1 12798:1 12816:1 12827:1 12831:2 12839:1 12846:2 12890:1 12910:1 12921:1 12944:1 12968:1 12977:1 12990:1 12995:1 12996:1 13025:1 13028:1 13034:2 13037:1 13038:3 13047:2 13050:1 13098:1 13133:1 13138:1 13141:2 13144:1 13157:2 13163:1 13169:1 13171:1 13173:2 13214:1 13222:1 13226:1 13228:1 13244:2 13247:1 13253:2 13261:1 13266:1 13279:1 13280:1 13295:1 13355:1 13359:1 13372:1 13374:1 13390:2 13399:1 13410:1 13439:1 13465:1 13468:1 13470:1 13472:1 13481:1 13497:1 13540:1 13552:1 13559:1 13579:1 13584:2 13585:1 13591:1 13600:1 13608:1 13609:1 13680:2 13695:1 13704:1 13713:1 13725:1 13731:2 13746:1 13766:1 13799:1 13828:4 13856:1 13858:1 13864:1 13934:3 13937:1 13963:1 13965:1 13971:2 13989:1 13991:1 14051:1 14200:1 14276:1 14294:1 14298:1 14333:3 14339:2 14341:1 14342:1 14357:1 14377:3 14420:1 14421:1 14424:1 14461:1 14473:1 14504:1 14529:1 14556:2 14566:1 14690:2 14704:1 14712:1 14728:1 14732:2 14744:1 14753:2 14757:1 14798:1 14803:1 14804:6 14843:1 14856:1 14859:1 14860:1 14877:1 14882:2 14888:1 14897:1 14914:1 14915:1 14923:1 14931:1 14941:1 14968:1 14987:1 14994:1 15020:2 15045:2 15150:1 15169:1 15176:1 15220:1 15245:1 15248:2 15251:1 15271:1 15297:1 15321:1 15325:1 15329:1 15348:1 15349:1 15371:1 15385:1 15387:2 15397:1 15400:1 15412:1 15422:1 15439:1 15443:1 15444:1 15454:1 15458:1 15459:1 15468:1 15495:1 15549:1 15554:1 15563:1 15570:1 15573:1 15577:1 15580:3 15584:1 15602:1 15605:1 15608:1 15615:1 15617:1 15650:1 15672:1 15678:1 15685:1 15695:1 15704:1 15718:1 15720:1 15742:1 15750:2 15761:1 15768:1 15789:1 15804:1 15815:1 15822:1 15842:1 15859:1 15953:1 15959:3 15968:1 16015:1 16028:3 16029:1 16056:7 16064:1 16080:1 16083:1 16085:1 16087:2 16089:16 16105:2 16116:1 16138:1 16146:3 16155:1 16159:1 16196:1 16212:1 16259:1 16278:2 16288:1 16298:1 16300:2 16305:1 16309:2 16312:1 16321:1 16361:3 16409:1 16410:2 16424:1 16432:1 16443:1 16454:2 16478:1 16487:1 16508:1 16515:1 16519:1 16525:1 16558:1 16585:1 16596:1 16598:4 16617:1 16631:1 16633:1 16635:1 16638:1 16651:1 16669:1 16702:2 16744:1 16752:1 16788:1 16798:1 16835:1 16839:2 16840:1 16914:1 16940:2 16948:2 16965:1 16971:1 16972:1 16995:1 16996:1 16997:2 17018:1 17022:1 17029:1 17035:1 17053:1 17072:1 17111:1 17112:1 17113:1 17134:1 17135:1 17153:1 17179:1 17205:1 17213:1 17215:1 17238:1 17240:1 17244:1 17257:4 17320:2 17330:2 17331:1 17338:2 17366:1 17384:1 17390:2 17454:1 17458:1 17459:1 17503:3 17512:1 17516:2 17581:1 17585:1 17610:1 17620:1 17622:1 17641:1 17676:1 17685:1 17730:1 17768:2 17787:1 17804:1 17806:1 17814:1 17832:1 17843:1 17844:1 17874:1 17878:1 17882:1 17899:1 17907:1 17911:2 17913:1 17924:1 17965:1 17969:1 17977:2 17985:1 17990:2 18005:2 18007:1 18027:1 18054:1 18077:1 18080:2 18082:1 18148:1 18164:2 18177:1 18205:1 18227:1 18264:1 18283:1 18291:1 18328:1 18345:1 18366:1 18380:2 18406:1 18407:1 18471:1 18519:1 18557:1 18561:1 18575:1 18578:2 18592:2 18604:1 18605:1 18608:1 18610:1 18635:1 18636:1 18641:1 18642:1 18643:1 18662:1 18719:1 18738:1 18751:1 18759:1 18773:1 18786:1 18796:2 18797:1 18834:1 18882:1 18889:2 18900:1 18911:1 18926:1 18930:1 18958:1 18974:1 18982:1 18999:1 19011:1 19017:1 19022:1 19023:2 19034:1 19044:1 19061:1 19081:1 19083:1 19085:1 19087:1 19088:1 19136:2 19147:1 19150:1 19180:1 19184:1 19187:1 19198:1 19225:1 19230:1 19235:1 19255:1 19263:1 19276:1 19278:1 19291:1 19298:5 19321:2 19339:1 19350:1 19362:1 19371:1 19391:1 19405:1 19522:1 19559:1 19584:2 19588:1 19627:1 19645:1 19650:1 19660:1 19681:1 19699:1 19700:1 19706:1 19707:3 19721:1 19734:1 19743:1 19777:1 19800:1 19810:1 19821:1 19835:1 19842:1 19849:1 19862:1 19873:1 19885:1 19911:1 19924:1 19933:2 19961:1 19990:1 19991:1 19996:1 20050:1 20056:1 20058:1 20102:1 20105:2 20122:1 20126:1704 20184:1 20187:1 20264:1 20272:1 20276:1 20466:1 20480:2 20502:1 20513:1 20520:1 20524:1 20556:1 20562:2 20577:1 20591:1 20600:1 20630:1 20648:1 20653:1 20668:3 20676:1 20707:1 20722:1 20768:1 20777:1 20782:1 20816:2 20820:1 20826:1 20830:1 20894:1 20921:1 20923:3 20951:1 21016:1 21031:1 21035:2 21054:1 21059:1 21062:1 21079:1 21104:1 21116:1 21122:1 21128:3 21140:2 21141:1 21145:1 21146:1 21165:1 21172:1 21177:1 21192:1 21194:1 21227:1 21253:1 21286:2 21288:1 21315:1 21329:1 21358:1 21359:1 21375:1 21437:1 21457:1 21489:2 21525:1 21536:1 21537:1 21544:1 21556:1 21587:2 21592:1 21594:2 21597:1 21598:1 21601:1 21608:1 21628:2 21630:2 21631:1 21636:1 21649:1 21659:1 21670:2 21677:1 21690:1 21700:1 21713:1 21730:1 21758:1 21771:1 21781:2 21815:1 21872:1 21910:1 21912:1 21915:1 21925:1 21934:1 21938:1 21949:1 21953:1 21965:1 21967:2 21985:1 22000:2 22003:1 22030:1 22042:2 22057:2 22064:2 22099:1 22150:1 22152:1 22167:1 22170:1 22181:1 22186:1 22193:1 22198:1 22201:1 22222:1 22244:1 22262:1 22270:3 22281:1 22294:1 22303:2 22312:1 22332:1 22366:1 22374:1 22375:1 22376:2 22378:1 22390:1 22391:1 22417:1 22453:1 22466:1 22516:1 22547:1 22551:1 22557:1 22571:2 22599:1 22639:1 22680:1 22711:1 22738:1 22761:1 22782:1 22786:2 22795:1 22816:1 22837:2 22844:1 22845:5 22847:1 22854:1 22879:1 22888:1 22903:1 22930:1 22953:1 22973:1 22975:1 22984:1 22985:1 23011:1 23017:1 23028:1 23032:1 23039:1 23043:2 23044:1 23077:1 23094:1 23096:1 23180:1 23187:1 23193:2 23217:1 23226:1 23280:1 23285:1 23301:1 23306:1 23328:1 23339:1 23371:2 23373:1 23379:4 23384:1 23387:1 23397:1 23400:1 23409:1 23424:2 23445:1 23512:1 23520:1 23534:2 23559:1 23564:1 23585:2 23586:1 23600:1 23609:2 23625:1 23629:1 23631:1 23644:2 23649:2 23652:1 23671:1 23677:1 23702:1 23712:3 23724:1 23741:1 23748:1 23758:1 23766:1 23767:1 23804:1 23832:1 23835:1 23840:1 23841:1 23843:1 23847:1 23848:1 23887:2 23897:1 23900:1 23948:3 23952:1 23956:1 23961:1 23962:3 24031:1 24032:1 24034:3 24051:5 24075:1 24102:1 24119:1 24142:1 24156:1 24163:1 24200:4 24207:1 24215:1 24216:1 24283:1 24292:1 24298:1 24314:1 24318:2 24324:1 24348:2 24363:3 24394:1 24399:1 24405:1 24413:1 24417:1 24442:1 24447:1 24467:1 24473:1 24477:1 24489:1 24499:2 24507:1 24517:1 24566:1 24582:1 24600:1 24602:1 24606:1 24608:2 24658:1 24675:1 24732:1 24773:1 24793:2 24850:3 24867:3 24912:1 24946:1 24947:1 24964:2 24974:1 24975:3 24978:2 24986:1 24989:3 24990:4 25005:1 25022:1 25030:1 25047:1 25051:1 25060:1 25061:1 25073:2 25096:1 25100:2 25106:1 25121:1 25124:1 25136:1 25172:1 25177:1 25251:2 25256:1 25258:1 25265:1 25267:2 25275:4 25290:1 25321:1 25349:1 25360:1 25364:2 25422:1 25438:1 25440:1 25442:1 25445:2 25457:2 25467:1 25469:1 25486:1 25493:1 25496:1 25507:3 25511:1 25518:2 25537:1 25544:1 25564:1 25577:1 25638:2 25681:2 25684:1 25695:4 25713:1 25716:1 25719:1 25720:2 25776:1 25782:1 25805:1 25810:1 25846:1 25847:1 25851:1 25859:1 25873:1 25886:1 25907:1 25968:1 25974:3 25983:1 25985:1 25990:2 25998:2 26009:1 26021:1 26041:1 26048:1 26062:1 26066:1 26093:1 26120:1 26125:2 26129:1 26149:1 26155:2 26172:1 26190:1 26213:1 26230:1 26231:1 26250:2 26260:1 26261:1 26262:1 26267:1 26283:1 26287:1 26309:2 26316:1 26317:1 26328:1 26341:1 26358:1 26359:1 26399:1 26483:1 26541:2 26545:1 26552:1 26557:2 26583:1 26584:1 26602:1 26603:1 26609:1 26626:1 26636:1 26669:1 26702:1 26729:1 26739:1 26741:1 26764:1 26777:1 26804:1 26805:1 26837:1 26838:2 26868:1 26885:1 26902:1 26908:1 26923:1 26968:1 26978:1 27005:1 27020:1 27028:1 27040:1 27055:1 27063:1 27072:1 27074:2 27083:1 27084:1 27094:3 27095:1 27108:1 27115:1 27128:1 27134:3 27167:2 27178:1 27198:1 27206:1 27222:1 27227:1 27247:2 27248:2 27249:2 27285:1 27287:1 27295:1 27297:1 27319:1 27332:1 27351:1 27376:1 27395:1 27405:1 27408:1 27427:1 27439:2 27445:1 27485:1 27491:1 27512:3 27541:1 27543:1 27546:1 27568:1 27591:1 27601:1 27654:1 27667:1 27674:1 27685:1 27770:3 27773:1 27794:1 27795:1 27812:1 27817:1 27825:1 27830:1 27846:1 27851:2 27875:1 27881:1 27882:1 27890:1 27896:1 27907:1 27920:1 27929:1 27991:1 28042:1 28051:2 28053:2 28065:1 28081:2 28094:1 28098:1 28102:2 28104:3 28109:1 28139:2 28149:2 28151:1 28196:2 28205:2 28208:1 28211:1 28212:1 28213:1 28220:2 28299:3 28300:2 28349:1 28352:1 28389:1 28411:1 28412:1 28418:1 28444:4 28448:1 28477:1 28482:1 28499:1 28526:1 28548:1 28573:1 28580:1 28582:1 28586:1 28599:1 28616:1 28622:2 28639:1 28674:1 28691:1 28725:1 28739:2 28741:2 28742:1 28748:3 28759:1 28775:1 28804:2 28811:1 28827:1 28855:1 28884:1 28921:1 28960:1 28997:1 29006:2 29009:1 29015:1 29038:1 29053:1 29056:2 29061:1 29062:1 29071:1 29076:1 29087:1 29096:1 29122:1 29123:1 29133:1 29148:1 29163:2 29178:1 29179:1 29188:3 29205:1 29266:2 29290:2 29296:1 29298:2 29345:2 29355:1 29367:1 29369:1 29388:1 29392:1 29402:2 29409:1 29417:2 29422:1 29448:1 29467:1 29483:1 29491:1 29504:1 29513:1 29537:1 29577:1 29620:2 29642:2 29647:2 29673:1 29681:1 29701:1 29708:1 29718:1 29731:1 29746:1 29771:1 29773:1 29780:2 29806:9 29811:1 29819:1 29835:1 29837:1 29852:4 29865:1 29882:2 29904:1 29930:1 29974:1 30020:3 30033:1 30045:2 30053:1 30056:1 30075:1 30078:1 30083:1 30090:2 30104:1 30114:1 30116:1 30149:1 30189:1 30212:1 30247:3 30251:1 30263:1 30275:1 30300:1 30330:3 30365:2 30367:1 30381:1 30390:2 30392:2 30414:1 30428:1 30429:1 30459:1 30477:1 30494:1 30517:1 30526:1 30556:2 30558:2 30574:1 30578:1 30597:1 30599:1 30625:1 30676:1 30714:1 30750:2 30867:2 30922:4 30931:1 30935:1 30942:1 30973:3 30978:1 30981:1 31002:1 31005:1 31013:1 31030:1 31036:1 31046:2 31054:1 31071:1 31083:1 31087:1 31090:2 31098:1 31100:1 31133:2 31135:1 31143:2 31179:1 31182:3 31183:1 31190:1 31195:1 31197:1 31208:1
17 19:2 33:1 35:1 49:1 61:2 62:1 86:1 110:1 122:1 173:2 183:1 192:1 224:1 227:1 240:1 256:2 271:1 278:2 304:2 343:1 351:1 357:1 358:1 398:1 401:2 404:1 419:1 420:1 422:1 426:1 504:2 509:1 577:1 591:1 633:1 641:1 647:1 690:1 695:1 703:1 708:2 719:1 726:2 781:1 817:1 824:1 846:2 857:1 864:4 928:2 969:1 973:2 977:4 979:2 980:1 982:2 986:4 990:1 991:1 992:1 997:1 1002:1 1003:1 1007:1 1008:2 1011:2 1028:1 1034:2 1036:1 1039:1 1074:2 1094:1 1095:1 1098:2 1129:1 1133:1 1145:1 1150:1 1161:1 1165:1 1166:1 1168:1 1175:1 1186:1 1192:1 1204:1 1210:1 1220:1 1221:1 1222:1 1248:1 1258:1 1269:1 1339:2 1360:1 1377:1 1382:1 1398:1 1399:1 1410:1 1413:1 1414:1 1433:1 1462:1 1464:1 1472:1 1487:1 1497:1 1560:1 1565:2 1601:1 1625:1 1638:2 1644:1 1650:1 1669:1 1676:1 1688:1 1708:1 1714:1 1717:1 1719:1 1736:1 1771:1 1790:2 1797:1 1816:1 1825:1 1827:1 1833:2 1851:1 1871:1 1895:1 1896:2 1905:1 1910:1 1921:3 1933:1 1942:1 1950:1 1956:1 1961:2 1963:2 1964:1 1972:1 1991:1 2018:1 2027:2 2036:1 2066:1 2078:1 2099:1 2108:1 2126:1 2136:1 2139:1 2164:1 2187:1 2224:1 2226:1 2253:1 2270:1 2282:1 2307:1 2395:2 2442:1 2467:1 2486:1 2504:2 2519:1 2525:2 2530:2 2531:1 2543:3 2550:1 2551:1 2552:1 2556:1 2558:1 2568:1 2569:5 2584:1 2600:2 2616:1 2633:1 2638:1 2648:1 2650:1 2697:1 2698:1 2701:2 2721:1 2737:4 2741:1 2757:1 2778:2 2783:1 2784:1 2789:1 2799:1 2804:2 2809:1 2816:1 2821:1 2856:1 2870:1 2872:1 2892:1 2923:1 2939:1 2964:1 2982:1 3004:1 3027:1 3031:1 3032:2 3101:1 3109:1 3110:2 3112:1 3131:1 3138:1 3142:1 3144:1 3147:1 3189:3 3197:4 3210:3 3232:1 3247:1 3249:1 3257:2 3266:1 3295:1 3310:1 3313:2 3320:1 3322:1 3341:1 3364:1 3365:1 3376:1 3392:1 3412:1 3419:3 3420:1 3457:1 3463:1 3464:1 3497:1 3500:1 3552:1 3563:1 3630:1 3671:2 3745:1 3747:2 3756:1 3778:1 3779:3 3795:1 3797:1 3817:1 3848:1 3849:1 3869:2 3877:1 3881:3 3896:1 3913:1 3920:1 3926:1 3936:1 3959:1 3971:1 3992:1 3997:1 4003:1 4007:1 4032:2 4052:1 4063:1 4091:1 4093:1 4097:1 4127:2 4128:1 4132:1 4204:1 4207:3 4227:1 4255:1 4262:2 4264:1 4268:1 4282:1 4284:1 4312:1 4336:1 4337:1 4385:1 4386:1 4389:1 4443:1 4446:1 4448:1 4463:1 4468:1 4487:1 4490:2 4501:1 4507:1 4518:2 4535:2 4604:1 4606:1 4608:1 4645:1 4650:1 4662:1 4712:1 4716:1 4749:1 4754:1 4761:3 4765:1 4767:1 4780:1 4785:1 4787:3 4814:1 4819:1 4842:1 4843:1 4854:2 4855:1 4881:1 4891:1 4903:1 4931:1 4955:1 4970:1 4981:1 4984:1 4985:4 4997:1 5012:1 5024:1 5050:1 5070:3 5076:1 5088:2 5107:1 5128:1 5147:1 5154:4 5161:1 5162:1 5172:1 5179:1 5188:3 5190:1 5192:4 5209:1 5221:1 5248:1 5281:1 5296:1 5298:2 5302:1 5312:1 5314:1 5315:1 5328:1 5329:1 5338:1 5345:2 5347:2 5355:1 5357:1 5391:1 5394:1 5417:1 5418:1 5436:1 5505:1 5509:1 5540:2 5544:1 5547:1 5569:1 5580:2 5586:1 5592:1 5600:2 5603:1 5646:1 5651:1 5673:1 5684:1 5692:1 5735:1 5742:1 5758:1 5761:1 5785:1 5792:1 5806:1 5877:1 5888:1 5889:1 5896:1 5950:1 5958:1 5979:1 6000:1 6003:1 6006:1 6013:1 6014:1 6040:2 6066:3 6082:1 6121:1 6142:1 6147:1 6153:1 6164:2 6166:1 6170:1 6182:1 6200:2 6202:1 6207:1 6222:1 6233:2 6245:1 6246:1 6268:1 6280:1 6293:1 6298:1 6301:2 6306:1 6310:2 6312:8 6320:2 6346:1 6361:1 6388:2 6409:1 6411:2 6433:2 6439:1 6440:3 6450:1 6456:1 6467:3 6484:1 6503:1 6507:1 6513:1 6531:2 6533:3 6536:1 6557:2 6562:1 6569:1 6575:1 6589:2 6640:2 6653:1 6654:1 6659:2 6661:1 6668:1 6672:1 6705:2 6727:1 6748:1 6758:1 6768:1 6786:1 6829:6 6844:1 6858:1 6865:2 6868:2 6869:1 6875:1 6883:1 6885:2 6886:1 6910:1 6917:1 6922:1 6926:1 6932:1 6937:1 6945:1 6950:1 6959:1 6966:1 7023:1 7033:1 7078:1 7101:1 7115:1 7121:2 7152:1 7169:1 7171:3 7181:1 7202:1 7216:1 7219:1 7227:1 7270:1 7277:1 7312:3 7332:1 7353:1 7354:1 7374:1 7381:1 7383:1 7395:1 7413:1 7422:1 7423:1 7427:2 7529:1 7567:1 7577:1 7598:4 7616:2 7626:1 7647:1 7650:1 7659:1 7663:1 7670:1 7676:1 7715:1 7718:2 7745:1 7761:1 7769:1 7775:1 7787:1 7798:1 7799:1 7819:1 7836:1 7846:1 7902:1 7903:1 7908:1 7929:1 7955:2 7959:1 7965:1 7974:1 8000:2 8019:2 8034:1 8050:1 8053:1 8059:1 8082:1 8092:2 8120:1 8126:3 8127:1 8128:1 8150:2 8151:4 8153:1 8157:1 8161:4 8162:1 8163:1 8165:1 8170:2 8171:1 8172:1 8173:3 8174:1 8187:1 8214:3 8232:1 8247:1 8286:1 8300:1 8301:1 8305:1 8316:1 8337:2 8353:2 8360:1 8371:1 8372:2 8404:1 8420:11 8440:4 8442:2 8450:1 8474:1 8485:1 8493:1 8509:1 8542:2 8557:1 8622:1 8642:1 8644:1 8650:2 8678:1 8693:1 8710:1 8716:1 8740:1 8792:1 8823:4 8834:1 8837:2 8850:1 8857:4 8879:1 8886:1 8903:1 8930:1 8940:1 8953:1 8956:1 8961:1 8963:3 8987:1 9013:2 9062:1 9077:1 9079:2 9082:1 9093:1 9094:1 9119:2 9125:2 9129:1 9131:1 9132:1 9141:1 9149:1 9165:1 9175:2 9186:1 9192:1 9194:1 9224:1 9227:1 9268:2 9273:1 9305:4 9316:1 9367:1 9370:1 9372:1 9376:1 9378:4 9385:1 9390:1 9421:1 9490:1 9500:1 9506:2 9510:1 9522:1 9568:3 9583:1 9588:1 9680:1 9685:1 9693:1 9715:1 9726:1 9795:4 9796:1 9815:1 9826:1 9835:1 9848:1 9850:1 9857:1 9872:1 9887:1 9900:1 9922:1 9937:1 9981:1 9996:1 10013:1 10026:1 10051:2 10092:2 10119:1 10131:1 10141:1 10168:1 10191:1 10216:2 10229:1 10254:1 10273:1 10277:1 10306:1 10326:2 10353:1 10368:1 10372:1 10382:1 10390:2 10393:1 10402:1 10421:1 10422:1 10451:1 10483:1 10486:1 10500:3 10501:1 10503:2 10511:1 10514:1 10516:1 10532:1 10540:1 10551:1 10554:1 10561:1 10566:1 10568:1 10576:2 10578:1 10597:1 10623:1 10626:1 10631:1 10650:4 10671:1 10676:2 10760:1 10769:1 10799:1 10853:1 10881:1 10884:1 10891:1 10945:1 10954:1 10960:4 10965:1 10966:1 10972:1 10973:1 10982:1 11010:1 11012:1 11014:1 11018:1 11020:1 11021:1 11025:1 11035:2 11042:1 11055:1 11059:3 11078:1 11103:1 11113:1 11137:1 11144:1 11150:1 11217:1 11223:3 11237:2 11246:1 11255:1 11263:1 11281:1 11304:2 11325:1 11338:1 11358:1 11360:1 11370:1 11373:1 11408:1 11426:4 11429:1 11432:1 11437:3 11445:1 11448:1 11464:1 11480:1 11481:1 11501:3 11509:1 11514:1 11522:2 11565:1 11572:1 11573:1 11585:1 11605:1 11613:1 11649:1 11662:1 11664:2 11685:1 11697:1 11700:1 11703:1 11719:1 11730:4 11737:1 11742:1 11745:1 11747:1 11764:1 11793:1 11813:2 11840:1 11849:1 11869:2 11891:1 11905:1 11946:1 11963:1 11981:1 11996:3 11997:1 12004:1 12010:1 12015:1 12016:2 12026:1 12038:1 12039:1 12052:1 12055:4 12079:1 12082:1 12086:4 12095:1 12103:1 12104:3 12141:1 12159:1 12169:1 12187:1 12236:1 12246:3 12251:1 12254:1 12261:1 12268:1 12272:1 12285:1 12290:2 12293:1 12325:2 12329:1 12332:1 12377:1 12380:1 12407:2 12412:1 12419:1 12424:1 12435:1 12446:1 12450:1 12451:1 12457:1 12468:1 12473:1 12488:1 12500:1 12530:1 12534:1 12623:1 12679:2 12708:1 12711:1 12721:1 12743:1 12769:2 12773:1 12776:1 12780:1 12794:1 12798:1 12816:1 12827:1 12831:2 12839:1 12846:2 12890:1 12910:1 12921:1 12944:1 12968:1 12977:1 12990:1 12995:1 12996:1 13002:1 13025:1 13028:1 13029:1 13034:3 13037:1 13038:3 13039:1 13047:2 13050:1 13098:1 13100:1 13129:1 13133:1 13138:1 13141:2 13144:1 13157:2 13163:1 13169:1 13171:1 13173:2 13210:1 13214:1 13222:1 13226:1 13228:1 13244:2 13247:1 13253:2 13260:2 13261:1 13266:1 13279:1 13280:1 13295:1 13355:1 13359:1 13372:1 13374:1 13390:2 13399:1 13403:1 13410:1 13439:1 13450:1 13465:1 13468:1 13470:1 13472:1 13481:1 13497:1 13540:1 13552:1 13559:1 13579:1 13584:2 13585:1 13591:1 13600:1 13608:1 13609:1 13680:2 13695:1 13697:1 13704:1 13710:1 13713:1 13725:1 13731:2 13746:1 13766:1 13799:1 13828:4 13856:1 13858:1 13864:1 13934:3 13937:1 13963:2 13965:1 13971:3 13989:1 13991:1 14051:1 14200:1 14276:1 14294:1 14298:1 14333:3 14339:2 14341:1 14342:1 14357:1 14377:3 14420:1 14421:1 14424:1 14452:1 14461:1 14473:1 14504:1 14529:1 14556:2 14566:1 14690:2 14704:1 14712:1 14728:1 14732:2 14744:1 14753:2 14757:1 14798:1 14803:1 14804:6 14843:1 14856:1 14859:1 14860:1 14877:1 14878:1 14882:2 14888:1 14897:1 14914:1 14915:1 14923:1 14931:1 14941:1 14968:1 14987:2 14994:1 15020:2 15045:2 15150:1 15169:1 15176:1 15220:1 15245:1 15248:2 15251:1 15271:1 15297:1 15321:1 15325:1 15329:1 15348:1 15349:1 15355:1 15371:1 15385:1 15387:2 15397:1 15400:1 15412:1 15422:1 15439:1 15443:1 15444:1 15454:1 15458:1 15459:1 15468:1 15495:1 15549:1 15554:1 15563:1 15570:1 15573:1 15577:1 15580:3 15584:1 15602:1 15605:1 15608:1 15615:1 15617:1 15650:1 15672:1 15678:1 15685:1 15695:1 15704:1 15718:1 15720:1 15742:1 15750:2 15761:1 15768:1 15789:1 15804:1 15815:1 15822:1 15842:1 15859:1 15873:1 15953:1 15958:1 15959:3 15968:1 16004:1 16015:1 16024:1 16028:3 16029:1 16056:8 16064:1 16080:1 16083:1 16085:1 16087:2 16089:22 16104:1 16105:2 16116:1 16138:1 16146:3 16155:1 16159:1 16196:1 16212:1 16259:1 16278:2 16288:1 16298:1 16300:2 16305:1 16309:2 16312:1 16321:1 16357:1 16361:3 16409:1 16410:2 16424:1 16432:1 16443:1 16454:2 16478:1 16487:1 16508:1 16515:1 16519:1 16525:1 16558:1 16573:2 16585:1 16596:1 16598:5 16617:1 16631:1 16633:1 16635:1 16638:1 16651:1 16669:1 16702:2 16744:1 16752:1 16788:1 16798:1 16835:1 16836:1 16839:2 16840:1 16914:1 16940:2 16948:2 16965:1 16971:1 16972:1 16995:1 16996:1 16997:2 17018:1 17022:1 17029:1 17035:1 17053:1 17072:1 17108:2 17111:1 17112:1 17113:1 17134:1 17135:1 17153:1 17179:1 17205:1 17213:1 17215:1 17238:1 17240:1 17244:1 17257:7 17320:2 17330:2 17331:1 17338:2 17366:1 17384:1 17390:2 17454:1 17458:1 17459:1 17503:3 17512:1 17516:2 17581:1 17585:1 17610:1 17620:1 17622:1 17641:1 17676:1 17685:1 17730:1 17732:1 17768:2 17787:1 17804:1 17806:1 17814:1 17818:1 17832:1 17843:1 17844:1 17874:1 17878:1 17882:1 17899:1 17907:1 17911:2 17913:1 17924:1 17940:1 17965:1 17969:1 17977:2 17985:1 17990:2 18005:2 18007:1 18027:1 18054:1 18072:1 18074:1 18077:1 18080:2 18082:1 18109:1 18148:1 18164:2 18177:1 18205:2 18227:1 18264:1 18276:1 18283:1 18291:1 18328:1 18345:1 18366:1 18380:2 18396:1 18406:1 18407:1 18471:1 18519:1 18557:1 18561:1 18575:1 18578:2 18592:2 18604:1 18605:1 18608:1 18610:1 18635:1 18636:1 18641:1 18642:1 18643:1 18662:1 18719:1 18738:1 18751:1 18759:1 18773:1 18786:1 18796:2 18797:1 18834:1 18882:1 18889:2 18892:1 18900:1 18911:1 18926:1 18930:1 18958:1 18974:1 18982:1 18999:1 19006:1 19011:1 19017:1 19022:1 19023:2 19034:1 19044:1 19061:1 19081:1 19083:1 19085:1 19087:1 19088:1 19136:2 19147:1 19150:1 19180:1 19184:1 19187:1 19198:1 19225:1 19230:1 19235:1 19244:1 19255:1 19263:1 19276:1 19278:1 19291:1 19298:5 19321:2 19339:1 19350:1 19362:1 19371:1 19391:1 19405:1 19505:1 19522:1 19559:1 19561:1 19584:2 19588:1 19627:1 19645:1 19650:1 19660:1 19681:1 19699:1 19700:1 19706:1 19707:3 19721:1 19734:1 19743:1 19777:1 19800:1 19810:1 19821:1 19835:1 19842:1 19849:1 19862:1 19873:1 19885:1 19911:1 19924:1 19933:2 19961:1 19990:1 19991:1 19996:1 20050:1 20056:1 20058:1 20102:1 20105:2 20122:1 20126:1804 20184:1 20187:1 20264:1 20272:1 20276:1 20466:1 20480:2 20502:1 20513:1 20520:1 20524:1 20556:1 20562:2 20577:1 20591:1 20600:1 20630:1 20648:1 20653:1 20668:3 20676:1 20707:1 20722:1 20768:1 20777:2 20782:1 20816:2 20820:1 20826:1 20830:1 20894:1 20921:1 20923:3 20951:1 20998:1 21016:1 21031:1 21035:2 21049:1 21054:1 21059:1 21062:1 21079:1 21104:1 21116:1 21122:1 21128:3 21140:2 21141:2 21145:1 21146:1 21147:1 21165:1 21172:1 21177:1 21192:1 21194:1 21227:1 21253:1 21286:2 21288:1 21315:1 21329:1 21358:1 21359:1 21375:1 21437:1 21457:1 21484:1 21486:1 21489:2 21525:1 21536:1 21537:1 21544:1 21556:1 21587:2 21592:1 21594:2 21597:1 21598:1 21601:1 21608:1 21628:2 21630:2 21631:1 21636:1 21649:1 21659:1 21670:2 21677:1 21690:1 21700:1 21713:1 21730:1 21758:1 21771:1 21781:2 21803:2 21815:1 21872:3 21910:1 21912:1 21915:1 21925:1 21934:1 21938:1 21949:1 21953:1 21965:2 21967:2 21985:1 22000:2 22003:1 22030:1 22042:2 22057:2 22064:2 22099:1 22150:1 22152:1 22167:1 22170:1 22181:1 22186:1 22193:1 22198:1 22201:1 22202:1 22222:1 22244:1 22262:1 22270:3 22281:1 22294:1 22303:2 22312:1 22332:1 22366:1 22374:1 22375:1 22376:2 22378:1 22390:1 22391:1 22392:2 22417:1 22453:1 22466:1 22516:1 22547:1 22551:1 22557:1 22571:2 22599:1 22639:1 22680:1 22711:1 22738:1 22761:1 22782:1 22786:2 22795:1 22816:1 22837:2 22844:1 22845:6 22847:1 22854:1 22879:1 22888:1 22903:1 22930:1 22953:1 22973:1 22975:1 22984:1 22985:1 23011:1 23017:1 23028:1 23032:1 23039:1 23043:2 23044:1 23077:1 23094:1 23096:1 23180:1 23187:1 23193:2 23217:1 23225:1 23226:1 23280:1 23285:1 23301:1 23306:1 23328:1 23339:1 23371:2 23373:1 23379:4 23384:1 23387:1 23397:1 23400:1 23409:1 23424:2 23445:1 23512:1 23520:1 23534:2 23559:1 23564:1 23585:2 23586:1 23600:1 23609:2 23625:1 23629:1 23631:1 23644:2 23649:2 23652:1 23669:2 23671:1 23677:1 23702:1 23712:3 23724:1 23741:1 23748:1 23758:1 23766:1 23767:1 23804:1 23817:1 23832:1 23835:1 23840:1 23841:1 23843:1 23847:1 23848:1 23887:2 23897:1 23900:1 23948:3 23952:1 23956:1 23961:1 23962:3 24031:1 24032:1 24034:3 24051:5 24075:1 24102:1 24119:1 24142:1 24156:1 24163:1 24200:4 24207:1 24215:1 24216:1 24283:1 24289:1 24292:1 24298:1 24314:1 24318:2 24324:1 24348:2 24363:3 24394:1 24399:1 24405:1 24413:1 24417:1 24424:1 24442:1 24447:1 24467:1 24473:1 24477:1 24489:1 24499:2 24507:1 24517:1 24566:1 24582:1 24599:1 24600:2 24602:1 24606:1 24608:2 24609:1 24629:1 24658:1 24675:1 24732:1 24754:1 24773:1 24793:2 24850:3 24867:4 24912:1 24946:1 24947:1 24964:2 24974:1 24975:3 24978:2 24986:1 24989:3 24990:4 25005:1 25022:1 25030:1 25047:1 25051:1 25060:1 25061:1 25073:2 25096:1 25100:2 25106:1 25114:2 25121:1 25124:1 25136:1 25172:1 25177:1 25251:2 25256:1 25258:2 25265:1 25267:2 25275:4 25290:1 25321:2 25341:1 25349:1 25360:1 25364:2 25422:1 25438:1 25440:1 25442:2 25445:3 25457:2 25467:1 25469:1 25486:1 25490:1 25493:1 25496:1 25507:3 25511:1 25518:2 25536:1 25537:1 25544:1 25564:1 25577:1 25638:2 25681:2 25684:1 25695:4 25713:1 25716:1 25719:1 25720:2 25776:1 25782:1 25805:1 25810:1 25846:1 25847:1 25851:1 25859:1 25873:1 25886:1 25907:1 25968:1 25974:3 25983:1 25985:1 25990:2 25998:2 26009:1 26021:1 26041:1 26048:1 26062:1 26066:1 26093:1 26120:1 26125:2 26129:1 26149:1 26155:2 26172:1 26190:1 26213:1 26227:2 26230:1 26231:1 26250:2 26260:1 26261:1 26262:1 26267:1 26283:1 26287:1 26309:2 26316:1 26317:1 26328:1 26341:1 26358:1 26359:1 26399:1 26447:1 26483:1 26485:1 26541:2 26545:1 26552:1 26557:2 26583:1 26584:1 26602:1 26603:1 26609:1 26626:1 26636:1 26669:1 26702:1 26729:1 26739:1 26741:1 26764:1 26777:1 26804:1 26805:1 26837:1 26838:2 26868:1 26885:1 26902:1 26908:1 26923:1 26968:1 26978:1 27005:1 27020:1 27028:1 27040:1 27055:1 27063:1 27072:1 27074:2 27083:1 27084:1 27094:3 27095:1 27104:1 27108:2 27115:1 27128:1 27134:3 27167:2 27178:1 27198:1 27206:1 27222:1 27227:1 27247:2 27248:2 27249:2 27285:1 27287:1 27295:1 27297:1 27319:1 27332:1 27351:1 27376:1 27395:1 27405:1 27408:1 27427:1 27437:1 27439:2 27445:1 27485:1 27491:1 27512:3 27541:1 27543:1 27546:1 27568:1 27591:1 27601:1 27616:1 27654:1 27667:1 27674:1 27685:1 27770:3 27773:1 27794:1 27795:1 27812:1 27817:1 27825:1 27830:1 27846:1 27851:2 27875:1 27881:1 27882:1 27890:1 27896:1 27907:1 27920:1 27929:1 27991:1 28041:1 28042:1 28051:2 28053:2 28065:1 28081:2 28094:1 28098:1 28102:2 28104:3 28109:1 28139:2 28149:2 28151:1 28196:2 28205:2 28208:1 28211:1 28212:1 28213:1 28220:2 28299:3 28300:2 28349:1 28352:1 28389:1 28390:1 28411:1 28412:1 28418:1 28444:4 28448:1 28449:1 28477:1 28482:1 28499:1 28526:1 28548:1 28573:1 28580:1 28582:1 28586:1 28599:1 28613:1 28616:1 28622:2 28639:1 28674:1 28691:1 28725:1 28739:2 28741:2 28742:1 28748:3 28759:1 28775:1 28804:2 28811:1 28827:1 28855:1 28884:1 28921:1 28960:1 28997:1 29006:2 29009:1 29015:1 29038:1 29053:1 29056:2 29061:1 29062:1 29071:1 29076:1 29087:1 29096:1 29122:1 29123:1 29133:1 29145:1 29148:1 29163:2 29178:1 29179:1 29188:3 29205:1 29266:2 29277:1 29290:2 29296:1 29298:2 29345:2 29355:1 29367:1 29369:1 29388:1 29392:1 29402:2 29409:1 29417:2 29422:1 29448:1 29467:1 29468:1 29483:1 29491:1 29504:1 29513:1 29537:1 29577:1 29620:2 29642:2 29647:2 29673:1 29681:1 29701:1 29708:1 29718:1 29731:1 29746:1 29771:1 29773:1 29774:1 29780:2 29806:9 29811:1 29819:1 29835:1 29837:1 29852:4 29853:2 29865:1 29882:2 29904:1 29930:1 29974:1 30020:3 30033:1 30045:2 30053:1 30056:1 30075:1 30078:1 30083:1 30090:2 30104:1 30114:1 30116:1 30149:1 30177:1 30189:1 30212:1 30247:3 30251:1 30263:1 30275:1 30281:1 30300:1 30330:3 30365:2 30367:1 30381:1 30390:2 30392:2 30414:1 30428:1 30429:1 30459:1 30477:1 30494:1 30517:1 30526:1 30556:2 30558:2 30567:1 30574:1 30578:1 30597:1 30599:1 30602:2 30625:1 30676:1 30714:1 30750:2 30867:2 30922:4 30931:1 30935:1 30942:1 30973:3 30978:1 30981:1 31002:1 31005:1 31013:1 31030:1 31036:1 31046:2 31054:1 31071:1 31083:1 31087:1 31090:2 31098:1 31100:1 31133:2 31135:1 31143:2 31179:1 31182:3 31183:1 31190:1 31195:1 31197:1 31208:1
17 19:2 33:1 35:1 49:1 61:2 62:1 86:1 110:1 122:1 164:1 173:3 183:1 192:1 224:1 227:1 240:1 256:2 271:1 278:2 304:2 343:1 351:1 357:1 358:1 398:1 401:2 404:1 419:1 420:1 422:1 426:1 493:1 504:2 509:1 577:1 591:1 633:1 641:1 647:1 690:1 695:1 703:1 708:2 719:1 726:2 781:1 817:1 824:1 846:2 857:1 864:4 928:2 969:1 973:2 977:4 979:2 980:1 982:2 986:4 990:1 991:1 992:1 997:1 1002:1 1003:2 1007:1 1008:2 1011:2 1028:1 1034:2 1036:1 1039:1 1074:3 1094:1 1095:1 1098:2 1129:1 1133:1 1145:1 1150:1 1161:1 1165:1 1166:1 1168:1 1175:1 1186:1 1192:1 1204:1 1210:1 1220:1 1221:1 1222:1 1248:1 1258:1 1269:1 1339:2 1360:1 1377:1 1382:1 1398:1 1399:1 1410:1 1413:1 1414:1 1433:1 1462:1 1464:1 1472:1 1487:1 1497:1 1560:1 1565:2 1601:1 1613:1 1625:1 1638:2 1644:1 1650:1 1669:1 1676:1 1688:1 1708:1 1714:1 1717:1 1719:1 1736:1 1749:1 1771:1 1790:2 1797:1 1816:1 1825:1 1827:1 1833:2 1851:1 1871:1 1895:1 1896:2 1905:1 1910:1 1921:3 1922:1 1933:1 1942:1 1950:1 1956:1 1961:2 1963:2 1964:1 1972:1 1991:1 2018:1 2027:2 2036:1 2066:1 2078:1 2099:1 2108:1 2126:1 2136:1 2139:1 2164:1 2187:2 2221:1 2224:1 2226:1 2253:1 2270:1 2282:1 2307:1 2395:2 2442:1 2467:1 2486:1 2504:2 2508:1 2519:1 2525:3 2530:2 2531:1 2543:4 2550:1 2551:2 2552:1 2556:1 2558:1 2568:1 2569:5 2584:1 2600:2 2616:1 2633:1 2638:1 2648:1 2650:1 2697:1 2698:1 2701:2 2721:1 2737:4 2741:1 2757:1 2778:2 2783:1 2784:1 2789:1 2799:1 2804:2 2809:1 2816:1 2821:1 2856:1 2870:1 2872:2 2892:1 2923:1 2939:1 2964:1 2982:1 3004:1 3027:1 3031:1 3032:2 3101:1 3109:1 3110:2 3112:1 3131:1 3138:1 3142:1 3144:1 3147:1 3189:3 3197:4 3210:3 3232:1 3247:1 3249:1 3257:2 3266:1 3282:1 3295:1 3310:1 3313:2 3320:1 3322:2 3327:1 3341:1 3364:1 3365:1 3376:1 3392:1 3412:1 3419:3 3420:1 3457:1 3463:1 3464:2 3487:1 3497:1 3500:1 3552:1 3563:1 3630:1 3671:2 3708:1 3745:1 3747:2 3756:1 3778:1 3779:3 3795:1 3797:1 3817:1 3848:1 3849:1 3869:2 3877:1 3881:3 3896:1 3913:1 3920:1 3926:1 3936:1 3959:1 3971:1 3992:1 3997:1 4003:1 4007:1 4032:2 4052:1 4063:1 4091:1 4093:1 4097:1 4127:2 4128:1 4132:1 4204:1 4207:3 4227:1 4255:1 4262:2 4264:1 4268:1 4282:1 4284:1 4312:1 4336:1 4337:1 4385:1 4386:1 4389:1 4443:1 4446:1 4448:1 4463:1 4468:1 4487:1 4490:2 4501:1 4507:1 4518:2 4535:2 4604:1 4606:1 4608:1 4645:1 4650:1 4662:1 4673:1 4712:1 4716:1 4749:1 4754:1 4761:3 4765:1 4767:1 4780:1 4785:1 4787:3 4814:1 4819:1 4842:1 4843:1 4854:2 4855:1 4881:1 4891:1 4903:1 4931:1 4955:1 4970:2 4981:1 4984:1 4985:4 4997:2 5012:1 5024:1 5050:1 5070:3 5076:1 5088:2 5107:1 5128:1 5147:1 5154:4 5161:1 5162:1 5172:1 5179:1 5180:1 5188:3 5190:1 5192:4 5209:1 5221:1 5248:1 5281:1 5296:1 5298:2 5302:1 5312:1 5314:1 5315:1 5328:1 5329:2 5338:1 5345:2 5347:2 5355:1 5357:1 5391:1 5394:1 5417:1 5418:1 5436:1 5505:1 5509:1 5540:2 5544:1 5547:1 5569:1 5580:2 5586:1 5592:1 5600:2 5603:1 5646:2 5651:1 5673:1 5684:1 5692:1 5717:1 5735:1 5742:1 5758:1 5761:1 5785:1 5792:1 5806:1 5877:1 5888:1 5889:1 5896:1 5950:1 5958:1 5979:1 6000:1 6003:1 6006:1 6013:1 6014:1 6020:1 6040:2 6066:3 6082:1 6121:1 6142:1 6147:1 6153:1 6164:2 6166:1 6170:1 6182:1 6200:2 6202:1 6207:1 6222:1 6233:2 6245:1 6246:1 6268:1 6280:1 6293:1 6298:1 6301:2 6306:1 6310:2 6312:8 6320:2 6346:1 6361:1 6388:2 6409:1 6411:2 6433:2 6439:1 6440:3 6450:1 6456:1 6467:3 6484:1 6503:1 6507:1 6513:1 6531:2 6533:3 6536:1 6557:2 6562:1 6569:1 6575:1 6589:2 6640:2 6653:1 6654:1 6659:2 6661:1 6668:1 6672:1 6705:2 6727:1 6748:1 6758:1 6768:1 6786:1 6829:6 6844:1 6858:1 6865:2 6868:2 6869:1 6875:1 6883:1 6885:2 6886:1 6910:1 6917:1 6922:1 6926:1 6930:1 6932:1 6937:1 6945:1 6950:1 6959:1 6966:1 7023:1 7033:1 7078:1 7101:1 7115:1 7121:2 7152:1 7169:1 7171:3 7181:1 7202:1 7216:1 7219:1 7227:1 7270:1 7277:1 7312:3 7332:1 7341:1 7353:1 7354:1 7374:1 7381:1 7383:1 7395:1 7413:1 7422:1 7423:1 7427:2 7529:1 7567:1 7577:1 7598:4 7616:2 7626:1 7647:1 7650:1 7659:1 7663:1 7670:1 7676:1 7715:1 7718:2 7745:1 7761:1 7769:1 7775:1 7787:1 7798:1 7799:1 7819:1 7836:1 7846:1 7902:1 7903:1 7908:1 7909:1 7929:1 7941:1 7955:2 7959:1 7965:1 7974:1 8000:2 8019:2 8027:1 8034:1 8050:1 8053:1 8059:1 8082:1 8092:2 8120:1 8126:3 8127:1 8128:1 8150:2 8151:4 8153:1 8157:1 8161:4 8162:1 8163:1 8165:1 8170:2 8171:1 8172:1 8173:3 8174:1 8187:1 8214:3 8232:1 8247:1 8286:1 8300:1 8301:1 8305:1 8316:1 8337:2 8353:2 8360:1 8371:1 8372:2 8404:1 8420:13 8440:4 8442:2 8450:1 8474:1 8485:1 8493:1 8509:1 8542:2 8557:1 8622:1 8642:1 8644:1 8650:2 8678:1 8693:1 8710:1 8716:1 8740:1 8792:1 8823:4 8834:1 8837:2 8850:1 8857:4 8879:1 8886:1 8903:1 8930:1 8940:1 8953:1 8956:1 8961:1 8963:4 8987:1 9013:2 9039:1 9062:1 9077:1 9079:2 9082:1 9093:1 9094:1 9119:2 9125:2 9129:1 9131:1 9132:1 9141:1 9149:1 9165:1 9175:2 9186:1 9192:1 9194:1 9224:1 9227:1 9268:2 9273:1 9305:4 9316:1 9367:1 9370:1 9372:1 9376:1 9378:4 9385:1 9390:1 9421:1 9447:1 9490:1 9500:1 9506:2 9510:1 9522:1 9568:4 9583:1 9588:1 9622:1 9680:1 9685:1 9688:1 9693:1 9715:1 9726:1 9795:4 9796:1 9815:1 9826:1 9835:1 9848:1 9850:1 9857:1 9872:1 9887:1 9900:1 9922:1 9937:1 9981:1 9996:1 10013:1 10026:1 10051:2 10092:2 10119:2 10131:1 10141:1 10168:1 10169:1 10191:1 10216:2 10229:1 10254:1 10273:1 10277:1 10306:1 10326:2 10353:1 10368:1 10372:1 10382:1 10390:2 10393:1 10402:1 10421:1 10422:1 10451:2 10483:1 10486:1 10500:3 10501:1 10503:2 10511:1 10514:1 10516:1 10532:1 10540:1 10551:1 10554:1 10561:1 10566:1 10568:2 10576:2 10578:1 10597:1 10623:1 10626:1 10631:1 10650:4 10671:1 10676:2 10760:1 10769:1 10799:1 10821:1 10853:1 10881:1 10884:1 10891:1 10933:1 10945:1 10954:1 10960:4 10965:1 10966:1 10972:1 10973:1 10982:1 11010:1 11012:1 11014:1 11018:1 11020:1 11021:1 11025:2 11035:2 11042:1 11055:1 11059:3 11078:1 11103:1 11113:1 11137:1 11144:1 11150:1 11217:1 11223:3 11237:2 11246:1 11255:1 11263:1 11281:1 11304:2 11325:1 11338:1 11358:1 11360:1 11370:1 11373:1 11408:1 11426:4 11429:1 11432:1 11437:3 11445:1 11448:1 11464:1 11480:1 11481:1 11501:3 11509:1 11514:1 11522:2 11565:1 11572:1 11573:1 11585:1 11605:1 11613:1 11649:1 11662:1 11664:2 11685:1 11697:1 11700:1 11703:1 11719:1 11730:4 11737:1 11742:1 11745:1 11747:1 11761:1 11764:1 11793:1 11813:2 11840:1 11849:1 11861:1 11869:2 11891:1 11905:1 11946:1 11963:1 11981:1 11996:3 11997:1 12004:1 12010:1 12015:1 12016:2 12026:1 12038:1 12039:1 12052:1 12055:4 12079:1 12082:1 12086:4 12095:1 12103:1 12104:3 12141:1 12159:1 12169:1 12187:1 12236:1 12246:3 12251:1 12254:1 12261:1 12268:1 12272:1 12285:1 12290:2 12293:1 12325:2 12329:1 12332:1 12377:1 12380:1 12407:2 12412:1 12419:1 12424:1 12435:1 12446:1 12450:1 12451:1 12457:1 12468:1 12473:1 12488:2 12500:1 12530:1 12534:1 12568:1 12623:1 12633:1 12673:1 12679:2 12708:1 12711:1 12721:1 12743:1 12769:2 12773:1 12776:1 12780:1 12794:1 12798:1 12816:1 12827:1 12831:2 12839:1 12846:2 12890:1 12898:1 12910:1 12921:1 12944:1 12968:1 12977:1 12990:1 12995:1 12996:1 13002:1 13025:1 13028:1 13029:1 13034:3 13037:1 13038:3 13039:1 13047:2 13050:1 13098:1 13100:1 13110:1 13129:1 13133:1 13138:1 13141:2 13144:1 13157:2 13163:1 13169:1 13171:1 13173:2 13210:1 13214:1 13222:1 13226:1 13228:1 13244:2 13247:1 13253:2 13260:2 13261:1 13266:1 13279:1 13280:1 13295:1 13355:1 13359:1 13372:1 13374:1 13390:2 13399:1 13400:1 13403:1 13410:1 13439:1 13450:1 13465:1 13468:1 13470:1 13472:1 13481:1 13497:1 13540:1 13552:1 13559:1 13579:1 13584:2 13585:1 13591:1 13600:1 13608:1 13609:1 13680:2 13695:1 13697:1 13704:1 13710:1 13713:1 13725:1 13731:2 13746:1 13766:1 13799:1 13828:4 13856:1 13858:1 13864:1 13934:3 13937:1 13963:2 13965:1 13971:3 13989:1 13991:1 14051:1 14200:1 14276:1 14294:1 14298:2 14333:4 14339:2 14341:1 14342:1 14346:1 14357:1 14377:3 14420:1 14421:1 14424:1 14452:1 14461:1 14473:1 14504:1 14529:1 14556:3 14566:1 14690:2 14704:1 14712:1 14728:1 14732:2 14744:1 14753:2 14757:1 14798:1 14803:1 14804:6 14843:1 14855:1 14856:1 14859:1 14860:1 14877:1 14878:1 14882:2 14888:1 14897:1 14914:1 14915:1 14923:1 14931:1 14941:1 14968:1 14987:2 14994:1 15020:3 15045:2 15150:1 15169:1 15176:1 15220:1 15245:1 15248:2 15251:1 15271:1 15297:1 15321:1 15325:1 15329:1 15348:1 15349:1 15355:1 15365:1 15371:1 15385:1 15387:3 15397:1 15398:1 15400:1 15412:1 15422:1 15439:1 15443:1 15444:1 15446:1 15454:1 15458:1 15459:1 15468:1 15495:1 15496:1 15534:1 15549:1 15554:1 15563:1 15570:1 15573:1 15577:1 15580:3 15584:1 15602:1 15605:1 15608:1 15615:2 15617:1 15650:1 15672:1 15678:1 15685:1 15695:1 15704:1 15718:1 15720:1 15742:1 15750:2 15761:1 15764:1 15768:1 15789:1 15804:1 15815:1 15822:1 15842:1 15859:1 15873:1 15953:1 15958:1 15959:3 15968:1 16004:1 16015:1 16024:1 16028:3 16029:1 16056:8 16064:1 16080:1 16083:1 16085:1 16087:2 16089:22 16104:1 16105:2 16116:1 16138:1 16146:3 16155:1 16159:1 16196:1 16212:1 16259:1 16278:2 16288:1 16298:1 16300:2 16305:1 16309:2 16312:1 16321:1 16357:1 16361:3 16409:1 16410:2 16424:1 16432:1 16443:1 16454:2 16478:2 16487:1 16508:1 16515:1 16519:1 16525:1 16558:1 16573:2 16585:1 16596:1 16598:5 16617:1 16631:1 16633:1 16635:1 16638:1 16651:1 16669:1 16702:2 16744:1 16752:1 16788:1 16798:1 16835:1 16836:1 16839:2 16840:1 16914:1 16940:2 16948:2 16965:1 16971:1 16972:1 16995:1 16996:1 16997:2 17018:1 17022:1 17029:1 17035:1 17053:1 17072:1 17108:2 17111:1 17112:1 17113:1 17134:1 17135:1 17153:1 17179:1 17205:1 17213:1 17215:1 17238:1 17240:1 17244:1 17257:7 17320:3 17330:2 17331:1 17338:2 17366:1 17384:1 17390:2 17454:1 17458:1 17459:1 17503:3 17512:1 17516:2 17581:1 17585:1 17610:1 17613:1 17620:1 17622:1 17641:1 17663:1 17676:1 17685:1 17730:1 17732:1 17768:2 17787:1 17804:1 17806:1 17814:1 17818:1 17832:1 17843:1 17844:1 17874:1 17878:1 17882:1 17899:1 17907:1 17911:2 17913:1 17924:1 17940:1 17965:1 17969:1 17977:2 17985:1 17990:2 17999:1 18005:2 18007:1 18027:1 18054:1 18072:1 18074:1 18077:1 18080:2 18082:1 18109:1 18148:1 18164:2 18177:1 18205:2 18227:1 18264:1 18276:1 18283:1 18291:1 18328:1 18345:1 18366:1 18380:2 18396:1 18406:1 18407:1 18471:1 18519:1 18557:1 18561:1 18570:1 18575:1 18578:2 18592:2 18604:1 18605:1 18608:1 18610:1 18635:1 18636:1 18641:1 18642:1 18643:1 18662:1 18719:1 18738:1 18751:1 18759:1 18773:1 18786:1 18796:2 18797:1 18834:1 18882:1 18889:2 18892:1 18900:1 18911:1 18926:1 18930:1 18958:1 18974:1 18982:1 18999:1 19006:1 19011:1 19017:1 19022:1 19023:2 19034:1 19044:1 19061:1 19081:1 19083:1 19085:1 19087:1 19088:1 19136:2 19147:1 19150:1 19180:1 19184:1 19187:1 19198:1 19225:1 19230:1 19235:1 19244:1 19255:1 19263:1 19276:1 19278:1 19291:1 19298:5 19321:2 19339:1 19350:1 19362:1 19371:1 19375:1 19391:1 19405:1 19446:1 19505:1 19522:1 19559:1 19561:1 19584:2 19588:1 19627:1 19630:1 19645:1 19650:1 19660:1 19681:1 19699:1 19700:1 19706:1 19707:3 19721:1 19734:1 19743:1 19777:1 19800:1 19810:1 19821:1 19835:1 19842:1 19849:1 19862:1 19873:1 19885:1 19911:1 19924:1 19933:3 19961:1 19968:1 19990:1 19991:1 19996:1 20050:1 20056:1 20058:1 20102:1 20105:2 20122:1 20126:1902 20184:1 20187:1 20264:1 20268:1 20272:1 20276:1 20366:1 20466:1 20480:2 20502:1 20513:1 20520:1 20524:1 20556:2 20562:2 20577:1 20591:1 20600:1 20630:1 20648:1 20653:1 20668:3 20676:1 20707:1 20722:1 20756:1 20768:1 20777:2 20782:1 20816:2 20820:1 20826:2 20830:1 20870:1 20894:1 20921:1 20923:4 20951:1 20998:1 21016:1 21031:1 21035:2 21049:1 21054:1 21059:1 21062:1 21079:1 21104:1 21116:1 21122:1 21128:3 21140:2 21141:2 21145:1 21146:1 21147:1 21165:1 21172:1 21177:1 21192:1 21194:1 21227:1 21253:1 21286:2 21288:1 21315:1 21329:1 21358:1 21359:1 21375:1 21437:1 21457:1 21484:1 21486:1 21489:2 21525:1 21536:1 21537:1 21542:1 21544:1 21556:1 21587:2 21592:1 21594:3 21597:1 21598:1 21601:1 21608:1 21628:2 21630:2 21631:1 21636:1 21649:1 21659:1 21670:2 21677:1 21690:1 21700:1 21713:1 21730:1 21758:1 21771:1 21781:2 21803:2 21815:1 21818:1 21872:3 21910:1 21912:1 21915:1 21925:1 21933:1 21934:1 21938:1 21949:1 21953:1 21965:2 21967:2 21985:1 22000:2 22003:1 22030:1 22042:2 22057:2 22064:2 22099:1 22119:1 22150:1 22152:1 22167:1 22170:1 22181:1 22186:1 22193:1 22198:1 22201:1 22202:1 22222:1 22244:1 22262:1 22270:3 22281:1 22294:1 22303:2 22312:1 22332:1 22366:1 22374:1 22375:1 22376:2 22378:1 22390:1 22391:1 22392:2 22417:1 22453:1 22466:1 22516:1 22547:1 22551:1 22557:1 22571:2 22599:1 22639:1 22671:1 22680:1 22711:1 22738:1 22761:1 22782:1 22786:2 22795:1 22816:1 22837:2 22844:1 22845:7 22847:1 22854:1 22862:1 22879:1 22888:1 22903:1 22930:1 22938:1 22953:1 22973:1 22975:1 22984:1 22985:1 23011:1 23017:1 23028:1 23032:1 23039:1 23043:2 23044:1 23077:1 23094:1 23096:1 23180:2 23187:1 23193:2 23217:1 23225:1 23226:1 23239:1 23280:1 23285:1 23301:1 23306:1 23328:1 23339:1 23371:2 23373:1 23379:4 23384:1 23387:1 23397:1 23400:1 23409:1 23424:2 23445:1 23512:1 23520:1 23534:2 23559:1 23564:1 23585:2 23586:1 23600:1 23605:1 23609:2 23625:1 23629:1 23631:1 23644:2 23649:2 23652:1 23669:2 23671:1 23677:1 23702:1 23712:3 23724:1 23741:1 23748:1 23758:1 23766:1 23767:1 23796:1 23804:1 23817:1 23832:1 23835:1 23840:1 23841:1 23843:1 23847:1 23848:1 23887:2 23897:1 23900:1 23948:3 23952:1 23956:1 23961:1 23962:3 24030:1 24031:1 24032:1 24034:4 24051:5 24075:1 24102:1 24119:1 24142:1 24156:1 24163:1 24200:4 24207:1 24215:1 24216:1 24283:1 24289:1 24292:1 24298:1 24314:1 24318:2 24324:1 24348:2 24363:3 24394:1 24399:2 24405:1 24413:1 24417:1 24424:1 24442:1 24447:1 24448:1 24451:1 24467:1 24473:1 24477:1 24489:1 24499:2 24507:1 24517:1 24566:1 24582:1 24599:1 24600:2 24602:1 24606:1 24608:2 24609:1 24629:1 24658:1 24670:1 24675:1 24732:1 24754:1 24773:1 24793:2 24850:3 24867:4 24912:1 24946:1 24947:1 24964:3 24974:1 24975:3 24978:2 24986:1 24988:1 24989:3 24990:4 25005:1 25022:1 25030:1 25047:1 25051:1 25060:1 25061:1 25073:2 25096:1 25100:2 25106:1 25114:2 25121:1 25124:1 25136:1 25172:1 25177:1 25207:1 25251:2 25256:1 25258:2 25265:1 25267:2 25275:4 25290:1 25305:1 25321:2 25341:1 25349:1 25360:1 25364:2 25422:1 25438:1 25440:1 25442:2 25445:3 25457:2 25467:1 25469:1 25486:1 25490:1 25493:1 25496:1 25507:3 25511:1 25518:2 25536:1 25537:1 25544:1 25564:1 25577:1 25625:1 25638:2 25681:2 25684:1 25695:4 25713:1 25716:1 25719:1 25720:2 25776:1 25782:1 25805:1 25810:1 25846:1 25847:1 25851:1 25859:1 25873:1 25886:1 25907:1 25968:1 25974:4 25983:1 25985:1 25990:2 25998:2 26009:1 26021:1 26041:1 26048:1 26062:1 26066:1 26093:1 26115:1 26120:1 26125:2 26129:1 26149:1 26155:2 26172:1 26190:1 26213:1 26227:2 26230:1 26231:1 26250:2 26260:1 26261:1 26262:1 26267:1 26283:1 26287:1 26309:2 26316:1 26317:1 26328:1 26341:1 26358:1 26359:1 26399:1 26447:1 26483:1 26485:1 26541:2 26545:1 26552:1 26557:2 26583:1 26584:1 26602:1 26603:1 26609:1 26626:1 26636:1 26669:1 26702:1 26729:1 26739:1 26741:1 26764:1 26772:1 26777:1 26804:1 26805:1 26837:1 26838:2 26868:1 26885:1 26902:1 26908:1 26923:1 26968:1 26978:1 27005:1 27020:1 27028:1 27040:1 27055:1 27063:1 27072:1 27074:2 27083:1 27084:1 27094:3 27095:1 27104:1 27108:2 27115:1 27128:1 27134:3 27140:1 27167:2 27178:1 27198:1 27206:1 27222:1 27227:1 27247:2 27248:2 27249:2 27285:1 27287:1 27295:1 27297:1 27315:1 27319:1 27332:1 27351:1 27376:1 27395:2 27405:1 27408:1 27427:1 27437:1 27439:2 27445:1 27485:1 27491:1 27512:3 27541:1 27543:1 27546:1 27568:1 27591:1 27601:1 27616:1 27654:1 27667:1 27674:1 27685:1 27770:3 27773:1 27794:1 27795:1 27812:1 27817:1 27825:1 27830:1 27846:1 27851:2 27875:1 27881:1 27882:1 27890:1 27896:1 27907:1 27920:1 27929:1 27991:1 28041:1 28042:1 28051:2 28053:2 28065:1 28081:2 28094:1 28098:1 28102:2 28103:1 28104:3 28109:1 28139:2 28149:2 28151:1 28193:1 28196:2 28205:2 28208:1 28211:1 28212:1 28213:1 28220:2 28299:3 28300:2 28349:1 28352:1 28388:1 28389:1 28390:1 28411:1 28412:1 28418:1 28444:4 28448:1 28449:1 28477:1 28482:1 28499:1 28526:1 28548:1 28573:1 28574:1 28580:1 28582:1 28586:1 28599:1 28613:1 28616:1 28622:2 28639:1 28674:1 28691:1 28725:1 28739:2 28741:2 28742:1 28748:3 28759:1 28775:1 28804:2 28811:1 28827:1 28854:1 28855:1 28884:1 28921:1 28960:1 28997:1 29006:2 29009:1 29015:1 29038:1 29053:1 29056:2 29061:1 29062:1 29071:1 29076:1 29087:1 29096:1 29122:1 29123:1 29133:1 29145:1 29148:1 29163:2 29178:1 29179:1 29188:3 29205:1 29266:2 29277:1 29290:2 29296:1 29298:2 29345:2 29355:1 29367:1 29369:1 29388:1 29392:1 29402:2 29409:1 29417:2 29422:1 29448:1 29467:1 29468:1 29483:1 29491:1 29504:1 29513:1 29537:1 29577:1 29620:2 29642:2 29647:2 29673:1 29681:1 29701:1 29708:1 29718:1 29731:1 29738:1 29746:1 29771:1 29773:1 29774:1 29780:2 29806:9 29811:1 29819:1 29821:1 29835:1 29837:1 29852:4 29853:2 29865:1 29882:2 29904:1 29930:1 29939:1 29974:1 30020:3 30033:1 30045:2 30053:1 30056:1 30075:1 30078:1 30083:1 30090:2 30104:1 30114:1 30116:1 30149:1 30177:1 30189:1 30212:1 30247:3 30251:1 30263:1 30275:1 30281:1 30300:1 30330:3 30365:2 30367:1 30381:1 30390:2 30392:2 30414:1 30428:1 30429:1 30459:1 30477:1 30494:1 30517:1 30526:1 30556:2 30558:2 30567:1 30574:1 30578:1 30597:1 30599:1 30602:2 30625:1 30676:1 30714:1 30750:2 30783:1 30867:2 30922:4 30931:1 30935:1 30942:1 30968:1 30973:3 30978:1 30981:1 31002:1 31005:1 31013:1 31030:1 31036:1 31046:2 31054:1 31071:1 31083:2 31087:1 31090:3 31098:1 31100:1 31133:2 31135:1 31143:2 31179:1 31182:3 31183:1 31190:1 31195:1 31197:1 31208:1
17 19:2 33:1 35:1 49:1 61:2 62:1 86:1 110:1 122:1 164:1 173:3 183:1 192:1 224:1 227:1 240:1 256:2 271:1 278:2 304:2 343:1 351:1 357:1 358:1 398:1 401:2 404:1 419:1 420:1 422:1 426:1 493:1 503:1 504:2 509:1 577:1 591:1 633:1 641:1 647:1 690:1 695:1 703:1 708:2 719:1 726:2 781:1 817:1 824:1 839:1 846:2 857:1 864:4 928:2 969:1 973:2 977:4 979:2 980:1 982:2 986:4 990:1 991:1 992:1 997:1 1002:1 1003:2 1007:1 1008:2 1011:2 1028:1 1034:2 1036:1 1039:1 1074:3 1094:1 1095:1 1098:2 1129:1 1133:1 1145:1 1150:1 1161:1 1165:1 1166:1 1168:1 1175:1 1186:1 1192:1 1204:1 1210:1 1220:1 1221:1 1222:1 1248:1 1258:1 1268:1 1269:1 1339:2 1360:1 1377:1 1382:1 1398:1 1399:1 1410:1 1413:1 1414:1 1433:1 1462:1 1464:1 1472:1 1487:1 1497:1 1535:1 1560:1 1565:2 1601:1 1613:1 1625:1 1638:2 1644:1 1650:1 1669:1 1676:1 1688:3 1702:1 1708:1 1714:1 1717:1 1719:1 1736:1 1749:1 1771:1 1786:1 1790:2 1797:2 1816:1 1825:1 1827:1 1833:2 1851:1 1871:1 1895:1 1896:2 1905:1 1910:1 1921:3 1922:1 1933:1 1942:1 1950:1 1956:1 1961:2 1963:2 1964:1 1972:1 1991:1 2018:1 2027:2 2036:1 2066:1 2078:1 2099:1 2108:1 2126:1 2136:1 2139:1 2164:1 2187:2 2221:1 2224:1 2226:2 2253:1 2270:1 2282:1 2307:1 2395:2 2433:1 2442:1 2467:1 2486:1 2504:2 2508:1 2519:1 2525:4 2530:2 2531:1 2543:4 2550:1 2551:2 2552:1 2556:1 2558:1 2561:1 2568:1 2569:5 2584:1 2600:2 2616:2 2633:1 2638:1 2648:1 2650:1 2697:1 2698:1 2701:2 2721:1 2737:4 2741:1 2757:1 2778:2 2783:1 2784:1 2789:1 2799:1 2804:2 2809:1 2816:1 2821:1 2856:1 2870:1 2872:2 2892:1 2923:1 2939:1 2964:1 2982:1 3004:1 3027:1 3031:1 3032:2 3101:1 3109:1 3110:2 3112:2 3131:1 3138:1 3142:1 3144:1 3147:1 3168:1 3189:3 3197:4 3210:3 3232:1 3247:1 3249:1 3257:2 3266:1 3282:1 3295:1 3310:1 3313:2 3320:1 3322:2 3327:1 3341:1 3364:1 3365:1 3376:1 3392:1 3412:1 3419:3 3420:1 3457:1 3463:1 3464:2 3487:1 3495:1 3497:1 3500:1 3524:1 3552:1 3563:1 3630:1 3671:2 3708:1 3745:1 3747:2 3756:1 3778:1 3779:3 3795:1 3797:1 3798:1 3817:1 3848:1 3849:1 3869:2 3877:1 3881:3 3896:1 3913:1 3920:1 3926:2 3936:1 3959:1 3971:1 3992:1 3997:1 4003:1 4007:1 4032:2 4052:1 4063:1 4091:1 4093:1 4097:1 4127:2 4128:1 4132:1 4204:1 4207:3 4227:1 4255:1 4262:2 4264:1 4268:1 4282:1 4284:1 4311:1 4312:1 4336:1 4337:1 4385:1 4386:1 4389:1 4443:1 4446:1 4448:1 4463:1 4468:1 4487:1 4490:2 4501:1 4507:1 4518:2 4535:2 4604:1 4606:1 4608:1 4636:1 4645:1 4650:1 4662:1 4673:1 4712:1 4716:2 4749:1 4754:1 4761:3 4765:1 4767:1 4780:1 4785:1 4787:3 4814:1 4819:1 4842:1 4843:1 4854:2 4855:1 4881:1 4891:1 4903:1 4931:1 4955:1 4970:2 4974:1 4981:1 4984:1 4985:4 4997:2 5008:1 5012:1 5024:1 5050:1 5070:3 5076:1 5088:2 5107:1 5128:1 5147:1 5154:5 5161:1 5162:1 5172:1 5179:1 5180:1 5188:3 5190:1 5192:4 5209:1 5219:1 5221:1 5248:1 5281:1 5296:1 5298:2 5302:1 5312:1 5314:1 5315:1 5328:1 5329:2 5338:1 5345:2 5347:2 5355:1 5357:1 5391:1 5394:1 5417:1 5418:1 5436:1 5505:1 5509:1 5540:2 5544:1 5547:1 5569:1 5580:2 5586:1 5592:1 5600:2 5603:1 5646:2 5651:1 5673:1 5684:1 5692:1 5717:1 5735:1 5742:1 5758:1 5761:1 5785:1 5792:1 5806:1 5877:1 5888:1 5889:1 5896:1 5917:1 5950:1 5958:1 5979:1 6000:1 6003:1 6006:1 6013:1 6014:1 6020:1 6040:2 6066:3 6082:1 6121:1 6142:1 6147:1 6153:1 6164:2 6166:1 6170:1 6182:1 6200:2 6202:1 6207:1 6222:1 6233:2 6245:2 6246:1 6268:1 6280:1 6293:1 6298:1 6301:2 6306:1 6310:2 6312:8 6320:2 6346:1 6361:1 6388:2 6409:1 6411:2 6433:2 6439:1 6440:3 6450:1 6456:1 6467:3 6484:1 6503:1 6507:1 6513:1 6531:2 6533:3 6536:1 6557:2 6562:1 6569:1 6575:1 6589:2 6617:1 6640:2 6653:2 6654:1 6659:2 6661:1 6668:1 6672:1 6705:2 6727:1 6748:1 6758:1 6768:1 6786:1 6789:1 6829:6 6844:1 6858:1 6865:2 6868:2 6869:1 6875:1 6883:1 6885:2 6886:2 6887:1 6910:1 6917:1 6922:1 6926:1 6930:1 6932:1 6937:1 6945:2 6950:1 6959:1 6966:1 7023:1 7033:1 7078:1 7101:1 7115:1 7121:2 7152:1 7169:1 7171:3 7181:1 7202:1 7216:1 7219:1 7227:1 7270:1 7277:1 7312:3 7332:1 7341:1 7353:1 7354:1 7374:1 7381:1 7383:1 7395:1 7413:1 7422:1 7423:1 7427:2 7529:1 7567:1 7577:1 7598:4 7616:2 7626:1 7647:1 7650:1 7659:1 7663:1 7670:1 7676:1 7715:2 7718:2 7745:1 7761:1 7769:1 7775:1 7787:1 7798:1 7799:1 7819:1 7836:1 7846:1 7902:1 7903:1 7908:1 7909:1 7929:1 7941:1 7955:2 7959:1 7965:1 7974:1 8000:2 8019:2 8027:1 8034:1 8050:1 8053:1 8059:2 8082:1 8092:2 8120:2 8126:3 8127:1 8128:1 8150:2 8151:4 8153:1 8157:1 8161:4 8162:1 8163:1 8165:1 8170:2 8171:1 8172:1 8173:3 8174:1 8187:1 8214:3 8232:1 8247:1 8286:1 8300:1 8301:1 8305:1 8316:1 8337:2 8353:2 8360:1 8371:1 8372:2 8404:1 8420:14 8440:4 8442:2 8450:1 8474:1 8485:1 8493:1 8509:1 8542:2 8551:1 8557:1 8622:1 8642:1 8644:1 8650:2 8678:1 8693:1 8710:1 8716:1 8740:1 8792:1 8823:4 8834:1 8837:2 8850:1 8857:5 8879:1 8886:1 8903:1 8930:1 8940:1 8953:1 8956:1 8961:1 8963:5 8987:1 9013:2 9039:1 9062:1 9077:1 9079:2 9082:1 9093:1 9094:1 9119:2 9125:2 9129:1 9131:1 9132:1 9141:1 9149:1 9165:1 9175:2 9186:1 9192:1 9194:1 9224:1 9227:1 9268:2 9273:1 9305:4 9316:1 9367:1 9370:1 9372:1 9376:1 9378:4 9385:1 9390:1 9421:1 9447:1 9490:1 9500:1 9506:2 9510:1 9522:1 9568:4 9583:1 9588:1 9622:1 9680:1 9685:1 9688:1 9693:1 9715:1 9726:1 9795:4 9796:1 9815:2 9826:1 9835:1 9848:1 9850:1 9857:1 9872:1 9887:1 9900:1 9922:1 9937:1 9981:1 9996:1 10013:1 10026:1 10051:2 10091:1 10092:2 10119:3 10131:1 10141:1 10168:1 10169:1 10191:1 10216:2 10229:1 10254:1 10255:1 10273:1 10277:1 10306:1 10326:2 10353:1 10368:1 10372:1 10382:1 10390:2 10393:1 10402:1 10421:1 10422:1 10451:3 10483:2 10486:1 10500:3 10501:1 10503:2 10511:1 10514:1 10516:1 10532:1 10540:1 10551:1 10554:1 10561:1 10566:1 10568:2 10576:2 10578:1 10597:1 10623:1 10626:1 10631:1 10650:4 10671:1 10676:2 10760:1 10769:1 10799:1 10821:1 10853:1 10881:1 10884:1 10891:1 10933:1 10945:1 10954:2 10960:4 10965:1 10966:1 10972:1 10973:1 10982:1 11010:1 11012:1 11014:1 11018:1 11020:1 11021:1 11025:2 11035:2 11042:1 11055:1 11059:3 11078:1 11082:1 11103:1 11113:1 11137:1 11144:1 11150:1 11197:1 11206:1 11217:1 11223:3 11235:1 11237:2 11246:1 11255:1 11263:1 11281:1 11304:2 11325:1 11338:1 11358:1 11360:1 11370:1 11373:1 11408:1 11426:4 11429:1 11432:1 11437:3 11445:1 11448:1 11464:1 11480:1 11481:1 11501:3 11509:1 11514:1 11522:2 11565:1 11572:1 11573:1 11585:2 11605:1 11613:2 11649:1 11662:1 11664:2 11685:1 11697:1 11700:1 11703:1 11719:1 11730:4 11737:1 11742:2 11745:1 11747:1 11761:1 11764:2 11793:1 11813:2 11840:1 11849:1 11861:1 11869:2 11891:1 11905:1 11946:1 11963:1 11978:1 11981:1 11996:3 11997:1 12004:1 12010:1 12015:1 12016:2 12026:1 12038:1 12039:1 12052:1 12055:4 12079:1 12082:1 12086:4 12095:1 12103:1 12104:3 12141:1 12159:1 12169:1 12187:1 12236:1 12246:3 12251:1 12254:1 12261:1 12263:1 12268:1 12272:1 12285:1 12290:2 12293:1 12322:1 12325:2 12329:1 12332:1 12368:1 12377:1 12380:1 12407:2 12412:1 12419:1 12424:1 12435:1 12446:1 12450:1 12451:1 12457:1 12468:1 12473:1 12488:2 12500:1 12530:1 12534:1 12568:1 12623:1 12633:1 12673:1 12679:2 12708:1 12711:2 12721:1 12743:1 12769:2 12773:1 12776:1 12780:1 12794:1 12798:2 12816:1 12827:1 12831:3 12832:1 12839:1 12846:2 12890:1 12898:1 12910:1 12921:1 12944:1 12968:1 12977:1 12990:1 12995:1 12996:1 13002:1 13025:1 13028:1 13029:1 13034:3 13037:1 13038:3 13039:1 13047:2 13050:1 13098:1 13100:1 13110:1 13129:1 13130:1 13133:1 13138:1 13141:2 13144:1 13157:2 13163:1 13169:1 13171:1 13173:2 13210:1 13214:1 13222:1 13226:1 13228:1 13244:2 13247:1 13253:2 13260:2 13261:1 13266:1 13279:1 13280:1 13295:1 13355:1 13359:1 13372:1 13374:1 13390:2 13394:1 13399:1 13400:1 13403:1 13410:1 13424:1 13439:1 13450:1 13465:1 13468:1 13470:1 13472:1 13481:1 13497:1 13540:1 13552:1 13559:1 13579:1 13584:2 13585:1 13591:1 13600:1 13608:1 13609:1 13680:2 13695:2 13697:1 13704:1 13710:1 13713:1 13725:1 13731:2 13746:1 13766:1 13799:1 13828:4 13856:1 13858:1 13864:1 13934:3 13937:1 13963:2 13965:1 13971:3 13989:1 13991:2 14051:1 14200:1 14276:1 14294:1 14298:2 14333:4 14339:2 14341:1 14342:1 14346:1 14357:1 14377:3 14420:1 14421:1 14424:1 14452:1 14461:1 14473:1 14504:1 14529:1 14556:3 14566:1 14690:2 14704:1 14708:1 14712:1 14728:1 14732:2 14744:1 14753:2 14757:1 14789:1 14798:1 14803:1 14804:6 14843:1 14855:1 14856:1 14859:1 14860:1 14875:1 14877:1 14878:1 14882:2 14888:1 14897:1 14914:1 14915:1 14923:1 14931:1 14941:1 14968:1 14987:2 14994:1 15020:4 15045:2 15150:1 15169:1 15176:1 15220:1 15241:1 15245:1 15248:2 15251:1 15271:1 15297:1 15321:1 15325:1 15329:1 15348:1 15349:1 15355:1 15365:1 15371:1 15385:1 15387:3 15397:1 15398:1 15400:1 15412:1 15422:1 15439:1 15443:1 15444:1 15446:1 15452:1 15454:1 15458:1 15459:1 15468:1 15495:1 15496:1 15534:1 15549:1 15554:1 15563:1 15570:1 15573:1 15577:1 15580:3 15584:1 15602:1 15605:1 15608:1 15615:2 15617:1 15650:1 15672:1 15678:1 15685:1 15695:1 15704:1 15718:1 15720:1 15742:1 15750:2 15761:1 15764:1 15768:1 15789:1 15797:1 15804:1 15815:1 15822:1 15842:1 15859:1 15873:1 15953:1 15958:1 15959:3 15968:1 16004:1 16015:1 16024:1 16028:3 16029:1 16056:8 16064:1 16080:1 16083:1 16085:1 16087:3 16089:22 16104:1 16105:2 16116:1 16138:1 16146:3 16155:1 16159:1 16196:1 16212:1 16259:1 16278:2 16288:1 16298:1 16300:2 16305:1 16309:2 16312:1 16321:1 16357:1 16361:3 16409:1 16410:2 16424:1 16432:1 16443:1 16454:2 16478:2 16487:2 16508:1 16515:1 16519:1 16525:1 16558:1 16572:1 16573:2 16585:1 16596:1 16598:5 16617:1 16631:1 16633:1 16635:1 16638:1 16651:1 16669:1 16702:2 16744:1 16752:1 16788:1 16798:1 16835:1 16836:1 16839:2 16840:1 16914:1 16940:2 16948:2 16965:1 16971:1 16972:1 16995:1 16996:1 16997:2 17018:1 17022:1 17029:1 17035:1 17053:1 17072:1 17108:2 17111:1 17112:1 17113:1 17134:1 17135:1 17153:1 17163:1 17179:1 17188:1 17205:1 17213:1 17215:1 17238:1 17240:1 17244:1 17257:7 17320:3 17330:2 17331:1 17338:2 17366:1 17384:1 17390:3 17454:1 17458:1 17459:1 17503:3 17512:1 17516:2 17554:1 17581:1 17585:1 17602:1 17610:1 17613:1 17620:1 17622:1 17641:1 17663:1 17676:1 17685:1 17730:1 17732:1 17768:2 17787:1 17804:1 17806:1 17811:1 17814:1 17818:1 17832:1 17843:1 17844:1 17874:1 17878:1 17882:1 17899:1 17907:1 17911:2 17913:1 17924:1 17940:1 17965:1 17969:1 17977:2 17985:1 17990:2 17999:1 18005:2 18007:1 18027:1 18054:1 18072:1 18074:1 18077:1 18080:2 18082:1 18109:1 18148:1 18164:2 18177:1 18205:2 18227:1 18264:1 18276:1 18283:1 18291:1 18328:1 18345:1 18366:1 18380:2 18396:1 18406:1 18407:1 18471:1 18519:1 18557:1 18561:1 18570:1 18575:1 18578:2 18592:2 18604:1 18605:1 18608:1 18610:1 18635:1 18636:1 18641:1 18642:1 18643:1 18662:1 18719:1 18738:1 18751:1 18759:1 18773:1 18786:1 18796:3 18797:1 18834:1 18882:1 18889:2 18892:1 18900:1 18911:1 18926:1 18930:1 18958:1 18974:1 18982:1 18999:1 19006:1 19011:1 19017:1 19022:1 19023:2 19034:1 19044:1 19061:1 19081:1 19083:1 19085:1 19087:1 19088:1 19136:2 19147:1 19150:1 19180:1 19184:1 19187:1 19198:1 19225:1 19230:1 19235:1 19244:1 19255:1 19263:1 19276:1 19278:1 19291:1 19298:5 19321:2 19339:1 19350:1 19362:1 19371:1 19375:1 19391:1 19405:1 19446:1 19461:1 19505:1 19522:1 19559:1 19561:1 19584:2 19588:1 19627:1 19630:1 19645:1 19650:1 19660:1 19681:1 19699:1 19700:1 19706:1 19707:3 19721:1 19734:1 19743:1 19777:1 19800:1 19810:1 19821:1 19835:1 19842:1 19849:1 19862:1 19873:1 19885:1 19911:1 19924:1 19933:3 19940:1 19951:1 19961:1 19968:1 19990:1 19991:1 19996:1 20050:1 20056:1 20058:1 20102:1 20105:2 20122:1 20126:1966 20184:1 20187:1 20264:1 20268:1 20272:1 20276:1 20366:1 20424:1 20466:1 20480:2 20502:1 20513:1 20520:1 20524:1 20556:3 20562:2 20577:1 20591:1 20600:1 20630:1 20648:1 20653:1 20668:3 20676:1 20707:1 20722:1 20756:1 20768:1 20777:3 20782:1 20816:2 20820:1 20826:2 20830:1 20870:1 20894:1 20921:1 20923:4 20951:1 20998:1 21016:1 21031:1 21035:2 21049:1 21054:1 21059:1 21062:1 21079:1 21104:1 21116:1 21122:1 21128:3 21140:2 21141:2 21145:1 21146:1 21147:1 21149:1 21165:1 21172:1 21177:1 21192:1 21194:1 21227:1 21253:1 21286:2 21288:1 21315:1 21329:1 21358:1 21359:1 21375:1 21437:1 21457:1 21484:1 21486:1 21489:2 21525:1 21536:1 21537:1 21542:1 21544:1 21556:1 21587:2 21592:1 21594:3 21597:1 21598:1 21601:1 21608:1 21628:2 21630:2 21631:2 21636:1 21649:1 21659:1 21670:2 21677:2 21687:1 21690:1 21700:1 21713:1 21730:1 21758:1 21771:1 21781:2 21803:2 21815:1 21818:1 21872:3 21910:1 21912:1 21915:1 21925:1 21933:1 21934:1 21938:1 21949:1 21953:1 21965:2 21967:2 21985:1 22000:2 22003:1 22030:1 22042:2 22057:2 22064:2 22099:1 22119:1 22150:1 22152:1 22167:1 22170:1 22181:1 22186:1 22193:1 22198:1 22201:1 22202:1 22222:1 22244:1 22262:1 22270:3 22281:1 22291:1 22294:1 22303:2 22312:1 22332:1 22366:1 22374:1 22375:1 22376:2 22378:1 22390:1 22391:1 22392:2 22417:1 22453:2 22466:1 22516:1 22547:1 22551:1 22557:1 22571:2 22599:1 22636:1 22639:1 22671:1 22680:1 22711:1 22738:1 22761:1 22782:1 22786:2 22795:1 22816:1 22837:2 22844:1 22845:7 22847:1 22854:1 22862:1 22879:1 22888:1 22903:1 22930:1 22938:1 22953:1 22973:1 22975:1 22984:1 22985:1 23011:1 23017:1 23028:1 23032:1 23039:1 23043:2 23044:1 23077:1 23094:1 23096:1 23139:1 23180:3 23187:1 23193:2 23217:1 23225:1 23226:1 23239:1 23280:1 23285:1 23301:1 23306:1 23328:1 23339:1 23371:2 23373:1 23379:4 23384:1 23387:1 23397:1 23400:1 23409:1 23424:2 23425:1 23445:1 23512:1 23520:1 23534:2 23559:1 23564:1 23585:2 23586:1 23600:1 23605:1 23609:2 23625:1 23629:1 23631:1 23644:2 23649:2 23652:1 23669:2 23671:2 23677:1 23702:1 23712:3 23724:1 23741:1 23748:1 23758:1 23766:1 23767:1 23796:1 23804:1 23807:1 23817:1 23832:1 23835:1 23840:1 23841:1 23843:1 23847:1 23848:1 23887:2 23897:1 23900:1 23948:3 23952:1 23956:1 23961:1 23962:3 24008:1 24015:1 24030:1 24031:1 24032:1 24034:4 24043:1 24051:5 24075:1 24102:1 24119:1 24142:1 24156:1 24163:1 24200:4 24207:1 24215:1 24216:1 24283:1 24289:1 24292:1 24298:1 24314:1 24318:2 24324:1 24348:2 24363:3 24394:1 24399:2 24405:1 24413:1 24417:1 24422:1 24424:1 24442:1 24447:1 24448:1 24451:1 24467:1 24473:1 24477:1 24489:1 24499:2 24507:1 24517:1 24566:1 24582:1 24599:1 24600:2 24602:1 24606:1 24608:2 24609:1 24629:1 24658:1 24670:1 24675:1 24732:1 24754:1 24773:1 24793:2 24850:3 24867:4 24912:1 24946:1 24947:1 24964:3 24974:1 24975:3 24978:2 24986:1 24988:1 24989:3 24990:4 25005:1 25022:1 25030:1 25047:1 25051:1 25060:1 25061:1 25073:2 25096:1 25100:2 25106:1 25114:2 25121:1 25124:1 25136:1 25172:1 25177:1 25207:1 25251:2 25256:1 25258:2 25265:1 25267:2 25275:4 25290:1 25305:1 25321:2 25341:1 25349:1 25360:1 25364:2 25422:1 25438:1 25440:1 25442:2 25445:3 25450:1 25457:2 25467:1 25469:1 25486:1 25490:1 25493:1 25496:1 25507:3 25511:1 25518:2 25536:1 25537:1 25544:1 25564:1 25577:1 25609:1 25625:1 25638:2 25681:2 25684:1 25695:4 25713:1 25716:1 25719:1 25720:2 25776:1 25782:1 25805:1 25810:1 25846:1 25847:1 25851:1 25859:1 25873:1 25886:1 25907:1 25968:1 25974:4 25983:1 25985:1 25990:2 25998:2 26009:1 26021:1 26041:1 26048:1 26062:1 26066:1 26093:1 26115:1 26120:1 26125:2 26129:1 26149:1 26155:3 26172:1 26190:1 26213:1 26227:2 26230:1 26231:1 26250:2 26260:1 26261:1 26262:1 26267:1 26283:1 26287:1 26309:2 26316:1 26317:1 26328:1 26341:1 26358:1 26359:1 26399:1 26447:1 26483:1 26485:1 26541:2 26545:2 26552:1 26557:2 26583:1 26584:1 26602:1 26603:1 26609:1 26626:1 26636:1 26669:1 26702:1 26729:1 26739:1 26741:2 26764:1 26772:1 26777:1 26804:1 26805:1 26837:1 26838:2 26868:1 26870:1 26885:1 26902:1 26908:1 26923:1 26968:1 26978:1 27005:1 27020:1 27028:1 27040:2 27055:1 27063:1 27072:1 27074:2 27083:1 27084:2 27094:3 27095:1 27104:1 27108:2 27115:1 27128:1 27134:3 27140:1 27167:2 27178:1 27198:1 27206:1 27222:1 27227:1 27247:2 27248:2 27249:2 27285:1 27287:2 27295:1 27297:1 27315:1 27319:1 27332:1 27351:1 27376:1 27395:2 27405:1 27408:1 27427:1 27437:1 27439:2 27445:1 27485:1 27491:1 27512:3 27541:1 27543:1 27546:1 27568:1 27591:1 27601:1 27616:1 27654:1 27667:1 27674:1 27685:1 27770:3 27773:1 27794:1 27795:1 27812:1 27817:1 27825:2 27830:1 27846:1 27851:2 27875:1 27881:1 27882:1 27890:1 27896:1 27907:1 27920:1 27929:1 27991:1 27994:1 28041:1 28042:1 28051:2 28053:2 28065:1 28081:2 28094:1 28098:1 28102:2 28103:1 28104:3 28109:1 28139:2 28149:2 28151:1 28193:2 28196:2 28205:2 28208:1 28211:1 28212:1 28213:2 28220:2 28299:3 28300:2 28349:1 28352:1 28388:1 28389:1 28390:1 28411:1 28412:1 28418:1 28444:4 28448:1 28449:1 28477:1 28482:1 28499:1 28526:1 28548:1 28573:1 28574:2 28580:1 28582:1 28586:1 28599:1 28613:1 28616:1 28622:2 28639:1 28644:1 28674:1 28691:1 28725:1 28739:2 28741:2 28742:1 28748:3 28759:1 28775:1 28804:2 28811:1 28827:1 28854:2 28855:1 28884:1 28896:1 28921:1 28960:1 28997:1 29006:2 29009:1 29015:1 29018:1 29038:1 29053:2 29056:2 29061:1 29062:1 29071:1 29076:2 29087:1 29096:1 29122:1 29123:1 29133:1 29145:1 29148:1 29163:2 29178:1 29179:1 29183:1 29188:3 29205:1 29266:2 29277:1 29290:2 29296:1 29298:2 29345:2 29355:1 29367:1 29369:1 29388:1 29392:1 29402:2 29409:1 29417:2 29422:1 29448:1 29467:1 29468:1 29483:1 29491:1 29504:1 29513:1 29537:1 29577:1 29620:2 29642:2 29647:2 29673:1 29674:1 29681:1 29701:1 29708:1 29718:1 29731:1 29738:1 29746:1 29771:1 29773:2 29774:1 29780:2 29806:9 29811:1 29819:1 29821:1 29831:1 29835:1 29837:1 29852:4 29853:2 29861:1 29865:1 29882:3 29904:1 29930:1 29939:1 29974:1 30020:3 30033:1 30045:2 30053:1 30056:1 30075:1 30078:1 30083:1 30090:2 30104:1 30114:1 30116:1 30149:1 30177:1 30182:1 30189:1 30212:1 30247:3 30251:1 30263:1 30275:1 30281:1 30300:1 30330:3 30365:2 30367:1 30381:1 30390:2 30392:2 30414:1 30428:1 30429:1 30458:1 30459:1 30477:1 30494:1 30517:1 30526:1 30556:2 30558:2 30567:1 30574:1 30578:1 30597:1 30599:1 30602:2 30625:1 30676:1 30714:1 30750:2 30783:1 30867:2 30879:1 30922:4 30931:1 30935:1 30942:1 30968:1 30973:4 30978:1 30981:1 31002:1 31005:2 31013:1 31030:2 31036:1 31046:2 31054:1 31071:1 31083:2 31087:1 31090:3 31098:1 31100:1 31133:2 31135:1 31143:2 31179:1 31182:3 31183:1 31190:1 31195:1 31197:1 31208:1
17 19:2 33:1 35:1 49:1 61:2 62:1 86:1 110:1 122:1 164:1 173:3 183:1 192:1 224:1 227:1 240:1 256:2 271:1 278:2 304:2 310:1 343:1 351:1 357:1 358:1 398:1 401:2 404:1 419:1 420:1 422:1 426:1 493:1 503:1 504:2 509:1 511:1 577:1 591:1 633:1 640:1 641:1 647:1 690:1 695:1 703:1 708:2 719:1 726:2 781:1 817:1 824:1 839:1 846:2 857:1 864:4 928:2 969:1 973:2 977:4 979:2 980:1 982:2 986:4 990:1 991:2 992:1 997:1 1002:1 1003:2 1007:1 1008:2 1011:2 1028:1 1034:2 1036:1 1039:1 1074:3 1094:1 1095:1 1098:2 1114:1 1129:1 1133:1 1145:1 1150:1 1161:1 1165:1 1166:1 1168:1 1175:1 1186:1 1192:1 1204:1 1210:1 1220:1 1221:1 1222:1 1248:1 1258:1 1268:1 1269:1 1339:2 1348:1 1360:1 1377:1 1382:1 1398:1 1399:1 1410:1 1413:1 1414:1 1433:1 1462:1 1464:1 1472:1 1487:1 1497:1 1535:1 1560:1 1565:2 1601:1 1613:1 1625:1 1638:2 1644:1 1650:1 1669:1 1676:1 1688:3 1702:1 1708:1 1714:1 1717:1 1719:1 1722:1 1736:1 1749:1 1771:1 1786:1 1790:2 1797:2 1816:1 1825:1 1827:1 1833:2 1851:1 1871:1 1895:1 1896:2 1905:1 1910:1 1921:3 1922:1 1933:1 1942:1 1950:1 1956:1 1961:2 1963:2 1964:1 1972:1 1991:1 2018:1 2027:2 2036:1 2066:1 2078:1 2099:1 2108:1 2126:1 2127:1 2136:1 2139:1 2164:1 2187:2 2221:1 2224:1 2226:2 2253:1 2261:1 2270:1 2282:1 2307:1 2395:2 2433:1 2442:1 2467:1 2486:1 2504:2 2508:1 2519:1 2525:4 2530:2 2531:1 2543:4 2550:1 2551:2 2552:1 2556:1 2558:1 2561:1 2568:1 2569:5 2584:1 2600:2 2616:2 2633:1 2638:1 2648:1 2650:1 2697:1 2698:1 2701:2 2721:1 2737:4 2741:1 2757:1 2778:2 2783:1 2784:1 2789:1 2799:1 2804:2 2809:1 2816:1 2821:1 2856:1 2870:1 2872:2 2892:1 2923:1 2939:1 2964:1 2982:1 3004:1 3027:1 3031:1 3032:2 3101:1 3109:1 3110:2 3112:2 3117:1 3131:1 3138:1 3142:1 3144:1 3147:1 3168:1 3169:1 3189:3 3197:4 3210:3 3232:1 3247:1 3249:1 3257:2 3266:1 3282:1 3295:1 3310:1 3313:2 3315:1 3320:1 3322:2 3327:1 3341:1 3364:1 3365:1 3376:1 3392:1 3412:1 3419:3 3420:1 3457:1 3463:1 3464:2 3487:1 3495:1 3497:1 3500:1 3524:1 3552:1 3563:1 3630:1 3671:2 3708:1 3745:1 3747:2 3756:1 3778:1 3779:3 3795:1 3797:1 3798:1 3817:1 3848:1 3849:1 3869:2 3877:1 3879:1 3881:4 3896:1 3913:1 3920:1 3926:2 3936:1 3959:1 3971:1 3992:1 3997:1 4003:1 4007:1 4032:2 4052:1 4063:1 4091:1 4093:1 4097:1 4127:2 4128:1 4131:1 4132:1 4204:1 4207:3 4227:1 4247:1 4255:1 4262:2 4264:1 4268:1 4282:1 4284:1 4311:1 4312:1 4336:1 4337:1 4385:1 4386:1 4389:1 4443:1 4446:1 4448:1 4463:1 4468:1 4480:1 4487:1 4490:2 4501:1 4507:1 4518:2 4535:2 4604:1 4606:1 4608:1 4636:1 4645:1 4648:1 4650:1 4654:1 4662:1 4673:1 4712:1 4716:2 4749:1 4754:1 4761:3 4765:1 4767:1 4780:1 4785:1 4787:3 4814:1 4819:1 4842:1 4843:1 4854:2 4855:1 4881:1 4891:1 4903:1 4931:1 4955:1 4970:2 4974:1 4981:1 4984:1 4985:4 4997:2 5008:1 5012:1 5024:1 5050:2 5070:3 5076:1 5088:2 5107:1 5128:1 5147:1 5154:5 5161:1 5162:1 5172:1 5179:1 5180:1 5188:3 5190:1 5192:4 5206:1 5209:1 5219:1 5221:1 5248:1 5281:1 5296:1 5298:2 5302:1 5312:1 5314:1 5315:1 5328:1 5329:2 5338:1 5345:2 5347:2 5355:1 5357:1 5391:1 5394:1 5417:1 5418:1 5436:1 5505:1 5509:1 5540:2 5544:1 5547:1 5569:1 5580:2 5586:1 5592:1 5600:2 5603:1 5646:2 5651:1 5673:1 5684:1 5692:2 5717:1 5735:1 5742:1 5758:1 5761:1 5785:1 5792:1 5806:1 5877:1 5888:1 5889:1 5896:1 5917:1 5942:1 5950:1 5958:1 5979:1 6000:1 6003:1 6006:1 6013:1 6014:1 6020:1 6040:2 6066:3 6082:1 6121:1 6142:1 6147:1 6153:1 6164:2 6166:1 6170:1 6182:1 6200:2 6202:1 6207:1 6222:1 6233:2 6245:2 6246:1 6268:1 6280:1 6293:1 6298:1 6301:2 6306:1 6310:2 6312:8 6320:2 6346:1 6361:1 6388:2 6409:1 6411:2 6433:2 6439:1 6440:3 6450:1 6456:1 6467:3 6484:1 6503:1 6507:1 6513:1 6531:2 6533:3 6536:1 6557:2 6562:1 6569:1 6575:1 6589:3 6617:1 6640:2 6653:2 6654:1 6659:2 6661:2 6668:1 6672:1 6705:2 6727:1 6748:1 6758:1 6768:1 6786:1 6789:1 6829:6 6844:1 6858:1 6865:2 6868:2 6869:1 6875:1 6883:1 6885:2 6886:2 6887:1 6910:1 6917:1 6922:1 6926:1 6930:1 6932:1 6937:1 6945:2 6950:1 6959:1 6966:1 7023:1 7033:1 7078:1 7101:1 7115:1 7121:2 7152:1 7169:1 7171:3 7181:1 7202:1 7216:1 7219:1 7227:1 7270:1 7277:1 7312:3 7332:1 7341:1 7353:1 7354:1 7374:1 7381:1 7383:1 7395:1 7413:1 7422:1 7423:1 7427:2 7529:1 7567:1 7577:1 7598:4 7616:2 7626:1 7647:1 7650:1 7659:1 7663:1 7670:1 7676:1 7715:2 7718:2 7745:1 7761:1 7769:1 7775:1 7785:1 7787:1 7798:1 7799:1 7819:1 7836:1 7846:1 7902:1 7903:1 7908:1 7909:1 7929:1 7941:1 7955:2 7959:1 7965:1 7974:1 7976:1 8000:2 8019:2 8027:1 8034:1 8050:1 8053:1 8059:2 8082:1 8092:2 8120:2 8126:3 8127:1 8128:1 8150:2 8151:5 8153:1 8157:1 8161:4 8162:1 8163:1 8165:1 8170:2 8171:1 8172:1 8173:3 8174:1 8187:1 8214:3 8232:1 8247:1 8268:1 8286:1 8300:1 8301:1 8305:1 8316:1 8337:2 8353:2 8360:1 8371:1 8372:2 8404:1 8420:14 8440:4 8442:2 8450:1 8467:1 8474:1 8485:1 8493:1 8505:1 8509:1 8542:2 8551:1 8557:1 8572:1 8622:1 8642:1 8644:1 8650:2 8678:1 8693:1 8710:1 8716:1 8740:1 8792:1 8823:4 8834:1 8837:2 8850:1 8857:5 8879:1 8886:1 8903:1 8910:1 8920:1 8930:1 8940:1 8953:1 8956:1 8961:1 8963:5 8987:1 9013:2 9035:1 9039:1 9062:1 9077:1 9079:2 9082:1 9093:1 9094:1 9119:2 9125:2 9129:1 9131:1 9132:1 9141:1 9149:1 9165:1 9175:2 9186:1 9192:1 9194:1 9224:1 9227:1 9268:2 9273:1 9305:4 9316:1 9367:1 9370:1 9372:1 9376:1 9378:4 9385:1 9390:1 9421:1 9447:1 9461:1 9490:1 9500:1 9506:2 9510:1 9522:1 9568:4 9583:1 9588:1 9622:1 9680:1 9685:1 9688:1 9693:1 9715:1 9726:1 9795:4 9796:1 9815:2 9826:1 9835:1 9848:1 9850:1 9857:1 9872:1 9887:1 9900:1 9922:1 9937:1 9981:1 9996:1 10013:1 10026:1 10051:2 10091:1 10092:2 10119:3 10131:1 10141:1 10168:1 10169:1 10191:1 10216:2 10229:1 10253:1 10254:1 10255:1 10273:1 10277:1 10306:1 10317:1 10326:2 10353:1 10368:1 10372:1 10382:1 10390:2 10393:1 10402:1 10421:1 10422:1 10451:3 10483:2 10486:1 10500:3 10501:1 10503:2 10511:1 10514:1 10516:1 10532:1 10540:1 10551:1 10554:1 10561:1 10566:1 10568:2 10576:2 10578:1 10597:1 10623:1 10626:1 10631:1 10650:4 10671:1 10676:2 10760:1 10769:1 10799:1 10821:1 10853:1 10881:1 10884:1 10891:1 10933:1 10945:1 10954:2 10960:4 10965:1 10966:1 10972:1 10973:1 10982:1 11010:1 11012:1 11013:1 11014:1 11018:1 11020:1 11021:1 11025:2 11035:3 11042:1 11055:1 11059:3 11078:1 11082:1 11103:1 11113:1 11137:1 11144:2 11150:1 11197:1 11206:1 11217:1 11223:3 11235:1 11237:2 11246:1 11251:1 11255:1 11263:1 11281:1 11304:2 11324:1 11325:1 11338:1 11358:1 11360:1 11370:1 11373:1 11377:1 11408:1 11426:4 11429:1 11432:1 11437:3 11445:1 11448:1 11464:1 11480:1 11481:1 11501:3 11509:1 11514:1 11522:2 11565:1 11572:1 11573:1 11585:2 11605:1 11613:2 11649:1 11662:1 11664:2 11685:1 11697:1 11700:1 11703:1 11719:1 11730:4 11737:1 11742:2 11745:1 11747:1 11761:1 11764:2 11793:1 11813:2 11840:1 11849:1 11861:1 11863:1 11869:2 11891:1 11905:1 11946:1 11963:1 11978:1 11981:1 11996:3 11997:1 12004:1 12010:1 12015:1 12016:2 12026:1 12038:1 12039:1 12052:1 12055:4 12079:1 12082:1 12086:4 12095:1 12103:1 12104:3 12141:1 12159:1 12169:1 12187:1 12236:1 12246:3 12251:1 12254:1 12261:1 12263:1 12268:1 12272:1 12285:1 12290:2 12293:1 12322:1 12325:2 12329:1 12332:1 12368:1 12377:1 12380:1 12407:2 12412:1 12419:1 12424:1 12435:1 12446:1 12450:2 12451:1 12457:1 12468:1 12473:1 12488:2 12500:1 12530:1 12534:1 12568:1 12623:1 12633:1 12673:1 12679:2 12698:1 12708:1 12711:2 12721:1 12743:1 12769:2 12773:1 12776:1 12780:1 12794:1 12798:2 12816:1 12827:1 12831:3 12832:1 12839:1 12846:2 12890:1 12894:1 12898:1 12910:1 12921:1 12944:1 12968:1 12977:1 12990:1 12995:1 12996:1 13002:1 13025:1 13028:1 13029:1 13034:3 13037:1 13038:3 13039:1 13047:2 13050:1 13098:1 13100:1 13110:1 13129:1 13130:1 13133:1 13138:1 13141:2 13144:1 13157:2 13163:1 13169:1 13171:1 13173:2 13210:1 13214:1 13222:1 13226:1 13228:1 13244:2 13247:2 13253:2 13260:2 13261:1 13266:1 13279:1 13280:1 13295:1 13355:1 13359:1 13372:1 13374:1 13385:1 13390:2 13394:1 13399:1 13400:1 13403:1 13410:1 13424:1 13436:1 13439:1 13450:1 13465:1 13468:1 13470:1 13472:1 13481:1 13497:1 13540:1 13552:1 13559:1 13579:1 13584:2 13585:1 13591:1 13600:1 13608:1 13609:1 13680:2 13695:2 13697:1 13704:1 13710:1 13713:1 13725:1 13731:2 13743:1 13746:1 13766:2 13799:1 13828:4 13856:1 13858:1 13864:1 13934:3 13937:1 13963:2 13965:1 13971:3 13989:1 13991:2 14051:1 14109:1 14148:1 14200:1 14276:1 14294:1 14298:2 14333:4 14339:2 14341:1 14342:1 14346:1 14357:1 14377:3 14420:1 14421:1 14424:1 14452:1 14461:1 14473:1 14504:1 14529:1 14556:3 14566:1 14690:2 14704:1 14708:1 14712:1 14728:1 14732:2 14744:1 14753:2 14757:1 14789:1 14798:1 14803:1 14804:6 14843:1 14855:1 14856:1 14859:1 14860:1 14875:1 14877:1 14878:1 14882:2 14888:1 14897:1 14914:1 14915:1 14923:1 14931:1 14941:1 14968:1 14987:2 14994:1 15020:4 15045:2 15150:1 15169:1 15176:1 15216:1 15220:1 15241:1 15245:1 15248:2 15251:1 15271:1 15297:1 15321:1 15325:1 15329:1 15348:1 15349:1 15355:1 15365:1 15371:1 15385:1 15387:3 15397:1 15398:1 15400:1 15412:1 15422:1 15439:1 15443:1 15444:1 15446:1 15452:1 15454:1 15458:1 15459:1 15468:1 15495:1 15496:1 15534:1 15549:1 15554:1 15563:1 15570:1 15573:1 15577:1 15580:3 15584:1 15602:1 15605:1 15608:1 15615:3 15617:1 15650:1 15672:1 15678:1 15685:1 15695:1 15704:1 15718:1 15720:1 15742:2 15750:2 15761:1 15764:1 15768:1 15789:1 15797:1 15804:1 15815:1 15822:1 15842:1 15859:1 15873:1 15953:1 15958:1 15959:3 15968:1 16004:1 16015:1 16024:1 16028:3 16029:1 16056:8 16064:1 16080:1 16082:1 16083:1 16085:1 16087:3 16089:23 16099:1 16104:1 16105:2 16116:1 16138:1 16146:3 16155:1 16159:2 16196:1 16212:1 16259:1 16278:2 16288:1 16298:1 16300:2 16305:1 16309:2 16312:1 16321:1 16357:1 16361:3 16409:1 16410:2 16424:1 16432:1 16443:1 16454:2 16478:2 16487:2 16508:1 16515:1 16519:1 16525:1 16558:1 16572:1 16573:2 16585:1 16596:1 16598:5 16617:1 16631:1 16633:1 16635:1 16638:1 16650:1 16651:1 16669:1 16702:2 16744:1 16752:1 16788:1 16798:1 16835:1 16836:1 16839:2 16840:1 16914:1 16940:2 16948:2 16965:1 16971:1 16972:1 16995:1 16996:1 16997:2 17018:1 17022:1 17029:1 17035:1 17053:1 17072:1 17108:2 17111:1 17112:1 17113:1 17134:1 17135:1 17153:1 17163:1 17179:1 17188:1 17205:1 17213:1 17215:1 17238:1 17240:1 17244:1 17257:7 17320:3 17330:2 17331:1 17338:2 17366:1 17384:1 17390:3 17454:1 17458:1 17459:1 17503:3 17512:1 17516:2 17554:1 17581:1 17585:1 17602:1 17610:1 17613:1 17620:1 17622:1 17641:1 17663:1 17676:1 17685:1 17730:1 17732:1 17768:2 17787:1 17804:1 17806:1 17811:1 17814:1 17818:1 17832:1 17843:1 17844:1 17874:1 17878:1 17882:1 17899:1 17907:1 17911:2 17913:1 17924:1 17940:1 17965:1 17969:1 17977:2 17979:1 17985:1 17990:2 17999:1 18005:2 18007:1 18027:1 18054:1 18072:1 18074:1 18077:1 18080:3 18082:1 18109:1 18148:1 18164:2 18177:1 18205:2 18227:1 18264:1 18276:1 18283:1 18291:1 18328:1 18345:1 18366:1 18369:1 18380:2 18396:1 18402:1 18406:1 18407:1 18471:1 18519:1 18546:1 18557:1 18561:1 18570:1 18575:1 18577:1 18578:2 18592:2 18604:1 18605:1 18608:1 18610:1 18635:1 18636:1 18641:1 18642:1 18643:1 18662:1 18700:1 18719:1 18738:1 18751:1 18759:1 18773:1 18774:1 18786:1 18796:3 18797:1 18834:1 18882:1 18889:2 18892:1 18900:1 18911:1 18926:1 18930:1 18958:1 18962:1 18974:1 18982:1 18999:1 19006:1 19011:1 19017:1 19022:1 19023:2 19034:1 19044:1 19061:1 19081:1 19083:1 19085:1 19087:1 19088:1 19136:2 19147:1 19150:1 19180:1 19184:1 19187:1 19198:1 19225:1 19230:1 19235:1 19244:1 19255:1 19263:1 19276:1 19278:1 19291:1 19298:6 19321:2 19339:1 19350:1 19362:1 19371:1 19375:1 19391:1 19405:1 19446:1 19461:1 19505:1 19522:2 19559:1 19561:1 19584:2 19588:1 19627:1 19630:1 19645:1 19650:1 19660:1 19681:1 19699:1 19700:1 19706:1 19707:3 19721:1 19734:1 19743:1 19777:1 19800:1 19810:1 19821:1 19835:1 19842:1 19849:1 19862:1 19873:1 19885:1 19886:1 19911:1 19924:1 19933:3 19940:1 19951:1 19955:1 19961:1 19968:1 19990:1 19991:1 19996:1 20050:1 20056:1 20058:1 20102:1 20105:2 20122:1 20126:2065 20184:1 20187:1 20195:1 20237:1 20264:1 20268:1 20272:1 20276:1 20366:1 20424:1 20427:1 20466:1 20480:2 20502:1 20513:1 20520:1 20524:1 20556:3 20562:2 20577:1 20591:1 20600:1 20630:1 20648:1 20653:1 20668:3 20676:1 20707:1 20722:1 20756:1 20768:1 20777:3 20782:1 20816:2 20820:1 20826:2 20830:1 20870:1 20894:1 20921:1 20923:4 20951:1 20998:1 21016:1 21031:1 21035:2 21049:1 21054:1 21059:1 21062:1 21079:1 21104:1 21116:1 21122:1 21128:3 21140:2 21141:2 21145:1 21146:1 21147:1 21149:1 21165:1 21172:1 21177:2 21192:1 21194:1 21227:1 21253:1 21286:2 21288:1 21315:1 21329:1 21358:1 21359:1 21375:1 21437:1 21457:1 21484:1 21486:1 21489:2 21525:1 21536:1 21537:1 21542:1 21544:1 21556:1 21587:2 21592:1 21594:3 21597:1 21598:1 21601:1 21608:1 21628:2 21630:2 21631:2 21636:1 21649:1 21659:1 21670:2 21677:2 21687:1 21690:1 21700:1 21713:1 21730:1 21758:1 21771:1 21781:2 21803:2 21815:1 21818:1 21872:3 21910:1 21912:1 21915:1 21925:1 21933:1 21934:1 21938:1 21949:1 21953:1 21965:2 21967:2 21985:1 22000:2 22003:1 22030:1 22042:2 22057:2 22064:2 22099:1 22119:1 22150:1 22152:1 22167:1 22170:1 22181:1 22186:1 22193:1 22198:1 22201:1 22202:1 22222:1 22244:1 22262:1 22270:3 22281:1 22291:1 22294:1 22303:2 22312:1 22332:1 22366:1 22374:1 22375:1 22376:2 22378:1 22390:1 22391:1 22392:2 22417:1 22453:2 22466:1 22482:1 22516:2 22547:1 22551:1 22557:1 22571:2 22599:1 22636:1 22639:1 22671:1 22680:1 22711:1 22738:1 22761:1 22782:1 22786:2 22795:1 22804:1 22813:1 22816:2 22837:2 22844:1 22845:7 22847:1 22854:1 22862:1 22879:1 22888:1 22903:1 22930:1 22938:1 22953:1 22973:1 22975:1 22984:1 22985:1 23011:1 23017:1 23028:1 23032:1 23039:1 23043:2 23044:1 23060:1 23077:1 23094:1 23096:1 23139:1 23180:3 23187:1 23193:2 23217:1 23225:1 23226:1 23239:1 23280:1 23285:1 23295:1 23301:1 23306:1 23328:1 23339:1 23371:2 23373:1 23379:4 23384:1 23387:1 23397:1 23400:1 23409:1 23424:2 23425:1 23445:1 23512:1 23520:1 23534:2 23544:1 23559:1 23564:1 23585:2 23586:1 23600:1 23605:1 23609:2 23625:1 23629:1 23631:1 23644:2 23649:2 23652:1 23669:2 23671:2 23677:1 23702:1 23712:3 23724:1 23741:1 23748:1 23758:1 23766:1 23767:1 23796:1 23804:1 23807:1 23817:1 23826:1 23832:1 23835:1 23840:1 23841:1 23843:1 23847:1 23848:1 23887:2 23897:1 23900:1 23948:3 23952:1 23956:1 23961:1 23962:3 24008:1 24015:1 24030:1 24031:1 24032:1 24034:4 24043:1 24051:5 24075:1 24102:1 24119:1 24142:1 24156:1 24163:1 24200:5 24207:1 24215:1 24216:1 24283:1 24289:1 24292:1 24298:1 24314:1 24318:2 24324:1 24348:2 24363:3 24394:1 24399:2 24405:1 24413:1 24417:1 24422:1 24424:1 24442:1 24447:1 24448:1 24451:1 24467:1 24473:1 24477:1 24489:1 24499:2 24507:1 24517:1 24547:1 24566:1 24582:1 24599:1 24600:2 24602:1 24606:1 24608:2 24609:1 24629:1 24658:1 24670:1 24675:1 24732:1 24754:1 24773:1 24793:2 24850:3 24867:4 24894:1 24896:1 24912:1 24946:1 24947:1 24964:3 24974:1 24975:3 24978:2 24986:1 24988:1 24989:3 24990:4 25005:1 25022:1 25030:1 25047:1 25051:1 25060:1 25061:1 25073:2 25096:1 25100:2 25106:1 25114:2 25121:1 25124:1 25136:1 25172:1 25177:1 25207:1 25251:2 25256:1 25258:2 25261:1 25265:1 25267:2 25275:4 25290:1 25305:1 25321:2 25341:1 25349:1 25360:1 25364:2 25422:1 25438:1 25440:1 25442:2 25445:3 25450:1 25457:2 25467:1 25469:1 25486:1 25490:1 25493:1 25496:1 25507:3 25511:1 25518:2 25536:1 25537:1 25544:1 25559:1 25564:1 25577:1 25609:1 25625:1 25638:2 25681:2 25684:1 25695:4 25713:1 25716:1 25719:1 25720:2 25776:1 25782:1 25805:1 25810:1 25846:1 25847:1 25851:1 25859:1 25873:1 25886:1 25907:1 25968:1 25974:4 25975:1 25983:2 25985:1 25990:2 25998:2 26009:1 26021:1 26041:1 26048:1 26062:1 26066:1 26093:1 26115:1 26120:1 26125:2 26129:1 26149:1 26155:3 26172:1 26190:1 26213:1 26227:2 26230:1 26231:1 26250:2 26260:1 26261:1 26262:1 26267:1 26283:1 26287:1 26309:2 26316:1 26317:1 26328:1 26333:1 26341:1 26358:1 26359:1 26399:1 26447:1 26481:1 26483:1 26485:1 26541:2 26545:2 26552:1 26557:2 26583:1 26584:1 26602:1 26603:1 26609:1 26626:1 26636:1 26669:1 26702:1 26729:1 26739:1 26741:2 26764:1 26772:1 26777:1 26804:1 26805:1 26837:1 26838:2 26868:1 26870:1 26885:1 26902:1 26908:1 26923:1 26968:1 26978:1 27005:1 27020:1 27028:1 27040:2 27055:1 27063:1 27072:1 27074:2 27083:1 27084:2 27094:3 27095:1 27104:1 27108:2 27115:1 27128:1 27134:3 27140:1 27167:2 27178:1 27198:1 27206:1 27222:1 27227:1 27247:2 27248:2 27249:2 27285:1 27287:2 27295:1 27297:1 27315:1 27319:1 27332:1 27351:1 27376:1 27395:2 27405:1 27408:1 27427:1 27437:1 27439:2 27445:2 27485:1 27491:1 27512:3 27541:1 27543:1 27546:1 27568:1 27591:1 27601:1 27616:1 27654:1 27667:1 27674:2 27684:1 27685:1 27770:3 27773:1 27794:1 27795:1 27812:1 27817:1 27825:2 27830:1 27846:1 27851:2 27875:1 27881:1 27882:1 27890:1 27896:1 27907:1 27920:1 27929:1 27991:1 27994:1 28041:1 28042:1 28051:2 28053:2 28065:1 28081:2 28094:1 28098:1 28102:2 28103:1 28104:3 28109:1 28139:2 28149:2 28151:1 28176:1 28193:2 28196:2 28205:2 28208:1 28211:1 28212:1 28213:2 28220:2 28281:1 28299:3 28300:2 28349:1 28352:1 28388:1 28389:1 28390:1 28411:1 28412:1 28418:1 28444:4 28448:1 28449:1 28477:1 28482:1 28499:1 28526:1 28548:1 28573:1 28574:2 28580:2 28582:1 28586:1 28599:1 28613:1 28616:1 28622:2 28639:1 28644:1 28674:1 28691:1 28725:1 28739:2 28741:2 28742:1 28748:3 28759:1 28775:1 28804:2 28811:1 28827:1 28846:1 28854:2 28855:1 28884:1 28896:1 28921:1 28960:1 28997:1 29006:2 29009:1 29015:1 29018:1 29038:1 29053:2 29056:2 29061:1 29062:1 29071:1 29076:2 29087:1 29096:1 29122:1 29123:1 29133:1 29145:1 29148:1 29163:2 29178:1 29179:1 29183:1 29188:3 29205:1 29266:2 29277:1 29290:2 29296:1 29298:2 29345:2 29355:1 29367:1 29369:1 29388:1 29392:1 29402:2 29409:1 29417:2 29422:1 29448:1 29467:1 29468:1 29483:1 29491:1 29504:1 29513:1 29537:1 29577:1 29620:2 29642:2 29647:2 29660:1 29673:1 29674:1 29681:1 29701:1 29708:1 29718:2 29731:1 29738:1 29746:1 29771:1 29773:2 29774:1 29780:2 29806:9 29811:1 29819:1 29821:1 29831:1 29835:1 29837:1 29852:4 29853:2 29861:1 29865:1 29867:1 29882:3 29904:1 29922:1 29930:1 29939:1 29974:1 30020:3 30033:1 30045:2 30053:1 30056:1 30075:1 30078:1 30083:1 30090:2 30104:1 30114:1 30116:1 30149:1 30160:1 30174:1 30177:1 30182:1 30189:1 30212:1 30247:3 30251:1 30263:1 30275:1 30281:1 30300:1 30325:1 30330:3 30365:2 30367:1 30381:1 30390:2 30392:2 30414:1 30428:1 30429:1 30458:1 30459:1 30477:1 30494:1 30517:1 30526:1 30556:2 30558:2 30567:1 30574:1 30578:1 30597:1 30599:1 30602:2 30625:1 30676:1 30714:1 30750:2 30783:1 30867:2 30879:1 30922:4 30931:1 30935:1 30942:1 30968:1 30973:4 30978:1 30981:1 31002:1 31005:2 31013:1 31030:2 31036:1 31046:2 31054:1 31071:1 31083:2 31087:1 31090:3 31098:1 31100:1 31133:2 31135:1 31143:2 31179:1 31182:3 31183:1 31190:1 31195:1 31197:1 31208:1 31228:1
17 16:1 19:2 33:1 35:1 49:1 61:2 62:1 86:1 110:1 122:1 164:1 173:3 183:1 192:1 224:1 227:1 240:1 256:2 271:1 278:2 304:2 310:1 343:1 351:1 357:1 358:1 398:1 401:2 404:1 419:1 420:1 422:1 426:1 493:1 503:1 504:2 509:1 511:1 577:1 591:1 633:1 640:1 641:1 647:1 690:1 695:1 703:1 708:2 719:1 726:2 781:1 817:1 824:1 839:1 846:2 857:1 864:4 928:2 969:1 973:2 977:4 979:2 980:1 982:2 986:4 990:1 991:2 992:1 997:1 1002:1 1003:2 1007:1 1008:2 1011:2 1028:1 1034:2 1036:1 1039:1 1074:3 1093:1 1094:1 1095:1 1098:2 1114:1 1119:1 1129:1 1133:1 1145:1 1150:1 1161:1 1165:1 1166:1 1168:1 1175:1 1186:1 1192:1 1204:1 1210:1 1220:1 1221:1 1222:1 1248:1 1258:1 1268:1 1269:1 1339:2 1343:1 1348:1 1360:1 1375:1 1377:1 1382:1 1398:1 1399:1 1410:1 1413:1 1414:1 1433:1 1460:1 1462:1 1464:1 1472:1 1487:1 1497:1 1535:1 1560:1 1565:2 1601:1 1613:1 1625:1 1638:2 1642:1 1644:1 1650:1 1669:1 1676:1 1688:3 1702:1 1708:1 1714:1 1717:1 1719:1 1722:1 1736:1 1749:1 1771:1 1786:1 1790:2 1797:2 1816:1 1825:1 1827:1 1833:2 1851:1 1871:1 1895:1 1896:2 1905:1 1910:1 1921:3 1922:1 1932:1 1933:1 1942:1 1950:1 1956:1 1961:2 1963:2 1964:1 1972:1 1991:1 2018:1 2027:2 2033:1 2036:1 2041:1 2066:1 2078:1 2099:1 2108:1 2126:1 2127:1 2136:1 2139:1 2164:1 2187:2 2221:1 2224:1 2226:2 2253:1 2261:1 2270:1 2282:1 2307:1 2395:2 2433:1 2442:1 2467:1 2486:1 2504:2 2508:1 2519:1 2525:4 2530:2 2531:1 2543:5 2550:1 2551:2 2552:1 2556:2 2558:1 2561:1 2568:1 2569:5 2584:1 2600:2 2616:2 2633:1 2638:1 2648:1 2650:1 2697:1 2698:1 2701:2 2721:1 2737:4 2741:1 2757:2 2778:2 2783:1 2784:1 2789:1 2799:1 2804:2 2809:1 2816:1 2821:1 2856:1 2870:1 2872:2 2892:1 2923:1 2939:1 2964:1 2982:1 2991:1 3004:1 3027:1 3031:1 3032:3 3101:1 3109:1 3110:2 3112:2 3117:1 3131:1 3138:1 3142:1 3144:1 3147:1 3168:1 3169:1 3189:4 3197:4 3210:3 3232:1 3247:1 3249:1 3257:2 3266:1 3282:1 3295:1 3310:1 3313:2 3315:1 3320:1 3322:2 3327:1 3341:1 3364:1 3365:1 3376:1 3392:1 3412:1 3419:3 3420:1 3455:1 3457:1 3463:1 3464:2 3487:1 3495:1 3497:1 3500:1 3524:1 3552:1 3563:1 3630:1 3671:2 3708:1 3745:1 3747:2 3756:1 3772:1 3778:1 3779:3 3795:1 3797:1 3798:1 3817:1 3848:1 3849:1 3869:2 3877:1 3879:1 3881:5 3896:1 3913:1 3920:1 3926:2 3936:1 3959:1 3971:1 3992:1 3997:1 4003:1 4007:1 4032:2 4052:1 4061:1 4063:1 4091:1 4093:1 4097:1 4127:2 4128:1 4131:1 4132:1 4204:2 4207:3 4227:1 4247:1 4255:1 4262:2 4264:1 4268:1 4282:1 4284:1 4311:1 4312:1 4336:1 4337:1 4385:1 4386:1 4389:1 4443:1 4446:1 4448:1 4463:1 4468:1 4480:1 4487:1 4490:2 4501:1 4507:1 4518:2 4520:1 4535:2 4579:1 4604:1 4606:1 4608:1 4636:1 4645:1 4648:1 4650:1 4654:1 4662:1 4673:1 4712:2 4716:2 4749:1 4754:1 4761:4 4765:1 4767:1 4780:1 4785:1 4787:3 4814:1 4816:1 4819:1 4835:1 4842:1 4843:1 4854:2 4855:1 4881:1 4891:1 4892:1 4903:1 4931:1 4955:1 4970:2 4974:1 4981:1 4984:1 4985:4 4997:2 5008:1 5012:1 5024:1 5050:2 5070:3 5076:1 5088:2 5107:1 5128:1 5147:1 5154:5 5161:1 5162:1 5172:1 5179:1 5180:1 5188:3 5190:1 5192:4 5206:1 5209:1 5219:1 5221:1 5248:1 5281:1 5296:1 5298:2 5302:1 5312:1 5314:1 5315:1 5316:1 5328:1 5329:2 5334:1 5338:1 5345:2 5347:2 5355:1 5357:1 5391:1 5394:1 5417:1 5418:1 5436:1 5505:1 5509:1 5540:2 5544:1 5547:1 5569:1 5580:2 5586:1 5592:1 5600:2 5603:1 5631:1 5646:2 5651:1 5673:1 5684:1 5692:2 5717:1 5735:1 5742:1 5758:1 5761:1 5785:1 5792:1 5806:1 5877:1 5888:2 5889:1 5896:1 5917:1 5942:1 5950:1 5958:1 5979:1 6000:1 6003:1 6006:1 6013:1 6014:1 6020:1 6040:2 6066:3 6082:1 6106:1 6121:1 6142:1 6147:1 6153:1 6164:2 6166:1 6170:1 6182:1 6200:2 6202:1 6207:1 6222:1 6233:2 6245:2 6246:1 6268:1 6280:1 6293:1 6298:1 6301:2 6306:1 6310:2 6312:8 6320:2 6346:1 6361:1 6388:2 6409:1 6411:2 6433:2 6439:1 6440:3 6450:1 6456:1 6467:3 6484:2 6503:1 6507:1 6513:1 6531:2 6533:3 6536:1 6557:2 6562:1 6569:1 6571:1 6575:1 6589:4 6617:1 6640:2 6653:2 6654:1 6659:2 6661:2 6668:1 6672:1 6705:2 6727:1 6748:1 6758:1 6768:1 6786:1 6789:1 6829:6 6844:1 6858:1 6865:2 6868:2 6869:1 6875:1 6883:1 6885:2 6886:2 6887:1 6910:1 6917:1 6922:1 6926:1 6930:1 6932:1 6937:1 6945:2 6950:1 6959:1 6966:1 7023:1 7033:1 7078:1 7101:1 7111:1 7115:1 7121:2 7128:1 7152:1 7169:1 7171:4 7181:1 7202:1 7216:1 7219:1 7227:1 7270:1 7277:1 7312:3 7332:1 7341:1 7353:1 7354:1 7374:1 7381:2 7383:1 7395:1 7413:1 7415:1 7422:1 7423:1 7427:2 7460:1 7529:2 7567:1 7577:1 7598:4 7616:2 7626:1 7647:1 7650:1 7659:1 7663:1 7670:1 7676:1 7715:2 7718:2 7745:1 7753:1 7761:2 7769:1 7775:1 7785:1 7787:1 7798:1 7799:1 7819:1 7836:1 7846:1 7882:2 7902:1 7903:1 7908:1 7909:1 7929:1 7941:1 7955:2 7959:1 7965:1 7974:1 7976:1 8000:2 8019:2 8027:1 8034:1 8050:1 8053:1 8059:2 8082:1 8092:2 8120:2 8126:3 8127:1 8128:1 8150:2 8151:5 8153:1 8157:1 8161:4 8162:1 8163:1 8165:1 8170:2 8171:1 8172:1 8173:3 8174:1 8187:1 8214:3 8232:1 8247:1 8268:1 8286:1 8300:1 8301:1 8305:1 8316:1 8337:2 8353:2 8360:1 8371:1 8372:2 8404:1 8405:1 8420:15 8440:4 8442:2 8450:1 8467:1 8474:1 8485:1 8493:1 8505:1 8509:1 8542:2 8551:1 8557:1 8572:1 8622:1 8642:1 8644:1 8650:2 8678:1 8693:1 8710:1 8716:1 8740:1 8792:1 8801:1 8823:4 8834:1 8837:2 8850:1 8857:5 8879:1 8886:1 8903:1 8910:1 8920:1 8930:1 8940:1 8953:1 8956:1 8961:1 8963:6 8987:1 9013:2 9035:1 9039:1 9062:1 9077:1 9079:2 9082:1 9093:1 9094:1 9119:2 9125:2 9129:1 9131:1 9132:1 9141:1 9149:1 9165:1 9175:2 9186:1 9192:1 9194:1 9224:1 9227:1 9268:2 9273:1 9305:4 9316:1 9367:1 9370:1 9372:2 9376:1 9378:4 9383:1 9385:1 9390:1 9421:1 9447:1 9461:1 9490:1 9500:1 9506:2 9510:1 9522:1 9568:4 9583:1 9588:1 9622:1 9680:1 9685:1 9688:1 9693:1 9715:1 9726:1 9795:4 9796:2 9815:2 9826:1 9835:1 9848:1 9850:1 9857:1 9872:1 9887:1 9900:1 9922:1 9937:1 9981:1 9996:1 10013:1 10026:1 10051:3 10091:1 10092:2 10119:3 10131:1 10141:1 10168:1 10169:1 10191:1 10216:2 10229:1 10243:1 10253:1 10254:1 10255:1 10273:1 10277:1 10306:1 10317:1 10326:2 10353:1 10368:1 10372:1 10382:1 10390:2 10393:1 10402:1 10421:1 10422:1 10451:3 10457:1 10483:2 10486:1 10500:4 10501:1 10503:2 10511:1 10514:1 10516:1 10532:1 10540:1 10551:1 10554:1 10557:1 10561:1 10566:1 10568:2 10576:2 10578:1 10597:1 10623:1 10626:1 10631:1 10650:5 10671:1 10676:2 10708:1 10760:1 10769:1 10790:1 10799:1 10821:1 10853:1 10881:1 10884:1 10891:1 10933:1 10945:1 10954:2 10960:4 10965:1 10966:1 10972:1 10973:1 10982:1 11010:1 11012:1 11013:1 11014:1 11018:1 11020:1 11021:1 11025:2 11035:4 11042:1 11055:1 11059:4 11078:1 11082:1 11103:1 11113:1 11137:1 11144:2 11150:1 11197:1 11206:1 11217:1 11223:3 11235:1 11237:2 11246:1 11251:1 11255:1 11263:1 11281:1 11304:2 11324:1 11325:1 11338:1 11358:1 11360:1 11370:2 11373:1 11377:1 11408:1 11426:4 11429:1 11432:1 11437:3 11445:1 11448:1 11456:1 11464:1 11480:1 11481:1 11494:1 11501:3 11509:1 11514:1 11522:2 11565:1 11572:1 11573:1 11585:2 11605:1 11613:2 11649:1 11662:1 11664:2 11685:1 11697:1 11700:1 11703:1 11719:1 11730:4 11737:1 11742:2 11745:1 11747:1 11761:1 11764:2 11793:1 11813:2 11840:1 11849:1 11861:1 11863:1 11869:2 11891:1 11905:1 11926:1 11946:1 11953:1 11963:1 11978:1 11981:1 11996:3 11997:1 12004:1 12010:1 12015:1 12016:2 12026:1 12038:1 12039:1 12052:1 12055:4 12079:1 12082:1 12086:4 12095:1 12103:1 12104:3 12141:1 12159:1 12169:1 12187:1 12236:1 12246:3 12251:1 12254:1 12261:1 12263:1 12268:1 12272:1 12285:1 12290:2 12293:1 12322:1 12325:2 12329:1 12332:1 12368:1 12377:1 12380:1 12407:2 12412:1 12419:1 12424:1 12435:1 12446:1 12450:3 12451:1 12457:1 12468:1 12473:1 12488:2 12500:1 12530:1 12534:1 12568:1 12623:1 12633:1 12673:1 12679:2 12698:1 12708:1 12711:2 12721:1 12743:1 12769:2 12773:1 12776:1 12780:1 12794:1 12798:2 12802:1 12816:1 12827:1 12831:3 12832:1 12839:1 12843:1 12846:2 12890:1 12894:1 12898:1 12910:1 12921:1 12944:1 12968:1 12977:1 12990:1 12995:1 12996:1 13002:1 13025:1 13028:1 13029:1 13034:3 13037:1 13038:3 13039:1 13047:2 13050:1 13085:1 13098:1 13100:1 13110:1 13129:1 13130:1 13133:1 13138:1 13141:2 13144:1 13157:2 13163:1 13169:1 13171:1 13173:2 13210:1 13214:1 13222:1 13226:1 13228:1 13244:2 13247:2 13253:2 13260:2 13261:1 13266:1 13279:1 13280:1 13295:1 13355:1 13359:1 13372:1 13374:1 13385:1 13390:2 13394:1 13399:1 13400:1 13403:1 13410:1 13424:1 13436:1 13439:1 13450:1 13465:1 13468:1 13470:1 13472:1 13481:1 13497:1 13540:1 13552:1 13559:1 13579:1 13584:2 13585:1 13591:1 13600:1 13608:1 13609:1 13661:1 13680:2 13695:2 13697:1 13704:1 13710:1 13713:1 13725:1 13731:2 13743:1 13746:1 13766:2 13799:1 13828:4 13856:1 13858:1 13864:1 13934:3 13937:1 13963:2 13965:1 13971:3 13989:1 13991:2 14051:1 14109:1 14148:1 14200:1 14276:1 14294:1 14298:2 14333:4 14339:2 14341:1 14342:1 14346:1 14357:1 14377:3 14386:1 14420:1 14421:1 14424:1 14452:1 14461:1 14473:1 14504:1 14529:1 14556:3 14566:1 14690:2 14704:1 14708:1 14712:1 14728:1 14732:2 14744:1 14753:2 14757:1 14789:1 14798:1 14803:1 14804:6 14843:1 14855:1 14856:1 14859:1 14860:1 14864:1 14875:1 14877:1 14878:1 14882:2 14888:1 14897:1 14914:1 14915:1 14923:1 14931:1 14941:1 14968:1 14987:2 14994:1 15020:4 15045:2 15111:1 15150:1 15169:1 15176:1 15216:1 15220:1 15241:1 15245:1 15248:2 15251:1 15271:1 15297:1 15321:1 15325:1 15329:1 15348:1 15349:1 15355:1 15365:1 15371:1 15385:1 15387:3 15397:1 15398:1 15400:1 15412:1 15422:1 15439:1 15443:1 15444:1 15446:1 15452:1 15454:1 15458:1 15459:1 15468:1 15495:1 15496:1 15534:1 15549:1 15554:1 15563:1 15570:1 15573:1 15577:1 15580:3 15584:1 15602:1 15605:1 15608:1 15615:3 15617:1 15650:1 15672:1 15678:1 15685:1 15695:1 15704:1 15718:1 15720:1 15742:2 15750:2 15761:1 15764:1 15768:1 15789:1 15797:1 15804:1 15815:1 15822:1 15842:1 15859:1 15873:1 15953:1 15958:1 15959:3 15968:1 16004:1 16015:1 16024:1 16028:3 16029:1 16056:8 16064:1 16080:1 16082:1 16083:1 16085:1 16087:3 16089:23 16099:1 16104:1 16105:2 16116:1 16138:1 16146:3 16155:1 16159:2 16196:1 16212:1 16259:1 16278:2 16288:1 16298:1 16300:2 16305:1 16309:2 16312:1 16321:1 16357:1 16361:3 16409:1 16410:2 16424:1 16432:1 16443:1 16454:2 16478:2 16487:2 16508:1 16515:1 16519:1 16525:1 16558:1 16572:1 16573:2 16585:1 16596:1 16598:5 16617:1 16631:1 16633:1 16635:1 16638:1 16650:1 16651:1 16669:1 16702:2 16744:1 16752:1 16788:1 16798:1 16835:1 16836:1 16839:2 16840:1 16914:1 16940:2 16948:2 16965:1 16971:1 16972:1 16995:1 16996:1 16997:2 17018:1 17022:1 17029:1 17035:1 17053:1 17072:1 17108:2 17111:1 17112:1 17113:1 17134:1 17135:1 17153:1 17163:1 17179:1 17188:1 17205:1 17213:1 17215:1 17238:1 17240:1 17244:1 17257:7 17262:1 17320:3 17330:2 17331:1 17338:2 17366:1 17384:1 17390:3 17454:1 17458:1 17459:1 17503:3 17512:1 17516:2 17554:1 17581:1 17585:1 17602:1 17610:1 17613:2 17620:1 17622:1 17641:1 17663:1 17676:1 17685:1 17730:1 17732:1 17768:2 17787:1 17804:1 17806:1 17811:1 17814:1 17818:1 17832:1 17843:1 17844:1 17874:1 17878:1 17882:1 17899:1 17907:1 17911:2 17913:1 17924:1 17936:1 17940:1 17965:1 17969:1 17977:2 17979:1 17985:1 17990:2 17999:1 18005:2 18007:1 18027:1 18054:1 18072:1 18074:1 18077:1 18080:3 18082:1 18109:1 18148:1 18164:2 18177:1 18205:2 18227:1 18264:1 18276:1 18283:1 18291:1 18328:1 18345:1 18366:1 18369:1 18380:2 18396:1 18402:1 18406:1 18407:1 18471:1 18519:1 18546:1 18557:1 18561:1 18570:1 18575:1 18577:1 18578:2 18592:2 18604:1 18605:1 18608:1 18610:1 18635:1 18636:1 18641:1 18642:1 18643:1 18662:1 18700:1 18719:1 18738:1 18751:2 18759:1 18773:1 18774:1 18786:1 18796:3 18797:1 18834:1 18882:1 18889:2 18892:1 18900:1 18911:1 18926:1 18930:1 18958:1 18962:1 18974:1 18982:1 18999:1 19006:1 19011:1 19017:1 19022:1 19023:2 19034:1 19044:1 19061:1 19081:1 19083:1 19085:1 19087:1 19088:1 19136:2 19147:1 19150:1 19180:1 19184:1 19187:1 19198:1 19225:1 19230:1 19235:1 19244:1 19255:1 19263:1 19276:1 19278:1 19291:1 19298:6 19321:2 19339:1 19350:1 19362:1 19371:1 19375:1 19391:1 19405:1 19446:1 19461:1 19505:1 19522:2 19559:1 19561:1 19584:2 19588:1 19627:1 19630:1 19633:1 19645:1 19650:1 19660:1 19681:1 19699:1 19700:1 19706:1 19707:3 19721:1 19734:1 19743:1 19777:1 19800:1 19810:1 19819:1 19821:1 19835:1 19842:1 19849:1 19862:1 19873:1 19885:1 19886:1 19911:1 19924:1 19933:4 19940:1 19951:1 19955:1 19961:1 19968:1 19990:1 19991:1 19996:1 20050:1 20056:1 20058:1 20102:1 20105:2 20122:1 20126:2137 20184:1 20187:1 20195:1 20237:1 20264:1 20268:1 20272:1 20276:1 20366:1 20424:1 20427:1 20466:1 20480:2 20502:1 20513:1 20520:1 20524:1 20556:3 20562:2 20577:1 20591:1 20600:1 20630:1 20648:1 20653:1 20668:3 20676:1 20707:1 20722:1 20756:1 20768:1 20777:3 20782:1 20816:2 20820:1 20826:3 20830:1 20870:1 20894:2 20921:1 20923:4 20951:1 20998:1 21007:1 21016:1 21031:1 21035:2 21049:1 21054:1 21059:1 21062:1 21079:1 21104:1 21116:1 21122:1 21128:3 21140:2 21141:2 21145:1 21146:1 21147:1 21149:1 21165:1 21172:1 21177:2 21192:1 21194:1 21227:1 21253:1 21286:2 21288:1 21315:1 21329:1 21358:1 21359:1 21375:1 21437:1 21457:1 21484:1 21486:1 21489:2 21525:1 21536:1 21537:1 21542:1 21544:1 21556:1 21587:2 21592:1 21594:3 21597:1 21598:1 21601:1 21608:1 21628:2 21630:2 21631:2 21636:1 21649:1 21659:1 21670:2 21677:2 21687:1 21690:1 21694:1 21700:1 21713:1 21730:1 21758:1 21771:1 21781:2 21803:2 21815:1 21818:1 21872:3 21910:1 21912:1 21915:1 21925:1 21933:1 21934:1 21938:1 21949:1 21953:1 21965:2 21967:2 21985:1 22000:2 22003:1 22030:1 22042:2 22057:2 22064:2 22099:1 22119:1 22150:1 22152:1 22167:1 22170:1 22181:1 22186:1 22193:1 22198:1 22201:1 22202:1 22222:1 22244:1 22262:1 22270:3 22281:1 22291:1 22294:1 22303:2 22312:2 22332:1 22366:1 22374:1 22375:1 22376:2 22378:1 22390:1 22391:1 22392:2 22417:1 22453:2 22466:1 22482:1 22516:2 22547:1 22551:1 22557:1 22571:2 22599:1 22636:1 22639:1 22671:1 22680:1 22711:1 22738:1 22761:1 22782:1 22786:2 22795:1 22804:1 22813:1 22816:2 22837:2 22844:1 22845:7 22847:1 22854:1 22862:1 22879:1 22888:1 22903:1 22930:1 22938:1 22953:1 22973:1 22975:1 22984:1 22985:1 23011:1 23017:1 23028:1 23032:1 23039:1 23043:2 23044:1 23047:1 23060:1 23077:1 23094:1 23096:1 23139:1 23180:3 23187:1 23193:2 23217:1 23225:1 23226:1 23239:1 23280:1 23285:1 23295:1 23301:1 23306:1 23328:1 23339:1 23371:2 23373:1 23379:4 23384:1 23387:1 23397:1 23400:1 23409:1 23424:2 23425:1 23445:1 23484:1 23512:1 23520:1 23534:2 23544:1 23559:1 23564:1 23585:2 23586:1 23600:1 23605:1 23609:2 23625:1 23629:1 23631:1 23644:2 23649:2 23652:1 23669:2 23671:2 23677:1 23702:2 23712:3 23724:1 23741:1 23748:1 23758:1 23766:2 23767:1 23796:1 23804:1 23807:1 23817:1 23826:1 23832:1 23835:1 23840:1 23841:1 23843:1 23847:1 23848:1 23887:2 23897:1 23900:1 23948:3 23952:1 23956:1 23961:1 23962:4 24008:1 24015:1 24030:1 24031:1 24032:1 24034:4 24043:1 24051:5 24075:1 24102:1 24119:1 24142:1 24156:1 24163:1 24200:5 24207:1 24215:1 24216:1 24283:1 24285:1 24289:1 24292:1 24298:1 24314:1 24318:2 24324:1 24348:2 24363:3 24394:1 24399:2 24405:1 24413:1 24417:1 24422:1 24424:1 24442:1 24447:1 24448:1 24451:1 24467:1 24473:1 24477:2 24489:1 24499:2 24507:1 24517:1 24547:1 24551:1 24566:1 24582:1 24599:1 24600:2 24602:1 24606:1 24608:2 24609:1 24629:1 24658:1 24670:1 24675:1 24732:1 24754:1 24769:1 24773:1 24793:2 24850:4 24867:4 24894:1 24896:1 24912:1 24946:1 24947:1 24964:4 24974:1 24975:3 24978:2 24986:1 24988:1 24989:3 24990:4 25005:1 25022:1 25030:1 25047:1 25051:1 25060:1 25061:1 25073:2 25096:1 25100:2 25106:1 25114:2 25121:1 25124:1 25136:1 25172:1 25177:1 25207:1 25251:2 25256:1 25258:2 25261:1 25265:1 25267:2 25275:4 25290:1 25305:1 25321:2 25341:1 25349:1 25360:1 25364:2 25422:1 25438:1 25440:1 25442:2 25445:3 25450:1 25457:3 25467:1 25469:1 25486:1 25490:1 25493:1 25496:1 25507:3 25511:1 25518:2 25536:1 25537:1 25544:1 25559:1 25564:1 25577:1 25609:1 25625:1 25638:2 25681:2 25684:1 25695:4 25713:1 25716:1 25719:1 25720:3 25776:1 25782:1 25805:1 25810:1 25846:1 25847:1 25851:1 25859:1 25873:1 25886:1 25907:1 25968:1 25974:4 25975:1 25983:2 25985:1 25990:2 25998:2 26009:1 26021:1 26041:1 26048:1 26062:1 26066:1 26093:1 26115:1 26120:1 26125:2 26129:1 26149:1 26155:3 26172:1 26190:1 26213:1 26227:2 26230:1 26231:1 26250:2 26260:1 26261:1 26262:1 26267:1 26278:1 26283:1 26287:1 26309:2 26316:1 26317:1 26328:1 26333:1 26341:1 26358:1 26359:1 26384:1 26399:1 26447:1 26481:1 26483:1 26485:1 26508:1 26541:2 26545:2 26552:1 26557:2 26583:1 26584:1 26602:1 26603:1 26609:1 26626:1 26636:1 26669:1 26702:1 26729:1 26739:1 26741:2 26764:1 26772:1 26777:1 26804:1 26805:1 26837:1 26838:2 26868:1 26870:1 26885:1 26902:1 26908:1 26923:1 26968:1 26978:1 27005:1 27020:1 27028:1 27040:2 27055:1 27063:1 27072:1 27074:2 27083:1 27084:2 27094:3 27095:1 27104:1 27108:2 27115:1 27128:1 27134:3 27140:1 27167:2 27178:1 27198:1 27206:1 27222:1 27227:1 27247:2 27248:2 27249:2 27285:1 27287:2 27295:1 27297:1 27315:1 27319:1 27332:1 27351:1 27376:1 27395:2 27405:1 27408:1 27427:1 27437:1 27439:2 27445:2 27459:1 27485:1 27491:1 27512:3 27541:1 27543:1 27546:1 27568:1 27591:1 27601:1 27616:1 27654:1 27667:1 27674:2 27684:1 27685:1 27770:3 27773:1 27794:1 27795:1 27812:1 27817:1 27825:2 27830:1 27846:1 27851:2 27875:1 27881:1 27882:1 27890:1 27896:1 27907:1 27920:1 27929:1 27991:1 27994:1 28041:1 28042:1 28051:2 28053:2 28065:1 28081:2 28092:1 28094:1 28098:1 28102:2 28103:1 28104:3 28109:1 28139:2 28149:2 28151:1 28176:1 28193:2 28196:2 28205:2 28208:1 28211:1 28212:1 28213:2 28220:2 28281:1 28299:3 28300:2 28349:1 28352:1 28388:1 28389:1 28390:1 28411:1 28412:1 28418:1 28444:4 28448:1 28449:1 28477:1 28482:1 28499:1 28526:1 28548:1 28573:1 28574:2 28580:2 28582:1 28586:1 28599:1 28613:1 28616:1 28622:2 28639:1 28644:1 28671:1 28674:1 28691:1 28725:1 28739:2 28741:2 28742:1 28748:3 28759:1 28775:1 28804:2 28811:1 28827:1 28846:1 28854:2 28855:1 28884:1 28896:1 28921:1 28939:1 28960:1 28997:1 29006:2 29009:1 29015:1 29018:1 29038:1 29053:2 29056:2 29061:2 29062:1 29071:1 29076:2 29087:1 29096:1 29122:1 29123:1 29133:1 29145:1 29148:1 29163:2 29178:1 29179:1 29183:1 29188:3 29205:1 29266:2 29268:1 29277:1 29290:2 29296:1 29298:2 29306:1 29345:2 29355:1 29367:1 29369:1 29388:1 29392:1 29402:2 29409:1 29417:2 29422:1 29448:1 29467:1 29468:1 29483:1 29491:1 29504:1 29513:1 29537:1 29577:1 29611:1 29620:2 29642:2 29647:2 29660:1 29673:1 29674:1 29681:1 29701:2 29708:1 29718:2 29731:1 29738:1 29746:1 29771:1 29773:2 29774:1 29780:2 29806:11 29811:1 29819:1 29821:1 29831:1 29835:1 29837:1 29852:6 29853:2 29861:1 29865:1 29867:1 29882:3 29904:1 29922:1 29930:1 29939:1 29974:1 30020:3 30033:1 30045:2 30053:1 30056:1 30075:1 30078:1 30083:1 30090:2 30104:1 30114:1 30116:1 30149:1 30160:1 30174:1 30177:1 30182:1 30189:1 30212:1 30242:1 30247:3 30251:1 30263:1 30275:1 30281:1 30300:1 30325:1 30330:3 30365:2 30367:1 30381:1 30390:2 30392:2 30414:1 30428:1 30429:1 30458:1 30459:1 30477:1 30494:1 30517:1 30526:1 30556:2 30558:2 30567:1 30574:1 30578:1 30597:1 30599:1 30602:2 30625:1 30676:1 30714:1 30750:2 30759:1 30783:1 30867:2 30879:1 30922:4 30931:1 30935:1 30942:1 30968:1 30973:5 30978:1 30981:1 31002:1 31005:2 31013:1 31030:2 31036:1 31046:2 31054:1 31071:1 31083:2 31087:1 31090:3 31098:1 31100:1 31133:2 31135:1 31143:2 31179:1 31182:3 31183:1 31190:1 31195:1 31197:1 31208:1 31228:1
17 16:1 19:2 33:1 35:1 49:1 61:2 62:1 86:1 110:1 122:1 164:1 173:5 183:1 186:2 192:1 224:1 227:1 240:1 256:2 271:1 278:2 304:2 310:2 343:1 351:1 357:1 358:1 398:1 401:2 404:1 419:1 420:1 422:1 426:1 493:1 503:1 504:2 509:1 511:1 513:1 577:1 591:1 633:1 640:1 641:1 647:1 690:1 695:1 703:1 708:2 719:1 726:2 781:1 817:1 824:1 839:1 846:2 857:1 864:4 928:2 969:1 970:1 973:2 977:4 979:2 980:1 982:2 986:4 990:1 991:2 992:1 997:1 1002:1 1003:2 1007:1 1008:2 1011:2 1028:1 1034:3 1036:1 1039:1 1074:3 1093:1 1094:1 1095:1 1098:2 1114:1 1119:1 1129:1 1133:1 1145:1 1150:1 1161:1 1165:1 1166:1 1168:1 1175:1 1186:1 1192:1 1204:1 1210:1 1220:1 1221:1 1222:1 1248:1 1258:1 1268:1 1269:2 1339:2 1343:1 1348:1 1360:1 1375:1 1377:1 1382:1 1398:1 1399:1 1410:1 1413:1 1414:1 1433:1 1460:1 1462:1 1464:1 1472:1 1487:1 1497:1 1535:1 1560:1 1565:2 1601:1 1613:1 1625:1 1638:2 1642:1 1644:1 1650:1 1669:1 1676:1 1688:3 1702:1 1708:1 1714:1 1717:1 1719:1 1722:1 1736:1 1749:1 1771:1 1786:1 1790:2 1797:2 1816:1 1825:1 1827:1 1833:2 1851:1 1871:1 1895:1 1896:2 1905:1 1910:1 1921:3 1922:1 1932:1 1933:1 1942:1 1950:1 1956:1 1961:2 1963:2 1964:1 1972:1 1991:1 2018:1 2027:2 2033:1 2036:1 2041:1 2066:1 2078:1 2099:1 2108:1 2126:1 2127:1 2136:1 2139:1 2155:1 2157:1 2164:1 2187:2 2221:1 2224:1 2226:2 2253:1 2261:1 2270:1 2282:1 2307:1 2395:2 2433:1 2442:1 2467:1 2470:1 2486:1 2504:2 2508:1 2519:1 2525:4 2530:2 2531:1 2543:5 2550:1 2551:2 2552:1 2556:2 2558:1 2561:1 2568:1 2569:5 2584:1 2600:2 2616:2 2633:1 2638:1 2648:1 2650:1 2697:1 2698:1 2701:2 2721:1 2737:4 2741:1 2757:2 2778:2 2783:1 2784:1 2789:1 2799:1 2804:2 2809:1 2816:1 2821:1 2856:1 2870:1 2872:2 2892:1 2923:1 2939:1 2964:1 2982:1 2991:1 3004:1 3027:1 3031:1 3032:3 3101:1 3109:1 3110:2 3112:2 3117:1 3131:1 3138:1 3142:1 3144:1 3147:1 3168:1 3169:1 3189:4 3197:4 3210:4 3232:1 3247:1 3249:1 3257:2 3266:1 3282:1 3295:1 3310:1 3313:2 3315:1 3320:1 3322:2 3327:1 3341:1 3364:1 3365:1 3376:1 3392:1 3412:1 3419:3 3420:1 3455:1 3457:1 3463:1 3464:2 3487:1 3495:1 3497:1 3500:1 3524:1 3552:1 3563:1 3630:1 3671:2 3708:1 3745:1 3747:2 3756:1 3772:1 3778:1 3779:3 3795:1 3797:1 3798:1 3817:1 3848:1 3849:1 3869:3 3877:1 3879:1 3881:5 3896:1 3913:1 3920:1 3926:2 3936:1 3959:1 3971:1 3992:1 3997:1 4003:1 4007:1 4032:2 4052:1 4061:1 4063:1 4091:1 4093:1 4097:1 4127:2 4128:1 4131:1 4132:1 4204:2 4207:3 4227:1 4247:1 4255:1 4262:2 4264:1 4268:1 4282:1 4284:1 4311:1 4312:1 4325:1 4336:1 4337:1 4385:1 4386:1 4389:1 4443:1 4446:1 4448:1 4463:1 4468:1 4473:1 4480:1 4487:1 4490:2 4501:1 4507:1 4518:2 4520:1 4535:2 4579:1 4604:1 4606:1 4608:1 4636:1 4642:1 4645:1 4648:1 4650:1 4654:1 4662:1 4673:1 4712:2 4716:2 4749:1 4754:1 4761:4 4765:1 4767:1 4780:2 4785:1 4787:3 4814:1 4816:1 4819:1 4835:1 4842:1 4843:1 4854:2 4855:1 4881:1 4891:1 4892:1 4903:1 4931:1 4955:1 4970:2 4974:1 4981:1 4984:1 4985:4 4997:2 5008:1 5012:1 5015:1 5024:1 5050:2 5070:3 5076:1 5088:2 5107:1 5128:1 5147:1 5154:5 5161:1 5162:1 5172:1 5179:1 5180:1 5188:3 5190:1 5192:4 5206:1 5209:1 5219:1 5221:1 5246:1 5248:1 5281:1 5296:1 5298:2 5302:1 5312:1 5314:1 5315:1 5316:1 5328:1 5329:2 5334:2 5338:1 5345:2 5347:2 5355:1 5357:1 5391:1 5394:1 5417:1 5418:1 5436:1 5443:1 5505:1 5509:1 5540:2 5544:1 5547:1 5556:1 5569:1 5580:2 5586:1 5592:1 5600:2 5603:1 5625:1 5631:1 5646:2 5651:1 5673:1 5684:1 5692:2 5717:1 5735:1 5742:1 5758:1 5761:1 5785:1 5792:1 5806:1 5877:1 5888:2 5889:1 5896:1 5902:1 5917:1 5942:1 5950:1 5958:1 5979:1 6000:1 6003:1 6006:1 6013:1 6014:1 6020:1 6040:2 6066:3 6082:1 6106:1 6121:1 6142:1 6147:1 6153:1 6164:2 6166:1 6170:1 6182:1 6200:2 6202:1 6207:1 6222:1 6233:2 6245:2 6246:1 6248:1 6268:1 6280:1 6293:1 6298:1 6301:2 6306:1 6310:2 6312:8 6320:2 6346:1 6361:1 6388:2 6409:1 6411:2 6433:2 6439:1 6440:3 6450:1 6456:1 6467:3 6484:2 6503:1 6507:1 6513:1 6531:2 6533:3 6536:1 6557:2 6562:1 6567:1 6569:1 6571:1 6575:1 6589:4 6617:1 6640:2 6653:2 6654:1 6659:2 6661:2 6665:1 6668:1 6672:1 6705:2 6727:1 6748:1 6758:1 6768:1 6786:1 6789:1 6829:6 6844:1 6858:1 6865:2 6868:2 6869:1 6875:1 6883:1 6885:2 6886:2 6887:1 6910:1 6917:1 6922:1 6926:1 6930:1 6932:1 6937:1 6945:2 6950:1 6959:1 6966:1 7023:1 7033:1 7078:1 7101:1 7111:1 7115:1 7121:2 7128:1 7152:1 7169:2 7171:4 7181:1 7202:1 7216:1 7219:1 7227:1 7270:1 7277:1 7312:3 7332:1 7341:1 7353:1 7354:1 7374:1 7381:2 7383:1 7395:1 7413:1 7415:1 7422:1 7423:1 7427:2 7460:1 7490:1 7529:2 7567:1 7577:1 7598:4 7616:2 7626:1 7647:1 7648:1 7650:1 7659:1 7663:1 7670:1 7676:1 7715:2 7718:2 7745:1 7753:1 7761:2 7769:1 7775:1 7785:1 7787:1 7798:1 7799:1 7819:1 7836:1 7846:1 7882:2 7902:1 7903:1 7908:1 7909:1 7929:1 7941:1 7955:2 7959:1 7965:1 7974:1 7976:1 8000:2 8019:4 8027:1 8034:1 8050:1 8053:1 8059:2 8062:1 8082:1 8092:2 8120:2 8126:3 8127:1 8128:1 8148:1 8150:2 8151:5 8153:1 8157:1 8161:4 8162:1 8163:1 8165:1 8170:2 8171:1 8172:1 8173:3 8174:1 8187:1 8214:3 8232:1 8247:1 8268:1 8286:1 8300:1 8301:1 8305:1 8316:1 8337:2 8353:2 8360:1 8371:1 8372:2 8404:1 8405:1 8420:15 8440:4 8442:2 8450:1 8467:1 8474:1 8485:1 8493:1 8505:2 8509:1 8542:2 8551:1 8557:1 8572:1 8611:1 8622:1 8642:1 8644:1 8650:2 8678:1 8693:3 8702:1 8710:1 8716:1 8740:1 8792:1 8801:1 8823:4 8834:1 8837:2 8850:1 8857:5 8866:1 8879:1 8886:1 8903:1 8910:1 8920:1 8930:1 8940:1 8953:1 8956:1 8961:1 8963:6 8987:1 9013:2 9035:1 9039:1 9062:1 9077:1 9079:2 9082:1 9093:1 9094:1 9119:2 9125:2 9129:1 9131:1 9132:1 9141:1 9149:1 9156:1 9165:1 9175:2 9186:1 9192:1 9194:1 9216:1 9224:1 9227:1 9268:2 9273:1 9296:1 9305:4 9316:1 9367:1 9370:1 9372:2 9376:1 9378:4 9383:1 9385:1 9390:1 9421:1 9447:1 9461:1 9490:1 9500:1 9506:2 9510:1 9522:1 9568:4 9583:1 9588:1 9622:1 9667:1 9680:1 9685:1 9688:1 9693:1 9715:1 9726:1 9795:4 9796:2 9815:2 9826:1 9835:1 9848:1 9850:1 9857:1 9872:1 9887:1 9900:1 9917:1 9922:1 9937:1 9981:1 9996:1 10013:1 10026:1 10051:3 10091:1 10092:2 10119:3 10131:1 10133:1 10135:1 10141:1 10168:1 10169:1 10191:1 10216:2 10229:1 10243:1 10253:1 10254:1 10255:1 10273:1 10277:1 10306:1 10317:1 10326:2 10353:1 10368:1 10372:1 10379:1 10382:1 10390:2 10393:1 10402:1 10421:1 10422:1 10451:3 10457:1 10483:2 10486:1 10500:4 10501:1 10503:2 10511:1 10514:1 10516:1 10532:1 10540:1 10551:1 10554:1 10557:1 10561:1 10566:1 10568:2 10576:2 10578:1 10597:1 10623:1 10626:1 10631:1 10650:5 10671:1 10676:2 10708:1 10747:1 10760:1 10769:1 10781:1 10790:1 10799:1 10821:1 10853:1 10881:1 10884:1 10891:1 10933:1 10945:1 10954:2 10960:4 10963:1 10965:1 10966:1 10967:1 10972:1 10973:1 10982:1 11010:1 11012:1 11013:1 11014:1 11018:1 11020:1 11021:1 11025:2 11035:4 11042:1 11055:1 11059:4 11078:1 11082:1 11103:1 11113:1 11137:1 11144:2 11150:1 11197:1 11206:1 11217:1 11223:3 11235:1 11237:2 11246:1 11251:2 11255:1 11263:1 11281:1 11304:2 11324:1 11325:1 11338:1 11358:1 11360:1 11367:1 11370:2 11372:1 11373:1 11377:1 11408:1 11426:4 11429:1 11432:1 11437:3 11445:1 11448:1 11456:1 11464:1 11480:1 11481:1 11494:1 11501:3 11509:1 11514:1 11522:2 11565:1 11572:1 11573:1 11585:2 11605:1 11613:2 11649:1 11662:1 11664:2 11685:1 11697:1 11700:1 11703:1 11719:1 11730:4 11737:1 11742:2 11745:1 11747:1 11761:1 11764:2 11793:1 11813:2 11840:1 11849:1 11861:1 11863:1 11868:1 11869:2 11891:1 11905:1 11926:1 11946:1 11953:1 11963:1 11978:1 11981:1 11996:3 11997:1 12004:1 12010:1 12015:1 12016:2 12026:1 12038:1 12039:1 12052:1 12055:5 12079:1 12082:1 12086:4 12095:1 12103:1 12104:3 12141:1 12159:1 12169:1 12187:1 12236:1 12246:3 12251:1 12254:1 12261:1 12263:1 12268:1 12272:1 12285:1 12290:2 12293:1 12322:1 12325:2 12329:1 12332:1 12368:1 12377:1 12380:1 12407:2 12412:1 12419:1 12424:1 12435:1 12446:1 12450:3 12451:1 12457:1 12468:1 12473:1 12488:2 12500:1 12530:1 12534:1 12568:1 12623:1 12633:1 12673:1 12679:2 12698:1 12708:1 12711:2 12721:1 12743:1 12769:2 12773:1 12776:1 12780:1 12794:1 12798:2 12802:1 12816:1 12827:1 12831:3 12832:1 12839:1 12843:1 12846:2 12890:1 12894:1 12898:1 12910:1 12921:1 12944:1 12968:1 12977:1 12990:1 12995:1 12996:1 13002:1 13025:1 13028:1 13029:1 13031:1 13034:3 13037:1 13038:3 13039:1 13047:2 13050:1 13085:2 13098:1 13100:1 13110:1 13129:1 13130:1 13133:1 13138:1 13141:2 13144:1 13157:2 13163:1 13169:1 13171:1 13173:2 13210:1 13214:1 13222:1 13226:1 13228:1 13244:2 13247:2 13253:2 13260:2 13261:1 13266:1 13267:1 13279:1 13280:1 13295:1 13355:1 13359:1 13372:1 13374:1 13385:1 13390:2 13394:1 13399:1 13400:1 13403:1 13410:1 13424:1 13436:1 13439:1 13450:1 13465:1 13468:1 13470:1 13472:1 13481:1 13497:1 13540:1 13552:1 13559:1 13579:1 13584:2 13585:1 13591:1 13600:1 13608:1 13609:1 13655:1 13661:1 13680:2 13695:2 13697:1 13704:1 13710:1 13713:1 13725:1 13731:2 13743:1 13746:1 13766:2 13799:1 13828:4 13856:1 13858:1 13864:1 13934:4 13937:1 13963:2 13965:1 13971:3 13989:1 13991:2 14051:1 14109:1 14148:1 14200:1 14276:1 14294:1 14298:2 14333:4 14339:2 14341:1 14342:2 14346:1 14357:1 14377:3 14386:1 14420:1 14421:1 14424:1 14452:1 14461:1 14473:1 14504:1 14529:1 14556:3 14566:1 14690:2 14704:1 14708:1 14712:1 14728:1 14732:2 14744:1 14753:2 14757:1 14789:1 14798:1 14803:1 14804:6 14843:1 14855:1 14856:1 14859:1 14860:1 14864:1 14875:1 14877:1 14878:1 14882:2 14888:1 14897:1 14914:1 14915:1 14923:1 14931:1 14941:1 14968:1 14987:2 14994:1 15020:4 15045:2 15111:1 15150:1 15169:1 15176:1 15216:1 15220:1 15241:1 15245:1 15248:2 15251:1 15271:1 15297:1 15321:1 15325:1 15329:1 15341:1 15348:1 15349:1 15355:1 15365:1 15371:1 15385:1 15387:3 15397:1 15398:1 15400:1 15412:1 15422:1 15439:1 15443:1 15444:1 15446:1 15452:1 15454:1 15458:1 15459:1 15468:1 15495:1 15496:1 15534:1 15549:1 15554:1 15563:1 15570:1 15573:1 15577:1 15580:3 15584:1 15594:1 15598:1 15602:1 15605:1 15608:1 15615:3 15617:1 15650:1 15672:1 15678:1 15685:1 15695:1 15704:1 15718:1 15720:1 15731:1 15742:3 15750:2 15761:1 15764:1 15768:1 15789:1 15797:1 15804:1 15811:1 15815:1 15822:1 15842:1 15859:1 15873:1 15953:1 15958:1 15959:3 15968:1 16004:1 16015:1 16024:1 16028:3 16029:1 16056:8 16063:1 16064:1 16080:1 16082:1 16083:1 16085:1 16087:3 16089:24 16099:1 16104:1 16105:2 16116:1 16138:1 16146:3 16155:1 16159:2 16196:1 16212:1 16254:1 16259:1 16278:2 16288:1 16298:1 16300:2 16305:1 16309:2 16312:1 16321:1 16357:1 16361:3 16409:1 16410:2 16424:1 16432:1 16443:1 16454:2 16478:2 16487:2 16508:1 16515:1 16519:1 16525:1 16558:1 16572:1 16573:2 16585:1 16596:1 16598:5 16617:1 16631:1 16633:1 16635:1 16638:1 16650:1 16651:1 16669:1 16702:2 16744:1 16752:1 16788:1 16798:1 16835:1 16836:1 16839:2 16840:1 16914:1 16940:2 16947:1 16948:2 16965:1 16971:1 16972:1 16995:1 16996:1 16997:2 17018:1 17022:1 17029:1 17035:1 17053:1 17072:1 17103:1 17108:2 17111:1 17112:1 17113:1 17134:1 17135:1 17153:1 17163:1 17179:1 17188:1 17205:1 17213:1 17215:1 17225:1 17238:1 17240:1 17244:1 17257:7 17262:1 17320:3 17330:2 17331:1 17338:2 17350:1 17366:1 17384:1 17390:3 17454:1 17458:1 17459:1 17503:3 17512:1 17516:2 17554:1 17581:1 17585:1 17602:1 17610:1 17613:2 17620:1 17622:1 17641:1 17663:1 17676:1 17685:1 17730:1 17732:1 17768:2 17787:1 17804:1 17806:1 17811:2 17814:1 17818:1 17832:1 17843:1 17844:1 17874:1 17878:1 17882:1 17894:1 17899:1 17907:1 17911:2 17913:1 17924:1 17936:1 17940:1 17965:1 17969:1 17977:2 17979:1 17985:1 17990:2 17999:1 18005:2 18007:1 18027:1 18054:1 18072:1 18074:1 18077:1 18080:3 18082:1 18109:1 18140:1 18148:1 18164:2 18177:1 18205:2 18227:1 18264:1 18276:1 18283:1 18291:1 18328:1 18345:1 18366:1 18369:1 18376:1 18380:2 18396:1 18402:1 18406:1 18407:1 18471:1 18496:2 18519:1 18546:1 18557:1 18561:1 18570:1 18575:1 18577:1 18578:2 18592:2 18604:1 18605:1 18608:1 18610:1 18635:1 18636:1 18641:1 18642:1 18643:1 18662:1 18700:1 18707:1 18719:2 18738:1 18751:2 18759:1 18773:1 18774:1 18786:1 18796:3 18797:1 18834:1 18882:1 18889:2 18892:1 18900:1 18911:1 18926:1 18930:1 18958:1 18962:1 18974:1 18982:1 18999:1 19006:1 19011:1 19017:1 19022:1 19023:2 19034:1 19044:1 19061:1 19081:1 19083:1 19085:1 19087:1 19088:1 19136:2 19147:1 19150:1 19180:1 19184:1 19187:1 19198:1 19225:1 19230:1 19235:1 19244:1 19255:1 19263:1 19276:1 19278:1 19291:1 19298:7 19321:2 19339:1 19350:1 19362:1 19371:1 19375:1 19391:1 19405:1 19446:1 19460:1 19461:2 19505:1 19522:2 19559:1 19561:1 19584:2 19587:1 19588:1 19627:1 19630:1 19633:1 19645:1 19650:1 19660:1 19681:1 19699:1 19700:1 19702:1 19706:1 19707:3 19721:1 19734:1 19743:1 19777:1 19800:1 19810:1 19819:1 19821:1 19835:1 19842:1 19849:1 19862:1 19873:1 19885:1 19886:1 19911:1 19924:1 19933:4 19940:2 19948:1 19951:1 19955:2 19961:1 19968:1 19990:1 19991:1 19996:1 20050:1 20056:1 20058:1 20102:1 20105:2 20122:1 20126:2235 20184:1 20187:1 20195:1 20237:1 20264:1 20268:1 20272:1 20276:1 20357:1 20366:1 20424:1 20427:1 20466:1 20480:2 20502:1 20513:1 20520:1 20524:1 20556:3 20562:2 20577:1 20591:1 20600:1 20630:1 20648:1 20653:1 20660:1 20665:1 20668:3 20676:1 20707:1 20722:1 20756:1 20768:1 20777:3 20782:1 20816:2 20820:1 20826:3 20830:1 20870:1 20894:2 20921:1 20923:4 20951:1 20998:1 21007:1 21016:1 21031:1 21035:3 21049:1 21054:1 21059:1 21062:1 21079:1 21104:1 21116:1 21122:1 21128:3 21140:2 21141:2 21145:1 21146:1 21147:1 21149:1 21165:1 21172:1 21177:2 21192:1 21194:1 21227:1 21253:1 21286:2 21288:1 21291:1 21315:1 21329:1 21358:1 21359:1 21375:1 21437:1 21457:1 21484:1 21486:1 21489:2 21525:1 21536:1 21537:1 21542:1 21544:1 21556:1 21587:2 21592:1 21594:3 21597:1 21598:1 21601:1 21608:1 21628:2 21630:2 21631:2 21636:1 21649:1 21659:1 21670:2 21677:2 21687:1 21690:1 21694:1 21700:1 21713:1 21730:1 21758:1 21771:1 21781:2 21803:2 21815:1 21818:1 21872:3 21910:1 21912:1 21915:1 21925:1 21933:1 21934:1 21938:1 21949:1 21953:1 21965:2 21967:2 21985:1 22000:2 22003:1 22030:1 22042:2 22057:2 22064:2 22099:1 22119:1 22150:1 22152:1 22167:1 22170:1 22181:1 22186:1 22193:1 22198:1 22201:1 22202:1 22222:1 22244:1 22262:1 22270:3 22281:1 22291:1 22294:1 22303:2 22312:2 22319:1 22332:1 22366:1 22374:1 22375:1 22376:2 22378:1 22390:1 22391:1 22392:2 22417:1 22453:2 22466:1 22482:1 22516:2 22547:1 22551:1 22557:1 22571:2 22599:1 22636:1 22639:1 22640:1 22671:1 22680:1 22711:1 22738:1 22761:1 22782:1 22786:2 22795:1 22804:1 22813:2 22816:2 22837:2 22844:1 22845:7 22847:1 22854:1 22862:1 22879:1 22888:1 22900:1 22903:1 22930:1 22938:1 22953:1 22960:1 22973:1 22975:1 22984:1 22985:1 22998:1 23011:1 23017:1 23028:1 23032:1 23039:2 23043:2 23044:1 23047:1 23060:1 23077:1 23094:1 23096:1 23139:1 23180:3 23187:1 23193:2 23217:1 23225:1 23226:1 23239:1 23280:1 23285:1 23295:1 23301:1 23306:1 23328:1 23339:1 23371:2 23373:1 23379:4 23384:1 23387:1 23397:1 23400:1 23409:1 23424:2 23425:1 23445:1 23484:2 23512:1 23520:1 23534:2 23544:1 23559:1 23564:1 23585:2 23586:1 23600:1 23605:1 23609:2 23625:1 23629:1 23631:1 23644:2 23649:2 23652:1 23669:2 23671:2 23677:1 23702:2 23712:3 23724:1 23741:1 23748:1 23758:1 23766:2 23767:1 23796:1 23804:1 23807:1 23817:1 23826:1 23832:1 23835:1 23840:1 23841:1 23843:1 23847:1 23848:1 23887:2 23897:1 23900:1 23948:3 23952:1 23956:1 23961:1 23962:4 24008:1 24015:1 24030:1 24031:1 24032:1 24034:4 24043:1 24051:5 24075:1 24102:1 24119:1 24142:1 24156:1 24163:1 24200:5 24207:1 24215:1 24216:1 24283:1 24285:1 24289:1 24292:1 24298:1 24314:1 24318:2 24324:1 24348:2 24363:3 24394:1 24399:2 24405:1 24413:1 24417:1 24422:1 24424:1 24442:1 24447:1 24448:1 24451:1 24467:1 24473:1 24477:2 24489:1 24499:2 24507:1 24517:1 24547:1 24551:1 24566:1 24582:1 24599:1 24600:2 24602:1 24606:1 24608:2 24609:1 24629:1 24658:1 24670:1 24675:1 24732:1 24754:1 24769:1 24773:1 24793:2 24850:4 24867:4 24894:1 24896:1 24912:1 24946:1 24947:1 24964:4 24974:1 24975:3 24978:2 24986:1 24988:1 24989:3 24990:4 25005:1 25022:1 25030:1 25047:1 25051:1 25060:1 25061:1 25073:2 25096:1 25100:2 25106:1 25114:2 25121:1 25124:1 25136:1 25172:1 25177:1 25207:1 25251:2 25256:1 25258:2 25261:1 25265:1 25267:2 25275:4 25290:1 25305:1 25321:2 25341:1 25349:1 25360:1 25364:2 25422:1 25438:1 25440:1 25442:2 25445:3 25450:1 25457:3 25467:1 25469:1 25486:1 25490:1 25493:1 25496:1 25507:3 25511:1 25518:2 25536:1 25537:1 25544:1 25559:1 25564:1 25577:1 25609:1 25625:1 25638:2 25681:2 25684:1 25695:4 25713:1 25716:1 25719:1 25720:3 25776:1 25782:1 25805:1 25810:1 25846:1 25847:1 25851:1 25859:1 25873:1 25886:1 25889:2 25907:1 25968:1 25974:4 25975:1 25983:2 25985:1 25990:2 25998:2 26009:1 26021:1 26041:1 26048:1 26062:1 26066:1 26093:1 26115:1 26120:1 26125:2 26129:1 26149:1 26155:3 26172:1 26190:1 26213:1 26227:2 26230:1 26231:1 26250:2 26260:1 26261:1 26262:1 26267:1 26278:1 26283:1 26287:1 26302:2 26309:2 26316:1 26317:1 26328:1 26333:1 26341:1 26358:1 26359:1 26384:1 26399:1 26425:1 26447:1 26481:2 26483:1 26485:1 26508:1 26541:2 26545:2 26552:1 26557:2 26583:1 26584:2 26602:1 26603:1 26606:1 26609:1 26626:1 26636:1 26669:1 26702:1 26729:1 26739:1 26741:2 26764:1 26772:1 26774:1 26777:1 26804:1 26805:1 26837:1 26838:2 26868:1 26870:1 26885:1 26902:1 26908:1 26919:1 26923:1 26968:1 26978:1 27005:1 27020:1 27028:1 27040:2 27055:1 27063:1 27072:2 27074:2 27083:1 27084:2 27094:3 27095:1 27104:1 27108:2 27115:1 27128:1 27134:3 27140:1 27167:2 27178:1 27191:1 27198:1 27206:1 27222:1 27227:1 27247:2 27248:2 27249:2 27285:1 27287:2 27295:1 27297:1 27315:1 27319:1 27332:1 27338:1 27351:1 27376:1 27395:2 27405:1 27408:1 27427:1 27437:1 27439:2 27445:2 27459:1 27485:1 27491:1 27512:3 27541:1 27543:1 27546:1 27568:1 27591:1 27601:1 27616:1 27654:1 27667:1 27674:2 27684:1 27685:1 27770:3 27773:1 27794:1 27795:1 27812:1 27817:1 27825:3 27830:1 27846:1 27851:2 27875:1 27881:1 27882:1 27890:1 27896:1 27907:1 27920:1 27929:1 27991:1 27994:1 28041:1 28042:1 28051:2 28053:2 28065:1 28081:2 28092:1 28094:1 28098:1 28102:2 28103:1 28104:3 28109:1 28139:2 28149:2 28151:1 28176:1 28193:2 28196:2 28205:2 28208:1 28211:2 28212:1 28213:2 28220:2 28281:1 28299:3 28300:2 28349:1 28352:1 28388:1 28389:1 28390:1 28411:1 28412:1 28418:1 28444:4 28448:1 28449:1 28477:1 28482:1 28499:1 28526:1 28548:1 28573:1 28574:2 28580:2 28582:1 28586:1 28592:1 28599:1 28613:1 28616:1 28622:2 28639:1 28644:1 28671:1 28674:1 28691:1 28716:1 28725:1 28739:2 28741:2 28742:1 28748:4 28759:1 28775:1 28804:2 28811:1 28827:1 28846:1 28854:2 28855:1 28884:1 28896:1 28921:1 28939:1 28960:1 28997:1 29006:2 29007:1 29009:1 29015:1 29018:1 29038:1 29053:2 29056:2 29061:2 29062:1 29071:1 29076:2 29087:1 29092:1 29096:1 29122:1 29123:1 29133:1 29145:1 29148:1 29163:2 29178:1 29179:1 29183:2 29188:3 29205:1 29266:2 29268:1 29277:1 29290:2 29296:1 29298:2 29306:1 29345:2 29355:1 29367:1 29369:1 29388:1 29392:1 29402:2 29409:1 29417:2 29422:1 29448:1 29456:1 29467:1 29468:1 29483:1 29487:1 29491:1 29504:1 29513:1 29537:1 29577:1 29611:1 29620:2 29642:2 29647:2 29660:1 29673:1 29674:1 29681:1 29701:2 29708:1 29718:2 29731:1 29738:1 29746:1 29771:1 29773:2 29774:1 29780:2 29806:11 29811:1 29815:1 29819:1 29821:1 29831:1 29835:1 29837:1 29852:6 29853:2 29861:1 29865:1 29867:1 29882:3 29904:1 29922:1 29930:1 29939:1 29974:1 30020:3 30033:1 30045:2 30047:1 30053:1 30056:1 30075:1 30078:1 30083:1 30090:2 30104:1 30109:1 30114:1 30116:1 30149:1 30160:1 30174:1 30177:1 30182:1 30189:1 30212:1 30242:1 30247:3 30251:1 30263:1 30275:1 30281:1 30300:1 30325:1 30330:3 30365:2 30367:1 30381:1 30390:2 30392:2 30412:1 30414:1 30428:1 30429:1 30458:1 30459:1 30477:1 30494:1 30517:1 30526:1 30556:2 30558:2 30567:1 30572:1 30574:1 30578:1 30582:1 30597:1 30599:1 30602:2 30625:1 30676:1 30714:1 30750:2 30759:1 30783:1 30867:2 30879:1 30922:4 30931:1 30935:1 30942:1 30949:1 30968:1 30973:5 30978:1 30981:1 31002:1 31005:2 31013:1 31030:2 31036:1 31046:2 31054:1 31071:1 31083:2 31087:1 31090:3 31098:1 31100:1 31124:1 31133:2 31135:1 31143:2 31179:1 31182:3 31183:1 31190:1 31195:1 31197:1 31208:1 31228:1
17 16:1 19:2 33:1 35:1 49:1 61:2 62:1 86:1 110:1 122:1 164:1 173:6 183:1 186:2 192:1 199:1 224:1 227:1 240:1 256:2 271:1 278:2 304:2 310:2 343:1 351:1 357:2 358:1 398:1 401:2 404:1 419:1 420:1 422:1 426:1 493:1 503:1 504:2 509:1 511:1 513:1 577:1 591:1 633:2 640:1 641:1 647:1 661:1 690:1 695:1 703:1 708:2 719:1 726:2 781:1 817:1 824:1 839:1 846:3 857:1 864:5 928:2 969:1 970:1 973:2 977:6 979:3 980:1 982:2 986:4 990:1 991:3 992:1 997:1 1002:1 1003:2 1007:1 1008:2 1011:2 1028:1 1034:3 1036:1 1039:1 1074:3 1093:1 1094:1 1095:1 1098:2 1114:1 1119:1 1129:1 1133:1 1145:1 1150:1 1161:1 1165:1 1166:1 1168:2 1175:1 1186:1 1192:1 1204:1 1210:1 1220:1 1221:1 1222:1 1248:1 1258:1 1268:1 1269:2 1339:2 1343:1 1348:1 1360:1 1375:1 1377:1 1382:1 1398:1 1399:1 1410:1 1413:1 1414:1 1433:1 1460:1 1462:1 1464:1 1472:1 1487:1 1497:1 1535:1 1540:1 1560:1 1565:2 1601:1 1608:1 1613:1 1625:1 1638:2 1642:1 1644:1 1650:1 1669:1 1676:1 1688:3 1702:1 1708:1 1714:1 1717:1 1719:1 1722:1 1736:2 1749:1 1771:1 1786:1 1790:2 1797:3 1816:1 1825:1 1827:1 1833:2 1851:1 1860:1 1871:1 1873:1 1895:1 1896:2 1905:1 1910:1 1921:3 1922:1 1932:1 1933:1 1942:1 1950:1 1956:1 1961:2 1963:2 1964:1 1972:1 1975:1 1991:1 2018:1 2027:2 2033:1 2036:1 2041:1 2066:1 2078:1 2099:1 2108:1 2126:1 2127:2 2136:1 2139:1 2155:1 2157:1 2164:1 2187:2 2221:1 2224:1 2226:2 2253:1 2261:1 2270:1 2282:1 2307:1 2356:1 2395:2 2433:1 2442:1 2467:1 2470:1 2486:1 2504:2 2508:1 2519:1 2525:4 2530:2 2531:1 2543:5 2550:1 2551:2 2552:1 2556:2 2558:1 2561:1 2568:1 2569:5 2584:1 2600:2 2616:2 2633:1 2638:1 2648:1 2650:1 2697:1 2698:1 2701:2 2721:1 2737:5 2741:2 2757:2 2778:2 2783:1 2784:1 2789:1 2799:1 2804:2 2809:1 2816:1 2821:1 2856:1 2870:1 2872:2 2892:1 2923:2 2939:1 2964:1 2982:1 2991:1 3004:1 3027:1 3031:1 3032:3 3101:1 3109:1 3110:2 3112:2 3117:1 3124:1 3131:1 3138:1 3142:1 3144:1 3147:1 3168:1 3169:1 3189:4 3197:4 3210:4 3232:1 3247:1 3249:1 3257:2 3266:1 3282:1 3295:1 3310:1 3313:2 3315:1 3320:1 3322:2 3327:1 3341:1 3364:1 3365:1 3376:1 3392:1 3412:1 3419:3 3420:1 3455:1 3457:1 3463:1 3464:2 3487:1 3495:1 3497:1 3500:1 3524:1 3552:1 3563:3 3630:1 3671:2 3708:1 3745:1 3747:2 3756:1 3772:1 3778:1 3779:3 3795:1 3797:1 3798:1 3817:1 3848:1 3849:1 3869:3 3877:1 3879:1 3881:5 3896:1 3913:1 3920:1 3926:2 3936:1 3959:1 3971:1 3992:1 3997:1 4003:2 4007:1 4025:1 4032:2 4052:2 4061:1 4063:1 4091:1 4093:1 4097:1 4127:2 4128:1 4131:1 4132:1 4187:1 4204:2 4207:3 4227:1 4247:1 4255:1 4262:2 4264:1 4268:1 4282:1 4284:2 4311:1 4312:1 4325:1 4336:1 4337:1 4385:1 4386:1 4389:1 4426:1 4443:1 4446:1 4448:1 4463:1 4468:1 4473:1 4480:1 4487:1 4490:2 4501:1 4507:1 4518:2 4520:1 4535:2 4579:1 4604:1 4606:1 4608:1 4636:1 4642:1 4645:1 4648:1 4650:1 4654:1 4662:1 4673:1 4712:2 4716:2 4749:1 4754:1 4761:4 4765:1 4767:1 4780:2 4785:1 4787:3 4814:1 4816:1 4819:1 4835:1 4842:1 4843:1 4854:2 4855:1 4881:1 4891:1 4892:1 4903:1 4931:1 4955:1 4964:1 4965:1 4970:2 4974:1 4981:1 4984:1 4985:5 4997:2 5008:1 5012:1 5015:1 5024:1 5050:2 5070:3 5076:1 5088:2 5107:1 5128:1 5147:1 5154:5 5161:1 5162:1 5172:1 5179:1 5180:1 5188:3 5190:1 5192:4 5206:1 5209:1 5219:1 5221:1 5246:1 5248:1 5281:1 5296:1 5298:2 5302:1 5312:1 5314:1 5315:1 5316:1 5328:1 5329:2 5334:2 5338:1 5345:2 5347:2 5355:1 5357:1 5391:1 5394:1 5417:1 5418:1 5436:1 5443:1 5491:1 5505:1 5509:1 5540:2 5544:1 5547:1 5556:1 5569:2 5580:2 5586:1 5592:1 5600:2 5603:1 5625:1 5631:1 5646:2 5651:1 5673:1 5684:1 5692:2 5717:1 5735:1 5742:1 5758:2 5761:1 5785:1 5792:1 5806:1 5877:1 5888:2 5889:1 5896:1 5902:1 5917:1 5942:1 5950:1 5958:1 5979:1 6000:1 6003:1 6006:1 6013:1 6014:1 6020:1 6040:2 6066:4 6082:1 6106:1 6121:1 6142:1 6147:1 6153:1 6164:2 6166:1 6170:1 6182:1 6200:2 6202:1 6207:1 6222:1 6233:2 6245:2 6246:1 6248:1 6268:1 6280:1 6293:1 6298:1 6301:2 6306:1 6310:2 6312:9 6320:2 6346:1 6361:1 6388:3 6409:1 6411:2 6433:2 6439:1 6440:3 6450:1 6456:1 6467:3 6484:2 6503:1 6507:1 6513:1 6531:2 6533:3 6536:1 6557:2 6562:1 6567:1 6569:1 6571:1 6575:1 6589:4 6617:1 6640:2 6653:2 6654:1 6659:2 6661:2 6665:2 6668:1 6672:1 6681:1 6705:2 6727:1 6748:1 6758:1 6768:1 6786:1 6789:1 6829:7 6840:1 6844:1 6858:1 6865:2 6868:2 6869:1 6875:1 6883:1 6885:2 6886:2 6887:1 6910:1 6917:1 6922:1 6926:1 6930:1 6932:1 6937:1 6945:2 6950:1 6959:1 6966:1 7023:1 7033:2 7078:1 7084:1 7101:1 7111:1 7115:1 7121:2 7128:1 7152:1 7169:2 7171:4 7181:1 7202:1 7216:1 7219:1 7227:1 7270:1 7277:1 7312:3 7332:1 7341:1 7353:1 7354:1 7374:1 7381:2 7383:1 7395:1 7413:1 7415:1 7422:1 7423:1 7427:2 7460:1 7490:1 7529:2 7567:1 7577:1 7580:1 7598:4 7616:2 7626:1 7647:1 7648:1 7650:1 7654:1 7659:1 7663:1 7670:1 7676:1 7715:2 7718:2 7745:1 7753:1 7761:2 7769:1 7775:1 7785:1 7787:1 7798:1 7799:1 7819:1 7836:1 7846:1 7882:2 7902:1 7903:1 7908:1 7909:1 7929:1 7941:1 7955:2 7959:1 7965:1 7974:1 7976:1 8000:2 8019:4 8025:1 8027:1 8034:1 8050:1 8053:1 8059:2 8062:1 8082:1 8092:2 8120:2 8126:3 8127:1 8128:1 8148:1 8150:2 8151:5 8153:1 8157:1 8161:5 8162:1 8163:1 8165:1 8170:2 8171:1 8172:1 8173:4 8174:1 8187:1 8214:3 8232:1 8247:1 8268:1 8286:1 8300:1 8301:1 8305:1 8316:1 8337:2 8353:2 8360:1 8371:1 8372:2 8404:1 8405:1 8420:15 8440:4 8442:2 8450:1 8467:1 8474:2 8485:1 8493:1 8505:2 8509:1 8542:2 8551:1 8557:1 8572:1 8611:1 8622:1 8642:1 8644:1 8650:2 8678:1 8693:3 8702:1 8710:1 8716:1 8740:1 8776:1 8792:1 8801:1 8823:5 8834:1 8837:2 8850:1 8857:5 8866:1 8879:1 8886:1 8903:1 8910:1 8920:1 8930:1 8940:1 8953:1 8956:1 8961:1 8963:6 8987:1 9013:2 9023:1 9035:1 9039:1 9062:1 9077:1 9079:2 9082:1 9093:1 9094:1 9119:2 9125:2 9129:1 9131:1 9132:1 9141:1 9149:1 9156:2 9165:1 9175:2 9186:1 9192:1 9194:1 9216:1 9224:1 9227:1 9237:1 9268:2 9273:1 9296:1 9305:5 9316:1 9367:1 9370:1 9372:2 9376:1 9378:4 9383:1 9385:1 9390:1 9421:1 9447:1 9461:1 9490:2 9500:1 9506:2 9510:1 9522:1 9568:4 9583:1 9588:1 9596:1 9622:1 9667:2 9680:1 9685:1 9688:1 9693:1 9715:1 9724:1 9726:1 9795:5 9796:2 9815:2 9826:1 9835:1 9848:1 9850:1 9857:1 9872:1 9887:1 9900:1 9917:1 9922:2 9923:1 9937:1 9981:1 9996:1 10013:1 10026:1 10047:1 10051:3 10091:1 10092:2 10119:3 10131:1 10133:1 10135:1 10141:1 10168:1 10169:1 10191:1 10216:2 10221:1 10229:1 10243:1 10253:1 10254:1 10255:1 10273:1 10277:1 10306:1 10317:1 10326:2 10353:1 10368:1 10372:1 10379:1 10382:1 10390:2 10393:1 10402:1 10421:1 10422:1 10451:3 10457:1 10483:2 10486:1 10494:1 10500:4 10501:1 10503:2 10511:1 10514:1 10516:1 10532:1 10540:1 10551:1 10554:1 10557:1 10561:1 10566:1 10568:2 10576:2 10578:1 10597:1 10623:1 10626:1 10631:1 10650:5 10671:1 10676:2 10707:1 10708:1 10747:1 10760:1 10769:1 10781:1 10790:1 10799:1 10821:1 10853:1 10881:1 10884:1 10891:1 10933:1 10945:1 10954:2 10960:4 10963:1 10965:1 10966:1 10967:2 10972:1 10973:1 10982:1 11010:1 11012:1 11013:1 11014:1 11018:1 11020:2 11021:1 11025:2 11035:4 11042:1 11055:2 11059:4 11078:1 11082:1 11103:1 11113:1 11137:1 11144:2 11150:1 11197:1 11206:1 11217:1 11223:3 11235:1 11237:2 11246:1 11251:2 11255:1 11263:1 11281:1 11304:2 11324:1 11325:1 11338:1 11358:1 11360:1 11367:1 11370:2 11372:1 11373:1 11377:1 11408:1 11426:4 11429:1 11432:1 11437:3 11445:1 11448:1 11456:1 11464:1 11466:1 11480:1 11481:1 11494:1 11501:3 11509:1 11514:1 11522:2 11565:1 11572:1 11573:1 11585:2 11605:1 11613:2 11649:1 11662:1 11664:2 11685:1 11697:1 11700:1 11703:1 11719:1 11730:5 11737:1 11742:2 11745:1 11747:1 11761:1 11764:2 11793:1 11813:2 11840:1 11849:1 11861:1 11863:1 11868:1 11869:2 11891:1 11905:1 11926:1 11946:1 11953:1 11963:1 11978:1 11981:1 11996:4 11997:2 12004:1 12010:2 12015:1 12016:2 12026:1 12038:1 12039:1 12052:1 12055:5 12079:1 12082:1 12086:4 12095:1 12103:1 12104:3 12118:1 12141:1 12159:1 12169:1 12187:1 12214:1 12236:1 12246:3 12251:1 12254:1 12261:1 12263:1 12268:1 12272:1 12285:1 12290:2 12293:1 12322:1 12325:2 12329:1 12332:1 12368:1 12377:1 12380:1 12407:2 12412:1 12419:2 12424:1 12435:1 12446:1 12450:3 12451:1 12457:1 12468:1 12473:1 12488:2 12500:1 12530:1 12534:1 12568:1 12623:1 12633:1 12673:1 12679:2 12698:1 12708:1 12711:2 12721:1 12743:1 12769:2 12773:1 12776:1 12780:1 12794:1 12798:2 12802:1 12816:1 12827:1 12831:3 12832:1 12839:1 12843:1 12846:2 12853:1 12890:1 12894:1 12898:1 12908:1 12910:1 12921:1 12925:1 12944:1 12968:1 12977:1 12990:1 12995:1 12996:1 13002:1 13025:2 13028:1 13029:1 13031:1 13034:3 13037:1 13038:5 13039:1 13040:1 13047:2 13050:1 13085:2 13098:1 13100:1 13110:1 13129:1 13130:1 13133:2 13138:1 13141:2 13144:1 13157:2 13163:1 13167:2 13169:1 13171:1 13173:2 13210:1 13214:1 13222:1 13226:1 13228:1 13244:2 13247:3 13253:2 13260:2 13261:1 13266:1 13267:1 13279:1 13280:1 13295:1 13329:1 13355:2 13359:1 13372:1 13374:1 13385:1 13390:2 13394:1 13399:1 13400:1 13403:1 13410:1 13424:1 13436:1 13439:1 13450:1 13465:1 13468:1 13470:1 13472:1 13481:1 13497:1 13540:1 13552:1 13559:2 13577:1 13579:1 13584:2 13585:1 13591:1 13600:1 13608:1 13609:1 13655:1 13661:1 13680:2 13695:2 13697:1 13704:1 13710:1 13713:1 13725:1 13731:2 13743:1 13746:1 13766:2 13768:1 13799:1 13828:5 13856:2 13858:1 13864:2 13934:4 13937:1 13963:2 13965:1 13971:3 13989:1 13991:2 14051:1 14109:1 14148:1 14200:1 14222:1 14276:1 14292:1 14294:1 14298:2 14333:4 14339:2 14341:1 14342:3 14346:1 14357:1 14377:3 14386:1 14420:1 14421:1 14424:1 14452:1 14461:1 14473:1 14504:1 14529:1 14556:3 14566:1 14690:2 14704:1 14708:1 14712:1 14720:1 14728:2 14732:2 14744:1 14753:2 14757:1 14789:1 14798:1 14803:1 14804:7 14843:1 14855:1 14856:1 14859:1 14860:1 14864:1 14875:1 14877:1 14878:1 14882:2 14888:1 14897:1 14914:1 14915:1 14923:1 14931:2 14941:1 14968:1 14987:2 14989:1 14994:1 15020:4 15045:2 15064:1 15111:1 15150:1 15169:1 15176:1 15216:1 15220:1 15241:1 15245:1 15248:2 15251:1 15271:1 15297:1 15321:1 15325:1 15329:1 15341:1 15348:1 15349:1 15355:1 15365:1 15371:1 15385:1 15387:3 15397:1 15398:1 15400:1 15412:1 15422:1 15439:1 15443:1 15444:1 15446:1 15452:1 15454:1 15458:1 15459:1 15468:1 15495:1 15496:1 15534:1 15549:2 15554:1 15563:1 15570:1 15573:1 15577:1 15580:3 15584:1 15594:1 15598:1 15602:1 15605:1 15608:1 15615:3 15617:1 15650:1 15672:1 15678:1 15685:1 15695:1 15704:1 15718:1 15720:1 15731:1 15742:3 15750:2 15761:1 15764:1 15768:1 15789:1 15797:1 15804:1 15811:1 15815:1 15822:1 15842:1 15859:1 15873:1 15953:1 15958:1 15959:3 15968:1 16004:1 16015:1 16024:1 16028:3 16029:1 16056:9 16063:2 16064:1 16065:1 16080:1 16082:1 16083:1 16085:1 16087:3 16089:25 16099:1 16104:1 16105:2 16116:1 16138:1 16146:3 16155:1 16159:2 16196:1 16212:1 16235:1 16254:1 16259:1 16278:3 16288:1 16298:1 16300:2 16305:1 16309:2 16312:1 16321:1 16357:1 16361:3 16409:1 16410:2 16424:1 16432:1 16443:1 16454:2 16478:2 16487:2 16508:1 16515:1 16519:1 16525:1 16558:1 16572:1 16573:2 16585:1 16596:1 16598:5 16617:1 16631:1 16633:1 16635:1 16638:1 16650:1 16651:1 16669:1 16702:3 16744:1 16752:1 16788:1 16798:1 16835:1 16836:1 16839:2 16840:1 16914:1 16940:2 16947:1 16948:2 16965:1 16971:1 16972:1 16995:1 16996:1 16997:2 17018:1 17022:1 17029:1 17035:1 17053:1 17072:1 17103:1 17108:2 17111:1 17112:1 17113:1 17134:1 17135:1 17153:1 17163:1 17179:1 17188:1 17205:1 17213:1 17215:1 17225:1 17238:1 17240:1 17244:1 17257:7 17262:1 17320:3 17330:2 17331:1 17338:2 17350:1 17366:1 17384:1 17390:3 17454:1 17458:1 17459:1 17503:3 17512:1 17516:2 17554:1 17581:1 17585:1 17602:1 17610:1 17613:2 17620:1 17622:1 17641:1 17663:1 17667:1 17676:1 17685:1 17710:1 17730:1 17732:1 17768:2 17787:1 17804:1 17806:1 17811:2 17814:1 17818:1 17832:1 17843:1 17844:1 17874:2 17878:1 17882:1 17894:1 17899:1 17907:2 17911:2 17913:1 17924:1 17936:1 17940:1 17965:1 17969:1 17977:2 17979:1 17985:1 17990:3 17999:1 18005:2 18007:1 18008:1 18027:1 18054:1 18072:1 18074:1 18077:1 18080:3 18082:1 18109:1 18140:2 18148:1 18164:2 18177:1 18205:2 18227:1 18253:1 18264:1 18276:1 18283:1 18291:1 18328:1 18345:1 18366:1 18369:1 18376:1 18380:2 18396:1 18402:1 18406:1 18407:1 18471:1 18496:2 18519:1 18546:1 18557:1 18561:1 18570:1 18575:1 18577:1 18578:2 18592:2 18604:2 18605:1 18608:1 18610:1 18635:1 18636:1 18641:1 18642:1 18643:1 18662:1 18700:1 18707:1 18719:4 18738:1 18751:2 18759:1 18773:1 18774:1 18786:1 18796:3 18797:1 18834:1 18882:1 18889:2 18892:1 18900:1 18911:1 18926:1 18930:1 18958:1 18962:1 18974:1 18982:1 18999:1 19006:1 19011:1 19017:1 19022:1 19023:2 19034:1 19044:1 19061:1 19081:1 19083:1 19085:1 19087:1 19088:1 19136:2 19147:1 19150:1 19180:1 19184:1 19187:1 19198:1 19225:1 19230:1 19235:1 19244:1 19255:1 19263:1 19276:1 19278:1 19291:1 19298:7 19321:2 19339:1 19350:1 19362:1 19371:1 19375:1 19391:1 19405:1 19446:1 19460:1 19461:2 19505:1 19522:2 19559:1 19561:1 19584:2 19587:1 19588:1 19627:1 19630:1 19633:1 19645:1 19650:1 19660:1 19681:1 19699:1 19700:1 19702:1 19706:1 19707:3 19721:1 19734:1 19743:1 19777:1 19800:1 19810:1 19819:1 19821:1 19835:1 19842:1 19849:1 19862:1 19873:1 19885:2 19886:1 19911:1 19924:1 19933:4 19940:2 19948:1 19951:1 19955:2 19961:1 19968:1 19990:1 19991:1 19996:1 20050:1 20056:1 20058:1 20102:1 20105:2 20122:1 20126:2345 20184:1 20187:1 20195:2 20237:1 20264:1 20268:1 20272:1 20276:1 20293:1 20305:1 20357:1 20366:1 20424:1 20427:1 20466:1 20480:2 20485:1 20502:1 20513:1 20520:1 20524:1 20556:3 20562:2 20577:1 20591:1 20600:1 20630:1 20648:1 20653:2 20660:1 20665:1 20668:3 20676:1 20707:1 20722:1 20756:1 20768:1 20777:3 20782:1 20816:3 20820:1 20826:3 20830:1 20870:1 20894:2 20921:1 20923:4 20951:2 20998:1 21007:1 21016:1 21031:1 21035:3 21049:1 21054:1 21059:1 21062:1 21079:1 21104:1 21116:1 21122:1 21128:3 21140:2 21141:2 21145:1 21146:1 21147:1 21149:1 21165:1 21172:1 21177:2 21192:1 21194:1 21227:1 21253:1 21286:2 21288:1 21291:1 21315:1 21329:1 21358:1 21359:1 21375:1 21437:1 21457:1 21484:1 21486:1 21489:2 21506:1 21525:1 21536:1 21537:1 21542:1 21544:1 21556:1 21587:2 21592:1 21594:3 21597:1 21598:1 21601:1 21608:1 21625:1 21628:2 21630:2 21631:2 21636:1 21649:1 21650:1 21659:1 21670:2 21677:2 21687:1 21690:1 21694:1 21700:1 21713:1 21730:1 21758:1 21771:1 21781:2 21803:2 21815:1 21818:1 21872:3 21910:1 21912:1 21915:1 21925:1 21933:1 21934:1 21938:1 21949:1 21953:1 21965:2 21967:2 21985:1 22000:2 22003:1 22028:1 22030:1 22042:2 22057:2 22064:2 22099:1 22119:1 22150:1 22152:1 22167:1 22170:1 22181:1 22186:1 22193:1 22198:1 22201:1 22202:1 22222:2 22244:1 22262:1 22270:3 22281:1 22291:1 22294:1 22303:2 22312:2 22319:1 22332:1 22366:1 22374:1 22375:2 22376:2 22378:1 22390:1 22391:1 22392:2 22402:1 22417:1 22453:2 22466:1 22482:1 22516:2 22547:1 22551:1 22557:1 22571:2 22599:1 22636:1 22639:1 22640:1 22658:1 22671:1 22680:1 22711:1 22738:1 22761:1 22782:1 22786:2 22795:1 22804:1 22813:2 22816:2 22837:2 22844:1 22845:8 22847:1 22854:1 22862:1 22879:1 22888:1 22900:1 22903:1 22930:1 22938:1 22953:1 22960:1 22973:1 22975:1 22984:1 22985:1 22998:1 23011:1 23017:1 23028:1 23032:1 23039:2 23043:2 23044:1 23047:1 23060:1 23077:1 23094:1 23096:1 23139:1 23180:3 23187:1 23193:2 23217:1 23225:1 23226:1 23239:1 23280:1 23285:1 23295:1 23301:1 23306:1 23328:1 23339:1 23371:2 23373:1 23379:5 23384:1 23387:1 23397:1 23400:1 23409:1 23424:2 23425:1 23445:1 23484:2 23512:1 23520:1 23534:2 23544:1 23559:1 23564:1 23585:2 23586:1 23600:2 23605:1 23609:2 23625:1 23629:1 23631:1 23644:2 23649:2 23652:1 23669:2 23671:2 23677:1 23680:1 23702:2 23712:3 23724:1 23730:1 23741:1 23748:1 23758:1 23766:2 23767:1 23796:1 23804:1 23807:1 23817:1 23826:1 23832:1 23835:1 23840:1 23841:1 23843:1 23847:1 23848:1 23887:2 23897:1 23900:1 23948:3 23952:1 23956:1 23961:1 23962:4 24008:1 24015:1 24030:1 24031:1 24032:1 24034:4 24043:1 24051:5 24075:1 24102:1 24119:1 24142:1 24156:1 24163:1 24200:6 24207:1 24215:1 24216:1 24283:1 24285:1 24289:1 24292:1 24298:1 24314:1 24318:2 24324:1 24348:2 24363:3 24394:1 24399:2 24405:1 24413:1 24417:1 24422:1 24423:1 24424:1 24442:1 24447:1 24448:1 24451:1 24467:1 24473:1 24477:2 24489:1 24499:2 24507:1 24517:1 24547:1 24551:1 24566:1 24582:1 24599:1 24600:2 24602:1 24606:1 24608:3 24609:1 24629:1 24658:1 24670:1 24675:1 24732:1 24754:1 24769:1 24773:1 24779:1 24793:2 24850:4 24867:5 24875:1 24894:1 24896:1 24912:1 24946:1 24947:1 24964:4 24974:1 24975:3 24978:3 24986:1 24988:1 24989:3 24990:5 25005:1 25022:1 25030:1 25047:1 25051:1 25060:1 25061:1 25073:3 25096:1 25100:2 25106:1 25114:2 25121:1 25124:1 25136:1 25172:1 25177:1 25207:1 25251:2 25256:2 25258:2 25261:2 25265:1 25267:2 25275:5 25290:1 25305:1 25321:2 25341:1 25349:1 25360:1 25364:2 25422:1 25438:1 25440:1 25442:2 25445:3 25450:1 25457:3 25467:1 25469:1 25486:1 25490:1 25493:1 25496:1 25507:3 25511:1 25518:2 25536:1 25537:1 25544:1 25559:1 25564:1 25577:1 25609:1 25623:1 25625:1 25638:2 25681:2 25684:1 25695:5 25713:1 25716:1 25719:1 25720:3 25776:1 25782:1 25805:1 25810:1 25846:1 25847:1 25851:1 25859:1 25873:1 25886:1 25889:2 25907:1 25968:1 25974:4 25975:1 25983:2 25985:1 25990:2 25998:2 26009:1 26021:1 26041:1 26048:1 26062:1 26066:1 26093:1 26115:1 26120:2 26125:3 26129:1 26149:1 26155:3 26172:1 26190:1 26213:1 26227:2 26230:1 26231:1 26250:2 26251:1 26260:1 26261:1 26262:1 26267:1 26278:1 26283:1 26287:1 26302:2 26309:2 26316:1 26317:1 26328:1 26333:1 26341:1 26358:1 26359:1 26384:1 26399:1 26425:1 26447:1 26471:1 26481:2 26483:1 26485:1 26508:1 26541:2 26545:2 26552:1 26557:2 26583:1 26584:2 26602:1 26603:1 26606:1 26609:1 26626:1 26636:1 26669:1 26702:1 26729:1 26739:1 26741:2 26764:1 26772:1 26774:1 26777:1 26804:1 26805:1 26837:1 26838:2 26868:1 26870:1 26885:1 26902:1 26908:1 26919:1 26923:1 26968:1 26978:1 27005:1 27020:1 27028:1 27040:2 27055:1 27063:1 27072:2 27074:2 27083:1 27084:2 27087:2 27094:3 27095:1 27104:1 27108:2 27115:1 27128:1 27134:3 27140:1 27167:2 27178:1 27191:2 27198:1 27206:1 27222:1 27227:1 27247:2 27248:2 27249:2 27285:1 27287:2 27295:1 27297:1 27315:1 27319:1 27332:1 27338:1 27351:1 27376:1 27395:2 27405:1 27408:1 27427:1 27437:1 27439:2 27445:2 27459:1 27485:1 27491:1 27512:3 27541:1 27543:1 27546:1 27568:1 27591:1 27601:1 27616:1 27654:1 27667:1 27674:2 27684:1 27685:1 27770:3 27773:1 27794:1 27795:1 27812:1 27817:1 27825:3 27830:1 27846:1 27851:4 27875:1 27881:1 27882:1 27890:1 27896:1 27907:1 27920:1 27929:1 27991:1 27994:1 28041:1 28042:1 28051:2 28053:2 28065:1 28081:2 28092:1 28094:1 28098:1 28102:2 28103:1 28104:3 28109:1 28139:2 28149:2 28151:1 28168:2 28176:1 28193:2 28196:2 28205:2 28208:1 28211:3 28212:1 28213:2 28220:2 28281:1 28299:5 28300:2 28349:1 28352:1 28388:1 28389:1 28390:1 28411:1 28412:1 28418:1 28444:4 28448:1 28449:1 28477:1 28478:1 28482:1 28499:1 28526:1 28548:1 28573:1 28574:2 28580:2 28582:1 28586:1 28592:1 28599:1 28613:1 28616:1 28622:2 28628:1 28639:1 28644:1 28671:1 28674:1 28691:1 28716:1 28725:1 28739:2 28741:2 28742:1 28748:4 28759:1 28775:1 28804:2 28811:1 28827:1 28846:1 28854:2 28855:1 28884:1 28896:1 28921:1 28939:1 28960:1 28997:1 29006:2 29007:1 29009:1 29015:1 29018:1 29038:1 29053:2 29056:2 29061:2 29062:1 29071:1 29076:2 29087:1 29092:1 29096:1 29122:1 29123:1 29133:1 29145:1 29148:1 29163:2 29178:1 29179:1 29183:2 29188:3 29205:1 29266:2 29268:1 29277:1 29290:2 29296:1 29298:2 29306:1 29345:2 29355:1 29367:1 29369:1 29388:1 29392:1 29402:2 29409:1 29417:2 29422:1 29448:1 29456:1 29467:1 29468:1 29483:1 29487:1 29491:1 29504:1 29513:1 29537:1 29577:1 29611:1 29620:2 29637:1 29642:2 29647:2 29660:1 29673:1 29674:1 29681:1 29701:2 29708:1 29718:2 29731:1 29738:1 29746:1 29760:1 29771:1 29773:2 29774:1 29780:2 29806:11 29811:1 29815:1 29819:1 29821:1 29831:1 29835:1 29837:1 29852:6 29853:2 29861:1 29865:1 29867:1 29882:3 29904:1 29922:1 29930:1 29939:1 29974:1 30020:3 30033:1 30045:2 30047:1 30053:1 30056:1 30075:1 30078:1 30083:1 30090:2 30104:1 30109:1 30114:1 30116:1 30149:1 30160:1 30174:1 30177:1 30182:1 30189:1 30196:1 30212:1 30242:1 30247:3 30251:1 30263:1 30275:1 30281:1 30300:1 30325:1 30330:3 30365:2 30367:1 30381:1 30390:2 30392:2 30412:1 30414:1 30428:1 30429:1 30458:1 30459:1 30477:1 30479:1 30494:1 30517:1 30526:1 30554:1 30556:2 30558:2 30567:1 30572:1 30574:1 30578:1 30582:1 30597:1 30599:1 30602:2 30625:1 30676:1 30712:1 30713:1 30714:1 30750:2 30759:1 30783:1 30867:2 30869:1 30879:1 30922:4 30931:1 30935:1 30942:1 30949:1 30968:1 30973:5 30978:1 30981:1 30996:1 31002:1 31005:2 31013:1 31030:2 31036:1 31046:2 31054:1 31071:1 31083:2 31087:1 31090:3 31098:1 31100:1 31124:1 31133:2 31135:1 31143:2 31179:1 31182:3 31183:1 31190:1 31195:1 31197:1 31208:1 31228:1
17 16:1 19:2 33:1 35:1 40:1 49:1 61:2 62:1 69:1 86:1 110:1 122:1 164:1 173:7 183:1 186:2 192:1 199:1 224:1 227:1 240:1 256:2 271:1 278:2 304:2 310:2 343:1 345:1 351:1 357:2 358:1 398:1 401:2 404:1 419:1 420:1 422:1 426:1 493:1 503:1 504:2 509:1 511:1 513:1 577:1 591:1 633:2 640:1 641:1 647:1 661:1 690:1 695:1 703:1 708:2 719:1 726:2 781:1 815:1 817:1 824:1 839:1 846:3 857:1 864:5 928:2 969:1 970:1 973:2 977:6 979:3 980:1 982:2 985:1 986:4 990:1 991:3 992:1 997:1 1002:1 1003:2 1007:1 1008:2 1011:2 1028:1 1034:3 1036:1 1039:1 1074:3 1093:1 1094:1 1095:1 1098:2 1114:1 1116:1 1119:1 1129:1 1133:1 1145:1 1150:1 1161:1 1165:1 1166:1 1168:2 1175:1 1186:1 1192:1 1204:1 1210:1 1220:1 1221:1 1222:1 1248:1 1258:1 1268:1 1269:2 1327:1 1330:1 1339:2 1343:1 1348:1 1360:1 1375:1 1377:1 1382:1 1398:1 1399:1 1410:1 1413:1 1414:1 1433:1 1435:1 1460:1 1462:1 1464:1 1472:1 1487:1 1488:1 1497:1 1535:1 1540:1 1560:1 1564:1 1565:2 1601:1 1608:1 1613:1 1625:1 1638:2 1642:1 1644:1 1650:1 1669:1 1676:1 1688:3 1702:1 1708:1 1714:1 1717:1 1719:1 1722:1 1736:2 1749:1 1771:1 1786:1 1790:2 1797:3 1816:1 1825:1 1827:1 1833:2 1851:1 1857:1 1860:1 1868:1 1871:1 1873:1 1895:1 1896:2 1904:1 1905:1 1910:1 1921:3 1922:1 1932:1 1933:1 1942:1 1950:1 1956:1 1961:2 1963:2 1964:1 1972:1 1975:1 1991:1 2018:1 2027:2 2033:1 2036:1 2041:1 2066:1 2078:1 2099:1 2108:1 2126:1 2127:2 2136:1 2139:1 2155:1 2157:1 2164:1 2187:2 2221:1 2224:1 2226:2 2253:2 2261:1 2270:1 2282:1 2307:1 2356:1 2395:2 2433:1 2442:1 2467:1 2470:1 2486:1 2504:2 2508:1 2519:1 2525:4 2530:2 2531:1 2543:5 2550:1 2551:2 2552:1 2556:2 2558:1 2561:1 2568:1 2569:5 2584:1 2600:2 2616:2 2633:1 2638:1 2648:1 2650:1 2697:1 2698:1 2701:2 2721:1 2737:5 2741:2 2757:2 2765:1 2770:1 2778:2 2783:1 2784:1 2789:1 2799:1 2804:3 2809:1 2816:1 2821:1 2856:1 2870:1 2872:2 2892:1 2923:2 2939:1 2964:1 2982:1 2991:1 3004:1 3027:1 3031:1 3032:3 3086:1 3101:1 3106:1 3109:1 3110:2 3112:2 3117:1 3124:1 3131:1 3138:1 3142:1 3144:1 3147:1 3168:1 3169:1 3189:4 3197:4 3210:4 3232:1 3247:1 3249:1 3257:2 3266:1 3282:1 3295:1 3310:1 3313:3 3315:1 3320:1 3322:2 3327:1 3341:1 3364:1 3365:1 3376:1 3392:1 3412:1 3419:3 3420:1 3455:1 3457:1 3463:1 3464:2 3487:1 3495:1 3497:1 3500:1 3524:1 3552:1 3563:3 3630:1 3656:1 3671:2 3708:1 3745:1 3747:2 3756:1 3772:1 3778:1 3779:3 3795:1 3797:1 3798:1 3817:1 3848:2 3849:1 3869:3 3877:1 3879:1 3881:5 3896:1 3904:1 3913:1 3920:1 3926:2 3936:1 3959:1 3971:1 3992:1 3997:1 4003:2 4007:1 4018:2 4025:1 4032:2 4052:2 4061:1 4063:1 4091:1 4093:1 4097:1 4127:3 4128:1 4131:1 4132:1 4149:1 4187:1 4204:2 4207:3 4227:1 4247:1 4255:1 4262:2 4264:1 4268:1 4282:1 4284:2 4293:1 4311:1 4312:1 4325:1 4336:1 4337:1 4385:1 4386:1 4389:1 4426:1 4443:1 4446:1 4448:1 4463:1 4468:1 4473:1 4480:1 4487:1 4490:2 4501:1 4507:1 4518:2 4520:1 4527:1 4535:2 4579:1 4604:1 4606:1 4608:1 4636:1 4642:1 4645:1 4648:1 4650:1 4654:1 4662:1 4673:1 4712:2 4716:2 4749:1 4754:1 4761:4 4765:1 4767:1 4779:1 4780:2 4785:1 4787:3 4814:1 4816:1 4819:1 4835:1 4842:1 4843:1 4854:2 4855:1 4881:1 4891:1 4892:1 4903:1 4918:1 4931:1 4955:1 4964:1 4965:1 4970:2 4974:1 4981:1 4984:1 4985:5 4997:2 5008:1 5012:1 5015:1 5024:1 5050:2 5070:3 5076:1 5088:2 5107:1 5128:1 5147:2 5154:5 5161:1 5162:1 5172:1 5179:1 5180:1 5188:3 5190:1 5192:4 5206:1 5209:1 5219:1 5221:2 5246:1 5248:1 5281:1 5296:1 5298:2 5302:1 5312:1 5314:1 5315:1 5316:1 5328:1 5329:2 5334:2 5338:1 5345:2 5347:2 5355:1 5357:1 5391:1 5394:1 5417:1 5418:1 5436:1 5443:1 5491:1 5501:1 5505:1 5509:1 5540:2 5544:1 5547:1 5556:1 5569:2 5580:3 5586:1 5592:1 5600:2 5603:1 5625:1 5631:1 5646:2 5651:1 5673:1 5684:1 5692:2 5717:1 5735:1 5742:1 5758:2 5761:1 5785:1 5792:1 5806:2 5824:1 5877:1 5878:1 5888:2 5889:1 5896:1 5902:1 5917:1 5942:1 5950:1 5958:1 5979:1 6000:1 6003:1 6006:1 6013:1 6014:3 6020:1 6040:2 6066:4 6082:1 6106:1 6121:1 6142:1 6147:1 6153:1 6164:2 6166:1 6170:1 6182:1 6200:2 6202:1 6207:1 6222:1 6233:2 6245:2 6246:1 6248:1 6268:1 6280:1 6286:1 6293:1 6298:1 6301:2 6306:2 6310:2 6312:9 6320:2 6346:1 6361:1 6388:3 6409:1 6411:2 6433:2 6439:1 6440:3 6450:1 6456:1 6467:3 6484:2 6503:1 6507:1 6513:1 6514:1 6531:2 6533:3 6536:1 6557:2 6562:1 6567:1 6569:1 6571:1 6575:1 6589:4 6617:1 6640:2 6653:2 6654:1 6659:2 6661:2 6665:2 6668:1 6672:1 6681:1 6705:2 6727:1 6748:1 6758:1 6768:2 6786:1 6789:1 6829:7 6840:1 6844:1 6858:1 6865:2 6868:2 6869:1 6875:1 6883:1 6885:2 6886:2 6887:1 6910:1 6917:1 6922:1 6926:1 6930:1 6932:1 6937:1 6938:1 6945:2 6950:1 6959:1 6966:1 7023:1 7033:2 7069:1 7078:1 7084:2 7101:1 7111:1 7115:1 7121:2 7128:1 7152:1 7169:2 7171:4 7181:1 7202:1 7216:1 7219:1 7227:1 7270:1 7277:1 7288:1 7312:3 7332:1 7341:1 7353:1 7354:1 7374:1 7381:2 7383:1 7395:1 7413:1 7415:1 7422:1 7423:1 7427:2 7434:1 7460:1 7490:1 7529:2 7567:1 7577:1 7580:1 7583:1 7598:4 7616:2 7626:1 7647:1 7648:1 7650:1 7654:1 7659:1 7663:1 7670:1 7676:1 7715:2 7718:2 7745:1 7753:1 7761:2 7769:1 7775:1 7785:1 7787:1 7798:1 7799:1 7819:1 7836:1 7846:1 7882:2 7902:1 7903:1 7908:1 7909:1 7929:1 7941:1 7955:2 7959:2 7965:1 7974:1 7976:1 8000:2 8019:4 8025:1 8027:1 8034:1 8050:1 8053:1 8059:2 8062:1 8063:1 8082:1 8092:2 8120:2 8126:3 8127:1 8128:1 8148:1 8150:2 8151:7 8153:1 8157:1 8161:5 8162:1 8163:1 8165:1 8170:2 8171:1 8172:1 8173:4 8174:2 8187:1 8214:3 8232:1 8239:1 8247:1 8268:1 8286:1 8300:1 8301:1 8305:1 8316:1 8337:2 8353:2 8360:1 8371:1 8372:2 8404:1 8405:1 8420:15 8440:4 8442:2 8450:2 8467:1 8474:2 8485:1 8493:2 8502:1 8505:3 8509:1 8542:2 8551:1 8557:1 8572:1 8611:1 8622:1 8642:1 8644:1 8650:2 8678:1 8693:3 8702:1 8710:1 8716:1 8740:1 8776:1 8792:1 8801:1 8823:5 8834:1 8837:2 8850:1 8857:5 8866:1 8874:1 8879:1 8886:1 8903:1 8910:1 8920:1 8930:1 8940:1 8953:1 8956:1 8961:1 8963:6 8987:1 9013:2 9023:1 9035:1 9039:1 9062:1 9077:1 9079:2 9082:1 9093:1 9094:1 9119:2 9125:3 9129:1 9131:1 9132:1 9139:1 9141:1 9149:1 9156:2 9165:1 9175:2 9186:1 9192:1 9194:1 9216:1 9224:1 9227:1 9237:1 9243:1 9268:2 9273:1 9296:1 9305:5 9316:1 9367:1 9370:1 9372:2 9376:1 9378:4 9383:1 9385:1 9390:1 9421:1 9447:1 9461:1 9463:1 9490:2 9500:1 9506:2 9510:1 9522:1 9525:1 9568:6 9583:1 9588:1 9596:1 9622:1 9667:2 9680:1 9685:1 9688:1 9693:1 9715:1 9724:1 9726:1 9743:1 9795:5 9796:2 9815:2 9826:1 9835:1 9848:1 9850:1 9857:1 9872:1 9887:1 9894:1 9900:1 9917:1 9922:2 9923:1 9937:1 9981:1 9996:1 10013:1 10022:1 10026:1 10047:1 10051:3 10091:1 10092:2 10119:4 10127:1 10131:1 10133:1 10135:1 10141:1 10168:1 10169:1 10191:1 10216:3 10221:1 10229:1 10243:1 10253:1 10254:1 10255:1 10273:1 10277:1 10306:1 10317:1 10326:2 10353:1 10368:1 10372:1 10379:1 10382:1 10388:1 10390:2 10393:1 10402:1 10421:1 10422:1 10451:3 10457:1 10483:2 10486:1 10494:1 10500:4 10501:1 10503:2 10511:1 10514:1 10516:1 10532:1 10540:1 10551:1 10554:1 10557:1 10561:1 10566:1 10568:3 10576:3 10578:1 10597:1 10623:1 10626:1 10631:1 10650:5 10656:1 10671:1 10676:2 10707:2 10708:1 10747:1 10760:1 10769:1 10781:1 10783:1 10790:1 10799:1 10821:1 10853:1 10881:1 10884:1 10891:1 10933:1 10945:2 10954:2 10960:4 10963:1 10965:2 10966:1 10967:2 10972:1 10973:1 10982:1 11010:1 11012:1 11013:1 11014:1 11018:1 11020:2 11021:1 11025:2 11026:1 11035:4 11042:1 11055:2 11059:5 11078:1 11082:1 11103:1 11113:1 11137:1 11144:2 11150:1 11197:1 11206:1 11217:1 11223:3 11235:1 11237:2 11246:1 11251:2 11255:1 11263:1 11281:1 11304:2 11324:1 11325:1 11338:1 11358:1 11360:1 11367:1 11370:2 11372:1 11373:1 11377:1 11408:1 11426:5 11429:1 11432:1 11437:3 11445:1 11448:1 11456:1 11464:1 11466:1 11477:1 11480:1 11481:1 11494:1 11499:1 11501:3 11509:1 11514:1 11522:2 11565:1 11572:1 11573:1 11585:2 11605:1 11613:2 11649:1 11662:1 11664:2 11685:1 11697:1 11700:1 11703:1 11719:1 11730:5 11737:1 11742:2 11745:1 11747:1 11761:1 11764:2 11793:1 11813:2 11840:1 11849:1 11861:1 11863:1 11868:1 11869:2 11891:1 11905:1 11926:1 11946:1 11953:1 11963:1 11978:1 11981:1 11996:4 11997:2 12004:1 12010:2 12015:1 12016:2 12026:1 12038:1 12039:1 12052:1 12055:5 12079:1 12082:1 12085:1 12086:4 12095:1 12103:1 12104:3 12118:1 12141:1 12147:1 12159:1 12169:1 12187:1 12214:1 12236:1 12246:3 12251:1 12254:1 12261:1 12263:1 12268:1 12272:1 12285:1 12290:2 12293:1 12322:1 12325:2 12329:1 12332:1 12368:1 12377:1 12380:1 12383:1 12407:2 12412:1 12419:2 12424:1 12435:1 12446:1 12450:3 12451:1 12457:1 12468:1 12473:2 12488:2 12500:1 12530:1 12534:1 12568:1 12623:1 12633:1 12673:1 12679:2 12698:1 12708:1 12711:2 12721:1 12743:1 12769:2 12773:1 12776:1 12780:1 12794:1 12798:2 12802:1 12816:1 12827:1 12831:3 12832:1 12839:1 12843:1 12846:2 12853:1 12890:1 12894:1 12898:1 12908:1 12910:1 12921:1 12925:1 12944:1 12968:1 12977:1 12990:1 12995:1 12996:1 13002:1 13025:2 13028:1 13029:1 13031:1 13034:3 13037:1 13038:5 13039:1 13040:1 13047:2 13050:1 13085:2 13098:1 13100:1 13110:1 13129:1 13130:1 13131:1 13133:2 13138:1 13141:2 13144:1 13157:2 13163:1 13167:2 13169:1 13171:1 13173:2 13210:1 13214:1 13222:1 13226:1 13228:1 13243:1 13244:2 13247:3 13253:2 13260:2 13261:1 13266:1 13267:1 13279:1 13280:1 13295:1 13329:1 13355:2 13359:1 13372:1 13374:1 13385:1 13390:2 13394:1 13395:1 13399:1 13400:1 13403:1 13410:1 13424:1 13436:1 13439:1 13450:1 13465:1 13468:1 13470:1 13472:1 13481:1 13497:1 13540:1 13552:1 13559:2 13577:1 13579:1 13584:2 13585:1 13591:1 13600:1 13608:1 13609:1 13655:1 13661:1 13680:2 13695:2 13697:1 13704:1 13710:1 13713:1 13725:1 13731:2 13743:1 13746:1 13766:2 13768:1 13799:1 13828:5 13856:2 13858:1 13864:2 13934:4 13937:1 13963:2 13965:1 13971:3 13989:1 13991:2 14022:1 14051:1 14109:1 14148:1 14200:1 14222:1 14276:1 14292:1 14294:1 14298:2 14333:4 14339:2 14341:1 14342:3 14346:1 14357:1 14377:3 14386:1 14420:1 14421:1 14424:1 14452:1 14461:1 14473:1 14504:1 14529:1 14556:3 14566:1 14690:2 14704:1 14708:1 14712:1 14720:1 14728:2 14732:3 14744:2 14753:2 14757:1 14789:1 14798:1 14803:1 14804:7 14843:1 14846:1 14855:1 14856:1 14859:1 14860:1 14864:1 14875:1 14877:1 14878:1 14882:2 14888:1 14897:1 14914:1 14915:1 14923:1 14931:2 14941:1 14968:1 14987:2 14989:1 14994:1 15020:4 15045:2 15064:1 15111:1 15150:1 15169:1 15176:2 15216:1 15220:1 15241:1 15245:1 15248:2 15251:1 15271:1 15297:1 15321:1 15325:1 15329:1 15341:1 15348:1 15349:1 15355:1 15365:1 15371:1 15385:1 15387:3 15397:1 15398:1 15400:1 15412:1 15422:1 15439:1 15443:1 15444:1 15446:1 15448:1 15452:1 15454:1 15458:1 15459:1 15468:1 15495:1 15496:1 15514:1 15534:1 15549:2 15554:1 15563:1 15570:1 15571:1 15573:1 15577:1 15580:3 15584:1 15594:1 15598:1 15602:1 15605:1 15608:1 15615:4 15617:2 15623:1 15650:1 15672:1 15678:1 15685:1 15695:1 15701:1 15704:1 15718:1 15720:1 15731:1 15740:1 15741:1 15742:4 15750:2 15761:1 15764:1 15768:1 15789:1 15797:1 15804:2 15811:1 15815:1 15822:1 15842:1 15859:1 15873:1 15933:1 15953:1 15958:2 15959:3 15968:1 16004:1 16015:1 16024:1 16028:3 16029:1 16056:9 16063:2 16064:2 16065:1 16080:1 16082:1 16083:1 16085:1 16087:3 16089:28 16099:1 16104:1 16105:2 16116:1 16138:1 16146:3 16155:2 16159:2 16196:1 16212:1 16235:3 16254:1 16259:1 16278:3 16288:1 16298:1 16300:2 16305:1 16309:2 16312:1 16321:1 16357:1 16361:3 16409:1 16410:2 16424:1 16432:1 16443:1 16454:2 16478:2 16487:2 16508:1 16515:1 16519:1 16525:1 16558:1 16572:1 16573:2 16585:1 16596:1 16598:8 16610:1 16617:1 16631:1 16633:1 16635:1 16638:1 16650:1 16651:1 16669:1 16702:3 16741:1 16744:1 16752:1 16788:1 16798:1 16835:1 16836:1 16839:2 16840:1 16906:1 16907:1 16914:1 16940:2 16947:1 16948:2 16965:1 16971:1 16972:1 16995:1 16996:1 16997:2 17018:1 17022:1 17029:1 17035:1 17053:1 17072:1 17103:1 17108:2 17109:1 17111:1 17112:1 17113:1 17134:1 17135:1 17153:1 17163:1 17179:1 17188:1 17202:1 17205:1 17213:1 17215:2 17225:1 17238:1 17240:1 17244:1 17257:8 17262:1 17320:3 17330:2 17331:1 17338:3 17350:1 17366:1 17384:1 17390:3 17454:1 17458:1 17459:1 17482:1 17503:3 17512:1 17516:2 17554:1 17581:1 17585:1 17602:1 17610:1 17613:2 17620:1 17622:1 17641:1 17663:1 17667:1 17676:1 17685:1 17710:1 17730:1 17732:1 17768:2 17787:1 17804:1 17806:1 17811:2 17814:1 17816:1 17818:1 17832:1 17843:1 17844:1 17874:2 17878:1 17882:1 17894:1 17899:1 17907:2 17911:2 17913:1 17924:1 17936:1 17940:1 17965:1 17969:1 17977:2 17979:1 17985:1 17990:3 17999:1 18005:2 18007:1 18008:1 18027:1 18032:1 18054:1 18072:1 18074:2 18077:1 18080:3 18082:1 18109:1 18135:1 18140:2 18148:1 18164:2 18177:1 18205:2 18227:1 18253:1 18264:1 18276:1 18283:1 18291:1 18328:1 18345:1 18366:1 18369:1 18376:1 18380:2 18396:1 18402:1 18406:1 18407:1 18471:1 18496:2 18519:1 18546:1 18557:1 18561:1 18570:1 18575:1 18577:1 18578:2 18592:2 18604:2 18605:1 18608:1 18610:1 18635:1 18636:1 18641:1 18642:1 18643:1 18662:1 18700:1 18707:1 18719:4 18738:1 18751:2 18759:1 18773:1 18774:1 18786:1 18796:3 18797:1 18834:1 18882:1 18889:2 18892:1 18900:1 18911:1 18926:1 18930:1 18958:1 18962:1 18973:1 18974:1 18982:1 18999:1 19006:1 19011:1 19017:1 19022:1 19023:2 19034:1 19044:1 19061:1 19081:1 19083:1 19085:1 19087:1 19088:2 19136:2 19147:1 19150:1 19180:1 19184:1 19187:1 19198:1 19225:1 19230:1 19235:1 19244:1 19255:1 19263:1 19276:1 19278:1 19291:1 19298:7 19321:2 19339:1 19350:1 19362:1 19371:1 19375:1 19391:1 19405:1 19446:1 19460:1 19461:2 19505:1 19522:2 19559:1 19561:1 19577:1 19584:2 19587:1 19588:1 19603:1 19627:1 19630:1 19633:1 19645:1 19650:1 19660:1 19681:1 19699:1 19700:1 19702:1 19706:1 19707:3 19721:1 19734:1 19743:1 19777:1 19792:1 19800:1 19810:1 19819:1 19821:1 19835:1 19842:1 19849:1 19862:1 19873:1 19885:2 19886:1 19911:1 19924:1 19933:4 19940:2 19948:1 19951:1 19955:2 19961:1 19968:1 19990:1 19991:1 19996:1 20050:1 20056:1 20058:1 20102:1 20105:2 20122:1 20126:2455 20154:1 20184:1 20187:1 20195:2 20237:1 20264:2 20268:1 20272:1 20276:1 20293:2 20305:1 20357:1 20366:1 20424:1 20427:1 20466:1 20480:2 20485:1 20502:1 20513:1 20515:1 20520:1 20524:1 20556:3 20562:2 20577:1 20591:1 20600:1 20630:1 20648:1 20653:2 20660:1 20665:1 20668:3 20676:1 20707:1 20722:1 20756:1 20768:1 20777:3 20782:1 20816:3 20820:1 20826:3 20830:1 20870:1 20894:2 20921:1 20923:4 20951:2 20998:1 21007:1 21016:1 21031:1 21035:3 21049:1 21054:1 21059:1 21062:1 21079:1 21104:1 21116:1 21122:1 21128:3 21140:2 21141:2 21145:1 21146:1 21147:1 21149:1 21165:1 21172:1 21177:2 21192:1 21194:1 21202:1 21227:1 21253:1 21286:2 21288:1 21291:1 21296:1 21315:1 21329:1 21358:1 21359:1 21375:1 21437:1 21457:1 21484:1 21486:1 21489:2 21506:1 21525:1 21536:1 21537:1 21541:1 21542:1 21544:1 21556:1 21560:1 21587:2 21592:1 21594:3 21597:1 21598:1 21601:1 21608:1 21616:1 21625:1 21628:2 21630:2 21631:2 21636:1 21649:1 21650:1 21659:1 21670:2 21677:2 21687:1 21690:1 21694:1 21700:1 21713:1 21730:1 21758:1 21771:1 21781:2 21803:2 21815:1 21818:1 21872:3 21910:1 21912:1 21915:1 21925:1 21933:1 21934:1 21938:1 21949:1 21953:1 21965:2 21967:2 21985:1 22000:2 22003:1 22028:1 22030:1 22042:2 22057:2 22064:2 22099:1 22119:1 22150:1 22152:1 22167:1 22170:1 22181:1 22186:1 22193:1 22198:1 22201:1 22202:1 22222:2 22244:1 22262:1 22270:3 22281:1 22291:1 22294:1 22303:2 22312:2 22319:1 22332:1 22366:1 22374:1 22375:2 22376:2 22378:1 22390:1 22391:1 22392:2 22402:1 22417:1 22426:1 22453:2 22466:1 22476:1 22482:1 22516:2 22547:1 22549:1 22551:1 22557:1 22571:2 22599:1 22636:1 22639:1 22640:1 22658:1 22671:1 22680:1 22711:1 22738:1 22761:1 22782:1 22786:2 22795:1 22804:1 22813:2 22816:2 22837:2 22844:1 22845:8 22847:1 22854:1 22862:1 22879:1 22888:1 22900:1 22903:1 22930:1 22938:1 22953:1 22960:1 22963:1 22973:2 22975:1 22984:1 22985:1 22998:1 23011:1 23017:1 23028:1 23032:1 23039:2 23043:2 23044:1 23047:1 23060:1 23077:1 23094:1 23096:1 23139:1 23144:1 23180:3 23187:1 23193:2 23217:1 23225:1 23226:1 23239:1 23267:1 23280:1 23285:1 23295:1 23301:1 23306:1 23328:1 23339:1 23371:2 23373:1 23379:5 23384:1 23387:1 23397:1 23400:1 23409:1 23424:2 23425:1 23445:1 23484:2 23512:1 23520:1 23534:2 23544:1 23559:1 23564:1 23585:2 23586:1 23600:2 23605:1 23609:2 23625:1 23629:1 23631:1 23644:2 23649:2 23652:1 23669:2 23671:2 23677:1 23680:1 23702:2 23712:3 23724:1 23730:1 23741:1 23748:1 23758:1 23766:2 23767:1 23796:1 23804:1 23807:1 23817:1 23826:1 23832:1 23835:1 23840:1 23841:1 23843:1 23847:1 23848:1 23887:2 23897:1 23900:1 23948:3 23952:1 23956:1 23961:1 23962:4 24008:1 24015:1 24030:2 24031:1 24032:1 24034:4 24043:1 24051:5 24066:1 24075:1 24102:1 24119:1 24142:1 24156:1 24163:1 24200:6 24207:1 24215:1 24216:1 24283:1 24285:1 24289:1 24292:1 24298:1 24314:1 24318:2 24324:1 24348:2 24363:3 24394:1 24399:2 24405:1 24413:1 24417:1 24422:1 24423:1 24424:1 24442:1 24447:1 24448:1 24451:1 24467:1 24473:1 24477:2 24489:1 24499:3 24507:1 24517:1 24547:1 24551:1 24566:1 24582:1 24599:1 24600:2 24602:1 24606:1 24608:3 24609:1 24629:1 24658:1 24670:1 24675:1 24720:1 24732:1 24737:1 24754:1 24769:1 24773:1 24779:3 24793:2 24850:4 24867:5 24875:1 24894:1 24896:1 24912:1 24946:1 24947:1 24963:1 24964:4 24974:2 24975:3 24978:3 24986:1 24988:1 24989:3 24990:5 25005:1 25022:1 25030:1 25047:1 25051:1 25053:1 25060:1 25061:1 25073:3 25096:1 25100:2 25106:1 25114:2 25121:1 25124:1 25136:1 25172:1 25177:1 25207:1 25251:2 25256:2 25258:2 25261:2 25265:1 25267:2 25275:5 25290:1 25305:1 25321:4 25341:1 25349:1 25360:1 25364:2 25422:1 25438:2 25440:1 25442:2 25445:4 25450:1 25457:3 25467:1 25469:1 25486:1 25490:1 25493:1 25496:1 25502:1 25507:3 25511:1 25518:2 25536:1 25537:1 25544:1 25559:1 25564:1 25577:1 25609:1 25617:1 25623:1 25625:1 25638:2 25681:2 25684:1 25695:5 25713:1 25716:1 25719:1 25720:3 25776:1 25782:1 25805:1 25810:1 25846:1 25847:1 25851:1 25859:1 25873:1 25886:1 25889:2 25907:1 25968:1 25974:7 25975:1 25983:2 25985:1 25990:2 25998:2 26009:1 26021:1 26041:1 26048:1 26062:1 26066:1 26090:1 26093:1 26115:1 26120:2 26125:3 26129:2 26149:1 26155:3 26172:1 26190:1 26213:1 26227:2 26230:1 26231:1 26250:2 26251:1 26260:1 26261:1 26262:1 26267:1 26278:1 26283:1 26287:1 26302:2 26309:2 26316:1 26317:1 26328:1 26333:1 26341:1 26358:1 26359:1 26384:1 26399:1 26425:1 26447:1 26471:1 26481:2 26483:1 26485:1 26508:1 26541:2 26545:2 26552:1 26557:2 26583:1 26584:2 26602:1 26603:1 26606:1 26609:1 26626:1 26636:1 26638:1 26669:1 26702:1 26729:1 26739:1 26741:2 26764:1 26772:1 26774:1 26777:2 26804:1 26805:1 26837:1 26838:2 26868:1 26870:1 26885:1 26902:1 26908:1 26919:1 26923:1 26968:1 26978:1 27005:1 27020:1 27028:1 27040:2 27055:1 27057:1 27063:1 27072:2 27074:2 27083:1 27084:2 27085:1 27087:2 27094:3 27095:1 27104:1 27108:2 27115:1 27128:1 27134:3 27140:1 27167:2 27178:2 27191:2 27198:1 27205:1 27206:1 27222:1 27227:1 27247:2 27248:2 27249:2 27285:1 27287:2 27295:1 27297:1 27315:1 27319:1 27332:1 27338:1 27351:1 27376:1 27395:2 27405:1 27408:1 27427:1 27437:1 27439:2 27445:2 27459:1 27467:1 27485:1 27491:1 27512:3 27541:1 27543:1 27546:1 27568:1 27591:1 27601:1 27616:1 27654:1 27667:1 27674:2 27684:1 27685:1 27770:3 27773:1 27794:1 27795:1 27812:1 27817:1 27825:3 27830:1 27846:1 27851:4 27875:1 27881:1 27882:1 27890:1 27896:1 27907:1 27920:1 27929:1 27991:1 27994:1 28041:1 28042:1 28051:2 28053:2 28065:1 28081:2 28092:1 28094:1 28098:1 28102:2 28103:1 28104:3 28109:1 28139:2 28149:2 28151:1 28168:2 28176:1 28191:1 28193:2 28196:2 28205:2 28208:1 28211:3 28212:1 28213:2 28220:2 28281:1 28299:5 28300:2 28349:1 28352:1 28388:1 28389:1 28390:1 28411:1 28412:1 28418:1 28443:1 28444:4 28448:1 28449:1 28477:1 28478:1 28482:1 28493:1 28499:1 28526:1 28548:1 28573:1 28574:2 28580:2 28582:1 28583:1 28586:1 28592:1 28599:1 28613:1 28616:1 28622:3 28628:1 28639:1 28644:1 28670:1 28671:1 28674:1 28691:1 28716:1 28725:1 28728:1 28739:2 28741:2 28742:1 28748:4 28759:1 28775:1 28804:2 28811:1 28827:1 28845:1 28846:1 28854:2 28855:1 28884:1 28896:1 28921:1 28939:1 28960:1 28997:1 29006:2 29007:1 29009:1 29015:1 29018:1 29038:1 29053:2 29056:2 29061:2 29062:1 29071:1 29076:2 29087:1 29092:1 29096:1 29122:1 29123:1 29128:1 29133:1 29145:1 29148:1 29163:2 29178:1 29179:1 29183:2 29188:3 29205:1 29266:2 29268:1 29277:1 29290:2 29296:1 29298:2 29306:1 29345:2 29355:1 29367:1 29369:1 29388:1 29392:1 29402:2 29409:1 29417:2 29422:1 29448:1 29456:1 29467:1 29468:1 29479:1 29483:1 29487:1 29491:1 29504:1 29513:1 29537:1 29577:1 29611:1 29617:1 29620:2 29637:1 29642:2 29647:2 29660:1 29673:1 29674:1 29681:1 29701:2 29708:1 29718:2 29725:1 29731:1 29738:1 29746:1 29760:1 29771:1 29773:2 29774:1 29780:2 29806:11 29811:1 29815:1 29819:1 29821:1 29831:1 29835:1 29837:1 29852:6 29853:2 29861:1 29865:1 29867:1 29882:3 29904:1 29922:1 29930:1 29939:1 29974:1 30020:3 30033:1 30045:2 30047:1 30053:1 30056:1 30075:1 30078:1 30083:1 30090:2 30104:1 30109:1 30114:1 30116:1 30149:1 30160:1 30174:1 30177:1 30182:1 30189:1 30196:1 30212:1 30242:1 30247:3 30251:1 30263:1 30271:1 30275:1 30281:1 30300:1 30325:1 30330:3 30365:2 30367:1 30381:1 30390:2 30392:2 30412:1 30414:1 30428:1 30429:1 30458:1 30459:1 30477:1 30479:1 30494:1 30517:1 30526:1 30554:1 30556:2 30558:2 30567:1 30572:1 30574:1 30578:1 30582:1 30597:1 30599:1 30602:2 30625:1 30676:1 30683:1 30712:1 30713:1 30714:1 30750:2 30759:1 30783:1 30867:2 30869:1 30879:1 30922:4 30931:1 30935:1 30942:1 30949:1 30968:1 30973:5 30978:1 30981:1 30984:1 30996:1 31002:1 31005:2 31013:1 31030:2 31036:1 31046:2 31054:1 31071:1 31083:2 31087:1 31090:3 31098:1 31100:1 31121:1 31124:1 31133:2 31135:1 31143:2 31179:1 31182:3 31183:1 31190:1 31195:1 31197:1 31198:1 31201:1 31208:1 31228:1
17 16:1 19:2 33:1 35:1 40:1 49:1 61:2 62:1 69:1 86:1 110:1 122:1 164:1 173:7 183:1 186:2 192:1 199:1 224:1 227:1 240:1 256:2 271:1 278:2 304:2 310:2 343:1 345:1 351:1 357:2 358:1 398:1 401:2 404:1 419:1 420:1 422:1 426:1 493:1 503:1 504:2 509:1 511:1 513:1 577:1 591:1 633:2 640:1 641:1 647:1 661:1 690:1 695:1 703:1 708:3 719:1 726:2 781:1 815:1 817:1 824:1 839:1 846:3 857:1 864:5 928:2 934:1 969:1 970:1 973:2 977:6 979:3 980:1 982:2 985:1 986:4 990:2 991:3 992:1 997:1 1002:1 1003:2 1007:1 1008:2 1011:2 1028:1 1034:4 1036:1 1039:1 1074:3 1093:1 1094:2 1095:1 1098:2 1114:1 1116:1 1119:1 1129:1 1133:1 1145:1 1150:1 1161:1 1165:1 1166:1 1168:2 1175:1 1186:1 1192:1 1204:1 1210:1 1220:1 1221:1 1222:1 1231:1 1248:1 1258:1 1268:2 1269:2 1318:1 1327:1 1330:1 1339:2 1343:1 1348:1 1360:1 1375:1 1377:1 1382:1 1398:1 1399:1 1410:1 1413:1 1414:1 1433:1 1435:1 1460:1 1462:1 1464:1 1472:1 1487:1 1488:1 1497:1 1535:1 1540:1 1560:1 1564:1 1565:2 1601:1 1608:1 1613:1 1625:1 1638:2 1642:1 1644:1 1650:1 1669:1 1676:1 1688:4 1702:1 1708:1 1714:1 1717:1 1719:1 1722:1 1736:2 1749:1 1771:1 1786:1 1790:2 1794:1 1797:3 1816:1 1825:1 1826:1 1827:1 1833:2 1842:1 1851:1 1857:1 1860:1 1867:1 1868:1 1871:1 1873:1 1895:1 1896:2 1904:1 1905:1 1910:1 1911:1 1921:3 1922:1 1932:1 1933:1 1942:1 1950:1 1956:1 1961:2 1963:2 1964:1 1972:1 1975:1 1991:1 2011:1 2018:2 2027:2 2033:1 2036:1 2041:1 2066:1 2078:1 2099:1 2108:1 2110:1 2126:1 2127:2 2136:1 2139:1 2155:1 2157:1 2164:1 2187:2 2221:1 2224:1 2226:2 2253:2 2261:1 2270:1 2282:1 2307:1 2356:1 2395:2 2433:1 2442:1 2467:1 2470:1 2486:1 2504:2 2508:1 2519:1 2525:4 2530:2 2531:1 2533:1 2543:5 2550:1 2551:2 2552:2 2556:2 2558:1 2561:1 2568:1 2569:5 2584:1 2600:2 2616:2 2633:1 2638:1 2648:1 2650:1 2697:1 2698:1 2701:2 2721:1 2737:5 2741:2 2757:2 2765:1 2770:1 2777:1 2778:2 2783:1 2784:1 2789:1 2798:1 2799:1 2804:3 2809:1 2816:1 2821:1 2856:1 2870:1 2872:2 2892:1 2923:2 2939:1 2964:1 2982:1 2991:1 3001:1 3004:1 3023:1 3027:1 3031:1 3032:3 3044:1 3086:1 3101:1 3106:1 3109:1 3110:2 3112:2 3117:1 3124:1 3131:1 3138:1 3142:1 3144:1 3147:1 3168:1 3169:1 3189:4 3197:4 3210:4 3232:1 3247:1 3249:1 3257:2 3266:1 3282:1 3295:1 3310:1 3313:3 3315:2 3320:1 3322:2 3327:1 3341:1 3364:1 3365:1 3376:1 3392:1 3412:1 3419:3 3420:1 3455:1 3457:1 3463:1 3464:2 3487:1 3495:1 3497:1 3500:1 3524:1 3552:1 3563:3 3589:2 3630:1 3656:1 3671:2 3708:1 3745:1 3747:2 3756:1 3772:1 3778:1 3779:3 3795:1 3797:1 3798:1 3817:1 3848:2 3849:1 3869:3 3877:1 3879:1 3881:5 3896:1 3904:1 3913:1 3920:1 3926:2 3936:1 3959:1 3971:1 3992:1 3997:1 4003:2 4007:1 4018:2 4025:1 4032:2 4052:2 4061:1 4063:1 4091:1 4093:1 4097:1 4101:1 4127:3 4128:1 4131:1 4132:1 4149:1 4187:1 4204:2 4207:3 4227:1 4247:1 4255:1 4262:3 4264:1 4268:1 4282:1 4284:2 4293:1 4311:1 4312:1 4323:1 4325:1 4336:1 4337:1 4385:1 4386:1 4389:1 4426:1 4443:1 4446:1 4448:1 4463:1 4468:1 4473:1 4480:1 4487:1 4490:2 4501:1 4507:1 4518:2 4520:1 4527:1 4535:2 4579:1 4604:1 4606:1 4608:1 4636:1 4642:1 4645:1 4648:1 4650:1 4654:1 4662:1 4673:1 4712:2 4716:2 4749:1 4754:1 4761:4 4765:1 4767:1 4779:1 4780:2 4785:1 4787:3 4814:1 4816:1 4819:1 4835:1 4842:1 4843:1 4854:2 4855:1 4881:1 4891:1 4892:1 4903:1 4906:1 4918:1 4931:1 4955:1 4964:1 4965:1 4970:2 4974:1 4981:1 4984:1 4985:5 4997:2 5008:1 5012:1 5015:1 5024:1 5050:2 5070:3 5076:1 5088:2 5107:1 5128:1 5147:2 5154:5 5161:1 5162:1 5172:1 5176:1 5179:1 5180:1 5188:3 5190:1 5192:4 5206:1 5209:1 5219:2 5221:2 5246:1 5248:1 5281:1 5296:1 5298:2 5302:1 5312:1 5314:1 5315:1 5316:1 5328:1 5329:2 5334:2 5338:1 5345:2 5347:2 5355:1 5357:1 5391:1 5394:1 5417:1 5418:1 5436:1 5443:1 5491:1 5501:1 5505:1 5509:1 5540:2 5544:1 5547:1 5556:1 5569:2 5580:3 5586:1 5592:1 5600:2 5603:1 5625:1 5631:1 5646:2 5651:1 5673:1 5684:1 5692:2 5717:1 5721:1 5735:1 5742:1 5758:2 5761:1 5785:1 5792:1 5806:2 5824:1 5877:1 5878:1 5888:2 5889:1 5896:1 5902:1 5917:1 5942:1 5950:1 5958:1 5979:1 6000:2 6003:1 6006:1 6013:1 6014:3 6020:1 6040:2 6066:4 6082:1 6106:1 6121:1 6142:1 6147:1 6153:1 6164:2 6166:1 6170:1 6182:1 6200:2 6202:1 6207:1 6222:1 6233:2 6245:2 6246:1 6248:1 6268:1 6280:1 6286:1 6293:1 6298:1 6301:2 6306:2 6310:2 6312:9 6320:2 6346:1 6361:1 6388:3 6409:1 6411:2 6433:2 6439:1 6440:3 6450:1 6456:1 6467:3 6484:2 6503:1 6507:1 6513:1 6514:1 6531:2 6533:3 6536:1 6557:2 6562:1 6567:1 6569:1 6571:1 6575:1 6579:1 6589:4 6594:1 6617:1 6640:2 6653:2 6654:1 6659:2 6661:2 6665:2 6668:1 6672:1 6681:1 6705:2 6727:1 6748:1 6758:1 6768:2 6786:1 6789:1 6829:7 6840:1 6844:1 6855:1 6858:1 6865:2 6868:2 6869:1 6875:1 6883:1 6885:2 6886:2 6887:1 6910:1 6917:1 6922:1 6926:1 6930:1 6932:1 6937:1 6938:1 6945:2 6950:1 6959:1 6966:1 7023:1 7033:2 7064:1 7069:1 7078:1 7084:2 7101:1 7111:1 7115:1 7121:2 7128:1 7152:1 7169:2 7171:4 7181:1 7202:1 7209:1 7216:1 7219:1 7227:1 7270:1 7277:1 7288:1 7312:3 7332:1 7341:1 7353:1 7354:1 7374:1 7381:2 7383:1 7395:1 7413:1 7415:1 7422:1 7423:1 7427:2 7434:1 7460:1 7490:1 7529:2 7567:1 7577:1 7580:1 7583:1 7598:4 7616:2 7626:1 7647:1 7648:1 7650:1 7654:1 7659:1 7663:1 7670:1 7676:1 7715:2 7718:2 7745:1 7753:1 7761:2 7769:1 7775:1 7785:1 7787:1 7798:1 7799:1 7819:1 7836:1 7846:1 7882:2 7902:1 7903:1 7908:1 7909:1 7929:1 7941:1 7955:2 7959:2 7965:1 7974:1 7976:1 8000:2 8019:4 8025:1 8027:1 8034:1 8050:1 8053:1 8059:2 8062:1 8063:1 8082:1 8092:2 8114:1 8120:2 8126:3 8127:1 8128:1 8148:1 8150:2 8151:7 8153:1 8157:1 8161:5 8162:1 8163:1 8165:1 8170:2 8171:2 8172:1 8173:4 8174:2 8187:1 8214:3 8221:1 8232:1 8239:1 8247:1 8268:1 8286:1 8300:1 8301:1 8305:1 8316:1 8337:2 8353:2 8360:1 8371:1 8372:2 8404:1 8405:1 8420:17 8440:4 8442:2 8450:2 8467:1 8474:2 8485:1 8493:2 8502:1 8505:3 8509:1 8542:2 8551:1 8557:1 8572:1 8611:1 8622:1 8642:1 8644:1 8650:2 8678:1 8693:3 8702:1 8710:1 8716:1 8740:1 8776:1 8792:1 8801:1 8823:5 8834:1 8837:2 8850:1 8857:6 8866:1 8874:1 8879:1 8886:1 8903:1 8910:1 8920:1 8930:1 8940:1 8953:1 8956:1 8961:1 8963:6 8987:1 9013:2 9023:1 9035:1 9039:1 9062:1 9077:1 9079:2 9082:1 9093:1 9094:1 9119:2 9125:3 9129:1 9131:1 9132:1 9139:1 9141:1 9149:1 9156:2 9165:1 9168:1 9175:2 9186:1 9192:1 9194:1 9216:1 9224:1 9227:1 9237:1 9243:1 9261:1 9263:1 9268:2 9273:1 9283:1 9296:1 9305:5 9316:1 9367:1 9370:1 9372:2 9376:1 9378:4 9383:1 9385:1 9390:1 9405:1 9410:1 9421:1 9447:1 9461:1 9463:1 9490:2 9500:1 9506:2 9510:1 9522:1 9525:1 9568:7 9583:1 9588:1 9596:1 9622:1 9651:1 9667:2 9680:1 9681:1 9685:1 9688:1 9693:1 9715:1 9724:1 9726:1 9743:1 9795:5 9796:2 9815:2 9826:1 9835:1 9848:1 9850:1 9857:1 9872:1 9887:1 9894:1 9900:1 9917:1 9922:2 9923:1 9937:1 9948:1 9949:1 9981:1 9996:1 10013:1 10022:1 10026:1 10047:1 10051:3 10091:1 10092:2 10119:4 10122:1 10127:1 10131:1 10133:1 10135:1 10141:1 10158:1 10168:1 10169:1 10175:1 10191:1 10216:3 10221:1 10229:1 10243:1 10253:1 10254:1 10255:2 10273:1 10277:1 10306:1 10317:1 10326:2 10353:1 10368:1 10372:1 10379:1 10382:1 10388:1 10390:2 10393:1 10402:1 10421:1 10422:1 10451:3 10457:1 10483:2 10486:1 10494:1 10500:4 10501:1 10503:2 10511:1 10514:1 10516:1 10532:1 10540:1 10548:1 10551:1 10554:1 10557:1 10561:1 10566:1 10568:3 10576:3 10578:1 10597:1 10623:1 10626:1 10631:1 10650:5 10656:1 10671:1 10676:2 10707:2 10708:1 10747:1 10760:1 10769:1 10781:1 10783:1 10790:1 10799:1 10812:1 10821:1 10847:1 10853:1 10881:1 10884:1 10891:1 10933:1 10945:2 10954:2 10960:4 10963:1 10965:2 10966:1 10967:2 10972:1 10973:1 10982:1 11010:1 11012:1 11013:1 11014:1 11018:1 11020:2 11021:1 11025:2 11026:1 11035:4 11042:1 11055:2 11059:5 11078:1 11082:1 11093:2 11103:1 11113:1 11137:1 11144:2 11150:1 11197:1 11206:1 11217:1 11223:3 11235:3 11237:2 11246:1 11251:2 11255:1 11263:1 11281:1 11304:2 11324:1 11325:1 11338:1 11358:1 11360:1 11367:1 11370:2 11372:1 11373:1 11377:1 11408:1 11426:5 11429:1 11432:1 11437:3 11445:1 11448:1 11450:1 11456:1 11464:1 11466:1 11477:1 11480:1 11481:1 11494:1 11499:1 11501:3 11509:1 11514:1 11522:2 11565:1 11572:1 11573:2 11585:2 11605:1 11613:2 11649:1 11656:1 11662:1 11664:2 11685:1 11697:1 11700:1 11703:1 11719:1 11730:5 11737:1 11742:2 11745:1 11747:1 11761:1 11764:2 11784:1 11793:1 11813:2 11840:1 11849:1 11861:1 11863:1 11868:1 11869:2 11891:1 11905:1 11926:1 11946:1 11953:1 11963:1 11978:1 11981:1 11996:4 11997:2 12004:1 12010:2 12015:1 12016:2 12026:1 12038:1 12039:1 12052:1 12055:5 12079:1 12082:1 12085:1 12086:4 12095:1 12103:1 12104:3 12118:1 12141:1 12147:1 12159:1 12169:1 12187:1 12214:1 12236:1 12246:3 12251:1 12254:1 12261:1 12263:1 12268:1 12272:1 12285:2 12290:2 12293:1 12322:1 12325:2 12329:1 12332:1 12368:1 12377:1 12380:1 12383:1 12407:2 12412:1 12419:2 12424:1 12435:1 12446:1 12450:3 12451:1 12457:1 12462:1 12468:1 12473:2 12488:3 12500:1 12530:1 12534:1 12568:1 12569:1 12623:1 12633:1 12673:1 12677:1 12679:2 12698:1 12708:1 12711:4 12721:1 12743:1 12769:2 12773:1 12776:1 12780:1 12794:1 12798:2 12802:1 12816:1 12827:1 12831:3 12832:1 12839:1 12843:1 12846:2 12853:1 12890:1 12894:1 12898:1 12908:1 12910:1 12921:1 12925:1 12944:1 12968:1 12977:1 12990:1 12995:1 12996:1 13002:1 13025:2 13028:1 13029:1 13031:1 13034:3 13037:1 13038:5 13039:1 13040:1 13047:2 13050:1 13085:2 13098:1 13100:1 13110:1 13129:1 13130:1 13131:1 13133:2 13138:1 13141:2 13144:1 13157:2 13163:1 13167:2 13169:1 13171:1 13173:2 13210:1 13214:1 13222:1 13226:1 13228:1 13243:1 13244:2 13246:1 13247:3 13253:2 13260:2 13261:1 13266:1 13267:1 13279:1 13280:1 13295:1 13329:1 13355:2 13359:1 13372:1 13374:1 13385:1 13390:2 13394:1 13395:1 13399:1 13400:1 13403:1 13410:1 13424:1 13436:1 13439:1 13450:1 13465:1 13468:1 13470:1 13472:1 13481:1 13497:1 13540:1 13552:1 13559:2 13577:1 13579:1 13584:2 13585:1 13591:1 13600:1 13608:1 13609:1 13655:1 13661:1 13680:2 13695:2 13697:1 13704:1 13710:1 13713:1 13725:1 13731:2 13743:1 13746:1 13766:2 13768:1 13799:1 13828:5 13856:2 13858:1 13864:2 13934:4 13937:1 13949:1 13963:2 13965:1 13971:4 13989:1 13991:2 14022:1 14032:1 14051:1 14109:1 14148:1 14200:1 14222:1 14238:1 14276:1 14292:2 14294:1 14298:2 14333:4 14339:2 14341:1 14342:3 14346:1 14357:1 14377:3 14386:1 14387:1 14420:1 14421:1 14424:1 14452:1 14461:1 14473:1 14504:1 14529:1 14556:4 14566:1 14690:2 14704:1 14708:1 14712:1 14720:1 14728:2 14732:3 14744:3 14753:2 14757:1 14789:1 14798:1 14803:1 14804:7 14815:2 14843:1 14846:1 14855:2 14856:1 14859:1 14860:1 14864:1 14875:1 14877:1 14878:1 14882:2 14888:1 14897:1 14900:1 14914:1 14915:1 14923:1 14931:2 14941:1 14968:1 14987:2 14989:1 14994:1 15020:4 15045:2 15064:1 15111:1 15150:1 15169:1 15176:2 15216:1 15220:1 15227:1 15241:1 15245:1 15248:2 15251:1 15271:1 15297:1 15321:1 15325:1 15329:1 15341:1 15348:1 15349:1 15355:1 15365:1 15371:1 15385:1 15387:3 15397:1 15398:1 15400:1 15412:1 15422:1 15439:1 15443:1 15444:1 15446:1 15448:1 15452:1 15454:1 15458:1 15459:1 15468:1 15485:2 15495:1 15496:1 15514:1 15534:1 15549:2 15554:1 15563:1 15570:1 15571:1 15573:1 15577:1 15580:3 15584:1 15594:1 15598:1 15602:1 15605:1 15608:1 15615:4 15617:2 15623:1 15650:1 15672:1 15678:1 15685:1 15695:1 15701:1 15704:1 15718:1 15720:1 15731:1 15740:1 15741:1 15742:4 15750:2 15761:1 15764:1 15768:1 15789:1 15797:2 15804:2 15811:1 15815:1 15822:1 15842:1 15859:1 15873:1 15933:1 15953:1 15958:2 15959:3 15968:1 16004:1 16015:1 16024:1 16028:3 16029:1 16039:1 16056:9 16063:2 16064:2 16065:1 16080:1 16082:1 16083:1 16085:1 16087:3 16089:29 16099:1 16104:1 16105:2 16116:1 16138:1 16146:3 16155:2 16159:2 16196:1 16212:1 16235:3 16254:1 16259:1 16278:3 16288:1 16298:1 16300:2 16305:1 16309:2 16312:1 16321:1 16322:1 16357:1 16361:3 16399:1 16409:1 16410:2 16424:1 16432:1 16443:1 16454:2 16478:2 16487:2 16508:1 16515:1 16519:1 16525:1 16558:1 16572:1 16573:2 16585:1 16596:1 16598:8 16610:1 16617:1 16631:1 16633:1 16635:1 16638:1 16650:1 16651:1 16669:1 16702:3 16741:1 16744:1 16752:1 16776:1 16788:1 16798:1 16835:1 16836:1 16839:2 16840:1 16906:1 16907:1 16914:1 16940:2 16947:1 16948:2 16965:1 16971:1 16972:1 16989:1 16995:1 16996:1 16997:2 17018:1 17022:1 17028:1 17029:1 17035:1 17053:1 17072:1 17103:1 17108:2 17109:1 17111:1 17112:1 17113:1 17134:1 17135:1 17152:1 17153:1 17163:2 17179:1 17188:1 17202:1 17205:1 17213:1 17215:2 17217:1 17225:1 17238:1 17240:1 17244:1 17257:8 17262:1 17320:4 17330:2 17331:1 17338:3 17350:1 17366:1 17384:1 17390:3 17454:1 17458:1 17459:1 17482:1 17503:3 17512:1 17516:2 17554:1 17581:1 17585:1 17602:1 17610:1 17613:2 17620:1 17622:1 17641:1 17663:1 17667:1 17676:1 17685:1 17710:1 17730:1 17732:1 17768:2 17772:1 17787:1 17804:1 17806:1 17811:2 17814:1 17816:1 17818:1 17832:1 17843:1 17844:1 17874:2 17878:1 17882:1 17894:1 17899:1 17907:2 17911:2 17913:1 17921:1 17924:1 17936:1 17940:1 17965:1 17969:1 17977:2 17979:1 17985:1 17990:3 17999:1 18005:2 18006:1 18007:1 18008:1 18027:1 18032:1 18054:1 18072:1 18074:2 18077:1 18080:3 18082:1 18109:1 18135:1 18140:2 18148:1 18164:2 18177:1 18205:2 18227:1 18253:1 18264:1 18276:1 18283:1 18291:1 18328:1 18345:1 18366:1 18369:1 18376:1 18380:2 18396:1 18402:1 18406:1 18407:1 18471:1 18496:2 18519:1 18546:1 18557:1 18561:1 18570:1 18575:1 18577:1 18578:2 18592:2 18604:2 18605:1 18608:1 18610:1 18635:1 18636:1 18641:1 18642:1 18643:1 18662:1 18700:1 18707:1 18719:4 18738:1 18751:2 18759:1 18773:1 18774:1 18786:1 18796:3 18797:1 18834:1 18882:1 18889:2 18892:1 18900:1 18911:1 18926:1 18930:1 18958:1 18962:1 18973:1 18974:1 18982:1 18999:1 19006:1 19011:1 19017:1 19022:1 19023:2 19034:1 19044:1 19061:1 19081:1 19083:1 19085:1 19087:1 19088:2 19136:2 19147:1 19150:1 19180:1 19184:1 19187:1 19198:1 19225:1 19230:1 19235:1 19244:1 19255:1 19263:1 19276:1 19278:1 19291:1 19298:7 19321:2 19339:1 19350:1 19362:1 19371:1 19375:1 19391:1 19405:1 19446:1 19460:1 19461:2 19505:1 19522:2 19559:1 19561:1 19577:1 19584:2 19587:1 19588:1 19603:1 19627:1 19630:1 19633:1 19645:1 19650:1 19660:1 19678:1 19681:1 19699:1 19700:1 19702:1 19706:1 19707:3 19721:1 19734:1 19743:1 19777:1 19792:1 19800:1 19810:1 19819:1 19821:1 19835:1 19842:1 19849:1 19862:1 19873:1 19885:2 19886:1 19901:1 19911:1 19924:1 19933:4 19940:2 19948:1 19951:1 19955:2 19961:1 19968:1 19990:1 19991:1 19996:1 20050:1 20056:1 20058:1 20102:1 20105:2 20122:1 20126:2544 20154:1 20184:1 20187:1 20195:2 20237:1 20264:2 20268:1 20272:1 20276:1 20293:2 20299:1 20305:1 20357:1 20366:1 20398:1 20424:1 20427:1 20466:1 20474:1 20480:2 20485:1 20502:1 20513:1 20515:1 20520:1 20524:1 20556:3 20562:2 20577:1 20591:1 20600:1 20630:1 20648:1 20653:2 20660:1 20665:1 20668:3 20676:1 20707:1 20722:1 20756:1 20768:1 20777:3 20782:1 20816:3 20820:1 20826:3 20830:1 20870:1 20894:2 20921:1 20923:6 20951:2 20998:1 21007:1 21016:1 21031:1 21035:4 21049:1 21054:2 21059:1 21062:1 21079:1 21104:1 21116:1 21122:1 21128:3 21140:2 21141:2 21145:1 21146:1 21147:1 21149:1 21165:1 21172:1 21177:2 21192:1 21194:1 21202:1 21227:1 21253:1 21286:2 21288:1 21291:1 21296:1 21315:1 21329:1 21358:1 21359:1 21375:1 21437:1 21457:1 21484:1 21486:1 21489:2 21506:1 21525:1 21536:1 21537:1 21541:2 21542:1 21544:1 21556:1 21560:1 21587:2 21592:1 21594:3 21597:1 21598:1 21601:1 21608:1 21616:1 21625:1 21628:2 21630:2 21631:2 21636:1 21647:1 21649:1 21650:1 21659:1 21670:2 21677:2 21687:3 21690:1 21694:1 21700:1 21713:1 21729:1 21730:1 21758:1 21771:1 21781:2 21803:2 21815:1 21818:1 21872:3 21910:1 21912:1 21915:1 21925:1 21933:1 21934:1 21938:1 21949:1 21953:1 21965:2 21967:2 21985:1 22000:2 22003:1 22028:1 22030:1 22042:2 22053:1 22057:2 22064:2 22099:1 22119:1 22150:1 22152:1 22155:1 22167:1 22170:1 22181:1 22186:1 22193:1 22198:1 22201:1 22202:1 22222:2 22244:1 22262:1 22270:3 22275:1 22281:1 22291:1 22294:1 22303:2 22312:2 22319:1 22332:1 22366:1 22374:1 22375:2 22376:2 22378:1 22390:1 22391:1 22392:2 22402:1 22417:1 22426:1 22453:2 22466:1 22476:1 22482:1 22516:2 22547:1 22549:1 22551:1 22557:1 22571:2 22599:1 22621:1 22636:1 22639:1 22640:1 22658:1 22671:1 22680:1 22711:1 22738:1 22761:1 22782:1 22786:2 22795:1 22804:1 22813:2 22816:2 22837:2 22844:1 22845:8 22847:1 22854:1 22862:1 22879:1 22888:1 22900:1 22903:1 22930:1 22938:1 22953:1 22960:1 22963:1 22973:2 22975:1 22984:1 22985:1 22998:1 23011:1 23017:1 23028:1 23032:1 23039:2 23043:2 23044:1 23047:1 23060:1 23077:1 23094:1 23096:1 23139:1 23144:1 23180:3 23187:1 23193:2 23217:1 23225:1 23226:1 23239:1 23254:1 23267:1 23280:1 23285:1 23295:1 23301:1 23306:1 23328:1 23339:1 23371:2 23373:1 23379:5 23384:1 23387:1 23397:1 23400:1 23409:1 23424:2 23425:3 23445:1 23484:2 23498:1 23512:1 23520:1 23534:2 23544:1 23559:1 23564:1 23585:2 23586:1 23600:2 23605:1 23609:2 23625:1 23629:1 23631:1 23644:2 23649:2 23652:1 23669:2 23671:2 23677:1 23680:1 23702:2 23712:3 23724:1 23730:1 23741:1 23748:1 23758:1 23766:2 23767:1 23796:1 23804:1 23807:1 23817:1 23826:1 23832:1 23835:1 23840:1 23841:1 23843:1 23847:1 23848:1 23887:2 23897:1 23900:1 23948:3 23952:1 23956:1 23961:1 23962:4 24008:1 24015:1 24030:2 24031:1 24032:1 24034:4 24043:1 24051:5 24066:1 24075:1 24102:1 24119:1 24142:1 24156:1 24163:1 24200:6 24207:1 24215:1 24216:1 24221:1 24283:1 24285:1 24289:1 24292:1 24298:1 24314:1 24318:2 24324:1 24348:2 24363:3 24388:1 24394:1 24399:2 24403:1 24405:1 24407:1 24413:1 24417:1 24422:1 24423:1 24424:1 24442:1 24447:1 24448:1 24451:1 24467:1 24473:1 24477:2 24489:1 24499:3 24507:1 24517:1 24547:1 24551:1 24566:1 24582:1 24599:1 24600:2 24602:1 24606:1 24608:3 24609:1 24629:1 24658:1 24670:1 24675:1 24720:1 24723:1 24732:1 24737:1 24754:1 24769:1 24773:1 24779:3 24793:2 24850:4 24867:5 24875:1 24894:1 24896:1 24912:1 24946:1 24947:1 24963:1 24964:4 24974:2 24975:3 24978:3 24986:1 24988:1 24989:3 24990:5 25005:1 25022:1 25030:1 25047:2 25051:1 25053:1 25060:1 25061:1 25073:3 25096:1 25100:2 25106:1 25114:2 25121:1 25124:1 25136:1 25172:1 25177:1 25207:1 25251:2 25253:1 25256:2 25258:2 25261:2 25265:1 25267:2 25275:5 25290:1 25305:1 25321:4 25341:1 25349:1 25360:1 25364:2 25422:1 25438:2 25440:1 25442:2 25445:4 25450:1 25457:3 25465:1 25467:1 25469:1 25479:1 25486:1 25490:1 25493:1 25496:1 25502:1 25507:3 25511:1 25518:2 25536:1 25537:1 25544:1 25559:1 25564:1 25577:1 25609:1 25617:1 25623:1 25625:1 25638:2 25681:2 25684:1 25690:1 25695:5 25713:1 25716:1 25719:1 25720:3 25776:1 25782:1 25805:1 25810:1 25846:1 25847:1 25851:1 25859:1 25873:1 25886:1 25889:2 25907:1 25968:1 25974:8 25975:1 25983:2 25985:1 25990:2 25998:2 26009:1 26021:1 26041:1 26048:1 26062:1 26066:1 26090:1 26093:1 26102:1 26106:1 26115:1 26120:2 26125:3 26129:2 26149:1 26155:3 26172:1 26190:1 26213:1 26227:2 26230:1 26231:1 26250:2 26251:1 26260:1 26261:1 26262:1 26267:1 26278:1 26283:1 26287:1 26302:2 26309:2 26316:1 26317:1 26328:1 26333:1 26341:1 26358:1 26359:1 26384:1 26399:1 26425:1 26447:1 26471:1 26481:2 26483:1 26485:1 26508:1 26541:2 26545:2 26552:1 26557:4 26583:1 26584:2 26585:1 26602:1 26603:1 26606:1 26609:1 26626:1 26636:1 26638:1 26669:1 26702:1 26729:1 26739:1 26741:4 26764:1 26772:1 26774:1 26777:2 26799:1 26804:1 26805:1 26837:1 26838:2 26868:1 26870:1 26885:1 26902:1 26908:1 26919:1 26923:1 26968:1 26978:1 27005:1 27020:1 27028:1 27040:2 27055:1 27057:1 27063:1 27072:2 27074:2 27083:1 27084:2 27085:1 27087:2 27094:3 27095:1 27103:1 27104:1 27108:2 27115:1 27128:1 27134:3 27140:1 27167:2 27178:2 27191:2 27198:1 27205:1 27206:1 27222:1 27227:1 27247:2 27248:2 27249:2 27285:1 27287:2 27295:1 27297:1 27315:1 27319:1 27332:1 27338:1 27351:1 27376:1 27395:2 27405:1 27408:1 27427:1 27437:1 27439:2 27445:2 27459:1 27467:1 27485:1 27491:1 27512:3 27541:1 27543:1 27546:1 27568:1 27591:1 27601:1 27616:1 27654:1 27667:1 27674:2 27684:1 27685:1 27770:3 27773:1 27794:1 27795:1 27812:1 27817:1 27825:3 27830:1 27846:1 27851:4 27875:1 27881:1 27882:1 27890:1 27896:1 27907:1 27920:1 27929:1 27957:1 27991:1 27994:1 28041:1 28042:1 28051:2 28053:2 28065:1 28078:2 28081:2 28092:1 28094:1 28098:1 28102:2 28103:1 28104:3 28109:1 28139:2 28149:2 28151:1 28168:2 28176:1 28191:1 28193:2 28196:2 28205:2 28208:1 28211:3 28212:1 28213:2 28220:2 28225:1 28249:1 28281:1 28299:5 28300:2 28349:1 28352:1 28388:1 28389:1 28390:1 28411:1 28412:1 28414:1 28418:1 28443:1 28444:4 28448:1 28449:1 28477:1 28478:1 28482:1 28493:1 28499:1 28526:1 28528:1 28530:1 28548:1 28573:1 28574:2 28580:2 28582:1 28583:1 28586:1 28592:1 28599:1 28613:1 28616:1 28622:4 28628:1 28639:1 28644:1 28670:1 28671:1 28674:1 28691:1 28716:1 28725:1 28728:1 28739:2 28741:2 28742:1 28748:4 28759:1 28775:1 28804:2 28811:1 28827:1 28845:1 28846:1 28854:2 28855:1 28884:1 28896:1 28921:1 28939:1 28960:1 28997:1 29006:2 29007:1 29009:1 29015:1 29018:1 29038:1 29053:2 29056:2 29059:1 29061:2 29062:1 29071:1 29076:3 29087:1 29092:1 29096:1 29122:1 29123:1 29128:1 29133:1 29145:1 29148:1 29163:2 29178:1 29179:1 29183:2 29188:4 29205:1 29253:2 29266:2 29268:1 29277:1 29290:2 29296:1 29298:2 29306:1 29345:2 29355:1 29367:1 29369:1 29388:1 29392:1 29402:2 29409:1 29417:2 29422:1 29448:1 29456:1 29467:1 29468:1 29479:1 29483:1 29487:1 29491:1 29504:1 29513:1 29537:1 29577:1 29611:1 29617:1 29620:2 29637:1 29642:2 29647:2 29660:1 29673:1 29674:1 29681:1 29701:2 29708:1 29718:2 29725:1 29731:1 29738:1 29746:1 29760:1 29771:1 29773:2 29774:1 29780:2 29806:11 29811:1 29815:1 29819:1 29821:1 29831:1 29835:1 29837:1 29852:6 29853:2 29861:1 29865:2 29867:1 29882:3 29904:1 29922:1 29930:1 29939:1 29974:1 29979:1 30020:3 30033:1 30045:2 30047:1 30053:1 30056:1 30075:1 30078:1 30083:1 30090:2 30104:1 30109:1 30114:1 30116:1 30149:1 30160:1 30174:1 30177:1 30182:1 30189:1 30196:1 30212:1 30242:1 30247:3 30251:1 30263:1 30271:1 30275:1 30281:1 30300:1 30317:1 30325:1 30330:3 30365:2 30367:1 30381:1 30390:2 30392:2 30412:1 30414:1 30428:1 30429:1 30458:1 30459:1 30477:1 30479:1 30494:1 30517:1 30526:1 30554:1 30556:2 30558:2 30567:1 30572:1 30574:1 30578:1 30582:1 30597:1 30599:1 30602:2 30625:1 30676:1 30683:1 30712:1 30713:1 30714:1 30750:2 30759:1 30783:1 30812:1 30867:2 30869:1 30879:1 30922:4 30931:1 30935:1 30942:1 30949:1 30968:1 30973:5 30978:1 30981:1 30984:1 30996:1 31002:1 31005:2 31013:1 31030:2 31036:1 31046:2 31054:1 31071:1 31083:2 31087:1 31090:3 31098:1 31100:1 31121:1 31124:1 31133:2 31135:1 31143:2 31179:1 31182:3 31183:1 31190:1 31195:1 31197:1 31198:1 31201:1 31208:1 31228:1
17 16:1 19:2 33:1 35:1 40:1 49:1 61:2 62:1 69:1 86:1 110:1 122:1 164:1 173:7 183:1 186:2 192:1 199:1 224:1 227:1 240:1 256:2 271:1 278:2 304:2 310:2 343:1 345:1 351:1 357:2 358:1 398:1 401:2 404:1 419:1 420:1 422:1 426:1 493:1 503:1 504:2 509:1 511:1 513:1 577:1 591:1 633:3 640:1 641:1 647:1 661:1 690:1 695:1 703:1 708:3 719:1 726:2 781:1 800:1 815:1 817:1 824:1 839:1 846:3 857:1 864:5 928:2 934:1 969:1 970:1 973:2 977:6 979:3 980:1 982:2 985:1 986:4 990:2 991:3 992:1 997:1 1002:1 1003:2 1007:1 1008:2 1011:2 1028:1 1034:4 1036:1 1039:2 1074:3 1093:1 1094:2 1095:1 1098:2 1114:1 1116:1 1119:1 1129:1 1133:1 1145:1 1150:1 1161:1 1165:1 1166:1 1168:3 1175:1 1186:1 1192:1 1204:1 1210:1 1220:1 1221:1 1222:1 1231:1 1248:1 1258:1 1268:2 1269:2 1318:1 1327:1 1330:1 1339:2 1343:1 1348:1 1360:1 1375:1 1377:1 1382:1 1398:1 1399:1 1410:1 1413:1 1414:1 1433:1 1435:1 1442:1 1460:1 1462:1 1464:1 1472:1 1487:1 1488:1 1497:1 1535:1 1540:1 1560:1 1564:1 1565:2 1601:1 1605:1 1608:1 1613:1 1625:1 1638:2 1642:1 1644:1 1650:1 1669:1 1676:1 1688:4 1702:1 1708:1 1714:1 1717:1 1719:1 1722:1 1736:2 1749:1 1771:1 1786:1 1790:2 1794:1 1797:3 1816:1 1822:1 1825:1 1826:1 1827:1 1833:2 1842:1 1851:1 1857:1 1860:1 1867:1 1868:1 1871:1 1873:1 1895:1 1896:2 1904:1 1905:1 1910:1 1911:1 1921:3 1922:1 1932:1 1933:1 1942:1 1950:1 1956:1 1961:2 1963:2 1964:1 1972:1 1975:1 1991:1 2011:1 2018:3 2027:2 2033:2 2036:1 2041:1 2066:1 2078:1 2099:1 2108:2 2110:1 2126:1 2127:2 2136:1 2139:1 2155:1 2157:1 2164:1 2187:2 2221:1 2224:1 2226:2 2253:2 2261:1 2270:1 2282:1 2307:1 2356:1 2395:2 2433:1 2442:1 2467:1 2470:1 2486:1 2502:1 2504:2 2508:1 2519:1 2525:4 2530:2 2531:1 2533:1 2543:5 2550:1 2551:2 2552:2 2556:2 2558:1 2561:1 2568:1 2569:5 2584:1 2600:2 2616:2 2633:1 2638:1 2648:1 2650:1 2697:1 2698:1 2701:2 2721:1 2737:5 2741:2 2757:2 2765:1 2770:1 2777:1 2778:2 2783:1 2784:1 2789:1 2798:1 2799:1 2804:3 2809:1 2816:1 2821:1 2856:1 2870:1 2872:2 2892:1 2923:2 2928:1 2939:1 2964:1 2982:1 2991:1 3001:1 3004:1 3023:1 3027:1 3031:1 3032:3 3044:1 3086:1 3101:1 3106:1 3109:1 3110:2 3112:2 3117:1 3124:1 3131:1 3138:1 3142:1 3144:1 3147:1 3168:1 3169:1 3189:4 3197:4 3210:5 3232:1 3247:1 3249:1 3257:2 3266:1 3282:1 3294:1 3295:1 3310:2 3313:3 3315:2 3320:1 3322:2 3327:1 3341:1 3364:1 3365:1 3376:1 3392:1 3412:1 3419:3 3420:1 3455:1 3457:1 3463:1 3464:2 3487:1 3495:1 3497:1 3500:1 3524:1 3552:1 3563:3 3589:2 3630:1 3656:1 3671:2 3708:1 3745:1 3747:2 3756:1 3772:1 3778:1 3779:3 3795:1 3797:1 3798:1 3817:1 3848:2 3849:1 3869:3 3877:1 3878:1 3879:1 3881:5 3896:1 3904:1 3913:1 3920:1 3926:2 3936:1 3959:1 3971:1 3992:1 3997:1 4003:3 4007:1 4018:2 4025:1 4032:2 4052:2 4061:1 4063:1 4091:1 4093:1 4097:1 4101:1 4127:3 4128:1 4131:1 4132:1 4149:2 4187:1 4204:2 4207:3 4227:1 4247:1 4255:1 4262:3 4264:1 4268:1 4282:1 4284:2 4293:1 4311:1 4312:1 4323:1 4325:1 4336:1 4337:1 4385:1 4386:1 4389:1 4426:1 4443:1 4446:1 4448:1 4463:1 4468:1 4473:1 4480:1 4487:1 4490:2 4501:1 4507:1 4518:2 4520:1 4527:1 4535:2 4579:1 4604:1 4606:1 4608:1 4636:1 4642:1 4645:2 4648:1 4650:1 4654:1 4655:1 4662:1 4673:1 4712:2 4716:2 4749:1 4754:1 4761:4 4765:1 4767:1 4779:1 4780:2 4785:1 4787:3 4814:1 4816:1 4819:1 4835:1 4842:1 4843:1 4854:2 4855:1 4881:1 4891:1 4892:1 4903:1 4906:1 4918:1 4931:1 4955:1 4960:1 4964:1 4965:1 4970:2 4974:1 4981:1 4984:1 4985:5 4997:2 5008:1 5012:1 5015:1 5024:1 5050:2 5070:3 5076:1 5088:2 5107:1 5128:1 5147:2 5154:5 5161:1 5162:1 5172:1 5176:1 5179:1 5180:1 5188:3 5190:1 5192:4 5202:1 5206:1 5209:1 5219:2 5221:2 5246:1 5248:1 5281:1 5296:1 5298:2 5302:1 5312:1 5314:1 5315:1 5316:1 5321:1 5326:1 5328:1 5329:2 5334:2 5338:1 5345:2 5347:2 5354:1 5355:1 5357:1 5391:1 5394:1 5417:1 5418:1 5436:1 5443:1 5491:1 5501:1 5505:1 5509:1 5540:2 5544:1 5547:1 5556:1 5569:2 5580:3 5586:1 5592:1 5600:2 5603:1 5625:1 5631:1 5646:2 5651:1 5673:1 5684:1 5692:2 5717:1 5721:1 5735:1 5742:1 5758:2 5761:1 5785:1 5792:1 5806:2 5824:1 5877:1 5878:1 5888:2 5889:1 5896:1 5902:1 5917:1 5942:1 5950:1 5958:1 5979:1 6000:2 6003:1 6006:1 6013:1 6014:3 6020:1 6040:2 6066:4 6082:1 6106:1 6121:1 6142:1 6147:1 6153:1 6164:2 6166:1 6170:1 6182:1 6200:2 6202:1 6207:1 6222:1 6233:2 6245:2 6246:1 6248:1 6268:1 6280:1 6286:1 6293:1 6298:1 6301:2 6306:2 6310:2 6312:9 6320:2 6346:1 6361:1 6388:3 6409:1 6411:2 6433:2 6439:1 6440:3 6450:2 6456:1 6467:3 6484:2 6503:1 6507:1 6513:1 6514:1 6531:2 6533:3 6536:1 6557:2 6562:1 6567:1 6569:1 6571:1 6575:1 6579:1 6589:4 6594:1 6617:1 6640:2 6653:2 6654:1 6659:2 6661:2 6665:2 6668:1 6672:1 6681:1 6705:2 6727:1 6746:1 6748:1 6758:1 6768:4 6786:1 6789:1 6829:7 6840:1 6844:1 6855:1 6858:1 6865:2 6868:2 6869:1 6875:1 6883:1 6885:2 6886:2 6887:1 6910:1 6917:1 6922:1 6926:1 6930:1 6932:1 6937:1 6938:1 6945:2 6950:1 6959:1 6966:1 7023:1 7033:2 7035:1 7064:1 7069:1 7078:1 7084:2 7101:1 7111:1 7115:1 7121:2 7128:1 7152:1 7169:2 7171:4 7181:1 7202:1 7209:1 7216:1 7219:1 7227:1 7270:1 7277:1 7288:1 7312:3 7332:1 7341:1 7353:1 7354:1 7374:1 7375:3 7381:2 7383:1 7395:1 7413:1 7415:1 7422:1 7423:1 7427:2 7434:2 7460:1 7490:1 7529:2 7567:1 7577:1 7580:1 7583:1 7598:4 7616:2 7626:1 7647:1 7648:1 7650:1 7654:1 7659:1 7663:1 7670:1 7676:1 7715:2 7718:2 7745:1 7753:1 7761:2 7769:1 7775:1 7785:1 7787:1 7798:1 7799:1 7801:1 7819:1 7836:1 7846:1 7882:2 7902:1 7903:1 7908:1 7909:1 7929:1 7941:1 7955:2 7959:2 7965:1 7974:1 7976:1 8000:2 8019:4 8025:1 8027:1 8034:1 8050:1 8053:1 8059:2 8062:1 8063:1 8082:1 8092:2 8114:1 8120:2 8126:3 8127:1 8128:1 8148:2 8150:2 8151:7 8153:1 8157:1 8161:6 8162:1 8163:1 8165:1 8170:2 8171:2 8172:1 8173:4 8174:2 8187:1 8214:3 8221:1 8232:1 8239:1 8247:1 8268:1 8286:1 8300:1 8301:1 8305:1 8316:1 8337:2 8353:2 8360:1 8371:1 8372:2 8404:1 8405:1 8420:17 8440:4 8442:2 8450:2 8467:1 8474:2 8485:1 8493:2 8502:1 8505:3 8509:1 8542:2 8551:1 8557:1 8572:1 8611:1 8622:1 8642:1 8644:1 8650:2 8678:1 8693:3 8702:1 8705:1 8710:1 8716:1 8740:1 8776:2 8792:1 8801:1 8823:5 8834:1 8837:2 8850:1 8857:6 8866:1 8874:1 8879:1 8886:1 8903:1 8910:1 8920:1 8930:1 8940:1 8953:1 8956:1 8961:1 8963:6 8987:1 9013:2 9023:2 9035:1 9039:1 9062:1 9077:1 9079:2 9082:1 9093:1 9094:1 9119:2 9125:3 9129:1 9131:1 9132:1 9139:1 9141:1 9149:1 9156:2 9165:1 9168:1 9175:2 9186:1 9192:1 9194:1 9216:1 9224:1 9227:1 9237:2 9243:1 9261:1 9263:1 9268:2 9273:1 9283:1 9296:1 9305:5 9316:1 9367:1 9370:1 9372:2 9376:1 9378:4 9383:1 9385:1 9390:1 9396:1 9405:2 9410:1 9421:1 9447:1 9461:1 9463:1 9490:2 9498:1 9500:1 9506:2 9510:1 9522:1 9525:1 9568:7 9583:1 9588:1 9596:1 9622:1 9651:1 9667:2 9680:1 9681:1 9685:1 9688:1 9693:1 9715:1 9724:1 9726:1 9743:1 9778:1 9795:5 9796:2 9815:2 9826:1 9835:1 9848:1 9850:1 9857:1 9872:1 9887:1 9894:1 9900:1 9917:1 9922:3 9923:1 9937:1 9948:1 9949:1 9981:1 9996:1 10013:1 10022:1 10026:1 10047:1 10051:3 10091:1 10092:2 10119:4 10122:1 10127:1 10131:1 10133:1 10135:1 10141:1 10158:1 10168:1 10169:1 10175:1 10191:1 10203:1 10216:3 10221:1 10229:1 10243:1 10253:1 10254:1 10255:2 10259:1 10273:1 10277:1 10306:1 10317:1 10326:2 10353:1 10368:1 10372:1 10379:1 10382:1 10388:1 10390:2 10393:1 10402:1 10421:1 10422:1 10451:3 10457:1 10483:2 10486:1 10488:1 10494:1 10500:4 10501:1 10503:2 10511:1 10514:1 10516:1 10532:1 10540:1 10548:1 10551:1 10554:1 10557:1 10561:1 10566:1 10567:1 10568:3 10576:3 10578:1 10597:1 10623:1 10626:1 10631:1 10650:5 10656:1 10671:1 10676:2 10707:2 10708:1 10747:1 10760:1 10769:1 10781:1 10783:1 10790:1 10799:1 10800:1 10812:1 10821:1 10833:1 10847:1 10853:1 10881:1 10884:1 10891:1 10933:1 10936:1 10945:2 10954:2 10960:4 10963:1 10965:2 10966:1 10967:2 10972:1 10973:1 10982:1 11010:1 11012:1 11013:1 11014:1 11018:1 11020:2 11021:1 11025:3 11026:1 11035:4 11042:1 11055:3 11059:5 11078:1 11082:1 11093:2 11103:1 11113:1 11137:1 11144:2 11150:1 11197:1 11206:1 11217:1 11223:3 11235:3 11237:2 11246:1 11251:2 11255:1 11263:1 11281:1 11304:2 11324:1 11325:1 11338:1 11358:1 11360:1 11367:1 11369:1 11370:2 11372:1 11373:1 11377:1 11408:1 11426:5 11429:1 11432:1 11437:3 11445:1 11448:1 11450:1 11456:1 11464:1 11466:1 11477:1 11480:1 11481:1 11494:1 11499:1 11501:3 11509:1 11514:1 11522:2 11565:1 11572:1 11573:2 11585:2 11605:1 11613:2 11649:1 11656:1 11662:1 11664:2 11685:1 11697:1 11700:1 11703:1 11719:1 11730:6 11737:1 11742:2 11745:1 11747:1 11761:1 11764:2 11784:1 11793:1 11813:2 11840:1 11849:1 11861:1 11863:1 11868:1 11869:2 11891:1 11905:1 11926:1 11946:1 11953:1 11963:1 11978:1 11981:1 11996:4 11997:3 12004:1 12010:2 12015:1 12016:2 12026:1 12038:2 12039:1 12052:1 12055:5 12079:1 12082:1 12085:1 12086:4 12095:1 12103:1 12104:3 12118:1 12141:1 12147:1 12159:1 12169:1 12187:2 12214:1 12236:1 12246:3 12251:1 12254:1 12261:1 12263:1 12268:1 12272:1 12285:2 12290:2 12293:1 12322:1 12325:2 12329:1 12332:1 12366:1 12368:1 12377:1 12380:1 12383:1 12405:1 12407:2 12412:1 12419:2 12424:1 12435:1 12446:1 12450:3 12451:1 12457:1 12462:2 12468:1 12473:2 12488:4 12500:1 12514:1 12530:1 12534:1 12568:1 12569:1 12623:1 12633:1 12673:1 12677:1 12679:2 12698:1 12708:1 12711:4 12721:1 12743:1 12769:2 12773:1 12776:1 12780:1 12794:1 12798:2 12802:1 12816:1 12827:1 12831:3 12832:1 12839:1 12843:1 12846:2 12848:1 12853:1 12890:1 12894:1 12898:1 12908:1 12910:1 12921:1 12925:1 12944:1 12968:1 12977:1 12990:1 12995:1 12996:1 13002:1 13025:2 13028:1 13029:1 13031:1 13034:3 13037:1 13038:5 13039:1 13040:1 13047:2 13050:1 13085:2 13098:1 13100:1 13110:1 13129:1 13130:2 13131:1 13133:2 13138:1 13141:2 13144:1 13157:2 13163:1 13167:2 13169:1 13171:1 13173:2 13210:1 13214:1 13222:1 13226:1 13228:1 13243:1 13244:2 13246:1 13247:3 13253:2 13260:2 13261:1 13266:1 13267:1 13279:1 13280:1 13295:1 13329:1 13355:2 13359:1 13372:1 13374:1 13385:1 13390:2 13394:1 13395:1 13399:1 13400:1 13403:1 13410:1 13424:1 13436:1 13439:1 13450:1 13465:1 13468:1 13470:1 13472:1 13481:1 13497:1 13540:1 13552:1 13559:2 13577:1 13579:1 13581:1 13584:2 13585:1 13591:2 13600:1 13608:1 13609:1 13655:1 13661:1 13680:2 13695:2 13697:1 13704:1 13710:1 13713:1 13725:1 13731:2 13743:1 13746:1 13766:2 13768:1 13799:1 13828:5 13856:2 13858:1 13864:2 13934:5 13937:1 13949:1 13963:2 13965:1 13971:4 13989:1 13991:2 14022:1 14032:1 14051:1 14109:1 14114:1 14148:1 14200:1 14222:1 14238:1 14276:1 14292:2 14294:1 14298:2 14331:1 14333:5 14339:2 14341:1 14342:3 14346:1 14357:1 14377:3 14386:2 14387:1 14420:1 14421:1 14424:1 14452:1 14461:1 14473:1 14498:1 14504:1 14522:1 14529:1 14556:4 14566:1 14571:1 14625:1 14690:2 14704:1 14708:1 14712:1 14720:1 14728:2 14732:3 14744:3 14753:2 14757:1 14770:1 14789:1 14798:1 14803:1 14804:7 14815:2 14843:1 14846:1 14855:2 14856:1 14859:1 14860:1 14864:1 14875:1 14877:1 14878:1 14880:1 14882:2 14888:1 14897:1 14900:1 14914:1 14915:1 14923:1 14931:2 14941:1 14968:1 14987:2 14989:1 14994:1 15020:4 15045:2 15064:1 15095:1 15111:1 15150:1 15169:1 15176:2 15216:1 15220:1 15227:1 15241:1 15245:1 15248:2 15251:1 15271:1 15297:1 15321:1 15325:1 15329:1 15341:1 15348:1 15349:1 15355:1 15365:1 15371:1 15385:1 15387:3 15397:1 15398:1 15400:1 15412:1 15422:1 15439:1 15443:1 15444:1 15446:1 15448:1 15452:1 15454:1 15458:1 15459:1 15468:1 15485:2 15495:1 15496:1 15514:1 15534:1 15549:2 15554:1 15563:1 15570:1 15571:1 15573:1 15577:1 15580:3 15584:1 15594:1 15598:1 15602:1 15605:1 15608:1 15615:4 15617:2 15623:1 15650:1 15672:1 15678:1 15685:1 15695:1 15701:1 15704:1 15718:1 15720:1 15731:1 15740:1 15741:1 15742:4 15750:2 15761:1 15764:1 15768:1 15789:1 15797:2 15804:2 15811:1 15815:1 15822:1 15842:1 15859:1 15873:1 15933:1 15953:1 15958:2 15959:3 15968:1 16004:1 16015:1 16024:1 16028:3 16029:1 16039:1 16056:9 16063:2 16064:2 16065:1 16080:1 16082:1 16083:1 16085:1 16087:3 16089:31 16099:1 16104:1 16105:2 16116:1 16138:1 16146:3 16155:2 16159:2 16196:1 16212:1 16235:3 16254:1 16259:1 16278:3 16288:1 16298:1 16300:2 16305:1 16309:2 16312:1 16321:1 16322:1 16357:1 16361:3 16363:1 16399:1 16409:1 16410:2 16424:1 16432:1 16443:1 16454:2 16478:2 16487:2 16508:1 16515:1 16519:1 16525:1 16558:1 16572:1 16573:2 16585:1 16596:1 16598:8 16610:1 16617:1 16631:1 16633:1 16635:1 16638:1 16650:1 16651:1 16669:1 16702:3 16741:1 16744:1 16752:1 16776:1 16788:1 16798:1 16835:1 16836:1 16839:2 16840:1 16849:1 16906:1 16907:1 16914:1 16915:1 16940:2 16947:1 16948:2 16965:1 16971:1 16972:1 16989:1 16995:1 16996:1 16997:2 17018:1 17022:1 17028:1 17029:1 17035:1 17053:1 17072:1 17103:1 17108:2 17109:1 17111:1 17112:1 17113:1 17134:1 17135:1 17152:1 17153:1 17163:2 17179:1 17188:1 17202:1 17205:1 17213:1 17215:2 17217:1 17225:1 17238:1 17240:1 17244:1 17257:9 17262:1 17320:4 17330:2 17331:1 17338:3 17350:2 17354:1 17366:1 17380:1 17384:1 17390:3 17454:1 17458:1 17459:1 17482:1 17502:1 17503:3 17512:1 17516:2 17554:1 17581:1 17585:1 17602:1 17610:1 17613:2 17620:1 17622:1 17641:1 17661:1 17663:1 17667:1 17676:1 17685:1 17694:1 17710:1 17730:1 17732:1 17736:1 17768:2 17772:1 17787:1 17804:1 17806:1 17811:2 17814:1 17816:1 17818:1 17832:1 17843:1 17844:1 17874:2 17878:1 17882:1 17894:1 17899:1 17907:3 17911:2 17913:1 17921:1 17923:2 17924:1 17931:1 17936:1 17940:1 17965:1 17969:1 17977:2 17979:1 17985:1 17990:3 17999:1 18005:2 18006:1 18007:1 18008:1 18027:1 18032:1 18054:1 18072:1 18074:2 18077:1 18080:3 18082:1 18109:1 18135:1 18140:2 18148:1 18164:2 18177:1 18205:2 18227:1 18253:2 18264:1 18276:1 18283:1 18291:1 18328:1 18345:1 18366:1 18369:1 18376:1 18380:2 18396:1 18402:1 18406:1 18407:1 18471:1 18496:2 18519:1 18546:1 18557:1 18561:1 18570:1 18575:1 18577:1 18578:2 18592:2 18604:2 18605:1 18608:1 18610:1 18635:1 18636:1 18641:1 18642:1 18643:2 18662:1 18700:1 18707:1 18719:4 18738:1 18751:2 18759:1 18773:1 18774:1 18786:1 18796:3 18797:1 18834:1 18882:1 18889:2 18892:1 18900:1 18911:1 18926:1 18930:2 18958:1 18962:1 18973:1 18974:1 18982:1 18999:1 19006:1 19011:1 19017:1 19022:1 19023:2 19034:1 19044:1 19061:1 19081:1 19083:1 19085:1 19087:1 19088:2 19099:1 19126:1 19135:1 19136:2 19147:1 19150:1 19180:1 19184:1 19187:1 19198:1 19225:1 19230:1 19235:1 19244:1 19255:1 19263:1 19276:1 19278:1 19291:1 19298:8 19321:2 19339:1 19350:1 19362:1 19371:1 19375:1 19391:1 19405:1 19446:1 19447:1 19460:1 19461:2 19505:1 19522:2 19559:1 19561:1 19577:1 19584:2 19587:1 19588:1 19603:1 19627:1 19630:1 19633:1 19645:1 19650:1 19660:1 19678:1 19681:1 19694:1 19699:1 19700:1 19702:1 19706:2 19707:3 19721:1 19732:1 19734:1 19743:1 19746:1 19777:1 19792:1 19800:1 19810:1 19819:1 19821:1 19835:1 19842:1 19849:1 19862:1 19873:1 19885:2 19886:1 19901:1 19911:1 19924:1 19933:4 19940:2 19948:1 19951:1 19955:2 19961:1 19968:1 19990:1 19991:1 19996:1 20050:1 20056:2 20058:1 20065:1 20080:1 20102:1 20105:3 20122:1 20126:2601 20154:1 20184:1 20187:1 20195:2 20237:1 20264:2 20268:1 20272:1 20276:1 20293:2 20299:2 20305:1 20357:1 20366:1 20393:2 20398:1 20424:2 20427:1 20466:1 20474:1 20480:2 20485:1 20502:1 20513:1 20515:1 20520:1 20524:1 20556:3 20562:2 20577:1 20591:1 20600:1 20630:1 20648:1 20653:2 20660:1 20665:1 20668:3 20676:1 20707:1 20722:1 20756:1 20768:1 20777:3 20782:1 20809:1 20816:3 20820:1 20826:3 20830:1 20856:1 20870:1 20894:2 20921:1 20923:6 20951:2 20998:1 21007:1 21016:1 21031:1 21035:4 21049:1 21054:2 21059:1 21062:1 21079:1 21104:1 21116:1 21122:1 21128:3 21140:2 21141:2 21145:1 21146:1 21147:1 21149:1 21165:1 21172:1 21177:2 21192:1 21194:1 21202:1 21227:1 21253:1 21286:2 21288:1 21291:1 21296:1 21315:1 21317:1 21329:1 21358:1 21359:1 21375:1 21437:1 21457:1 21484:1 21486:1 21489:2 21506:1 21525:1 21536:1 21537:1 21541:2 21542:1 21544:1 21556:1 21560:1 21587:2 21592:1 21594:3 21597:1 21598:1 21601:1 21608:1 21615:1 21616:1 21625:1 21628:2 21630:2 21631:2 21636:1 21647:1 21649:1 21650:1 21659:1 21670:2 21677:2 21687:3 21690:1 21694:1 21700:1 21713:1 21729:1 21730:1 21758:1 21771:1 21781:2 21803:2 21815:1 21818:1 21872:3 21910:1 21912:1 21915:1 21920:1 21925:1 21933:1 21934:1 21938:2 21949:1 21953:1 21965:2 21967:2 21985:1 22000:2 22003:1 22028:2 22030:2 22042:2 22053:1 22057:2 22064:2 22099:1 22119:1 22150:1 22152:1 22155:1 22156:1 22167:1 22170:1 22181:1 22186:1 22193:1 22198:1 22201:1 22202:1 22212:1 22222:2 22244:1 22262:1 22270:3 22275:1 22281:1 22291:1 22294:1 22303:2 22312:2 22319:1 22332:1 22335:1 22366:1 22374:1 22375:3 22376:2 22378:1 22383:1 22390:1 22391:1 22392:2 22402:1 22417:1 22426:2 22453:2 22466:1 22476:1 22482:1 22516:2 22547:1 22549:2 22551:1 22557:1 22571:2 22599:1 22621:1 22636:1 22639:1 22640:1 22658:1 22671:1 22680:1 22711:1 22738:1 22761:1 22782:1 22786:2 22795:1 22804:1 22813:2 22816:2 22837:2 22844:1 22845:8 22847:1 22854:1 22862:1 22879:1 22888:1 22900:1 22903:1 22930:1 22938:1 22947:1 22953:1 22960:1 22963:1 22973:2 22975:1 22984:1 22985:1 22998:1 23011:1 23017:1 23028:1 23032:1 23038:1 23039:2 23043:2 23044:1 23047:1 23060:1 23077:1 23094:1 23096:1 23139:1 23144:1 23180:3 23187:1 23193:2 23217:1 23225:1 23226:1 23239:1 23254:1 23267:1 23280:1 23285:1 23295:1 23301:1 23306:1 23328:1 23339:1 23371:2 23373:1 23379:5 23384:1 23387:1 23397:1 23400:1 23409:1 23424:2 23425:3 23445:1 23484:2 23498:1 23512:1 23520:1 23534:2 23544:1 23559:1 23564:1 23585:2 23586:1 23600:2 23605:1 23609:2 23625:1 23629:1 23631:1 23644:2 23649:2 23652:1 23668:1 23669:2 23671:2 23677:1 23680:1 23702:2 23712:3 23724:1 23730:1 23741:1 23748:1 23758:2 23766:2 23767:1 23778:1 23796:1 23804:1 23807:1 23817:1 23826:1 23832:1 23835:1 23840:1 23841:1 23843:1 23847:1 23848:1 23887:2 23897:1 23900:1 23948:3 23950:1 23952:1 23956:1 23961:1 23962:4 24008:1 24015:1 24030:2 24031:1 24032:1 24034:5 24043:1 24051:5 24066:1 24075:1 24102:1 24108:1 24119:1 24142:1 24156:1 24163:1 24200:6 24207:1 24215:1 24216:1 24221:1 24283:1 24285:1 24289:1 24292:1 24298:1 24314:1 24318:2 24324:1 24348:2 24363:3 24388:1 24394:1 24399:2 24403:1 24405:1 24407:1 24413:1 24417:1 24422:1 24423:1 24424:1 24442:1 24447:1 24448:1 24451:1 24467:1 24473:1 24477:2 24489:1 24499:3 24507:1 24517:1 24547:1 24551:1 24566:1 24582:1 24599:1 24600:2 24602:1 24606:1 24608:3 24609:1 24629:1 24632:1 24658:1 24670:1 24675:1 24681:1 24720:1 24723:1 24732:1 24737:1 24754:1 24769:1 24773:1 24779:3 24793:2 24850:4 24867:5 24875:1 24894:1 24896:1 24912:1 24946:1 24947:1 24963:1 24964:4 24974:2 24975:3 24978:3 24986:1 24988:1 24989:3 24990:6 25005:1 25022:1 25030:1 25047:2 25051:1 25053:1 25060:1 25061:1 25073:4 25096:1 25100:2 25106:1 25114:2 25121:1 25124:1 25136:1 25170:1 25172:1 25177:1 25207:1 25251:2 25253:1 25256:2 25258:2 25261:2 25265:1 25267:2 25275:5 25290:1 25305:1 25321:4 25325:1 25341:1 25349:1 25360:1 25364:3 25422:1 25438:2 25440:1 25442:2 25445:4 25450:1 25457:3 25465:1 25467:1 25469:1 25479:1 25486:1 25488:1 25490:1 25493:1 25496:1 25502:1 25507:3 25511:1 25518:2 25536:1 25537:1 25544:1 25559:1 25564:1 25577:1 25602:1 25609:1 25611:1 25617:1 25623:1 25625:1 25638:2 25681:2 25684:1 25690:1 25695:5 25713:1 25716:1 25719:1 25720:3 25776:1 25782:1 25800:2 25805:1 25810:1 25846:1 25847:1 25851:1 25859:1 25862:1 25873:1 25886:1 25889:2 25907:1 25968:1 25974:8 25975:1 25983:2 25985:1 25990:2 25998:2 26009:1 26021:1 26032:1 26041:1 26048:1 26062:1 26066:1 26090:1 26093:1 26102:1 26106:1 26115:1 26120:2 26125:3 26129:2 26149:1 26155:3 26172:1 26190:1 26194:1 26213:1 26227:2 26230:1 26231:1 26250:2 26251:1 26260:1 26261:1 26262:1 26267:1 26278:1 26283:1 26287:1 26302:2 26309:2 26316:1 26317:1 26328:1 26333:1 26341:1 26358:1 26359:1 26384:1 26399:1 26425:1 26447:1 26471:1 26481:2 26483:1 26485:1 26508:1 26541:2 26545:2 26552:1 26557:4 26583:1 26584:2 26585:1 26602:1 26603:1 26606:1 26609:1 26626:1 26636:1 26638:1 26669:1 26702:1 26708:1 26729:1 26739:1 26741:4 26764:1 26772:1 26774:1 26777:2 26799:1 26804:1 26805:1 26837:2 26838:2 26868:1 26870:1 26873:1 26885:1 26902:2 26908:1 26919:1 26923:1 26968:1 26978:1 27005:1 27020:1 27028:1 27040:2 27055:1 27057:1 27063:1 27072:2 27074:2 27083:1 27084:2 27085:2 27087:2 27094:3 27095:1 27103:1 27104:1 27108:2 27115:1 27128:1 27134:3 27140:1 27167:2 27178:4 27191:2 27198:1 27205:1 27206:2 27222:1 27227:1 27238:1 27247:2 27248:2 27249:2 27285:1 27287:2 27295:1 27297:1 27315:1 27319:2 27332:1 27338:2 27351:1 27376:1 27381:1 27395:3 27405:1 27408:1 27427:1 27437:1 27439:2 27445:2 27459:1 27467:2 27485:1 27491:1 27512:3 27541:1 27543:1 27546:1 27568:1 27591:1 27601:1 27616:1 27654:1 27667:1 27674:2 27684:1 27685:1 27770:3 27773:1 27794:1 27795:1 27812:1 27817:1 27825:3 27830:1 27846:1 27851:4 27875:1 27881:1 27882:1 27890:1 27896:1 27907:1 27920:1 27929:1 27957:1 27991:1 27994:1 28000:1 28041:1 28042:1 28051:2 28053:2 28065:1 28078:2 28081:2 28092:1 28094:1 28098:1 28102:2 28103:1 28104:3 28109:1 28139:2 28149:2 28151:1 28168:2 28172:1 28176:1 28183:1 28191:1 28193:2 28196:2 28205:2 28208:1 28211:3 28212:1 28213:2 28220:2 28225:1 28245:1 28249:1 28281:1 28299:5 28300:2 28349:1 28352:1 28388:1 28389:1 28390:1 28411:1 28412:1 28414:1 28418:1 28443:1 28444:4 28448:2 28449:1 28477:1 28478:1 28482:1 28493:1 28499:1 28526:1 28528:1 28530:1 28548:1 28573:1 28574:2 28580:2 28582:1 28583:1 28586:1 28592:1 28599:1 28613:2 28616:1 28622:4 28628:1 28639:1 28644:1 28658:1 28670:1 28671:1 28674:1 28691:1 28716:1 28725:1 28728:1 28739:2 28741:2 28742:1 28748:4 28759:1 28775:1 28804:2 28811:1 28827:1 28845:1 28846:1 28854:2 28855:1 28884:1 28896:1 28921:1 28930:1 28939:1 28960:1 28997:1 29006:2 29007:1 29009:1 29015:1 29018:1 29038:1 29053:2 29056:2 29059:1 29061:2 29062:2 29071:1 29076:3 29087:1 29092:1 29096:1 29122:1 29123:1 29128:1 29133:1 29145:1 29148:1 29163:2 29178:1 29179:1 29183:2 29188:4 29205:1 29253:2 29266:2 29268:1 29277:1 29290:2 29296:1 29298:2 29306:1 29345:2 29355:1 29367:1 29369:1 29388:1 29392:1 29402:2 29409:1 29417:2 29422:1 29448:1 29456:1 29467:1 29468:1 29479:1 29483:1 29487:1 29491:1 29504:1 29513:1 29537:1 29577:1 29611:1 29617:1 29620:2 29637:1 29642:2 29647:2 29660:1 29673:1 29674:1 29681:1 29701:2 29708:1 29718:2 29725:1 29731:1 29738:2 29746:2 29760:1 29771:1 29773:2 29774:1 29780:2 29806:11 29811:1 29815:1 29819:1 29821:2 29831:1 29835:1 29837:1 29852:6 29853:2 29861:1 29865:2 29867:1 29882:3 29904:1 29922:1 29930:1 29939:1 29974:1 29979:1 29999:1 30020:3 30033:1 30045:2 30047:1 30053:1 30056:1 30075:1 30078:2 30083:1 30090:2 30104:1 30109:1 30114:1 30116:1 30121:1 30123:1 30149:1 30160:1 30164:1 30174:1 30177:1 30182:1 30189:1 30196:1 30212:1 30242:1 30247:3 30251:1 30263:1 30271:1 30275:1 30281:1 30300:1 30317:1 30325:1 30330:3 30365:2 30367:1 30381:1 30390:2 30392:2 30399:1 30412:1 30414:1 30428:1 30429:1 30458:1 30459:1 30477:1 30479:1 30494:1 30517:1 30520:1 30526:1 30554:1 30556:2 30558:2 30559:1 30567:1 30572:1 30574:1 30578:1 30582:1 30597:1 30599:1 30602:2 30625:1 30676:1 30683:1 30712:1 30713:1 30714:1 30750:2 30759:1 30783:1 30812:1 30867:2 30869:1 30879:1 30922:4 30931:1 30935:1 30942:1 30949:1 30968:1 30973:5 30978:1 30981:1 30984:1 30996:1 31002:1 31005:2 31013:1 31030:2 31036:1 31046:2 31054:1 31071:1 31083:2 31087:1 31090:3 31098:1 31100:1 31121:1 31124:1 31133:2 31135:1 31143:2 31179:1 31182:3 31183:1 31190:1 31195:1 31197:1 31198:1 31201:1 31208:1 31228:1
17 16:1 19:2 33:1 35:1 40:1 49:1 61:2 62:1 69:1 86:1 110:1 122:1 164:1 173:7 183:1 186:2 192:1 199:1 224:1 227:1 240:1 256:2 271:1 278:2 304:2 310:2 343:1 345:1 351:1 357:2 358:1 398:1 401:2 404:1 419:1 420:1 422:1 426:1 493:1 503:1 504:2 509:1 511:1 513:1 577:1 591:1 633:3 640:1 641:1 647:1 661:1 690:1 695:1 703:1 708:3 719:1 726:2 781:1 800:1 815:1 817:1 824:1 839:1 846:3 857:1 864:5 928:2 934:1 969:1 970:1 973:2 977:6 979:3 980:1 982:2 985:1 986:4 990:2 991:3 992:1 997:1 1002:1 1003:2 1007:1 1008:2 1011:2 1028:1 1034:4 1036:2 1039:2 1074:3 1093:1 1094:2 1095:1 1098:2 1114:1 1116:1 1119:1 1129:1 1133:1 1145:1 1150:1 1161:1 1165:1 1166:1 1168:3 1175:1 1186:1 1192:1 1204:1 1210:1 1220:1 1221:1 1222:1 1231:1 1248:1 1258:1 1268:2 1269:2 1318:1 1327:1 1330:1 1339:2 1343:1 1348:1 1360:1 1375:1 1377:1 1382:1 1398:1 1399:1 1410:1 1413:1 1414:1 1433:1 1435:1 1442:1 1460:1 1462:1 1464:1 1472:1 1487:1 1488:1 1497:1 1535:1 1540:1 1560:1 1564:1 1565:2 1601:1 1605:1 1608:1 1613:1 1625:1 1638:2 1642:1 1644:1 1650:1 1669:1 1676:1 1688:4 1702:1 1708:1 1714:1 1717:1 1719:1 1722:1 1736:2 1749:1 1771:1 1786:1 1790:2 1794:1 1797:3 1816:1 1822:1 1825:1 1826:1 1827:1 1833:2 1842:1 1851:1 1857:1 1860:1 1867:1 1868:1 1871:1 1873:1 1895:1 1896:2 1904:1 1905:1 1910:1 1911:1 1921:3 1922:1 1932:1 1933:1 1942:1 1950:1 1956:1 1961:2 1963:2 1964:1 1972:1 1975:1 1991:1 2011:1 2018:3 2027:2 2033:2 2036:1 2041:1 2066:1 2078:1 2099:1 2108:2 2110:1 2126:1 2127:2 2136:1 2139:1 2155:1 2157:1 2164:1 2187:2 2221:1 2224:1 2226:2 2253:2 2261:1 2270:1 2282:1 2307:1 2356:1 2395:2 2433:1 2442:1 2467:1 2470:1 2486:1 2502:1 2504:2 2508:1 2519:1 2525:4 2530:2 2531:1 2533:1 2543:5 2550:1 2551:2 2552:2 2556:2 2558:1 2561:1 2568:1 2569:5 2584:1 2600:2 2616:2 2633:1 2638:1 2648:1 2650:1 2697:1 2698:1 2701:2 2721:1 2737:5 2741:2 2757:2 2765:1 2770:1 2777:1 2778:2 2783:1 2784:1 2789:1 2798:1 2799:1 2804:3 2809:1 2816:1 2821:1 2856:1 2870:1 2872:2 2892:1 2923:2 2928:1 2939:1 2964:1 2982:1 2991:1 3001:1 3004:1 3023:1 3027:1 3031:1 3032:3 3044:1 3086:1 3101:1 3106:1 3109:1 3110:2 3112:2 3117:1 3124:1 3131:1 3138:1 3142:1 3144:1 3147:1 3168:1 3169:1 3179:1 3189:4 3197:4 3210:5 3232:1 3243:1 3247:1 3249:1 3257:2 3266:1 3282:1 3294:1 3295:1 3310:2 3313:3 3315:2 3320:1 3322:2 3327:1 3341:1 3364:1 3365:1 3376:1 3392:1 3412:1 3419:3 3420:1 3455:1 3457:1 3463:1 3464:2 3487:1 3495:1 3497:1 3500:1 3524:1 3552:1 3563:3 3589:2 3630:1 3656:1 3671:2 3708:1 3745:1 3747:2 3756:1 3772:1 3778:1 3779:3 3795:1 3797:1 3798:1 3817:1 3848:2 3849:1 3869:3 3877:1 3878:1 3879:1 3881:5 3896:1 3904:1 3913:1 3920:1 3926:2 3936:1 3959:1 3971:1 3992:1 3997:1 4003:3 4007:1 4018:2 4025:1 4032:2 4052:2 4061:1 4063:1 4091:1 4093:1 4097:1 4101:1 4127:3 4128:1 4131:1 4132:1 4149:2 4187:1 4204:2 4207:3 4227:1 4247:1 4255:1 4262:3 4264:1 4268:1 4282:1 4284:2 4293:1 4311:1 4312:1 4323:1 4325:1 4336:1 4337:1 4385:1 4386:1 4389:1 4426:1 4443:1 4446:1 4448:1 4463:1 4468:1 4473:1 4480:1 4487:1 4490:2 4501:1 4507:1 4518:2 4520:1 4527:1 4535:2 4579:1 4604:1 4606:1 4608:1 4636:1 4642:1 4645:2 4648:1 4650:1 4654:1 4655:1 4662:1 4673:1 4712:2 4716:3 4749:1 4754:1 4761:4 4765:1 4767:1 4779:1 4780:2 4785:1 4787:3 4801:1 4814:1 4816:1 4819:1 4835:1 4842:1 4843:1 4854:2 4855:1 4881:1 4891:1 4892:1 4903:1 4906:1 4918:1 4931:1 4955:1 4960:1 4964:1 4965:1 4970:2 4974:1 4981:1 4984:1 4985:5 4997:2 5008:1 5012:1 5015:1 5024:1 5050:2 5070:3 5076:1 5088:2 5107:1 5128:1 5147:2 5154:5 5161:1 5162:1 5172:1 5176:1 5179:1 5180:1 5188:3 5190:1 5192:4 5202:1 5206:1 5209:1 5219:2 5221:2 5246:1 5248:1 5281:1 5296:1 5298:2 5302:1 5312:1 5313:1 5314:1 5315:1 5316:1 5321:1 5326:1 5328:1 5329:2 5334:2 5338:1 5345:2 5347:2 5354:1 5355:1 5357:1 5391:1 5394:1 5417:1 5418:1 5436:1 5443:1 5491:1 5501:1 5505:1 5509:1 5540:2 5544:1 5547:1 5556:1 5569:2 5580:3 5586:1 5592:1 5600:2 5603:1 5625:1 5631:1 5646:2 5651:1 5673:1 5684:1 5692:2 5717:1 5721:1 5735:1 5742:1 5758:2 5761:1 5785:1 5792:1 5806:2 5824:1 5877:1 5878:1 5888:2 5889:1 5896:1 5902:1 5917:1 5942:1 5950:1 5958:1 5979:1 6000:2 6003:1 6006:1 6013:1 6014:3 6020:1 6040:2 6066:4 6082:1 6106:1 6121:1 6132:1 6142:1 6147:1 6153:1 6164:2 6166:1 6170:1 6182:1 6200:2 6202:1 6207:1 6222:1 6233:2 6245:2 6246:1 6248:1 6268:1 6280:1 6286:1 6293:1 6298:1 6301:2 6306:2 6310:2 6312:9 6320:2 6346:1 6361:1 6388:3 6409:1 6411:2 6433:2 6439:1 6440:3 6450:2 6456:1 6467:3 6484:2 6503:1 6507:1 6513:1 6514:1 6531:2 6533:3 6536:1 6557:2 6562:1 6567:1 6569:1 6571:1 6575:1 6579:1 6589:4 6594:1 6617:1 6640:2 6653:2 6654:1 6659:2 6661:2 6665:2 6668:1 6672:1 6681:1 6705:2 6727:1 6746:1 6748:1 6758:1 6768:4 6786:1 6789:1 6793:1 6804:1 6829:7 6840:1 6844:1 6855:1 6858:1 6865:3 6868:2 6869:1 6875:1 6883:1 6885:3 6886:2 6887:1 6910:1 6917:1 6922:1 6926:1 6930:1 6932:1 6937:1 6938:1 6945:2 6950:1 6959:1 6966:1 7023:1 7033:2 7035:1 7064:1 7069:1 7078:1 7084:2 7101:1 7111:1 7115:1 7121:2 7128:1 7152:1 7169:2 7171:4 7181:1 7202:1 7209:1 7216:1 7219:1 7227:1 7270:1 7277:1 7288:1 7312:3 7332:1 7341:1 7353:1 7354:1 7374:1 7375:3 7381:2 7383:1 7395:1 7413:1 7415:1 7422:1 7423:1 7427:2 7434:2 7460:1 7490:1 7529:2 7567:1 7577:1 7580:1 7583:1 7598:4 7616:2 7626:1 7647:1 7648:1 7650:1 7654:1 7659:1 7663:1 7670:1 7676:1 7715:2 7718:2 7745:1 7753:1 7761:3 7769:1 7775:1 7785:1 7787:1 7798:1 7799:1 7801:1 7819:1 7836:1 7846:1 7882:2 7902:1 7903:1 7908:1 7909:1 7929:1 7941:1 7955:2 7959:2 7965:1 7974:1 7976:1 8000:2 8019:4 8025:1 8027:1 8034:1 8050:1 8053:1 8059:2 8062:1 8063:1 8082:1 8092:2 8114:1 8120:2 8126:3 8127:1 8128:1 8148:2 8150:2 8151:7 8153:1 8157:1 8161:6 8162:1 8163:1 8165:1 8170:2 8171:2 8172:1 8173:4 8174:2 8187:1 8214:3 8221:1 8232:1 8239:1 8247:1 8261:1 8268:1 8286:1 8300:1 8301:1 8305:1 8316:1 8337:2 8353:2 8360:1 8371:1 8372:2 8404:1 8405:1 8420:17 8431:1 8440:4 8442:2 8450:2 8467:1 8474:2 8485:1 8493:2 8502:1 8505:3 8509:1 8542:2 8551:1 8557:1 8572:1 8611:1 8622:1 8642:1 8644:1 8650:2 8678:1 8693:3 8702:1 8705:1 8710:1 8716:1 8740:1 8776:2 8792:1 8801:1 8823:5 8834:1 8837:2 8850:1 8857:6 8866:1 8874:1 8879:1 8886:1 8903:1 8910:1 8920:1 8930:1 8940:1 8953:1 8956:1 8961:1 8963:6 8987:1 9013:2 9023:2 9035:1 9039:1 9062:1 9077:1 9079:2 9082:1 9093:1 9094:1 9119:2 9125:3 9129:1 9131:1 9132:1 9139:1 9141:1 9149:1 9156:2 9165:1 9168:1 9175:2 9186:1 9192:1 9194:1 9210:1 9216:1 9220:1 9224:1 9227:1 9237:2 9243:1 9261:1 9263:1 9268:2 9273:1 9283:1 9296:1 9305:5 9316:1 9367:1 9370:1 9372:2 9376:1 9378:4 9383:1 9385:1 9390:1 9396:1 9405:2 9410:1 9421:1 9447:1 9461:1 9463:1 9490:2 9498:1 9500:1 9506:2 9510:1 9522:1 9524:1 9525:1 9568:7 9583:1 9588:1 9596:1 9622:1 9651:1 9667:2 9680:1 9681:1 9685:1 9688:1 9693:1 9715:1 9724:1 9726:1 9743:1 9778:1 9795:5 9796:2 9815:2 9826:1 9835:1 9848:1 9850:1 9857:1 9872:1 9887:1 9894:1 9900:1 9917:1 9922:3 9923:1 9937:1 9948:1 9949:1 9981:1 9996:1 10013:1 10022:1 10026:1 10047:1 10051:3 10091:1 10092:2 10119:4 10122:1 10127:1 10131:1 10133:1 10135:1 10141:1 10158:1 10168:1 10169:1 10175:1 10191:1 10203:1 10216:3 10221:1 10229:1 10243:1 10253:1 10254:1 10255:2 10259:1 10273:1 10277:1 10306:1 10317:1 10326:2 10353:1 10368:1 10372:1 10379:1 10382:1 10388:1 10390:2 10393:1 10402:1 10421:1 10422:1 10451:3 10457:1 10483:2 10486:1 10488:1 10494:1 10500:4 10501:1 10503:2 10511:1 10514:1 10516:1 10531:1 10532:1 10540:1 10548:1 10551:1 10554:1 10557:1 10561:1 10566:1 10567:1 10568:3 10576:3 10578:1 10597:1 10623:1 10626:1 10631:1 10650:6 10656:1 10671:1 10676:2 10707:2 10708:1 10747:1 10760:1 10769:1 10781:1 10783:1 10790:1 10799:1 10800:1 10812:1 10821:1 10832:1 10833:1 10847:1 10853:1 10881:1 10884:1 10891:1 10933:1 10936:1 10937:1 10945:2 10954:2 10960:4 10963:1 10965:2 10966:1 10967:2 10972:1 10973:1 10982:1 11010:1 11012:1 11013:1 11014:1 11018:1 11020:2 11021:1 11025:3 11026:1 11035:4 11042:1 11055:3 11059:5 11078:1 11082:1 11093:2 11103:1 11113:1 11137:1 11144:2 11150:1 11197:1 11206:1 11217:1 11223:3 11235:3 11237:2 11246:1 11251:2 11255:1 11263:1 11281:1 11304:2 11324:1 11325:1 11338:1 11358:1 11360:1 11367:1 11369:1 11370:2 11372:1 11373:1 11377:1 11403:1 11408:1 11426:5 11429:1 11432:1 11437:3 11445:1 11448:1 11450:1 11456:1 11464:2 11466:1 11477:1 11480:1 11481:1 11494:1 11499:1 11501:3 11509:1 11514:1 11522:2 11565:1 11572:1 11573:2 11579:1 11585:2 11605:1 11613:2 11649:1 11656:1 11662:1 11664:2 11685:1 11697:1 11700:1 11703:1 11719:2 11730:6 11737:1 11742:2 11745:1 11747:1 11761:1 11764:2 11784:1 11793:1 11813:2 11840:1 11849:1 11861:1 11863:1 11868:1 11869:2 11891:1 11905:1 11926:1 11946:1 11953:1 11963:1 11978:1 11981:1 11996:4 11997:3 12004:1 12010:2 12015:1 12016:2 12026:1 12038:2 12039:1 12052:1 12055:5 12079:1 12082:1 12085:1 12086:4 12095:1 12103:1 12104:3 12118:1 12141:1 12147:1 12159:1 12169:1 12187:2 12214:1 12236:1 12246:3 12251:1 12254:1 12261:1 12263:1 12268:1 12272:1 12285:2 12290:2 12293:1 12322:1 12325:2 12329:1 12332:1 12366:1 12368:1 12377:1 12380:1 12383:1 12405:1 12407:2 12412:1 12419:2 12424:1 12435:1 12446:1 12450:3 12451:1 12457:1 12462:2 12468:1 12473:2 12488:4 12500:1 12514:1 12530:1 12534:1 12568:1 12569:1 12623:1 12633:1 12673:1 12677:1 12679:2 12698:1 12708:1 12711:4 12721:1 12743:1 12769:2 12773:1 12776:1 12780:1 12794:1 12798:2 12802:1 12816:1 12827:1 12831:3 12832:1 12839:1 12843:1 12846:2 12848:1 12853:1 12890:1 12894:1 12898:1 12908:1 12910:1 12921:1 12925:1 12944:1 12957:1 12968:1 12977:1 12990:1 12995:1 12996:1 13002:1 13025:2 13028:1 13029:1 13031:1 13034:3 13037:1 13038:5 13039:1 13040:1 13047:2 13050:1 13085:2 13098:1 13100:1 13110:1 13129:1 13130:2 13131:1 13133:2 13138:1 13141:2 13144:1 13157:2 13163:1 13167:2 13169:1 13171:1 13173:2 13199:1 13210:1 13214:1 13222:1 13226:1 13228:1 13243:1 13244:2 13246:1 13247:3 13253:2 13260:2 13261:1 13266:1 13267:1 13279:1 13280:1 13295:1 13301:1 13329:1 13355:2 13359:1 13372:1 13374:1 13385:1 13390:2 13394:1 13395:1 13399:1 13400:1 13403:1 13410:1 13424:1 13436:1 13439:1 13450:1 13465:1 13468:1 13470:1 13472:1 13481:1 13497:1 13540:1 13552:1 13559:2 13577:1 13579:1 13581:1 13584:2 13585:1 13591:2 13600:1 13608:1 13609:1 13655:1 13661:1 13680:2 13695:2 13697:1 13704:1 13710:1 13713:1 13725:1 13731:2 13743:1 13746:1 13766:2 13768:1 13799:1 13828:5 13856:2 13858:1 13864:2 13934:5 13937:1 13949:1 13963:2 13965:1 13971:4 13989:1 13991:2 14022:1 14032:1 14051:1 14069:1 14109:1 14114:1 14148:1 14200:1 14222:1 14238:1 14276:1 14292:2 14294:1 14298:2 14331:1 14333:5 14339:2 14341:1 14342:3 14346:1 14357:1 14377:3 14386:2 14387:1 14420:1 14421:1 14424:1 14452:1 14461:1 14473:1 14498:1 14504:1 14522:1 14527:1 14529:1 14556:4 14566:1 14571:1 14625:1 14690:2 14704:1 14708:1 14712:1 14720:1 14728:2 14732:3 14744:3 14753:2 14757:1 14770:1 14789:1 14798:1 14803:1 14804:7 14815:2 14843:1 14846:1 14855:2 14856:1 14859:1 14860:1 14864:1 14875:1 14877:1 14878:1 14880:1 14882:2 14888:1 14897:1 14900:1 14914:1 14915:1 14923:1 14931:2 14941:1 14968:1 14987:2 14989:1 14994:1 15020:4 15045:2 15064:1 15095:1 15111:1 15150:1 15169:1 15176:2 15216:1 15220:1 15227:1 15241:1 15245:1 15248:2 15251:1 15271:1 15287:1 15297:1 15321:1 15325:1 15329:1 15341:1 15348:1 15349:1 15355:1 15365:1 15371:1 15385:1 15387:3 15397:1 15398:1 15400:1 15412:1 15422:1 15439:1 15443:1 15444:1 15446:1 15448:1 15452:1 15454:1 15458:1 15459:1 15468:1 15485:2 15495:1 15496:1 15514:1 15534:1 15549:2 15554:1 15563:1 15570:1 15571:1 15573:1 15577:1 15580:4 15584:1 15594:1 15598:1 15602:1 15605:1 15608:1 15615:4 15617:2 15623:1 15650:1 15672:1 15678:1 15685:1 15695:1 15701:1 15704:1 15718:1 15720:1 15731:1 15740:1 15741:1 15742:4 15750:2 15761:1 15764:1 15768:1 15789:2 15797:2 15804:2 15811:1 15815:1 15822:1 15842:1 15859:1 15873:1 15933:1 15953:1 15958:2 15959:3 15968:1 16004:1 16015:1 16024:1 16028:3 16029:1 16039:1 16056:9 16063:2 16064:2 16065:1 16080:1 16082:1 16083:1 16085:1 16087:4 16089:31 16099:1 16104:1 16105:2 16116:1 16138:1 16146:3 16155:2 16159:2 16196:1 16212:1 16235:3 16254:1 16259:1 16278:3 16288:1 16298:1 16300:2 16305:1 16309:2 16312:1 16321:1 16322:1 16357:1 16361:3 16363:1 16372:1 16399:1 16409:1 16410:2 16424:1 16432:1 16443:1 16454:2 16478:2 16487:2 16508:1 16515:1 16519:1 16525:1 16533:1 16558:1 16572:1 16573:2 16585:1 16596:1 16598:8 16610:1 16617:1 16631:1 16633:1 16635:1 16638:1 16650:1 16651:1 16669:1 16702:3 16741:1 16744:1 16752:1 16776:1 16788:1 16798:1 16835:1 16836:1 16839:2 16840:1 16849:1 16906:1 16907:1 16914:1 16915:1 16940:2 16947:1 16948:2 16965:1 16971:1 16972:1 16989:1 16995:1 16996:1 16997:2 17018:1 17022:1 17028:1 17029:1 17035:1 17053:1 17072:1 17103:1 17108:2 17109:1 17111:1 17112:1 17113:1 17134:1 17135:1 17152:1 17153:1 17163:2 17179:1 17188:1 17202:1 17205:1 17213:1 17215:2 17217:1 17225:1 17238:1 17240:1 17244:1 17257:9 17262:1 17320:4 17330:2 17331:1 17338:3 17350:2 17354:1 17366:1 17380:1 17384:1 17390:3 17454:1 17458:1 17459:1 17482:1 17502:1 17503:3 17512:1 17516:2 17554:1 17581:1 17585:1 17602:1 17610:1 17613:2 17620:1 17622:1 17641:1 17661:1 17663:1 17667:1 17676:1 17685:1 17694:1 17710:1 17730:1 17732:1 17736:1 17768:2 17772:1 17787:1 17804:1 17806:1 17811:2 17814:1 17816:1 17818:1 17832:1 17843:1 17844:1 17874:2 17878:1 17882:1 17894:1 17899:1 17907:3 17911:2 17913:1 17921:1 17923:2 17924:1 17931:1 17936:1 17940:1 17965:1 17969:1 17977:2 17979:1 17985:1 17990:3 17999:1 18005:2 18006:1 18007:1 18008:1 18027:1 18032:1 18054:1 18072:1 18074:2 18077:1 18080:3 18082:1 18109:1 18135:1 18140:2 18148:1 18164:2 18177:1 18205:2 18227:1 18253:2 18264:1 18276:1 18283:1 18291:1 18328:1 18345:1 18366:1 18369:1 18376:1 18380:2 18396:1 18402:1 18406:1 18407:1 18471:1 18496:2 18519:1 18546:1 18557:1 18561:1 18570:1 18575:1 18577:1 18578:2 18592:2 18604:2 18605:1 18608:1 18610:1 18635:1 18636:1 18641:1 18642:1 18643:2 18662:1 18700:1 18707:1 18719:4 18738:1 18751:2 18759:1 18773:1 18774:1 18786:1 18796:3 18797:1 18834:1 18882:1 18889:2 18892:1 18900:1 18911:1 18926:1 18930:2 18958:1 18962:1 18973:1 18974:1 18982:1 18999:1 19006:1 19011:1 19017:1 19022:1 19023:2 19034:1 19044:1 19061:1 19081:1 19083:1 19085:1 19087:1 19088:2 19090:1 19099:1 19126:1 19135:1 19136:2 19147:1 19150:1 19180:1 19184:1 19187:1 19198:1 19225:1 19230:1 19235:1 19244:1 19255:1 19263:1 19276:1 19278:1 19291:1 19298:8 19312:1 19321:2 19339:1 19350:1 19362:1 19371:1 19375:1 19391:1 19405:1 19446:1 19447:1 19460:1 19461:2 19505:1 19522:2 19559:1 19561:1 19577:1 19584:2 19587:1 19588:1 19603:1 19627:1 19630:1 19633:1 19645:1 19650:1 19660:1 19678:1 19681:1 19694:1 19699:1 19700:1 19702:1 19706:2 19707:3 19721:1 19732:1 19734:1 19743:1 19746:1 19777:1 19792:1 19793:1 19800:1 19810:1 19819:1 19821:1 19835:1 19842:1 19849:1 19862:1 19873:1 19885:2 19886:1 19901:1 19911:1 19924:1 19933:4 19940:2 19948:1 19951:1 19955:2 19961:1 19968:1 19990:1 19991:1 19996:1 20050:1 20056:2 20058:1 20065:1 20080:1 20083:1 20102:1 20105:3 20122:1 20126:2680 20154:1 20184:1 20187:1 20195:2 20237:1 20264:2 20268:1 20272:1 20276:1 20293:2 20299:2 20305:1 20357:1 20366:1 20393:2 20398:1 20424:2 20427:1 20466:1 20474:1 20480:2 20485:1 20502:1 20513:1 20515:1 20520:1 20524:1 20556:3 20562:2 20577:1 20591:1 20600:1 20630:1 20648:1 20653:2 20660:1 20665:1 20668:3 20676:1 20707:1 20722:1 20734:1 20756:1 20768:1 20777:3 20782:1 20809:1 20816:3 20820:1 20826:3 20830:1 20856:1 20870:1 20894:2 20921:1 20923:6 20951:2 20998:1 21007:1 21016:1 21031:1 21035:4 21049:1 21054:2 21059:1 21062:1 21079:1 21104:1 21116:1 21122:1 21128:3 21140:2 21141:2 21145:1 21146:1 21147:1 21149:1 21165:1 21172:1 21177:2 21192:1 21194:1 21202:1 21227:1 21253:1 21286:2 21288:1 21291:1 21296:1 21315:1 21317:1 21329:1 21358:1 21359:1 21375:1 21437:1 21457:1 21484:1 21486:1 21489:2 21506:1 21525:1 21536:1 21537:1 21541:2 21542:1 21544:1 21556:1 21560:1 21587:2 21592:1 21594:3 21597:1 21598:1 21601:1 21608:1 21615:1 21616:1 21625:1 21628:2 21630:2 21631:2 21636:1 21647:1 21649:1 21650:1 21659:1 21670:2 21677:2 21687:3 21690:1 21694:1 21700:1 21713:1 21729:1 21730:1 21758:1 21771:1 21781:2 21803:2 21815:1 21818:1 21872:3 21910:1 21912:1 21915:1 21920:1 21925:1 21933:1 21934:1 21938:2 21949:1 21953:1 21965:2 21967:2 21985:1 22000:2 22003:1 22028:2 22030:2 22042:2 22053:1 22057:2 22064:2 22099:1 22119:1 22150:1 22152:1 22155:1 22156:1 22167:1 22170:1 22181:1 22186:1 22193:1 22198:1 22201:1 22202:1 22212:1 22222:2 22244:1 22262:1 22270:3 22275:1 22281:1 22291:1 22294:1 22303:2 22312:2 22319:1 22332:1 22335:1 22366:1 22374:1 22375:3 22376:2 22378:1 22383:1 22390:1 22391:2 22392:2 22402:1 22417:1 22426:2 22453:2 22466:1 22476:1 22482:1 22516:2 22547:1 22549:2 22551:1 22557:1 22571:2 22599:1 22621:1 22636:1 22639:1 22640:1 22658:1 22671:1 22680:1 22711:1 22738:1 22753:1 22761:1 22782:1 22786:2 22795:1 22804:1 22813:2 22816:2 22837:2 22844:2 22845:8 22847:1 22854:1 22862:1 22879:1 22888:1 22900:1 22903:1 22930:1 22938:1 22947:1 22953:1 22960:1 22963:1 22973:2 22975:1 22984:1 22985:1 22998:1 23011:1 23017:1 23028:1 23032:1 23038:1 23039:2 23043:2 23044:1 23047:1 23060:1 23077:1 23094:1 23096:1 23139:1 23144:1 23180:3 23187:1 23193:2 23207:1 23217:1 23225:1 23226:1 23239:1 23254:1 23267:1 23280:1 23285:1 23295:1 23301:1 23306:1 23328:1 23339:1 23371:2 23373:1 23377:1 23379:5 23384:1 23387:1 23397:1 23400:1 23409:1 23424:2 23425:3 23445:1 23484:2 23498:1 23512:1 23520:1 23534:2 23544:1 23559:1 23564:1 23585:2 23586:1 23596:1 23600:2 23605:1 23609:2 23625:1 23629:1 23631:1 23644:2 23649:2 23652:1 23668:1 23669:2 23671:2 23677:1 23680:1 23702:2 23712:3 23724:1 23730:1 23738:1 23741:1 23748:1 23758:2 23766:2 23767:1 23778:1 23796:1 23804:1 23807:1 23817:1 23826:1 23832:1 23835:1 23840:1 23841:1 23843:1 23847:2 23848:1 23887:2 23897:1 23900:1 23948:3 23950:1 23952:1 23956:1 23961:1 23962:4 24004:1 24008:1 24015:1 24030:2 24031:1 24032:1 24034:5 24043:1 24051:5 24066:1 24075:1 24102:1 24108:1 24119:1 24142:1 24156:1 24163:1 24200:6 24207:1 24215:1 24216:1 24221:1 24283:1 24285:1 24289:1 24292:1 24298:1 24314:1 24318:2 24324:1 24348:2 24363:4 24388:1 24394:1 24399:2 24403:1 24405:1 24407:1 24413:1 24417:1 24422:1 24423:1 24424:1 24442:1 24447:1 24448:1 24451:1 24467:1 24473:1 24477:2 24489:1 24499:3 24507:1 24517:1 24547:1 24551:1 24566:1 24582:1 24599:1 24600:2 24602:1 24606:1 24608:3 24609:1 24629:1 24632:1 24658:1 24670:1 24675:1 24681:1 24720:1 24723:1 24732:1 24737:1 24754:1 24769:1 24773:1 24779:3 24793:2 24850:4 24867:5 24875:1 24894:1 24896:1 24912:1 24946:1 24947:1 24963:1 24964:4 24974:2 24975:3 24978:3 24986:1 24988:1 24989:3 24990:6 25005:1 25022:1 25030:1 25047:2 25051:1 25053:1 25060:1 25061:1 25073:4 25096:1 25100:2 25106:1 25112:1 25114:2 25121:1 25124:1 25136:1 25170:1 25172:1 25177:1 25207:1 25251:2 25253:1 25256:2 25258:2 25261:2 25265:1 25267:2 25275:5 25290:1 25305:1 25321:4 25325:1 25341:1 25349:1 25360:1 25364:3 25422:1 25438:2 25440:1 25442:2 25445:4 25450:1 25457:3 25465:1 25467:1 25469:1 25479:1 25486:1 25488:1 25490:1 25493:1 25496:1 25502:1 25507:3 25511:1 25518:2 25536:1 25537:1 25544:1 25559:1 25564:1 25577:1 25602:1 25609:1 25611:1 25617:1 25623:1 25625:1 25638:2 25681:2 25684:1 25690:1 25695:5 25713:1 25716:1 25719:1 25720:3 25776:1 25782:1 25800:2 25805:1 25810:1 25846:1 25847:1 25851:1 25859:1 25862:1 25873:1 25886:1 25889:2 25907:1 25968:1 25974:8 25975:1 25983:2 25985:1 25990:2 25998:2 26009:1 26021:1 26032:1 26041:1 26048:1 26062:1 26066:1 26090:1 26093:1 26102:1 26106:1 26115:1 26120:2 26125:3 26129:2 26149:1 26155:3 26172:1 26190:1 26194:1 26213:1 26227:2 26230:1 26231:1 26250:2 26251:1 26260:1 26261:1 26262:1 26267:1 26278:1 26283:1 26287:1 26302:2 26309:2 26316:1 26317:1 26328:1 26333:1 26341:1 26358:1 26359:1 26384:1 26399:1 26425:1 26447:1 26471:1 26481:2 26483:1 26485:1 26508:1 26541:2 26545:2 26552:1 26557:4 26583:1 26584:2 26585:1 26602:1 26603:1 26606:1 26609:1 26626:1 26636:1 26638:1 26669:1 26702:1 26708:1 26729:1 26739:1 26741:4 26764:1 26772:1 26774:1 26777:2 26799:1 26804:1 26805:1 26837:2 26838:2 26868:1 26870:1 26873:1 26885:1 26902:2 26908:1 26919:1 26923:1 26968:1 26978:2 27005:1 27020:1 27028:1 27040:2 27055:1 27057:1 27063:1 27072:2 27074:2 27083:1 27084:2 27085:2 27087:2 27094:3 27095:1 27103:1 27104:1 27108:2 27115:1 27128:1 27134:3 27140:1 27167:2 27178:4 27191:2 27198:1 27205:1 27206:2 27222:1 27227:1 27238:1 27247:2 27248:2 27249:2 27285:1 27287:2 27295:1 27297:1 27315:1 27319:2 27332:1 27338:2 27351:1 27376:1 27381:1 27395:3 27405:1 27408:1 27427:1 27437:1 27439:2 27445:2 27459:1 27467:2 27485:1 27491:1 27512:3 27541:1 27543:1 27546:1 27568:1 27591:1 27601:1 27616:1 27654:1 27667:1 27674:2 27684:1 27685:1 27770:3 27773:1 27794:1 27795:1 27812:1 27817:1 27825:3 27830:1 27846:1 27851:4 27875:1 27881:1 27882:1 27890:1 27896:1 27907:1 27920:1 27929:1 27944:1 27957:1 27991:1 27994:1 28000:1 28041:1 28042:1 28051:2 28053:2 28065:1 28078:2 28081:2 28086:1 28092:1 28094:1 28098:1 28102:2 28103:1 28104:3 28109:1 28139:2 28149:2 28151:1 28168:2 28172:1 28176:2 28183:1 28191:1 28193:2 28196:2 28205:2 28208:1 28211:3 28212:1 28213:2 28220:2 28225:1 28245:1 28249:1 28281:1 28299:5 28300:2 28349:1 28352:1 28388:1 28389:1 28390:1 28411:1 28412:1 28414:1 28418:1 28443:1 28444:4 28448:2 28449:1 28477:1 28478:1 28482:1 28493:1 28499:1 28526:1 28528:1 28530:1 28548:1 28573:1 28574:2 28580:2 28582:1 28583:1 28586:1 28592:1 28599:1 28613:2 28616:1 28622:4 28628:1 28639:1 28644:1 28658:1 28670:1 28671:1 28674:1 28691:1 28716:1 28725:1 28728:1 28739:2 28741:2 28742:1 28743:1 28748:4 28759:1 28775:1 28804:2 28811:1 28827:1 28845:1 28846:1 28854:2 28855:1 28884:1 28896:1 28921:1 28930:1 28939:1 28960:1 28997:1 29006:2 29007:1 29009:1 29015:1 29018:1 29038:1 29053:2 29056:2 29059:1 29061:2 29062:2 29071:1 29076:3 29087:1 29092:1 29096:1 29122:1 29123:1 29128:1 29133:1 29145:1 29148:1 29163:2 29176:1 29178:1 29179:1 29183:2 29188:4 29205:1 29253:2 29266:2 29268:1 29277:1 29290:2 29296:1 29298:2 29306:1 29345:2 29355:1 29367:1 29369:1 29388:1 29392:1 29402:2 29409:1 29417:2 29422:1 29448:1 29456:1 29467:1 29468:1 29479:1 29483:1 29487:1 29491:1 29504:1 29513:1 29537:1 29577:1 29611:1 29617:1 29620:2 29637:1 29642:2 29647:2 29660:1 29673:1 29674:1 29681:1 29701:2 29707:1 29708:1 29718:2 29725:1 29731:1 29738:2 29746:2 29760:1 29771:2 29773:2 29774:1 29780:2 29806:11 29811:1 29815:1 29819:1 29821:2 29831:1 29835:1 29837:1 29852:7 29853:2 29861:1 29865:2 29867:1 29882:3 29904:1 29922:1 29930:1 29939:1 29974:1 29979:1 29999:1 30020:3 30033:1 30045:2 30047:1 30053:2 30056:1 30075:1 30078:2 30083:1 30090:2 30104:1 30109:1 30114:1 30116:1 30121:1 30123:1 30149:1 30160:1 30164:1 30174:1 30177:1 30182:1 30189:1 30196:1 30212:1 30242:1 30247:3 30251:1 30263:1 30271:1 30275:1 30281:1 30300:1 30317:1 30325:1 30330:3 30365:2 30367:1 30381:1 30390:2 30392:2 30399:1 30412:1 30414:1 30428:1 30429:1 30458:1 30459:1 30477:1 30479:1 30494:1 30517:1 30520:1 30526:1 30554:1 30556:2 30557:1 30558:2 30559:1 30567:1 30572:1 30574:1 30578:1 30582:1 30597:1 30599:1 30602:2 30618:1 30621:1 30625:1 30676:1 30683:1 30712:1 30713:1 30714:1 30750:2 30759:1 30783:1 30812:1 30867:2 30869:1 30879:1 30922:4 30931:1 30935:1 30942:1 30949:1 30968:1 30973:5 30978:1 30981:1 30984:1 30996:1 31002:1 31005:2 31013:1 31030:2 31036:1 31046:2 31054:1 31071:1 31076:1 31083:2 31087:1 31090:3 31098:1 31100:1 31121:1 31124:1 31133:2 31135:1 31143:2 31179:1 31182:3 31183:1 31190:1 31195:1 31197:1 31198:1 31201:1 31208:1 31228:1
17 16:1 19:2 33:1 35:1 40:1 42:1 49:1 61:2 62:1 69:1 86:1 110:1 122:1 164:1 173:7 183:1 186:2 192:1 199:1 224:1 227:1 240:1 256:2 271:1 278:4 304:2 310:2 343:1 345:1 351:1 357:2 358:1 398:1 401:2 404:1 419:1 420:1 422:1 426:1 493:1 503:1 504:2 509:1 511:1 513:1 519:1 577:1 591:1 633:3 640:1 641:1 647:1 661:1 662:1 690:1 695:1 703:1 708:3 719:1 726:2 781:1 800:1 815:1 817:1 824:1 839:1 846:3 857:1 864:5 928:2 934:1 969:1 970:1 973:2 977:6 979:3 980:1 982:2 985:1 986:4 990:2 991:3 992:1 997:1 1002:1 1003:2 1007:1 1008:2 1011:2 1028:1 1034:4 1036:2 1039:2 1074:3 1093:1 1094:2 1095:1 1098:2 1114:1 1116:1 1119:1 1129:1 1133:1 1145:1 1150:1 1161:1 1165:1 1166:1 1168:3 1175:1 1186:1 1192:1 1204:1 1210:1 1220:1 1221:1 1222:2 1231:1 1248:1 1258:1 1268:2 1269:2 1318:1 1327:1 1330:1 1339:2 1343:1 1348:1 1360:1 1375:1 1377:1 1382:1 1398:1 1399:1 1410:1 1413:1 1414:1 1433:1 1435:1 1442:1 1460:1 1462:1 1464:1 1472:1 1487:1 1488:1 1497:1 1535:1 1540:1 1560:1 1564:1 1565:2 1601:1 1605:1 1608:1 1613:1 1625:1 1638:2 1642:1 1644:1 1650:1 1669:1 1676:1 1688:4 1702:1 1708:1 1714:1 1717:1 1719:1 1722:1 1736:2 1749:1 1771:1 1786:1 1790:2 1794:1 1797:3 1816:1 1822:1 1825:1 1826:1 1827:1 1833:2 1842:1 1851:1 1857:1 1860:1 1867:1 1868:1 1871:1 1873:1 1895:1 1896:2 1904:1 1905:1 1910:1 1911:1 1921:3 1922:1 1932:1 1933:1 1942:1 1950:1 1956:1 1958:1 1961:2 1963:2 1964:1 1972:1 1975:1 1991:1 1999:1 2011:1 2018:3 2027:2 2033:2 2036:1 2041:1 2066:1 2078:1 2092:1 2099:1 2108:2 2110:1 2126:1 2127:2 2136:1 2139:1 2155:1 2157:1 2164:1 2187:2 2221:1 2224:1 2226:2 2253:2 2261:1 2270:1 2282:1 2307:1 2356:1 2395:2 2433:1 2442:1 2467:1 2470:1 2486:1 2502:1 2504:2 2508:1 2519:1 2525:4 2530:2 2531:1 2533:1 2543:5 2550:1 2551:2 2552:2 2556:2 2558:1 2561:1 2568:1 2569:5 2584:1 2600:2 2616:2 2630:1 2633:1 2638:1 2648:1 2650:1 2697:1 2698:1 2701:2 2721:1 2737:5 2741:2 2757:2 2765:1 2770:1 2777:1 2778:2 2783:1 2784:1 2789:1 2798:1 2799:1 2800:1 2804:3 2809:1 2816:1 2821:1 2856:1 2870:1 2872:2 2892:1 2923:2 2928:1 2938:1 2939:1 2964:1 2982:1 2991:1 3001:1 3004:1 3023:1 3027:1 3031:1 3032:3 3044:1 3086:1 3101:1 3106:1 3109:1 3110:2 3112:2 3117:1 3124:1 3131:1 3138:1 3142:1 3144:1 3147:1 3168:1 3169:1 3179:1 3189:4 3197:4 3210:5 3232:1 3243:1 3247:1 3249:1 3257:2 3266:1 3282:1 3291:1 3294:1 3295:1 3310:2 3313:3 3315:2 3320:1 3322:2 3327:1 3341:1 3364:1 3365:1 3376:1 3392:1 3412:1 3419:3 3420:1 3455:1 3457:1 3463:1 3464:2 3487:1 3495:1 3497:1 3500:1 3524:1 3552:1 3563:3 3589:2 3630:1 3656:1 3671:2 3708:1 3745:1 3747:2 3756:1 3772:1 3778:1 3779:3 3795:1 3797:1 3798:1 3817:1 3848:2 3849:1 3857:1 3869:3 3877:1 3878:1 3879:1 3881:5 3896:1 3904:1 3913:1 3920:1 3926:2 3936:1 3959:1 3971:1 3992:1 3997:1 4003:3 4007:1 4018:2 4025:1 4032:2 4052:2 4061:1 4063:1 4091:1 4093:1 4097:1 4101:1 4127:3 4128:1 4131:1 4132:1 4149:2 4187:1 4204:2 4207:3 4227:1 4240:1 4247:1 4255:1 4262:3 4264:1 4268:1 4282:1 4284:2 4293:1 4311:1 4312:1 4323:1 4325:1 4336:1 4337:1 4385:1 4386:1 4389:1 4426:1 4443:1 4446:1 4448:1 4463:1 4468:1 4473:1 4480:1 4487:1 4490:2 4501:1 4507:1 4518:2 4520:1 4527:1 4535:2 4579:1 4604:1 4606:1 4608:1 4636:1 4642:1 4645:2 4648:1 4650:1 4654:1 4655:1 4662:1 4673:1 4712:2 4716:3 4749:1 4754:1 4761:4 4765:1 4767:1 4779:1 4780:2 4785:1 4787:3 4801:1 4814:1 4816:1 4819:1 4835:1 4837:1 4842:1 4843:1 4854:2 4855:1 4881:1 4891:2 4892:1 4903:1 4906:1 4918:1 4931:1 4955:1 4960:1 4964:1 4965:1 4970:2 4974:1 4981:1 4984:1 4985:5 4997:2 5008:1 5012:1 5015:1 5024:1 5050:2 5070:3 5076:1 5088:2 5107:1 5128:1 5147:2 5154:5 5161:1 5162:1 5172:1 5176:1 5179:1 5180:1 5188:3 5190:1 5192:4 5202:1 5206:1 5209:1 5219:2 5221:2 5246:1 5248:1 5281:1 5296:1 5298:2 5302:1 5312:1 5313:1 5314:1 5315:1 5316:1 5321:1 5326:1 5328:1 5329:2 5334:2 5338:1 5345:2 5347:2 5354:1 5355:1 5357:1 5391:1 5394:1 5417:1 5418:1 5436:1 5443:1 5491:1 5501:1 5505:1 5509:1 5540:2 5544:1 5547:1 5556:1 5569:2 5580:3 5586:1 5592:1 5600:2 5603:1 5625:1 5631:1 5646:2 5651:1 5673:1 5684:1 5692:2 5717:1 5721:1 5735:1 5742:1 5758:2 5761:1 5785:1 5792:1 5806:2 5824:1 5877:1 5878:1 5888:2 5889:1 5896:1 5902:1 5917:1 5942:1 5950:1 5958:1 5979:1 6000:2 6003:1 6006:1 6013:1 6014:3 6020:1 6040:2 6050:1 6066:5 6082:1 6106:1 6121:1 6132:1 6142:1 6147:1 6153:1 6164:2 6166:1 6170:1 6172:1 6182:1 6198:1 6200:2 6202:1 6207:1 6222:1 6233:2 6245:2 6246:1 6248:1 6268:1 6280:1 6286:1 6293:1 6298:1 6301:2 6306:2 6310:2 6312:9 6320:2 6346:1 6361:1 6388:3 6409:1 6411:2 6433:2 6439:1 6440:3 6450:2 6456:1 6467:3 6484:2 6503:1 6507:1 6513:1 6514:1 6531:2 6533:3 6536:1 6557:2 6562:1 6567:1 6569:1 6571:1 6575:1 6579:1 6589:4 6594:1 6617:1 6640:2 6653:2 6654:1 6659:2 6661:2 6665:2 6668:1 6672:1 6681:1 6705:2 6727:1 6733:1 6746:1 6748:1 6753:1 6758:1 6768:4 6786:1 6789:1 6793:1 6804:1 6829:8 6840:1 6844:1 6855:1 6858:1 6865:3 6868:2 6869:1 6875:1 6883:1 6885:3 6886:2 6887:1 6910:1 6917:1 6922:1 6926:1 6930:1 6932:1 6937:1 6938:1 6945:2 6950:1 6959:1 6966:1 7023:1 7033:2 7035:1 7064:1 7069:1 7078:1 7084:2 7101:1 7111:1 7115:1 7121:2 7128:1 7152:1 7169:2 7171:4 7181:1 7202:1 7209:1 7216:1 7219:1 7227:1 7270:1 7277:1 7288:1 7312:3 7332:1 7341:1 7353:1 7354:1 7374:1 7375:3 7381:2 7383:1 7395:1 7413:1 7415:1 7422:1 7423:1 7427:2 7434:2 7444:1 7460:1 7490:1 7529:2 7567:1 7577:2 7580:1 7583:1 7598:4 7616:2 7626:1 7647:1 7648:1 7650:1 7654:1 7659:1 7663:1 7670:1 7676:1 7715:2 7718:2 7745:1 7753:1 7761:3 7769:1 7775:1 7785:1 7787:1 7798:1 7799:1 7801:1 7819:2 7836:1 7846:1 7882:2 7902:1 7903:1 7908:1 7909:1 7929:1 7941:1 7955:2 7959:2 7965:1 7974:1 7976:1 8000:2 8010:1 8019:4 8025:1 8027:1 8034:1 8039:1 8050:1 8053:1 8059:2 8062:1 8063:1 8082:1 8092:2 8102:1 8114:1 8120:2 8126:3 8127:1 8128:1 8148:2 8150:2 8151:7 8152:1 8153:1 8157:2 8161:6 8162:1 8163:1 8165:1 8170:2 8171:3 8172:1 8173:4 8174:2 8187:1 8214:3 8221:1 8232:1 8239:1 8247:1 8261:1 8268:1 8286:1 8300:1 8301:1 8305:1 8310:1 8316:1 8337:2 8353:2 8360:1 8371:1 8372:2 8404:1 8405:1 8420:17 8431:1 8440:4 8442:2 8450:2 8467:1 8474:2 8485:1 8493:2 8502:1 8505:3 8509:1 8542:2 8551:1 8557:1 8572:1 8611:1 8622:1 8640:1 8642:1 8644:1 8650:2 8678:1 8693:3 8702:1 8705:1 8710:1 8716:1 8740:1 8776:2 8792:1 8801:1 8823:5 8828:1 8834:1 8837:2 8850:1 8857:6 8866:1 8872:1 8874:1 8879:1 8886:1 8903:1 8910:1 8920:1 8930:1 8940:1 8953:1 8956:1 8961:1 8963:6 8987:1 9013:2 9023:2 9035:1 9039:1 9062:1 9077:1 9079:2 9082:1 9093:1 9094:1 9119:2 9125:3 9129:1 9131:1 9132:1 9139:1 9141:1 9149:1 9156:2 9165:1 9168:1 9175:2 9186:1 9192:1 9194:1 9210:1 9216:1 9220:1 9224:1 9227:1 9237:2 9243:1 9261:1 9263:1 9268:2 9273:1 9283:1 9296:1 9305:5 9314:1 9316:2 9367:1 9370:1 9372:2 9376:1 9378:4 9383:1 9385:1 9390:1 9396:1 9405:2 9410:1 9421:1 9447:1 9461:1 9463:1 9490:2 9498:1 9500:1 9506:2 9510:1 9522:1 9524:1 9525:1 9568:7 9583:1 9588:1 9596:1 9622:1 9651:1 9667:2 9680:1 9681:1 9685:1 9688:1 9693:1 9715:1 9724:1 9726:1 9743:1 9778:1 9795:5 9796:2 9815:2 9826:1 9835:1 9848:1 9850:1 9857:1 9872:1 9887:1 9894:1 9900:1 9917:1 9922:3 9923:1 9937:1 9948:1 9949:1 9981:1 9996:1 10013:1 10022:1 10026:1 10047:1 10051:3 10079:1 10091:1 10092:2 10119:4 10122:1 10127:1 10131:1 10133:1 10135:1 10141:1 10158:1 10168:1 10169:1 10175:1 10191:1 10203:1 10216:3 10221:1 10229:1 10243:1 10253:1 10254:1 10255:2 10259:1 10273:1 10277:1 10304:1 10306:1 10317:1 10326:2 10342:1 10353:1 10368:1 10372:1 10379:1 10382:1 10388:1 10390:2 10393:1 10402:1 10421:1 10422:1 10451:3 10457:1 10478:1 10483:2 10486:1 10488:1 10494:1 10500:4 10501:1 10503:2 10511:1 10514:1 10516:1 10531:1 10532:1 10540:1 10548:1 10551:1 10554:1 10557:1 10561:1 10566:1 10567:1 10568:3 10576:3 10578:1 10597:1 10623:1 10626:1 10631:1 10650:6 10656:1 10671:1 10676:2 10707:2 10708:1 10747:1 10760:1 10769:1 10781:1 10783:1 10790:1 10799:1 10800:1 10812:1 10821:1 10832:1 10833:1 10847:1 10853:1 10881:1 10884:1 10891:2 10933:1 10936:1 10937:1 10945:2 10954:2 10960:4 10963:1 10965:2 10966:1 10967:2 10972:1 10973:1 10982:1 11010:1 11012:1 11013:1 11014:1 11018:1 11020:2 11021:1 11025:3 11026:1 11035:4 11042:1 11054:1 11055:3 11059:5 11078:1 11082:1 11093:2 11103:1 11113:1 11137:1 11144:2 11150:1 11197:1 11206:1 11217:1 11223:3 11235:3 11237:2 11246:1 11251:2 11255:1 11263:1 11281:1 11304:2 11324:1 11325:1 11338:1 11358:1 11360:1 11367:1 11369:1 11370:2 11372:1 11373:1 11377:1 11403:1 11408:1 11426:5 11429:1 11432:1 11437:3 11445:1 11448:1 11450:1 11456:1 11463:1 11464:2 11466:1 11477:1 11480:1 11481:1 11494:1 11499:1 11501:3 11509:1 11514:1 11522:2 11533:1 11565:1 11572:1 11573:2 11579:1 11585:2 11605:1 11613:2 11649:1 11656:1 11662:1 11664:2 11685:1 11697:1 11700:1 11703:1 11719:2 11730:6 11737:1 11742:2 11745:1 11747:1 11761:1 11764:2 11784:1 11793:1 11813:2 11840:1 11849:1 11861:1 11863:1 11868:1 11869:2 11891:1 11905:1 11926:1 11946:1 11953:1 11963:1 11978:1 11981:1 11996:4 11997:3 12004:1 12010:2 12015:1 12016:2 12026:1 12038:2 12039:1 12052:1 12055:5 12079:1 12082:1 12085:1 12086:4 12095:1 12103:1 12104:3 12118:1 12141:1 12147:1 12159:1 12161:1 12169:1 12187:2 12214:1 12236:1 12246:3 12251:1 12254:1 12261:1 12263:1 12268:1 12272:1 12285:2 12290:2 12293:2 12322:1 12325:2 12329:1 12332:1 12353:1 12366:1 12368:1 12377:1 12380:1 12383:1 12405:1 12407:2 12412:1 12419:2 12424:1 12435:1 12446:1 12450:3 12451:1 12457:1 12462:2 12468:1 12473:2 12488:4 12500:1 12514:1 12530:1 12534:1 12544:1 12568:1 12569:1 12623:1 12633:1 12673:1 12677:1 12679:2 12698:1 12708:1 12711:4 12721:1 12729:1 12743:1 12769:2 12773:1 12776:1 12780:1 12794:1 12798:2 12802:1 12816:1 12827:1 12831:3 12832:1 12839:1 12843:1 12846:2 12848:1 12853:1 12890:1 12894:1 12898:1 12908:1 12910:1 12921:1 12925:2 12944:1 12957:1 12968:1 12977:1 12990:1 12995:1 12996:1 13002:1 13025:3 13028:1 13029:1 13031:1 13034:3 13037:1 13038:5 13039:1 13040:1 13047:2 13050:2 13085:2 13098:1 13100:1 13110:1 13129:1 13130:2 13131:1 13133:2 13138:1 13141:2 13144:1 13157:2 13163:1 13167:2 13169:1 13171:1 13173:2 13199:1 13210:1 13214:1 13222:1 13226:1 13228:1 13243:1 13244:2 13246:1 13247:3 13253:2 13260:3 13261:1 13266:1 13267:1 13279:1 13280:1 13295:1 13301:1 13329:1 13355:2 13359:1 13372:1 13374:1 13385:1 13390:2 13394:1 13395:1 13399:1 13400:1 13403:1 13410:1 13424:1 13436:1 13439:1 13450:1 13465:1 13468:1 13470:1 13472:1 13481:1 13497:1 13540:1 13552:1 13559:2 13577:1 13579:1 13581:1 13584:2 13585:1 13591:2 13600:1 13608:1 13609:1 13655:1 13661:1 13680:2 13695:2 13697:1 13704:1 13710:1 13713:1 13725:1 13731:2 13743:1 13746:1 13766:2 13768:1 13799:1 13828:5 13856:2 13858:1 13864:2 13934:5 13937:1 13949:1 13963:2 13965:1 13971:6 13989:1 13991:2 14022:1 14032:1 14051:1 14069:1 14109:1 14114:1 14148:1 14200:1 14222:1 14238:1 14276:1 14292:2 14294:1 14298:2 14331:1 14333:5 14339:2 14341:1 14342:3 14346:1 14357:1 14377:3 14386:2 14387:1 14412:1 14420:1 14421:1 14424:1 14452:1 14461:1 14473:1 14498:1 14504:1 14522:1 14527:1 14529:1 14556:4 14566:1 14571:1 14625:1 14690:2 14704:1 14708:1 14712:1 14720:1 14728:2 14732:3 14744:3 14753:2 14757:1 14770:1 14789:1 14798:1 14803:1 14804:8 14815:2 14826:1 14843:1 14846:1 14855:2 14856:1 14859:1 14860:1 14864:1 14875:1 14877:1 14878:1 14880:1 14882:2 14888:1 14897:1 14900:1 14914:1 14915:1 14923:1 14931:2 14941:1 14968:1 14987:2 14989:1 14994:1 15020:4 15045:2 15064:1 15095:1 15111:1 15150:1 15169:1 15176:2 15216:1 15220:1 15227:1 15241:1 15245:1 15248:2 15251:1 15271:1 15287:1 15297:1 15321:1 15325:1 15329:1 15341:1 15348:1 15349:1 15355:1 15365:1 15371:1 15385:1 15387:3 15397:1 15398:1 15400:1 15412:1 15422:1 15439:1 15443:1 15444:1 15446:1 15448:1 15452:1 15454:1 15458:1 15459:1 15468:1 15485:2 15495:1 15496:1 15514:1 15534:1 15549:2 15554:1 15563:1 15570:1 15571:1 15573:1 15577:1 15580:4 15582:1 15584:1 15594:1 15598:1 15602:1 15605:1 15608:1 15615:4 15617:2 15620:1 15623:1 15650:2 15672:1 15678:1 15685:1 15695:1 15701:1 15704:1 15718:1 15720:1 15731:1 15740:1 15741:1 15742:4 15750:2 15761:1 15764:1 15768:1 15789:2 15797:2 15804:2 15811:1 15815:1 15822:1 15842:1 15859:1 15873:1 15933:1 15953:1 15958:2 15959:3 15968:1 16004:1 16015:1 16019:1 16024:1 16028:3 16029:1 16039:1 16056:9 16063:2 16064:2 16065:1 16080:1 16082:1 16083:1 16085:1 16087:4 16089:34 16099:1 16104:1 16105:2 16116:1 16138:1 16146:3 16155:2 16159:2 16196:1 16212:1 16235:3 16254:1 16259:1 16278:3 16288:1 16298:1 16300:2 16305:1 16309:2 16312:1 16321:1 16322:1 16357:1 16361:3 16363:1 16372:1 16399:1 16409:1 16410:2 16424:1 16432:1 16443:1 16454:2 16478:2 16487:2 16508:1 16515:1 16519:1 16525:1 16533:1 16558:1 16572:1 16573:2 16585:1 16596:1 16598:8 16610:1 16617:1 16631:1 16633:1 16635:1 16638:1 16650:1 16651:1 16669:1 16702:3 16741:1 16744:1 16752:1 16776:1 16788:1 16798:1 16835:1 16836:2 16839:2 16840:1 16849:1 16906:1 16907:1 16914:1 16915:1 16940:2 16947:1 16948:2 16965:1 16971:1 16972:1 16989:1 16995:1 16996:1 16997:2 17018:1 17022:1 17028:1 17029:1 17035:1 17053:1 17072:1 17103:1 17108:4 17109:1 17111:1 17112:1 17113:1 17115:1 17134:1 17135:1 17152:1 17153:1 17163:2 17178:1 17179:1 17188:1 17202:1 17205:1 17213:1 17215:2 17217:1 17225:1 17238:1 17240:1 17244:1 17257:11 17262:1 17320:4 17330:2 17331:1 17338:3 17350:2 17354:1 17366:1 17380:1 17384:1 17390:3 17454:1 17458:1 17459:1 17482:1 17502:1 17503:3 17512:1 17516:2 17554:1 17581:1 17585:1 17602:1 17610:1 17613:2 17620:1 17622:1 17641:1 17661:1 17663:1 17667:1 17676:1 17685:1 17694:1 17710:1 17730:1 17732:1 17736:1 17768:2 17772:1 17787:1 17804:1 17806:1 17811:2 17814:1 17816:1 17818:1 17832:1 17843:1 17844:1 17874:2 17878:1 17882:1 17894:1 17899:1 17907:3 17911:2 17913:1 17921:1 17923:2 17924:1 17931:1 17936:1 17940:1 17951:1 17965:1 17969:1 17977:2 17979:1 17985:1 17990:3 17999:1 18005:2 18006:1 18007:2 18008:1 18027:1 18032:1 18054:1 18067:1 18072:1 18074:2 18077:1 18080:3 18082:1 18109:2 18135:1 18140:2 18148:2 18164:2 18177:1 18205:2 18227:1 18253:2 18264:1 18276:1 18283:1 18291:1 18328:1 18345:1 18366:1 18369:1 18376:1 18380:2 18396:1 18402:1 18406:1 18407:1 18471:1 18496:2 18519:1 18546:1 18557:1 18561:1 18570:1 18575:1 18577:1 18578:2 18592:2 18604:2 18605:1 18608:1 18610:1 18635:1 18636:1 18641:1 18642:1 18643:2 18662:1 18700:1 18707:1 18719:4 18738:1 18751:2 18759:1 18773:1 18774:1 18786:1 18796:3 18797:1 18817:1 18834:1 18882:1 18889:2 18892:1 18900:1 18911:1 18926:1 18930:2 18958:1 18962:1 18973:1 18974:1 18982:1 18999:1 19006:1 19011:1 19017:1 19022:1 19023:2 19034:1 19044:1 19061:1 19081:1 19083:1 19085:1 19087:1 19088:2 19090:1 19099:1 19126:1 19135:1 19136:2 19147:1 19150:1 19180:1 19184:1 19187:1 19198:1 19225:1 19230:1 19235:1 19244:1 19255:1 19263:1 19276:1 19278:1 19291:1 19298:8 19312:1 19321:2 19339:1 19350:1 19362:1 19371:1 19375:1 19391:1 19405:1 19446:1 19447:1 19460:1 19461:2 19505:1 19522:2 19559:1 19561:1 19577:1 19584:2 19587:1 19588:1 19603:1 19627:1 19630:1 19633:1 19645:1 19650:1 19660:1 19678:1 19681:1 19694:1 19699:1 19700:1 19702:1 19706:2 19707:3 19721:1 19732:1 19734:1 19743:1 19746:1 19777:1 19792:1 19793:1 19800:1 19810:1 19819:1 19821:1 19835:1 19842:1 19849:1 19862:1 19873:1 19885:2 19886:1 19901:1 19911:1 19924:1 19933:4 19940:2 19948:1 19951:1 19955:2 19961:1 19968:1 19990:1 19991:1 19996:1 20050:1 20056:2 20058:1 20065:1 20080:1 20083:1 20102:1 20105:3 20122:1 20126:2798 20154:1 20184:1 20187:1 20195:2 20237:1 20264:2 20268:1 20272:1 20276:1 20293:2 20299:2 20305:1 20357:1 20366:1 20393:2 20398:1 20424:2 20427:1 20466:1 20474:1 20480:2 20485:1 20501:1 20502:1 20513:1 20515:1 20520:1 20524:1 20556:3 20562:2 20577:1 20591:1 20600:1 20630:1 20648:1 20653:2 20660:1 20665:1 20668:3 20676:1 20707:1 20722:1 20728:1 20734:1 20756:1 20768:1 20777:3 20782:1 20809:1 20816:3 20820:1 20826:3 20830:1 20856:1 20870:1 20894:2 20921:1 20923:6 20951:2 20998:1 21007:1 21016:1 21031:1 21035:4 21049:1 21054:2 21059:1 21062:1 21079:1 21104:1 21116:1 21122:1 21128:3 21140:2 21141:2 21145:2 21146:1 21147:1 21149:1 21165:1 21172:1 21177:2 21192:1 21194:1 21202:1 21227:1 21253:1 21286:2 21288:1 21291:1 21296:1 21315:1 21317:1 21329:1 21358:1 21359:1 21375:1 21437:1 21457:1 21484:1 21486:1 21489:2 21506:1 21525:1 21536:1 21537:1 21541:2 21542:1 21544:1 21556:1 21560:1 21587:2 21592:1 21594:3 21597:1 21598:1 21601:1 21608:1 21615:1 21616:1 21625:1 21628:2 21630:2 21631:2 21636:1 21647:1 21649:1 21650:1 21659:1 21670:2 21677:2 21687:3 21690:1 21694:1 21700:1 21713:1 21729:1 21730:1 21758:1 21771:1 21781:2 21803:2 21815:1 21818:1 21872:3 21910:1 21912:1 21915:1 21920:1 21925:2 21933:1 21934:1 21938:2 21949:1 21953:1 21965:2 21967:2 21985:1 21999:1 22000:2 22003:1 22028:2 22030:2 22042:2 22053:1 22057:2 22064:2 22099:1 22119:1 22150:1 22152:1 22155:1 22156:1 22167:1 22170:1 22181:1 22186:1 22193:1 22198:1 22201:1 22202:1 22212:1 22222:2 22244:1 22250:1 22262:1 22270:3 22275:1 22281:1 22291:1 22294:1 22303:2 22312:2 22319:1 22332:1 22335:1 22366:1 22374:1 22375:3 22376:2 22378:1 22383:1 22390:1 22391:2 22392:2 22402:1 22417:1 22426:2 22453:2 22466:1 22476:1 22482:1 22516:2 22547:1 22549:2 22551:1 22557:1 22571:2 22599:1 22621:1 22636:1 22639:1 22640:1 22658:1 22671:1 22680:1 22711:1 22738:1 22753:1 22761:1 22782:1 22786:2 22795:1 22804:1 22813:2 22816:2 22837:2 22844:2 22845:8 22847:1 22854:1 22862:1 22879:1 22888:1 22900:1 22903:1 22905:1 22930:1 22938:1 22947:1 22953:1 22960:1 22963:1 22973:2 22975:1 22984:1 22985:1 22998:1 23011:1 23017:1 23028:1 23032:1 23038:1 23039:2 23043:2 23044:1 23047:1 23060:1 23077:1 23094:1 23096:1 23139:1 23144:1 23180:3 23187:1 23193:2 23207:1 23217:1 23225:1 23226:1 23239:1 23254:1 23267:1 23280:1 23285:1 23295:1 23301:1 23306:1 23328:1 23339:1 23371:2 23373:1 23377:1 23379:5 23384:1 23387:1 23397:1 23400:1 23409:1 23424:2 23425:3 23445:1 23484:2 23498:1 23512:1 23520:1 23534:2 23544:1 23559:1 23564:1 23585:3 23586:1 23596:1 23600:2 23605:1 23609:2 23625:1 23629:1 23631:1 23644:2 23649:2 23652:1 23668:1 23669:2 23671:2 23677:1 23680:1 23702:2 23712:3 23724:1 23730:1 23738:1 23741:1 23748:1 23758:2 23766:2 23767:1 23778:1 23796:1 23804:1 23807:1 23817:1 23826:1 23832:1 23835:1 23840:1 23841:1 23843:1 23847:2 23848:1 23887:2 23897:1 23900:1 23919:1 23948:3 23950:1 23952:2 23956:1 23961:1 23962:4 24004:1 24008:1 24015:1 24030:2 24031:1 24032:1 24034:5 24043:1 24051:5 24066:1 24075:1 24102:1 24108:1 24119:1 24142:1 24156:1 24163:1 24169:1 24200:6 24207:1 24215:1 24216:1 24221:1 24283:1 24285:1 24289:1 24292:2 24298:1 24314:1 24318:2 24324:1 24348:2 24362:1 24363:4 24388:1 24394:1 24399:2 24400:1 24403:1 24405:1 24407:1 24413:1 24417:1 24422:1 24423:1 24424:1 24442:1 24447:1 24448:1 24451:1 24467:1 24473:1 24477:2 24489:1 24499:4 24507:1 24514:1 24517:1 24547:1 24551:1 24566:1 24582:1 24599:1 24600:2 24602:1 24606:1 24608:3 24609:1 24629:1 24632:1 24658:1 24670:1 24675:1 24681:1 24720:1 24723:1 24732:1 24737:1 24754:1 24769:1 24773:2 24779:3 24793:2 24850:4 24867:6 24875:1 24894:1 24896:1 24912:1 24946:1 24947:1 24963:1 24964:4 24974:2 24975:3 24978:3 24986:1 24988:1 24989:3 24990:6 25005:1 25022:1 25030:1 25047:2 25051:1 25053:1 25060:1 25061:1 25073:4 25096:1 25100:2 25106:1 25112:1 25114:2 25121:1 25124:1 25136:1 25170:1 25172:1 25177:1 25207:1 25251:2 25253:1 25256:2 25258:2 25261:2 25265:1 25267:2 25275:5 25290:1 25305:1 25321:4 25325:1 25341:1 25349:1 25360:1 25364:3 25422:1 25438:2 25440:1 25442:2 25445:4 25450:1 25457:3 25465:1 25467:1 25469:1 25479:1 25486:1 25488:1 25490:1 25493:1 25496:1 25502:1 25507:3 25511:1 25518:2 25536:1 25537:1 25544:2 25559:1 25564:1 25577:1 25602:1 25609:1 25611:1 25617:1 25623:1 25625:1 25638:2 25681:2 25684:1 25690:1 25695:5 25713:1 25716:1 25719:1 25720:3 25776:1 25782:1 25800:2 25805:1 25810:1 25846:1 25847:1 25851:1 25859:1 25862:1 25873:1 25886:1 25889:2 25907:1 25968:1 25974:9 25975:1 25983:2 25985:1 25990:2 25998:2 26009:1 26021:1 26022:1 26032:1 26041:1 26048:1 26062:1 26066:1 26090:1 26093:1 26102:1 26106:1 26115:1 26120:2 26125:4 26129:2 26149:1 26155:3 26172:1 26190:1 26194:1 26213:1 26227:2 26230:1 26231:1 26250:2 26251:1 26260:1 26261:1 26262:1 26267:1 26278:1 26283:1 26287:1 26302:2 26309:2 26316:1 26317:1 26328:1 26333:1 26341:1 26358:1 26359:1 26384:1 26399:1 26425:1 26447:1 26471:1 26481:2 26483:1 26485:1 26508:1 26541:2 26545:2 26552:1 26557:4 26583:1 26584:2 26585:1 26602:1 26603:1 26606:1 26609:1 26626:1 26636:1 26638:1 26669:1 26702:1 26708:1 26729:1 26739:1 26741:4 26764:2 26772:1 26774:1 26777:2 26799:1 26804:1 26805:1 26837:2 26838:2 26868:1 26870:1 26873:1 26885:1 26902:2 26908:1 26919:1 26923:1 26937:1 26968:1 26978:2 26988:1 27005:1 27020:1 27028:1 27040:2 27055:1 27057:1 27063:1 27072:2 27074:2 27083:1 27084:2 27085:2 27087:2 27094:3 27095:1 27103:1 27104:1 27108:2 27115:1 27128:1 27134:3 27140:1 27167:2 27178:4 27191:2 27198:1 27205:1 27206:2 27222:1 27227:1 27238:1 27247:2 27248:2 27249:2 27285:1 27287:2 27295:1 27297:1 27315:1 27319:2 27332:1 27338:2 27351:1 27376:1 27381:1 27395:3 27405:1 27408:1 27427:1 27437:1 27439:2 27445:2 27459:1 27467:2 27485:1 27491:1 27512:3 27541:1 27543:1 27546:1 27568:1 27591:1 27601:1 27616:1 27654:1 27667:1 27674:2 27684:1 27685:1 27770:3 27773:1 27794:1 27795:1 27812:1 27817:1 27825:3 27830:1 27846:1 27851:4 27875:1 27881:1 27882:1 27890:1 27896:1 27907:1 27920:1 27929:1 27944:1 27957:1 27991:1 27994:1 28000:1 28041:1 28042:1 28051:2 28053:2 28065:1 28078:2 28081:2 28086:1 28092:1 28094:1 28098:1 28102:2 28103:1 28104:3 28109:1 28139:3 28149:2 28151:1 28168:2 28172:1 28176:2 28183:1 28191:1 28193:2 28196:2 28205:2 28208:1 28211:3 28212:1 28213:2 28220:2 28225:1 28245:1 28249:1 28251:1 28281:1 28299:5 28300:2 28349:1 28352:1 28388:1 28389:1 28390:1 28411:1 28412:1 28414:1 28418:1 28443:1 28444:4 28448:2 28449:1 28477:1 28478:1 28482:1 28493:1 28499:1 28526:1 28528:1 28530:1 28548:1 28573:1 28574:2 28580:2 28582:1 28583:1 28586:1 28592:1 28599:1 28613:2 28616:1 28622:4 28628:1 28639:1 28644:1 28651:1 28658:1 28670:1 28671:1 28674:1 28691:1 28716:1 28725:1 28728:1 28739:2 28741:2 28742:1 28743:1 28748:4 28759:1 28775:1 28804:2 28811:1 28827:1 28845:1 28846:1 28854:2 28855:1 28884:1 28896:1 28921:1 28930:1 28939:1 28960:1 28997:1 29006:2 29007:1 29009:1 29015:1 29018:1 29038:1 29053:2 29056:2 29059:1 29061:2 29062:2 29071:1 29076:3 29087:1 29092:1 29096:1 29122:1 29123:1 29128:1 29133:1 29145:1 29148:1 29163:2 29176:1 29177:1 29178:1 29179:1 29183:2 29188:4 29205:1 29253:2 29266:2 29268:1 29277:1 29290:2 29296:1 29298:2 29306:1 29345:2 29355:1 29367:1 29369:1 29388:1 29392:1 29402:2 29409:1 29417:2 29422:1 29448:1 29456:1 29467:1 29468:2 29479:1 29483:1 29487:1 29491:1 29504:1 29513:1 29537:1 29577:1 29611:1 29617:1 29620:2 29637:1 29642:2 29647:2 29660:1 29673:1 29674:1 29681:1 29701:2 29707:1 29708:1 29718:2 29725:1 29731:1 29738:2 29746:2 29760:1 29771:2 29773:2 29774:1 29780:2 29806:11 29811:1 29815:1 29819:1 29821:2 29831:1 29835:1 29837:1 29852:7 29853:2 29861:1 29865:2 29867:1 29882:3 29904:1 29922:1 29930:1 29939:1 29974:1 29979:1 29999:1 30020:3 30033:1 30045:2 30047:1 30053:2 30056:1 30068:1 30075:1 30078:2 30083:1 30090:2 30104:1 30109:1 30114:1 30116:1 30121:1 30123:1 30149:1 30160:1 30164:1 30174:1 30177:1 30182:1 30189:1 30196:1 30199:1 30212:1 30242:1 30247:3 30251:1 30263:1 30271:1 30275:1 30281:1 30300:1 30317:1 30325:1 30330:3 30365:2 30367:1 30381:1 30390:2 30392:2 30399:1 30412:1 30414:1 30428:1 30429:1 30458:1 30459:1 30477:1 30479:1 30494:1 30498:1 30517:1 30520:1 30526:1 30554:1 30556:2 30557:1 30558:2 30559:1 30567:1 30572:1 30574:1 30578:1 30582:1 30597:1 30599:1 30602:2 30618:1 30621:1 30625:1 30676:1 30683:1 30712:1 30713:1 30714:1 30750:2 30759:1 30783:1 30803:1 30812:1 30867:2 30869:1 30879:1 30922:4 30931:1 30935:1 30942:1 30949:1 30968:1 30973:5 30978:1 30981:1 30984:1 30996:1 31002:1 31005:2 31013:1 31030:2 31036:1 31046:2 31054:1 31071:1 31076:1 31083:2 31087:1 31090:3 31098:1 31100:1 31121:1 31124:1 31133:2 31135:1 31143:2 31179:1 31182:3 31183:1 31190:1 31195:1 31197:1 31198:1 31201:1 31208:1 31228:1
17 16:1 19:2 33:1 35:1 40:1 42:1 49:1 61:2 62:1 69:1 86:1 110:1 122:1 164:1 173:7 183:1 186:2 192:1 199:1 224:1 227:1 240:1 256:2 271:1 278:4 304:2 310:2 343:1 345:1 351:1 357:2 358:1 398:1 401:2 404:1 419:1 420:1 422:1 426:1 493:1 503:1 504:2 509:1 511:1 513:1 514:1 519:1 577:1 591:1 633:3 640:1 641:1 647:1 661:1 662:1 690:1 695:1 703:1 708:3 719:1 726:2 781:1 800:1 815:1 817:1 824:1 831:1 839:1 846:3 857:1 864:5 928:2 934:1 969:1 970:1 973:2 977:6 979:3 980:1 982:2 985:1 986:4 990:2 991:3 992:1 997:1 1002:1 1003:2 1007:1 1008:2 1011:2 1028:1 1034:4 1036:2 1039:2 1074:3 1093:1 1094:2 1095:1 1098:2 1114:1 1116:1 1119:1 1129:1 1133:1 1145:1 1150:1 1161:1 1165:1 1166:1 1168:3 1175:1 1186:1 1192:1 1204:1 1210:1 1220:1 1221:1 1222:2 1231:1 1248:1 1258:1 1268:2 1269:2 1318:1 1327:1 1330:1 1339:2 1343:1 1348:1 1360:1 1375:1 1377:1 1382:1 1398:1 1399:1 1410:1 1413:1 1414:1 1433:1 1435:1 1442:1 1460:1 1462:1 1464:1 1472:1 1487:1 1488:1 1497:1 1535:1 1540:1 1560:1 1564:1 1565:2 1601:1 1605:1 1608:1 1613:1 1625:1 1638:2 1642:1 1644:1 1650:1 1669:2 1676:1 1688:4 1701:1 1702:1 1708:1 1714:1 1717:1 1719:1 1722:1 1736:2 1749:1 1771:1 1786:1 1790:2 1794:1 1797:3 1816:1 1822:1 1825:1 1826:1 1827:1 1833:2 1842:1 1851:1 1857:1 1860:1 1867:1 1868:1 1871:1 1873:1 1895:1 1896:2 1904:1 1905:1 1910:1 1911:1 1921:3 1922:1 1932:1 1933:1 1942:1 1950:1 1956:1 1958:1 1961:2 1963:2 1964:1 1972:1 1975:1 1991:1 1999:1 2011:1 2018:3 2027:2 2033:2 2036:1 2041:1 2066:1 2078:1 2092:1 2099:1 2108:2 2110:1 2126:1 2127:2 2128:1 2136:1 2139:1 2155:1 2157:1 2164:1 2187:2 2221:1 2224:1 2226:2 2253:2 2261:1 2270:1 2282:1 2307:1 2356:1 2395:2 2433:1 2442:1 2467:1 2470:1 2486:1 2502:1 2504:2 2508:1 2519:1 2525:4 2530:2 2531:1 2533:1 2543:5 2550:1 2551:2 2552:2 2556:2 2558:1 2561:1 2568:1 2569:6 2584:1 2600:2 2616:2 2630:1 2633:1 2638:1 2648:1 2650:1 2697:1 2698:1 2701:2 2721:1 2737:5 2741:2 2757:2 2765:1 2770:1 2777:1 2778:2 2783:1 2784:1 2789:1 2798:1 2799:1 2800:1 2804:3 2809:1 2816:1 2821:1 2856:1 2870:1 2872:2 2892:1 2923:2 2928:1 2938:1 2939:1 2964:1 2982:1 2991:1 3001:1 3004:1 3023:1 3027:1 3031:1 3032:3 3044:1 3086:1 3101:1 3106:1 3109:1 3110:2 3112:2 3117:1 3124:1 3131:1 3138:1 3142:1 3144:1 3147:1 3168:1 3169:1 3179:1 3189:4 3197:4 3210:5 3232:1 3243:1 3247:1 3249:1 3257:2 3266:1 3282:1 3291:1 3294:1 3295:1 3310:2 3313:3 3315:2 3320:1 3322:2 3327:1 3341:1 3364:1 3365:1 3376:1 3392:1 3412:1 3419:3 3420:1 3455:1 3457:1 3463:1 3464:2 3487:1 3495:1 3497:1 3500:1 3524:1 3552:1 3563:3 3589:2 3630:1 3656:1 3671:2 3708:1 3745:1 3747:2 3756:1 3772:1 3778:1 3779:3 3795:1 3797:1 3798:1 3817:1 3848:2 3849:1 3857:1 3869:3 3877:1 3878:1 3879:1 3881:5 3896:1 3904:1 3913:1 3920:1 3926:2 3936:1 3959:1 3971:1 3992:1 3997:1 4003:3 4007:1 4018:2 4025:1 4032:2 4052:2 4061:1 4063:1 4091:1 4093:1 4097:1 4101:1 4127:3 4128:1 4131:1 4132:1 4149:2 4159:1 4187:1 4204:2 4207:3 4227:1 4240:1 4247:1 4255:1 4262:3 4264:1 4268:1 4282:1 4284:2 4293:1 4311:1 4312:1 4323:1 4325:1 4336:1 4337:1 4385:1 4386:1 4389:1 4418:2 4426:1 4443:1 4446:1 4448:1 4463:1 4468:1 4473:1 4480:1 4487:1 4490:2 4501:1 4507:1 4518:2 4520:1 4527:1 4535:2 4579:1 4604:1 4606:1 4608:1 4636:1 4642:1 4645:2 4648:1 4650:1 4654:1 4655:1 4662:1 4673:1 4712:2 4716:3 4749:1 4754:1 4761:4 4765:1 4767:1 4779:1 4780:2 4785:1 4787:4 4801:1 4814:1 4816:1 4819:1 4835:1 4837:1 4842:1 4843:1 4854:2 4855:1 4881:1 4891:2 4892:1 4903:1 4906:1 4918:1 4931:1 4955:1 4960:1 4964:1 4965:1 4970:2 4974:1 4981:1 4984:1 4985:5 4997:2 5008:1 5012:1 5015:1 5024:1 5050:2 5070:4 5076:1 5088:2 5107:1 5128:1 5147:2 5154:5 5161:1 5162:1 5172:1 5176:1 5179:1 5180:1 5188:3 5190:1 5192:4 5202:1 5206:1 5209:1 5219:2 5221:2 5246:1 5248:1 5281:1 5296:1 5298:2 5302:1 5312:1 5313:1 5314:1 5315:1 5316:1 5321:1 5326:1 5328:1 5329:2 5334:2 5338:1 5345:2 5347:2 5354:1 5355:1 5357:1 5391:1 5394:1 5417:1 5418:1 5436:1 5443:1 5491:1 5501:1 5505:1 5509:1 5540:2 5544:1 5547:1 5556:1 5569:2 5580:3 5586:1 5592:1 5600:2 5603:1 5625:1 5631:1 5646:2 5651:1 5673:1 5684:1 5692:2 5717:1 5721:1 5735:1 5742:1 5758:2 5761:1 5785:1 5792:1 5806:2 5824:1 5877:1 5878:1 5888:2 5889:1 5896:1 5902:1 5917:1 5942:1 5950:1 5958:1 5979:1 6000:2 6003:1 6006:1 6013:1 6014:3 6020:1 6040:2 6050:1 6066:6 6082:1 6106:1 6121:1 6132:1 6142:1 6147:1 6153:1 6164:2 6166:1 6170:1 6172:1 6182:1 6198:1 6200:2 6202:1 6207:1 6222:1 6233:2 6245:2 6246:1 6248:1 6268:1 6280:1 6286:1 6293:1 6298:1 6301:2 6306:2 6310:2 6312:9 6320:2 6342:1 6346:1 6361:1 6388:3 6409:1 6411:2 6433:2 6439:1 6440:4 6450:2 6456:1 6467:3 6484:2 6503:1 6507:1 6513:1 6514:1 6531:2 6533:3 6536:1 6557:2 6562:1 6567:1 6569:1 6571:1 6575:1 6579:1 6589:4 6594:1 6617:1 6640:2 6653:2 6654:1 6659:2 6661:2 6665:2 6668:1 6672:1 6681:1 6705:2 6727:1 6733:1 6746:1 6748:1 6753:1 6758:1 6768:4 6786:1 6789:1 6793:1 6804:1 6829:9 6840:1 6844:1 6855:1 6858:1 6865:3 6868:2 6869:1 6875:1 6883:1 6885:3 6886:2 6887:1 6910:1 6917:1 6922:1 6926:1 6930:1 6932:1 6937:1 6938:1 6945:2 6950:1 6959:1 6966:1 7023:1 7033:2 7035:1 7064:1 7069:1 7078:1 7084:2 7101:1 7111:1 7115:1 7121:2 7128:1 7152:1 7169:2 7171:4 7181:1 7202:1 7209:1 7216:1 7219:1 7227:1 7270:1 7277:1 7288:1 7312:3 7332:1 7341:1 7353:1 7354:1 7374:1 7375:3 7381:2 7383:1 7395:1 7413:1 7415:1 7422:1 7423:1 7427:2 7434:3 7444:1 7460:1 7490:1 7518:1 7529:2 7567:1 7577:2 7580:1 7583:1 7598:4 7616:2 7626:1 7647:1 7648:1 7650:1 7654:1 7659:1 7663:1 7670:1 7676:1 7715:2 7718:2 7745:1 7753:1 7761:3 7769:1 7775:1 7785:1 7787:1 7798:1 7799:1 7801:1 7819:2 7836:1 7846:1 7882:2 7902:1 7903:1 7908:1 7909:1 7929:1 7932:1 7941:1 7955:2 7959:2 7965:1 7974:1 7976:1 8000:2 8010:1 8019:4 8025:1 8027:1 8034:1 8039:1 8050:1 8053:1 8059:2 8062:1 8063:1 8080:1 8082:1 8092:2 8102:1 8114:1 8120:2 8126:3 8127:1 8128:1 8148:3 8150:2 8151:7 8152:2 8153:1 8155:1 8157:2 8161:6 8162:1 8163:1 8165:1 8170:2 8171:3 8172:1 8173:4 8174:2 8187:1 8214:3 8221:1 8232:1 8239:1 8247:1 8261:1 8268:1 8286:1 8300:1 8301:1 8305:1 8310:1 8316:1 8337:2 8353:2 8360:1 8371:1 8372:2 8404:1 8405:1 8420:17 8431:1 8440:4 8442:2 8450:2 8467:1 8474:2 8485:1 8493:2 8502:1 8505:3 8509:1 8542:2 8551:1 8557:1 8572:1 8611:1 8622:1 8640:1 8642:1 8644:1 8650:2 8678:1 8693:3 8702:1 8705:1 8710:1 8716:1 8740:1 8776:2 8792:1 8801:1 8823:5 8828:1 8834:1 8837:2 8850:1 8857:6 8866:1 8872:1 8874:1 8879:1 8886:1 8903:1 8910:1 8920:1 8930:1 8940:1 8953:1 8956:1 8961:1 8963:6 8987:1 9013:2 9023:2 9035:1 9039:1 9062:1 9077:1 9079:2 9082:1 9093:1 9094:1 9119:2 9125:3 9129:1 9131:1 9132:1 9139:1 9141:1 9149:1 9156:2 9165:1 9168:1 9175:2 9186:1 9192:1 9194:1 9210:1 9216:1 9220:1 9224:1 9227:1 9237:2 9243:1 9261:1 9263:1 9268:2 9273:1 9283:1 9296:1 9305:5 9314:1 9316:2 9367:1 9370:1 9372:2 9376:1 9378:4 9383:1 9385:1 9390:1 9396:1 9405:2 9410:1 9421:1 9447:1 9461:1 9463:1 9490:2 9498:1 9500:1 9506:2 9510:1 9522:1 9524:1 9525:1 9568:7 9583:1 9588:1 9596:1 9622:1 9651:1 9667:2 9680:1 9681:1 9685:1 9688:1 9693:1 9715:1 9724:1 9726:1 9743:1 9778:1 9795:5 9796:2 9815:2 9826:1 9835:1 9848:1 9850:1 9857:1 9872:1 9887:1 9894:1 9900:1 9917:1 9922:3 9923:1 9937:1 9948:1 9949:1 9981:1 9996:1 10013:1 10022:1 10026:1 10047:1 10051:3 10079:1 10091:1 10092:2 10119:4 10122:1 10127:1 10131:1 10133:1 10135:1 10141:2 10158:1 10168:1 10169:1 10175:1 10191:1 10203:1 10216:3 10221:1 10229:1 10243:1 10253:1 10254:1 10255:2 10259:1 10273:1 10277:1 10304:1 10306:1 10317:1 10326:2 10342:1 10353:1 10368:1 10372:1 10379:1 10382:1 10388:1 10390:2 10393:1 10402:1 10421:1 10422:1 10451:3 10457:1 10478:1 10483:2 10486:1 10488:1 10494:1 10500:4 10501:1 10503:2 10511:1 10514:1 10516:1 10531:1 10532:1 10540:1 10548:1 10551:1 10554:1 10557:1 10561:1 10566:1 10567:1 10568:3 10576:3 10578:1 10597:1 10623:1 10626:1 10631:1 10650:6 10656:1 10671:1 10676:2 10707:2 10708:1 10747:1 10760:1 10769:1 10781:1 10783:1 10790:1 10799:1 10800:1 10812:1 10821:1 10827:1 10832:1 10833:1 10847:1 10853:1 10881:1 10884:1 10891:2 10933:1 10936:1 10937:1 10945:2 10949:1 10954:2 10960:4 10963:1 10965:2 10966:1 10967:2 10972:1 10973:1 10982:1 11010:1 11012:1 11013:1 11014:1 11018:1 11020:2 11021:1 11025:3 11026:1 11035:4 11042:1 11054:1 11055:3 11059:5 11078:1 11082:1 11093:2 11103:1 11113:1 11137:1 11144:2 11150:1 11197:1 11206:1 11217:1 11223:3 11235:3 11237:2 11246:1 11251:2 11255:1 11263:1 11281:1 11304:2 11324:1 11325:1 11338:1 11358:1 11360:1 11367:1 11369:1 11370:2 11372:1 11373:1 11377:1 11403:1 11408:1 11426:5 11429:1 11432:1 11437:3 11445:1 11448:1 11450:1 11456:1 11463:1 11464:2 11466:1 11477:1 11480:1 11481:1 11494:1 11499:1 11501:3 11509:1 11514:1 11522:2 11533:1 11565:1 11572:1 11573:2 11579:1 11585:2 11605:1 11613:2 11649:1 11656:1 11662:1 11664:2 11685:1 11697:1 11700:1 11703:1 11719:2 11730:6 11737:1 11742:2 11745:1 11747:1 11761:1 11764:2 11784:1 11793:1 11813:2 11840:1 11849:1 11861:1 11863:1 11868:1 11869:2 11891:1 11905:1 11926:1 11946:1 11953:1 11963:1 11978:1 11981:1 11996:4 11997:3 12004:1 12010:2 12015:1 12016:2 12026:1 12038:2 12039:1 12052:1 12055:5 12079:1 12082:1 12085:1 12086:4 12095:1 12103:1 12104:3 12118:1 12141:1 12147:1 12159:1 12161:1 12169:1 12187:2 12214:1 12236:1 12246:3 12251:1 12254:1 12261:1 12263:1 12268:1 12272:1 12285:2 12290:3 12293:2 12322:1 12325:2 12329:1 12332:1 12353:1 12366:1 12368:1 12377:1 12380:1 12383:1 12405:1 12407:3 12412:1 12419:2 12424:1 12435:1 12446:1 12450:3 12451:1 12457:1 12462:2 12468:1 12473:2 12488:4 12500:1 12514:1 12530:1 12534:1 12544:1 12568:1 12569:1 12623:1 12633:1 12673:1 12677:1 12679:2 12698:1 12708:1 12711:5 12721:1 12729:1 12743:1 12769:2 12773:1 12776:1 12780:1 12784:1 12794:1 12798:2 12802:1 12816:1 12827:1 12831:3 12832:1 12839:1 12843:1 12846:2 12848:1 12853:1 12890:1 12894:1 12898:1 12908:1 12910:1 12921:1 12925:2 12944:1 12957:1 12968:1 12977:1 12990:1 12995:1 12996:1 13002:1 13025:3 13028:1 13029:1 13031:1 13034:3 13037:1 13038:5 13039:1 13040:1 13047:2 13050:2 13085:2 13098:1 13100:1 13110:1 13129:1 13130:2 13131:1 13133:2 13138:1 13141:2 13144:1 13157:2 13163:1 13167:2 13169:1 13171:1 13173:2 13199:1 13210:1 13214:1 13222:1 13226:1 13228:1 13243:1 13244:2 13246:1 13247:3 13253:2 13260:3 13261:1 13266:1 13267:1 13279:1 13280:1 13295:1 13301:1 13329:1 13355:2 13359:1 13372:1 13374:1 13385:1 13390:2 13394:1 13395:1 13399:1 13400:1 13403:1 13410:1 13424:1 13436:1 13439:1 13450:1 13465:1 13468:1 13470:1 13472:1 13481:1 13497:1 13540:1 13552:1 13559:2 13577:1 13579:1 13581:1 13584:2 13585:1 13591:2 13600:1 13608:1 13609:1 13655:1 13661:1 13680:2 13695:2 13697:1 13704:1 13710:1 13713:1 13725:1 13731:2 13743:1 13746:1 13752:1 13766:2 13768:1 13799:1 13828:5 13856:2 13858:1 13864:2 13934:5 13937:1 13949:1 13963:2 13965:1 13971:6 13989:1 13991:2 14022:1 14032:1 14051:1 14069:1 14109:1 14114:1 14148:1 14200:1 14222:1 14238:1 14276:1 14292:2 14294:1 14298:2 14331:1 14333:5 14339:2 14341:1 14342:3 14346:1 14357:1 14377:3 14386:2 14387:1 14412:1 14420:1 14421:1 14424:1 14452:1 14461:1 14473:1 14498:1 14504:1 14522:1 14527:1 14529:1 14556:4 14566:1 14571:2 14624:1 14625:1 14690:2 14704:1 14708:1 14712:1 14720:1 14728:2 14732:3 14744:3 14753:2 14757:1 14770:1 14789:1 14798:1 14803:1 14804:8 14815:2 14826:1 14843:1 14846:1 14855:2 14856:1 14859:1 14860:1 14864:1 14875:1 14877:1 14878:1 14880:1 14882:2 14888:1 14897:1 14900:1 14914:1 14915:1 14923:1 14931:2 14941:1 14968:1 14987:2 14989:1 14994:1 15020:4 15045:2 15064:1 15095:1 15111:1 15150:1 15169:1 15176:2 15216:1 15220:1 15227:1 15241:1 15245:1 15248:2 15251:1 15271:1 15287:1 15297:1 15321:1 15325:1 15329:1 15341:1 15348:1 15349:1 15355:1 15365:1 15371:1 15385:1 15387:3 15397:1 15398:1 15400:1 15412:1 15422:1 15439:1 15443:1 15444:1 15446:1 15448:1 15452:1 15454:1 15458:1 15459:1 15468:1 15485:2 15495:1 15496:1 15514:1 15534:1 15549:2 15554:1 15563:1 15570:1 15571:1 15573:1 15577:1 15580:4 15582:1 15584:1 15594:1 15598:1 15602:1 15605:1 15608:1 15615:4 15617:2 15620:1 15623:1 15650:2 15672:1 15678:1 15685:1 15695:1 15701:1 15704:1 15718:1 15720:1 15731:1 15740:1 15741:1 15742:4 15750:2 15761:1 15764:1 15768:1 15789:2 15797:2 15804:2 15811:1 15815:1 15822:1 15842:1 15859:1 15869:1 15873:1 15933:1 15953:1 15958:2 15959:4 15968:1 16004:1 16015:1 16019:1 16024:1 16028:3 16029:1 16039:1 16056:9 16063:2 16064:2 16065:1 16080:1 16082:1 16083:1 16085:1 16087:4 16089:37 16099:1 16104:1 16105:2 16116:1 16138:1 16146:3 16155:2 16159:2 16196:1 16212:1 16235:3 16254:1 16259:1 16278:3 16288:1 16298:1 16300:2 16305:1 16309:2 16312:1 16321:1 16322:1 16357:1 16361:3 16363:1 16372:1 16399:1 16409:1 16410:2 16424:1 16432:1 16443:1 16454:2 16478:2 16487:2 16508:1 16515:1 16519:1 16525:1 16533:1 16558:1 16572:1 16573:2 16585:1 16596:1 16598:8 16610:1 16617:1 16631:1 16633:1 16635:1 16638:1 16650:1 16651:1 16669:1 16702:3 16741:1 16744:1 16752:1 16776:1 16788:1 16798:1 16835:1 16836:2 16839:2 16840:1 16849:2 16906:1 16907:1 16914:1 16915:1 16940:2 16947:1 16948:2 16965:1 16971:1 16972:1 16989:1 16995:1 16996:1 16997:2 17018:1 17022:1 17028:1 17029:1 17035:1 17053:1 17072:1 17103:1 17108:4 17109:1 17111:1 17112:1 17113:1 17115:1 17134:1 17135:1 17152:1 17153:1 17163:2 17178:1 17179:1 17188:1 17202:1 17205:1 17213:1 17215:2 17217:1 17225:1 17238:1 17240:1 17244:1 17257:11 17262:1 17309:1 17320:4 17330:2 17331:1 17338:3 17350:2 17354:1 17366:1 17380:1 17384:1 17390:3 17436:1 17454:1 17458:1 17459:1 17482:1 17502:1 17503:3 17512:1 17516:2 17554:1 17581:1 17585:1 17602:1 17610:1 17613:2 17620:1 17622:1 17641:1 17661:1 17663:1 17667:1 17676:1 17685:1 17694:1 17710:1 17730:1 17732:1 17736:1 17768:2 17772:1 17787:1 17804:1 17806:1 17811:2 17814:1 17816:1 17818:1 17832:1 17843:1 17844:1 17874:2 17878:1 17882:1 17894:1 17899:1 17907:3 17911:2 17913:1 17921:1 17923:2 17924:1 17931:1 17936:1 17940:1 17951:1 17965:1 17969:1 17977:2 17979:1 17985:1 17990:3 17999:1 18005:2 18006:1 18007:2 18008:1 18027:1 18032:1 18054:1 18067:2 18072:1 18074:2 18077:1 18080:3 18082:1 18109:2 18135:1 18140:2 18148:2 18164:2 18177:1 18205:2 18227:1 18253:2 18264:1 18276:1 18283:1 18291:1 18328:1 18345:1 18366:1 18369:1 18376:1 18380:2 18396:1 18402:1 18406:1 18407:1 18471:1 18496:2 18519:1 18546:1 18557:1 18561:1 18570:1 18575:1 18577:1 18578:2 18592:2 18604:2 18605:1 18608:1 18610:1 18635:1 18636:1 18641:1 18642:1 18643:2 18662:1 18700:1 18707:1 18719:4 18738:1 18751:2 18759:1 18773:1 18774:1 18786:1 18796:3 18797:1 18817:1 18834:1 18882:1 18889:2 18892:1 18900:1 18911:1 18926:1 18930:2 18958:1 18962:1 18973:1 18974:1 18982:1 18999:1 19006:1 19011:1 19017:1 19022:1 19023:2 19034:1 19044:1 19061:1 19081:1 19083:1 19085:1 19087:1 19088:2 19090:1 19099:1 19126:1 19135:1 19136:2 19147:1 19150:1 19180:1 19184:1 19187:1 19198:1 19225:1 19230:1 19235:1 19244:1 19255:1 19263:1 19276:1 19278:1 19291:1 19298:8 19312:1 19321:2 19339:2 19350:1 19362:1 19371:1 19375:1 19391:1 19405:1 19446:1 19447:1 19460:1 19461:2 19505:1 19522:2 19559:1 19561:1 19577:1 19584:2 19587:1 19588:1 19603:1 19627:1 19630:1 19633:1 19645:1 19650:1 19660:1 19678:1 19681:1 19694:1 19699:1 19700:1 19702:1 19706:2 19707:3 19721:1 19732:1 19734:1 19743:1 19746:1 19777:1 19792:1 19793:1 19800:1 19810:1 19819:1 19821:1 19835:1 19842:1 19845:1 19849:1 19862:1 19873:1 19885:2 19886:1 19901:1 19911:1 19924:1 19933:4 19940:2 19948:1 19951:1 19955:2 19961:1 19968:1 19990:1 19991:1 19996:1 20014:1 20050:1 20056:2 20058:1 20065:1 20069:1 20080:1 20083:1 20102:1 20105:3 20122:1 20126:2853 20154:1 20184:1 20187:1 20195:2 20237:1 20264:2 20268:1 20272:1 20276:1 20293:2 20299:2 20305:1 20357:1 20366:1 20393:2 20398:1 20424:2 20427:1 20466:1 20474:1 20480:2 20485:1 20501:1 20502:1 20513:1 20515:1 20520:1 20524:1 20556:3 20562:2 20576:1 20577:1 20591:1 20600:1 20630:1 20648:1 20653:2 20660:1 20665:1 20668:4 20676:1 20707:1 20722:1 20728:1 20734:1 20756:1 20768:1 20777:3 20782:1 20809:1 20816:3 20820:1 20826:3 20830:1 20856:1 20870:1 20894:2 20921:1 20923:6 20951:2 20998:1 21007:1 21016:1 21031:1 21035:4 21049:1 21054:2 21059:1 21062:1 21079:1 21104:1 21116:1 21122:1 21128:3 21140:2 21141:2 21145:2 21146:1 21147:1 21149:1 21165:1 21172:1 21177:2 21192:1 21194:1 21202:1 21227:1 21253:1 21286:2 21288:1 21291:1 21296:1 21315:1 21317:1 21329:1 21358:1 21359:1 21375:1 21437:1 21457:1 21484:1 21486:1 21489:2 21506:1 21525:1 21536:1 21537:1 21541:2 21542:1 21544:1 21556:1 21560:1 21587:2 21592:1 21594:3 21597:1 21598:1 21601:1 21608:1 21615:1 21616:1 21625:1 21628:2 21630:2 21631:2 21636:1 21647:1 21649:1 21650:1 21659:1 21670:2 21677:2 21687:3 21690:1 21694:1 21700:1 21713:1 21729:1 21730:1 21758:1 21771:1 21781:2 21803:2 21815:1 21818:1 21872:3 21910:1 21912:1 21915:1 21920:1 21925:2 21933:1 21934:1 21938:2 21949:1 21953:1 21965:2 21966:1 21967:2 21985:1 21999:1 22000:2 22003:1 22028:2 22030:2 22042:2 22053:1 22057:2 22064:2 22099:1 22119:1 22150:1 22152:1 22155:1 22156:1 22167:1 22170:1 22181:1 22186:1 22193:1 22198:1 22201:1 22202:1 22212:1 22222:2 22228:1 22244:1 22250:1 22262:1 22270:3 22275:1 22281:1 22291:1 22294:1 22303:2 22312:2 22319:1 22332:1 22335:1 22366:1 22374:1 22375:3 22376:2 22378:1 22383:1 22390:1 22391:2 22392:2 22402:1 22417:1 22426:3 22427:1 22453:2 22466:1 22476:1 22482:1 22516:2 22547:1 22549:2 22551:1 22557:1 22571:2 22599:1 22621:1 22636:1 22639:1 22640:1 22658:1 22671:1 22680:1 22711:1 22738:1 22753:1 22761:1 22782:1 22786:2 22795:1 22804:1 22813:2 22816:2 22837:2 22844:2 22845:8 22847:1 22854:1 22862:1 22879:1 22888:1 22900:1 22903:1 22905:1 22930:1 22938:1 22947:1 22953:1 22960:1 22963:1 22973:2 22975:1 22984:1 22985:1 22998:1 23011:1 23017:1 23028:1 23032:1 23038:1 23039:2 23043:2 23044:1 23047:1 23060:1 23077:1 23094:1 23096:1 23136:1 23139:1 23144:1 23180:3 23187:1 23193:2 23207:1 23217:1 23225:1 23226:1 23239:1 23254:1 23267:1 23280:1 23285:1 23295:1 23301:1 23306:1 23328:1 23339:1 23371:2 23373:1 23377:1 23379:5 23384:1 23387:2 23397:1 23400:1 23409:1 23424:2 23425:3 23445:1 23484:2 23498:1 23512:1 23520:1 23534:2 23544:1 23559:1 23564:1 23585:3 23586:1 23596:1 23600:2 23605:1 23609:2 23625:1 23629:1 23631:1 23644:2 23649:2 23652:1 23668:1 23669:2 23671:2 23677:1 23680:1 23702:2 23712:3 23724:1 23730:1 23738:1 23741:1 23748:1 23758:2 23766:2 23767:1 23778:1 23796:1 23804:1 23807:1 23817:1 23826:1 23832:1 23835:1 23840:1 23841:1 23843:1 23847:2 23848:1 23887:2 23897:1 23900:1 23919:1 23948:3 23950:1 23952:2 23956:1 23961:1 23962:4 24004:1 24008:1 24015:1 24030:2 24031:1 24032:1 24034:5 24043:1 24051:5 24066:1 24075:1 24102:1 24108:1 24119:1 24142:1 24156:1 24163:2 24169:1 24200:6 24207:1 24215:1 24216:1 24221:1 24283:1 24285:1 24289:1 24292:2 24298:1 24314:1 24318:2 24324:1 24348:2 24362:1 24363:4 24388:1 24394:1 24399:2 24400:1 24403:1 24405:1 24407:1 24413:1 24417:1 24422:1 24423:1 24424:1 24442:1 24447:1 24448:1 24451:1 24467:1 24473:1 24477:2 24489:1 24499:4 24507:1 24514:1 24517:1 24547:1 24551:1 24566:1 24582:1 24599:1 24600:2 24602:1 24606:1 24608:3 24609:1 24629:1 24632:1 24658:1 24670:1 24675:1 24681:1 24720:1 24723:1 24732:1 24737:1 24754:1 24769:1 24773:2 24779:3 24793:2 24850:4 24867:6 24875:1 24894:1 24896:1 24912:1 24946:1 24947:1 24963:1 24964:4 24974:2 24975:3 24978:3 24986:1 24988:1 24989:3 24990:6 25005:1 25022:1 25030:1 25047:2 25051:1 25053:1 25060:1 25061:1 25073:4 25096:1 25100:2 25106:1 25112:1 25114:2 25121:1 25124:1 25136:1 25170:1 25172:1 25177:1 25207:1 25251:2 25253:1 25256:2 25258:2 25261:2 25265:1 25267:2 25275:5 25290:1 25305:1 25321:4 25325:1 25341:1 25349:1 25360:1 25364:3 25422:1 25438:2 25440:1 25442:2 25445:4 25450:1 25457:3 25465:1 25467:1 25469:1 25479:1 25486:1 25488:1 25490:1 25493:1 25496:1 25502:1 25507:3 25511:1 25518:2 25536:1 25537:1 25544:2 25559:1 25564:1 25577:1 25602:1 25609:1 25611:1 25617:1 25623:1 25625:1 25638:2 25681:2 25684:1 25690:1 25695:5 25713:1 25716:1 25719:1 25720:3 25776:1 25782:1 25800:2 25805:1 25810:1 25846:1 25847:1 25851:1 25859:1 25862:1 25873:1 25886:1 25889:2 25907:1 25968:1 25974:9 25975:1 25983:2 25985:1 25990:2 25998:2 26009:1 26021:1 26022:1 26032:1 26041:1 26048:1 26062:1 26066:1 26090:1 26093:1 26102:1 26106:1 26115:1 26120:2 26125:4 26129:2 26149:1 26155:3 26172:1 26174:1 26190:1 26194:1 26213:1 26227:2 26230:1 26231:1 26250:2 26251:1 26260:1 26261:1 26262:1 26267:1 26278:1 26283:1 26287:1 26302:2 26309:2 26316:1 26317:1 26328:1 26333:1 26341:1 26358:1 26359:1 26384:1 26399:1 26425:1 26447:1 26471:1 26481:2 26483:1 26485:1 26508:1 26541:2 26545:2 26552:1 26557:4 26583:1 26584:2 26585:1 26602:1 26603:1 26606:1 26609:1 26626:1 26636:1 26638:1 26669:1 26702:1 26708:1 26729:1 26739:1 26741:5 26764:2 26772:1 26774:1 26777:2 26799:1 26804:1 26805:1 26837:2 26838:2 26868:1 26870:1 26873:1 26885:1 26902:3 26908:1 26919:1 26923:1 26937:1 26968:1 26978:2 26988:1 27005:1 27020:1 27028:1 27040:2 27055:1 27057:1 27063:1 27072:2 27074:2 27083:1 27084:2 27085:3 27087:2 27094:3 27095:1 27103:1 27104:1 27108:2 27115:1 27128:1 27134:3 27140:1 27167:2 27178:4 27191:2 27198:1 27199:1 27205:1 27206:2 27222:1 27227:1 27238:1 27247:2 27248:2 27249:2 27285:1 27287:2 27295:1 27297:1 27315:1 27319:2 27332:1 27338:2 27351:1 27376:1 27381:1 27395:3 27405:1 27408:1 27427:1 27437:1 27439:2 27445:2 27459:1 27467:3 27485:1 27491:1 27512:3 27541:1 27543:1 27546:1 27568:1 27591:1 27601:1 27616:1 27654:1 27667:1 27674:2 27684:1 27685:1 27770:3 27773:1 27794:1 27795:1 27812:1 27817:1 27825:3 27830:1 27846:1 27851:4 27875:1 27881:1 27882:1 27890:1 27896:1 27907:1 27920:1 27929:1 27944:1 27957:1 27991:1 27994:1 28000:1 28041:1 28042:1 28051:2 28053:2 28065:1 28078:2 28081:2 28086:1 28092:1 28094:1 28098:1 28102:2 28103:1 28104:3 28109:1 28139:3 28149:2 28151:1 28168:2 28172:1 28176:2 28183:1 28191:1 28193:2 28196:2 28205:2 28208:1 28211:3 28212:1 28213:2 28220:2 28225:1 28245:1 28249:1 28251:1 28281:1 28299:5 28300:2 28349:1 28352:1 28388:1 28389:1 28390:1 28411:1 28412:1 28414:1 28418:1 28443:1 28444:4 28448:2 28449:1 28477:1 28478:1 28482:1 28493:1 28499:1 28526:1 28528:1 28530:1 28548:1 28573:1 28574:2 28580:2 28582:1 28583:1 28586:1 28592:1 28599:1 28613:2 28616:1 28622:4 28628:1 28639:1 28644:1 28651:1 28658:1 28670:1 28671:1 28674:1 28691:1 28716:1 28725:1 28728:1 28739:2 28741:2 28742:1 28743:1 28748:4 28759:1 28775:1 28804:2 28811:1 28827:1 28845:1 28846:1 28854:2 28855:1 28884:1 28896:1 28921:1 28930:1 28939:1 28960:1 28997:1 29006:2 29007:1 29009:1 29015:1 29018:1 29038:1 29053:2 29056:2 29059:1 29061:2 29062:2 29071:1 29076:3 29087:1 29092:1 29096:1 29122:1 29123:1 29128:1 29133:1 29145:1 29148:1 29163:2 29176:1 29177:1 29178:1 29179:1 29183:2 29188:4 29205:1 29253:2 29266:2 29268:1 29277:1 29290:2 29296:1 29298:2 29306:1 29345:2 29355:2 29367:1 29369:1 29388:1 29392:1 29402:2 29409:1 29417:2 29422:1 29448:1 29456:1 29467:1 29468:2 29479:1 29483:1 29487:1 29491:1 29504:1 29513:1 29537:1 29577:1 29611:1 29617:1 29620:2 29637:1 29642:2 29647:2 29660:1 29673:1 29674:1 29681:1 29701:2 29707:1 29708:1 29718:2 29725:1 29731:1 29738:2 29746:2 29760:1 29771:2 29773:2 29774:1 29780:2 29806:11 29811:1 29815:1 29819:1 29821:2 29831:1 29835:1 29837:1 29852:7 29853:2 29861:1 29865:2 29867:1 29882:3 29904:1 29922:1 29930:3 29939:1 29974:1 29979:1 29999:1 30020:3 30033:1 30045:2 30047:1 30053:2 30056:1 30068:1 30075:1 30078:2 30083:1 30090:2 30104:1 30109:1 30114:1 30116:1 30121:1 30123:2 30149:1 30160:1 30164:1 30174:1 30177:1 30182:1 30189:1 30196:1 30199:1 30212:1 30242:1 30247:3 30251:1 30263:1 30271:1 30275:1 30281:1 30300:1 30302:1 30317:1 30325:1 30330:3 30365:2 30367:1 30381:1 30390:2 30392:2 30399:1 30412:1 30414:1 30428:1 30429:1 30458:1 30459:1 30477:1 30479:1 30494:1 30498:1 30517:1 30520:1 30523:1 30526:1 30554:1 30556:2 30557:1 30558:2 30559:1 30567:1 30572:1 30574:1 30578:1 30582:1 30597:1 30599:1 30602:2 30618:1 30621:1 30625:1 30676:1 30683:1 30712:1 30713:1 30714:1 30750:2 30759:1 30783:1 30803:1 30812:1 30867:2 30869:1 30879:1 30922:4 30931:1 30935:1 30942:1 30949:1 30968:1 30973:5 30978:1 30981:1 30984:1 30996:1 31002:1 31005:2 31013:1 31030:2 31036:1 31046:2 31054:1 31071:1 31076:1 31083:2 31087:1 31090:3 31098:1 31100:1 31121:1 31124:1 31133:2 31135:1 31143:2 31179:1 31182:3 31183:1 31190:1 31195:1 31197:1 31198:1 31201:1 31208:1 31228:1
17 16:1 19:2 33:1 35:1 40:1 42:1 49:1 61:2 62:1 69:1 86:1 110:1 122:1 164:1 173:7 183:1 186:2 192:1 199:1 224:1 227:1 240:1 256:2 271:1 278:4 304:2 310:2 343:1 345:1 351:1 357:2 358:1 398:1 401:2 404:1 419:1 420:1 422:1 426:1 493:1 503:1 504:2 509:1 511:1 513:1 514:1 519:1 577:1 591:1 633:3 640:1 641:1 647:1 661:1 662:1 690:1 695:1 703:1 708:4 719:1 726:2 781:1 800:1 815:1 817:1 824:1 831:1 839:1 846:3 857:1 864:5 928:2 934:1 969:1 970:1 973:2 977:6 979:3 980:1 982:2 985:1 986:4 990:2 991:3 992:1 997:1 1002:1 1003:2 1007:1 1008:2 1011:2 1028:1 1034:4 1036:2 1039:2 1044:1 1074:3 1093:1 1094:2 1095:1 1098:2 1114:1 1116:1 1119:1 1129:1 1133:1 1145:1 1150:1 1161:1 1165:1 1166:1 1168:3 1175:1 1186:1 1192:1 1204:1 1210:1 1220:1 1221:1 1222:2 1231:1 1248:1 1258:1 1268:2 1269:2 1283:1 1318:1 1327:1 1330:1 1339:2 1343:1 1348:1 1360:1 1370:1 1375:1 1377:1 1382:1 1398:1 1399:1 1410:1 1413:1 1414:1 1433:1 1435:1 1442:1 1460:1 1462:1 1464:1 1472:1 1487:1 1488:1 1497:1 1535:1 1540:1 1560:1 1564:1 1565:2 1601:1 1605:1 1608:1 1613:1 1625:1 1638:2 1642:1 1644:1 1650:1 1669:2 1676:1 1688:4 1701:1 1702:1 1708:1 1714:1 1717:1 1719:1 1722:1 1736:2 1749:1 1771:1 1786:1 1790:2 1794:1 1797:3 1816:1 1822:1 1825:1 1826:1 1827:1 1833:2 1842:1 1851:1 1857:1 1860:1 1867:1 1868:1 1871:1 1873:1 1895:1 1896:2 1904:1 1905:1 1910:1 1911:1 1921:3 1922:1 1932:1 1933:1 1942:1 1950:1 1956:1 1958:1 1961:2 1963:2 1964:1 1972:1 1975:1 1991:1 1999:1 2011:1 2018:3 2027:2 2033:2 2036:1 2037:1 2041:1 2066:1 2078:1 2092:1 2099:1 2108:2 2110:1 2126:1 2127:2 2128:1 2136:1 2139:1 2155:1 2157:1 2164:1 2187:2 2221:1 2224:1 2226:2 2253:2 2261:1 2270:1 2280:1 2282:1 2307:1 2356:1 2395:2 2433:1 2442:1 2467:1 2470:1 2486:1 2502:1 2504:2 2508:1 2519:1 2525:4 2530:2 2531:1 2533:1 2543:5 2550:1 2551:2 2552:2 2556:3 2558:1 2561:1 2568:1 2569:6 2584:1 2600:2 2616:2 2630:1 2632:1 2633:1 2638:1 2648:1 2650:1 2697:1 2698:1 2701:2 2721:1 2737:5 2741:2 2757:2 2765:1 2770:1 2777:1 2778:2 2783:1 2784:1 2789:1 2798:1 2799:1 2800:1 2804:3 2809:1 2816:1 2821:1 2856:1 2866:1 2870:1 2872:2 2892:1 2923:2 2928:1 2938:1 2939:1 2964:1 2982:1 2991:1 2994:1 3001:1 3004:1 3023:1 3027:1 3031:1 3032:3 3044:1 3086:1 3101:1 3106:1 3109:1 3110:2 3112:2 3117:1 3124:1 3131:1 3138:1 3142:1 3144:1 3147:1 3168:1 3169:1 3179:1 3189:4 3197:4 3210:5 3232:1 3243:1 3247:1 3249:2 3257:2 3266:1 3282:1 3291:1 3294:1 3295:1 3310:2 3313:3 3315:2 3320:1 3322:2 3327:1 3341:2 3364:1 3365:1 3376:1 3392:1 3412:1 3419:3 3420:1 3442:1 3455:1 3457:1 3463:1 3464:2 3487:1 3495:1 3497:1 3500:1 3524:1 3552:1 3563:3 3589:2 3630:1 3656:1 3671:2 3708:1 3745:1 3747:2 3756:1 3772:1 3778:1 3779:3 3795:1 3797:1 3798:1 3817:1 3848:2 3849:1 3857:1 3869:3 3877:1 3878:1 3879:1 3881:5 3896:1 3904:1 3913:1 3920:1 3926:2 3936:1 3959:1 3971:1 3992:1 3997:1 4003:3 4007:1 4018:2 4025:1 4032:2 4052:2 4061:1 4063:1 4091:1 4093:1 4097:1 4101:1 4127:3 4128:1 4131:1 4132:1 4149:2 4159:1 4187:1 4204:2 4207:3 4227:1 4240:2 4247:1 4255:1 4262:3 4264:1 4268:1 4282:1 4284:2 4293:2 4311:1 4312:1 4323:1 4325:1 4336:1 4337:1 4385:1 4386:1 4389:1 4418:2 4426:1 4443:1 4446:1 4448:1 4454:1 4463:1 4468:1 4473:1 4480:1 4487:1 4490:2 4501:1 4507:1 4518:2 4520:1 4527:1 4535:2 4579:1 4604:1 4606:1 4608:1 4636:1 4642:1 4645:2 4648:1 4650:1 4654:1 4655:1 4662:1 4673:1 4712:2 4716:3 4749:1 4753:1 4754:1 4761:4 4765:1 4767:1 4779:1 4780:2 4785:1 4787:4 4801:1 4814:1 4816:1 4819:1 4835:1 4837:1 4842:1 4843:1 4854:2 4855:1 4881:1 4891:2 4892:1 4903:1 4906:1 4918:1 4931:1 4955:1 4960:1 4964:1 4965:1 4970:2 4974:1 4981:1 4984:1 4985:5 4997:3 5008:1 5012:1 5015:1 5024:1 5050:2 5069:1 5070:4 5076:1 5088:2 5107:1 5128:1 5147:2 5154:5 5161:1 5162:1 5172:1 5176:1 5179:1 5180:1 5188:3 5190:1 5192:4 5202:1 5206:1 5209:1 5219:2 5221:2 5246:1 5248:1 5281:1 5296:1 5298:2 5302:1 5312:1 5313:1 5314:1 5315:1 5316:1 5321:1 5326:1 5328:1 5329:2 5334:2 5338:1 5345:2 5347:2 5354:1 5355:1 5357:1 5391:1 5394:1 5417:1 5418:1 5436:1 5443:1 5491:1 5501:1 5505:1 5509:1 5540:2 5544:1 5547:1 5556:1 5569:2 5580:3 5586:1 5592:1 5600:2 5603:1 5625:1 5631:1 5646:2 5651:1 5673:1 5684:1 5692:2 5717:1 5721:1 5735:1 5742:1 5758:2 5761:1 5785:1 5792:1 5806:2 5824:1 5877:1 5878:2 5888:2 5889:1 5896:1 5902:1 5917:1 5942:1 5950:1 5958:1 5979:1 6000:2 6003:1 6006:1 6013:1 6014:3 6020:1 6040:2 6050:1 6066:6 6082:1 6106:1 6119:1 6121:1 6132:1 6142:1 6147:1 6153:1 6164:2 6166:1 6170:1 6172:1 6182:1 6198:1 6200:2 6202:1 6207:1 6222:1 6233:2 6237:1 6245:2 6246:1 6248:1 6268:1 6280:1 6286:1 6293:1 6298:1 6301:2 6306:2 6310:2 6312:9 6320:2 6342:1 6346:1 6361:1 6388:3 6409:1 6411:2 6433:2 6439:1 6440:4 6450:2 6456:1 6467:3 6484:2 6503:1 6507:1 6513:1 6514:1 6531:2 6533:3 6536:1 6557:2 6562:1 6567:1 6569:1 6571:1 6575:1 6579:1 6589:4 6594:1 6617:1 6640:2 6653:2 6654:1 6659:2 6661:2 6665:2 6668:1 6672:1 6681:1 6705:2 6727:1 6733:1 6746:1 6748:1 6753:1 6758:1 6768:4 6786:1 6789:1 6793:1 6804:1 6829:9 6840:1 6844:1 6855:1 6858:1 6865:3 6868:2 6869:1 6875:1 6883:1 6885:3 6886:2 6887:1 6910:1 6917:1 6922:1 6926:1 6930:1 6932:1 6937:1 6938:1 6945:2 6950:1 6959:1 6966:1 7023:1 7033:2 7035:1 7048:1 7064:1 7069:1 7078:1 7084:2 7101:1 7111:1 7115:1 7121:2 7128:1 7152:1 7169:2 7171:4 7181:1 7202:1 7209:1 7216:1 7219:1 7226:1 7227:1 7270:1 7277:1 7288:1 7312:3 7332:1 7341:1 7353:1 7354:1 7357:1 7374:1 7375:3 7381:2 7383:1 7395:1 7413:1 7415:1 7422:1 7423:1 7427:2 7434:3 7444:1 7453:1 7460:1 7490:1 7518:1 7529:2 7556:1 7567:2 7577:2 7580:1 7583:1 7598:4 7616:2 7626:1 7647:1 7648:1 7650:1 7654:1 7659:1 7663:1 7670:1 7676:1 7715:2 7718:2 7745:1 7753:1 7761:3 7769:1 7775:1 7785:1 7787:1 7798:1 7799:1 7801:1 7819:2 7836:1 7846:1 7882:2 7902:1 7903:1 7908:1 7909:1 7929:1 7932:1 7941:1 7955:2 7959:2 7965:1 7974:1 7976:1 8000:2 8010:1 8019:4 8025:1 8027:1 8034:1 8039:1 8050:1 8053:1 8059:2 8062:1 8063:1 8080:1 8082:1 8092:2 8102:1 8114:1 8120:2 8126:3 8127:1 8128:1 8148:3 8150:2 8151:7 8152:3 8153:1 8155:1 8157:2 8161:6 8162:1 8163:1 8165:1 8170:2 8171:3 8172:1 8173:4 8174:2 8187:1 8214:3 8221:1 8232:1 8239:1 8247:1 8261:1 8268:1 8286:1 8300:1 8301:1 8305:1 8310:1 8316:1 8330:1 8337:2 8353:2 8360:1 8371:1 8372:2 8404:1 8405:1 8420:18 8431:1 8440:4 8442:2 8450:2 8467:1 8474:2 8485:1 8493:2 8502:1 8505:4 8509:1 8542:2 8551:1 8557:1 8572:1 8611:1 8622:1 8640:1 8642:1 8644:1 8650:2 8678:1 8693:3 8702:1 8705:1 8710:1 8716:1 8740:1 8776:2 8792:1 8801:1 8823:5 8828:1 8834:1 8837:2 8850:1 8857:6 8859:1 8866:1 8872:1 8874:1 8879:1 8886:1 8903:1 8910:1 8920:1 8930:1 8940:1 8953:1 8956:1 8961:1 8963:6 8987:1 9006:1 9013:2 9023:2 9035:1 9039:1 9062:1 9077:1 9079:2 9082:1 9093:1 9094:1 9119:2 9125:3 9129:1 9131:1 9132:1 9139:1 9141:1 9149:1 9156:2 9165:1 9168:1 9175:2 9186:1 9192:1 9193:1 9194:1 9210:1 9216:1 9220:1 9224:1 9227:1 9237:2 9243:1 9261:1 9263:1 9268:2 9273:1 9283:1 9296:1 9305:5 9314:1 9316:2 9367:1 9370:1 9372:2 9376:2 9378:4 9383:1 9385:1 9390:1 9396:1 9405:2 9410:1 9421:1 9447:1 9461:1 9463:1 9490:2 9498:1 9500:1 9506:2 9510:1 9522:1 9524:1 9525:1 9568:7 9583:1 9588:1 9596:1 9622:1 9651:1 9667:2 9680:1 9681:1 9685:1 9688:1 9693:1 9715:1 9724:1 9726:1 9743:1 9778:1 9795:5 9796:2 9815:2 9826:1 9835:1 9848:1 9850:1 9857:1 9872:1 9887:1 9894:1 9900:1 9917:1 9922:3 9923:1 9937:1 9948:1 9949:1 9981:2 9996:1 10013:1 10022:1 10026:1 10047:1 10051:3 10079:1 10091:1 10092:2 10119:4 10122:1 10127:1 10131:1 10133:1 10135:1 10141:2 10158:1 10168:1 10169:1 10175:1 10191:1 10196:1 10203:1 10216:3 10221:1 10229:1 10243:1 10252:1 10253:1 10254:1 10255:2 10259:1 10273:1 10277:1 10293:1 10304:1 10306:1 10317:1 10326:2 10342:1 10346:1 10353:1 10368:1 10372:1 10379:1 10382:1 10388:2 10390:2 10393:1 10402:1 10421:1 10422:1 10429:2 10451:3 10457:1 10478:2 10483:2 10486:1 10488:1 10494:1 10500:4 10501:1 10503:3 10511:1 10514:1 10516:1 10531:1 10532:1 10540:1 10548:1 10551:1 10554:1 10557:1 10561:1 10566:1 10567:1 10568:3 10576:3 10578:1 10593:1 10597:1 10623:1 10626:1 10631:1 10650:6 10656:1 10671:1 10676:2 10682:1 10707:3 10708:1 10716:1 10747:1 10760:1 10769:1 10781:1 10783:1 10790:1 10799:1 10800:1 10812:1 10821:1 10827:1 10832:1 10833:1 10847:1 10853:1 10881:1 10884:1 10891:2 10933:1 10936:1 10937:1 10945:2 10949:1 10954:2 10960:4 10963:1 10965:2 10966:1 10967:2 10972:1 10973:1 10982:1 11010:1 11012:1 11013:1 11014:1 11018:1 11020:2 11021:1 11025:3 11026:1 11035:4 11042:1 11054:1 11055:3 11059:5 11078:1 11082:1 11093:2 11103:1 11113:1 11137:1 11144:2 11150:1 11197:1 11206:1 11217:1 11223:3 11235:3 11237:2 11238:1 11246:1 11251:2 11255:1 11263:1 11281:1 11304:2 11316:1 11324:1 11325:1 11338:1 11358:1 11360:1 11367:1 11369:1 11370:2 11372:1 11373:1 11377:1 11403:1 11408:1 11426:5 11428:1 11429:1 11432:1 11437:3 11445:1 11448:1 11450:1 11456:1 11463:1 11464:2 11466:1 11477:1 11480:1 11481:1 11494:1 11499:1 11501:3 11509:1 11514:1 11522:2 11533:1 11565:1 11572:1 11573:2 11579:1 11585:2 11605:1 11613:2 11649:1 11656:1 11662:1 11664:2 11685:1 11697:1 11700:1 11703:1 11719:2 11730:6 11737:1 11742:2 11745:1 11747:1 11761:1 11764:2 11784:1 11793:1 11813:2 11840:1 11849:1 11861:1 11863:1 11868:1 11869:2 11891:1 11905:1 11926:1 11946:1 11953:1 11963:1 11978:1 11981:1 11996:4 11997:3 12004:1 12010:2 12015:1 12016:2 12026:1 12038:2 12039:1 12052:1 12055:5 12079:1 12082:1 12085:1 12086:4 12091:1 12095:1 12103:1 12104:3 12118:1 12141:1 12147:1 12159:1 12161:1 12169:2 12187:2 12214:1 12236:1 12246:3 12251:1 12254:1 12261:1 12263:1 12268:1 12272:1 12285:2 12290:3 12293:2 12322:1 12325:2 12329:1 12332:1 12353:1 12366:1 12368:1 12377:1 12380:1 12383:1 12405:1 12407:3 12412:1 12419:2 12424:1 12435:1 12446:1 12450:3 12451:1 12457:1 12462:2 12468:1 12473:2 12488:4 12500:1 12514:1 12530:1 12534:1 12544:1 12568:1 12569:1 12623:1 12633:1 12673:1 12677:1 12679:2 12698:1 12708:1 12711:5 12721:1 12729:1 12743:1 12769:2 12773:1 12776:1 12780:1 12784:1 12794:1 12798:2 12802:1 12816:1 12827:1 12831:3 12832:1 12839:1 12843:1 12846:2 12848:1 12853:1 12890:1 12894:1 12898:1 12908:1 12910:1 12921:1 12925:2 12944:1 12957:1 12968:1 12977:1 12990:1 12995:1 12996:1 13002:1 13025:3 13028:1 13029:1 13031:1 13034:3 13037:1 13038:5 13039:1 13040:1 13047:2 13050:2 13052:1 13085:2 13098:1 13100:1 13110:1 13129:1 13130:2 13131:1 13133:2 13138:1 13141:2 13144:1 13157:2 13163:1 13167:2 13169:1 13171:1 13173:2 13199:1 13210:1 13214:1 13222:1 13226:1 13228:1 13243:1 13244:2 13246:1 13247:3 13253:2 13260:3 13261:1 13266:1 13267:1 13279:1 13280:1 13295:1 13301:1 13329:1 13355:2 13359:1 13372:1 13374:1 13385:1 13390:2 13394:1 13395:1 13399:1 13400:1 13403:1 13410:1 13424:1 13436:1 13439:1 13450:1 13465:1 13468:2 13470:1 13472:1 13481:1 13497:1 13540:1 13552:1 13559:2 13577:1 13579:1 13581:1 13584:2 13585:1 13591:2 13600:1 13608:1 13609:1 13655:1 13661:1 13680:2 13695:2 13697:1 13704:1 13710:1 13713:1 13725:1 13731:2 13743:1 13746:1 13752:1 13766:2 13768:1 13799:1 13828:5 13854:1 13856:2 13858:1 13864:2 13934:5 13937:1 13949:1 13963:2 13965:1 13971:6 13989:1 13991:2 14022:1 14029:1 14032:1 14051:1 14069:1 14109:1 14114:1 14148:1 14200:1 14222:1 14238:1 14266:1 14276:1 14292:2 14294:1 14298:2 14331:1 14333:5 14339:2 14341:1 14342:3 14346:1 14357:1 14377:3 14386:3 14387:1 14412:1 14420:1 14421:1 14424:1 14452:1 14461:1 14473:1 14498:1 14504:1 14522:1 14527:1 14529:1 14556:5 14566:1 14567:1 14570:1 14571:2 14624:1 14625:1 14690:2 14704:1 14708:1 14712:1 14720:1 14728:2 14732:3 14744:3 14753:2 14757:1 14770:1 14789:1 14798:1 14803:1 14804:8 14815:2 14826:1 14831:1 14843:1 14846:1 14855:2 14856:1 14859:1 14860:1 14864:1 14875:1 14877:1 14878:1 14880:1 14882:2 14888:1 14897:1 14900:1 14914:1 14915:1 14923:1 14931:2 14941:1 14968:1 14987:2 14989:1 14994:1 15020:4 15045:2 15064:1 15095:1 15111:1 15150:1 15169:1 15176:2 15216:1 15220:1 15227:1 15241:1 15245:1 15248:2 15251:1 15271:1 15287:1 15297:1 15321:1 15325:1 15329:1 15341:1 15348:1 15349:1 15355:1 15365:1 15371:1 15385:1 15387:3 15397:1 15398:1 15400:1 15412:1 15422:1 15439:1 15443:1 15444:1 15446:1 15448:1 15452:1 15454:1 15458:1 15459:1 15468:1 15485:2 15495:1 15496:1 15514:1 15528:1 15534:2 15549:2 15554:1 15563:1 15570:1 15571:1 15573:1 15577:1 15580:5 15582:1 15584:1 15594:1 15598:1 15602:1 15603:1 15605:1 15608:1 15615:4 15617:2 15620:1 15623:1 15650:2 15672:1 15678:1 15685:1 15695:1 15701:2 15704:1 15718:1 15720:2 15731:1 15740:1 15741:1 15742:5 15750:2 15761:1 15764:1 15768:1 15789:2 15797:2 15804:2 15811:1 15815:1 15822:1 15842:1 15859:1 15869:1 15873:1 15933:1 15953:1 15958:2 15959:4 15968:1 16004:1 16015:1 16019:1 16024:1 16028:3 16029:1 16039:1 16056:9 16063:2 16064:2 16065:1 16080:1 16082:1 16083:1 16085:1 16087:4 16089:38 16099:1 16104:1 16105:2 16116:1 16138:1 16146:3 16155:2 16159:2 16196:1 16203:1 16212:1 16235:3 16254:1 16259:1 16278:3 16288:1 16298:1 16300:2 16305:1 16309:3 16312:1 16321:1 16322:1 16357:1 16361:3 16363:1 16372:1 16399:1 16409:1 16410:2 16424:1 16432:1 16443:1 16454:3 16478:2 16487:2 16488:1 16508:1 16515:1 16519:1 16525:1 16533:1 16558:1 16567:1 16572:1 16573:2 16585:1 16596:1 16598:9 16610:1 16617:1 16631:1 16633:1 16635:1 16638:1 16650:2 16651:1 16669:1 16702:3 16741:1 16744:1 16752:1 16773:1 16776:1 16788:1 16798:1 16835:1 16836:2 16839:2 16840:1 16849:2 16906:1 16907:1 16914:1 16915:1 16940:2 16947:1 16948:2 16965:1 16971:1 16972:1 16989:2 16995:1 16996:1 16997:2 17018:1 17022:1 17028:1 17029:1 17035:1 17053:1 17072:1 17103:1 17108:5 17109:1 17111:1 17112:1 17113:1 17115:1 17134:1 17135:1 17152:1 17153:1 17163:2 17178:1 17179:1 17188:2 17202:1 17205:1 17211:1 17213:1 17215:2 17217:1 17225:1 17238:1 17240:1 17244:1 17257:12 17262:1 17309:1 17320:5 17330:2 17331:1 17338:3 17350:2 17354:1 17366:1 17380:1 17384:1 17390:3 17436:1 17454:1 17458:1 17459:1 17482:1 17502:1 17503:3 17512:1 17516:2 17521:1 17554:1 17581:1 17585:1 17602:1 17610:1 17613:2 17620:1 17622:1 17641:1 17661:1 17663:1 17667:1 17676:1 17685:1 17694:1 17710:1 17730:1 17732:1 17736:1 17768:2 17772:1 17787:1 17804:1 17806:1 17811:2 17814:1 17816:1 17818:1 17832:1 17843:1 17844:1 17856:1 17874:2 17878:1 17882:1 17894:1 17899:1 17907:3 17911:2 17913:1 17921:1 17923:2 17924:1 17931:1 17936:1 17940:1 17951:1 17965:1 17969:1 17977:2 17979:1 17985:1 17990:3 17999:1 18005:2 18006:1 18007:2 18008:1 18027:1 18032:1 18054:1 18067:2 18068:1 18072:1 18074:2 18077:1 18080:3 18082:1 18109:2 18135:1 18140:2 18148:2 18164:2 18177:1 18205:2 18227:1 18253:2 18264:1 18276:1 18283:1 18291:1 18328:1 18344:1 18345:1 18366:1 18369:1 18376:1 18380:2 18396:1 18402:1 18406:1 18407:1 18471:1 18496:2 18519:1 18546:1 18557:1 18561:1 18570:1 18575:1 18577:1 18578:2 18592:2 18604:2 18605:1 18608:1 18610:1 18635:1 18636:1 18641:1 18642:1 18643:2 18662:1 18700:1 18707:1 18719:4 18738:1 18751:2 18759:1 18773:1 18774:1 18786:1 18796:3 18797:1 18817:1 18834:1 18882:1 18889:2 18892:1 18900:1 18911:1 18915:1 18926:1 18930:2 18958:1 18962:1 18973:1 18974:1 18982:1 18999:1 19006:1 19011:1 19017:1 19022:1 19023:2 19034:1 19044:1 19061:1 19081:1 19083:1 19085:1 19087:1 19088:2 19090:1 19099:1 19126:1 19135:1 19136:2 19147:1 19150:1 19180:1 19184:1 19187:1 19198:1 19225:2 19228:1 19230:1 19235:1 19244:1 19255:1 19263:1 19276:1 19278:1 19291:1 19298:8 19312:1 19313:1 19321:2 19339:2 19350:1 19362:1 19371:1 19375:1 19391:1 19405:1 19414:1 19446:1 19447:1 19460:1 19461:2 19503:1 19505:1 19522:2 19559:1 19561:1 19577:1 19584:2 19587:1 19588:1 19603:1 19627:1 19630:1 19633:1 19645:1 19650:1 19660:1 19678:1 19681:1 19694:1 19699:1 19700:1 19702:1 19706:2 19707:3 19721:1 19732:1 19734:1 19741:1 19743:1 19746:1 19777:1 19792:1 19793:1 19800:1 19810:1 19819:1 19821:1 19835:1 19842:1 19845:1 19849:1 19862:1 19873:1 19885:2 19886:1 19901:1 19911:1 19924:1 19933:4 19940:2 19948:1 19951:1 19955:2 19961:1 19968:1 19990:1 19991:1 19996:1 20014:1 20050:1 20056:2 20058:1 20065:1 20069:1 20080:1 20083:1 20102:1 20105:3 20122:1 20126:2989 20154:1 20184:1 20187:1 20195:2 20237:1 20264:2 20268:1 20272:1 20276:1 20293:2 20299:2 20305:1 20357:1 20366:1 20390:1 20393:2 20398:1 20424:2 20427:1 20466:1 20474:1 20480:2 20485:1 20501:1 20502:1 20513:1 20515:1 20520:1 20524:1 20556:3 20562:2 20576:1 20577:1 20591:1 20600:1 20630:1 20648:1 20653:2 20660:1 20665:1 20668:4 20676:1 20707:1 20722:1 20728:1 20734:1 20756:1 20768:1 20777:3 20782:1 20809:1 20816:3 20820:1 20826:3 20830:1 20856:1 20870:1 20894:2 20921:1 20923:6 20951:2 20998:1 21007:1 21016:1 21031:1 21035:4 21049:1 21054:2 21059:1 21062:1 21079:1 21104:1 21116:1 21122:1 21128:3 21140:2 21141:2 21145:2 21146:1 21147:1 21149:1 21165:1 21172:1 21177:2 21192:1 21194:1 21202:1 21227:1 21253:1 21286:2 21288:1 21291:1 21296:1 21315:1 21317:1 21329:1 21358:1 21359:1 21375:1 21404:1 21437:1 21457:1 21484:1 21486:1 21489:2 21506:1 21525:1 21536:1 21537:1 21541:2 21542:1 21544:1 21556:1 21560:1 21587:2 21592:1 21594:3 21597:1 21598:1 21601:1 21608:1 21615:1 21616:1 21625:1 21628:2 21630:2 21631:2 21636:1 21647:1 21649:1 21650:1 21659:1 21670:3 21677:2 21687:3 21690:1 21694:1 21700:1 21713:1 21729:1 21730:1 21758:1 21771:1 21781:2 21803:2 21815:1 21818:1 21872:3 21896:1 21910:1 21912:1 21915:1 21920:1 21925:2 21933:1 21934:1 21938:2 21946:1 21949:1 21953:1 21965:2 21966:1 21967:2 21985:1 21999:1 22000:2 22003:1 22028:2 22030:2 22042:2 22053:1 22057:2 22064:2 22099:1 22119:1 22150:1 22152:1 22155:1 22156:1 22167:1 22170:1 22181:1 22186:1 22193:1 22198:1 22201:1 22202:1 22212:1 22222:2 22228:1 22244:1 22250:1 22262:1 22270:3 22275:1 22281:1 22291:1 22294:1 22303:2 22312:2 22319:1 22332:1 22335:1 22366:1 22374:1 22375:3 22376:2 22378:1 22383:1 22390:1 22391:2 22392:2 22402:1 22408:1 22417:1 22426:3 22427:1 22453:2 22466:1 22476:1 22482:1 22516:2 22547:1 22549:2 22551:1 22557:1 22571:2 22599:1 22621:1 22636:1 22639:1 22640:1 22658:1 22671:1 22680:1 22711:1 22738:1 22753:1 22761:1 22782:1 22786:2 22795:1 22804:1 22813:2 22816:2 22837:2 22844:2 22845:8 22847:1 22854:1 22862:1 22879:1 22888:1 22900:1 22903:1 22905:1 22930:1 22938:1 22947:1 22953:1 22960:1 22963:1 22973:2 22975:1 22984:1 22985:1 22998:1 23011:1 23017:1 23028:1 23032:1 23038:1 23039:2 23043:2 23044:1 23047:1 23060:1 23077:1 23094:1 23096:1 23136:1 23139:1 23144:1 23180:3 23187:1 23193:2 23207:1 23217:1 23225:1 23226:1 23239:1 23254:1 23267:1 23280:1 23285:1 23295:1 23301:1 23306:1 23328:1 23339:1 23371:2 23373:1 23377:1 23379:5 23384:1 23387:2 23397:1 23400:1 23409:1 23424:2 23425:3 23445:1 23484:2 23498:1 23512:1 23520:1 23534:2 23544:1 23547:1 23559:1 23564:1 23585:3 23586:1 23596:1 23600:2 23605:1 23609:2 23625:1 23629:1 23631:2 23644:2 23649:2 23652:1 23668:1 23669:2 23671:2 23677:1 23680:1 23702:2 23712:3 23724:1 23730:1 23738:1 23741:1 23748:1 23758:2 23766:2 23767:1 23778:1 23796:1 23804:1 23807:1 23817:1 23826:1 23832:1 23835:1 23840:1 23841:1 23843:1 23847:2 23848:1 23887:2 23897:1 23900:1 23911:1 23919:1 23948:3 23950:1 23952:2 23956:1 23961:1 23962:4 24004:1 24008:1 24015:1 24030:2 24031:2 24032:1 24034:5 24043:1 24051:5 24066:1 24075:1 24102:1 24108:1 24119:1 24142:1 24156:1 24163:2 24169:1 24200:6 24207:1 24215:1 24216:1 24221:1 24225:1 24283:1 24285:1 24289:1 24292:2 24298:1 24305:1 24314:1 24318:2 24324:1 24348:2 24362:1 24363:4 24388:1 24394:1 24399:2 24400:1 24403:1 24405:1 24407:1 24413:1 24417:1 24422:1 24423:1 24424:1 24442:1 24447:1 24448:1 24451:1 24467:2 24473:1 24477:2 24489:1 24499:4 24507:1 24514:1 24517:1 24547:1 24551:1 24566:1 24582:1 24599:1 24600:2 24602:1 24606:1 24608:3 24609:1 24622:1 24629:1 24632:1 24658:1 24670:1 24675:1 24681:1 24720:1 24723:1 24732:1 24737:1 24754:1 24769:1 24773:2 24779:3 24793:2 24850:4 24867:6 24875:1 24894:1 24896:1 24912:1 24946:1 24947:1 24963:1 24964:4 24974:2 24975:3 24978:3 24986:1 24988:1 24989:3 24990:6 25005:1 25022:1 25030:1 25047:2 25051:1 25053:1 25060:1 25061:1 25073:4 25096:1 25100:2 25106:1 25112:1 25114:2 25121:1 25124:1 25136:1 25170:1 25172:1 25177:1 25207:1 25233:1 25251:2 25253:1 25256:2 25258:2 25261:2 25265:1 25267:2 25275:5 25290:1 25305:1 25321:5 25325:1 25341:1 25349:1 25360:1 25364:3 25382:1 25422:1 25438:2 25440:1 25442:2 25445:4 25450:1 25457:3 25465:1 25467:1 25469:1 25476:1 25479:1 25486:1 25488:1 25490:1 25493:1 25496:1 25502:1 25507:3 25511:1 25518:2 25536:1 25537:1 25544:2 25559:1 25564:1 25577:1 25602:1 25609:1 25611:1 25617:1 25623:1 25625:1 25638:2 25681:2 25684:1 25690:1 25695:5 25713:1 25716:1 25719:1 25720:3 25776:1 25782:1 25800:2 25805:1 25810:1 25846:1 25847:1 25851:1 25859:1 25862:1 25873:1 25886:1 25889:2 25907:1 25930:1 25968:1 25974:9 25975:1 25983:2 25985:1 25990:2 25998:2 26009:1 26021:1 26022:1 26032:1 26041:1 26048:1 26062:1 26066:1 26090:1 26093:1 26102:1 26106:1 26115:1 26120:2 26125:4 26129:2 26149:1 26155:3 26172:1 26174:1 26190:1 26194:1 26213:1 26227:2 26230:1 26231:1 26250:2 26251:1 26260:1 26261:1 26262:1 26267:1 26278:1 26283:1 26287:1 26302:2 26309:2 26316:1 26317:1 26328:1 26333:1 26341:1 26358:1 26359:1 26384:1 26399:1 26414:1 26425:1 26447:1 26471:1 26481:2 26483:1 26485:1 26495:1 26508:1 26541:2 26545:2 26552:1 26557:4 26583:1 26584:2 26585:1 26602:1 26603:1 26606:1 26609:1 26626:1 26636:1 26638:1 26669:1 26702:1 26708:1 26729:1 26739:1 26741:5 26764:2 26772:2 26774:1 26777:2 26799:1 26804:1 26805:1 26837:2 26838:2 26868:1 26870:1 26873:2 26885:1 26902:3 26908:1 26919:1 26923:1 26933:1 26937:1 26968:1 26978:2 26988:1 27005:1 27020:1 27028:1 27040:2 27055:1 27057:1 27063:1 27072:2 27074:3 27083:1 27084:2 27085:3 27087:2 27094:3 27095:1 27103:1 27104:1 27108:2 27115:1 27128:1 27134:3 27140:1 27167:2 27178:4 27191:2 27198:1 27199:1 27205:1 27206:2 27222:1 27227:1 27238:1 27247:2 27248:2 27249:2 27285:1 27287:2 27295:1 27297:1 27315:1 27319:2 27332:1 27338:2 27351:1 27376:1 27381:1 27395:3 27405:1 27408:1 27427:1 27437:1 27439:3 27445:2 27459:1 27467:3 27485:1 27491:1 27512:3 27541:1 27543:1 27546:1 27568:1 27591:1 27601:1 27616:1 27654:1 27667:1 27674:2 27684:1 27685:1 27770:3 27773:1 27794:1 27795:1 27812:1 27817:1 27825:3 27830:1 27846:1 27851:4 27875:1 27881:1 27882:1 27890:1 27896:1 27907:1 27920:1 27929:1 27944:1 27957:1 27991:1 27994:1 28000:1 28041:1 28042:1 28051:2 28053:2 28065:1 28078:2 28081:2 28086:1 28092:1 28094:1 28098:1 28102:2 28103:1 28104:4 28109:1 28139:3 28149:2 28151:1 28168:2 28172:1 28176:2 28183:1 28191:1 28193:2 28196:2 28205:2 28208:1 28211:3 28212:1 28213:2 28220:2 28225:1 28245:1 28249:1 28251:1 28252:1 28281:1 28299:5 28300:2 28349:1 28352:1 28388:1 28389:1 28390:1 28405:1 28411:1 28412:1 28414:1 28418:1 28443:1 28444:4 28448:2 28449:1 28477:1 28478:1 28482:1 28493:1 28499:1 28526:1 28528:1 28530:1 28548:1 28573:1 28574:2 28580:2 28582:1 28583:1 28586:1 28592:1 28599:1 28613:2 28616:1 28622:4 28628:1 28639:1 28644:1 28651:1 28658:1 28670:1 28671:1 28674:1 28691:1 28716:1 28725:1 28728:1 28739:2 28741:2 28742:1 28743:1 28748:4 28759:1 28775:1 28804:2 28811:1 28827:1 28842:1 28845:1 28846:1 28854:2 28855:1 28884:1 28896:1 28921:1 28930:1 28939:1 28960:1 28997:1 29006:2 29007:1 29009:1 29015:1 29018:1 29038:1 29053:3 29056:2 29059:1 29061:2 29062:2 29071:1 29076:3 29087:1 29092:1 29096:1 29122:1 29123:1 29128:1 29133:1 29145:1 29148:1 29163:2 29176:1 29177:1 29178:1 29179:1 29183:2 29188:4 29205:1 29253:2 29266:2 29268:1 29277:1 29290:2 29296:1 29298:2 29306:1 29321:1 29345:2 29355:2 29367:1 29369:1 29388:1 29392:1 29402:2 29409:1 29417:2 29422:1 29448:1 29456:1 29467:1 29468:2 29479:1 29483:1 29487:1 29491:1 29504:1 29513:1 29537:1 29557:1 29577:1 29611:1 29617:1 29620:2 29637:1 29642:2 29647:2 29660:1 29673:1 29674:1 29681:1 29701:2 29707:1 29708:1 29718:2 29725:1 29731:1 29738:2 29739:1 29746:2 29760:1 29771:2 29773:2 29774:1 29780:2 29806:12 29811:1 29815:1 29819:1 29821:2 29831:1 29835:1 29837:1 29852:7 29853:2 29861:1 29865:2 29867:1 29882:3 29904:1 29922:1 29930:3 29939:1 29974:1 29979:1 29999:1 30020:3 30033:1 30045:2 30047:1 30053:2 30056:1 30068:1 30075:1 30078:2 30083:1 30090:2 30104:1 30109:1 30114:1 30116:1 30121:1 30123:2 30149:1 30160:1 30164:1 30174:1 30177:1 30182:1 30189:1 30196:1 30199:1 30212:1 30220:1 30242:1 30247:3 30251:1 30263:1 30271:1 30275:1 30281:1 30300:1 30302:1 30317:1 30325:1 30330:3 30365:2 30367:1 30381:1 30390:2 30392:2 30399:1 30412:1 30414:1 30421:1 30428:1 30429:1 30458:1 30459:1 30477:1 30479:1 30494:1 30498:1 30517:1 30520:1 30523:1 30526:1 30554:1 30556:2 30557:1 30558:2 30559:1 30567:1 30572:1 30574:1 30578:1 30582:1 30597:1 30599:1 30602:2 30618:1 30621:1 30625:1 30676:1 30683:1 30712:1 30713:1 30714:1 30750:2 30759:1 30783:1 30803:1 30812:1 30867:2 30869:1 30879:1 30922:4 30931:1 30935:1 30942:1 30949:1 30968:1 30973:5 30978:1 30981:1 30984:1 30996:1 31002:1 31005:2 31013:1 31030:2 31036:1 31037:1 31046:2 31054:1 31071:1 31076:1 31083:2 31084:1 31087:1 31090:4 31098:1 31100:1 31121:1 31124:1 31133:2 31135:1 31143:2 31179:1 31182:3 31183:1 31190:1 31195:2 31197:1 31198:1 31201:1 31208:1 31228:1
17 16:1 19:2 33:1 35:1 40:1 42:1 49:1 61:2 62:1 69:1 86:1 110:1 122:1 164:1 173:7 183:1 186:2 192:1 199:1 224:1 227:1 240:1 256:2 271:1 278:4 304:2 310:2 343:1 345:1 351:1 357:3 358:1 398:1 401:2 404:1 419:1 420:1 422:1 426:1 493:1 503:1 504:2 509:1 511:1 513:1 514:1 519:1 577:1 591:1 633:3 640:1 641:1 647:1 661:1 662:1 690:1 695:1 703:1 708:4 719:1 726:2 781:1 800:1 815:1 817:1 824:1 831:1 839:1 846:3 857:1 864:6 928:2 934:1 969:1 970:1 973:2 977:6 979:3 980:1 982:2 985:1 986:5 990:2 991:3 992:1 997:1 1002:1 1003:2 1007:1 1008:2 1011:2 1028:1 1034:4 1036:2 1039:2 1044:1 1074:3 1093:1 1094:2 1095:1 1098:2 1114:1 1116:1 1119:1 1129:1 1133:1 1145:1 1150:1 1161:1 1165:1 1166:1 1168:3 1175:1 1186:1 1192:1 1204:1 1210:1 1220:1 1221:1 1222:2 1231:1 1248:1 1258:1 1268:2 1269:2 1283:1 1318:1 1327:1 1330:1 1339:2 1343:1 1348:1 1360:1 1370:1 1375:1 1377:1 1382:1 1398:1 1399:1 1410:1 1413:1 1414:1 1433:1 1435:1 1442:1 1460:1 1462:1 1464:2 1472:1 1487:1 1488:1 1489:1 1497:1 1535:1 1540:1 1560:1 1564:1 1565:2 1584:1 1601:1 1605:1 1608:1 1613:1 1625:1 1638:2 1642:1 1644:1 1650:1 1669:2 1676:1 1688:4 1701:1 1702:1 1708:1 1714:1 1717:1 1719:1 1722:1 1736:2 1749:1 1771:1 1786:1 1790:2 1794:1 1797:3 1816:1 1822:1 1825:1 1826:1 1827:1 1833:2 1842:1 1851:1 1857:1 1860:1 1867:1 1868:1 1871:1 1873:1 1895:1 1896:2 1904:1 1905:1 1910:2 1911:1 1921:3 1922:1 1932:1 1933:1 1942:1 1950:1 1956:1 1958:1 1961:3 1963:2 1964:1 1972:1 1975:1 1991:1 1999:1 2000:1 2011:1 2018:3 2027:2 2033:2 2036:1 2037:1 2041:1 2066:1 2078:1 2092:1 2099:1 2108:2 2110:1 2126:1 2127:2 2128:1 2136:1 2139:1 2155:1 2157:1 2164:1 2177:1 2187:2 2221:1 2224:1 2226:2 2253:2 2261:1 2270:1 2280:1 2282:1 2307:1 2356:1 2395:2 2433:1 2442:1 2467:1 2470:1 2486:1 2502:1 2504:2 2508:1 2519:1 2525:4 2530:2 2531:1 2533:1 2537:1 2543:5 2550:1 2551:2 2552:2 2556:3 2558:1 2561:1 2568:1 2569:6 2584:1 2600:2 2616:2 2630:1 2632:1 2633:1 2638:1 2648:1 2650:1 2697:1 2698:1 2701:2 2721:1 2737:6 2741:2 2757:2 2765:1 2770:1 2777:1 2778:2 2783:1 2784:1 2789:1 2798:1 2799:1 2800:1 2804:3 2809:1 2816:1 2821:1 2856:1 2866:1 2870:1 2872:2 2892:1 2923:2 2928:1 2938:1 2939:1 2964:1 2982:1 2991:1 2994:1 3001:1 3004:1 3023:1 3027:1 3031:1 3032:3 3044:1 3086:1 3101:1 3106:1 3109:1 3110:2 3112:2 3117:1 3124:1 3131:1 3138:1 3142:1 3144:1 3147:1 3168:1 3169:1 3179:1 3189:4 3197:4 3210:5 3232:1 3243:1 3247:1 3249:2 3257:2 3266:1 3282:1 3291:1 3294:1 3295:1 3310:2 3313:3 3315:2 3320:1 3322:2 3327:1 3341:2 3364:1 3365:1 3376:1 3392:1 3412:1 3419:3 3420:1 3442:1 3455:1 3457:1 3463:1 3464:2 3487:1 3495:1 3497:1 3500:1 3504:1 3524:1 3552:1 3553:1 3563:3 3589:2 3630:1 3656:1 3671:2 3708:1 3745:1 3747:2 3756:1 3772:1 3778:1 3779:3 3795:1 3797:1 3798:1 3817:1 3848:2 3849:1 3857:1 3869:3 3877:1 3878:1 3879:1 3881:5 3896:1 3904:1 3913:1 3920:1 3926:2 3936:1 3959:1 3971:1 3987:1 3992:1 3997:1 4003:3 4007:1 4018:2 4025:1 4032:2 4052:2 4061:1 4063:1 4091:1 4093:1 4097:1 4101:1 4127:3 4128:1 4131:1 4132:1 4149:2 4159:1 4187:1 4204:2 4207:3 4218:1 4227:1 4240:2 4247:1 4255:1 4262:3 4264:1 4268:1 4282:1 4284:2 4293:2 4311:1 4312:1 4323:1 4325:1 4336:1 4337:1 4385:1 4386:1 4389:1 4418:2 4426:1 4443:1 4446:1 4448:1 4454:1 4463:1 4468:1 4473:1 4480:1 4487:1 4490:2 4501:1 4507:1 4518:2 4520:1 4527:1 4535:2 4579:1 4604:1 4606:1 4608:1 4636:1 4642:1 4645:2 4648:2 4650:1 4654:1 4655:1 4662:1 4673:1 4712:2 4716:3 4749:1 4753:1 4754:1 4761:4 4765:1 4767:1 4770:1 4779:1 4780:2 4785:1 4787:4 4801:1 4814:1 4816:1 4819:1 4835:1 4837:1 4842:1 4843:1 4854:2 4855:1 4881:1 4891:2 4892:1 4903:1 4906:1 4918:1 4931:1 4955:1 4960:1 4964:1 4965:1 4970:2 4974:1 4981:1 4984:1 4985:6 4997:3 5008:1 5012:1 5015:1 5024:1 5050:2 5069:1 5070:4 5076:1 5088:2 5107:1 5128:1 5147:2 5154:5 5161:1 5162:1 5172:1 5176:1 5179:1 5180:1 5185:1 5188:3 5190:1 5192:4 5202:1 5206:1 5209:1 5219:2 5221:2 5246:1 5248:1 5281:1 5296:1 5298:2 5302:1 5312:1 5313:1 5314:1 5315:1 5316:1 5321:1 5326:1 5328:1 5329:2 5334:2 5338:1 5345:2 5347:2 5354:1 5355:1 5357:1 5391:1 5394:1 5417:1 5418:1 5436:1 5443:1 5491:1 5501:1 5505:1 5509:1 5536:1 5540:2 5544:1 5547:1 5556:1 5569:2 5580:3 5586:1 5592:1 5600:2 5603:1 5625:1 5631:1 5646:2 5651:1 5673:1 5684:1 5692:2 5717:1 5721:1 5735:1 5742:1 5758:2 5761:1 5785:1 5792:1 5806:2 5824:1 5856:1 5877:1 5878:2 5888:2 5889:1 5896:1 5902:1 5907:1 5917:1 5942:1 5950:1 5958:1 5979:1 6000:2 6003:1 6006:1 6013:1 6014:3 6020:1 6040:2 6050:1 6066:6 6082:1 6097:1 6106:1 6109:1 6119:1 6121:1 6132:1 6142:1 6147:1 6153:1 6158:1 6164:2 6165:1 6166:1 6170:1 6172:1 6182:1 6198:1 6200:2 6202:1 6207:1 6222:1 6233:2 6237:1 6245:2 6246:1 6248:1 6268:1 6280:1 6286:1 6293:1 6298:1 6301:2 6306:2 6310:2 6312:9 6319:1 6320:2 6342:1 6346:1 6361:1 6388:3 6409:1 6411:2 6433:2 6439:1 6440:4 6450:2 6456:1 6467:3 6484:2 6503:1 6507:1 6513:1 6514:1 6531:2 6533:3 6536:1 6557:2 6562:1 6567:1 6569:1 6571:1 6575:1 6579:1 6589:4 6594:1 6617:1 6640:2 6653:2 6654:1 6659:2 6661:2 6665:2 6668:1 6672:1 6681:1 6705:2 6727:1 6733:1 6746:1 6748:1 6753:1 6758:1 6768:4 6786:1 6789:1 6793:1 6804:1 6829:9 6840:1 6844:1 6855:1 6858:1 6865:3 6868:2 6869:1 6875:1 6883:1 6885:3 6886:2 6887:1 6910:1 6917:1 6922:1 6926:1 6930:1 6932:1 6937:1 6938:1 6945:3 6950:1 6959:1 6966:1 7012:1 7023:1 7033:3 7035:1 7048:1 7064:1 7069:1 7078:1 7084:2 7101:1 7111:2 7115:1 7121:2 7128:1 7152:1 7169:2 7171:4 7181:1 7202:1 7209:1 7216:1 7218:1 7219:1 7226:1 7227:1 7270:1 7277:1 7288:1 7296:1 7312:3 7332:1 7341:1 7353:1 7354:1 7357:1 7374:1 7375:3 7381:2 7383:1 7395:1 7413:1 7415:1 7422:1 7423:1 7427:2 7434:3 7444:1 7453:1 7460:1 7467:1 7490:1 7518:1 7529:2 7556:1 7567:2 7577:2 7580:1 7583:1 7598:4 7616:2 7626:1 7647:1 7648:1 7650:1 7654:2 7659:1 7663:1 7670:1 7676:1 7715:2 7718:2 7745:1 7753:1 7761:3 7769:1 7775:1 7785:1 7787:1 7798:1 7799:1 7801:1 7819:2 7836:1 7846:1 7882:2 7902:1 7903:1 7908:1 7909:1 7929:1 7932:1 7941:1 7955:2 7959:2 7965:1 7974:1 7976:1 8000:2 8010:1 8019:4 8025:1 8027:1 8034:1 8039:1 8050:1 8053:1 8059:2 8062:1 8063:1 8080:1 8082:1 8092:2 8102:1 8114:1 8120:2 8126:3 8127:1 8128:1 8148:3 8150:2 8151:7 8152:3 8153:1 8155:1 8157:2 8161:6 8162:1 8163:1 8165:1 8170:2 8171:3 8172:1 8173:4 8174:2 8187:1 8214:3 8221:1 8232:1 8239:1 8247:1 8261:1 8268:1 8286:1 8300:1 8301:1 8305:1 8310:1 8316:1 8318:1 8330:1 8337:2 8353:2 8360:1 8371:1 8372:2 8404:1 8405:1 8420:18 8431:1 8440:4 8442:2 8450:2 8467:1 8474:2 8485:1 8493:2 8502:1 8505:4 8509:1 8517:1 8542:2 8551:1 8557:1 8572:1 8611:1 8622:1 8640:1 8642:1 8644:1 8650:2 8678:1 8679:1 8693:3 8702:1 8705:1 8710:1 8716:1 8740:1 8776:2 8792:1 8801:1 8823:5 8828:1 8834:1 8837:2 8850:1 8857:6 8859:1 8866:1 8872:1 8874:1 8879:1 8886:1 8903:1 8910:1 8913:1 8920:1 8930:1 8940:1 8953:1 8956:1 8959:1 8961:1 8963:6 8987:1 9006:2 9013:2 9023:2 9035:1 9039:1 9062:1 9077:1 9079:2 9082:1 9093:1 9094:1 9113:1 9119:2 9125:3 9129:1 9131:1 9132:1 9139:1 9141:1 9149:1 9156:2 9165:1 9168:1 9172:1 9175:2 9186:1 9191:1 9192:1 9193:1 9194:1 9210:1 9216:1 9220:1 9224:1 9227:1 9237:2 9243:1 9261:1 9263:1 9268:2 9273:1 9283:1 9296:1 9305:5 9314:1 9316:2 9367:1 9370:1 9372:2 9376:2 9378:4 9383:1 9385:1 9390:1 9396:1 9405:2 9410:1 9421:1 9447:1 9461:1 9463:1 9490:3 9498:1 9500:1 9506:2 9510:1 9522:1 9524:1 9525:1 9527:1 9568:7 9583:1 9588:1 9596:1 9622:1 9651:1 9667:2 9680:1 9681:1 9685:1 9688:1 9693:1 9715:1 9724:2 9726:1 9743:1 9778:1 9795:6 9796:2 9815:2 9826:1 9835:1 9836:1 9848:1 9850:1 9857:1 9872:1 9887:1 9894:1 9900:1 9917:1 9922:3 9923:1 9937:1 9948:1 9949:1 9981:3 9996:1 10013:1 10022:1 10026:1 10047:1 10051:3 10079:1 10091:1 10092:2 10115:1 10119:4 10122:1 10127:1 10131:1 10133:1 10135:1 10141:2 10158:1 10168:1 10169:1 10175:1 10191:1 10196:1 10203:1 10216:3 10221:1 10229:1 10243:1 10252:1 10253:1 10254:1 10255:2 10259:1 10273:1 10277:1 10293:1 10295:1 10304:1 10306:1 10317:1 10326:2 10342:1 10346:1 10353:1 10368:1 10372:1 10379:1 10382:1 10388:2 10389:1 10390:2 10393:1 10402:1 10421:1 10422:1 10429:2 10451:3 10457:1 10478:2 10483:2 10486:1 10488:1 10494:1 10500:4 10501:1 10503:3 10511:1 10514:1 10516:1 10531:1 10532:1 10540:1 10548:1 10551:1 10554:1 10557:1 10561:1 10566:1 10567:1 10568:3 10576:3 10578:1 10593:1 10597:1 10623:1 10626:1 10631:1 10650:6 10656:1 10671:1 10676:2 10682:1 10707:3 10708:1 10716:2 10747:1 10760:1 10769:1 10781:1 10783:1 10790:1 10799:1 10800:1 10812:1 10821:1 10827:1 10832:1 10833:1 10847:1 10853:1 10881:1 10884:1 10891:2 10933:1 10936:1 10937:1 10945:2 10949:1 10954:2 10960:4 10963:1 10965:2 10966:1 10967:2 10972:1 10973:1 10982:1 11010:1 11012:1 11013:1 11014:1 11018:1 11020:2 11021:1 11025:3 11026:1 11035:4 11042:2 11054:1 11055:3 11059:5 11078:1 11082:1 11093:2 11103:1 11113:1 11137:4 11144:2 11150:1 11197:1 11206:1 11217:1 11223:3 11235:3 11237:2 11238:1 11246:1 11251:2 11255:1 11263:1 11281:1 11304:2 11316:1 11324:1 11325:2 11338:1 11358:1 11360:1 11367:1 11369:1 11370:2 11372:1 11373:1 11377:1 11403:1 11408:1 11426:5 11428:1 11429:1 11432:1 11437:3 11445:1 11448:1 11450:1 11456:1 11463:1 11464:2 11466:1 11477:1 11480:1 11481:1 11494:1 11499:1 11501:3 11509:1 11514:1 11522:2 11533:1 11565:1 11572:1 11573:2 11579:1 11585:2 11605:1 11613:2 11649:1 11656:1 11662:1 11664:2 11685:1 11697:1 11700:1 11703:1 11719:2 11730:6 11737:1 11742:2 11745:1 11747:1 11761:1 11764:2 11778:1 11784:1 11793:1 11813:2 11840:1 11849:1 11861:1 11863:1 11868:1 11869:2 11891:1 11905:1 11926:1 11946:1 11953:1 11963:1 11978:1 11981:1 11996:4 11997:3 12004:1 12010:2 12015:1 12016:2 12026:1 12038:2 12039:1 12052:1 12055:5 12079:1 12082:1 12085:1 12086:4 12091:1 12095:1 12103:1 12104:3 12118:1 12131:1 12141:1 12147:1 12159:1 12161:1 12169:2 12187:2 12214:1 12236:1 12246:3 12251:1 12254:1 12261:1 12263:1 12268:1 12272:1 12285:2 12290:3 12293:2 12322:1 12325:2 12329:1 12332:1 12353:1 12366:1 12368:1 12377:1 12380:1 12383:1 12405:2 12407:3 12412:1 12419:3 12424:1 12435:1 12446:1 12450:3 12451:1 12457:1 12462:2 12468:1 12473:2 12488:4 12500:1 12514:1 12530:4 12534:1 12544:1 12568:1 12569:1 12623:1 12633:1 12673:1 12677:1 12679:2 12698:1 12708:1 12711:5 12721:1 12729:1 12743:1 12769:2 12773:1 12776:1 12780:1 12784:1 12794:1 12798:2 12802:1 12816:1 12827:1 12831:3 12832:1 12839:1 12843:1 12846:2 12848:2 12853:1 12890:1 12894:1 12898:1 12908:1 12910:1 12921:1 12925:2 12944:1 12957:1 12968:1 12977:1 12990:1 12995:1 12996:1 13002:1 13023:1 13025:3 13028:1 13029:1 13031:1 13034:3 13037:1 13038:5 13039:1 13040:1 13047:2 13050:2 13052:1 13085:2 13098:1 13100:1 13110:1 13129:1 13130:2 13131:1 13133:2 13138:1 13141:2 13144:1 13157:2 13163:1 13167:2 13169:1 13171:1 13173:2 13199:1 13210:1 13214:1 13222:1 13226:1 13228:1 13243:1 13244:2 13246:1 13247:3 13253:2 13260:3 13261:1 13266:1 13267:1 13279:1 13280:1 13295:1 13301:1 13329:1 13355:2 13359:1 13372:1 13374:1 13385:1 13390:2 13394:1 13395:1 13399:1 13400:1 13403:1 13410:1 13424:1 13436:1 13439:1 13450:1 13465:1 13468:2 13470:1 13472:1 13481:1 13497:1 13540:1 13552:1 13559:2 13577:1 13579:1 13581:1 13584:2 13585:1 13591:2 13600:1 13608:1 13609:1 13655:1 13661:1 13680:2 13695:2 13697:1 13704:1 13710:1 13713:1 13725:1 13731:2 13743:1 13746:1 13752:1 13766:2 13768:1 13799:1 13828:6 13854:1 13856:2 13858:1 13864:3 13934:5 13937:1 13949:1 13963:2 13965:1 13971:6 13989:1 13991:2 14022:1 14029:1 14032:1 14051:1 14069:1 14109:1 14114:1 14148:1 14200:1 14222:1 14238:1 14266:1 14276:1 14292:2 14294:1 14298:2 14331:1 14333:5 14339:2 14341:1 14342:3 14346:1 14357:1 14372:1 14377:3 14386:3 14387:1 14412:1 14420:1 14421:1 14424:1 14452:1 14461:1 14473:1 14498:1 14504:1 14522:1 14527:1 14529:1 14556:5 14566:1 14567:1 14570:1 14571:2 14624:1 14625:1 14690:2 14704:1 14708:1 14712:1 14720:1 14728:2 14732:3 14744:3 14753:2 14757:1 14770:1 14789:1 14792:1 14798:1 14803:1 14804:8 14815:2 14826:1 14831:1 14843:1 14846:1 14855:2 14856:1 14859:1 14860:1 14864:1 14875:1 14877:1 14878:1 14880:1 14882:2 14888:1 14897:1 14900:1 14914:1 14915:1 14923:1 14931:2 14941:1 14968:1 14987:2 14989:1 14994:1 15020:4 15045:2 15064:1 15095:1 15101:1 15111:1 15150:1 15153:1 15169:1 15176:2 15216:1 15220:1 15227:1 15241:1 15245:1 15248:2 15251:1 15271:1 15287:1 15297:1 15307:1 15321:1 15325:1 15329:1 15341:1 15348:1 15349:1 15355:1 15365:1 15371:1 15385:1 15387:3 15397:1 15398:1 15400:1 15412:1 15422:1 15439:1 15443:2 15444:1 15446:1 15448:1 15452:1 15454:1 15458:1 15459:1 15468:1 15485:2 15495:1 15496:1 15514:1 15528:1 15534:2 15549:2 15554:1 15563:1 15570:1 15571:1 15573:1 15577:1 15580:5 15582:1 15584:1 15594:1 15598:1 15602:1 15603:1 15605:1 15608:1 15615:4 15617:2 15620:1 15623:1 15650:2 15672:1 15678:1 15685:1 15695:1 15701:2 15704:1 15718:1 15720:2 15731:1 15740:1 15741:1 15742:5 15750:2 15761:1 15764:1 15768:1 15789:2 15797:2 15804:2 15811:1 15815:1 15822:1 15842:1 15859:1 15869:1 15873:1 15933:1 15953:1 15958:3 15959:4 15968:1 16004:1 16015:1 16019:1 16024:1 16028:3 16029:1 16039:1 16056:9 16063:2 16064:2 16065:1 16080:1 16082:1 16083:1 16085:1 16087:4 16089:38 16099:1 16104:1 16105:2 16116:1 16138:1 16146:3 16155:2 16159:2 16196:1 16203:1 16212:1 16235:3 16254:1 16259:1 16278:3 16288:1 16298:1 16300:2 16305:1 16309:4 16312:1 16321:1 16322:1 16357:1 16361:3 16363:1 16372:1 16399:1 16409:1 16410:2 16424:1 16432:1 16443:1 16454:4 16460:1 16478:2 16487:2 16488:1 16508:1 16515:1 16519:1 16525:1 16533:1 16558:1 16567:1 16572:1 16573:2 16585:1 16596:1 16598:9 16610:1 16617:1 16631:1 16633:1 16635:1 16638:1 16650:2 16651:1 16669:1 16702:3 16741:1 16744:1 16752:1 16762:1 16773:1 16776:1 16788:1 16798:1 16835:1 16836:2 16839:2 16840:1 16849:2 16906:1 16907:1 16914:1 16915:1 16940:2 16947:1 16948:2 16965:1 16971:1 16972:1 16989:2 16995:1 16996:1 16997:2 17018:1 17022:1 17028:1 17029:1 17035:1 17053:1 17072:1 17103:1 17108:5 17109:1 17111:1 17112:1 17113:1 17115:1 17134:1 17135:1 17152:1 17153:1 17163:2 17178:1 17179:1 17188:2 17202:1 17205:1 17211:2 17213:1 17215:2 17217:1 17225:1 17238:1 17240:1 17244:1 17257:12 17262:1 17309:1 17320:5 17330:2 17331:1 17338:3 17350:2 17354:1 17366:1 17380:1 17384:1 17390:3 17436:1 17454:1 17458:1 17459:1 17482:1 17502:1 17503:3 17512:1 17516:2 17521:1 17554:1 17581:1 17585:1 17602:1 17610:1 17613:2 17620:1 17622:1 17641:1 17661:1 17663:1 17667:1 17676:1 17685:1 17694:1 17710:1 17730:1 17732:1 17736:1 17768:2 17772:1 17787:1 17804:1 17806:1 17811:2 17814:1 17816:1 17818:1 17832:1 17843:1 17844:1 17856:1 17874:3 17878:1 17882:1 17894:1 17899:1 17907:3 17911:2 17913:1 17921:1 17923:2 17924:1 17931:1 17936:1 17940:1 17951:1 17965:1 17969:1 17977:2 17979:1 17985:1 17990:3 17999:1 18005:2 18006:1 18007:2 18008:1 18027:1 18032:1 18054:1 18067:2 18068:1 18072:1 18074:2 18077:1 18080:3 18082:1 18103:1 18109:2 18135:1 18140:2 18148:2 18164:2 18177:1 18205:2 18227:1 18253:2 18264:1 18276:1 18283:1 18291:1 18328:1 18344:1 18345:1 18366:1 18369:1 18376:1 18380:2 18396:1 18402:1 18406:1 18407:1 18471:1 18496:2 18519:1 18546:1 18557:1 18561:1 18570:1 18575:1 18577:1 18578:2 18592:2 18604:2 18605:1 18608:1 18610:1 18635:1 18636:1 18641:1 18642:1 18643:2 18662:1 18700:1 18707:1 18719:4 18738:1 18751:2 18759:1 18773:1 18774:1 18786:1 18796:3 18797:1 18817:1 18834:1 18882:1 18889:2 18892:1 18900:1 18911:1 18915:1 18926:1 18930:2 18958:1 18962:1 18973:1 18974:1 18982:1 18999:1 19006:1 19011:1 19017:1 19022:1 19023:2 19034:1 19044:1 19061:1 19081:1 19083:1 19085:1 19087:1 19088:2 19090:1 19099:1 19122:1 19126:1 19135:1 19136:2 19147:1 19150:1 19161:1 19180:1 19184:1 19187:1 19198:1 19225:2 19228:1 19230:1 19235:1 19244:1 19255:1 19263:1 19276:1 19278:1 19291:1 19298:8 19312:1 19313:1 19321:2 19339:2 19350:1 19362:1 19371:1 19375:1 19391:1 19405:1 19414:1 19446:1 19447:1 19460:1 19461:2 19503:2 19505:1 19522:2 19559:1 19561:1 19577:1 19584:2 19587:1 19588:1 19603:1 19627:1 19630:1 19633:1 19645:1 19650:1 19660:1 19678:1 19681:1 19694:1 19699:1 19700:1 19702:1 19706:2 19707:3 19721:1 19732:1 19734:1 19741:1 19743:1 19746:1 19777:1 19792:1 19793:1 19800:1 19810:1 19819:1 19821:1 19835:1 19842:1 19845:1 19849:1 19862:1 19873:1 19885:2 19886:1 19901:1 19911:1 19924:1 19933:4 19940:2 19948:1 19951:1 19955:2 19961:1 19968:1 19990:1 19991:1 19996:1 20014:1 20050:1 20056:2 20058:1 20065:1 20069:1 20080:1 20083:1 20102:1 20105:3 20122:1 20126:3118 20154:1 20184:1 20187:1 20195:2 20237:1 20264:2 20268:1 20272:1 20276:1 20293:2 20299:2 20305:1 20357:1 20366:1 20390:1 20393:2 20398:1 20424:2 20427:1 20466:1 20474:1 20480:2 20485:1 20491:1 20501:1 20502:1 20513:1 20515:1 20520:1 20524:1 20556:3 20562:2 20576:1 20577:1 20591:1 20600:1 20630:1 20648:1 20653:3 20660:1 20665:1 20668:4 20676:1 20707:1 20722:1 20728:1 20734:1 20756:1 20768:1 20777:3 20782:1 20809:1 20816:3 20820:1 20826:3 20830:1 20856:1 20870:1 20894:2 20921:1 20923:6 20951:2 20998:1 21007:1 21016:1 21029:1 21031:1 21035:4 21049:1 21054:2 21059:1 21062:1 21079:1 21104:1 21116:1 21122:1 21128:3 21140:2 21141:2 21145:2 21146:1 21147:1 21149:1 21165:1 21172:1 21177:2 21192:1 21194:1 21202:1 21227:1 21253:1 21286:2 21288:1 21291:1 21296:1 21315:1 21317:1 21329:1 21358:1 21359:1 21375:1 21404:1 21437:1 21457:1 21460:1 21484:1 21486:1 21489:2 21506:1 21525:1 21536:1 21537:1 21541:2 21542:1 21544:1 21556:1 21560:1 21587:2 21592:1 21594:3 21597:1 21598:1 21601:1 21608:1 21615:1 21616:1 21625:1 21628:2 21630:2 21631:2 21636:1 21647:1 21649:1 21650:1 21659:1 21670:3 21677:2 21687:3 21690:1 21694:1 21700:1 21713:1 21729:1 21730:1 21758:1 21771:1 21781:2 21803:2 21815:1 21818:1 21872:3 21896:1 21910:1 21912:1 21915:1 21920:1 21925:2 21933:1 21934:1 21938:2 21946:1 21949:1 21953:1 21965:2 21966:1 21967:2 21985:1 21999:1 22000:2 22003:1 22028:2 22030:2 22042:2 22053:1 22057:2 22064:2 22099:1 22119:1 22150:1 22152:1 22155:1 22156:1 22167:1 22170:1 22181:1 22186:1 22193:1 22198:1 22201:1 22202:1 22212:1 22222:3 22228:1 22244:1 22250:1 22262:1 22270:3 22275:1 22281:1 22291:1 22294:1 22303:2 22312:2 22319:1 22332:1 22335:1 22366:1 22374:1 22375:3 22376:2 22378:1 22383:1 22390:1 22391:2 22392:2 22402:1 22408:1 22417:1 22426:3 22427:1 22453:2 22466:1 22476:1 22482:1 22516:2 22547:1 22549:2 22551:1 22557:1 22571:2 22599:1 22621:1 22636:1 22639:1 22640:1 22658:1 22671:1 22680:1 22711:1 22738:1 22753:1 22761:1 22782:1 22786:2 22795:1 22804:1 22813:2 22816:2 22837:2 22844:2 22845:8 22847:1 22854:1 22862:1 22879:1 22888:1 22900:1 22903:1 22905:1 22930:1 22938:1 22947:1 22953:1 22960:1 22963:1 22973:2 22975:1 22984:1 22985:1 22998:1 23011:1 23017:1 23028:1 23032:1 23038:1 23039:2 23043:2 23044:1 23047:1 23060:1 23077:1 23094:1 23096:1 23136:1 23139:1 23144:1 23160:1 23165:1 23180:3 23187:1 23193:2 23207:1 23217:1 23225:1 23226:1 23239:1 23254:1 23267:2 23280:1 23285:1 23295:1 23301:1 23306:1 23328:1 23339:1 23371:2 23373:1 23377:1 23379:6 23384:1 23387:2 23397:1 23400:1 23409:1 23424:2 23425:3 23445:1 23484:2 23498:1 23512:1 23520:1 23534:2 23544:1 23547:1 23559:1 23564:1 23585:3 23586:1 23596:1 23600:2 23605:1 23609:2 23625:1 23629:1 23631:2 23644:2 23649:2 23652:1 23668:1 23669:2 23671:2 23677:1 23680:1 23702:2 23712:3 23724:1 23730:1 23738:1 23741:1 23748:1 23758:2 23766:2 23767:1 23778:1 23784:1 23796:1 23804:1 23807:1 23817:1 23826:1 23832:1 23835:1 23840:1 23841:1 23843:1 23847:2 23848:1 23887:2 23897:1 23900:1 23911:1 23919:1 23948:3 23950:1 23952:2 23956:1 23961:1 23962:4 24004:1 24008:1 24015:1 24030:2 24031:2 24032:1 24034:5 24043:1 24051:5 24066:1 24075:1 24102:1 24108:1 24119:1 24142:1 24156:1 24163:2 24169:1 24200:7 24207:1 24215:2 24216:1 24221:1 24225:1 24283:1 24285:1 24289:1 24292:2 24298:1 24305:1 24314:1 24318:2 24324:1 24348:2 24362:1 24363:4 24388:1 24394:1 24399:2 24400:1 24403:1 24405:1 24407:1 24413:1 24417:1 24422:1 24423:1 24424:1 24442:1 24447:1 24448:1 24451:1 24467:2 24473:1 24477:2 24489:1 24490:1 24499:4 24507:1 24514:1 24517:1 24547:1 24551:1 24566:1 24582:1 24599:1 24600:2 24602:1 24606:1 24608:3 24609:1 24622:1 24629:1 24632:1 24658:1 24670:1 24675:1 24681:1 24720:1 24723:1 24732:1 24737:1 24754:1 24769:1 24773:2 24779:3 24793:3 24850:4 24867:7 24875:1 24894:1 24896:1 24912:1 24946:1 24947:1 24963:1 24964:4 24974:2 24975:3 24978:3 24986:1 24988:1 24989:3 24990:6 25005:1 25022:1 25030:1 25047:2 25051:1 25053:1 25060:1 25061:1 25073:4 25096:1 25100:2 25106:1 25112:1 25114:2 25121:1 25124:1 25136:1 25170:1 25172:1 25177:1 25207:1 25233:1 25251:2 25253:1 25256:2 25258:2 25261:2 25265:1 25267:2 25275:5 25290:1 25305:1 25321:5 25325:1 25341:1 25349:1 25360:1 25364:3 25382:1 25422:1 25438:2 25440:1 25442:2 25445:4 25450:1 25457:3 25465:1 25467:1 25469:1 25476:1 25479:1 25486:1 25488:1 25490:1 25493:1 25496:1 25502:1 25507:3 25511:1 25518:2 25536:1 25537:1 25544:2 25559:1 25564:1 25577:1 25602:1 25609:1 25611:1 25617:1 25623:1 25625:1 25638:2 25681:2 25684:1 25690:1 25695:6 25713:1 25716:1 25719:1 25720:3 25776:1 25782:1 25800:2 25805:1 25810:1 25846:1 25847:1 25851:1 25859:1 25862:1 25873:1 25886:1 25889:2 25907:1 25930:1 25938:1 25951:1 25968:1 25974:10 25975:1 25983:2 25985:1 25990:2 25998:2 26009:1 26021:1 26022:1 26032:1 26041:1 26048:1 26062:1 26066:1 26090:1 26093:1 26102:1 26106:1 26115:1 26120:2 26125:4 26129:2 26149:1 26155:3 26172:1 26174:1 26190:1 26194:1 26213:1 26227:2 26230:1 26231:1 26250:2 26251:1 26260:1 26261:1 26262:1 26267:1 26278:1 26283:1 26287:1 26302:2 26309:2 26316:1 26317:1 26328:1 26333:1 26341:1 26358:1 26359:1 26384:1 26399:1 26414:1 26425:1 26447:1 26471:1 26481:2 26483:1 26485:1 26495:1 26508:1 26541:2 26545:2 26552:1 26557:4 26583:1 26584:2 26585:1 26602:1 26603:1 26606:1 26609:1 26626:1 26636:1 26638:1 26669:1 26677:1 26702:1 26708:1 26729:1 26739:1 26741:5 26764:2 26772:2 26774:1 26777:2 26799:1 26804:1 26805:1 26837:2 26838:2 26868:1 26870:1 26873:2 26885:1 26902:3 26908:1 26918:1 26919:1 26923:1 26933:1 26937:1 26968:1 26978:2 26988:1 27005:1 27020:1 27028:1 27040:2 27055:1 27057:1 27063:1 27072:2 27074:4 27083:1 27084:2 27085:3 27087:2 27094:3 27095:1 27103:1 27104:1 27108:2 27115:1 27128:1 27134:3 27140:1 27167:2 27178:4 27191:2 27198:1 27199:1 27205:1 27206:2 27222:1 27227:1 27238:1 27247:2 27248:2 27249:2 27285:1 27287:2 27295:1 27297:1 27315:1 27319:2 27332:1 27338:2 27351:1 27376:1 27381:1 27384:1 27395:3 27405:1 27408:1 27427:1 27437:1 27439:3 27445:2 27459:1 27467:3 27485:1 27491:1 27512:3 27541:1 27543:1 27546:1 27568:1 27591:1 27601:1 27616:1 27654:1 27667:1 27674:2 27684:1 27685:1 27770:3 27773:1 27794:1 27795:1 27812:1 27817:1 27825:3 27830:1 27846:1 27851:4 27875:1 27881:1 27882:1 27890:1 27896:1 27907:1 27920:1 27929:1 27944:1 27957:1 27967:1 27991:1 27994:1 28000:1 28041:1 28042:1 28051:2 28053:2 28065:1 28078:2 28081:2 28086:1 28092:1 28094:1 28098:1 28102:2 28103:1 28104:4 28109:1 28139:3 28149:2 28151:1 28168:2 28172:1 28176:2 28179:1 28183:1 28191:1 28193:2 28196:2 28205:2 28208:1 28211:3 28212:1 28213:2 28220:2 28225:1 28245:1 28249:1 28251:1 28252:1 28281:1 28299:5 28300:2 28349:1 28352:1 28388:1 28389:1 28390:1 28402:1 28405:1 28411:1 28412:1 28414:1 28418:1 28443:1 28444:4 28448:2 28449:1 28477:1 28478:1 28482:1 28493:1 28499:1 28526:1 28528:1 28530:1 28548:1 28573:1 28574:2 28580:2 28582:1 28583:1 28586:1 28592:1 28599:1 28613:2 28616:1 28622:4 28628:1 28639:1 28644:1 28651:1 28658:1 28659:1 28670:1 28671:1 28674:1 28691:1 28716:1 28725:1 28728:1 28739:2 28741:2 28742:1 28743:1 28748:4 28759:1 28766:1 28775:1 28804:2 28811:1 28827:1 28842:1 28845:1 28846:1 28854:2 28855:1 28884:1 28896:1 28921:1 28930:1 28939:1 28960:1 28997:1 29006:2 29007:1 29009:1 29015:1 29018:1 29038:1 29053:3 29056:2 29059:1 29061:2 29062:2 29071:1 29076:3 29087:1 29092:1 29096:1 29122:1 29123:1 29128:1 29133:1 29145:1 29148:1 29163:2 29176:1 29177:1 29178:1 29179:1 29183:2 29188:4 29205:1 29253:2 29266:2 29268:1 29277:1 29290:2 29296:1 29298:2 29306:1 29321:1 29345:2 29355:2 29367:1 29369:1 29388:1 29392:1 29402:2 29409:1 29417:2 29422:1 29448:1 29456:1 29467:1 29468:2 29479:1 29483:1 29487:1 29491:1 29504:1 29513:1 29537:1 29557:1 29577:1 29611:1 29617:1 29620:2 29637:1 29642:2 29647:2 29660:1 29661:1 29673:1 29674:1 29681:1 29701:2 29707:1 29708:1 29718:2 29725:1 29731:1 29738:2 29739:1 29746:2 29760:1 29771:2 29773:2 29774:1 29780:2 29806:12 29811:1 29815:1 29819:1 29821:2 29831:1 29835:1 29837:1 29852:7 29853:2 29861:1 29865:2 29867:1 29882:3 29904:1 29922:1 29930:3 29939:1 29974:1 29979:1 29999:1 30020:3 30033:1 30045:2 30047:1 30053:2 30056:1 30068:1 30075:1 30078:2 30083:1 30090:2 30104:1 30109:1 30114:1 30116:1 30121:1 30123:2 30149:1 30160:1 30164:1 30174:1 30177:1 30182:1 30189:1 30196:1 30199:1 30212:1 30220:1 30242:1 30247:3 30251:1 30263:1 30271:1 30275:1 30281:1 30300:1 30302:1 30317:1 30325:1 30330:3 30365:2 30367:1 30381:1 30390:2 30392:2 30399:1 30412:1 30414:1 30421:2 30428:1 30429:1 30458:1 30459:1 30477:1 30479:1 30494:1 30498:1 30517:1 30520:1 30523:1 30526:1 30554:1 30556:2 30557:1 30558:2 30559:1 30567:1 30572:1 30574:1 30578:1 30582:1 30597:1 30599:1 30602:2 30618:1 30621:1 30625:1 30676:1 30683:1 30712:1 30713:1 30714:1 30750:2 30759:1 30783:1 30803:1 30812:1 30867:2 30869:1 30879:1 30922:4 30931:1 30935:1 30942:1 30949:1 30968:1 30973:5 30978:1 30981:1 30984:1 30996:1 31002:1 31005:2 31013:1 31030:2 31036:1 31037:1 31046:2 31054:1 31071:1 31076:1 31083:2 31084:1 31087:1 31090:4 31098:1 31100:1 31121:1 31124:1 31133:2 31135:1 31143:2 31179:1 31182:3 31183:1 31190:1 31195:2 31197:1 31198:1 31201:1 31208:1 31228:2
17 12:1 16:1 19:2 33:1 35:1 40:1 42:1 49:1 61:2 62:1 69:1 86:1 110:1 122:1 164:1 173:7 183:1 186:2 192:1 199:1 224:1 227:1 240:1 256:2 271:1 278:4 304:2 310:2 343:1 345:1 351:1 357:3 358:1 398:1 401:2 404:1 419:1 420:1 422:1 426:1 493:1 503:1 504:2 509:1 511:1 513:1 514:1 519:2 526:1 577:1 591:1 633:3 640:1 641:1 647:1 650:1 661:1 662:1 690:1 695:1 703:1 708:4 719:1 726:2 781:1 800:1 815:1 817:1 824:1 831:1 839:1 846:3 857:1 864:6 928:2 934:1 969:1 970:1 973:2 977:6 979:3 980:1 982:2 985:1 986:5 990:2 991:3 992:1 997:1 1002:1 1003:2 1007:1 1008:2 1011:2 1028:1 1034:4 1036:2 1039:2 1044:1 1074:3 1093:1 1094:2 1095:1 1098:2 1114:1 1116:1 1119:1 1129:1 1133:1 1145:1 1150:1 1161:1 1165:1 1166:1 1168:3 1175:1 1186:1 1192:1 1204:1 1210:1 1220:1 1221:1 1222:2 1231:1 1248:1 1258:1 1268:2 1269:2 1283:1 1311:1 1318:1 1327:1 1330:1 1339:2 1343:1 1348:1 1360:1 1370:1 1375:1 1377:1 1382:1 1398:1 1399:1 1410:1 1413:1 1414:1 1415:1 1433:1 1435:1 1438:1 1442:1 1460:1 1462:1 1464:2 1472:1 1487:1 1488:3 1489:1 1497:1 1535:1 1540:1 1549:1 1560:1 1564:1 1565:4 1584:1 1601:1 1605:1 1608:1 1613:1 1625:1 1638:2 1642:1 1644:1 1650:1 1669:2 1676:1 1688:4 1701:1 1702:1 1708:1 1714:1 1717:1 1719:1 1722:1 1736:2 1749:1 1771:1 1786:1 1790:2 1794:1 1797:3 1816:1 1822:1 1825:1 1826:1 1827:1 1833:2 1842:1 1851:1 1857:1 1860:1 1867:1 1868:1 1871:1 1873:1 1895:1 1896:2 1904:1 1905:1 1910:2 1911:1 1921:3 1922:1 1932:1 1933:1 1942:1 1950:1 1956:1 1958:2 1961:3 1963:2 1964:1 1972:1 1975:1 1978:1 1991:1 1999:1 2000:1 2011:1 2018:3 2027:2 2033:2 2036:1 2037:1 2041:1 2066:1 2078:1 2092:1 2099:1 2108:2 2110:1 2126:1 2127:2 2128:1 2136:1 2139:1 2155:1 2157:1 2164:1 2177:1 2187:2 2221:1 2224:1 2226:2 2253:2 2261:1 2270:1 2280:1 2282:1 2307:1 2356:1 2395:3 2433:1 2442:1 2467:1 2470:1 2486:1 2502:1 2504:2 2508:1 2519:1 2525:4 2530:2 2531:1 2533:1 2537:1 2543:5 2550:1 2551:2 2552:2 2556:3 2558:1 2561:1 2568:1 2569:6 2584:1 2600:2 2616:2 2630:1 2632:1 2633:1 2638:1 2648:1 2650:1 2697:1 2698:1 2701:2 2721:1 2737:6 2741:2 2757:2 2765:1 2767:1 2770:1 2777:1 2778:2 2783:1 2784:1 2789:1 2798:1 2799:1 2800:1 2804:3 2809:1 2816:1 2821:1 2856:1 2866:1 2870:1 2872:2 2892:1 2923:2 2928:1 2938:1 2939:1 2964:1 2982:1 2991:1 2994:1 3001:1 3004:1 3023:1 3027:1 3031:1 3032:3 3044:1 3086:1 3101:1 3106:1 3109:1 3110:2 3112:2 3117:1 3124:1 3131:1 3138:1 3142:1 3144:1 3147:1 3168:1 3169:1 3179:1 3189:4 3197:5 3210:5 3232:1 3243:1 3247:1 3249:2 3257:2 3266:1 3282:1 3291:1 3294:1 3295:1 3310:2 3313:3 3315:2 3320:1 3322:2 3327:1 3341:2 3364:1 3365:1 3376:1 3392:1 3412:1 3419:3 3420:1 3442:1 3455:1 3457:1 3463:1 3464:2 3487:1 3495:1 3497:1 3500:1 3504:1 3524:1 3552:1 3553:1 3563:3 3589:2 3630:1 3656:1 3671:2 3708:1 3745:1 3747:2 3756:1 3772:1 3778:1 3779:3 3795:1 3797:1 3798:1 3817:1 3848:2 3849:1 3857:1 3869:3 3877:1 3878:1 3879:1 3881:5 3896:1 3904:1 3913:1 3920:1 3926:2 3936:1 3959:1 3971:1 3987:3 3992:1 3997:1 4003:3 4007:1 4018:2 4025:1 4032:2 4052:2 4061:1 4063:1 4091:1 4093:1 4097:1 4101:1 4127:3 4128:1 4131:1 4132:1 4149:2 4159:1 4187:1 4204:2 4207:3 4218:1 4227:1 4240:2 4241:1 4247:1 4255:1 4262:3 4264:1 4268:1 4282:1 4284:2 4293:2 4311:1 4312:1 4323:1 4325:1 4336:1 4337:1 4385:1 4386:1 4389:1 4418:2 4426:1 4443:1 4446:1 4448:1 4454:1 4463:1 4468:1 4473:1 4480:1 4487:1 4490:2 4501:1 4507:1 4518:2 4520:1 4527:1 4535:2 4579:1 4604:1 4606:1 4608:1 4636:1 4642:1 4645:2 4648:2 4650:1 4654:1 4655:1 4662:1 4673:1 4712:2 4716:3 4749:1 4753:1 4754:1 4761:4 4765:1 4767:1 4770:1 4779:1 4780:2 4785:1 4787:4 4801:1 4814:1 4816:1 4819:1 4835:1 4837:1 4842:1 4843:1 4854:2 4855:1 4881:1 4891:2 4892:1 4903:1 4906:1 4918:1 4931:1 4955:1 4960:1 4964:1 4965:1 4970:2 4974:1 4981:1 4984:1 4985:6 4997:3 5008:1 5012:1 5015:1 5024:1 5050:2 5069:1 5070:4 5076:1 5088:2 5107:1 5128:1 5147:2 5154:5 5161:1 5162:1 5172:1 5176:2 5179:1 5180:1 5185:1 5188:3 5190:1 5192:4 5202:1 5206:1 5209:1 5219:2 5221:2 5246:1 5248:1 5281:1 5296:1 5298:2 5302:1 5312:1 5313:1 5314:1 5315:1 5316:1 5321:1 5326:1 5328:1 5329:2 5334:2 5338:1 5345:3 5347:2 5354:1 5355:1 5357:1 5379:1 5391:1 5394:1 5417:1 5418:1 5436:1 5443:1 5491:1 5501:1 5505:1 5509:1 5536:1 5540:2 5544:1 5547:1 5556:1 5569:2 5580:3 5586:1 5592:1 5600:2 5603:1 5625:1 5631:1 5646:2 5651:1 5673:1 5684:1 5692:2 5717:1 5721:1 5735:1 5742:1 5758:2 5761:1 5785:1 5792:1 5806:2 5824:1 5856:1 5877:1 5878:2 5888:2 5889:1 5896:1 5902:1 5907:1 5917:1 5942:1 5950:1 5958:1 5979:1 6000:2 6003:1 6006:1 6013:1 6014:4 6020:1 6040:2 6050:1 6066:6 6082:1 6097:1 6106:1 6109:1 6119:1 6121:1 6132:1 6142:1 6147:1 6153:1 6158:3 6164:2 6165:1 6166:1 6170:1 6172:1 6182:1 6198:1 6200:2 6202:1 6207:1 6222:1 6233:2 6237:1 6245:2 6246:1 6248:1 6268:1 6280:1 6286:1 6293:1 6298:1 6301:2 6306:2 6310:2 6312:9 6319:1 6320:2 6342:1 6346:1 6361:1 6388:3 6409:1 6411:2 6433:2 6439:1 6440:4 6450:2 6456:1 6467:4 6484:2 6503:1 6507:1 6513:1 6514:1 6531:2 6533:3 6536:1 6557:2 6562:1 6567:1 6569:1 6571:1 6575:1 6579:1 6589:4 6594:1 6617:1 6640:2 6653:2 6654:1 6659:2 6661:2 6665:2 6668:1 6672:1 6681:1 6705:2 6727:1 6733:1 6746:1 6748:1 6753:1 6758:1 6768:4 6786:1 6789:1 6793:1 6804:1 6829:9 6840:1 6844:1 6855:1 6858:1 6865:3 6868:2 6869:1 6875:1 6883:1 6885:3 6886:2 6887:1 6910:1 6917:1 6922:1 6926:1 6930:1 6932:1 6937:1 6938:1 6945:3 6950:1 6959:1 6966:1 7012:1 7023:1 7033:3 7035:1 7048:1 7064:1 7069:1 7078:1 7084:2 7101:1 7111:2 7115:1 7121:2 7128:1 7152:1 7169:2 7171:4 7181:1 7202:1 7209:1 7216:1 7218:1 7219:1 7226:1 7227:1 7270:1 7277:1 7288:1 7296:1 7312:3 7332:1 7341:1 7353:1 7354:1 7357:1 7374:1 7375:3 7381:2 7383:1 7395:1 7413:1 7415:1 7422:1 7423:1 7427:2 7434:3 7444:1 7453:1 7460:1 7467:1 7490:1 7518:1 7529:2 7556:1 7567:2 7577:2 7580:1 7583:1 7598:4 7616:2 7626:1 7647:1 7648:1 7650:1 7654:2 7659:1 7663:1 7670:1 7676:1 7715:2 7718:2 7745:1 7753:1 7761:3 7769:1 7775:1 7785:1 7787:1 7798:1 7799:1 7801:1 7819:2 7836:1 7846:1 7882:2 7902:1 7903:1 7908:1 7909:1 7929:1 7932:1 7941:1 7955:2 7959:2 7965:1 7974:1 7976:1 8000:2 8010:1 8019:4 8025:1 8027:1 8034:1 8039:1 8050:1 8053:1 8059:3 8062:1 8063:1 8080:1 8082:1 8092:2 8102:1 8114:1 8120:2 8121:1 8126:3 8127:1 8128:1 8148:3 8150:2 8151:7 8152:3 8153:1 8155:1 8157:2 8161:6 8162:1 8163:1 8165:1 8170:2 8171:3 8172:1 8173:4 8174:2 8187:1 8205:1 8214:3 8221:1 8232:1 8239:1 8247:1 8261:1 8268:1 8286:1 8300:1 8301:1 8305:1 8310:1 8316:1 8318:1 8330:1 8337:2 8353:2 8360:1 8371:1 8372:2 8404:1 8405:1 8420:18 8431:1 8440:5 8442:2 8450:2 8467:1 8474:2 8485:1 8493:2 8502:1 8505:4 8509:1 8517:1 8542:2 8551:1 8557:1 8572:1 8611:1 8622:1 8640:1 8642:1 8644:1 8650:2 8678:1 8679:1 8693:3 8702:1 8705:1 8710:1 8716:1 8740:1 8776:2 8792:1 8801:1 8823:5 8828:1 8834:1 8837:2 8850:1 8857:7 8859:1 8866:1 8872:1 8874:1 8879:1 8886:1 8903:1 8910:1 8913:1 8920:1 8930:1 8940:1 8953:1 8956:1 8959:1 8961:1 8963:6 8987:1 9006:2 9013:2 9023:2 9035:1 9039:1 9062:1 9077:1 9079:2 9082:1 9093:1 9094:1 9113:1 9119:3 9125:3 9129:1 9131:1 9132:1 9139:1 9141:1 9149:1 9156:2 9165:1 9168:1 9172:1 9175:2 9186:1 9191:1 9192:1 9193:1 9194:1 9210:1 9216:1 9220:1 9224:1 9227:1 9237:2 9243:1 9261:1 9263:1 9268:2 9273:1 9283:1 9296:1 9305:5 9314:1 9316:2 9367:1 9370:1 9372:2 9376:2 9378:4 9383:1 9385:1 9390:1 9396:1 9405:2 9410:1 9421:1 9447:1 9461:1 9463:1 9490:3 9498:1 9500:1 9506:2 9510:1 9522:1 9524:1 9525:1 9527:1 9568:7 9583:1 9588:1 9596:1 9622:1 9651:1 9667:2 9680:1 9681:1 9685:1 9688:1 9693:1 9715:1 9724:2 9726:1 9743:1 9778:1 9795:6 9796:2 9815:2 9826:1 9835:1 9836:1 9848:1 9850:1 9857:2 9872:1 9887:1 9894:1 9900:1 9917:1 9922:3 9923:1 9937:1 9948:1 9949:1 9981:3 9996:1 10013:1 10018:1 10022:1 10026:1 10047:1 10051:3 10079:1 10091:1 10092:2 10115:1 10119:4 10122:1 10127:1 10131:1 10133:1 10135:1 10141:2 10158:1 10168:1 10169:1 10175:1 10191:1 10196:1 10203:1 10216:3 10221:1 10229:1 10243:1 10252:1 10253:1 10254:1 10255:2 10259:1 10273:1 10277:1 10293:1 10295:1 10304:1 10306:1 10317:1 10326:2 10342:1 10346:1 10353:1 10368:1 10372:1 10379:1 10382:1 10388:2 10389:1 10390:2 10393:1 10402:1 10421:1 10422:1 10429:2 10451:3 10452:1 10457:1 10478:2 10483:3 10486:1 10488:1 10494:1 10500:4 10501:1 10503:3 10511:1 10514:1 10516:1 10531:2 10532:1 10540:1 10548:1 10551:1 10554:1 10557:1 10561:1 10566:1 10567:1 10568:3 10576:3 10578:1 10593:1 10597:1 10623:1 10626:1 10631:1 10650:6 10656:1 10671:1 10676:2 10682:1 10707:3 10708:1 10716:2 10747:1 10760:1 10769:1 10781:1 10783:1 10790:1 10799:1 10800:1 10812:1 10821:1 10827:1 10832:1 10833:1 10847:1 10853:1 10881:1 10884:1 10891:2 10933:1 10936:1 10937:1 10945:2 10949:1 10954:2 10960:4 10963:1 10965:2 10966:1 10967:2 10972:1 10973:1 10982:1 11010:1 11012:1 11013:1 11014:1 11018:1 11020:2 11021:1 11025:3 11026:1 11035:4 11042:2 11054:1 11055:3 11059:5 11078:1 11082:1 11093:2 11103:1 11113:1 11137:4 11144:2 11150:1 11197:1 11206:1 11217:1 11223:3 11235:3 11237:2 11238:1 11246:1 11251:2 11255:1 11263:1 11281:1 11304:2 11316:1 11324:1 11325:2 11338:1 11358:1 11360:1 11367:1 11369:1 11370:2 11372:1 11373:1 11377:1 11403:1 11408:1 11426:5 11428:1 11429:1 11432:1 11437:3 11445:1 11448:1 11450:1 11456:1 11457:1 11463:1 11464:2 11466:1 11477:1 11480:1 11481:1 11494:1 11499:1 11501:3 11509:1 11514:1 11522:2 11533:1 11565:1 11572:1 11573:2 11579:1 11585:2 11605:1 11613:2 11649:1 11656:1 11662:1 11664:2 11685:1 11697:1 11700:1 11703:1 11719:2 11730:6 11737:1 11742:2 11745:1 11747:1 11761:1 11764:2 11778:1 11784:1 11793:1 11813:3 11840:1 11849:1 11861:1 11863:1 11868:1 11869:2 11891:1 11905:1 11926:1 11946:1 11953:1 11963:1 11978:1 11981:1 11996:4 11997:3 12004:1 12010:2 12015:1 12016:2 12026:1 12038:2 12039:1 12052:1 12055:5 12079:1 12082:1 12085:1 12086:4 12091:1 12095:1 12103:1 12104:3 12118:1 12131:1 12141:1 12147:1 12159:1 12161:1 12169:2 12185:1 12187:2 12214:1 12236:1 12246:3 12251:1 12254:1 12261:1 12263:1 12268:1 12272:1 12285:2 12290:3 12293:2 12322:1 12325:4 12329:1 12332:1 12353:1 12366:1 12368:1 12377:1 12380:1 12383:1 12405:2 12407:3 12412:1 12419:3 12424:1 12435:1 12446:1 12450:3 12451:1 12457:1 12462:2 12468:1 12473:2 12488:4 12500:1 12514:1 12530:4 12534:1 12544:1 12568:1 12569:1 12623:1 12633:1 12673:1 12677:1 12679:2 12698:1 12708:1 12711:6 12721:1 12729:1 12733:1 12743:1 12769:2 12773:1 12776:1 12780:1 12784:1 12794:1 12798:2 12802:1 12816:1 12827:2 12831:3 12832:1 12839:1 12843:1 12846:2 12848:2 12853:1 12890:1 12894:1 12898:1 12908:1 12910:1 12921:1 12925:2 12944:1 12957:1 12968:1 12977:1 12990:1 12995:1 12996:1 13002:1 13023:1 13025:3 13028:1 13029:1 13031:1 13034:3 13037:1 13038:5 13039:1 13040:1 13047:2 13050:2 13052:1 13085:2 13098:1 13100:1 13110:1 13129:1 13130:2 13131:1 13133:2 13138:1 13141:2 13144:1 13157:2 13163:1 13167:2 13169:1 13171:1 13173:2 13199:2 13210:1 13214:1 13222:1 13226:1 13228:1 13243:1 13244:2 13246:1 13247:3 13253:2 13260:3 13261:1 13266:1 13267:1 13279:1 13280:1 13295:1 13301:1 13329:1 13355:2 13359:1 13372:1 13374:1 13385:1 13390:2 13394:1 13395:1 13399:1 13400:1 13403:1 13410:1 13424:1 13436:1 13439:1 13450:1 13465:1 13468:2 13470:1 13472:1 13481:1 13497:1 13540:1 13552:1 13559:2 13577:1 13579:1 13581:1 13584:2 13585:1 13591:2 13600:1 13608:1 13609:1 13655:1 13661:1 13680:2 13695:2 13697:1 13704:1 13710:1 13713:1 13725:1 13731:2 13743:1 13746:1 13752:1 13766:2 13768:1 13799:1 13828:6 13854:1 13856:2 13858:1 13864:3 13934:5 13937:1 13949:1 13963:2 13965:1 13971:6 13989:1 13991:2 14022:1 14029:1 14032:1 14051:1 14069:1 14095:1 14109:1 14114:1 14148:1 14200:1 14222:1 14238:1 14266:1 14276:1 14292:2 14294:1 14298:2 14331:1 14333:5 14339:2 14341:1 14342:3 14346:1 14357:1 14372:1 14377:3 14386:3 14387:1 14412:1 14420:1 14421:1 14424:1 14452:1 14461:1 14469:1 14473:1 14498:1 14504:1 14522:1 14527:1 14529:1 14556:6 14566:1 14567:1 14570:1 14571:2 14624:1 14625:1 14690:2 14704:1 14708:1 14712:1 14720:1 14726:1 14728:2 14732:3 14744:3 14753:2 14757:1 14770:1 14789:1 14792:1 14798:1 14803:1 14804:8 14815:2 14826:1 14831:1 14843:1 14846:1 14855:2 14856:1 14859:1 14860:1 14864:1 14875:1 14877:1 14878:1 14880:1 14882:2 14888:1 14897:1 14900:1 14914:1 14915:1 14919:1 14923:1 14931:2 14941:1 14968:1 14987:2 14989:1 14994:1 15020:4 15045:2 15064:1 15095:1 15101:1 15111:1 15150:1 15153:1 15169:1 15176:2 15216:1 15220:1 15227:1 15241:1 15245:1 15248:2 15251:1 15271:1 15287:1 15297:1 15307:1 15321:1 15325:1 15329:1 15341:1 15348:1 15349:1 15355:1 15365:1 15371:1 15385:1 15387:3 15397:1 15398:1 15400:1 15412:1 15422:1 15439:1 15443:2 15444:1 15446:1 15448:1 15452:1 15454:1 15458:1 15459:1 15468:1 15485:2 15495:1 15496:1 15514:1 15528:1 15534:2 15548:1 15549:2 15554:1 15563:1 15570:1 15571:1 15573:1 15577:1 15580:6 15582:1 15584:1 15594:1 15598:1 15602:1 15603:1 15605:1 15608:1 15615:4 15617:2 15620:1 15623:1 15650:2 15672:1 15678:1 15685:1 15695:1 15701:2 15704:1 15718:1 15720:2 15731:1 15740:1 15741:1 15742:5 15750:2 15761:1 15764:1 15768:1 15789:2 15797:2 15804:2 15811:1 15815:1 15822:1 15842:1 15859:1 15869:1 15873:1 15933:1 15950:1 15953:1 15958:3 15959:4 15968:1 16004:1 16015:1 16019:1 16024:1 16028:3 16029:1 16039:1 16056:9 16063:2 16064:2 16065:1 16080:1 16082:1 16083:1 16085:1 16087:4 16089:38 16099:1 16104:1 16105:2 16116:1 16138:1 16146:3 16155:2 16159:2 16196:1 16203:1 16208:2 16212:1 16235:3 16254:1 16259:1 16278:3 16288:1 16298:1 16300:2 16305:1 16309:4 16312:1 16321:1 16322:1 16357:1 16361:3 16363:1 16372:1 16399:1 16409:1 16410:2 16424:1 16432:1 16443:1 16454:4 16460:1 16478:2 16487:2 16488:1 16508:1 16515:1 16519:1 16525:1 16533:1 16558:1 16567:1 16572:1 16573:2 16585:1 16596:1 16598:9 16610:1 16617:1 16631:1 16633:1 16635:1 16638:1 16650:2 16651:1 16653:1 16669:1 16702:3 16741:1 16744:1 16752:1 16762:1 16773:1 16776:1 16788:1 16798:1 16835:1 16836:2 16839:2 16840:1 16849:2 16906:1 16907:1 16914:1 16915:1 16940:2 16947:1 16948:2 16965:1 16971:1 16972:1 16989:2 16995:1 16996:1 16997:2 17018:1 17022:1 17028:1 17029:1 17035:1 17053:1 17069:1 17072:1 17103:1 17108:5 17109:1 17111:1 17112:1 17113:1 17115:1 17134:1 17135:1 17152:1 17153:1 17163:2 17178:1 17179:1 17188:2 17202:1 17205:1 17211:2 17213:1 17215:2 17217:1 17225:1 17238:1 17240:1 17244:1 17257:12 17262:1 17309:1 17320:6 17330:2 17331:1 17338:3 17350:2 17354:1 17366:1 17380:1 17384:1 17390:3 17436:1 17454:1 17458:1 17459:1 17482:1 17502:1 17503:3 17512:1 17516:2 17521:1 17554:1 17581:1 17585:1 17602:1 17610:1 17613:2 17620:1 17622:1 17641:1 17661:1 17663:1 17667:1 17676:1 17685:1 17694:1 17710:1 17730:1 17732:1 17736:1 17768:2 17772:2 17787:1 17804:1 17806:1 17811:2 17814:1 17816:1 17818:1 17832:1 17843:1 17844:1 17856:1 17874:3 17878:1 17882:1 17894:1 17899:1 17907:3 17911:2 17913:1 17921:1 17923:2 17924:1 17926:1 17931:1 17936:1 17940:1 17951:1 17965:1 17969:1 17977:2 17979:2 17985:1 17990:3 17999:1 18005:2 18006:1 18007:2 18008:1 18027:1 18032:1 18054:1 18067:2 18068:1 18072:1 18074:2 18077:1 18080:3 18082:1 18103:1 18109:2 18135:1 18140:2 18148:2 18164:2 18177:1 18205:2 18227:1 18253:2 18264:1 18276:1 18283:1 18291:1 18318:1 18328:1 18343:1 18344:1 18345:1 18366:1 18369:1 18376:1 18380:2 18396:1 18402:1 18406:1 18407:1 18471:1 18496:2 18519:1 18546:1 18557:1 18561:1 18570:1 18575:1 18577:1 18578:2 18592:2 18604:2 18605:1 18608:1 18610:1 18635:1 18636:1 18641:1 18642:1 18643:2 18662:1 18700:1 18707:1 18719:4 18738:1 18751:2 18759:1 18773:1 18774:1 18786:1 18796:3 18797:1 18817:1 18834:1 18882:1 18889:2 18892:1 18900:1 18911:1 18915:1 18926:1 18930:2 18958:1 18962:1 18973:1 18974:1 18982:1 18999:1 19006:1 19011:1 19017:1 19022:1 19023:2 19034:1 19044:1 19061:1 19081:1 19083:1 19085:1 19087:1 19088:2 19090:1 19099:1 19122:1 19126:1 19135:1 19136:2 19147:1 19150:1 19161:1 19180:1 19184:1 19187:1 19198:1 19225:2 19228:1 19230:1 19235:1 19244:1 19255:1 19263:1 19276:1 19278:1 19291:1 19298:8 19312:1 19313:1 19321:2 19339:2 19350:1 19362:1 19371:1 19375:1 19391:1 19405:1 19414:1 19446:1 19447:1 19460:1 19461:2 19503:2 19505:1 19522:2 19559:1 19561:1 19577:1 19584:2 19587:1 19588:1 19599:1 19603:1 19627:1 19630:1 19633:1 19644:1 19645:1 19650:1 19660:1 19678:1 19681:1 19694:1 19699:1 19700:1 19702:1 19706:2 19707:3 19721:1 19732:1 19734:1 19741:1 19743:1 19746:1 19777:1 19792:1 19793:1 19800:1 19810:1 19819:1 19821:1 19835:1 19842:1 19845:1 19849:1 19862:1 19873:1 19885:2 19886:1 19901:1 19911:1 19924:1 19933:4 19940:2 19948:1 19951:1 19955:2 19961:1 19968:1 19990:2 19991:1 19996:1 20014:1 20050:1 20056:2 20058:1 20065:1 20069:2 20080:1 20083:1 20102:1 20105:3 20122:1 20126:3162 20154:1 20180:1 20184:1 20187:1 20195:2 20237:1 20264:2 20268:1 20272:1 20276:1 20293:2 20299:2 20305:1 20336:1 20357:1 20366:1 20390:1 20393:2 20398:2 20424:2 20427:1 20432:1 20466:1 20474:1 20480:2 20485:1 20491:1 20501:1 20502:1 20513:1 20515:1 20520:1 20524:1 20556:3 20562:2 20576:1 20577:1 20591:1 20600:1 20630:1 20648:1 20653:3 20660:1 20665:1 20668:4 20676:1 20707:1 20722:1 20728:1 20734:1 20756:1 20768:1 20777:3 20782:1 20809:1 20816:3 20820:1 20826:3 20830:1 20856:1 20870:1 20894:2 20921:1 20923:6 20951:2 20998:1 21007:1 21016:1 21029:1 21031:1 21035:4 21049:1 21054:3 21059:1 21062:1 21079:1 21104:1 21116:2 21122:1 21128:3 21140:2 21141:2 21145:2 21146:1 21147:1 21149:1 21165:1 21172:1 21177:2 21192:1 21194:1 21202:1 21227:1 21253:1 21286:2 21288:1 21291:1 21296:1 21315:1 21317:1 21329:1 21358:1 21359:1 21375:1 21404:1 21437:1 21457:1 21460:1 21484:1 21486:1 21489:2 21506:1 21525:1 21536:1 21537:1 21541:2 21542:1 21544:1 21556:1 21560:1 21587:2 21592:1 21594:3 21597:1 21598:1 21601:1 21608:1 21615:1 21616:1 21625:1 21628:2 21630:2 21631:2 21636:1 21647:1 21649:1 21650:1 21659:1 21670:3 21677:2 21687:3 21690:1 21694:1 21700:1 21713:1 21729:1 21730:1 21758:1 21767:1 21771:1 21781:2 21803:2 21815:1 21818:1 21830:1 21872:3 21896:1 21910:1 21912:1 21915:1 21920:1 21925:2 21933:1 21934:1 21938:2 21946:1 21949:1 21953:1 21965:2 21966:1 21967:2 21985:1 21999:1 22000:3 22003:1 22028:2 22030:2 22042:2 22053:1 22057:2 22064:2 22099:1 22119:1 22150:1 22152:1 22155:1 22156:1 22167:1 22170:1 22181:1 22186:1 22193:1 22198:1 22201:1 22202:1 22212:1 22222:3 22228:1 22244:1 22250:1 22251:1 22262:1 22270:3 22273:1 22275:1 22281:1 22291:1 22294:1 22303:2 22312:2 22319:1 22332:1 22335:1 22366:1 22374:1 22375:3 22376:2 22378:1 22383:1 22390:1 22391:2 22392:2 22402:1 22408:1 22417:1 22426:3 22427:1 22453:2 22466:1 22476:1 22482:1 22516:2 22547:1 22549:2 22551:1 22557:1 22571:2 22599:1 22621:1 22636:1 22639:1 22640:1 22658:1 22671:1 22680:1 22711:1 22738:1 22753:1 22761:1 22782:1 22786:2 22795:1 22804:1 22813:2 22816:3 22837:2 22844:2 22845:8 22847:1 22854:1 22862:1 22879:1 22888:1 22900:1 22903:1 22905:1 22930:1 22938:1 22947:1 22953:1 22960:1 22963:1 22973:2 22975:1 22984:1 22985:1 22998:1 23011:1 23017:1 23028:1 23032:1 23038:1 23039:2 23043:2 23044:1 23047:1 23060:1 23077:1 23094:1 23096:1 23136:1 23139:1 23144:1 23160:1 23165:1 23180:3 23187:1 23193:2 23207:1 23217:1 23225:1 23226:1 23239:1 23254:1 23267:2 23280:1 23285:1 23295:1 23301:1 23306:1 23328:1 23339:1 23371:2 23373:1 23377:1 23379:6 23384:1 23387:3 23397:1 23400:1 23402:1 23409:1 23424:2 23425:3 23445:1 23484:2 23498:1 23512:1 23520:2 23534:2 23544:1 23547:1 23559:1 23564:1 23585:3 23586:1 23590:1 23596:1 23600:2 23605:1 23609:2 23625:1 23629:2 23631:2 23644:2 23649:2 23652:1 23668:1 23669:2 23671:2 23677:1 23680:1 23702:2 23712:3 23724:1 23730:1 23738:1 23741:1 23748:1 23758:2 23766:2 23767:1 23778:1 23784:1 23796:1 23804:1 23807:1 23817:1 23826:1 23832:1 23835:1 23840:2 23841:1 23843:1 23847:2 23848:1 23887:2 23897:1 23900:1 23911:1 23919:1 23948:3 23950:1 23952:2 23956:1 23961:1 23962:4 24004:1 24008:1 24015:1 24030:2 24031:2 24032:1 24034:5 24043:1 24051:5 24066:1 24075:1 24102:1 24108:1 24119:1 24142:1 24156:1 24163:2 24169:1 24200:7 24207:1 24215:2 24216:1 24221:1 24225:1 24272:1 24283:1 24285:1 24289:1 24292:2 24298:1 24305:1 24314:1 24318:2 24324:1 24348:2 24362:1 24363:4 24383:1 24388:1 24394:1 24399:2 24400:1 24403:1 24405:1 24407:1 24413:1 24417:1 24422:1 24423:1 24424:1 24442:1 24447:1 24448:1 24451:1 24467:2 24473:1 24477:2 24489:1 24490:1 24499:4 24507:1 24514:1 24517:1 24547:1 24551:1 24566:1 24582:1 24599:1 24600:2 24602:2 24606:1 24608:3 24609:1 24622:1 24629:1 24632:1 24658:1 24670:1 24675:1 24681:1 24720:1 24723:1 24732:1 24737:1 24754:1 24769:1 24773:2 24779:3 24793:3 24850:4 24867:7 24875:1 24894:1 24896:1 24912:1 24946:1 24947:1 24963:1 24964:4 24974:2 24975:3 24978:3 24986:1 24988:1 24989:3 24990:6 25005:1 25011:1 25022:1 25030:1 25047:2 25051:1 25053:1 25060:1 25061:1 25073:4 25096:1 25100:2 25106:1 25112:1 25114:2 25121:1 25124:1 25129:1 25136:1 25170:1 25172:1 25177:1 25207:1 25233:1 25251:2 25253:1 25256:2 25258:2 25261:2 25265:1 25267:2 25275:5 25290:1 25305:1 25321:5 25325:1 25341:1 25349:1 25360:1 25364:3 25382:1 25422:1 25438:2 25440:1 25442:2 25445:4 25450:1 25457:3 25465:1 25467:1 25469:1 25476:1 25479:1 25486:1 25488:1 25490:1 25493:1 25496:1 25502:1 25507:3 25511:1 25518:2 25536:1 25537:1 25544:2 25559:1 25564:1 25577:1 25602:1 25609:1 25611:1 25617:1 25623:1 25625:1 25638:2 25681:2 25684:1 25690:1 25695:6 25713:1 25716:1 25719:1 25720:3 25776:1 25782:1 25800:2 25805:1 25810:1 25846:1 25847:1 25851:1 25859:1 25862:1 25873:1 25886:1 25889:2 25907:1 25930:1 25938:1 25951:1 25968:1 25974:10 25975:1 25983:2 25985:1 25990:2 25998:2 26009:1 26021:1 26022:1 26032:1 26041:1 26048:1 26062:1 26066:1 26090:1 26093:1 26102:1 26106:2 26115:1 26120:2 26125:4 26129:2 26149:1 26155:3 26172:1 26174:1 26190:1 26194:1 26213:1 26227:2 26230:1 26231:1 26250:2 26251:1 26260:1 26261:1 26262:1 26267:1 26278:1 26283:1 26287:1 26289:1 26302:2 26309:2 26316:1 26317:1 26327:1 26328:1 26333:1 26341:1 26358:1 26359:1 26384:1 26399:1 26414:1 26425:1 26447:1 26471:1 26481:2 26483:1 26485:1 26495:1 26508:1 26541:2 26545:2 26552:1 26557:4 26583:1 26584:2 26585:1 26602:1 26603:1 26606:1 26609:1 26626:1 26636:1 26638:1 26669:1 26677:1 26702:1 26708:1 26729:1 26739:1 26741:6 26764:2 26772:2 26774:1 26777:2 26799:1 26804:1 26805:1 26837:2 26838:2 26868:1 26870:1 26873:2 26885:1 26902:3 26908:1 26918:1 26919:1 26923:1 26933:1 26937:1 26968:1 26978:2 26988:1 27005:1 27020:1 27028:1 27040:2 27055:1 27057:1 27063:1 27072:2 27074:4 27083:1 27084:2 27085:3 27087:2 27094:3 27095:1 27103:1 27104:1 27108:2 27115:1 27128:1 27134:3 27140:1 27167:2 27178:4 27191:2 27198:1 27199:1 27205:1 27206:2 27222:1 27227:1 27238:1 27247:2 27248:2 27249:2 27285:1 27287:2 27295:1 27297:1 27315:1 27319:2 27332:1 27338:2 27351:1 27376:1 27381:1 27384:1 27395:3 27405:1 27408:1 27427:1 27437:1 27439:3 27445:2 27446:1 27459:1 27467:3 27485:1 27491:1 27512:3 27541:1 27543:1 27546:1 27568:1 27591:1 27601:1 27616:1 27654:1 27667:1 27674:2 27684:1 27685:1 27770:3 27773:1 27794:1 27795:1 27812:1 27817:1 27825:3 27830:1 27846:2 27851:4 27875:2 27881:1 27882:1 27890:1 27896:1 27907:1 27920:1 27929:1 27941:1 27944:2 27957:1 27967:1 27991:1 27994:1 27997:1 28000:1 28041:1 28042:1 28051:2 28053:2 28065:1 28078:2 28081:2 28086:1 28092:1 28094:1 28098:1 28102:2 28103:1 28104:4 28109:1 28139:3 28149:2 28151:1 28168:2 28172:1 28176:2 28179:1 28183:1 28191:1 28193:2 28196:2 28205:2 28208:1 28211:3 28212:1 28213:2 28220:2 28225:1 28245:1 28249:1 28251:1 28252:1 28281:1 28299:5 28300:2 28349:1 28352:1 28388:1 28389:1 28390:1 28402:1 28405:1 28411:1 28412:1 28414:1 28418:1 28443:1 28444:4 28448:2 28449:1 28477:1 28478:1 28482:1 28493:1 28499:1 28526:1 28528:1 28530:1 28548:1 28573:1 28574:2 28580:2 28582:1 28583:1 28586:1 28592:1 28599:1 28613:2 28616:1 28622:4 28628:1 28639:1 28644:1 28651:1 28658:1 28659:1 28670:1 28671:1 28674:1 28691:1 28716:1 28725:1 28728:1 28739:2 28741:2 28742:1 28743:1 28748:4 28759:1 28766:1 28775:1 28804:2 28811:1 28827:1 28842:1 28845:1 28846:1 28854:2 28855:1 28884:1 28896:1 28921:1 28930:1 28939:1 28960:1 28997:1 29006:2 29007:1 29009:1 29015:1 29018:1 29038:1 29053:3 29056:2 29059:1 29061:2 29062:2 29071:1 29076:3 29087:1 29092:1 29096:1 29102:1 29122:1 29123:1 29128:1 29133:1 29145:1 29148:1 29163:3 29176:1 29177:1 29178:1 29179:1 29183:2 29185:1 29188:5 29205:1 29253:2 29266:2 29268:1 29277:1 29290:2 29296:1 29298:2 29306:1 29321:1 29345:2 29355:2 29367:1 29369:1 29388:1 29392:1 29402:2 29409:1 29417:2 29422:1 29448:1 29456:1 29467:1 29468:2 29479:1 29483:1 29487:1 29491:1 29504:1 29513:1 29537:1 29557:1 29577:1 29611:1 29617:1 29620:2 29637:1 29642:2 29647:2 29660:1 29661:1 29673:1 29674:1 29681:1 29701:2 29707:1 29708:1 29718:2 29725:1 29731:1 29738:2 29739:1 29746:2 29760:1 29771:2 29773:2 29774:1 29780:2 29806:12 29811:1 29815:1 29819:1 29821:2 29831:1 29835:1 29837:1 29852:7 29853:2 29861:1 29865:3 29867:1 29882:3 29904:1 29922:1 29930:3 29939:1 29974:1 29979:1 29999:1 30020:3 30033:1 30045:2 30047:1 30053:2 30056:1 30068:1 30075:1 30078:2 30083:1 30090:2 30104:1 30109:1 30114:1 30116:1 30121:1 30123:2 30149:1 30160:1 30164:1 30174:1 30177:1 30182:1 30189:1 30196:1 30199:1 30212:1 30220:1 30234:1 30242:1 30247:3 30251:1 30263:1 30271:1 30275:1 30281:1 30300:1 30301:1 30302:1 30305:1 30317:1 30325:1 30330:3 30365:2 30367:1 30381:1 30390:2 30392:2 30399:1 30412:1 30414:1 30421:2 30428:1 30429:1 30458:1 30459:1 30460:1 30477:1 30479:1 30494:1 30498:1 30517:1 30520:1 30523:1 30526:1 30554:1 30556:2 30557:1 30558:2 30559:1 30567:1 30572:1 30574:1 30578:1 30582:1 30597:1 30599:1 30602:2 30618:1 30621:1 30625:1 30676:1 30683:1 30712:1 30713:1 30714:1 30750:2 30759:1 30783:1 30803:1 30812:1 30867:2 30869:1 30879:1 30922:4 30931:1 30935:1 30942:1 30949:1 30968:1 30973:5 30978:1 30981:1 30984:1 30996:1 31002:1 31005:2 31013:1 31030:2 31036:1 31037:1 31046:2 31054:1 31071:1 31076:1 31083:2 31084:1 31087:1 31090:4 31098:1 31100:1 31121:1 31124:1 31133:2 31135:1 31143:2 31179:1 31182:3 31183:1 31190:1 31195:2 31197:1 31198:1 31201:1 31208:1 31228:2
17 12:1 16:1 19:2 33:1 35:1 40:1 42:1 49:1 61:2 62:1 69:1 86:1 110:1 122:1 164:1 173:7 183:1 186:2 192:1 199:1 224:1 227:1 240:1 256:2 271:1 278:4 291:1 304:2 310:2 343:1 345:1 351:1 357:3 358:1 398:1 401:2 404:1 419:1 420:1 422:1 426:1 493:1 503:1 504:2 509:1 511:1 513:1 514:1 519:3 526:1 577:1 591:1 633:3 640:1 641:1 647:1 650:1 661:1 662:1 690:1 695:1 703:1 708:4 719:1 726:3 781:1 800:1 815:1 817:1 824:1 831:1 839:1 846:3 857:1 864:6 928:2 934:1 969:1 970:1 973:2 977:6 979:3 980:1 982:2 985:1 986:5 990:2 991:3 992:1 997:1 1002:1 1003:2 1007:1 1008:2 1011:2 1028:1 1034:4 1036:2 1039:2 1044:1 1074:3 1090:1 1093:1 1094:2 1095:1 1098:2 1114:1 1116:1 1119:1 1129:1 1133:1 1145:1 1150:1 1161:1 1165:1 1166:1 1168:3 1175:1 1186:1 1192:1 1204:1 1210:1 1220:1 1221:1 1222:2 1231:1 1248:1 1258:1 1268:2 1269:2 1283:1 1311:1 1318:1 1327:1 1330:1 1339:2 1343:1 1348:1 1360:1 1370:1 1375:1 1377:1 1382:1 1398:1 1399:1 1410:1 1413:1 1414:1 1415:1 1433:1 1435:1 1438:1 1442:1 1454:1 1460:1 1462:1 1464:2 1472:1 1487:1 1488:3 1489:1 1490:1 1497:1 1535:1 1540:1 1549:1 1560:1 1564:1 1565:4 1584:1 1601:1 1605:1 1608:1 1613:1 1625:1 1638:2 1642:1 1644:1 1648:1 1650:1 1669:2 1676:1 1688:4 1701:1 1702:1 1708:1 1714:1 1717:1 1719:1 1722:1 1736:2 1749:1 1771:1 1786:1 1790:2 1794:1 1795:1 1797:3 1816:1 1822:1 1825:1 1826:1 1827:1 1833:2 1841:1 1842:1 1851:1 1857:2 1860:1 1867:1 1868:1 1871:1 1873:1 1895:1 1896:2 1904:1 1905:1 1910:2 1911:1 1921:3 1922:1 1932:1 1933:1 1942:1 1950:1 1956:1 1958:2 1961:3 1963:2 1964:1 1972:1 1975:1 1978:1 1991:1 1999:1 2000:1 2011:1 2018:3 2027:2 2033:2 2036:1 2037:1 2041:1 2066:1 2078:1 2092:1 2099:1 2108:2 2110:1 2126:1 2127:2 2128:1 2136:1 2139:1 2155:1 2157:1 2164:1 2177:1 2187:2 2221:1 2224:1 2226:2 2253:2 2261:1 2270:1 2280:1 2282:1 2307:1 2356:1 2395:3 2433:1 2442:1 2467:1 2470:1 2486:1 2502:1 2504:2 2508:1 2519:1 2525:4 2530:2 2531:1 2533:1 2537:1 2543:5 2550:1 2551:2 2552:2 2556:3 2558:1 2561:1 2568:1 2569:6 2584:1 2600:2 2616:2 2630:2 2632:1 2633:1 2638:1 2648:1 2650:1 2697:1 2698:1 2701:2 2721:1 2737:6 2741:2 2757:2 2765:1 2767:1 2770:1 2777:1 2778:2 2783:1 2784:1 2789:1 2798:1 2799:1 2800:1 2804:3 2809:1 2816:1 2821:1 2856:1 2866:1 2870:1 2872:2 2892:1 2894:1 2923:2 2928:1 2935:1 2938:1 2939:1 2964:1 2982:1 2991:1 2994:1 3001:1 3004:1 3023:1 3027:1 3031:1 3032:3 3044:1 3086:1 3101:1 3106:1 3109:1 3110:2 3112:2 3117:1 3124:1 3131:1 3138:1 3142:1 3144:1 3147:1 3168:1 3169:1 3179:1 3189:4 3197:5 3210:5 3232:1 3243:1 3247:1 3249:2 3257:2 3266:1 3282:1 3291:1 3294:1 3295:1 3310:3 3313:3 3315:2 3320:1 3322:2 3327:1 3341:2 3364:1 3365:1 3376:1 3392:1 3412:1 3419:3 3420:1 3442:1 3455:1 3457:1 3463:1 3464:2 3487:1 3495:1 3497:1 3500:1 3504:1 3524:1 3552:1 3553:1 3563:3 3589:2 3630:1 3656:1 3671:2 3681:1 3708:1 3745:1 3747:2 3756:1 3772:1 3778:1 3779:3 3795:1 3797:1 3798:1 3817:1 3848:2 3849:1 3857:1 3869:3 3877:1 3878:1 3879:1 3881:5 3896:1 3904:1 3913:1 3920:1 3926:2 3936:1 3959:1 3971:1 3987:3 3992:1 3997:1 4003:3 4007:1 4018:2 4025:1 4032:2 4052:2 4061:1 4063:1 4091:1 4093:1 4097:1 4101:1 4127:3 4128:1 4131:1 4132:1 4149:3 4159:1 4187:1 4204:2 4207:3 4218:1 4227:1 4240:3 4241:1 4246:1 4247:1 4255:1 4262:3 4264:1 4268:1 4282:1 4284:2 4293:2 4311:1 4312:1 4323:1 4325:1 4336:1 4337:1 4385:1 4386:1 4389:1 4418:2 4426:1 4443:1 4446:1 4448:1 4454:1 4463:1 4468:1 4473:1 4480:1 4487:1 4490:2 4501:1 4507:1 4518:2 4520:1 4527:1 4535:3 4579:1 4604:1 4606:1 4608:1 4636:1 4642:1 4645:2 4648:2 4650:1 4654:1 4655:1 4662:1 4673:1 4712:2 4716:3 4749:1 4753:1 4754:1 4761:4 4765:1 4767:1 4770:1 4779:1 4780:2 4785:1 4787:5 4801:1 4814:1 4816:1 4819:1 4835:1 4837:2 4842:1 4843:1 4854:2 4855:1 4881:1 4891:2 4892:1 4903:1 4906:1 4918:1 4931:1 4955:1 4960:1 4964:1 4965:1 4970:2 4974:1 4981:1 4984:1 4985:6 4997:3 5008:1 5012:1 5015:1 5024:1 5050:2 5069:1 5070:5 5076:1 5088:2 5107:1 5128:1 5147:2 5154:5 5161:1 5162:1 5172:1 5176:2 5179:1 5180:1 5185:1 5188:3 5190:1 5192:4 5202:1 5206:1 5209:1 5219:2 5221:2 5246:1 5248:1 5281:1 5296:1 5298:2 5302:1 5312:1 5313:1 5314:1 5315:1 5316:1 5321:1 5326:1 5328:1 5329:2 5334:2 5338:1 5345:3 5347:2 5354:1 5355:1 5357:1 5379:1 5391:1 5394:1 5417:1 5418:1 5436:1 5443:1 5491:1 5501:1 5505:1 5509:1 5536:1 5540:2 5544:1 5547:1 5556:1 5569:2 5580:5 5586:1 5592:1 5600:2 5603:1 5625:1 5631:1 5646:2 5651:1 5673:1 5684:1 5692:2 5717:1 5721:1 5735:1 5742:1 5758:2 5761:1 5785:1 5792:1 5806:2 5824:1 5856:1 5877:1 5878:2 5888:2 5889:1 5896:1 5902:1 5907:1 5917:1 5942:1 5950:1 5958:1 5979:1 6000:2 6003:1 6006:1 6013:1 6014:4 6020:1 6040:2 6050:1 6066:6 6082:1 6097:1 6106:1 6109:1 6119:1 6121:1 6132:1 6142:1 6147:1 6153:1 6158:3 6164:2 6165:1 6166:1 6170:1 6172:2 6182:1 6198:1 6200:2 6202:1 6207:1 6222:1 6233:2 6237:1 6245:2 6246:1 6248:1 6268:1 6280:1 6286:1 6293:1 6298:1 6301:2 6306:3 6310:2 6312:9 6319:1 6320:2 6342:1 6346:1 6361:1 6388:3 6409:1 6411:2 6433:2 6439:1 6440:5 6450:2 6456:1 6467:4 6484:2 6503:1 6507:1 6513:1 6514:1 6531:2 6533:3 6536:1 6557:2 6562:1 6567:1 6569:1 6571:1 6575:1 6579:1 6589:4 6594:1 6617:1 6640:2 6653:2 6654:1 6659:3 6661:2 6665:2 6668:1 6672:1 6681:1 6686:1 6705:2 6727:1 6733:1 6746:1 6748:1 6753:1 6758:1 6768:4 6786:1 6789:1 6793:1 6804:1 6829:9 6840:1 6844:1 6855:1 6858:1 6865:3 6868:2 6869:1 6875:1 6883:1 6885:3 6886:2 6887:1 6910:1 6917:1 6922:1 6926:1 6930:1 6932:1 6937:1 6938:1 6945:3 6950:1 6959:1 6966:1 7012:1 7023:1 7033:3 7035:1 7048:1 7064:1 7069:2 7073:1 7078:1 7084:2 7101:1 7111:2 7115:1 7121:2 7128:1 7152:1 7169:2 7171:4 7181:1 7202:1 7209:1 7216:1 7218:1 7219:1 7226:1 7227:1 7270:1 7277:1 7288:1 7296:1 7312:3 7332:1 7341:1 7353:1 7354:1 7357:1 7374:1 7375:3 7381:2 7383:1 7395:1 7413:1 7415:1 7422:1 7423:1 7427:2 7434:4 7444:1 7453:1 7460:1 7467:1 7490:1 7518:1 7529:2 7556:1 7567:2 7577:2 7580:1 7583:2 7598:4 7616:2 7626:1 7635:1 7647:1 7648:1 7650:1 7654:2 7659:1 7663:1 7670:1 7676:1 7715:2 7718:2 7733:1 7745:1 7753:1 7761:3 7769:1 7775:1 7785:1 7787:1 7798:1 7799:1 7801:1 7819:2 7836:1 7846:1 7882:2 7902:1 7903:1 7908:1 7909:1 7919:1 7929:1 7932:1 7941:1 7955:2 7959:2 7965:1 7974:1 7976:1 8000:2 8010:1 8019:4 8025:1 8027:1 8034:1 8039:1 8050:1 8053:1 8059:3 8062:1 8063:1 8080:1 8082:1 8092:2 8102:1 8114:1 8120:2 8121:1 8126:3 8127:1 8128:1 8148:3 8150:2 8151:8 8152:3 8153:1 8155:1 8157:2 8161:6 8162:1 8163:1 8165:1 8170:2 8171:3 8172:1 8173:4 8174:2 8187:1 8205:1 8214:3 8221:1 8232:1 8239:1 8247:1 8261:1 8268:1 8286:1 8300:1 8301:1 8305:1 8310:2 8316:1 8318:1 8330:1 8337:2 8353:2 8360:1 8371:1 8372:2 8404:1 8405:1 8420:18 8431:1 8440:5 8442:2 8450:2 8467:1 8474:2 8485:1 8493:2 8502:1 8505:4 8509:2 8517:1 8542:2 8545:1 8551:1 8557:1 8572:1 8611:1 8622:1 8640:1 8642:1 8644:1 8650:2 8678:1 8679:1 8693:3 8702:1 8705:1 8710:1 8716:1 8740:1 8776:2 8792:1 8801:1 8823:5 8828:1 8834:1 8837:2 8850:1 8857:7 8859:1 8866:1 8872:2 8874:1 8879:1 8886:1 8903:1 8910:1 8913:1 8920:1 8930:1 8940:1 8953:1 8956:1 8959:1 8961:1 8963:6 8987:1 9006:2 9013:2 9018:1 9023:2 9035:1 9039:1 9062:1 9077:1 9079:2 9082:1 9093:1 9094:1 9113:1 9119:3 9125:3 9129:1 9131:1 9132:1 9139:1 9141:1 9149:1 9156:2 9165:1 9168:1 9172:1 9175:2 9186:1 9191:1 9192:1 9193:1 9194:1 9210:1 9216:1 9220:1 9224:1 9227:1 9237:2 9243:1 9261:1 9263:1 9268:2 9273:1 9283:1 9296:1 9305:5 9314:1 9316:2 9317:1 9367:1 9370:1 9372:2 9376:2 9378:4 9383:1 9385:1 9390:1 9396:1 9405:2 9410:1 9421:1 9447:1 9461:1 9463:1 9490:3 9498:1 9500:1 9506:2 9510:1 9522:1 9524:1 9525:1 9527:1 9568:7 9583:1 9588:1 9596:1 9622:1 9651:1 9667:2 9680:1 9681:1 9685:1 9688:1 9693:1 9715:2 9724:2 9726:1 9743:1 9778:1 9795:6 9796:2 9815:2 9826:1 9835:1 9836:1 9848:1 9850:1 9857:2 9872:1 9887:1 9894:2 9900:1 9917:1 9922:3 9923:1 9937:1 9948:1 9949:1 9981:3 9996:1 10013:1 10018:1 10022:1 10026:1 10047:1 10051:3 10079:1 10091:1 10092:2 10115:1 10119:4 10122:1 10127:1 10131:1 10133:1 10135:1 10141:2 10158:1 10168:1 10169:1 10175:1 10191:1 10196:1 10203:1 10216:5 10221:1 10229:1 10243:1 10252:1 10253:1 10254:1 10255:2 10259:1 10273:1 10277:1 10293:1 10295:1 10304:2 10306:1 10317:1 10326:2 10342:1 10346:1 10353:1 10368:1 10372:1 10379:1 10382:1 10388:2 10389:1 10390:2 10393:1 10402:1 10421:1 10422:1 10429:2 10451:3 10452:1 10457:1 10478:3 10483:3 10486:1 10488:1 10494:1 10500:4 10501:1 10503:3 10511:1 10514:1 10516:1 10531:2 10532:2 10540:1 10548:1 10551:1 10554:1 10557:1 10561:1 10566:1 10567:1 10568:3 10576:3 10578:1 10593:1 10597:1 10623:1 10626:1 10631:1 10650:6 10656:1 10671:1 10676:2 10682:1 10707:3 10708:1 10716:2 10747:1 10760:1 10769:1 10781:1 10783:1 10790:1 10799:1 10800:1 10812:1 10821:1 10827:1 10832:1 10833:1 10847:1 10853:1 10881:1 10884:1 10891:3 10933:1 10936:1 10937:1 10945:2 10949:1 10954:2 10960:4 10963:1 10965:2 10966:1 10967:2 10972:1 10973:1 10982:1 11010:1 11012:1 11013:1 11014:1 11018:1 11020:2 11021:1 11025:3 11026:1 11035:4 11042:2 11053:1 11054:1 11055:3 11059:5 11078:1 11082:1 11093:2 11103:1 11113:1 11137:5 11144:2 11150:1 11197:1 11206:1 11217:1 11223:3 11235:3 11237:2 11238:1 11246:1 11251:2 11255:1 11263:1 11281:1 11304:2 11316:1 11324:1 11325:2 11338:1 11358:1 11360:1 11367:1 11369:1 11370:2 11372:1 11373:1 11377:1 11403:1 11408:1 11426:5 11428:1 11429:1 11432:1 11437:3 11445:1 11448:1 11450:1 11456:1 11457:1 11463:1 11464:2 11466:1 11477:1 11480:1 11481:1 11494:1 11499:1 11501:3 11509:1 11514:1 11522:2 11533:1 11565:1 11572:1 11573:2 11579:1 11585:2 11605:1 11613:2 11649:1 11656:1 11662:1 11664:2 11685:1 11697:1 11700:1 11703:1 11719:2 11730:7 11737:1 11742:2 11745:1 11747:1 11761:1 11764:2 11778:1 11784:1 11793:1 11813:3 11840:1 11849:1 11861:1 11863:1 11868:1 11869:2 11891:1 11905:1 11926:1 11929:1 11946:1 11953:1 11963:1 11972:1 11978:1 11981:1 11996:4 11997:3 12004:1 12010:2 12015:1 12016:2 12026:1 12038:3 12039:1 12052:1 12055:5 12079:1 12082:1 12085:1 12086:4 12091:1 12095:1 12103:1 12104:3 12118:1 12131:1 12141:1 12147:1 12159:1 12161:1 12169:2 12185:1 12187:2 12214:1 12236:1 12246:3 12251:1 12254:1 12261:1 12263:1 12268:1 12272:1 12285:2 12290:3 12293:2 12322:1 12325:4 12329:1 12332:1 12353:1 12366:1 12368:1 12377:1 12380:1 12383:1 12405:2 12407:3 12412:1 12419:3 12424:1 12435:1 12446:1 12450:3 12451:1 12457:1 12462:2 12468:1 12473:2 12488:4 12500:1 12514:1 12530:5 12534:1 12544:1 12568:1 12569:1 12623:1 12633:1 12673:1 12677:1 12679:2 12698:1 12708:1 12711:6 12721:1 12729:1 12733:1 12743:1 12769:2 12773:1 12776:1 12780:1 12784:1 12794:1 12798:2 12802:1 12816:1 12827:2 12831:3 12832:1 12839:1 12843:1 12846:2 12848:2 12853:1 12890:1 12894:1 12898:1 12908:1 12910:1 12921:1 12925:2 12944:1 12957:1 12968:1 12977:1 12990:1 12995:1 12996:1 13002:1 13023:1 13025:3 13028:1 13029:1 13031:1 13034:3 13037:1 13038:5 13039:1 13040:1 13043:1 13047:2 13050:2 13052:1 13085:2 13098:1 13100:1 13102:1 13110:1 13129:1 13130:2 13131:2 13133:2 13138:1 13141:2 13144:1 13157:2 13163:1 13167:2 13169:1 13171:1 13173:2 13199:2 13210:1 13214:1 13222:1 13226:1 13228:1 13240:1 13243:2 13244:2 13246:1 13247:3 13253:2 13260:3 13261:1 13266:1 13267:1 13279:1 13280:1 13295:1 13301:1 13329:1 13355:2 13359:1 13372:1 13374:1 13385:1 13390:2 13394:1 13395:1 13399:1 13400:1 13403:1 13410:1 13424:1 13436:1 13438:1 13439:1 13450:1 13465:1 13468:2 13470:1 13472:1 13481:1 13497:1 13540:1 13552:1 13559:2 13577:1 13579:1 13581:1 13584:2 13585:1 13591:2 13600:1 13608:1 13609:1 13655:1 13661:1 13680:2 13695:2 13697:1 13704:1 13710:1 13713:1 13725:1 13731:3 13743:1 13746:1 13752:1 13766:2 13768:1 13799:1 13828:6 13854:1 13856:2 13858:1 13864:3 13934:5 13937:1 13949:1 13963:2 13965:1 13971:6 13989:1 13991:2 14022:1 14029:1 14032:1 14051:1 14069:1 14095:1 14109:1 14114:1 14148:1 14200:1 14222:1 14238:1 14266:1 14276:1 14292:2 14294:1 14298:2 14331:1 14333:5 14339:2 14341:1 14342:3 14346:1 14357:1 14372:1 14377:3 14386:3 14387:1 14412:1 14420:1 14421:1 14424:1 14452:1 14459:1 14461:1 14469:1 14473:1 14498:1 14504:1 14522:1 14527:1 14529:1 14556:6 14566:1 14567:1 14570:1 14571:2 14624:1 14625:1 14636:1 14690:2 14704:1 14708:1 14712:1 14720:1 14726:1 14728:2 14732:5 14744:3 14753:2 14757:1 14770:1 14789:1 14792:1 14798:1 14803:1 14804:8 14815:2 14826:1 14831:1 14843:1 14846:2 14855:2 14856:1 14859:1 14860:1 14864:1 14875:1 14877:1 14878:1 14880:1 14882:2 14888:1 14897:1 14900:1 14914:1 14915:1 14919:1 14923:1 14931:2 14941:1 14968:1 14987:2 14989:1 14994:1 15020:4 15045:2 15064:1 15095:1 15101:1 15111:1 15150:1 15153:1 15169:1 15176:2 15216:1 15220:1 15227:1 15241:1 15245:1 15248:2 15251:1 15271:1 15287:1 15297:1 15307:1 15321:1 15325:1 15329:1 15341:1 15348:1 15349:1 15355:1 15365:1 15371:1 15385:1 15387:3 15397:1 15398:1 15400:1 15412:1 15422:1 15439:2 15443:2 15444:1 15446:1 15448:1 15452:1 15454:1 15458:1 15459:1 15468:1 15485:2 15495:1 15496:1 15514:1 15528:1 15534:2 15548:1 15549:2 15554:1 15563:1 15570:1 15571:1 15573:1 15577:1 15580:7 15582:1 15584:1 15594:1 15598:1 15602:1 15603:1 15605:1 15608:1 15615:4 15617:2 15620:2 15623:1 15650:2 15672:1 15678:1 15683:1 15685:1 15695:1 15701:2 15704:1 15718:1 15720:2 15731:1 15739:1 15740:1 15741:1 15742:5 15750:2 15761:1 15764:1 15768:1 15789:2 15797:2 15804:2 15811:1 15815:1 15822:1 15842:1 15859:1 15869:1 15873:1 15933:1 15950:1 15953:1 15958:3 15959:4 15968:1 16004:1 16015:1 16019:1 16024:1 16028:3 16029:1 16039:1 16056:9 16063:2 16064:2 16065:1 16080:1 16082:1 16083:1 16085:1 16087:4 16089:39 16099:1 16104:1 16105:2 16116:1 16138:1 16146:3 16155:2 16159:2 16196:1 16203:1 16208:2 16212:1 16235:3 16254:1 16259:1 16278:3 16288:1 16298:1 16300:2 16305:1 16309:4 16312:1 16321:1 16322:1 16357:1 16361:3 16363:1 16372:1 16399:1 16409:1 16410:2 16424:1 16432:1 16443:1 16454:4 16460:1 16478:2 16487:2 16488:1 16508:1 16515:1 16519:1 16525:1 16533:1 16558:1 16567:1 16572:1 16573:2 16585:1 16596:1 16598:9 16610:2 16617:1 16631:1 16633:1 16635:1 16638:1 16650:2 16651:1 16653:1 16663:1 16669:1 16702:3 16741:1 16744:1 16752:1 16762:1 16773:1 16776:1 16788:1 16798:1 16835:1 16836:2 16839:2 16840:1 16849:2 16906:2 16907:1 16914:1 16915:1 16940:2 16947:1 16948:2 16965:1 16971:1 16972:1 16989:2 16995:1 16996:1 16997:2 17018:1 17022:1 17028:1 17029:1 17035:1 17053:1 17069:1 17072:1 17103:1 17108:5 17109:1 17111:1 17112:1 17113:1 17115:1 17134:1 17135:1 17152:1 17153:1 17163:2 17178:1 17179:1 17188:2 17202:1 17205:1 17211:2 17213:1 17215:2 17217:1 17225:1 17238:1 17240:1 17244:1 17257:12 17262:1 17309:1 17320:6 17330:2 17331:1 17338:3 17350:2 17354:1 17366:1 17380:1 17384:1 17390:3 17436:1 17454:1 17458:1 17459:1 17482:1 17502:1 17503:3 17512:1 17516:3 17521:1 17554:1 17559:1 17581:1 17585:1 17602:1 17610:1 17613:2 17620:1 17622:1 17641:1 17661:1 17663:1 17667:1 17676:1 17685:1 17694:1 17710:1 17730:1 17732:1 17736:1 17768:2 17772:2 17787:1 17804:1 17806:1 17811:2 17814:1 17816:1 17818:1 17832:1 17843:1 17844:1 17856:1 17874:3 17878:1 17882:1 17894:1 17899:1 17907:3 17911:2 17913:1 17921:1 17923:2 17924:1 17926:1 17931:1 17936:1 17940:1 17951:1 17965:1 17969:1 17977:2 17979:2 17985:1 17990:3 17999:1 18005:2 18006:1 18007:2 18008:1 18027:1 18032:1 18054:1 18067:2 18068:1 18072:1 18074:2 18077:1 18080:4 18082:1 18103:1 18109:2 18135:1 18140:2 18148:2 18164:2 18177:1 18205:2 18227:1 18253:2 18264:1 18276:1 18283:1 18291:1 18318:1 18328:1 18343:1 18344:1 18345:1 18366:1 18369:1 18376:1 18380:2 18396:1 18402:1 18406:1 18407:1 18471:1 18496:2 18519:1 18546:1 18557:1 18561:1 18570:1 18575:1 18577:1 18578:2 18592:2 18604:2 18605:1 18608:1 18610:1 18635:1 18636:1 18641:1 18642:1 18643:2 18659:1 18662:1 18700:1 18707:1 18719:4 18738:1 18751:2 18759:1 18773:1 18774:1 18786:1 18796:3 18797:1 18817:1 18834:1 18882:1 18889:2 18892:1 18900:1 18903:1 18911:1 18915:1 18926:1 18930:2 18958:1 18962:1 18973:1 18974:1 18982:1 18999:1 19006:1 19011:1 19017:1 19022:1 19023:2 19034:1 19044:1 19061:1 19081:1 19083:1 19085:1 19087:1 19088:2 19090:1 19099:1 19122:1 19126:1 19135:1 19136:2 19147:1 19150:1 19161:1 19180:1 19184:1 19187:1 19198:1 19225:2 19228:1 19230:1 19235:1 19244:1 19255:1 19263:1 19276:1 19278:1 19291:1 19298:8 19312:1 19313:1 19321:2 19339:2 19350:1 19362:1 19371:1 19375:1 19391:1 19405:1 19414:1 19446:1 19447:1 19460:1 19461:2 19503:2 19505:1 19522:2 19559:1 19561:1 19577:1 19584:2 19587:1 19588:1 19599:1 19603:1 19627:1 19630:1 19633:1 19644:1 19645:1 19650:1 19660:1 19678:1 19681:1 19694:1 19699:1 19700:1 19702:1 19706:2 19707:3 19721:1 19732:1 19734:1 19741:1 19743:1 19746:1 19777:1 19792:1 19793:1 19800:1 19810:1 19819:1 19821:1 19835:1 19842:1 19845:1 19849:1 19862:1 19873:1 19885:2 19886:1 19901:1 19911:1 19924:1 19933:4 19940:2 19948:1 19951:1 19955:2 19961:1 19968:1 19990:2 19991:1 19996:1 20014:1 20050:1 20056:2 20058:1 20065:1 20069:2 20080:1 20083:1 20102:1 20105:3 20122:1 20126:3254 20154:1 20180:1 20184:1 20187:1 20195:2 20237:1 20264:2 20268:1 20272:1 20276:1 20293:3 20299:2 20305:1 20336:1 20357:1 20366:1 20390:1 20393:2 20398:2 20424:2 20427:1 20432:1 20466:1 20474:1 20480:2 20485:1 20491:1 20501:1 20502:1 20513:1 20515:1 20520:1 20524:1 20556:3 20562:2 20576:1 20577:1 20591:1 20600:1 20630:1 20648:1 20653:3 20660:1 20665:1 20668:5 20676:1 20707:1 20722:1 20728:1 20734:1 20756:1 20768:1 20777:3 20782:1 20809:1 20816:3 20820:1 20826:3 20830:1 20856:1 20870:1 20894:2 20921:1 20923:6 20939:1 20942:1 20951:2 20998:1 21007:1 21016:1 21029:1 21031:1 21035:4 21049:1 21054:3 21059:1 21062:1 21079:1 21104:1 21116:2 21122:1 21128:3 21140:2 21141:2 21145:2 21146:1 21147:1 21149:1 21165:1 21172:1 21177:2 21192:1 21194:1 21202:1 21227:1 21235:1 21253:1 21286:2 21288:1 21291:1 21296:1 21315:1 21317:1 21329:1 21358:1 21359:1 21375:1 21404:1 21437:1 21457:1 21460:1 21484:1 21486:1 21489:2 21506:1 21525:1 21536:1 21537:1 21541:2 21542:1 21544:1 21556:1 21560:1 21587:2 21592:1 21594:3 21597:1 21598:1 21601:1 21608:1 21615:1 21616:2 21625:1 21628:3 21630:2 21631:2 21636:1 21647:1 21649:1 21650:1 21659:1 21670:3 21677:2 21687:3 21690:1 21694:1 21700:1 21713:1 21729:1 21730:1 21758:1 21767:1 21771:1 21781:2 21803:2 21815:1 21818:1 21830:1 21872:3 21896:1 21910:1 21912:1 21915:1 21920:1 21925:2 21933:1 21934:1 21938:2 21946:1 21949:1 21953:1 21965:2 21966:1 21967:2 21985:1 21999:1 22000:3 22003:1 22028:2 22030:2 22042:2 22053:1 22057:2 22064:2 22099:1 22119:1 22150:1 22152:1 22155:1 22156:1 22167:1 22170:1 22181:1 22186:1 22193:1 22198:1 22201:1 22202:1 22212:1 22222:3 22228:1 22244:1 22250:1 22251:1 22262:1 22270:3 22273:1 22275:1 22281:1 22291:1 22294:1 22303:2 22312:2 22319:1 22332:1 22335:1 22366:1 22374:1 22375:3 22376:2 22378:1 22383:1 22390:1 22391:2 22392:2 22402:1 22408:1 22417:1 22426:4 22427:1 22453:2 22466:1 22476:1 22482:1 22516:2 22547:1 22549:3 22551:1 22557:1 22571:2 22599:1 22621:1 22636:1 22639:1 22640:1 22658:1 22671:1 22680:1 22711:1 22738:1 22753:1 22761:1 22782:1 22786:2 22795:1 22804:1 22813:2 22816:3 22837:2 22844:2 22845:8 22847:1 22854:1 22862:1 22879:1 22888:1 22900:1 22903:1 22905:2 22930:1 22938:1 22947:1 22953:1 22960:1 22963:1 22973:2 22975:1 22984:1 22985:1 22998:1 23011:1 23017:1 23028:1 23032:1 23038:1 23039:2 23043:2 23044:1 23047:1 23060:1 23077:1 23094:1 23096:1 23136:1 23139:1 23144:1 23160:1 23165:1 23180:3 23187:1 23193:2 23207:1 23217:1 23225:1 23226:1 23239:1 23254:1 23267:2 23280:1 23285:1 23295:1 23301:1 23306:1 23328:1 23339:1 23371:3 23373:1 23377:1 23379:6 23384:1 23387:3 23397:1 23400:1 23402:1 23409:1 23420:1 23424:2 23425:3 23445:1 23484:2 23498:1 23512:1 23520:2 23534:2 23544:1 23547:1 23559:1 23564:1 23585:3 23586:1 23590:1 23596:1 23600:2 23605:1 23609:2 23625:1 23629:2 23631:2 23644:2 23649:2 23652:1 23668:1 23669:2 23671:2 23677:1 23680:1 23702:2 23712:3 23724:1 23730:1 23738:1 23741:1 23748:1 23758:2 23766:2 23767:1 23778:1 23784:1 23796:1 23804:1 23807:1 23817:1 23826:1 23832:1 23835:1 23840:2 23841:1 23843:1 23847:2 23848:1 23887:2 23888:1 23897:1 23900:1 23911:1 23919:2 23948:3 23950:1 23952:2 23956:1 23961:1 23962:4 24004:1 24008:1 24015:1 24030:2 24031:2 24032:1 24034:5 24043:1 24051:5 24066:1 24075:1 24102:1 24108:1 24119:1 24142:1 24156:1 24163:2 24167:1 24169:1 24200:7 24207:1 24215:2 24216:1 24221:1 24225:1 24272:1 24283:1 24285:1 24289:1 24292:2 24298:1 24305:1 24314:1 24318:2 24324:1 24348:2 24362:2 24363:4 24383:1 24388:1 24394:1 24399:2 24400:1 24403:1 24405:1 24407:1 24413:1 24417:1 24422:1 24423:1 24424:1 24442:1 24447:1 24448:1 24451:1 24454:1 24467:2 24473:1 24476:1 24477:2 24489:1 24490:1 24499:4 24507:1 24514:1 24517:2 24547:1 24551:1 24566:1 24582:1 24599:1 24600:2 24602:2 24606:1 24608:3 24609:1 24622:1 24629:1 24632:1 24658:1 24670:1 24675:1 24681:1 24720:1 24723:1 24732:1 24737:1 24754:1 24769:1 24773:2 24779:3 24793:3 24850:4 24867:7 24875:1 24894:1 24896:1 24912:1 24946:1 24947:1 24963:2 24964:4 24974:3 24975:4 24978:3 24986:1 24988:1 24989:3 24990:7 25005:1 25011:1 25022:1 25030:1 25047:2 25051:1 25053:1 25060:1 25061:1 25073:4 25096:1 25100:2 25106:1 25112:1 25114:2 25121:1 25124:1 25129:1 25136:1 25170:1 25172:1 25177:1 25207:1 25233:1 25251:2 25253:1 25256:2 25258:2 25261:2 25265:1 25267:2 25275:5 25290:1 25293:1 25305:1 25321:5 25325:1 25341:1 25349:1 25360:1 25364:3 25382:1 25422:1 25438:2 25440:1 25442:2 25445:4 25450:1 25457:3 25465:1 25467:1 25469:1 25476:1 25479:1 25486:1 25488:1 25490:1 25493:1 25496:1 25502:1 25507:3 25511:1 25518:3 25536:2 25537:1 25544:2 25559:1 25564:1 25577:1 25602:1 25609:1 25611:1 25617:1 25623:1 25625:1 25638:2 25681:2 25684:1 25690:1 25695:6 25713:1 25716:1 25719:1 25720:3 25776:1 25782:1 25800:2 25805:1 25810:1 25846:1 25847:1 25851:1 25859:1 25862:1 25873:1 25886:1 25889:2 25907:1 25930:1 25938:1 25951:1 25968:1 25974:10 25975:1 25981:1 25983:2 25985:1 25990:2 25998:2 26009:1 26021:1 26022:1 26032:1 26041:1 26048:1 26062:1 26066:1 26090:1 26093:1 26102:1 26106:2 26115:1 26120:2 26125:5 26129:2 26149:1 26155:3 26172:1 26174:1 26176:1 26190:1 26194:1 26213:1 26227:2 26230:1 26231:1 26250:2 26251:1 26260:1 26261:1 26262:1 26267:1 26278:1 26283:1 26287:1 26289:1 26302:2 26309:2 26316:1 26317:1 26327:1 26328:1 26333:1 26341:1 26358:1 26359:1 26384:1 26399:1 26401:1 26414:1 26425:1 26447:1 26471:1 26481:2 26483:1 26485:1 26495:1 26508:1 26541:2 26545:2 26552:1 26557:4 26583:1 26584:2 26585:1 26602:1 26603:1 26606:1 26609:1 26626:1 26636:1 26638:2 26669:1 26677:1 26702:1 26708:1 26729:1 26739:1 26741:6 26764:2 26772:2 26774:1 26777:2 26799:1 26804:1 26805:1 26837:2 26838:2 26868:1 26870:1 26873:2 26885:1 26902:3 26908:1 26918:1 26919:1 26923:1 26933:1 26937:2 26968:1 26978:2 26988:1 27005:1 27020:1 27028:1 27040:2 27055:1 27057:1 27063:1 27072:2 27074:4 27083:1 27084:2 27085:4 27087:2 27094:3 27095:1 27101:1 27103:1 27104:1 27108:2 27115:1 27128:1 27134:3 27140:1 27167:2 27178:4 27191:2 27198:1 27199:1 27205:1 27206:2 27222:1 27227:1 27238:1 27247:2 27248:2 27249:2 27285:1 27287:2 27295:1 27297:1 27315:1 27319:2 27332:1 27338:2 27351:1 27376:1 27381:1 27384:1 27395:3 27405:1 27408:1 27427:1 27437:1 27439:3 27445:2 27446:1 27459:1 27467:4 27485:1 27491:1 27512:3 27541:1 27543:1 27546:1 27568:1 27591:1 27601:1 27616:1 27654:1 27667:1 27674:2 27684:1 27685:1 27770:3 27773:1 27794:1 27795:1 27812:1 27817:1 27825:3 27830:1 27846:2 27851:4 27875:2 27881:1 27882:1 27890:1 27896:1 27907:1 27920:1 27929:1 27941:1 27944:2 27957:1 27967:1 27991:1 27994:1 27997:1 28000:1 28041:1 28042:1 28051:2 28053:2 28065:1 28074:1 28078:2 28081:2 28086:1 28092:1 28094:1 28098:1 28102:2 28103:1 28104:4 28109:1 28139:3 28149:2 28151:1 28168:2 28172:1 28176:2 28179:1 28183:1 28191:1 28193:2 28196:2 28205:2 28208:1 28211:3 28212:1 28213:2 28220:2 28225:1 28227:1 28245:1 28249:1 28251:1 28252:1 28281:1 28299:5 28300:2 28349:1 28352:1 28388:1 28389:1 28390:1 28402:1 28405:1 28411:1 28412:1 28414:1 28418:1 28443:1 28444:4 28448:3 28449:1 28477:1 28478:1 28482:1 28493:2 28499:1 28526:1 28528:1 28530:1 28548:1 28573:1 28574:2 28580:2 28582:1 28583:3 28586:1 28592:1 28599:1 28613:2 28616:1 28622:4 28628:1 28639:1 28644:1 28651:1 28658:1 28659:1 28670:1 28671:1 28674:1 28691:1 28716:1 28725:1 28728:2 28739:2 28741:2 28742:1 28743:1 28748:4 28759:1 28766:1 28775:1 28804:2 28811:1 28827:1 28842:1 28845:1 28846:1 28854:2 28855:1 28884:1 28896:1 28921:1 28930:1 28939:1 28960:1 28997:1 29006:2 29007:1 29009:1 29015:1 29018:1 29038:1 29053:3 29056:2 29059:1 29061:2 29062:2 29071:1 29076:3 29087:1 29092:1 29096:1 29102:1 29122:1 29123:1 29128:1 29133:1 29145:1 29148:1 29163:3 29176:1 29177:1 29178:1 29179:1 29183:2 29185:1 29188:5 29205:1 29253:2 29266:2 29268:1 29277:1 29290:2 29296:1 29298:2 29306:1 29321:1 29345:2 29355:2 29367:1 29369:1 29388:1 29392:1 29402:2 29409:1 29417:2 29422:1 29448:1 29456:1 29467:1 29468:2 29479:2 29483:1 29487:1 29491:1 29504:1 29513:1 29537:1 29557:1 29577:1 29611:1 29617:1 29620:2 29637:1 29642:2 29647:2 29660:1 29661:1 29673:1 29674:1 29681:1 29701:2 29707:1 29708:1 29718:2 29725:1 29731:1 29738:2 29739:1 29746:2 29760:1 29771:2 29773:2 29774:1 29780:2 29806:12 29811:1 29815:1 29819:1 29821:2 29831:1 29835:1 29837:1 29852:7 29853:2 29861:1 29865:3 29867:1 29882:3 29904:1 29922:1 29930:3 29939:1 29974:1 29979:1 29999:1 30020:3 30033:1 30045:2 30047:1 30053:2 30056:1 30068:1 30075:1 30078:2 30083:1 30090:2 30104:1 30109:1 30114:1 30116:1 30121:1 30123:2 30149:1 30160:1 30164:1 30174:1 30177:1 30182:1 30189:1 30196:1 30199:1 30212:1 30220:1 30234:1 30242:1 30247:3 30251:1 30263:1 30271:1 30275:1 30281:1 30300:1 30301:1 30302:1 30305:1 30317:1 30325:1 30330:3 30365:2 30367:1 30381:1 30390:2 30392:2 30399:1 30412:1 30414:1 30421:2 30428:1 30429:1 30458:1 30459:1 30460:1 30477:1 30479:1 30494:1 30498:1 30517:1 30520:1 30523:1 30526:1 30554:1 30556:2 30557:1 30558:2 30559:1 30567:1 30572:1 30574:1 30578:1 30582:1 30597:1 30599:1 30602:2 30618:1 30621:1 30625:1 30676:1 30683:1 30700:1 30702:1 30712:1 30713:1 30714:1 30742:1 30750:2 30759:1 30783:1 30803:1 30812:1 30867:2 30869:1 30879:1 30922:4 30931:1 30935:1 30942:1 30949:1 30968:1 30973:5 30978:1 30981:1 30984:1 30996:1 31002:1 31005:2 31013:1 31030:2 31036:1 31037:1 31046:2 31054:1 31071:1 31076:1 31083:2 31084:1 31087:1 31090:4 31098:1 31100:1 31121:1 31124:1 31133:2 31135:1 31143:2 31179:1 31182:3 31183:1 31190:1 31195:2 31197:1 31198:1 31201:1 31208:1 31228:2
17 12:1 16:1 19:2 33:1 35:1 40:1 42:1 49:2 61:2 62:1 69:1 86:1 110:1 122:1 164:1 173:7 183:1 186:2 192:1 199:1 224:1 227:1 237:1 240:1 256:2 271:1 278:4 291:1 304:2 310:2 343:1 345:1 351:1 357:3 358:1 398:1 401:2 404:1 419:1 420:1 422:1 426:1 493:1 503:1 504:2 509:1 511:1 513:1 514:1 519:3 526:1 577:1 591:1 633:3 640:1 641:1 647:1 650:1 661:1 662:1 690:1 695:1 703:1 708:4 719:1 726:3 781:1 800:2 815:1 817:1 824:1 831:1 839:1 846:3 857:1 864:6 902:1 928:2 934:1 969:1 970:1 973:2 977:6 979:3 980:1 982:2 985:1 986:5 990:2 991:3 992:1 997:1 1002:1 1003:2 1007:1 1008:2 1011:2 1028:1 1034:4 1036:2 1039:2 1044:1 1074:3 1090:1 1093:2 1094:2 1095:1 1098:2 1114:1 1116:1 1119:1 1129:1 1133:1 1145:1 1150:1 1161:1 1165:1 1166:1 1168:3 1175:1 1186:1 1192:1 1204:1 1210:1 1220:2 1221:1 1222:2 1231:1 1248:1 1258:1 1268:2 1269:2 1283:1 1311:1 1318:1 1327:1 1330:1 1339:2 1343:1 1348:1 1360:1 1370:1 1375:1 1377:1 1382:1 1398:1 1399:1 1410:1 1413:1 1414:1 1415:1 1433:1 1435:1 1438:1 1442:1 1454:1 1460:1 1462:1 1464:2 1472:1 1487:1 1488:3 1489:1 1490:1 1497:1 1529:1 1535:1 1540:1 1549:1 1560:1 1564:1 1565:4 1584:1 1601:1 1605:1 1608:1 1613:1 1625:1 1638:2 1642:1 1644:1 1648:1 1650:1 1654:1 1669:2 1676:1 1688:5 1701:1 1702:1 1708:1 1714:1 1717:1 1719:1 1722:1 1736:2 1749:1 1771:1 1786:1 1790:2 1794:1 1795:1 1797:3 1816:1 1822:1 1825:1 1826:1 1827:1 1833:2 1841:1 1842:1 1851:1 1857:2 1860:1 1867:1 1868:1 1871:1 1873:1 1895:1 1896:2 1904:1 1905:1 1910:2 1911:1 1921:3 1922:1 1932:1 1933:1 1942:1 1950:1 1956:1 1958:2 1961:3 1963:2 1964:1 1972:1 1975:1 1978:1 1991:1 1999:1 2000:1 2011:1 2018:3 2027:2 2033:2 2036:1 2037:1 2041:1 2066:1 2078:1 2092:1 2099:1 2108:2 2110:1 2126:1 2127:2 2128:1 2136:1 2139:1 2155:1 2157:1 2164:1 2177:1 2187:2 2221:1 2224:1 2226:2 2253:2 2261:1 2270:1 2280:1 2282:1 2307:1 2356:1 2395:3 2433:1 2442:1 2467:1 2470:1 2477:1 2486:1 2502:2 2504:2 2508:1 2519:1 2525:4 2530:2 2531:1 2533:1 2537:1 2543:5 2550:1 2551:2 2552:2 2556:3 2558:1 2561:1 2562:1 2568:1 2569:6 2584:1 2600:2 2616:2 2630:2 2632:1 2633:1 2638:1 2648:1 2650:1 2697:1 2698:1 2701:2 2721:2 2737:6 2741:2 2757:2 2765:1 2767:1 2770:1 2777:1 2778:3 2783:1 2784:1 2789:1 2798:1 2799:1 2800:1 2804:3 2809:1 2816:1 2821:1 2856:1 2866:1 2870:1 2872:2 2892:1 2894:1 2923:2 2928:1 2935:1 2938:1 2939:1 2964:1 2982:1 2991:1 2994:1 3001:1 3004:1 3023:1 3027:1 3031:1 3032:3 3044:1 3086:1 3101:1 3106:1 3109:1 3110:2 3112:2 3117:1 3124:1 3131:1 3138:1 3142:1 3144:1 3147:1 3168:1 3169:1 3179:1 3189:4 3197:5 3210:5 3232:1 3243:1 3247:1 3249:2 3257:2 3266:1 3282:1 3291:1 3294:1 3295:1 3310:3 3313:3 3315:2 3320:1 3322:2 3327:1 3341:2 3364:1 3365:1 3376:1 3392:1 3412:1 3419:3 3420:1 3442:1 3455:2 3457:1 3463:1 3464:2 3487:1 3495:1 3497:1 3500:1 3504:1 3524:1 3552:1 3553:1 3563:3 3589:2 3619:1 3630:1 3656:1 3671:2 3681:1 3707:1 3708:1 3745:1 3747:2 3756:1 3772:1 3778:1 3779:4 3795:1 3797:1 3798:1 3817:1 3848:2 3849:1 3857:1 3869:3 3877:1 3878:1 3879:1 3881:5 3896:1 3904:1 3913:1 3920:1 3926:2 3936:1 3959:1 3971:1 3986:1 3987:3 3992:1 3997:1 4003:3 4007:1 4018:2 4025:1 4032:2 4052:2 4061:1 4063:1 4091:1 4093:1 4097:1 4101:1 4127:3 4128:1 4131:1 4132:1 4149:4 4159:1 4187:1 4204:2 4207:3 4218:1 4227:1 4240:3 4241:1 4246:1 4247:1 4255:1 4262:3 4264:1 4268:1 4282:1 4284:2 4293:2 4311:1 4312:1 4323:1 4325:1 4336:1 4337:1 4385:1 4386:1 4389:1 4418:2 4426:1 4443:1 4446:1 4448:1 4454:1 4463:1 4468:1 4473:1 4480:1 4487:1 4490:2 4501:1 4507:1 4518:2 4520:1 4527:1 4535:3 4579:1 4604:1 4606:1 4608:1 4636:1 4642:1 4645:2 4648:2 4650:1 4654:1 4655:1 4662:1 4673:1 4712:2 4716:3 4749:1 4753:1 4754:1 4761:5 4765:1 4767:1 4770:1 4779:1 4780:2 4785:1 4787:5 4801:1 4814:1 4816:1 4819:1 4835:1 4837:2 4842:1 4843:1 4854:2 4855:1 4881:1 4891:2 4892:1 4903:1 4906:1 4918:1 4931:1 4955:1 4960:1 4964:1 4965:1 4970:2 4974:1 4981:1 4984:1 4985:6 4997:3 5008:1 5012:1 5015:1 5024:1 5050:2 5069:1 5070:5 5075:1 5076:1 5088:2 5107:1 5128:1 5147:2 5154:5 5161:1 5162:1 5172:1 5176:2 5179:1 5180:1 5185:1 5188:3 5190:1 5192:4 5202:1 5206:1 5209:1 5219:2 5221:2 5236:1 5246:1 5248:1 5281:1 5296:1 5298:2 5302:1 5312:1 5313:1 5314:1 5315:1 5316:1 5321:1 5326:1 5328:1 5329:2 5334:2 5338:1 5345:3 5347:2 5354:2 5355:1 5357:1 5379:1 5391:1 5394:1 5417:1 5418:1 5436:1 5443:1 5491:1 5501:1 5505:1 5509:1 5536:1 5540:2 5544:1 5547:1 5556:1 5569:2 5580:5 5586:1 5592:1 5600:2 5603:1 5625:1 5631:1 5646:2 5651:1 5673:1 5684:1 5692:2 5717:1 5721:1 5735:1 5742:1 5758:2 5761:1 5785:1 5792:1 5806:2 5824:1 5856:1 5877:1 5878:2 5888:2 5889:1 5896:1 5902:1 5907:1 5917:1 5942:1 5950:1 5958:1 5979:1 6000:2 6003:1 6006:1 6013:1 6014:4 6020:1 6040:2 6050:1 6052:1 6066:7 6082:1 6097:1 6106:1 6109:1 6119:1 6121:1 6132:1 6140:1 6142:1 6147:1 6149:1 6153:1 6158:3 6164:4 6165:1 6166:1 6170:1 6172:2 6182:1 6198:1 6200:2 6202:1 6207:1 6222:1 6233:2 6237:1 6245:2 6246:1 6248:1 6268:1 6280:1 6286:1 6293:1 6298:1 6301:2 6306:3 6310:2 6312:9 6319:1 6320:2 6342:1 6346:1 6361:1 6388:3 6409:1 6411:2 6433:2 6439:1 6440:5 6450:2 6456:1 6467:4 6484:2 6503:1 6507:1 6513:1 6514:1 6531:2 6533:3 6536:1 6557:2 6562:1 6567:1 6569:1 6571:1 6575:1 6579:1 6589:4 6594:1 6617:1 6640:2 6653:2 6654:1 6659:3 6661:2 6665:2 6668:1 6672:2 6681:1 6686:1 6705:2 6727:1 6733:1 6746:1 6748:1 6749:1 6753:1 6758:1 6768:4 6786:1 6789:1 6793:1 6804:1 6829:10 6840:1 6844:1 6855:1 6858:1 6865:3 6868:2 6869:1 6875:1 6878:1 6883:1 6885:3 6886:2 6887:1 6910:1 6917:1 6922:1 6926:1 6930:1 6932:1 6937:1 6938:1 6945:3 6950:1 6959:1 6966:1 7012:1 7023:1 7033:3 7035:1 7048:1 7064:1 7069:2 7073:1 7078:1 7084:2 7101:2 7111:2 7115:1 7121:2 7128:1 7152:1 7162:1 7169:2 7171:4 7181:1 7202:1 7209:1 7216:1 7218:1 7219:1 7226:1 7227:1 7270:1 7277:1 7288:1 7296:1 7312:3 7332:1 7341:1 7353:1 7354:1 7357:1 7374:1 7375:4 7381:2 7383:1 7395:1 7413:1 7415:1 7422:1 7423:1 7427:2 7434:5 7444:1 7453:1 7460:1 7467:1 7490:1 7516:1 7518:1 7529:2 7556:1 7567:2 7577:2 7580:1 7583:2 7598:4 7616:2 7626:1 7635:1 7647:1 7648:1 7650:1 7654:2 7659:1 7663:1 7664:1 7670:1 7676:1 7715:2 7718:2 7733:1 7745:1 7753:1 7761:3 7769:1 7775:1 7785:1 7787:1 7798:1 7799:1 7801:1 7809:1 7819:2 7836:1 7846:1 7882:2 7902:1 7903:1 7908:1 7909:1 7919:1 7925:1 7929:1 7932:1 7941:1 7955:2 7959:2 7965:1 7974:1 7976:1 8000:2 8001:1 8010:1 8019:4 8025:1 8027:1 8034:1 8039:1 8050:1 8053:1 8059:3 8062:1 8063:1 8080:1 8082:1 8092:2 8102:1 8114:1 8120:2 8121:1 8126:3 8127:1 8128:2 8148:3 8150:3 8151:8 8152:4 8153:1 8155:2 8157:2 8161:6 8162:1 8163:1 8165:1 8170:2 8171:3 8172:1 8173:4 8174:2 8187:1 8205:1 8214:3 8221:1 8232:3 8239:1 8247:1 8261:1 8268:1 8286:1 8300:1 8301:1 8305:1 8310:2 8316:1 8318:1 8330:1 8337:2 8353:3 8360:1 8371:1 8372:2 8404:1 8405:1 8420:18 8431:1 8440:5 8442:2 8450:2 8467:1 8474:2 8485:1 8493:2 8502:1 8505:4 8509:2 8517:1 8542:2 8545:1 8551:1 8557:1 8572:1 8611:1 8622:1 8636:1 8640:1 8642:1 8644:1 8650:2 8678:1 8679:1 8693:3 8702:1 8705:1 8710:1 8716:1 8740:1 8776:2 8792:1 8801:1 8823:5 8828:1 8834:1 8837:2 8850:1 8857:7 8859:1 8866:1 8872:2 8874:1 8879:2 8886:1 8903:1 8910:1 8913:1 8920:1 8930:1 8940:1 8953:1 8956:1 8959:1 8961:1 8963:6 8987:1 9006:2 9013:2 9018:1 9023:2 9035:1 9039:1 9062:1 9077:1 9079:2 9082:1 9093:1 9094:1 9113:1 9119:3 9125:3 9129:1 9131:1 9132:1 9139:1 9141:1 9149:1 9156:2 9165:1 9168:1 9172:1 9175:2 9186:1 9191:1 9192:1 9193:1 9194:1 9210:1 9216:1 9220:1 9224:1 9227:1 9237:2 9243:1 9261:1 9263:1 9268:2 9273:1 9283:1 9296:1 9305:5 9314:1 9316:2 9317:1 9363:1 9367:1 9369:1 9370:1 9372:2 9376:2 9378:4 9383:1 9385:1 9390:1 9396:1 9405:2 9410:1 9421:1 9447:1 9461:1 9463:1 9490:3 9498:1 9500:1 9506:2 9510:1 9518:1 9522:1 9524:1 9525:1 9527:1 9568:7 9583:1 9588:1 9596:1 9622:1 9651:1 9667:2 9680:1 9681:1 9685:1 9688:1 9693:1 9715:2 9724:2 9726:1 9743:1 9778:2 9795:6 9796:2 9815:2 9826:1 9835:1 9836:1 9848:1 9850:1 9857:2 9872:1 9887:1 9894:2 9900:1 9917:1 9922:3 9923:1 9937:1 9948:1 9949:1 9981:3 9996:1 10013:1 10018:1 10022:1 10026:1 10047:1 10051:3 10079:1 10091:1 10092:2 10114:1 10115:1 10119:4 10122:1 10127:1 10131:1 10133:2 10135:1 10141:2 10158:1 10168:1 10169:1 10175:1 10191:1 10196:1 10203:1 10216:5 10221:1 10229:1 10243:1 10252:1 10253:1 10254:1 10255:2 10259:2 10273:1 10277:1 10293:1 10295:1 10304:2 10306:1 10317:1 10326:2 10342:1 10346:1 10353:1 10368:1 10372:1 10379:1 10382:1 10388:2 10389:1 10390:2 10393:1 10402:1 10421:1 10422:1 10429:2 10451:3 10452:1 10457:2 10478:3 10480:1 10483:3 10486:1 10488:1 10494:1 10500:4 10501:1 10503:3 10511:1 10514:1 10516:1 10531:2 10532:2 10540:1 10548:1 10551:1 10554:1 10557:1 10561:1 10566:1 10567:1 10568:3 10576:3 10578:1 10593:1 10597:1 10623:1 10626:1 10631:1 10650:6 10656:1 10671:1 10676:2 10682:1 10707:3 10708:2 10716:2 10747:1 10760:1 10769:1 10781:1 10783:1 10790:1 10799:1 10800:2 10812:1 10821:1 10827:1 10832:1 10833:1 10847:1 10853:1 10881:1 10884:1 10891:3 10933:1 10936:1 10937:1 10945:2 10949:1 10954:2 10960:4 10963:1 10965:2 10966:1 10967:2 10972:1 10973:1 10982:1 10983:1 11010:1 11012:1 11013:1 11014:1 11018:1 11020:2 11021:1 11025:3 11026:1 11035:4 11042:2 11053:1 11054:1 11055:3 11059:5 11078:1 11082:1 11093:3 11103:1 11113:1 11137:5 11144:2 11150:1 11197:1 11206:1 11217:1 11223:3 11235:3 11237:2 11238:1 11246:1 11251:2 11255:1 11263:1 11281:1 11290:1 11304:2 11316:1 11324:1 11325:2 11338:1 11358:1 11360:1 11367:1 11369:1 11370:2 11372:1 11373:1 11377:1 11403:1 11408:1 11426:5 11428:1 11429:1 11432:1 11437:3 11445:1 11448:1 11450:1 11456:1 11457:1 11463:1 11464:2 11466:1 11477:1 11480:1 11481:1 11494:1 11499:1 11501:3 11509:1 11514:1 11522:2 11533:1 11565:1 11572:1 11573:2 11579:1 11585:2 11605:1 11613:2 11649:1 11656:1 11662:1 11664:2 11685:1 11697:1 11700:1 11703:1 11719:2 11730:7 11737:1 11742:2 11745:1 11747:1 11761:1 11764:2 11778:1 11784:1 11793:1 11813:3 11819:1 11840:1 11849:1 11861:1 11863:1 11868:1 11869:2 11891:1 11905:1 11926:1 11927:1 11929:1 11946:1 11953:1 11963:1 11972:1 11978:1 11981:1 11990:1 11996:4 11997:3 12004:1 12010:2 12011:1 12015:1 12016:2 12026:1 12038:3 12039:1 12044:1 12052:1 12055:5 12079:1 12082:1 12085:1 12086:4 12091:1 12095:1 12103:1 12104:3 12118:1 12131:1 12141:1 12147:1 12159:1 12161:1 12169:2 12185:1 12187:2 12214:1 12236:1 12246:3 12251:1 12254:1 12261:1 12263:1 12268:1 12272:1 12285:2 12290:3 12293:3 12322:1 12325:4 12329:1 12332:1 12353:1 12366:1 12368:1 12373:1 12377:1 12380:1 12383:1 12405:2 12407:3 12412:1 12419:3 12424:1 12435:2 12446:1 12450:3 12451:1 12457:1 12462:2 12468:1 12473:2 12488:4 12500:1 12514:1 12530:5 12534:1 12544:1 12550:1 12563:1 12565:1 12568:1 12569:1 12623:1 12633:1 12673:1 12677:1 12679:2 12698:1 12708:1 12711:7 12721:1 12729:1 12733:1 12743:1 12769:2 12773:1 12776:1 12780:1 12784:1 12794:1 12798:2 12802:1 12816:1 12827:2 12831:3 12832:1 12839:1 12843:3 12846:2 12848:2 12853:1 12890:1 12894:1 12898:1 12908:1 12910:1 12921:1 12925:3 12944:1 12957:1 12968:1 12977:1 12990:1 12995:1 12996:1 13002:1 13023:2 13025:4 13028:1 13029:1 13031:1 13034:3 13037:1 13038:5 13039:1 13040:1 13043:1 13047:2 13050:2 13052:1 13085:2 13098:1 13100:1 13102:1 13110:1 13129:1 13130:3 13131:2 13133:2 13138:1 13141:2 13144:1 13157:2 13163:1 13167:2 13169:1 13171:1 13173:2 13199:2 13210:1 13214:1 13222:1 13226:1 13228:1 13240:1 13243:2 13244:2 13246:1 13247:3 13253:2 13260:4 13261:1 13266:1 13267:1 13279:1 13280:1 13295:1 13301:1 13329:1 13355:2 13359:1 13372:1 13374:1 13385:1 13390:2 13394:1 13395:1 13399:1 13400:1 13403:1 13410:1 13424:1 13436:1 13438:1 13439:1 13450:1 13465:1 13468:2 13470:1 13472:1 13481:1 13497:1 13540:1 13552:1 13559:2 13577:1 13579:1 13581:1 13584:2 13585:1 13591:2 13600:1 13608:1 13609:1 13655:1 13661:1 13680:2 13695:2 13697:1 13704:1 13710:1 13713:1 13725:1 13731:3 13743:1 13746:1 13752:1 13766:2 13768:1 13799:1 13828:6 13854:1 13856:2 13858:1 13864:3 13934:5 13937:1 13949:1 13963:2 13965:1 13971:6 13989:1 13991:2 14022:1 14029:1 14032:1 14051:1 14069:1 14095:1 14109:1 14114:1 14148:1 14200:1 14222:1 14238:1 14266:1 14276:1 14292:2 14294:1 14298:2 14331:2 14333:5 14339:2 14341:1 14342:3 14346:1 14357:1 14359:1 14372:1 14377:3 14386:3 14387:1 14412:1 14420:1 14421:1 14424:1 14452:1 14459:1 14461:1 14469:1 14473:1 14498:1 14504:1 14522:1 14527:1 14529:1 14556:6 14566:1 14567:1 14570:1 14571:3 14624:1 14625:2 14636:1 14690:2 14704:1 14708:1 14712:1 14720:1 14726:1 14728:2 14732:5 14744:3 14753:2 14757:1 14770:1 14789:1 14792:1 14798:1 14803:1 14804:8 14815:2 14826:2 14831:1 14843:1 14846:2 14855:2 14856:1 14859:1 14860:1 14864:2 14875:1 14877:1 14878:1 14880:1 14882:2 14888:1 14897:1 14900:1 14914:1 14915:1 14919:1 14923:1 14931:2 14941:1 14968:1 14987:2 14989:1 14994:1 15020:5 15045:2 15064:1 15091:1 15095:1 15101:2 15111:1 15150:1 15153:1 15169:1 15176:2 15216:1 15220:1 15227:1 15241:1 15245:1 15248:2 15251:1 15271:1 15287:1 15297:1 15307:1 15321:1 15325:1 15329:1 15341:1 15348:1 15349:1 15355:1 15365:1 15371:1 15385:1 15387:3 15397:1 15398:1 15400:1 15412:1 15422:1 15439:2 15443:2 15444:1 15446:1 15448:1 15452:1 15454:1 15458:1 15459:1 15468:1 15485:2 15495:1 15496:1 15514:1 15528:1 15533:1 15534:2 15548:1 15549:2 15554:1 15563:1 15570:1 15571:1 15573:1 15577:1 15580:7 15582:1 15584:1 15594:1 15598:1 15602:1 15603:1 15605:1 15608:1 15615:4 15617:2 15620:2 15623:1 15650:2 15672:1 15678:1 15683:1 15685:1 15695:1 15701:2 15704:1 15718:1 15720:2 15731:1 15739:1 15740:1 15741:1 15742:5 15750:2 15761:1 15764:1 15768:1 15789:2 15797:2 15804:2 15811:1 15815:1 15822:2 15842:1 15859:1 15869:1 15873:1 15933:1 15950:1 15953:1 15958:3 15959:4 15968:1 16004:1 16015:1 16019:1 16024:1 16028:3 16029:1 16039:1 16056:9 16063:2 16064:2 16065:1 16080:1 16082:2 16083:1 16085:1 16087:4 16089:42 16099:1 16104:1 16105:2 16116:1 16138:1 16146:3 16155:2 16159:2 16196:1 16203:1 16208:2 16212:1 16235:3 16254:1 16259:1 16278:3 16288:1 16298:1 16300:2 16305:1 16309:4 16312:2 16321:2 16322:1 16357:1 16361:3 16363:1 16372:1 16399:1 16409:1 16410:2 16424:1 16432:1 16443:1 16454:4 16460:1 16478:2 16487:2 16488:1 16508:1 16515:1 16519:1 16525:1 16533:1 16558:1 16567:1 16572:1 16573:2 16585:1 16596:1 16598:9 16610:2 16617:1 16631:1 16633:1 16635:1 16638:1 16650:2 16651:1 16653:1 16663:1 16669:1 16702:3 16741:1 16744:1 16752:1 16762:1 16773:1 16776:1 16788:1 16798:1 16835:1 16836:3 16839:2 16840:2 16849:3 16906:2 16907:1 16914:1 16915:2 16940:2 16947:1 16948:2 16965:1 16971:1 16972:1 16989:2 16995:1 16996:1 16997:2 17018:1 17022:1 17028:1 17029:1 17035:1 17045:1 17050:1 17053:1 17069:1 17072:1 17103:1 17108:5 17109:1 17111:1 17112:1 17113:1 17115:1 17134:1 17135:1 17152:1 17153:1 17163:2 17178:1 17179:1 17188:2 17202:1 17205:1 17211:2 17213:1 17215:2 17217:1 17225:1 17238:1 17240:1 17244:1 17257:14 17262:1 17309:1 17320:6 17330:2 17331:1 17338:3 17350:2 17354:1 17366:1 17380:1 17384:1 17390:3 17436:1 17454:1 17458:1 17459:1 17482:1 17502:1 17503:3 17512:1 17516:3 17521:1 17554:1 17559:1 17581:1 17585:1 17602:1 17610:1 17613:2 17620:1 17622:1 17641:1 17661:1 17663:1 17667:1 17676:1 17685:1 17694:1 17710:1 17730:1 17732:1 17736:1 17768:2 17772:2 17787:1 17804:1 17806:1 17811:2 17814:1 17816:1 17818:1 17832:1 17843:1 17844:1 17856:1 17866:1 17874:3 17878:1 17882:1 17894:1 17899:1 17907:3 17911:2 17913:1 17921:1 17923:2 17924:1 17926:1 17931:2 17936:1 17940:1 17951:1 17965:1 17969:1 17977:2 17979:2 17985:1 17990:3 17999:1 18005:2 18006:1 18007:2 18008:1 18027:2 18032:1 18054:1 18067:3 18068:1 18072:1 18074:2 18077:1 18080:4 18082:1 18103:1 18109:2 18135:1 18140:2 18148:2 18164:2 18177:1 18205:2 18227:1 18253:2 18264:1 18276:1 18283:1 18291:1 18318:1 18328:1 18343:1 18344:1 18345:1 18366:1 18369:1 18376:1 18380:2 18396:1 18402:1 18406:1 18407:1 18471:1 18496:2 18519:1 18528:1 18546:1 18557:1 18561:1 18570:1 18575:1 18577:1 18578:2 18592:2 18604:2 18605:1 18608:1 18610:1 18635:2 18636:1 18641:1 18642:1 18643:2 18659:1 18662:1 18666:1 18700:1 18707:1 18719:4 18738:1 18751:2 18759:1 18773:1 18774:1 18786:1 18796:3 18797:1 18817:1 18834:1 18882:1 18889:2 18892:1 18900:1 18903:1 18911:1 18915:1 18926:1 18930:2 18958:1 18962:1 18973:1 18974:1 18982:1 18999:1 19006:1 19011:1 19017:1 19022:1 19023:2 19034:1 19044:1 19061:1 19081:1 19083:1 19085:1 19087:1 19088:2 19090:1 19099:1 19122:1 19126:1 19135:2 19136:2 19147:1 19150:1 19161:1 19180:1 19184:1 19187:1 19198:1 19225:2 19228:1 19230:1 19235:1 19244:1 19255:1 19263:1 19274:1 19276:1 19278:1 19291:1 19298:9 19312:1 19313:1 19321:2 19339:2 19350:1 19362:1 19371:1 19375:1 19391:1 19405:1 19414:1 19419:1 19446:1 19447:1 19460:1 19461:2 19503:2 19505:1 19522:2 19559:1 19561:1 19577:1 19584:2 19587:1 19588:1 19599:1 19603:1 19627:1 19630:1 19633:1 19644:1 19645:1 19650:1 19660:1 19665:1 19678:1 19681:1 19694:1 19699:1 19700:1 19702:1 19706:2 19707:3 19721:1 19732:1 19734:1 19741:1 19743:1 19746:1 19777:1 19792:1 19793:1 19800:1 19810:1 19819:1 19821:1 19835:1 19842:1 19845:1 19849:1 19862:1 19873:1 19885:2 19886:1 19901:1 19911:1 19924:1 19933:4 19940:2 19948:1 19951:1 19955:2 19961:1 19968:1 19990:2 19991:1 19996:1 20014:1 20050:1 20056:2 20058:1 20065:1 20069:2 20080:1 20083:1 20102:1 20105:3 20122:1 20126:3297 20154:1 20180:1 20184:1 20187:1 20195:2 20237:1 20264:2 20268:1 20272:1 20276:1 20293:3 20299:2 20303:1 20305:1 20336:1 20357:1 20366:1 20390:1 20393:2 20398:2 20424:2 20427:1 20432:1 20466:1 20474:1 20480:2 20485:1 20491:1 20501:1 20502:1 20513:1 20515:1 20520:1 20524:1 20556:3 20562:2 20576:1 20577:1 20591:1 20600:1 20630:1 20648:1 20653:3 20660:1 20665:1 20668:5 20676:1 20707:1 20722:1 20728:1 20734:1 20756:1 20768:1 20777:3 20782:1 20809:1 20816:3 20820:1 20826:3 20830:1 20856:1 20870:1 20894:2 20921:1 20923:6 20939:1 20942:1 20951:2 20970:1 20998:1 21007:1 21016:1 21029:1 21031:1 21035:4 21049:1 21054:3 21059:1 21062:1 21079:1 21104:1 21116:2 21122:1 21128:4 21140:2 21141:2 21145:2 21146:1 21147:1 21149:1 21165:1 21167:1 21172:1 21177:2 21192:1 21194:1 21202:1 21227:1 21235:1 21253:1 21286:2 21288:1 21291:1 21296:1 21315:1 21317:2 21329:1 21358:1 21359:1 21362:1 21375:1 21404:1 21437:1 21457:1 21460:1 21484:1 21486:1 21489:2 21506:1 21525:1 21536:1 21537:1 21541:2 21542:1 21544:1 21556:1 21560:1 21587:2 21592:1 21594:3 21597:1 21598:1 21601:1 21608:1 21615:1 21616:2 21625:1 21628:3 21630:2 21631:2 21636:1 21647:1 21649:1 21650:1 21659:1 21670:3 21677:2 21687:3 21690:1 21694:1 21700:1 21713:1 21729:1 21730:1 21758:1 21767:1 21771:1 21781:2 21803:2 21815:1 21818:1 21830:1 21872:3 21896:1 21910:1 21912:1 21915:1 21920:2 21925:2 21933:1 21934:1 21938:2 21946:1 21949:1 21953:1 21965:2 21966:1 21967:2 21985:1 21989:1 21999:1 22000:3 22003:2 22028:2 22030:3 22042:2 22053:1 22057:2 22064:2 22099:1 22119:1 22150:1 22152:1 22155:1 22156:1 22167:1 22170:1 22181:1 22186:1 22193:1 22198:2 22201:1 22202:1 22212:1 22222:3 22228:1 22244:1 22250:1 22251:1 22262:1 22270:3 22273:1 22275:1 22281:1 22291:1 22294:2 22303:2 22307:1 22312:2 22319:1 22332:1 22335:1 22366:1 22374:1 22375:3 22376:2 22378:1 22383:1 22390:1 22391:2 22392:2 22402:1 22408:1 22417:1 22426:5 22427:1 22453:2 22466:1 22476:1 22482:1 22516:2 22547:1 22549:4 22551:1 22557:1 22571:2 22599:1 22621:1 22636:1 22639:1 22640:1 22658:1 22671:1 22680:1 22693:1 22711:1 22738:1 22753:1 22761:1 22782:1 22786:2 22795:1 22804:1 22813:2 22816:3 22837:2 22844:2 22845:8 22847:1 22854:1 22862:1 22879:1 22888:1 22900:1 22903:1 22905:2 22930:1 22938:1 22947:1 22953:1 22960:1 22963:1 22973:2 22975:1 22984:1 22985:1 22998:1 23011:1 23017:1 23028:1 23032:1 23038:1 23039:2 23043:2 23044:1 23047:1 23060:1 23070:1 23077:1 23094:1 23096:1 23136:1 23139:1 23144:1 23160:1 23165:1 23175:1 23180:3 23187:1 23193:2 23202:1 23207:1 23217:1 23225:1 23226:1 23239:1 23254:1 23255:1 23267:2 23280:1 23285:1 23295:1 23301:1 23306:1 23328:1 23339:1 23371:3 23373:1 23377:1 23379:6 23384:1 23387:3 23397:1 23400:1 23402:1 23407:1 23409:1 23420:1 23424:2 23425:3 23445:1 23484:2 23498:1 23502:1 23512:1 23520:2 23534:2 23544:1 23547:1 23559:1 23564:1 23585:3 23586:1 23590:1 23596:1 23600:2 23605:1 23609:2 23625:1 23629:2 23631:2 23644:2 23649:2 23652:1 23668:1 23669:2 23671:2 23677:1 23680:1 23702:2 23712:3 23724:1 23730:1 23738:1 23741:1 23748:1 23758:3 23766:2 23767:1 23778:1 23784:1 23796:1 23804:1 23807:1 23817:1 23826:1 23832:1 23835:1 23840:2 23841:1 23843:1 23847:2 23848:1 23869:1 23887:2 23888:1 23897:1 23900:1 23911:1 23919:2 23948:3 23950:1 23952:2 23956:1 23961:1 23962:5 24004:1 24008:1 24015:1 24030:2 24031:2 24032:1 24034:5 24043:1 24051:5 24066:1 24075:1 24102:1 24108:1 24119:1 24142:1 24156:1 24162:1 24163:2 24167:1 24169:1 24200:7 24207:1 24215:2 24216:2 24221:1 24225:1 24272:1 24283:1 24285:1 24289:1 24292:2 24298:1 24305:1 24314:1 24318:2 24324:1 24348:2 24362:2 24363:4 24383:1 24388:1 24394:1 24399:2 24400:1 24403:1 24405:1 24407:1 24413:1 24417:1 24422:1 24423:1 24424:1 24442:1 24447:1 24448:1 24451:1 24454:1 24467:2 24473:1 24476:1 24477:2 24489:1 24490:1 24499:4 24507:1 24514:1 24517:2 24547:1 24551:1 24566:1 24582:1 24599:1 24600:2 24602:2 24606:1 24608:3 24609:1 24622:1 24629:1 24632:1 24658:1 24670:1 24675:1 24681:1 24720:1 24723:1 24732:1 24737:1 24754:1 24769:1 24773:2 24779:3 24793:3 24850:4 24867:8 24875:1 24894:1 24896:1 24912:1 24946:1 24947:1 24963:2 24964:4 24974:3 24975:4 24978:3 24986:1 24988:1 24989:3 24990:7 25005:1 25011:1 25022:1 25030:1 25047:2 25051:1 25053:1 25060:1 25061:1 25073:4 25077:1 25096:1 25100:2 25105:1 25106:1 25112:1 25114:2 25121:1 25124:1 25129:1 25136:1 25170:1 25172:1 25177:1 25207:1 25233:1 25251:3 25253:1 25256:2 25258:2 25261:2 25265:1 25267:2 25275:5 25290:1 25293:1 25299:1 25305:1 25321:5 25325:1 25341:1 25349:1 25360:1 25364:3 25382:1 25399:1 25422:1 25438:2 25440:1 25442:2 25445:4 25450:1 25457:3 25465:1 25467:1 25469:1 25476:1 25479:1 25486:1 25488:1 25490:1 25493:1 25496:1 25502:1 25507:3 25511:1 25518:3 25536:2 25537:1 25544:2 25557:1 25559:1 25564:1 25577:1 25602:1 25609:1 25611:1 25617:1 25623:1 25625:1 25638:2 25681:2 25684:1 25690:1 25695:6 25713:1 25716:1 25719:1 25720:3 25776:1 25782:1 25800:2 25805:1 25810:1 25846:1 25847:1 25851:1 25859:1 25862:1 25873:1 25886:1 25889:2 25907:1 25930:1 25938:1 25951:1 25968:2 25974:10 25975:1 25981:1 25983:2 25985:1 25990:2 25998:2 26009:1 26021:1 26022:1 26032:1 26041:1 26048:1 26062:1 26066:2 26090:1 26093:2 26102:1 26106:2 26115:1 26120:2 26125:5 26129:2 26149:1 26155:3 26172:1 26174:1 26176:1 26190:1 26194:1 26213:1 26227:2 26230:1 26231:1 26236:1 26250:2 26251:1 26260:1 26261:1 26262:1 26267:1 26278:1 26283:1 26287:1 26289:1 26302:2 26309:2 26316:1 26317:1 26327:1 26328:1 26333:1 26341:1 26358:1 26359:1 26384:1 26399:1 26401:1 26414:1 26425:1 26447:1 26471:1 26481:2 26483:1 26485:1 26495:1 26508:1 26541:2 26545:2 26552:1 26557:4 26583:1 26584:2 26585:1 26602:1 26603:1 26606:1 26609:1 26626:1 26636:1 26638:2 26669:1 26677:1 26702:1 26708:2 26729:1 26739:1 26741:7 26764:2 26772:2 26774:1 26777:2 26799:1 26804:1 26805:1 26837:2 26838:2 26868:1 26870:1 26873:2 26885:1 26902:3 26908:2 26918:1 26919:1 26923:1 26933:1 26937:2 26968:1 26978:2 26979:1 26988:1 27005:1 27020:1 27028:1 27040:2 27055:1 27057:1 27063:1 27070:1 27072:2 27074:4 27083:1 27084:2 27085:5 27087:2 27094:3 27095:1 27101:1 27103:1 27104:1 27108:2 27114:1 27115:1 27128:1 27134:3 27140:1 27167:2 27178:4 27191:2 27198:1 27199:1 27205:1 27206:2 27222:1 27227:1 27238:1 27247:2 27248:2 27249:2 27285:1 27287:2 27295:1 27297:1 27315:1 27319:3 27332:1 27338:2 27351:1 27376:1 27381:1 27384:1 27395:3 27405:1 27408:1 27427:1 27437:1 27439:3 27445:2 27446:1 27459:1 27467:5 27475:1 27485:1 27491:1 27512:3 27541:1 27543:1 27546:1 27568:1 27591:1 27601:1 27616:1 27654:1 27667:1 27674:2 27684:1 27685:1 27770:3 27773:1 27794:1 27795:1 27812:1 27817:1 27825:3 27830:1 27846:2 27851:4 27875:2 27881:1 27882:1 27890:1 27896:2 27907:1 27920:1 27929:1 27941:1 27944:2 27957:1 27967:1 27991:1 27994:1 27997:1 28000:2 28041:1 28042:1 28051:2 28053:2 28065:1 28074:1 28078:2 28081:2 28086:1 28092:1 28094:1 28098:1 28102:2 28103:1 28104:4 28109:1 28139:3 28149:2 28151:1 28168:2 28172:1 28176:3 28179:1 28183:2 28191:1 28193:2 28196:2 28205:2 28208:1 28211:3 28212:1 28213:2 28220:2 28225:1 28227:1 28245:1 28249:1 28251:1 28252:1 28277:1 28281:1 28299:5 28300:2 28349:1 28352:1 28388:1 28389:1 28390:1 28397:1 28402:1 28405:1 28411:1 28412:1 28414:1 28418:1 28443:1 28444:4 28448:3 28449:1 28477:1 28478:1 28482:1 28493:2 28499:1 28526:1 28528:1 28530:1 28548:1 28573:1 28574:2 28580:2 28582:1 28583:3 28586:1 28592:1 28599:1 28613:2 28616:1 28622:4 28628:1 28639:1 28644:1 28651:1 28658:2 28659:1 28670:1 28671:1 28674:1 28691:1 28716:1 28725:1 28728:2 28739:4 28741:2 28742:1 28743:1 28748:4 28753:1 28759:2 28766:1 28775:1 28804:2 28811:1 28827:1 28842:1 28845:1 28846:1 28854:2 28855:1 28884:1 28896:1 28921:1 28930:1 28939:1 28960:1 28997:1 29006:2 29007:1 29009:1 29015:1 29018:1 29038:1 29053:3 29056:2 29059:1 29061:2 29062:2 29071:1 29076:3 29087:1 29092:1 29096:1 29102:1 29122:1 29123:1 29124:1 29128:1 29133:1 29145:1 29148:1 29163:3 29176:1 29177:1 29178:1 29179:1 29183:2 29185:1 29188:5 29205:1 29215:1 29253:2 29266:2 29268:1 29277:1 29290:2 29296:1 29298:2 29306:2 29321:1 29345:2 29355:2 29367:1 29369:1 29388:1 29392:1 29402:2 29409:1 29417:2 29422:1 29448:1 29456:1 29467:1 29468:2 29479:2 29483:1 29487:1 29491:1 29504:1 29513:1 29537:1 29557:1 29577:1 29611:1 29617:1 29620:2 29637:1 29642:2 29647:2 29660:1 29661:1 29663:1 29673:1 29674:1 29681:1 29694:1 29701:2 29707:1 29708:1 29718:2 29725:1 29731:1 29738:2 29739:1 29746:3 29753:1 29756:1 29760:1 29771:2 29773:2 29774:1 29780:2 29806:14 29811:1 29815:1 29819:1 29821:2 29831:1 29835:1 29837:2 29840:1 29852:8 29853:2 29861:1 29865:3 29867:1 29882:3 29904:1 29922:1 29930:3 29939:1 29974:1 29979:1 29999:1 30020:3 30033:1 30045:3 30047:1 30053:2 30056:1 30068:1 30075:1 30078:2 30083:1 30090:2 30104:1 30109:1 30114:1 30116:1 30118:1 30121:1 30123:3 30149:1 30160:1 30164:1 30174:1 30177:1 30182:1 30189:1 30196:1 30199:1 30212:1 30220:1 30234:1 30236:1 30242:1 30247:3 30251:1 30263:2 30271:1 30275:1 30281:1 30300:1 30301:1 30302:1 30305:1 30315:1 30317:1 30325:1 30330:3 30365:2 30367:1 30381:1 30390:2 30392:2 30399:1 30412:1 30414:1 30421:2 30428:1 30429:1 30458:1 30459:1 30460:1 30477:1 30479:1 30494:1 30498:1 30517:1 30520:2 30523:1 30526:1 30554:1 30556:2 30557:1 30558:2 30559:2 30567:1 30572:1 30574:1 30578:1 30582:1 30597:1 30599:1 30602:2 30618:1 30621:1 30625:1 30676:1 30683:1 30700:1 30702:1 30712:1 30713:1 30714:1 30742:1 30750:2 30759:1 30783:1 30803:1 30812:1 30867:2 30869:1 30879:1 30922:4 30931:1 30935:1 30942:1 30949:1 30968:1 30973:5 30978:1 30981:1 30983:1 30984:1 30996:1 30999:1 31002:1 31005:2 31013:1 31030:2 31036:1 31037:1 31046:2 31054:1 31071:1 31076:1 31083:2 31084:1 31087:1 31090:4 31098:1 31100:1 31121:1 31124:1 31133:2 31135:1 31143:2 31179:1 31182:3 31183:1 31190:1 31195:2 31197:1 31198:1 31201:1 31208:1 31228:2
|
c4c7ce7f2df03094cb88d0503d6e5d3c59ae54f8 | 268a9da1d2dd8fa0f68e8f013ea104c40b995fb4 | /scilab/kick.sce | 8c77cad77b9fdbfb91b8ea10a9977cd0e5a96a1a | [] | no_license | DipikaPawar12/Octapad | 3887659b5084ae13e922784ab707537928956b38 | ca485e553c9703b8d8c273eb4764df8481e5448a | refs/heads/master | 2022-12-08T00:03:45.336396 | 2020-08-15T12:55:49 | 2020-08-15T12:55:49 | 287,887,411 | 1 | 0 | null | 2020-08-16T06:28:24 | 2020-08-16T06:28:23 | null | UTF-8 | Scilab | false | false | 1,415 | sce | kick.sce | clear;
clf;
function y= pulse(t)
N = length(t);
y = zeros(1,N);
for i = 1 : N/6
y(i) = 0.9*(t(i)-t(1))/(N/6-t(1));
end
for i = N/6 + 1: 2*N/6
y(i) = 0.9;
end
for i = 2*N/6+1 : 4*N/6
y(i) = (-5.4*t(i))+1.8;
end
for i = 4*N/6 + 1: 5*N/6
y(i) = -0.9;
end
for i = 5*N/6+1 : 6*N/6
y(i) = (5.4*t(i))-5.4;
end
// plot2d3(t,y);
endfunction
dt=0.0001;
t=0:dt:2;
t1=0:dt:0.023;
y1=41.826086956522*t1;
t2=0.023+dt:dt:0.088;
t3=0.088+dt:dt:0.318;
t4=0.318+dt:dt:0.972;
t5=0.972+dt:dt:2;
y2=0.076923076923077*t2+0.96023076923077;
y3=-2.834347826087*t3+1.2164226086957;
y4=-0.36865443425077*t4+0.43233211009174;
y5=-0.11783439490446*t5+0.18853503184713;
y=[y1 y2 y3 y4 y5];
t6 = 0.75 +dt: dt : 2;
f = 5;
y6 = 0.6*sin(2*%pi*f*t6);
//plot(t6,y6);
t7 = 0 : dt : 0.0400;
t8 = 0.0400+dt: dt : 0.1;
t9 = 0.1+dt : dt : 0.18;
t10 = 0.18+dt : dt : 0.28;
t11 = 0.28+dt : dt : 0.42;
t12 = 0.42+dt : dt : 0.6;
t13 = 0.6+dt : dt : 0.75;
x1 = pulse(t7);
x2 = pulse(t8);
x3 = pulse(t9);
x4 = pulse(t10);
x5 = pulse(t11);
x6 = pulse(t12);
x7 = pulse(t13);
x = [x1 x2 x3 x4 x5 x6 x7];
t14 = [t7 t8 t9 t10 t11 t12 t13];
y7 = [x y6];
t15 = [t14 t6];
//plot(t,y7);
y8 = y7.*y;
plot2d3(t,y8);
sound(y8);
xlabel("tX(10^-4)seconds","fontsize",4);
ylabel("amplitude","fontsize",4);
title("kick sound","fontsize",4);
wavwrite(y8,"kick.wav");
|
7082bd65a513c1872447038e50cbbc55f49b4195 | 449d555969bfd7befe906877abab098c6e63a0e8 | /506/CH10/EX10.3.b/Example10_3b.sce | 274ef8d7c057b8255036a154eab515d2d2838e0f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Example10_3b.sce | clear;
clc;
//Caption:To find the range of possible values of Id in FET 2N3684 from the graph
//In the figure given The line of Rs=3.3K cuts Vp = -2V at Id = 0.4 mA
Idmin = 0.4;//in mA
disp('mA',Idmin,'Idmin=');
//In the figure given The line of Rs=3.3K cuts Vp = -5V at Id = 1.2 mA
Idmax = 1.2;//in mA
disp('mA',Idmax,'Idmax=');
//end |
c1cac67d58a9fd45958ab340bbec4164a09716c6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2921/CH8/EX8.2/Ex8_2.sce | 8bbc929c6b95411b3eda18d66bb6c1fdb117167e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,055 | sce | Ex8_2.sce | clc;
clear;
mprintf('MACHINE DESIGN \n Timothy H. Wentzell, P.E. \n EXAMPLE-8.2 Page No.163\n');
Dw=0.105; //[in] Wire diameter
Dm=0.620; //[in] Mean diameter of spring
F=35; //[lb] Load
G=11.85*10^6; //[lb/in^2] Shear modulus of elasticity
Delta=0.5; //[in] Deflection
Na=Delta*G*Dw^4/(8*F*Dm^3); //[] Number of active coils
Nat=Na+2; //[] Total number of coils
Lf=2; //[in] Free length of spring
P=(Lf-2*Dw)/Nat; //[in] Pitch (Table 8.1)
mprintf('\n Pitch is %f in.',P);
k=G*Dw^4/(8*Dm^3*Na); //[lb/in] Spring rate
mprintf('\n Spring rate is %f lb/in.',k);
mprintf('\n The total number of coils necessary to meet design criteria are %f.',Nat);
//Note: The deviation of answer from the answer given in the book is due to round off error.(In the book values are rounded while in scilab actual values are taken)
//Note: The deviation of answer from the answer given in the book is due to round off error.(In the book values are rounded while in scilab actual values are taken)
|
8f1c4f2716c901d224d9b47a09f4d2dd45535291 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1061/CH2/EX2.14/Ex2_14.sce | 74d89cac96aa8e93c1efa554f0e9a05733c0884a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 325 | sce | Ex2_14.sce | //Ex:2.14
clc;
clear;
close;
n1=1.46;// core refractive index
dl=0.01;// index difference
n_2=n1-(n1*dl);// cladding refractive index
x_c=(asin(n_2/n1))*180/%pi;// critical angle in degree
n_m=sqrt(n1^2-n_2^2);// numerical aperture
printf("critical angle = %f degree",x_c);
printf("\n numerical aperture = %f",n_m); |
d43e8fbfac86204dece883abcd50be2ec9497550 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2015/CH1/EX1.7/1_7.sce | 268f3ad7cfbd65eaabd37858982a292779c0a6ba | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 658 | sce | 1_7.sce | clc
//initialisation of variables
t1=295 //temparature in k
r=5.25
g=1.4
t3=923 //temparature in k
tc=511 //temparature in k
tt=633 //temparature in k
//CALCULATIONS
t2=t1*(r)^((g-1)/g)
t4=t3/(r)^((g-1)/g)
effb=1-((t4-t1)/(t3-t2))
wt=t3-t4
wc=t2-t1
wr1=(1-(t2-t1)/(t3-t4))
ctwr1=(t2-t1)/(t3-t4)
effc=(t2-t1)/(tc-t1)
efft=(t3-tt)/(t3-t4)
effbr=1-((tt-t1)/(t3-tc))
wr2=1-((tc-t1)/(t3-tt))
ctwr2=(tc-t1)/(t3-tt)
//RESULTS
printf('work ratio and compressed turbine wrok ratio in first part of problem are %2f and %2f',wr1,ctwr1)
printf('\nwork ratio and compressed turbine wrok ratio in second part of problem are %2f and %2f',wr2,ctwr2)
|
c2134dbbce320ed18ce1213e289ffbd7984535f1 | da61229fdeb9703e2f3d8a7ff11c4cb8fe3c38bd | /T3/tst2_pt.tst | 73eaf48547920d55af06c65d7eaec01786ecc7bf | [] | no_license | andreianghel/ACS | 152eb64c14064ff7c88a1afd64ea370445764996 | 837c2ec0265b8d0d9ab4008385fc25cf29e65e98 | refs/heads/master | 2021-05-27T18:25:12.818905 | 2013-03-19T17:12:30 | 2013-03-19T17:12:30 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 99 | tst | tst2_pt.tst | a = 3
b = true
h = 99
c = a + 3 * 4 + 5 * 6 * 7 + 1
d = a + c * a * 1 + h
e = b + false * true |
6d01e0c4010ec79ec45fa3580ec3d47db4f5b3ea | 51c4c028f490213495b3a6df77e94afcfa03c254 | /scara/check_kinematics_algorithms.sce | ffeb84714b11a9fe6923cd6cf06bd38eaaa19921 | [] | no_license | dgerod/robotics-utils | d8b130290ba77a3aa2fbe9502c39cfba78f40609 | 5d5d6c4c426de3bf859303b56c431ecd4b203d86 | refs/heads/master | 2020-05-17T08:31:03.702958 | 2016-08-20T11:14:57 | 2016-08-20T11:14:57 | 32,637,117 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 802 | sce | check_kinematics_algorithms.sce | // ============================================================================
// check_kinematics_algorithms.sce
// ============================================================================
// Kinematics parameters (h,l1,l2)
L = [30,30,40];
// Position to solve
p = [30,0,10]';
// -----------------------------------------------------------------------------
// Inverse kinematics of Scara robot ---
[ok,J] = scrInvKinem( L,p );
j1 = J(:,1);
j2 = J(:,2);
// Direct kinematics of Scara robot ---
[ok_1,tcp0_1] = scrDirKinem( L,j1 );
[ok_2,tcp0_2] = scrDirKinem( L,j2 );
// Print solution ---
disp(L,"Kinem params");
disp(p,"Target position");
solution = [j1, tcp0_1, j2, tcp0_2];
disp(solution,"Solution");
// =============================================================================
|
8ac2526201019cdc66ed17da4f7f193fd92d625f | 449d555969bfd7befe906877abab098c6e63a0e8 | /273/CH4/EX4.1/ex4_1.sce | d9fa870d8d2fdd245a4e69dddebb824557d8b887 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 687 | sce | ex4_1.sce | clc;clear;
//Example 4.1
//Calculation of acceleration,time taken,distance covered and kinetic energy of an accelerating proton
//given values
m=1.67*10^-27;//mass of proton in kg
q=1.602*10^-19;//charge of proton in Coulomb
v1=0;//initial velocity in m/s
v2=2.5*10^6;//final velocity in m/s
E=500;//electric field strength in V/m
//calculation
a=E*q/m;//acceleration
disp(a,'acceleration of proton in (m/s^2) is:');
t=v2/a;//time
disp(t,'time(in s) taken by proton to reach the final velocity is:');
x=a*t^2/2;//distance
disp(x,'distance (in m)covered by proton in this time is:');
KE=E*q*x;//kinetic energy
disp(KE,'kinetic energy(in J) at the time is:');
|
cdd3dd712f638b2ee46617f8d6c06e02656f840b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1898/CH10/EX10.10/Ex10_10.sce | 05a8d31667c0aedd043b06145ff53321d8f8c574 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 888 | sce | Ex10_10.sce | clear all; clc;
disp("Scilab Code Ex 10.10 : ")
//Given:
a = 300; //mm
b = 50; //mm
t = 20; //mm
E_cu = 120*10^3; //MPa
nu_cu = 0.34;// Poisson's ratio
//By inspection:
sigma_x = 800; //MPa
sigma_y = -500; //MPa
tou_xy = 0;
sigma_z = 0;
//By Hooke's Law:
ep_x = (sigma_x/E_cu) - (nu_cu/E_cu)*(sigma_y + sigma_z);
ep_y = (sigma_y/E_cu) - (nu_cu/E_cu)*(sigma_x + sigma_z);
ep_z = (sigma_z/E_cu) - (nu_cu/E_cu)*(sigma_y + sigma_x);
//New lengths:
a_dash = a + ep_x*a;
b_dash = b + ep_y*b;
t_dash = t + ep_z*t;
//Display:
printf('\n\nThe new length = %1.2fmm ',a_dash);
printf('\nThe new width = %1.2f mm ',b_dash);
printf('\nThe new thickness = %1.2f mm ',t_dash);
//--------------------------------------------------------------------------END--------------------------------------------------------------------------------------
|
0d4ac5424adfdef78f157608cdeb02c282293138 | 090aefac4d8d48efba8d30891bd37b7b82b2ad91 | /LP/haskell-project/tests/2.tst | 00c20a85300d1f1a8694381f18f3633725f4fde1 | [
"MIT"
] | permissive | landlockedboat/fib | 04a3818091eeffcdb734c8db968024ac76e70e70 | 5b6c3d3029a49b06740a5ea6be81c39be3ff5173 | refs/heads/master | 2022-05-08T23:25:46.868058 | 2018-08-20T15:04:33 | 2018-08-20T15:04:33 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 235 | tst | 2.tst | let seq = (Seq [(Input ("Z")), (Cond (AND (Gt (Var "Z") (Const 0)) (Gt (Const 30) (Var "Z"))) (Seq [(Assign ("M") (Const 2))]) (Seq [(Assign ("V") (Const 0))]))])
let symt = (SymTable [])
let ent = [40]
interpretCommand symt ent seq
|
5a3a19348f6a4d85a3a457723d42b6ac63b3d043 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1067/CH33/EX33.03/33_03.sce | b05c0104ed4e457452f9849815cb529335e65c8e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 211 | sce | 33_03.sce | clear;
clc;
per=.2;
r=10e6;
R=7;
v=11e3;
i=r/(sqrt(3)*v);
i=round(i);
i0=per*i;
v=v/sqrt(3);
p=R*i0/v*100;
p=round(p*10)/10;
printf("percentage of unprotected winding for earth fault=%fpercent",p);
|
471b7c8e9c178ee0c36702b37d09c8d10bece237 | a8592d34f144b71794ebf30f1c2a1b5faf0b053c | /AkarPersamaan/scilab/secant.sce | 1011e749d1662203f7f6c266d8f62b8fe6bc3b93 | [] | no_license | f-fathurrahman/ffr-MetodeNumerik | ee9a6a7153b174b1ba3d714fe61ccbd1cb1dd327 | e3a9da224c0fd5b32e671708e890018a3c4104c4 | refs/heads/master | 2023-07-19T22:29:38.810143 | 2023-07-07T10:02:34 | 2023-07-07T10:02:34 | 107,272,110 | 2 | 2 | null | null | null | null | UTF-8 | Scilab | false | false | 1,161 | sce | secant.sce | function root = secant( f, x, tol, NiterMax )
if ~exists("tol", "local")
tol = 1e-9
end
if ~exists("NiterMax", "local")
NiterMax = 30
end
x_old = 0.0
fx_old = 0.0
printf("\nRoot searching via secant method\n")
printf("Initial guess: [%18.10f]\n", x)
printf("Tolerance: %18.10e\n", tol)
printf("secant will iterate up to %d maximum iterations.\n", NiterMax)
printf("secant: Begin iteration\n")
for iter = 1:NiterMax
fx = f(x)
printf("Secant: %5d (%18.10f,%18.10e)\n", iter, x, fx )
if abs(fx) < tol
printf("Secant: Convergence achieved\n")
root = x
return
end
if abs( x - x_old ) < %eps
printf("Secant: abs(x - x_old) is less than tol eps\n")
root = x
return
end
if iter == 1
SMALL = 1e-10
fx_old = f(x+SMALL)
dfx = abs( fx - fx_old ) / SMALL
else
dfx = ( fx - fx_old ) / ( x - x_old )
end
if abs(dfx) < %eps
printf("ERROR: very small derivative\n")
root = x
return
end
x_old = x
fx_old = fx
dx = -fx/dfx
x = x + dx
end
printf("Too many iterations")
endfunction
|
4de12fe3df4ef6b07ba8781b9f4b3a821523c91c | 56743f362de98f910919780918c86679ec136d3e | /exercicios-propostas-fichas/ficha5.sce | ea4b15c2b7b8ae1c9fce0747333d71112d0b4a12 | [] | no_license | andre-paulo98/fichas-ei-a1s2-MD | aaf75e6b45cbac7ebbf92949deb783ce6f1201b7 | 99c50eb08cf409ce8e5aa8301728dbe9148e16c5 | refs/heads/master | 2022-02-24T23:13:49.293944 | 2019-10-06T17:50:26 | 2019-10-06T17:50:26 | 171,472,323 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,354 | sce | ficha5.sce | clc
clear
// ficha 5
R = [1 0 1 0; 1 0 1 0; 1 1 0 0; 0 0 0 1]
disp("1) a) A matriz R:")
disp(R)
disp("1) b) A matriz inversa:")
disp(R')
function S=Um(M)
[L, C] = size(M)
for i = 1:L
for j = 1:C
if(M(i,j) > 1)
M(i,j) = 1
end
end
end
S = M
endfunction
disp("1) c) A matriz R^2")
disp(Um(R*R))
disp("1) c) A matriz R^3")
disp(Um(R^3))
// A matriz R:
// 1. 0. 1. 0.
// 1. 0. 1. 0.
// 1. 1. 0. 0.
// 0. 0. 0. 1.
// não é reflexiva pois por exemplo falta o (2,2)
// não é simétrica pois existe o 2R1, mas não existe o 1R2
// não é antissimétrica pois existe o 3R1 e 1R3 mas 1 != 3
// não é transitiva pois existe 1R3 e 3R2 mas não existe 1R2
// e)
// fecho reflexivo
disp("1) e) i)")
MR = Um(R + eye(4,4))
disp(MR)
// fecho simétrico
disp("1) e) ii)")
MS = Um(R + R')
disp(MS)
// R + (2,1)
// fecho transitivo
disp("1) e) iii)")
MT = Um(R + R^2 + R^3 + R^4)
disp(MT)
// R + (1,2)
disp("1) f) relação de equivalência")
disp(Um(R + MR + MS + MT))
function R=is_reflexiva(M)
R = %T
[L, C] = size(M)
for i = 1:L
if(M(i,i) <= 0)
R = %F
end
end
endfunction
function R=is_simetrica(M)
R = isequal(M, M')
endfunction
|
bb0f21f16e4a18b247f478f115fb3c47b8501fb1 | fd6a414e5722e920e5ebe08c77fe0f70b29e77cf | /Ztransfer.sce | bcaa72697a7ebbed4113edd8a6405572f6875373 | [] | no_license | JBouis/AudioProcessing | e774bdfaf38207643d441f975a96773ae3cbbd24 | c9f81b8d5ce447b014707b309ef209530219adc0 | refs/heads/master | 2021-05-18T02:21:40.839402 | 2020-03-29T15:22:16 | 2020-03-29T15:22:16 | 251,063,576 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 131 | sce | Ztransfer.sce | function [ Ztransfer ]= ztransfer_new ( sequence ,n)
z = poly (0, ' z ' , ' r ' )
Ztransfer = sequence *(1/ z)^n'
endfunction
|
a586b2e4fd499119b4aa0915fc91855f19b278b1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1022/CH7/EX7.3/7_3.sce | e1ddd50054b0a61c53d34755333d58a79b3114ff | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 208 | sce | 7_3.sce | clc
//initialisation of variables
m= 10 //lbf
T= 120 //F
T1= 275 //F
u1= 98.9 //Btu/lbm
u2= 125.6 //Btu/lbm
//CALCULATIONS
Q= m*(u2-u1)
//RESULTS
printf ('Heat transferred to the tank= %.f Btu',Q)
|
48d27986333a8d56dd55486b13c6875e84dac164 | 6e8df5b4cc6a12833566b3b67b0160d1937be025 | /Multimorphic_testing_data_code/code/scilab/coco/scripts/scilab/v2/script_result.sci | 931a56ae69b8640a52bd1c34ef0dd9607098b127 | [] | no_license | templep/TSE_MM_test | 2b2cc79b9e6d46a80bf692227f367438adeca3f3 | 4d3c08489c182b77418fc5d4e55377d5b68e8334 | refs/heads/master | 2020-03-22T22:01:12.897309 | 2019-06-13T07:50:42 | 2019-06-13T07:50:42 | 140,728,734 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 6,684 | sci | script_result.sci |
//a function to load all csv files from a given directory
// inputs :
// - path : the path where files containing observations over executions
// - fileregex : a simple regex containing data to process
//files containing data to process must be in a csv format with columns separated by ';'
//decimal float values given by a '.' and every cell will be intepreted as a string
// outputs :
// - x : a matrix containing every read data contained in files
function x=load_csv_files(path,fileregex)
x=[];
//not sorted list specifically
csv_files=listfiles(path+fileregex+'.csv');
//for each file; read data and put them in a matrix to be returned
for i=1:size(csv_files,1)
////@DEBUG : display the name of the current file to be read
//disp(csv_files(i))
//read the file and remove first element (name of the different columns)
curr=read_csv(csv_files(i));
curr(1,:)=[];
//concatenate to previous data
x=[x;curr];
end
endfunction
//a function to normalize and take care of missing values
//the normalization is in [0;1],
//missing values are replaced with '0' (at worst will add a bin)
//each column are treated separately in turn and replace previous values
//inputs :
// - data : all data that will be processed (even columns which are not of interest)
// - idx_col : indexes of columns of interest
//outputs :
// - d : matrix with all columns but columns are interest are normalized and missing value are replaced
function d=normalize_and_fill(data,idx_col)
//copy before replacing needed columns
d = data;
//for each column of interest, check if no value miss and if normalize in [0;1]
for i = 1:prod(size(idx_col))
//consider specific column
c = data(:,idx_col(i));
//remove possible"-nan" replacing them by '0'
perf_red = c;
perf_red(find(c == "-nan"))='0';
////normalize
//find columns which are not between [0;1]
//normalize columns
temp=strtod(perf_red);
if(find(temp > 1 | temp < 0) ~= [])
ma = max(temp);
mi = min(temp);
temp = (temp-mi)/(ma-mi);
end
//replace column with possible changes
// d=d';
// d(idx_col(i),:) = temp';
// d=d';
d(:,idx_col(i)) = string(temp);
end
//disp(size(d));
endfunction
//a function to create histograms needed to compute dispersion scores
//it also computates associate dispersion scores to videos
//scores and histograms are stored in the given file
//inputs :
// - data : data to build histograms and dispersion scores
// - path : the path to the folder where results will be saved
// - filename : the file name containing results (histograms + dispersion score)
// - idx_col : the column indexes containing property of interest
function process_data(data,path,filename,idx_col)
//scan csv data to have proper format (string and double are mixted) ->
//everything in string with decimal noted '.'
//formatted_data = csvTextScan(data,";",".",'string');
formatted_data = data;
formatted_data = normalize_and_fill(formatted_data,idx_col);
//unique filenames contained in the data file (consider one video at a time)
unique_text_file = unique(formatted_data(:,1));
//prepare output file (column header)
result=["filename","metric","hist"];
//find for each unique filename corresponding rows (= every execution of considered video)
for(i=1:size(unique_text_file,1))
//find each row -> index in the matrix of formatted data
rows = formatted_data(find(formatted_data(:,1) == unique_text_file(i)),:);
//extract corresponding columns and compute histograms as well as dispersion scores
[measure,hist] = compute_metric(rows,idx_col);
//////store results
//because histogram is more than size of matrix -> put into a 1x1 mat
//bins are separated by ' '
hist = strcat(hist,' ');
//concatenation of results
result=[result;unique_text_file(i),measure, hist];
end
//save result
save_result(result,path,filename);
endfunction
// computes the histogram of observations and associated dispersion score
// the dispersion score is computed as follows: disp(S) = (#bin of histogram ~= 0 / # of programs)
// which is the ratio of activated bins to the number of programs to execute
// inputs :
// - m : a matrix containing observations to build histogram and dispersion score
// - idx_col : index of columns of interest containing observations to take into account
// outputs :
// - measure : the computed dispersion score based on observations
// - hist : histogram associated to the dispersion score
function [measure, hist]=compute_metric(m,idx_col)
measure=[];
//retrieve right data -> column(s))
perf=m(:,idx_col);
//convert to double
d=strtod(perf);
////prepare histogram
//number of bins
nb_bins = size(perf,1);
cf =[];
ind=[];
//for each column to process
for i = 1:size(idx_col,2)
//compute histogram between 0 and 1
[tmp_cf,tmp_ind] = histc([0:nb_bins]/nb_bins,d(:,i));
//add to final histogram and frequencies
cf = [cf,tmp_cf'];
ind=[ind,tmp_ind];
end
//finalize dispersion score and convert to string
measure = size(unique(ind,'r'),1);
measure = measure/nb_bins;
measure = string(measure);
//histogram also converted to string
hist = string(cf);
endfunction
//a function to save a matrix in a specified filename
function save_result(m,path,filename)
csvWrite(m,path+filename);
endfunction
//index for precision
index = [2];
//index for recall
//index = [8];
//index for composite
//index = [11,12,13];
//load all csv files from the current directory
//and rewrite them into a single one without headers
//one after an other
all_data=load_csv_files("../../../../../../data/coco/retrieved_perf_from_leaderboard/","coco_*");
save_result(all_data,"../../../../../../results/coco/","all_data_dev_2017.csv");
//all_data=load_csv_files("../../../../../data/coco/","all_data_standard_reduced");
//all_data=load_csv_files("../../../../../data/coco/","all_data_standard_obj_class");
//all_data=load_csv_files("../../../../../data/coco/","all_data_dev_reduced");
//all_data=load_csv_files("../../../../../data/coco/","all_data_dev_obj_class");
process_data(all_data,"../../../../../results/coco/result_dispersion_score/","metrics_hist_Precision_AP_dev_2017.csv",index);
|
da69660e89df6d5c76c10937769f15842dd39044 | 676ffceabdfe022b6381807def2ea401302430ac | /solvers/DiffusionSolver/Tests/ImDiffusion_m6_time_int.tst | 1086630562be51c1c20e285400c715ac21cf259f | [
"MIT"
] | permissive | mathLab/ITHACA-SEM | 3adf7a49567040398d758f4ee258276fee80065e | 065a269e3f18f2fc9d9f4abd9d47abba14d0933b | refs/heads/master | 2022-07-06T23:42:51.869689 | 2022-06-21T13:27:18 | 2022-06-21T13:27:18 | 136,485,665 | 10 | 5 | MIT | 2019-05-15T08:31:40 | 2018-06-07T14:01:54 | Makefile | UTF-8 | Scilab | false | false | 564 | tst | ImDiffusion_m6_time_int.tst | <?xml version="1.0" encoding="utf-8"?>
<test>
<description> 2D unsteady CG implicit diffusion </description>
<executable>DiffusionSolverTimeInt</executable>
<parameters> ImDiffusion_m6.xml</parameters>
<files>
<file description="Session File"> ImDiffusion_m6.xml</file>
</files>
<metrics>
<metric type="L2" id="1">
<value tolerance="1e-08"> 0.00199446 </value>
</metric>
<metric type="Linf" id="2">
<value tolerance="1e-08"> 0.002837 </value>
</metric>
</metrics>
</test>
|
81ab834f97296cc8ea60f6bbd587c4d011aa769a | 449d555969bfd7befe906877abab098c6e63a0e8 | /668/CH5/EX5.2/eg5_2.sce | 5c2d3de973381fff283329101df702fb8b99e65f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 579 | sce | eg5_2.sce | A = 10^-3;
Na = 10^19;
Nd = 10^16;
q = 1.6*10^-19;
Tp = 10^-6;
Tn = 10^-6;
Dp = 10.5;
kT = 26*10^-3; //in eV
T = 300;
Vs = -0.67;
Vf = 0.3;
eRc = 110;
Is = A*eRc*T^2*exp(Vs/kT);
disp(Is,"Reverse saturation current (in Ampere) = ")
I = Is*exp(Vf/kT);
disp(I,"For a forward bias of 0.3 V, the current(in Ampere) = ")
Lp = (Dp*Tp)^0.5;
disp(Lp, "Lp(in cm) = ")
pn = 2.25*10^4;
I0 = A*q*Dp*pn/Lp;
disp(I0,"Saturation current (in Ampere) = ")
disp("For the p-n diode to have the same current that the Schottky diode has at 0.3 V, the voltage required is 0.71 V.") |
714ff90cb350e1f769cf58cded5702fd53cd163a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2561/CH3/EX3.1/Ex3_1.sce | c32cfe76eac5087410266dc2fe676a35a52ba53a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 930 | sce | Ex3_1.sce | //Ex3_1
clc
Vcc=15
disp("Vcc = "+string(Vcc)+" volts") //initialization
VBB=1
disp("VBB = "+string(VBB)+" volts") //initialization
VBE=0.7
disp("VBE = "+string(VBE)+" volts") //initialization
RB=5*(10^3)
disp("resistance,RB = "+string(RB)+ " ohm") //initialization
RL=650
disp("resistance,RL = "+string(RL)+ " ohm") //initialization
Bf=200
disp("Gain,Bf = "+string(Bf)+ " ") //initialization
IB=(VBB-VBE)/RB //Formulae
disp("IB =(VBB-VBE)/RB = "+string(IB)+" ampere") //calculation
IC=IB*Bf //Formulae
disp("IC =IB*Bf= "+string(IC)+" ampere")//calculation
IE=IB+IC //Formulae
disp("IE = IB+IC="+string(IE)+" ampere")//calculation
VCE=Vcc-IC*RL //Formulae
disp("VCE =Vcc-IC*RL= "+string(VCE)+" volts") //calculation
VCB=VCE-VBE //Formulae
disp("VCB = VCE-VBE="+string(VCB)+" volts")//calculation
RB=(Vcc-VBE)/IB //Formulae
disp("resistance,RB =(Vcc-VBE)/IB= "+string(RB)+ " ohm") //calculation
|
5602bf96671833c6270acde9a8b9c52ea4058ebc | 449d555969bfd7befe906877abab098c6e63a0e8 | /2078/CH6/EX6.5/Example6_5.sce | 518f9f30afd200cb5479fd09085919dd850c8fbd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 922 | sce | Example6_5.sce | //Exa 6.5
clc;
clear;
close;
format('v',8);
//Given data :
A=0.92*expm(%i*5.3*%pi/180);//Auxiliary constant
D=A;//Auxiliary constant
B=65.3*expm(%i*81*%pi/180);//Auxiliary constant
ZT=100*expm(%i*70*%pi/180);//ohm
YT=0.0002*expm(%i*-75*%pi/180);//S
C=(A*D-1)/B;//Auxiliary constant
A0=A*(1+2*YT*ZT)+B*(YT)+C*ZT*(1+YT*ZT);//constant
B0=2*A*ZT+B+C*ZT^2;//ohm//constant
C0=2*A*YT*(1+YT*ZT)+B*YT^2+C*(1+YT*ZT)^2;//mho or S//constant
D0=A0;//constant
disp("Constant A0, magnitude is "+string(abs(A0))+" and angle in degree is "+string(atand(imag(A0),real(A0))));
disp("Constant B0(ohm), magnitude is "+string(abs(B0))+" and angle in degree is "+string(atand(imag(B0),real(B0))));
disp("Constant C0(S), magnitude is "+string(abs(C0))+" and angle in degree is "+string(atand(imag(C0),real(C0))));
disp("Constant D0, magnitude is "+string(abs(D0))+" and angle in degree is "+string(atand(imag(D0),real(D0))));
|
0c24a11191582c95ff6b331e1ec794b91859df5f | 449d555969bfd7befe906877abab098c6e63a0e8 | /260/CH3/EX3.3/3_3.sce | 68721a5afa895df8df815dd98aabe01dbbed187f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,239 | sce | 3_3.sce | //Eg-3.3
//pg-71
clear
clc
// Matrix dimensions for a 3*3 coefficient matrix
n=3;
//First pass
k=0;
//Number of divisions per pass i.e for a particular value of 'k'
ndiv=n-k-1;
//Number of multiplications
nmul=(n-k)*(n-k-1);
//Total number of multiplications and divisions
ntot=nmul+ndiv;
//Displaying result
disp("total number of divisions and multiplications from formulae derived")
disp(ntot)
//Verifying result from example 3.2 by taking k=1(first pass)
// Matrices A and B (AX=B)
a=[1 1 -1;1 2 -2;-2 1 1];
[n,n]=size(a);
b=[1;0;1];
//Augumented matrix of A and B
auga=[a b];
//initialising nm(no of multiplications),nd(no. of divisions)
nd=0;
nm=0;
//Forward elimination
for k=1//only first pass is considered
for i=(k+1):n
factr=auga(i,k)/auga(k,k);
nd=nd+1;
auga(i,:)=auga(i,:)-factr*auga(k,:);
nm=nm+3;//since each row has 3 elements of A,hence 3 multiplications
end
end
//Total number of divisions and multiplications
nt=nd+nm;
//Verifying result
disp("total number of divisions and multiplications from code of example 3.2")
disp(nt)
disp("both are same") |
b08fb39b92dd18c71c21e2e68615d9ed6c1ec507 | 449d555969bfd7befe906877abab098c6e63a0e8 | /710/CH10/EX10.9/10_9.sci | 22e105557f3b0c78e0fac9f0ac25719c11945f8d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 423 | sci | 10_9.sci | clc();
clear;
//To determine the potential diference
h=6.626*10^-34; //plancks constant
lambda=589*10^-9; //wavelength in m
m=9.1*10^-31; //mass of electron
e=1.6*10^-19;
V=((h^2)/((lambda^2)*2*m*e))*10^6 //potential diference
printf("The potential difference through which an electron should be accelerated to have a wavelength of 589 nm is %f microV ",V); |
44e0be0ef9003c64c822011d000345d15a5c0ba8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1241/CH2/EX2.38/exa2_38.sce | b9dfdd3efa7aea2c29e49c8cb88850b363eb2f4d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | exa2_38.sce | //Example 2-38//
//add -17 to -30//
clc
//clears the console//
clear
//clears all exisiting variables//
x=bitcmp(17,8)
y=bitcmp(30,8)
//complement of the decimal numbers 17 and 30//
z=1
u=x+z
v=y+z
//1 is added to the complements//
w=u+v
a=dec2bin(w)
//binary conversion of the decimal number//
disp('binary form of number obtained by adding -17 to -30')
disp(a)
//result is displayed//
disp(' the msb is discarded,so eight bit representation is the answer in binary form ')
a=dec2bin(w-(2^8))
disp(a)
//final result is displayed//
|
bedda8f9ee4706b1544f119bb1e934a5728c44b7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3543/CH8/EX8.49/EX8_49.sce | 6ca8c9fb3cb07327d6685d612991295feee985c3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 701 | sce | EX8_49.sce | // Example 8.49
// Calculation of viability of digital link.
// Page no 503
clc;
clear;
close;
//Given data
M=-10; // Mean optical power
S=-41; // Receiver sensitivity
TS=18.2; // Total system margin
SP=3; // Split loss
C=1.5; // Connector loss
SM=6; // Safety margin
// Net margin between LED and receiver
N=M-S;
// Total system loss
T=TS+SP+C+SM;
// Excess power margin
E=N-T;
//Displaying results in the command window
printf("\n Excess power margin(in dB) = %0.1f ",E);
// The answers vary due to round off error
|
97c72e2a183be6d01e6ea94d285f6f0b98004d6e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2078/CH5/EX5.6/Example5_6.sce | 4a116f3c93cba47734f778e81e5157c338148896 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 604 | sce | Example5_6.sce | //Exa 5.6
clc;
clear;
close;
//Given data :
l=3;//km
P=3000;//KW
VSL=11*10^3;//volt
R=l*0.4;//ohm
X=l*0.8;//ohm
VS=VSL/sqrt(3);//Volts
pf=0.8;//power factor
cos_fi_r=pf;
sin_fi_r=sqrt(1-cos_fi_r^2);
//VS=VR+I*(R*cos_fi_r+X*sin_fi_r);//V
I_into_VR=P*1000/3/cos_fi_r;//VA
//VR^2-VS*VR+I_into_VR*(R*cos_fi_r+X*sin_fi_r);
p=[1 -VS I_into_VR*(R*cos_fi_r+X*sin_fi_r)];
VR=roots(p);
VR=VR(1);//taking greater value
I=I_into_VR/VR;//A
VRL=sqrt(3)*VR;//volt
disp(VRL,"Line voltage at load end(volt) : ");
Eta_T=P*1000/(P*1000+3*I^2*R)*100;//%
disp(Eta_T,"Transmission Efficiency(%) : ");
|
e9bad72dcb3e95e78241f3ec43f2af8b4d05efdc | 449d555969bfd7befe906877abab098c6e63a0e8 | /2642/CH11/EX11.4/Ex11_4.sce | 3a1a611560441c10dc76bbdd815f2f5c85194a12 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,122 | sce | Ex11_4.sce | // FUNDAMENTALS OF ELECTICAL MACHINES
// M.A.SALAM
// NAROSA PUBLISHING HOUSE
// SECOND EDITION
// Chapter 11 : SINGLE-PHASE MOTORS
// Example : 11.4
clc;clear; // clears the console and command history
// Given data
V_t = 220 // supply voltage in V
f = 50 // frequency in Hz
Z_m = 4+%i*3.5 // main winding impedance of motor in ohm
Z_s = 5+%i*3 // starting impedance of motor in ohm
R_s = 5 // from Z_s
X_s = 3 // from Z_s
// caclulations
alpha_m = 41.2 // angle in degree from Z_m
// Let X_c be connected in series with the starting winding. Then the total impedance of starting winding is Z_s = Z_m-%i*X_c
// The torque will be the maximum when the angle between the starting winding and main winding currents in 90 electrical degree.The value of the angle of the starting winding current is
alpha_s = alpha_m-90
X_c = X_s-R_s*tand(alpha_s)
C = 1/(2*%pi*f*X_c) // starting capacitance to get maximum torque in F
// display the result
disp("Example 11.4 solution");
printf(" \n Starting capacitance for getting maximum torque \n C = %.2e F \n", C );
|
85ba1d392ba6f0b66c57bc6a56c11d3bb8acc8b1 | f8069f807511c33c023dd3240987dba02f91c33e | /src/gnu960/src/lib/libfp/build/dpopns.tst | 72274429e330d46d218f518cb2265b9552fa33bc | [
"BSD-2-Clause"
] | permissive | DrItanium/i960 | 37bbbfbd6afff11093d0627cba57fedc9f956e97 | 6736a0ca299fbb59f5813ed22ff7d94fdb8cbdc8 | refs/heads/master | 2021-09-28T10:43:04.057666 | 2021-09-09T16:43:06 | 2021-09-09T16:43:06 | 146,672,649 | 3 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 6,314 | tst | dpopns.tst | 0 0 + 0 =
0 12.324 + 12.324 =
0 H7ff0000000000000 + h7ff0000000000000 =
0 hfff0000000000000 + hfff0000000000000 =
0 hffffffffffffffff + hffffffffffffffff =
1 1e-30 + 1 =
1 1e-10 + h3ff000000006df38
1.1E+308 1.2E+308 + h7ff0000000000000 =
-1.1E+308 -1.2E+308 + hfff0000000000000 =
3.2E-307 1.05E-307 + 4.25E-307 =
3.2E-308 -2.9E-308 + 0 =
-3.2E-308 2.9E-308 + -0 =
123.45 4.987 + 128.437 =
2.9 345.6 + 348.5 =
1.235 1.765 + 3 =
-1.234 1.765 + 0.531 =
1.234 -1.765 + -0.531 =
-1.234 -1.765 + -2.999 =
12.324 0 + 12.324 =
12.324 h7ff0000000000000 + h7ff0000000000000 =
12.324 hfff0000000000000 + hfff0000000000000 =
12.324 hffffffffffffffff + hffffffffffffffff =
h7ff0000000000000 0 + h7ff0000000000000 =
h7ff0000000000000 12.324 + h7ff0000000000000 =
h7ff0000000000000 h7ff0000000000000 + h7ff0000000000000 =
h7ff0000000000000 hfff0000000000000 + hffffffffffffffff =
h7ff0000000000000 hffffffffffffffff + hffffffffffffffff =
hfff0000000000000 0 + hfff0000000000000 =
hfff0000000000000 12.324 + hfff0000000000000 =
hfff0000000000000 h7ff0000000000000 + hffffffffffffffff =
hfff0000000000000 hfff0000000000000 + hfff0000000000000 =
hfff0000000000000 hffffffffffffffff + hffffffffffffffff =
hffffffffffffffff 0 + hffffffffffffffff =
hffffffffffffffff 12.324 + hffffffffffffffff =
hffffffffffffffff h7ff0000000000000 + hffffffffffffffff =
hffffffffffffffff hfff0000000000000 + hffffffffffffffff =
hffffffffffffffff hffffffffffffffff + hffffffffffffffff =
0 -12.324 + -12.324 =
0 H7ff0000000000000 + h7ff0000000000000 =
0 hfff0000000000000 + hfff0000000000000 =
0 hffffffffffffffff + hffffffffffffffff =
-12.324 0 + -12.324 =
-12.324 h7ff0000000000000 + h7ff0000000000000 =
-12.324 hfff0000000000000 + hfff0000000000000 =
-12.324 hffffffffffffffff + hffffffffffffffff =
h7ff0000000000000 0 + h7ff0000000000000 =
h7ff0000000000000 -12.324 + h7ff0000000000000 =
h7ff0000000000000 h7ff0000000000000 + h7ff0000000000000 =
h7ff0000000000000 hfff0000000000000 + hffffffffffffffff =
h7ff0000000000000 hffffffffffffffff + hffffffffffffffff =
hfff0000000000000 0 + hfff0000000000000 =
hfff0000000000000 -12.324 + hfff0000000000000 =
hfff0000000000000 h7ff0000000000000 + hffffffffffffffff =
hfff0000000000000 hfff0000000000000 + hfff0000000000000 =
hfff0000000000000 hffffffffffffffff + hffffffffffffffff =
hffffffffffffffff 0 + hffffffffffffffff =
hffffffffffffffff -12.324 + hffffffffffffffff =
hffffffffffffffff h7ff0000000000000 + hffffffffffffffff =
hffffffffffffffff hfff0000000000000 + hffffffffffffffff =
hffffffffffffffff hffffffffffffffff + hffffffffffffffff =
1.0000000001 1 - h3ddb7ce000000000 =
0 0 / hffffffffffffffff =
0 12.324 / 0 =
0 H7ff0000000000000 / 0 =
0 hfff0000000000000 / -0 =
0 hffffffffffffffff / hffffffffffffffff =
1.789E+10 1.123E-305 / h7ff0000000000000 =
1.789E+10 -1.123E-305 / hfff0000000000000 =
1.123E-10 1.789E+305 / 0 =
1.789 1.123 / 1.593054318788958147 =
1.789 1.906 / 0.93861490031479538 =
-1.789 -1.906 / 0.93861490031479538 =
-1.789 1.906 / -0.93861490031479538 =
1.789 -1.906 / -0.93861490031479538 =
-12.324 0 / hfff0000000000000 =
12.324 0 / h7ff0000000000000 =
12.324 h7ff0000000000000 / 0 =
12.324 hfff0000000000000 / -0 =
12.324 hffffffffffffffff / hffffffffffffffff =
h7ff0000000000000 0 / h7ff0000000000000 =
h7ff0000000000000 12.324 / h7ff0000000000000 =
h7ff0000000000000 h7ff0000000000000 / hffffffffffffffff =
h7ff0000000000000 hfff0000000000000 / hffffffffffffffff =
h7ff0000000000000 hffffffffffffffff / hffffffffffffffff =
hfff0000000000000 0 / hfff0000000000000 =
hfff0000000000000 12.324 / hfff0000000000000 =
hfff0000000000000 h7ff0000000000000 / hffffffffffffffff =
hfff0000000000000 hfff0000000000000 / hffffffffffffffff =
hfff0000000000000 hffffffffffffffff / hffffffffffffffff =
hffffffffffffffff 0 / hffffffffffffffff =
hffffffffffffffff 12.324 / hffffffffffffffff =
hffffffffffffffff h7ff0000000000000 / hffffffffffffffff =
hffffffffffffffff hfff0000000000000 / hffffffffffffffff =
hffffffffffffffff hffffffffffffffff / hffffffffffffffff =
0 0 * 0 =
0 12.324 * 0 =
0 H7ff0000000000000 * hffffffffffffffff =
0 hfff0000000000000 * hffffffffffffffff =
0 hffffffffffffffff * hffffffffffffffff =
1.789E-10 1.789E-305 * 0 =
1.789E+10 1.789E+305 * h7ff0000000000000 =
-1.789E+10 1.789E+305 * hfff0000000000000 =
1.789E+10 -1.789E+305 * hfff0000000000000 =
12.324 0 * 0 =
-12.324 0 * -0 =
-0 23 * -0 =
12.56 23.45 * 294.532 =
-1.123 1.234 * -1.385782 =
1.123 -1.95 * -2.18985 =
-1.123 -1.95 * 2.18985 =
12.324 h7ff0000000000000 * h7ff0000000000000 =
12.324 hfff0000000000000 * hfff0000000000000 =
12.324 hffffffffffffffff * hffffffffffffffff =
h7ff0000000000000 0 * hffffffffffffffff =
h7ff0000000000000 12.324 * h7ff0000000000000 =
h7ff0000000000000 h7ff0000000000000 * h7ff0000000000000 =
h7ff0000000000000 hfff0000000000000 * hfff0000000000000 =
h7ff0000000000000 hffffffffffffffff * hffffffffffffffff =
hfff0000000000000 0 * hffffffffffffffff =
hfff0000000000000 12.324 * hfff0000000000000 =
hfff0000000000000 h7ff0000000000000 * hfff0000000000000 =
hfff0000000000000 hfff0000000000000 * h7ff0000000000000 =
hfff0000000000000 hffffffffffffffff * hffffffffffffffff =
hffffffffffffffff 0 * hffffffffffffffff =
hffffffffffffffff 12.324 * hffffffffffffffff =
hffffffffffffffff h7ff0000000000000 * hffffffffffffffff =
hffffffffffffffff hfff0000000000000 * hffffffffffffffff =
hffffffffffffffff hffffffffffffffff * hffffffffffffffff =
0 0 ? 0 =
0 1.987 ? -1 =
0 h7ff0000000000000 ? -1 =
0 hfff0000000000000 ? 1 =
0 hffffffffffffffff ? 3 =
1.1234 0 ? 1 =
1.1234 1.12345 ? -1 =
-1.235 -1234678 ? 1 =
-0 0 ? 0 =
1.234 -1.234 ? 1 =
1.1234 h7ff0000000000000 ? -1 =
1.1234 hfff0000000000000 ? 1 =
1.98876 hffffffffffffffff ? 3 =
h7ff0000000000000 0 ? 1 =
h7ff0000000000000 1.5780 ? 1 =
h7ff0000000000000 h7ff0000000000000 ? 0 =
h7ff0000000000000 hfff0000000000000 ? 1 =
h7ff0000000000000 hffffffffffffffff ? 3 =
hfff0000000000000 0 ? -1 =
hfff0000000000000 1.789 ? -1 =
hfff0000000000000 -1.987 ? -1 =
hfff0000000000000 h7ff0000000000000 ? -1 =
hfff0000000000000 hfff0000000000000 ? 0 =
hfff0000000000000 hffffffffffffffff ? 3 =
hffffffffffffffff 0 ? 3 =
hffffffffffffffff -0 ? 3 =
hffffffffffffffff -123 ? 3 =
hffffffffffffffff 1.098 ? 3 =
hffffffffffffffff h7ff0000000000000 ? 3 =
hffffffffffffffff hfff0000000000000 ? 3 =
hffffffffffffffff hffffffffffffffff ? 3 =
q
|
efbd08b3cf72e465d50cddd81236093be2b4dd43 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3517/CH3/EX3.5/Ex3_5.sce | 08b531736bc83b07d62ac69317067841c4fb3b18 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex3_5.sce | //Caption:Calculate Resistance
//Ex3.5
clc;
clear;
close;
V=2.7//Output voltage(in volts)
E=8//Input voltage(in volts)
i=1//Output current(in mA)
vf=0.7//Diode forward voltage(in volts)
if=1//Diode forward current(in mA)
vb=V-vf
R=(E-vb-vf)/(i+if)
disp(R,'Resistance(in kilo ohm)=') |
2ce400d8e7c28ca219f28a2c7f372296e012e4ee | e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4 | /New LSTMAttn Model/.data/lemma-split/GOLD-TEST/cly.tst | e5a4c9ba9bf21e07c8f3067220827751adeeb603 | [] | no_license | davidgu13/Lemma-vs-Form-Splits | c154f1c0c7b84ba5b325b17507012d41b9ad5cfe | 3cce087f756420523f5a14234d02482452a7bfa5 | refs/heads/master | 2023-08-01T16:15:52.417307 | 2021-09-14T20:19:28 | 2021-09-14T20:19:28 | 395,023,433 | 3 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 30,901 | tst | cly.tst | yjoq⁴ ntyjoq³² renq⁴ V;PROG;PL;3
yjoq⁴ kjoq⁴ V;PROSP;SG;3
yjoq⁴ ntjoq⁴² V;PROG;SG;2
yjoq⁴ ntyjonq²⁴on³² V;HAB;PL;1+INCL
yjoq⁴ ntyjoq³² V;PROG;SG;3
yjoq⁴ ntyjonq¹ V;PROG;SG;1
yjoq⁴ kjonq²⁴on³² V;PROSP;PL;1+INCL
yjoq⁴ yjoq⁴ wa⁴² V;PFV;PL;1+EXCL
yjoq⁴ ntyjoq⁴ wan⁴ V;HAB;PL;2
yjoq⁴ kjoq⁴² V;PROSP;SG;2
yjoq⁴ ntyjonq¹on¹ V;PROG;PL;1+INCL
yjoq⁴ ntyjonq²⁰ V;HAB;SG;1
yjoq⁴ ntyjoq³² wan⁴ V;PROG;PL;2
yjoq⁴ yjonq²⁴on³² V;PFV;PL;1+INCL
yjoq⁴ ntyjoq⁴ V;HAB;SG;3
yjoq⁴ ntyjoq⁴ wa⁴² V;HAB;PL;1+EXCL
yjoq⁴ yjonq¹ V;PFV;SG;1
yjoq⁴ yjoq⁴ V;PFV;SG;3
yjoq⁴ yjoq⁴ renq⁴ V;PFV;PL;3
yjoq⁴ yjoq⁴² V;PFV;SG;2
yjoq⁴ kjonq²⁰ V;PROSP;SG;1
yjoq⁴ kjoq⁴ renq⁴ V;PROSP;PL;3
yjoq⁴ yjoq⁴ wan⁴ V;PFV;PL;2
yjoq⁴ ntyjoq⁴² V;HAB;SG;2
yjoq⁴ ntyjoq³² wa⁴² V;PROG;PL;1+EXCL
yjoq⁴ kjoq⁴ wan⁴ V;PROSP;PL;2
yjoq⁴ kjoq⁴ wa⁴² V;PROSP;PL;1+EXCL
yjoq⁴ ntyjoq⁴ renq⁴ V;HAB;PL;3
xyaq² xyaq renq¹ V;PFV;PL;3
xyaq² nxyaq² wan¹ V;HAB;PL;2
xyaq² xyaq² wa⁴² V;PROSP;PL;1+EXCL
xyaq² nxyaq¹ V;PROG;SG;2
xyaq² nxyaq² V;PROG;SG;3
xyaq² nxyaq² renq¹ V;PROG;PL;3
xyaq² nxyaq¹ V;HAB;SG;2
xyaq² xyanq⁴⁰ V;PFV;SG;1
xyaq² xyaq² wan¹ V;PROSP;PL;2
xyaq² xyaq² renq¹ V;PROSP;PL;3
xyaq² nxyanq²an¹ V;PROG;PL;1+INCL
xyaq² xyaq² V;PFV;SG;3
xyaq² nxyaq² renq¹ V;HAB;PL;3
xyaq² xyanq²an¹ V;PFV;PL;1+INCL
xyaq² nxyanq⁴⁰ V;PROG;SG;1
xyaq² nxyaq² wa⁴² V;HAB;PL;1+EXCL
xyaq² xyaq¹ V;PROSP;SG;2
xyaq² xyanq⁴⁰ V;PROSP;SG;1
xyaq² xyaq¹ V;PFV;SG;2
xyaq² xyaq² V;PROSP;SG;3
xyaq² nxyanq⁴⁰ V;HAB;SG;1
xyaq² nxyaq²an¹ V;HAB;PL;1+INCL
xyaq² nxyaq² wa⁴² V;PROG;PL;1+EXCL
xyaq² xyaq² wa⁴² V;PFV;PL;1+EXCL
xyaq² nxyaq² wan¹ V;PROG;PL;2
xyaq² nxyaq² V;HAB;SG;3
xyaq² xyaq² wan¹ V;PFV;PL;2
xyaq² xyanq²an¹ V;PROSP;PL;1+INCL
ndlyu⁴² ndlyu⁴² wan⁴ V;PFV;PL;2
ndlyu⁴² ndlyon⁴² V;HAB;SG;1
ndlyu⁴² ndlyu⁴² V;HAB;SG;3
ndlyu⁴² ndlyu³² V;PFV;SG;2
ndlyu⁴² tlyon⁴²on⁴² V;PROSP;PL;1+INCL
ndlyu⁴² ndlyu³² V;PROG;SG;2
ndlyu⁴² tlyu⁴² renq⁴ V;PROSP;PL;3
ndlyu⁴² ndlyu⁴² wa⁴² V;PFV;PL;1+EXCL
ndlyu⁴² tlyu⁴² wan⁴ V;PROSP;PL;2
ndlyu⁴² tlyu⁴² V;PROSP;SG;2
ndlyu⁴² tlyon⁴² V;PROSP;SG;1
ndlyu⁴² ndlyu⁴² renq³² V;HAB;PL;3
ndlyu⁴² ndlyu⁴² renq⁴ V;PFV;PL;3
ndlyu⁴² ndlyu³² renq⁴ V;PROG;PL;3
ndlyu⁴² ndlyu⁴² wa⁴² V;HAB;PL;1+EXCL
ndlyu⁴² ndlyon³² V;PROG;SG;1
ndlyu⁴² ndlyu⁴² wan³² V;HAB;PL;2
ndlyu⁴² ndlyu⁴² V;PFV;SG;3
ndlyu⁴² tlyu⁴² wa⁴² V;PROSP;PL;1+EXCL
ndlyu⁴² ndlyu³² wan⁴ V;PROG;PL;2
ndlyu⁴² ndlyu⁴² V;HAB;SG;2
ndlyu⁴² ndlyu³² wa⁴² V;PROG;PL;1+EXCL
ndlyu⁴² tlyu⁴² V;PROSP;SG;3
ndlyu⁴² ndlyon⁴²on⁴² V;PFV;PL;1+INCL
ndlyu⁴² ndlyon¹on¹ V;PROG;PL;1+INCL
ndlyu⁴² ndlyon⁴² V;PFV;SG;1
ndlyu⁴² ndlyu³² V;PROG;SG;3
ndlyu⁴² ndlyon⁴²on⁴² V;HAB;PL;1+INCL
son³ xon²⁰on³² V;PROSP;PL;1+INCL
son³ nxon⁴⁰ V;HAB;SG;2
son³ nxon²⁰ renq²⁴ V;HAB;PL;3
son³ nson⁴⁰ V;PROG;SG;2
son³ xon²⁰ wan²⁴ V;PROSP;PL;2
son³ nxon⁴ V;HAB;SG;1
son³ xon²⁰ V;PROSP;SG;3
son³ nxon²⁰ wan²⁴ V;HAB;PL;2
son³ nson¹ renq²⁴ V;PROG;PL;3
son³ son³ wan²⁴ V;PFV;PL;2
son³ son⁴⁰ V;PFV;SG;2
son³ nson¹ V;PROG;SG;3
son³ son⁴ V;PFV;SG;1
son³ nxon²⁰on³² V;HAB;PL;1+INCL
son³ nson¹ wa⁴² V;PROG;PL;1+EXCL
son³ nson¹on³² V;PROG;PL;1+INCL
son³ son³ renq²⁴ V;PFV;PL;3
son³ xon⁴ V;PROSP;SG;1
son³ nxon²⁰ wa⁴² V;HAB;PL;1+EXCL
son³ son³ wa⁴² V;PFV;PL;1+EXCL
son³ nson³² V;PROG;SG;1
son³ nxon²⁰ V;HAB;SG;3
son³ xon⁴⁰ V;PROSP;SG;2
son³ son²on² V;PFV;PL;1+INCL
son³ nson¹ wan²⁴ V;PROG;PL;2
son³ xon²⁰ wa⁴² V;PROSP;PL;1+EXCL
son³ son³ V;PFV;SG;3
son³ xon²⁰ renq²⁴ V;PROSP;PL;3
ngya⁴² ngya²⁴ renq³² V;PROG;PL;3
ngya⁴² kya²⁴ V;PROSP;SG;3
ngya⁴² kyan¹⁴ V;PROSP;PL;1+INCL
ngya⁴² ngya²⁴ wa⁴² V;PROG;PL;1+EXCL
ngya⁴² ngya²⁴ wan³² V;PROG;PL;2
ngya⁴² ngya²⁴ wa⁴² V;HAB;PL;1+EXCL
ngya⁴² nkyqan³² V;PFV;SG;1
ngya⁴² ngyan¹⁴ V;HAB;PL;1+INCL
ngya⁴² ngyan⁴²an V;PFV;PL;1+INCL
ngya⁴² nkya⁴² V;PROG;SG;2
ngya⁴² nkya⁴² V;HAB;SG;2
ngya⁴² kya²⁴ renq³² V;PROSP;PL;3
ngya⁴² ngya³² V;PFV;SG;2
ngya⁴² nkyqan²⁴ V;HAB;SG;1
ngya⁴² nkyqan²⁴ V;PROG;SG;1
ngya⁴² ngya⁴² wa⁴² V;PFV;PL;1+EXCL
ngya⁴² kyqan²⁴ V;PROSP;SG;1
ngya⁴² kya²⁴ wan³² V;PROSP;PL;2
ngya⁴² kya⁴² V;PROSP;SG;2
ngya⁴² ngyan¹⁴ V;PROG;PL;1+INCL
ngya⁴² ngya⁴² wan⁴ V;PFV;PL;2
ngya⁴² ngya²⁴ renq³² V;HAB;PL;3
ngya⁴² nkya²⁴ V;HAB;SG;3
ngya⁴² ngya⁴² V;PFV;SG;3
ngya⁴² ngya²⁴ wan³² V;HAB;PL;2
ngya⁴² nkya²⁴ V;PROG;SG;3
ngya⁴² kya²⁴ wa⁴² V;PROSP;PL;1+EXCL
ngya⁴² ngya⁴² renq³² V;PFV;PL;3
qya³ ntyqya¹⁴ V;HAB;SG;3
qya³ qya²⁰ V;PROSP;SG;2
qya³ ntyqya¹⁴⁰ wa⁴² V;HAB;PL;1+EXCL
qya³ qya¹⁴ V;PROSP;SG;3
qya³ ntyqyan⁴⁰ V;HAB;SG;1
qya³ qyan⁴⁰ V;PROSP;SG;1
qya³ qya³ wa⁴² V;PFV;PL;1+EXCL
qya³ ntyqya³ wan²⁴ V;PROG;PL;2
qya³ qya³ V;PFV;SG;3
qya³ qyan⁴⁰ V;PFV;SG;1
qya³ qyan²an¹ V;PFV;PL;1+INCL
qya³ ntyqya¹ V;PROG;SG;2
qya³ qya¹⁴ renq⁰ V;PROSP;PL;3
qya³ qya¹⁴⁰ wa⁴² V;PROSP;PL;1+EXCL
qya³ qyan¹⁴ V;PROSP;PL;1+INCL
qya³ qya¹ V;PFV;SG;2
qya³ qya¹⁴ wan⁰ V;PROSP;PL;2
qya³ ntyqyan⁴⁰ V;PROG;SG;1
qya³ ntyqya³ V;PROG;SG;3
qya³ qya³ wan²⁴ V;PFV;PL;2
qya³ qya³ renq²⁴ V;PFV;PL;3
qya³ ntyqya²⁰ V;HAB;SG;2
qya³ ntyqyan¹⁴ V;HAB;PL;1+INCL
qya³ ntyqyan²an¹ V;PROG;PL;1+INCL
qya³ ntyqya¹⁴ renq⁰ V;HAB;PL;3
qya³ ntyqya¹⁴ wan⁰ V;HAB;PL;2
qya³ ntyqya³ renq²⁴ V;PROG;PL;3
qya³ ntyqya³ wa⁴² V;PROG;PL;1+EXCL
ykwaq⁴ tykwanq⁴ V;PROSP;SG;1
ykwaq⁴ ntykwaq⁴ V;HAB;SG;3
ykwaq⁴ ntykwanq⁴ V;PFV;SG;1
ykwaq⁴ ykwaq⁴ V;PFV;SG;3
ykwaq⁴ ntykwaq³² V;PROG;SG;3
ykwaq⁴ tykwaq⁴ V;PROSP;SG;3
ykwaq⁴ tykwaq⁴² V;PROSP;SG;2
ykwaq⁴ ntykwanq⁴ V;HAB;SG;1
ykwaq⁴ ntykwaq³² V;PROG;SG;2
ykwaq⁴ ntykwaq⁴² V;HAB;SG;2
ykwaq⁴ ntykwanq³² V;PROG;SG;1
ykwaq⁴ ntykwaq³² V;PFV;SG;2
yqo² yqo² wa⁴² V;PFV;PL;1+EXCL
yqo² ntyqo²⁰ V;HAB;SG;2
yqo² ntyqo¹⁴⁰ wa⁴² V;HAB;PL;1+EXCL
yqo² yqo¹ V;PFV;SG;2
yqo² yqon²on¹ V;PFV;PL;1+INCL
yqo² yqo² V;PFV;SG;3
yqo² kqon¹⁴ V;PROSP;PL;1+INCL
yqo² kqon²⁰ V;PROSP;SG;1
yqo² kqo¹⁴⁰ wa⁴² V;PROSP;PL;1+EXCL
yqo² ntyqo¹⁴ V;HAB;SG;3
yqo² ntyqo² wan¹ V;PROG;PL;2
yqo² ntyqon¹⁴ V;HAB;PL;1+INCL
yqo² ntyqo² wa⁴² V;PROG;PL;1+EXCL
yqo² kqo²⁰ V;PROSP;SG;2
yqo² yqo² renq¹ V;PFV;PL;3
yqo² ntyqo¹⁴ wan⁰ V;HAB;PL;2
yqo² ntyqo¹ V;PROG;SG;2
yqo² ntyqon²⁰ V;HAB;SG;1
yqo² kqo¹⁴ wan⁰ V;PROSP;PL;2
yqo² yqon¹ V;PFV;SG;1
yqo² ntyqo¹⁴ renq⁰ V;HAB;PL;3
yqo² ntyqon¹ V;PROG;SG;1
yqo² ntyqo² renq¹ V;PROG;PL;3
yqo² kqo¹⁴ renq⁰ V;PROSP;PL;3
yqo² ntyqo² V;PROG;SG;3
yqo² yqo² wan¹ V;PFV;PL;2
yqo² ntyqon²on¹ V;PROG;PL;1+INCL
yqo² kqo¹⁴ V;PROSP;SG;3
nkwi¹ ntykwen²⁰ V;HAB;SG;1
nkwi¹ ykwi²⁰ wa⁴² V;PROSP;PL;1+EXCL
nkwi¹ ykwen²⁰en³² V;PROSP;PL;1+INCL
nkwi¹ ntykwen²⁰en³² V;HAB;PL;1+INCL
nkwi¹ ntykwi⁴² V;HAB;SG;2
nkwi¹ ykwi²⁰ wan²⁴ V;PROSP;PL;2
nkwi¹ ntkwen³² V;PROG;SG;1
nkwi¹ tykwi²⁰ V;PROSP;SG;3
nkwi¹ nkwi¹ wan²⁴ V;PFV;PL;2
nkwi¹ ntkwi¹ wan²⁴ V;PROG;PL;2
nkwi¹ ntkwen¹en¹ V;PROG;PL;1+INCL
nkwi¹ nkwi¹ wa⁴² V;PFV;PL;1+EXCL
nkwi¹ ykwi²⁰ renq²⁴ V;PROSP;PL;3
nkwi¹ ntykwi²⁰ V;HAB;SG;3
nkwi¹ nkwi¹ renq²⁴ V;PFV;PL;3
nkwi¹ ntkwi¹ wa⁴² V;PROG;PL;1+EXCL
nkwi¹ nkwen¹en¹ V;PFV;PL;1+INCL
nkwi¹ ntkwi¹ renq²⁴ V;PROG;PL;3
nkwi¹ tykwen²⁰ V;PROSP;SG;1
nkwi¹ ntkwi¹ V;PROG;SG;3
nkwi¹ nkwi⁴² V;PFV;SG;2
nkwi¹ ntykwi²⁰ wan²⁴ V;HAB;PL;2
nkwi¹ nkwen⁴ V;PFV;SG;1
nkwi¹ ntykwi²⁰ renq²⁴ V;HAB;PL;3
nkwi¹ nkwi¹ V;PFV;SG;3
nkwi¹ tykwi⁴² V;PROSP;SG;2
nkwi¹ ntkwi⁴² V;PROG;SG;2
nkwi¹ ntykwi²⁰ wa⁴² V;HAB;PL;1+EXCL
swenq³ nswenq¹⁴⁰ wa⁴² V;HAB;PL;1+EXCL
swenq³ swenq¹ V;PFV;SG;2
swenq³ nswenq³ renq²⁴ V;PROG;PL;3
swenq³ nswenq³ wa⁴² V;PROG;PL;1+EXCL
swenq³ swenq¹⁴ V;PROSP;SG;3
swenq³ swenq⁴⁰ V;PROSP;SG;1
swenq³ swenq¹⁴ V;PROSP;PL;1+INCL
swenq³ nswenq¹⁴ V;HAB;PL;1+INCL
swenq³ swenq³ wan²⁴ V;PFV;PL;2
swenq³ nswenq²en¹ V;PROG;PL;1+INCL
swenq³ swenq²en¹ V;PFV;PL;1+INCL
swenq³ swenq⁴⁰ V;PFV;SG;1
swenq³ swenq¹⁴⁰ wa⁴² V;PROSP;PL;1+EXCL
swenq³ nswenq²⁰ V;HAB;SG;2
swenq³ nswenq¹⁴ renq⁰ V;HAB;PL;3
swenq³ swenq³ wa⁴² V;PFV;PL;1+EXCL
swenq³ nswenq³ wan²⁴ V;PROG;PL;2
swenq³ nswenq¹⁴ V;HAB;SG;3
swenq³ swenq³ V;PFV;SG;3
swenq³ nswenq⁴⁰ V;HAB;SG;1
swenq³ swenq¹⁴ renq⁰ V;PROSP;PL;3
swenq³ nswenq⁴⁰ V;PROG;SG;1
swenq³ nswenq³ V;PROG;SG;3
swenq³ swenq³ renq²⁴ V;PFV;PL;3
swenq³ nswenq¹⁴ wan⁰ V;HAB;PL;2
swenq³ swenq²⁰ V;PROSP;SG;2
swenq³ swenq¹⁴ wan⁰ V;PROSP;PL;2
swenq³ nswenq¹ V;PROG;SG;2
jen² ntjen² V;PROG;SG;3
jen² tyjin²⁰ V;PROSP;SG;2
jen² ntyjin¹⁴ V;HAB;PL;1+INCL
jen² ntyjin¹⁴ V;HAB;SG;3
jen² tyjin¹⁴ renq⁰ V;PROSP;PL;3
jen² ntyjin¹⁴⁰ wa⁴² V;HAB;PL;1+EXCL
jen² jen²en¹ V;PFV;PL;1+INCL
jen² ntjen² renq¹ V;PROG;PL;3
jen² ntyjin¹⁴ wan⁰ V;HAB;PL;2
jen² jen² wa⁴² V;PFV;PL;1+EXCL
jen² ntjen¹ V;PROG;SG;2
jen² tyjin⁴⁰ V;PROSP;SG;1
jen² tyjin¹⁴ V;PROSP;PL;1+INCL
jen² tyjin¹⁴ wan⁰ V;PROSP;PL;2
jen² ntjen²en¹ V;PROG;PL;1+INCL
jen² ntyjin¹⁴ renq⁰ V;HAB;PL;3
jen² ntjen² wa⁴² V;PROG;PL;1+EXCL
jen² tyjin¹⁴ V;PROSP;SG;3
jen² ntjen² wan¹ V;PROG;PL;2
jen² jen² V;PFV;SG;3
jen² ntyjin²⁰ V;HAB;SG;2
jen² jen² renq¹ V;PFV;PL;3
jen² jen² wan¹ V;PFV;PL;2
jen² ntjen⁴⁰ V;PROG;SG;1
jen² tyjin¹⁴⁰ wa⁴² V;PROSP;PL;1+EXCL
jen² ntyjin⁴⁰ V;HAB;SG;1
jen² jen⁴⁰ V;PFV;SG;1
jen² jen¹ V;PFV;SG;2
ndywan² ndywan² wa⁴² V;HAB;PL;1+EXCL
ndywan² ndywan² wan¹ V;PFV;PL;2
ndywan² ndywan² renq¹ V;PFV;PL;3
ndywan² tywan²an¹ V;PROSP;PL;1+INCL
ndywan² ndywan² V;PFV;SG;3
ndywan² ndywan² wa⁴² V;PROG;PL;1+EXCL
ndywan² ndywan² wa⁴² V;PFV;PL;1+EXCL
ndywan² ndywan²an¹ V;PROG;PL;1+INCL
ndywan² tywan² wan¹ V;PROSP;PL;2
ndywan² ndywan¹ V;PFV;SG;2
ndywan² ndywan¹ V;PROG;SG;2
ndywan² tywan⁴⁰ V;PROSP;SG;1
ndywan² ndywan² wan¹ V;HAB;PL;2
ndywan² ndywan⁴⁰ V;PFV;SG;1
ndywan² ndywan²an¹ V;PFV;PL;1+INCL
ndywan² ndywan² renq¹ V;PROG;PL;3
ndywan² tywan² V;PROSP;SG;3
ndywan² ndywan²an¹ V;HAB;PL;1+INCL
ndywan² ndywan² renq¹ V;HAB;PL;3
ndywan² ndywan² V;HAB;SG;3
ndywan² tywan¹ V;PROSP;SG;2
ndywan² tywan² renq¹ V;PROSP;PL;3
ndywan² ndywan⁴⁰ V;HAB;SG;1
ndywan² ndywan² V;PROG;SG;3
ndywan² ndywan² wan¹ V;PROG;PL;2
ndywan² tywan² wa⁴² V;PROSP;PL;1+EXCL
ndywan² ndywan⁴⁰ V;PROG;SG;1
ndywan² ndywan¹ V;HAB;SG;2
sqi² ntsqi² V;PROG;SG;3
sqi² xqi¹⁴⁰ wan¹ V;PROSP;PL;2
sqi² ntsqi² wa⁴² V;PROG;PL;1+EXCL
sqi² xqin¹⁴ V;PROSP;PL;1+INCL
sqi² sqi² renq¹ V;PFV;PL;3
sqi² nchsqin⁴⁰ V;HAB;SG;1
sqi² sqi² wan¹ V;PFV;PL;2
sqi² xqi¹⁴⁰ renq¹ V;PROSP;PL;3
sqi² xqi²⁰ V;PROSP;SG;2
sqi² nchsqi¹⁴⁰ renq¹ V;HAB;PL;3
sqi² ntsqen²en¹ V;PROG;PL;1+INCL
sqi² nchsqin¹⁴ V;HAB;PL;1+INCL
sqi² ntsqen⁴⁰ V;PROG;SG;1
sqi² nchsqi¹⁴⁰ wan¹ V;HAB;PL;2
sqi² nchsqi¹⁴ V;HAB;SG;3
sqi² nchsqi²⁰ V;HAB;SG;2
sqi² sqi² wa⁴² V;PFV;PL;1+EXCL
sqi² xqi¹⁴ V;PROSP;SG;3
sqi² sqi² V;PFV;SG;3
sqi² sqen⁴⁰ V;PFV;SG;1
sqi² sqen²en¹ V;PFV;PL;1+INCL
sqi² ntsqi¹ V;PROG;SG;2
sqi² xqi¹⁴⁰ wa⁴² V;PROSP;PL;1+EXCL
sqi² nchsqi¹⁴⁰ wa⁴² V;HAB;PL;1+EXCL
sqi² sqi¹ V;PFV;SG;2
sqi² xqin⁴⁰ V;PROSP;SG;1
sqi² ntsqi² renq¹ V;PROG;PL;3
sqi² ntsqi² wan¹ V;PROG;PL;2
nxin⁴² kxin¹⁴ V;PROSP;SG;3
nxin⁴² kxin⁴ V;PROSP;SG;1
nxin⁴² kxin²⁰ V;PROSP;SG;2
nxin⁴² nxin³² V;PROG;SG;3
nxin⁴² nxin⁴² V;PFV;SG;2
nxin⁴² nxin²⁰ V;HAB;SG;2
nxin⁴² nxin³² V;PROG;SG;1
nxin⁴² nxin⁴ V;HAB;SG;1
nxin⁴² nxin⁴² V;PFV;SG;3
nxin⁴² nxin³² V;PROG;SG;2
nxin⁴² nxin¹⁴ V;HAB;SG;3
nxin⁴² nxin⁴⁰ V;PFV;SG;1
nkonq⁴² ntkonq¹on¹ V;PROG;PL;1+INCL
nkonq⁴² konq²⁴ V;PROSP;SG;3
nkonq⁴² konq²⁴ V;PROSP;SG;1
nkonq⁴² ntkonq³² wan⁴ V;PROG;PL;2
nkonq⁴² nkonq⁴²on⁴² V;PFV;PL;1+INCL
nkonq⁴² nkonq⁴² wan⁴ V;PFV;PL;2
nkonq⁴² nkonq²⁴ V;PFV;SG;1
nkonq⁴² konq⁴² V;PROSP;SG;2
nkonq⁴² nkonq⁴² V;PFV;SG;3
nkonq⁴² konq¹on¹ V;PROSP;PL;1+INCL
nkonq⁴² ntkonq³² V;PROG;SG;2
nkonq⁴² konq²⁴ wan³² V;PROSP;PL;2
nkonq⁴² konq⁴² wa⁴² V;PROSP;PL;1+EXCL
nkonq⁴² ntkonq³² wa⁴² V;PROG;PL;1+EXCL
nkonq⁴² ntkonq³² V;PROG;SG;1
nkonq⁴² ntkonq³² renq⁴ V;PROG;PL;3
nkonq⁴² ntkonq²⁴ V;HAB;SG;1
nkonq⁴² konq²⁴ renq³² V;PROSP;PL;3
nkonq⁴² ntkonq³² V;PROG;SG;3
nkonq⁴² nkonq³² V;PFV;SG;2
nkonq⁴² ntkonq²⁴ wan³² V;HAB;PL;2
nkonq⁴² ntkonq⁴² V;HAB;SG;2
nkonq⁴² ntkonq²⁴ renq³² V;HAB;PL;3
nkonq⁴² ntkonq¹on¹ V;HAB;PL;1+INCL
nkonq⁴² nkonq⁴² renq⁴ V;PFV;PL;3
nkonq⁴² nkonq⁴² wa⁴² V;PFV;PL;1+EXCL
nkonq⁴² ntkonq²⁴ V;HAB;SG;3
nkonq⁴² ntkonq⁴² wa⁴² V;HAB;PL;1+EXCL
ntsa²⁴ ktsa²⁴ V;PROSP;SG;3
ntsa²⁴ ktsa²⁴ wa⁴² V;PROSP;PL;1+EXCL
ntsa²⁴ ktsa²⁴ renq³² V;PROSP;PL;3
ntsa²⁴ ntsa²⁴ renq³² V;HAB;PL;3
ntsa²⁴ ntsan¹⁴ V;PFV;PL;1+INCL
ntsa²⁴ ntsa²⁴ V;PFV;SG;3
ntsa²⁴ ntsa⁴² V;HAB;SG;2
ntsa²⁴ ntsa¹ wan³² V;PROG;PL;2
ntsa²⁴ ntsan³² V;PROG;SG;1
ntsa²⁴ ntsan¹an¹ V;PROG;PL;1+INCL
ntsa²⁴ ntsa⁴² V;PFV;SG;2
ntsa²⁴ ktsan²⁴ V;PROSP;SG;1
ntsa²⁴ ntsan³² V;PROG;SG;2
ntsa²⁴ ntsa²⁴ wan³² V;HAB;PL;2
ntsa²⁴ ntsan¹⁴ V;PFV;SG;1
ntsa²⁴ ntsa²⁴ wa⁴² V;HAB;PL;1+EXCL
ntsa²⁴ ntsan⁴² V;HAB;SG;1
ntsa²⁴ ktsa²⁴ wan³² V;PROSP;PL;2
ntsa²⁴ ntsa²⁴ renq³² V;PFV;PL;3
ntsa²⁴ ntsan¹⁴ V;HAB;PL;1+INCL
ntsa²⁴ ntsa²⁴ V;HAB;SG;3
ntsa²⁴ ntsa¹ wa⁴² V;PROG;PL;1+EXCL
ntsa²⁴ ktsa⁴² V;PROSP;SG;2
ntsa²⁴ ntsa¹ renq³² V;PROG;PL;3
ntsa²⁴ nsta²⁴ wa⁴² V;PFV;PL;1+EXCL
ntsa²⁴ ntsa¹ V;PROG;SG;3
ntsa²⁴ ktsan¹⁴ V;PROSP;PL;1+INCL
ntsa²⁴ ntsa²⁴ wan³² V;PFV;PL;2
yo² ko¹⁴⁰ wa⁴² V;PROSP;PL;1+EXCL
yo² ndyo² wan¹ V;PROG;PL;2
yo² yo² wan¹ V;PFV;PL;2
yo² ndyo¹⁴ renq⁰ V;HAB;PL;3
yo² yo² wa⁴² V;PFV;PL;1+EXCL
yo² ndyon²on¹ V;PROG;PL;1+INCL
yo² yon²on¹ V;PFV;PL;1+INCL
yo² yon¹ V;PFV;SG;1
yo² ndyo¹⁴ V;HAB;SG;3
yo² ndyo²⁰ V;HAB;SG;2
yo² ndyo² renq¹ V;PROG;PL;3
yo² ndyo¹ V;PROG;SG;2
yo² yo² V;PFV;SG;3
yo² ko¹⁴ renq⁰ V;PROSP;PL;3
yo² ko¹⁴ V;PROSP;SG;3
yo² ndyo¹⁴⁰ wa⁴² V;HAB;PL;1+EXCL
yo² yo² renq¹ V;PFV;PL;3
yo² ndyo² V;PROG;SG;3
yo² ndyon²⁰ V;HAB;SG;1
yo² kon²⁰ V;PROSP;SG;1
yo² ko¹⁴ wan⁰ V;PROSP;PL;2
yo² ndyon¹ V;PROG;SG;1
yo² kon¹⁴ V;PROSP;PL;1+INCL
yo² ndyo¹⁴ wan⁰ V;HAB;PL;2
yo² ndyo² wa⁴² V;PROG;PL;1+EXCL
yo² ko²⁰ V;PROSP;SG;2
yo² ndyon¹⁴ V;HAB;PL;1+INCL
yo² yo¹ V;PFV;SG;2
kwan¹ ntkwan⁴ V;HAB;SG;3
kwan¹ ntkwan⁴ wan⁴ V;HAB;PL;2
kwan¹ ntkwan⁴ renq⁴ V;HAB;PL;3
kwan¹ kwan²⁴an³² V;PFV;PL;1+INCL
kwan¹ ntkwan⁴ V;HAB;SG;1
kwan¹ ntkwan³² V;PROG;SG;1
kwan¹ ntkwan³² V;PROG;SG;3
kwan¹ kwan⁴² V;PROSP;SG;2
kwan¹ kwan⁴ V;PROSP;SG;3
kwan¹ kwan⁴ renq⁴ V;PROSP;PL;3
kwan¹ ntkwan²⁴an³² V;HAB;PL;1+INCL
kwan¹ ntkwan³² renq⁴ V;PROG;PL;3
kwan¹ kwan⁴² V;PFV;SG;2
kwan¹ ntkwan¹an¹ V;PROG;PL;1+INCL
kwan¹ kwan⁴ V;PROSP;SG;1
kwan¹ kwan⁴ renq⁴ V;PFV;PL;3
kwan¹ ntkwan³² wan⁴ V;PROG;PL;2
kwan¹ ntkwan⁴² V;PROG;SG;2
kwan¹ ntkwan³² wa⁴² V;PROG;PL;1+EXCL
kwan¹ kwan⁴ wan⁴ V;PFV;PL;2
kwan¹ kwan¹ V;PFV;SG;3
kwan¹ kwan⁴ wan⁴ V;PROSP;PL;2
kwan¹ kwan⁴ wa⁴² V;PROSP;PL;1+EXCL
kwan¹ ntkwan⁴² V;HAB;SG;2
kwan¹ kwan⁴ wa⁴² V;PFV;PL;1+EXCL
kwan¹ kwan⁴ V;PFV;SG;1
kwan¹ kwan²⁴an³² V;PROSP;PL;1+INCL
kwan¹ ntkwan⁴ wa⁴² V;HAB;PL;1+EXCL
ne⁴² nn³² qne³² renq⁴ V;PROG;PL;3
ne⁴² nen⁴ V;PFV;SG;1
ne⁴² ne⁴² V;PFV;SG;3
ne⁴² kne⁴² V;PROSP;SG;2
ne⁴² nne¹⁴ qne⁰ wan³² V;HAB;PL;2
ne⁴² ne⁴²en⁴² V;PFV;PL;1+INCL
ne⁴² nne³² V;PROG;SG;3
ne⁴² nne³² qne³² wan⁴ V;PROG;PL;2
ne⁴² ne⁴² qne³² wan⁴ V;PFV;PL;2
ne⁴² knen¹⁴ V;PROSP;SG;1
ne⁴² nne¹⁴ V;HAB;PL;1+INCL
ne⁴² kne¹⁴ V;PROSP;PL;1+INCL
ne⁴² nnen¹⁴ V;HAB;SG;1
ne⁴² kn¹⁴ qne⁰ renq³² V;PROSP;PL;3
ne⁴² ne⁴² qne³² wa⁴² V;PFV;PL;1+EXCL
ne⁴² nne¹⁴ qne⁰ wa⁴² V;HAB;PL;1+EXCL
ne⁴² ne³² V;PFV;SG;2
ne⁴² kne¹⁴ qne⁰ wan³² V;PROSP;PL;2
ne⁴² nnen¹ V;PROG;SG;1
ne⁴² nne³² V;PROG;SG;2
ne⁴² kne¹⁴ qne⁰ wa⁴² V;PROSP;PL;1+EXCL
ne⁴² nne¹⁴ V;HAB;SG;3
ne⁴² nne⁴² V;HAB;SG;2
ne⁴² ne⁴³² qne³²renq⁴ V;PFV;PL;3
ne⁴² nne¹en¹ V;PROG;PL;1+INCL
ne⁴² kne¹⁴ V;PROSP;SG;3
ne⁴² nne³² qne³² wa⁴² V;PROG;PL;1+EXCL
ne⁴² nn¹⁴ qne⁰ renq³² V;HAB;PL;3
sen⁴² nse³² V;PFV;SG;2
sen⁴² ksen⁴ V;PROSP;SG;1
sen⁴² sen⁴² V;PFV;SG;3
sen⁴² ksen⁴² V;PROSP;SG;2
sen⁴² ksen²⁴ V;PROSP;SG;3
sen⁴² nsen¹ V;PROG;SG;1
sen⁴² nsen³² V;PROG;SG;3
sen⁴² nsen⁴ V;PFV;SG;1
sen⁴² nsen⁴ V;HAB;SG;1
sen⁴² nsen⁴² V;HAB;SG;2
sen⁴² nsen²⁴ V;HAB;SG;3
sen⁴² nsen³² V;PROG;SG;2
sla¹ slan¹an¹ V;PFV;PL;1+INCL
sla¹ nsla²⁰ wa⁴² V;HAB;PL;1+EXCL
sla¹ sla¹ wan²⁴ V;PFV;PL;2
sla¹ nsla¹ renq²⁴ V;PROG;PL;3
sla¹ nsla²⁰ V;HAB;SG;3
sla¹ sla¹ renq²⁴ V;PFV;PL;3
sla¹ nslan¹an¹ V;PROG;PL;1+INCL
sla¹ nsla¹ V;PROG;SG;3
sla¹ slan⁴ V;PFV;SG;1
sla¹ sla⁴² V;PFV;SG;2
sla¹ sla²⁰ wan²⁴ V;PROSP;PL;2
sla¹ nsla⁴² V;PROG;SG;2
sla¹ nsla¹ wan²⁴ V;PROG;PL;2
sla¹ nsla¹ wa⁴² V;PROG;PL;1+EXCL
sla¹ sla¹ wa⁴² V;PFV;PL;1+EXCL
sla¹ nsla²⁰ renq²⁴ V;HAB;PL;3
sla¹ nsla⁴² V;HAB;SG;2
sla¹ sla²⁰ V;PROSP;SG;3
sla¹ sla⁴² V;PROSP;SG;2
sla¹ slan²⁰an³² V;PROSP;PL;1+INCL
sla¹ sla¹ V;PFV;SG;3
sla¹ nslan⁴ V;HAB;SG;1
sla¹ sla²⁰ renq²⁴ V;PROSP;PL;3
sla¹ nslan³² V;PROG;SG;1
sla¹ sla²⁰ wa⁴² V;PROSP;PL;1+EXCL
sla¹ nslan²⁰an³² V;HAB;PL;1+INCL
sla¹ slan⁴ V;PROSP;SG;1
sla¹ nsla²⁰ wan²⁴ V;HAB;PL;2
nglu³ nglu¹⁴⁰ wa⁴² V;HAB;PL;1+EXCL
nglu³ nglon⁴⁰ V;HAB;SG;1
nglu³ nglon⁴⁰ V;PROG;SG;1
nglu³ nglu³ V;PROG;SG;3
nglu³ nglu¹ V;PFV;SG;2
nglu³ nglu³ wa²⁴ V;PROG;PL;2
nglu³ klu¹⁴⁰ wa⁴² V;PROSP;PL;1+EXCL
nglu³ nglu³ wa⁴² V;PROG;PL;1+EXCL
nglu³ nglu³ renq²⁴ V;PFV;PL;3
nglu³ nglu¹⁴ wa⁰ V;HAB;PL;2
nglu³ nglon¹⁴ V;HAB;PL;1+INCL
nglu³ nglon²on¹ V;PROG;PL;1+INCL
nglu³ klu¹⁴ V;PROSP;SG;3
nglu³ klu¹⁴ renq⁰ V;PROSP;PL;3
nglu³ nglon⁴⁰ V;PFV;SG;1
nglu³ klon⁴⁰ V;PROSP;SG;1
nglu³ nglu³ wa²⁴ V;PFV;PL;2
nglu³ klu¹⁴ wa⁰ V;PROSP;PL;2
nglu³ nglu¹ V;PROG;SG;2
nglu³ nglu³ V;PFV;SG;3
nglu³ nglu¹⁴ V;HAB;SG;3
nglu³ nglu³ wa⁴² V;PFV;PL;1+EXCL
nglu³ klu²⁰ V;PROSP;SG;2
nglu³ klon¹⁴ V;PROSP;PL;1+INCL
nglu³ nglu³ renq²⁴ V;PROG;PL;3
nglu³ nglu²⁰ V;HAB;SG;2
nglu³ nglon²on¹ V;PFV;PL;1+INCL
nglu³ nglu¹⁴ renq⁰ V;HAB;PL;3
yna³ ynan⁴⁰ V;PFV;SG;1
yna³ nan⁴⁰ V;PROG;SG;1
yna³ na³ wan²⁴ V;PROG;PL;2
yna³ na¹⁴ renq²⁴ V;HAB;PL;3
yna³ na¹⁴⁰ wa⁴² V;HAB;PL;1+EXCL
yna³ na²an¹ V;PROG;PL;1+INCL
yna³ na¹⁴ V;HAB;PL;1+INCL
yna³ kna¹⁴ V;PROSP;PL;1+INCL
yna³ yna³ wa⁴² V;PFV;PL;1+EXCL
yna³ na¹⁴ wan²⁴ V;HAB;PL;2
yna³ na³ renq²⁴ V;PROG;PL;3
yna³ yna²an¹ V;PFV;PL;1+INCL
yna³ kna¹⁴⁰ wa⁴² V;PROSP;PL;1+EXCL
yna³ knan⁴⁰ V;PROSP;SG;1
yna³ nan⁴⁰ V;HAB;SG;1
yna³ kna¹⁴ renq²⁴ V;PROSP;PL;3
yna³ yna³ wan²⁴ V;PFV;PL;2
yna³ kna¹⁴ wan²⁴ V;PROSP;PL;2
yna³ na³ wa⁴² V;PROG;PL;1+EXCL
yna³ yna³ renq²⁴ V;PFV;PL;3
yta⁴ yta⁴² V;PFV;SG;2
yta⁴ kta⁴ V;PROSP;SG;3
yta⁴ ntya⁴² V;HAB;SG;2
yta⁴ ntan³² V;PROG;SG;1
yta⁴ kta⁴² V;PROSP;SG;2
yta⁴ ntan⁴ wan⁴ V;HAB;PL;2
yta⁴ ntan⁴ renq⁴ V;HAB;PL;3
yta⁴ yta⁴ V;PFV;SG;3
yta⁴ ytan⁴ V;PFV;SG;1
yta⁴ ytan²⁴an³² V;PFV;PL;1+INCL
yta⁴ ktan²⁴an³² V;PROSP;PL;1+INCL
yta⁴ nta³² wa⁴² V;PROG;PL;1+EXCL
yta⁴ kta⁴ wa⁴² V;PROSP;PL;1+EXCL
yta⁴ kta⁴ renq⁴ V;PROSP;PL;3
yta⁴ nta³² wan⁴ V;PROG;PL;2
yta⁴ nta³² renq⁴ V;PROG;PL;3
yta⁴ ntan⁴ wa⁴² V;HAB;PL;1+EXCL
yta⁴ ktan⁴ V;PROSP;SG;1
yta⁴ yta⁴ renq⁴ V;PFV;PL;3
yta⁴ ntan⁴ V;HAB;SG;3
yta⁴ ntan¹an V;PROG;PL;1+INCL
yta⁴ nta⁴² V;PROG;SG;2
yta⁴ kta⁴ wan⁴ V;PROSP;PL;2
yta⁴ ntan²⁴an³² V;HAB;PL;1+INCL
yta⁴ yta⁴ wan⁴ V;PFV;PL;2
yta⁴ yta⁴ wa⁴² V;PFV;PL;1+EXCL
yta⁴ nta³² V;PROG;SG;3
yta⁴ ntan⁴ V;HAB;SG;1
ngyla³ ngyla¹ V;PROG;SG;2
ngyla³ kila³ V;PROSP;SG;3
ngyla³ xla³ wa⁴² V;PROSP;PL;1+EXCL
ngyla³ kila¹ V;PROSP;SG;2
ngyla³ nxla³ wa⁴² V;PROG;PL;1+EXCL
ngyla³ xlan²an¹ V;PROSP;PL;1+INCL
ngyla³ ngylan³ V;PROG;SG;1
ngyla³ ngyla¹ V;HAB;SG;2
ngyla³ nchla³ renq²⁴ V;HAB;PL;3
ngyla³ ngyla³ V;PROG;SG;3
ngyla³ kilan³ V;PROSP;SG;1
ngyla³ xla³ renq²⁴ V;PFV;PL;3
ngyla³ xla³ wan²⁴ V;PFV;PL;2
ngyla³ ngyla³ V;HAB;SG;3
ngyla³ nxla³ wan²⁴ V;PROG;PL;2
ngyla³ nxla³ renq²⁴ V;PROG;PL;3
ngyla³ xlan²an¹ V;PFV;PL;1+INCL
ngyla³ xla³ renq²⁴ V;PROSP;PL;3
ngyla³ nchla³ wan²⁴ V;HAB;PL;2
ngyla³ ngyla¹ V;PFV;SG;2
ngyla³ ngyla³ V;PFV;SG;3
ngyla³ ngylan³ V;PFV;SG;1
ngyla³ xla³ wa⁴² V;PFV;PL;1+EXCL
ngyla³ nxlan²an¹ V;PROG;PL;1+INCL
ngyla³ xla³ wan²⁴ V;PROSP;PL;2
ngyla³ nchlan²an¹ V;HAB;PL;1+INCL
ngyla³ ngylan³ V;HAB;SG;1
ngyla³ nchla³ wa⁴² V;HAB;PL;1+EXCL
nton³ nton³² wa⁴² V;PROG;PL;1+EXCL
nton³ ntyon⁴² V;HAB;SG;2
nton³ nton³² V;PFV;SG;2
nton³ ntyon¹⁴ wan⁰ V;HAB;PL;2
nton³ ntyon¹⁴ V;HAB;SG;3
nton³ ntyon¹⁴ V;HAB;PL;1+INCL
nton³ nton²on¹ V;PFV;PL;1+INCL
nton³ nton² wan⁴ V;PFV;PL;2
nton³ nton³² V;PROG;SG;1
nton³ ntyon¹⁴⁰ wa⁴² V;HAB;PL;1+EXCL
nton³ ntyon⁴⁰ V;HAB;SG;1
nton³ nton³² renq²⁴ V;PROG;PL;3
nton³ ntyon¹⁴ renq⁰ V;HAB;PL;3
nton³ nton² renq⁴ V;PFV;PL;3
nton³ kton⁴⁰ V;PROSP;SG;1
nton³ kton¹⁴⁰ wa⁴² V;PROSP;PL;1+EXCL
nton³ nton³ V;PFV;SG;3
nton³ nton²on¹ V;PROG;PL;1+INCL
nton³ nton³² wan⁴ V;PROG;PL;2
nton³ kton¹⁴ renq⁰ V;PROSP;PL;3
nton³ kton¹⁴ V;PROSP;PL;1+INCL
nton³ nton³² V;PROG;SG;3
nton³ kton¹⁴ wan⁰ V;PROSP;PL;2
nton³ kton⁴² V;PROSP;SG;2
nton³ kton¹⁴ V;PROSP;SG;3
nton³ nton² wa⁴² V;PFV;PL;1+EXCL
nton³ nton³² V;PROG;SG;2
nton³ nton⁴ V;PFV;SG;1
xti²⁰ xti⁴² V;PROSP;SG;2
xti²⁰ nxti²⁰ V;HAB;SG;3
xti²⁰ xti²⁰ V;PFV;SG;3
xti²⁰ nxti¹ V;PROG;SG;3
xti²⁰ xten⁴ V;PROSP;SG;1
xti²⁰ nxti⁴² V;HAB;SG;2
xti²⁰ xti⁴² V;PFV;SG;2
xti²⁰ nxti⁴² V;PROG;SG;2
xti²⁰ nxten³² V;PROG;SG;1
xti²⁰ xten⁴/²⁰ V;PFV;SG;1
xti²⁰ xti²⁰ V;PROSP;SG;3
xti²⁰ nxten⁴ V;HAB;SG;1
yno¹ kno¹ V;PROSP;SG;3
yno¹ nno¹ wa⁴² V;HAB;PL;1+EXCL
yno¹ nno¹ renq²⁴ V;HAB;PL;3
yno¹ yno¹ renq²⁴ V;PFV;PL;3
yno¹ nno¹ wan²⁴ V;HAB;PL;2
yno¹ kno¹ wa⁴² V;PROSP;PL;1+EXCL
yno¹ nno¹on¹ V;HAB;PL;1+INCL
yno¹ ntqen²⁰ V;PROG;SG;1
yno¹ yno⁴² V;PROG;SG;2
yno¹ kno¹ wan²⁴ V;PROSP;PL;2
yno¹ nno⁴² V;HAB;SG;2
yno¹ ntqe⁴ wan⁴ V;PROG;PL;2
yno¹ yno⁴² V;PFV;SG;2
yno¹ ynon²⁰ V;PFV;SG;1
yno¹ yno¹ V;PROG;SG;3
yno¹ kno¹on¹ V;PROSP;PL;1+INCL
yno¹ kno⁴² V;PROSP;SG;2
yno¹ ntqe⁴ wa⁴² V;PROG;PL;1+EXCL
yno¹ yno¹ wa⁴² V;PFV;PL;1+EXCL
yno¹ yno¹on¹ V;PFV;PL;1+INCL
yno¹ knon²⁰ V;PROSP;SG;1
yno¹ kno¹ renq²⁴ V;PROSP;PL;3
yno¹ nnon²⁰ V;HAB;SG;1
yno¹ yno¹ wan²⁴ V;PFV;PL;2
yno¹ ntqe⁴ renq⁴ V;PROG;PL;3
yno¹ yno¹ V;PFV;SG;3
yno¹ ntqen²⁴en³² V;PROG;PL;1+INCL
yno¹ nno¹ V;HAB;SG;3
snyaq¹ snyaq¹renq²⁴ V;PROSP;PL;3
snyaq¹ nsnyaq¹wan²⁴ V;PROG;PL;2
snyaq¹ nsnyaq²⁰ wan²⁴ V;HAB;PL;2
snyaq¹ snyaq¹ wa⁴² V;PFV;PL;1+EXCL
snyaq¹ snyaq¹wan²⁴ V;PFV;PL;2
snyaq¹ nsnyaq¹renq²⁴ V;HAB;PL;3
snyaq¹ snyanq⁴ V;PROSP;SG;1
snyaq¹ snyanq⁴ V;PFV;SG;1
snyaq¹ nsnyanq⁴ V;HAB;SG;1
snyaq¹ snyaq²⁰ an³² V;PROSP;PL;1+INCL
snyaq¹ snyaq²⁰ V;PROSP;SG;3
snyaq¹ snyaq¹renq²⁴ V;PFV;PL;3
snyaq¹ nsnyaq¹an¹ V;PROG;PL;1+INCL
snyaq¹ nsnyaq²⁰ V;HAB;SG;3
snyaq¹ nsnyanq³² V;PROG;SG;1
snyaq¹ nsnyaq¹ V;PROG;SG;3
snyaq¹ nsnyaq¹renq²⁴ V;PROG;PL;3
snyaq¹ nsnyaq⁴² V;PROG;SG;2
snyaq¹ snyaq⁴² V;PFV;SG;2
snyaq¹ nsnyaq¹ wa⁴² V;PROG;PL;1+EXCL
snyaq¹ nsnyaq²⁰ an³² V;HAB;PL;1+INCL
snyaq¹ snyaq¹an¹ V;PFV;PL;1+INCL
snyaq¹ snyaq²⁰ wa⁴² V;PROSP;PL;1+EXCL
snyaq¹ snyaq⁴² V;PROSP;SG;2
snyaq¹ nsnyaq²⁰ wa⁴² V;HAB;PL;1+EXCL
snyaq¹ nsnyaq⁴² V;HAB;SG;2
snyaq¹ snyaq¹ V;PFV;SG;3
snyaq¹ snyaq²⁰ wan²⁴ V;PROSP;PL;2
yja¹ ntyja²⁰ wa⁴² V;HAB;PL;1+EXCL
yja¹ ntyja¹ V;PROG;SG;3
yja¹ ntyjan⁴ V;HAB;SG;1
yja¹ ntyjan²⁰an³² V;HAB;PL;1+INCL
yja¹ tyjan⁴ V;PROSP;SG;1
yja¹ tyja²⁰ renq²⁴ V;PROSP;PL;3
yja¹ ntja¹ wan²⁴ V;PFV;PL;2
yja¹ ntja⁴² V;PFV;SG;2
yja¹ ntyjan³² V;PROG;SG;1
yja¹ ntjan⁴ V;PFV;SG;1
yja¹ ntyjan¹an¹ V;PROG;PL;1+INCL
yja¹ tyja²⁰ wa⁴² V;PROSP;PL;1+EXCL
yja¹ tyja²⁰ V;PROSP;SG;3
yja¹ ntyja²⁰ V;HAB;SG;3
yja¹ ntyja²⁰ renq²⁴ V;HAB;PL;3
yja¹ ntja¹ wa⁴² V;PFV;PL;1+EXCL
yja¹ ntyja⁴² V;PROG;SG;2
yja¹ tyja²⁰ wan²⁴ V;PROSP;PL;2
yja¹ yja¹ V;PFV;SG;3
yja¹ ntyja¹ renq²⁴ V;PROG;PL;3
yja¹ tyja⁴² V;PROSP;SG;2
yja¹ ntyja²⁰ wan²⁴ V;HAB;PL;2
yja¹ tyjan²⁰an³² V;PROSP;PL;1+INCL
yja¹ ntyja¹ wa⁴² V;PROG;PL;1+EXCL
yja¹ ntja¹ renq²⁴ V;PFV;PL;3
yja¹ ntjan¹an¹ V;PFV;PL;1+INCL
yja¹ ntyja⁴² V;HAB;SG;2
yja¹ ntyja¹ wan²⁴ V;PROG;PL;2
sna³ xna²⁰ V;PROSP;SG;2
sna³ nsna³ V;PROG;SG;3
sna³ nsna³ wan²⁴ V;PROG;PL;2
sna³ nxna¹⁴⁰ wa⁴² V;HAB;PL;1+EXCL
sna³ nxna¹⁴ renq⁰ V;HAB;PL;3
sna³ nxnan⁴⁰ V;HAB;SG;1
sna³ nsnan²an¹ V;PROG;PL;1+INCL
sna³ nsna³ wa⁴² V;PROG;PL;1+EXCL
sna³ xna¹⁴ V;PROSP;SG;3
sna³ xna¹⁴ renq⁰ V;PROSP;PL;3
sna³ sna³ wa⁴² V;PFV;PL;1+EXCL
sna³ sna³ V;PFV;SG;3
sna³ sna¹ V;PFV;SG;2
sna³ xnan⁴⁰ V;PROSP;SG;1
sna³ nxna¹⁴ V;HAB;SG;3
sna³ sna³ renq²⁴ V;PFV;PL;3
sna³ xna¹⁴⁰ wa⁴² V;PROSP;PL;1+EXCL
sna³ nxnan¹⁴ V;HAB;PL;1+INCL
sna³ nxna²⁰ V;HAB;SG;2
sna³ nxna¹⁴ wan⁰ V;HAB;PL;2
sna³ nsna¹ V;PROG;SG;2
sna³ snan⁴⁰ V;PFV;SG;1
sna³ xnan¹⁴ V;PROSP;PL;1+INCL
sna³ nsnan⁴⁰ V;PROG;SG;1
sna³ sna³ wan²⁴ V;PFV;PL;2
sna³ snan²an¹ V;PFV;PL;1+INCL
sna³ xna¹⁴ wan⁰ V;PROSP;PL;2
sna³ nsna³ renq²⁴ V;PROG;PL;3
sqwi¹⁴ sqwi²⁰ V;PROSP;SG;2
sqwi¹⁴ nsqwi¹⁴ V;HAB;SG;3
sqwi¹⁴ sqwi¹⁴ V;PROSP;SG;3
sqwi¹⁴ sqwi¹⁴ V;PFV;SG;3
sqwi¹⁴ nsqwi³ V;PROG;SG;3
sqwi¹⁴ sqwen⁴⁰ V;PROSP;SG;1
sqwi¹⁴ nsqwi²⁰ V;HAB;SG;2
sqwi¹⁴ sqwi²⁰ V;PFV;SG;2
sqwi¹⁴ nsqwen⁴⁰ V;PROG;SG;1
sqwi¹⁴ nsqwi¹ V;PROG;SG;2
sqwi¹⁴ sqwen⁴⁰ V;PFV;SG;1
sqwi¹⁴ nsqwen⁴⁰ V;HAB;SG;1
nchin¹ nchin³² V;PROG;SG;1
nchin¹ nchin¹ V;PFV;SG;3
nchin¹ nchin⁴ V;HAB;SG;1
nchin¹ kchin⁴ V;PROSP;SG;1
nchin¹ nchin²⁰ V;HAB;SG;3
nchin¹ kchin²⁰ V;PROSP;SG;3
nchin¹ nchin⁴² V;HAB;SG;2
nchin¹ nchin⁴ V;PFV;SG;1
nchin¹ nchin⁴² V;PROG;SG;2
nchin¹ nchin¹ V;PROG;SG;3
nchin¹ nchin⁴² V;PFV;SG;2
nchin¹ kchin⁴² V;PROSP;SG;2
qne⁴² nqne²⁴ renq³² V;HAB;PL;3
qne⁴² nqnen²⁰ V;HAB;SG;1
qne⁴² nqne²⁴ wan³² V;HAB;PL;2
qne⁴² nqnen¹⁴ V;HAB;PL;1+INCL
qne⁴² nqnen¹en¹ V;PROG;PL;1+INCL
qne⁴² nqne³² wan⁴ V;PROG;PL;2
qne⁴² qnen¹ V;PFV;SG;1
qne⁴² nqne⁴² V;HAB;SG;2
qne⁴² nqnen¹ V;PROG;SG;1
qne⁴² qne³² V;PFV;SG;2
qne⁴² nqne³² wa⁴² V;PROG;PL;1+EXCL
qne⁴² qne⁴² V;PFV;SG;3
qne⁴² qne⁴² wa⁴² V;PFV;PL;1+EXCL
qne⁴² qnen¹⁴ V;PROSP;PL;1+INCL
qne⁴² qne²⁴ wan³² V;PROSP;PL;2
qne⁴² qnen²⁰ V;PROSP;SG;1
qne⁴² qne²⁴ renq³² V;PROSP;PL;3
qne⁴² nqne³² V;PROG;SG;3
qne⁴² qne⁴² renq⁴ V;PFV;PL;3
qne⁴² qne⁴² wan⁴ V;PFV;PL;2
qne⁴² nqne³² renq⁴ V;PROG;PL;3
qne⁴² qnen⁴²en V;PFV;PL;1+INCL
qne⁴² qne²⁴ V;PROSP;SG;3
qne⁴² nqne²⁴ wa⁴² V;HAB;PL;1+EXCL
qne⁴² nqne²⁴ V;HAB;SG;3
qne⁴² qne⁴² V;PROSP;SG;2
qne⁴² qne²⁴ wa⁴² V;PROSP;PL;1+EXCL
qne⁴² nqne³² V;PROG;SG;2
nda³ nda¹ V;PROG;SG;3
nda³ ta⁴² V;PROSP;SG;2
nda³ nda⁴² V;HAB;SG;2
nda³ nda³ V;PFV;SG;3
nda³ ta²⁰ V;PROSP;SG;3
nda³ ndan⁴ V;PFV;SG;1
nda³ ndan³² V;PROG;SG;1
nda³ nda⁴² V;PFV;SG;2
nda³ ndan⁴ V;HAB;SG;1
nda³ tan⁴ V;PROSP;SG;1
nda³ nda⁴² V;PROG;SG;2
nda³ nda²⁰ V;HAB;SG;3
ntykanq³ ntykanq¹⁴ V;HAB;PL;1+INCL
ntykanq³ tykanq¹⁴ V;PROSP;PL;1+INCL
ntykanq³ tykanq¹⁴ renq⁰ V;PROSP;PL;3
ntykanq³ ntykanq⁴⁰ V;PFV;SG;1
ntykanq³ ntykanq³ wan¹⁴ V;PFV;PL;2
ntykanq³ ntykanq³ V;PFV;SG;3
ntykanq³ ntykanq³ wa⁴² V;PFV;PL;1+EXCL
ntykanq³ ntykanq³ renq¹ V;PFV;PL;3
ntykanq³ tykanq¹⁴ V;PROSP;SG;3
ntykanq³ tykanq²⁰ V;PROSP;SG;2
ntykanq³ ntykanq³ wan¹⁴ V;PROG;PL;2
ntykanq³ ntykanq¹⁴ wan⁰ V;HAB;PL;2
ntykanq³ ntykanq³ V;PROG;SG;3
ntykanq³ ntykanq²⁰ V;HAB;SG;2
ntykanq³ ntykanq¹ V;PFV;SG;2
ntykanq³ tykanq¹⁴⁰ wa⁴² V;PROSP;PL;1+EXCL
ntykanq³ ntykanq⁴⁰ V;PROG;SG;1
ntykanq³ ntykanq³ renq¹ V;PROG;PL;3
ntykanq³ ntykanq²⁰ V;PROG;SG;2
ntykanq³ tykanq¹⁴ wan⁰ V;PROSP;PL;2
ntykanq³ tykanq⁴⁰ V;PROSP;SG;1
ntykanq³ ntykanq¹⁴ V;HAB;SG;3
ntykanq³ ntykanq²an¹ V;PROG;PL;1+INCL
ntykanq³ ntykanq²an¹ V;PFV;PL;1+INCL
ntykanq³ ntykanq¹⁴ renq⁰ V;HAB;PL;3
ntykanq³ ntykanq³ wa⁴² V;PROG;PL;1+EXCL
ntykanq³ ntykanq¹⁴⁰ wa⁴² V;HAB;PL;1+EXCL
ntykanq³ ntykanq⁴⁰ V;HAB;SG;1
qan⁴ nkqan⁴ wa⁴² V;PROG;PL;1+EXCL
qan⁴ qan⁴ V;PFV;SG;3
qan⁴ nkqan⁴ renq⁴ V;PROG;PL;3
qan⁴ ntyqan⁴ renq⁴ V;HAB;PL;3
qan⁴ ntyqan⁴² V;HAB;SG;2
qan⁴ ntyqan²⁰ V;HAB;SG;1
qan⁴ tyqan²⁴an³² V;PROSP;PL;1+INCL
qan⁴ nkqan⁴ wan⁴ V;PROG;PL;2
qan⁴ nkqan²⁴an³² V;PROG;PL;1+INCL
qan⁴ tyqan⁴ V;PROSP;SG;3
qan⁴ qan⁴ wa⁴² V;PFV;PL;1+EXCL
qan⁴ ntqan⁴² V;PROG;SG;2
qan⁴ ntyqan⁴ V;HAB;SG;3
qan⁴ ntyqan⁴ wa⁴² V;HAB;PL;1+EXCL
qan⁴ qan⁴ renq⁴ V;PFV;PL;3
qan⁴ ntyqan²⁴an³² V;HAB;PL;1+INCL
qan⁴ qan²⁴an³² V;PFV;PL;1+INCL
qan⁴ qan⁴² V;PFV;SG;2
qan⁴ qan⁴ wan⁴ V;PFV;PL;2
qan⁴ tyqan²⁰ V;PROSP;SG;1
qan⁴ tyqan⁴² V;PROSP;SG;2
qan⁴ ntyqan⁴ wan⁴ V;HAB;PL;2
qan⁴ tyqan⁴ renq⁴ V;PROSP;PL;3
qan⁴ ntqan¹ V;PROG;SG;1
qan⁴ ntqan³² V;PROG;SG;3
qan⁴ qan²⁰ V;PFV;SG;1
qan⁴ tyqan⁴ wan⁴ V;PROSP;PL;2
qan⁴ tyqan⁴ wa⁴² V;PROSP;PL;1+EXCL
|
54d86ee4defd3dab2202f4a1aa5721a2e106b7c4 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.5/Unix-Windows/scilab-2.5/tests/examples/acosh.man.tst | dc0aa73f9ca1e886269623ff4a90dd75cba3bbf0 | [
"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 | 43 | tst | acosh.man.tst | clear;lines(0);
x=[0,1,%i];
cosh(acosh(x))
|
4c4b611a5f8c68e043f50d0c820cdad840b27db3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /257/CH6/EX6.25/example6_25.sce | a9ff30b86ed4f734f94ec6dabc2200a408be08d1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 348 | sce | example6_25.sce | syms G1 G2 G3 G4 G5 H2 H3;
T1=G1*G3*G2;
T2=G1*G3*G5;
T3=G4*G2*G3;
T4=-G4*G2*G5*G3*H2
L1=-G2*H3;
L2=-G3*H3;
L3=-G5*H2*H3*G3;
L4=-G1*G2*G3;
L5=-G1*G3*G5;
L6=-G2*G3*G4;
L7=G2*G3*G4*G5*H2;
delta=1-(L1+L2+L3+L4+L5+L6+L7)
del1=1;
del2=1;
del3=1
del4=1;
TF=(T1*del1 + T2*del2 + T3*del3 + T4*del4)/delta ;
disp(TF,"C/R = ")
|
367d3660744603f07ad35499f300b9fba6fc5668 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3850/CH35/EX35.3/Ex35_3.sce | 3fa045c8b3eb3bf6efc758c483c914a7156f8558 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex35_3.sce |
//To Find the Magnitude of Magnetic Force experienced by 10 cm of a wire
//Example 35.3
clear;
clc;
i=5;//Current in Amperes
d=2.5*10^-2;//Separation between the wires in metres
k=2*10^-7;// Constant k=(u0/(2*%pi))
B=k*i/d;//Magnetic Field at the site of one wire due to other in T
l=10*10^-2;//length of the wire in metres
F=i*l*B;//Magnetic force experienced by the 10 cm of the wire due to the other
printf("Magnetic force experienced by the 10 cm of the wire due to the other = %.1f*10^-5 N",F*10^5);
|
8f06abc6526144b9c0119775d50ab75d47726b62 | 449d555969bfd7befe906877abab098c6e63a0e8 | /662/CH3/EX3.31/ex3_31.sce | 2cc7e9115af998616b6a75e6f93f730966f5de0b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 122 | sce | ex3_31.sce | //Example 3.31
printf("\n Enter a letter(in lower case):")
a=scanf("%1c");
a=convstr(a,'u');
printf("\n %c ",a); |
c1e30b53659db0407e98b5ccaa9b11b1252f656a | 01ecab2f6eeeff384acae2c4861aa9ad1b3f6861 | /sci2blif/level1_sim_gen_fcn.sce | 65b8d9960b46a13faba85b52e6823dd4ac32783f | [] | no_license | jhasler/rasp30 | 9a7c2431d56c879a18b50c2d43e487d413ceccb0 | 3612de44eaa10babd7298d2e0a7cddf4a4b761f6 | refs/heads/master | 2023-05-25T08:21:31.003675 | 2023-05-11T16:19:59 | 2023-05-11T16:19:59 | 62,917,238 | 3 | 3 | null | null | null | null | UTF-8 | Scilab | false | false | 2,496 | sce | level1_sim_gen_fcn.sce | global Ut_sim Kappa_sim L1_sim_name;;
function dir_callback()
disp(" ");
endfunction
function L1_sim_name_callback()
global L1_sim_name;
block_name_obj = findobj('tag','L1_sim_name');
L1_sim_name = block_name_obj.string;
endfunction
function Start_L1_sim_callback()
global L1_sim_name;
file_list=listfiles("/home/ubuntu/rasp30/xcos_blocks/*_c.sci");
l_file_list=size(file_list,1);
for ii=1:l_file_list
if file_list(ii) == "/home/ubuntu/rasp30/xcos_blocks/"+L1_sim_name+"_c.sci" then messagebox('A Sim file with the same name exists. Please check it.', "Level 1 sim name error", "error"); abort; end
end
fd_w= mopen("./"+L1_sim_name+"_c_2.sci",'wt');
mputl(" in_out_num = block.ipar(1);",fd_w);
mputl(" row_vec_io = 1:in_out_num; // Row vector for input & output ",fd_w);
mputl(" C = 5e-12;",fd_w);
mputl(" tau=1 ./(2*%pi*block.rpar(row_vec_io));",fd_w);
mputl(" Ibias= (2*C*Ut_sim)./(Kappa_sim*tau);",fd_w);
mputl(" block.xd(row_vec_io)=(Ibias/C).*tanh((Kappa_sim*(block.inptr(1)(row_vec_io)-block.x(row_vec_io)))/(2*Ut_sim));",fd_w);
mclose(fd_w);
editor("./"+L1_sim_name+"_c_2.sci");
messagebox(["Complete ODE equations in "+L1_sim_name+"_c_2.sci and Save it." "We provide global variables for Ut_sim (=0.0256 V) and Kappa_sim (=0.7)."],"Design Macro-CAB block", "info", ["OK"], "modal");
endfunction
function Gen_L1_sim_callback()
global L1_sim_name;
fd_w= mopen("./"+L1_sim_name+"_c_1.sci",'wt');
mputl("global Ut_sim Kappa_sim;",fd_w);
mputl("",fd_w);
mputl("function block="+L1_sim_name+"_c(block,flag)",fd_w);
mputl(" if flag ==1",fd_w);
mputl(" in_out_num = block.ipar(1);",fd_w);
mputl(" row_vec_io = 1:in_out_num; // Row vector for input & output ",fd_w);
mputl(" block.outptr(1)(row_vec_io)=block.x(row_vec_io);",fd_w);
mputl(" elseif flag ==0",fd_w);
mclose(fd_w);
fd_w= mopen("./"+L1_sim_name+"_c_3.sci",'wt');
mputl(" end",fd_w);
mputl("endfunction",fd_w);
mclose(fd_w);
unix_w("cat ./"+L1_sim_name+"_c_1.sci ./"+L1_sim_name+"_c_2.sci ./"+L1_sim_name+"_c_3.sci "+" > ./"+L1_sim_name+"_c.sci");
unix_w("cp ./"+L1_sim_name+"_c.sci /home/ubuntu/rasp30/xcos_blocks/"+L1_sim_name+"_c.sci");
disp("Level 1 simulation file for "+L1_sim_name+" has been generated.");
filebrowser();
endfunction
|
6df6206c32cb76a9a19e419e8b2c53b7cfe83a84 | 717ddeb7e700373742c617a95e25a2376565112c | /1766/CH3/EX3.17/EX3_17.sce | decf907d54a7eb9bf56347a72c3af62a28ae1e2f | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 1,112 | sce | EX3_17.sce | clc;funcprot(0);//Example 3.17
//Initilisation of Variables
Ti=175;...//Initial temparature of cylindrical bar in degrees celcius
Do=0.06;....//diameter of bar in m
L=0.03;....//Height of bar in m
h=250;...//heat transfer coefficient on surface of the bar in W/m*K
Ta=25;...//Ambient air temparature in degrees celcius
t=60;....//time for measuring temparature in s
K=200;.....//thermal conductivity of bar in W/m K
al=8.4*10^-5;.....//thermal diffucivity of bar in m^2/s
//calculations
ro=Do/2;.....//Radius of rod in m
Bi=(h*ro)/K;....//biot number
Fo=(al*t)/ro^2;....//Fourier number
teta1=0.7;....//Value got from hesler chart from 1/Bi=26.7 and Fo=5.6
invBi1=(2*K)/(h*L);....//inverse of biot number for infinate slab
Fo1=(al*t)/(L/2)^2;.....//Fourier number for infinate slab
teta2=0.6;....//Value got from hesler chart for slab from 1/Bi=53.3 and Fo=22.4
teta3=teta1*teta2;....//Realtion for dimentionless temparature for short cylinder
To=((Ti-Ta)*teta3)+Ta;.....//Center temparature of the cylinder in degrees celcius
disp(To,"Center temparature of the cylinder degrees celcius:")
|
f9d1acba3b8d578312c533fc62906ee62e5032a5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2330/CH2/EX2.2/ex2_2.sce | b94f8f3f72be4ee056146e49950fe5e60846886f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | ex2_2.sce | // Example 2.2
clc;
clear;
close;
format('v',6)
// given data
Vin= 15;// in V
I=0;
R_L= 10;// in kΩ
R_L= R_L*10^3;// in Ω
// The output voltage
Vout= I*R_L;// in V
// The voltage across the diode
V_R= Vin-Vout;// in V
disp(Vout,"The output voltage in volts is : ");
disp(V_R,"The voltage across the diode in volts is : ");
|
258cea1ca14a216948a1f5029c68fe8e3b88cffe | 449d555969bfd7befe906877abab098c6e63a0e8 | /69/CH4/EX4.8/4_8.sce | f37d80d5e75a5dcce32b27c91ead0fe11500ee69 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 386 | sce | 4_8.sce | clear; clc; close;
R1 = 39*10^(3);
R2 = 3.9*10^(3);
Re = 1.5*10^(3);
Rc = 4*10^(3);
Vcc = 18;
Vbe = 0.7;
Beta = 140;
Ic = 0.63*10^(-3);
disp('Since the approximate technique can be applied,hence ');
Eth = R2*Vcc/(R1+R2);
Vb = Eth;
Ve = Vb - Vbe;
Icq = Ve/Re;
Vceq = Vcc - Ic*(Rc+Re);
disp(Icq,'Value of Icq(Amperes) is : ');
disp(Vceq,'Value of Vceq(Volts) : ');
|
b7c39d62228e86b3b7575c5fbe9e0eb9be4cee6d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2282/CH3/EX3.7/ex3_7.sce | 8670cd20a06bc9a5c1d0334dbf85322781a06b5b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 480 | sce | ex3_7.sce | // Example 3.7, page no-77
clear
clc
R=6378*10^3 //Radius of earth
mu=39.8*10^13 //Nm^2/kg
r1=500*10^3 // original orbit from earths surface
r2=800*10^3 // orbit to be raised to thisdistance
R1=R+r1
R2=R+r2
delta_v=sqrt(2*mu*R2/(R1*(R1+R2)))-sqrt(mu/R1)
delta_v_dash=sqrt(mu/R2)-sqrt(2*mu*R1/(R2*(R1+R2)))
printf("Two thrusts to be applied are,\n Delta_v = %.2f m/s \n Delta_v_dash = %.2f m/s",delta_v,delta_v_dash)
|
4eedc46a6acb19177db8d0839376d87814b84b0e | ab670f7e3dc4f99e58a03250a1d2297468cc6ac0 | /lab2/lab2.sce | c88062c9b77064eb376d28356c1966043369ec64 | [] | no_license | ivan060601/VPD-labs | 769a0891eeb9aed208c4cd795f13c2bcd8c75273 | 6f9ab4e7368ec614456b25bf997923f63de53641 | refs/heads/main | 2022-12-31T15:15:58.659456 | 2020-10-23T21:29:29 | 2020-10-23T21:29:29 | 306,697,057 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 204 | sce | lab2.sce | results = read('C:\Users\Ivan\Desktop\data\data_30.txt', -1, 2)
angle = results(:,2)*%pi/180
time = results(:,1)
plot2d(time,angle,2)
plot2d (w.time, w.values,5)
legend('Experiment (30)','Model',2)
|
77ac008d40559273fc7571b60c9ed0eac58b2a2e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1733/CH9/EX9.2/9_2.sce | dbe96a85189f2437dc9eea5ed05279e2c59f2353 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 75 | sce | 9_2.sce | //9.2
clc;
x=25;
disp('The binary number is')
a=dec2bin(x);
disp('',a) |
b8203ee7fbc06e4501480ec8663cd268fd792773 | 449d555969bfd7befe906877abab098c6e63a0e8 | /281/CH4/EX4.3/example4_3.sce | 947078c9821feb29f29cf7e3fcec371de6101ff8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 696 | sce | example4_3.sce | disp('chapter 4 ex4.3')
disp('given')
disp('capacitor coupled voltage follower design')
disp("lower cut off frequency for the circuit =50Hz")
disp('Rl=3.9kohms')
disp("R1max=0.1Vbe/Ibmax")
disp("Vbe=0.7volts")
disp("Ibmax=500nA")
Vbe=0.7
Ibmax=500*10^(-9)
R1max=0.1* Vbe/ Ibmax
disp("R1max= ")
disp('ohms',R1max)
disp("R1+R2=Rmax")
R1=R1max/2
R2=R1
disp("assume R1=68Kohms")
R1=68000
f1=50
disp("Xc1=R1/10 at F1")
disp("C1=1/(2*pi*f1*(R1/10))")
C1=1/(2*%pi*f1*(R1/10))
C2=C1
disp('farads',C1)
Rl=3900
disp('farads',C2)
M=50000
disp("M=50000")
disp("Zin=(1+M)*R1")
Zin=(1+M)*R1
disp('ohms',Zin)
disp("The circuit voltage should be normally between 9 to 18 volts")
|
9a7de0672593cce03f8fc63778de61f8e2eda389 | 7f8a82b193633b744689e1f194923592e656b470 | /rltoolSci/macros/rltFuncStep.sci | 771ed03eddcb6d5456b240209269e018a4925171 | [] | no_license | josuemoraisgh/rltoolSci | 3b5a5e8fc6a27b60bca3354af5222350cd8e8b3b | a76ad9fbfe988bb2674adfeb466847a32719474a | refs/heads/main | 2023-07-14T10:40:12.549424 | 2021-08-26T17:52:16 | 2021-08-26T17:52:16 | 385,216,740 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 689 | sci | rltFuncStep.sci | function rltFuncStep
global axes1 comp gnum gden cCk cnum cden hnum hden cCk Mp T5 ti dt tf
s = %s;
execstr(msprintf('C = clean(syslin(''c'',(%s),(%s)));',cnum,cden));
execstr(msprintf('G = clean(syslin(''c'',(%s)*(%s),(%s)));',cCk,gnum,gden));
execstr(msprintf('H = clean(syslin(''c'',(%s),(%s)));',hnum,hden));
vt = x_mdialog('Entre com os dados abaixo:',...
['Tempo Inicial: ';'Taxa de variação:';'Tempo Final: '],...
[ti;dt;tf]);
ti = vt(1);
dt = vt(2);
tf = vt(3);
t = evstr(vt(1)):evstr(vt(2)):evstr(vt(3));
[y,x] = csim('step',t,C*G/(1+C*G*H));
plt = figure();
plot(plt.children,t,y,'-r');
endfunction
|
15ca8f25dfac34897a5b1512e567eea05733847f | 449d555969bfd7befe906877abab098c6e63a0e8 | /680/CH4/EX4.12/4_12.sce | 5799ad350662677e12e909f50574fba6c771a99a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 271 | sce | 4_12.sce | //Problem 4.12:
//initializing the variables:
r = 500000; // in gpm
e = 0.30;
d = 3000; // in ft
//calculation:
mdt = r*0.00378*1000/60 // in kg/sec
delPE = mdt*9.8*d*0.3048
P = e*delPE
printf("\n\nResult\n\n")
printf("\n actual power output is %.2E W",P) |
6a5063f9667b8891af2ce138440ba7dcb0e5e3ff | 449d555969bfd7befe906877abab098c6e63a0e8 | /3554/CH14/EX14.4/Ex14_4.sce | f9c5fa2a40c8217ec8c0f5861dacf7be1c167d69 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 613 | sce | Ex14_4.sce | // Exa 14.4
// Refer circuit 14.25 given on page no. 484
clc;
clear all;
// Given data
E=10;// Volts
R=50;// Unstrained gauge resistance(Ohms)
Gain=100;// Amplifier gain
Vo=1.5;// Output Voltage
// Solution
// Using the formula: Vo=E*(Delta_R/R)*gain
Delta_R=Vo*R/(E*Gain);// Change in resistance
printf('The change in resistance =%.2f Ohms\n This means that Rt1 and Rt3 decrease by 0.07 ohms \n and Rt2 and Rt4 increase by 0.07 ohms when a certain weight is placed on the scale platform\n',Delta_R);
// The answer mentioned in the textbook is incorrect as R=50 Ohms and not 100 Ohms.
|
51105cc479e2ecb4acaaed4e8ec0e32d0a1d963d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1958/CH12/EX12.4/Chapter12_example12_4.sce | b8ea30ced199326b5f597a0b1ca7167e0184b20f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 532 | sce | Chapter12_example12_4.sce | clc
clear
//Input data
C=10*10^-6//Capicitance in F
R=10*10^3//Resistance in ohms
e=6//Emf of the battery in V
//Calculations
t=C*R//Time constant in s
Qm=(C*e)/10^-6//Maximum charge in micro C
Im=(e/R)*1000//Maximum current in mA
//Output
printf('Time constant of the circuit is %3.1f s \n Maximum charge on the capacitor is %i micro C \n Maximum current in the circuit is %3.1f mA \n Charge at time t is Q(t) = %i(1-exp(-t/%3.1f)) micro C \n Currrent at time t is I(t) = %3.1f exp(-t/%3.1f) mA',t,Qm,Im,Qm,t,Im,t)
|
1d9dd71becd33773c28fa25e6390468d1ee6813f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2863/CH2/EX2.15/ex2_15.sce | 0a18b4550d8dd85598559c07bfb5b70a6f838f87 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 179 | sce | ex2_15.sce | //chapter 2
//Etheta=60*Im*cos(pi/2*cos(theta)/sin(theta))/r
printf("\n");
r=500*10^3;
Etheta=10*10^-6;
Im=Etheta*r/60;
printf("the current through the dipole is %gA",Im);
|
da52403aa21e5361c301d8ce271ad19679967e74 | 449d555969bfd7befe906877abab098c6e63a0e8 | /181/CH1/EX1.27/example1_27.sce | d523d56d92df4fdf7d7e9b56ecdd28eeb1acce8e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,182 | sce | example1_27.sce | // Concentration of holes and electrons
// Basic Electronics
// By Debashis De
// First Edition, 2010
// Dorling Kindersley Pvt. Ltd. India
// Example 1-27 in page 52
clear; clc; close;
// Data given
sigma=100; // Conductivity of p-type germanium
e=1.6*10^-19; // Charge on an electron in eV
mu_p=1800; // Mobility of holes in cm^2/Vs
ni=2.5*10^13; // Number of intrinsic atoms in germanium
mu_n=1300; // Mobility of electrons in cm^2/Vs
sigma1=0.1; // Conductivity in n-type silicon in /ohm-cm
ni1=1.5*10^10; // Number of intrinsic atoms in silicon
P_p=3.47*10^17; // Constant of calculation
// Calculation
printf("For Germanium:\n");
p_0=sigma/(e*mu_p);
n_0=(ni^2)/P_p;
printf("(a)Concentration of holes is %0.2e cm^-3\n",p_0);
printf("(b)Concentration of electrons is %0.2e m^-3\n",n_0);
printf("For Silicon:\n");
n_0=sigma1/(e*mu_n);
p_0=(ni1^2)/(4.81*10^14);
printf("(c)Concentration of electrons is %0.2e cm^-3\n",n_0);
printf("(d)Concentration of holes is %0.2e m^-3",p_0);
// Result
// (a) For Ge,Hole conc. = 3.47*10^17 cm^-3, Electron conc. = 1.8*10^15 m^-3
// (b) For Si,Hole conc. = 4.68*10^5 cm^-3, Electron conc. = 4.81*10^14 cm^-3 |
1948eb0d1d076b5fe6a03226fc72447b6e261421 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2549/CH2/EX2.7.4/Ex2_7_4.sce | 270ff53f19728d51593690b8cd065b26a3cc0306 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 451 | sce | Ex2_7_4.sce | //Ex2.7.4
//reverse saturation current =?
clc;
clear;
//given
If=1*10^-3;
Vf=0.15;//forward breakdown voltage of diode
T=27;//temp in celsius
T=T+273;//temp in kelvin
n=1//n is emission coefficient for Ge =1
k=8.62*10^-5;// boltzmann's constant
Vt=T*k;//voltage equivalent at given T
//expression for reverse saturation current
Io=If/(%e^(Vf/(n*Vt))-1)//diode current equation
disp( 'uA',Io*10^6,'reverse saturation current is :')
|
e9197272d87e167d5ca2d479eed9feffc4de63a1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1226/CH21/EX21.14/EX21_14.sce | a791ace2b326aa476e4e28e3622c982ebb9a7283 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,150 | sce | EX21_14.sce | clc;funcprot(0);//EXAMPLE 21.14
// Initialisation of Variables
etahe=0.72;.................//Efficiency of heat exchanger
p1=1.01;.........//Pressure of air while entering the turbine in bar
t1=293;........//Temperature of air entering the turbine in K
p2=4.04;.........//Pressure of air after compression in bar
etat=0.85;..........//Turbine efficiency
pdhe=0.05;............//Pressure drop on each side of heat exchanger in bar
pdcc=0.14;...........//Pressure drop in combustion chamber in bar
etac=0.8;...........//Compressor efficiency
ga=1.4;.............//Ratio of specific heats
C=41800;.............//Calorific value of fuel in kJ/kg
cp=1.024;...........//Specific heat at constant pressure in kJ/kgK
afrc=90;..............//Air fuel ratio for simple cycle
//Calculations
t2=(t1*((p2/p1)^((ga-1)/ga)));...............//Ideal temperature of air after compression in K
t21=round(((t2-t1)/etac)+t1);...............//Actual temperature of air after compression in K
t3=((1*C)/(cp*(afrc+1)))+t21;............//Temperature before expansion in turbine in K
p4=p1;p3=p2-pdcc;t4=round(t3*((p4/p3)^((ga-1)/ga)));............//Ideal temperature after expansion in turbine in K
t41=t3-(etat*(t3-t4));.................//Actual temperature after expansion in turbine in K
etath=(t3-t41-t21+t1)/(t3-t21);...........//Thermal efficiency in simple cycle
disp(etath*100,"Thermal efficiency in simple cycle in %:")
p3he=p2-pdhe-pdcc;..........//Pressure before expansion in turbine in bar in heat exchanger cycle
p4he=p1+pdhe;................//Pressure after expansion in turbine in bar in heat exchanger cycle
t4he=t3*((p4he/p3he)^((ga-1)/ga));............//Ideal temperature after expansion in turbine in K in heat exchanger cycle
t41he=round(t3-(etat*(t3-t4he)));.................//Actual temperature after expansion in turbine in K in heat exchanger cycle
t5=(etahe*(t41he-t21))+t21;
etathhe=(t3-t41he-t21+t1)/(t3-t5);.............//Thermal efficiency for heat exchanger cycle
disp(etathhe*100,"Thermal efficiency in heat exchanger cycle in %:")
inc=etathhe-etath;
disp(inc*100,"Increase in thermal efficiency in %:")
|
052c67f2d93a80de7266ea35b11abe3c4ebcc845 | 449d555969bfd7befe906877abab098c6e63a0e8 | /545/CH4/EX4.16/ch_4_eg_16.sce | 09a6a26d37381a92ebbd2d832bcc29754f9f7ec9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,185 | sce | ch_4_eg_16.sce | clc
//given rxn A-->B-->C
rc_k1=1, rc_k2=1 //given rate constants
u=1 //mean axial velocity
disp("the solution of eg 4.16 -->Plug Flow Reactor")
function dA_by_dx=f1e(x,A,B,C),
dA_by_dx=-A,
endfunction
function dB_by_dx=f2e(x,A,B,C),
dB_by_dx=A-B,
endfunction
function dC_by_dx=f3e(x,A,B,C),
dC_by_dx=B,
endfunction
A=1,B=0,C=0
for x=.1:.1:10,
h=.1 //step increment of 0.1
k1=h*f1e(x,A,B,C)
l1=h*f2e(x,A,B,C)
m1=h*f3e(x,A,B,C)
k2=h*f1e(x+h/2,A+k1/2,B+l1/2,C+m1/2)
l2=h*f2e(x+h/2,A+k1/2,B+l1/2,C+m1/2)
m2=h*f3e(x+h/2,A+k1/2,B+l1/2,C+m1/2)
k3=h*f1e(x+h/2,A+k2/2,B+l2/2,C+m2/2)
l3=h*f2e(x+h/2,A+k2/2,B+l2/2,C+m2/2)
m3=h*f3e(x+h/2,A+k2/2,B+l2/2,C+m2/2)
k4=h*f1e(x+h,A+k3,B+l3,C+m3)
l4=h*f2e(x+h,A+k3,B+l3,C+m3)
m4=h*f3e(x+h,A+k3,B+l3,C+m3)
A=A+(k1+2*k2+2*k3+k4)/6
B=B+(l1+2*l2+2*l3+l4)/6
C=C+(m1+2*m2+2*m3+m4)/6
if x==.5 |x==1|x==2|x==5 then disp(C,B,A,"mtr is",x,"the conc. of A,B,C at a distance of");
end
end
disp(C,B,A,"the conc. of A,B,C at a distance of 10 mtr is"); |
877339ac136f99f2e448052d0895eabde484a32b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3289/CH3/EX3.5/Ex3_5.sce | c3b26a4dbb72d65ec0129d63101268a9455d0695 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 823 | sce | Ex3_5.sce | clc;
E=210 //GPa
v=0.3
r1=0.4 //m radius
r2=0.3 //m cross radius
P=90 //kN compression load
1/r1'==1/r2'==0
m=4/((1/r1)+(1/r2))
disp(m)
A=(1/2)*((1/r1)+(1/r2))
disp(A)
B=(1/2)*((1/r1)-(1/r2))
disp(B)
coss=(((1/r1)-(1/r2))/((1/r1)+(1/r2)))
disp(coss,"cos aplha is= ")
n=(4*E*10^9)/(3*(1-v^2))
disp(n,"n is ")
s=acosd(coss)
disp(s," s is alpha value = ") // ans is 81.79degree but here since cosa is in negative we get ans as 98.21
ca=1.1040 // from the interpolating table
cb=0.9112 // from the interpolating table
a=ca*(90000*m/n)^(0.33)
disp(a,"semiaxes of the elliptical contact area in meter is= ")
b=cb*(90000*m/n)^(0.33)
disp(b,"semiaxes of the elliptical contact area in meter is= ")
sigmac=1.5*(90000/(%pi*a*b))
disp(sigmac,"max contact pressure in Pa is= ") // text book ans is wrong
|
cac9dfd8599633bd906cc10eb13a5de4f65cce71 | 9d11e49bc2143a6b680ab8f59b245bb2b4e5f487 | /practicas-programacion/scilab/u3-scinotes/tarea/imaginario-p4.sce | 449ca1c7f419e51b02e04f7f427dfaada965d460 | [] | no_license | AguilarLagunasArturo/school-holder | 61a8be432b0979f7e3332c0ef058421ff34200ee | 373cb31bb8e29e2433fb6269ad45bbdac0f8262e | refs/heads/main | 2023-08-13T18:21:45.177344 | 2021-10-07T05:17:32 | 2021-10-07T05:17:32 | 407,611,773 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 87 | sce | imaginario-p4.sce | clc
num = poly( [20*%i;-20*%i;], 's', 'r' )
den = poly( [-2+9*%i; -2-9*%i], 's', 'r' )
|
cde81dc198e7c2c5ef282f4183c4a64defdbc426 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2240/CH27/EX26.5/EX26_5.sce | 2c60cc1d03261ea7c3cfced89f7be661ea9fef33 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 692 | sce | EX26_5.sce | // Grob's Basic Electronics 11e
// Chapter No. 26
// Example No. 26_5
clc; clear;
// Calculate the notch frequency fn if R1 is 1 kOhms and C1 is 0.01 uF. Also, calculate the required values for 2R1 and 2C1 in the low-pass filter.
// Given data
R1 = 1*10^3; // Resistor 1=1 kOhms
C1 = 0.01*10^-6; // Capacitor 1=0.01 uFarad
pi = 3.14;
// To calculate Notch frequency fn for RC low-pass filter
fn = 1/(4*pi*R1*C1);
disp (fn,'The Notch Frequency for RC Low-Pass filter in Hertz');
disp ('i.e 7.96 kHz')
A = 2*R1;
disp (A,'The Required Value of 2R1 in Ohms')
disp ('i.e 2 kOhms')
B = 2*C1;
disp (B,'The Required Value of 2C1 in Ohms')
disp ('0.02 uF')
|
3184dcc0379ff5f3f53aba663f9fb40bda26342b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2870/CH3/EX3.8/Ex3_8.sce | e4a539d6ccfc24f538901959a099cc4d995bc7eb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 476 | sce | Ex3_8.sce | clc;clear;
//Example 3.8
//given values
T=80;
P=5;
//from Table A–7
//at compressed liq given conditions
u=333.82;
//from Tablw A-4
//at saturation
usat=334.97;
//calcualtion
e=(usat-u)/u*100;
disp(u,'internal energy of compressed liquid water using data from the compressed liquid table in kJ/kg ');
disp(usat,'internal energy of compressed liquid water using saturated liquid data in kJ/kg ');
disp(e,'the % error involved in the second case is ')
|
f295f07d1b8cc960eac49cd8a7e1737296406782 | 717ddeb7e700373742c617a95e25a2376565112c | /806/DEPENDENCIES/212.sci | 6364671dd6315d09347c1a1ce58769e02f64ae1c | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 112 | sci | 212.sci | h=750//mm of Hg
p=9810//weight density of water in N/m^3
p1=4//atmosphere
S=13.6//specific gravity of mercury |
cf6e203908ecf522fbf71336700ae6bf5b4cfb7d | 717ddeb7e700373742c617a95e25a2376565112c | /1322/CH3/EX3.5/29ex5.sce | d43725bf5861f8a9b3e64e1ae8870dd9f735d513 | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 174 | sce | 29ex5.sce |
//x(2x-y)-x(x-y)-y(x+2y)
clear;
clc;
close;
disp("1)after simplifying")
val=string('x^2-x*y-2*y^2')
disp("2)after substituting given values")
x=2;y=1;
val=evstr(val)
// test |
0882e6af2dfbd8484c43a88dd98181aa6790d87b | 9d2c9394c6b6997318b9d04556462c9bba639045 | /Replication 2/Dave_RIFData/Dave_RIFData/Sub2/VP2_OneBack.sce | d0630e246c44f0f14087cb5e3b44e95e1feae909 | [] | no_license | rettopnivek/Wimber_et_al_replication_3 | 673b156d8d18d58b92b2f05fedef87976e787089 | 8dbc22329093a61b1e5cb8aac3feca45a5c82d06 | refs/heads/master | 2020-12-31T04:42:39.856717 | 2018-02-01T15:49:15 | 2018-02-01T15:49:15 | 58,006,910 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,883 | sce | VP2_OneBack.sce | array <int> finalSeq[432] = {63,13,13,17,51,51,29,60,1,1,35,43,37,67,16,60,17,58,16,53,6,50,42,27,65,25,46,39,37,49,2,44,12,6,6,63,3,68,31,23,3,46,6,6,51,46,54,54,25,64,55,10,4,53,59,29,15,34,30,56,72,52,63,14,14,59,38,19,19,20,20,38,8,8,27,56,25,22,44,9,58,67,44,15,53,43,47,31,59,72,58,54,71,71,52,25,9,66,4,59,23,52,68,2,3,24,24,20,41,50,69,54,71,71,61,36,18,29,8,39,54,12,65,11,26,47,20,20,42,42,53,30,67,46,30,64,2,5,46,22,49,7,40,40,21,72,25,19,32,32,48,16,22,61,61,14,35,48,72,72,1,23,10,10,52,52,58,8,51,71,37,41,41,60,43,62,67,2,56,37,13,38,28,43,49,36,42,61,9,9,7,7,1,1,48,57,67,35,28,35,68,12,39,44,66,40,10,15,15,70,15,15,34,38,12,12,14,30,5,5,28,34,24,32,32,62,5,57,34,23,23,69,36,16,60,39,64,37,38,67,40,47,35,58,18,48,18,49,54,48,72,24,56,7,7,44,33,33,27,27,11,21,21,62,71,51,60,13,48,55,5,28,20,32,63,4,57,57,17,16,16,17,70,65,40,40,34,68,30,21,21,47,47,19,62,42,29,28,31,29,4,4,56,63,60,1,55,41,41,55,55,42,52,3,50,25,19,18,64,18,39,51,50,50,45,45,36,36,10,2,22,34,62,35,69,26,31,5,44,22,70,28,47,11,14,65,22,31,7,55,45,68,68,41,17,17,57,70,62,10,19,24,24,3,43,3,36,58,33,53,64,65,26,70,70,30,66,66,32,37,61,49,46,69,49,31,53,4,57,6,50,59,59,45,65,9,33,63,43,26,27,61,11,14,66,66,29,21,12,56,38,33,45,45,69,69,8,8,9,64,23,33,2,18,13,13,39,26,26,27,11,11};
array <int> buttons[432] = {0,2,1,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,1,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,2,2,2,2,1,2,2,2,2,1,2,2,2,1,2,1,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,1,2,2,2,1,2,2,2,1,2,2,2,2,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,1,2,1,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,1,2,2,2,2,1,2,2,2,2,1,2,1,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,1,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,2,1,2,2,2,2,2,2,2,1,2,2,1,2,0,0};
array <int> nullEvents[145] = {6,8,10,11,16,24,26,27,28,35,39,43,49,52,63,67,69,72,75,78,85,87,93,96,98,99,103,117,120,121,124,125,127,128,138,144,145,147,154,155,165,174,182,183,186,188,190,191,195,197,206,212,214,217,218,222,223,231,232,238,241,243,244,248,251,252,261,269,270,272,273,281,290,292,301,303,304,308,310,314,321,325,332,334,337,349,350,351,353,358,360,363,365,369,373,381,386,396,398,403,405,406,412,417,421,427,431,432,435,440,445,447,452,455,462,463,467,468,473,478,488,491,497,498,499,501,503,505,506,511,512,526,533,538,541,545,550,555,566,567,568,572,573,576,577};
array <int> selPic[36] = {1,5,9,13,17,21,25,29,33,37,41,45,49,53,57,61,65,69,4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72};
|
e7cda58ecc7988b3726f5def2b27862c0e971345 | 11b48ab2e0fbc782931cc1162673a725c914a3ee | /M2/M3DA/Mecanique/Fichiers/Fichiers/Contraintes.sce | 3c4e63db319913a81a5551b3f2b2e9302f457b11 | [] | no_license | naitabdelaziz/M2 | 1fcaa366c5993e6a879af49b40d43d32d1c2387b | c88aba0ae384c804c74e136e8c831b25032c4d0a | refs/heads/master | 2020-06-11T19:40:05.884042 | 2014-11-01T11:56:17 | 2014-11-01T11:56:17 | 26,049,488 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 3,420 | sce | Contraintes.sce | getd();
clear all;
// MAILLAGE //
[ noeuds , elements ] = MSHLoader('rectangle5.msh');
numElements = size(elements,2);
numNoeuds = size(noeuds,2);
// Matrice d'assemblage:
Kass = spzeros(2*numNoeuds,2*numNoeuds);
// materiau: Aluminium
E=69000; //MPa
Poisson=0.33;
Tableau_Cont = zeros(3,6,numElements);
// raideur de chaque element
for i=1:numElements,
//on récupère les indices des trois noeuds de l'élément
i1 = elements(1,i);
i2 = elements(2,i);
i3 = elements(3,i);
//on récupère les coordonnées des trois noeuds
P1 = noeuds(:,i1);
P2 = noeuds(:,i2);
P3 = noeuds(:,i3);
//lignes et colonnes conscernées:
// par ex = i1 = 3 // i2 = 5 // i3 = 8
// indices = [5 6 9 10 15 16]
indices = [2*i1-1 2*i1 2*i2-1 2*i2 2*i3-1 2*i3];
[Kelement, Cont] = KtriangleSimple(P1,P2,P3,E,Poisson);
Kass(indices,indices) = Kass(indices,indices) + Kelement;
Tableau_Cont(:,:,i)=Cont;
end
// on bloque les points de coordonnée x=5, les autres sont libres
numContraint = 0;
numLibre = 0;
ddl_contraint=[];
ddl_libre=[];
for n=1:numNoeuds,
// on récupère la coordonnée en x du noeud
x = noeuds(1,n);
// blocage selon x
if x==5, // A MODIFIER !
numContraint = numContraint + 1;
ddl_contraint([numContraint]) = [2*n-1] ;
else,
numLibre = numLibre + 1;
ddl_libre([numLibre]) = [2*n-1] ;
end
// blocage selon y
if x==5, // A MODIFIER !
numContraint = numContraint + 1;
ddl_contraint([numContraint]) = [ 2*n] ;
else,
numLibre = numLibre + 1;
ddl_libre([numLibre]) = [2*n] ;
end
end
Force = zeros(2*numNoeuds,1);
// force ponctuelle :
// on recupere le noeud de coordonnée x=0 y=1
pos_force=[0;1];
for n=1:numNoeuds,
x = noeuds(1,n);
y = noeuds(2,n);
if abs(x-pos_force(1)) < 0.000001 & abs(y-pos_force(2)) < 0.000001,
Force([2*n-1 2*n]) = [0 ; -100];
end
end
//// pression de surface
//numNoeudForce = 0;
//for n=1:numNoeuds,
// x = noeuds(1,n);
// y = noeuds(2,n);
// if x > - 0.000001 & x < 1.0000001 & abs(y-1) < 0.000001,
// Force([2*n-1 2*n]) = [0 ; -1];
// numNoeudForce = numNoeudForce+1;
// end
//end
//Charge = 100;
//Force = Force * Charge / numNoeudForce;
// deplacements aux noeuds
U = zeros(2*numNoeuds,1);
U(ddl_libre)= Kass(ddl_libre,ddl_libre)\Force(ddl_libre);
// on applique les déplacements aux noeuds:
noeuds_deplaces = noeuds;
for n=1:numNoeuds,
noeuds_deplaces(1,n) = noeuds(1,n) + U(2*n-1); // deplacement du noeud selon x
noeuds_deplaces(2,n) = noeuds(2,n) + U(2*n); // deplacement du noeud selon y
end
VonMises=[];
for i=1:numElements,
Cont = Tableau_Cont(:,:,i);
//on récupère les indices des trois noeuds de l'élément
i1 = elements(1,i);
i2 = elements(2,i);
i3 = elements(3,i);
indices = [2*i1-1 2*i1 2*i2-1 2*i2 2*i3-1 2*i3];
// calcul de la contrainte sur l'élément
// Sigma = [Sigma_xx;
// Sigma_yy;
// Sigma_xy]
Sigma = Cont * U(indices);
Sigma12 = spec([Sigma(1) Sigma(3); Sigma(3) Sigma(2)]);
VonMises(i)= sqrt(Sigma12(1)*Sigma12(1)+Sigma12(2)*Sigma12(2)-Sigma12(1)*Sigma12(2));
end
//draw_mesh( noeuds_deplaces, elements);
//draw_mesh2(noeuds, elements, dataNoeud);
draw_mesh3 (noeuds_deplaces, elements, [VonMises ; 10]);
|
13ade01726f004d7d28cbc8c5bba26bfaeece2ef | 6e257f133dd8984b578f3c9fd3f269eabc0750be | /ScilabFromTheoryToPractice/CreatingPlots/teststringbox.sce | 5b56743f6a32e5d6ac359fabe83f92aa6d76def6 | [] | 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 | 480 | sce | teststringbox.sce | // launch the graphics window
clf;
plot2d(0,0,0,rect=[0,0,1,1])
xgrid(4)
// first example
txt="the formula below is lopsided!"
xstring(0.1,0.75,txt)
E=gce();
E.font_size=5;
E.font_style=3;
E.box="on";
rect=xstringl(0.1,0.75,txt,3,5)
corners = stringbox(txt,0.1,0.75)
// second example
formula='${\pi^2\over 6}=\sum_{n=1}^\infty {1\over n^2}$';
xstring(0.4,0.25,formula)
E=gce();
E.font_angle=20;
E.font_size=5;
E.box="on";
rect=xstringl(0.4,0.25,formula)
corners = stringbox(E)
|
31e29b45d4266410351015206f540a13df0c4c4f | b26cbe6bc3e201f030705aaf9eb82da94def231f | /tests/is_ARP-004.tst | 74d5fc1028e1bfafd8f173d3152e234b96290511 | [] | no_license | RP-pbm/Recurrence-plot | f86c5cd85460661b01a609f8f4281d2cda6b4e07 | b5da95f9b30c1a924a002102219bf0a2ad47df2c | refs/heads/master | 2022-07-24T12:11:34.163543 | 2022-07-09T19:32:43 | 2022-07-09T19:32:43 | 92,934,698 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 21 | tst | is_ARP-004.tst | ../inputs/mini-04.ssv |
9d845bd910015b820124a71dce77a8ee3fe5a6c9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1199/CH2/EX2.32/2_32.sci | 41bdac006efc049dbb86f881257bb31b897c92e3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 400 | sci | 2_32.sci | // 2.32
clc;
Rm=50;
Re=12;
E=33.3*10^-3;
i=0.1*10^-3;
Rs=(E/i)-Rm-Re;
printf("Series resistance=%.2f ohm",Rs)
Re=13;
i1=E/(Rs+Re+Rm);
AE=[(i1-i)/i]*800;
printf("\nApproximate error due to rise in resistance of 1 ohm in Re=%.2f degree C",AE)
R_change=50*0.00426*10;
i1=E/(Rs+Re+Rm+R_change);
AE=[(i1-i)/i]*800;
printf("\nApproximate error due to rise in Temp. of 10=%.2f degree C",AE)
|
075daa5753892808ef2974b68e3a2b1e043a82ef | 36c5f94ce0d09d8d1cc8d0f9d79ecccaa78036bd | /IZikTheTerrible Gate Tracking .sce | 2edf50570d4814bd84aa344b983510ed497c9fa0 | [] | no_license | Ahmad6543/Scenarios | cef76bf19d46e86249a6099c01928e4e33db5f20 | 6a4563d241e61a62020f76796762df5ae8817cc8 | refs/heads/master | 2023-03-18T23:30:49.653812 | 2020-09-23T06:26:05 | 2020-09-23T06:26:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 159,871 | sce | IZikTheTerrible Gate Tracking .sce | Name=IZikTheTerrible Gate Tracking
PlayerCharacters=Quaker
BotCharacters=Quaker Bot.bot
IsChallenge=true
Timelimit=60.0
PlayerProfile=Quaker
AddedBots=Quaker Bot.bot
PlayerMaxLives=0
BotMaxLives=0
PlayerTeam=2
BotTeams=1
MapName=disk2.0.map
MapScale=5.0
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=true
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=1000.0
ScorePerDamage=5.0
ScorePerKill=0.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=true
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=Tracking
WeaponHeroTag=LG
DifficultyTag=3
AuthorsTag=IZikTheTerrible
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=true
BlockFCT=false
Description=tracking, score is based on accuracy.
GameVersion=1.0.8.0
ScorePerDistance=0.0
MBSEnable=false
MBSTime1=0.25
MBSTime2=0.5
MBSTime3=0.75
MBSTime1Mult=1.0
MBSTime2Mult=2.0
MBSTime3Mult=3.0
MBSFBInstead=false
MBSRequireEnemyAlive=false
[Aim Profile]
Name=At Feet
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=-200.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Aim Profile]
Name=Low Skill
MinReactionTime=0.35
MaxReactionTime=0.45
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=20.0
TrackSpeed=3.0
TrackError=5.0
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=60.0
ShootFOV=25.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Aim Profile]
Name=Default
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Bot Profile]
Name=Quaker Bot
DodgeProfileNames=Circle Strafe;Long Strafes;Short Strafes
DodgeProfileWeights=2.0;3.0;2.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;0.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=At Feet;At Feet;Low Skill;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=Quaker
SeeThroughWalls=false
NoDodging=false
NoAiming=false
[Character Profile]
Name=Quaker
MaxHealth=300.0
WeaponProfileNames=;;LG;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=80.000
HeadshotOnly=false
DamageKnockbackFactor=4.0
MovementType=Base
MaxSpeed=1000.0
MaxCrouchSpeed=500.0
Acceleration=7000.0
AirAcceleration=16000.0
Friction=4.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=true
CanJumpFromCrouch=false
EnemyBodyColor=X=0.771 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=1.000 Y=0.888 Z=0.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=320.0
MainBBRadius=58.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Dodge Profile]
Name=Circle Strafe
MaxTargetDistance=2500.0
MinTargetDistance=750.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.5
MaxLRTimeChange=1.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=50.0
DamageReactionResetTimer=0.5
JumpFrequency=0.2
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Oppose
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Dodge Profile]
Name=Long Strafes
MaxTargetDistance=2500.0
MinTargetDistance=750.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.5
MaxLRTimeChange=1.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=50.0
DamageReactionResetTimer=0.5
JumpFrequency=0.2
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Dodge Profile]
Name=Short Strafes
MaxTargetDistance=2500.0
MinTargetDistance=750.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.2
MaxLRTimeChange=0.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=50.0
DamageReactionResetTimer=0.5
JumpFrequency=0.1
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Weapon Profile]
Name=LG
Type=Hitscan
ShotsPerClick=1
DamagePerShot=6.0
KnockbackFactor=2.0
TimeBetweenShots=0.046
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=false
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=7.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.05
WallParticleEffect=None
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.0
RecoilNegatable=false
DecalType=0
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=true
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=720.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=false
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
String32 targetGameOverCamera end
String256 ownerString a
UInt8 playersMin 1
UInt8 playersMax 16
brush
vertices
-48.000000 32.000000 240.000000
-16.000000 32.000000 240.000000
-16.000000 32.000000 160.000000
-48.000000 32.000000 160.000000
-48.000000 24.000000 240.000000
-16.000000 24.000000 240.000000
-16.000000 24.000000 160.000000
-48.000000 24.000000 160.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-264.000000 40.000000 264.000000
256.000000 40.000000 264.000000
256.000000 40.000000 168.000000
-264.000000 40.000000 168.000000
-264.000000 24.000000 264.000000
256.000000 24.000000 264.000000
256.000000 24.000000 168.000000
-264.000000 24.000000 168.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-264.000000 40.000000 256.000000
256.000000 40.000000 256.000000
256.000000 40.000000 160.000000
-264.000000 40.000000 160.000000
-264.000000 24.000000 256.000000
256.000000 24.000000 256.000000
256.000000 24.000000 160.000000
-264.000000 24.000000 160.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-264.000000 40.000000 -152.000000
176.000000 40.000000 -152.000000
176.000000 40.000000 -248.000000
-264.000000 40.000000 -248.000000
-264.000000 24.000000 -152.000000
176.000000 24.000000 -152.000000
176.000000 24.000000 -248.000000
-264.000000 24.000000 -248.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-264.000000 40.000000 160.000000
-168.000000 40.000000 160.000000
-168.000000 40.000000 -152.000000
-264.000000 40.000000 -152.000000
-264.000000 24.000000 160.000000
-168.000000 24.000000 160.000000
-168.000000 24.000000 -152.000000
-264.000000 24.000000 -152.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
144.000000 40.000000 144.000000
160.000000 40.000000 144.000000
160.000000 40.000000 16.000000
144.000000 40.000000 16.000000
144.000000 24.000000 144.000000
160.000000 24.000000 144.000000
160.000000 24.000000 16.000000
144.000000 24.000000 16.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
144.000000 40.000000 -16.000000
160.000000 40.000000 -16.000000
160.000000 40.000000 -160.000000
144.000000 40.000000 -160.000000
144.000000 24.000000 -16.000000
160.000000 24.000000 -16.000000
160.000000 24.000000 -160.000000
144.000000 24.000000 -160.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
16.000000 40.000000 160.000000
160.000000 40.000000 160.000000
160.000000 40.000000 144.000000
16.000000 40.000000 144.000000
16.000000 24.000000 160.000000
160.000000 24.000000 160.000000
160.000000 24.000000 144.000000
16.000000 24.000000 144.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-168.000000 40.000000 160.000000
-16.000000 40.000000 160.000000
-16.000000 40.000000 144.000000
-168.000000 40.000000 144.000000
-168.000000 24.000000 160.000000
-16.000000 24.000000 160.000000
-16.000000 24.000000 144.000000
-168.000000 24.000000 144.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-168.000000 40.000000 -136.000000
-16.000000 40.000000 -136.000000
-16.000000 40.000000 -152.000000
-168.000000 40.000000 -152.000000
-168.000000 32.000000 -136.000000
-16.000000 32.000000 -136.000000
-16.000000 32.000000 -152.000000
-168.000000 32.000000 -152.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-168.000000 40.000000 144.000000
-152.000000 40.000000 144.000000
-152.000000 40.000000 16.000000
-168.000000 40.000000 16.000000
-168.000000 32.000000 144.000000
-152.000000 32.000000 144.000000
-152.000000 32.000000 16.000000
-168.000000 32.000000 16.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-168.000000 40.000000 -16.000000
-152.000000 40.000000 -16.000000
-152.000000 40.000000 -144.000000
-168.000000 40.000000 -144.000000
-168.000000 32.000000 -16.000000
-152.000000 32.000000 -16.000000
-152.000000 32.000000 -144.000000
-168.000000 32.000000 -144.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
16.000000 40.000000 -136.000000
144.000000 40.000000 -136.000000
144.000000 40.000000 -152.000000
16.000000 40.000000 -152.000000
16.000000 32.000000 -136.000000
144.000000 32.000000 -136.000000
144.000000 32.000000 -152.000000
16.000000 32.000000 -152.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-152.000000 40.000000 144.000000
-144.000000 40.000000 144.000000
-144.000000 40.000000 32.000000
-152.000000 40.000000 32.000000
-152.000000 32.000000 144.000000
-144.000000 32.000000 144.000000
-144.000000 32.000000 32.000000
-152.000000 32.000000 32.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-144.000000 40.000000 144.000000
-32.000000 40.000000 144.000000
-32.000000 40.000000 136.000000
-144.000000 40.000000 136.000000
-144.000000 32.000000 144.000000
-32.000000 32.000000 144.000000
-32.000000 32.000000 136.000000
-144.000000 32.000000 136.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-144.000000 40.000000 136.000000
-136.000000 40.000000 136.000000
-136.000000 40.000000 48.000000
-144.000000 40.000000 48.000000
-144.000000 32.000000 136.000000
-136.000000 32.000000 136.000000
-136.000000 32.000000 48.000000
-144.000000 32.000000 48.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-136.000000 40.000000 136.000000
-48.000000 40.000000 136.000000
-48.000000 40.000000 128.000000
-136.000000 40.000000 128.000000
-136.000000 32.000000 136.000000
-48.000000 32.000000 136.000000
-48.000000 32.000000 128.000000
-136.000000 32.000000 128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-136.000000 40.000000 128.000000
-128.000000 40.000000 128.000000
-128.000000 40.000000 64.000000
-136.000000 40.000000 64.000000
-136.000000 32.000000 128.000000
-128.000000 32.000000 128.000000
-128.000000 32.000000 64.000000
-136.000000 32.000000 64.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-128.000000 40.000000 128.000000
-64.000000 40.000000 128.000000
-64.000000 40.000000 120.000000
-128.000000 40.000000 120.000000
-128.000000 32.000000 128.000000
-64.000000 32.000000 128.000000
-64.000000 32.000000 120.000000
-128.000000 32.000000 120.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-128.000000 40.000000 120.000000
-112.000000 40.000000 120.000000
-112.000000 40.000000 104.000000
-128.000000 40.000000 104.000000
-128.000000 32.000000 120.000000
-112.000000 32.000000 120.000000
-112.000000 32.000000 104.000000
-128.000000 32.000000 104.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-112.000000 40.000000 120.000000
-80.000000 40.000000 120.000000
-80.000000 40.000000 104.000000
-112.000000 40.000000 104.000000
-112.000000 32.000000 120.000000
-80.000000 32.000000 120.000000
-80.000000 32.000000 104.000000
-112.000000 32.000000 104.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-128.000000 40.000000 104.000000
-120.000000 40.000000 104.000000
-120.000000 40.000000 80.000000
-128.000000 40.000000 80.000000
-128.000000 32.000000 104.000000
-120.000000 32.000000 104.000000
-120.000000 32.000000 80.000000
-128.000000 32.000000 80.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-120.000000 40.000000 104.000000
-96.000000 40.000000 104.000000
-96.000000 40.000000 96.000000
-120.000000 40.000000 96.000000
-120.000000 32.000000 104.000000
-96.000000 32.000000 104.000000
-96.000000 32.000000 96.000000
-120.000000 32.000000 96.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-120.000000 40.000000 96.000000
-112.000000 40.000000 96.000000
-112.000000 40.000000 88.000000
-120.000000 40.000000 88.000000
-120.000000 32.000000 96.000000
-112.000000 32.000000 96.000000
-112.000000 32.000000 88.000000
-120.000000 32.000000 88.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
32.000000 40.000000 144.000000
144.000000 40.000000 144.000000
144.000000 40.000000 136.000000
32.000000 40.000000 136.000000
32.000000 32.000000 144.000000
144.000000 32.000000 144.000000
144.000000 32.000000 136.000000
32.000000 32.000000 136.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
136.000000 40.000000 128.000000
144.000000 40.000000 128.000000
144.000000 40.000000 32.000000
136.000000 40.000000 32.000000
136.000000 32.000000 128.000000
144.000000 32.000000 128.000000
144.000000 32.000000 32.000000
136.000000 32.000000 32.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
48.000000 40.000000 136.000000
144.000000 40.000000 136.000000
144.000000 40.000000 128.000000
48.000000 40.000000 128.000000
48.000000 32.000000 136.000000
144.000000 32.000000 136.000000
144.000000 32.000000 128.000000
48.000000 32.000000 128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
128.000000 40.000000 128.000000
136.000000 40.000000 128.000000
136.000000 40.000000 48.000000
128.000000 40.000000 48.000000
128.000000 32.000000 128.000000
136.000000 32.000000 128.000000
136.000000 32.000000 48.000000
128.000000 32.000000 48.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
64.000000 40.000000 128.000000
128.000000 40.000000 128.000000
128.000000 40.000000 120.000000
64.000000 40.000000 120.000000
64.000000 32.000000 128.000000
128.000000 32.000000 128.000000
128.000000 32.000000 120.000000
64.000000 32.000000 120.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
80.000000 40.000000 120.000000
128.000000 40.000000 120.000000
128.000000 40.000000 112.000000
80.000000 40.000000 112.000000
80.000000 32.000000 120.000000
128.000000 32.000000 120.000000
128.000000 32.000000 112.000000
80.000000 32.000000 112.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
120.000000 40.000000 136.000000
128.000000 40.000000 136.000000
128.000000 40.000000 64.000000
120.000000 40.000000 64.000000
120.000000 32.000000 136.000000
128.000000 32.000000 136.000000
128.000000 32.000000 64.000000
120.000000 32.000000 64.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
112.000000 40.000000 144.000000
120.000000 40.000000 144.000000
120.000000 40.000000 80.000000
112.000000 40.000000 80.000000
112.000000 32.000000 144.000000
120.000000 32.000000 144.000000
120.000000 32.000000 80.000000
112.000000 32.000000 80.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
152.000000 40.000000 16.000000
160.000000 40.000000 16.000000
160.000000 40.000000 -16.000000
152.000000 40.000000 -16.000000
152.000000 32.000000 16.000000
160.000000 32.000000 16.000000
160.000000 32.000000 -16.000000
152.000000 32.000000 -16.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
32.000000 40.000000 -128.000000
160.000000 40.000000 -128.000000
160.000000 40.000000 -136.000000
32.000000 40.000000 -136.000000
32.000000 32.000000 -128.000000
160.000000 32.000000 -128.000000
160.000000 32.000000 -136.000000
32.000000 32.000000 -136.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
48.000000 40.000000 -120.000000
136.000000 40.000000 -120.000000
136.000000 40.000000 -128.000000
48.000000 40.000000 -128.000000
48.000000 32.000000 -120.000000
136.000000 32.000000 -120.000000
136.000000 32.000000 -128.000000
48.000000 32.000000 -128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
136.000000 40.000000 -32.000000
144.000000 40.000000 -32.000000
144.000000 40.000000 -136.000000
136.000000 40.000000 -136.000000
136.000000 24.000000 -32.000000
144.000000 24.000000 -32.000000
144.000000 24.000000 -136.000000
136.000000 24.000000 -136.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
64.000000 40.000000 -112.000000
136.000000 40.000000 -112.000000
136.000000 40.000000 -120.000000
64.000000 40.000000 -120.000000
64.000000 32.000000 -112.000000
136.000000 32.000000 -112.000000
136.000000 32.000000 -120.000000
64.000000 32.000000 -120.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
128.000000 40.000000 -48.000000
144.000000 40.000000 -48.000000
144.000000 40.000000 -120.000000
128.000000 40.000000 -120.000000
128.000000 32.000000 -48.000000
144.000000 32.000000 -48.000000
144.000000 32.000000 -120.000000
128.000000 32.000000 -120.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
80.000000 40.000000 -104.000000
136.000000 40.000000 -104.000000
136.000000 40.000000 -112.000000
80.000000 40.000000 -112.000000
80.000000 32.000000 -104.000000
136.000000 32.000000 -104.000000
136.000000 32.000000 -112.000000
80.000000 32.000000 -112.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
120.000000 40.000000 -64.000000
136.000000 40.000000 -64.000000
136.000000 40.000000 -112.000000
120.000000 40.000000 -112.000000
120.000000 32.000000 -64.000000
136.000000 32.000000 -64.000000
136.000000 32.000000 -112.000000
120.000000 32.000000 -112.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
96.000000 40.000000 -96.000000
128.000000 40.000000 -96.000000
128.000000 40.000000 -104.000000
96.000000 40.000000 -104.000000
96.000000 32.000000 -96.000000
128.000000 32.000000 -96.000000
128.000000 32.000000 -104.000000
96.000000 32.000000 -104.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
112.000000 40.000000 -80.000000
120.000000 40.000000 -80.000000
120.000000 40.000000 -96.000000
112.000000 40.000000 -96.000000
112.000000 32.000000 -80.000000
120.000000 32.000000 -80.000000
120.000000 32.000000 -96.000000
112.000000 32.000000 -96.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
96.000000 40.000000 112.000000
112.000000 40.000000 112.000000
112.000000 40.000000 104.000000
96.000000 40.000000 104.000000
96.000000 32.000000 112.000000
112.000000 32.000000 112.000000
112.000000 32.000000 104.000000
96.000000 32.000000 104.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
104.000000 40.000000 -88.000000
120.000000 40.000000 -88.000000
120.000000 40.000000 -96.000000
104.000000 40.000000 -96.000000
104.000000 32.000000 -88.000000
120.000000 32.000000 -88.000000
120.000000 32.000000 -96.000000
104.000000 32.000000 -96.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-16.000000 40.000000 160.000000
16.000000 40.000000 160.000000
16.000000 40.000000 152.000000
-16.000000 40.000000 152.000000
-16.000000 32.000000 160.000000
16.000000 32.000000 160.000000
16.000000 32.000000 152.000000
-16.000000 32.000000 152.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-168.000000 40.000000 16.000000
-160.000000 40.000000 16.000000
-160.000000 40.000000 -16.000000
-168.000000 40.000000 -16.000000
-168.000000 32.000000 16.000000
-160.000000 32.000000 16.000000
-160.000000 32.000000 -16.000000
-168.000000 32.000000 -16.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-16.000000 40.000000 -144.000000
16.000000 40.000000 -144.000000
16.000000 40.000000 -152.000000
-16.000000 40.000000 -152.000000
-16.000000 32.000000 -144.000000
16.000000 32.000000 -144.000000
16.000000 32.000000 -152.000000
-16.000000 32.000000 -152.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-152.000000 40.000000 -32.000000
-144.000000 40.000000 -32.000000
-144.000000 40.000000 -136.000000
-152.000000 40.000000 -136.000000
-152.000000 32.000000 -32.000000
-144.000000 32.000000 -32.000000
-144.000000 32.000000 -136.000000
-152.000000 32.000000 -136.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-144.000000 40.000000 -128.000000
-32.000000 40.000000 -128.000000
-32.000000 40.000000 -136.000000
-144.000000 40.000000 -136.000000
-144.000000 32.000000 -128.000000
-32.000000 32.000000 -128.000000
-32.000000 32.000000 -136.000000
-144.000000 32.000000 -136.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-144.000000 40.000000 -120.000000
-48.000000 40.000000 -120.000000
-48.000000 40.000000 -128.000000
-144.000000 40.000000 -128.000000
-144.000000 32.000000 -120.000000
-48.000000 32.000000 -120.000000
-48.000000 32.000000 -128.000000
-144.000000 32.000000 -128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-144.000000 40.000000 -48.000000
-136.000000 40.000000 -48.000000
-136.000000 40.000000 -136.000000
-144.000000 40.000000 -136.000000
-144.000000 32.000000 -48.000000
-136.000000 32.000000 -48.000000
-136.000000 32.000000 -136.000000
-144.000000 32.000000 -136.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-136.000000 40.000000 -112.000000
-64.000000 40.000000 -112.000000
-64.000000 40.000000 -120.000000
-136.000000 40.000000 -120.000000
-136.000000 32.000000 -112.000000
-64.000000 32.000000 -112.000000
-64.000000 32.000000 -120.000000
-136.000000 32.000000 -120.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-136.000000 40.000000 -64.000000
-128.000000 40.000000 -64.000000
-128.000000 40.000000 -128.000000
-136.000000 40.000000 -128.000000
-136.000000 32.000000 -64.000000
-128.000000 32.000000 -64.000000
-128.000000 32.000000 -128.000000
-136.000000 32.000000 -128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-128.000000 40.000000 -104.000000
-80.000000 40.000000 -104.000000
-80.000000 40.000000 -112.000000
-128.000000 40.000000 -112.000000
-128.000000 32.000000 -104.000000
-80.000000 32.000000 -104.000000
-80.000000 32.000000 -112.000000
-128.000000 32.000000 -112.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-128.000000 40.000000 -80.000000
-120.000000 40.000000 -80.000000
-120.000000 40.000000 -112.000000
-128.000000 40.000000 -112.000000
-128.000000 32.000000 -80.000000
-120.000000 32.000000 -80.000000
-120.000000 32.000000 -112.000000
-128.000000 32.000000 -112.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-120.000000 40.000000 -96.000000
-96.000000 40.000000 -96.000000
-96.000000 40.000000 -104.000000
-120.000000 40.000000 -104.000000
-120.000000 32.000000 -96.000000
-96.000000 32.000000 -96.000000
-96.000000 32.000000 -104.000000
-120.000000 32.000000 -104.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000000 80.000000 -40.000000
-248.000000 80.000000 -40.000000
-248.000000 80.000000 -80.000000
-256.000000 80.000000 -80.000000
-256.000000 40.000000 -40.000000
-248.000000 40.000000 -40.000000
-248.000000 40.000000 -80.000000
-256.000000 40.000000 -80.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-192.000000 80.000000 -160.000000
-184.000000 80.000000 -160.000000
-184.000000 80.000000 -200.000000
-192.000000 80.000000 -200.000000
-192.000000 40.000000 -160.000000
-184.000000 40.000000 -160.000000
-184.000000 40.000000 -200.000000
-192.000000 40.000000 -200.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-176.000000 80.000000 368.000000
-168.000000 80.000000 368.000000
-168.000000 80.000000 168.000000
-176.000000 80.000000 168.000000
-176.000000 40.000000 368.000000
-168.000000 40.000000 368.000000
-168.000000 40.000000 168.000000
-176.000000 40.000000 168.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
160.000000 40.000000 160.000000
256.000000 40.000000 160.000000
256.000000 40.000000 -248.000000
160.000000 40.000000 -248.000000
160.000000 24.000000 160.000000
256.000000 24.000000 160.000000
256.000000 24.000000 -248.000000
160.000000 24.000000 -248.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000000 0.000000 264.000000
256.000000 0.000000 264.000000
256.000000 0.000000 -248.000000
-256.000000 0.000000 -248.000000
-256.000000 -16.000000 264.000000
256.000000 -16.000000 264.000000
256.000000 -16.000000 -248.000000
-256.000000 -16.000000 -248.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000000 152.000000 -16.000000
-248.000000 152.000000 -16.000000
-248.000000 152.000000 -72.000000
-256.000000 152.000000 -72.000000
-256.000000 40.000000 -16.000000
-248.000000 40.000000 -16.000000
-248.000000 40.000000 -72.000000
-256.000000 40.000000 -72.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-248.000000 152.000000 -48.000000
-240.000000 152.000000 -48.000000
-240.000000 152.000000 -88.000000
-248.000000 152.000000 -88.000000
-248.000000 40.000000 -48.000000
-240.000000 40.000000 -48.000000
-240.000000 40.000000 -88.000000
-248.000000 40.000000 -88.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-240.000000 152.000000 -64.000000
-232.000000 152.000000 -64.000000
-232.000000 152.000000 -104.000000
-240.000000 152.000000 -104.000000
-240.000000 40.000000 -64.000000
-232.000000 40.000000 -64.000000
-232.000000 40.000000 -104.000000
-240.000000 40.000000 -104.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-232.000000 152.000000 -80.000000
-224.000000 152.000000 -80.000000
-224.000000 152.000000 -120.000000
-232.000000 152.000000 -120.000000
-232.000000 40.000000 -80.000000
-224.000000 40.000000 -80.000000
-224.000000 40.000000 -120.000000
-232.000000 40.000000 -120.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-224.000000 152.000000 -96.000000
-216.000000 152.000000 -96.000000
-216.000000 152.000000 -136.000000
-224.000000 152.000000 -136.000000
-224.000000 40.000000 -96.000000
-216.000000 40.000000 -96.000000
-216.000000 40.000000 -136.000000
-224.000000 40.000000 -136.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-216.000000 152.000000 -112.000000
-208.000000 152.000000 -112.000000
-208.000000 152.000000 -152.000000
-216.000000 152.000000 -152.000000
-216.000000 40.000000 -112.000000
-208.000000 40.000000 -112.000000
-208.000000 40.000000 -152.000000
-216.000000 40.000000 -152.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-208.000000 152.000000 -128.000000
-200.000000 152.000000 -128.000000
-200.000000 152.000000 -168.000000
-208.000000 152.000000 -168.000000
-208.000000 40.000000 -128.000000
-200.000000 40.000000 -128.000000
-200.000000 40.000000 -168.000000
-208.000000 40.000000 -168.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-320.000000 152.000000 -160.000000
-176.000000 152.000000 -160.000000
-176.000000 152.000000 -168.000000
-320.000000 152.000000 -168.000000
-320.000000 40.000000 -160.000000
-176.000000 40.000000 -160.000000
-176.000000 40.000000 -168.000000
-320.000000 40.000000 -168.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-200.000000 152.000000 -144.000000
-192.000000 152.000000 -144.000000
-192.000000 152.000000 -184.000000
-200.000000 152.000000 -184.000000
-200.000000 40.000000 -144.000000
-192.000000 40.000000 -144.000000
-192.000000 40.000000 -184.000000
-200.000000 40.000000 -184.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-304.000000 152.000000 -168.000000
-160.000000 152.000000 -168.000000
-160.000000 152.000000 -176.000000
-304.000000 152.000000 -176.000000
-304.000000 40.000000 -168.000000
-160.000000 40.000000 -168.000000
-160.000000 40.000000 -176.000000
-304.000000 40.000000 -176.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-288.000000 152.000000 -176.000000
-144.000000 152.000000 -176.000000
-144.000000 152.000000 -184.000000
-288.000000 152.000000 -184.000000
-288.000000 40.000000 -176.000000
-144.000000 40.000000 -176.000000
-144.000000 40.000000 -184.000000
-288.000000 40.000000 -184.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-272.000000 152.000000 -184.000000
-128.000000 152.000000 -184.000000
-128.000000 152.000000 -192.000000
-272.000000 152.000000 -192.000000
-272.000000 40.000000 -184.000000
-128.000000 40.000000 -184.000000
-128.000000 40.000000 -192.000000
-272.000000 40.000000 -192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000000 152.000000 -192.000000
-112.000000 152.000000 -192.000000
-112.000000 152.000000 -200.000000
-256.000000 152.000000 -200.000000
-256.000000 40.000000 -192.000000
-112.000000 40.000000 -192.000000
-112.000000 40.000000 -200.000000
-256.000000 40.000000 -200.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-240.000000 152.000000 -200.000000
-96.000000 152.000000 -200.000000
-96.000000 152.000000 -208.000000
-240.000000 152.000000 -208.000000
-240.000000 40.000000 -200.000000
-96.000000 40.000000 -200.000000
-96.000000 40.000000 -208.000000
-240.000000 40.000000 -208.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-208.000000 152.000000 -216.000000
-64.000000 152.000000 -216.000000
-64.000000 152.000000 -224.000000
-208.000000 152.000000 -224.000000
-208.000000 40.000000 -216.000000
-64.000000 40.000000 -216.000000
-64.000000 40.000000 -224.000000
-208.000000 40.000000 -224.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-224.000000 152.000000 -208.000000
-80.000000 152.000000 -208.000000
-80.000000 152.000000 -216.000000
-224.000000 152.000000 -216.000000
-224.000000 40.000000 -208.000000
-80.000000 40.000000 -208.000000
-80.000000 40.000000 -216.000000
-224.000000 40.000000 -216.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-192.000000 152.000000 -224.000000
-48.000000 152.000000 -224.000000
-48.000000 152.000000 -232.000000
-192.000000 152.000000 -232.000000
-192.000000 40.000000 -224.000000
-48.000000 40.000000 -224.000000
-48.000000 40.000000 -232.000000
-192.000000 40.000000 -232.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-160.000000 152.000000 -240.000000
-16.000000 152.000000 -240.000000
-16.000000 152.000000 -248.000000
-160.000000 152.000000 -248.000000
-160.000000 40.000000 -240.000000
-16.000000 40.000000 -240.000000
-16.000000 40.000000 -248.000000
-160.000000 40.000000 -248.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-176.000000 152.000000 -232.000000
-32.000000 152.000000 -232.000000
-32.000000 152.000000 -240.000000
-176.000000 152.000000 -240.000000
-176.000000 40.000000 -232.000000
-32.000000 40.000000 -232.000000
-32.000000 40.000000 -240.000000
-176.000000 40.000000 -240.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-264.000000 152.000000 -248.000000
256.000000 152.000000 -248.000000
256.000000 152.000000 -256.000000
-264.000000 152.000000 -256.000000
-264.000000 -16.000000 -248.000000
256.000000 -16.000000 -248.000000
256.000000 -16.000000 -256.000000
-264.000000 -16.000000 -256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-264.000000 152.000000 264.000000
-256.000000 152.000000 264.000000
-256.000000 152.000000 -248.000000
-264.000000 152.000000 -248.000000
-264.000000 -16.000000 264.000000
-256.000000 -16.000000 264.000000
-256.000000 -16.000000 -248.000000
-264.000000 -16.000000 -248.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000000 152.000000 216.000000
-248.000000 152.000000 216.000000
-248.000000 152.000000 16.000000
-256.000000 152.000000 16.000000
-256.000000 40.000000 216.000000
-248.000000 40.000000 216.000000
-248.000000 40.000000 16.000000
-256.000000 40.000000 16.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-248.000000 152.000000 232.000000
-240.000000 152.000000 232.000000
-240.000000 152.000000 32.000000
-248.000000 152.000000 32.000000
-248.000000 40.000000 232.000000
-240.000000 40.000000 232.000000
-240.000000 40.000000 32.000000
-248.000000 40.000000 32.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-240.000000 152.000000 248.000000
-232.000000 152.000000 248.000000
-232.000000 152.000000 48.000000
-240.000000 152.000000 48.000000
-240.000000 40.000000 248.000000
-232.000000 40.000000 248.000000
-232.000000 40.000000 48.000000
-240.000000 40.000000 48.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-232.000000 152.000000 256.000000
-224.000000 152.000000 256.000000
-224.000000 152.000000 56.000000
-232.000000 152.000000 56.000000
-232.000000 40.000000 256.000000
-224.000000 40.000000 256.000000
-224.000000 40.000000 56.000000
-232.000000 40.000000 56.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-224.000000 152.000000 272.000000
-216.000000 152.000000 272.000000
-216.000000 152.000000 72.000000
-224.000000 152.000000 72.000000
-224.000000 40.000000 272.000000
-216.000000 40.000000 272.000000
-216.000000 40.000000 72.000000
-224.000000 40.000000 72.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-216.000000 152.000000 288.000000
-208.000000 152.000000 288.000000
-208.000000 152.000000 88.000000
-216.000000 152.000000 88.000000
-216.000000 40.000000 288.000000
-208.000000 40.000000 288.000000
-208.000000 40.000000 88.000000
-216.000000 40.000000 88.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-208.000000 152.000000 304.000000
-200.000000 152.000000 304.000000
-200.000000 152.000000 104.000000
-208.000000 152.000000 104.000000
-208.000000 40.000000 304.000000
-200.000000 40.000000 304.000000
-200.000000 40.000000 104.000000
-208.000000 40.000000 104.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-200.000000 152.000000 320.000000
-192.000000 152.000000 320.000000
-192.000000 152.000000 120.000000
-200.000000 152.000000 120.000000
-200.000000 40.000000 320.000000
-192.000000 40.000000 320.000000
-192.000000 40.000000 120.000000
-200.000000 40.000000 120.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-192.000000 152.000000 336.000000
-184.000000 152.000000 336.000000
-184.000000 152.000000 136.000000
-192.000000 152.000000 136.000000
-192.000000 40.000000 336.000000
-184.000000 40.000000 336.000000
-184.000000 40.000000 136.000000
-192.000000 40.000000 136.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-184.000000 152.000000 352.000000
-176.000000 152.000000 352.000000
-176.000000 152.000000 152.000000
-184.000000 152.000000 152.000000
-184.000000 40.000000 352.000000
-176.000000 40.000000 352.000000
-176.000000 40.000000 152.000000
-184.000000 40.000000 152.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-304.000000 152.000000 192.000000
-144.000000 152.000000 192.000000
-144.000000 152.000000 184.000000
-304.000000 152.000000 184.000000
-304.000000 40.000000 192.000000
-144.000000 40.000000 192.000000
-144.000000 40.000000 184.000000
-304.000000 40.000000 184.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-320.000000 152.000000 184.000000
-160.000000 152.000000 184.000000
-160.000000 152.000000 176.000000
-320.000000 152.000000 176.000000
-320.000000 40.000000 184.000000
-160.000000 40.000000 184.000000
-160.000000 40.000000 176.000000
-320.000000 40.000000 176.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-288.000000 152.000000 200.000000
-128.000000 152.000000 200.000000
-128.000000 152.000000 192.000000
-288.000000 152.000000 192.000000
-288.000000 40.000000 200.000000
-128.000000 40.000000 200.000000
-128.000000 40.000000 192.000000
-288.000000 40.000000 192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-272.000000 152.000000 208.000000
-112.000000 152.000000 208.000000
-112.000000 152.000000 200.000000
-272.000000 152.000000 200.000000
-272.000000 40.000000 208.000000
-112.000000 40.000000 208.000000
-112.000000 40.000000 200.000000
-272.000000 40.000000 200.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000000 152.000000 216.000000
-96.000000 152.000000 216.000000
-96.000000 152.000000 208.000000
-256.000000 152.000000 208.000000
-256.000000 40.000000 216.000000
-96.000000 40.000000 216.000000
-96.000000 40.000000 208.000000
-256.000000 40.000000 208.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-224.000000 152.000000 232.000000
-64.000000 152.000000 232.000000
-64.000000 152.000000 224.000000
-224.000000 152.000000 224.000000
-224.000000 40.000000 232.000000
-64.000000 40.000000 232.000000
-64.000000 40.000000 224.000000
-224.000000 40.000000 224.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-240.000000 152.000000 224.000000
-80.000000 152.000000 224.000000
-80.000000 152.000000 216.000000
-240.000000 152.000000 216.000000
-240.000000 40.000000 224.000000
-80.000000 40.000000 224.000000
-80.000000 40.000000 216.000000
-240.000000 40.000000 216.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-208.000000 152.000000 240.000000
-48.000000 152.000000 240.000000
-48.000000 152.000000 232.000000
-208.000000 152.000000 232.000000
-208.000000 40.000000 240.000000
-48.000000 40.000000 240.000000
-48.000000 40.000000 232.000000
-208.000000 40.000000 232.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-192.000000 152.000000 248.000000
-32.000000 152.000000 248.000000
-32.000000 152.000000 240.000000
-192.000000 152.000000 240.000000
-192.000000 40.000000 248.000000
-32.000000 40.000000 248.000000
-32.000000 40.000000 240.000000
-192.000000 40.000000 240.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-192.000000 152.000000 256.000000
-32.000000 152.000000 256.000000
-32.000000 152.000000 248.000000
-192.000000 152.000000 248.000000
-192.000000 40.000000 256.000000
-32.000000 40.000000 256.000000
-32.000000 40.000000 248.000000
-192.000000 40.000000 248.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-168.000000 152.000000 264.000000
-16.000000 152.000000 264.000000
-16.000000 152.000000 256.000000
-168.000000 152.000000 256.000000
-168.000000 40.000000 264.000000
-16.000000 40.000000 264.000000
-16.000000 40.000000 256.000000
-168.000000 40.000000 256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
16.000000 152.000000 264.000000
216.000000 152.000000 264.000000
216.000000 152.000000 256.000000
16.000000 152.000000 256.000000
16.000000 40.000000 264.000000
216.000000 40.000000 264.000000
216.000000 40.000000 256.000000
16.000000 40.000000 256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-264.000000 152.000000 272.000000
256.000000 152.000000 272.000000
256.000000 152.000000 264.000000
-264.000000 152.000000 264.000000
-264.000000 -8.000000 272.000000
256.000000 -8.000000 272.000000
256.000000 -8.000000 264.000000
-264.000000 -8.000000 264.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
32.000000 152.000000 256.000000
232.000000 152.000000 256.000000
232.000000 152.000000 248.000000
32.000000 152.000000 248.000000
32.000000 40.000000 256.000000
232.000000 40.000000 256.000000
232.000000 40.000000 248.000000
32.000000 40.000000 248.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
48.000000 152.000000 248.000000
248.000000 152.000000 248.000000
248.000000 152.000000 240.000000
48.000000 152.000000 240.000000
48.000000 40.000000 248.000000
248.000000 40.000000 248.000000
248.000000 40.000000 240.000000
48.000000 40.000000 240.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
64.000000 152.000000 240.000000
264.000000 152.000000 240.000000
264.000000 152.000000 232.000000
64.000000 152.000000 232.000000
64.000000 40.000000 240.000000
264.000000 40.000000 240.000000
264.000000 40.000000 232.000000
64.000000 40.000000 232.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
80.000000 152.000000 232.000000
280.000000 152.000000 232.000000
280.000000 152.000000 224.000000
80.000000 152.000000 224.000000
80.000000 40.000000 232.000000
280.000000 40.000000 232.000000
280.000000 40.000000 224.000000
80.000000 40.000000 224.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
96.000000 152.000000 224.000000
312.000000 152.000000 224.000000
312.000000 152.000000 216.000000
96.000000 152.000000 216.000000
96.000000 40.000000 224.000000
312.000000 40.000000 224.000000
312.000000 40.000000 216.000000
96.000000 40.000000 216.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
112.000000 152.000000 216.000000
312.000000 152.000000 216.000000
312.000000 152.000000 208.000000
112.000000 152.000000 208.000000
112.000000 40.000000 216.000000
312.000000 40.000000 216.000000
312.000000 40.000000 208.000000
112.000000 40.000000 208.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
128.000000 152.000000 208.000000
328.000000 152.000000 208.000000
328.000000 152.000000 200.000000
128.000000 152.000000 200.000000
128.000000 40.000000 208.000000
328.000000 40.000000 208.000000
328.000000 40.000000 200.000000
128.000000 40.000000 200.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
144.000000 152.000000 200.000000
344.000000 152.000000 200.000000
344.000000 152.000000 192.000000
144.000000 152.000000 192.000000
144.000000 40.000000 200.000000
344.000000 40.000000 200.000000
344.000000 40.000000 192.000000
144.000000 40.000000 192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
160.000000 152.000000 192.000000
360.000000 152.000000 192.000000
360.000000 152.000000 184.000000
160.000000 152.000000 184.000000
160.000000 40.000000 192.000000
360.000000 40.000000 192.000000
360.000000 40.000000 184.000000
160.000000 40.000000 184.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
176.000000 152.000000 184.000000
376.000000 152.000000 184.000000
376.000000 152.000000 176.000000
176.000000 152.000000 176.000000
176.000000 40.000000 184.000000
376.000000 40.000000 184.000000
376.000000 40.000000 176.000000
176.000000 40.000000 176.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
184.000000 152.000000 280.000000
192.000000 152.000000 280.000000
192.000000 152.000000 144.000000
184.000000 152.000000 144.000000
184.000000 40.000000 280.000000
192.000000 40.000000 280.000000
192.000000 40.000000 144.000000
184.000000 40.000000 144.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
176.000000 152.000000 296.000000
184.000000 152.000000 296.000000
184.000000 152.000000 160.000000
176.000000 152.000000 160.000000
176.000000 40.000000 296.000000
184.000000 40.000000 296.000000
184.000000 40.000000 160.000000
176.000000 40.000000 160.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
168.000000 152.000000 312.000000
176.000000 152.000000 312.000000
176.000000 152.000000 176.000000
168.000000 152.000000 176.000000
168.000000 40.000000 312.000000
176.000000 40.000000 312.000000
176.000000 40.000000 176.000000
168.000000 40.000000 176.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
200.000000 152.000000 248.000000
208.000000 152.000000 248.000000
208.000000 152.000000 112.000000
200.000000 152.000000 112.000000
200.000000 40.000000 248.000000
208.000000 40.000000 248.000000
208.000000 40.000000 112.000000
200.000000 40.000000 112.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
192.000000 152.000000 264.000000
200.000000 152.000000 264.000000
200.000000 152.000000 128.000000
192.000000 152.000000 128.000000
192.000000 40.000000 264.000000
200.000000 40.000000 264.000000
200.000000 40.000000 128.000000
192.000000 40.000000 128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
208.000000 152.000000 232.000000
216.000000 152.000000 232.000000
216.000000 152.000000 96.000000
208.000000 152.000000 96.000000
208.000000 40.000000 232.000000
216.000000 40.000000 232.000000
216.000000 40.000000 96.000000
208.000000 40.000000 96.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
216.000000 152.000000 216.000000
224.000000 152.000000 216.000000
224.000000 152.000000 80.000000
216.000000 152.000000 80.000000
216.000000 40.000000 216.000000
224.000000 40.000000 216.000000
224.000000 40.000000 80.000000
216.000000 40.000000 80.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
224.000000 152.000000 200.000000
232.000000 152.000000 200.000000
232.000000 152.000000 64.000000
224.000000 152.000000 64.000000
224.000000 40.000000 200.000000
232.000000 40.000000 200.000000
232.000000 40.000000 64.000000
224.000000 40.000000 64.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
232.000000 152.000000 184.000000
240.000000 152.000000 184.000000
240.000000 152.000000 48.000000
232.000000 152.000000 48.000000
232.000000 40.000000 184.000000
240.000000 40.000000 184.000000
240.000000 40.000000 48.000000
232.000000 40.000000 48.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
240.000000 152.000000 168.000000
248.000000 152.000000 168.000000
248.000000 152.000000 32.000000
240.000000 152.000000 32.000000
240.000000 40.000000 168.000000
248.000000 40.000000 168.000000
248.000000 40.000000 32.000000
240.000000 40.000000 32.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
248.000000 152.000000 152.000000
256.000000 152.000000 152.000000
256.000000 152.000000 16.000000
248.000000 152.000000 16.000000
248.000000 40.000000 152.000000
256.000000 40.000000 152.000000
256.000000 40.000000 16.000000
248.000000 40.000000 16.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
256.000000 152.000000 272.000000
264.000000 152.000000 272.000000
264.000000 152.000000 -248.000000
256.000000 152.000000 -248.000000
256.000000 -40.000000 272.000000
264.000000 -40.000000 272.000000
264.000000 -40.000000 -248.000000
256.000000 -40.000000 -248.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
248.000000 152.000000 -16.000000
256.000000 152.000000 -16.000000
256.000000 152.000000 -176.000000
248.000000 152.000000 -176.000000
248.000000 40.000000 -16.000000
256.000000 40.000000 -16.000000
256.000000 40.000000 -176.000000
248.000000 40.000000 -176.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
240.000000 152.000000 -32.000000
248.000000 152.000000 -32.000000
248.000000 152.000000 -192.000000
240.000000 152.000000 -192.000000
240.000000 40.000000 -32.000000
248.000000 40.000000 -32.000000
248.000000 40.000000 -192.000000
240.000000 40.000000 -192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
232.000000 152.000000 -48.000000
240.000000 152.000000 -48.000000
240.000000 152.000000 -208.000000
232.000000 152.000000 -208.000000
232.000000 40.000000 -48.000000
240.000000 40.000000 -48.000000
240.000000 40.000000 -208.000000
232.000000 40.000000 -208.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
224.000000 152.000000 -64.000000
232.000000 152.000000 -64.000000
232.000000 152.000000 -224.000000
224.000000 152.000000 -224.000000
224.000000 40.000000 -64.000000
232.000000 40.000000 -64.000000
232.000000 40.000000 -224.000000
224.000000 40.000000 -224.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
216.000000 152.000000 -80.000000
224.000000 152.000000 -80.000000
224.000000 152.000000 -240.000000
216.000000 152.000000 -240.000000
216.000000 40.000000 -80.000000
224.000000 40.000000 -80.000000
224.000000 40.000000 -240.000000
216.000000 40.000000 -240.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
208.000000 152.000000 -96.000000
216.000000 152.000000 -96.000000
216.000000 152.000000 -256.000000
208.000000 152.000000 -256.000000
208.000000 40.000000 -96.000000
216.000000 40.000000 -96.000000
216.000000 40.000000 -256.000000
208.000000 40.000000 -256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
200.000000 152.000000 -112.000000
208.000000 152.000000 -112.000000
208.000000 152.000000 -272.000000
200.000000 152.000000 -272.000000
200.000000 40.000000 -112.000000
208.000000 40.000000 -112.000000
208.000000 40.000000 -272.000000
200.000000 40.000000 -272.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
192.000000 152.000000 -128.000000
200.000000 152.000000 -128.000000
200.000000 152.000000 -288.000000
192.000000 152.000000 -288.000000
192.000000 40.000000 -128.000000
200.000000 40.000000 -128.000000
200.000000 40.000000 -288.000000
192.000000 40.000000 -288.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
184.000000 152.000000 -144.000000
192.000000 152.000000 -144.000000
192.000000 152.000000 -304.000000
184.000000 152.000000 -304.000000
184.000000 40.000000 -144.000000
192.000000 40.000000 -144.000000
192.000000 40.000000 -304.000000
184.000000 40.000000 -304.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
176.000000 152.000000 -160.000000
184.000000 152.000000 -160.000000
184.000000 152.000000 -320.000000
176.000000 152.000000 -320.000000
176.000000 40.000000 -160.000000
184.000000 40.000000 -160.000000
184.000000 40.000000 -320.000000
176.000000 40.000000 -320.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
160.000000 152.000000 -168.000000
320.000000 152.000000 -168.000000
320.000000 152.000000 -176.000000
160.000000 152.000000 -176.000000
160.000000 40.000000 -168.000000
320.000000 40.000000 -168.000000
320.000000 40.000000 -176.000000
160.000000 40.000000 -176.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
144.000000 152.000000 -176.000000
304.000000 152.000000 -176.000000
304.000000 152.000000 -184.000000
144.000000 152.000000 -184.000000
144.000000 40.000000 -176.000000
304.000000 40.000000 -176.000000
304.000000 40.000000 -184.000000
144.000000 40.000000 -184.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
128.000000 152.000000 -184.000000
288.000000 152.000000 -184.000000
288.000000 152.000000 -192.000000
128.000000 152.000000 -192.000000
128.000000 40.000000 -184.000000
288.000000 40.000000 -184.000000
288.000000 40.000000 -192.000000
128.000000 40.000000 -192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
112.000000 152.000000 -192.000000
272.000000 152.000000 -192.000000
272.000000 152.000000 -200.000000
112.000000 152.000000 -200.000000
112.000000 40.000000 -192.000000
272.000000 40.000000 -192.000000
272.000000 40.000000 -200.000000
112.000000 40.000000 -200.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
96.000000 152.000000 -200.000000
256.000000 152.000000 -200.000000
256.000000 152.000000 -208.000000
96.000000 152.000000 -208.000000
96.000000 40.000000 -200.000000
256.000000 40.000000 -200.000000
256.000000 40.000000 -208.000000
96.000000 40.000000 -208.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
80.000000 152.000000 -208.000000
240.000000 152.000000 -208.000000
240.000000 152.000000 -216.000000
80.000000 152.000000 -216.000000
80.000000 40.000000 -208.000000
240.000000 40.000000 -208.000000
240.000000 40.000000 -216.000000
80.000000 40.000000 -216.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
64.000000 152.000000 -216.000000
224.000000 152.000000 -216.000000
224.000000 152.000000 -224.000000
64.000000 152.000000 -224.000000
64.000000 40.000000 -216.000000
224.000000 40.000000 -216.000000
224.000000 40.000000 -224.000000
64.000000 40.000000 -224.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
48.000000 152.000000 -224.000000
208.000000 152.000000 -224.000000
208.000000 152.000000 -232.000000
48.000000 152.000000 -232.000000
48.000000 40.000000 -224.000000
208.000000 40.000000 -224.000000
208.000000 40.000000 -232.000000
48.000000 40.000000 -232.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
32.000000 152.000000 -232.000000
192.000000 152.000000 -232.000000
192.000000 152.000000 -240.000000
32.000000 152.000000 -240.000000
32.000000 40.000000 -232.000000
192.000000 40.000000 -232.000000
192.000000 40.000000 -240.000000
32.000000 40.000000 -240.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
16.000000 152.000000 -240.000000
176.000000 152.000000 -240.000000
176.000000 152.000000 -248.000000
16.000000 152.000000 -248.000000
16.000000 40.000000 -240.000000
176.000000 40.000000 -240.000000
176.000000 40.000000 -248.000000
16.000000 40.000000 -248.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-80.000000 152.000000 120.000000
-72.000000 152.000000 120.000000
-72.000000 152.000000 112.000000
-80.000000 152.000000 112.000000
-80.000000 32.000000 120.000000
-72.000000 32.000000 120.000000
-72.000000 32.000000 112.000000
-80.000000 32.000000 112.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000000 152.000000 264.000000
256.000000 152.000000 264.000000
256.000000 152.000000 -248.000000
-256.000000 152.000000 -248.000000
-256.000000 144.000000 264.000000
256.000000 144.000000 264.000000
256.000000 144.000000 -248.000000
-256.000000 144.000000 -248.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-120.000000 40.000000 -88.000000
-112.000000 40.000000 -88.000000
-112.000000 40.000000 -96.000000
-120.000000 40.000000 -96.000000
-120.000000 32.000000 -88.000000
-112.000000 32.000000 -88.000000
-112.000000 32.000000 -96.000000
-120.000000 32.000000 -96.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-152.000000 152.000000 40.000000
-144.000000 152.000000 40.000000
-144.000000 152.000000 32.000000
-152.000000 152.000000 32.000000
-152.000000 40.000000 40.000000
-144.000000 40.000000 40.000000
-144.000000 40.000000 32.000000
-152.000000 40.000000 32.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-168.000000 152.000000 8.000000
-160.000000 152.000000 8.000000
-160.000000 152.000000 -8.000000
-168.000000 152.000000 -8.000000
-168.000000 40.000000 8.000000
-160.000000 40.000000 8.000000
-160.000000 40.000000 -8.000000
-168.000000 40.000000 -8.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-136.000000 152.000000 80.000000
-128.000000 152.000000 80.000000
-128.000000 152.000000 72.000000
-136.000000 152.000000 72.000000
-136.000000 40.000000 80.000000
-128.000000 40.000000 80.000000
-128.000000 40.000000 72.000000
-136.000000 40.000000 72.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-112.000000 152.000000 104.000000
-104.000000 152.000000 104.000000
-104.000000 152.000000 96.000000
-112.000000 152.000000 96.000000
-112.000000 40.000000 104.000000
-104.000000 40.000000 104.000000
-104.000000 40.000000 96.000000
-112.000000 40.000000 96.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-48.000000 152.000000 144.000000
-40.000000 152.000000 144.000000
-40.000000 152.000000 136.000000
-48.000000 152.000000 136.000000
-48.000000 40.000000 144.000000
-40.000000 40.000000 144.000000
-40.000000 40.000000 136.000000
-48.000000 40.000000 136.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-152.000000 144.000000 -32.000000
-144.000000 144.000000 -32.000000
-144.000000 144.000000 -40.000000
-152.000000 144.000000 -40.000000
-152.000000 40.000000 -32.000000
-144.000000 40.000000 -32.000000
-144.000000 40.000000 -40.000000
-152.000000 40.000000 -40.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-136.000000 152.000000 -64.000000
-128.000000 152.000000 -64.000000
-128.000000 152.000000 -72.000000
-136.000000 152.000000 -72.000000
-136.000000 40.000000 -64.000000
-128.000000 40.000000 -64.000000
-128.000000 40.000000 -72.000000
-136.000000 40.000000 -72.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-112.000000 144.000000 -96.000000
-104.000000 144.000000 -96.000000
-104.000000 144.000000 -104.000000
-112.000000 144.000000 -104.000000
-112.000000 40.000000 -96.000000
-104.000000 40.000000 -96.000000
-104.000000 40.000000 -104.000000
-112.000000 40.000000 -104.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-80.000000 152.000000 -112.000000
-72.000000 152.000000 -112.000000
-72.000000 152.000000 -120.000000
-80.000000 152.000000 -120.000000
-80.000000 40.000000 -112.000000
-72.000000 40.000000 -112.000000
-72.000000 40.000000 -120.000000
-80.000000 40.000000 -120.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-48.000000 144.000000 -128.000000
-40.000000 144.000000 -128.000000
-40.000000 144.000000 -136.000000
-48.000000 144.000000 -136.000000
-48.000000 40.000000 -128.000000
-40.000000 40.000000 -128.000000
-40.000000 40.000000 -136.000000
-48.000000 40.000000 -136.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-8.000000 152.000000 -144.000000
8.000000 152.000000 -144.000000
8.000000 152.000000 -152.000000
-8.000000 152.000000 -152.000000
-8.000000 40.000000 -144.000000
8.000000 40.000000 -144.000000
8.000000 40.000000 -152.000000
-8.000000 40.000000 -152.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
40.000000 144.000000 -128.000000
48.000000 144.000000 -128.000000
48.000000 144.000000 -136.000000
40.000000 144.000000 -136.000000
40.000000 40.000000 -128.000000
48.000000 40.000000 -128.000000
48.000000 40.000000 -136.000000
40.000000 40.000000 -136.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
72.000000 152.000000 -112.000000
80.000000 152.000000 -112.000000
80.000000 152.000000 -120.000000
72.000000 152.000000 -120.000000
72.000000 40.000000 -112.000000
80.000000 40.000000 -112.000000
80.000000 40.000000 -120.000000
72.000000 40.000000 -120.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
136.000000 144.000000 -40.000000
144.000000 144.000000 -40.000000
144.000000 144.000000 -48.000000
136.000000 144.000000 -48.000000
136.000000 40.000000 -40.000000
144.000000 40.000000 -40.000000
144.000000 40.000000 -48.000000
136.000000 40.000000 -48.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
120.000000 152.000000 -72.000000
128.000000 152.000000 -72.000000
128.000000 152.000000 -80.000000
120.000000 152.000000 -80.000000
120.000000 40.000000 -72.000000
128.000000 40.000000 -72.000000
128.000000 40.000000 -80.000000
120.000000 40.000000 -80.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
96.000000 144.000000 -96.000000
104.000000 144.000000 -96.000000
104.000000 144.000000 -104.000000
96.000000 144.000000 -104.000000
96.000000 40.000000 -96.000000
104.000000 40.000000 -96.000000
104.000000 40.000000 -104.000000
96.000000 40.000000 -104.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
152.000000 152.000000 8.000000
160.000000 152.000000 8.000000
160.000000 152.000000 -8.000000
152.000000 152.000000 -8.000000
152.000000 40.000000 8.000000
160.000000 40.000000 8.000000
160.000000 40.000000 -8.000000
152.000000 40.000000 -8.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
136.000000 152.000000 48.000000
144.000000 152.000000 48.000000
144.000000 152.000000 40.000000
136.000000 152.000000 40.000000
136.000000 40.000000 48.000000
144.000000 40.000000 48.000000
144.000000 40.000000 40.000000
136.000000 40.000000 40.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
120.000000 152.000000 80.000000
128.000000 152.000000 80.000000
128.000000 152.000000 72.000000
120.000000 152.000000 72.000000
120.000000 40.000000 80.000000
128.000000 40.000000 80.000000
128.000000 40.000000 72.000000
120.000000 40.000000 72.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
104.000000 152.000000 112.000000
112.000000 152.000000 112.000000
112.000000 152.000000 104.000000
104.000000 152.000000 104.000000
104.000000 32.000000 112.000000
112.000000 32.000000 112.000000
112.000000 32.000000 104.000000
104.000000 32.000000 104.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
72.000000 152.000000 128.000000
80.000000 152.000000 128.000000
80.000000 152.000000 120.000000
72.000000 152.000000 120.000000
72.000000 40.000000 128.000000
80.000000 40.000000 128.000000
80.000000 40.000000 120.000000
72.000000 40.000000 120.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
40.000000 144.000000 144.000000
48.000000 144.000000 144.000000
48.000000 144.000000 136.000000
40.000000 144.000000 136.000000
40.000000 40.000000 144.000000
48.000000 40.000000 144.000000
48.000000 40.000000 136.000000
40.000000 40.000000 136.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-8.000000 152.000000 160.000000
8.000000 152.000000 160.000000
8.000000 152.000000 152.000000
-8.000000 152.000000 152.000000
-8.000000 40.000000 160.000000
8.000000 40.000000 160.000000
8.000000 40.000000 152.000000
-8.000000 40.000000 152.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000000 40.000000 272.000000
264.000000 40.000000 272.000000
264.000000 40.000000 -248.000000
-256.000000 40.000000 -248.000000
-256.000000 16.000000 272.000000
264.000000 16.000000 272.000000
264.000000 16.000000 -248.000000
-256.000000 16.000000 -248.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
80.000000 152.000000 120.000000
104.000000 152.000000 120.000000
104.000000 152.000000 112.000000
80.000000 152.000000 112.000000
80.000000 40.000000 120.000000
104.000000 40.000000 120.000000
104.000000 40.000000 112.000000
80.000000 40.000000 112.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
8.000000 152.000000 152.000000
40.000000 152.000000 152.000000
40.000000 152.000000 144.000000
8.000000 152.000000 144.000000
8.000000 40.000000 152.000000
40.000000 40.000000 152.000000
40.000000 40.000000 144.000000
8.000000 40.000000 144.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
48.000000 152.000000 136.000000
72.000000 152.000000 136.000000
72.000000 152.000000 128.000000
48.000000 152.000000 128.000000
48.000000 40.000000 136.000000
72.000000 40.000000 136.000000
72.000000 40.000000 128.000000
48.000000 40.000000 128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-40.000000 152.000000 152.000000
-8.000000 152.000000 152.000000
-8.000000 152.000000 144.000000
-40.000000 152.000000 144.000000
-40.000000 40.000000 152.000000
-8.000000 40.000000 152.000000
-8.000000 40.000000 144.000000
-40.000000 40.000000 144.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-72.000000 160.000000 136.000000
-48.000000 160.000000 136.000000
-48.000000 160.000000 120.000000
-72.000000 160.000000 120.000000
-72.000000 32.000000 136.000000
-48.000000 32.000000 136.000000
-48.000000 32.000000 120.000000
-72.000000 32.000000 120.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
112.000000 152.000000 104.000000
120.000000 152.000000 104.000000
120.000000 152.000000 80.000000
112.000000 152.000000 80.000000
112.000000 40.000000 104.000000
120.000000 40.000000 104.000000
120.000000 40.000000 80.000000
112.000000 40.000000 80.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
128.000000 152.000000 80.000000
136.000000 152.000000 80.000000
136.000000 152.000000 48.000000
128.000000 152.000000 48.000000
128.000000 40.000000 80.000000
136.000000 40.000000 80.000000
136.000000 40.000000 48.000000
128.000000 40.000000 48.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
144.000000 152.000000 40.000000
152.000000 152.000000 40.000000
152.000000 152.000000 8.000000
144.000000 152.000000 8.000000
144.000000 40.000000 40.000000
152.000000 40.000000 40.000000
152.000000 40.000000 8.000000
144.000000 40.000000 8.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
144.000000 144.000000 -8.000000
152.000000 144.000000 -8.000000
152.000000 144.000000 -40.000000
144.000000 144.000000 -40.000000
144.000000 40.000000 -8.000000
152.000000 40.000000 -8.000000
152.000000 40.000000 -40.000000
144.000000 40.000000 -40.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
128.000000 152.000000 -48.000000
136.000000 152.000000 -48.000000
136.000000 152.000000 -72.000000
128.000000 152.000000 -72.000000
128.000000 40.000000 -48.000000
136.000000 40.000000 -48.000000
136.000000 40.000000 -72.000000
128.000000 40.000000 -72.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
104.000000 152.000000 -80.000000
120.000000 152.000000 -80.000000
120.000000 152.000000 -96.000000
104.000000 152.000000 -96.000000
104.000000 40.000000 -80.000000
120.000000 40.000000 -80.000000
120.000000 40.000000 -96.000000
104.000000 40.000000 -96.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
80.000000 152.000000 -104.000000
96.000000 152.000000 -104.000000
96.000000 152.000000 -112.000000
80.000000 152.000000 -112.000000
80.000000 40.000000 -104.000000
96.000000 40.000000 -104.000000
96.000000 40.000000 -112.000000
80.000000 40.000000 -112.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
48.000000 152.000000 -120.000000
72.000000 152.000000 -120.000000
72.000000 152.000000 -128.000000
48.000000 152.000000 -128.000000
48.000000 40.000000 -120.000000
72.000000 40.000000 -120.000000
72.000000 40.000000 -128.000000
48.000000 40.000000 -128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
8.000000 152.000000 -136.000000
40.000000 152.000000 -136.000000
40.000000 152.000000 -144.000000
8.000000 152.000000 -144.000000
8.000000 40.000000 -136.000000
40.000000 40.000000 -136.000000
40.000000 40.000000 -144.000000
8.000000 40.000000 -144.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-40.000000 152.000000 -136.000000
-8.000000 152.000000 -136.000000
-8.000000 152.000000 -144.000000
-40.000000 152.000000 -144.000000
-40.000000 40.000000 -136.000000
-8.000000 40.000000 -136.000000
-8.000000 40.000000 -144.000000
-40.000000 40.000000 -144.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-72.000000 152.000000 -120.000000
-48.000000 152.000000 -120.000000
-48.000000 152.000000 -128.000000
-72.000000 152.000000 -128.000000
-72.000000 40.000000 -120.000000
-48.000000 40.000000 -120.000000
-48.000000 40.000000 -128.000000
-72.000000 40.000000 -128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-104.000000 152.000000 -104.000000
-80.000000 152.000000 -104.000000
-80.000000 152.000000 -112.000000
-104.000000 152.000000 -112.000000
-104.000000 40.000000 -104.000000
-80.000000 40.000000 -104.000000
-80.000000 40.000000 -112.000000
-104.000000 40.000000 -112.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-128.000000 152.000000 -72.000000
-112.000000 152.000000 -72.000000
-112.000000 152.000000 -96.000000
-128.000000 152.000000 -96.000000
-128.000000 40.000000 -72.000000
-112.000000 40.000000 -72.000000
-112.000000 40.000000 -96.000000
-128.000000 40.000000 -96.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-144.000000 152.000000 -40.000000
-136.000000 152.000000 -40.000000
-136.000000 152.000000 -64.000000
-144.000000 152.000000 -64.000000
-144.000000 40.000000 -40.000000
-136.000000 40.000000 -40.000000
-136.000000 40.000000 -64.000000
-144.000000 40.000000 -64.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-104.000000 152.000000 112.000000
-80.000000 152.000000 112.000000
-80.000000 152.000000 104.000000
-104.000000 152.000000 104.000000
-104.000000 40.000000 112.000000
-80.000000 40.000000 112.000000
-80.000000 40.000000 104.000000
-104.000000 40.000000 104.000000
faces
0.000000 0.000000 1.000000 1.000000 270.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 270.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 270.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 270.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 270.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 270.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-128.000000 152.000000 96.000000
-112.000000 152.000000 96.000000
-112.000000 152.000000 80.000000
-128.000000 152.000000 80.000000
-128.000000 40.000000 96.000000
-112.000000 40.000000 96.000000
-112.000000 40.000000 80.000000
-128.000000 40.000000 80.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-144.000000 152.000000 72.000000
-136.000000 152.000000 72.000000
-136.000000 152.000000 40.000000
-144.000000 152.000000 40.000000
-144.000000 40.000000 72.000000
-136.000000 40.000000 72.000000
-136.000000 40.000000 40.000000
-144.000000 40.000000 40.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-160.000000 152.000000 32.000000
-152.000000 152.000000 32.000000
-152.000000 152.000000 -32.000000
-160.000000 152.000000 -32.000000
-160.000000 40.000000 32.000000
-152.000000 40.000000 32.000000
-152.000000 40.000000 -32.000000
-160.000000 40.000000 -32.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
entity
type CameraPath
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type Effect
Vector3 position 0.000000 256.000000 0.000000
String64 effectName internal/misc/reflectionprobe
entity
type Target
Vector3 position 320.000000 256.000000 320.000000
Vector3 angles -135.000000 30.000000 0.000000
String32 name end
entity
type PlayerSpawn
Vector3 position -80.000000 40.000000 168.000000
Bool8 teamB 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -0.000000 40.000000 -0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 104.000000 40.000000 168.000000
Bool8 teamB 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -200.000000 40.000000 -48.000000
Bool8 teamB 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -48.000000 40.000000 -176.000000
Bool8 teamB 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 152.000000 40.000000 -104.000000
Bool8 teamB 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
|
1d58e61e7e1bc44baed1314b34ffc76de8b87d0d | 449d555969bfd7befe906877abab098c6e63a0e8 | /51/CH5/EX5.29/5_29.sce | 94c4674a650fa1f21f4de3013e298cd2bec552fb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 599 | sce | 5_29.sce | clc;
clear;
p1=100;//psia
T1=520;//degree R
p2=14.7;//psia
//for incompressible flow
d=p1*144/(1716*T1);//where d=density, calculated by assuminng air to behave like an ideal gas
//Bernoulli equation
v2=(2*(p1-p2)*144/d)^0.5;//ft/sec
disp("ft/sec",v2,"The velocity of expanded air considering incompressible flow =")
//for compressible flow
k=1.4;//for air
d1=d;
d2=d1*((p2/p1)^(1/k));//where d2=density of expanded air
//bernoulli equation
V2=((2*k/(k-1))*((p1*144/d1)-(p2*144/d2)))^0.5;//ft/s
disp("ft/s",V2,"The velocity of expanded air considering compressible flow =")
|
ff4e1628cd1ab21c9a55e7fd3e101fabb22a01ff | 449d555969bfd7befe906877abab098c6e63a0e8 | /3840/CH9/EX9.3/Ex9_3.sce | 412d23afeefca45a6be2ae4f3b5b9fbc97d11474 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 268 | sce | Ex9_3.sce | clear
//
//
//
//Variable declaration
T=2 //temperature(K)
Tc=3.7 //critical temperature(K)
H0=0.0306 //critical magnetic field(A/m)
//Calculation
Hc=H0*(1-(T/Tc)**2) //critical field(Tesla)
//Result
printf("\n critical field is %0.5f Tesla",Hc)
|
b29f85e485209c2db30dd544da186929f9a942d7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2054/CH1/EX1.62/ex1_62.sce | aaa7dbfdc476b2f47012a6501a9c85a0d94f5d60 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 399 | sce | ex1_62.sce | //Exa:1.62
clc;
clear;
close;
P_o=500*735.5;//in watts
N_o=40;//in rpm
s_f=0.12;
N_f=N_o*(1-s_f);//full load speed (in rpm)
T_f=P_o/(2*%pi*N_f/60);//Full load torque (N-m)
T_m=2*T_f;//Motor torque (in N-m)
T_l=41500*9.81;//Load torque (in N-m)
t=10;//seconds
w_s=s_f*N_o*2*%pi/60;//slip speed (in rad/sec)
K=w_s/T_f;
J=-t/(K*log(1-(T_m/T_l)));
disp(J,'Moment of Inertia (in Kg-m^2)=') |
4604f23145400163e1f58ad610df336515603b7f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1319/CH12/EX12.14/i_14.sce | 5ab7f01be568bc6d61c368366629dbde6be9ad00 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 334 | sce | i_14.sce | // To determine resistances in parallel.
clc;
clear;
I=25;
V=200;
P1=1500;
// Voltage remains the same in both the coils.
// Power Equation and Ohm's Law is being incorporated.
I1=P1/V;
R1=V/I1;
I2=I-I1;
R2= V/I2;
disp('ohms',R1,'The resistance of coil 1 =')
disp('ohms',R2,'The resistance of coil 2 =')
|
998c80eeba65fe95f2b6c2d8797cf25bc6bc0dd1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3673/CH9/EX9.22/Ex9_22.sce | 5c6d15c1f7deea568d4b6297110856f63ad03ff6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 443 | sce | Ex9_22.sce | //Example 9_22 page no:391
clc;
//given data
Wr=400;//power in watts
Wy=-35;//power in watts
//calculating total acitve power
T_active_pow=Wr+Wy;
disp(T_active_pow,"the total active power is (in watts)");
//calculting the power factor
phi=atand(sqrt(3)*((Wr-Wy)/(Wr+Wy)));
phi=cosd(phi);
disp(phi,"the power factor is");
//calculating the reactive power
rec_pow=sqrt(3)*(Wr-Wy);
disp(rec_pow,"the reactive power is (in VAR)");
|
4a2ca597955668d9307418c74c29c12358d356f2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3756/CH4/EX4.1/Ex4_1.sce | 88beff375e588e087f3eaeb5c02f9e3298e84a6f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex4_1.sce | clc
//
//
//
//Variable declaration
theta1=9.9 //rotation of plane
l=2 //Length
c=0.08 //Concentration
s2=66 //specific rotation
//Calculations
s1=((theta1)/(l*c))
pis=((s2-s1)/s2)*100
pps=100-pis
//Result
printf("\n percentage of purity of sample %0.3f percentage",pps)
|
3125c258e9e98c1cc4ae60711dc8f3c5d4393cd5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3885/CH5/EX5.12/Ex5_12.sci | c670d7cf193339287fc33d0644f751629e0ef740 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 459 | sci | Ex5_12.sci | //control systems by Nagoor Kani A
//Edition 3
//Year of publication 2015
//Scilab version 6.0.0
//operating systems windows 10
// Example 5.12
clc;
clear;
s=poly(0,'s')
//the close loop tranfer function is K(1-s)/s*(s^2+5s+9)+K(1-s)
a=(s^3)+(5*s^2)+(8*s)+1//the charater stic equation is assuming K=1
b=coeff(a)
n=length(b)
R=routh_t(a)
disp(R,'the routh array is;')
disp('the valus of K lies between 0 to7.5 for the system to be stable')
|
f0515070fa6812370d45dac47808f9450befad99 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2966/CH3/EX3.20/3_20.sce | 6337d592c66c895ee10c5ada9d659b73d2ce853b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 3_20.sce | //lubricants//
//page 3.38 example 10//
clc
S_C=191//Saponification value of castor oil//
wt_oil=2.5//weight f oil saponified(gms)//
blank=40//volume blank titration reading(ml)//
back=24//volume back titration reading(ml)//
volume=blank-back//volume of alcoholic KOH consumed(ml)//
N=0.5//normality of KOH for equivalence//
S_blended=volume*N*56/wt_oil//formula for saponification value//
printf("\nSaponification value of blended oil is %.1f mg/g",S_blended);
pc_C=(S_blended/S_C)*100
printf("\npercentage of castor oil in blend is %.2f percent",pc_C); |
c7c9ed55674360d728ab89a5b525bd9bf4affe03 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2621/CH1/EX1.19/Ex1_19.sce | 076f4af1adeb7c095c93a76947396383d74b4cbd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 484 | sce | Ex1_19.sce | // Example 1.19
clc;
clear;
close;
// Given data
format('v',8);
VCC= 5;// in V
VBE= 0.7;// in V
VEE= -5;// in V
VT= 26;// in mV
R= 18.6;// in kΩ
Beta= 100;
I2= (VCC-VBE-VEE)/R;// in mA
IC3= I2;// in mA (due to current mirror action)
IE= IC3/2;// emitter current of transistor Q1 and Q2
re_desh= VT/IE;//AC emitter resistance of transistor in Ω
Rin1= 2*Beta*re_desh;// in Ω
Rin1= Rin1*10^-3;// in kΩ
disp(Rin1,"The differential input resistance in kΩ is : ")
|
e3b2cfa179eb0fbd34fc21b13893299104ba3331 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2381/CH9/EX9.10/ex_10.sce | 7c371bc74bf671dfa693116f1aac20d032aa874e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 170 | sce | ex_10.sce | //Example 10// length
clc;
clear;
close;
l1=66;//cm
v=330;//m/s
nbs=5;//beats/sec
x=(2*(v-(nbs*2*l1*10^-2))/(v*2*l1*10^-2));//
l2=1/x;//cm
disp(l2*100,"length is,(cm)=")
|
b64f792bda3ee60a5d588d5f0c700225f7301421 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3557/CH2/EX2.1/Ex2_1.sce | 819e2089a8d1901f8a39d37b54360466df0ef70a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 475 | sce | Ex2_1.sce | // Example 2.1//
d= 8.93;//g/cm^3 // density of copper
a=63.55;//amu // atomic mass of copper
//The volume sampled
c=1;//mew meter //deep cylinder in the surface of solid copper
e=2;//given
f=1;//cm //centimeter
g=10^4;//mew m
vs=(%pi*(c/e)^2)*(1/10^4)^3//Volume sampled formula
mprintf(" vs = %e cm^3",vs)
//Thus, the number of atoms sampled
a1=8.93;//g/cm^3
b=0.602*10^24;//atoms//Avogadro's number
c1=63.55;//g
ns=a1*vs*b/c1
mprintf("\n ns = %e atoms",ns)
|
f17f44e9afeb7491a673d161d096db918c0f2654 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2870/CH16/EX16.10/Ex16_10.sce | c3b68d6e8fe2cc9bb75f8de952566e82b0fcc34d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 275 | sce | Ex16_10.sce | clc;clear;
//Example 16.10
//given data
T=358;
P=300/100;//in bar
//constants used
M=2;
s=0.00901;//solubility in kmol/m^3 bar
p=0.027;
//calculations
pH2=s*P;
disp(pH2,'molar density of H2 in kmol/m^3');
pH2=p*M;
disp(pH2,'mass density of H2 in kg/m^3')
|
7e096b0889eb39997c1897c771da361c3acf6501 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1964/CH4/EX4.16/ex4_16.sce | 6e9d4887664e366a66897aaad473315dfe174fd4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 786 | sce | ex4_16.sce | //Chapter-4, Example 4.16, Page 145
//=============================================================================
clc
clear
//given voltage applied is e=100*sin(314*t)
//CALCULATIONS
E=100/sqrt(2);
w=314;
L=0.2;//inductannce in henry
// indefinitely integrating e and later dividing by L we get it as
//i=-1.592*cos(314*t);//instantaneous current
//instantaneous power=e*i=-79.6*sin(628t)
P=0;//average power=0
Xl=w*L;//inductance in ohms
I=(E)/(Xl);//rms current
mprintf("inductive reactance and rms current is %2.1f ohms and %1.3f amps respectively",Xl,I);
//note:We cannot compute symbolic or indefinite integration in scilab.In order to verify your results use wxmaxima software.
//=================================END OF PROGRAM==============================
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.