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
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
9622fdf974ab59de51814aab1882d5b15b1eb54f
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3838/CH2/EX2.11.a/EX2_11_a.sce
|
78372bd798785a0458ab11a6bb49ef934c467514
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 351 |
sce
|
EX2_11_a.sce
|
//Example 2.11.a
//to check the system is time invariant or not
clc ;
t0 =1;
T =10;
for t =1: T
x ( t ) =t;
y ( t ) =(2)*(t)*x(t) ;
end
inputshift = 2*(T)*x (T - t0 );
outputshift = y (T - t0 ) ;
if( inputshift == outputshift )
disp ( 'THE GIVEN SYSTEM I S TIME INVARIANT ' )
else
disp ( 'THE GIVEN SYSTEM I S TIME VARIANT ' ) ;
end
|
90fcec5d5eaa64fb5e2746b02b7ad0ea21f95d79
|
8217f7986187902617ad1bf89cb789618a90dd0a
|
/browsable_source/1.1/Unix/scilab-1.1/macros/robust/gtild.sci
|
01e835320a539953cab9198f9dc0a47ce66aaf72
|
[
"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 | 718 |
sci
|
gtild.sci
|
function [at,bt,ct,dt]=gtild(a,b,c,d)
// input:
// g:=[A,B,C,D] (syslin list) or g=g(s)
// gtild returns g~(s) = g(-s)' (in transfer form or in state-space)
// calling sequences:
//-- [at,bt,ct,dt]=gtild(a,b,c,[d])
//-- [gt]=gtild(g)
//!
[lhs,rhs]=argn(0),
select rhs,
case 1 then
if a(1)='r' then
v=varn(a(2)),s=poly(0,v),
at=horner(a,-s),at=syslin('c',at'),
return,end,
case 3 then a=syslin('c',a,b,c),
case 4 then a=syslin('c',a,b,c,d),
else
error('Input arguments are :[A,[B,C,[D]]]'),
end,
at=syslin('cont',-a(2)',-a(4)',a(3)',a(5)'),
if lhs=4 then
dt=at(5),ct=at(4),bt=at(3),at=at(2),
end,
|
b3a903db47cb28d17deac01ad2e1b95f6e8f388b
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2183/CH5/EX5.1/Ex_5_1.sce
|
9e969fe78545b018a0bc4966dbbc802ff125ab86
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 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 |
sce
|
Ex_5_1.sce
|
// Example 5.1 //number of longitudinal modes and frequency spacing
clc;
clear;
close;
h=0.55*10^-6;//Wavelength in meter
n=1.78;//refractive index
L=4*10^-2;//Length in meter
C=3*10^8;//Speed of light in m/s
q=(2*n*L)/(h);//Number of logitudinal modes
df=((C)/(2*n*L))*10^-9;//frequency sepration in Gega Hertz
disp(q,"Number of longitudinal modes are ")
disp(df,"frequency spacing in Gega Hertz is ")
|
2bc37d0ab5ed1f9c9197ac6ae07a65a1b5ad4712
|
daf9a7434ea9996fc591a79030570f48e396cdc5
|
/Normal/N(mu,sigma^2)/Exp and var of N(mu, sigma^2).sce
|
a41091d44a5caffaa2f7d1f76ed17619ef58a5df
|
[] |
no_license
|
isabelle-le/MonteCarloSimulation
|
c8dbfc2f5485f6dc6291654032ecad6c01cce401
|
f96e0a11569b3e4dade452d99e9c1bbd6c3efb81
|
refs/heads/master
| 2020-04-05T22:40:20.686962 | 2018-11-12T19:18:50 | 2018-11-12T19:18:50 | 157,263,752 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 613 |
sce
|
Exp and var of N(mu, sigma^2).sce
|
//Gaussian Distribution N(mu,sigma^2) Exp and Var
//Le Thu Huong ADEO1
clc
N = 70000;
n = 30;
Exp = 0;
var = 0;
mu = 3;
sigma = 0.6;
for j = 1:N
ubar = 0;
for i = 1:n
u = rand();
ubar = ubar + u/n;
end
alpha = sqrt(12*n)*(ubar - 0.5);
x = sigma*alpha + mu;
normal = x
Exp = Exp + normal/N;
var = var + normal^2 /N;
end
Var = var - Exp^2;
disp('IT IS GAUSSIAN DISTRIBUTION 1st METHOD TCL');
disp(Exp,' in theory Exp[x]= mu & our simulation Exp[x]= ');
disp(Var,' in theory Var[x]= sig & our simulation Var[x]= ');
|
30a3d5b72d81e9c5db883e4eaa49ab5c43f99544
|
4a1effb7ec08302914dbd9c5e560c61936c1bb99
|
/Project 2/Experiments/Ripper-C/results/Ripper-C.vowel-10-1tra/result5s0.tst
|
7dd40ce6d8d54fa8d686e49068b5c311b8e4f1ff
|
[] |
no_license
|
nickgreenquist/Intro_To_Intelligent_Systems
|
964cad20de7099b8e5808ddee199e3e3343cf7d5
|
7ad43577b3cbbc0b620740205a14c406d96a2517
|
refs/heads/master
| 2021-01-20T13:23:23.931062 | 2017-05-04T20:08:05 | 2017-05-04T20:08:05 | 90,484,366 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 973 |
tst
|
result5s0.tst
|
@relation vowel
@attribute TT integer[0,1]
@attribute SpeakerNumber integer[0,14]
@attribute Sex integer[0,1]
@attribute F0 real[-5.211,-0.941]
@attribute F1 real[-1.274,5.074]
@attribute F2 real[-2.487,1.431]
@attribute F3 real[-1.409,2.377]
@attribute F4 real[-2.127,1.831]
@attribute F5 real[-0.836,2.327]
@attribute F6 real[-1.537,1.403]
@attribute F7 real[-1.293,2.039]
@attribute F8 real[-1.613,1.309]
@attribute F9 real[-1.68,1.396]
@attribute Class{0,1,2,3,4,5,6,7,8,9,10}
@inputs TT,SpeakerNumber,Sex,F0,F1,F2,F3,F4,F5,F6,F7,F8,F9
@outputs Class
@data
2 3
4 5
8 8
6 6
8 8
4 4
1 1
4 4
10 10
3 3
2 2
7 7
4 4
2 2
3 5
6 6
8 10
10 8
10 5
9 8
0 0
2 2
8 7
1 1
2 2
3 3
7 7
8 8
0 0
7 7
5 3
7 7
1 1
5 5
3 3
10 10
1 1
2 2
4 4
5 4
6 6
10 5
1 1
7 7
9 9
8 8
3 3
4 4
8 8
9 9
0 0
9 9
5 5
7 7
9 9
0 0
4 4
2 2
0 0
8 8
5 5
6 6
7 7
6 6
9 7
5 5
9 7
0 0
5 4
3 3
0 0
7 8
4 4
5 5
9 8
4 5
5 5
10 10
1 0
6 4
1 1
2 2
8 8
1 1
2 5
10 6
7 4
3 4
10 10
0 0
6 6
0 0
3 3
6 8
9 9
6 6
1 1
3 3
10 10
|
2fedba315eee92d26bbb9ef34d6c6190f8d0d4d7
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3838/CH3/EX3.26.b/EX3_26_B.sce
|
8bb058fb762fe61853aa2cc192767c65f4a2818b
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 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
|
EX3_26_B.sce
|
//Example 3.26.B
clc;
syms s;
F=1/(s*(s+1)*(s-2));
f=ilaplace(F);
disp(f);
|
dc7d64cb795a495ccc684ab7564b9bd716daafd0
|
0320d75d635104b38bca383bde2d5a012d0ccd4f
|
/Comp Org/assign2/a2/ALU1bit.tst
|
54a553c3d35f981af3cd979d3301d7084b7e0261
|
[] |
no_license
|
sbkohel/Class_files
|
97d4392d977d1de715eadba674ccb042195fd383
|
4a4cced4c23fab038b45ac54649e9831c45ea9b7
|
refs/heads/master
| 2018-12-29T21:11:59.492247 | 2014-12-17T02:02:20 | 2014-12-17T02:02:20 | 15,176,186 | 0 | 1 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 2,394 |
tst
|
ALU1bit.tst
|
load ALU1bit.hdl,
output-file ALU1bit.out,
compare-to ALU1bit.cmp,
output-list a%B1.1.1 b%B1.1.1 cin%B1.1.1 sub%B1.1.1 nor%B1.1.1 out%B1.1.1 cout%B1.1.1;
set a 0,
set b 0,
set cin 0,
set sub 0,
set nor 0,
eval,
output;
set a 0,
set b 0,
set cin 0,
set sub 0,
set nor 1,
eval,
output;
set a 0,
set b 0,
set cin 0,
set sub 1,
set nor 0,
eval,
output;
set a 0,
set b 0,
set cin 0,
set sub 1,
set nor 1,
eval,
output;
set a 0,
set b 0,
set cin 1,
set sub 0,
set nor 0,
eval,
output;
set a 0,
set b 0,
set cin 1,
set sub 0,
set nor 1,
eval,
output;
set a 0,
set b 0,
set cin 1,
set sub 1,
set nor 0,
eval,
output;
set a 0,
set b 0,
set cin 1,
set sub 1,
set nor 1,
eval,
output;
set a 0,
set b 1,
set cin 0,
set sub 0,
set nor 0,
eval,
output;
set a 0,
set b 1,
set cin 0,
set sub 0,
set nor 1,
eval,
output;
set a 0,
set b 1,
set cin 0,
set sub 1,
set nor 0,
eval,
output;
set a 0,
set b 1,
set cin 0,
set sub 1,
set nor 1,
eval,
output;
set a 0,
set b 1,
set cin 1,
set sub 0,
set nor 0,
eval,
output;
set a 0,
set b 1,
set cin 1,
set sub 0,
set nor 1,
eval,
output;
set a 0,
set b 1,
set cin 1,
set sub 1,
set nor 0,
eval,
output;
set a 0,
set b 1,
set cin 1,
set sub 1,
set nor 1,
eval,
output;
set a 1,
set b 0,
set cin 0,
set sub 0,
set nor 0,
eval,
output;
set a 1,
set b 0,
set cin 0,
set sub 0,
set nor 1,
eval,
output;
set a 1,
set b 0,
set cin 0,
set sub 1,
set nor 0,
eval,
output;
set a 1,
set b 0,
set cin 0,
set sub 1,
set nor 1,
eval,
output;
set a 1,
set b 0,
set cin 1,
set sub 0,
set nor 0,
eval,
output;
set a 1,
set b 0,
set cin 1,
set sub 0,
set nor 1,
eval,
output;
set a 1,
set b 0,
set cin 1,
set sub 1,
set nor 0,
eval,
output;
set a 1,
set b 0,
set cin 1,
set sub 1,
set nor 1,
eval,
output;
set a 1,
set b 1,
set cin 0,
set sub 0,
set nor 0,
eval,
output;
set a 1,
set b 1,
set cin 0,
set sub 0,
set nor 1,
eval,
output;
set a 1,
set b 1,
set cin 0,
set sub 1,
set nor 0,
eval,
output;
set a 1,
set b 1,
set cin 0,
set sub 1,
set nor 1,
eval,
output;
set a 1,
set b 1,
set cin 1,
set sub 0,
set nor 0,
eval,
output;
set a 1,
set b 1,
set cin 1,
set sub 0,
set nor 1,
eval,
output;
set a 1,
set b 1,
set cin 1,
set sub 1,
set nor 0,
eval,
output;
set a 1,
set b 1,
set cin 1,
set sub 1,
set nor 1,
eval,
output;
|
bd88caa11ace0b56d532c6185e89699e43ee52c0
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/965/CH4/EX4.32/32.sci
|
2ce6fe94afe6ac531c88127c674a4154f49cd129
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 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 |
sci
|
32.sci
|
clc;
clear all;
disp("contact surface temperature")
disp("The rate of heat flow at a surface x =0 is given by")
disp(" Q = -k*A*delT/(%pi*a*tau)^0.5")
disp("Heat received by each unit area of contact surface from the body at a temperature t1 is")
disp("Q = -k1*A*(t1-ts)/(%pi*a1*tau)^0.5")
disp("Heat received by each unit area of contact surface from the body at a temperature t2 is")
disp("Q = -k2*A*(ts-t2)/(%pi*a2*tau)^0.5")
disp(" The contact surface will remain at a constant temperature if ")
disp("-k1*A*(t1-ts)/(%pi*a1*tau)^0.5 = -k2*A*(ts-t2)/(%pi*a2*tau)^0.5")
disp("-k1*A*(t1-ts)/(tau)^0.5 = -k2*A*(ts-t2)/(tau)^0.5")
disp("ts(k1*a2^0.5+k2*a1^0.5)= k1*t1*a2^0.5+k2*t2*a1^0.5")
disp("ts =(k1*t1*a2^0.5+k2*t2*a1^0.5)/(k1*a2^0.5+k2*a1^0.5)")
disp("dividing numerator and denomenator by (a1*a2)^0.5,")
disp("ts =(k1*t1/a1^0.5+k2*t2/a2^0.5)/(k1/a1^0.5+k2/a2^0.5)")
|
66a2325a6a9ee47f062af23fedde82a71f3b2867
|
98a32c1c1584a5cab1581cf73464b2559cb54d20
|
/SciLabInterface/TestABM.sce
|
9c6d3c6e4ad53bd3bb847599f4f18be3cc6897d4
|
[] |
no_license
|
apatriciu/ParODE
|
ecdb3144912069d20ef79d6031a04c3c7e7e6563
|
55520212b7b16a915962b0e6680bb38d6bd9f472
|
refs/heads/master
| 2020-05-20T03:09:10.377853 | 2014-02-26T15:59:39 | 2014-02-26T15:59:39 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 2,869 |
sce
|
TestABM.sce
|
function TestABM()
// this is the folder in which you have the shared library ParODEShared
strPathParODELibrary = '/home/alexandru/Projects/ParallelODESolver/Software/Binary/';
// this is the folder in which you have the kernel files
strParODEKFolder = '/home/alexandru/Projects/ParallelODESolver/Software/Binary/';
// this is the folder in which you have any headers that you need for the kernels
strParODEKIncludeFolder = '/home/alexandru/Projects/ParallelODESolver/Software/Binary';
// load the functions in the environment
exec('./LoadParODELibrary.sci', -1);
exec('./ParODEInterfaceStubs.sci', -1);
exec('./UnloadParODE.sci', -1);
// load library
parODELibIndex = LoadParODELibrary(strPathParODELibrary);
disp( parODELibIndex );
// Get all GPUs
[nGPUs, GPUIds, nErr] = GetAvailableGPUs();
if nErr == 0 then
for ii = 1:nGPUs
disp( GPUIds(ii) );
[strDeviceName, nErr] = GetDeviceName( GPUIds(ii) );
if nErr == 0 then
disp( strDeviceName );
else
disp( GetErrorDescription(nErr) );
end
end
else
disp( GetErrorDescription(nErr) );
end
nErr = InitializeSelectedGPUs(nGPUs, GPUIds, strParODEKFolder, strParODEKIncludeFolder);
if nErr == 0 then
disp( 'ParODE Initialized OK' );
else
disp( 'ParODE Initialization Error' );
end
// register the input kernel
uFunc = 'fType UFunc(fType t, int nInputIndex){' + ...
'fType fVal = nInputIndex == 0 ? t :' + ...
'nInputIndex == 1 ? t :' + ...
'0.0;' + ...
'return fVal;' + ...
'}';
disp( uFunc );
nErr = StartTimer();
if nErr == 0 then
disp( 'ParODE Start Timer OK' );
else
disp( 'ParODE Start Timer Error' );
end
[uIndex, nErr] = RegisterInput(uFunc);
if nErr == 0 then
disp( 'ParODE Register Input OK' );
else
disp( 'ParODE Register Input Error' );
end
[fTime, nErr] = StopTimer();
if nErr == 0 then
disp( 'ParODE Stop Timer OK' );
disp(fTime);
else
disp( 'ParODE Stop Timer Error' );
end
A = [-2.0, 0.0; 0.0, -2.0];
B = [1.0, 0.0; 0.0, 1.0];
C = [1.0, 0.0; 0.0, 1.0];
D = [1.0, 0.0; 0.0, 1.0];
x0 = [1.0, -1.0];
solver = 1;
tStart = 0.0;
tStep = 0.1;
nSteps = 50;
// call the simulation
[tVect, xVect, nErr] = SimulateODE(A, B, C, D, ...
uIndex, tStart, tStep, nSteps, x0, solver);
if nErr == 0 then
disp('Test ABM OK');
disp(tVect);
disp(xVect);
else
disp('Test ABM failed');
end
// release the library
CloseGPU();
// unload library
UnloadParODE(parODELibIndex);
endfunction
|
3e315ac67261fe7e228ea395bbf9b53a415f5d2e
|
3174b244396ca6f067cb6b14edfea0e94a5ffcb1
|
/projects/07/StackArithmetic/SimpleNeg/SimpleNeg.tst
|
eb0d1ea1059a73a336541f14d0de424155c808d6
|
[] |
no_license
|
sotlucas/nand2tetris
|
29c109321636dad52a8da15b7251931f458d880a
|
284bdf045b125ac1d9729010543b7bb36964a6fa
|
refs/heads/master
| 2020-07-09T15:10:08.403439 | 2019-09-21T19:33:10 | 2019-09-21T19:33:10 | 204,005,757 | 1 | 1 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 313 |
tst
|
SimpleNeg.tst
|
load SimpleNeg.asm,
output-file SimpleNeg.out,
compare-to SimpleNeg.cmp,
output-list RAM[0]%D2.6.2 RAM[256]%D2.6.2;
set RAM[0] 256, // initializes the stack pointer
repeat 60 { // enough cycles to complete the execution
ticktock;
}
output; // the stack pointer and the stack base
|
d73ab1c605e406fc4b34c582f4c397a3f17a9f8e
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/443/CH2/EX2.4/2_4.sce
|
07629c298f77ef768e1bbba535b562ffdf74af7c
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 427 |
sce
|
2_4.sce
|
pathname=get_absolute_file_path('2_4.sce')
filename=pathname+filesep()+'2_4_data.sci'
exec(filename)
//No work is done by the part of the external boundary in contact with the bottle.only the moving part needs to be considered.Over this part pressure is uniform at 1.013*10^5 N/m^2
//Work done
Wd=Patm*V
printf("\n\nRESULTS\n\n")
printf("\nWork done:%f\n",Wd)
//The work done is negative as the boundary is contracting
|
3e3afcac155bad06b76f6729cf3a296f7ee3b887
|
6583b7f11175c40106fb7cc0037578abae125f42
|
/test/word.tst
|
cd42408e961a2980069c57b0df38f32bb3d38fb0
|
[] |
no_license
|
FREDY1969/tampa-bay-python-avr
|
02f913ee8373bfab4ef88902844476080b560226
|
e0311815ebf81b5e1b128f621bf1f15b4fa28289
|
refs/heads/master
| 2020-04-24T17:45:03.787951 | 2011-10-23T17:58:09 | 2011-10-23T17:58:09 | 40,279,869 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 2,053 |
tst
|
word.tst
|
# word.tst
>>> from xml.etree import ElementTree
>>> from ucc.word import word, xml_access
>>> root = ElementTree.fromstring('''
... <word>
... <name>output_pin</name>
... <label>Output pin</label>
... <kind>declaration</kind>
... <defining>True</defining>
... <questions>
... <question>
... <name>q1</name>
... <label>Q1</label>
... <type>int</type>
... <validation>
... <validator type="range" minvalue="1" maxvalue="10" />
... </validation>
... </question>
... </questions>
... <answers>
... <answer name="q5" type="int" value="123" />
... <answer name="q6" type="string" value="Hi Mom!" />
... <answer name="filename_suffix" type="string" value="opin" />
... </answers>
... </word>
... ''')
>>> w = word.from_xml(root, 'some_package', None)
>>> w
<word output_pin>
>>> w.package
'some_package'
>>> w.name
'output_pin'
>>> w.label
'Output pin'
>>> w.defining
True
>>> w.kind
'declaration'
>>> w.questions
[<q_int q1>]
>>> w.questions[0].validation
[<range 1-10>]
>>> w.get_answer('q5')
<ans_int q5='123'>
>>> w.get_answer('q6')
<ans_string q6='Hi Mom!'>
>>> w.get_answer('filename_suffix')
<ans_string filename_suffix='opin'>
>>> root = w.to_xml()
>>> xml_access.indent(root)
>>> print(ElementTree.tostring(root))
<word>
<name>output_pin</name>
<label>Output pin</label>
<kind>declaration</kind>
<defining>True</defining>
<answers>
<answer name="filename_suffix" repeated="False" type="string" value="opin" />
<answer name="q5" repeated="False" type="int" value="123" />
<answer name="q6" repeated="False" type="string" value="Hi Mom!" />
</answers>
<questions>
<question>
<name>q1</name>
<label>Q1</label>
<type>int</type>
<validation>
<validator maxvalue="10" minvalue="1" type="range" />
</validation>
</question>
</questions>
</word>
<BLANKLINE>
|
00673f4a0c88382de0b5e800e50af478d3aa5b2c
|
676ffceabdfe022b6381807def2ea401302430ac
|
/solvers/IncNavierStokesSolver/Tests/ChannelSpongeLNSE.tst
|
4b7fa80fbc6acbc3e08e0d971d484eb23c266b2a
|
[
"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 | 853 |
tst
|
ChannelSpongeLNSE.tst
|
<?xml version="1.0" encoding="utf-8"?>
<test>
<description>Linearized Channel Flow P=11</description>
<executable>IncNavierStokesSolver</executable>
<parameters>ChannelSpongeLNSE.xml</parameters>
<files>
<file description="Session File">ChannelSpongeLNSE.xml</file>
</files>
<metrics>
<metric type="L2" id="1">
<value variable="u" tolerance="1e-12">0.000360221</value>
<value variable="v" tolerance="1e-12">0.000186555</value>
<value variable="p" tolerance="1e-12">0.000232531</value>
</metric>
<metric type="Linf" id="2">
<value variable="u" tolerance="1e-12">0.000924622</value>
<value variable="v" tolerance="1e-12">0.00057635</value>
<value variable="p" tolerance="1e-12">0.000671219</value>
</metric>
</metrics>
</test>
|
45f1f216fe836e97a428ae28bc1308b4776896b0
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/662/CH6/EX6.25/ex6_25.sce
|
889db3e09dfc277a60f15b2398669dfefc2fa83e
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 649 |
sce
|
ex6_25.sce
|
//Programming Example 6.25
//Variation of Switch statement
printf("Enter integer vlaue for flag : ");
flag=scanf("%d");
printf("Enter vlaue of x: ");
x=scanf("%f");
select (flag) //here select is equivalent to switch statement
case -1 then
y=abs(x);
printf("y = %f", y);
case 0 then
y=sqrt(x);
printf("y = %f", y);
case 1 then
y=x;
printf("y = %f", y);
case 2 then
y=2*(x-1);
printf("y = %f", y);
case 3 then
y=2*(x-1);
printf("y = %f", y);
else
y=0;
printf("y = %f", y);
end
|
dcd9862b8dde2d10d6fcb5ffa29c619dbc26e4b7
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3886/CH4/EX4.12/Ex4_12.sce
|
ab6e62458cf38508e69cb2f5cd0a1ec10f30ec3d
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 815 |
sce
|
Ex4_12.sce
|
//Analyse the truss
//Refer fig. 4.20
//Consider equilibrium of entire truss
//taking moment about A
YE=(60*8-40*4)/4 //kN
XA=40 //kN
YA=60-80 //kN
//Take A as origin and determine co-ordinates of various point
//Lengths in m are
AB=4
CE=4
AE=4
ED=4
BE=4*sqrt(2)
CD=4*sqrt(2)
//Consider equilibrium of joints individually
//Joint A
tAB=5
FAB=tAB*AB //kN
tAE=-10
FAE=tAE*AE //kN
//Joint B
tBE=-5
FBE=tBE*BE //kN
tBC=10-tBE
BC=4
FBC=tBC*BC //kN
//Joint C
tCD=15
CD=4*sqrt(2)
FCD=15*4*sqrt(2) //kN The answer provided in the textbook is wrong
tCE=-15
FCE=tCE*CE //kN
//Joint D
tDE=-15
DE=4
FDE=tDE*DE //kN
printf("The forces in different members are:-\nAB=%.2d kN\nBC=%.2d kN\nCD=%.2d kN\nDE=%.2d kN\nEA=%.2d kN\nEC=%.2d kN\nEB=%.2d kN",FAB,FBC,FCD,FDE,FAE,FCE,FBE)
|
e01c30b07025aaf219dab111da4b75b7ac78b392
|
67be33a2f1b2815769ef612759053f35ea40977a
|
/Gevorgyan.TodoListApp.RestApi/ClientApp/src/app/core/models/models.tst
|
6e803ab2e35081b1255c2d5d708da37d92a988ff
|
[] |
no_license
|
WAlbus792/TodoListApp
|
2fbcb08ebf2b87bd9b018f16a1bdb5475bc15f0e
|
d925e9e2c8f82860b9851270e192d065f92b6dc8
|
refs/heads/master
| 2020-07-01T22:57:39.991393 | 2019-08-11T16:58:59 | 2019-08-11T16:58:59 | 201,331,892 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 4,088 |
tst
|
models.tst
|
${
// Enable extension methods by adding using Typewriter.Extensions.*
using Typewriter.Extensions.Types;
Template(Settings settings)
{
settings.IncludeProject("Gevorgyan.TodoListApp.Application");
settings.OutputExtension = ".ts";
}
string Imports(Class c)
{
string importItems = string.Empty;
if(BaseExists(c))
importItems = $"import {{ { c.BaseClass.Name }, I{c.BaseClass.Name} }} from './{c.BaseClass.Name}';";
string modelsItems = string.Join(Environment.NewLine,
c.Properties.Where(p => IsPropertyTypeGeneratable(p) && p.Type.ClassName().EndsWith("Model") && p.Type.ClassName() != c.Name)
.Select(p => $"import {{ {p.Type.ClassName()} }} from './{p.Type.ClassName()}';")
.Distinct());
var dictionariesImports = string.Join(Environment.NewLine,
c.Properties.Where(p => p.Type.IsEnum && p.Type.FullName.Contains("Domain"))
.Select(p => $"import {{ {p.Type.ClassName()} }} from '../dictionaries/{p.Type.ClassName()}';")
.Distinct());
if(BaseExists(c) && (!string.IsNullOrEmpty(modelsItems) || !string.IsNullOrEmpty(dictionariesImports)))
importItems = $"{importItems}{Environment.NewLine}";
if(!string.IsNullOrEmpty(modelsItems))
importItems = $"{importItems}{Environment.NewLine}{modelsItems}";
if(!string.IsNullOrEmpty(dictionariesImports))
importItems = $"{importItems}{Environment.NewLine}{dictionariesImports}";
return importItems;
}
bool IsEnumType(Property property) => property.Type.IsEnum && !property.Type.FullName.Contains("Domain");
private string WriteComment(string docComment, string whiteSpaces){
return "/*" + Environment.NewLine +
$"{whiteSpaces}* {docComment}" + Environment.NewLine +
$"{whiteSpaces}*/";
}
string PropertyXmlComment(Property property) => WriteComment(property.DocComment, " ");
string ClassXmlComment(Class c) => WriteComment(c.DocComment, " ");
bool IsClassGeneratable(Class c) => !c.Attributes.Any(attr => attr.Name == "NotGeneratable");
bool IsPropertyTypeGeneratable(Property p) => !p.Type.Attributes.Any(attr => attr.Name == "NotGeneratable");
bool BaseExists(Class c) => c.BaseClass != null && IsClassGeneratable(c.BaseClass);
}
// for AUTO-GENERATION!
$Classes(c => IsClassGeneratable(c) && c.Name.EndsWith("Model"))[
$Imports
$ClassXmlComment
export interface I$Name$TypeParameters$BaseExists[ extends I$BaseClass] {
$Properties(p => IsPropertyTypeGeneratable(p))[
$PropertyXmlComment
$IsEnumType[$name:number;][$name: $Type;]
]}
$ClassXmlComment
export class $Name$TypeParameters$BaseExists[ extends $BaseClass] implements I$Name$TypeParameters {
$Properties(p => IsPropertyTypeGeneratable(p))[
$PropertyXmlComment
$IsEnumType[$name:number;][$name: $Type;]
]
constructor(data?: I$Name$TypeParameters) {
$BaseExists[super();]
if (data) {
for (var property in data) {
if (data.hasOwnProperty(property))
(<any>this)[property] = (<any>data)[property];
}
}
}
init(data?: any) {
if (data) {
$Properties(p => IsPropertyTypeGeneratable(p))[
this.$name = data["$name"];] $BaseExists[$BaseClass[
$Properties()[
this.$name = data["$name"];]]]
}
}
static fromJS$TypeParameters (data: any): $Name$TypeParameters {
data = typeof data === 'object' ? data : {};
let result = new $Name$TypeParameters();
result.init(data);
return result;
}
toJSON(data?: any) {
data = typeof data === 'object' ? data : {};
$Properties(p => IsPropertyTypeGeneratable(p))[
data["$name"] = this.$name;]
$BaseExists[$BaseClass[$Properties()[
data["$name"] = this.$name;]
]]
return data;
}
}
]
|
936a1012f202ecb29d3e05c0a2b1c9822caacf6a
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2339/CH4/EX4.18.1/Ex4_18.sce
|
05ab1560d2913a611edbf6ed8c6c0d6fa4596255
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 366 |
sce
|
Ex4_18.sce
|
clc
clear
//Now at 10 bar pressure
V=1.5; //Volume in m^3
P=10; //Pressure in bar
x=0.91; //Dryness fraction
Vg=0.194; //in m^3/kg
m=V/Vg;
Vf=x*Vg;
m_f=V/Vf;
printf('Amount of water to be placed in container: %2.2f kg',m);
printf('\n');
printf('Mass of water required: %2.2f kg',m_f);
printf('\n');
|
616b7c0ff7fe966701b2880ccce931b4eebc8abb
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3035/CH4/EX4.16/Ex4_16.sce
|
8202bc7335f5f1553ddc1980a1a63989ed817ecd
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 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,955 |
sce
|
Ex4_16.sce
|
// Variable Declaration
A = 0.8*exp(%i*1.4*%pi/180) //Line constant
B = 326.0*exp(%i*84.8*%pi/180) //Line constant(ohm)
V_R = 220.0 //Receiving end voltage(kV)
V_S = 220.0 //Sending end voltage(kV)
P = 75.0 //Power(MVA) for case(a)
pf = 0.8 //Power factor lagging
a = phasemag(A)*%pi/180 //Phase angle of A(radian)
b = phasemag(B)*%pi/180 //Phase angle of B(radian)
// Calculation Section
P_R = P * pf //Active power demanded by load(MW)
P_React = P *(1-pf**2)**0.5 //Reactive power demanded by load(MVAR)
cos_b_delta_1 = P_R*abs(B)/(V_R*V_S) + abs(A)*cos(b-a) //cos(b-delta)[in radians]
delta_1 = b - acos(cos_b_delta_1) //delta(radians)
Q_R_1 = (V_R*V_S/abs(B))*sin(b-delta_1) - (abs(A)*V_R**2/abs(B))*sin(b-a) //Reactive power at sending end(MVAR)
Reactive_power_1 = P_React - Q_R_1 //Reactive power to be supplied by compensating equipment(MVAR)
cos_b_delta_2 = (abs(A)*V_R/V_S)*cos(b-a) //cos(b-delta)[in radians]
delta_2 = b - acos(cos_b_delta_2) //delta(radians)
Q_R_2 = (V_R*V_S/abs(B))*sin(b-delta_2) - (abs(A)*V_R**2/abs(B))*sin(b-a) //Reactive power at sending end(MVAR)
Reactive_power_2 = Q_R_2 //Reactive power to be absorbed by compensating equipment(MVAR)
// Result Section
printf('(a) Reactive VARs to be supplied by compensating equipment = %.2f MVAR' ,Reactive_power_1)
printf('(b) Reactive VARs to be absorbed by compensating equipment = %.2f MVAR' ,Reactive_power_2)
|
14ced8d786243e634208f1ed3dd632a35f4abe61
|
99b4e2e61348ee847a78faf6eee6d345fde36028
|
/Toolbox Test/armcov/armcov6.sce
|
d1c9c26bc8799a1b43c5337368408588f7296645
|
[] |
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 | 364 |
sce
|
armcov6.sce
|
//check o/p when i/p is a vector
y=[1*%i 2 3 4 5 6 7 8 9 0 -2 3 4 5 6];
arcoeffs = armcov(y,4)
disp(arcoeffs);
//output
// column 1 to 2
//
// 1. - 1.0901114 - 0.0073409i
//
// column 3
//
// 0.5888179 + 0.0092552i
//
// column 4
//
// - 0.4433835 - 0.0120844i
//
// column 5
//
// 0.1122740 + 0.0183423i
|
1b855d68f5ce5d4b6d53e1f8f86c5f0aa3e9f9b4
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2084/CH13/EX13.5w/13_5w.sce
|
aad5f378842c4b57bf77f89f1138f25984fd07d4
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 514 |
sce
|
13_5w.sce
|
//developed in windows XP operating system 32bit
//platform Scilab 5.4.1
clc;clear;
//example 13.5w
//calculation of the force applied on the water in the thicker arm
//given data
A1=1*10^-4//area(in m^2) of arm 1
A2=10*10^-4//area(in m^2) of arm 2
f=5//force(in N) applied on the water in the thinner arm
//calculation
//P = P0 + (h*rho*g)........using this equation
F=f*A2/A1//force applied on the water in the thicker arm
printf('the force applied on the water in the thicker arm is %d N',F)
|
a89047f44425660de23c0564aa44ad2b3989aac9
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2084/CH12/EX12.16w/12_16w.sce
|
d870f62cf3426718c2ebac7ae7100bb7cb133030
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 487 |
sce
|
12_16w.sce
|
//developed in windows XP operating system 32bit
//platform Scilab 5.4.1
clc;clear;
//example 12.16w
//calculation of the time period of small oscillations
//given data
//h=R.....height equal to radius of the circle
g=%pi^2//gravitational acceleration(in m/s^2) of the earth
l=1//length(in m) of the string
//calculation
//at height R
//gdash = G*M/(R+R)^2 = g/4
gdash=g/4
T=2*%pi*sqrt(l/gdash)//time period
printf('The time period of small oscillations is %d s',T)
|
c2f6a1eff6ed23bad0f60bd4ecceac7f2874bded
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3869/CH1/EX1.10/Ex1_10.sce
|
426e9f6de51b05029f683533707bc287a04af898
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 308 |
sce
|
Ex1_10.sce
|
clear
//
//
//
//Variable declaration
n=5
lamda=4800*10**-10 //wavelength(m)
mew_mewdash=0.3
//Calculation
t=n*lamda/mew_mewdash //thcikness of glass plate(m)
//Result
printf("\n thcikness of glass plate is %0.3f *10**-6 m",t*10**6)
printf("\n answer given in the book is wrong")
|
7677f02ce3658aa10e3cd8e1f7c7eb9f47efe0c0
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2219/CH13/EX13.3/Ex13_3.sce
|
a19ae197b6c0921b82a5d3d0f883373813bd58f6
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 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,042 |
sce
|
Ex13_3.sce
|
//Chapter 13 example 3
//------------------------------------------------------------------------------
clc;
clear;
// Given data
f = 4.5; // microwave terrestrial comm link oper. freq in Ghz
D = 40; // single hop path length in miles
hant = 200; // antenna ht. above surface of earth
// from fig
D1 = 5;
D2 = 35;
K = 2/3; // K-factor
// calculations
F1 = 72.2*((D1*D2)/(D*f))^0.5; // first fresnel zone
// computing curvature 'h' of earth at a distance of 10 miles from Transmitter if given by (D1*D2)/(1.5*K)
h = (D1*D2)/(1.5*K); // curvature of earth in feet
PLabove = hant - h; // path line is PLabove feet above surface of earth
if PLabove < F1 then
mprintf('Available clearance above the surface of earth = %d feet\n Required first fresnal zone clearance = %3.1f feet,So it would be obstructed',PLabove,F1 )
end
//------------------------------------------------------------------------------
|
5703efc5be08ca9053deb4e9155452813810d259
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/260/CH1/EX1.10/1_10.sce
|
2a4edfc9f0c577536bdb58d87b8b7d9972b57cc3
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 359 |
sce
|
1_10.sce
|
//Eg-1.10
//pg-24
clear
clc
a=input("enter any number");
printf('Enter \n1 to find square root \n2 to find logarithm \n3 to find the exponential\n\n')
choice = input("Enter your choice");
select choice,
case 1 then r=sqrt(a);disp(r),
case 2 then r=log(a);disp(r),
case 3 then r=exp(a);disp(r),
else printf('Invalid Choice\n')
end
|
3b564aa243156dd0102322c77bd11ebf7d64f36d
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3428/CH23/EX14.23.22/Ex14_23_22.sce
|
c3db5aa204fed8e2282a5d7ac234dca73869ae25
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 483 |
sce
|
Ex14_23_22.sce
|
//Section-14,Example-6,Page no.-PC.114
//To calculate the pH of 10^-8 M HCl solution.
clc;
C=10^-8 //(M) Concentration of HCl solution
k_w=10^-14
x1=(-C+sqrt((C)^2-(4*1*(-k_w))))/2 //(M) Concentration of OH-
x2=(-C-sqrt((C)^2+(4*1*(-k_w))))/2 //(M) Concentration of OH-
//since value of x2 is complex so it is rejected.
C_1=C+x1 //(M) Concentration of (H3O+)
pH=-log10(C_1)
disp(pH,'pH of the given solution')
|
c96a93093f119f641ed3e810928a83f15a29ec1b
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3782/CH10/EX10.4/Ex10_4.sce
|
57b6898b7e6e3fe505c904838e3b9d3f79879ac5
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 437 |
sce
|
Ex10_4.sce
|
//
//
ab=30,bc=90,cd=140,
l1=250,l2=150,l3=325,
abc=210-bc
t1=0.5*abc
bcd=270-cd
t2=0.5*bcd
t3=180-(t1+t2)
k=(sin(t2*(%pi/180)))/(sin(t3*(%pi/180)))
OB=l2*k
k1=(sin(t1*(%pi/180)))/(sin(t3*(%pi/180)))
OC=l2*k1
printf("\n OB,OC")
R=OB*(sin(t1*(%pi/180)))
printf("\n Radius R= %0.3f ",R)
BT1=OB*(cos(t1*(%pi/180)))
CT1=OC*(cos(t2*(%pi/180)))
printf("\n Tangent length BT1= %0.3f ",BT1)
printf("\n Tangent length CT1= %0.3f ",CT1)
|
a03fce6116b858697857c4b0eb0ad1dc1c4bc92e
|
1988df91caa448a35bbf274a6d2698fe434571b1
|
/tst/eval/rewrite1.tst
|
60c5621a991519444998df14f088fdc9c2cc2bf8
|
[] |
no_license
|
namin/GETFOL
|
bd60e9a2d9f0905c50ff5c0cff4b6bf57a2049e2
|
bf42caf61799578eb82e9f17b3342bc2ee638a22
|
refs/heads/master
| 2021-10-25T08:08:20.142137 | 2021-10-22T16:16:40 | 2021-10-22T16:16:40 | 204,234,318 | 4 | 1 | null | 2019-08-25T02:05:54 | 2019-08-25T02:05:54 | null |
UTF-8
|
Scilab
| false | false | 1,196 |
tst
|
rewrite1.tst
|
COMMENT | ************************************************************* |
COMMENT | * AUTHOR: Paolo Pecchiari |
COMMENT | * |
COMMENT | * SUBJECT: REWRITE TEST |
COMMENT | * |
COMMENT | * GETFOL VERSION: October 1990 |
COMMENT | * |
COMMENT | ************************************************************* |
declare sentconst A B;
declare sort S T;
declare indvar s[S];
declare indconst d[S];
declare indvar t[T];
declare indvar x y z;
declare indconst a b c;
declare predconst p q 2;
assume forall x.p(x,x);
assume forall x y.(p(x y) iff q(x y));
assume forall s.S(s);
assume forall x y.p(x y) iff forall x y.q(x y);
assume forall x.(p(a a ) iff p(x x));
setbasicsimp s1 at FACTS {1};
setbasicsimp s2 at FACTS {2};
setbasicsimp s3 at FACTS {3};
setbasicsimp s4 at FACTS {4};
rewrite p(a a) by s1;
rewrite p(a b) by s2;
rewrite p(x,x) by s2;
rewrite forall x.TRUE;
rewrite A and not A;
rewrite (A and A) iff (B and A);
rewrite S(d) by s3;
rewrite forall x.S(x) and forall x.S(x);
rewrite forall x.(forall x.TRUE);
rewrite p(y y) by s1;
rewrite p(t t) by s1;
rewrite p(a b) by s2;
rewrite forall y x.p(y x) by s4;
|
8ac208b2300c10cb7a5df21a027cfd349bec44d5
|
676ffceabdfe022b6381807def2ea401302430ac
|
/library/Demos/MultiRegions/Tests/Helmholtz3D_CG_Prism_VarP_iterLE.tst
|
e2e9436c242e2d2d673e66f6fc0a06f95fc7aa41
|
[
"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 | 617 |
tst
|
Helmholtz3D_CG_Prism_VarP_iterLE.tst
|
<?xml version="1.0" encoding="utf-8"?>
<test>
<description>Helmholtz 3D CG for Prism</description>
<executable>Helmholtz3D</executable>
<parameters>-I GlobalSysSoln=IterativeStaticCond -I Preconditioner=LowEnergyBlock Helmholtz3D_Prism.xml</parameters>
<files>
<file description="Session File">Helmholtz3D_Prism.xml</file>
</files>
<metrics>
<metric type="L2" id="1">
<value tolerance="1e-9">0.000384858</value>
</metric>
<metric type="Linf" id="2">
<value tolerance="1e-9">0.00539787</value>
</metric>
</metrics>
</test>
|
137abe04a4ad0ff622f668f1e5dc3d4bf6e0a74c
|
6c7a728e11a427c93b15669517131a79a0703108
|
/api/pdb_root/install/scripts/test_pdb/clone_pdb.tst
|
8a606bcc7b6a1f961f659fc5dd1078293b129cbd
|
[] |
no_license
|
ZVlad1980/adm_scripts
|
0b9fe4ff166213dc649d555c81e8d65b858074e4
|
9978a098c8140f5722b51e799969b76e2d68b42e
|
refs/heads/master
| 2020-03-31T08:45:49.405822 | 2019-04-30T05:04:03 | 2019-04-30T05:04:03 | 152,071,490 | 1 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 855 |
tst
|
clone_pdb.tst
|
PL/SQL Developer Test script 3.0
16
-- Created on 29.04.2018 by V.ZHURAVOV
declare
-- Local variables here
i integer;
begin
-- Test statements here
/*--pdb_pub.clone(p_creator => 'PDB_ROOT', p_pdb_name => 'dev_clone', p_pdb_parent => 'DEV_NODE' );
pdb_pub.close_(p_pdb_name => 'DEV_NODE');
pdb_pub.freeze_(p_pdb_name => 'DEV_NODE');
pdb_pub.clone(p_creator => 'PDB_ROOT', p_pdb_name => 'DEV', p_pdb_parent => 'DEV_CLONE' );
*/
--pdb_pub.clone(p_creator => 'PDB_ROOT', p_pdb_name => 'PDB_RELEASE1', p_pdb_parent => 'DEV_CLONE' );
--pdb_pub.clone(p_creator => 'PDB_ROOT', p_pdb_name => 'DDECLONE1', p_pdb_parent => 'DEV_CLONE' );
--pdb_pub.clone(p_creator => 'PDB_ROOT', p_pdb_name => 'ANIKIN_TSTDB', p_pdb_parent => 'DEV_CLONE' );
pdb_pub.clone(p_creator => 'VBZ', p_pdb_name => 'DEV_VBZ', p_pdb_parent => 'DEV_CLONE' );
end;
0
0
|
5640f28cf17d59b6ace4e38aeb75ea02682feb74
|
089894a36ef33cb3d0f697541716c9b6cd8dcc43
|
/NLP_Project/test/blog/ngram/5.2_5.tst
|
0ca4528f203f90e032b7485ee70d3c178ba73b7b
|
[] |
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 | 726,897 |
tst
|
5.2_5.tst
|
2 85:1 89:1 146:1 359:1 385:1 553:1 607:1 658:1 951:1 960:1 1190:1 1214:1 1281:1 1462:1 1510:1 1598:1 1676:1 1820:1 1937:1 1941:1 2077:1 2299:1 2336:1 2341:1 2457:1 2522:1 2736:1 2751:1 2758:1 2984:1 3340:1 3632:1 3940:1 3946:1 3985:1 3990:1 4208:1 4434:1 4535:1 4604:1 4908:1 4916:1 4983:1 5012:2 5205:1 5534:1 5603:1 6064:1 6408:1 6534:1 6600:1 7063:1 7269:1 7571:1 7664:1 7878:3 7911:1 8109:1 8312:1 8377:1 8492:1 8501:1 8659:1 8687:1 8760:1 8836:1 9404:1 9445:1 9447:1 9564:1 9678:1 9905:2 9921:1 10046:1 10055:1 10691:1 10745:1 10758:1 11098:1 11114:1 11143:1 11490:1 11505:1 11839:1 11845:1 11851:1 11871:1 11878:1 12657:1 12792:1 12927:1 13116:1 13280:1 13307:1 13639:1 13782:1 13868:1 13951:1 13974:1 14069:1 14147:1 14261:1 14699:1 14705:1 14736:1 14789:1 14869:1 15003:1 15109:1 15197:1 15584:1 15796:1 15802:1 16200:1 16264:1 16631:1 16926:1 17028:1 17047:1 17068:1 17535:1 17549:1 17649:1 17766:1 17855:1 17964:1 18516:71 18638:1 19014:1 19282:1 19283:1 19420:1 19481:1 19656:1 19732:1 20513:1 20762:1 21206:1 21237:1 21369:1 21508:1 21543:1 21625:1 21739:1 22062:1 22248:1 22365:1 22416:1 22425:1 22599:1 22694:1 22861:1 22871:1 23147:1 23247:1 23325:1 23408:1 23767:1 23895:1 23957:1 24572:1 24687:1 24859:1 24871:1 24911:1 25166:1 25227:1 25362:1 25383:1 25415:1 25511:1 25576:1 25710:1 25895:1 26005:1 26202:1 26272:1 26286:1 26440:1 26899:1 26971:1 27054:1 27100:1 27254:1 27271:1 27299:1 27311:1 27405:1 27670:1 27689:1 27732:1 27969:1 28008:2 28392:1 28424:1 28490:1 28660:1 28875:1 28954:1 29031:1 29073:1 29146:1
2 85:1 89:2 146:1 359:1 385:1 479:1 553:1 607:1 658:2 749:1 820:1 861:1 917:1 951:1 960:1 1055:1 1190:1 1214:2 1281:1 1314:1 1356:1 1462:2 1502:1 1510:1 1598:1 1602:1 1676:1 1820:1 1921:1 1937:1 1941:1 2077:1 2299:1 2325:1 2336:1 2341:1 2457:1 2522:2 2736:2 2751:2 2758:1 2813:1 2984:2 2990:1 3316:1 3340:1 3354:1 3506:1 3540:1 3632:1 3940:1 3946:1 3985:1 3990:2 4208:1 4312:1 4434:2 4446:1 4535:1 4590:1 4604:1 4790:1 4903:1 4908:1 4916:1 4977:1 4983:1 5012:2 5138:1 5140:1 5149:1 5205:1 5534:1 5574:1 5603:1 5724:1 5926:1 6064:1 6391:1 6408:1 6534:1 6581:1 6600:2 6736:1 6746:1 6908:1 7030:1 7063:2 7269:1 7406:1 7571:1 7629:1 7664:1 7821:1 7835:1 7878:3 7886:1 7911:1 7933:1 7949:1 7985:1 8039:1 8075:1 8109:1 8159:1 8312:1 8364:1 8377:2 8411:1 8492:2 8501:1 8659:1 8671:1 8687:1 8693:1 8760:2 8836:1 9378:1 9391:1 9404:1 9445:1 9447:2 9564:1 9677:1 9678:1 9719:1 9905:2 9921:1 10028:1 10046:2 10055:1 10195:1 10322:1 10426:1 10691:1 10725:1 10745:1 10758:1 10882:1 11098:1 11114:1 11143:1 11152:1 11158:1 11219:1 11320:1 11385:1 11490:1 11505:1 11622:1 11839:1 11845:1 11851:1 11871:1 11878:1 11992:1 12261:1 12597:1 12612:1 12657:1 12792:2 12927:1 13116:1 13132:1 13280:1 13286:1 13307:1 13482:1 13491:1 13584:1 13639:1 13713:1 13782:1 13868:1 13873:1 13951:1 13974:1 13988:1 14038:1 14059:1 14069:1 14147:1 14261:2 14361:1 14466:1 14468:1 14486:1 14560:1 14627:1 14699:2 14705:1 14736:1 14789:1 14869:1 14890:1 14900:1 15003:1 15109:2 15197:1 15247:1 15584:1 15796:1 15802:1 15921:1 16060:1 16165:1 16200:1 16264:1 16419:1 16457:1 16527:1 16631:1 16926:2 16967:1 17028:1 17047:1 17068:2 17380:1 17535:1 17549:1 17649:1 17766:1 17855:1 17964:1 18300:1 18516:181 18566:1 18638:1 18969:1 19014:1 19116:1 19184:1 19268:1 19282:1 19283:2 19420:1 19428:1 19481:2 19490:1 19656:1 19697:1 19732:1 19929:1 20259:1 20495:1 20513:1 20541:1 20661:1 20762:1 21122:1 21206:1 21237:1 21257:1 21310:1 21313:1 21369:1 21508:2 21543:1 21625:1 21739:1 21881:1 22062:1 22235:1 22248:1 22310:1 22365:1 22416:1 22425:1 22456:1 22599:1 22671:1 22694:2 22759:1 22861:1 22871:1 23147:2 23247:1 23325:1 23408:1 23596:1 23767:1 23890:1 23895:1 23957:1 24067:1 24069:1 24093:1 24384:1 24493:1 24572:1 24687:1 24779:1 24859:2 24871:2 24911:1 25166:2 25227:1 25362:1 25378:1 25383:1 25415:1 25451:1 25511:1 25516:1 25576:1 25693:1 25707:1 25710:1 25766:1 25874:1 25895:1 25955:1 26005:2 26019:1 26022:2 26122:1 26202:1 26272:1 26286:1 26440:2 26616:1 26743:1 26796:1 26899:1 26930:1 26971:1 27054:1 27100:1 27254:1 27271:2 27299:2 27311:1 27405:2 27658:1 27670:2 27689:1 27727:1 27732:1 27969:2 28008:2 28080:1 28392:2 28424:1 28485:1 28490:2 28503:1 28660:1 28798:1 28875:2 28954:1 29005:1 29031:2 29073:2 29146:1
2 13:1 75:1 85:1 88:1 89:2 146:1 180:1 291:1 359:1 385:1 479:1 515:1 553:1 607:1 658:3 663:2 749:1 813:1 820:1 861:1 917:1 951:1 960:1 965:1 1032:1 1055:1 1190:1 1214:3 1229:2 1256:1 1281:1 1314:1 1356:1 1462:2 1502:1 1510:2 1598:1 1602:1 1615:1 1676:1 1820:1 1870:1 1898:1 1921:1 1937:1 1941:1 2053:1 2077:1 2299:1 2325:1 2336:2 2341:1 2347:1 2382:1 2406:1 2457:1 2460:1 2503:1 2522:2 2736:2 2751:2 2758:1 2813:1 2982:1 2984:3 2990:1 3039:1 3091:1 3316:1 3340:1 3354:1 3482:1 3506:1 3540:1 3632:1 3940:1 3946:1 3985:1 3990:3 4052:1 4117:1 4132:1 4196:1 4208:1 4312:1 4434:3 4446:1 4535:1 4590:1 4604:1 4790:1 4903:1 4908:1 4916:1 4977:1 4983:1 5012:2 5013:1 5138:1 5140:1 5149:1 5205:1 5486:1 5534:1 5574:1 5603:1 5724:1 5790:1 5908:1 5926:1 6064:1 6079:1 6208:1 6296:1 6391:1 6408:1 6500:1 6534:2 6552:1 6581:1 6600:2 6679:1 6736:1 6746:1 6899:1 6908:1 6927:1 7030:1 7063:2 7269:1 7406:1 7442:1 7571:1 7629:1 7664:1 7821:1 7835:1 7878:5 7886:1 7897:1 7900:1 7903:1 7911:1 7933:1 7949:1 7985:1 8013:1 8039:1 8075:1 8109:1 8159:1 8312:1 8364:1 8377:3 8411:1 8480:1 8492:3 8501:1 8659:1 8671:1 8687:1 8693:1 8760:2 8836:1 9052:1 9057:1 9110:1 9247:1 9320:1 9378:1 9391:1 9404:1 9445:1 9447:2 9564:1 9675:1 9677:1 9678:1 9719:1 9905:2 9921:1 10028:1 10046:3 10055:1 10122:1 10195:1 10242:1 10280:1 10297:1 10322:1 10426:1 10691:1 10725:1 10745:1 10758:1 10786:1 10882:1 11098:1 11114:1 11143:1 11152:1 11158:1 11219:1 11246:1 11320:1 11385:1 11490:1 11505:1 11622:1 11839:1 11845:1 11851:1 11871:1 11878:1 11881:1 11992:1 12110:1 12240:1 12261:1 12338:1 12421:1 12444:1 12461:1 12597:1 12612:1 12657:1 12664:1 12763:1 12792:3 12927:1 13116:1 13132:1 13269:1 13280:1 13286:1 13307:1 13482:1 13491:1 13584:1 13639:1 13713:1 13782:2 13859:1 13868:1 13873:1 13928:1 13951:1 13974:1 13988:1 14038:1 14059:1 14069:1 14147:1 14261:2 14361:2 14466:1 14468:1 14486:1 14560:1 14627:1 14699:3 14705:1 14736:1 14789:1 14869:1 14890:1 14900:1 15003:1 15109:2 15197:1 15247:1 15482:1 15584:1 15796:1 15802:1 15818:1 15827:1 15921:1 15961:1 16051:1 16060:1 16165:1 16200:1 16264:1 16404:1 16413:1 16419:1 16457:1 16527:1 16631:1 16769:1 16797:1 16926:5 16963:1 16967:1 17028:1 17047:1 17068:2 17144:1 17213:1 17380:1 17440:1 17535:2 17549:1 17649:1 17766:1 17855:2 17936:1 17964:1 18026:1 18300:1 18316:1 18395:1 18516:254 18566:1 18587:1 18638:1 18678:1 18969:1 19014:1 19116:1 19184:1 19268:1 19282:2 19283:2 19318:1 19377:1 19420:1 19428:1 19481:2 19490:1 19500:1 19584:1 19656:1 19697:1 19732:1 19929:1 20211:1 20259:1 20387:1 20495:1 20500:1 20513:1 20541:1 20661:1 20748:1 20762:1 20788:1 20798:1 20853:1 21122:1 21206:1 21237:1 21257:1 21286:1 21310:1 21313:1 21364:1 21369:1 21508:2 21530:1 21543:1 21625:2 21715:1 21739:1 21881:2 21896:1 22062:1 22235:1 22248:1 22310:1 22321:1 22365:1 22416:1 22425:2 22456:1 22516:1 22599:1 22640:1 22671:1 22694:3 22752:1 22759:1 22861:1 22871:1 22874:1 23074:1 23111:1 23147:3 23247:1 23325:1 23408:1 23509:1 23596:1 23740:1 23767:1 23890:1 23895:1 23941:1 23957:1 24067:1 24069:1 24093:1 24144:1 24291:1 24384:1 24493:1 24499:1 24536:1 24572:1 24687:1 24779:1 24802:1 24803:1 24854:1 24859:2 24871:2 24911:1 25166:2 25227:1 25328:1 25362:1 25378:1 25383:1 25387:1 25415:1 25440:1 25451:1 25499:1 25511:1 25516:1 25576:1 25693:1 25707:1 25710:1 25718:1 25766:1 25874:1 25895:1 25955:1 25956:1 25995:1 26005:2 26019:1 26022:3 26122:1 26202:1 26272:1 26286:1 26440:2 26616:1 26632:1 26743:1 26754:1 26796:1 26899:1 26915:1 26930:1 26971:1 27054:1 27096:1 27100:1 27178:1 27224:1 27254:2 27271:2 27299:2 27311:1 27401:1 27405:2 27516:1 27658:2 27670:2 27689:1 27727:1 27732:1 27784:1 27898:1 27909:1 27969:2 28008:2 28080:1 28151:1 28283:1 28392:3 28416:1 28424:1 28485:1 28490:3 28503:1 28660:1 28669:1 28782:1 28798:1 28865:1 28875:2 28954:1 28976:1 29005:1 29027:1 29031:2 29042:1 29063:1 29073:3 29146:1
2 12:1 13:1 75:1 85:1 88:1 89:2 146:1 166:1 180:1 213:1 287:1 291:1 359:1 385:1 479:1 515:1 553:1 607:2 658:4 663:2 749:1 813:1 820:1 861:1 905:1 917:1 951:1 960:1 965:1 1027:1 1032:1 1055:1 1190:1 1214:4 1229:2 1256:1 1281:1 1314:1 1356:1 1444:1 1462:2 1502:1 1510:2 1598:1 1602:1 1615:1 1676:1 1820:1 1870:1 1898:1 1921:1 1937:1 1941:1 2053:1 2077:1 2123:1 2299:1 2325:1 2334:1 2336:2 2341:1 2347:1 2382:1 2406:1 2457:1 2460:1 2479:1 2503:1 2522:2 2736:2 2751:2 2758:1 2813:1 2826:1 2982:1 2984:4 2990:1 2991:1 3039:1 3091:1 3316:1 3340:1 3354:1 3393:1 3482:1 3506:1 3540:1 3632:1 3642:1 3940:1 3946:1 3985:1 3990:4 4052:1 4066:1 4113:1 4117:1 4132:1 4171:1 4196:1 4208:1 4312:1 4434:4 4446:1 4452:1 4535:1 4590:1 4604:1 4790:1 4826:1 4903:1 4908:1 4916:1 4977:1 4983:1 5012:2 5013:1 5138:1 5140:1 5149:1 5175:1 5194:1 5205:1 5486:1 5534:1 5574:1 5603:1 5626:1 5724:1 5790:1 5908:2 5921:1 5926:1 6064:1 6079:1 6118:1 6208:1 6296:1 6391:1 6408:1 6500:1 6510:1 6534:2 6552:3 6581:1 6600:2 6679:1 6736:1 6746:1 6899:1 6908:1 6927:1 6960:1 7030:1 7063:2 7102:1 7217:1 7269:1 7369:1 7406:1 7442:1 7571:1 7629:1 7664:1 7816:1 7821:1 7835:1 7878:6 7886:1 7897:1 7900:1 7903:1 7911:1 7933:1 7949:1 7985:1 8013:1 8039:1 8075:1 8109:1 8159:1 8312:1 8364:1 8377:4 8410:1 8411:1 8480:1 8492:4 8501:1 8659:1 8671:1 8687:1 8693:1 8760:2 8836:1 8841:1 8987:1 9052:1 9057:1 9059:1 9110:1 9112:1 9247:1 9320:2 9378:1 9391:1 9404:1 9445:1 9447:2 9490:1 9564:1 9660:1 9675:1 9677:1 9678:1 9706:1 9719:1 9905:2 9921:1 10028:1 10046:4 10055:1 10122:1 10177:1 10195:1 10242:1 10280:1 10297:1 10322:1 10383:1 10426:1 10623:1 10691:1 10725:1 10745:1 10758:1 10786:2 10840:1 10882:1 11098:1 11114:1 11143:1 11152:1 11158:1 11217:1 11219:1 11246:1 11276:1 11320:1 11385:1 11456:1 11490:1 11503:1 11505:1 11622:1 11839:1 11845:1 11851:1 11871:1 11878:1 11881:2 11992:1 12110:1 12163:1 12240:1 12261:1 12338:1 12421:1 12444:1 12461:1 12597:1 12612:1 12657:1 12664:1 12763:1 12790:1 12792:4 12809:1 12927:1 13116:1 13132:1 13269:1 13280:1 13286:1 13307:1 13482:1 13491:2 13584:1 13639:1 13641:1 13713:1 13782:2 13859:1 13868:1 13873:1 13928:1 13951:1 13974:1 13988:1 14038:1 14059:1 14069:1 14147:1 14156:1 14261:2 14361:3 14466:1 14468:1 14486:1 14560:1 14576:1 14627:1 14659:1 14699:4 14705:1 14714:1 14736:1 14786:1 14789:1 14847:1 14869:1 14890:1 14900:1 15003:1 15070:1 15109:2 15197:1 15247:1 15278:1 15322:1 15482:1 15584:1 15762:1 15796:1 15802:1 15818:1 15827:1 15921:2 15961:1 16051:1 16060:2 16140:1 16165:1 16200:1 16264:1 16285:1 16291:1 16387:1 16404:1 16413:1 16419:1 16457:1 16527:1 16631:1 16769:1 16797:1 16926:6 16963:1 16967:1 17028:1 17047:1 17068:2 17144:1 17213:1 17380:1 17440:1 17535:2 17549:1 17649:1 17766:1 17855:2 17936:1 17964:1 18013:1 18026:1 18245:1 18300:1 18316:1 18395:1 18507:1 18516:280 18566:1 18587:1 18638:1 18678:1 18724:1 18969:1 19014:1 19116:1 19184:1 19268:1 19282:2 19283:2 19318:1 19377:1 19420:1 19428:1 19451:1 19481:2 19490:1 19491:1 19500:1 19584:1 19656:1 19697:1 19732:1 19851:1 19929:1 20211:1 20259:1 20268:1 20387:1 20495:1 20500:1 20513:1 20541:1 20661:1 20691:1 20748:1 20762:1 20788:1 20798:1 20853:1 20869:1 21004:1 21122:1 21206:1 21237:1 21257:1 21286:1 21310:1 21313:1 21364:1 21369:1 21464:1 21508:2 21530:1 21543:1 21625:2 21715:1 21719:1 21728:1 21739:1 21748:1 21881:3 21896:1 22062:1 22161:1 22179:1 22235:1 22248:2 22310:1 22321:1 22365:1 22370:1 22383:1 22416:1 22425:2 22439:1 22456:1 22516:1 22543:1 22599:1 22640:1 22671:1 22694:4 22709:1 22752:1 22759:1 22861:1 22871:1 22874:1 23074:1 23111:1 23147:4 23247:1 23289:1 23307:1 23321:1 23325:1 23408:1 23509:2 23596:1 23740:1 23767:1 23838:1 23890:1 23895:1 23941:1 23957:1 24067:1 24069:1 24093:1 24144:1 24186:1 24225:1 24291:1 24384:1 24493:1 24499:1 24536:1 24572:1 24687:1 24779:1 24802:1 24803:1 24854:1 24859:2 24871:2 24911:1 25166:2 25227:1 25328:2 25362:1 25378:1 25383:1 25387:1 25415:1 25440:1 25451:1 25499:1 25511:1 25516:1 25576:2 25693:1 25707:1 25710:1 25718:1 25766:1 25874:1 25895:1 25955:1 25956:1 25995:1 26005:2 26019:1 26022:3 26122:1 26202:1 26272:1 26286:1 26440:2 26616:1 26632:1 26703:1 26734:1 26743:1 26754:1 26796:1 26899:1 26915:1 26930:1 26971:1 27054:1 27096:1 27100:1 27178:1 27224:1 27254:2 27271:2 27299:2 27311:1 27401:1 27405:2 27502:1 27516:1 27658:2 27670:2 27689:1 27722:1 27727:1 27732:1 27784:2 27898:1 27909:1 27969:2 28008:2 28080:1 28117:1 28151:1 28283:1 28392:4 28416:1 28424:1 28485:1 28490:3 28503:1 28660:1 28669:1 28701:1 28782:1 28798:1 28814:1 28865:1 28875:2 28954:1 28976:1 29005:1 29027:1 29031:2 29042:1 29063:1 29073:4 29100:1 29146:1
2 12:1 13:1 31:1 75:1 85:2 88:1 89:2 146:1 166:1 180:1 213:1 272:1 287:1 291:1 359:1 385:1 415:1 479:1 515:1 544:1 553:1 607:2 658:5 663:2 749:1 783:1 813:1 820:1 861:1 905:1 917:1 951:1 960:1 965:1 1027:1 1032:1 1055:1 1190:1 1214:5 1229:2 1256:1 1281:1 1314:1 1356:1 1444:1 1462:2 1502:1 1510:2 1598:1 1602:1 1615:1 1676:1 1820:1 1870:1 1898:1 1921:1 1937:1 1941:1 1993:1 2053:1 2077:1 2123:1 2299:1 2325:1 2334:1 2336:2 2338:1 2341:1 2347:1 2382:1 2406:1 2457:1 2460:1 2479:1 2503:1 2522:2 2736:2 2751:2 2758:1 2812:1 2813:1 2826:1 2982:1 2984:5 2990:1 2991:1 3039:2 3091:1 3316:1 3340:1 3354:1 3393:1 3482:1 3506:1 3540:1 3632:1 3642:1 3940:1 3946:1 3985:1 3990:5 4052:1 4066:1 4108:1 4113:1 4117:1 4132:1 4171:1 4196:1 4208:1 4312:1 4434:5 4446:1 4452:1 4477:1 4535:1 4590:2 4604:1 4668:1 4790:1 4826:1 4903:1 4908:1 4916:1 4977:1 4983:1 5012:2 5013:1 5138:1 5140:1 5149:1 5175:1 5194:2 5205:1 5427:1 5486:1 5534:1 5574:1 5603:1 5626:1 5724:1 5790:1 5908:2 5921:1 5926:1 6027:1 6064:1 6079:1 6097:1 6118:1 6208:2 6296:1 6325:1 6391:1 6408:1 6486:1 6500:1 6510:1 6523:2 6534:2 6552:3 6581:1 6600:2 6679:1 6736:1 6746:1 6772:1 6899:1 6908:2 6927:1 6960:1 7030:1 7063:2 7083:1 7102:1 7187:1 7217:1 7269:1 7369:1 7406:1 7442:1 7571:1 7629:1 7664:1 7816:1 7821:1 7835:1 7878:6 7882:1 7886:1 7897:1 7900:2 7903:1 7911:1 7933:1 7949:1 7985:1 8013:1 8039:1 8075:1 8109:1 8159:1 8312:1 8364:1 8376:1 8377:5 8410:1 8411:1 8480:1 8492:5 8501:1 8659:1 8671:1 8677:1 8683:1 8687:1 8693:1 8750:1 8760:2 8763:1 8836:1 8841:1 8923:1 8987:1 9014:1 9052:1 9057:1 9059:1 9110:1 9112:1 9247:1 9320:2 9378:1 9382:1 9391:1 9393:1 9404:1 9445:1 9447:2 9490:1 9496:1 9564:1 9660:1 9675:1 9677:1 9678:1 9706:1 9717:1 9719:2 9905:2 9921:1 10028:1 10046:5 10055:1 10061:1 10122:1 10177:1 10195:2 10242:1 10280:1 10297:1 10322:1 10383:1 10417:1 10426:2 10623:1 10691:1 10725:1 10745:1 10758:1 10786:2 10840:1 10882:1 11098:1 11114:1 11124:1 11143:1 11152:1 11158:1 11197:1 11217:1 11219:1 11246:1 11276:1 11286:1 11320:1 11375:1 11385:1 11456:1 11490:1 11503:1 11505:1 11535:1 11622:1 11834:1 11839:1 11845:1 11851:1 11871:1 11878:1 11881:2 11992:1 12110:1 12163:1 12240:1 12261:1 12338:1 12421:1 12444:1 12461:2 12597:2 12612:1 12657:1 12664:1 12763:1 12790:1 12792:5 12809:1 12927:1 13024:1 13116:1 13132:1 13217:1 13269:1 13280:1 13286:2 13307:1 13340:1 13424:1 13482:1 13491:2 13584:1 13639:1 13641:1 13713:1 13782:2 13859:1 13868:1 13869:1 13873:1 13901:1 13928:1 13951:1 13974:1 13988:1 14038:1 14059:1 14069:1 14147:1 14156:1 14177:2 14259:1 14261:2 14361:3 14466:1 14468:2 14486:1 14560:1 14576:1 14621:1 14627:1 14659:1 14699:5 14705:2 14714:1 14736:1 14786:1 14789:1 14847:1 14869:1 14890:1 14900:1 15003:1 15070:1 15087:1 15109:2 15197:1 15247:1 15278:1 15322:1 15482:1 15584:1 15608:1 15762:1 15779:1 15796:1 15802:2 15818:1 15827:1 15921:2 15961:1 16051:1 16060:2 16140:1 16165:1 16200:1 16264:1 16285:1 16291:1 16387:1 16404:1 16413:1 16419:1 16457:1 16476:1 16527:1 16631:1 16769:1 16797:1 16926:7 16963:1 16967:1 17028:1 17047:1 17068:2 17138:1 17144:1 17213:1 17380:1 17440:1 17535:2 17549:1 17649:1 17766:1 17855:2 17936:1 17964:1 18013:1 18026:1 18245:1 18300:1 18316:1 18395:1 18507:1 18516:328 18566:1 18587:1 18638:1 18678:1 18724:1 18969:1 19014:2 19085:2 19116:1 19184:1 19230:1 19268:1 19282:2 19283:2 19318:1 19377:1 19399:2 19420:1 19428:1 19451:1 19481:2 19490:1 19491:1 19500:1 19584:1 19656:1 19697:1 19732:1 19823:1 19851:1 19929:2 19950:1 20043:1 20211:2 20259:1 20268:1 20311:1 20387:1 20495:1 20500:1 20513:1 20541:1 20661:1 20691:1 20702:1 20748:1 20762:1 20788:1 20798:1 20853:2 20869:1 20958:1 20994:1 21004:1 21026:1 21122:1 21206:1 21237:1 21257:1 21286:1 21310:1 21313:1 21363:1 21364:1 21369:1 21464:2 21508:2 21530:1 21543:1 21625:2 21658:1 21715:1 21719:1 21728:1 21739:1 21748:1 21791:1 21881:3 21896:1 22062:1 22066:2 22082:1 22161:2 22179:1 22235:1 22248:2 22310:1 22316:1 22321:1 22365:1 22370:1 22383:1 22416:1 22425:2 22439:1 22456:1 22479:1 22516:1 22543:1 22599:1 22640:1 22671:1 22694:5 22709:1 22752:1 22759:1 22861:1 22871:1 22874:1 23074:1 23111:1 23147:5 23247:1 23289:1 23307:1 23321:1 23325:1 23408:1 23509:2 23596:1 23740:1 23767:2 23838:1 23890:1 23891:1 23895:1 23941:1 23957:1 24067:1 24069:1 24092:1 24093:1 24097:1 24144:1 24186:1 24225:1 24291:1 24384:1 24493:1 24499:1 24536:2 24572:1 24687:1 24779:1 24802:1 24803:1 24854:1 24859:2 24863:1 24871:2 24911:1 25166:2 25227:1 25328:2 25362:1 25378:1 25383:1 25387:1 25415:1 25440:1 25451:1 25499:1 25511:1 25516:1 25576:2 25693:1 25707:1 25710:1 25718:1 25766:1 25777:1 25823:1 25874:1 25895:1 25944:1 25955:1 25956:1 25995:1 26005:2 26019:1 26022:3 26074:1 26122:1 26202:1 26272:1 26286:1 26428:1 26440:2 26616:1 26632:1 26675:2 26703:1 26734:1 26743:1 26754:1 26796:1 26799:1 26899:1 26915:1 26930:1 26931:1 26971:1 27054:1 27096:1 27100:1 27178:1 27224:1 27254:2 27271:2 27299:2 27311:1 27329:1 27401:1 27405:2 27424:1 27502:1 27516:1 27658:2 27670:2 27689:1 27722:1 27727:1 27732:1 27784:2 27802:1 27898:1 27909:1 27969:4 28008:2 28080:1 28117:1 28151:1 28283:1 28392:5 28416:2 28424:1 28485:1 28490:3 28503:1 28660:1 28669:1 28701:1 28782:1 28798:1 28814:1 28865:1 28875:2 28954:1 28976:1 29005:1 29027:1 29031:2 29042:1 29063:1 29073:5 29100:1 29146:1
2 12:1 13:1 31:1 75:1 85:2 88:1 89:2 146:1 166:1 180:1 213:1 272:1 287:1 291:1 359:1 385:1 415:1 479:1 515:1 544:1 553:1 564:1 607:2 644:1 658:6 663:2 667:1 749:1 783:1 809:1 813:1 820:1 822:1 861:1 905:4 908:1 917:1 951:1 960:1 965:1 1027:1 1032:1 1055:2 1190:1 1214:6 1229:2 1256:1 1258:1 1281:1 1314:1 1356:2 1444:1 1462:2 1502:1 1510:3 1576:1 1598:1 1602:1 1615:1 1647:1 1676:1 1740:1 1820:1 1870:1 1898:1 1921:1 1937:1 1941:1 1993:1 2053:1 2077:1 2123:1 2196:1 2235:1 2299:1 2325:1 2334:1 2336:2 2338:1 2341:1 2347:1 2382:1 2406:1 2457:1 2460:1 2479:1 2503:1 2522:2 2533:1 2550:1 2571:1 2736:2 2751:2 2758:1 2812:1 2813:1 2826:1 2892:1 2982:1 2984:6 2990:1 2991:1 2998:1 3039:2 3070:1 3091:1 3316:1 3340:1 3354:1 3393:1 3482:1 3506:1 3540:1 3632:1 3642:1 3734:1 3758:1 3884:1 3909:1 3938:1 3940:1 3946:1 3985:1 3990:6 4052:1 4056:1 4066:1 4096:1 4108:1 4113:1 4117:2 4132:1 4171:1 4196:1 4208:2 4216:1 4262:1 4312:1 4317:1 4357:1 4434:6 4443:1 4446:1 4452:1 4477:1 4535:3 4590:2 4604:1 4622:1 4648:1 4668:1 4790:1 4826:1 4903:1 4908:1 4909:1 4916:1 4977:1 4983:1 4997:1 5012:3 5013:1 5046:1 5138:2 5140:1 5149:1 5159:1 5160:1 5167:1 5175:2 5192:1 5194:2 5205:1 5427:1 5438:1 5486:1 5534:1 5574:1 5603:1 5626:1 5724:1 5790:1 5908:2 5921:1 5926:1 6027:1 6064:1 6079:1 6097:1 6118:1 6208:2 6296:1 6307:1 6313:1 6325:1 6391:1 6399:1 6408:1 6486:1 6500:1 6510:1 6523:2 6534:2 6545:1 6546:1 6552:4 6581:1 6600:2 6679:1 6736:1 6746:1 6772:1 6792:1 6899:1 6904:1 6908:2 6927:1 6960:1 7030:1 7063:2 7083:1 7102:1 7114:1 7178:1 7184:1 7187:1 7217:1 7269:1 7369:1 7406:1 7413:1 7442:1 7571:1 7596:1 7629:1 7664:1 7679:1 7816:3 7821:1 7835:1 7878:6 7882:1 7886:2 7897:1 7900:2 7903:1 7911:1 7933:1 7949:1 7985:1 8013:1 8039:1 8075:1 8109:1 8159:1 8300:1 8312:1 8364:1 8376:1 8377:6 8410:1 8411:2 8480:1 8492:6 8501:1 8659:1 8671:1 8677:1 8683:1 8687:1 8693:2 8750:1 8760:2 8762:1 8763:1 8768:1 8822:1 8836:1 8841:1 8845:1 8923:1 8987:1 9014:1 9052:1 9057:1 9059:1 9061:1 9110:1 9112:1 9138:1 9196:1 9247:1 9320:2 9343:1 9378:2 9382:1 9391:1 9393:1 9404:1 9445:1 9447:2 9490:1 9496:1 9546:1 9564:1 9660:1 9675:1 9677:2 9678:1 9706:1 9717:1 9719:2 9779:1 9905:2 9916:1 9921:1 10028:1 10046:6 10055:1 10061:1 10122:1 10170:1 10177:1 10195:2 10242:2 10280:1 10297:2 10322:2 10337:1 10383:1 10388:1 10404:1 10417:1 10426:2 10623:1 10691:1 10725:1 10745:1 10758:1 10786:2 10840:1 10860:1 10882:1 10894:1 10929:1 10976:1 11098:1 11111:1 11114:1 11124:1 11143:1 11152:1 11158:1 11170:1 11197:1 11215:1 11217:2 11219:2 11220:1 11246:1 11276:1 11286:1 11293:1 11320:1 11375:1 11385:1 11456:1 11490:1 11503:1 11505:1 11535:1 11622:1 11629:1 11636:1 11648:1 11775:1 11812:1 11834:1 11839:1 11845:1 11851:1 11871:1 11878:1 11881:2 11992:1 12092:1 12110:1 12163:1 12240:1 12261:2 12337:1 12338:1 12339:1 12421:1 12444:1 12461:2 12510:1 12597:2 12612:1 12657:1 12664:1 12763:1 12790:1 12792:6 12809:1 12813:1 12859:1 12927:1 13024:1 13100:1 13116:1 13132:1 13145:1 13217:1 13269:1 13280:1 13286:2 13307:1 13340:1 13424:1 13482:1 13491:3 13584:1 13639:1 13641:1 13647:1 13676:1 13713:1 13729:1 13782:2 13805:1 13808:1 13859:1 13868:1 13869:1 13873:1 13901:1 13928:1 13935:1 13951:3 13974:1 13988:1 14030:1 14038:1 14059:1 14069:1 14147:2 14156:1 14177:2 14259:1 14261:2 14361:3 14460:1 14466:2 14468:2 14486:1 14560:1 14576:1 14592:1 14621:1 14627:1 14643:1 14657:1 14659:1 14699:6 14705:2 14714:1 14736:1 14786:1 14789:1 14847:1 14869:1 14890:1 14900:1 15003:1 15070:1 15087:1 15109:2 15197:1 15247:1 15278:1 15322:1 15482:1 15557:1 15584:1 15608:1 15616:1 15718:1 15742:1 15762:1 15779:1 15796:1 15802:2 15818:1 15827:1 15835:1 15888:1 15899:1 15921:3 15961:1 16051:1 16060:3 16140:1 16165:1 16200:1 16239:1 16264:1 16285:1 16291:1 16387:1 16404:1 16413:1 16419:1 16457:1 16476:1 16527:1 16631:1 16769:1 16797:1 16926:8 16963:1 16967:2 17020:1 17028:1 17047:1 17068:2 17138:1 17143:1 17144:1 17166:1 17208:1 17213:1 17281:1 17361:1 17380:1 17440:1 17459:1 17475:1 17484:1 17535:2 17549:1 17649:1 17671:1 17731:1 17766:2 17787:1 17855:2 17936:1 17964:1 18013:1 18026:1 18245:1 18300:2 18316:1 18377:1 18395:1 18507:1 18516:412 18566:1 18587:1 18638:1 18651:1 18653:1 18678:1 18707:1 18724:1 18969:1 19014:2 19083:1 19085:2 19116:2 19184:1 19230:1 19259:1 19268:1 19282:2 19283:2 19318:2 19377:3 19399:2 19420:1 19428:1 19451:2 19469:1 19481:2 19490:2 19491:1 19500:1 19584:1 19656:1 19697:1 19732:1 19823:1 19829:1 19835:1 19851:1 19927:1 19929:2 19950:1 20043:1 20109:1 20211:2 20259:1 20268:1 20311:1 20387:1 20484:1 20495:1 20499:2 20500:1 20513:2 20541:1 20602:1 20661:1 20691:2 20697:1 20702:1 20748:1 20762:2 20773:1 20788:1 20798:1 20810:1 20853:2 20869:2 20878:1 20958:1 20994:1 21004:1 21026:1 21122:1 21202:1 21206:1 21237:1 21257:1 21286:1 21310:1 21313:1 21363:1 21364:1 21369:1 21455:1 21464:2 21508:2 21530:1 21543:1 21625:2 21658:1 21715:2 21719:1 21728:1 21739:1 21748:1 21764:2 21791:1 21881:3 21884:1 21896:1 21918:1 21936:1 22028:1 22047:1 22062:1 22066:2 22082:1 22128:1 22133:1 22161:2 22179:2 22235:1 22242:1 22248:2 22310:1 22316:1 22321:1 22365:2 22370:1 22383:1 22416:1 22418:1 22425:4 22439:1 22456:1 22479:1 22490:1 22516:1 22543:1 22599:1 22640:1 22671:1 22694:6 22709:1 22752:1 22759:1 22770:1 22861:1 22871:1 22874:1 22901:1 23000:1 23074:1 23093:1 23111:1 23147:6 23199:1 23242:1 23247:3 23289:1 23307:1 23321:2 23325:1 23408:1 23509:2 23593:1 23596:1 23670:1 23740:1 23767:2 23817:1 23838:1 23890:1 23891:1 23895:1 23941:1 23957:1 24067:1 24069:1 24075:1 24092:1 24093:1 24097:1 24144:1 24186:2 24213:1 24217:1 24225:1 24291:1 24384:1 24493:1 24499:1 24536:2 24572:1 24653:1 24687:1 24779:1 24802:1 24803:1 24854:1 24859:2 24863:1 24871:2 24911:1 24979:1 25025:1 25077:1 25166:2 25227:1 25328:2 25362:1 25378:1 25383:1 25384:1 25387:1 25415:1 25423:1 25440:1 25451:2 25454:1 25499:1 25511:1 25516:1 25576:2 25693:1 25707:1 25710:1 25713:1 25718:1 25741:1 25766:1 25777:1 25823:1 25874:1 25895:1 25944:1 25955:1 25956:1 25995:1 26005:2 26019:1 26022:4 26074:1 26122:1 26202:1 26268:1 26272:1 26286:1 26333:1 26399:1 26428:1 26440:2 26498:1 26616:1 26632:1 26675:2 26703:1 26734:1 26743:1 26744:1 26746:1 26754:1 26789:1 26796:1 26799:1 26899:1 26915:1 26930:1 26931:1 26945:1 26971:2 27054:1 27096:1 27100:1 27131:1 27150:1 27178:1 27188:1 27224:1 27254:2 27258:1 27271:2 27299:2 27311:1 27329:1 27347:1 27401:1 27405:2 27418:1 27424:1 27502:1 27516:1 27658:2 27670:2 27689:1 27722:1 27727:1 27732:1 27784:2 27802:1 27898:1 27909:1 27912:1 27956:1 27969:6 28008:2 28080:1 28117:2 28123:1 28134:1 28151:1 28177:1 28214:1 28258:1 28283:1 28392:6 28416:2 28424:1 28485:1 28490:3 28503:1 28660:1 28669:1 28701:1 28782:1 28785:1 28798:1 28814:1 28865:1 28875:2 28954:1 28959:1 28976:1 29005:1 29027:1 29031:2 29042:2 29063:1 29073:6 29100:1 29146:1
2 12:1 13:1 31:2 75:1 85:2 88:1 89:2 146:1 166:1 180:1 213:1 272:1 287:1 291:1 359:2 385:1 415:1 479:1 515:1 544:1 553:1 564:1 607:2 644:1 658:7 663:2 667:1 696:1 719:1 749:1 783:1 809:1 813:1 815:1 820:1 822:1 861:1 905:4 908:1 917:1 951:1 960:1 965:1 1027:1 1032:1 1055:2 1190:1 1214:7 1224:1 1229:2 1256:1 1258:1 1270:1 1281:1 1314:1 1356:2 1444:1 1452:1 1462:2 1502:1 1510:3 1576:1 1598:1 1602:1 1615:1 1647:1 1676:1 1740:2 1820:1 1853:1 1870:1 1898:1 1921:1 1937:1 1941:1 1982:1 1993:1 2053:1 2077:1 2123:1 2196:1 2235:1 2291:1 2299:1 2325:1 2334:1 2336:2 2338:2 2341:1 2347:1 2362:1 2372:1 2382:1 2406:1 2457:1 2460:1 2479:1 2503:1 2522:2 2533:1 2550:1 2571:1 2736:2 2751:2 2758:1 2812:1 2813:1 2826:1 2889:1 2892:1 2982:2 2984:7 2990:1 2991:1 2998:1 3002:1 3039:2 3070:1 3091:1 3281:1 3316:1 3340:1 3354:1 3393:1 3482:1 3506:1 3540:1 3632:1 3642:1 3734:1 3758:1 3877:1 3884:1 3909:1 3938:1 3940:1 3946:1 3985:1 3990:7 4052:1 4056:1 4066:1 4096:2 4108:1 4113:1 4117:2 4132:1 4171:1 4196:1 4208:2 4216:1 4262:1 4312:1 4317:1 4357:1 4434:7 4443:1 4446:1 4452:2 4477:1 4535:3 4553:1 4590:2 4604:1 4622:1 4648:1 4668:1 4790:1 4811:1 4818:1 4826:1 4903:1 4908:1 4909:1 4916:1 4977:1 4983:1 4997:1 5012:3 5013:1 5046:1 5138:2 5140:1 5149:1 5159:1 5160:1 5167:1 5175:2 5192:2 5194:2 5195:1 5205:1 5427:1 5438:1 5486:1 5534:1 5574:1 5603:1 5626:1 5724:1 5790:1 5908:2 5921:1 5926:1 6027:1 6064:1 6079:1 6097:1 6118:1 6208:2 6296:1 6307:1 6313:1 6325:1 6391:1 6399:1 6408:2 6486:1 6500:1 6510:1 6523:2 6534:2 6545:1 6546:1 6552:4 6581:1 6600:2 6679:1 6736:1 6746:1 6769:1 6772:1 6792:1 6899:1 6904:1 6908:2 6927:1 6960:1 7030:1 7063:2 7083:1 7102:1 7114:1 7178:1 7184:1 7187:1 7217:1 7269:1 7332:1 7369:1 7406:1 7413:1 7442:1 7485:1 7571:1 7596:1 7629:1 7664:1 7679:1 7816:3 7821:1 7835:1 7878:8 7882:1 7886:2 7897:2 7900:2 7903:1 7908:1 7911:1 7933:1 7949:1 7985:1 8013:1 8039:1 8075:1 8109:1 8159:1 8300:1 8312:1 8364:1 8376:1 8377:7 8410:2 8411:2 8449:1 8480:1 8492:7 8501:1 8645:1 8659:1 8667:1 8671:1 8677:1 8683:1 8687:1 8693:2 8750:1 8760:2 8762:1 8763:1 8768:1 8822:1 8836:1 8841:1 8845:1 8923:1 8987:1 9014:1 9052:1 9057:1 9059:1 9061:1 9110:1 9112:1 9138:1 9139:1 9196:1 9247:1 9320:2 9343:1 9378:2 9382:2 9391:1 9393:1 9394:1 9404:1 9445:1 9447:2 9449:1 9490:1 9496:1 9546:1 9564:1 9660:1 9675:1 9677:2 9678:1 9706:1 9717:1 9719:2 9779:1 9905:2 9916:1 9921:1 10028:1 10046:7 10055:1 10061:1 10122:1 10170:1 10177:1 10195:2 10242:2 10280:1 10297:2 10322:2 10337:1 10383:1 10388:1 10404:1 10417:1 10426:2 10582:1 10623:1 10691:1 10725:1 10740:1 10745:1 10758:1 10786:2 10840:1 10860:1 10882:1 10894:1 10929:1 10976:1 10990:1 11036:1 11098:1 11111:2 11114:1 11124:1 11143:1 11152:1 11158:1 11170:1 11197:1 11200:1 11215:1 11217:2 11219:2 11220:1 11246:1 11276:1 11286:1 11293:1 11320:1 11375:1 11385:1 11456:1 11490:1 11503:2 11505:1 11535:2 11622:1 11629:1 11636:1 11648:1 11732:1 11775:1 11812:1 11834:1 11839:1 11845:1 11851:1 11871:1 11878:1 11881:2 11992:1 12092:1 12110:1 12163:1 12240:1 12261:2 12337:1 12338:1 12339:1 12421:1 12444:1 12461:2 12510:1 12597:2 12612:1 12657:1 12664:1 12763:1 12790:1 12792:7 12809:1 12813:3 12859:1 12888:1 12927:1 13008:1 13024:2 13100:1 13116:1 13132:1 13145:1 13217:1 13239:1 13269:1 13280:1 13286:2 13307:1 13313:1 13340:1 13424:2 13482:1 13491:4 13584:1 13626:1 13639:1 13641:1 13647:1 13676:1 13700:1 13713:1 13729:1 13782:2 13805:1 13808:1 13859:1 13868:1 13869:1 13873:1 13901:1 13928:1 13935:1 13951:3 13974:1 13988:1 14030:2 14038:1 14059:1 14069:1 14096:1 14147:2 14156:1 14177:2 14232:1 14259:1 14261:2 14361:3 14460:1 14466:2 14468:2 14486:1 14560:1 14576:1 14592:1 14621:1 14627:1 14643:1 14657:1 14659:1 14699:7 14705:2 14714:1 14736:1 14786:1 14789:1 14827:1 14847:1 14869:1 14890:1 14900:1 15003:1 15070:1 15087:1 15109:2 15193:1 15197:1 15218:1 15247:1 15278:1 15322:1 15482:1 15557:1 15584:1 15608:3 15616:2 15718:1 15742:1 15762:1 15779:1 15796:1 15802:2 15818:1 15827:1 15835:1 15888:1 15899:1 15921:3 15961:1 16051:1 16060:4 16140:1 16165:3 16200:1 16239:1 16264:1 16285:1 16291:2 16387:1 16404:1 16413:1 16419:1 16457:1 16476:1 16522:1 16527:1 16631:1 16644:1 16679:1 16769:1 16797:1 16926:9 16949:1 16951:1 16963:1 16967:2 17020:1 17028:1 17047:1 17068:2 17103:1 17138:1 17143:1 17144:1 17166:1 17208:1 17213:1 17281:1 17361:1 17380:1 17383:1 17440:1 17450:1 17459:2 17475:1 17484:1 17535:2 17549:2 17649:1 17671:2 17731:1 17766:2 17787:1 17817:1 17855:2 17936:1 17964:1 18013:2 18026:1 18245:1 18300:2 18316:1 18377:1 18395:1 18507:1 18516:461 18566:1 18587:1 18604:1 18638:1 18651:1 18653:1 18678:1 18707:1 18724:1 18902:1 18969:1 18976:1 19014:2 19083:1 19085:2 19116:2 19184:1 19230:1 19259:1 19268:1 19282:2 19283:2 19318:2 19377:3 19399:2 19420:1 19428:1 19451:2 19461:1 19469:1 19481:2 19490:2 19491:1 19500:1 19584:1 19656:1 19697:1 19732:1 19823:1 19829:1 19835:1 19851:1 19896:1 19927:1 19929:2 19950:1 20043:1 20109:1 20117:1 20156:1 20211:2 20259:1 20268:1 20311:1 20387:1 20484:1 20495:1 20499:2 20500:1 20513:2 20541:1 20602:1 20661:1 20691:2 20697:1 20702:1 20748:1 20762:2 20773:1 20788:1 20798:1 20810:1 20853:2 20869:2 20878:1 20892:1 20940:1 20958:1 20994:1 20996:1 21004:1 21026:1 21061:1 21122:1 21185:1 21202:1 21206:1 21237:1 21257:1 21286:1 21310:1 21313:1 21363:1 21364:1 21369:1 21455:1 21464:2 21508:2 21530:1 21543:1 21625:2 21658:1 21715:2 21719:1 21728:1 21739:1 21748:1 21764:2 21791:1 21881:3 21884:1 21896:1 21918:1 21925:1 21936:1 22028:1 22047:1 22062:1 22066:2 22082:2 22128:1 22133:1 22161:2 22179:2 22235:1 22242:1 22248:2 22310:3 22316:1 22321:1 22365:2 22368:1 22370:1 22383:1 22416:1 22418:1 22425:4 22439:1 22456:1 22471:1 22479:1 22490:1 22516:1 22543:1 22599:1 22640:1 22671:1 22694:7 22709:1 22752:1 22759:1 22770:1 22861:1 22871:1 22874:1 22901:1 23000:1 23074:1 23093:1 23095:2 23103:1 23111:1 23147:7 23199:1 23242:1 23247:3 23289:1 23307:1 23321:2 23325:1 23371:1 23408:1 23509:2 23593:1 23596:1 23670:1 23740:1 23767:2 23817:1 23838:1 23890:1 23891:1 23895:1 23941:1 23957:1 24067:1 24069:1 24075:1 24092:1 24093:1 24097:1 24144:2 24186:2 24213:1 24217:1 24225:1 24291:1 24379:1 24384:1 24493:1 24499:1 24536:2 24572:1 24620:1 24653:1 24687:1 24779:1 24802:1 24803:1 24854:1 24859:2 24863:1 24871:2 24911:1 24979:1 25025:1 25077:1 25097:1 25100:1 25166:2 25205:1 25227:1 25328:2 25362:1 25378:1 25383:1 25384:1 25387:1 25415:1 25423:1 25440:1 25451:2 25454:1 25499:1 25511:1 25516:2 25573:1 25576:2 25693:1 25707:1 25710:1 25713:1 25718:1 25741:1 25766:1 25777:1 25823:1 25844:1 25861:1 25874:1 25884:1 25895:1 25944:1 25955:1 25956:1 25995:2 26005:2 26019:1 26022:4 26074:1 26122:1 26130:1 26202:1 26268:1 26272:1 26286:1 26333:1 26399:1 26428:1 26440:2 26498:1 26616:1 26632:1 26675:2 26703:2 26734:1 26743:1 26744:1 26746:2 26754:1 26789:1 26796:1 26799:1 26813:1 26866:1 26899:1 26915:1 26930:1 26931:1 26945:2 26971:2 27054:1 27096:1 27100:1 27131:1 27150:1 27178:1 27188:1 27206:1 27224:1 27236:1 27254:2 27258:1 27271:2 27299:2 27311:1 27329:1 27347:1 27401:1 27405:2 27418:1 27424:1 27502:1 27516:1 27658:2 27659:1 27670:2 27673:1 27689:1 27722:1 27727:1 27732:1 27784:2 27802:1 27898:1 27909:1 27912:1 27956:1 27969:6 28008:2 28060:1 28080:1 28117:2 28123:1 28134:1 28151:1 28177:1 28214:1 28258:1 28283:1 28296:1 28392:7 28416:2 28424:1 28485:2 28490:4 28503:1 28522:1 28647:1 28660:1 28669:1 28690:2 28701:1 28782:1 28785:1 28798:1 28814:1 28865:1 28875:2 28954:1 28959:1 28976:1 29005:1 29027:1 29031:2 29042:2 29063:1 29073:7 29100:1 29146:1 29147:2
2 12:1 13:1 31:2 75:1 85:2 88:1 89:2 146:2 166:1 180:1 213:1 265:1 271:1 272:1 286:1 287:1 291:1 359:2 385:1 391:1 415:1 446:1 479:1 509:1 515:1 544:1 553:1 564:1 607:2 620:1 623:1 644:1 658:8 663:2 667:1 696:1 719:1 749:1 783:1 809:1 813:1 815:1 817:1 820:1 822:1 861:2 905:4 908:1 917:2 951:1 960:1 965:1 970:1 982:1 1006:1 1027:1 1032:1 1055:2 1160:1 1190:1 1214:7 1224:1 1229:2 1256:1 1258:1 1270:1 1279:1 1281:1 1314:1 1356:2 1380:1 1444:1 1452:1 1462:2 1475:1 1502:1 1510:3 1576:2 1598:1 1602:1 1615:1 1647:1 1676:1 1691:1 1740:2 1745:1 1783:1 1820:1 1853:1 1870:1 1871:1 1898:1 1921:1 1937:1 1941:2 1982:1 1993:1 2053:1 2077:1 2094:1 2123:1 2196:1 2235:1 2291:1 2299:1 2325:1 2334:1 2336:2 2338:2 2341:1 2347:1 2352:1 2356:1 2362:1 2364:1 2369:1 2372:1 2375:1 2382:1 2406:1 2430:1 2457:1 2460:1 2479:1 2494:1 2503:1 2514:1 2522:2 2533:1 2550:2 2571:1 2681:1 2735:1 2736:2 2751:2 2758:1 2775:1 2787:1 2804:1 2812:1 2813:1 2822:1 2826:1 2883:2 2889:1 2892:1 2982:3 2984:8 2986:1 2990:1 2991:1 2998:2 3002:1 3023:1 3039:2 3070:1 3091:1 3133:1 3281:1 3316:1 3340:1 3354:1 3393:1 3482:1 3506:1 3540:1 3552:1 3632:1 3642:1 3734:1 3758:1 3775:1 3779:1 3831:1 3877:1 3884:1 3909:1 3938:1 3940:1 3946:1 3985:1 3990:7 3991:1 4052:1 4056:1 4066:1 4079:1 4081:1 4096:2 4108:1 4113:1 4117:3 4132:1 4171:1 4196:1 4208:2 4216:1 4262:1 4277:1 4309:1 4310:1 4312:1 4317:1 4319:1 4357:1 4434:7 4443:1 4446:1 4452:2 4477:1 4535:4 4553:1 4590:2 4604:1 4618:1 4622:1 4648:1 4668:1 4790:1 4811:1 4812:1 4818:1 4826:1 4903:1 4908:1 4909:1 4916:1 4942:1 4943:1 4977:1 4983:1 4997:1 4998:1 5012:3 5013:2 5046:1 5138:2 5140:1 5149:1 5159:2 5160:1 5167:1 5175:2 5183:1 5192:2 5194:2 5195:1 5205:1 5427:1 5438:1 5486:1 5534:1 5574:1 5577:1 5579:1 5583:1 5603:1 5626:1 5630:1 5724:1 5790:1 5794:1 5908:2 5921:1 5926:1 6027:1 6064:1 6079:1 6097:1 6118:1 6203:1 6208:2 6296:1 6307:1 6312:1 6313:1 6324:1 6325:1 6345:1 6391:1 6399:1 6408:2 6428:1 6486:1 6500:1 6510:1 6523:2 6534:2 6539:1 6545:1 6546:1 6552:4 6581:1 6600:2 6619:1 6674:1 6679:1 6736:1 6746:1 6769:1 6772:1 6792:1 6899:1 6904:1 6908:2 6927:1 6960:1 7030:1 7063:2 7083:1 7101:1 7102:1 7114:1 7178:1 7184:1 7187:1 7217:2 7269:1 7301:1 7332:1 7369:1 7398:1 7406:1 7413:1 7442:1 7485:1 7571:1 7596:1 7629:2 7632:1 7664:1 7679:1 7725:1 7748:1 7815:1 7816:3 7821:1 7833:1 7835:2 7868:1 7878:11 7882:1 7886:2 7897:3 7900:2 7903:1 7908:1 7911:1 7933:1 7949:1 7985:2 8013:1 8039:2 8054:1 8075:1 8109:1 8159:1 8300:1 8312:1 8351:1 8364:1 8376:1 8377:8 8410:3 8411:2 8449:1 8480:1 8492:9 8501:1 8645:1 8659:2 8667:1 8671:1 8677:1 8683:1 8687:1 8693:2 8720:1 8750:1 8760:2 8762:1 8763:1 8768:1 8822:1 8836:1 8841:1 8845:1 8862:1 8923:1 8987:1 9014:1 9052:1 9057:1 9059:1 9061:1 9110:1 9112:1 9129:1 9138:1 9139:1 9196:1 9247:1 9320:2 9343:1 9378:2 9382:2 9391:1 9393:1 9394:1 9404:1 9435:1 9445:1 9447:2 9449:1 9483:1 9490:1 9496:1 9546:1 9563:1 9564:2 9660:1 9675:1 9677:2 9678:2 9706:1 9717:1 9719:2 9779:1 9905:2 9916:1 9921:1 9936:1 10028:1 10046:7 10055:1 10061:1 10097:1 10122:1 10170:1 10174:1 10177:1 10184:1 10195:2 10242:2 10280:1 10297:2 10322:2 10337:1 10350:1 10381:1 10383:2 10388:1 10404:1 10417:1 10426:2 10582:1 10623:1 10691:1 10707:1 10725:1 10740:1 10745:1 10758:1 10760:2 10786:2 10840:1 10860:1 10867:1 10874:1 10882:1 10894:1 10929:1 10956:1 10976:1 10990:1 11036:1 11098:1 11111:2 11114:1 11124:1 11143:2 11152:1 11158:1 11167:1 11170:1 11197:1 11200:1 11215:1 11217:2 11219:2 11220:1 11246:1 11276:2 11279:1 11285:1 11286:1 11293:1 11320:1 11347:1 11375:1 11385:1 11456:1 11490:1 11503:2 11505:1 11535:2 11622:1 11629:1 11636:1 11648:1 11732:1 11775:1 11812:1 11824:1 11834:1 11839:1 11845:1 11851:1 11871:1 11878:1 11881:2 11899:1 11904:1 11992:1 11996:1 12003:1 12092:1 12110:1 12163:1 12240:1 12261:2 12283:1 12337:1 12338:1 12339:1 12421:1 12444:1 12461:2 12470:1 12510:1 12597:2 12612:1 12613:1 12650:1 12657:1 12664:1 12763:1 12790:1 12792:8 12809:1 12813:3 12859:3 12884:1 12888:1 12927:1 13001:1 13008:1 13024:2 13086:1 13100:1 13116:1 13132:1 13141:1 13145:1 13217:1 13239:1 13269:1 13280:1 13286:2 13307:1 13313:1 13340:1 13424:2 13427:1 13482:1 13491:5 13584:1 13595:1 13626:1 13639:1 13641:1 13647:1 13676:1 13695:1 13700:1 13713:1 13716:1 13729:1 13732:1 13782:3 13805:1 13808:1 13814:1 13859:1 13868:1 13869:1 13873:1 13901:1 13928:1 13935:1 13951:3 13974:1 13988:1 14030:2 14038:2 14059:1 14069:2 14096:1 14147:2 14156:1 14177:2 14232:1 14259:1 14261:2 14361:3 14460:1 14466:2 14468:2 14486:1 14560:1 14576:1 14592:1 14621:1 14627:1 14643:1 14657:1 14659:1 14664:1 14699:8 14705:2 14714:1 14736:1 14786:1 14789:1 14792:1 14827:1 14847:1 14869:1 14890:1 14900:1 15003:1 15070:1 15087:1 15106:1 15109:2 15193:2 15197:1 15218:1 15247:1 15258:1 15278:1 15299:1 15322:1 15482:1 15557:1 15584:1 15608:3 15616:2 15690:1 15718:1 15730:1 15742:1 15762:2 15779:1 15796:1 15802:2 15818:2 15827:1 15835:1 15888:1 15890:1 15899:1 15921:3 15961:1 16051:1 16060:5 16133:1 16140:1 16165:4 16200:2 16239:1 16264:1 16285:2 16291:2 16292:1 16387:1 16404:1 16413:1 16419:1 16457:1 16476:1 16522:1 16527:1 16617:1 16631:2 16644:1 16679:1 16769:1 16797:1 16926:11 16949:1 16951:1 16963:1 16967:2 17020:1 17028:1 17047:1 17068:2 17103:1 17138:1 17143:1 17144:1 17166:1 17208:1 17213:1 17281:1 17361:1 17375:1 17380:1 17383:1 17384:1 17440:1 17450:1 17459:2 17475:1 17484:1 17535:2 17549:2 17560:1 17649:1 17671:2 17731:1 17758:1 17766:2 17787:1 17817:1 17855:2 17909:1 17936:1 17937:1 17964:1 18013:2 18018:1 18026:1 18245:1 18300:3 18316:1 18377:1 18395:1 18419:1 18447:1 18507:1 18516:525 18538:1 18551:1 18566:1 18587:1 18604:1 18638:1 18651:1 18653:1 18678:1 18707:1 18724:1 18902:1 18969:1 18976:1 19014:2 19083:1 19085:2 19116:2 19120:1 19128:1 19184:1 19230:1 19259:1 19268:1 19282:2 19283:2 19290:1 19318:2 19377:4 19399:2 19420:2 19428:1 19451:3 19461:1 19469:1 19481:2 19490:2 19491:1 19500:1 19584:1 19656:1 19697:1 19732:1 19823:1 19829:1 19835:1 19851:1 19896:1 19927:1 19929:2 19950:1 20029:1 20043:1 20051:1 20109:1 20117:1 20156:1 20211:2 20259:1 20268:1 20311:1 20387:1 20460:1 20484:1 20495:1 20499:2 20500:1 20513:2 20541:1 20602:1 20661:1 20664:1 20691:2 20697:1 20702:1 20725:1 20748:1 20762:2 20773:1 20788:1 20789:1 20798:1 20810:1 20853:2 20862:1 20869:2 20878:1 20892:1 20940:1 20942:1 20958:1 20994:1 20996:1 21004:1 21021:1 21026:1 21061:1 21122:1 21185:1 21202:1 21206:2 21237:1 21257:1 21286:1 21310:1 21311:1 21313:1 21363:1 21364:1 21369:1 21455:1 21464:2 21508:2 21530:1 21543:1 21570:1 21577:1 21625:2 21658:1 21715:2 21719:1 21728:1 21739:1 21748:1 21764:2 21791:1 21881:3 21884:1 21896:1 21906:1 21918:1 21924:1 21925:1 21936:1 21947:1 21955:1 22028:1 22047:1 22058:1 22062:1 22066:2 22082:2 22128:1 22133:1 22161:2 22179:2 22235:1 22242:1 22248:2 22310:4 22316:1 22321:1 22365:2 22368:1 22370:1 22383:1 22416:1 22418:1 22425:5 22439:1 22456:1 22471:1 22479:1 22490:1 22516:1 22543:1 22599:2 22640:1 22671:1 22694:7 22709:1 22714:1 22752:1 22759:1 22770:1 22861:1 22871:1 22874:1 22901:1 23000:1 23074:1 23079:1 23093:1 23095:2 23103:1 23111:1 23147:8 23199:1 23242:1 23247:4 23289:1 23307:1 23321:2 23325:1 23371:1 23381:1 23408:1 23509:2 23593:1 23596:1 23670:1 23740:1 23767:2 23817:1 23838:1 23890:1 23891:1 23895:1 23941:1 23957:1 24008:1 24067:1 24069:1 24075:1 24092:1 24093:1 24097:1 24144:2 24186:2 24213:1 24217:1 24225:1 24291:1 24379:1 24384:1 24493:1 24499:1 24536:2 24572:1 24577:1 24620:1 24653:1 24687:1 24757:1 24779:1 24802:1 24803:1 24854:1 24859:2 24863:1 24871:2 24911:1 24979:1 25025:1 25077:1 25097:1 25100:1 25166:2 25181:1 25205:1 25212:1 25222:1 25227:1 25255:1 25328:2 25351:1 25362:1 25378:1 25383:1 25384:1 25387:1 25415:1 25423:1 25440:1 25451:2 25454:1 25499:1 25511:1 25516:2 25546:2 25573:1 25576:2 25628:1 25693:1 25707:1 25710:1 25713:1 25718:1 25741:1 25766:1 25777:1 25823:1 25844:1 25861:1 25874:1 25884:2 25895:1 25920:1 25944:1 25955:1 25956:1 25995:2 26005:2 26018:1 26019:1 26022:5 26023:1 26074:1 26093:1 26122:1 26130:1 26202:1 26253:1 26268:1 26272:1 26286:1 26333:1 26399:1 26428:1 26440:2 26498:1 26616:1 26630:1 26632:2 26654:1 26663:1 26675:2 26703:2 26734:1 26743:2 26744:1 26746:2 26754:1 26774:1 26778:1 26789:1 26796:1 26799:1 26813:1 26866:1 26899:1 26915:1 26918:1 26923:1 26930:1 26931:1 26945:2 26971:2 27054:1 27096:1 27100:2 27131:1 27150:1 27178:1 27188:1 27206:1 27224:1 27236:1 27249:1 27251:1 27254:2 27258:2 27271:2 27276:1 27297:1 27299:2 27311:1 27329:1 27347:1 27365:1 27401:1 27405:2 27418:1 27424:1 27451:1 27502:1 27516:1 27658:2 27659:1 27670:2 27673:2 27689:1 27718:1 27722:1 27727:1 27732:1 27784:2 27802:1 27898:1 27909:1 27912:1 27953:1 27956:1 27969:6 28008:2 28060:1 28080:1 28095:1 28117:2 28123:1 28134:1 28151:1 28165:1 28177:1 28212:1 28214:1 28258:1 28283:1 28296:1 28392:9 28416:2 28423:1 28424:1 28485:2 28490:4 28503:1 28522:1 28546:1 28615:1 28647:1 28660:1 28669:1 28690:2 28701:1 28782:1 28785:1 28798:1 28814:1 28865:1 28875:2 28894:1 28903:1 28954:1 28959:1 28976:1 29005:1 29027:1 29031:2 29042:4 29063:1 29073:8 29100:1 29139:1 29146:1 29147:2
2 12:1 13:1 31:2 56:1 75:1 85:2 88:1 89:2 146:2 166:1 180:1 213:1 228:1 265:1 271:2 272:1 286:1 287:1 291:1 322:1 359:2 385:1 391:1 392:1 395:1 415:1 446:1 479:1 509:1 515:1 544:1 553:1 564:1 607:2 620:1 623:1 644:2 658:9 663:2 667:1 696:1 719:1 728:1 735:1 749:1 783:1 809:1 813:1 815:1 817:1 820:1 822:1 861:2 905:5 908:1 917:2 951:1 960:2 965:1 970:1 976:1 982:1 1006:1 1027:1 1032:1 1055:2 1112:1 1160:1 1190:1 1214:8 1223:2 1224:1 1229:2 1256:1 1258:1 1270:1 1279:1 1281:1 1314:1 1356:2 1380:1 1393:1 1402:2 1444:1 1452:1 1462:2 1475:1 1502:2 1510:3 1576:2 1598:1 1602:1 1615:1 1647:1 1676:1 1691:1 1740:2 1745:2 1783:1 1820:1 1853:1 1870:1 1871:1 1878:1 1898:1 1921:2 1937:1 1941:2 1947:1 1982:1 1993:1 2053:1 2077:1 2094:1 2123:1 2172:1 2196:2 2235:1 2291:1 2299:1 2325:1 2333:1 2334:1 2336:2 2338:2 2341:1 2342:1 2347:2 2352:1 2356:1 2362:1 2364:1 2369:1 2372:1 2375:1 2382:1 2406:1 2430:1 2457:1 2460:1 2479:1 2494:1 2503:1 2514:1 2522:2 2533:1 2550:2 2571:1 2681:1 2735:1 2736:2 2751:2 2758:1 2775:1 2787:1 2804:1 2812:1 2813:1 2822:1 2826:1 2883:2 2889:1 2892:1 2982:3 2984:9 2986:1 2990:1 2991:1 2998:2 3002:1 3023:1 3039:3 3070:1 3091:1 3133:1 3281:1 3316:1 3340:1 3351:1 3354:1 3393:1 3482:1 3506:1 3540:1 3550:1 3552:1 3632:1 3642:1 3734:1 3758:1 3775:1 3779:1 3831:1 3877:1 3884:1 3909:1 3938:1 3940:1 3946:1 3985:1 3990:8 3991:2 4052:1 4056:1 4066:1 4072:1 4079:1 4081:2 4096:2 4108:1 4113:1 4117:4 4132:1 4171:1 4196:1 4208:2 4216:1 4262:1 4277:1 4309:2 4310:1 4312:2 4317:1 4319:1 4357:1 4434:8 4443:1 4446:1 4452:2 4477:1 4535:5 4553:1 4590:2 4604:2 4618:1 4622:1 4648:1 4668:1 4790:1 4811:1 4812:1 4818:1 4826:1 4903:1 4908:1 4909:1 4916:1 4920:1 4942:1 4943:1 4977:1 4983:1 4997:1 4998:1 5012:6 5013:2 5046:1 5138:2 5140:1 5149:1 5159:2 5160:1 5161:1 5167:1 5175:2 5183:1 5190:1 5192:2 5194:2 5195:1 5205:1 5427:1 5438:1 5486:1 5534:1 5574:1 5577:1 5579:1 5583:1 5603:1 5626:1 5630:1 5724:1 5790:1 5794:1 5908:2 5921:1 5926:1 5939:1 6027:1 6064:1 6079:1 6097:1 6118:1 6203:1 6208:2 6211:1 6247:1 6296:1 6307:1 6312:1 6313:1 6324:1 6325:2 6345:1 6391:1 6399:1 6408:2 6428:1 6486:1 6500:1 6510:1 6523:3 6534:2 6539:1 6545:1 6546:1 6552:4 6581:1 6600:2 6619:1 6674:1 6679:1 6736:1 6746:1 6769:1 6772:1 6792:1 6899:1 6901:1 6904:1 6908:2 6927:1 6960:1 7030:1 7063:2 7083:1 7101:1 7102:1 7114:1 7178:1 7184:1 7187:1 7203:1 7217:3 7269:1 7301:1 7332:1 7369:1 7398:1 7406:1 7413:1 7442:1 7485:1 7571:1 7596:1 7629:2 7632:1 7664:2 7679:1 7725:1 7748:1 7779:1 7815:1 7816:3 7821:1 7833:1 7835:2 7864:2 7868:1 7878:14 7882:1 7886:2 7897:3 7900:2 7903:1 7908:1 7911:1 7933:1 7949:1 7985:2 7996:1 8013:1 8039:2 8054:1 8075:1 8077:1 8105:1 8109:2 8159:1 8162:1 8300:1 8312:1 8351:1 8364:1 8376:1 8377:9 8410:4 8411:2 8443:1 8449:2 8480:1 8492:11 8501:1 8645:1 8659:2 8667:1 8671:1 8677:1 8683:1 8687:1 8693:2 8720:1 8750:1 8760:2 8762:1 8763:1 8768:1 8783:1 8822:1 8832:1 8836:1 8841:1 8845:1 8862:1 8923:1 8987:1 9014:1 9052:1 9057:1 9059:1 9061:1 9090:1 9110:1 9112:1 9129:1 9138:1 9139:1 9196:1 9238:1 9247:1 9320:2 9343:1 9378:2 9382:2 9391:1 9393:1 9394:1 9404:1 9429:1 9435:1 9445:1 9447:2 9449:1 9456:1 9473:2 9483:2 9490:1 9496:1 9546:1 9563:1 9564:2 9660:1 9675:1 9677:2 9678:4 9706:1 9717:1 9719:2 9738:1 9779:1 9782:1 9802:1 9804:1 9856:1 9905:3 9916:1 9921:1 9936:1 10028:1 10046:8 10055:1 10061:1 10097:1 10122:1 10170:1 10174:1 10177:1 10184:1 10195:2 10242:2 10252:1 10280:1 10297:2 10322:2 10337:1 10350:1 10381:1 10383:2 10388:1 10404:1 10417:1 10426:3 10526:1 10582:1 10623:1 10691:1 10707:1 10725:1 10740:1 10745:1 10758:1 10760:2 10773:1 10786:2 10840:1 10842:1 10860:1 10867:2 10874:1 10882:1 10894:1 10929:1 10956:1 10976:1 10990:1 11036:1 11098:1 11111:2 11114:1 11124:1 11143:2 11152:1 11158:1 11167:1 11170:1 11195:1 11197:1 11200:1 11215:1 11217:2 11219:2 11220:1 11246:1 11264:1 11276:3 11279:1 11285:1 11286:1 11293:1 11320:1 11347:1 11375:1 11385:1 11456:1 11464:1 11490:1 11503:2 11505:1 11535:2 11552:1 11571:2 11622:1 11629:1 11636:1 11648:1 11732:1 11750:2 11775:1 11812:1 11824:1 11827:1 11834:1 11839:2 11845:2 11851:2 11871:1 11878:1 11881:2 11899:1 11904:1 11930:1 11979:1 11992:1 11996:1 12003:1 12011:1 12043:2 12092:1 12110:1 12163:1 12240:1 12261:2 12281:1 12283:1 12337:1 12338:1 12339:1 12421:1 12444:1 12461:2 12470:1 12510:1 12513:1 12588:1 12597:2 12612:1 12613:1 12650:1 12657:1 12664:1 12763:1 12767:1 12790:1 12792:9 12809:1 12813:3 12821:1 12859:3 12884:1 12888:1 12922:1 12927:1 13001:1 13008:1 13024:2 13086:1 13100:1 13116:1 13132:1 13141:1 13145:1 13217:1 13239:1 13269:1 13280:1 13286:3 13307:1 13313:1 13340:1 13424:2 13427:1 13437:1 13480:1 13482:1 13491:5 13584:1 13595:1 13626:1 13639:2 13641:2 13647:1 13676:1 13695:1 13700:1 13707:1 13713:1 13716:1 13729:1 13732:1 13770:1 13772:1 13782:5 13805:1 13808:1 13814:1 13859:1 13868:1 13869:1 13873:1 13901:1 13928:1 13935:1 13951:3 13974:1 13988:1 14030:2 14038:2 14059:1 14069:4 14096:1 14147:2 14156:1 14177:3 14232:1 14259:1 14261:2 14361:3 14460:2 14466:2 14468:2 14486:1 14560:1 14576:1 14592:1 14621:1 14625:1 14627:1 14629:1 14634:1 14643:1 14657:1 14659:1 14664:1 14699:9 14705:2 14708:1 14709:1 14714:1 14736:1 14786:1 14789:1 14792:2 14800:1 14806:1 14827:1 14847:2 14869:1 14890:1 14900:1 15003:1 15010:1 15070:2 15087:1 15106:1 15109:2 15169:1 15193:2 15197:1 15218:1 15247:1 15257:1 15258:1 15278:1 15299:1 15322:1 15340:1 15478:1 15482:1 15556:1 15557:1 15584:1 15608:3 15616:2 15690:1 15718:1 15730:1 15742:1 15762:2 15779:1 15796:1 15802:2 15818:2 15827:1 15835:1 15888:1 15890:1 15899:1 15921:4 15961:1 16023:1 16051:1 16060:5 16133:1 16140:1 16165:5 16200:2 16239:1 16264:1 16285:3 16291:2 16292:1 16387:1 16404:1 16413:1 16419:1 16457:1 16476:1 16522:1 16527:1 16613:1 16617:1 16631:2 16644:1 16679:1 16769:1 16776:1 16797:1 16800:1 16811:1 16926:13 16949:1 16951:1 16963:1 16967:2 17020:1 17028:1 17042:1 17047:1 17068:2 17072:2 17103:1 17138:1 17143:1 17144:1 17166:1 17208:1 17213:1 17236:1 17281:1 17361:1 17375:1 17380:1 17383:1 17384:1 17440:1 17450:1 17459:2 17475:1 17484:1 17535:2 17549:2 17560:1 17649:1 17671:2 17731:1 17758:1 17766:2 17787:1 17817:1 17855:2 17909:1 17929:1 17936:1 17937:1 17964:1 18013:2 18018:1 18026:1 18058:1 18223:1 18245:1 18300:3 18316:1 18377:1 18395:1 18419:1 18447:1 18499:1 18507:1 18516:574 18538:1 18551:1 18566:1 18587:1 18604:1 18638:1 18651:1 18653:1 18678:1 18707:1 18712:1 18724:1 18902:1 18969:1 18976:1 19014:2 19016:1 19037:1 19083:1 19085:2 19116:2 19120:1 19128:1 19184:1 19230:1 19259:1 19268:1 19282:2 19283:2 19290:1 19315:1 19318:2 19342:1 19377:5 19399:2 19420:2 19428:1 19451:3 19461:1 19469:1 19481:2 19490:2 19491:1 19500:1 19509:1 19561:1 19584:1 19589:1 19609:1 19656:1 19697:1 19732:1 19819:1 19823:1 19829:1 19835:1 19851:1 19896:1 19927:1 19929:3 19950:1 20029:1 20043:1 20051:2 20109:1 20117:1 20132:1 20144:1 20156:1 20211:2 20259:1 20268:1 20311:1 20387:1 20460:1 20484:1 20495:1 20499:2 20500:1 20513:2 20541:1 20602:1 20661:1 20664:1 20691:2 20697:1 20702:2 20725:1 20748:1 20762:2 20767:1 20773:1 20788:1 20789:1 20798:1 20810:1 20853:2 20862:1 20869:2 20878:1 20892:1 20940:1 20942:2 20958:1 20994:1 20996:1 21004:1 21021:1 21026:1 21061:1 21078:1 21122:1 21185:1 21202:1 21206:2 21237:1 21257:1 21271:1 21286:1 21310:1 21311:1 21313:1 21363:1 21364:1 21369:1 21455:1 21464:2 21508:2 21530:1 21543:1 21570:1 21577:1 21625:2 21658:1 21699:1 21715:2 21719:1 21728:1 21739:1 21748:1 21764:2 21775:1 21791:1 21881:3 21884:1 21896:1 21906:1 21918:1 21924:1 21925:1 21936:1 21947:1 21955:1 22028:1 22047:1 22058:1 22062:1 22066:3 22082:2 22095:1 22128:1 22133:1 22161:2 22179:2 22235:1 22242:1 22248:2 22310:5 22312:1 22316:1 22321:1 22365:3 22368:1 22370:1 22383:1 22416:1 22418:1 22425:6 22439:1 22456:1 22471:1 22479:1 22490:1 22516:1 22543:1 22599:2 22640:1 22671:1 22694:8 22709:1 22713:1 22714:1 22752:1 22759:1 22770:1 22771:1 22805:1 22809:1 22861:1 22871:1 22874:1 22901:1 23000:1 23074:1 23079:1 23093:1 23095:2 23103:1 23111:1 23147:9 23168:1 23199:1 23228:1 23242:1 23247:5 23289:1 23307:1 23321:2 23325:1 23329:1 23371:1 23379:1 23381:1 23408:1 23509:2 23543:1 23593:1 23596:1 23670:1 23740:1 23767:2 23817:1 23838:1 23857:1 23890:1 23891:1 23895:1 23941:1 23957:1 23982:1 24008:2 24028:1 24065:1 24067:1 24069:1 24075:1 24092:1 24093:1 24097:1 24114:1 24144:2 24186:2 24213:1 24217:1 24220:1 24225:1 24235:1 24291:1 24379:1 24384:1 24444:1 24493:1 24499:1 24505:1 24536:2 24572:1 24577:1 24620:1 24653:1 24687:1 24757:1 24779:1 24802:1 24803:1 24854:1 24858:1 24859:2 24863:1 24871:2 24911:1 24922:2 24979:1 25025:1 25077:1 25097:1 25100:1 25166:2 25181:1 25205:1 25212:1 25222:1 25227:1 25255:1 25328:2 25351:1 25362:1 25378:1 25383:1 25384:1 25387:1 25415:1 25423:1 25440:1 25451:2 25454:1 25499:1 25511:1 25516:2 25546:2 25573:1 25576:2 25628:1 25693:1 25707:1 25710:1 25713:2 25718:1 25740:1 25741:1 25766:1 25777:1 25823:1 25844:1 25850:1 25861:1 25874:1 25884:2 25895:1 25920:1 25929:1 25944:1 25955:1 25956:1 25989:1 25995:2 26005:2 26018:1 26019:1 26022:5 26023:1 26074:1 26093:2 26122:1 26130:1 26182:1 26202:1 26253:1 26268:1 26272:1 26283:1 26286:1 26333:1 26399:1 26428:1 26440:2 26465:1 26498:1 26525:1 26616:1 26630:1 26632:2 26653:1 26654:1 26663:1 26675:3 26703:2 26734:1 26743:2 26744:1 26746:2 26754:1 26774:1 26778:1 26789:1 26794:1 26796:1 26799:1 26813:1 26847:1 26866:1 26899:1 26915:1 26918:2 26923:2 26930:1 26931:1 26945:2 26971:2 27054:1 27096:1 27100:2 27130:1 27131:1 27150:1 27178:1 27188:1 27206:1 27224:1 27235:1 27236:1 27249:1 27251:1 27254:2 27258:2 27271:2 27276:1 27297:1 27299:2 27311:1 27318:1 27329:1 27347:2 27365:1 27401:1 27405:2 27418:1 27424:1 27451:1 27472:1 27502:1 27504:1 27516:1 27658:2 27659:1 27670:2 27673:2 27689:1 27718:1 27722:1 27727:1 27732:1 27784:2 27802:1 27868:1 27898:1 27909:1 27912:1 27950:1 27953:1 27956:1 27969:7 28008:3 28060:1 28080:2 28095:1 28117:2 28123:1 28134:1 28151:1 28165:1 28170:1 28177:1 28207:1 28212:1 28214:1 28231:1 28243:2 28258:1 28283:1 28296:1 28392:11 28416:2 28423:2 28424:1 28485:2 28490:4 28503:1 28522:1 28546:1 28615:1 28634:1 28647:1 28660:1 28669:1 28690:2 28701:1 28782:1 28785:1 28787:2 28798:1 28814:1 28865:1 28875:2 28894:1 28903:1 28954:1 28959:1 28964:1 28976:1 29003:1 29005:1 29027:1 29031:2 29042:4 29063:1 29073:9 29100:1 29139:1 29146:1 29147:2
2 12:1 13:1 31:2 56:1 75:1 85:2 88:1 89:2 146:2 166:1 180:1 213:1 228:1 265:1 271:2 272:1 286:1 287:1 291:1 322:1 359:3 385:1 391:1 392:1 395:1 415:1 425:1 446:1 479:1 501:1 509:1 515:1 544:1 553:1 564:1 607:2 620:1 623:1 644:2 658:10 663:2 667:1 696:1 719:1 728:1 735:1 749:1 783:1 809:1 813:1 815:1 817:1 820:1 822:1 861:2 905:5 908:1 917:4 951:1 960:2 965:1 970:1 976:1 982:1 1006:1 1027:1 1032:1 1055:2 1112:1 1158:1 1160:1 1190:1 1214:9 1223:2 1224:1 1229:2 1256:1 1258:1 1270:1 1279:1 1281:1 1314:1 1356:2 1380:1 1393:1 1402:2 1444:1 1452:1 1462:2 1475:1 1502:2 1510:3 1576:2 1598:1 1602:1 1615:1 1636:1 1647:1 1676:1 1685:1 1691:1 1740:2 1745:2 1783:1 1820:1 1853:1 1870:1 1871:1 1878:1 1898:1 1921:2 1937:1 1941:2 1947:1 1982:1 1993:1 2042:1 2051:1 2053:1 2077:1 2094:1 2123:1 2172:1 2176:1 2196:2 2235:1 2291:1 2299:1 2325:1 2333:1 2334:1 2336:3 2338:2 2339:1 2341:1 2342:1 2347:2 2352:1 2356:2 2362:1 2364:1 2369:1 2372:1 2375:1 2382:1 2406:1 2430:1 2457:1 2460:1 2479:1 2494:1 2503:1 2514:1 2522:2 2533:1 2550:2 2571:1 2681:1 2730:1 2735:1 2736:2 2751:2 2758:1 2775:1 2787:1 2804:1 2812:1 2813:1 2822:1 2826:1 2883:2 2889:1 2892:1 2982:3 2984:10 2986:1 2990:1 2991:2 2998:2 3002:1 3018:1 3023:1 3032:1 3039:3 3053:1 3070:1 3091:1 3133:1 3281:1 3316:1 3340:1 3351:1 3354:1 3393:1 3482:1 3506:1 3540:1 3550:1 3552:1 3632:1 3642:1 3734:1 3758:1 3775:1 3779:1 3831:1 3872:1 3877:1 3884:1 3909:1 3938:1 3940:1 3946:1 3985:1 3990:9 3991:2 4052:1 4056:1 4066:1 4072:1 4079:1 4081:2 4096:2 4108:1 4113:1 4117:4 4132:1 4171:1 4196:1 4208:2 4216:1 4260:1 4262:1 4277:1 4309:2 4310:1 4312:2 4317:1 4319:1 4357:1 4434:9 4443:1 4446:1 4452:2 4477:1 4535:6 4553:1 4590:2 4604:2 4610:1 4618:1 4622:1 4648:1 4668:1 4790:1 4811:1 4812:1 4818:1 4826:1 4903:1 4908:1 4909:1 4916:1 4920:1 4942:1 4943:1 4977:1 4983:1 4997:1 4998:1 5012:6 5013:2 5046:1 5138:2 5140:1 5149:1 5159:2 5160:1 5161:1 5167:1 5175:2 5183:1 5190:1 5192:2 5194:2 5195:1 5205:1 5268:1 5427:1 5438:1 5439:1 5486:1 5534:1 5574:1 5577:1 5579:1 5583:1 5603:1 5626:1 5630:1 5724:1 5790:1 5794:1 5807:1 5833:1 5908:2 5921:1 5926:1 5939:1 6027:1 6064:1 6065:1 6079:1 6097:1 6118:1 6203:1 6208:2 6211:1 6247:1 6296:1 6307:1 6311:1 6312:1 6313:1 6324:1 6325:2 6345:1 6356:1 6391:1 6399:1 6408:3 6428:1 6479:1 6486:1 6500:1 6510:1 6523:3 6534:2 6539:1 6545:1 6546:1 6552:4 6581:1 6600:2 6619:1 6667:1 6674:1 6679:1 6736:1 6746:1 6763:1 6769:1 6772:1 6785:1 6792:1 6899:1 6901:1 6904:1 6908:2 6927:1 6960:1 7030:1 7063:2 7083:1 7101:1 7102:1 7114:1 7178:1 7184:1 7187:1 7203:1 7217:3 7269:1 7301:1 7332:1 7369:1 7398:1 7406:1 7413:1 7442:1 7485:1 7495:1 7571:1 7596:1 7629:3 7632:1 7664:2 7679:1 7725:1 7748:1 7779:1 7815:1 7816:4 7821:1 7833:1 7835:4 7864:2 7868:1 7878:16 7882:1 7886:2 7897:3 7900:2 7903:1 7908:1 7911:1 7933:1 7949:1 7985:2 7996:1 8013:1 8039:2 8054:1 8075:1 8077:1 8105:1 8109:2 8159:1 8162:1 8300:1 8312:1 8351:1 8364:1 8376:1 8377:10 8392:1 8410:4 8411:2 8443:1 8449:2 8480:1 8492:12 8501:1 8588:1 8596:1 8645:1 8659:2 8667:1 8671:1 8677:1 8683:1 8687:1 8693:2 8720:1 8750:1 8760:2 8762:1 8763:1 8768:1 8783:1 8822:1 8832:1 8836:1 8841:1 8845:1 8862:1 8923:1 8987:1 9014:1 9052:1 9057:1 9059:1 9061:1 9086:1 9090:1 9110:1 9112:1 9129:1 9138:1 9139:1 9196:1 9238:1 9247:1 9320:2 9343:1 9378:2 9382:2 9384:1 9391:1 9393:1 9394:1 9404:1 9429:1 9435:1 9445:1 9447:2 9449:1 9456:1 9473:2 9483:2 9490:1 9496:1 9546:1 9563:1 9564:2 9580:1 9660:1 9675:1 9677:2 9678:4 9706:1 9717:1 9719:2 9738:1 9779:1 9782:1 9802:1 9804:1 9856:1 9905:3 9916:1 9921:1 9924:2 9936:1 10028:1 10046:9 10055:1 10061:1 10083:1 10097:1 10122:1 10170:1 10174:1 10177:1 10184:1 10195:2 10242:2 10252:1 10261:1 10280:1 10297:2 10299:1 10322:2 10337:1 10350:1 10381:1 10383:2 10388:1 10404:1 10417:1 10426:3 10518:1 10526:1 10564:1 10582:1 10623:1 10691:1 10707:1 10725:1 10740:1 10745:1 10758:1 10760:2 10773:1 10786:2 10840:1 10842:1 10860:2 10867:2 10874:1 10882:1 10894:1 10912:1 10929:1 10956:1 10976:1 10990:1 11036:1 11098:1 11111:2 11114:1 11124:1 11143:2 11152:1 11158:1 11167:1 11170:1 11195:1 11197:1 11200:1 11215:1 11217:2 11219:2 11220:1 11246:1 11264:1 11276:3 11279:1 11285:1 11286:1 11293:1 11303:2 11320:1 11347:1 11375:1 11385:1 11456:1 11464:1 11490:1 11503:2 11505:1 11511:1 11535:2 11552:1 11571:2 11617:1 11622:1 11629:1 11636:2 11648:1 11649:1 11732:1 11750:2 11775:1 11812:1 11824:1 11827:1 11834:1 11839:2 11845:2 11851:2 11871:1 11878:1 11881:2 11899:1 11904:1 11930:1 11979:1 11992:1 11996:1 12003:1 12011:1 12043:2 12092:1 12110:1 12163:1 12240:2 12261:2 12281:1 12283:1 12337:1 12338:1 12339:1 12421:1 12444:1 12461:2 12470:1 12510:1 12513:1 12588:1 12597:2 12599:1 12612:1 12613:1 12650:1 12657:1 12664:1 12763:1 12767:1 12790:2 12792:10 12809:1 12813:3 12821:1 12859:3 12884:1 12888:1 12922:1 12927:1 13001:1 13008:1 13024:2 13032:1 13086:1 13100:1 13116:1 13132:1 13141:1 13145:1 13217:1 13239:1 13262:1 13269:1 13280:1 13286:3 13307:1 13313:1 13340:1 13412:1 13417:1 13424:2 13427:1 13437:1 13480:1 13482:1 13491:5 13584:1 13595:1 13626:1 13639:2 13641:2 13647:1 13676:1 13695:1 13700:1 13707:1 13713:1 13716:1 13717:1 13729:1 13732:1 13747:1 13770:1 13772:1 13782:5 13805:1 13808:1 13814:1 13827:2 13859:1 13868:1 13869:1 13873:1 13901:1 13928:1 13935:1 13951:3 13974:1 13988:1 14030:2 14038:2 14059:1 14069:5 14096:1 14147:2 14156:1 14177:3 14232:1 14259:1 14261:2 14361:3 14451:1 14460:2 14466:2 14468:2 14485:1 14486:1 14560:1 14576:1 14592:1 14607:1 14621:1 14625:1 14627:1 14629:1 14634:1 14643:1 14657:1 14659:1 14664:1 14699:10 14705:2 14708:1 14709:1 14714:1 14721:1 14736:1 14786:1 14789:1 14792:2 14800:1 14806:1 14827:1 14847:2 14869:1 14890:1 14900:1 15003:1 15010:1 15070:2 15087:1 15106:1 15109:2 15169:1 15193:2 15197:1 15218:1 15247:1 15257:1 15258:1 15278:1 15299:1 15322:1 15340:1 15386:1 15465:1 15478:1 15482:1 15556:1 15557:1 15584:1 15608:3 15616:2 15690:1 15718:1 15730:1 15742:1 15762:2 15779:1 15796:1 15802:2 15818:2 15827:1 15835:1 15888:1 15890:1 15899:1 15921:4 15961:1 16023:1 16051:1 16060:5 16133:1 16140:1 16165:6 16200:2 16239:1 16264:1 16285:3 16291:2 16292:1 16387:1 16404:1 16413:1 16416:1 16419:1 16457:1 16476:1 16522:1 16527:1 16613:1 16617:1 16631:2 16644:1 16679:1 16692:1 16769:1 16776:1 16797:1 16800:1 16810:1 16811:1 16926:14 16949:1 16951:1 16963:1 16967:2 17020:1 17028:1 17042:1 17047:1 17068:2 17072:2 17103:1 17138:1 17143:1 17144:1 17166:1 17208:1 17213:1 17236:1 17281:1 17361:1 17375:1 17380:1 17383:1 17384:1 17440:1 17450:1 17459:2 17475:1 17484:1 17535:2 17549:2 17560:1 17649:1 17671:2 17731:1 17758:1 17766:2 17787:1 17817:1 17855:2 17860:1 17909:1 17929:1 17930:1 17936:1 17937:1 17964:1 18013:2 18018:1 18026:1 18058:1 18223:1 18245:1 18300:3 18316:1 18377:2 18395:1 18419:1 18447:1 18499:1 18507:1 18516:661 18538:1 18551:1 18566:1 18587:1 18604:1 18638:1 18651:1 18653:1 18678:1 18707:1 18712:1 18724:1 18780:1 18902:1 18952:1 18969:1 18976:1 19014:2 19016:1 19037:1 19083:1 19085:2 19116:2 19120:1 19128:1 19184:1 19230:1 19259:1 19268:1 19282:2 19283:2 19290:1 19315:1 19318:2 19342:1 19377:6 19399:2 19420:2 19428:1 19451:3 19461:1 19469:1 19481:2 19490:2 19491:1 19500:1 19509:1 19561:1 19584:1 19589:1 19609:1 19656:1 19658:1 19697:1 19732:1 19819:1 19823:1 19829:1 19835:1 19851:1 19896:1 19927:1 19929:3 19950:1 19962:1 20029:1 20043:1 20051:2 20099:1 20109:1 20117:1 20132:1 20144:1 20156:1 20211:2 20259:1 20268:1 20311:1 20387:1 20390:1 20460:1 20484:1 20495:1 20499:2 20500:1 20513:2 20541:1 20602:1 20661:1 20664:1 20691:2 20697:1 20702:2 20711:1 20725:1 20748:1 20754:1 20762:2 20767:1 20773:2 20788:1 20789:1 20798:1 20810:1 20853:2 20862:1 20869:2 20878:1 20892:1 20940:1 20942:3 20953:1 20958:1 20994:1 20996:1 21004:1 21021:1 21026:1 21061:1 21078:1 21122:1 21185:1 21202:1 21204:1 21206:2 21237:1 21257:1 21271:1 21286:1 21310:1 21311:1 21313:1 21363:1 21364:1 21369:1 21455:1 21464:2 21508:2 21530:1 21543:1 21570:1 21577:1 21625:2 21658:1 21699:1 21715:2 21719:1 21728:1 21739:1 21748:1 21764:3 21775:1 21791:1 21881:3 21884:1 21896:1 21906:1 21918:1 21924:1 21925:1 21936:1 21947:1 21955:1 21997:1 22028:1 22047:1 22058:1 22062:1 22066:3 22082:2 22095:1 22128:1 22133:1 22161:2 22179:2 22219:1 22235:1 22242:1 22248:2 22310:6 22312:1 22316:1 22321:1 22365:4 22368:1 22370:1 22383:1 22416:1 22418:1 22425:7 22439:1 22456:1 22471:1 22479:1 22481:1 22490:1 22516:1 22543:1 22599:2 22640:1 22671:1 22694:9 22709:1 22713:1 22714:1 22752:1 22757:1 22759:1 22760:1 22770:1 22771:1 22805:1 22809:1 22861:1 22871:1 22874:1 22901:1 23000:1 23074:1 23079:1 23093:1 23095:2 23103:1 23108:1 23111:1 23147:10 23168:1 23199:1 23228:1 23235:1 23242:1 23247:6 23289:1 23307:1 23321:2 23325:1 23329:1 23371:1 23379:1 23381:1 23408:1 23509:2 23543:1 23593:1 23596:1 23622:1 23651:1 23670:1 23740:1 23767:2 23802:1 23817:1 23838:1 23857:1 23890:1 23891:1 23895:1 23941:1 23957:1 23982:1 24008:2 24028:1 24065:1 24067:1 24069:1 24075:1 24092:1 24093:1 24097:1 24114:1 24144:2 24186:3 24213:1 24217:1 24220:1 24225:1 24235:1 24291:1 24379:1 24384:1 24444:1 24493:1 24499:1 24505:1 24536:2 24572:1 24577:1 24620:1 24628:2 24646:1 24653:1 24661:1 24687:1 24757:1 24779:1 24802:1 24803:1 24854:1 24858:1 24859:2 24863:1 24871:2 24911:1 24922:2 24979:1 25025:1 25077:1 25097:1 25100:1 25166:2 25181:1 25205:1 25212:1 25222:1 25227:1 25255:1 25328:2 25351:1 25362:1 25378:1 25383:1 25384:1 25387:1 25415:1 25423:1 25440:1 25451:2 25454:1 25485:1 25499:1 25511:1 25516:2 25546:2 25573:1 25576:2 25585:1 25628:1 25693:1 25707:1 25710:1 25713:2 25718:1 25740:1 25741:1 25766:1 25777:1 25823:1 25844:1 25850:1 25861:1 25874:1 25876:1 25884:2 25895:1 25920:1 25929:1 25944:1 25955:1 25956:1 25989:1 25995:3 26005:2 26018:1 26019:1 26022:5 26023:1 26074:1 26093:2 26122:1 26130:1 26182:1 26202:1 26253:1 26268:1 26272:1 26283:1 26286:1 26333:1 26399:1 26428:1 26440:2 26465:1 26498:1 26525:1 26616:1 26626:1 26630:1 26632:2 26653:1 26654:1 26663:1 26675:3 26703:2 26734:1 26743:2 26744:1 26746:2 26754:1 26774:1 26778:1 26789:2 26794:1 26796:1 26799:1 26813:1 26847:1 26866:1 26899:1 26915:1 26918:3 26923:2 26930:1 26931:1 26945:2 26971:2 27054:1 27064:1 27096:1 27100:2 27130:1 27131:1 27145:1 27150:1 27178:1 27188:1 27206:1 27224:1 27235:1 27236:1 27249:1 27251:1 27254:2 27258:2 27271:2 27276:1 27297:1 27299:2 27311:1 27318:1 27329:1 27347:2 27365:1 27401:1 27405:2 27418:1 27424:1 27451:1 27472:1 27502:1 27504:1 27516:1 27658:2 27659:1 27670:2 27673:2 27689:1 27718:1 27722:1 27727:1 27732:1 27784:2 27802:1 27868:1 27874:1 27898:1 27909:1 27912:1 27950:1 27953:1 27956:1 27969:7 28008:3 28060:1 28080:2 28095:1 28117:3 28123:1 28134:1 28151:1 28152:1 28165:1 28170:1 28177:1 28207:1 28212:1 28214:1 28231:1 28243:2 28258:1 28283:1 28296:1 28392:12 28416:2 28423:2 28424:1 28457:1 28485:2 28490:4 28503:1 28522:1 28546:1 28615:1 28634:1 28647:1 28660:1 28669:1 28690:2 28701:1 28782:1 28785:1 28787:2 28798:1 28814:1 28859:2 28865:1 28875:2 28894:1 28903:1 28954:1 28959:1 28964:1 28976:1 29003:1 29005:1 29027:1 29031:2 29042:4 29063:1 29073:10 29100:1 29139:1 29146:1 29147:2 29183:1 29240:1
2 12:1 13:1 31:2 56:1 75:1 85:2 88:1 89:2 113:1 146:2 166:1 180:1 213:1 228:1 249:1 265:1 271:2 272:1 286:1 287:1 291:1 322:1 359:3 385:1 391:1 392:1 395:1 415:1 425:1 446:1 479:1 501:1 509:1 515:1 544:1 553:1 564:1 607:2 620:1 623:1 644:2 658:11 663:2 667:1 696:1 719:1 728:1 735:1 749:1 783:1 809:1 813:1 815:1 817:2 820:1 822:1 861:2 905:5 908:1 917:4 951:2 960:2 965:1 970:1 976:1 982:2 1006:1 1027:1 1032:1 1055:2 1112:1 1158:1 1160:2 1190:1 1214:10 1223:2 1224:1 1229:2 1256:1 1258:1 1270:1 1279:1 1281:1 1314:1 1356:2 1380:1 1393:1 1397:1 1402:2 1444:1 1452:1 1462:2 1475:1 1502:2 1510:3 1576:2 1598:1 1602:1 1615:1 1636:1 1647:1 1676:1 1685:1 1691:1 1740:2 1745:2 1783:1 1820:1 1827:1 1853:1 1870:1 1871:1 1878:1 1898:1 1921:2 1937:1 1941:2 1947:1 1982:1 1993:1 2022:1 2042:1 2051:1 2053:1 2077:1 2094:1 2123:1 2172:1 2176:1 2196:2 2235:1 2291:1 2299:1 2325:1 2333:1 2334:1 2336:3 2338:2 2339:1 2341:1 2342:1 2347:2 2352:2 2356:2 2362:1 2364:1 2369:1 2372:1 2375:1 2382:1 2406:1 2421:1 2430:1 2457:1 2460:1 2479:1 2494:1 2503:1 2514:1 2522:2 2533:1 2550:2 2571:1 2681:1 2730:1 2735:1 2736:2 2751:2 2758:1 2775:1 2787:1 2804:1 2812:2 2813:1 2822:2 2826:1 2883:2 2889:1 2892:1 2901:1 2982:4 2984:11 2986:1 2990:1 2991:2 2998:2 3002:1 3018:1 3023:2 3032:1 3039:3 3053:1 3070:1 3091:1 3133:2 3281:1 3316:1 3340:1 3351:1 3354:1 3393:1 3482:1 3506:1 3540:1 3550:1 3552:1 3632:1 3642:1 3697:1 3704:1 3734:1 3758:1 3775:1 3779:1 3831:2 3833:1 3872:1 3877:1 3884:1 3907:1 3909:1 3938:1 3940:1 3946:1 3985:1 3990:10 3991:2 4052:1 4056:1 4066:1 4072:1 4079:1 4081:2 4096:2 4108:1 4113:1 4117:4 4132:1 4171:1 4196:1 4208:2 4216:1 4260:1 4262:1 4264:1 4277:1 4309:2 4310:1 4312:2 4317:1 4319:1 4331:1 4357:1 4434:10 4443:1 4446:1 4452:2 4477:1 4535:6 4553:1 4590:2 4604:2 4610:1 4618:1 4622:1 4648:1 4668:2 4774:1 4790:1 4811:1 4812:1 4818:1 4826:1 4903:1 4908:1 4909:1 4916:1 4920:1 4942:1 4943:1 4977:1 4983:1 4997:1 4998:1 5012:7 5013:2 5046:1 5053:1 5138:2 5140:1 5149:1 5159:2 5160:1 5161:1 5167:2 5175:2 5183:1 5190:1 5192:2 5194:2 5195:1 5205:1 5230:1 5268:1 5427:1 5438:1 5439:1 5486:1 5534:1 5574:1 5577:1 5579:1 5583:1 5603:1 5626:1 5630:2 5724:1 5784:1 5790:1 5794:1 5807:1 5833:1 5908:2 5921:1 5926:1 5939:1 6027:1 6064:1 6065:1 6076:1 6079:1 6097:1 6118:1 6149:1 6203:1 6208:2 6211:1 6247:1 6296:1 6307:1 6311:1 6312:1 6313:1 6324:1 6325:2 6345:1 6356:1 6391:1 6399:1 6408:3 6428:1 6479:1 6486:1 6500:1 6510:1 6523:3 6534:3 6539:1 6545:1 6546:1 6550:1 6552:4 6581:1 6600:2 6619:1 6657:1 6667:1 6674:2 6679:2 6736:1 6746:1 6763:1 6769:1 6772:1 6785:1 6792:1 6853:1 6899:1 6901:1 6904:1 6908:2 6927:1 6960:1 7030:1 7063:2 7083:1 7101:1 7102:1 7114:1 7178:1 7184:1 7187:1 7203:1 7217:3 7269:1 7301:1 7332:1 7369:1 7398:1 7406:1 7413:1 7442:1 7485:1 7495:1 7571:1 7596:2 7629:3 7632:1 7664:2 7679:1 7725:1 7748:2 7779:1 7787:1 7815:2 7816:4 7821:1 7833:1 7835:4 7864:2 7868:1 7878:17 7882:1 7883:1 7886:2 7897:4 7900:2 7903:1 7908:1 7911:1 7933:1 7949:1 7985:2 7996:1 8013:1 8039:2 8054:2 8071:1 8075:1 8077:1 8105:1 8109:3 8159:1 8162:1 8300:1 8312:1 8351:1 8364:1 8376:1 8377:11 8384:1 8392:1 8410:4 8411:2 8428:1 8443:1 8449:2 8475:1 8480:1 8492:13 8501:1 8588:1 8596:1 8645:1 8659:2 8667:1 8671:1 8677:1 8683:1 8687:1 8693:2 8694:1 8720:1 8750:1 8760:2 8762:1 8763:1 8768:1 8783:1 8822:1 8832:1 8836:1 8841:1 8845:1 8862:2 8923:1 8987:1 9014:1 9052:1 9057:1 9059:1 9061:1 9086:1 9090:2 9110:1 9112:1 9129:1 9138:1 9139:1 9196:1 9236:1 9238:1 9247:1 9320:2 9343:1 9378:2 9382:2 9384:1 9391:1 9393:2 9394:1 9404:1 9429:1 9435:1 9445:1 9447:2 9449:1 9456:1 9473:2 9483:2 9490:2 9496:1 9546:1 9558:1 9563:1 9564:2 9580:1 9616:1 9660:1 9675:1 9677:2 9678:4 9701:1 9706:1 9717:1 9719:2 9738:1 9779:1 9782:1 9802:1 9803:1 9804:1 9855:1 9856:1 9860:1 9905:3 9916:1 9921:1 9924:2 9936:1 10028:1 10046:10 10055:1 10061:1 10083:1 10097:1 10122:1 10134:1 10170:1 10174:1 10177:1 10184:1 10195:2 10242:2 10252:1 10260:1 10261:1 10280:1 10297:2 10299:1 10322:2 10337:1 10350:1 10359:1 10381:1 10383:2 10388:1 10404:1 10417:1 10426:3 10518:1 10526:1 10564:1 10582:1 10623:1 10624:1 10691:1 10707:1 10725:1 10740:1 10745:1 10758:1 10760:2 10773:1 10786:2 10840:1 10842:1 10860:3 10864:1 10867:2 10874:1 10882:1 10894:1 10912:1 10929:2 10956:1 10976:1 10990:1 11036:1 11098:1 11111:2 11114:2 11124:1 11143:2 11152:1 11158:1 11167:1 11170:1 11195:1 11197:2 11200:1 11215:1 11217:2 11219:2 11220:1 11246:1 11264:1 11276:3 11279:1 11285:1 11286:1 11293:1 11303:2 11311:1 11320:1 11347:1 11375:1 11385:1 11456:1 11464:1 11490:1 11503:2 11505:1 11511:1 11532:1 11535:2 11552:1 11571:2 11617:1 11622:1 11629:1 11636:3 11648:1 11649:1 11732:1 11750:2 11775:1 11812:1 11824:1 11827:1 11834:1 11839:3 11845:2 11851:3 11871:1 11878:1 11881:2 11899:1 11904:1 11930:1 11979:1 11992:1 11996:1 12003:2 12011:1 12043:2 12092:1 12110:1 12163:1 12240:2 12261:2 12281:1 12283:1 12337:1 12338:1 12339:1 12364:1 12421:1 12444:1 12461:2 12470:1 12510:1 12513:1 12588:1 12597:2 12599:1 12612:1 12613:1 12648:1 12650:1 12657:1 12664:1 12763:1 12767:1 12790:2 12792:11 12800:1 12809:1 12813:3 12821:1 12859:3 12873:1 12884:1 12888:1 12922:1 12927:1 13001:1 13008:1 13024:2 13032:1 13086:1 13100:1 13116:1 13132:1 13141:2 13145:1 13217:1 13239:1 13262:1 13269:1 13280:1 13286:4 13307:1 13313:1 13340:1 13412:1 13417:1 13424:2 13427:1 13430:1 13437:1 13480:1 13482:1 13491:5 13495:1 13584:1 13585:1 13595:1 13626:1 13639:2 13641:2 13647:1 13676:1 13695:1 13700:1 13707:1 13713:1 13716:1 13717:1 13729:1 13732:1 13747:1 13770:1 13772:1 13782:5 13805:1 13808:1 13814:1 13827:2 13859:1 13868:1 13869:1 13873:1 13901:1 13928:1 13935:1 13951:3 13974:1 13988:1 13998:1 14030:2 14038:2 14059:1 14069:5 14072:1 14096:1 14147:2 14156:1 14177:3 14232:1 14259:1 14261:2 14361:3 14451:1 14460:2 14466:2 14468:2 14485:1 14486:1 14560:1 14576:1 14592:1 14607:1 14621:1 14625:1 14627:1 14629:1 14634:1 14643:1 14657:1 14659:1 14664:1 14699:11 14705:2 14708:1 14709:1 14714:1 14721:1 14736:1 14786:1 14789:1 14792:3 14800:1 14806:1 14827:1 14847:2 14869:1 14890:1 14900:1 15003:1 15010:1 15031:1 15054:1 15070:2 15087:1 15106:1 15109:2 15169:1 15193:2 15197:1 15218:1 15237:2 15245:1 15247:1 15257:1 15258:1 15278:1 15299:1 15322:1 15340:1 15386:1 15462:2 15465:1 15478:1 15482:1 15556:1 15557:1 15584:1 15608:3 15616:2 15690:1 15718:1 15730:1 15742:1 15762:2 15779:1 15783:1 15796:1 15802:2 15818:2 15827:1 15835:1 15888:1 15890:1 15899:1 15921:4 15961:1 16023:1 16051:1 16060:5 16096:1 16105:1 16133:1 16140:1 16165:6 16200:2 16239:1 16264:1 16285:3 16291:2 16292:1 16387:1 16404:1 16413:1 16416:1 16419:1 16457:1 16476:1 16522:1 16527:1 16613:1 16617:1 16631:2 16644:1 16679:1 16692:1 16751:1 16769:1 16773:1 16776:1 16797:1 16800:1 16810:1 16811:1 16926:15 16949:1 16951:1 16963:1 16967:2 17020:1 17028:1 17042:1 17047:1 17068:2 17072:2 17103:1 17138:1 17143:1 17144:1 17166:1 17208:1 17213:1 17234:1 17236:1 17281:1 17361:1 17375:1 17380:1 17383:1 17384:1 17440:1 17450:1 17459:2 17475:1 17484:1 17535:2 17549:2 17555:1 17560:1 17632:1 17637:1 17649:1 17662:1 17671:2 17731:1 17758:2 17766:2 17787:1 17817:1 17855:2 17860:1 17909:1 17929:1 17930:1 17936:1 17937:1 17964:1 18013:2 18018:1 18026:1 18058:1 18146:1 18223:1 18234:1 18245:1 18300:3 18316:1 18332:1 18377:2 18395:1 18419:1 18447:1 18462:1 18499:1 18507:1 18516:704 18538:1 18551:1 18566:1 18587:1 18604:1 18638:1 18651:1 18653:1 18678:1 18707:1 18712:1 18724:1 18780:1 18863:1 18864:1 18902:1 18952:1 18969:1 18976:1 19014:2 19016:1 19037:1 19083:1 19085:2 19116:2 19120:1 19128:1 19184:1 19230:1 19259:1 19268:1 19282:2 19283:2 19290:1 19315:1 19318:2 19342:2 19377:6 19399:2 19420:2 19428:1 19451:3 19461:1 19469:1 19481:2 19490:2 19491:1 19500:1 19509:1 19558:1 19561:1 19584:2 19589:1 19609:1 19656:1 19658:1 19697:1 19732:1 19819:1 19822:1 19823:1 19829:1 19835:1 19851:1 19896:1 19927:1 19929:3 19950:1 19962:1 19995:1 20029:1 20043:1 20051:3 20099:1 20109:1 20117:1 20132:1 20144:1 20156:1 20211:2 20223:1 20259:1 20268:1 20311:1 20387:1 20390:1 20460:1 20484:1 20495:1 20499:2 20500:1 20513:2 20541:1 20602:1 20630:1 20661:1 20664:1 20691:2 20697:1 20702:2 20711:1 20720:1 20725:1 20748:1 20754:1 20762:2 20767:1 20773:3 20788:1 20789:1 20798:1 20808:1 20810:1 20853:2 20862:1 20869:2 20878:1 20892:1 20940:1 20942:3 20953:1 20958:1 20994:1 20996:1 21004:1 21021:1 21026:1 21061:1 21078:1 21122:1 21185:1 21202:1 21204:1 21206:2 21237:1 21257:1 21271:2 21286:1 21310:1 21311:1 21313:1 21351:1 21363:1 21364:1 21369:2 21455:1 21464:2 21508:2 21530:1 21543:1 21558:1 21570:1 21577:1 21625:2 21658:1 21699:1 21705:1 21712:1 21715:2 21719:1 21728:1 21739:1 21748:1 21764:4 21775:1 21791:1 21879:1 21881:3 21884:1 21895:1 21896:1 21906:1 21918:1 21924:1 21925:1 21936:1 21947:1 21955:1 21997:1 22028:1 22047:1 22058:2 22062:1 22066:3 22082:2 22095:1 22128:1 22133:1 22161:2 22179:2 22219:1 22235:1 22242:1 22248:2 22267:1 22310:6 22312:1 22316:1 22321:1 22365:4 22368:1 22370:1 22383:1 22416:1 22418:1 22425:7 22439:1 22456:1 22471:1 22479:1 22481:1 22490:1 22516:1 22543:1 22555:1 22599:2 22640:1 22671:1 22694:10 22709:1 22713:1 22714:2 22752:1 22757:1 22759:1 22760:1 22770:1 22771:1 22805:1 22809:1 22842:1 22852:1 22861:1 22871:1 22874:1 22901:1 23000:1 23074:1 23079:1 23093:1 23095:2 23103:1 23108:1 23111:1 23147:11 23168:1 23199:1 23228:1 23235:1 23242:1 23247:6 23289:1 23307:1 23321:2 23325:1 23329:1 23371:1 23379:1 23381:1 23408:1 23509:2 23543:1 23593:1 23596:1 23622:1 23651:1 23664:1 23670:1 23740:1 23767:2 23772:1 23802:1 23817:1 23838:1 23857:1 23890:1 23891:1 23895:1 23941:1 23957:1 23982:1 24008:2 24028:1 24065:1 24067:1 24069:1 24075:1 24080:1 24092:1 24093:1 24097:2 24105:1 24114:1 24144:2 24186:3 24213:1 24217:1 24220:1 24225:1 24235:1 24291:1 24379:1 24384:1 24444:1 24484:1 24493:1 24499:2 24505:1 24536:2 24572:1 24577:2 24620:1 24628:2 24646:1 24653:1 24661:1 24687:1 24757:1 24779:1 24797:1 24802:1 24803:1 24854:1 24858:1 24859:2 24863:1 24871:2 24911:1 24922:2 24979:1 25025:1 25077:1 25097:1 25100:1 25107:1 25166:2 25181:1 25205:1 25212:1 25222:1 25227:1 25255:1 25310:1 25328:2 25351:1 25362:1 25378:1 25383:1 25384:1 25387:1 25415:1 25423:1 25440:1 25451:2 25454:1 25485:1 25499:1 25511:1 25516:2 25546:2 25573:1 25576:2 25585:1 25628:1 25693:1 25707:1 25710:1 25713:2 25718:1 25740:1 25741:1 25766:1 25777:1 25809:1 25823:1 25844:1 25850:1 25861:1 25874:1 25876:1 25884:2 25895:1 25920:1 25929:1 25944:1 25955:1 25956:1 25989:1 25995:3 26005:2 26018:1 26019:1 26022:5 26023:1 26074:1 26093:3 26122:1 26130:1 26182:1 26202:1 26253:1 26268:1 26272:1 26283:1 26286:1 26333:1 26399:1 26428:1 26440:2 26450:1 26465:1 26498:1 26525:1 26616:1 26626:1 26630:1 26632:4 26653:1 26654:2 26663:1 26675:3 26703:2 26734:1 26743:2 26744:1 26746:2 26754:1 26774:1 26778:1 26789:3 26794:1 26796:1 26799:1 26813:1 26847:1 26866:1 26899:1 26911:1 26915:1 26918:3 26923:2 26930:1 26931:1 26945:2 26971:2 27054:1 27064:1 27096:1 27100:2 27130:1 27131:1 27145:1 27150:1 27178:1 27188:1 27196:1 27206:1 27224:1 27228:1 27235:1 27236:1 27249:1 27251:1 27254:2 27258:2 27271:2 27276:2 27297:1 27299:2 27311:1 27318:1 27329:1 27347:2 27365:2 27401:1 27405:2 27418:1 27424:1 27451:1 27472:1 27502:1 27504:1 27516:1 27556:1 27658:2 27659:1 27670:2 27673:3 27689:1 27718:1 27722:1 27727:1 27732:1 27784:2 27802:2 27868:1 27874:1 27898:1 27909:1 27912:1 27950:1 27953:1 27956:1 27969:7 28008:3 28060:1 28080:2 28095:1 28117:3 28123:1 28134:1 28151:1 28152:1 28165:2 28170:1 28177:1 28207:1 28212:1 28214:1 28222:1 28231:1 28243:2 28258:1 28283:1 28296:1 28392:13 28416:2 28417:1 28423:3 28424:1 28457:1 28485:2 28490:4 28503:1 28522:1 28546:1 28615:1 28634:1 28635:1 28647:1 28660:1 28669:1 28690:2 28701:1 28782:1 28785:1 28787:2 28798:1 28814:1 28859:2 28865:1 28875:2 28894:1 28903:1 28954:1 28959:1 28964:1 28976:1 29003:1 29005:1 29027:1 29031:2 29042:4 29063:2 29073:11 29100:1 29139:1 29146:1 29147:2 29183:1 29240:1
2 12:1 13:1 31:2 56:1 75:1 85:2 88:1 89:2 113:1 146:2 154:1 166:1 180:1 213:1 228:1 249:1 265:1 271:2 272:1 286:1 287:1 291:1 322:1 359:3 385:1 391:1 392:1 395:1 415:1 425:1 446:1 452:1 479:1 501:1 509:1 515:1 544:1 553:1 564:1 607:2 620:1 623:1 644:2 658:12 663:2 667:1 686:1 696:1 719:1 728:1 735:1 749:1 783:1 809:1 813:1 815:1 817:2 820:1 822:1 861:2 905:6 908:1 917:4 951:2 960:2 964:1 965:1 970:1 976:1 982:2 1006:1 1027:1 1029:1 1032:1 1055:2 1099:1 1112:1 1158:1 1160:2 1190:1 1214:11 1223:2 1224:1 1229:2 1256:1 1258:1 1270:1 1279:1 1281:1 1314:1 1356:2 1380:1 1393:1 1397:1 1402:2 1444:1 1452:2 1462:2 1475:1 1502:2 1510:3 1576:2 1598:1 1602:1 1615:1 1636:1 1647:1 1676:1 1685:1 1691:1 1740:2 1745:3 1783:1 1820:1 1827:1 1842:1 1853:1 1870:1 1871:1 1878:1 1895:1 1898:1 1921:2 1937:1 1941:2 1947:2 1959:1 1982:1 1993:1 2022:2 2042:1 2051:1 2053:1 2077:1 2094:1 2123:1 2172:1 2176:1 2196:3 2235:1 2291:1 2299:1 2325:1 2333:1 2334:1 2336:3 2338:2 2339:1 2341:1 2342:3 2347:2 2352:2 2356:3 2362:1 2364:1 2369:1 2372:1 2375:1 2382:1 2406:1 2421:2 2430:2 2457:1 2460:1 2479:1 2494:1 2503:1 2514:1 2522:2 2533:1 2539:1 2550:2 2571:1 2646:2 2681:1 2730:1 2735:1 2736:2 2751:2 2758:1 2775:1 2787:1 2804:1 2812:2 2813:1 2822:2 2826:1 2877:1 2883:2 2889:1 2892:1 2901:1 2982:7 2984:12 2986:1 2990:1 2991:2 2998:2 3002:1 3018:1 3023:2 3029:1 3032:1 3039:3 3049:1 3053:1 3070:1 3091:1 3133:2 3281:1 3316:1 3340:1 3351:1 3354:2 3393:1 3482:1 3502:1 3506:1 3540:1 3550:1 3552:1 3632:1 3642:1 3697:1 3704:1 3734:1 3758:1 3775:1 3779:1 3831:2 3833:1 3872:1 3877:1 3884:1 3907:1 3909:1 3938:1 3940:1 3946:1 3985:1 3990:11 3991:2 4012:1 4052:1 4056:1 4066:1 4072:1 4079:1 4081:2 4096:2 4108:1 4113:1 4117:4 4132:1 4171:1 4196:1 4208:2 4216:1 4260:1 4262:1 4264:1 4277:1 4309:2 4310:1 4312:2 4317:1 4319:1 4331:1 4357:1 4434:11 4443:1 4446:1 4452:3 4466:1 4477:1 4535:6 4553:1 4590:2 4604:2 4610:1 4618:1 4622:1 4648:1 4668:3 4774:1 4790:1 4811:1 4812:1 4818:3 4826:1 4898:1 4903:1 4908:2 4909:1 4916:1 4920:1 4942:1 4943:1 4977:1 4983:1 4997:1 4998:1 5012:7 5013:2 5046:1 5053:2 5138:2 5140:1 5149:1 5159:2 5160:1 5161:1 5167:3 5174:1 5175:2 5183:1 5190:2 5192:2 5194:2 5195:1 5205:1 5230:1 5268:1 5427:1 5438:1 5439:2 5486:1 5534:1 5574:1 5577:1 5579:1 5583:1 5603:1 5626:1 5630:2 5716:1 5724:1 5741:1 5784:1 5790:1 5794:1 5807:1 5833:1 5908:2 5921:1 5926:1 5939:1 6027:1 6064:1 6065:1 6076:1 6079:1 6097:1 6118:1 6149:1 6195:1 6203:1 6208:2 6211:1 6247:1 6296:1 6307:1 6311:1 6312:1 6313:1 6324:1 6325:2 6345:1 6356:1 6391:1 6399:1 6408:3 6428:1 6456:1 6479:2 6486:1 6500:1 6510:1 6523:3 6528:1 6534:3 6539:1 6545:1 6546:1 6550:1 6552:5 6581:1 6600:2 6619:1 6657:1 6667:1 6674:2 6679:2 6736:1 6746:1 6763:1 6769:1 6772:1 6785:1 6792:1 6795:1 6820:1 6831:1 6853:1 6872:1 6899:1 6901:1 6904:1 6908:3 6927:1 6939:1 6960:1 6962:1 7030:1 7063:2 7083:1 7101:1 7102:1 7114:1 7178:1 7184:1 7187:1 7203:1 7217:3 7269:1 7287:2 7301:1 7332:1 7369:2 7398:1 7406:1 7413:1 7442:1 7485:1 7495:1 7496:1 7571:1 7596:2 7629:4 7632:1 7664:2 7679:1 7725:1 7748:2 7779:1 7787:1 7815:3 7816:5 7821:1 7833:1 7835:4 7864:2 7868:1 7878:19 7882:1 7883:1 7886:2 7890:1 7897:7 7900:2 7903:1 7908:1 7911:1 7933:1 7941:1 7949:1 7985:2 7996:1 8013:1 8039:2 8054:2 8071:1 8075:1 8077:1 8105:1 8109:3 8159:1 8162:1 8196:1 8253:1 8300:1 8312:1 8351:1 8364:1 8376:1 8377:12 8384:1 8392:1 8410:5 8411:2 8428:1 8443:1 8449:2 8475:1 8480:1 8492:14 8501:1 8588:1 8596:1 8645:1 8659:2 8667:1 8671:1 8677:1 8683:1 8687:1 8693:2 8694:1 8713:1 8720:1 8750:1 8760:2 8762:1 8763:1 8768:1 8778:1 8779:2 8782:1 8783:1 8792:1 8822:1 8832:1 8836:1 8841:1 8845:1 8862:2 8923:1 8931:1 8987:2 9014:1 9052:1 9057:1 9059:1 9061:1 9086:1 9090:2 9110:1 9112:1 9129:1 9138:1 9139:1 9196:1 9236:1 9238:2 9247:1 9320:2 9343:1 9378:2 9382:2 9384:1 9391:1 9393:2 9394:1 9404:1 9408:1 9429:1 9435:1 9445:1 9447:2 9449:1 9456:1 9473:2 9483:2 9490:2 9496:1 9546:1 9558:1 9563:1 9564:2 9580:1 9611:1 9616:1 9623:1 9642:1 9660:1 9675:1 9677:2 9678:4 9701:2 9706:1 9717:1 9719:2 9738:1 9779:1 9782:1 9802:1 9803:1 9804:1 9855:1 9856:1 9860:1 9905:4 9916:1 9921:1 9924:2 9936:1 10028:1 10046:11 10055:1 10061:1 10083:1 10097:1 10122:1 10134:1 10170:1 10174:1 10177:2 10184:1 10195:2 10229:1 10242:2 10252:1 10260:1 10261:1 10280:1 10284:1 10297:2 10299:1 10322:2 10337:1 10350:1 10359:1 10381:1 10383:2 10388:1 10404:1 10417:1 10426:3 10518:1 10526:1 10564:1 10582:1 10604:1 10623:1 10624:2 10641:1 10691:1 10707:1 10725:1 10740:2 10745:1 10758:1 10760:2 10773:1 10786:2 10840:1 10842:1 10860:3 10864:1 10867:2 10874:1 10882:1 10894:1 10912:1 10923:1 10929:3 10956:1 10976:1 10990:1 11036:1 11098:1 11111:2 11114:3 11124:1 11143:2 11152:1 11158:1 11167:1 11170:1 11195:1 11197:3 11200:1 11203:1 11215:1 11217:2 11219:2 11220:1 11246:1 11264:1 11276:3 11279:1 11285:1 11286:1 11293:1 11303:2 11311:1 11320:1 11347:1 11375:1 11385:1 11390:1 11404:1 11456:1 11464:1 11490:1 11503:3 11505:1 11508:1 11511:1 11518:1 11532:1 11535:2 11552:1 11571:2 11617:1 11622:1 11629:1 11636:4 11648:1 11649:1 11695:1 11732:1 11750:2 11775:1 11812:1 11824:1 11827:1 11834:1 11838:1 11839:3 11845:2 11851:3 11871:1 11878:1 11881:2 11891:1 11899:1 11900:1 11904:1 11930:1 11979:1 11992:1 11996:1 12003:2 12011:1 12043:2 12090:1 12092:1 12110:1 12163:1 12240:3 12261:2 12281:1 12283:1 12337:1 12338:1 12339:1 12364:1 12421:1 12444:1 12460:1 12461:2 12470:1 12510:1 12513:2 12522:1 12588:1 12597:2 12599:1 12612:1 12613:1 12648:1 12650:1 12657:1 12664:1 12763:1 12767:1 12790:2 12792:12 12800:1 12809:1 12813:4 12821:1 12859:3 12873:1 12884:1 12888:1 12922:1 12927:1 12964:1 12967:1 13001:1 13008:1 13024:2 13032:1 13086:1 13100:1 13116:1 13132:1 13141:2 13145:1 13217:1 13239:1 13262:1 13269:1 13280:1 13286:4 13307:1 13313:1 13340:1 13412:1 13417:1 13418:1 13424:2 13427:1 13430:1 13437:1 13480:1 13482:1 13491:6 13495:1 13584:1 13585:1 13595:1 13626:1 13639:3 13641:2 13647:1 13676:1 13695:1 13700:1 13707:1 13713:1 13716:1 13717:1 13729:1 13732:1 13747:1 13770:1 13772:1 13782:5 13805:1 13808:1 13814:1 13827:2 13859:1 13868:1 13869:1 13873:1 13901:1 13928:1 13935:1 13951:3 13955:1 13974:1 13988:1 13998:1 14030:2 14038:2 14057:1 14059:1 14069:5 14072:2 14096:1 14147:2 14156:1 14177:3 14232:1 14241:1 14259:1 14261:2 14314:1 14361:4 14451:1 14460:2 14466:2 14468:2 14485:1 14486:1 14560:1 14576:1 14592:1 14607:1 14621:1 14625:1 14627:1 14629:1 14634:1 14643:1 14653:1 14657:1 14659:1 14664:1 14688:1 14699:12 14705:2 14708:1 14709:1 14714:1 14721:1 14736:1 14786:1 14789:1 14792:3 14800:1 14806:1 14827:1 14847:2 14869:1 14890:1 14900:1 14993:1 15003:1 15010:1 15031:1 15054:1 15070:2 15087:1 15106:1 15109:2 15169:1 15193:2 15197:1 15218:1 15237:2 15245:1 15247:1 15257:1 15258:1 15278:1 15299:1 15322:1 15340:2 15386:1 15462:2 15465:1 15478:1 15482:1 15555:1 15556:1 15557:1 15584:1 15608:3 15616:2 15690:1 15718:1 15730:1 15742:1 15762:2 15779:1 15783:1 15796:1 15802:2 15805:1 15818:2 15827:1 15835:1 15888:1 15890:1 15899:1 15921:4 15961:1 16023:1 16038:1 16051:1 16060:6 16062:1 16096:1 16105:1 16133:1 16140:1 16165:6 16200:2 16239:1 16264:1 16271:1 16285:4 16291:3 16292:1 16304:1 16357:1 16387:1 16404:1 16413:1 16416:1 16419:1 16455:1 16457:1 16476:1 16522:1 16527:1 16613:1 16617:1 16631:2 16644:1 16679:1 16692:1 16751:1 16769:1 16773:2 16776:1 16797:1 16800:1 16810:1 16811:2 16822:1 16926:16 16933:1 16949:1 16951:1 16963:1 16967:2 17020:1 17028:1 17042:1 17047:1 17068:2 17072:2 17083:1 17103:1 17138:1 17143:1 17144:1 17166:1 17208:1 17213:1 17234:1 17236:2 17281:1 17361:1 17375:1 17380:1 17383:1 17384:1 17440:1 17450:1 17459:2 17475:1 17484:1 17535:2 17549:2 17555:1 17560:1 17632:2 17637:2 17649:1 17662:1 17671:2 17727:1 17731:1 17758:2 17766:2 17787:1 17812:1 17817:1 17855:2 17860:1 17909:1 17929:1 17930:1 17936:1 17937:1 17964:1 18013:3 18018:1 18026:1 18058:1 18100:1 18146:1 18223:1 18234:1 18245:1 18300:3 18316:1 18332:1 18374:1 18377:2 18395:1 18419:1 18447:1 18462:1 18499:1 18507:1 18516:763 18538:1 18551:1 18566:1 18587:1 18604:1 18638:1 18648:1 18651:1 18653:1 18678:1 18707:1 18712:1 18724:1 18780:1 18863:1 18864:1 18902:1 18952:1 18969:1 18976:2 18986:1 19014:2 19016:1 19037:1 19083:1 19085:2 19116:2 19120:1 19128:1 19184:1 19230:1 19259:1 19268:1 19282:2 19283:2 19290:1 19315:1 19318:2 19342:2 19377:6 19384:1 19399:2 19420:2 19428:1 19451:3 19461:2 19469:1 19481:2 19490:2 19491:1 19500:1 19509:1 19558:1 19561:1 19584:2 19589:1 19609:1 19656:1 19658:1 19697:1 19732:1 19819:1 19822:1 19823:1 19829:1 19835:1 19851:1 19896:1 19927:1 19929:3 19937:1 19950:1 19962:1 19986:1 19992:1 19995:1 20029:1 20030:2 20043:1 20051:3 20099:1 20109:1 20117:1 20123:1 20132:1 20144:1 20156:1 20162:1 20199:1 20211:2 20223:1 20258:1 20259:1 20268:1 20311:1 20387:1 20390:1 20451:1 20460:1 20484:1 20495:1 20499:2 20500:1 20513:2 20541:1 20602:1 20630:1 20661:1 20664:1 20691:2 20697:1 20702:2 20711:1 20720:1 20725:1 20748:1 20754:1 20762:2 20767:1 20773:3 20788:1 20789:1 20798:1 20808:1 20810:1 20853:2 20862:1 20869:2 20878:1 20892:2 20940:1 20942:3 20953:1 20958:1 20994:1 20996:1 21004:1 21021:1 21026:1 21061:1 21078:1 21122:1 21185:1 21202:1 21204:1 21206:2 21237:1 21257:1 21271:2 21285:1 21286:1 21310:1 21311:1 21313:1 21351:1 21363:1 21364:1 21369:2 21414:1 21455:1 21464:2 21508:2 21530:1 21543:1 21558:2 21570:1 21574:1 21577:1 21625:2 21658:1 21699:1 21705:2 21712:1 21715:2 21719:1 21728:2 21739:1 21748:1 21764:5 21775:1 21791:1 21835:1 21843:1 21879:1 21881:4 21884:1 21895:1 21896:1 21906:1 21908:1 21918:1 21923:1 21924:2 21925:1 21936:1 21947:1 21955:1 21997:1 22000:1 22028:1 22047:1 22058:2 22062:1 22066:3 22082:2 22095:1 22114:1 22128:1 22133:1 22161:2 22179:2 22214:1 22219:1 22235:1 22242:1 22248:4 22267:2 22310:6 22312:1 22316:1 22321:1 22365:4 22368:1 22370:1 22383:1 22416:1 22418:1 22425:7 22439:1 22456:1 22471:1 22479:1 22481:1 22490:1 22516:1 22543:1 22555:2 22599:2 22640:1 22671:1 22694:11 22709:1 22713:1 22714:2 22752:1 22757:1 22759:1 22760:1 22770:1 22771:1 22805:1 22809:1 22842:1 22852:2 22861:1 22871:2 22874:1 22901:1 23000:1 23074:1 23079:1 23083:1 23093:1 23095:2 23103:1 23108:1 23111:1 23147:12 23168:1 23199:1 23228:1 23235:1 23242:1 23247:6 23289:1 23307:1 23321:2 23325:1 23329:1 23358:1 23371:1 23379:2 23381:1 23408:1 23509:2 23525:1 23543:1 23593:1 23596:1 23617:1 23622:1 23651:2 23664:1 23670:1 23740:1 23767:2 23772:1 23802:1 23817:1 23838:1 23857:1 23890:1 23891:1 23895:1 23915:1 23941:1 23957:1 23982:1 24008:2 24028:2 24065:1 24067:1 24069:1 24075:1 24080:1 24092:1 24093:2 24097:2 24105:1 24114:1 24144:2 24186:4 24213:1 24217:1 24220:1 24225:1 24235:1 24291:1 24334:1 24379:1 24384:1 24388:2 24420:1 24444:1 24480:1 24484:1 24493:1 24499:2 24505:1 24536:2 24572:1 24577:2 24620:1 24623:1 24628:2 24646:1 24653:1 24661:1 24687:1 24711:1 24757:1 24779:1 24797:1 24802:1 24803:1 24815:1 24854:1 24858:1 24859:2 24863:1 24871:2 24911:1 24922:2 24943:1 24979:1 25025:1 25075:1 25077:1 25097:1 25100:2 25107:1 25166:2 25181:1 25205:1 25212:1 25222:1 25227:1 25255:1 25283:1 25310:1 25328:2 25351:1 25362:1 25378:1 25383:1 25384:1 25387:1 25402:1 25415:1 25423:1 25440:1 25451:2 25454:1 25485:1 25499:1 25511:1 25516:2 25546:2 25573:1 25576:4 25585:2 25628:1 25693:1 25705:1 25707:1 25710:1 25713:2 25718:1 25740:1 25741:1 25766:1 25777:1 25809:1 25823:1 25832:1 25844:1 25850:1 25861:1 25874:1 25876:1 25884:2 25895:1 25920:1 25929:1 25944:1 25955:1 25956:1 25989:1 25995:3 26005:2 26018:1 26019:1 26022:5 26023:1 26074:1 26093:3 26119:1 26122:1 26130:1 26182:1 26202:1 26253:2 26268:1 26272:1 26283:1 26286:1 26333:1 26399:1 26428:1 26429:1 26440:2 26450:1 26465:1 26498:1 26509:1 26525:1 26597:1 26616:1 26626:1 26630:1 26632:4 26653:1 26654:2 26663:1 26675:3 26691:1 26703:2 26734:1 26743:2 26744:1 26746:2 26754:1 26774:1 26778:1 26789:3 26794:1 26796:1 26799:1 26813:1 26847:1 26866:1 26899:1 26911:1 26915:1 26918:3 26923:2 26930:1 26931:1 26945:2 26971:2 27054:1 27064:2 27082:1 27096:1 27100:2 27130:1 27131:1 27145:1 27150:1 27178:1 27188:1 27196:1 27206:1 27224:1 27228:1 27235:1 27236:1 27249:1 27251:2 27254:2 27258:2 27271:2 27276:2 27297:1 27299:2 27311:1 27318:1 27320:1 27329:1 27347:3 27365:2 27401:1 27405:2 27418:1 27424:1 27451:1 27472:1 27502:1 27504:1 27516:1 27556:1 27658:2 27659:2 27670:2 27673:3 27689:1 27718:1 27722:1 27727:1 27732:1 27784:2 27802:2 27868:1 27874:1 27898:1 27909:1 27912:1 27950:1 27953:1 27956:1 27969:11 28008:4 28060:1 28080:2 28095:1 28117:4 28123:2 28134:1 28151:1 28152:1 28165:3 28170:1 28177:1 28207:1 28212:1 28214:1 28222:1 28231:1 28243:2 28258:1 28283:1 28296:1 28392:14 28416:2 28417:1 28423:3 28424:1 28457:1 28485:2 28490:4 28503:1 28522:1 28545:1 28546:1 28610:1 28615:2 28634:1 28635:1 28647:1 28660:1 28669:1 28690:2 28701:1 28710:1 28782:1 28785:1 28787:2 28796:1 28798:1 28814:1 28859:2 28865:1 28875:2 28894:1 28903:1 28954:1 28959:1 28964:1 28976:1 29003:1 29005:1 29027:1 29031:2 29042:4 29063:2 29073:12 29100:1 29139:1 29146:2 29147:2 29183:1 29240:1
2 12:1 13:1 31:2 55:1 56:1 75:1 85:2 88:1 89:2 98:1 113:1 146:2 154:1 166:1 180:1 209:1 213:1 223:1 228:1 249:1 265:1 271:3 272:1 286:1 287:1 291:1 322:1 359:3 385:1 391:1 392:1 395:1 415:1 425:1 446:1 452:1 471:1 479:1 501:1 505:1 509:1 515:1 544:1 553:1 562:1 564:1 607:2 620:1 623:1 644:2 658:13 663:3 667:1 686:1 696:1 714:1 719:1 728:1 735:1 749:1 783:1 809:1 813:1 815:1 817:2 820:1 822:1 861:2 905:6 908:1 917:4 937:1 951:2 960:2 964:1 965:1 970:1 976:1 982:2 999:1 1006:1 1027:1 1029:1 1032:1 1055:2 1099:1 1112:1 1158:1 1160:2 1190:1 1211:1 1214:12 1223:2 1224:1 1229:3 1256:1 1258:1 1270:1 1279:1 1281:1 1298:1 1314:1 1338:1 1356:2 1380:1 1393:1 1397:1 1402:2 1444:1 1452:2 1462:2 1475:1 1502:2 1510:3 1516:1 1546:1 1576:2 1598:1 1602:1 1615:1 1636:1 1647:1 1676:1 1685:1 1691:1 1740:2 1745:3 1783:1 1820:1 1827:1 1842:1 1853:1 1870:1 1871:1 1878:1 1895:1 1898:1 1921:2 1937:1 1941:2 1947:2 1959:1 1982:1 1993:1 2022:2 2042:1 2051:1 2053:1 2077:1 2094:1 2123:1 2172:1 2176:1 2196:3 2235:1 2291:1 2299:1 2325:1 2333:1 2334:1 2336:3 2338:2 2339:1 2341:1 2342:3 2347:2 2352:3 2356:3 2362:1 2364:1 2369:1 2372:1 2375:1 2382:1 2406:1 2421:2 2430:2 2457:1 2460:1 2479:1 2494:1 2503:1 2514:1 2522:2 2533:1 2539:1 2550:2 2571:1 2646:2 2681:1 2730:1 2735:1 2736:2 2751:2 2758:1 2775:1 2787:1 2804:1 2812:2 2813:1 2819:1 2822:2 2826:1 2833:1 2877:1 2883:2 2889:1 2892:1 2901:1 2982:8 2984:13 2986:1 2990:1 2991:2 2998:2 3002:1 3018:1 3023:2 3029:1 3032:1 3039:3 3049:1 3053:1 3057:1 3070:1 3091:1 3133:2 3169:1 3267:1 3281:1 3316:1 3340:1 3351:1 3354:2 3393:1 3482:1 3486:1 3502:1 3506:1 3540:1 3550:1 3552:1 3632:1 3642:1 3666:1 3697:1 3704:1 3734:1 3758:1 3774:1 3775:1 3779:1 3831:2 3833:1 3872:1 3877:1 3884:1 3907:1 3909:1 3938:1 3940:1 3946:1 3985:1 3990:12 3991:2 4012:1 4052:1 4056:1 4066:1 4072:1 4079:1 4081:2 4096:2 4108:1 4113:1 4117:4 4132:1 4171:1 4196:1 4208:2 4216:1 4260:1 4262:1 4264:1 4267:1 4277:1 4309:2 4310:1 4312:2 4317:1 4319:1 4331:1 4357:1 4434:12 4443:1 4446:1 4452:3 4466:1 4477:1 4479:1 4535:6 4553:1 4557:1 4590:2 4604:2 4610:1 4618:1 4622:1 4648:1 4668:3 4717:1 4774:1 4790:1 4811:1 4812:1 4818:3 4826:1 4898:1 4903:1 4908:2 4909:1 4916:1 4920:1 4942:1 4943:1 4977:1 4983:1 4997:1 4998:1 5012:7 5013:2 5046:1 5053:2 5138:2 5140:1 5149:1 5159:2 5160:1 5161:1 5167:3 5174:1 5175:3 5183:1 5190:2 5192:3 5194:2 5195:1 5205:1 5230:1 5268:1 5361:1 5427:1 5438:1 5439:2 5485:1 5486:1 5496:1 5534:1 5574:1 5577:1 5579:1 5583:1 5603:1 5626:1 5630:2 5634:1 5716:1 5724:1 5740:1 5741:1 5784:1 5790:1 5794:1 5807:1 5833:1 5908:2 5921:1 5926:1 5939:1 6027:1 6064:1 6065:1 6076:1 6079:1 6092:1 6097:1 6118:1 6149:1 6195:1 6203:1 6208:2 6211:1 6247:1 6296:1 6307:1 6311:1 6312:1 6313:1 6324:1 6325:2 6345:1 6356:1 6391:1 6399:1 6408:3 6410:1 6428:1 6456:1 6479:2 6486:1 6500:1 6510:1 6523:4 6528:1 6534:3 6539:1 6545:1 6546:1 6550:1 6552:5 6581:1 6600:2 6619:1 6657:1 6667:1 6674:2 6679:2 6736:1 6746:1 6763:1 6769:1 6772:1 6776:1 6785:1 6792:1 6795:1 6820:1 6831:1 6853:1 6866:1 6872:1 6899:1 6901:1 6904:1 6908:3 6927:1 6939:1 6960:1 6962:1 6997:1 7030:1 7063:2 7083:1 7101:1 7102:1 7114:1 7178:1 7184:1 7187:1 7203:1 7217:4 7269:1 7287:2 7301:2 7332:1 7369:2 7398:1 7406:1 7413:1 7428:1 7435:1 7442:1 7485:1 7495:1 7496:1 7508:1 7571:1 7596:3 7629:4 7632:1 7663:1 7664:2 7679:1 7725:1 7748:2 7779:1 7787:1 7815:3 7816:5 7821:1 7833:1 7835:4 7864:2 7868:1 7878:20 7882:1 7883:1 7886:2 7890:1 7897:8 7900:2 7903:1 7908:1 7911:1 7933:1 7941:1 7949:1 7985:2 7996:1 8013:1 8014:1 8037:1 8039:2 8054:2 8065:1 8071:1 8075:1 8077:1 8087:1 8105:1 8109:3 8129:1 8159:1 8162:1 8196:1 8253:1 8290:1 8300:1 8312:1 8351:1 8364:1 8376:1 8377:13 8384:1 8392:1 8410:5 8411:2 8428:1 8443:1 8445:1 8449:2 8475:1 8480:1 8492:16 8501:1 8588:1 8596:1 8645:1 8659:2 8667:1 8671:1 8677:1 8683:1 8687:1 8693:2 8694:1 8713:1 8720:1 8750:1 8760:2 8762:1 8763:1 8768:1 8778:1 8779:2 8782:1 8783:1 8792:1 8822:1 8832:1 8836:1 8841:1 8845:1 8862:2 8915:1 8923:1 8931:1 8987:2 9014:2 9052:1 9057:1 9059:1 9061:1 9086:1 9090:2 9110:1 9112:1 9129:1 9138:1 9139:1 9184:1 9196:1 9236:1 9238:2 9247:1 9256:1 9320:2 9343:1 9378:2 9382:2 9384:1 9391:1 9393:2 9394:1 9396:1 9404:1 9408:1 9429:1 9435:1 9445:1 9447:2 9449:1 9456:1 9473:2 9483:3 9490:2 9496:1 9525:1 9546:1 9558:1 9563:1 9564:2 9580:1 9611:1 9616:1 9623:1 9642:1 9660:1 9675:1 9677:2 9678:4 9701:2 9706:1 9717:1 9719:2 9738:1 9779:1 9782:1 9797:1 9802:1 9803:1 9804:1 9855:1 9856:1 9860:1 9887:1 9905:5 9916:1 9921:1 9924:2 9936:1 10028:1 10046:12 10055:1 10061:1 10083:1 10097:1 10117:1 10122:1 10131:1 10134:1 10170:2 10174:1 10177:2 10184:1 10195:2 10229:1 10242:2 10252:1 10260:1 10261:2 10280:1 10284:1 10297:2 10299:1 10322:2 10337:1 10350:1 10359:1 10381:1 10383:2 10388:1 10404:1 10417:1 10426:3 10440:1 10518:1 10526:1 10542:1 10564:1 10582:1 10604:1 10623:1 10624:2 10641:1 10664:1 10691:1 10707:1 10725:1 10740:2 10745:1 10758:1 10760:2 10773:1 10786:2 10840:1 10842:1 10860:3 10864:1 10867:2 10874:1 10882:1 10894:1 10907:1 10912:1 10923:1 10929:3 10956:1 10976:1 10990:1 11036:1 11098:1 11111:2 11114:3 11124:1 11143:2 11152:1 11158:1 11167:1 11170:1 11176:1 11195:1 11197:3 11200:1 11203:1 11215:1 11217:2 11219:2 11220:1 11237:1 11246:1 11264:1 11276:4 11279:1 11285:1 11286:1 11293:1 11303:2 11311:1 11320:1 11347:1 11375:1 11385:1 11390:1 11404:2 11456:1 11464:1 11490:1 11503:3 11505:1 11508:1 11511:1 11518:1 11532:1 11535:2 11552:1 11571:2 11617:1 11622:1 11629:1 11636:5 11648:1 11649:1 11674:1 11679:1 11695:1 11702:1 11732:1 11750:2 11775:1 11812:1 11824:1 11827:1 11834:1 11838:1 11839:3 11845:2 11851:3 11871:1 11878:1 11881:2 11891:1 11899:1 11900:1 11904:1 11930:1 11936:1 11949:1 11979:1 11992:1 11996:1 12003:2 12011:1 12043:2 12090:1 12092:1 12110:1 12163:1 12240:3 12261:2 12281:1 12283:1 12337:1 12338:1 12339:1 12364:1 12421:1 12444:1 12460:1 12461:2 12470:1 12510:1 12513:2 12522:1 12588:1 12597:2 12599:1 12612:1 12613:1 12648:1 12650:1 12657:1 12664:1 12723:1 12763:1 12767:1 12790:2 12792:13 12800:1 12809:1 12813:4 12821:1 12859:3 12873:1 12884:1 12888:1 12922:1 12927:1 12964:1 12967:1 13001:1 13008:1 13024:2 13032:1 13086:1 13100:1 13116:1 13132:1 13141:2 13145:1 13180:1 13217:1 13239:1 13262:1 13268:1 13269:1 13280:1 13286:5 13307:1 13313:1 13340:1 13412:1 13417:1 13418:1 13419:1 13424:2 13427:1 13430:1 13437:1 13480:1 13482:1 13491:6 13495:1 13584:1 13585:1 13595:1 13626:1 13639:3 13641:2 13647:1 13673:1 13676:1 13695:1 13700:1 13707:1 13713:1 13716:1 13717:1 13729:1 13732:1 13747:1 13770:1 13772:1 13782:5 13805:1 13808:1 13814:2 13827:2 13859:1 13868:1 13869:1 13873:1 13901:1 13928:1 13935:1 13941:1 13951:4 13955:1 13974:1 13980:1 13988:1 13998:1 14012:1 14028:1 14030:2 14038:2 14057:2 14059:1 14069:5 14072:2 14096:1 14147:2 14156:1 14177:4 14232:1 14241:1 14259:1 14261:2 14314:1 14361:4 14449:1 14451:1 14460:2 14466:2 14468:2 14485:1 14486:1 14541:1 14560:1 14576:1 14592:1 14607:1 14621:1 14625:1 14627:1 14629:1 14634:1 14643:1 14653:1 14657:1 14659:1 14664:1 14688:1 14699:13 14705:2 14708:1 14709:1 14714:1 14721:1 14736:1 14786:1 14789:1 14792:3 14800:1 14806:1 14827:1 14847:3 14869:1 14890:1 14900:1 14939:1 14993:1 15000:1 15003:1 15010:1 15031:1 15054:1 15069:1 15070:2 15087:1 15105:1 15106:1 15109:2 15169:1 15193:2 15197:1 15208:1 15218:1 15237:2 15245:1 15247:1 15257:1 15258:1 15278:1 15299:1 15322:1 15340:2 15386:1 15462:2 15465:1 15478:1 15482:1 15542:1 15555:1 15556:1 15557:1 15584:1 15608:3 15616:2 15653:1 15678:1 15690:1 15718:1 15730:1 15742:1 15762:2 15779:1 15783:1 15796:1 15802:2 15805:1 15818:2 15827:1 15835:1 15888:1 15890:1 15899:1 15921:4 15931:1 15961:1 16023:1 16038:1 16051:1 16057:1 16060:6 16062:1 16096:1 16098:1 16105:1 16133:1 16140:1 16143:1 16165:7 16186:1 16200:2 16239:1 16254:1 16264:1 16271:1 16285:4 16291:3 16292:1 16304:1 16357:1 16387:1 16404:1 16413:1 16416:1 16419:1 16455:1 16457:1 16476:1 16522:1 16524:1 16527:1 16613:1 16617:1 16631:2 16644:1 16649:1 16679:1 16689:1 16692:1 16751:1 16757:1 16769:1 16773:2 16776:1 16797:1 16800:1 16810:1 16811:2 16822:1 16881:1 16899:1 16926:19 16933:1 16949:1 16951:1 16963:1 16967:2 17020:1 17028:1 17042:1 17047:1 17068:2 17072:2 17083:1 17103:1 17138:1 17143:1 17144:1 17166:1 17181:1 17208:1 17213:1 17234:1 17236:2 17281:1 17361:1 17375:1 17380:1 17383:1 17384:1 17440:1 17450:1 17459:2 17475:1 17484:1 17535:2 17549:2 17555:1 17560:1 17579:1 17632:2 17637:2 17649:1 17662:1 17671:2 17727:1 17731:1 17758:2 17766:2 17787:1 17812:1 17817:1 17855:3 17859:1 17860:1 17909:1 17929:1 17930:1 17936:1 17937:1 17964:1 18012:1 18013:3 18018:1 18026:1 18058:1 18100:1 18146:1 18206:1 18223:1 18234:1 18245:1 18300:3 18316:1 18332:1 18374:1 18377:2 18395:1 18419:1 18447:1 18462:1 18499:1 18507:1 18516:871 18538:1 18551:1 18566:1 18587:1 18597:1 18604:1 18638:1 18648:1 18651:1 18653:1 18678:1 18707:1 18712:1 18724:1 18780:1 18832:1 18863:1 18864:1 18902:1 18952:1 18969:1 18976:2 18986:1 19014:2 19016:1 19034:1 19037:1 19083:1 19085:3 19116:2 19120:1 19128:1 19178:1 19184:1 19219:1 19230:1 19253:1 19259:1 19268:1 19276:1 19282:3 19283:2 19290:1 19315:1 19318:2 19342:2 19377:6 19384:1 19399:2 19420:2 19428:1 19451:3 19461:2 19469:1 19481:2 19490:2 19491:1 19500:1 19509:1 19558:1 19561:1 19584:2 19589:1 19609:1 19656:1 19658:1 19697:1 19732:1 19793:1 19819:1 19822:1 19823:1 19829:1 19835:1 19851:1 19896:1 19927:1 19929:3 19937:1 19950:1 19962:1 19986:1 19992:1 19995:1 20029:1 20030:2 20033:1 20042:1 20043:1 20051:3 20099:1 20109:1 20117:1 20123:1 20132:1 20144:1 20156:1 20162:1 20185:1 20199:1 20211:2 20223:1 20258:1 20259:1 20268:1 20311:1 20338:1 20387:1 20390:1 20451:1 20460:1 20484:1 20495:1 20499:2 20500:1 20513:2 20541:1 20555:1 20602:1 20630:1 20661:1 20664:1 20691:2 20697:1 20702:2 20711:1 20720:1 20725:1 20748:1 20754:1 20762:2 20764:1 20767:1 20773:3 20788:1 20789:1 20798:1 20808:1 20810:1 20840:1 20842:1 20848:1 20853:2 20862:1 20869:2 20878:1 20892:2 20940:1 20942:3 20953:1 20958:1 20994:1 20996:1 21001:1 21004:1 21021:1 21026:1 21037:1 21057:1 21061:1 21071:1 21078:1 21114:1 21122:1 21185:1 21202:1 21204:1 21206:2 21237:1 21257:1 21271:2 21276:1 21285:1 21286:1 21310:1 21311:1 21313:1 21351:1 21363:1 21364:1 21369:2 21414:1 21455:1 21464:2 21508:2 21530:1 21543:1 21558:2 21570:1 21574:1 21577:1 21625:3 21658:1 21699:1 21705:2 21712:1 21715:2 21719:1 21728:2 21739:1 21748:1 21764:6 21775:1 21791:1 21835:1 21843:1 21879:1 21881:4 21884:1 21895:1 21896:1 21906:1 21908:1 21915:1 21918:1 21923:1 21924:2 21925:1 21936:1 21947:1 21955:1 21997:1 22000:1 22028:1 22047:1 22058:2 22062:1 22066:4 22082:2 22095:1 22114:1 22128:2 22133:1 22161:2 22175:1 22179:2 22214:1 22219:1 22235:1 22242:1 22248:4 22267:2 22310:7 22312:1 22316:1 22321:1 22365:4 22368:1 22370:1 22383:1 22416:1 22418:1 22425:7 22439:1 22456:2 22462:1 22471:1 22479:1 22481:1 22490:1 22516:1 22536:1 22543:1 22555:2 22599:3 22640:1 22671:1 22694:12 22709:1 22713:1 22714:2 22752:1 22757:1 22759:1 22760:1 22770:1 22771:1 22805:1 22809:1 22842:1 22852:2 22861:1 22871:3 22874:1 22901:1 22986:1 23000:2 23074:1 23075:1 23079:1 23083:1 23093:1 23095:2 23103:1 23108:1 23111:1 23147:13 23168:2 23186:1 23199:1 23228:1 23235:2 23242:1 23247:6 23289:1 23307:1 23321:2 23325:1 23329:1 23358:1 23371:1 23379:2 23381:1 23408:1 23487:1 23509:2 23525:1 23543:1 23593:1 23596:1 23617:1 23622:1 23641:1 23651:2 23664:1 23670:1 23740:1 23752:1 23767:2 23772:1 23775:1 23802:1 23817:1 23838:1 23857:1 23890:1 23891:1 23895:1 23912:1 23915:1 23941:1 23957:1 23982:1 24008:2 24028:2 24065:1 24067:1 24069:1 24075:1 24080:1 24092:1 24093:2 24097:2 24105:1 24114:1 24144:2 24186:4 24213:1 24217:1 24220:1 24225:1 24235:1 24275:1 24291:1 24334:1 24366:1 24379:1 24384:1 24388:2 24420:1 24435:1 24444:1 24480:2 24484:2 24493:1 24499:2 24505:1 24536:2 24572:1 24576:1 24577:2 24620:1 24623:1 24628:2 24646:1 24653:1 24661:1 24676:1 24687:1 24689:1 24699:1 24711:1 24757:1 24779:1 24797:1 24802:1 24803:1 24815:1 24854:1 24858:1 24859:2 24863:1 24871:2 24911:1 24922:2 24943:1 24979:1 25025:1 25075:1 25077:1 25097:1 25100:2 25107:1 25166:2 25181:1 25205:1 25212:1 25222:1 25227:1 25255:1 25283:1 25310:1 25328:2 25351:1 25362:1 25378:1 25383:1 25384:1 25387:1 25402:1 25415:1 25423:1 25440:2 25451:2 25454:1 25485:1 25499:2 25511:1 25516:2 25546:2 25573:1 25576:4 25585:2 25628:1 25693:1 25705:1 25707:1 25710:1 25713:2 25718:1 25740:1 25741:1 25766:1 25777:1 25809:1 25823:1 25832:1 25844:1 25850:1 25861:1 25874:1 25876:1 25884:2 25895:1 25920:1 25929:1 25944:1 25955:1 25956:1 25989:1 25995:3 26005:2 26018:1 26019:1 26022:5 26023:1 26061:1 26074:1 26093:3 26119:1 26122:1 26130:1 26182:1 26202:2 26253:2 26268:1 26272:1 26278:1 26283:1 26286:1 26333:1 26399:1 26428:1 26429:1 26440:2 26450:1 26465:1 26498:1 26509:1 26525:1 26546:1 26597:1 26616:1 26626:1 26630:1 26632:4 26653:1 26654:2 26663:1 26675:4 26691:1 26703:2 26734:1 26743:2 26744:1 26746:2 26754:1 26774:1 26778:1 26789:3 26794:1 26796:1 26799:1 26813:1 26847:1 26866:1 26899:1 26911:1 26915:1 26918:3 26923:2 26930:1 26931:1 26945:2 26971:2 26979:1 27043:1 27054:1 27064:2 27082:1 27096:1 27100:2 27130:1 27131:1 27145:1 27150:1 27178:1 27188:1 27196:1 27206:1 27224:1 27228:1 27235:1 27236:1 27249:1 27251:2 27254:2 27258:2 27266:2 27271:2 27276:2 27297:1 27299:2 27311:1 27318:1 27320:1 27329:1 27347:3 27365:2 27401:1 27405:2 27418:1 27424:1 27451:1 27472:1 27502:1 27504:1 27516:1 27556:1 27620:1 27658:2 27659:2 27670:2 27673:3 27689:1 27718:1 27722:1 27727:1 27732:1 27745:1 27784:2 27802:2 27858:1 27868:1 27874:1 27898:1 27909:1 27912:1 27950:1 27953:1 27956:1 27969:11 28008:5 28060:1 28080:2 28095:1 28117:4 28123:2 28134:1 28151:1 28152:1 28165:3 28170:1 28177:1 28207:1 28212:1 28214:1 28222:1 28231:1 28243:2 28258:1 28283:1 28296:2 28392:16 28413:1 28416:3 28417:1 28423:3 28424:1 28457:1 28485:2 28490:5 28503:1 28522:1 28545:1 28546:2 28584:1 28610:1 28615:2 28634:1 28635:1 28647:1 28660:1 28669:1 28690:2 28701:1 28710:1 28782:1 28785:1 28787:2 28796:1 28798:1 28814:1 28859:2 28865:1 28875:2 28894:1 28903:1 28954:1 28959:1 28964:1 28976:1 29003:1 29005:1 29027:1 29031:2 29042:4 29062:1 29063:2 29073:13 29100:1 29137:1 29139:1 29146:2 29147:2 29183:1 29240:1
2 12:1 13:1 31:2 55:1 56:1 75:1 85:2 88:1 89:2 98:1 113:1 146:2 154:1 166:1 174:1 180:1 209:1 213:1 223:1 228:1 249:1 265:1 271:3 272:1 286:1 287:1 291:1 322:1 359:3 385:1 391:1 392:1 395:1 415:1 425:1 446:1 452:1 471:1 479:1 501:1 505:1 509:1 515:1 544:1 553:1 562:1 564:1 607:2 620:1 623:1 644:2 658:14 663:3 667:1 686:1 696:1 714:1 719:1 728:2 735:1 749:1 783:1 809:1 813:2 815:1 817:2 820:1 822:1 861:2 905:6 908:1 917:4 937:2 951:2 960:3 964:1 965:1 970:1 976:1 982:2 999:1 1006:1 1027:1 1029:1 1032:1 1048:1 1055:2 1099:1 1112:1 1158:1 1160:2 1190:1 1211:1 1214:13 1220:1 1223:2 1224:1 1229:3 1256:1 1258:1 1270:1 1279:1 1281:1 1298:1 1314:1 1338:1 1354:1 1356:2 1380:1 1393:1 1397:1 1402:2 1444:1 1452:2 1462:2 1475:1 1499:1 1502:2 1510:3 1516:1 1546:1 1576:2 1598:1 1602:1 1615:1 1631:1 1636:1 1647:1 1676:1 1685:1 1690:1 1691:1 1740:2 1745:3 1783:1 1795:1 1820:1 1827:1 1842:1 1853:1 1870:1 1871:1 1878:1 1895:1 1897:1 1898:1 1921:2 1937:1 1941:2 1947:2 1959:1 1982:1 1993:1 2022:2 2042:1 2051:1 2053:1 2077:1 2094:1 2123:1 2145:1 2172:1 2176:1 2196:3 2235:1 2291:1 2299:1 2325:1 2333:1 2334:1 2336:3 2338:2 2339:1 2341:1 2342:3 2347:2 2352:3 2356:3 2359:1 2362:1 2364:1 2369:1 2372:1 2375:1 2382:1 2406:1 2421:2 2422:1 2430:2 2457:1 2460:1 2479:1 2494:1 2495:1 2503:1 2514:1 2522:2 2533:1 2539:1 2550:2 2571:1 2646:2 2681:1 2730:1 2735:1 2736:2 2751:2 2758:1 2775:1 2787:1 2804:1 2812:2 2813:1 2819:1 2822:2 2826:1 2833:1 2872:1 2877:1 2883:2 2889:1 2892:1 2901:1 2982:9 2984:14 2986:1 2990:1 2991:2 2998:2 3002:1 3014:1 3018:1 3023:2 3029:1 3032:1 3039:3 3049:1 3053:2 3057:1 3070:1 3091:1 3133:2 3169:1 3267:1 3281:1 3301:1 3316:1 3340:1 3351:1 3354:2 3360:1 3393:1 3482:1 3486:1 3502:1 3506:1 3536:1 3540:1 3550:1 3552:1 3632:1 3642:1 3666:1 3697:1 3704:1 3734:1 3758:1 3774:1 3775:1 3779:1 3831:2 3833:1 3872:1 3877:1 3884:1 3907:1 3909:1 3938:1 3940:1 3946:2 3985:1 3990:13 3991:2 4012:1 4049:1 4052:1 4056:1 4066:1 4072:1 4079:1 4081:2 4096:2 4108:1 4113:1 4117:4 4132:1 4171:1 4196:1 4208:2 4216:1 4260:1 4262:1 4264:1 4267:1 4277:1 4309:2 4310:1 4312:2 4317:1 4319:1 4331:1 4357:1 4434:13 4443:1 4446:1 4452:3 4466:1 4477:1 4479:1 4535:6 4550:1 4553:1 4557:1 4590:2 4604:2 4610:1 4618:1 4622:1 4648:1 4668:3 4676:1 4698:1 4717:1 4774:1 4790:1 4811:1 4812:1 4818:3 4826:1 4898:1 4903:1 4908:2 4909:1 4916:1 4920:1 4942:1 4943:1 4977:1 4983:1 4997:1 4998:1 5012:7 5013:2 5022:1 5046:1 5053:2 5138:2 5140:1 5149:1 5159:2 5160:1 5161:1 5167:3 5174:1 5175:3 5183:1 5190:2 5192:3 5194:2 5195:1 5205:1 5230:1 5268:1 5361:1 5427:1 5438:1 5439:2 5485:1 5486:1 5496:1 5534:1 5574:1 5577:1 5579:1 5583:1 5603:1 5626:1 5630:2 5634:1 5690:1 5716:1 5724:1 5740:1 5741:1 5784:1 5790:1 5794:1 5807:1 5833:1 5839:1 5908:2 5921:1 5924:1 5926:1 5939:1 6027:1 6064:1 6065:1 6076:1 6079:1 6092:1 6097:1 6118:1 6143:1 6149:1 6168:1 6195:1 6203:1 6208:2 6211:1 6247:1 6296:1 6307:1 6311:1 6312:1 6313:1 6324:1 6325:2 6345:1 6356:1 6391:1 6399:1 6408:3 6410:1 6428:1 6456:1 6479:2 6486:1 6500:1 6510:1 6523:4 6528:1 6534:3 6539:1 6545:1 6546:1 6550:1 6552:5 6581:1 6600:2 6619:1 6657:1 6667:1 6674:2 6679:2 6736:1 6744:1 6746:1 6763:1 6769:1 6772:1 6776:1 6785:1 6792:1 6795:1 6820:1 6831:1 6853:1 6866:1 6872:1 6899:1 6901:1 6904:1 6908:3 6927:1 6939:1 6960:1 6962:1 6997:1 7030:1 7063:2 7083:1 7101:1 7102:1 7114:1 7130:1 7178:1 7184:1 7187:1 7203:1 7217:4 7269:1 7287:2 7301:2 7332:1 7369:2 7398:1 7406:1 7412:1 7413:1 7428:1 7435:1 7442:1 7485:1 7495:1 7496:1 7508:1 7571:1 7596:3 7629:4 7632:1 7663:1 7664:2 7679:1 7707:1 7718:1 7725:1 7748:2 7749:1 7779:1 7787:1 7803:1 7815:3 7816:5 7821:1 7833:1 7835:4 7864:3 7868:1 7878:20 7882:1 7883:1 7886:2 7890:1 7897:9 7900:2 7903:1 7908:1 7911:1 7933:1 7941:1 7949:1 7985:3 7996:1 8013:1 8014:1 8037:1 8039:2 8054:2 8065:1 8071:1 8075:1 8077:1 8087:1 8105:1 8109:3 8129:1 8159:1 8162:1 8196:1 8249:1 8253:1 8290:1 8300:1 8312:1 8351:1 8364:1 8376:1 8377:14 8384:1 8392:1 8410:6 8411:2 8428:1 8443:1 8445:1 8449:2 8466:1 8475:1 8480:1 8492:17 8501:1 8588:1 8596:1 8645:1 8659:2 8667:1 8671:1 8677:1 8683:1 8687:1 8693:2 8694:1 8713:1 8720:1 8750:1 8760:2 8762:1 8763:1 8766:1 8768:1 8778:1 8779:2 8782:1 8783:1 8792:1 8822:1 8832:1 8836:1 8841:1 8845:1 8862:2 8915:1 8923:1 8931:1 8987:2 8989:1 9014:2 9052:1 9057:1 9059:1 9061:1 9086:1 9090:2 9110:1 9111:1 9112:1 9118:1 9129:1 9138:1 9139:1 9184:1 9196:1 9236:1 9238:2 9247:1 9256:1 9320:2 9343:1 9378:2 9382:2 9384:1 9391:1 9393:2 9394:1 9396:1 9404:1 9408:1 9429:1 9435:1 9442:1 9445:1 9447:2 9449:1 9456:1 9466:1 9473:2 9483:3 9490:2 9496:1 9525:1 9546:1 9558:1 9563:1 9564:2 9580:1 9611:1 9616:1 9623:1 9642:1 9660:1 9675:1 9677:2 9678:4 9701:2 9706:1 9717:1 9719:2 9726:1 9738:1 9779:1 9782:1 9797:1 9802:1 9803:1 9804:1 9855:1 9856:1 9860:1 9887:1 9905:5 9916:1 9921:2 9924:3 9936:1 9987:1 10028:1 10046:13 10055:1 10061:1 10083:1 10097:1 10117:1 10122:1 10131:1 10134:1 10170:2 10174:1 10177:2 10184:1 10188:1 10195:2 10229:1 10242:2 10252:1 10260:1 10261:2 10280:1 10284:1 10297:2 10299:1 10322:2 10337:1 10339:1 10350:1 10359:1 10381:1 10383:2 10388:1 10404:1 10417:1 10426:3 10440:1 10518:1 10526:1 10542:1 10564:1 10582:1 10604:1 10623:1 10624:2 10641:1 10664:1 10681:1 10691:1 10707:1 10725:1 10740:2 10745:1 10758:1 10760:2 10773:1 10786:2 10840:1 10842:1 10859:1 10860:3 10864:1 10867:2 10874:1 10882:1 10894:1 10907:1 10912:1 10923:1 10929:3 10956:1 10976:1 10990:1 11036:1 11098:1 11111:2 11114:3 11124:1 11143:2 11152:1 11158:1 11167:1 11170:1 11176:1 11195:1 11197:4 11200:1 11203:1 11215:1 11217:2 11219:2 11220:1 11234:1 11237:1 11246:1 11264:1 11276:4 11279:1 11285:1 11286:1 11293:1 11303:2 11311:1 11320:1 11347:1 11375:1 11383:1 11385:1 11390:1 11404:2 11407:1 11456:1 11464:1 11490:1 11503:3 11505:1 11508:1 11511:1 11518:1 11532:1 11535:2 11552:1 11571:2 11617:1 11622:1 11629:1 11636:5 11648:1 11649:1 11674:1 11679:1 11695:1 11702:1 11732:1 11750:2 11770:1 11775:2 11812:1 11824:1 11827:1 11834:1 11838:1 11839:3 11845:2 11851:3 11871:1 11878:1 11881:2 11891:1 11899:1 11900:1 11904:1 11930:1 11936:1 11949:1 11979:1 11992:1 11996:1 12003:2 12011:1 12043:2 12090:1 12092:1 12110:1 12163:1 12240:3 12261:2 12281:1 12283:1 12337:1 12338:1 12339:1 12364:1 12421:1 12444:1 12460:1 12461:2 12470:1 12510:1 12513:2 12522:1 12588:1 12597:2 12599:1 12612:1 12613:1 12648:1 12650:1 12657:1 12664:1 12723:1 12763:1 12767:1 12790:2 12792:14 12800:1 12809:1 12813:4 12821:1 12859:3 12873:1 12884:1 12888:1 12922:1 12927:1 12964:1 12967:1 13001:1 13008:1 13024:2 13032:1 13086:1 13100:1 13116:1 13132:1 13141:2 13145:1 13180:1 13217:1 13239:1 13262:1 13268:1 13269:1 13280:1 13286:5 13307:1 13313:1 13340:1 13412:1 13417:1 13418:1 13419:1 13424:2 13427:1 13430:1 13437:1 13480:1 13482:1 13491:6 13495:1 13584:1 13585:1 13595:1 13626:1 13639:3 13641:2 13647:1 13673:1 13676:1 13695:1 13700:1 13707:1 13713:1 13716:1 13717:1 13729:1 13732:1 13747:1 13770:1 13772:1 13782:5 13805:1 13808:1 13814:2 13827:2 13859:1 13868:1 13869:1 13873:1 13901:1 13910:1 13928:1 13935:1 13941:1 13951:4 13955:1 13974:1 13980:1 13988:1 13998:1 14012:1 14028:1 14030:2 14038:2 14052:1 14057:2 14059:1 14069:5 14072:2 14096:1 14147:2 14156:1 14177:4 14232:1 14241:1 14259:1 14261:2 14314:1 14361:4 14422:1 14449:1 14451:1 14460:2 14466:2 14468:2 14485:1 14486:1 14541:1 14560:1 14575:1 14576:1 14592:1 14607:1 14621:1 14625:1 14627:1 14629:1 14634:1 14643:1 14653:1 14657:1 14659:1 14664:1 14688:1 14699:14 14705:2 14708:1 14709:1 14714:1 14721:1 14736:1 14786:1 14789:1 14792:3 14800:1 14806:1 14827:1 14847:3 14869:1 14890:1 14900:1 14939:1 14993:1 15000:1 15003:1 15010:1 15031:1 15054:1 15069:1 15070:2 15087:1 15105:1 15106:1 15109:3 15169:1 15193:2 15197:1 15208:1 15218:1 15237:2 15245:1 15247:1 15257:1 15258:1 15278:1 15299:1 15322:1 15340:2 15386:1 15462:2 15465:1 15478:1 15482:1 15542:1 15555:1 15556:1 15557:1 15584:1 15608:3 15616:2 15653:1 15678:1 15690:1 15718:1 15730:1 15742:1 15762:2 15779:1 15783:1 15796:1 15802:2 15805:1 15818:2 15827:1 15835:1 15888:1 15890:1 15899:1 15921:4 15931:1 15951:1 15961:1 16023:1 16038:1 16051:1 16057:1 16060:7 16062:1 16096:1 16098:1 16105:1 16133:1 16140:1 16143:1 16165:7 16186:1 16200:2 16203:1 16239:1 16254:1 16264:1 16271:1 16285:4 16291:3 16292:1 16299:1 16304:1 16357:1 16387:1 16392:1 16404:1 16413:1 16416:1 16419:1 16455:1 16457:1 16476:1 16510:1 16522:1 16524:1 16527:1 16604:1 16613:1 16617:1 16631:2 16644:1 16649:1 16679:1 16689:1 16692:1 16751:1 16757:1 16769:1 16773:2 16776:1 16797:1 16800:1 16810:1 16811:2 16822:1 16881:1 16899:1 16926:20 16932:1 16933:1 16949:1 16951:1 16963:1 16967:2 17020:1 17028:1 17042:1 17047:1 17068:2 17072:2 17083:1 17103:1 17138:1 17143:1 17144:1 17166:1 17181:1 17208:1 17213:1 17234:1 17236:2 17281:1 17361:1 17375:1 17380:1 17383:1 17384:1 17440:1 17450:1 17459:2 17465:1 17475:1 17484:1 17535:2 17549:2 17555:1 17560:1 17579:1 17632:2 17637:2 17649:1 17662:1 17671:2 17711:1 17727:1 17731:1 17758:2 17766:2 17787:1 17812:1 17817:1 17855:3 17859:1 17860:1 17909:1 17926:1 17929:1 17930:1 17936:1 17937:1 17964:1 18012:1 18013:3 18018:1 18026:1 18058:1 18100:1 18146:1 18206:1 18210:1 18223:1 18234:1 18245:1 18300:3 18310:1 18316:1 18332:1 18374:1 18377:2 18395:1 18419:1 18447:1 18462:1 18499:1 18507:1 18516:999 18538:1 18551:1 18566:1 18587:1 18597:1 18604:1 18638:2 18648:1 18651:2 18653:1 18678:1 18707:1 18712:1 18724:1 18780:1 18832:1 18863:1 18864:1 18902:1 18933:1 18952:1 18969:1 18976:2 18986:1 19014:2 19016:1 19034:1 19037:1 19083:1 19085:3 19116:2 19120:1 19128:1 19178:1 19184:1 19192:1 19198:1 19219:1 19230:1 19253:1 19259:1 19268:1 19276:1 19282:3 19283:2 19290:1 19315:1 19318:2 19342:2 19377:6 19384:1 19399:2 19420:2 19421:1 19427:1 19428:1 19451:3 19461:2 19469:1 19481:2 19490:2 19491:1 19500:1 19509:1 19558:1 19561:1 19574:1 19584:2 19589:1 19609:1 19611:1 19656:1 19658:1 19697:1 19732:1 19793:1 19819:1 19822:1 19823:1 19829:1 19835:1 19851:1 19896:1 19927:1 19929:3 19937:1 19950:1 19962:1 19986:1 19992:1 19995:1 20029:1 20030:2 20033:1 20042:1 20043:1 20051:3 20099:1 20109:1 20117:1 20123:1 20132:1 20144:1 20156:1 20162:1 20185:1 20199:1 20211:2 20223:1 20244:1 20258:1 20259:1 20268:1 20311:1 20338:1 20387:1 20390:1 20451:1 20460:1 20484:1 20495:1 20499:2 20500:1 20513:2 20541:1 20555:1 20602:1 20605:1 20630:1 20661:1 20664:1 20691:2 20697:1 20702:2 20711:1 20720:1 20725:1 20748:1 20754:1 20762:2 20764:1 20767:1 20773:3 20788:1 20789:1 20798:1 20808:1 20810:1 20833:1 20840:1 20842:1 20848:1 20853:2 20862:1 20869:2 20878:1 20892:2 20940:1 20942:3 20953:1 20958:1 20994:1 20996:1 21001:2 21004:1 21021:1 21026:1 21037:1 21057:1 21061:1 21071:1 21078:1 21114:1 21122:1 21185:1 21202:1 21204:1 21206:2 21237:2 21257:1 21271:2 21276:1 21285:1 21286:1 21310:1 21311:1 21313:1 21351:1 21363:1 21364:1 21369:2 21414:1 21442:1 21455:1 21464:2 21508:2 21530:1 21543:1 21558:2 21570:1 21574:1 21577:1 21625:3 21658:1 21699:1 21705:2 21712:1 21715:2 21719:1 21728:2 21739:1 21748:1 21764:6 21775:1 21791:1 21835:1 21843:1 21845:1 21879:1 21881:4 21884:1 21895:1 21896:1 21906:1 21908:1 21915:1 21918:1 21919:1 21923:1 21924:2 21925:1 21936:1 21939:1 21947:1 21955:1 21997:1 22000:1 22028:1 22047:1 22058:2 22062:1 22066:4 22082:2 22095:1 22114:1 22128:2 22133:1 22161:2 22175:1 22179:2 22214:1 22219:1 22235:1 22242:1 22248:4 22267:2 22310:7 22312:1 22316:1 22321:1 22365:4 22368:1 22370:1 22383:1 22416:1 22418:1 22425:7 22439:1 22456:2 22462:1 22471:1 22479:1 22481:1 22490:1 22516:1 22536:1 22543:1 22555:2 22599:3 22640:1 22671:1 22691:1 22694:13 22709:1 22713:1 22714:2 22752:1 22757:1 22759:1 22760:1 22770:1 22771:1 22805:1 22809:1 22842:1 22852:2 22861:1 22871:4 22874:1 22901:1 22986:1 23000:2 23074:1 23075:1 23079:1 23083:1 23093:1 23095:2 23103:1 23108:1 23111:1 23147:14 23168:2 23169:1 23186:1 23199:1 23228:1 23235:2 23242:1 23247:6 23289:1 23307:1 23321:2 23325:1 23329:1 23358:1 23371:1 23379:2 23381:2 23408:1 23487:1 23509:2 23525:1 23543:1 23593:1 23596:1 23617:1 23622:1 23641:1 23651:2 23664:1 23670:1 23740:1 23752:1 23767:2 23772:1 23775:1 23802:1 23817:1 23838:1 23857:1 23890:1 23891:1 23895:1 23912:1 23915:1 23941:1 23957:2 23982:1 24008:2 24028:2 24065:1 24067:1 24069:1 24075:1 24080:1 24092:1 24093:2 24097:2 24105:1 24114:1 24144:2 24186:4 24213:1 24217:1 24220:1 24225:1 24235:1 24275:1 24291:1 24334:1 24366:1 24379:1 24384:1 24388:2 24420:1 24435:1 24444:1 24480:2 24484:2 24493:1 24499:3 24505:1 24536:2 24572:1 24576:1 24577:2 24620:1 24623:1 24628:3 24646:1 24653:1 24661:1 24676:1 24687:1 24689:1 24699:1 24711:1 24757:1 24779:1 24797:1 24802:1 24803:1 24815:1 24854:1 24858:1 24859:2 24863:1 24871:2 24911:1 24922:2 24943:1 24979:1 25025:1 25075:1 25077:2 25097:1 25100:2 25107:1 25133:1 25166:2 25173:1 25181:1 25205:1 25212:1 25222:1 25227:1 25255:1 25283:1 25310:1 25328:2 25351:1 25362:1 25378:1 25383:1 25384:1 25387:1 25402:1 25415:1 25423:1 25440:2 25451:2 25454:1 25485:1 25499:2 25511:1 25516:2 25546:2 25573:1 25576:4 25585:2 25599:1 25628:1 25693:1 25705:1 25707:1 25710:1 25713:2 25718:1 25740:1 25741:1 25766:1 25777:1 25809:1 25823:1 25832:1 25844:1 25850:1 25861:1 25874:1 25876:1 25884:2 25895:1 25920:1 25929:1 25944:1 25955:1 25956:1 25964:1 25989:1 25995:3 26005:2 26018:1 26019:1 26022:5 26023:1 26042:1 26061:1 26074:1 26093:3 26113:1 26119:1 26122:1 26130:1 26156:1 26182:1 26202:2 26253:2 26268:1 26272:1 26278:1 26283:1 26286:1 26333:1 26399:1 26428:1 26429:1 26440:2 26450:1 26465:1 26498:1 26509:1 26525:1 26536:1 26546:1 26597:1 26609:1 26616:1 26626:1 26630:1 26632:4 26653:1 26654:2 26663:1 26675:4 26691:1 26703:2 26734:1 26743:3 26744:1 26746:2 26754:1 26774:1 26778:1 26789:3 26794:1 26796:1 26799:1 26813:1 26847:1 26866:1 26870:1 26899:1 26911:1 26915:1 26918:3 26923:2 26930:1 26931:1 26945:2 26971:2 26979:1 26994:1 27043:1 27054:2 27064:2 27082:1 27096:1 27100:2 27130:1 27131:1 27145:1 27150:1 27178:1 27188:1 27196:1 27206:1 27224:1 27228:1 27235:1 27236:1 27249:1 27251:2 27254:2 27258:2 27266:2 27271:2 27276:2 27296:1 27297:1 27299:2 27311:1 27318:1 27320:1 27329:1 27347:3 27365:2 27390:1 27401:1 27405:2 27418:1 27424:1 27451:1 27472:1 27502:1 27504:1 27516:1 27556:1 27620:1 27658:2 27659:2 27670:2 27673:3 27689:1 27718:1 27722:1 27727:1 27732:1 27745:1 27784:2 27802:2 27858:1 27868:1 27874:1 27898:1 27909:1 27912:1 27950:1 27953:1 27956:1 27969:12 28008:5 28060:1 28080:2 28095:1 28117:4 28123:2 28134:1 28151:1 28152:1 28165:3 28170:1 28177:1 28207:1 28212:1 28214:1 28222:1 28231:1 28243:2 28258:1 28283:1 28296:2 28375:1 28392:17 28413:1 28416:3 28417:1 28423:3 28424:1 28457:1 28485:2 28490:5 28503:1 28522:1 28545:1 28546:2 28584:1 28610:1 28615:2 28634:1 28635:1 28647:1 28660:1 28669:1 28690:2 28701:1 28710:1 28782:1 28785:1 28787:2 28796:1 28798:1 28814:1 28859:2 28865:1 28875:2 28894:1 28903:1 28913:1 28954:1 28959:1 28964:1 28976:1 29003:1 29005:2 29027:1 29031:2 29042:4 29057:1 29062:1 29063:2 29073:14 29100:1 29128:1 29137:1 29139:1 29146:2 29147:2 29183:1 29240:1
2 12:1 13:1 31:2 32:1 55:1 56:1 75:1 85:2 88:1 89:2 98:1 113:1 146:2 154:1 166:1 174:1 180:1 184:1 209:1 213:1 223:1 228:1 249:1 265:1 271:3 272:1 276:1 286:1 287:1 291:1 322:1 359:3 385:1 391:1 392:1 395:1 415:1 425:1 429:1 446:1 452:1 471:1 479:2 501:1 505:1 509:1 515:1 544:1 553:1 562:1 564:1 607:2 620:1 623:1 644:2 658:15 663:3 667:1 682:1 686:1 696:1 714:1 719:1 728:2 735:1 749:1 783:1 809:1 813:2 815:1 817:2 820:1 822:1 857:1 861:2 904:1 905:6 908:1 917:5 937:2 951:2 960:3 964:1 965:1 970:1 976:1 982:2 999:1 1006:1 1027:1 1029:1 1032:1 1048:1 1055:2 1099:1 1112:1 1158:1 1160:2 1190:1 1211:1 1214:14 1220:1 1223:2 1224:1 1229:3 1256:1 1258:1 1270:1 1279:1 1281:1 1298:1 1314:1 1338:1 1354:1 1356:2 1380:1 1393:1 1397:1 1402:2 1404:1 1444:1 1452:2 1462:2 1475:1 1499:1 1501:1 1502:2 1510:3 1516:1 1546:1 1576:2 1582:1 1598:1 1602:1 1615:1 1631:1 1636:1 1647:1 1676:1 1677:1 1685:1 1690:1 1691:1 1740:2 1745:3 1783:1 1795:1 1820:1 1827:1 1842:1 1853:1 1870:1 1871:1 1878:1 1895:1 1897:1 1898:1 1921:2 1937:1 1941:2 1947:2 1959:1 1982:1 1993:1 2022:3 2042:1 2051:1 2053:1 2077:1 2094:1 2123:1 2145:1 2172:1 2176:1 2196:3 2235:1 2291:1 2299:1 2325:1 2333:1 2334:1 2336:3 2338:2 2339:1 2341:1 2342:3 2347:2 2352:3 2356:3 2359:1 2362:1 2364:1 2369:1 2372:1 2375:1 2382:1 2406:1 2421:2 2422:1 2430:3 2457:2 2460:1 2479:1 2494:1 2495:2 2503:1 2514:1 2522:2 2533:1 2539:1 2550:2 2571:1 2610:1 2646:2 2681:1 2730:1 2735:1 2736:2 2751:2 2758:1 2775:1 2787:1 2804:1 2812:2 2813:1 2819:1 2822:2 2826:1 2833:1 2872:1 2877:1 2883:2 2889:1 2892:1 2901:1 2982:9 2984:15 2986:1 2990:1 2991:2 2998:2 3002:1 3014:1 3018:1 3023:2 3029:1 3032:1 3039:4 3049:1 3053:2 3057:1 3070:1 3091:1 3100:1 3133:2 3169:1 3267:1 3281:1 3301:1 3316:1 3340:1 3351:1 3354:2 3360:1 3393:1 3482:1 3486:1 3502:1 3506:1 3536:1 3540:1 3550:1 3552:1 3632:1 3642:1 3666:1 3690:1 3697:1 3704:1 3734:1 3758:1 3774:1 3775:1 3779:1 3831:2 3833:1 3872:1 3877:1 3884:1 3907:1 3909:1 3938:1 3940:1 3946:2 3985:1 3990:14 3991:2 4012:1 4049:1 4052:1 4056:1 4066:1 4072:1 4079:1 4081:2 4096:2 4108:1 4113:1 4117:4 4132:1 4171:1 4196:1 4208:2 4216:1 4260:1 4262:1 4264:1 4267:1 4277:1 4309:2 4310:1 4312:2 4317:1 4319:1 4331:1 4357:1 4434:14 4443:1 4446:1 4452:3 4466:1 4477:1 4479:1 4535:6 4550:1 4553:1 4557:1 4590:2 4604:2 4610:1 4618:1 4622:1 4648:1 4668:3 4676:1 4698:1 4717:1 4744:1 4774:1 4790:1 4811:1 4812:1 4818:3 4826:1 4898:1 4903:1 4908:2 4909:1 4916:1 4920:1 4942:1 4943:1 4977:1 4983:1 4997:1 4998:1 5012:7 5013:2 5022:1 5046:1 5053:2 5087:1 5138:2 5140:1 5149:1 5159:2 5160:2 5161:1 5167:3 5174:1 5175:3 5183:1 5190:2 5192:3 5194:2 5195:1 5205:1 5230:1 5264:1 5268:1 5361:1 5427:1 5438:1 5439:2 5485:1 5486:1 5496:1 5534:1 5574:1 5577:1 5579:1 5583:1 5603:1 5626:1 5630:2 5634:1 5690:1 5716:1 5724:1 5740:1 5741:1 5780:1 5784:1 5790:1 5794:1 5807:1 5833:1 5839:1 5908:2 5921:1 5924:1 5926:1 5939:1 6027:1 6064:1 6065:1 6076:1 6079:1 6092:1 6097:1 6118:1 6143:1 6149:1 6151:1 6168:1 6195:1 6203:1 6208:2 6211:1 6247:1 6296:1 6307:1 6311:1 6312:1 6313:1 6315:1 6324:1 6325:2 6345:1 6356:1 6391:1 6399:1 6408:3 6410:1 6428:1 6456:1 6479:2 6486:1 6500:1 6510:1 6523:4 6528:1 6534:3 6538:1 6539:1 6545:1 6546:1 6550:1 6552:5 6581:1 6600:2 6619:1 6657:1 6667:1 6674:2 6679:2 6736:1 6744:1 6746:1 6763:1 6769:1 6772:1 6776:1 6785:1 6792:1 6795:1 6820:1 6831:1 6853:1 6866:1 6872:1 6899:1 6901:1 6904:1 6908:3 6927:1 6939:1 6960:1 6962:1 6967:1 6997:1 7030:1 7063:2 7083:1 7101:1 7102:1 7114:1 7130:1 7178:1 7184:1 7187:1 7203:1 7217:4 7269:1 7271:1 7287:2 7301:2 7332:1 7369:2 7398:1 7406:1 7412:1 7413:1 7428:1 7435:1 7442:1 7485:1 7495:1 7496:1 7508:1 7571:1 7596:3 7629:4 7632:1 7636:1 7663:1 7664:2 7679:1 7707:1 7718:1 7725:1 7748:2 7749:1 7779:1 7787:1 7803:1 7815:5 7816:5 7821:1 7833:1 7835:5 7864:3 7868:1 7878:20 7882:1 7883:1 7886:2 7890:1 7897:9 7900:2 7903:1 7908:1 7911:1 7932:1 7933:1 7941:1 7949:1 7985:3 7996:1 8013:1 8014:1 8037:1 8039:2 8054:2 8065:1 8071:1 8075:1 8077:1 8087:1 8105:1 8109:3 8129:1 8159:1 8162:1 8196:1 8249:1 8253:1 8290:1 8300:1 8312:1 8351:1 8364:1 8376:1 8377:15 8384:1 8392:1 8410:6 8411:2 8428:1 8443:1 8445:1 8449:2 8466:1 8475:1 8480:1 8492:19 8501:1 8588:1 8596:1 8645:1 8659:2 8667:1 8671:1 8677:1 8683:1 8687:1 8693:2 8694:1 8713:1 8720:1 8750:1 8760:2 8762:1 8763:1 8766:1 8768:1 8778:1 8779:2 8782:1 8783:1 8792:1 8822:1 8832:1 8836:1 8841:1 8845:1 8862:2 8915:1 8923:1 8931:1 8987:2 8989:1 9014:2 9052:1 9057:1 9059:1 9061:1 9086:1 9090:3 9110:1 9111:1 9112:1 9118:1 9129:1 9138:1 9139:1 9184:1 9196:1 9236:1 9238:2 9247:1 9256:1 9320:2 9343:1 9378:2 9382:2 9384:1 9391:1 9393:2 9394:1 9396:1 9404:1 9408:1 9415:1 9429:1 9435:1 9442:1 9445:1 9447:2 9449:1 9456:1 9466:1 9473:2 9483:4 9490:2 9496:1 9525:1 9546:1 9558:1 9563:1 9564:2 9580:1 9611:1 9616:1 9623:1 9642:1 9660:1 9661:1 9675:1 9677:2 9678:4 9701:2 9706:1 9717:1 9719:2 9726:1 9738:1 9779:1 9782:1 9797:1 9802:1 9803:1 9804:1 9841:1 9855:1 9856:1 9860:1 9887:1 9905:5 9916:1 9921:2 9924:3 9936:1 9987:1 10028:1 10046:14 10055:1 10061:1 10083:1 10097:1 10117:1 10122:1 10131:1 10134:1 10170:2 10174:1 10177:2 10184:1 10188:1 10195:2 10229:1 10242:2 10252:1 10260:1 10261:2 10280:1 10284:2 10297:2 10299:1 10322:2 10337:1 10339:1 10350:1 10359:1 10381:1 10383:2 10388:1 10404:1 10417:1 10426:3 10440:1 10518:1 10526:1 10542:2 10564:1 10582:1 10604:1 10623:1 10624:3 10641:1 10664:1 10681:1 10691:1 10707:1 10725:1 10740:2 10745:1 10758:1 10760:2 10773:1 10786:2 10840:1 10842:1 10859:1 10860:4 10864:1 10867:2 10874:1 10882:1 10894:1 10907:1 10912:1 10923:1 10929:4 10956:1 10976:1 10990:1 11036:1 11066:1 11098:1 11111:2 11114:3 11124:1 11143:2 11152:1 11158:1 11167:1 11170:1 11176:1 11195:1 11197:4 11200:1 11203:1 11215:1 11217:2 11219:2 11220:1 11234:1 11237:1 11246:1 11264:1 11276:4 11279:1 11285:1 11286:1 11293:1 11300:1 11303:2 11311:1 11320:1 11347:2 11375:1 11383:1 11385:1 11390:1 11404:2 11407:1 11456:1 11464:1 11483:1 11490:1 11503:3 11505:1 11508:1 11511:1 11518:1 11532:1 11535:2 11552:1 11571:2 11609:1 11617:1 11622:1 11629:1 11636:5 11648:1 11649:1 11674:1 11679:1 11695:1 11702:1 11732:1 11750:2 11770:1 11775:2 11812:1 11824:1 11827:1 11834:1 11838:1 11839:3 11845:2 11851:3 11871:1 11878:1 11881:2 11891:1 11899:1 11900:1 11904:1 11930:1 11936:1 11949:1 11979:1 11992:1 11996:1 12003:2 12011:1 12043:2 12090:1 12092:1 12110:1 12163:1 12240:3 12261:2 12281:1 12283:1 12337:1 12338:1 12339:1 12364:1 12421:1 12444:1 12455:1 12460:1 12461:3 12470:1 12510:1 12513:2 12522:1 12588:1 12597:2 12599:1 12612:1 12613:1 12648:1 12650:1 12657:1 12664:1 12723:1 12763:1 12767:1 12790:2 12792:15 12800:1 12809:1 12813:4 12821:1 12859:3 12873:1 12884:1 12888:1 12922:1 12927:1 12964:1 12967:1 13001:1 13008:1 13024:2 13032:1 13086:1 13100:1 13116:1 13132:1 13141:2 13145:1 13180:1 13217:1 13239:1 13262:1 13268:1 13269:1 13280:1 13286:5 13307:1 13313:1 13340:1 13412:1 13417:1 13418:1 13419:1 13424:2 13427:1 13430:1 13437:1 13480:1 13482:1 13491:6 13495:1 13584:1 13585:1 13595:1 13626:1 13639:3 13641:2 13647:1 13673:1 13676:1 13695:1 13700:1 13707:1 13713:1 13716:1 13717:1 13729:1 13732:1 13747:1 13766:1 13770:1 13772:1 13775:1 13782:5 13805:1 13808:1 13814:3 13827:2 13859:1 13868:1 13869:1 13873:1 13901:1 13910:1 13928:1 13935:1 13941:1 13951:5 13955:1 13974:1 13980:1 13988:1 13998:1 14012:1 14028:1 14030:2 14038:2 14052:1 14057:2 14059:1 14069:5 14072:3 14096:1 14147:2 14156:1 14177:4 14232:1 14241:1 14259:1 14261:2 14314:1 14361:4 14422:1 14449:1 14451:1 14460:2 14466:2 14468:2 14485:1 14486:1 14541:1 14560:1 14574:1 14575:1 14576:1 14592:1 14607:1 14621:1 14625:1 14627:1 14629:1 14634:1 14643:1 14653:1 14657:1 14659:1 14664:1 14688:1 14699:15 14705:2 14708:1 14709:1 14714:1 14721:1 14736:1 14786:1 14789:1 14792:3 14800:1 14806:1 14827:1 14847:3 14863:1 14869:1 14890:1 14900:1 14939:1 14993:1 15000:1 15003:1 15010:1 15031:1 15054:1 15069:1 15070:2 15087:1 15105:1 15106:1 15109:3 15169:1 15193:2 15197:1 15208:1 15218:1 15237:2 15245:1 15247:1 15257:1 15258:1 15278:1 15299:1 15322:1 15340:2 15386:1 15462:2 15465:1 15478:1 15482:1 15542:1 15555:1 15556:1 15557:1 15584:1 15608:3 15616:2 15653:1 15678:1 15690:1 15718:1 15730:1 15742:1 15762:2 15779:1 15783:1 15796:2 15802:2 15805:1 15818:2 15827:1 15835:1 15888:1 15890:1 15899:1 15921:4 15931:1 15951:1 15961:2 16023:1 16038:1 16051:1 16057:1 16060:7 16062:1 16096:1 16098:2 16105:1 16133:1 16140:1 16143:2 16165:7 16178:1 16186:1 16200:2 16203:1 16239:1 16254:1 16264:1 16271:1 16285:4 16291:3 16292:1 16299:1 16304:1 16357:1 16387:1 16392:1 16404:1 16413:1 16416:1 16419:1 16455:1 16457:1 16476:1 16510:1 16522:1 16524:1 16527:1 16604:1 16613:1 16617:1 16631:2 16644:1 16646:1 16649:1 16679:1 16689:1 16692:1 16751:1 16757:1 16769:1 16773:2 16776:1 16797:1 16800:1 16810:1 16811:2 16822:1 16881:1 16899:1 16926:22 16932:1 16933:1 16949:1 16951:1 16963:1 16967:2 17020:1 17028:1 17042:1 17047:1 17068:2 17072:2 17083:1 17103:1 17138:1 17143:1 17144:1 17166:1 17181:1 17208:1 17213:1 17234:1 17236:2 17281:1 17361:1 17375:1 17380:1 17383:1 17384:1 17424:1 17440:1 17450:1 17457:1 17459:2 17465:1 17475:1 17484:1 17535:2 17549:2 17555:1 17560:1 17579:1 17632:2 17637:2 17649:1 17662:1 17671:2 17711:1 17727:1 17731:1 17758:2 17766:2 17787:1 17812:1 17817:1 17855:3 17859:1 17860:1 17909:1 17926:1 17929:1 17930:1 17936:1 17937:1 17964:1 18012:1 18013:3 18018:1 18026:1 18058:1 18098:1 18100:1 18146:1 18206:2 18210:1 18223:1 18234:1 18245:1 18300:3 18310:1 18316:1 18332:1 18374:1 18377:2 18395:1 18419:1 18447:1 18462:1 18499:1 18507:1 18516:1049 18538:1 18551:1 18566:1 18587:1 18597:1 18604:1 18638:2 18648:1 18651:2 18653:1 18678:1 18707:1 18712:1 18724:1 18780:1 18832:1 18863:1 18864:1 18902:1 18933:1 18952:1 18969:1 18976:2 18986:1 19014:2 19016:1 19034:1 19037:1 19083:1 19085:3 19116:2 19120:1 19128:1 19178:1 19184:1 19192:1 19198:1 19219:1 19230:1 19253:1 19259:1 19268:1 19276:1 19282:3 19283:2 19290:1 19315:1 19318:2 19342:2 19377:7 19384:1 19399:2 19420:2 19421:1 19427:1 19428:1 19451:3 19461:2 19469:1 19481:2 19490:2 19491:1 19500:1 19509:1 19558:1 19561:1 19574:1 19584:2 19589:1 19609:1 19611:1 19656:1 19658:1 19697:1 19728:1 19732:1 19793:1 19819:1 19822:1 19823:1 19829:1 19835:1 19851:1 19896:1 19927:1 19929:3 19937:1 19950:1 19962:1 19986:1 19992:1 19995:1 20002:1 20029:1 20030:2 20033:1 20042:1 20043:1 20051:4 20099:1 20109:1 20117:1 20123:1 20132:1 20144:1 20156:1 20162:1 20185:1 20199:1 20211:3 20223:2 20244:1 20258:1 20259:1 20268:1 20311:1 20338:1 20387:1 20390:1 20451:1 20460:1 20484:1 20495:1 20499:2 20500:1 20513:2 20541:1 20555:1 20602:1 20605:1 20630:1 20661:1 20664:1 20691:2 20697:1 20702:2 20711:1 20720:1 20725:1 20748:1 20754:1 20762:2 20764:1 20767:1 20773:3 20788:1 20789:1 20798:1 20799:1 20808:1 20810:1 20833:1 20840:1 20842:2 20848:1 20853:2 20862:1 20869:2 20878:1 20892:2 20940:1 20942:3 20953:1 20958:1 20994:1 20996:1 21001:2 21004:1 21021:1 21026:1 21037:2 21057:1 21061:1 21071:1 21078:1 21114:1 21122:1 21185:1 21202:1 21204:1 21206:2 21237:2 21257:1 21271:2 21276:1 21285:1 21286:1 21310:1 21311:1 21313:1 21351:1 21363:1 21364:1 21369:2 21398:1 21414:1 21442:1 21455:1 21464:2 21508:2 21530:1 21543:1 21558:2 21562:1 21570:1 21574:1 21577:1 21625:3 21658:1 21699:1 21705:3 21712:1 21715:2 21719:1 21728:2 21739:1 21748:1 21764:6 21775:1 21791:1 21835:1 21843:1 21845:1 21879:1 21881:4 21884:1 21895:1 21896:1 21906:1 21908:1 21915:1 21918:1 21919:1 21923:1 21924:2 21925:1 21936:1 21939:1 21947:1 21955:1 21997:1 22000:1 22028:1 22047:1 22058:2 22062:1 22066:4 22082:2 22095:1 22114:1 22128:2 22133:1 22161:2 22175:1 22179:2 22214:1 22219:1 22235:1 22242:1 22248:5 22267:2 22310:7 22312:1 22316:1 22321:1 22365:4 22368:1 22370:1 22383:1 22416:1 22418:1 22425:7 22439:1 22456:2 22462:1 22471:1 22479:1 22481:1 22490:1 22516:1 22536:1 22543:1 22555:3 22599:3 22640:1 22671:1 22691:1 22694:14 22709:1 22713:1 22714:2 22752:1 22757:1 22759:1 22760:1 22770:1 22771:1 22805:1 22809:1 22842:1 22852:2 22861:1 22871:4 22874:1 22901:1 22986:1 23000:2 23074:1 23075:1 23079:1 23083:1 23093:1 23095:2 23103:1 23108:1 23111:1 23115:1 23147:15 23168:2 23169:1 23186:1 23199:1 23228:1 23235:2 23242:1 23247:6 23283:1 23289:1 23307:1 23321:2 23325:1 23329:1 23358:1 23371:1 23379:2 23381:2 23408:1 23487:1 23509:2 23525:1 23543:1 23593:1 23596:1 23617:1 23622:1 23641:1 23651:2 23664:1 23670:1 23740:1 23752:1 23767:2 23772:1 23775:1 23802:1 23817:1 23838:1 23857:1 23890:1 23891:1 23895:1 23912:1 23915:1 23941:1 23957:2 23982:1 24008:2 24013:1 24028:2 24065:1 24067:1 24069:1 24075:1 24080:1 24092:1 24093:2 24097:2 24105:1 24114:1 24144:2 24186:4 24213:1 24217:1 24220:1 24225:1 24235:1 24275:1 24291:1 24334:1 24366:1 24379:1 24384:1 24388:2 24420:1 24435:1 24444:1 24480:2 24484:2 24493:1 24499:3 24505:1 24536:2 24552:1 24572:1 24576:2 24577:2 24620:1 24623:1 24628:3 24646:1 24653:1 24661:1 24676:1 24687:1 24689:1 24699:1 24711:1 24757:1 24779:1 24797:1 24802:1 24803:1 24815:1 24854:1 24858:1 24859:2 24863:1 24871:2 24911:1 24922:2 24943:1 24979:1 25025:1 25075:1 25077:2 25097:1 25100:2 25107:1 25133:1 25134:1 25166:2 25173:1 25181:1 25205:1 25212:1 25222:1 25227:1 25248:1 25255:1 25279:1 25283:1 25284:1 25310:1 25328:2 25351:1 25362:1 25378:1 25383:1 25384:1 25387:1 25402:1 25415:1 25423:1 25440:2 25451:2 25454:1 25485:1 25499:2 25511:1 25516:3 25546:2 25573:1 25576:5 25585:2 25599:1 25628:1 25693:1 25705:1 25707:1 25710:1 25713:2 25718:1 25740:1 25741:1 25766:1 25777:1 25809:1 25823:1 25832:1 25844:1 25850:1 25861:1 25874:1 25876:1 25884:2 25895:1 25920:1 25929:1 25944:1 25955:1 25956:1 25964:1 25989:1 25995:3 26005:2 26018:1 26019:1 26022:5 26023:1 26042:1 26061:1 26074:1 26093:3 26113:1 26119:1 26122:1 26130:1 26156:1 26182:1 26202:2 26253:2 26268:1 26272:1 26278:1 26283:1 26286:1 26333:1 26399:1 26428:1 26429:1 26440:2 26450:1 26465:1 26498:1 26509:1 26525:1 26536:1 26546:1 26597:1 26609:1 26616:1 26626:1 26630:1 26632:4 26653:1 26654:2 26663:1 26675:4 26691:1 26703:2 26734:1 26743:3 26744:1 26746:2 26754:1 26774:1 26778:1 26789:3 26794:1 26796:1 26799:1 26813:1 26847:1 26866:1 26870:1 26899:1 26911:1 26915:1 26918:3 26923:2 26930:1 26931:1 26945:2 26971:2 26979:1 26994:1 27043:1 27054:2 27064:2 27082:1 27096:1 27100:2 27130:1 27131:1 27145:1 27150:1 27178:1 27188:1 27196:1 27206:1 27224:1 27228:1 27235:1 27236:1 27249:1 27251:3 27254:2 27258:2 27266:2 27271:2 27276:2 27296:1 27297:1 27299:2 27311:1 27318:1 27320:1 27329:1 27347:3 27365:2 27390:1 27401:1 27405:2 27418:1 27424:1 27451:1 27472:1 27502:1 27504:1 27516:1 27556:1 27620:1 27658:3 27659:2 27670:2 27673:3 27689:1 27718:1 27722:1 27727:1 27732:1 27745:1 27784:2 27802:2 27858:1 27868:1 27874:1 27898:1 27909:1 27912:1 27950:1 27953:1 27956:1 27969:12 28008:5 28060:1 28080:2 28095:1 28117:4 28123:2 28134:1 28151:1 28152:1 28165:5 28170:1 28177:1 28207:1 28212:1 28214:1 28222:1 28231:1 28243:2 28258:1 28283:1 28296:2 28375:1 28392:19 28413:1 28416:3 28417:1 28423:3 28424:1 28457:1 28485:3 28490:6 28503:1 28522:1 28545:1 28546:2 28584:1 28597:1 28610:1 28615:2 28634:1 28635:1 28647:1 28660:1 28669:1 28690:2 28701:1 28710:1 28782:1 28785:1 28787:2 28796:1 28798:1 28814:1 28859:2 28865:1 28875:2 28894:2 28903:1 28913:1 28954:1 28959:1 28964:1 28976:1 29003:1 29005:2 29027:1 29031:2 29042:4 29057:1 29062:2 29063:2 29073:15 29100:1 29128:1 29137:1 29139:1 29146:2 29147:2 29183:1 29223:1 29240:1
2 12:1 13:1 31:2 32:1 55:1 56:1 75:1 85:2 88:1 89:2 98:1 113:1 146:2 154:1 166:1 174:1 180:1 184:1 209:1 213:1 223:1 228:1 249:1 265:1 271:3 272:1 276:1 286:1 287:1 291:1 322:1 359:3 385:1 391:1 392:1 395:1 415:1 425:1 429:1 446:1 452:1 471:1 479:2 501:1 505:1 509:1 515:1 544:1 553:1 562:1 564:1 607:2 620:1 623:1 644:2 658:16 663:3 667:1 682:1 686:1 696:1 714:1 719:1 728:2 735:1 749:1 783:1 809:1 813:2 815:1 817:2 820:2 822:1 823:1 857:1 861:2 904:1 905:6 908:1 917:5 937:2 951:2 960:3 964:1 965:1 970:1 976:1 982:2 999:1 1006:1 1027:1 1029:1 1032:1 1048:1 1055:2 1099:1 1112:1 1158:1 1160:2 1190:1 1211:1 1214:15 1220:1 1223:2 1224:1 1229:3 1256:1 1258:1 1270:1 1279:1 1280:1 1281:1 1298:1 1314:1 1338:1 1354:1 1356:2 1380:1 1393:1 1397:1 1402:2 1404:1 1444:1 1452:2 1462:2 1475:1 1499:1 1501:1 1502:2 1510:4 1516:1 1546:1 1576:2 1582:1 1598:1 1602:2 1615:1 1631:1 1636:1 1647:1 1676:1 1677:1 1685:1 1690:1 1691:1 1740:2 1745:3 1776:1 1783:1 1795:1 1820:1 1827:1 1842:1 1853:1 1866:1 1870:1 1871:1 1878:1 1895:1 1897:1 1898:1 1921:2 1937:1 1941:2 1947:2 1959:1 1982:1 1993:1 2022:3 2042:1 2051:1 2053:1 2077:1 2094:1 2123:1 2145:1 2172:1 2176:1 2196:4 2217:1 2235:1 2291:1 2299:1 2325:1 2333:1 2334:1 2336:3 2338:2 2339:1 2341:1 2342:3 2347:2 2352:3 2356:3 2359:1 2362:1 2364:1 2369:1 2372:1 2375:1 2382:1 2406:1 2421:2 2422:1 2430:3 2457:2 2460:1 2479:1 2494:1 2495:2 2503:1 2514:1 2522:2 2533:1 2539:1 2550:2 2571:1 2610:1 2646:2 2674:1 2681:1 2730:1 2735:1 2736:2 2751:2 2758:1 2775:1 2787:1 2804:1 2812:2 2813:1 2819:1 2822:2 2826:1 2833:1 2872:1 2877:1 2883:2 2889:1 2892:1 2901:2 2949:1 2956:1 2982:9 2984:16 2986:1 2990:1 2991:2 2998:2 3002:1 3014:1 3018:1 3023:3 3029:1 3032:1 3039:4 3049:1 3053:2 3057:1 3070:1 3091:1 3100:1 3133:2 3169:1 3267:1 3281:1 3301:1 3316:1 3340:1 3351:1 3354:2 3360:1 3393:1 3401:1 3482:1 3486:1 3502:1 3506:1 3536:1 3540:1 3550:1 3552:1 3601:1 3604:1 3632:1 3642:1 3666:1 3690:1 3697:1 3704:1 3734:1 3758:1 3773:1 3774:1 3775:1 3779:1 3782:1 3831:2 3833:1 3872:1 3877:1 3884:1 3907:1 3909:1 3938:1 3940:1 3946:2 3964:1 3985:1 3990:15 3991:2 4012:1 4049:1 4052:1 4056:1 4066:1 4072:1 4079:1 4081:2 4096:2 4108:1 4113:1 4117:4 4132:2 4171:1 4196:1 4208:2 4216:1 4260:1 4262:1 4264:1 4267:1 4269:1 4277:1 4309:2 4310:1 4312:2 4317:1 4319:1 4331:1 4357:1 4434:15 4443:1 4446:1 4448:1 4452:3 4466:1 4477:1 4479:1 4535:6 4550:1 4553:1 4557:1 4590:3 4604:2 4610:1 4618:1 4622:1 4629:1 4648:1 4668:3 4676:1 4698:1 4717:1 4744:1 4774:1 4790:1 4811:1 4812:1 4818:3 4826:1 4898:1 4902:1 4903:1 4908:2 4909:1 4916:1 4920:1 4942:1 4943:1 4977:1 4983:1 4997:1 4998:1 5012:7 5013:2 5022:1 5046:1 5053:2 5087:1 5089:1 5138:2 5140:1 5149:1 5159:2 5160:2 5161:1 5167:3 5174:1 5175:3 5183:1 5190:2 5192:3 5194:2 5195:1 5205:1 5230:1 5264:1 5268:1 5361:1 5427:1 5438:1 5439:2 5485:1 5486:1 5496:1 5534:1 5574:1 5577:1 5579:1 5583:1 5603:1 5626:1 5630:2 5634:1 5690:1 5716:1 5724:1 5740:1 5741:1 5780:1 5784:1 5790:1 5794:1 5807:1 5833:1 5839:1 5853:1 5908:2 5921:1 5924:1 5926:1 5939:1 6027:1 6064:1 6065:1 6076:1 6079:1 6092:1 6097:1 6118:1 6143:1 6149:1 6151:1 6168:1 6195:1 6203:1 6208:2 6211:1 6247:1 6296:1 6307:1 6311:1 6312:1 6313:1 6315:1 6324:1 6325:2 6345:1 6356:1 6388:1 6391:1 6399:1 6408:3 6410:1 6428:1 6456:1 6479:2 6486:1 6500:1 6510:1 6523:4 6528:1 6534:3 6538:1 6539:1 6545:1 6546:1 6550:1 6552:6 6581:1 6600:2 6619:1 6657:1 6667:1 6674:2 6679:3 6736:1 6744:1 6746:1 6763:1 6769:1 6772:1 6776:1 6785:1 6792:1 6795:1 6820:1 6831:1 6850:1 6853:1 6866:1 6872:1 6899:1 6901:1 6904:1 6908:3 6927:1 6939:1 6960:1 6962:1 6967:1 6997:1 7030:1 7063:2 7083:1 7101:1 7102:1 7114:1 7130:1 7178:1 7184:1 7187:1 7192:1 7203:1 7217:4 7269:1 7271:1 7287:2 7301:2 7332:1 7369:2 7398:1 7406:1 7412:1 7413:1 7428:1 7435:1 7442:1 7485:1 7495:1 7496:1 7508:1 7563:1 7571:1 7596:3 7629:4 7632:1 7636:1 7663:1 7664:2 7679:1 7707:1 7718:1 7725:1 7748:3 7749:1 7779:1 7787:1 7803:1 7815:5 7816:6 7821:1 7833:1 7835:5 7864:3 7868:1 7878:20 7882:1 7883:1 7886:2 7890:1 7897:9 7900:2 7903:1 7908:1 7911:1 7932:1 7933:1 7941:1 7949:1 7985:3 7996:1 8013:1 8014:1 8037:1 8039:2 8054:2 8065:1 8071:1 8075:1 8077:1 8087:1 8105:1 8109:3 8129:1 8159:1 8162:1 8196:1 8249:1 8253:1 8290:1 8300:1 8312:2 8351:1 8364:1 8376:1 8377:16 8384:1 8392:1 8396:1 8410:7 8411:2 8428:1 8443:1 8445:1 8449:2 8466:1 8475:1 8480:1 8492:20 8501:1 8588:1 8596:1 8645:1 8657:1 8659:2 8667:1 8671:1 8677:1 8683:1 8687:1 8693:2 8694:1 8713:1 8720:1 8750:1 8760:2 8762:1 8763:1 8766:1 8768:1 8778:1 8779:2 8782:1 8783:1 8792:1 8822:1 8832:1 8836:1 8841:1 8845:1 8862:2 8915:1 8923:1 8931:1 8987:2 8989:1 9014:2 9052:1 9057:1 9059:1 9061:1 9086:1 9090:3 9110:1 9111:1 9112:1 9118:1 9129:1 9138:1 9139:1 9184:1 9196:1 9236:1 9238:2 9247:1 9256:1 9320:2 9343:1 9378:2 9382:2 9384:1 9391:1 9393:2 9394:1 9396:1 9400:1 9404:1 9408:1 9415:1 9429:1 9435:1 9442:1 9445:1 9446:1 9447:2 9449:1 9456:1 9466:1 9473:2 9483:4 9490:2 9496:1 9504:1 9525:1 9546:1 9558:1 9563:1 9564:2 9580:1 9610:1 9611:1 9616:1 9623:1 9642:1 9660:1 9661:1 9675:1 9677:2 9678:4 9701:2 9706:1 9717:1 9719:3 9726:1 9738:1 9779:1 9782:1 9797:1 9802:1 9803:1 9804:1 9841:1 9855:1 9856:1 9860:1 9887:1 9905:5 9916:1 9921:2 9924:3 9936:1 9987:1 10028:1 10046:15 10055:1 10061:1 10083:1 10092:1 10097:1 10115:1 10117:1 10122:1 10131:1 10134:1 10170:2 10174:1 10177:2 10184:1 10188:2 10195:2 10229:1 10242:2 10252:1 10260:1 10261:2 10280:1 10284:3 10297:2 10299:1 10322:2 10337:1 10339:1 10350:1 10359:1 10362:1 10381:1 10383:2 10388:1 10404:1 10417:1 10426:3 10440:1 10518:1 10526:1 10542:2 10564:1 10582:1 10604:1 10623:1 10624:3 10641:1 10664:1 10681:1 10691:1 10707:1 10725:1 10740:2 10745:1 10758:1 10760:2 10773:1 10786:2 10840:1 10842:1 10859:1 10860:4 10864:1 10867:2 10874:1 10882:1 10894:1 10907:1 10912:1 10923:1 10929:4 10942:1 10956:1 10976:1 10990:1 11036:1 11066:1 11083:1 11098:2 11111:2 11114:3 11124:1 11143:2 11152:1 11158:1 11167:1 11170:1 11176:1 11195:1 11197:4 11200:1 11203:1 11215:1 11217:2 11219:2 11220:1 11234:1 11237:1 11246:1 11264:1 11276:4 11279:1 11285:1 11286:1 11293:1 11300:1 11303:2 11311:1 11320:1 11347:2 11375:1 11383:1 11385:1 11390:1 11404:3 11407:1 11456:1 11464:1 11474:1 11476:1 11483:1 11490:1 11503:3 11505:1 11508:1 11511:1 11518:1 11532:1 11535:2 11552:1 11571:2 11609:1 11617:1 11622:1 11629:1 11636:5 11648:2 11649:1 11674:1 11679:1 11695:1 11702:1 11714:1 11732:1 11750:2 11770:1 11775:2 11812:1 11824:1 11827:1 11834:1 11838:1 11839:3 11845:2 11851:3 11871:1 11878:1 11881:2 11891:1 11899:1 11900:1 11904:1 11930:1 11936:1 11949:1 11979:1 11992:1 11996:1 12003:3 12011:1 12043:2 12090:1 12092:1 12110:1 12163:1 12240:3 12261:2 12281:1 12283:1 12337:1 12338:1 12339:1 12364:1 12385:1 12421:1 12444:1 12455:1 12460:2 12461:3 12470:1 12510:1 12513:2 12522:1 12532:1 12588:1 12597:3 12599:1 12612:1 12613:1 12648:1 12650:1 12657:1 12664:1 12723:1 12763:1 12767:1 12790:2 12792:16 12800:1 12809:1 12813:4 12821:1 12859:3 12873:1 12884:1 12888:1 12922:1 12927:1 12964:1 12967:1 13001:1 13008:1 13024:2 13032:1 13086:1 13100:1 13116:1 13132:1 13141:2 13145:1 13180:1 13217:1 13239:1 13262:1 13268:1 13269:1 13280:1 13286:6 13291:1 13307:1 13313:1 13340:1 13412:1 13417:1 13418:1 13419:1 13424:2 13427:1 13430:1 13437:1 13480:1 13482:1 13491:6 13495:1 13584:1 13585:1 13595:1 13626:1 13639:3 13641:2 13647:1 13673:1 13676:1 13695:1 13700:1 13707:1 13713:1 13716:1 13717:1 13729:1 13732:1 13747:1 13766:1 13770:1 13772:1 13775:1 13782:5 13805:1 13808:1 13809:1 13814:3 13827:2 13859:1 13868:1 13869:1 13873:1 13901:1 13910:1 13928:1 13935:1 13941:1 13951:5 13955:1 13974:1 13980:1 13988:1 13998:1 14012:1 14028:1 14030:2 14038:2 14052:1 14057:3 14059:1 14069:5 14072:3 14096:1 14107:1 14147:2 14156:1 14177:4 14232:1 14241:1 14259:1 14261:2 14314:1 14361:4 14422:1 14449:1 14451:1 14460:2 14466:2 14468:3 14485:1 14486:1 14541:1 14560:1 14574:1 14575:1 14576:1 14592:1 14607:1 14621:1 14625:1 14627:1 14629:1 14634:1 14643:1 14653:1 14657:1 14659:1 14664:1 14688:1 14699:16 14705:2 14708:1 14709:1 14714:1 14721:1 14736:1 14786:1 14789:1 14792:3 14800:1 14801:1 14806:1 14827:1 14832:1 14847:3 14863:1 14869:1 14887:1 14890:1 14900:1 14939:1 14993:1 15000:1 15003:1 15010:1 15031:1 15054:1 15069:1 15070:2 15087:1 15105:1 15106:1 15109:5 15169:1 15193:2 15197:1 15208:1 15218:1 15237:2 15245:1 15247:1 15257:1 15258:1 15278:1 15299:1 15322:1 15340:2 15380:1 15386:1 15462:2 15465:1 15478:1 15482:1 15542:1 15555:1 15556:1 15557:1 15584:1 15608:3 15610:1 15616:2 15653:1 15674:1 15678:1 15690:1 15718:1 15730:1 15742:1 15762:2 15779:1 15783:1 15796:2 15802:2 15805:1 15818:2 15827:1 15835:1 15888:1 15890:1 15899:1 15921:4 15931:1 15951:1 15961:2 16023:1 16038:1 16051:1 16057:1 16060:7 16062:2 16096:1 16098:2 16100:1 16105:1 16133:1 16140:1 16142:1 16143:2 16165:8 16178:1 16186:1 16200:2 16203:1 16239:1 16250:1 16254:1 16264:1 16271:1 16285:4 16291:3 16292:1 16299:1 16301:1 16304:1 16357:1 16387:1 16392:1 16404:1 16413:1 16416:1 16419:1 16440:1 16455:1 16457:1 16476:1 16484:1 16510:1 16522:1 16524:1 16527:1 16604:1 16613:1 16617:1 16631:2 16644:1 16646:1 16649:1 16679:1 16689:1 16692:1 16751:1 16757:1 16769:1 16773:2 16776:1 16797:1 16800:1 16810:1 16811:2 16822:1 16881:1 16899:1 16926:23 16932:1 16933:1 16949:1 16951:1 16963:1 16967:2 17020:1 17028:1 17042:1 17047:1 17068:2 17072:2 17083:1 17103:1 17138:1 17143:1 17144:1 17166:1 17181:1 17208:1 17213:1 17234:1 17236:2 17281:1 17361:1 17375:1 17380:1 17383:1 17384:1 17424:1 17440:1 17450:1 17457:1 17459:2 17465:1 17475:1 17484:1 17535:2 17549:2 17555:1 17560:1 17579:1 17604:1 17632:2 17637:2 17649:1 17662:1 17671:2 17711:1 17727:1 17731:1 17758:3 17766:2 17787:1 17812:1 17817:1 17855:3 17859:1 17860:1 17909:1 17926:1 17929:1 17930:1 17936:1 17937:1 17964:1 18012:1 18013:3 18018:1 18026:1 18058:1 18098:1 18100:1 18146:2 18206:2 18210:1 18223:1 18234:1 18245:1 18300:3 18310:1 18316:1 18332:1 18374:1 18377:2 18395:1 18419:1 18447:1 18462:1 18499:1 18507:1 18516:1119 18527:1 18538:1 18551:1 18566:1 18587:1 18597:1 18604:1 18638:2 18648:1 18651:2 18653:1 18678:1 18707:1 18712:1 18724:1 18780:1 18832:1 18863:1 18864:1 18894:1 18902:1 18933:1 18952:1 18969:1 18976:2 18986:1 19014:2 19016:1 19034:1 19037:1 19083:1 19085:3 19116:2 19120:1 19128:1 19178:1 19184:1 19192:1 19198:1 19219:1 19230:1 19253:1 19259:1 19268:1 19276:1 19282:3 19283:2 19290:1 19315:1 19318:2 19342:2 19377:7 19384:1 19399:2 19420:2 19421:1 19427:1 19428:1 19451:3 19461:2 19469:1 19481:2 19490:2 19491:1 19500:1 19509:1 19558:1 19561:1 19574:1 19584:2 19589:1 19609:1 19611:1 19656:1 19658:1 19697:1 19728:1 19732:1 19793:1 19813:1 19819:1 19822:1 19823:1 19829:1 19835:1 19847:1 19851:1 19866:1 19896:1 19927:1 19929:3 19937:1 19950:1 19957:1 19962:1 19986:1 19992:1 19995:1 20002:1 20029:1 20030:2 20033:1 20042:1 20043:1 20051:4 20099:1 20109:1 20117:1 20123:1 20132:1 20144:1 20156:1 20162:1 20185:1 20199:1 20211:3 20223:2 20244:1 20258:1 20259:1 20268:1 20311:1 20338:1 20387:1 20390:1 20451:2 20460:1 20483:1 20484:1 20495:1 20499:2 20500:1 20513:2 20541:1 20555:1 20602:1 20605:1 20630:1 20661:1 20664:1 20691:2 20697:1 20702:2 20711:1 20720:1 20725:1 20748:1 20754:1 20762:2 20764:2 20767:1 20773:3 20788:1 20789:1 20798:1 20799:1 20808:1 20810:1 20833:1 20840:1 20842:2 20848:1 20853:2 20862:1 20869:2 20878:1 20886:1 20892:2 20940:1 20942:3 20953:1 20958:1 20994:1 20996:1 21001:2 21004:1 21021:1 21026:1 21037:2 21057:1 21061:1 21071:1 21078:1 21114:1 21122:1 21137:1 21155:1 21185:1 21202:1 21204:1 21206:2 21237:2 21257:1 21271:2 21276:1 21285:1 21286:1 21310:1 21311:1 21313:1 21351:1 21363:1 21364:1 21369:2 21398:1 21414:1 21442:1 21455:1 21464:2 21508:2 21530:1 21543:1 21558:2 21562:1 21570:1 21574:1 21577:1 21625:3 21658:1 21699:1 21705:3 21712:1 21715:3 21719:1 21728:2 21739:1 21748:1 21764:6 21775:1 21791:1 21835:1 21843:1 21845:1 21879:2 21881:4 21884:1 21895:1 21896:1 21906:1 21908:1 21915:1 21918:1 21919:1 21923:1 21924:2 21925:1 21936:1 21939:1 21947:1 21955:1 21997:1 22000:1 22026:1 22028:1 22047:1 22058:2 22062:1 22066:4 22082:2 22095:1 22114:1 22128:2 22133:1 22161:2 22175:1 22179:2 22214:1 22219:1 22235:1 22242:1 22248:6 22267:2 22310:8 22312:1 22316:1 22321:1 22365:4 22368:1 22370:1 22383:1 22416:1 22418:1 22425:7 22439:1 22456:2 22462:1 22471:1 22479:1 22481:1 22490:1 22516:1 22536:1 22543:1 22555:3 22566:1 22599:3 22640:1 22671:1 22688:1 22691:1 22694:15 22709:1 22713:1 22714:2 22721:1 22752:1 22757:1 22759:1 22760:1 22770:1 22771:1 22805:1 22809:1 22816:1 22842:1 22852:2 22861:1 22871:4 22874:1 22901:1 22986:1 22990:1 23000:2 23019:1 23074:1 23075:1 23079:1 23083:1 23093:1 23095:2 23103:1 23108:1 23111:1 23115:1 23147:16 23168:2 23169:1 23186:1 23199:1 23223:1 23228:1 23235:2 23242:1 23247:6 23283:1 23289:1 23307:1 23321:2 23325:1 23329:1 23358:1 23371:1 23379:2 23381:2 23408:1 23487:1 23506:1 23509:2 23525:1 23543:1 23593:1 23596:1 23617:1 23622:1 23641:1 23651:2 23664:1 23670:1 23740:1 23752:1 23767:2 23772:1 23775:1 23785:1 23802:1 23817:1 23838:1 23857:1 23890:1 23891:1 23895:1 23912:1 23915:1 23941:1 23956:1 23957:2 23982:1 24008:2 24013:1 24028:2 24065:1 24067:1 24069:2 24075:1 24080:2 24092:1 24093:2 24097:2 24105:1 24114:1 24144:2 24186:5 24213:1 24217:1 24220:1 24225:1 24235:1 24275:1 24291:1 24334:1 24366:1 24379:1 24384:1 24388:2 24414:1 24420:1 24427:1 24435:1 24444:1 24480:3 24484:2 24493:1 24499:3 24505:1 24536:2 24552:1 24572:1 24576:2 24577:2 24620:1 24623:1 24628:3 24646:1 24653:1 24661:1 24676:1 24687:1 24689:1 24699:1 24711:1 24757:1 24779:1 24797:1 24802:1 24803:1 24815:1 24854:1 24858:1 24859:2 24863:1 24871:2 24911:1 24922:2 24943:1 24974:1 24979:1 25025:1 25075:1 25077:2 25097:1 25100:2 25107:1 25133:1 25134:1 25166:2 25173:1 25181:1 25205:1 25212:1 25222:1 25227:1 25248:1 25255:1 25279:1 25281:1 25283:1 25284:1 25310:1 25328:2 25351:1 25362:1 25378:1 25383:1 25384:1 25387:1 25402:1 25408:1 25415:1 25423:1 25440:2 25451:2 25454:1 25467:1 25485:1 25499:2 25511:1 25516:3 25546:2 25573:1 25576:6 25585:2 25599:1 25617:1 25628:1 25693:1 25705:1 25707:1 25710:1 25713:2 25718:1 25740:1 25741:1 25766:1 25777:1 25809:1 25823:1 25832:1 25844:1 25850:2 25861:1 25874:1 25876:1 25884:2 25895:1 25920:1 25929:1 25944:1 25955:1 25956:1 25964:1 25989:1 25995:3 25998:1 26005:2 26018:1 26019:1 26022:5 26023:1 26042:1 26061:1 26074:1 26093:3 26113:1 26119:1 26122:1 26125:1 26130:1 26156:1 26182:1 26202:2 26253:2 26268:1 26272:1 26278:1 26283:1 26286:1 26333:1 26356:1 26399:1 26428:1 26429:1 26440:2 26450:1 26465:1 26498:1 26509:1 26525:1 26536:1 26546:1 26597:1 26609:2 26616:1 26626:1 26630:1 26632:5 26653:1 26654:2 26663:1 26675:4 26691:1 26703:2 26734:1 26743:3 26744:1 26746:2 26754:1 26764:1 26774:1 26778:1 26789:3 26794:1 26796:1 26799:1 26813:1 26847:1 26866:1 26870:1 26875:1 26878:1 26884:1 26894:1 26899:1 26901:1 26911:1 26915:1 26918:3 26923:2 26930:1 26931:1 26932:1 26945:2 26971:2 26979:1 26994:1 27043:1 27054:2 27064:2 27082:1 27096:1 27100:2 27130:1 27131:1 27145:1 27150:1 27178:1 27188:1 27196:1 27206:1 27224:1 27228:1 27235:1 27236:1 27249:1 27251:3 27254:2 27258:2 27266:2 27271:2 27276:2 27287:1 27296:1 27297:1 27299:2 27311:1 27318:1 27320:1 27329:1 27347:3 27365:3 27390:1 27401:1 27405:2 27411:1 27418:1 27424:1 27451:1 27468:1 27472:1 27502:1 27504:1 27516:1 27540:1 27556:1 27620:1 27658:3 27659:2 27670:2 27673:3 27689:1 27713:1 27718:1 27722:1 27727:1 27732:1 27734:1 27745:1 27784:2 27802:2 27832:1 27858:1 27868:1 27874:1 27898:1 27909:1 27912:1 27950:1 27953:1 27956:1 27969:12 27999:1 28008:5 28060:1 28080:2 28095:1 28105:1 28117:5 28123:2 28134:1 28151:1 28152:1 28165:5 28170:1 28177:1 28207:1 28212:1 28214:1 28222:1 28231:1 28243:2 28258:1 28283:1 28296:2 28375:1 28392:20 28413:1 28416:3 28417:1 28423:3 28424:1 28457:1 28485:3 28490:6 28503:1 28512:1 28522:1 28545:1 28546:2 28584:1 28597:1 28610:1 28615:2 28634:1 28635:1 28647:1 28660:1 28669:1 28690:2 28701:1 28710:1 28782:1 28785:1 28787:2 28796:1 28798:1 28814:1 28859:2 28865:1 28875:2 28894:2 28903:1 28913:1 28954:1 28959:1 28964:1 28976:1 29000:1 29003:1 29005:2 29027:1 29031:2 29042:4 29057:1 29062:2 29063:2 29073:16 29100:1 29128:1 29137:1 29139:1 29146:2 29147:2 29183:1 29223:1 29240:1
2 12:1 13:1 31:2 32:1 55:1 56:1 75:1 85:2 88:1 89:2 98:1 113:1 146:2 154:1 166:1 174:1 180:1 184:1 209:1 213:1 223:1 228:1 249:1 265:1 271:3 272:1 276:1 286:1 287:1 291:1 322:1 359:3 385:1 391:1 392:1 395:1 415:2 425:1 429:1 446:1 452:1 471:1 479:2 501:1 505:1 509:1 515:1 544:1 553:1 562:1 564:1 607:2 620:1 623:1 644:2 658:17 663:3 667:1 682:1 686:1 696:1 714:1 719:1 728:2 735:1 749:1 783:2 809:1 813:2 815:1 817:2 820:2 822:1 823:1 857:1 861:2 904:2 905:6 908:1 917:5 937:2 951:2 960:3 964:1 965:1 970:1 976:1 982:2 999:1 1003:1 1006:1 1027:1 1029:1 1032:1 1048:2 1055:3 1098:1 1099:1 1112:1 1158:1 1160:2 1190:1 1211:1 1214:16 1220:1 1223:2 1224:1 1229:3 1232:1 1256:1 1258:2 1270:1 1279:1 1280:1 1281:1 1298:1 1302:1 1314:1 1338:1 1354:1 1356:2 1380:1 1393:1 1397:1 1402:2 1404:1 1444:1 1452:2 1462:2 1475:1 1499:1 1501:1 1502:2 1510:4 1516:1 1546:1 1576:2 1582:1 1598:1 1602:2 1615:1 1631:1 1636:1 1647:1 1676:1 1677:1 1685:1 1690:1 1691:1 1728:1 1740:2 1745:3 1776:1 1783:1 1795:1 1820:1 1827:1 1842:1 1853:1 1866:1 1870:1 1871:1 1878:1 1895:1 1897:1 1898:1 1921:2 1937:1 1941:2 1947:2 1959:1 1982:1 1993:1 2022:3 2042:1 2051:1 2053:1 2077:1 2094:1 2123:1 2145:1 2172:1 2176:1 2196:4 2217:1 2235:1 2291:1 2299:1 2325:1 2333:1 2334:1 2336:3 2338:2 2339:1 2341:1 2342:3 2347:2 2352:3 2356:3 2359:1 2362:1 2364:1 2369:1 2372:1 2375:1 2382:1 2406:1 2421:2 2422:1 2430:3 2457:2 2460:1 2478:1 2479:1 2494:1 2495:2 2503:1 2514:3 2522:2 2533:1 2539:1 2550:2 2571:1 2610:1 2646:2 2663:1 2674:1 2681:1 2730:1 2735:1 2736:2 2751:2 2758:1 2775:1 2787:1 2804:1 2809:1 2812:3 2813:1 2819:1 2822:2 2826:1 2833:1 2872:1 2877:1 2883:3 2889:1 2892:1 2901:2 2949:1 2956:1 2982:10 2984:17 2986:1 2990:1 2991:2 2998:2 3002:1 3014:1 3018:1 3023:3 3024:1 3029:1 3032:1 3039:4 3049:1 3053:2 3057:1 3070:1 3091:1 3100:1 3101:1 3133:2 3169:1 3267:1 3281:1 3297:1 3301:1 3316:1 3340:1 3351:1 3354:2 3360:1 3368:1 3393:1 3401:1 3419:1 3482:1 3486:1 3502:1 3506:1 3525:1 3527:1 3536:1 3540:1 3550:1 3552:1 3601:1 3604:1 3632:1 3642:1 3666:1 3690:1 3697:1 3704:1 3734:1 3758:1 3773:1 3774:1 3775:1 3779:1 3782:1 3831:2 3833:1 3872:1 3877:1 3884:1 3907:1 3909:1 3938:1 3940:1 3946:2 3964:1 3985:1 3990:16 3991:2 4012:1 4049:1 4052:1 4056:1 4066:1 4072:1 4079:2 4081:2 4096:2 4108:1 4113:1 4117:4 4118:1 4132:2 4171:1 4196:1 4208:2 4216:1 4231:1 4260:1 4262:1 4264:1 4267:1 4269:1 4277:1 4307:1 4309:2 4310:1 4312:2 4317:1 4319:2 4331:1 4357:1 4405:1 4424:1 4434:16 4443:1 4446:1 4448:1 4452:3 4466:1 4477:1 4479:1 4535:6 4550:1 4553:1 4557:1 4590:3 4604:2 4610:1 4618:1 4622:1 4629:1 4648:1 4668:6 4676:1 4698:1 4717:1 4744:1 4774:1 4790:1 4811:1 4812:1 4818:3 4826:1 4854:1 4898:1 4902:1 4903:1 4908:2 4909:1 4916:1 4920:1 4942:1 4943:2 4977:1 4983:1 4997:1 4998:1 5012:8 5013:2 5022:1 5046:1 5053:2 5087:1 5089:1 5138:3 5140:1 5149:1 5159:2 5160:2 5161:1 5167:3 5174:1 5175:3 5183:1 5190:2 5192:3 5194:2 5195:1 5205:1 5230:1 5264:1 5268:1 5361:1 5403:1 5427:1 5438:1 5439:2 5485:1 5486:1 5496:1 5534:1 5549:1 5574:1 5577:2 5579:1 5583:1 5603:1 5606:1 5626:1 5630:2 5634:1 5690:1 5713:1 5716:1 5724:1 5740:1 5741:1 5780:1 5784:1 5790:1 5794:1 5807:1 5822:1 5833:1 5839:1 5841:1 5853:1 5908:2 5921:1 5924:1 5926:1 5939:1 6017:1 6027:1 6064:1 6065:1 6076:1 6079:1 6092:1 6097:1 6118:1 6143:1 6149:1 6151:1 6168:1 6182:1 6195:1 6203:1 6208:2 6211:1 6247:1 6294:1 6295:1 6296:1 6307:1 6308:1 6311:1 6312:1 6313:1 6315:1 6324:1 6325:2 6345:1 6356:1 6388:1 6391:1 6399:1 6408:3 6410:2 6416:1 6428:1 6456:1 6479:2 6486:1 6500:1 6510:1 6523:4 6528:1 6534:3 6538:1 6539:1 6545:1 6546:1 6550:1 6552:6 6560:1 6581:1 6600:2 6619:1 6657:1 6667:1 6674:2 6679:3 6720:1 6736:1 6744:1 6746:1 6763:1 6769:1 6772:1 6776:1 6785:1 6792:1 6795:1 6820:1 6831:1 6850:1 6853:1 6866:1 6872:1 6899:1 6901:1 6904:1 6908:3 6927:1 6939:1 6960:1 6962:1 6967:1 6997:1 7030:1 7063:2 7083:1 7101:1 7102:1 7114:1 7130:1 7178:1 7184:1 7187:1 7192:1 7203:1 7217:4 7269:1 7271:1 7277:1 7287:2 7301:2 7332:1 7369:2 7398:1 7406:1 7412:1 7413:1 7428:1 7435:1 7442:1 7485:1 7495:1 7496:1 7508:1 7563:1 7571:1 7582:1 7596:3 7629:4 7632:1 7636:1 7663:1 7664:2 7679:1 7707:1 7718:1 7725:1 7748:3 7749:1 7779:1 7787:1 7803:1 7815:6 7816:6 7821:1 7833:1 7835:5 7864:3 7868:1 7878:20 7882:1 7883:1 7886:2 7890:1 7897:10 7900:2 7903:1 7908:1 7911:1 7932:1 7933:1 7941:1 7949:1 7985:3 7996:1 8013:1 8014:1 8037:1 8039:2 8054:2 8065:1 8071:1 8075:2 8077:1 8087:1 8105:1 8109:3 8119:1 8129:1 8159:1 8162:2 8196:1 8249:1 8253:1 8290:1 8300:1 8312:2 8351:1 8364:1 8376:1 8377:17 8384:1 8392:1 8396:1 8410:7 8411:3 8428:1 8443:1 8445:1 8449:2 8466:1 8475:1 8480:1 8492:21 8501:1 8588:1 8596:1 8645:1 8657:1 8659:2 8667:1 8671:1 8677:1 8683:1 8687:1 8693:3 8694:1 8713:1 8720:1 8750:1 8760:2 8762:1 8763:1 8766:1 8768:1 8778:1 8779:2 8782:1 8783:1 8792:1 8822:1 8832:1 8836:1 8841:1 8845:1 8862:2 8915:1 8923:1 8931:1 8987:2 8989:1 9014:2 9052:1 9057:1 9059:1 9061:1 9069:1 9086:1 9090:3 9110:1 9111:1 9112:1 9118:1 9129:2 9138:1 9139:1 9140:1 9184:1 9196:1 9236:1 9238:3 9247:1 9256:1 9320:2 9343:1 9378:3 9382:2 9384:1 9391:1 9393:3 9394:1 9396:1 9400:1 9404:1 9406:1 9408:1 9415:1 9429:1 9435:1 9442:1 9445:1 9446:1 9447:2 9449:1 9456:1 9466:1 9473:2 9483:4 9490:2 9496:2 9504:1 9525:1 9546:1 9558:1 9563:1 9564:2 9580:1 9607:1 9610:1 9611:1 9616:1 9623:1 9624:1 9637:1 9642:1 9660:1 9661:1 9675:1 9677:2 9678:4 9701:2 9703:1 9706:1 9715:1 9717:1 9719:3 9723:1 9726:1 9738:1 9779:1 9782:1 9797:1 9802:1 9803:1 9804:1 9841:1 9855:1 9856:1 9860:1 9887:1 9905:5 9916:1 9921:2 9924:3 9936:1 9987:1 10028:1 10046:16 10055:1 10061:1 10083:1 10092:1 10097:1 10115:1 10117:1 10122:1 10131:1 10134:1 10170:2 10174:1 10177:2 10184:1 10188:2 10195:2 10229:1 10242:2 10252:1 10260:1 10261:2 10280:1 10284:3 10297:2 10299:1 10322:3 10337:1 10339:1 10350:1 10359:1 10362:1 10381:1 10383:2 10388:1 10404:1 10417:1 10426:3 10440:1 10518:1 10526:1 10542:2 10564:1 10582:1 10604:1 10623:1 10624:3 10641:1 10664:1 10681:1 10691:1 10707:1 10725:1 10740:2 10745:1 10758:1 10760:3 10773:1 10786:2 10820:1 10840:1 10842:1 10859:1 10860:4 10864:1 10867:2 10874:1 10882:1 10894:1 10907:1 10912:1 10923:1 10929:4 10942:1 10956:1 10976:1 10990:1 11036:1 11066:1 11083:1 11098:2 11111:2 11114:3 11117:1 11124:1 11143:2 11152:1 11158:1 11167:1 11170:1 11176:1 11195:1 11197:7 11200:1 11203:1 11215:1 11217:2 11219:3 11220:1 11234:1 11237:1 11246:1 11264:1 11276:4 11279:1 11285:1 11286:1 11293:1 11300:1 11303:2 11311:1 11320:1 11347:2 11375:1 11383:1 11385:1 11390:1 11404:3 11407:1 11456:1 11464:1 11474:1 11476:1 11483:1 11490:1 11503:3 11505:1 11508:1 11511:1 11518:1 11532:1 11535:2 11552:1 11571:2 11609:1 11617:1 11622:1 11629:1 11636:5 11648:2 11649:1 11674:1 11679:1 11695:1 11702:1 11714:1 11732:1 11750:2 11770:1 11775:2 11812:1 11824:1 11827:1 11834:1 11838:1 11839:3 11840:1 11845:2 11851:3 11871:1 11878:1 11881:2 11891:1 11899:1 11900:2 11904:1 11916:1 11930:1 11936:1 11949:1 11979:1 11992:1 11996:1 12003:3 12011:1 12039:1 12043:2 12090:1 12092:1 12110:1 12163:1 12240:3 12261:3 12281:1 12283:1 12337:1 12338:1 12339:1 12364:1 12385:1 12421:1 12444:1 12455:1 12460:2 12461:3 12470:1 12510:1 12513:2 12522:1 12532:1 12588:1 12597:3 12599:1 12612:1 12613:1 12648:1 12650:1 12657:1 12664:1 12723:1 12763:1 12767:1 12790:2 12792:17 12800:1 12809:1 12813:4 12821:1 12859:4 12873:1 12884:2 12888:1 12922:1 12927:1 12964:1 12967:1 12980:1 13001:1 13008:1 13024:2 13032:1 13038:1 13086:1 13100:1 13116:1 13132:1 13141:2 13145:1 13180:1 13217:1 13239:1 13262:1 13268:1 13269:1 13280:1 13286:7 13291:1 13307:1 13313:1 13326:1 13340:1 13384:1 13412:1 13417:1 13418:1 13419:2 13424:2 13427:2 13430:1 13437:1 13480:1 13482:1 13491:6 13495:1 13584:1 13585:1 13595:1 13626:1 13639:3 13641:2 13647:1 13673:1 13676:1 13695:1 13700:1 13707:1 13713:1 13716:1 13717:1 13729:1 13732:1 13747:1 13766:1 13770:1 13772:1 13775:1 13780:1 13782:5 13783:1 13805:1 13808:1 13809:1 13814:3 13827:2 13859:1 13868:1 13869:1 13873:1 13901:1 13910:1 13928:1 13935:1 13941:1 13951:7 13955:1 13974:1 13980:1 13988:1 13998:1 14012:1 14028:1 14030:2 14038:3 14052:1 14057:3 14059:1 14069:5 14072:3 14096:1 14107:1 14147:2 14156:1 14177:4 14232:1 14241:1 14259:1 14261:2 14314:1 14361:4 14422:1 14449:1 14451:1 14460:2 14466:2 14468:3 14485:1 14486:1 14541:1 14555:1 14560:1 14574:1 14575:1 14576:1 14592:2 14607:1 14621:1 14625:1 14627:1 14629:1 14634:1 14643:1 14653:1 14657:1 14659:1 14664:1 14688:1 14699:17 14705:2 14708:1 14709:1 14714:1 14721:1 14736:1 14786:1 14789:1 14792:3 14800:1 14801:1 14806:1 14827:1 14832:1 14847:3 14863:1 14869:1 14887:1 14890:1 14900:1 14902:1 14939:1 14993:1 15000:2 15003:1 15010:1 15031:1 15054:1 15069:1 15070:2 15087:1 15105:1 15106:1 15109:6 15169:1 15193:2 15197:1 15208:1 15218:1 15237:2 15245:1 15247:1 15257:1 15258:1 15278:1 15299:1 15322:1 15340:2 15380:1 15386:1 15462:2 15465:1 15478:1 15482:1 15491:1 15542:1 15555:1 15556:2 15557:1 15584:1 15608:3 15610:1 15616:2 15633:1 15653:1 15674:1 15678:1 15690:1 15718:1 15730:1 15742:1 15762:2 15779:1 15783:1 15796:3 15802:2 15805:1 15818:2 15823:1 15827:1 15835:3 15888:1 15890:1 15899:1 15921:4 15931:1 15951:1 15961:2 16023:1 16025:1 16038:1 16051:1 16057:1 16060:7 16062:2 16067:1 16096:1 16098:2 16100:1 16105:1 16133:2 16140:1 16142:1 16143:2 16165:8 16178:1 16186:1 16200:2 16203:1 16239:1 16250:1 16254:1 16264:1 16271:1 16285:4 16291:3 16292:1 16299:1 16300:1 16301:1 16304:1 16357:1 16387:1 16392:1 16404:1 16413:1 16416:1 16419:1 16440:1 16455:1 16457:1 16476:1 16484:1 16510:1 16522:1 16524:1 16527:1 16604:1 16613:1 16617:1 16631:2 16644:1 16646:1 16649:1 16679:1 16689:1 16692:1 16751:1 16757:1 16769:1 16773:3 16776:1 16797:1 16800:1 16810:1 16811:2 16822:1 16881:1 16899:1 16926:24 16932:1 16933:1 16949:1 16951:1 16963:1 16967:3 17020:1 17028:1 17042:1 17047:1 17068:2 17072:2 17083:1 17103:1 17132:1 17138:1 17143:1 17144:1 17166:1 17181:1 17208:1 17213:1 17234:1 17236:2 17250:1 17281:1 17284:1 17332:1 17361:1 17375:1 17380:1 17383:1 17384:1 17424:1 17440:1 17450:1 17452:1 17457:1 17459:2 17465:1 17475:1 17484:1 17535:2 17549:2 17555:1 17560:1 17579:1 17604:1 17632:3 17637:2 17639:1 17649:1 17662:1 17671:2 17711:2 17727:1 17731:1 17758:3 17766:2 17787:1 17812:1 17817:1 17855:4 17859:1 17860:1 17909:1 17926:1 17929:1 17930:1 17936:1 17937:1 17964:1 18012:1 18013:3 18018:1 18026:1 18058:1 18098:1 18100:1 18142:1 18146:2 18206:2 18210:1 18223:1 18234:1 18245:1 18269:1 18300:3 18310:1 18316:1 18332:1 18374:1 18377:2 18395:1 18419:1 18447:1 18462:1 18499:1 18507:1 18516:1206 18527:1 18538:1 18551:1 18566:1 18587:1 18597:1 18604:1 18638:2 18648:1 18651:2 18653:1 18678:1 18707:1 18712:1 18724:1 18780:1 18832:1 18859:1 18863:1 18864:1 18894:1 18902:1 18933:1 18952:1 18969:1 18976:2 18986:1 19014:2 19016:2 19034:1 19037:1 19083:1 19085:3 19116:3 19120:1 19128:1 19175:1 19178:1 19184:1 19192:1 19198:1 19219:1 19230:1 19253:1 19259:1 19268:1 19276:1 19282:4 19283:2 19290:1 19315:1 19318:4 19342:2 19377:9 19384:1 19399:2 19420:2 19421:1 19427:1 19428:1 19451:3 19461:2 19469:1 19481:2 19490:3 19491:1 19500:1 19509:1 19558:1 19561:1 19574:1 19584:2 19589:1 19609:1 19611:1 19656:1 19658:1 19697:1 19709:1 19726:1 19728:1 19732:1 19737:1 19793:1 19813:1 19819:1 19820:1 19822:1 19823:1 19829:1 19835:1 19847:1 19851:1 19866:1 19896:1 19927:1 19929:3 19937:1 19950:1 19957:1 19962:1 19986:1 19992:1 19995:1 20002:1 20029:2 20030:3 20033:1 20042:1 20043:1 20051:4 20099:1 20109:1 20117:1 20123:2 20132:1 20144:1 20156:1 20162:1 20185:1 20199:1 20211:3 20223:2 20244:1 20258:1 20259:1 20268:1 20311:1 20338:1 20387:1 20390:1 20451:2 20460:1 20483:1 20484:1 20495:1 20499:2 20500:1 20513:2 20541:1 20555:1 20591:1 20602:1 20605:1 20630:1 20661:1 20664:1 20691:2 20697:1 20702:2 20711:1 20720:1 20725:1 20748:1 20754:1 20762:2 20764:2 20767:1 20773:3 20788:1 20789:1 20798:1 20799:1 20808:1 20810:1 20833:1 20840:1 20842:2 20848:1 20853:2 20862:1 20869:2 20878:1 20886:1 20892:2 20940:1 20942:3 20953:1 20958:1 20994:1 20996:1 21001:2 21004:1 21021:1 21026:1 21037:2 21057:1 21061:1 21071:1 21078:1 21114:1 21122:1 21137:1 21153:1 21155:1 21185:1 21190:1 21202:1 21204:1 21206:2 21237:2 21257:1 21271:2 21276:1 21285:1 21286:1 21310:1 21311:1 21313:2 21351:2 21359:1 21363:1 21364:1 21369:2 21398:1 21414:1 21442:1 21455:1 21464:2 21508:2 21530:1 21543:1 21558:3 21562:1 21570:2 21574:1 21577:1 21610:1 21625:4 21658:1 21699:1 21705:3 21712:1 21715:3 21719:1 21728:2 21739:1 21748:1 21764:6 21775:1 21791:1 21835:1 21837:1 21843:1 21845:1 21879:2 21881:4 21884:1 21895:1 21896:1 21906:1 21908:1 21915:1 21918:1 21919:1 21923:2 21924:2 21925:1 21936:1 21939:1 21947:1 21955:1 21975:1 21997:1 22000:1 22026:1 22028:1 22047:1 22058:2 22062:1 22066:4 22082:2 22095:1 22114:1 22128:2 22133:1 22161:2 22175:1 22179:2 22214:1 22219:1 22235:1 22242:1 22248:6 22267:2 22310:8 22312:1 22316:1 22321:1 22362:1 22365:4 22368:1 22370:1 22383:1 22416:1 22418:1 22425:7 22439:1 22456:2 22462:1 22471:1 22479:1 22481:1 22490:1 22516:1 22536:1 22543:1 22555:3 22566:1 22599:3 22640:1 22671:1 22688:1 22691:1 22694:16 22709:1 22713:1 22714:2 22721:1 22752:1 22757:1 22759:1 22760:1 22770:1 22771:1 22805:1 22809:1 22816:1 22842:1 22852:2 22861:1 22871:4 22874:1 22901:1 22986:1 22990:1 23000:2 23019:1 23060:1 23074:1 23075:1 23079:1 23083:1 23093:1 23095:2 23103:1 23108:1 23111:1 23115:1 23147:17 23168:2 23169:1 23186:1 23199:1 23202:1 23223:1 23228:1 23235:2 23242:1 23247:6 23283:1 23289:1 23307:1 23315:1 23321:2 23325:1 23329:1 23358:1 23371:1 23379:2 23381:2 23408:1 23487:1 23506:1 23509:2 23525:1 23543:1 23593:1 23596:1 23617:1 23622:1 23641:2 23651:2 23664:1 23670:1 23740:1 23752:1 23767:2 23772:1 23775:1 23785:1 23802:1 23817:1 23838:1 23857:1 23890:1 23891:1 23895:1 23912:1 23915:1 23941:1 23956:1 23957:2 23982:1 24001:1 24008:2 24013:1 24028:2 24065:1 24067:1 24069:2 24075:1 24080:2 24092:1 24093:2 24097:3 24105:1 24114:1 24144:3 24186:5 24213:1 24217:1 24220:1 24225:1 24235:1 24275:1 24286:1 24291:1 24334:1 24366:1 24379:1 24384:1 24388:2 24414:1 24420:1 24427:1 24435:1 24444:1 24480:3 24484:2 24492:1 24493:1 24499:3 24505:1 24536:2 24552:2 24572:1 24576:2 24577:2 24620:1 24623:1 24628:3 24646:1 24653:1 24661:1 24676:1 24687:1 24689:1 24699:1 24711:1 24757:1 24779:1 24797:1 24802:1 24803:1 24815:1 24854:1 24858:1 24859:2 24863:1 24871:2 24911:1 24922:2 24943:1 24974:1 24979:1 25025:1 25075:2 25077:2 25097:1 25100:2 25107:1 25133:1 25134:1 25166:2 25173:1 25181:1 25205:1 25212:1 25215:1 25222:2 25227:1 25238:1 25248:1 25255:1 25279:1 25281:1 25283:1 25284:1 25306:1 25310:1 25328:2 25351:1 25362:1 25378:1 25383:1 25384:1 25387:1 25402:1 25408:1 25415:1 25423:1 25440:2 25451:3 25454:1 25461:1 25467:1 25485:2 25499:2 25511:1 25516:3 25546:3 25552:1 25573:1 25576:6 25585:2 25599:1 25617:1 25628:1 25693:1 25705:1 25707:1 25710:1 25713:2 25718:1 25740:1 25741:1 25766:1 25777:2 25809:1 25823:1 25832:1 25844:1 25850:2 25861:1 25874:1 25876:1 25884:2 25895:1 25920:2 25929:1 25944:1 25955:1 25956:1 25964:1 25989:1 25994:1 25995:3 25998:1 26005:2 26018:2 26019:1 26022:5 26023:1 26042:1 26054:1 26061:1 26074:1 26093:3 26113:1 26119:1 26122:1 26125:1 26130:1 26156:1 26182:1 26202:2 26253:2 26268:1 26272:1 26278:1 26283:1 26286:1 26333:1 26356:1 26399:1 26428:1 26429:1 26440:2 26450:1 26465:1 26498:1 26509:1 26525:1 26536:1 26546:1 26597:1 26609:2 26616:1 26626:1 26630:1 26632:5 26653:1 26654:2 26663:1 26675:4 26691:1 26703:2 26734:1 26743:4 26744:1 26746:2 26754:1 26764:1 26774:1 26778:2 26789:3 26794:1 26796:1 26799:1 26813:1 26847:1 26866:1 26870:1 26875:1 26878:1 26884:1 26889:1 26894:1 26899:1 26901:1 26911:1 26915:1 26918:3 26923:2 26930:1 26931:1 26932:1 26945:2 26971:2 26979:1 26994:1 27043:1 27054:2 27064:2 27082:1 27096:1 27100:2 27130:1 27131:1 27145:1 27150:1 27178:1 27188:3 27196:1 27206:1 27224:1 27228:1 27235:1 27236:1 27249:1 27251:3 27254:2 27258:2 27265:1 27266:2 27271:2 27276:2 27287:1 27296:1 27297:1 27299:2 27311:1 27318:1 27320:1 27329:1 27347:4 27365:3 27390:1 27401:1 27405:2 27411:1 27418:1 27424:1 27451:1 27468:1 27472:1 27502:1 27504:1 27516:1 27540:1 27556:1 27558:1 27620:1 27658:3 27659:2 27666:1 27670:2 27673:3 27689:1 27713:1 27718:1 27722:1 27727:1 27732:1 27734:1 27745:1 27764:1 27784:2 27802:2 27832:1 27858:1 27868:1 27874:1 27898:1 27909:1 27912:1 27950:1 27953:1 27956:1 27969:12 27999:1 28008:5 28060:1 28080:2 28095:1 28105:1 28117:5 28123:2 28134:1 28151:1 28152:1 28165:6 28170:1 28177:1 28207:1 28212:1 28214:1 28222:1 28231:1 28243:2 28258:1 28283:1 28296:2 28375:1 28392:21 28413:1 28416:3 28417:1 28423:3 28424:1 28435:1 28457:1 28485:3 28490:7 28503:1 28512:1 28522:1 28545:1 28546:2 28584:1 28597:1 28610:1 28615:2 28634:1 28635:1 28647:1 28660:1 28669:1 28690:2 28701:1 28710:1 28782:1 28785:1 28787:2 28796:1 28798:1 28814:1 28859:2 28865:1 28875:2 28894:2 28903:1 28913:1 28937:1 28940:1 28954:1 28959:1 28964:1 28976:1 29000:1 29003:1 29005:2 29027:1 29031:2 29042:4 29057:1 29062:2 29063:2 29073:17 29100:1 29128:1 29137:1 29139:1 29146:2 29147:2 29183:1 29223:1 29240:1
2 12:1 13:1 31:2 32:1 49:1 55:1 56:1 75:1 85:2 88:1 89:2 98:1 113:1 146:2 154:1 166:1 174:1 180:1 184:1 209:1 213:1 223:1 228:1 249:1 265:1 271:3 272:1 276:1 286:1 287:1 291:1 322:1 359:3 385:1 391:1 392:1 395:1 415:2 425:1 429:1 446:1 452:1 471:1 479:2 501:1 505:1 509:1 515:1 544:1 553:1 562:1 564:1 607:2 620:1 623:1 644:2 658:18 663:3 667:1 682:1 686:1 696:1 714:1 719:1 728:2 735:1 749:1 783:2 809:1 813:2 815:1 817:2 820:2 822:1 823:1 857:1 861:3 904:2 905:6 908:1 917:5 937:2 951:2 960:3 964:1 965:1 970:1 976:1 982:2 999:1 1003:1 1006:1 1027:1 1029:1 1032:1 1036:1 1048:2 1055:3 1098:1 1099:1 1112:1 1158:1 1160:2 1190:1 1211:1 1214:17 1220:1 1223:2 1224:1 1229:3 1232:1 1256:1 1258:2 1270:1 1279:1 1280:1 1281:1 1298:1 1302:1 1314:1 1338:1 1354:1 1356:2 1380:1 1393:1 1397:1 1402:2 1404:1 1444:1 1452:2 1462:2 1475:1 1499:1 1501:1 1502:2 1510:4 1516:1 1546:1 1576:2 1582:1 1598:1 1602:2 1615:1 1631:1 1636:1 1639:1 1647:1 1676:1 1677:1 1685:1 1690:1 1691:1 1705:1 1728:1 1740:2 1745:3 1776:1 1783:1 1795:1 1820:1 1827:1 1842:1 1853:1 1866:1 1870:1 1871:1 1878:1 1895:1 1897:1 1898:1 1918:1 1921:2 1937:1 1941:2 1947:2 1959:1 1982:1 1993:1 2022:3 2042:1 2051:1 2053:1 2077:1 2094:1 2123:1 2145:1 2172:1 2176:1 2196:4 2217:1 2235:1 2265:1 2291:1 2299:1 2325:1 2333:1 2334:1 2336:3 2338:2 2339:1 2341:1 2342:3 2347:2 2352:3 2356:3 2359:1 2362:1 2364:1 2369:1 2372:1 2375:1 2382:1 2406:1 2421:2 2422:1 2430:3 2457:2 2460:1 2478:1 2479:1 2494:1 2495:2 2503:1 2514:3 2522:2 2533:1 2539:1 2550:2 2571:1 2610:1 2646:2 2663:1 2674:1 2681:1 2730:1 2735:1 2736:2 2751:2 2758:1 2775:1 2785:1 2787:1 2804:1 2809:1 2812:3 2813:1 2819:1 2822:2 2826:1 2833:1 2872:1 2877:1 2883:3 2889:1 2892:1 2901:2 2949:1 2956:1 2982:10 2984:18 2986:1 2990:1 2991:2 2998:2 3002:1 3014:1 3018:1 3023:3 3024:1 3029:1 3032:1 3039:5 3049:1 3053:2 3057:1 3070:1 3091:1 3100:1 3101:1 3133:2 3169:1 3267:1 3281:1 3297:1 3301:1 3316:1 3340:1 3351:1 3354:2 3360:1 3368:1 3393:1 3399:1 3401:1 3419:1 3482:1 3486:1 3502:1 3506:1 3525:1 3527:1 3536:1 3540:1 3550:1 3552:1 3601:1 3604:1 3632:1 3642:1 3666:1 3690:1 3697:1 3704:1 3734:1 3758:1 3773:2 3774:1 3775:1 3779:1 3782:1 3831:2 3833:1 3872:1 3877:1 3884:1 3907:1 3909:1 3938:1 3940:1 3946:3 3964:1 3985:1 3990:17 3991:2 4012:1 4049:1 4052:1 4056:1 4066:1 4072:1 4079:2 4081:2 4096:2 4108:1 4113:1 4117:4 4118:1 4132:2 4171:1 4196:1 4208:2 4216:1 4231:1 4260:1 4262:1 4264:1 4267:1 4269:1 4272:1 4277:1 4307:1 4309:2 4310:1 4312:2 4317:1 4319:2 4331:1 4357:1 4376:1 4405:2 4409:1 4424:1 4434:17 4443:1 4446:1 4448:1 4452:3 4466:1 4475:1 4477:1 4479:1 4535:6 4550:1 4553:1 4557:1 4590:3 4604:2 4610:1 4618:1 4622:1 4629:1 4648:1 4668:7 4676:1 4698:1 4717:1 4744:1 4774:1 4790:1 4811:1 4812:1 4818:3 4826:1 4854:1 4863:1 4898:1 4902:1 4903:1 4908:2 4909:1 4916:1 4920:1 4942:1 4943:2 4974:1 4977:1 4983:1 4997:1 4998:1 5012:8 5013:2 5022:1 5025:1 5046:1 5053:2 5087:1 5089:1 5138:3 5140:1 5149:1 5159:2 5160:2 5161:2 5167:3 5174:1 5175:3 5183:1 5190:2 5192:3 5194:2 5195:1 5205:1 5230:1 5264:1 5268:1 5361:1 5403:1 5427:1 5438:1 5439:2 5485:1 5486:1 5496:1 5534:1 5549:1 5574:1 5577:2 5579:1 5583:1 5603:1 5606:1 5626:1 5630:2 5634:1 5690:1 5713:1 5716:1 5724:1 5740:1 5741:1 5780:1 5784:1 5790:1 5794:1 5807:1 5822:1 5833:1 5839:1 5841:1 5853:1 5896:1 5908:2 5921:1 5924:1 5926:1 5939:1 6017:1 6027:1 6064:1 6065:1 6076:1 6079:1 6092:1 6097:1 6118:1 6143:1 6149:1 6151:1 6168:1 6182:1 6195:1 6203:1 6208:2 6211:1 6247:1 6255:1 6294:1 6295:1 6296:1 6307:1 6308:1 6311:1 6312:1 6313:1 6315:1 6320:1 6324:1 6325:2 6345:1 6356:1 6388:1 6391:1 6399:1 6408:3 6410:2 6416:1 6428:1 6456:1 6479:2 6486:1 6500:1 6510:1 6523:4 6528:1 6534:4 6538:1 6539:1 6545:1 6546:1 6550:2 6552:6 6560:1 6581:1 6600:2 6619:1 6657:1 6667:1 6674:2 6679:3 6720:1 6736:1 6744:1 6746:1 6763:1 6769:1 6772:1 6776:1 6785:1 6792:1 6795:2 6820:1 6831:1 6850:1 6853:1 6866:1 6872:1 6899:1 6901:1 6904:1 6908:3 6927:1 6939:1 6960:1 6962:1 6967:1 6997:1 7030:1 7063:2 7083:1 7101:1 7102:1 7114:1 7130:1 7178:1 7184:1 7187:1 7192:1 7203:1 7217:4 7269:1 7271:1 7277:1 7287:2 7301:2 7332:1 7369:2 7398:1 7406:1 7412:1 7413:1 7428:1 7435:1 7442:1 7485:1 7495:1 7496:1 7508:1 7563:1 7571:1 7582:1 7596:3 7629:4 7632:1 7636:1 7663:1 7664:2 7679:1 7707:1 7718:1 7725:1 7748:3 7749:1 7779:1 7787:1 7803:1 7815:6 7816:6 7821:1 7833:1 7835:5 7864:3 7868:1 7878:20 7882:1 7883:1 7886:2 7890:1 7897:10 7900:3 7903:1 7908:1 7911:1 7932:1 7933:1 7941:1 7949:1 7985:3 7996:1 8013:1 8014:1 8037:1 8039:2 8054:2 8065:1 8071:1 8075:2 8077:1 8087:1 8105:1 8109:3 8119:1 8129:1 8159:1 8162:2 8196:1 8249:1 8253:1 8286:1 8290:1 8300:1 8312:2 8351:1 8364:1 8376:1 8377:18 8384:1 8392:1 8396:1 8410:7 8411:3 8428:1 8443:1 8445:1 8449:2 8466:1 8475:1 8480:1 8492:22 8501:1 8588:1 8596:1 8645:1 8657:1 8659:2 8667:1 8671:1 8677:1 8683:1 8687:1 8693:3 8694:1 8713:1 8720:1 8745:1 8750:1 8760:2 8762:1 8763:1 8766:1 8768:1 8778:1 8779:2 8782:1 8783:1 8792:1 8822:1 8832:1 8836:1 8841:1 8845:1 8862:2 8915:1 8923:1 8931:1 8987:2 8989:1 9014:2 9052:1 9057:1 9059:1 9061:1 9069:1 9086:1 9090:3 9106:1 9110:1 9111:1 9112:1 9118:1 9129:2 9138:1 9139:1 9140:1 9184:1 9196:1 9236:1 9238:3 9247:1 9256:1 9320:2 9343:1 9378:3 9382:2 9384:1 9391:1 9393:3 9394:1 9396:1 9400:1 9404:1 9406:1 9408:1 9415:1 9429:1 9435:1 9442:1 9445:1 9446:1 9447:2 9449:1 9456:1 9466:1 9473:2 9483:4 9490:2 9496:2 9504:1 9525:1 9534:1 9546:1 9558:1 9563:1 9564:2 9580:1 9607:1 9610:1 9611:1 9616:1 9619:1 9623:1 9624:1 9637:1 9642:1 9660:1 9661:1 9675:1 9677:2 9678:4 9701:2 9703:1 9706:1 9715:1 9717:1 9719:3 9723:1 9726:1 9738:1 9751:1 9779:1 9782:1 9797:1 9802:1 9803:1 9804:1 9841:1 9855:1 9856:1 9860:1 9887:1 9905:5 9915:1 9916:1 9921:3 9924:4 9936:1 9987:1 10028:1 10046:17 10055:1 10061:1 10083:1 10092:1 10097:1 10115:1 10117:1 10122:1 10131:1 10134:1 10170:2 10174:1 10177:2 10184:1 10188:2 10195:2 10220:1 10229:1 10242:2 10252:1 10260:1 10261:2 10280:1 10284:3 10297:2 10299:1 10322:3 10337:1 10339:1 10350:1 10359:1 10362:1 10381:1 10383:2 10388:1 10404:1 10417:1 10426:3 10440:1 10518:1 10526:1 10542:2 10555:1 10564:1 10582:1 10604:1 10623:1 10624:3 10641:1 10664:1 10681:1 10691:1 10707:1 10725:1 10740:2 10745:1 10758:1 10760:3 10773:1 10786:2 10820:1 10840:1 10842:1 10859:1 10860:4 10864:1 10867:2 10874:1 10882:1 10894:1 10907:1 10912:1 10923:1 10929:4 10934:1 10942:1 10956:1 10976:1 10990:1 11036:1 11066:1 11083:1 11098:2 11111:2 11114:3 11117:1 11124:1 11143:2 11152:1 11158:1 11167:1 11170:1 11176:1 11195:1 11197:8 11200:1 11203:1 11215:1 11217:3 11219:3 11220:1 11231:1 11234:1 11237:1 11246:1 11264:1 11276:4 11279:1 11285:1 11286:1 11293:1 11300:1 11303:2 11311:1 11320:1 11347:2 11375:1 11383:1 11385:1 11390:1 11404:3 11407:1 11456:1 11464:1 11474:1 11476:1 11483:1 11490:1 11503:3 11505:1 11508:1 11511:1 11518:1 11532:1 11535:2 11552:1 11571:2 11609:1 11617:1 11622:1 11629:1 11636:5 11648:2 11649:1 11674:1 11679:1 11695:1 11702:1 11714:1 11732:1 11750:2 11770:1 11775:2 11812:1 11824:1 11827:1 11834:1 11838:1 11839:3 11840:1 11845:2 11851:3 11871:1 11878:1 11881:2 11891:1 11899:1 11900:2 11904:1 11916:1 11930:1 11936:1 11949:1 11979:1 11992:1 11996:1 12003:3 12011:1 12039:1 12043:2 12090:1 12092:1 12110:1 12163:1 12223:1 12240:3 12261:3 12281:1 12283:1 12289:1 12337:1 12338:1 12339:1 12364:1 12385:1 12406:1 12421:1 12444:1 12455:1 12460:2 12461:3 12470:1 12510:1 12513:2 12522:1 12532:1 12588:1 12597:3 12599:1 12612:1 12613:1 12648:1 12650:1 12657:1 12664:1 12723:1 12763:1 12767:1 12790:2 12792:18 12800:1 12809:1 12813:4 12821:1 12859:4 12873:1 12884:2 12888:1 12902:1 12922:1 12927:1 12964:1 12967:1 12980:1 13001:1 13008:1 13024:2 13032:1 13038:1 13086:1 13100:1 13116:1 13132:1 13141:2 13145:1 13180:1 13183:1 13217:1 13239:1 13262:1 13268:1 13269:1 13280:1 13286:7 13291:1 13307:1 13313:1 13326:1 13340:1 13384:1 13412:1 13417:1 13418:1 13419:2 13424:2 13427:2 13430:1 13437:1 13480:1 13482:1 13491:6 13495:1 13584:1 13585:1 13595:1 13626:1 13639:3 13641:2 13647:1 13673:1 13676:1 13695:1 13700:1 13707:1 13713:1 13716:1 13717:1 13729:1 13732:1 13747:1 13766:1 13770:1 13772:1 13775:1 13780:1 13782:5 13783:1 13805:1 13808:1 13809:1 13814:3 13827:2 13859:1 13868:1 13869:1 13873:1 13901:1 13910:1 13928:1 13935:1 13941:1 13951:7 13955:1 13974:1 13980:1 13988:1 13998:1 14012:1 14028:1 14030:2 14038:3 14052:1 14057:3 14059:1 14069:5 14072:3 14096:1 14107:1 14147:2 14156:1 14177:4 14232:1 14241:1 14259:1 14261:2 14314:1 14361:4 14422:1 14449:1 14451:1 14460:2 14466:2 14468:3 14485:1 14486:1 14497:1 14541:1 14555:1 14560:1 14574:1 14575:1 14576:1 14592:2 14607:1 14617:1 14621:1 14625:1 14627:1 14629:1 14634:1 14643:1 14653:1 14657:1 14659:1 14664:1 14688:1 14699:18 14705:2 14708:1 14709:1 14714:1 14721:1 14736:1 14786:1 14789:1 14792:3 14800:1 14801:1 14806:1 14827:1 14832:1 14847:3 14863:1 14869:1 14887:1 14890:1 14900:1 14902:1 14939:1 14979:1 14993:1 15000:2 15003:1 15010:1 15031:1 15054:1 15069:1 15070:2 15072:1 15087:1 15105:1 15106:1 15109:6 15169:1 15193:2 15197:1 15208:1 15218:1 15237:2 15245:1 15247:1 15257:1 15258:1 15278:1 15299:1 15322:1 15340:2 15380:1 15386:1 15452:1 15462:2 15465:1 15478:1 15482:1 15491:1 15542:1 15555:1 15556:2 15557:1 15584:1 15608:4 15610:1 15616:2 15633:1 15653:1 15674:1 15678:1 15690:1 15718:1 15730:1 15742:1 15762:2 15779:1 15783:1 15796:3 15802:2 15805:1 15818:2 15823:1 15827:1 15835:3 15888:1 15890:1 15899:1 15921:4 15931:1 15951:1 15961:2 16023:1 16025:1 16038:1 16051:1 16057:1 16060:7 16062:2 16067:1 16096:1 16098:2 16100:1 16105:1 16133:2 16140:1 16142:1 16143:2 16165:8 16178:1 16186:1 16200:2 16203:1 16239:1 16250:1 16254:1 16264:1 16271:1 16285:4 16291:3 16292:1 16299:1 16300:1 16301:1 16304:1 16357:1 16387:1 16392:1 16404:1 16413:1 16416:1 16419:1 16440:1 16455:1 16457:1 16476:1 16484:1 16510:1 16522:1 16524:1 16527:1 16604:1 16613:1 16617:1 16631:2 16644:1 16646:1 16647:1 16649:1 16679:1 16689:1 16692:1 16751:1 16757:1 16769:1 16773:3 16776:1 16797:1 16800:2 16810:1 16811:2 16822:1 16881:1 16899:1 16926:25 16932:1 16933:1 16949:1 16951:1 16963:1 16967:3 17020:1 17028:1 17042:1 17047:1 17068:2 17072:2 17083:1 17103:1 17132:1 17138:1 17143:1 17144:1 17166:1 17181:1 17184:1 17208:1 17213:1 17234:1 17236:2 17250:1 17281:1 17284:1 17332:1 17361:1 17375:1 17380:1 17383:1 17384:1 17393:1 17424:1 17440:1 17450:1 17452:1 17457:1 17459:2 17465:1 17475:1 17484:1 17535:2 17549:2 17555:1 17560:1 17579:1 17604:1 17632:4 17637:2 17639:1 17649:1 17662:1 17671:2 17711:2 17727:1 17731:1 17758:3 17766:2 17787:1 17812:1 17817:1 17855:4 17859:1 17860:1 17884:1 17909:1 17926:1 17929:1 17930:1 17936:1 17937:1 17964:1 18012:1 18013:3 18018:1 18026:1 18058:1 18098:1 18100:1 18142:1 18146:2 18206:2 18210:1 18223:1 18234:1 18245:1 18269:1 18300:4 18310:1 18316:1 18332:1 18374:1 18377:2 18393:1 18395:1 18419:1 18447:1 18462:1 18499:1 18507:1 18516:1245 18527:1 18538:1 18551:1 18566:1 18587:1 18597:1 18604:1 18638:3 18648:1 18651:2 18653:1 18678:1 18707:1 18712:1 18724:1 18780:1 18832:1 18859:1 18863:1 18864:1 18894:1 18902:1 18933:1 18952:1 18969:1 18976:2 18986:1 19014:2 19016:2 19034:1 19037:1 19083:1 19085:3 19116:3 19120:1 19128:1 19175:1 19178:1 19184:1 19192:1 19198:1 19219:1 19230:1 19253:1 19259:1 19268:1 19276:1 19282:4 19283:3 19290:1 19315:1 19318:4 19342:2 19377:10 19384:1 19399:2 19420:2 19421:1 19427:1 19428:1 19451:3 19461:2 19469:1 19481:2 19490:3 19491:1 19500:1 19509:1 19558:1 19561:1 19574:1 19584:2 19589:1 19609:2 19611:1 19656:1 19658:1 19697:1 19709:1 19726:1 19728:1 19732:1 19737:1 19793:1 19813:1 19819:1 19820:1 19822:1 19823:1 19829:1 19835:1 19847:1 19851:1 19866:1 19881:1 19896:1 19927:1 19929:3 19937:1 19950:1 19957:1 19962:1 19986:1 19992:1 19995:1 20001:1 20002:1 20029:2 20030:3 20033:1 20042:1 20043:1 20051:4 20099:1 20109:1 20117:1 20123:2 20132:1 20144:2 20156:1 20162:1 20185:1 20199:1 20211:3 20223:2 20244:1 20258:1 20259:1 20268:1 20311:1 20338:1 20387:1 20390:1 20451:2 20460:1 20483:1 20484:1 20495:1 20499:2 20500:1 20513:2 20541:1 20555:1 20591:1 20602:1 20605:1 20630:1 20661:1 20664:1 20691:2 20697:1 20702:2 20711:1 20720:1 20725:1 20748:1 20754:1 20762:2 20764:2 20767:1 20773:3 20788:1 20789:1 20798:1 20799:1 20808:1 20810:1 20833:1 20840:1 20842:2 20848:1 20853:3 20862:1 20869:3 20878:1 20886:1 20892:2 20940:1 20942:3 20953:1 20958:1 20994:1 20996:1 21001:2 21004:1 21021:1 21026:1 21037:2 21057:1 21061:1 21071:1 21078:1 21114:1 21122:1 21137:1 21153:1 21155:1 21185:1 21190:1 21202:1 21204:1 21206:2 21237:3 21257:1 21271:2 21276:1 21285:1 21286:1 21310:1 21311:1 21313:2 21351:2 21359:1 21363:1 21364:2 21369:2 21398:1 21414:1 21442:1 21455:1 21464:2 21508:3 21530:1 21543:1 21558:3 21562:1 21570:2 21574:1 21577:1 21610:1 21625:4 21658:1 21696:1 21699:1 21705:3 21712:1 21715:3 21719:1 21728:2 21739:1 21748:1 21764:6 21775:1 21791:1 21835:1 21837:1 21843:1 21845:1 21879:2 21881:4 21884:1 21895:1 21896:1 21906:1 21908:1 21915:1 21918:1 21919:1 21923:2 21924:2 21925:1 21936:1 21939:1 21947:1 21955:1 21975:1 21997:1 22000:1 22026:1 22028:1 22047:1 22058:2 22062:1 22066:4 22082:2 22095:1 22114:1 22128:2 22133:1 22161:2 22175:1 22179:2 22214:1 22219:1 22235:1 22242:1 22248:6 22267:2 22310:8 22312:2 22316:1 22321:1 22362:1 22365:4 22368:1 22370:1 22383:1 22416:1 22418:1 22425:7 22439:1 22456:2 22462:1 22471:1 22479:1 22481:1 22490:1 22516:1 22536:1 22543:1 22555:3 22566:1 22582:1 22599:3 22640:1 22671:1 22676:1 22688:1 22691:1 22694:17 22709:1 22713:2 22714:2 22721:1 22752:2 22757:1 22759:1 22760:1 22770:1 22771:1 22805:1 22809:1 22816:1 22842:1 22852:2 22861:1 22871:4 22874:1 22901:1 22986:1 22990:1 23000:2 23019:1 23060:1 23074:1 23075:1 23079:1 23083:1 23093:1 23095:2 23103:1 23108:1 23111:1 23115:1 23147:18 23168:2 23169:1 23186:1 23199:1 23202:1 23223:1 23228:1 23235:2 23242:1 23247:6 23276:1 23283:1 23289:1 23307:1 23315:1 23321:3 23325:1 23329:1 23358:1 23371:1 23379:2 23381:2 23408:1 23487:1 23506:1 23509:2 23525:1 23543:1 23593:1 23596:1 23610:1 23617:1 23622:1 23641:2 23651:2 23664:1 23670:1 23740:1 23752:1 23767:2 23772:1 23775:1 23785:1 23802:1 23817:1 23838:1 23857:1 23890:1 23891:1 23895:1 23912:1 23915:1 23941:1 23956:1 23957:3 23982:1 24001:1 24008:2 24013:1 24028:2 24065:1 24067:1 24069:2 24075:1 24080:2 24092:1 24093:2 24097:3 24105:1 24114:1 24144:3 24186:5 24213:1 24217:1 24220:1 24225:1 24235:1 24275:1 24286:1 24291:1 24334:2 24366:1 24379:1 24384:1 24388:2 24414:1 24420:1 24427:1 24435:1 24444:1 24480:3 24484:2 24492:1 24493:1 24499:3 24505:1 24524:1 24536:2 24552:2 24572:1 24576:2 24577:2 24620:1 24623:1 24628:4 24631:1 24646:1 24653:1 24656:1 24661:1 24676:1 24687:1 24689:1 24699:1 24711:1 24757:1 24779:1 24797:1 24802:1 24803:1 24815:1 24854:1 24858:1 24859:2 24863:1 24871:2 24911:1 24922:2 24943:1 24974:1 24979:1 25025:1 25075:2 25077:2 25097:1 25100:2 25107:1 25133:1 25134:1 25166:2 25173:1 25181:1 25205:1 25212:1 25215:1 25222:2 25227:1 25236:1 25238:1 25248:1 25255:1 25279:1 25281:1 25283:1 25284:1 25306:1 25310:1 25328:2 25351:1 25362:1 25378:1 25383:1 25384:1 25387:1 25402:1 25408:1 25415:1 25423:1 25440:2 25451:3 25454:1 25461:1 25467:1 25485:2 25499:2 25511:1 25516:3 25546:3 25552:1 25573:1 25576:6 25585:2 25599:1 25617:1 25628:1 25693:1 25705:1 25707:1 25710:1 25713:2 25718:1 25740:1 25741:1 25766:1 25777:2 25809:1 25823:1 25832:1 25844:1 25850:2 25861:1 25874:1 25876:1 25884:2 25895:1 25920:2 25929:1 25944:2 25955:1 25956:1 25964:1 25989:1 25994:1 25995:3 25998:1 26005:2 26018:2 26019:1 26022:6 26023:1 26042:1 26054:1 26061:1 26074:1 26093:3 26113:1 26119:1 26122:1 26125:1 26130:1 26156:1 26182:1 26202:2 26253:2 26268:1 26272:1 26278:1 26283:1 26286:1 26333:1 26356:1 26399:1 26428:1 26429:1 26440:2 26450:1 26465:1 26498:1 26509:1 26525:1 26536:1 26546:1 26597:1 26609:2 26616:1 26626:1 26630:1 26632:5 26653:1 26654:2 26663:1 26675:4 26691:1 26703:2 26734:1 26743:4 26744:1 26746:2 26754:1 26764:1 26774:1 26778:2 26789:3 26794:1 26796:1 26799:1 26813:1 26847:1 26866:1 26870:1 26875:1 26878:1 26884:1 26889:1 26894:1 26897:1 26899:1 26901:1 26911:1 26915:1 26918:3 26923:2 26930:1 26931:1 26932:1 26945:2 26971:2 26979:1 26994:1 27043:1 27054:3 27064:2 27082:1 27096:1 27100:2 27130:1 27131:1 27145:1 27150:1 27178:1 27188:3 27196:1 27206:1 27224:1 27228:1 27235:1 27236:1 27249:1 27251:3 27254:2 27258:2 27265:1 27266:2 27271:2 27276:2 27287:1 27296:1 27297:1 27299:2 27311:1 27318:1 27320:1 27329:1 27347:4 27365:3 27390:1 27401:1 27405:2 27411:1 27418:1 27424:1 27448:1 27451:1 27468:1 27472:1 27502:1 27504:1 27516:1 27540:1 27556:1 27558:1 27620:1 27658:3 27659:2 27666:1 27670:2 27673:3 27676:1 27689:1 27713:1 27718:1 27722:1 27727:1 27732:1 27734:1 27745:1 27764:1 27784:2 27802:2 27832:1 27858:1 27868:1 27874:1 27898:1 27909:1 27912:1 27950:1 27953:1 27956:1 27969:12 27978:1 27999:1 28008:5 28060:1 28080:2 28095:1 28105:1 28117:5 28123:2 28134:1 28151:1 28152:1 28165:6 28170:1 28177:1 28207:1 28212:1 28214:1 28222:1 28231:1 28243:2 28258:1 28283:1 28296:2 28375:1 28392:22 28413:1 28416:3 28417:1 28423:3 28424:1 28435:1 28457:1 28485:3 28490:7 28503:1 28512:1 28522:1 28545:1 28546:2 28584:1 28597:1 28610:1 28615:2 28634:1 28635:1 28647:1 28660:1 28669:1 28690:2 28701:1 28710:1 28760:1 28782:1 28785:1 28787:2 28796:1 28798:1 28814:1 28859:2 28865:1 28875:2 28894:2 28903:1 28913:1 28937:1 28940:1 28954:1 28959:1 28964:1 28976:1 29000:1 29003:1 29005:2 29027:1 29031:2 29042:4 29057:1 29062:2 29063:2 29073:18 29100:1 29128:1 29137:1 29139:1 29146:2 29147:2 29183:1 29223:1 29240:1
2 12:1 13:1 31:2 32:1 49:1 55:1 56:1 75:1 85:2 88:1 89:2 98:1 113:1 146:2 154:1 166:1 170:1 174:1 180:1 184:1 209:1 213:1 223:1 228:1 249:1 265:1 271:3 272:1 276:1 286:1 287:1 291:1 322:1 359:3 376:1 385:1 391:1 392:1 395:1 415:2 425:1 429:1 446:1 452:1 471:1 479:2 501:1 505:1 509:1 515:1 544:1 553:1 562:1 564:1 607:3 613:1 620:1 623:1 644:2 658:19 663:3 667:1 682:1 686:1 696:1 714:1 719:1 728:2 735:2 749:1 783:2 809:1 813:2 815:1 817:2 820:2 822:1 823:1 857:1 861:3 904:2 905:6 908:1 917:5 937:2 951:2 957:1 960:3 964:1 965:1 970:1 976:1 982:2 999:1 1003:1 1006:1 1027:1 1029:1 1032:1 1036:1 1048:2 1055:3 1098:2 1099:1 1112:1 1158:1 1160:2 1190:1 1211:1 1214:18 1220:1 1223:2 1224:1 1229:3 1232:1 1256:1 1258:2 1270:1 1275:1 1279:1 1280:1 1281:1 1298:1 1302:1 1314:1 1338:1 1354:1 1356:2 1380:1 1393:1 1397:1 1402:2 1404:1 1444:1 1452:2 1462:2 1475:1 1499:1 1501:1 1502:2 1510:4 1516:1 1546:1 1576:2 1582:1 1598:1 1602:2 1615:1 1631:1 1636:1 1639:1 1647:1 1676:1 1677:1 1685:1 1690:1 1691:1 1705:1 1728:1 1740:2 1745:3 1776:1 1783:1 1795:1 1820:1 1827:1 1842:1 1853:1 1866:1 1870:2 1871:1 1878:1 1895:1 1897:1 1898:1 1918:1 1921:2 1937:1 1941:2 1947:2 1959:1 1982:1 1993:1 2022:3 2042:1 2051:1 2053:1 2077:1 2094:1 2123:1 2145:1 2157:1 2172:1 2176:1 2196:5 2217:1 2235:1 2265:1 2291:1 2299:1 2325:1 2333:1 2334:1 2336:3 2338:2 2339:1 2341:1 2342:3 2347:3 2352:3 2356:3 2359:1 2362:1 2364:1 2369:2 2372:1 2375:1 2382:1 2406:1 2421:2 2422:1 2430:3 2457:2 2460:1 2478:1 2479:1 2494:1 2495:2 2503:1 2513:1 2514:3 2522:2 2533:1 2539:1 2550:2 2571:1 2603:1 2610:1 2646:2 2663:1 2674:1 2681:1 2730:1 2735:1 2736:2 2751:2 2758:1 2775:1 2785:2 2787:1 2804:1 2809:1 2812:3 2813:1 2819:1 2822:2 2826:1 2833:1 2839:1 2872:1 2877:1 2883:3 2889:1 2892:1 2901:2 2949:1 2956:1 2982:10 2984:19 2986:1 2990:1 2991:2 2998:2 3002:1 3014:1 3018:1 3023:3 3024:1 3029:1 3032:1 3039:5 3049:1 3053:2 3057:1 3070:1 3091:2 3100:1 3101:1 3133:2 3169:1 3267:1 3281:1 3297:1 3301:1 3316:1 3340:1 3351:1 3354:2 3360:1 3368:1 3393:1 3399:1 3401:1 3419:1 3482:1 3486:1 3502:1 3506:1 3525:1 3527:1 3536:1 3540:1 3550:1 3552:1 3601:1 3604:1 3632:1 3642:1 3666:1 3684:1 3690:1 3697:1 3704:1 3734:1 3758:1 3773:2 3774:1 3775:1 3779:1 3782:1 3831:2 3833:1 3872:1 3877:1 3884:1 3907:1 3909:1 3938:1 3940:1 3946:3 3964:1 3985:1 3990:18 3991:2 4012:1 4049:1 4052:1 4056:1 4066:1 4072:2 4079:2 4081:2 4096:2 4108:1 4113:1 4117:4 4118:1 4132:2 4171:1 4196:1 4208:2 4216:1 4231:1 4260:1 4262:1 4264:1 4267:1 4269:1 4272:1 4277:1 4293:1 4307:1 4309:2 4310:1 4312:2 4317:1 4319:2 4331:1 4357:1 4376:2 4405:2 4409:1 4424:1 4434:18 4443:1 4446:1 4448:1 4452:4 4466:1 4475:1 4477:1 4479:1 4527:1 4535:6 4550:1 4553:1 4557:1 4590:3 4604:2 4610:1 4618:1 4622:1 4629:1 4648:1 4668:7 4676:1 4698:1 4717:1 4744:1 4774:1 4790:1 4811:1 4812:1 4818:3 4826:1 4854:1 4863:1 4898:1 4902:1 4903:1 4908:2 4909:1 4916:1 4920:1 4942:1 4943:2 4974:1 4977:1 4983:1 4997:1 4998:1 5012:8 5013:2 5022:1 5025:1 5046:1 5053:2 5087:1 5089:1 5138:3 5140:1 5149:1 5159:3 5160:3 5161:2 5167:3 5174:1 5175:3 5183:1 5190:2 5192:3 5194:2 5195:1 5205:1 5230:1 5264:1 5268:1 5361:1 5403:1 5427:1 5438:1 5439:2 5485:1 5486:1 5496:1 5534:1 5549:1 5574:1 5577:2 5579:1 5583:1 5603:1 5606:1 5626:1 5630:2 5634:1 5690:1 5713:1 5716:1 5724:1 5740:1 5741:1 5762:1 5780:1 5784:1 5790:1 5794:1 5800:1 5807:1 5822:1 5833:1 5839:1 5841:1 5853:1 5896:1 5908:2 5921:1 5924:1 5926:1 5939:1 5968:1 6017:1 6027:1 6064:1 6065:1 6076:1 6079:1 6092:1 6097:1 6118:1 6143:1 6149:1 6151:1 6168:1 6182:1 6195:1 6203:1 6208:2 6211:1 6247:1 6255:1 6294:1 6295:1 6296:1 6307:1 6308:1 6311:1 6312:1 6313:1 6315:2 6320:1 6324:1 6325:2 6345:1 6356:1 6388:1 6391:1 6399:1 6408:3 6410:2 6416:1 6428:1 6456:1 6479:2 6486:1 6500:1 6510:1 6523:4 6528:1 6534:4 6538:1 6539:1 6545:1 6546:1 6550:2 6552:6 6560:1 6581:1 6600:2 6615:1 6619:1 6629:1 6657:1 6667:1 6674:2 6679:3 6720:1 6736:1 6744:1 6746:1 6763:1 6769:1 6772:1 6776:1 6785:1 6792:1 6795:2 6820:1 6831:1 6850:1 6853:1 6866:1 6872:1 6899:1 6901:1 6904:1 6908:3 6927:1 6939:1 6960:1 6962:1 6967:1 6997:1 7030:1 7063:2 7083:1 7101:1 7102:1 7114:1 7130:1 7178:1 7184:1 7187:1 7192:1 7203:1 7217:4 7269:1 7271:1 7277:1 7287:2 7301:2 7332:1 7369:2 7398:1 7406:1 7412:1 7413:1 7428:1 7435:1 7442:1 7485:1 7495:1 7496:1 7508:1 7563:1 7571:1 7582:1 7596:4 7629:4 7632:1 7636:1 7663:1 7664:2 7679:1 7707:1 7718:1 7725:1 7748:3 7749:1 7779:1 7787:1 7803:1 7815:7 7816:6 7821:1 7833:1 7835:5 7864:3 7868:1 7878:22 7882:1 7883:1 7886:2 7890:1 7897:10 7900:3 7903:1 7908:1 7911:1 7932:1 7933:1 7941:1 7949:1 7985:3 7996:1 8013:1 8014:1 8037:1 8039:2 8054:2 8065:1 8071:1 8075:2 8077:1 8087:1 8105:1 8109:3 8119:1 8129:1 8159:1 8162:2 8196:1 8249:1 8253:1 8286:1 8290:1 8300:1 8312:2 8351:1 8364:1 8376:1 8377:19 8384:1 8392:1 8396:1 8410:8 8411:3 8428:1 8443:1 8445:1 8449:2 8466:1 8475:1 8480:1 8492:23 8501:1 8588:1 8596:1 8645:1 8657:1 8659:2 8667:1 8671:1 8677:1 8683:1 8687:1 8693:3 8694:1 8713:1 8720:1 8745:2 8750:1 8760:2 8762:1 8763:1 8766:1 8768:1 8778:1 8779:2 8782:1 8783:1 8792:1 8822:1 8832:1 8836:1 8841:1 8845:1 8862:2 8915:1 8923:1 8931:1 8987:2 8989:1 9014:2 9052:1 9057:1 9059:1 9061:1 9069:1 9086:1 9090:3 9106:1 9110:1 9111:1 9112:1 9118:1 9129:2 9138:1 9139:1 9140:1 9184:1 9196:1 9236:1 9238:3 9247:1 9256:1 9320:2 9343:1 9378:3 9382:2 9384:1 9391:1 9393:3 9394:1 9396:1 9400:1 9404:1 9406:1 9408:1 9415:1 9429:1 9435:1 9442:1 9445:1 9446:1 9447:2 9449:1 9456:1 9466:1 9473:2 9483:4 9490:2 9496:2 9504:1 9525:1 9534:1 9546:1 9558:1 9563:1 9564:2 9571:1 9580:1 9607:1 9610:1 9611:1 9616:1 9619:1 9623:1 9624:1 9637:1 9642:1 9660:1 9661:1 9675:1 9677:2 9678:4 9681:1 9701:2 9703:1 9706:1 9715:1 9717:1 9719:3 9723:1 9726:1 9738:1 9751:1 9779:1 9782:1 9797:1 9802:1 9803:1 9804:1 9841:1 9855:1 9856:1 9860:1 9887:1 9905:5 9915:1 9916:1 9921:3 9924:4 9936:1 9987:1 10028:1 10046:18 10055:1 10061:1 10083:1 10092:1 10097:1 10115:1 10117:1 10122:1 10131:1 10134:1 10170:2 10174:1 10177:2 10184:1 10188:2 10195:2 10220:1 10229:1 10242:2 10252:1 10260:1 10261:2 10280:1 10284:3 10297:2 10299:1 10322:3 10337:1 10339:1 10350:1 10359:1 10362:1 10381:1 10383:2 10388:1 10404:1 10417:1 10426:4 10440:1 10464:1 10518:1 10526:1 10542:2 10555:1 10564:1 10582:1 10604:1 10623:1 10624:3 10641:1 10664:1 10681:1 10691:1 10707:1 10725:1 10740:2 10745:1 10758:1 10760:3 10773:1 10786:2 10820:1 10840:1 10842:2 10859:1 10860:4 10864:1 10867:2 10874:1 10882:1 10894:1 10907:1 10912:1 10923:1 10929:4 10934:1 10942:1 10956:1 10976:1 10990:1 11005:1 11036:1 11066:1 11083:1 11098:2 11111:2 11114:3 11117:1 11124:1 11143:2 11152:1 11158:1 11167:1 11170:1 11176:1 11195:1 11197:8 11200:1 11203:1 11215:1 11217:3 11219:3 11220:1 11231:1 11234:1 11237:1 11246:1 11264:1 11276:4 11279:1 11285:1 11286:1 11293:1 11300:1 11303:2 11311:1 11320:1 11347:2 11375:1 11383:1 11385:1 11390:1 11404:3 11407:1 11456:1 11464:1 11474:1 11476:2 11483:1 11487:1 11490:1 11503:3 11505:1 11508:1 11511:1 11518:1 11532:1 11535:2 11552:1 11571:2 11609:1 11617:1 11622:1 11629:1 11636:5 11648:2 11649:1 11674:1 11679:1 11695:1 11702:1 11714:1 11732:1 11750:2 11770:1 11775:2 11797:1 11803:1 11812:1 11824:1 11827:1 11834:1 11838:1 11839:3 11840:1 11845:2 11851:3 11871:1 11878:1 11881:2 11891:1 11899:1 11900:2 11904:1 11916:1 11930:1 11936:1 11949:1 11979:1 11992:1 11996:1 12003:3 12011:1 12039:1 12043:2 12090:1 12092:1 12110:1 12163:1 12179:1 12223:1 12240:3 12261:3 12281:1 12283:1 12289:1 12337:1 12338:1 12339:1 12364:1 12385:1 12406:1 12421:1 12444:1 12455:1 12460:2 12461:3 12470:1 12510:1 12513:2 12522:1 12532:1 12588:1 12597:3 12599:1 12612:1 12613:1 12648:1 12650:1 12657:1 12664:1 12722:1 12723:1 12763:1 12767:1 12790:2 12792:19 12800:1 12809:1 12813:4 12821:1 12859:4 12873:1 12884:2 12888:1 12902:1 12922:1 12927:1 12964:1 12967:1 12980:1 13001:1 13008:1 13024:2 13032:1 13038:1 13086:1 13100:1 13116:1 13132:1 13141:2 13145:1 13180:1 13183:1 13217:1 13239:1 13257:1 13262:1 13265:1 13268:1 13269:1 13280:1 13286:7 13291:1 13307:1 13313:1 13326:1 13340:1 13384:1 13412:1 13417:1 13418:1 13419:2 13424:2 13427:2 13430:1 13437:1 13480:1 13482:1 13491:6 13495:1 13584:1 13585:1 13595:1 13626:1 13639:3 13641:3 13647:1 13673:1 13676:1 13695:1 13700:2 13707:1 13713:1 13716:1 13717:1 13729:1 13732:1 13747:1 13766:1 13770:1 13772:1 13775:1 13780:1 13782:5 13783:1 13784:1 13805:1 13808:1 13809:1 13814:3 13827:2 13859:1 13868:1 13869:1 13873:1 13901:1 13910:1 13928:1 13935:1 13941:1 13951:8 13955:1 13963:1 13974:1 13980:1 13988:1 13998:1 14012:1 14028:1 14030:2 14038:3 14052:1 14057:3 14059:1 14069:5 14072:3 14096:1 14107:1 14147:2 14156:1 14177:4 14232:1 14241:1 14259:1 14261:2 14275:1 14314:1 14361:4 14422:1 14449:1 14451:1 14460:2 14466:2 14468:3 14485:1 14486:1 14497:1 14541:1 14555:1 14560:1 14574:1 14575:1 14576:1 14592:2 14607:1 14615:1 14617:1 14621:1 14625:1 14627:1 14629:1 14634:1 14643:1 14653:1 14657:1 14659:1 14664:1 14688:1 14699:19 14705:2 14708:1 14709:1 14714:1 14721:1 14736:1 14786:1 14789:1 14792:3 14800:1 14801:1 14806:2 14827:1 14832:1 14847:3 14863:1 14869:1 14870:1 14887:1 14890:1 14900:1 14902:1 14939:1 14979:1 14993:1 15000:2 15003:1 15010:1 15016:1 15031:1 15054:1 15069:1 15070:2 15072:1 15087:1 15105:1 15106:1 15109:6 15169:1 15193:2 15197:1 15208:1 15218:1 15223:1 15237:2 15245:1 15247:1 15257:1 15258:1 15278:1 15299:1 15315:1 15322:1 15340:2 15380:1 15386:1 15409:1 15452:1 15462:2 15465:1 15478:1 15482:1 15491:1 15542:1 15555:1 15556:2 15557:1 15584:1 15608:4 15610:1 15616:2 15633:1 15653:1 15674:1 15678:1 15690:1 15718:1 15730:1 15742:1 15762:3 15779:1 15783:1 15796:3 15802:2 15805:1 15818:2 15823:1 15827:1 15835:3 15888:1 15890:1 15899:1 15921:4 15931:1 15951:1 15960:1 15961:2 16023:1 16025:1 16038:1 16051:1 16057:1 16060:7 16062:2 16067:1 16096:2 16098:2 16100:1 16105:1 16133:2 16140:1 16142:1 16143:2 16165:8 16178:1 16186:1 16200:2 16203:1 16239:1 16250:1 16254:1 16264:1 16271:1 16285:4 16291:3 16292:1 16299:1 16300:1 16301:1 16304:1 16321:1 16357:1 16387:1 16392:1 16404:1 16413:1 16416:1 16418:1 16419:1 16440:1 16455:1 16457:1 16476:1 16484:1 16510:1 16522:1 16524:1 16527:1 16604:1 16613:1 16617:1 16631:2 16644:1 16646:1 16647:1 16649:1 16679:1 16687:1 16689:1 16692:1 16751:1 16757:1 16769:1 16773:3 16776:1 16797:1 16800:2 16810:1 16811:2 16822:1 16881:1 16899:1 16926:26 16932:1 16933:1 16949:1 16951:1 16963:1 16967:3 17020:1 17028:1 17042:1 17047:1 17068:2 17072:2 17083:1 17103:1 17132:1 17138:1 17143:1 17144:1 17166:1 17181:1 17184:1 17207:1 17208:1 17213:1 17234:1 17236:2 17250:1 17281:1 17284:1 17332:1 17361:1 17375:1 17380:1 17383:1 17384:1 17393:1 17395:1 17424:1 17440:1 17450:1 17452:1 17457:1 17459:2 17465:1 17475:1 17484:1 17535:2 17549:2 17555:1 17560:1 17579:1 17604:1 17632:4 17637:2 17639:1 17649:1 17662:1 17671:2 17711:2 17727:1 17731:1 17758:3 17766:2 17787:1 17812:1 17817:1 17855:4 17859:1 17860:1 17884:2 17909:1 17926:1 17929:1 17930:1 17936:2 17937:1 17964:1 18012:1 18013:3 18018:1 18026:1 18058:1 18098:1 18100:1 18142:1 18146:3 18206:2 18210:1 18223:1 18234:1 18245:1 18269:1 18300:5 18310:1 18316:1 18332:1 18374:1 18377:2 18393:1 18395:1 18419:1 18447:1 18450:1 18462:1 18499:1 18507:1 18516:1325 18527:1 18538:1 18551:1 18566:1 18587:1 18597:1 18604:1 18638:3 18648:1 18651:2 18653:1 18678:1 18707:1 18712:1 18724:1 18780:1 18832:1 18859:1 18863:1 18864:1 18894:1 18902:1 18933:1 18952:1 18969:1 18976:2 18986:1 19014:2 19016:2 19034:1 19037:1 19083:1 19085:3 19116:3 19120:1 19128:1 19175:1 19178:1 19184:1 19192:1 19198:1 19219:1 19230:1 19253:1 19259:1 19268:1 19276:1 19282:4 19283:3 19290:1 19315:1 19318:4 19342:2 19377:11 19384:1 19399:2 19409:1 19420:2 19421:1 19427:1 19428:1 19451:3 19461:2 19469:1 19481:2 19490:3 19491:1 19500:1 19509:1 19558:1 19561:1 19574:1 19584:2 19589:1 19609:2 19611:1 19656:1 19658:1 19697:1 19709:1 19726:1 19728:1 19732:1 19737:1 19793:1 19813:1 19819:1 19820:1 19822:1 19823:1 19829:1 19835:1 19847:1 19851:1 19866:1 19881:1 19896:1 19927:1 19929:4 19937:1 19950:1 19957:1 19962:1 19986:1 19992:1 19995:1 20001:2 20002:1 20029:2 20030:3 20033:1 20042:1 20043:1 20051:4 20099:1 20109:1 20117:1 20123:2 20132:1 20144:2 20156:1 20162:1 20185:1 20199:1 20211:3 20223:2 20244:1 20258:1 20259:1 20268:1 20311:1 20338:1 20387:1 20390:1 20451:3 20460:1 20483:1 20484:1 20495:1 20499:2 20500:1 20513:2 20541:1 20555:1 20591:1 20602:1 20605:1 20630:1 20661:1 20664:1 20691:2 20697:1 20702:2 20711:1 20720:1 20725:1 20748:1 20754:1 20762:2 20764:2 20767:1 20773:3 20788:1 20789:1 20798:1 20799:1 20808:1 20810:1 20829:1 20833:1 20840:1 20842:2 20848:1 20853:3 20862:1 20869:3 20878:1 20886:1 20892:2 20940:1 20942:3 20953:1 20958:1 20994:1 20996:1 21001:2 21004:2 21021:1 21026:1 21037:2 21057:1 21061:1 21071:1 21078:1 21114:1 21122:1 21137:1 21153:1 21155:1 21185:1 21190:1 21202:1 21204:1 21206:2 21237:3 21257:1 21271:2 21276:1 21285:1 21286:1 21310:1 21311:1 21313:2 21351:2 21359:1 21363:1 21364:2 21369:2 21398:1 21414:1 21442:1 21455:1 21464:2 21508:3 21530:1 21543:1 21558:3 21562:1 21570:2 21574:1 21577:1 21610:1 21625:4 21658:1 21696:1 21699:1 21705:3 21712:1 21715:3 21719:1 21728:2 21739:1 21748:1 21764:6 21775:1 21791:1 21835:1 21837:1 21843:1 21845:1 21879:2 21881:4 21884:2 21895:1 21896:1 21906:1 21908:1 21915:1 21918:1 21919:1 21923:2 21924:3 21925:1 21936:1 21939:1 21947:1 21955:1 21975:1 21997:1 22000:1 22026:2 22028:1 22047:1 22058:2 22062:1 22066:4 22082:2 22095:1 22114:1 22128:2 22133:1 22161:2 22175:1 22179:2 22214:1 22219:1 22235:1 22242:1 22248:7 22267:2 22310:8 22312:2 22316:1 22321:1 22362:1 22365:4 22368:2 22370:1 22383:1 22416:1 22418:1 22425:7 22439:1 22456:2 22462:1 22471:1 22475:1 22479:1 22481:1 22490:1 22516:1 22536:1 22542:1 22543:1 22555:3 22566:2 22582:1 22599:3 22640:1 22671:1 22676:1 22688:1 22691:1 22694:18 22709:1 22713:2 22714:2 22721:1 22752:2 22757:1 22759:1 22760:1 22770:1 22771:1 22805:1 22809:1 22816:1 22838:1 22842:1 22852:2 22861:1 22871:4 22874:1 22901:1 22986:1 22990:1 23000:2 23019:1 23060:1 23074:1 23075:1 23079:1 23083:1 23093:1 23095:2 23103:1 23108:1 23111:1 23115:1 23147:19 23168:2 23169:1 23186:1 23199:1 23202:1 23223:1 23227:1 23228:1 23235:2 23242:1 23247:6 23276:1 23283:1 23289:1 23307:1 23315:1 23321:3 23325:2 23329:1 23358:1 23371:1 23379:2 23381:2 23408:1 23487:1 23506:1 23509:2 23525:1 23543:1 23593:1 23596:1 23610:1 23617:1 23622:1 23641:2 23651:2 23664:1 23670:1 23740:2 23752:1 23767:2 23772:1 23775:1 23785:1 23802:1 23817:1 23838:1 23857:1 23890:1 23891:1 23895:1 23912:1 23915:1 23941:1 23956:1 23957:3 23982:2 24001:1 24008:2 24013:1 24028:2 24065:1 24067:1 24069:2 24075:1 24080:2 24092:1 24093:2 24097:3 24105:1 24114:1 24144:3 24186:5 24213:1 24217:1 24220:1 24225:1 24235:1 24275:1 24286:1 24291:1 24334:2 24366:1 24379:1 24384:1 24388:2 24414:1 24420:1 24427:1 24435:1 24444:1 24480:3 24484:2 24492:1 24493:1 24499:3 24505:1 24524:1 24536:2 24552:2 24572:1 24576:2 24577:2 24620:1 24623:1 24626:1 24628:4 24631:1 24646:1 24653:1 24656:1 24661:1 24676:1 24687:1 24689:1 24699:1 24711:1 24757:1 24779:1 24797:1 24802:1 24803:1 24815:1 24854:1 24858:1 24859:2 24863:1 24871:2 24911:1 24922:2 24943:1 24974:1 24979:1 25025:1 25075:2 25077:3 25088:1 25097:1 25100:2 25107:1 25133:1 25134:1 25166:2 25173:1 25181:1 25205:1 25212:1 25215:1 25222:2 25227:1 25236:1 25238:1 25248:1 25255:1 25277:1 25279:1 25281:2 25283:1 25284:1 25306:1 25310:1 25328:2 25351:1 25362:1 25378:1 25383:1 25384:1 25387:1 25402:1 25408:1 25415:1 25423:1 25440:2 25451:3 25454:1 25461:1 25467:1 25485:2 25499:2 25511:1 25516:3 25546:3 25552:1 25573:1 25576:7 25585:2 25599:1 25617:1 25628:1 25636:1 25693:1 25705:1 25707:1 25710:1 25713:2 25718:1 25740:1 25741:1 25766:1 25777:2 25778:1 25809:1 25823:1 25832:1 25844:1 25850:2 25861:1 25874:1 25876:1 25884:2 25895:1 25920:2 25929:1 25944:2 25955:1 25956:1 25964:1 25989:1 25994:1 25995:3 25998:1 26005:2 26018:2 26019:1 26022:7 26023:1 26042:1 26054:1 26061:1 26074:1 26093:3 26113:1 26119:1 26122:1 26125:1 26130:1 26156:1 26182:1 26202:2 26253:2 26268:1 26272:1 26278:1 26283:1 26286:1 26333:1 26356:1 26399:1 26428:1 26429:1 26440:2 26450:1 26465:1 26498:1 26509:1 26525:1 26536:1 26546:1 26588:1 26597:1 26609:2 26616:1 26626:1 26630:2 26632:5 26653:1 26654:2 26663:1 26675:4 26691:1 26703:3 26734:1 26743:4 26744:1 26746:2 26754:1 26764:1 26774:1 26778:2 26789:3 26794:1 26796:1 26799:1 26813:1 26847:1 26866:1 26870:1 26875:1 26878:1 26884:1 26889:1 26894:1 26897:2 26899:1 26901:1 26911:1 26915:1 26918:3 26923:2 26930:1 26931:1 26932:1 26945:2 26971:2 26979:1 26994:1 27043:1 27054:3 27064:2 27082:1 27096:1 27100:2 27130:1 27131:1 27145:1 27150:1 27178:1 27188:3 27196:1 27206:1 27224:1 27228:1 27235:1 27236:1 27249:1 27251:3 27254:2 27258:2 27265:1 27266:2 27271:2 27276:2 27287:1 27296:1 27297:1 27299:2 27311:1 27318:1 27320:1 27329:1 27347:4 27365:3 27390:1 27401:1 27405:2 27411:1 27418:1 27424:1 27448:1 27451:1 27468:1 27472:1 27502:1 27504:1 27516:1 27540:1 27556:1 27558:1 27620:1 27658:3 27659:2 27666:2 27670:2 27673:3 27676:1 27689:1 27713:1 27718:1 27722:1 27727:1 27732:1 27734:1 27745:1 27764:1 27784:2 27802:2 27832:1 27858:1 27868:1 27874:1 27898:1 27909:1 27912:1 27950:1 27953:1 27956:1 27969:12 27978:1 27999:1 28008:5 28060:1 28080:2 28095:1 28105:1 28117:5 28123:2 28134:1 28137:1 28151:1 28152:1 28165:7 28170:1 28177:1 28207:1 28212:1 28214:1 28222:1 28231:1 28243:2 28258:1 28283:1 28296:2 28375:1 28392:23 28413:1 28416:3 28417:1 28423:3 28424:1 28435:1 28457:1 28485:3 28490:7 28503:1 28509:1 28512:1 28522:1 28545:1 28546:2 28584:1 28597:1 28610:1 28615:2 28634:1 28635:1 28647:1 28660:1 28669:1 28690:2 28701:1 28710:1 28760:1 28782:1 28785:1 28787:2 28796:1 28798:1 28814:1 28859:2 28865:1 28875:2 28894:2 28903:1 28913:1 28937:1 28940:1 28954:1 28959:1 28964:1 28976:1 29000:1 29003:1 29005:2 29027:1 29031:2 29042:4 29057:2 29062:2 29063:2 29073:19 29100:1 29128:1 29137:1 29139:1 29141:1 29146:2 29147:2 29183:1 29194:1 29223:1 29240:1
2 12:1 13:1 31:2 32:1 49:1 55:1 56:1 75:1 85:2 88:1 89:2 98:1 113:1 146:2 154:1 166:1 170:1 174:1 180:1 184:1 209:1 213:1 223:1 228:1 249:1 265:2 271:3 272:1 276:1 286:1 287:1 291:1 322:1 359:3 376:1 385:1 391:1 392:1 395:1 415:2 425:1 429:1 446:1 452:1 471:1 479:2 501:2 505:1 509:1 515:1 544:1 553:1 562:1 564:1 607:3 613:1 620:1 623:1 644:2 658:20 663:3 667:1 682:1 686:1 696:1 699:1 714:1 719:1 728:2 735:2 749:1 783:2 809:1 813:2 815:1 817:2 820:2 822:1 823:1 857:1 861:3 904:3 905:6 908:1 917:5 937:2 951:2 957:3 960:4 964:1 965:1 970:1 976:1 980:1 982:2 999:2 1003:1 1006:1 1027:1 1029:1 1032:1 1036:1 1048:2 1055:3 1098:2 1099:1 1112:1 1158:1 1160:2 1190:1 1211:1 1214:19 1220:1 1223:2 1224:1 1227:1 1229:3 1232:1 1256:1 1258:2 1270:1 1275:1 1279:1 1280:1 1281:1 1298:1 1302:1 1314:1 1338:1 1354:1 1356:2 1380:1 1393:1 1397:1 1402:2 1404:1 1444:1 1452:2 1462:2 1475:1 1499:1 1501:1 1502:2 1510:5 1516:1 1546:1 1576:2 1582:1 1598:1 1602:2 1615:1 1631:1 1636:1 1639:1 1647:1 1676:1 1677:1 1685:1 1690:1 1691:1 1705:1 1720:1 1728:1 1740:2 1745:3 1760:1 1776:1 1778:1 1779:1 1783:1 1795:1 1820:1 1827:1 1840:1 1842:1 1853:1 1866:1 1870:2 1871:2 1878:1 1895:1 1897:1 1898:1 1918:1 1921:2 1930:1 1937:1 1941:2 1947:2 1959:1 1976:1 1982:1 1993:1 2001:1 2022:3 2042:1 2051:1 2053:1 2077:1 2094:1 2118:1 2123:1 2145:1 2157:1 2161:1 2172:1 2176:1 2196:5 2217:1 2235:1 2265:1 2291:1 2299:1 2325:1 2333:1 2334:1 2336:3 2338:2 2339:1 2341:1 2342:3 2347:3 2349:1 2352:3 2356:3 2359:1 2362:1 2364:1 2369:2 2372:1 2375:1 2382:1 2406:1 2421:2 2422:1 2430:3 2457:2 2460:1 2478:1 2479:1 2494:1 2495:2 2503:1 2513:1 2514:4 2522:2 2533:1 2539:1 2550:2 2571:1 2596:1 2603:1 2610:1 2646:2 2663:1 2674:1 2681:1 2730:1 2735:1 2736:2 2751:2 2758:1 2775:1 2785:2 2787:1 2804:1 2809:1 2812:3 2813:1 2819:1 2822:2 2826:1 2833:1 2839:1 2872:1 2877:1 2881:1 2883:3 2889:1 2892:1 2901:2 2904:1 2937:1 2949:1 2956:1 2982:10 2984:20 2986:1 2990:1 2991:2 2998:2 3002:1 3014:1 3018:1 3023:3 3024:1 3029:1 3032:1 3039:5 3049:1 3053:2 3057:1 3070:1 3091:2 3100:1 3101:1 3133:2 3169:2 3267:1 3281:1 3297:1 3301:1 3316:1 3340:1 3351:1 3354:2 3360:1 3368:1 3393:1 3399:1 3401:1 3419:1 3482:1 3486:1 3502:1 3506:1 3525:1 3527:1 3536:1 3540:1 3550:1 3552:1 3564:1 3601:1 3604:1 3627:1 3632:1 3642:1 3666:1 3684:1 3690:1 3697:1 3704:1 3734:1 3758:1 3773:2 3774:1 3775:1 3779:1 3782:1 3831:2 3833:1 3872:1 3877:1 3884:1 3907:1 3909:1 3938:1 3940:1 3946:3 3964:1 3985:1 3990:19 3991:2 4012:1 4049:1 4052:1 4056:1 4066:1 4072:2 4079:3 4081:2 4096:2 4108:1 4113:1 4117:5 4118:2 4132:2 4171:1 4196:1 4208:2 4216:1 4231:1 4260:1 4262:1 4264:1 4267:1 4269:1 4272:1 4277:1 4293:1 4307:1 4309:2 4310:1 4312:2 4317:1 4319:3 4331:1 4357:1 4376:2 4402:1 4405:2 4409:1 4424:1 4434:19 4443:1 4446:1 4448:1 4452:4 4466:1 4475:1 4477:1 4479:1 4527:1 4535:6 4550:1 4553:1 4557:1 4590:3 4604:2 4610:1 4618:1 4622:2 4623:1 4629:1 4648:1 4668:7 4676:1 4698:1 4717:1 4744:1 4774:2 4790:1 4811:1 4812:1 4818:3 4826:1 4854:1 4863:1 4898:1 4902:1 4903:2 4908:2 4909:1 4916:1 4920:1 4942:1 4943:2 4954:1 4974:1 4977:1 4983:1 4997:1 4998:1 5012:9 5013:2 5022:1 5025:1 5046:2 5053:2 5087:1 5089:1 5138:3 5140:1 5149:1 5159:3 5160:4 5161:2 5167:3 5174:1 5175:3 5183:1 5190:2 5192:4 5194:2 5195:1 5205:1 5230:1 5264:1 5268:1 5361:1 5403:1 5427:1 5438:1 5439:2 5440:1 5485:1 5486:1 5496:1 5534:2 5549:1 5574:1 5577:2 5579:1 5583:1 5603:1 5606:1 5624:1 5626:1 5630:2 5634:1 5690:1 5713:1 5716:1 5724:1 5740:1 5741:1 5762:1 5780:1 5784:1 5790:1 5794:1 5800:1 5807:1 5822:1 5833:1 5839:1 5841:1 5853:1 5896:1 5908:2 5921:1 5924:1 5926:1 5939:1 5968:2 6017:1 6027:1 6064:1 6065:1 6076:1 6079:1 6092:1 6097:1 6118:1 6143:1 6149:1 6151:1 6168:1 6182:2 6187:1 6195:1 6203:1 6208:2 6211:1 6227:1 6247:1 6255:1 6294:1 6295:1 6296:1 6307:1 6308:1 6311:1 6312:1 6313:1 6315:3 6320:1 6324:1 6325:2 6345:1 6356:1 6388:1 6391:1 6399:1 6408:3 6410:2 6416:1 6428:1 6456:1 6479:2 6486:1 6500:1 6510:1 6523:5 6528:1 6534:4 6538:1 6539:1 6545:1 6546:1 6550:2 6552:6 6560:1 6581:1 6600:2 6615:1 6619:1 6629:1 6657:1 6667:1 6674:2 6679:3 6720:1 6736:1 6744:1 6746:1 6749:1 6763:1 6769:1 6772:1 6776:1 6785:1 6792:1 6795:2 6796:1 6820:1 6831:1 6850:1 6853:1 6866:1 6872:1 6899:1 6901:1 6904:1 6908:3 6927:1 6939:1 6960:1 6962:1 6967:1 6974:1 6997:1 7030:1 7063:2 7083:1 7101:1 7102:1 7114:1 7130:1 7178:1 7184:1 7187:1 7192:1 7203:1 7217:4 7269:1 7271:1 7277:1 7287:2 7301:2 7332:1 7369:2 7398:1 7406:1 7412:1 7413:1 7428:1 7435:1 7442:1 7485:1 7495:1 7496:1 7508:1 7563:1 7571:1 7582:1 7593:1 7596:5 7629:4 7632:1 7636:1 7663:1 7664:2 7679:1 7707:1 7718:1 7725:1 7748:3 7749:1 7779:1 7787:1 7803:1 7815:7 7816:8 7821:1 7833:1 7835:5 7864:3 7868:1 7878:23 7882:1 7883:1 7886:2 7890:1 7891:1 7897:10 7900:3 7903:1 7908:1 7911:1 7932:1 7933:1 7941:1 7949:1 7985:3 7996:1 8013:1 8014:1 8037:1 8039:2 8054:2 8065:1 8071:1 8075:2 8077:1 8083:1 8087:1 8105:1 8109:3 8119:1 8129:1 8159:1 8162:2 8196:1 8249:1 8253:1 8286:1 8290:1 8300:1 8312:2 8351:1 8364:1 8376:1 8377:20 8384:1 8392:1 8396:1 8410:8 8411:3 8426:1 8428:1 8443:1 8445:1 8449:2 8466:1 8475:1 8480:1 8492:24 8499:1 8501:1 8588:1 8596:1 8645:1 8657:1 8659:2 8667:1 8671:1 8677:1 8683:1 8687:1 8693:3 8694:1 8713:1 8720:1 8745:2 8750:1 8760:2 8762:1 8763:1 8766:1 8768:1 8778:1 8779:2 8782:1 8783:1 8792:1 8822:1 8832:1 8836:1 8841:1 8845:1 8862:2 8915:1 8923:1 8931:1 8987:2 8989:1 9014:2 9052:1 9057:1 9059:1 9061:1 9069:1 9086:1 9090:3 9106:1 9110:1 9111:1 9112:1 9118:1 9129:3 9138:1 9139:1 9140:1 9184:1 9196:1 9236:1 9238:3 9247:1 9256:1 9258:1 9320:2 9343:1 9378:3 9382:2 9384:1 9391:1 9393:3 9394:1 9396:1 9400:1 9404:1 9406:1 9408:1 9415:1 9429:1 9435:1 9442:1 9445:1 9446:1 9447:2 9449:1 9456:1 9466:1 9473:2 9483:4 9490:2 9496:2 9504:1 9525:1 9534:1 9546:1 9558:1 9563:1 9564:2 9571:1 9580:1 9607:1 9610:1 9611:1 9616:2 9619:1 9623:1 9624:1 9637:1 9642:1 9660:1 9661:1 9675:1 9677:2 9678:4 9681:1 9701:2 9703:1 9706:1 9715:1 9717:1 9719:3 9723:1 9726:1 9738:1 9751:1 9779:1 9782:1 9797:1 9802:1 9803:1 9804:1 9841:1 9855:1 9856:1 9860:1 9887:1 9905:5 9915:1 9916:1 9921:3 9924:4 9936:1 9987:1 10028:1 10029:1 10046:19 10055:1 10061:1 10069:1 10083:1 10092:1 10097:1 10115:1 10117:1 10122:1 10131:2 10134:1 10170:2 10174:1 10177:2 10184:1 10188:2 10195:2 10220:1 10229:1 10242:2 10252:1 10260:1 10261:2 10280:1 10284:4 10297:2 10299:1 10322:3 10337:1 10339:1 10350:1 10359:1 10362:1 10381:1 10383:2 10388:1 10404:1 10417:1 10426:5 10440:1 10464:1 10518:1 10526:1 10542:3 10555:1 10564:1 10575:1 10576:1 10582:1 10604:1 10609:1 10623:1 10624:3 10641:1 10664:1 10681:1 10691:1 10707:1 10725:1 10740:2 10745:1 10758:1 10760:3 10773:1 10786:2 10820:2 10840:1 10842:2 10859:1 10860:4 10864:1 10867:2 10874:1 10882:1 10894:1 10907:1 10912:1 10923:1 10929:4 10934:1 10942:1 10956:1 10976:1 10990:1 11005:1 11036:1 11066:1 11083:1 11098:2 11111:2 11114:3 11117:1 11124:1 11143:2 11152:1 11158:1 11167:1 11170:1 11176:1 11195:1 11197:8 11200:1 11203:1 11215:1 11217:3 11219:3 11220:1 11231:1 11234:1 11237:1 11246:1 11264:1 11276:4 11279:1 11285:1 11286:1 11293:1 11300:1 11303:2 11311:1 11320:1 11347:2 11375:1 11383:1 11385:1 11390:1 11404:3 11407:1 11456:1 11464:1 11474:1 11476:2 11483:1 11487:1 11490:1 11503:3 11505:1 11508:1 11510:1 11511:1 11518:1 11532:1 11535:2 11552:1 11571:2 11609:1 11614:1 11617:1 11622:1 11629:1 11636:5 11648:2 11649:1 11674:1 11679:1 11695:1 11702:1 11714:1 11732:1 11750:2 11770:1 11775:3 11797:1 11803:1 11812:1 11824:1 11827:1 11829:1 11834:1 11838:1 11839:3 11840:1 11845:2 11851:3 11871:1 11878:1 11881:2 11891:1 11899:1 11900:2 11904:1 11916:1 11930:1 11936:1 11949:1 11979:1 11992:1 11996:1 12003:3 12011:1 12039:1 12043:2 12054:1 12090:1 12092:1 12110:1 12163:1 12164:1 12179:1 12223:1 12240:3 12261:3 12281:1 12283:1 12289:1 12337:1 12338:1 12339:1 12345:1 12364:1 12383:1 12385:1 12406:1 12421:1 12444:1 12455:1 12460:2 12461:3 12470:1 12483:1 12510:1 12513:2 12522:1 12532:1 12588:1 12597:3 12599:1 12612:1 12613:1 12648:1 12650:1 12657:1 12664:1 12666:1 12722:1 12723:1 12746:1 12763:1 12767:1 12790:2 12792:20 12800:1 12809:1 12813:4 12821:1 12859:4 12873:1 12884:2 12888:1 12902:1 12922:1 12927:1 12932:1 12964:1 12967:1 12980:1 13001:1 13008:1 13024:2 13032:1 13038:1 13086:1 13100:1 13116:1 13132:1 13141:2 13145:1 13180:1 13183:1 13217:1 13239:1 13257:1 13262:1 13265:1 13268:1 13269:1 13280:1 13286:7 13291:1 13307:1 13313:2 13326:1 13340:1 13384:1 13412:1 13417:1 13418:1 13419:2 13424:2 13427:2 13430:2 13437:1 13480:1 13482:1 13491:7 13495:1 13502:1 13584:1 13585:1 13595:1 13626:1 13639:3 13641:3 13647:1 13673:1 13676:1 13695:2 13700:2 13705:1 13707:1 13713:1 13716:1 13717:1 13729:2 13732:1 13747:1 13766:1 13770:1 13772:1 13773:1 13775:1 13780:1 13782:5 13783:1 13784:1 13805:1 13808:1 13809:1 13814:4 13827:2 13859:1 13868:1 13869:1 13873:1 13901:1 13910:1 13928:1 13935:1 13941:1 13951:8 13953:1 13955:1 13963:1 13974:1 13980:1 13988:1 13998:1 14012:1 14028:1 14030:2 14038:3 14052:1 14057:3 14059:1 14069:5 14072:3 14096:1 14107:1 14147:2 14156:1 14177:4 14232:1 14241:1 14259:1 14261:2 14275:1 14278:1 14314:1 14361:4 14422:1 14449:1 14451:1 14460:2 14466:2 14468:3 14485:1 14486:1 14497:1 14541:1 14555:1 14560:1 14574:1 14575:1 14576:1 14590:1 14592:2 14607:1 14615:1 14617:1 14621:1 14622:1 14625:1 14627:1 14629:1 14634:1 14643:1 14653:1 14657:1 14659:1 14664:1 14670:1 14688:1 14699:20 14705:2 14708:1 14709:1 14714:1 14721:1 14736:1 14786:1 14789:1 14792:3 14800:1 14801:1 14806:2 14827:1 14832:1 14847:3 14863:1 14869:1 14870:1 14887:1 14890:1 14900:1 14902:1 14939:1 14979:1 14993:1 15000:2 15003:1 15010:1 15016:1 15031:1 15054:1 15060:1 15069:1 15070:2 15072:1 15080:1 15087:1 15100:1 15105:1 15106:1 15109:6 15169:1 15193:2 15197:1 15208:1 15218:1 15223:1 15237:2 15245:1 15247:1 15257:1 15258:1 15278:1 15299:1 15315:1 15322:1 15340:2 15380:1 15386:1 15396:1 15409:2 15433:1 15452:1 15462:2 15465:1 15478:1 15482:1 15488:1 15491:1 15542:1 15555:1 15556:2 15557:1 15584:1 15590:1 15608:4 15610:1 15616:2 15633:1 15653:1 15674:1 15678:1 15690:1 15718:1 15730:1 15742:2 15762:3 15779:1 15783:1 15796:3 15802:2 15805:1 15818:2 15823:1 15827:1 15835:3 15888:1 15890:1 15899:1 15921:4 15923:1 15931:1 15951:1 15960:1 15961:3 16006:1 16023:1 16025:1 16038:1 16051:1 16057:1 16060:8 16062:2 16067:1 16096:2 16098:3 16100:1 16105:1 16133:2 16140:1 16142:1 16143:2 16165:8 16178:1 16186:1 16200:2 16203:1 16239:1 16250:1 16254:1 16262:1 16264:1 16271:1 16285:4 16291:3 16292:1 16299:1 16300:1 16301:1 16304:1 16321:1 16333:1 16357:1 16387:1 16392:1 16404:1 16413:1 16416:1 16418:1 16419:1 16440:1 16455:1 16457:1 16476:1 16484:1 16510:1 16522:1 16524:2 16527:1 16604:1 16613:1 16617:1 16631:2 16644:1 16646:1 16647:1 16649:1 16679:1 16687:1 16689:1 16692:1 16751:1 16757:1 16769:1 16773:3 16776:1 16797:1 16800:2 16810:1 16811:2 16822:1 16881:1 16899:1 16926:27 16932:1 16933:1 16949:1 16951:1 16963:1 16967:3 17020:1 17028:1 17030:1 17038:1 17042:1 17047:1 17068:2 17072:2 17083:1 17103:1 17132:1 17138:1 17143:1 17144:1 17166:1 17181:1 17184:1 17207:1 17208:1 17213:1 17234:1 17236:2 17250:1 17281:1 17284:1 17332:1 17361:1 17375:1 17380:1 17383:1 17384:1 17393:1 17395:1 17424:1 17440:1 17450:1 17452:1 17457:1 17459:2 17465:1 17475:1 17484:1 17535:2 17545:1 17549:2 17555:2 17560:1 17579:1 17604:1 17632:4 17637:2 17639:1 17649:1 17662:1 17671:2 17692:1 17711:2 17727:1 17731:1 17758:3 17766:4 17787:1 17812:1 17817:1 17844:1 17855:4 17859:1 17860:1 17884:2 17909:2 17926:1 17929:1 17930:1 17936:2 17937:1 17964:1 18012:1 18013:3 18018:1 18026:1 18058:1 18098:1 18100:1 18142:1 18146:3 18206:2 18210:1 18223:1 18234:1 18245:1 18269:1 18300:5 18310:1 18316:1 18332:1 18340:1 18374:1 18377:2 18393:1 18395:1 18419:1 18431:1 18447:1 18450:1 18462:1 18499:1 18507:1 18516:1469 18527:1 18538:2 18551:1 18566:1 18587:1 18597:1 18604:1 18638:3 18648:1 18651:2 18653:1 18678:1 18707:1 18712:1 18724:1 18780:1 18832:1 18859:1 18863:1 18864:1 18894:1 18902:1 18933:1 18952:1 18969:1 18976:2 18986:1 19014:2 19016:2 19034:1 19037:1 19083:1 19085:4 19116:3 19120:1 19128:1 19175:1 19178:1 19184:1 19192:1 19198:1 19219:1 19230:1 19253:1 19259:1 19268:1 19276:1 19282:4 19283:3 19290:1 19315:1 19318:4 19342:2 19377:12 19384:1 19399:2 19409:1 19420:2 19421:1 19427:1 19428:1 19451:3 19454:1 19461:2 19469:1 19481:2 19490:3 19491:1 19500:1 19509:1 19558:1 19561:1 19574:1 19584:2 19589:1 19609:2 19611:1 19653:1 19656:1 19658:1 19697:1 19709:1 19726:1 19728:1 19732:1 19737:1 19768:1 19793:1 19813:1 19819:1 19820:1 19822:1 19823:1 19829:1 19835:1 19847:1 19851:1 19866:1 19881:1 19896:1 19927:2 19929:5 19937:1 19945:1 19950:1 19957:1 19962:1 19986:1 19992:1 19995:1 20000:1 20001:2 20002:1 20029:2 20030:3 20033:1 20042:1 20043:1 20051:4 20079:1 20099:1 20109:1 20117:1 20123:2 20132:1 20144:2 20156:1 20162:1 20185:1 20199:1 20211:3 20223:2 20244:1 20258:1 20259:1 20268:1 20311:1 20338:1 20387:1 20390:1 20408:1 20451:3 20460:1 20483:1 20484:1 20495:1 20499:2 20500:1 20513:3 20541:1 20555:1 20591:1 20602:1 20605:1 20623:1 20630:1 20661:1 20664:1 20668:1 20691:2 20697:1 20702:2 20711:1 20720:1 20725:1 20748:1 20754:1 20762:2 20764:2 20767:1 20773:3 20788:1 20789:1 20798:1 20799:1 20808:1 20810:1 20829:1 20833:1 20840:1 20842:2 20848:1 20853:3 20862:1 20866:1 20869:3 20878:1 20886:1 20892:2 20940:1 20942:3 20945:1 20953:1 20958:1 20994:1 20996:1 21001:2 21004:2 21018:1 21021:1 21026:1 21037:2 21057:1 21061:1 21071:1 21078:1 21114:1 21122:1 21137:1 21153:1 21155:1 21185:1 21190:1 21202:1 21204:1 21206:2 21219:1 21237:3 21257:1 21271:2 21276:1 21285:1 21286:1 21310:1 21311:1 21313:2 21351:2 21359:1 21363:1 21364:2 21369:2 21398:1 21414:1 21442:1 21455:1 21464:2 21508:3 21530:1 21543:1 21558:3 21562:1 21570:3 21574:1 21577:1 21610:1 21625:4 21658:1 21696:1 21699:1 21705:3 21712:1 21715:3 21719:1 21728:2 21739:1 21748:1 21764:6 21775:1 21791:1 21835:1 21837:1 21843:1 21845:1 21879:2 21881:4 21884:2 21887:1 21895:1 21896:1 21898:1 21906:1 21908:1 21915:1 21918:1 21919:1 21923:2 21924:3 21925:1 21936:1 21939:1 21947:1 21955:1 21975:1 21997:1 22000:1 22026:2 22028:1 22047:1 22058:2 22062:1 22066:4 22082:2 22095:1 22114:1 22128:2 22133:1 22161:2 22175:1 22179:2 22214:1 22219:1 22235:1 22242:1 22248:8 22267:2 22275:1 22310:8 22312:2 22316:1 22321:1 22362:1 22365:4 22368:2 22370:1 22383:1 22416:1 22418:1 22425:7 22439:1 22456:2 22462:1 22471:1 22475:1 22479:1 22481:1 22490:1 22492:1 22516:1 22533:1 22536:1 22542:1 22543:1 22555:3 22566:2 22582:1 22599:3 22640:1 22671:1 22676:1 22688:1 22691:1 22694:19 22709:1 22713:2 22714:2 22721:1 22752:2 22757:1 22759:1 22760:1 22770:1 22771:1 22805:1 22809:1 22816:1 22838:1 22842:2 22852:2 22861:1 22871:4 22874:1 22901:1 22986:1 22990:1 23000:2 23019:1 23060:1 23074:1 23075:1 23079:1 23083:1 23093:1 23095:2 23103:1 23108:2 23111:1 23115:1 23147:20 23168:2 23169:1 23186:1 23199:1 23202:1 23223:1 23227:1 23228:1 23235:2 23242:2 23247:6 23276:1 23283:1 23289:1 23307:1 23315:1 23321:3 23325:2 23329:1 23350:1 23358:1 23371:1 23379:2 23381:2 23408:1 23487:1 23506:1 23509:2 23525:1 23543:1 23593:1 23596:1 23610:1 23617:1 23622:1 23641:2 23651:2 23664:1 23670:1 23740:2 23745:1 23752:1 23767:2 23772:1 23775:1 23785:1 23786:1 23802:1 23817:1 23838:1 23857:1 23890:1 23891:1 23895:1 23912:1 23915:1 23941:1 23956:1 23957:3 23982:2 24001:1 24008:2 24013:1 24028:2 24065:1 24067:1 24069:2 24075:1 24080:2 24092:1 24093:2 24097:3 24105:1 24114:1 24144:3 24186:7 24191:1 24213:1 24217:1 24220:1 24225:1 24235:1 24275:1 24286:1 24291:1 24334:2 24366:1 24379:1 24384:1 24388:2 24414:1 24420:1 24427:1 24435:1 24444:1 24480:3 24484:2 24492:1 24493:1 24499:3 24505:1 24524:1 24536:2 24552:3 24572:1 24576:2 24577:2 24612:1 24620:1 24623:1 24626:1 24628:4 24631:1 24645:1 24646:1 24653:1 24656:1 24661:1 24676:1 24687:1 24689:1 24699:1 24711:1 24757:1 24779:1 24797:1 24802:1 24803:1 24815:1 24838:1 24854:1 24858:1 24859:2 24863:1 24871:2 24911:1 24922:2 24943:1 24974:1 24979:1 25025:1 25048:1 25075:2 25077:3 25088:1 25097:1 25100:2 25107:1 25132:1 25133:1 25134:1 25166:2 25173:1 25181:1 25205:2 25212:1 25215:1 25222:3 25227:1 25236:1 25238:1 25248:1 25255:1 25277:1 25279:1 25281:2 25283:1 25284:1 25306:1 25310:1 25328:2 25351:1 25362:1 25378:1 25383:1 25384:1 25387:1 25402:1 25408:1 25415:1 25423:1 25440:2 25451:3 25454:1 25461:1 25467:1 25485:2 25499:2 25511:1 25516:3 25546:3 25552:1 25573:1 25576:8 25585:2 25599:1 25617:1 25628:1 25636:1 25693:1 25705:1 25707:1 25710:1 25713:2 25718:1 25740:1 25741:1 25766:1 25777:2 25778:1 25809:1 25823:1 25832:1 25844:1 25850:2 25861:1 25874:1 25876:1 25884:2 25895:1 25920:3 25929:1 25944:2 25955:1 25956:1 25964:1 25989:1 25994:1 25995:3 25998:1 26005:2 26018:2 26019:1 26022:7 26023:1 26042:1 26054:1 26061:1 26074:1 26093:3 26113:1 26119:1 26122:1 26125:1 26130:1 26156:1 26182:1 26202:2 26253:2 26268:1 26272:1 26278:1 26283:1 26286:1 26333:2 26336:1 26356:1 26399:1 26428:1 26429:1 26440:2 26450:1 26465:1 26498:1 26509:1 26525:1 26536:1 26546:1 26588:1 26597:1 26609:2 26616:1 26626:1 26630:2 26632:5 26653:1 26654:2 26661:1 26663:1 26675:4 26691:1 26703:3 26712:1 26734:1 26743:4 26744:1 26746:2 26754:1 26764:1 26774:1 26778:2 26789:3 26794:1 26796:1 26799:1 26813:1 26818:1 26847:1 26866:1 26870:1 26875:1 26878:1 26884:1 26889:1 26894:1 26897:2 26899:1 26901:1 26911:1 26915:1 26918:3 26923:2 26930:1 26931:1 26932:1 26945:2 26971:2 26979:1 26994:1 27043:1 27045:1 27054:3 27064:2 27082:1 27096:1 27100:2 27130:1 27131:1 27145:1 27150:1 27178:1 27188:3 27196:1 27206:1 27224:1 27228:1 27230:1 27235:1 27236:1 27249:1 27251:3 27254:2 27258:2 27265:1 27266:2 27269:1 27271:2 27276:2 27287:1 27296:1 27297:1 27299:2 27311:1 27318:1 27320:1 27329:1 27347:5 27365:3 27390:1 27401:1 27405:2 27411:1 27418:1 27424:1 27448:1 27451:1 27466:1 27468:1 27472:1 27502:1 27504:1 27516:1 27540:1 27556:1 27558:1 27620:1 27658:3 27659:2 27666:3 27670:2 27673:3 27676:1 27689:1 27713:1 27718:1 27722:1 27727:1 27732:1 27734:1 27745:1 27764:1 27784:2 27802:2 27832:1 27858:1 27868:1 27874:1 27898:1 27909:1 27912:1 27950:1 27953:1 27956:1 27969:12 27978:1 27999:1 28008:5 28060:1 28080:2 28095:1 28105:1 28107:1 28117:7 28123:2 28134:1 28137:1 28151:1 28152:1 28165:7 28170:1 28177:1 28207:1 28212:1 28214:1 28222:1 28231:1 28243:2 28258:1 28283:1 28296:2 28375:1 28392:24 28413:1 28416:3 28417:1 28423:3 28424:1 28435:1 28457:1 28485:3 28490:7 28503:1 28509:1 28512:1 28522:1 28545:1 28546:2 28584:1 28597:1 28610:1 28615:2 28634:1 28635:1 28647:1 28660:1 28669:1 28690:2 28701:1 28710:1 28760:1 28782:1 28785:1 28787:2 28796:1 28798:1 28814:1 28854:1 28859:2 28865:1 28875:2 28894:2 28903:1 28913:1 28937:1 28940:1 28954:1 28959:1 28964:1 28976:1 29000:2 29003:1 29005:2 29027:1 29031:2 29042:5 29057:2 29062:2 29063:2 29073:20 29100:1 29128:1 29137:1 29139:1 29141:1 29146:2 29147:2 29183:1 29194:1 29223:1 29225:1 29240:1
2 12:1 13:1 31:2 32:1 49:1 55:1 56:1 75:1 85:2 88:1 89:2 98:1 113:1 146:2 154:1 166:1 170:1 174:1 180:1 184:1 209:1 213:1 223:1 228:1 249:1 265:2 271:3 272:1 276:1 286:1 287:1 291:1 322:1 329:1 358:1 359:3 376:1 385:1 391:1 392:1 395:1 415:2 425:1 429:1 446:1 452:1 460:1 471:1 479:2 501:2 505:1 509:1 515:1 544:1 553:1 562:1 564:1 607:3 613:1 620:1 623:1 644:2 658:21 663:3 667:1 682:1 686:1 696:1 699:2 714:1 719:1 728:2 735:2 749:1 783:2 809:1 813:2 815:1 817:2 820:2 822:1 823:1 857:1 861:3 904:3 905:6 908:1 917:5 930:1 937:3 951:2 957:3 960:4 964:1 965:1 970:1 976:1 980:2 982:2 999:2 1003:1 1006:1 1027:1 1029:1 1032:1 1036:1 1048:2 1055:3 1098:2 1099:1 1112:1 1158:1 1160:2 1190:1 1211:1 1214:20 1220:1 1223:2 1224:1 1227:1 1229:3 1232:1 1256:1 1258:2 1260:1 1270:1 1275:1 1279:1 1280:1 1281:1 1288:1 1290:1 1298:1 1302:1 1314:1 1338:1 1354:1 1356:2 1380:1 1390:1 1393:1 1397:1 1402:2 1404:1 1430:1 1444:1 1452:2 1462:2 1475:1 1499:1 1501:1 1502:2 1506:1 1510:6 1516:1 1546:1 1576:2 1582:1 1598:1 1602:2 1615:1 1631:1 1636:1 1637:1 1639:1 1647:1 1676:1 1677:1 1685:1 1690:1 1691:1 1705:1 1720:1 1728:1 1740:2 1745:3 1760:1 1776:1 1778:1 1779:1 1783:1 1795:1 1820:1 1827:1 1833:1 1840:1 1842:1 1853:1 1866:1 1870:2 1871:2 1878:1 1895:1 1897:1 1898:1 1918:1 1921:2 1930:1 1937:1 1941:2 1947:2 1959:1 1976:1 1982:1 1993:1 2001:1 2022:3 2042:1 2051:1 2053:1 2077:1 2094:1 2118:1 2123:1 2145:1 2157:1 2161:1 2172:1 2176:1 2196:6 2217:1 2235:1 2238:1 2265:1 2269:1 2291:1 2299:1 2325:1 2333:1 2334:1 2336:3 2338:2 2339:1 2341:1 2342:3 2347:3 2349:1 2352:3 2356:3 2359:1 2362:1 2364:1 2367:1 2369:2 2372:1 2375:1 2376:1 2382:1 2383:1 2406:1 2421:2 2422:1 2430:3 2457:2 2460:1 2478:1 2479:1 2494:1 2495:2 2503:1 2513:1 2514:4 2522:2 2531:1 2533:1 2539:1 2550:2 2571:1 2596:1 2603:1 2610:1 2646:2 2663:1 2674:1 2681:1 2730:1 2735:1 2736:2 2751:2 2758:1 2775:1 2785:3 2787:1 2804:1 2809:1 2812:3 2813:1 2819:1 2822:2 2826:1 2833:1 2839:1 2841:1 2872:1 2877:1 2881:1 2883:3 2889:1 2892:1 2901:2 2904:1 2937:2 2949:1 2956:1 2982:10 2984:21 2986:1 2990:1 2991:2 2998:2 3002:1 3014:1 3018:1 3019:1 3023:3 3024:1 3029:1 3032:1 3039:5 3049:1 3053:2 3057:1 3070:1 3091:2 3100:1 3101:1 3127:1 3133:2 3142:1 3169:2 3267:1 3281:1 3297:1 3301:1 3316:1 3340:1 3351:1 3354:2 3360:1 3368:1 3393:1 3399:1 3401:1 3419:1 3482:1 3486:1 3502:1 3506:1 3525:1 3527:1 3536:1 3540:1 3550:1 3552:1 3564:1 3601:1 3604:1 3612:1 3627:1 3632:1 3642:1 3666:1 3684:1 3690:1 3697:1 3704:1 3734:1 3758:1 3773:2 3774:1 3775:1 3779:1 3782:1 3831:2 3833:1 3872:1 3877:1 3884:1 3902:1 3907:1 3909:1 3915:1 3938:1 3940:1 3946:3 3964:1 3985:1 3990:20 3991:2 4012:1 4049:1 4052:1 4056:1 4066:1 4072:2 4079:4 4081:2 4096:2 4102:1 4108:1 4113:2 4117:5 4118:2 4132:2 4171:1 4196:1 4208:2 4216:1 4231:1 4260:1 4262:1 4264:1 4267:1 4269:1 4272:1 4277:1 4293:1 4307:1 4309:2 4310:1 4312:2 4317:1 4319:3 4331:1 4357:1 4376:3 4402:1 4405:2 4409:1 4424:1 4434:20 4443:1 4446:1 4448:1 4452:4 4466:1 4475:1 4477:1 4479:1 4527:2 4535:6 4550:1 4553:1 4557:1 4590:3 4604:2 4610:1 4618:1 4622:2 4623:1 4629:1 4648:1 4668:7 4676:1 4698:1 4717:1 4744:1 4774:2 4790:1 4811:1 4812:1 4818:3 4826:1 4854:1 4863:1 4898:1 4902:1 4903:2 4908:2 4909:1 4916:1 4920:1 4942:1 4943:2 4954:1 4974:1 4977:1 4983:1 4997:1 4998:1 5012:9 5013:2 5022:1 5025:1 5046:2 5053:2 5063:1 5087:1 5089:1 5138:3 5140:1 5143:1 5149:1 5159:3 5160:4 5161:2 5167:3 5174:1 5175:3 5183:1 5190:2 5192:5 5194:2 5195:1 5205:1 5230:1 5264:1 5268:1 5361:1 5403:1 5427:1 5438:1 5439:2 5440:1 5462:1 5485:1 5486:1 5496:1 5534:2 5549:1 5574:1 5577:2 5579:1 5583:1 5603:1 5606:1 5624:1 5626:1 5630:2 5634:1 5690:1 5713:1 5716:1 5724:1 5729:1 5740:1 5741:1 5742:1 5762:1 5780:1 5784:1 5790:1 5794:1 5800:1 5807:1 5822:1 5833:1 5839:1 5841:1 5853:1 5896:1 5908:2 5921:1 5924:1 5926:1 5939:1 5968:2 6017:1 6027:1 6063:1 6064:1 6065:1 6076:1 6079:1 6092:1 6097:1 6118:1 6143:1 6149:1 6151:1 6168:1 6182:2 6187:1 6195:1 6198:1 6203:1 6208:2 6211:1 6227:1 6247:1 6255:1 6294:1 6295:2 6296:1 6307:1 6308:1 6311:1 6312:1 6313:1 6315:3 6320:1 6324:1 6325:2 6345:1 6356:1 6388:1 6391:1 6399:1 6408:3 6410:2 6416:1 6428:1 6456:1 6479:2 6486:1 6500:1 6510:1 6523:5 6528:1 6534:4 6538:1 6539:1 6540:1 6543:1 6545:1 6546:1 6550:2 6552:6 6560:1 6563:1 6581:1 6600:2 6615:1 6619:1 6629:1 6657:1 6667:1 6674:2 6679:3 6720:1 6736:1 6744:1 6746:1 6749:1 6763:1 6769:1 6772:1 6776:1 6785:1 6792:1 6795:2 6796:1 6820:1 6831:2 6850:1 6853:1 6866:1 6872:1 6899:1 6901:1 6904:1 6908:3 6927:1 6939:1 6960:1 6962:1 6967:1 6974:1 6997:1 7030:1 7063:2 7083:1 7101:1 7102:1 7114:1 7117:1 7130:1 7178:1 7184:1 7187:1 7192:1 7203:1 7217:4 7264:1 7269:1 7271:1 7277:1 7287:2 7301:2 7332:1 7369:2 7398:1 7406:1 7412:1 7413:1 7423:1 7428:1 7435:1 7442:1 7474:1 7485:1 7495:1 7496:1 7508:1 7543:1 7563:1 7571:1 7582:1 7593:1 7596:5 7629:4 7632:1 7636:1 7663:1 7664:2 7679:1 7707:1 7718:1 7725:1 7748:3 7749:1 7779:1 7787:1 7803:1 7815:7 7816:9 7821:1 7833:1 7835:5 7864:3 7868:1 7878:24 7882:1 7883:1 7886:2 7890:1 7891:1 7897:10 7900:3 7903:1 7908:1 7911:1 7932:1 7933:1 7941:1 7949:1 7985:3 7996:1 8013:1 8014:1 8037:1 8039:2 8054:2 8065:1 8071:1 8075:2 8077:1 8083:1 8087:1 8105:1 8109:3 8119:1 8129:1 8159:1 8162:2 8196:1 8249:1 8253:1 8286:1 8290:1 8300:1 8312:2 8351:1 8364:1 8376:1 8377:21 8384:1 8392:1 8396:1 8410:9 8411:3 8426:1 8428:2 8443:1 8445:1 8449:2 8466:1 8475:1 8480:1 8492:25 8499:1 8501:1 8588:1 8596:1 8645:1 8657:1 8659:2 8667:1 8671:1 8677:1 8683:1 8687:1 8693:3 8694:1 8713:1 8720:1 8725:1 8745:3 8750:1 8760:2 8762:1 8763:1 8766:1 8768:1 8778:2 8779:2 8782:1 8783:1 8792:1 8822:1 8832:1 8836:1 8841:1 8845:1 8850:1 8862:2 8915:1 8923:1 8931:1 8987:2 8989:1 9014:2 9052:1 9057:1 9059:1 9061:1 9069:1 9086:1 9090:3 9106:1 9110:1 9111:1 9112:1 9118:1 9129:3 9138:1 9139:1 9140:1 9184:1 9196:1 9236:1 9238:4 9247:1 9256:1 9258:1 9300:1 9320:3 9343:1 9378:3 9382:2 9384:1 9391:1 9393:3 9394:1 9396:1 9400:1 9404:1 9406:1 9408:1 9415:1 9429:1 9432:1 9435:1 9442:1 9445:1 9446:1 9447:2 9449:1 9456:1 9466:1 9473:2 9483:4 9490:2 9496:2 9504:1 9525:1 9534:1 9546:1 9558:1 9563:1 9564:2 9571:1 9580:1 9607:1 9610:1 9611:1 9616:2 9619:1 9623:1 9624:1 9637:1 9642:1 9660:1 9661:1 9675:1 9677:2 9678:5 9681:1 9694:1 9701:2 9703:1 9706:1 9715:1 9717:1 9719:3 9723:1 9726:1 9738:1 9751:1 9779:1 9782:1 9797:1 9802:1 9803:1 9804:1 9841:1 9855:1 9856:1 9860:1 9887:1 9905:5 9915:1 9916:1 9921:3 9924:4 9927:1 9936:1 9987:1 10028:1 10029:1 10046:20 10055:1 10061:1 10069:1 10083:1 10092:1 10097:1 10115:1 10117:1 10122:1 10131:2 10134:1 10170:2 10174:1 10177:2 10184:1 10188:2 10195:2 10220:1 10229:1 10242:2 10243:1 10252:1 10260:1 10261:2 10280:1 10284:4 10297:2 10299:1 10322:3 10337:1 10339:1 10350:1 10359:1 10362:1 10381:1 10383:2 10388:1 10393:1 10404:1 10417:1 10426:5 10440:1 10464:1 10518:1 10526:1 10542:3 10555:1 10564:1 10575:1 10576:1 10582:1 10604:1 10609:1 10623:1 10624:3 10641:1 10664:1 10681:1 10691:1 10707:1 10725:1 10740:2 10745:1 10758:1 10760:3 10773:1 10786:2 10820:2 10840:1 10842:2 10859:1 10860:4 10864:1 10867:2 10874:1 10882:1 10894:1 10907:1 10912:1 10923:1 10929:5 10934:1 10942:1 10956:1 10976:1 10990:1 11005:1 11036:1 11066:1 11083:1 11098:2 11111:2 11114:3 11117:1 11124:1 11143:3 11152:1 11158:1 11167:1 11170:1 11176:1 11195:1 11197:8 11200:1 11203:1 11215:1 11217:3 11219:3 11220:1 11231:1 11234:1 11237:1 11246:1 11264:1 11276:4 11279:1 11285:1 11286:1 11293:1 11300:1 11303:2 11311:1 11320:1 11347:2 11375:1 11383:1 11385:1 11390:1 11400:1 11404:3 11407:1 11437:1 11456:1 11464:1 11474:1 11476:2 11483:1 11487:1 11490:1 11503:3 11505:1 11508:1 11510:1 11511:1 11518:1 11532:1 11535:2 11552:1 11571:2 11609:1 11614:1 11617:1 11622:1 11629:1 11636:5 11648:2 11649:1 11674:1 11679:1 11695:1 11702:1 11714:1 11732:1 11750:2 11770:1 11775:4 11797:1 11803:1 11812:1 11824:1 11827:1 11829:1 11834:1 11838:1 11839:3 11840:1 11845:2 11851:3 11871:1 11878:1 11881:2 11891:1 11895:1 11899:1 11900:2 11904:1 11916:1 11930:1 11936:1 11949:1 11979:1 11992:1 11995:1 11996:1 12003:3 12011:1 12039:1 12043:2 12054:1 12090:1 12092:1 12110:1 12139:1 12163:1 12164:1 12179:1 12223:1 12240:3 12261:3 12281:1 12283:1 12289:1 12330:1 12337:1 12338:1 12339:1 12345:1 12364:1 12383:1 12385:1 12406:1 12421:1 12444:1 12455:1 12460:2 12461:3 12470:1 12483:1 12510:1 12513:2 12522:1 12532:1 12588:1 12597:3 12599:1 12612:1 12613:1 12648:1 12650:1 12657:1 12664:1 12666:1 12722:1 12723:1 12746:1 12763:1 12767:1 12790:2 12792:21 12800:1 12809:1 12813:4 12821:1 12859:4 12873:1 12884:2 12888:1 12902:1 12922:1 12927:1 12932:1 12964:1 12967:1 12969:1 12980:1 13001:1 13008:1 13020:1 13024:2 13032:1 13038:1 13086:1 13100:1 13116:1 13132:1 13141:2 13145:1 13180:1 13183:1 13217:1 13229:1 13239:1 13257:1 13262:1 13265:1 13268:1 13269:1 13280:1 13286:7 13291:1 13306:1 13307:1 13313:2 13326:1 13340:1 13384:1 13412:1 13417:1 13418:1 13419:2 13424:2 13427:2 13430:2 13437:1 13480:1 13482:1 13491:7 13495:1 13502:1 13584:1 13585:1 13595:1 13626:1 13639:3 13641:3 13647:1 13673:1 13676:1 13695:2 13700:2 13705:1 13707:1 13713:1 13716:1 13717:1 13729:2 13732:1 13747:1 13766:1 13770:2 13772:1 13773:1 13775:1 13780:1 13782:6 13783:1 13784:1 13786:1 13805:1 13808:1 13809:1 13814:4 13827:2 13859:1 13868:1 13869:1 13873:1 13901:1 13910:1 13928:1 13935:1 13941:1 13951:8 13953:1 13955:2 13963:1 13974:1 13980:1 13988:1 13998:1 14012:1 14028:1 14030:2 14038:3 14052:1 14055:1 14057:3 14059:1 14069:6 14072:3 14096:1 14107:1 14147:2 14156:1 14177:4 14232:1 14241:1 14259:1 14261:2 14273:1 14275:1 14278:1 14314:1 14361:4 14422:1 14449:1 14451:1 14460:2 14466:2 14468:3 14485:1 14486:1 14497:1 14498:1 14541:1 14555:1 14560:1 14574:1 14575:1 14576:1 14590:1 14592:2 14607:1 14613:1 14615:1 14617:1 14621:1 14622:1 14625:1 14627:1 14629:1 14634:1 14643:1 14652:1 14653:1 14657:1 14659:1 14664:1 14670:2 14688:1 14699:21 14705:2 14708:1 14709:1 14714:1 14721:1 14736:1 14786:1 14789:1 14792:3 14800:1 14801:1 14806:2 14827:1 14832:1 14847:3 14863:1 14869:1 14870:1 14887:1 14890:1 14900:1 14902:1 14939:1 14979:1 14993:1 15000:2 15003:1 15010:1 15016:1 15031:1 15054:1 15060:1 15069:1 15070:2 15072:1 15080:1 15087:1 15100:1 15105:1 15106:1 15109:6 15169:1 15193:2 15197:1 15208:1 15218:1 15223:1 15237:2 15245:1 15247:1 15257:1 15258:1 15278:1 15299:1 15315:1 15322:1 15340:2 15380:1 15386:1 15396:1 15409:2 15433:1 15452:1 15462:2 15465:1 15478:1 15482:1 15488:1 15491:1 15542:1 15555:1 15556:2 15557:1 15584:1 15590:1 15608:4 15610:1 15616:2 15633:1 15653:1 15674:1 15678:1 15690:1 15718:1 15730:1 15742:2 15762:3 15779:1 15783:1 15796:3 15802:2 15805:1 15818:2 15823:1 15827:1 15835:3 15844:1 15888:1 15890:1 15899:1 15921:4 15923:1 15931:1 15951:1 15960:1 15961:3 16006:1 16023:1 16025:1 16038:1 16051:1 16057:1 16060:8 16062:2 16067:1 16096:2 16098:3 16100:1 16105:1 16133:2 16140:1 16142:1 16143:2 16165:8 16178:1 16186:1 16200:2 16203:1 16239:1 16250:1 16254:1 16262:1 16264:1 16271:1 16285:4 16286:1 16291:3 16292:1 16299:1 16300:1 16301:1 16304:1 16321:1 16333:1 16357:1 16387:1 16392:1 16404:1 16413:1 16416:1 16418:1 16419:1 16440:1 16452:1 16455:1 16457:1 16476:1 16484:1 16510:1 16522:1 16524:2 16527:1 16604:1 16613:1 16617:1 16631:2 16644:1 16646:1 16647:1 16649:1 16679:1 16687:1 16689:1 16692:1 16751:1 16757:1 16769:1 16773:3 16776:1 16782:1 16797:1 16800:2 16810:1 16811:2 16822:1 16881:1 16899:1 16926:28 16932:1 16933:1 16949:1 16951:1 16963:1 16967:3 17020:1 17028:1 17030:1 17038:1 17042:1 17047:1 17060:1 17068:2 17072:2 17083:1 17103:1 17132:1 17138:1 17143:1 17144:1 17166:1 17181:1 17184:1 17199:1 17207:1 17208:1 17213:1 17234:1 17236:2 17241:1 17250:1 17255:1 17281:1 17284:1 17329:1 17332:1 17361:1 17375:1 17380:1 17383:1 17384:1 17393:1 17395:1 17424:1 17440:1 17443:1 17450:1 17452:1 17455:1 17457:1 17459:2 17465:1 17475:1 17484:1 17535:2 17545:1 17549:2 17555:2 17560:1 17579:1 17604:1 17632:4 17637:2 17639:1 17645:1 17649:1 17662:1 17671:2 17692:1 17711:2 17727:1 17731:1 17758:3 17766:4 17787:1 17812:1 17817:1 17844:1 17855:4 17859:1 17860:1 17884:3 17909:2 17926:1 17929:1 17930:1 17936:2 17937:1 17964:1 18012:1 18013:3 18018:1 18026:1 18058:1 18098:1 18100:1 18123:1 18142:1 18146:3 18206:2 18210:1 18223:1 18234:1 18245:1 18269:1 18300:5 18310:1 18316:1 18332:1 18340:2 18374:1 18377:2 18393:1 18395:1 18419:1 18431:1 18447:1 18450:1 18462:1 18499:1 18507:1 18516:1531 18527:1 18538:2 18551:1 18566:1 18587:1 18597:1 18604:1 18638:3 18648:1 18651:2 18653:1 18678:1 18707:1 18712:1 18724:1 18780:1 18832:1 18859:1 18863:1 18864:1 18894:1 18902:1 18933:1 18952:1 18969:1 18976:2 18978:1 18986:1 19014:2 19016:2 19034:1 19037:1 19083:1 19085:4 19116:3 19120:1 19128:1 19175:1 19178:1 19184:1 19192:1 19198:1 19219:1 19230:1 19253:1 19259:1 19268:1 19276:1 19282:4 19283:3 19290:1 19315:1 19318:4 19342:2 19377:13 19384:1 19399:2 19409:1 19420:2 19421:1 19427:1 19428:1 19451:3 19454:1 19461:2 19469:1 19481:2 19490:3 19491:1 19500:1 19509:1 19558:1 19561:1 19574:1 19584:2 19589:1 19609:2 19611:1 19653:1 19656:1 19658:1 19692:1 19697:1 19709:1 19726:1 19728:1 19732:1 19737:1 19768:1 19793:1 19813:1 19819:1 19820:1 19822:1 19823:1 19829:1 19835:1 19847:1 19851:1 19861:1 19866:1 19881:1 19896:1 19927:2 19929:5 19937:1 19945:1 19950:1 19957:1 19962:1 19986:1 19992:1 19995:2 20000:1 20001:3 20002:1 20029:2 20030:3 20033:1 20042:1 20043:1 20051:4 20079:1 20099:1 20109:1 20117:1 20123:2 20132:1 20144:2 20156:1 20162:1 20185:1 20199:1 20211:3 20223:2 20244:1 20258:1 20259:1 20268:1 20311:1 20338:1 20387:1 20390:1 20408:1 20451:4 20460:1 20483:1 20484:1 20495:1 20499:2 20500:1 20513:3 20541:1 20555:1 20591:1 20601:1 20602:1 20605:1 20623:1 20630:2 20661:1 20664:1 20668:1 20691:2 20697:1 20702:2 20711:1 20720:1 20725:1 20748:1 20754:1 20762:2 20764:2 20767:1 20773:3 20788:1 20789:1 20798:1 20799:1 20808:1 20810:1 20829:1 20833:1 20840:1 20842:2 20848:1 20853:3 20862:1 20863:1 20866:1 20869:3 20878:1 20886:1 20892:2 20925:1 20940:1 20942:3 20945:1 20953:1 20958:1 20994:1 20996:1 21001:2 21004:2 21018:1 21021:1 21026:1 21037:2 21057:1 21061:1 21071:1 21078:1 21114:1 21122:1 21137:1 21153:1 21155:1 21185:1 21190:1 21202:1 21204:1 21206:3 21219:1 21237:3 21257:1 21271:2 21276:1 21285:1 21286:1 21310:1 21311:1 21313:2 21351:2 21359:1 21363:1 21364:2 21369:2 21397:1 21398:1 21414:1 21415:1 21442:1 21455:1 21464:2 21493:1 21508:3 21517:1 21530:1 21543:1 21558:3 21562:1 21570:4 21574:1 21577:1 21610:1 21625:4 21658:1 21696:1 21699:1 21705:3 21712:1 21715:3 21719:1 21728:2 21739:1 21748:1 21764:6 21775:1 21791:1 21835:1 21837:1 21843:1 21845:1 21879:2 21881:4 21884:2 21887:1 21895:1 21896:1 21898:2 21906:1 21908:1 21915:1 21918:1 21919:1 21923:2 21924:3 21925:1 21936:1 21939:1 21947:1 21955:1 21975:1 21997:1 22000:1 22015:1 22026:2 22028:1 22047:1 22058:2 22062:1 22066:4 22082:2 22095:1 22114:1 22128:3 22133:1 22161:2 22175:1 22179:2 22214:1 22219:1 22235:1 22242:1 22248:8 22267:2 22275:1 22310:8 22312:2 22316:1 22321:1 22362:1 22365:4 22368:2 22370:1 22383:1 22416:1 22418:1 22425:7 22439:1 22456:2 22462:1 22471:1 22475:1 22479:1 22481:1 22490:1 22492:2 22516:1 22533:1 22536:1 22542:1 22543:1 22555:3 22566:2 22582:1 22599:3 22640:1 22671:1 22676:1 22688:1 22691:1 22694:20 22709:1 22713:2 22714:2 22721:1 22727:1 22752:2 22757:1 22759:1 22760:1 22770:1 22771:1 22781:1 22805:1 22809:1 22816:1 22838:1 22842:2 22852:2 22861:1 22871:4 22874:1 22901:1 22986:1 22990:1 23000:3 23019:1 23060:1 23074:1 23075:1 23079:1 23083:1 23093:1 23095:2 23103:1 23108:2 23111:1 23115:1 23147:21 23168:2 23169:1 23186:1 23199:1 23202:1 23223:1 23227:1 23228:1 23235:2 23242:2 23247:6 23276:1 23283:1 23289:1 23307:1 23315:1 23321:3 23325:2 23329:1 23350:1 23358:1 23371:1 23379:2 23381:2 23408:1 23460:1 23487:1 23506:1 23509:2 23525:1 23543:1 23593:1 23596:1 23610:1 23617:1 23622:1 23641:2 23651:2 23664:1 23670:1 23740:2 23745:1 23752:1 23767:2 23772:1 23775:1 23785:1 23786:1 23802:1 23817:1 23838:1 23857:1 23890:1 23891:1 23895:1 23912:1 23915:1 23941:1 23956:1 23957:3 23982:2 24001:1 24008:2 24013:1 24028:2 24065:1 24067:1 24069:2 24075:1 24080:2 24092:1 24093:2 24097:3 24105:1 24114:1 24144:3 24147:1 24186:7 24191:1 24213:1 24217:1 24220:1 24225:1 24235:1 24270:1 24275:1 24286:1 24291:1 24334:2 24366:1 24379:1 24384:1 24388:2 24414:1 24420:1 24427:1 24435:1 24444:1 24480:3 24484:2 24492:1 24493:1 24499:3 24505:1 24524:1 24536:2 24552:3 24572:1 24576:2 24577:2 24612:2 24614:1 24620:1 24623:1 24626:1 24628:4 24631:1 24645:1 24646:1 24653:1 24654:1 24656:1 24661:1 24676:1 24687:1 24689:1 24699:1 24711:1 24757:1 24779:1 24797:1 24802:1 24803:1 24815:1 24838:1 24854:1 24858:1 24859:2 24863:1 24871:2 24911:1 24922:2 24943:1 24971:1 24974:1 24979:1 25025:1 25048:2 25064:1 25075:2 25077:4 25088:1 25097:1 25100:2 25107:1 25132:1 25133:1 25134:1 25166:2 25173:1 25181:1 25192:1 25199:1 25205:2 25212:1 25215:1 25222:4 25227:1 25236:1 25238:1 25248:1 25255:1 25277:1 25279:1 25281:2 25283:1 25284:1 25306:1 25310:1 25328:2 25351:1 25362:1 25378:1 25383:1 25384:1 25387:1 25402:1 25408:1 25415:1 25423:1 25440:2 25451:3 25454:1 25461:1 25467:1 25485:2 25499:2 25511:1 25516:3 25546:3 25552:1 25573:1 25576:8 25585:2 25599:1 25617:1 25628:1 25636:1 25693:1 25705:1 25707:1 25710:1 25713:3 25718:1 25740:1 25741:1 25766:1 25777:2 25778:1 25809:1 25823:1 25832:1 25844:1 25850:2 25861:1 25874:1 25876:1 25884:2 25885:1 25895:1 25920:3 25929:1 25944:2 25955:1 25956:1 25964:1 25988:1 25989:1 25994:1 25995:3 25998:1 26005:2 26018:2 26019:1 26022:7 26023:1 26042:1 26054:1 26061:1 26074:1 26093:3 26113:1 26119:1 26122:1 26125:1 26130:1 26156:1 26182:1 26202:2 26253:2 26268:1 26272:1 26278:1 26283:1 26286:1 26333:2 26336:1 26356:1 26399:1 26428:1 26429:1 26440:2 26450:1 26465:1 26498:1 26509:1 26525:1 26536:1 26542:1 26546:1 26588:1 26597:1 26609:2 26616:1 26626:1 26630:2 26632:5 26653:1 26654:2 26661:2 26663:1 26675:4 26685:1 26691:1 26703:3 26712:1 26734:1 26743:4 26744:1 26746:2 26753:1 26754:1 26764:1 26774:1 26778:2 26789:3 26794:1 26796:1 26799:1 26813:1 26818:1 26847:1 26866:1 26870:1 26875:1 26878:1 26884:1 26889:1 26894:1 26897:3 26899:1 26901:1 26911:1 26915:1 26918:3 26923:2 26930:1 26931:1 26932:1 26945:2 26971:2 26979:1 26994:1 27035:1 27043:1 27045:1 27054:3 27064:2 27074:1 27082:1 27096:1 27100:3 27130:1 27131:1 27145:1 27150:1 27178:1 27188:3 27196:1 27206:1 27224:1 27228:1 27230:1 27235:1 27236:1 27249:1 27251:3 27254:2 27258:2 27265:1 27266:2 27269:1 27271:2 27276:2 27287:1 27296:1 27297:1 27299:2 27311:1 27318:1 27320:1 27329:1 27347:6 27365:3 27390:1 27401:1 27405:2 27411:1 27418:1 27424:1 27448:1 27451:1 27466:1 27468:1 27472:1 27502:1 27504:1 27516:1 27540:1 27556:1 27558:1 27620:1 27658:3 27659:2 27666:4 27670:2 27673:3 27676:1 27689:1 27713:1 27718:1 27722:1 27727:1 27732:1 27734:1 27745:1 27764:1 27784:2 27802:2 27832:1 27858:1 27868:1 27874:1 27898:1 27909:1 27912:1 27950:1 27953:1 27956:1 27969:13 27978:1 27981:1 27999:1 28008:5 28060:1 28076:1 28080:2 28095:1 28105:1 28107:1 28117:8 28123:2 28134:1 28137:1 28151:1 28152:1 28165:7 28170:1 28177:1 28207:1 28212:1 28214:1 28222:1 28231:1 28243:2 28258:1 28283:1 28296:2 28375:1 28392:25 28393:1 28413:1 28416:3 28417:1 28423:3 28424:1 28435:1 28457:1 28485:3 28490:7 28491:1 28503:1 28509:1 28512:1 28522:1 28529:1 28545:1 28546:2 28584:1 28597:1 28610:1 28615:2 28634:1 28635:1 28647:1 28660:1 28669:1 28690:2 28701:1 28710:1 28760:1 28782:1 28785:1 28787:2 28796:1 28798:1 28814:1 28854:1 28859:2 28865:1 28875:2 28894:2 28903:1 28913:1 28937:1 28940:1 28954:1 28959:1 28964:1 28976:1 29000:2 29003:1 29005:2 29027:1 29031:2 29042:5 29057:2 29062:2 29063:2 29073:21 29100:1 29128:1 29137:1 29139:1 29141:2 29146:2 29147:2 29183:1 29194:1 29223:1 29225:2 29236:1 29240:1
2 12:1 13:1 31:2 32:1 49:1 55:1 56:1 75:1 85:2 88:1 89:2 98:1 113:1 146:2 154:1 166:1 170:1 174:1 180:1 184:1 209:1 213:1 223:1 228:1 249:1 265:2 271:3 272:1 276:1 286:1 287:1 291:1 292:1 322:1 329:1 358:1 359:3 376:1 385:1 391:1 392:1 395:1 415:2 425:1 429:1 446:1 452:1 460:1 471:1 479:2 501:2 505:1 509:1 515:1 544:1 553:1 562:1 564:1 607:3 613:1 620:1 623:1 644:3 658:22 663:3 667:1 671:1 682:1 686:1 696:1 699:2 714:1 719:1 728:2 735:2 749:1 783:2 809:1 813:2 815:1 817:3 820:2 822:1 823:1 857:1 861:3 876:1 904:3 905:6 908:1 917:5 930:1 937:3 951:2 957:3 960:5 964:1 965:1 970:1 976:1 980:2 982:2 999:2 1003:1 1006:2 1027:1 1029:2 1032:1 1036:1 1048:2 1055:3 1056:1 1098:2 1099:1 1112:1 1158:1 1160:3 1190:1 1211:1 1214:21 1220:1 1223:2 1224:1 1227:1 1229:3 1232:1 1256:1 1258:2 1260:1 1266:1 1270:1 1275:1 1279:1 1280:1 1281:1 1288:1 1290:1 1298:1 1302:1 1314:1 1338:1 1354:1 1356:2 1380:1 1390:1 1393:1 1397:1 1402:2 1404:1 1420:1 1430:1 1444:1 1452:2 1462:2 1475:1 1499:1 1501:1 1502:2 1506:1 1510:6 1516:1 1546:1 1576:2 1582:1 1598:1 1602:2 1615:1 1631:1 1636:1 1637:1 1639:1 1647:1 1676:1 1677:1 1685:1 1690:1 1691:2 1705:1 1720:1 1728:1 1740:2 1745:3 1760:1 1776:1 1778:1 1779:1 1783:1 1795:1 1820:1 1827:1 1833:1 1840:1 1842:1 1853:1 1866:1 1870:2 1871:2 1878:1 1895:1 1897:1 1898:3 1918:1 1921:2 1930:1 1937:1 1941:2 1947:2 1959:1 1976:1 1982:1 1993:1 2001:1 2022:3 2042:1 2051:1 2053:1 2077:1 2094:1 2118:1 2123:1 2144:1 2145:1 2157:1 2161:1 2172:1 2176:1 2181:1 2196:6 2217:1 2235:1 2238:1 2239:1 2265:1 2269:1 2291:1 2299:1 2325:1 2329:1 2333:1 2334:1 2335:1 2336:3 2338:2 2339:1 2341:1 2342:3 2347:3 2349:3 2352:4 2356:3 2359:1 2362:1 2364:1 2367:1 2369:2 2372:1 2375:1 2376:1 2382:1 2383:1 2406:1 2421:2 2422:1 2430:3 2457:2 2460:1 2478:1 2479:1 2494:1 2495:2 2503:1 2513:1 2514:4 2522:2 2531:1 2533:1 2539:1 2550:3 2571:1 2596:1 2603:1 2610:1 2646:2 2663:1 2674:1 2681:1 2730:1 2735:1 2736:2 2751:2 2758:1 2775:1 2785:3 2787:1 2804:1 2809:1 2812:3 2813:1 2819:1 2822:3 2826:1 2833:1 2839:1 2841:1 2872:1 2877:1 2881:1 2883:3 2889:1 2892:1 2901:2 2904:1 2937:2 2949:1 2956:1 2982:11 2984:22 2986:1 2990:1 2991:2 2998:2 3002:1 3014:1 3018:1 3019:1 3023:3 3024:1 3029:1 3032:1 3039:5 3049:1 3053:2 3057:1 3070:1 3091:2 3097:1 3100:1 3101:1 3127:1 3133:2 3142:1 3169:2 3267:1 3281:1 3297:1 3301:1 3316:1 3340:1 3351:1 3354:2 3360:1 3368:1 3393:1 3399:1 3401:2 3419:2 3482:1 3486:1 3502:1 3506:1 3525:1 3527:1 3536:1 3540:1 3550:1 3552:1 3564:1 3601:1 3604:1 3612:1 3627:1 3632:1 3642:1 3666:1 3684:1 3690:1 3697:1 3704:1 3715:1 3734:1 3758:1 3773:3 3774:1 3775:1 3779:2 3782:1 3831:2 3833:1 3872:1 3877:1 3884:2 3902:1 3907:1 3909:1 3915:1 3938:1 3940:1 3946:3 3964:1 3985:1 3990:21 3991:2 4012:1 4049:1 4052:1 4056:1 4066:1 4072:2 4079:4 4081:2 4096:2 4102:1 4108:1 4113:2 4117:5 4118:2 4132:2 4171:1 4182:1 4196:1 4208:2 4216:1 4231:1 4260:1 4262:1 4264:1 4267:1 4269:1 4272:1 4277:1 4293:1 4307:1 4309:2 4310:1 4312:2 4317:1 4319:3 4331:1 4357:1 4376:3 4402:1 4405:2 4409:1 4424:1 4432:2 4434:21 4443:1 4446:1 4448:1 4452:4 4462:1 4466:1 4475:1 4477:1 4479:1 4527:2 4535:6 4550:1 4553:1 4557:1 4590:3 4604:2 4610:1 4618:1 4622:2 4623:1 4629:1 4648:1 4668:7 4676:1 4698:1 4717:1 4744:1 4774:2 4790:1 4811:1 4812:1 4818:3 4826:1 4854:1 4863:1 4898:1 4902:1 4903:2 4908:2 4909:1 4916:1 4920:2 4942:1 4943:2 4954:1 4974:1 4977:1 4983:1 4997:1 4998:1 5012:9 5013:2 5022:1 5025:1 5046:2 5053:2 5063:1 5087:1 5089:1 5138:3 5140:1 5143:1 5149:1 5159:3 5160:4 5161:2 5167:4 5173:1 5174:1 5175:3 5183:1 5190:2 5192:5 5194:2 5195:1 5205:1 5230:1 5264:1 5268:1 5361:1 5403:1 5427:1 5438:1 5439:2 5440:1 5462:1 5485:1 5486:1 5496:1 5534:2 5549:1 5574:1 5577:2 5579:1 5583:1 5603:1 5606:1 5624:1 5626:1 5630:3 5634:1 5690:1 5713:1 5716:1 5724:1 5729:1 5740:1 5741:1 5742:1 5762:1 5780:1 5784:1 5790:1 5794:1 5800:1 5807:1 5822:1 5833:1 5839:1 5841:1 5853:1 5896:1 5908:2 5921:1 5924:1 5926:1 5939:1 5968:2 6017:1 6027:1 6063:1 6064:1 6065:1 6076:1 6079:1 6092:1 6097:1 6118:1 6143:1 6149:1 6151:1 6168:1 6182:2 6187:1 6195:1 6198:1 6203:1 6208:2 6211:1 6227:1 6247:1 6255:1 6276:1 6294:1 6295:2 6296:1 6307:1 6308:1 6311:1 6312:1 6313:1 6315:3 6320:1 6324:1 6325:2 6345:1 6356:1 6388:1 6391:1 6399:1 6408:3 6410:2 6416:1 6428:2 6456:1 6479:2 6486:1 6500:1 6510:1 6523:5 6528:1 6534:4 6538:1 6539:1 6540:1 6543:1 6545:1 6546:1 6550:2 6552:6 6560:1 6563:1 6581:1 6600:2 6615:1 6619:1 6629:1 6657:1 6666:1 6667:1 6674:3 6679:3 6720:1 6736:1 6744:1 6746:1 6749:1 6763:1 6769:1 6772:1 6776:1 6785:1 6792:1 6795:2 6796:1 6810:1 6820:1 6831:2 6850:1 6853:1 6866:1 6872:1 6899:1 6901:1 6904:1 6908:3 6927:1 6939:1 6960:1 6962:1 6967:1 6974:1 6997:1 7030:1 7063:2 7083:1 7101:1 7102:1 7114:1 7117:1 7130:1 7178:1 7184:1 7187:1 7192:1 7203:1 7217:4 7264:1 7269:1 7271:1 7277:1 7287:2 7301:2 7332:1 7369:2 7375:1 7398:1 7406:1 7412:1 7413:1 7423:1 7428:1 7435:1 7442:1 7474:1 7485:1 7495:1 7496:2 7508:1 7522:1 7543:1 7563:1 7571:1 7574:1 7582:1 7593:1 7596:5 7629:5 7632:1 7636:1 7663:1 7664:2 7679:1 7707:1 7716:1 7718:1 7725:1 7748:3 7749:1 7779:1 7787:1 7803:1 7815:7 7816:9 7821:1 7833:1 7835:5 7864:3 7868:1 7878:28 7882:1 7883:1 7886:2 7890:1 7891:1 7897:11 7900:3 7903:1 7908:1 7911:1 7932:1 7933:1 7941:2 7949:1 7985:3 7996:1 8013:1 8014:1 8037:1 8039:2 8054:2 8065:1 8071:1 8075:2 8077:1 8083:1 8087:1 8105:1 8109:3 8119:1 8129:1 8159:1 8162:2 8196:1 8249:1 8253:1 8286:1 8290:1 8300:1 8312:2 8351:1 8364:1 8376:1 8377:22 8384:1 8392:1 8396:1 8402:1 8410:10 8411:3 8426:1 8428:2 8443:1 8445:1 8449:2 8466:1 8475:1 8480:1 8492:26 8499:1 8501:1 8588:1 8596:1 8645:1 8657:1 8659:2 8667:1 8671:1 8674:1 8677:1 8683:1 8687:1 8693:3 8694:1 8713:1 8720:1 8725:1 8745:3 8746:1 8750:1 8760:2 8762:1 8763:1 8766:1 8768:1 8778:2 8779:2 8782:1 8783:1 8792:1 8813:1 8822:1 8832:1 8836:1 8841:1 8845:1 8850:1 8862:3 8915:1 8923:1 8931:1 8987:2 8989:1 9014:2 9052:1 9057:2 9059:1 9061:1 9069:1 9086:1 9090:3 9106:1 9110:1 9111:1 9112:1 9118:1 9129:3 9138:1 9139:1 9140:1 9184:1 9196:1 9236:1 9238:4 9247:2 9256:1 9258:1 9300:1 9320:3 9343:1 9378:3 9382:2 9384:1 9391:1 9393:3 9394:1 9396:1 9400:1 9404:1 9406:1 9408:2 9415:1 9428:1 9429:1 9432:1 9435:1 9442:1 9445:1 9446:1 9447:2 9449:1 9456:1 9466:1 9473:2 9483:4 9490:2 9496:2 9504:1 9525:1 9534:1 9546:1 9558:1 9563:1 9564:2 9571:1 9580:1 9607:1 9610:1 9611:1 9616:2 9619:1 9622:1 9623:1 9624:1 9637:1 9642:1 9660:1 9661:1 9675:1 9677:2 9678:5 9681:1 9694:1 9701:2 9703:1 9706:1 9715:1 9717:1 9719:3 9723:1 9726:1 9738:1 9751:1 9779:1 9782:1 9797:1 9802:1 9803:1 9804:1 9841:1 9855:1 9856:1 9860:1 9887:1 9905:5 9915:1 9916:1 9921:3 9924:4 9927:1 9936:1 9962:1 9987:1 10003:1 10028:1 10029:1 10046:21 10055:1 10061:1 10069:1 10083:1 10092:1 10097:1 10115:1 10117:1 10122:1 10131:2 10134:1 10170:2 10174:1 10177:2 10184:1 10188:2 10195:2 10220:1 10229:1 10242:2 10243:1 10252:1 10260:1 10261:2 10280:2 10284:5 10297:2 10299:1 10322:3 10337:1 10339:1 10350:1 10359:1 10362:1 10381:1 10383:2 10388:1 10393:1 10404:1 10417:1 10426:5 10440:1 10464:1 10518:1 10526:1 10542:3 10555:1 10564:1 10573:1 10575:1 10576:1 10582:1 10604:1 10609:1 10623:1 10624:3 10641:1 10664:3 10681:1 10691:1 10707:1 10725:1 10740:2 10745:1 10758:1 10760:3 10773:1 10786:2 10820:2 10840:1 10842:2 10859:1 10860:4 10864:1 10867:3 10874:1 10882:1 10894:1 10907:1 10912:1 10923:1 10929:5 10934:1 10942:1 10955:1 10956:1 10976:1 10990:1 11005:1 11036:1 11066:1 11083:1 11098:2 11111:2 11114:3 11117:1 11124:1 11143:3 11152:1 11158:1 11167:1 11170:1 11176:1 11195:1 11197:8 11200:1 11203:1 11215:1 11217:3 11219:3 11220:1 11231:1 11234:1 11237:1 11246:1 11264:1 11266:1 11276:4 11279:1 11285:1 11286:1 11293:1 11300:1 11303:2 11311:1 11320:1 11347:2 11375:1 11383:1 11385:1 11390:1 11400:1 11404:3 11407:1 11437:1 11456:1 11464:1 11474:1 11476:2 11483:1 11484:1 11487:1 11490:1 11503:3 11505:1 11508:1 11510:1 11511:1 11518:1 11532:1 11535:2 11552:1 11571:2 11609:1 11614:1 11617:1 11622:1 11629:1 11636:5 11648:2 11649:1 11674:1 11679:1 11695:1 11702:1 11714:1 11732:1 11750:2 11770:1 11775:4 11797:1 11803:1 11812:1 11824:1 11827:1 11829:1 11834:1 11838:1 11839:3 11840:1 11845:2 11851:3 11871:1 11878:1 11881:2 11891:1 11895:1 11899:1 11900:4 11904:1 11916:1 11930:1 11936:1 11949:1 11979:1 11992:1 11995:1 11996:1 12003:4 12011:1 12039:1 12043:2 12054:1 12090:1 12092:1 12110:1 12139:1 12163:1 12164:1 12179:1 12223:1 12240:3 12261:3 12281:1 12283:1 12289:1 12330:1 12337:1 12338:1 12339:2 12345:1 12364:1 12383:1 12385:1 12406:1 12421:1 12444:1 12455:1 12460:2 12461:3 12470:1 12483:1 12510:1 12513:2 12522:1 12532:1 12588:1 12597:3 12599:1 12606:1 12612:1 12613:1 12648:1 12650:1 12657:1 12664:1 12666:1 12722:1 12723:1 12746:1 12763:1 12767:1 12790:2 12792:22 12797:1 12800:1 12809:1 12813:4 12821:1 12859:4 12873:1 12884:2 12888:1 12902:1 12922:1 12927:1 12932:1 12964:1 12967:1 12969:1 12980:1 13001:1 13008:1 13020:1 13024:2 13032:1 13038:1 13086:1 13100:1 13116:1 13132:1 13141:2 13145:1 13180:1 13183:1 13217:1 13229:1 13239:1 13257:1 13262:1 13265:1 13268:1 13269:1 13280:1 13286:7 13291:1 13306:1 13307:1 13313:2 13326:1 13340:1 13384:1 13412:1 13417:1 13418:1 13419:2 13424:2 13427:2 13430:2 13437:1 13480:1 13482:1 13491:7 13495:1 13502:1 13584:1 13585:1 13595:1 13626:1 13639:3 13641:3 13647:1 13673:1 13676:1 13695:2 13700:2 13705:1 13707:1 13713:1 13716:1 13717:1 13729:2 13732:1 13747:1 13766:1 13770:2 13772:1 13773:1 13775:1 13780:1 13782:6 13783:1 13784:1 13786:1 13805:1 13808:1 13809:1 13814:4 13827:2 13859:1 13868:1 13869:1 13873:1 13901:1 13910:1 13928:1 13935:1 13941:1 13951:8 13953:1 13955:2 13963:1 13974:1 13980:1 13988:1 13998:1 14012:1 14028:1 14030:2 14038:3 14052:1 14055:1 14057:3 14059:1 14069:6 14072:3 14096:1 14107:1 14147:2 14156:1 14177:4 14232:1 14241:1 14259:1 14261:2 14273:1 14275:1 14278:1 14314:1 14361:4 14422:1 14449:1 14451:1 14460:2 14466:2 14468:3 14485:1 14486:1 14497:1 14498:1 14541:1 14555:1 14560:1 14574:1 14575:1 14576:1 14590:1 14592:2 14607:1 14613:1 14615:1 14617:1 14621:1 14622:1 14625:1 14627:1 14629:1 14634:1 14643:1 14652:1 14653:1 14657:1 14659:1 14664:1 14670:2 14688:1 14699:22 14705:2 14708:1 14709:1 14714:1 14721:1 14736:1 14786:1 14789:1 14792:3 14800:1 14801:1 14806:2 14827:1 14832:1 14847:3 14863:1 14869:1 14870:1 14887:1 14890:1 14900:1 14902:1 14939:1 14979:1 14993:1 15000:2 15003:1 15010:1 15016:1 15031:1 15054:1 15060:1 15069:1 15070:2 15072:1 15080:1 15087:1 15100:1 15105:1 15106:1 15109:7 15169:1 15193:2 15197:1 15208:1 15218:1 15223:1 15237:2 15245:1 15247:1 15257:1 15258:1 15278:1 15299:1 15315:1 15322:1 15340:2 15380:1 15386:1 15396:1 15409:2 15433:1 15452:1 15462:2 15465:1 15478:1 15482:1 15488:1 15491:1 15526:1 15542:1 15555:1 15556:2 15557:2 15584:1 15590:1 15608:4 15610:1 15616:2 15633:1 15653:1 15674:1 15678:1 15690:1 15718:1 15730:1 15742:2 15762:3 15779:1 15783:1 15796:3 15802:2 15805:1 15818:2 15823:1 15827:1 15835:3 15844:1 15888:1 15890:1 15899:1 15921:4 15923:1 15931:1 15951:1 15960:1 15961:3 16006:1 16023:1 16025:1 16038:1 16051:1 16057:1 16060:8 16062:2 16067:1 16096:2 16098:3 16100:1 16105:1 16133:2 16139:2 16140:1 16142:1 16143:2 16165:8 16178:1 16186:1 16200:2 16203:1 16239:1 16250:1 16254:1 16262:1 16264:1 16271:1 16285:4 16286:2 16291:3 16292:1 16299:1 16300:1 16301:1 16304:1 16321:1 16333:1 16357:2 16387:1 16392:1 16404:1 16413:1 16416:1 16418:1 16419:1 16440:1 16452:1 16455:1 16457:1 16476:1 16484:1 16510:1 16522:1 16524:2 16527:1 16579:1 16604:1 16613:1 16617:1 16631:2 16644:1 16646:1 16647:1 16649:1 16679:1 16687:1 16689:1 16692:1 16714:1 16751:1 16757:1 16769:1 16773:3 16776:1 16782:1 16797:1 16800:2 16810:1 16811:2 16822:1 16881:1 16899:1 16926:29 16932:1 16933:1 16934:1 16949:1 16951:1 16963:1 16967:3 17020:1 17028:1 17030:1 17038:1 17042:1 17047:1 17060:1 17068:2 17072:2 17083:1 17103:1 17132:1 17138:1 17143:1 17144:1 17166:2 17181:1 17184:1 17199:1 17207:1 17208:1 17213:1 17234:1 17236:2 17241:1 17250:1 17255:1 17281:1 17284:1 17329:1 17332:1 17361:1 17375:1 17380:1 17383:1 17384:1 17393:1 17395:1 17424:1 17440:1 17443:1 17450:1 17452:1 17455:1 17457:1 17459:2 17465:1 17475:1 17484:1 17535:2 17545:1 17549:2 17555:2 17560:1 17579:1 17604:1 17632:4 17634:1 17637:2 17639:1 17645:1 17649:1 17662:1 17664:1 17671:2 17689:1 17692:1 17711:2 17727:1 17731:1 17758:3 17766:4 17787:2 17812:1 17817:1 17844:1 17855:4 17859:1 17860:1 17884:3 17909:2 17926:1 17929:1 17930:1 17936:2 17937:1 17964:1 18012:1 18013:3 18018:1 18026:1 18058:1 18098:1 18100:1 18123:1 18142:1 18146:3 18204:1 18206:2 18210:1 18223:1 18234:1 18245:1 18269:1 18300:5 18310:1 18316:1 18332:1 18340:2 18374:1 18377:2 18393:1 18395:1 18419:1 18431:1 18447:1 18450:1 18462:1 18499:1 18507:1 18516:1593 18527:1 18538:2 18551:1 18555:1 18566:1 18587:1 18597:1 18604:1 18638:3 18648:1 18651:2 18653:1 18678:1 18707:1 18712:1 18724:1 18780:1 18832:1 18859:1 18863:1 18864:1 18894:1 18901:1 18902:1 18933:1 18952:1 18969:1 18976:2 18978:1 18986:1 19014:2 19016:2 19034:1 19037:1 19083:1 19085:4 19116:3 19120:1 19128:1 19175:1 19178:1 19184:1 19192:1 19198:1 19219:1 19230:1 19245:1 19253:1 19259:1 19268:1 19276:1 19282:4 19283:3 19290:1 19315:1 19318:4 19342:2 19377:13 19384:1 19399:2 19409:1 19420:2 19421:1 19427:1 19428:1 19451:3 19454:1 19461:2 19469:1 19481:2 19490:3 19491:1 19500:1 19509:1 19558:1 19561:1 19574:1 19584:2 19589:1 19609:2 19611:1 19638:1 19653:1 19656:1 19658:1 19692:1 19697:1 19709:1 19715:1 19726:1 19728:1 19732:1 19737:2 19768:1 19793:1 19813:1 19819:1 19820:1 19822:1 19823:1 19829:1 19835:1 19847:1 19851:2 19861:1 19866:1 19881:1 19896:1 19927:2 19929:5 19937:1 19945:1 19950:1 19957:1 19962:1 19986:1 19992:1 19995:2 20000:1 20001:3 20002:2 20021:1 20029:2 20030:3 20033:1 20042:1 20043:1 20051:4 20079:2 20099:1 20109:2 20117:1 20123:2 20132:1 20144:2 20156:1 20162:1 20185:1 20199:1 20211:3 20223:2 20244:1 20258:1 20259:1 20268:1 20311:1 20338:1 20387:1 20390:1 20408:1 20451:4 20460:1 20483:1 20484:1 20495:1 20499:2 20500:1 20513:3 20541:1 20555:1 20591:1 20601:1 20602:1 20605:1 20623:1 20630:2 20661:1 20664:1 20668:1 20691:2 20697:1 20702:2 20704:1 20711:1 20720:1 20725:1 20748:1 20754:1 20762:2 20764:2 20767:1 20773:3 20788:1 20789:1 20798:1 20799:1 20808:1 20810:1 20828:1 20829:1 20833:1 20840:1 20842:2 20848:1 20853:3 20862:1 20863:1 20866:1 20869:3 20878:2 20886:1 20892:2 20925:1 20940:1 20942:3 20945:1 20953:2 20958:1 20994:1 20996:1 21001:2 21004:2 21018:1 21021:1 21026:1 21037:2 21057:1 21061:1 21071:1 21078:1 21114:1 21122:1 21132:1 21137:1 21153:1 21155:1 21185:1 21190:1 21202:1 21204:1 21206:3 21219:1 21237:3 21257:1 21271:2 21276:1 21285:1 21286:1 21310:1 21311:1 21313:2 21341:1 21351:2 21359:1 21363:1 21364:2 21369:2 21397:1 21398:1 21411:1 21414:1 21415:1 21442:1 21455:1 21464:2 21493:1 21508:3 21517:1 21530:1 21543:1 21544:1 21558:3 21562:1 21570:4 21574:1 21577:1 21610:1 21625:4 21658:1 21696:1 21699:1 21705:3 21712:1 21715:3 21719:1 21728:2 21739:1 21748:1 21764:6 21775:1 21791:1 21835:1 21837:1 21843:1 21845:1 21879:2 21881:4 21884:2 21887:1 21895:1 21896:1 21898:2 21906:1 21908:1 21915:1 21918:1 21919:1 21923:2 21924:3 21925:1 21936:1 21937:1 21939:1 21947:1 21955:1 21975:1 21997:1 22000:1 22015:1 22026:2 22028:1 22047:1 22058:2 22062:1 22066:4 22082:2 22095:1 22114:1 22128:3 22133:1 22161:2 22175:1 22179:2 22199:1 22214:1 22219:1 22235:1 22242:1 22248:9 22262:1 22267:2 22275:1 22310:8 22312:2 22316:1 22321:1 22362:1 22365:4 22368:2 22370:1 22383:1 22416:1 22418:1 22425:7 22439:1 22456:2 22462:1 22471:1 22475:1 22479:1 22481:1 22490:1 22492:2 22516:1 22533:1 22536:1 22542:1 22543:1 22555:3 22566:2 22582:1 22599:3 22640:1 22665:1 22671:1 22676:1 22688:1 22691:1 22694:21 22709:1 22713:2 22714:3 22719:1 22721:1 22727:1 22752:2 22757:1 22759:1 22760:1 22770:1 22771:1 22781:1 22805:1 22809:1 22816:1 22838:1 22842:2 22852:2 22861:1 22871:4 22874:1 22901:1 22986:1 22990:1 23000:3 23019:1 23060:1 23074:1 23075:1 23079:1 23083:1 23093:1 23095:2 23103:1 23108:3 23111:1 23115:1 23147:22 23168:2 23169:1 23186:1 23199:1 23202:1 23223:1 23227:1 23228:1 23235:2 23242:2 23247:6 23276:1 23283:1 23289:1 23307:1 23315:1 23321:3 23325:2 23329:1 23350:1 23358:1 23371:1 23379:2 23381:2 23408:1 23460:1 23487:1 23506:1 23509:2 23525:1 23543:1 23593:1 23596:1 23610:1 23617:2 23622:1 23641:2 23651:2 23664:1 23670:1 23693:1 23740:2 23745:1 23752:1 23767:2 23772:1 23775:1 23785:1 23786:1 23802:1 23817:1 23832:1 23838:1 23857:1 23890:1 23891:1 23895:1 23912:1 23915:2 23941:1 23956:1 23957:3 23982:2 24001:1 24008:2 24013:1 24028:2 24065:1 24067:1 24069:2 24075:1 24076:1 24080:2 24092:2 24093:2 24097:3 24105:1 24114:1 24144:3 24147:1 24186:7 24191:1 24213:1 24217:1 24220:1 24225:1 24235:1 24270:1 24275:1 24286:1 24291:2 24334:2 24366:1 24379:1 24384:1 24388:2 24414:1 24420:1 24427:1 24435:1 24444:1 24450:1 24480:3 24484:2 24492:1 24493:1 24495:2 24499:3 24502:1 24505:1 24524:1 24536:2 24552:3 24572:1 24576:2 24577:3 24612:2 24614:1 24620:1 24623:1 24626:1 24628:4 24631:1 24645:1 24646:1 24653:1 24654:1 24656:1 24661:1 24676:1 24687:1 24689:1 24699:1 24711:1 24757:1 24766:1 24779:1 24797:1 24802:1 24803:1 24815:1 24838:1 24854:2 24858:2 24859:2 24863:1 24871:2 24911:1 24922:2 24943:1 24971:1 24974:1 24979:1 25025:1 25048:2 25064:1 25075:2 25077:4 25088:1 25097:1 25100:3 25107:1 25132:1 25133:1 25134:1 25166:2 25173:1 25181:1 25192:1 25199:1 25205:2 25212:1 25215:1 25222:4 25227:1 25236:1 25238:1 25248:1 25255:1 25277:1 25279:1 25281:2 25283:1 25284:1 25306:1 25310:1 25328:2 25351:1 25362:1 25378:1 25383:1 25384:1 25387:1 25402:1 25408:1 25415:1 25423:1 25440:2 25451:3 25454:1 25461:1 25467:1 25485:2 25499:2 25511:1 25516:3 25546:3 25552:1 25573:1 25576:9 25585:2 25599:1 25617:1 25628:1 25636:1 25693:1 25705:1 25707:1 25710:1 25713:3 25718:1 25740:1 25741:1 25760:1 25766:1 25777:2 25778:1 25809:1 25823:1 25832:1 25844:1 25850:2 25861:1 25874:1 25876:1 25884:2 25885:1 25895:1 25920:3 25929:1 25944:2 25955:1 25956:1 25964:1 25988:1 25989:1 25994:1 25995:3 25998:1 26005:2 26018:2 26019:1 26022:7 26023:1 26042:1 26054:1 26061:1 26074:1 26093:3 26113:1 26119:1 26122:1 26125:1 26130:1 26156:1 26182:1 26202:2 26253:2 26268:1 26272:1 26278:1 26283:1 26286:1 26333:2 26336:1 26356:1 26399:1 26401:1 26428:1 26429:1 26440:2 26450:1 26465:1 26498:1 26509:1 26525:1 26536:1 26542:1 26546:1 26588:1 26597:1 26609:2 26616:1 26626:1 26630:2 26632:6 26653:1 26654:3 26661:2 26663:1 26675:4 26685:1 26691:1 26703:3 26712:1 26714:1 26734:1 26743:4 26744:1 26746:2 26753:1 26754:1 26764:2 26774:1 26778:2 26789:3 26794:1 26796:1 26799:1 26813:1 26818:1 26847:1 26866:1 26870:1 26875:1 26878:1 26884:1 26889:1 26894:1 26897:3 26899:1 26901:1 26911:1 26915:1 26918:3 26923:2 26930:1 26931:1 26932:1 26945:2 26971:2 26979:1 26994:1 27035:1 27043:1 27045:1 27054:3 27064:2 27074:1 27082:1 27096:1 27100:3 27130:1 27131:1 27145:1 27150:1 27178:1 27188:3 27196:1 27206:1 27224:1 27228:1 27230:1 27235:1 27236:1 27249:1 27251:3 27254:2 27258:3 27265:1 27266:2 27269:1 27271:2 27276:3 27287:1 27296:1 27297:1 27299:2 27311:1 27318:1 27320:1 27329:1 27347:6 27365:3 27390:1 27392:1 27401:1 27405:2 27411:1 27418:1 27424:1 27448:2 27451:1 27466:1 27468:1 27472:1 27502:1 27504:1 27516:2 27540:1 27548:1 27556:1 27558:1 27620:1 27658:3 27659:2 27662:1 27666:4 27670:2 27673:3 27676:1 27689:1 27713:1 27718:1 27722:1 27727:1 27732:1 27734:1 27745:1 27764:1 27784:2 27802:2 27832:1 27858:1 27868:1 27874:1 27898:1 27909:1 27912:1 27950:1 27953:1 27956:2 27969:13 27970:1 27978:1 27981:1 27999:1 28008:5 28060:1 28076:1 28080:2 28095:1 28105:1 28107:1 28117:8 28123:2 28131:1 28134:1 28137:1 28151:1 28152:1 28165:7 28170:1 28177:1 28207:1 28212:1 28214:1 28222:1 28231:1 28243:2 28258:1 28283:1 28296:2 28375:1 28392:26 28393:1 28413:1 28416:4 28417:1 28423:3 28424:2 28435:1 28457:1 28485:3 28490:7 28491:1 28503:1 28509:1 28512:1 28522:1 28529:1 28545:1 28546:2 28584:1 28597:1 28610:1 28615:2 28634:1 28635:1 28647:1 28660:1 28669:2 28690:2 28701:1 28710:1 28760:1 28782:1 28785:1 28787:2 28796:2 28798:1 28814:1 28854:1 28859:2 28865:1 28875:2 28894:2 28903:1 28913:1 28937:1 28940:1 28954:1 28959:1 28964:1 28976:1 28999:1 29000:2 29003:1 29005:2 29027:1 29031:2 29042:6 29057:2 29062:2 29063:2 29073:22 29100:1 29128:1 29137:1 29139:1 29141:2 29146:2 29147:2 29183:1 29194:1 29197:1 29223:1 29225:2 29236:1 29240:1
2 12:1 13:1 31:2 32:1 49:1 55:1 56:1 75:1 85:2 88:1 89:2 98:1 113:1 146:2 154:1 166:1 170:1 174:1 180:1 184:1 209:1 213:2 223:1 228:1 249:1 265:2 271:3 272:1 276:1 286:1 287:1 291:1 292:1 322:1 329:1 358:1 359:3 376:1 385:1 391:1 392:1 395:1 415:2 425:1 429:1 446:1 452:1 460:1 471:1 479:2 501:2 505:1 509:1 515:1 536:1 544:1 553:1 562:1 564:1 607:3 613:2 620:1 623:1 644:3 658:23 663:3 667:1 671:1 682:1 686:1 696:1 699:2 714:1 719:1 728:2 735:2 749:1 783:2 809:1 813:2 815:1 817:3 820:2 822:1 823:1 857:1 861:3 876:1 904:3 905:6 908:1 917:5 930:1 937:3 943:1 951:2 957:3 960:5 964:1 965:1 970:1 976:2 980:2 982:2 999:2 1003:1 1006:2 1027:1 1029:2 1032:1 1036:1 1048:2 1050:1 1055:3 1056:1 1098:2 1099:1 1112:1 1158:1 1160:3 1190:1 1211:1 1214:22 1220:1 1223:2 1224:2 1227:1 1229:3 1232:1 1245:1 1256:1 1258:2 1260:2 1266:1 1270:1 1275:1 1277:1 1279:2 1280:1 1281:1 1288:1 1290:1 1298:1 1302:1 1314:1 1316:1 1338:1 1354:1 1356:2 1380:1 1390:1 1393:1 1397:1 1402:2 1404:1 1420:1 1430:1 1444:1 1452:2 1462:2 1475:1 1481:1 1499:1 1501:1 1502:2 1506:1 1510:6 1516:1 1532:1 1540:1 1546:1 1576:2 1582:1 1598:1 1602:2 1615:1 1631:1 1636:1 1637:1 1639:1 1647:1 1666:1 1676:1 1677:1 1685:1 1690:1 1691:2 1705:1 1720:1 1728:1 1740:2 1745:3 1760:1 1776:1 1778:1 1779:1 1783:1 1795:1 1820:1 1827:1 1833:1 1840:1 1842:1 1853:1 1866:1 1870:2 1871:2 1878:1 1895:1 1897:1 1898:3 1901:1 1918:1 1921:2 1930:1 1937:1 1941:2 1947:2 1959:1 1976:1 1982:1 1993:1 2001:1 2022:3 2042:1 2051:2 2053:1 2077:1 2094:1 2118:1 2123:1 2140:1 2144:1 2145:1 2157:1 2161:1 2172:1 2176:1 2181:1 2196:6 2217:1 2235:1 2238:1 2239:1 2265:1 2269:1 2291:1 2299:1 2325:1 2329:1 2333:1 2334:1 2335:2 2336:4 2338:2 2339:1 2341:1 2342:3 2347:4 2349:3 2352:4 2356:3 2359:1 2362:1 2364:1 2367:1 2369:4 2372:1 2375:1 2376:1 2382:1 2383:1 2406:1 2421:2 2422:1 2430:3 2457:2 2460:1 2478:1 2479:1 2494:1 2495:2 2503:1 2513:2 2514:4 2522:3 2531:1 2533:1 2539:1 2550:3 2571:1 2596:1 2603:2 2610:1 2646:2 2663:1 2674:1 2681:1 2730:1 2735:1 2736:2 2751:2 2758:2 2773:1 2775:1 2777:1 2785:3 2787:1 2804:1 2809:1 2812:3 2813:1 2819:1 2822:3 2826:1 2833:1 2839:1 2841:1 2872:2 2877:1 2881:1 2883:4 2889:1 2892:1 2901:2 2904:1 2937:2 2949:1 2956:2 2982:11 2984:23 2986:1 2990:1 2991:2 2998:2 3002:1 3014:1 3018:1 3019:1 3023:4 3024:1 3029:1 3032:1 3039:5 3049:1 3053:2 3057:1 3070:1 3091:2 3097:1 3100:1 3101:1 3127:1 3133:2 3139:1 3142:1 3169:2 3196:1 3267:1 3281:1 3297:1 3301:1 3316:1 3340:1 3351:1 3354:3 3360:1 3368:1 3393:1 3399:1 3401:2 3419:2 3482:1 3486:1 3502:1 3506:1 3525:1 3527:1 3536:1 3540:1 3550:1 3552:1 3556:1 3564:1 3601:1 3604:1 3612:1 3627:1 3632:1 3642:1 3666:1 3684:1 3690:1 3697:1 3704:1 3715:1 3734:1 3758:1 3773:3 3774:1 3775:1 3779:2 3782:1 3831:2 3833:1 3872:1 3877:1 3884:2 3902:1 3907:1 3909:1 3915:1 3938:1 3940:1 3946:3 3964:1 3985:1 3990:22 3991:2 4012:1 4049:1 4052:1 4056:1 4066:1 4072:2 4079:4 4081:2 4096:2 4102:1 4108:1 4113:2 4117:5 4118:2 4132:2 4171:1 4182:1 4196:1 4208:3 4216:1 4231:1 4260:1 4262:1 4264:1 4267:1 4269:1 4272:1 4277:1 4293:1 4307:1 4309:2 4310:1 4312:2 4317:1 4319:3 4331:1 4357:1 4376:3 4402:1 4405:2 4409:1 4424:1 4432:2 4434:22 4435:1 4443:1 4446:1 4448:1 4452:4 4462:1 4466:1 4475:1 4477:1 4479:1 4527:2 4535:6 4550:1 4553:1 4557:1 4590:3 4604:2 4610:1 4618:2 4622:2 4623:1 4629:1 4648:1 4668:7 4676:1 4698:1 4717:1 4744:1 4774:3 4790:1 4811:1 4812:1 4818:5 4826:1 4854:1 4863:1 4898:1 4902:1 4903:2 4908:2 4909:1 4916:1 4920:2 4942:1 4943:3 4954:1 4974:1 4977:1 4983:1 4997:1 4998:1 5012:11 5013:2 5022:1 5025:1 5046:2 5053:2 5063:1 5087:1 5089:1 5138:3 5140:1 5143:1 5149:1 5159:3 5160:4 5161:2 5167:4 5173:1 5174:1 5175:3 5183:1 5190:2 5192:5 5194:2 5195:1 5205:1 5230:1 5264:1 5268:1 5361:1 5403:1 5427:1 5438:1 5439:2 5440:1 5462:1 5482:1 5485:1 5486:1 5496:1 5534:2 5549:1 5574:1 5577:2 5579:1 5583:1 5603:1 5606:1 5624:1 5626:1 5630:3 5634:1 5690:1 5713:1 5716:1 5724:1 5729:1 5740:1 5741:1 5742:1 5762:2 5780:1 5784:1 5790:1 5794:1 5800:1 5807:1 5822:1 5833:1 5839:1 5841:1 5853:1 5896:1 5908:2 5921:1 5924:1 5926:1 5939:1 5968:3 6017:1 6027:1 6063:1 6064:1 6065:1 6076:1 6079:1 6092:1 6097:1 6118:1 6143:1 6149:1 6151:1 6168:1 6182:2 6187:1 6195:1 6198:1 6203:1 6208:2 6211:1 6227:1 6247:1 6255:1 6276:1 6294:1 6295:2 6296:1 6301:1 6307:1 6308:1 6311:1 6312:1 6313:1 6315:3 6320:1 6324:1 6325:2 6345:1 6356:1 6388:1 6391:1 6399:1 6408:3 6410:2 6416:1 6428:2 6456:1 6479:2 6486:1 6500:1 6510:1 6523:5 6528:1 6534:4 6536:1 6538:1 6539:1 6540:1 6543:1 6545:1 6546:1 6550:2 6552:6 6560:1 6563:1 6581:1 6600:2 6615:1 6619:1 6629:1 6657:1 6666:1 6667:1 6674:3 6679:3 6720:1 6736:1 6744:1 6746:1 6749:1 6763:1 6769:1 6772:1 6776:1 6785:1 6792:1 6795:2 6796:1 6810:1 6820:1 6831:2 6850:1 6853:1 6866:1 6872:1 6899:1 6901:1 6904:1 6908:3 6927:1 6939:1 6960:2 6962:1 6967:1 6974:1 6997:1 7030:1 7063:2 7083:1 7101:1 7102:1 7114:1 7117:1 7130:1 7178:1 7184:1 7187:1 7192:1 7203:1 7217:4 7264:1 7269:1 7271:1 7277:1 7287:2 7301:2 7332:1 7369:2 7375:1 7398:1 7406:1 7412:1 7413:1 7423:1 7428:1 7431:1 7435:1 7442:1 7474:1 7485:1 7495:1 7496:2 7508:1 7522:1 7543:1 7563:1 7571:1 7574:1 7582:1 7593:1 7596:5 7629:6 7632:1 7636:1 7663:1 7664:2 7679:1 7707:1 7716:1 7718:1 7725:1 7748:4 7749:1 7779:1 7787:1 7803:2 7815:8 7816:9 7821:1 7833:1 7835:5 7864:3 7868:1 7878:33 7882:1 7883:1 7886:2 7890:1 7891:1 7897:11 7900:3 7903:1 7908:1 7911:1 7932:1 7933:1 7941:2 7949:1 7985:4 7996:2 8013:1 8014:1 8037:1 8039:2 8054:2 8065:1 8071:1 8075:3 8077:1 8083:1 8087:1 8105:1 8109:4 8119:1 8129:1 8159:1 8162:2 8196:1 8249:1 8253:1 8286:1 8290:1 8300:1 8312:2 8351:1 8364:1 8376:1 8377:23 8384:1 8392:1 8396:1 8402:1 8410:10 8411:3 8426:1 8428:2 8443:1 8445:1 8449:2 8466:1 8475:1 8480:1 8492:27 8499:1 8501:1 8588:1 8596:1 8645:1 8657:1 8659:2 8667:1 8671:1 8674:1 8677:1 8683:1 8687:1 8693:3 8694:1 8713:1 8720:1 8725:1 8745:3 8746:1 8750:1 8760:2 8762:1 8763:1 8766:1 8768:1 8778:2 8779:2 8782:1 8783:1 8792:1 8813:1 8822:1 8832:1 8836:1 8841:1 8845:1 8850:1 8862:3 8915:1 8923:1 8928:1 8931:1 8987:3 8989:1 9014:2 9052:1 9057:2 9059:1 9061:1 9069:1 9086:1 9090:3 9106:1 9110:1 9111:1 9112:1 9118:1 9129:3 9138:1 9139:1 9140:1 9184:1 9196:1 9236:1 9238:4 9247:2 9256:1 9258:1 9300:1 9320:4 9343:2 9378:3 9382:2 9384:1 9391:1 9393:3 9394:1 9396:1 9400:1 9404:1 9406:2 9408:2 9415:1 9428:1 9429:1 9432:1 9435:1 9442:1 9445:1 9446:1 9447:2 9449:1 9456:1 9466:1 9473:2 9483:4 9490:2 9496:2 9504:1 9521:1 9525:1 9534:1 9546:1 9558:1 9563:1 9564:2 9571:1 9580:1 9607:1 9610:1 9611:1 9616:2 9619:1 9622:1 9623:1 9624:1 9637:1 9642:1 9660:1 9661:1 9675:1 9677:2 9678:5 9681:1 9694:1 9701:2 9703:1 9706:1 9715:1 9717:1 9719:3 9723:1 9726:1 9738:1 9751:1 9779:1 9782:1 9797:1 9802:1 9803:1 9804:2 9841:1 9855:1 9856:1 9860:1 9887:1 9905:5 9915:1 9916:1 9921:3 9924:4 9927:1 9936:1 9962:1 9987:1 10003:1 10016:1 10028:1 10029:1 10046:22 10055:1 10061:1 10069:1 10083:1 10092:1 10097:1 10102:1 10115:1 10117:1 10122:1 10131:2 10134:1 10138:1 10170:3 10174:1 10177:2 10184:1 10188:2 10195:2 10220:1 10229:1 10242:2 10243:1 10252:1 10260:1 10261:2 10280:2 10284:5 10297:2 10299:1 10322:3 10336:1 10337:1 10339:1 10350:1 10359:1 10362:1 10381:1 10383:2 10388:1 10393:1 10404:1 10405:1 10417:1 10426:5 10440:1 10464:1 10518:2 10526:1 10542:3 10555:1 10564:2 10573:1 10575:1 10576:1 10582:1 10604:1 10609:1 10623:1 10624:3 10641:1 10664:3 10681:1 10691:1 10707:1 10725:1 10740:3 10745:1 10758:1 10760:4 10773:1 10786:2 10820:2 10840:1 10842:2 10859:1 10860:4 10864:1 10867:3 10874:1 10882:1 10894:1 10907:1 10912:1 10923:1 10929:5 10934:1 10942:1 10955:1 10956:1 10976:1 10990:1 11005:1 11036:1 11065:1 11066:1 11083:1 11098:2 11111:2 11114:3 11117:1 11124:1 11143:3 11152:1 11158:1 11167:1 11170:1 11176:1 11185:1 11195:1 11197:8 11200:1 11203:1 11215:1 11217:3 11219:3 11220:1 11231:1 11234:1 11237:1 11246:1 11264:1 11266:1 11276:4 11279:1 11285:1 11286:1 11293:1 11300:1 11303:2 11311:1 11320:1 11347:2 11375:1 11383:1 11385:1 11390:1 11400:1 11404:3 11407:1 11437:1 11456:1 11464:1 11474:1 11476:2 11483:1 11484:1 11487:1 11490:1 11502:1 11503:4 11505:1 11508:1 11510:1 11511:1 11518:1 11532:1 11535:2 11552:1 11571:2 11609:1 11614:1 11617:1 11622:1 11629:1 11636:5 11648:2 11649:1 11674:1 11679:1 11695:1 11702:1 11714:1 11732:2 11750:2 11770:1 11775:4 11797:1 11803:1 11812:2 11824:1 11827:1 11829:1 11834:1 11838:1 11839:4 11840:1 11845:2 11851:4 11871:1 11878:1 11881:2 11891:1 11895:1 11899:1 11900:4 11904:1 11916:1 11930:1 11936:2 11949:1 11979:1 11992:3 11995:1 11996:1 12003:4 12011:1 12039:1 12043:2 12054:1 12090:1 12092:1 12110:1 12139:1 12163:1 12164:1 12179:1 12223:1 12240:3 12261:3 12281:1 12283:1 12289:1 12330:1 12337:1 12338:1 12339:2 12345:1 12364:1 12376:1 12383:1 12385:1 12406:1 12421:1 12444:1 12455:1 12460:2 12461:3 12470:1 12483:1 12510:1 12513:2 12522:1 12532:1 12588:1 12597:3 12599:1 12606:1 12612:1 12613:1 12648:1 12650:1 12657:1 12664:1 12666:1 12722:1 12723:1 12746:1 12763:1 12767:1 12790:2 12792:23 12797:1 12800:1 12809:1 12813:4 12821:1 12859:5 12873:1 12884:2 12888:1 12902:1 12922:1 12927:1 12932:1 12964:1 12967:1 12969:1 12980:1 13001:1 13008:1 13020:1 13024:2 13032:1 13038:1 13086:1 13100:1 13116:1 13132:1 13141:2 13145:1 13163:1 13174:1 13180:1 13183:1 13217:1 13229:1 13239:1 13257:1 13262:1 13265:1 13268:1 13269:1 13280:1 13286:7 13291:1 13306:1 13307:1 13313:2 13326:1 13340:1 13384:1 13412:1 13417:1 13418:1 13419:2 13424:2 13427:3 13430:3 13437:1 13480:1 13482:1 13491:8 13495:1 13502:1 13584:1 13585:2 13595:1 13626:1 13639:3 13641:3 13647:1 13665:1 13673:1 13676:1 13695:2 13700:2 13705:1 13707:1 13713:1 13716:1 13717:1 13729:2 13732:1 13747:1 13766:1 13770:2 13772:1 13773:1 13775:1 13780:1 13782:6 13783:1 13784:1 13786:1 13804:1 13805:1 13806:1 13808:1 13809:1 13814:4 13821:1 13827:2 13859:1 13868:1 13869:1 13873:1 13901:1 13910:1 13928:1 13935:1 13941:1 13951:9 13953:1 13955:2 13963:1 13974:1 13980:1 13988:1 13998:1 14012:1 14028:1 14030:2 14038:4 14052:1 14055:1 14057:3 14059:1 14069:7 14072:3 14096:1 14107:1 14147:2 14156:1 14177:4 14179:1 14232:1 14241:1 14259:1 14261:2 14273:1 14275:1 14278:1 14308:1 14314:1 14361:4 14422:1 14426:1 14449:1 14451:1 14454:1 14460:2 14466:2 14468:3 14485:2 14486:1 14497:1 14498:1 14541:1 14555:1 14560:1 14574:1 14575:1 14576:1 14590:1 14592:2 14607:1 14613:1 14615:1 14617:1 14621:1 14622:1 14625:1 14627:1 14629:1 14634:1 14643:1 14652:1 14653:1 14657:1 14659:1 14664:1 14670:2 14688:1 14699:23 14705:2 14708:1 14709:1 14714:1 14721:1 14736:1 14786:1 14789:1 14792:4 14800:1 14801:1 14806:2 14827:1 14832:1 14847:3 14852:1 14863:1 14869:1 14870:1 14887:2 14890:1 14900:1 14902:1 14939:1 14941:1 14979:1 14993:1 15000:2 15003:1 15010:1 15016:1 15031:1 15054:1 15060:1 15069:1 15070:2 15072:1 15080:1 15087:1 15100:1 15105:1 15106:1 15109:7 15169:1 15193:2 15197:1 15208:1 15218:1 15223:1 15237:2 15245:2 15247:3 15257:1 15258:1 15278:1 15299:1 15315:1 15322:1 15340:2 15380:1 15386:1 15396:1 15409:2 15433:1 15452:1 15458:1 15462:2 15465:1 15478:1 15482:1 15488:1 15491:1 15526:1 15542:1 15555:1 15556:2 15557:2 15584:1 15590:1 15608:4 15610:1 15612:1 15616:2 15633:1 15653:1 15674:1 15678:1 15690:1 15718:1 15730:1 15742:2 15757:1 15762:3 15779:1 15783:1 15796:3 15802:2 15805:1 15818:2 15823:1 15827:1 15835:3 15844:1 15888:1 15890:1 15899:1 15921:4 15923:1 15931:1 15951:1 15960:1 15961:3 15971:1 16006:1 16023:1 16025:1 16031:1 16038:1 16051:1 16057:1 16060:9 16062:2 16067:1 16096:2 16098:3 16100:1 16105:1 16133:2 16139:2 16140:1 16142:1 16143:2 16165:8 16178:1 16186:1 16200:3 16203:1 16239:1 16250:1 16254:1 16262:1 16264:1 16271:1 16285:4 16286:2 16291:3 16292:1 16299:1 16300:1 16301:1 16304:1 16321:1 16333:1 16357:2 16380:1 16387:1 16392:1 16404:1 16413:1 16416:1 16418:1 16419:1 16440:1 16448:1 16452:1 16455:1 16457:1 16476:1 16484:1 16510:1 16522:1 16524:2 16527:1 16579:1 16604:1 16613:1 16617:1 16631:2 16644:1 16646:1 16647:1 16649:1 16679:1 16687:1 16689:1 16692:1 16714:1 16751:1 16757:1 16769:1 16773:3 16776:1 16782:1 16797:1 16800:2 16810:1 16811:2 16822:1 16881:1 16899:1 16926:30 16932:1 16933:1 16934:1 16949:1 16951:1 16963:1 16967:3 17020:1 17028:1 17030:1 17038:1 17042:1 17047:1 17060:1 17068:2 17072:2 17083:1 17103:1 17132:1 17138:1 17143:1 17144:1 17166:2 17181:1 17184:1 17199:1 17207:1 17208:1 17213:1 17234:1 17236:2 17241:1 17250:1 17255:1 17281:1 17284:1 17329:1 17332:1 17361:1 17375:1 17380:1 17383:1 17384:1 17393:1 17395:1 17406:1 17424:1 17440:1 17443:1 17450:1 17452:1 17455:1 17457:1 17459:2 17465:2 17475:1 17484:1 17535:2 17545:1 17549:2 17555:2 17560:1 17579:1 17604:1 17620:1 17632:4 17634:1 17637:2 17639:1 17645:1 17649:1 17662:1 17664:1 17671:2 17683:1 17689:1 17692:1 17711:2 17727:2 17731:1 17758:4 17766:4 17787:2 17812:1 17817:1 17844:1 17855:5 17859:1 17860:2 17884:3 17909:2 17926:1 17929:1 17930:1 17936:2 17937:1 17964:1 18012:1 18013:4 18018:1 18026:1 18058:1 18076:1 18098:1 18100:1 18123:1 18142:1 18146:3 18204:1 18206:2 18210:1 18223:1 18234:1 18245:1 18269:1 18300:5 18310:1 18316:1 18332:1 18340:2 18374:1 18377:3 18393:1 18395:1 18419:1 18431:1 18447:1 18450:1 18462:1 18499:1 18507:1 18516:1668 18527:1 18538:2 18551:1 18555:1 18566:1 18587:1 18597:1 18604:1 18638:3 18648:1 18651:2 18653:1 18678:1 18702:1 18707:1 18712:1 18724:1 18780:1 18832:1 18859:1 18863:1 18864:1 18894:1 18901:1 18902:1 18933:1 18952:1 18969:1 18976:2 18978:1 18986:1 19014:2 19016:2 19034:1 19037:1 19083:1 19085:4 19116:3 19120:1 19128:1 19175:1 19178:1 19184:1 19192:1 19198:1 19219:1 19223:1 19230:1 19245:1 19253:1 19259:1 19268:1 19276:1 19282:5 19283:3 19290:1 19315:1 19318:4 19342:2 19377:13 19384:1 19399:2 19409:1 19420:2 19421:1 19427:1 19428:1 19447:1 19451:3 19454:1 19461:2 19469:1 19477:1 19481:2 19490:3 19491:1 19500:1 19509:1 19558:1 19561:1 19574:1 19584:2 19589:1 19609:2 19611:1 19638:1 19653:1 19656:1 19658:1 19692:1 19697:1 19709:1 19715:1 19726:1 19728:1 19732:1 19737:2 19768:1 19793:1 19813:1 19819:1 19820:1 19822:1 19823:1 19829:1 19835:1 19847:1 19851:2 19861:1 19866:1 19881:1 19896:1 19927:2 19929:5 19937:1 19945:1 19950:1 19957:1 19962:1 19986:1 19992:1 19995:2 20000:1 20001:3 20002:2 20021:1 20029:2 20030:3 20033:1 20042:1 20043:1 20051:4 20079:2 20099:1 20109:2 20117:1 20123:2 20132:1 20144:2 20156:1 20162:1 20185:1 20199:1 20211:3 20223:2 20244:1 20258:1 20259:1 20268:1 20311:1 20338:1 20387:1 20390:1 20408:1 20451:4 20460:1 20483:1 20484:1 20495:1 20499:2 20500:1 20513:3 20541:1 20555:1 20591:1 20601:1 20602:1 20605:1 20623:1 20630:2 20661:1 20664:1 20668:1 20691:2 20697:1 20702:2 20703:1 20704:1 20711:1 20720:1 20725:1 20748:1 20754:1 20762:2 20764:2 20767:1 20773:3 20788:1 20789:1 20798:1 20799:1 20808:1 20810:1 20828:1 20829:1 20833:1 20840:1 20842:2 20848:1 20853:3 20862:1 20863:1 20866:1 20869:3 20870:1 20878:2 20886:1 20892:3 20925:1 20940:1 20942:3 20945:1 20953:2 20958:1 20994:1 20996:1 21001:2 21004:2 21018:1 21021:1 21026:1 21037:2 21057:1 21061:1 21071:1 21078:1 21114:1 21122:1 21132:1 21137:1 21151:1 21153:1 21155:1 21171:1 21185:1 21190:1 21202:1 21204:1 21206:3 21219:1 21233:1 21237:3 21257:1 21271:2 21276:1 21285:1 21286:1 21310:1 21311:1 21313:3 21341:1 21351:2 21359:1 21363:1 21364:2 21369:2 21382:1 21397:1 21398:1 21411:1 21414:1 21415:1 21442:1 21455:1 21464:2 21492:1 21493:1 21508:3 21517:1 21530:1 21543:1 21544:1 21558:3 21562:1 21570:4 21574:1 21577:1 21610:1 21625:5 21658:1 21696:1 21699:1 21705:3 21712:1 21714:1 21715:3 21719:1 21728:2 21739:1 21748:1 21764:6 21775:1 21791:1 21835:1 21837:1 21843:1 21845:1 21879:2 21881:4 21884:2 21887:1 21895:1 21896:1 21898:2 21906:1 21908:1 21915:1 21918:1 21919:1 21923:2 21924:3 21925:1 21936:1 21937:1 21939:1 21947:1 21955:1 21975:1 21997:1 22000:1 22015:1 22026:2 22028:1 22047:1 22058:2 22062:1 22066:4 22082:2 22095:1 22114:1 22128:3 22133:1 22151:1 22161:2 22175:1 22179:2 22199:1 22214:1 22219:2 22235:1 22242:1 22248:11 22262:1 22267:2 22275:1 22310:8 22312:2 22316:1 22321:1 22362:1 22365:4 22368:2 22370:1 22383:1 22416:1 22418:1 22425:7 22439:1 22456:2 22462:1 22471:1 22475:1 22479:1 22481:1 22490:1 22492:2 22516:1 22533:1 22536:1 22542:1 22543:2 22555:3 22566:2 22582:1 22583:1 22599:3 22640:1 22665:1 22671:1 22676:1 22688:1 22691:1 22694:22 22709:1 22713:2 22714:3 22719:1 22721:1 22727:1 22752:2 22757:2 22759:1 22760:1 22770:1 22771:1 22781:1 22805:1 22809:1 22816:1 22838:1 22841:1 22842:3 22852:2 22861:1 22871:4 22874:1 22901:1 22986:1 22990:1 23000:3 23008:1 23019:1 23060:1 23074:1 23075:1 23079:1 23083:1 23093:1 23095:2 23103:1 23108:3 23111:1 23115:1 23147:23 23168:2 23169:1 23186:1 23199:1 23202:1 23223:1 23227:1 23228:1 23235:2 23242:2 23247:6 23276:1 23283:1 23289:1 23307:1 23315:1 23321:3 23325:2 23329:1 23350:1 23358:1 23371:1 23379:2 23381:2 23408:1 23460:1 23487:1 23506:1 23509:2 23525:1 23543:1 23593:1 23596:1 23610:1 23617:2 23622:1 23641:2 23651:2 23664:1 23670:1 23693:1 23740:2 23745:1 23752:1 23767:2 23772:1 23775:1 23785:1 23786:1 23802:1 23817:1 23832:1 23838:1 23857:1 23868:1 23890:1 23891:1 23895:1 23912:1 23915:2 23941:1 23956:1 23957:3 23982:2 24001:1 24008:2 24013:1 24028:2 24065:1 24067:1 24069:2 24075:1 24076:1 24080:2 24092:2 24093:2 24097:3 24105:1 24114:1 24144:3 24147:1 24186:7 24191:1 24213:1 24217:1 24220:1 24225:1 24235:1 24270:1 24275:1 24286:1 24291:2 24334:2 24366:1 24379:1 24384:1 24388:2 24393:1 24414:1 24420:1 24427:1 24435:1 24444:1 24450:1 24480:3 24484:2 24492:1 24493:1 24495:2 24499:3 24502:1 24505:2 24524:1 24536:2 24552:3 24572:1 24576:2 24577:3 24612:2 24614:1 24620:1 24623:1 24626:1 24628:4 24631:1 24645:1 24646:1 24653:1 24654:1 24656:1 24661:1 24675:1 24676:1 24687:1 24689:1 24699:1 24711:1 24757:1 24766:1 24779:1 24797:1 24802:1 24803:1 24815:1 24838:1 24854:2 24858:2 24859:2 24863:1 24871:2 24911:1 24922:2 24943:1 24971:1 24974:1 24979:1 25025:1 25048:2 25064:1 25072:1 25075:2 25077:4 25088:1 25097:3 25100:3 25107:1 25132:1 25133:1 25134:1 25166:2 25173:2 25181:1 25192:1 25199:1 25205:2 25212:1 25215:1 25222:4 25227:1 25236:1 25238:1 25245:1 25248:1 25255:1 25277:3 25279:1 25281:2 25283:1 25284:1 25306:1 25309:1 25310:1 25328:2 25351:1 25362:1 25378:3 25383:1 25384:1 25387:1 25402:1 25408:1 25415:1 25423:1 25440:2 25451:3 25454:2 25461:1 25467:1 25485:2 25499:2 25511:1 25516:3 25546:4 25552:1 25573:1 25576:11 25585:2 25599:1 25617:1 25628:1 25636:1 25693:1 25705:1 25707:1 25710:1 25713:3 25718:1 25740:1 25741:1 25760:1 25766:1 25777:2 25778:1 25809:1 25823:1 25832:1 25844:1 25850:2 25861:1 25874:1 25876:1 25884:2 25885:1 25895:1 25920:3 25929:1 25944:2 25955:1 25956:1 25964:1 25988:1 25989:1 25994:1 25995:3 25998:1 26005:2 26018:2 26019:1 26022:7 26023:1 26042:1 26054:1 26061:1 26074:1 26093:4 26113:1 26119:1 26122:1 26125:1 26130:1 26145:1 26156:1 26182:1 26202:2 26253:2 26268:1 26272:1 26278:1 26283:1 26286:1 26333:2 26336:1 26356:1 26399:1 26401:1 26428:1 26429:1 26440:2 26450:1 26465:1 26498:1 26509:1 26525:1 26536:1 26542:1 26546:1 26588:1 26597:1 26609:2 26616:1 26626:1 26630:2 26632:6 26653:1 26654:3 26661:2 26663:1 26675:4 26685:1 26691:1 26703:3 26712:1 26714:1 26734:1 26743:5 26744:1 26746:2 26753:1 26754:1 26764:2 26774:1 26778:3 26789:3 26794:1 26796:1 26799:1 26813:1 26818:1 26847:1 26866:1 26870:1 26875:1 26878:1 26884:1 26889:1 26894:1 26897:3 26899:1 26901:1 26911:1 26915:1 26918:3 26923:2 26930:1 26931:1 26932:1 26945:2 26968:1 26971:2 26979:1 26994:1 27035:1 27043:1 27045:1 27054:3 27064:2 27074:1 27082:1 27087:1 27096:1 27100:3 27130:1 27131:1 27145:1 27150:1 27173:1 27178:1 27188:3 27196:1 27206:1 27224:1 27228:1 27230:1 27235:1 27236:1 27249:1 27251:3 27254:2 27258:3 27265:1 27266:2 27269:1 27271:2 27276:3 27287:1 27296:1 27297:1 27299:2 27311:1 27318:1 27320:1 27329:1 27347:6 27353:1 27365:4 27390:1 27392:1 27401:1 27405:2 27411:1 27418:1 27424:1 27448:2 27451:1 27466:1 27468:1 27472:1 27502:1 27504:1 27516:2 27540:1 27548:1 27556:1 27558:1 27620:1 27658:3 27659:2 27662:1 27666:4 27670:2 27673:4 27676:1 27689:1 27713:1 27718:1 27722:1 27727:3 27732:1 27734:1 27745:1 27764:1 27784:2 27802:2 27832:1 27858:1 27868:1 27874:1 27898:1 27899:1 27909:1 27912:1 27950:1 27953:1 27956:2 27969:13 27970:1 27978:1 27981:1 27999:2 28008:5 28060:1 28076:1 28080:2 28095:1 28105:1 28107:1 28117:8 28123:2 28131:1 28134:1 28137:1 28151:1 28152:1 28165:9 28170:1 28177:1 28207:1 28212:1 28214:1 28222:1 28231:1 28243:2 28258:1 28283:1 28296:2 28375:1 28388:1 28392:27 28393:1 28413:1 28416:4 28417:1 28423:4 28424:2 28435:1 28457:1 28485:3 28490:8 28491:1 28503:1 28509:1 28512:1 28522:1 28529:1 28545:1 28546:2 28584:1 28597:1 28610:1 28615:2 28634:1 28635:1 28647:1 28660:1 28669:2 28690:2 28701:1 28710:1 28760:1 28775:1 28782:1 28785:1 28787:2 28796:2 28798:1 28814:1 28854:1 28859:2 28865:1 28875:2 28894:2 28902:1 28903:1 28913:1 28928:1 28937:1 28940:1 28950:1 28954:1 28959:1 28964:1 28976:1 28999:1 29000:2 29003:1 29005:2 29027:1 29031:2 29042:6 29057:2 29062:2 29063:2 29073:23 29079:1 29100:1 29128:1 29137:1 29139:1 29141:2 29146:2 29147:4 29183:1 29194:1 29197:1 29223:1 29225:2 29236:1 29240:1
2 12:1 13:1 31:2 32:1 49:1 55:1 56:1 75:1 85:2 88:1 89:2 91:1 98:1 113:1 146:2 154:1 166:1 170:1 174:2 180:1 184:1 209:1 213:2 223:1 228:1 249:1 265:2 271:3 272:1 276:1 286:1 287:1 291:1 292:1 322:1 329:1 358:1 359:3 376:1 385:1 391:1 392:1 395:1 415:2 425:1 429:1 446:1 452:1 460:1 471:1 479:2 501:2 505:1 509:1 515:1 536:1 544:1 553:1 562:1 564:1 593:1 607:3 613:2 620:1 623:1 644:3 658:24 663:3 667:1 671:1 682:1 686:1 696:1 699:2 714:1 719:1 728:2 735:2 745:1 749:1 783:2 809:1 813:2 815:1 817:3 820:2 822:1 823:1 824:1 857:1 861:3 876:1 904:3 905:6 907:1 908:1 917:5 930:1 937:3 943:1 951:2 957:3 960:5 964:1 965:2 970:1 976:2 980:2 982:2 999:2 1003:1 1006:2 1027:1 1029:2 1032:1 1036:1 1048:2 1050:1 1055:3 1056:1 1098:2 1099:1 1112:1 1146:1 1158:1 1160:3 1190:1 1211:1 1214:23 1220:1 1223:2 1224:2 1227:1 1229:3 1232:1 1245:1 1256:1 1258:2 1260:2 1266:1 1270:1 1275:1 1277:1 1279:2 1280:1 1281:1 1288:1 1290:1 1298:1 1302:1 1314:1 1316:1 1338:1 1354:1 1356:2 1380:1 1390:1 1393:1 1397:1 1402:2 1404:1 1420:1 1430:1 1444:1 1452:2 1462:2 1475:1 1481:1 1499:1 1501:1 1502:2 1506:1 1510:6 1516:1 1528:1 1532:1 1540:1 1546:1 1576:2 1582:1 1598:1 1602:2 1615:1 1616:1 1631:1 1636:1 1637:1 1639:1 1647:1 1666:1 1672:1 1676:1 1677:1 1685:1 1690:1 1691:2 1705:1 1720:1 1728:1 1740:2 1745:3 1760:1 1776:1 1778:1 1779:1 1783:1 1795:1 1820:1 1827:1 1833:1 1840:1 1842:1 1853:1 1866:1 1870:2 1871:2 1878:1 1895:1 1897:1 1898:3 1901:1 1918:1 1921:2 1930:1 1937:1 1941:2 1947:2 1957:1 1959:1 1976:1 1982:1 1993:1 2001:1 2022:3 2042:1 2051:2 2053:1 2077:1 2094:1 2118:1 2123:1 2140:1 2144:1 2145:1 2157:1 2161:1 2172:1 2176:1 2181:1 2196:7 2217:1 2235:1 2238:1 2239:1 2265:1 2269:1 2291:1 2299:1 2325:1 2329:1 2333:1 2334:1 2335:2 2336:4 2338:2 2339:1 2341:1 2342:4 2347:4 2349:3 2352:5 2356:3 2359:1 2362:1 2364:1 2367:1 2369:4 2372:1 2375:1 2376:1 2382:1 2383:1 2406:1 2421:2 2422:1 2430:3 2457:2 2460:1 2478:1 2479:1 2494:1 2495:3 2503:1 2513:2 2514:4 2522:3 2531:1 2533:1 2539:1 2550:3 2571:1 2596:1 2603:2 2610:1 2646:2 2663:1 2674:1 2681:1 2730:1 2735:1 2736:2 2751:2 2758:2 2773:1 2775:1 2777:1 2785:3 2787:1 2804:1 2809:1 2812:3 2813:2 2819:1 2822:3 2826:1 2833:1 2839:1 2841:1 2872:2 2877:1 2881:1 2883:4 2889:1 2892:1 2901:2 2904:1 2937:2 2949:1 2956:2 2982:12 2984:24 2986:1 2990:1 2991:2 2998:2 3002:1 3014:1 3018:1 3019:1 3023:4 3024:1 3029:1 3032:1 3039:5 3049:1 3053:2 3057:1 3070:1 3091:2 3097:1 3100:1 3101:1 3127:1 3133:2 3139:1 3142:1 3169:2 3196:1 3267:1 3281:1 3297:1 3301:1 3316:1 3340:1 3351:1 3354:3 3360:1 3368:1 3393:1 3399:1 3401:2 3419:2 3482:1 3486:1 3502:1 3506:1 3525:1 3527:1 3536:1 3540:1 3550:1 3552:1 3556:1 3564:1 3601:1 3604:1 3612:1 3627:1 3632:1 3642:1 3666:1 3684:1 3690:1 3697:1 3704:1 3715:1 3734:1 3758:1 3773:3 3774:1 3775:1 3779:2 3782:1 3831:2 3833:1 3872:1 3877:1 3884:2 3902:1 3907:1 3909:1 3915:2 3938:1 3940:1 3946:3 3964:1 3985:1 3990:23 3991:2 4012:1 4049:1 4052:1 4056:1 4066:1 4072:2 4079:4 4081:2 4096:2 4102:1 4108:1 4113:2 4117:5 4118:2 4132:2 4171:1 4182:1 4196:1 4208:3 4216:1 4225:1 4231:1 4260:1 4262:1 4264:1 4267:1 4269:1 4272:1 4277:1 4293:1 4307:1 4309:2 4310:1 4312:2 4317:1 4319:3 4331:1 4357:1 4376:3 4402:1 4405:2 4407:1 4409:1 4415:1 4424:1 4432:2 4434:23 4435:1 4443:1 4446:1 4448:1 4452:4 4462:1 4466:1 4475:1 4477:1 4479:1 4527:2 4535:6 4550:1 4553:1 4557:1 4564:1 4590:3 4604:2 4610:1 4618:2 4622:2 4623:1 4629:1 4648:1 4668:7 4676:1 4698:1 4717:1 4744:1 4774:3 4790:1 4811:1 4812:1 4818:5 4826:1 4854:1 4863:1 4898:1 4902:1 4903:2 4908:2 4909:1 4916:1 4920:2 4942:1 4943:3 4954:1 4974:1 4977:1 4983:1 4997:1 4998:1 5012:11 5013:2 5022:1 5025:1 5046:2 5053:2 5063:1 5087:1 5089:1 5138:3 5140:1 5143:1 5149:1 5159:3 5160:4 5161:2 5167:4 5173:1 5174:2 5175:3 5183:1 5190:2 5192:5 5194:2 5195:1 5205:1 5230:1 5264:1 5268:2 5361:1 5403:1 5427:1 5438:1 5439:2 5440:1 5462:1 5482:1 5485:1 5486:1 5496:1 5534:2 5549:1 5574:1 5577:2 5579:1 5583:1 5603:1 5606:1 5624:1 5626:1 5630:3 5634:1 5690:1 5713:1 5716:1 5724:1 5729:1 5740:1 5741:1 5742:1 5762:2 5780:1 5784:1 5790:1 5792:1 5794:1 5800:1 5807:1 5822:1 5833:1 5839:1 5841:1 5853:1 5896:1 5908:2 5921:1 5924:1 5926:1 5939:1 5968:3 6017:1 6027:1 6063:1 6064:1 6065:1 6076:1 6079:1 6092:1 6097:1 6118:1 6143:1 6149:1 6151:1 6168:1 6182:2 6187:1 6195:1 6198:1 6203:1 6208:2 6211:1 6227:1 6247:1 6255:1 6276:1 6294:1 6295:2 6296:1 6301:1 6302:1 6307:1 6308:1 6311:1 6312:1 6313:1 6315:3 6320:1 6324:1 6325:2 6345:1 6356:1 6388:1 6391:1 6399:1 6408:3 6410:2 6416:1 6428:2 6456:1 6479:2 6486:1 6500:1 6510:1 6523:5 6528:1 6534:4 6536:1 6538:1 6539:1 6540:1 6543:1 6545:1 6546:1 6550:2 6552:6 6560:1 6563:1 6581:1 6600:2 6615:1 6619:1 6629:1 6657:1 6666:1 6667:1 6674:3 6679:3 6720:1 6736:1 6744:1 6746:1 6749:1 6755:1 6763:1 6769:1 6772:1 6776:1 6785:1 6792:1 6795:2 6796:1 6810:2 6820:1 6831:2 6850:1 6853:1 6866:1 6872:1 6899:1 6901:1 6904:1 6908:3 6927:1 6939:1 6960:2 6962:1 6967:1 6974:1 6997:1 7030:1 7063:2 7077:1 7083:1 7101:1 7102:1 7114:1 7117:1 7130:1 7178:1 7184:1 7187:1 7192:1 7203:1 7217:5 7264:1 7269:1 7271:1 7277:1 7287:2 7301:2 7319:1 7332:1 7369:2 7375:1 7398:1 7406:1 7409:1 7412:1 7413:1 7423:1 7428:1 7431:1 7435:1 7442:1 7474:1 7485:1 7495:1 7496:2 7508:1 7522:1 7543:1 7563:1 7571:1 7574:1 7582:1 7593:1 7596:5 7629:6 7632:1 7636:1 7663:1 7664:2 7679:1 7707:1 7716:1 7718:1 7725:1 7748:4 7749:1 7779:1 7787:1 7803:2 7815:8 7816:9 7821:1 7833:1 7834:1 7835:5 7864:3 7868:1 7878:35 7882:1 7883:1 7886:2 7890:1 7891:1 7897:12 7900:3 7903:1 7908:1 7911:1 7932:1 7933:1 7941:2 7949:1 7985:4 7996:2 8013:1 8014:1 8037:1 8039:2 8054:2 8065:1 8071:1 8075:3 8077:1 8083:1 8087:1 8105:1 8109:4 8119:1 8129:1 8159:1 8162:2 8189:1 8196:1 8249:1 8253:1 8286:1 8290:1 8300:1 8312:2 8351:1 8364:1 8376:1 8377:24 8384:1 8392:1 8396:1 8402:1 8410:10 8411:3 8426:1 8428:2 8441:1 8443:1 8445:1 8449:2 8466:1 8475:1 8480:1 8492:28 8499:1 8501:1 8561:1 8588:1 8596:1 8645:1 8657:1 8659:2 8667:1 8671:1 8674:2 8677:1 8683:1 8687:1 8693:3 8694:1 8713:1 8720:1 8725:1 8745:3 8746:1 8750:1 8760:2 8762:1 8763:1 8766:1 8768:1 8778:2 8779:2 8782:1 8783:1 8792:1 8813:1 8822:1 8832:1 8836:1 8841:1 8845:1 8850:1 8862:3 8883:1 8915:1 8923:1 8928:1 8931:1 8987:3 8989:1 9014:2 9052:1 9057:2 9059:1 9061:1 9069:1 9086:1 9090:3 9106:1 9110:1 9111:1 9112:1 9118:1 9129:3 9138:1 9139:1 9140:1 9184:1 9196:1 9199:1 9236:1 9238:5 9247:2 9256:1 9258:1 9300:1 9320:4 9343:2 9378:3 9382:2 9384:1 9391:1 9393:3 9394:1 9396:1 9400:1 9404:1 9406:2 9408:2 9415:1 9428:1 9429:1 9432:1 9435:1 9442:1 9445:1 9446:1 9447:2 9449:1 9456:1 9466:1 9473:2 9483:4 9490:2 9496:2 9504:1 9521:1 9525:1 9534:1 9546:1 9558:1 9563:1 9564:2 9571:1 9580:1 9607:1 9610:1 9611:1 9616:2 9619:1 9622:1 9623:1 9624:1 9637:1 9641:1 9642:1 9660:1 9661:1 9675:1 9677:2 9678:6 9681:1 9694:1 9701:2 9703:1 9706:1 9715:1 9717:1 9719:3 9721:1 9723:1 9726:1 9738:1 9751:1 9779:1 9782:1 9797:1 9802:1 9803:1 9804:2 9841:1 9855:1 9856:1 9860:1 9887:1 9905:6 9915:1 9916:1 9921:3 9924:4 9927:1 9936:1 9962:1 9987:1 10003:1 10016:1 10028:1 10029:1 10046:23 10055:1 10061:1 10069:1 10083:1 10092:1 10097:1 10102:1 10115:1 10117:1 10122:1 10131:2 10134:1 10138:1 10170:3 10174:1 10177:2 10184:1 10188:2 10195:2 10220:1 10229:1 10242:2 10243:1 10252:1 10260:1 10261:2 10280:2 10284:5 10297:2 10299:1 10322:3 10336:1 10337:1 10339:1 10350:1 10359:1 10362:1 10381:1 10383:2 10388:1 10393:1 10404:1 10405:1 10417:1 10426:5 10440:1 10464:1 10518:2 10526:1 10542:3 10555:1 10564:2 10573:1 10575:1 10576:1 10582:1 10594:1 10604:1 10609:1 10619:1 10623:1 10624:3 10641:1 10664:3 10681:1 10691:1 10707:1 10725:1 10740:3 10745:1 10758:1 10760:4 10773:1 10786:2 10820:2 10840:1 10842:2 10859:1 10860:4 10864:1 10867:3 10874:1 10882:1 10894:1 10907:1 10912:1 10914:1 10923:1 10929:5 10934:1 10942:1 10947:1 10955:2 10956:1 10976:1 10990:1 11005:1 11036:1 11065:1 11066:1 11083:1 11098:2 11111:2 11114:3 11117:1 11124:1 11131:1 11143:3 11152:1 11158:1 11167:1 11170:1 11176:1 11178:1 11185:1 11195:1 11197:8 11200:1 11203:1 11215:1 11217:3 11219:3 11220:1 11231:1 11234:1 11237:1 11246:1 11264:1 11266:1 11276:5 11279:1 11285:1 11286:1 11293:1 11300:1 11303:2 11311:1 11320:1 11347:2 11375:1 11383:1 11385:1 11390:1 11400:1 11404:3 11407:1 11437:1 11456:1 11464:1 11474:1 11476:2 11483:1 11484:1 11487:1 11490:1 11502:1 11503:4 11505:1 11508:1 11510:1 11511:1 11518:1 11532:1 11535:2 11552:1 11571:2 11591:1 11609:1 11614:1 11617:1 11622:1 11627:1 11629:1 11636:5 11648:2 11649:1 11674:1 11679:1 11695:1 11702:1 11714:1 11732:2 11750:2 11770:1 11775:5 11797:1 11803:1 11812:2 11824:1 11827:1 11829:1 11834:1 11838:1 11839:4 11840:1 11845:2 11848:1 11851:4 11871:1 11878:1 11881:2 11891:1 11895:2 11899:1 11900:5 11904:1 11916:1 11930:1 11936:2 11949:1 11979:1 11992:3 11995:1 11996:1 12003:4 12011:1 12039:1 12043:2 12054:1 12090:1 12092:1 12110:1 12139:1 12163:1 12164:1 12179:1 12223:1 12240:3 12261:3 12281:1 12283:1 12289:1 12330:1 12337:1 12338:1 12339:2 12345:1 12364:1 12376:1 12383:1 12385:1 12406:1 12421:1 12431:1 12444:1 12455:1 12460:2 12461:3 12470:1 12483:1 12505:1 12510:1 12513:2 12522:1 12532:1 12563:1 12575:1 12588:1 12597:3 12599:1 12606:1 12612:1 12613:1 12648:1 12650:1 12657:1 12664:1 12666:1 12722:1 12723:1 12746:1 12763:1 12767:1 12790:2 12792:24 12797:1 12800:1 12809:1 12813:4 12821:1 12859:5 12873:1 12884:2 12888:1 12902:1 12922:1 12927:1 12932:1 12964:1 12967:1 12969:1 12980:1 13001:1 13008:1 13020:1 13024:2 13032:1 13038:1 13086:1 13100:1 13111:1 13116:1 13132:1 13141:2 13145:1 13163:1 13174:1 13180:1 13183:1 13217:1 13229:1 13239:1 13257:1 13262:1 13265:1 13268:1 13269:1 13280:1 13286:7 13291:1 13306:1 13307:1 13313:2 13326:1 13340:1 13384:1 13400:1 13412:1 13417:1 13418:1 13419:2 13424:2 13427:3 13430:3 13437:1 13480:1 13482:1 13491:9 13495:1 13502:1 13584:1 13585:2 13595:1 13626:1 13639:3 13641:3 13647:1 13665:1 13673:1 13676:1 13695:2 13700:2 13705:1 13707:1 13713:1 13716:1 13717:1 13729:2 13732:1 13747:1 13766:1 13770:2 13772:1 13773:1 13775:1 13780:1 13782:7 13783:1 13784:1 13786:1 13804:1 13805:1 13806:1 13808:1 13809:1 13814:4 13821:1 13827:2 13859:1 13868:1 13869:1 13873:1 13901:1 13910:1 13928:1 13935:1 13941:1 13951:9 13953:1 13955:2 13963:1 13974:1 13980:1 13988:1 13998:1 14012:1 14028:1 14030:2 14038:4 14052:1 14055:1 14057:3 14059:1 14069:8 14072:3 14096:1 14107:1 14147:2 14156:1 14177:4 14179:1 14232:1 14241:1 14259:1 14261:2 14273:1 14275:1 14278:1 14308:1 14314:1 14361:4 14422:1 14426:1 14449:1 14451:1 14454:1 14460:2 14466:2 14468:3 14485:2 14486:1 14497:1 14498:1 14541:1 14555:1 14559:1 14560:1 14574:1 14575:1 14576:1 14590:1 14592:2 14607:1 14613:1 14615:1 14617:1 14621:1 14622:1 14625:1 14627:1 14629:1 14634:1 14643:1 14652:1 14653:1 14657:1 14659:1 14664:1 14670:2 14688:1 14699:24 14705:2 14708:1 14709:1 14714:1 14721:1 14736:1 14786:1 14789:1 14792:4 14800:1 14801:1 14806:2 14827:1 14832:1 14847:3 14852:1 14863:1 14869:1 14870:1 14887:2 14890:1 14900:1 14902:1 14939:1 14941:1 14944:1 14979:1 14993:1 15000:2 15003:1 15010:1 15016:1 15031:1 15054:1 15060:1 15069:1 15070:2 15072:1 15080:1 15087:1 15100:1 15105:1 15106:1 15109:7 15113:1 15169:1 15193:2 15197:1 15208:1 15218:1 15223:1 15237:2 15245:2 15247:3 15257:1 15258:1 15278:1 15299:1 15315:1 15322:1 15340:2 15380:1 15386:1 15396:1 15409:2 15433:1 15452:1 15458:1 15462:2 15465:1 15478:1 15482:1 15488:1 15491:1 15521:1 15526:1 15542:1 15555:1 15556:2 15557:2 15584:1 15590:1 15608:4 15610:1 15612:1 15616:2 15633:1 15653:1 15674:1 15678:1 15690:1 15718:1 15730:1 15742:2 15757:1 15762:3 15778:1 15779:1 15783:1 15796:3 15802:2 15805:1 15818:3 15823:1 15827:1 15835:3 15844:1 15888:1 15890:1 15899:1 15921:4 15923:1 15931:1 15944:1 15951:1 15960:1 15961:3 15971:1 16006:1 16023:1 16025:1 16031:1 16038:1 16051:1 16057:1 16060:10 16062:2 16067:1 16096:2 16098:3 16100:1 16105:1 16133:2 16139:2 16140:1 16142:1 16143:2 16165:8 16178:1 16186:1 16200:3 16203:1 16239:1 16250:1 16254:1 16262:1 16264:1 16271:1 16285:4 16286:2 16291:3 16292:1 16299:1 16300:1 16301:1 16304:1 16321:1 16333:1 16357:2 16380:1 16387:1 16392:1 16404:1 16413:1 16416:1 16418:1 16419:1 16440:1 16448:1 16452:1 16455:1 16457:1 16476:1 16484:1 16510:1 16522:1 16524:2 16527:1 16579:1 16604:1 16613:1 16617:1 16631:2 16644:1 16646:1 16647:1 16649:1 16679:1 16687:1 16689:1 16692:1 16714:1 16723:1 16751:1 16757:1 16769:1 16773:3 16776:1 16782:1 16797:1 16800:2 16810:1 16811:2 16822:1 16881:1 16899:1 16926:31 16932:1 16933:1 16934:1 16949:1 16951:1 16963:1 16967:3 17020:1 17028:1 17030:1 17038:1 17042:1 17047:1 17060:1 17068:2 17072:2 17083:1 17103:1 17132:1 17138:1 17143:1 17144:1 17166:2 17181:1 17184:1 17199:1 17207:1 17208:1 17213:1 17234:1 17236:2 17241:1 17250:1 17255:1 17281:1 17284:1 17329:1 17332:1 17361:1 17375:1 17380:1 17383:1 17384:1 17393:1 17395:1 17406:1 17424:1 17436:1 17440:1 17443:1 17450:1 17452:1 17455:1 17457:1 17459:2 17465:2 17475:1 17484:1 17535:2 17545:1 17549:2 17555:2 17560:1 17579:1 17604:1 17620:1 17632:4 17634:1 17637:2 17639:1 17645:1 17649:1 17662:1 17664:1 17671:2 17683:1 17689:1 17692:1 17711:2 17727:2 17731:1 17758:4 17766:4 17787:2 17812:1 17817:1 17844:1 17855:5 17859:1 17860:2 17884:3 17909:2 17926:1 17929:1 17930:1 17936:2 17937:1 17945:1 17964:1 17980:1 18012:1 18013:4 18018:1 18019:1 18026:1 18030:1 18058:1 18076:1 18098:1 18100:1 18123:1 18142:1 18146:3 18204:1 18206:2 18210:1 18223:1 18234:1 18245:1 18269:1 18300:5 18310:1 18316:1 18332:1 18340:2 18370:1 18374:1 18377:3 18393:1 18395:1 18419:1 18431:1 18447:1 18450:1 18462:1 18499:1 18504:1 18507:1 18516:1732 18527:1 18538:2 18551:1 18555:1 18566:1 18587:1 18597:1 18604:1 18638:3 18648:1 18651:2 18653:1 18678:1 18702:1 18707:1 18712:1 18724:1 18775:1 18780:1 18832:1 18859:1 18863:1 18864:1 18894:1 18901:1 18902:1 18933:1 18952:1 18969:1 18976:2 18978:1 18986:1 19014:2 19016:2 19034:1 19037:1 19083:1 19085:4 19116:3 19120:1 19128:1 19137:1 19175:1 19178:1 19184:1 19192:1 19198:1 19219:1 19223:1 19230:1 19245:1 19253:1 19257:1 19259:1 19268:1 19276:1 19282:5 19283:3 19290:1 19315:1 19318:4 19342:2 19362:1 19377:14 19384:1 19399:2 19409:1 19420:2 19421:1 19427:1 19428:1 19447:1 19451:3 19454:1 19461:2 19469:1 19477:1 19481:2 19490:3 19491:1 19500:1 19509:1 19558:1 19561:1 19573:1 19574:1 19584:2 19589:1 19603:1 19609:2 19611:1 19638:1 19653:1 19656:1 19658:1 19692:1 19697:1 19709:1 19715:1 19726:1 19728:1 19732:1 19737:2 19768:1 19793:1 19813:1 19819:1 19820:1 19822:1 19823:1 19829:1 19835:1 19847:1 19851:2 19861:1 19866:1 19881:1 19896:1 19927:2 19929:5 19937:1 19945:1 19950:1 19957:1 19962:1 19986:1 19992:1 19995:2 20000:1 20001:3 20002:3 20021:1 20029:2 20030:3 20033:1 20042:1 20043:1 20051:4 20079:2 20099:2 20109:2 20117:1 20123:3 20132:1 20144:2 20156:1 20162:1 20185:1 20199:1 20211:3 20223:2 20244:1 20258:1 20259:1 20268:1 20311:1 20338:1 20387:1 20390:1 20401:1 20408:1 20451:5 20460:1 20483:1 20484:1 20495:1 20499:2 20500:1 20513:3 20541:1 20555:1 20578:1 20591:1 20601:1 20602:1 20605:1 20623:1 20630:2 20661:1 20664:1 20668:1 20691:2 20697:1 20702:2 20703:1 20704:1 20711:1 20720:1 20725:1 20748:1 20754:1 20762:2 20764:2 20767:1 20773:3 20788:1 20789:1 20798:1 20799:1 20808:1 20810:1 20828:1 20829:1 20833:1 20840:1 20842:2 20848:1 20853:3 20862:1 20863:1 20866:1 20869:3 20870:1 20878:2 20886:1 20892:3 20925:1 20940:1 20942:3 20945:1 20953:2 20958:1 20994:1 20996:1 21001:2 21004:2 21018:1 21021:1 21026:1 21037:2 21057:1 21061:1 21071:1 21078:1 21114:1 21122:1 21132:1 21137:1 21151:1 21153:1 21155:1 21171:1 21185:1 21190:1 21196:1 21202:1 21204:1 21206:3 21219:2 21233:1 21237:3 21257:1 21271:2 21276:1 21285:1 21286:1 21289:1 21308:1 21310:1 21311:1 21313:3 21341:1 21351:2 21359:1 21363:1 21364:2 21369:2 21382:1 21397:1 21398:1 21411:1 21414:1 21415:1 21442:1 21455:1 21464:2 21473:1 21492:1 21493:1 21508:3 21517:1 21530:1 21543:1 21544:1 21558:3 21562:1 21570:4 21574:1 21577:1 21610:1 21625:5 21658:1 21696:1 21699:1 21705:3 21712:1 21714:1 21715:3 21719:1 21728:2 21739:1 21748:1 21763:1 21764:6 21775:1 21791:1 21835:1 21837:1 21843:1 21845:1 21879:2 21881:4 21884:2 21887:1 21895:1 21896:1 21898:2 21906:1 21908:1 21915:1 21918:1 21919:1 21923:4 21924:3 21925:1 21936:1 21937:1 21939:1 21947:1 21955:1 21975:1 21997:1 22000:1 22015:1 22026:2 22028:1 22047:1 22058:2 22062:1 22066:4 22082:2 22095:1 22114:1 22128:3 22133:1 22151:1 22161:2 22170:1 22175:1 22179:2 22199:1 22214:1 22219:2 22235:1 22242:1 22248:11 22262:1 22267:2 22275:1 22310:8 22312:2 22316:1 22321:1 22362:1 22365:4 22368:2 22370:1 22379:2 22383:1 22416:1 22418:1 22425:7 22439:1 22456:3 22462:1 22471:1 22475:1 22479:1 22481:1 22490:1 22492:2 22516:1 22533:1 22536:1 22542:1 22543:2 22555:3 22566:2 22582:1 22583:1 22599:3 22640:1 22665:1 22671:1 22676:1 22688:1 22691:1 22694:23 22709:1 22713:2 22714:3 22719:1 22721:1 22727:1 22752:2 22757:2 22759:1 22760:1 22770:1 22771:1 22781:1 22805:1 22809:1 22816:1 22838:1 22841:1 22842:3 22852:2 22861:2 22871:4 22874:1 22901:1 22986:1 22990:1 23000:3 23008:1 23019:1 23060:1 23074:1 23075:1 23079:1 23083:1 23093:1 23095:2 23103:1 23108:3 23111:1 23115:1 23147:24 23168:2 23169:1 23186:1 23199:1 23202:1 23223:1 23227:1 23228:1 23235:2 23242:2 23247:6 23276:1 23283:1 23289:1 23307:1 23315:1 23321:3 23325:2 23329:1 23350:1 23358:1 23371:1 23379:2 23381:2 23408:1 23460:1 23487:1 23506:1 23509:2 23525:1 23543:1 23593:1 23596:1 23610:1 23617:2 23622:1 23641:2 23651:2 23664:1 23670:1 23693:1 23740:2 23745:1 23752:1 23767:2 23772:1 23775:1 23785:1 23786:1 23802:1 23817:1 23825:1 23832:1 23838:1 23857:1 23868:1 23890:1 23891:1 23895:1 23912:1 23915:2 23932:1 23941:1 23956:1 23957:3 23982:2 24001:1 24008:2 24013:1 24028:2 24065:1 24067:1 24069:2 24075:1 24076:1 24080:2 24092:2 24093:2 24097:3 24105:1 24114:1 24140:1 24144:3 24147:1 24186:7 24191:1 24213:1 24217:1 24220:1 24225:1 24235:1 24270:1 24275:1 24286:1 24291:2 24326:1 24334:2 24366:1 24379:1 24384:1 24388:2 24393:1 24414:1 24420:1 24427:1 24435:1 24444:1 24450:1 24480:3 24484:2 24492:1 24493:1 24495:2 24499:3 24502:1 24505:2 24524:1 24536:2 24552:3 24572:1 24576:2 24577:3 24612:2 24614:1 24620:1 24623:1 24626:1 24628:4 24631:1 24645:1 24646:1 24653:1 24654:1 24656:1 24661:1 24675:1 24676:1 24687:1 24689:1 24699:1 24711:1 24757:1 24766:1 24779:1 24797:1 24802:2 24803:1 24815:1 24838:1 24854:2 24858:2 24859:2 24863:1 24871:2 24911:1 24919:1 24922:2 24943:1 24971:1 24974:1 24979:1 25025:1 25048:2 25064:1 25072:1 25075:2 25077:5 25088:1 25097:3 25100:3 25107:1 25132:2 25133:1 25134:1 25166:2 25173:2 25181:1 25192:1 25199:1 25205:2 25212:1 25215:1 25222:4 25227:1 25236:1 25238:1 25245:1 25248:1 25255:1 25277:3 25279:1 25281:2 25283:1 25284:1 25306:1 25309:1 25310:1 25328:2 25351:1 25362:1 25378:3 25383:1 25384:1 25387:1 25402:1 25408:1 25415:1 25423:1 25440:2 25451:3 25454:2 25461:1 25467:1 25485:2 25499:2 25511:2 25516:3 25546:4 25552:1 25565:1 25573:1 25576:11 25585:2 25599:1 25617:1 25628:1 25636:1 25693:1 25705:1 25707:1 25710:2 25713:3 25718:1 25740:1 25741:1 25760:1 25766:1 25777:2 25778:1 25809:1 25823:1 25832:1 25844:1 25850:2 25861:1 25874:1 25876:1 25884:2 25885:1 25895:1 25920:3 25929:1 25944:2 25955:1 25956:1 25964:1 25988:1 25989:1 25994:1 25995:4 25998:1 26005:2 26018:2 26019:1 26022:7 26023:1 26042:2 26054:1 26061:1 26065:1 26074:1 26093:4 26113:1 26119:1 26122:1 26125:1 26130:1 26145:1 26156:1 26182:1 26202:2 26253:3 26268:1 26272:1 26278:1 26283:1 26286:1 26333:2 26336:1 26354:1 26356:1 26399:1 26401:2 26428:1 26429:1 26440:2 26450:1 26465:1 26484:1 26498:1 26509:1 26525:1 26536:1 26542:1 26546:1 26588:1 26597:1 26609:2 26616:1 26626:1 26630:2 26632:6 26653:1 26654:3 26661:2 26663:1 26675:4 26685:1 26691:1 26703:3 26712:1 26714:2 26734:1 26743:5 26744:1 26746:2 26753:1 26754:1 26757:1 26764:2 26774:1 26778:3 26789:3 26794:1 26796:1 26799:1 26813:1 26818:1 26847:1 26866:1 26870:1 26875:1 26878:1 26884:1 26889:1 26894:1 26897:3 26899:1 26901:1 26911:1 26915:1 26918:3 26923:2 26930:1 26931:1 26932:1 26945:2 26968:1 26971:2 26979:1 26994:1 27035:1 27043:1 27045:1 27054:3 27064:2 27074:1 27082:1 27087:1 27096:1 27100:3 27130:1 27131:1 27145:1 27150:1 27157:1 27173:1 27178:1 27188:3 27196:1 27206:1 27224:1 27228:1 27230:2 27235:1 27236:1 27249:1 27251:3 27254:2 27258:3 27265:1 27266:2 27269:1 27271:2 27276:3 27287:1 27296:2 27297:1 27299:2 27311:1 27318:1 27320:1 27329:1 27347:7 27353:1 27365:4 27390:1 27392:1 27401:1 27405:2 27411:1 27418:1 27424:1 27448:2 27451:1 27466:1 27468:1 27472:1 27502:1 27504:1 27516:2 27540:1 27548:1 27556:1 27558:1 27615:1 27620:1 27658:3 27659:2 27662:1 27666:4 27670:2 27673:4 27675:1 27676:1 27689:1 27713:1 27718:1 27722:1 27727:3 27732:1 27734:1 27745:1 27764:1 27784:2 27802:2 27832:1 27858:1 27868:1 27874:1 27898:1 27899:1 27909:1 27912:1 27945:1 27950:1 27953:1 27956:2 27969:13 27970:1 27974:1 27978:1 27981:1 27999:2 28008:6 28060:1 28076:1 28080:2 28095:1 28105:1 28107:1 28117:8 28123:2 28131:1 28134:1 28137:1 28151:1 28152:1 28165:9 28170:1 28177:1 28207:1 28212:1 28214:1 28222:1 28231:1 28243:2 28258:1 28283:1 28296:2 28375:1 28388:1 28392:28 28393:1 28413:1 28416:4 28417:1 28423:4 28424:2 28435:1 28457:1 28485:3 28490:8 28491:1 28503:1 28509:1 28512:1 28522:1 28529:1 28545:1 28546:2 28584:1 28597:1 28610:1 28615:2 28634:1 28635:1 28647:1 28660:1 28669:2 28690:2 28701:1 28710:1 28760:1 28775:1 28782:1 28785:1 28787:2 28796:2 28798:1 28814:1 28854:1 28859:2 28865:1 28875:2 28894:2 28902:1 28903:1 28913:1 28928:1 28937:1 28940:1 28950:1 28954:1 28959:1 28964:1 28974:1 28976:1 28999:1 29000:2 29003:1 29005:2 29027:1 29031:2 29042:6 29057:2 29062:2 29063:2 29073:24 29079:1 29100:1 29120:1 29128:1 29137:1 29139:1 29141:2 29146:2 29147:4 29183:1 29194:2 29197:1 29223:1 29225:2 29236:1 29240:1
2 12:1 13:1 31:2 32:1 49:1 55:1 56:1 75:1 85:2 88:1 89:2 91:1 98:1 113:1 146:2 154:1 166:1 170:1 174:2 180:1 184:1 209:1 213:2 223:1 228:1 249:2 265:2 271:3 272:1 276:1 286:1 287:1 291:1 292:1 322:1 329:1 358:1 359:3 376:1 385:1 391:1 392:1 395:1 415:2 425:1 429:1 446:1 452:1 460:1 471:1 479:2 501:2 505:1 509:1 515:1 536:1 544:1 553:1 562:1 564:1 593:1 607:3 613:2 620:1 623:1 644:3 658:25 663:3 667:1 671:1 682:1 686:1 696:1 699:2 714:1 719:1 728:2 735:2 745:1 749:1 783:2 809:1 813:2 815:1 817:3 820:2 822:1 823:1 824:2 857:1 861:3 876:1 904:3 905:6 907:2 908:1 917:5 930:1 937:4 943:1 951:2 957:3 960:5 964:1 965:2 970:1 976:2 980:2 982:3 999:2 1003:1 1006:2 1016:1 1027:1 1029:2 1032:1 1036:1 1048:2 1050:1 1055:3 1056:1 1098:2 1099:1 1112:1 1146:1 1158:1 1160:3 1190:1 1211:1 1214:24 1220:1 1223:2 1224:2 1227:1 1229:3 1232:1 1245:1 1256:1 1258:2 1260:2 1266:1 1270:1 1275:1 1277:1 1279:2 1280:1 1281:1 1288:1 1290:1 1298:1 1302:1 1314:1 1316:1 1338:1 1354:1 1356:2 1380:2 1390:1 1393:1 1397:1 1402:2 1404:1 1420:1 1430:1 1444:1 1452:2 1459:1 1462:2 1475:1 1481:1 1499:1 1501:1 1502:2 1506:1 1510:6 1516:1 1528:1 1532:1 1540:1 1546:1 1576:2 1582:1 1598:1 1602:2 1615:1 1616:1 1631:1 1636:1 1637:1 1639:1 1647:2 1666:1 1672:1 1676:1 1677:1 1685:1 1690:1 1691:2 1705:1 1720:1 1728:1 1740:2 1741:1 1745:3 1760:1 1776:1 1778:1 1779:1 1783:1 1795:1 1820:1 1827:1 1833:1 1838:1 1840:1 1842:1 1853:1 1866:1 1870:2 1871:2 1877:1 1878:1 1895:1 1897:1 1898:3 1901:1 1907:1 1918:1 1921:2 1930:1 1937:1 1941:2 1947:2 1957:1 1959:1 1976:1 1982:1 1993:1 2001:1 2022:4 2042:1 2051:2 2053:1 2077:1 2094:1 2118:1 2123:1 2140:1 2144:1 2145:1 2157:1 2161:1 2172:1 2176:1 2181:1 2196:8 2217:1 2235:2 2238:1 2239:1 2265:1 2269:1 2291:1 2299:1 2325:1 2329:1 2333:1 2334:1 2335:2 2336:4 2338:2 2339:1 2341:1 2342:4 2347:6 2349:3 2352:5 2356:3 2359:1 2362:1 2364:1 2367:1 2369:4 2372:2 2375:1 2376:1 2382:1 2383:1 2406:1 2421:2 2422:1 2430:3 2457:2 2460:1 2478:1 2479:1 2492:1 2494:2 2495:3 2503:2 2513:2 2514:4 2522:3 2523:1 2531:1 2533:1 2539:1 2550:3 2564:1 2571:1 2596:1 2603:2 2604:1 2610:1 2646:2 2663:1 2674:1 2680:1 2681:1 2730:1 2735:1 2736:2 2751:2 2758:2 2767:1 2773:1 2775:1 2777:1 2785:3 2787:1 2804:1 2809:1 2812:3 2813:2 2819:1 2822:3 2826:1 2833:1 2839:1 2841:1 2872:2 2877:1 2881:1 2883:4 2889:1 2892:2 2901:2 2904:1 2937:2 2949:1 2956:2 2982:12 2984:25 2986:1 2990:1 2991:2 2998:2 3002:1 3014:1 3018:1 3019:1 3023:4 3024:1 3029:1 3032:1 3039:6 3049:1 3053:2 3057:1 3067:1 3070:1 3091:2 3097:1 3100:1 3101:1 3127:1 3133:3 3139:1 3142:1 3169:2 3196:1 3267:1 3281:1 3297:1 3301:1 3316:1 3337:1 3340:1 3351:1 3354:3 3360:1 3368:1 3393:1 3399:1 3401:2 3419:2 3482:1 3486:1 3502:1 3506:1 3521:1 3525:1 3527:1 3536:1 3540:1 3550:1 3552:1 3556:1 3564:1 3601:1 3604:1 3612:1 3627:1 3632:1 3642:1 3666:1 3684:1 3690:1 3697:1 3704:1 3715:1 3734:1 3758:1 3773:3 3774:1 3775:1 3779:2 3782:1 3831:2 3833:1 3872:1 3877:1 3884:2 3902:1 3907:1 3909:1 3915:2 3938:1 3940:1 3946:3 3964:1 3985:1 3990:24 3991:2 4012:1 4049:1 4052:1 4056:1 4066:1 4072:2 4079:4 4081:2 4096:2 4102:1 4108:1 4113:2 4117:5 4118:2 4132:2 4171:1 4182:1 4196:1 4208:3 4216:1 4225:1 4231:1 4260:1 4262:1 4264:1 4267:1 4269:1 4272:1 4277:1 4293:1 4307:1 4309:2 4310:1 4312:2 4317:1 4319:3 4331:1 4357:1 4376:3 4402:1 4405:2 4407:1 4409:1 4415:1 4424:1 4432:2 4434:24 4435:1 4443:1 4446:1 4448:1 4452:4 4462:1 4466:1 4475:1 4477:1 4479:1 4527:2 4535:6 4550:1 4553:1 4557:1 4564:1 4590:3 4604:2 4609:1 4610:1 4618:2 4622:2 4623:1 4629:1 4648:1 4668:7 4676:1 4698:1 4717:1 4744:1 4774:3 4790:1 4811:1 4812:1 4818:5 4826:1 4854:1 4863:1 4898:1 4902:1 4903:2 4908:2 4909:1 4916:1 4920:2 4942:1 4943:3 4954:1 4974:1 4977:1 4983:1 4997:2 4998:1 5012:12 5013:2 5022:1 5025:1 5046:3 5053:2 5063:1 5087:1 5089:1 5138:3 5140:1 5143:2 5149:1 5159:4 5160:4 5161:2 5167:5 5173:1 5174:2 5175:3 5176:1 5183:1 5190:2 5192:5 5194:3 5195:1 5205:1 5230:1 5264:1 5268:2 5361:1 5403:1 5427:1 5438:1 5439:2 5440:1 5462:1 5482:1 5485:1 5486:1 5496:1 5534:3 5549:1 5574:1 5577:2 5579:1 5583:1 5603:1 5606:1 5613:1 5624:1 5626:1 5630:3 5634:1 5690:1 5713:1 5716:1 5724:1 5729:1 5740:1 5741:1 5742:1 5762:2 5780:1 5784:1 5790:1 5792:1 5794:1 5800:1 5802:1 5807:1 5822:1 5833:1 5839:1 5841:1 5853:1 5896:1 5908:2 5921:1 5924:1 5926:1 5939:1 5968:3 6017:1 6027:1 6063:1 6064:1 6065:1 6076:1 6079:1 6092:1 6097:1 6118:1 6143:1 6149:1 6151:1 6168:1 6176:1 6182:2 6187:1 6195:1 6198:1 6203:1 6207:1 6208:2 6211:1 6227:1 6247:1 6255:1 6276:1 6294:1 6295:2 6296:1 6301:1 6302:1 6307:1 6308:1 6311:1 6312:1 6313:1 6315:3 6320:1 6324:1 6325:2 6345:1 6356:1 6388:1 6391:1 6399:1 6408:3 6410:2 6416:1 6428:2 6456:1 6479:2 6486:1 6500:1 6510:1 6523:5 6528:1 6533:1 6534:4 6536:1 6538:1 6539:1 6540:1 6543:1 6545:1 6546:1 6550:3 6552:6 6560:1 6563:1 6581:1 6595:1 6600:2 6615:1 6619:1 6629:1 6657:1 6666:1 6667:1 6674:3 6679:3 6694:1 6720:1 6736:1 6744:1 6746:1 6749:1 6755:1 6763:1 6769:1 6772:1 6776:1 6785:1 6792:1 6795:2 6796:1 6810:2 6820:1 6831:2 6850:1 6853:1 6866:1 6872:1 6899:1 6901:1 6904:1 6908:3 6927:1 6939:1 6960:2 6962:1 6967:1 6974:1 6997:1 7030:1 7063:2 7077:1 7083:1 7101:1 7102:1 7114:1 7117:1 7130:1 7178:1 7184:1 7187:1 7192:1 7203:1 7217:5 7264:1 7269:1 7271:1 7277:1 7287:2 7301:2 7319:1 7332:1 7369:2 7375:1 7398:1 7406:1 7409:1 7412:1 7413:1 7417:1 7423:1 7428:1 7431:1 7435:1 7442:1 7474:1 7485:1 7495:1 7496:2 7508:1 7522:1 7543:1 7563:1 7571:1 7574:1 7582:1 7593:1 7596:6 7629:6 7632:1 7636:1 7663:1 7664:2 7679:1 7693:1 7707:1 7716:1 7718:1 7722:1 7725:1 7748:4 7749:1 7779:1 7787:1 7803:2 7815:9 7816:9 7821:1 7833:1 7834:1 7835:5 7864:3 7868:2 7871:1 7878:38 7882:1 7883:1 7886:2 7890:1 7891:1 7897:12 7900:3 7903:1 7908:1 7911:1 7932:1 7933:1 7941:2 7949:1 7985:4 7996:2 8013:1 8014:1 8037:1 8039:2 8054:3 8065:1 8071:1 8075:3 8077:1 8083:1 8087:1 8105:1 8109:5 8119:1 8129:1 8159:1 8162:2 8189:1 8196:1 8249:1 8253:1 8286:1 8290:1 8300:1 8312:2 8348:1 8351:1 8364:1 8376:1 8377:25 8384:1 8392:1 8396:1 8402:1 8410:10 8411:3 8426:1 8428:2 8441:1 8443:1 8445:1 8449:2 8466:1 8475:1 8480:1 8492:29 8499:1 8501:1 8531:1 8561:1 8588:1 8596:1 8645:1 8657:1 8659:2 8667:1 8671:1 8674:2 8677:1 8683:1 8687:1 8693:3 8694:1 8713:1 8720:1 8725:1 8745:3 8746:1 8750:1 8760:2 8762:1 8763:1 8766:1 8768:1 8778:2 8779:2 8782:1 8783:1 8792:1 8813:1 8822:1 8832:1 8836:1 8841:1 8845:1 8850:1 8862:3 8883:1 8915:1 8923:1 8928:1 8931:1 8987:3 8989:1 9014:2 9052:1 9057:2 9059:1 9061:1 9069:1 9086:1 9090:3 9106:1 9110:1 9111:1 9112:1 9118:1 9129:3 9138:1 9139:1 9140:1 9184:1 9191:2 9196:1 9199:1 9204:1 9236:1 9238:5 9247:3 9256:1 9258:1 9300:1 9320:4 9343:2 9378:3 9382:2 9384:1 9391:1 9393:3 9394:1 9396:1 9400:1 9404:1 9406:2 9408:2 9415:1 9428:1 9429:1 9432:1 9435:1 9442:1 9445:1 9446:1 9447:2 9449:1 9456:1 9466:1 9473:2 9483:4 9490:2 9496:2 9504:1 9506:1 9521:1 9525:1 9534:1 9546:1 9558:1 9563:1 9564:2 9571:1 9580:1 9607:1 9610:1 9611:1 9616:2 9619:1 9622:1 9623:1 9624:1 9637:1 9641:1 9642:1 9660:1 9661:1 9675:1 9677:2 9678:7 9681:1 9694:1 9701:2 9703:1 9706:1 9715:1 9717:1 9719:3 9721:1 9723:1 9726:1 9738:1 9751:1 9752:1 9779:1 9782:1 9797:1 9802:1 9803:1 9804:2 9805:1 9841:1 9855:1 9856:1 9860:1 9887:1 9905:6 9915:1 9916:1 9921:3 9924:4 9927:1 9936:1 9962:1 9987:1 10003:1 10016:1 10028:1 10029:1 10046:24 10055:1 10061:1 10069:1 10083:1 10092:1 10097:1 10102:1 10115:1 10117:1 10122:1 10131:2 10134:1 10138:1 10170:3 10174:1 10177:2 10184:1 10188:2 10195:2 10220:1 10229:1 10233:1 10242:2 10243:1 10252:1 10260:1 10261:2 10266:1 10280:3 10284:5 10297:2 10299:1 10322:3 10336:1 10337:1 10339:1 10350:1 10359:1 10362:1 10381:1 10383:2 10388:1 10393:1 10404:1 10405:1 10417:1 10426:5 10440:1 10464:1 10518:2 10522:1 10526:1 10542:4 10555:1 10564:2 10573:1 10575:1 10576:1 10582:1 10594:1 10604:1 10609:1 10619:1 10623:1 10624:4 10641:1 10664:3 10681:1 10691:1 10707:1 10725:1 10740:3 10745:1 10758:1 10760:4 10773:1 10786:2 10820:2 10834:1 10840:1 10842:2 10859:1 10860:4 10864:1 10867:3 10874:1 10882:1 10894:1 10907:1 10912:1 10914:1 10923:1 10929:5 10934:1 10942:1 10947:1 10955:2 10956:1 10976:1 10990:1 11005:1 11036:1 11065:1 11066:1 11083:1 11098:2 11100:1 11111:2 11114:3 11117:1 11124:1 11131:1 11143:3 11152:1 11158:1 11167:1 11170:1 11176:1 11178:1 11185:1 11195:1 11197:8 11200:1 11203:1 11215:1 11217:3 11219:3 11220:1 11231:1 11234:1 11237:1 11246:1 11264:1 11266:1 11276:5 11279:1 11285:1 11286:1 11293:1 11300:1 11303:2 11311:1 11320:1 11347:2 11373:1 11375:1 11383:1 11385:1 11390:1 11400:1 11404:3 11407:1 11437:1 11456:1 11464:2 11474:1 11475:1 11476:2 11483:1 11484:1 11487:1 11490:1 11502:1 11503:4 11505:1 11508:1 11510:1 11511:1 11518:1 11532:1 11535:2 11552:1 11571:2 11591:1 11609:1 11614:1 11617:1 11622:1 11627:1 11629:1 11636:6 11648:2 11649:1 11674:1 11679:1 11695:1 11702:1 11714:1 11732:2 11750:2 11770:1 11775:5 11797:1 11803:1 11812:2 11824:1 11827:1 11829:1 11834:1 11838:1 11839:5 11840:1 11845:2 11848:1 11851:4 11854:1 11871:1 11878:1 11881:2 11891:1 11895:2 11899:1 11900:5 11904:1 11907:1 11916:1 11930:1 11936:2 11949:1 11979:1 11992:3 11995:1 11996:1 12003:4 12011:1 12039:1 12043:2 12054:1 12090:1 12092:1 12110:1 12139:1 12163:1 12164:1 12179:1 12223:1 12240:3 12261:3 12281:1 12283:1 12289:1 12330:1 12337:1 12338:1 12339:2 12345:1 12364:1 12376:1 12383:1 12385:1 12406:1 12421:1 12431:1 12444:1 12455:1 12460:2 12461:4 12470:1 12483:1 12505:1 12510:1 12513:2 12522:1 12532:1 12563:1 12575:1 12588:1 12597:3 12599:1 12606:1 12612:1 12613:1 12635:1 12648:1 12650:1 12657:1 12664:1 12666:1 12722:1 12723:1 12746:1 12763:1 12767:1 12790:2 12792:25 12797:1 12800:1 12809:1 12813:4 12821:1 12859:5 12873:1 12884:2 12888:1 12902:1 12922:1 12927:1 12932:1 12964:1 12967:1 12969:1 12980:1 13001:1 13008:1 13020:1 13024:2 13032:1 13038:1 13086:1 13100:2 13111:1 13116:1 13132:1 13141:2 13145:1 13163:1 13174:1 13180:1 13183:1 13217:1 13229:1 13239:1 13257:1 13262:1 13265:1 13268:1 13269:1 13280:1 13286:8 13291:1 13306:1 13307:1 13313:2 13326:1 13340:1 13384:1 13400:1 13412:1 13417:1 13418:1 13419:2 13424:2 13427:3 13430:3 13437:1 13480:1 13482:1 13491:10 13495:1 13502:1 13584:1 13585:2 13595:1 13626:1 13639:3 13641:3 13647:2 13665:1 13673:1 13675:1 13676:1 13695:2 13700:2 13705:1 13707:1 13713:1 13716:1 13717:1 13729:2 13732:1 13747:1 13766:1 13770:2 13772:2 13773:1 13775:1 13780:1 13782:8 13783:1 13784:1 13786:2 13804:1 13805:1 13806:1 13808:1 13809:1 13814:5 13821:1 13827:2 13859:1 13868:1 13869:1 13873:1 13901:1 13910:1 13928:1 13935:1 13941:1 13951:10 13953:1 13955:2 13963:1 13974:1 13980:1 13988:1 13998:1 14012:1 14028:1 14030:2 14038:4 14052:1 14055:1 14057:3 14059:1 14069:9 14072:4 14096:1 14107:1 14147:2 14156:1 14177:4 14179:1 14232:1 14241:1 14259:1 14261:2 14273:1 14275:1 14278:1 14308:2 14314:1 14361:4 14422:1 14426:1 14449:1 14451:1 14454:1 14460:2 14466:2 14468:3 14485:2 14486:1 14497:1 14498:1 14541:1 14555:1 14559:1 14560:1 14574:1 14575:1 14576:1 14590:1 14592:2 14607:1 14613:1 14615:1 14617:1 14621:1 14622:1 14625:1 14627:1 14629:1 14634:1 14641:1 14643:1 14652:1 14653:1 14657:1 14659:1 14664:1 14670:2 14688:1 14699:25 14705:2 14708:1 14709:1 14714:1 14721:1 14736:1 14786:1 14789:1 14792:5 14800:1 14801:1 14806:2 14827:1 14832:1 14847:3 14850:1 14852:1 14863:1 14869:1 14870:1 14887:2 14890:1 14900:1 14902:1 14939:1 14941:1 14944:1 14979:1 14993:1 15000:2 15003:1 15010:1 15016:1 15031:1 15054:1 15060:1 15069:1 15070:2 15072:1 15080:1 15087:1 15100:1 15104:1 15105:1 15106:1 15109:7 15113:1 15169:1 15193:2 15197:1 15208:1 15218:1 15223:1 15237:2 15245:2 15247:3 15257:1 15258:1 15278:1 15299:1 15315:1 15322:1 15340:2 15379:2 15380:1 15386:1 15396:1 15409:2 15433:1 15452:1 15458:1 15462:2 15465:1 15478:1 15482:1 15488:1 15491:1 15506:1 15521:1 15526:1 15542:1 15555:1 15556:2 15557:2 15584:1 15590:1 15608:4 15610:1 15612:1 15616:2 15633:1 15653:1 15674:1 15678:1 15690:1 15718:1 15730:1 15742:2 15757:1 15762:4 15778:1 15779:1 15783:1 15796:5 15802:2 15805:1 15818:3 15823:1 15827:1 15835:3 15844:1 15888:1 15890:1 15897:2 15899:1 15921:4 15923:1 15931:1 15944:1 15951:1 15960:1 15961:3 15971:1 16006:1 16023:1 16025:1 16031:1 16038:1 16051:1 16057:1 16060:11 16062:2 16067:1 16096:2 16098:3 16100:1 16105:2 16133:2 16139:2 16140:1 16142:1 16143:2 16165:9 16178:1 16186:1 16200:3 16203:1 16239:1 16250:1 16254:1 16262:1 16264:1 16271:1 16285:4 16286:2 16291:3 16292:1 16299:1 16300:1 16301:1 16304:1 16321:1 16333:1 16357:2 16380:1 16387:1 16392:1 16404:1 16413:1 16416:1 16418:1 16419:1 16440:1 16448:1 16452:1 16455:1 16457:1 16468:1 16476:1 16484:1 16510:1 16522:1 16524:2 16527:1 16579:1 16604:2 16613:1 16617:1 16631:2 16644:1 16646:1 16647:1 16649:1 16679:1 16687:1 16689:1 16692:1 16714:1 16723:1 16725:1 16751:1 16757:1 16769:1 16773:3 16776:1 16782:1 16797:1 16800:2 16810:1 16811:2 16822:1 16878:1 16881:1 16899:1 16926:32 16932:1 16933:1 16934:1 16949:1 16951:1 16963:1 16967:3 17020:1 17028:1 17030:1 17038:1 17042:1 17047:1 17060:1 17068:2 17072:2 17083:1 17103:1 17132:1 17138:1 17143:1 17144:1 17160:1 17166:2 17181:1 17184:1 17199:1 17207:1 17208:1 17213:1 17234:1 17236:2 17241:1 17250:1 17255:1 17281:1 17284:1 17329:1 17332:1 17361:1 17375:1 17380:1 17383:1 17384:1 17393:1 17395:1 17406:1 17424:1 17436:1 17440:1 17443:1 17450:1 17452:1 17455:1 17457:1 17459:2 17465:2 17475:1 17484:1 17535:2 17545:1 17549:2 17555:2 17560:1 17579:1 17604:1 17620:1 17623:1 17632:4 17634:1 17637:2 17639:1 17645:1 17649:1 17662:1 17664:1 17671:2 17683:1 17689:1 17692:1 17711:2 17727:2 17731:2 17758:4 17766:4 17787:2 17812:1 17817:1 17844:1 17855:5 17859:1 17860:2 17884:3 17909:2 17926:1 17929:1 17930:1 17936:2 17937:1 17945:1 17964:1 17980:1 18012:1 18013:4 18018:1 18019:1 18026:1 18030:1 18058:1 18076:1 18098:1 18100:1 18123:1 18142:1 18146:3 18204:1 18206:2 18210:1 18223:1 18234:2 18245:1 18269:1 18300:5 18310:1 18316:1 18332:1 18340:2 18370:1 18374:1 18377:4 18393:1 18395:1 18419:1 18431:1 18447:1 18450:1 18462:1 18499:1 18504:1 18507:1 18516:1789 18527:1 18538:2 18551:1 18555:1 18566:1 18587:1 18597:1 18604:1 18638:3 18648:1 18651:2 18653:1 18678:1 18702:1 18707:1 18712:1 18724:1 18775:1 18780:1 18832:1 18859:1 18863:1 18864:1 18894:1 18901:1 18902:1 18933:1 18952:1 18969:1 18976:2 18978:1 18986:1 19014:2 19016:2 19034:1 19037:1 19083:1 19085:4 19116:3 19120:1 19128:1 19137:1 19175:1 19178:1 19184:1 19192:1 19198:1 19219:1 19223:1 19230:1 19239:1 19245:1 19253:1 19257:1 19259:1 19268:1 19276:1 19282:5 19283:3 19290:1 19315:1 19318:4 19342:2 19362:1 19377:14 19384:1 19399:2 19409:1 19420:2 19421:1 19427:1 19428:1 19447:1 19451:4 19454:1 19461:2 19469:1 19477:1 19481:2 19490:3 19491:1 19500:1 19509:1 19530:2 19558:1 19561:1 19573:1 19574:1 19584:2 19589:1 19603:1 19609:2 19611:1 19638:1 19653:1 19656:1 19658:1 19692:1 19697:1 19709:1 19715:1 19726:1 19728:1 19732:1 19737:4 19768:1 19793:1 19813:1 19819:1 19820:1 19822:1 19823:1 19829:1 19835:1 19847:1 19851:2 19861:1 19866:1 19881:1 19896:1 19927:2 19929:5 19937:1 19945:1 19950:1 19957:1 19962:1 19972:1 19986:1 19992:1 19995:2 20000:1 20001:3 20002:3 20021:1 20029:2 20030:3 20033:1 20042:1 20043:1 20051:4 20079:2 20099:2 20103:1 20109:2 20117:1 20123:3 20132:1 20144:2 20156:1 20162:1 20185:1 20199:1 20211:4 20223:2 20244:1 20258:1 20259:1 20268:1 20311:1 20338:1 20387:1 20390:1 20401:1 20408:1 20451:5 20460:1 20483:1 20484:2 20495:1 20499:2 20500:1 20513:3 20541:1 20555:1 20578:1 20591:1 20601:1 20602:2 20605:1 20623:1 20630:2 20661:1 20664:1 20668:1 20691:2 20692:1 20697:1 20702:2 20703:1 20704:1 20711:1 20720:1 20725:1 20748:1 20754:1 20762:2 20764:2 20767:1 20773:3 20788:1 20789:1 20798:1 20799:1 20808:1 20810:1 20828:1 20829:1 20833:1 20840:1 20842:2 20848:1 20853:3 20862:1 20863:1 20866:1 20869:3 20870:2 20878:2 20886:1 20892:3 20925:1 20940:1 20942:4 20945:1 20953:2 20958:1 20994:1 20996:1 21001:2 21004:2 21018:1 21021:1 21026:1 21037:2 21057:1 21061:1 21071:1 21078:1 21114:1 21122:1 21132:1 21137:1 21151:1 21153:1 21155:1 21171:1 21185:1 21190:1 21196:1 21202:1 21204:1 21206:3 21219:2 21233:1 21237:3 21257:1 21271:2 21276:1 21285:1 21286:1 21289:1 21308:1 21310:1 21311:1 21313:3 21332:1 21341:1 21351:2 21359:1 21363:1 21364:2 21369:2 21382:1 21397:1 21398:1 21411:1 21414:1 21415:1 21436:1 21442:1 21455:1 21464:3 21473:1 21492:1 21493:1 21508:3 21517:1 21530:1 21543:1 21544:1 21558:3 21562:1 21570:4 21574:1 21577:1 21610:1 21625:5 21658:1 21695:1 21696:1 21699:1 21705:4 21712:1 21714:1 21715:3 21719:1 21728:2 21739:1 21748:1 21763:1 21764:7 21775:1 21791:1 21835:1 21837:1 21843:1 21845:1 21879:2 21881:4 21884:2 21887:1 21895:1 21896:1 21898:2 21906:1 21908:1 21915:1 21918:1 21919:1 21923:4 21924:4 21925:1 21936:1 21937:1 21939:1 21947:1 21955:1 21975:1 21997:1 22000:1 22015:1 22026:2 22028:1 22047:2 22058:2 22062:1 22066:4 22082:2 22095:1 22114:1 22128:3 22133:1 22139:1 22144:1 22151:1 22161:3 22170:1 22175:1 22179:2 22192:1 22199:1 22214:1 22219:2 22235:1 22242:2 22248:11 22262:1 22267:2 22275:1 22310:9 22312:2 22316:1 22321:1 22362:1 22365:4 22368:2 22370:1 22379:2 22383:1 22416:1 22418:1 22425:7 22439:1 22456:3 22462:1 22471:1 22475:1 22479:1 22481:1 22490:1 22492:2 22516:1 22533:1 22536:1 22542:1 22543:2 22555:4 22566:2 22582:1 22583:1 22599:3 22640:1 22665:1 22671:1 22676:1 22688:1 22691:1 22694:24 22709:1 22713:2 22714:3 22719:1 22721:1 22727:1 22752:2 22757:2 22759:1 22760:1 22770:1 22771:1 22781:1 22805:1 22809:1 22816:1 22838:1 22841:1 22842:3 22852:2 22861:2 22871:4 22874:1 22901:1 22986:1 22990:1 23000:3 23008:1 23019:1 23060:1 23074:1 23075:1 23079:1 23083:1 23093:1 23095:2 23103:1 23108:3 23111:1 23115:1 23147:25 23168:2 23169:1 23186:1 23199:1 23202:1 23223:1 23227:1 23228:1 23235:2 23242:2 23247:6 23276:1 23283:1 23289:1 23307:1 23315:1 23321:3 23325:2 23329:1 23350:1 23358:1 23371:1 23379:2 23381:2 23408:1 23460:1 23487:1 23506:1 23508:1 23509:2 23525:1 23543:1 23593:1 23596:1 23610:1 23617:2 23622:1 23641:2 23651:2 23664:2 23670:1 23693:1 23699:2 23740:2 23745:1 23752:1 23767:2 23772:1 23775:1 23785:1 23786:1 23802:1 23817:1 23825:1 23832:1 23838:1 23857:1 23868:1 23890:1 23891:1 23895:1 23912:1 23915:2 23932:1 23941:1 23956:1 23957:3 23978:1 23982:2 24001:1 24008:2 24013:1 24028:2 24065:1 24067:1 24069:2 24075:1 24076:1 24080:2 24092:2 24093:2 24097:3 24105:1 24114:1 24140:1 24144:3 24147:1 24186:7 24191:1 24213:1 24217:1 24220:1 24225:1 24235:1 24270:1 24275:1 24286:1 24291:3 24326:1 24334:2 24366:1 24379:1 24384:1 24388:2 24393:1 24414:1 24420:1 24427:1 24435:1 24444:1 24450:1 24480:3 24484:2 24492:1 24493:1 24495:2 24499:3 24502:1 24505:2 24524:1 24536:2 24552:3 24572:1 24576:2 24577:3 24612:2 24614:1 24620:1 24623:1 24626:1 24628:4 24631:1 24645:1 24646:1 24653:1 24654:1 24656:1 24661:1 24675:1 24676:1 24687:1 24689:1 24699:1 24711:1 24757:1 24766:1 24779:1 24797:1 24802:3 24803:1 24815:1 24838:1 24854:3 24858:2 24859:2 24863:1 24871:2 24911:1 24919:1 24922:2 24943:1 24971:1 24974:1 24979:1 25025:1 25048:2 25064:1 25069:1 25072:1 25075:2 25077:5 25088:1 25097:5 25100:3 25107:1 25132:2 25133:1 25134:1 25166:2 25173:2 25181:1 25192:1 25199:1 25205:2 25212:1 25215:1 25222:4 25227:1 25236:1 25238:1 25245:1 25248:1 25255:1 25271:1 25277:3 25279:1 25281:2 25283:1 25284:1 25306:1 25309:1 25310:1 25313:1 25328:2 25351:1 25362:1 25378:3 25383:1 25384:1 25387:1 25402:1 25408:1 25415:1 25423:1 25440:2 25451:3 25454:2 25461:1 25467:1 25485:2 25499:2 25511:2 25516:3 25546:4 25552:1 25565:1 25573:1 25576:11 25585:2 25599:1 25617:1 25628:1 25636:1 25693:1 25705:1 25707:1 25710:2 25713:3 25718:1 25732:1 25740:1 25741:1 25760:1 25766:1 25777:2 25778:1 25809:1 25812:1 25823:1 25832:1 25844:1 25848:1 25850:2 25861:1 25874:1 25876:1 25884:2 25885:1 25895:1 25920:3 25929:1 25944:2 25955:1 25956:1 25964:1 25966:1 25988:1 25989:1 25994:1 25995:4 25998:1 26005:2 26018:2 26019:1 26022:7 26023:1 26042:2 26054:1 26061:1 26065:1 26074:1 26093:5 26113:1 26119:1 26122:1 26125:1 26128:1 26130:1 26145:1 26156:1 26182:1 26202:2 26231:1 26253:3 26268:1 26272:1 26278:1 26283:1 26286:1 26333:2 26336:1 26354:1 26356:1 26399:1 26401:2 26428:1 26429:1 26440:2 26450:1 26465:1 26484:1 26489:1 26498:1 26509:1 26525:1 26536:1 26542:1 26546:1 26588:1 26597:1 26609:2 26616:1 26626:1 26630:2 26632:6 26653:1 26654:3 26657:1 26661:2 26663:1 26675:4 26685:1 26691:1 26692:1 26703:3 26712:1 26714:2 26734:1 26743:5 26744:1 26746:2 26753:1 26754:1 26757:1 26764:2 26774:1 26778:3 26789:3 26794:1 26796:1 26799:1 26813:1 26818:1 26847:1 26851:1 26866:1 26870:1 26875:1 26878:1 26884:1 26889:1 26894:1 26897:3 26899:1 26901:1 26911:1 26915:1 26918:4 26923:2 26930:1 26931:1 26932:1 26945:2 26968:1 26971:2 26979:1 26994:1 27035:1 27043:1 27045:1 27054:3 27064:2 27074:1 27082:1 27087:1 27096:1 27100:5 27130:1 27131:1 27145:1 27150:1 27157:1 27164:2 27173:1 27178:1 27188:3 27196:1 27206:1 27224:1 27228:1 27230:2 27235:1 27236:1 27249:1 27251:3 27254:2 27258:3 27265:1 27266:2 27269:1 27271:2 27276:3 27287:1 27296:2 27297:1 27299:2 27311:1 27318:1 27320:1 27329:1 27347:7 27353:1 27365:4 27390:1 27392:1 27401:1 27405:2 27411:1 27418:1 27424:1 27448:2 27451:1 27466:1 27468:1 27472:1 27502:1 27504:1 27516:2 27540:1 27548:1 27556:1 27558:1 27615:1 27620:1 27658:3 27659:2 27662:1 27666:4 27670:2 27673:4 27675:1 27676:1 27689:1 27713:1 27718:1 27722:1 27727:3 27732:1 27734:1 27745:1 27764:1 27784:2 27802:2 27832:1 27858:1 27868:1 27874:1 27898:1 27899:1 27909:1 27912:1 27928:1 27945:1 27950:1 27953:1 27956:2 27969:13 27970:1 27974:1 27978:1 27981:1 27999:2 28008:6 28032:1 28060:1 28076:1 28080:2 28095:1 28105:1 28107:1 28109:1 28117:8 28123:2 28131:1 28134:1 28137:1 28151:1 28152:1 28165:10 28170:1 28177:1 28207:1 28212:1 28214:1 28222:1 28231:1 28243:2 28258:1 28283:1 28296:2 28375:1 28388:1 28392:29 28393:1 28413:1 28416:4 28417:1 28422:1 28423:5 28424:2 28435:1 28457:1 28485:3 28490:8 28491:1 28503:1 28509:1 28512:1 28522:1 28529:1 28545:1 28546:2 28584:1 28597:1 28610:1 28615:2 28634:1 28635:1 28647:1 28660:1 28669:3 28690:2 28701:1 28710:1 28753:2 28760:1 28775:1 28782:1 28785:1 28787:2 28796:2 28798:1 28814:1 28854:1 28859:2 28865:1 28875:2 28887:1 28894:2 28902:1 28903:1 28913:1 28928:1 28937:1 28940:1 28950:1 28954:1 28959:1 28964:1 28974:1 28976:1 28988:1 28999:1 29000:2 29003:1 29005:3 29027:1 29031:2 29042:6 29057:3 29062:2 29063:2 29073:25 29079:1 29100:1 29120:1 29128:1 29137:1 29139:1 29141:2 29146:2 29147:4 29183:1 29184:1 29194:2 29197:1 29223:1 29225:2 29236:1 29240:1
2 12:1 13:1 31:2 32:1 49:1 55:1 56:1 75:1 85:3 88:1 89:2 91:1 98:1 113:1 146:2 154:1 166:1 170:2 174:2 180:1 184:1 209:1 213:2 223:1 228:1 249:2 265:2 271:3 272:1 276:1 286:2 287:1 291:1 292:1 322:1 329:1 358:1 359:3 376:1 385:1 388:1 391:1 392:1 395:1 415:2 425:2 429:1 441:1 446:1 452:1 460:1 469:1 471:1 479:2 501:2 505:1 509:1 515:1 536:1 544:1 553:1 562:1 564:1 593:1 607:3 613:2 620:1 623:1 644:4 658:26 663:3 667:1 671:1 682:1 686:1 696:1 699:2 714:1 719:1 725:1 728:2 735:2 745:1 749:1 783:2 809:1 813:2 815:1 817:3 820:2 822:1 823:1 824:2 857:1 861:3 876:2 904:3 905:6 907:2 908:1 917:5 930:1 937:4 943:1 951:2 957:3 960:6 964:1 965:2 970:1 976:2 980:2 982:3 999:2 1003:1 1006:2 1016:2 1027:1 1029:2 1032:1 1036:1 1048:2 1050:1 1055:3 1056:1 1098:2 1099:1 1112:1 1146:1 1158:1 1160:3 1190:1 1211:1 1214:25 1220:1 1223:2 1224:2 1227:1 1229:3 1232:1 1245:1 1256:1 1258:2 1260:2 1266:1 1270:1 1275:1 1277:1 1279:2 1280:1 1281:1 1288:1 1290:1 1298:1 1302:1 1314:1 1316:1 1338:1 1354:1 1356:2 1380:2 1390:1 1393:1 1397:1 1402:2 1404:3 1420:1 1430:1 1444:1 1452:2 1459:1 1462:2 1475:1 1481:1 1499:1 1501:1 1502:2 1506:1 1510:6 1516:1 1528:1 1532:1 1540:1 1546:1 1548:1 1550:1 1576:2 1582:1 1598:1 1602:2 1615:1 1616:1 1631:1 1636:1 1637:1 1639:1 1647:2 1666:1 1672:1 1676:1 1677:3 1685:1 1690:1 1691:2 1705:1 1720:1 1728:1 1740:2 1741:1 1745:3 1757:1 1760:1 1776:1 1778:1 1779:1 1783:1 1795:1 1820:1 1827:1 1833:1 1838:1 1840:1 1842:1 1853:1 1866:1 1870:2 1871:2 1877:1 1878:1 1895:1 1897:1 1898:3 1901:1 1907:1 1918:1 1921:2 1930:1 1937:1 1941:2 1947:2 1957:2 1959:1 1976:1 1982:1 1993:1 2001:1 2022:4 2042:1 2045:1 2051:2 2053:1 2077:1 2085:1 2094:1 2118:2 2123:1 2140:1 2144:1 2145:1 2157:1 2161:1 2172:1 2176:1 2181:1 2196:8 2217:1 2235:2 2238:1 2239:1 2265:1 2269:1 2291:1 2299:1 2325:1 2329:1 2333:1 2334:1 2335:2 2336:4 2337:1 2338:2 2339:1 2341:1 2342:5 2347:6 2349:3 2352:5 2356:3 2359:1 2362:1 2364:1 2367:1 2369:4 2372:2 2375:1 2376:1 2379:1 2382:1 2383:1 2406:1 2421:2 2422:1 2430:3 2433:1 2439:1 2457:2 2460:1 2478:1 2479:1 2492:1 2494:2 2495:3 2503:3 2513:2 2514:4 2522:3 2523:1 2531:1 2533:1 2539:1 2550:3 2564:1 2571:1 2596:1 2603:2 2604:2 2610:1 2646:2 2663:1 2674:1 2680:1 2681:1 2730:1 2735:1 2736:2 2751:2 2758:2 2767:1 2773:1 2775:1 2777:1 2785:3 2787:1 2804:1 2809:1 2812:3 2813:2 2819:1 2822:3 2826:1 2833:1 2839:1 2841:1 2872:2 2877:1 2881:1 2883:5 2889:1 2892:2 2901:2 2904:1 2937:2 2949:1 2956:2 2982:12 2984:26 2986:1 2990:1 2991:2 2998:2 3002:1 3014:1 3018:1 3019:1 3023:4 3024:1 3029:1 3032:1 3039:6 3049:1 3053:2 3057:1 3067:1 3070:1 3091:2 3097:1 3100:1 3101:1 3127:1 3133:3 3139:1 3142:1 3169:3 3196:1 3219:1 3267:1 3281:1 3297:1 3301:1 3316:1 3337:1 3340:1 3351:1 3354:3 3360:1 3368:1 3393:1 3399:1 3401:2 3419:2 3482:1 3486:1 3502:1 3506:1 3521:1 3525:1 3527:1 3536:1 3540:1 3550:1 3552:1 3556:1 3564:1 3601:1 3604:1 3612:1 3627:1 3632:1 3642:1 3666:1 3684:1 3690:1 3697:1 3704:1 3715:1 3734:1 3758:1 3773:3 3774:2 3775:1 3779:2 3782:1 3831:2 3833:1 3872:1 3877:1 3884:3 3902:1 3907:1 3909:2 3915:2 3938:1 3940:1 3946:3 3964:1 3985:1 3990:25 3991:2 3998:1 4012:1 4049:1 4052:1 4056:1 4066:1 4072:2 4079:4 4081:2 4096:2 4102:1 4108:1 4113:2 4117:5 4118:2 4132:2 4171:1 4182:1 4196:1 4208:3 4216:1 4225:1 4231:1 4260:1 4262:1 4264:1 4267:1 4269:1 4272:1 4277:1 4293:1 4307:1 4309:2 4310:1 4312:2 4317:1 4319:3 4331:1 4357:1 4376:3 4402:1 4405:2 4407:1 4409:1 4415:1 4424:1 4432:2 4434:25 4435:1 4443:1 4446:1 4448:1 4452:4 4462:1 4466:1 4475:1 4477:1 4479:1 4527:2 4535:6 4550:1 4553:1 4554:1 4557:1 4564:1 4590:3 4604:2 4609:1 4610:1 4618:2 4622:2 4623:1 4629:1 4648:1 4668:7 4676:1 4698:1 4717:1 4744:1 4774:5 4790:1 4811:1 4812:1 4818:5 4826:1 4854:1 4863:1 4898:1 4902:1 4903:2 4908:2 4909:1 4916:1 4920:2 4931:1 4942:1 4943:3 4954:1 4974:1 4977:1 4983:1 4997:2 4998:1 5012:12 5013:2 5022:2 5025:1 5046:3 5053:2 5063:1 5087:2 5089:1 5138:3 5140:1 5143:2 5149:1 5159:4 5160:4 5161:2 5167:5 5173:1 5174:2 5175:3 5176:1 5183:1 5190:2 5192:5 5194:3 5195:1 5205:1 5230:1 5264:1 5268:2 5283:1 5361:1 5403:1 5427:1 5438:1 5439:2 5440:1 5462:1 5482:1 5485:1 5486:1 5496:1 5534:3 5549:1 5574:1 5577:2 5579:1 5583:1 5603:1 5606:1 5613:1 5624:1 5626:1 5630:3 5634:1 5690:1 5713:1 5716:1 5724:1 5729:1 5740:1 5741:1 5742:1 5762:2 5780:3 5784:1 5790:1 5792:1 5794:1 5800:1 5802:1 5807:1 5822:1 5833:1 5839:1 5841:1 5853:1 5896:1 5908:2 5921:1 5924:1 5926:1 5939:2 5968:3 6017:1 6027:1 6063:1 6064:1 6065:1 6076:2 6079:1 6092:1 6097:1 6118:1 6143:1 6149:1 6151:1 6168:1 6176:2 6182:2 6187:1 6195:1 6198:1 6203:1 6207:1 6208:2 6211:1 6227:1 6247:1 6255:1 6276:1 6294:1 6295:2 6296:1 6301:1 6302:1 6304:1 6307:1 6308:1 6311:1 6312:1 6313:1 6315:3 6317:1 6320:1 6324:1 6325:2 6345:1 6356:1 6388:1 6391:1 6399:1 6408:3 6410:2 6416:1 6428:2 6456:1 6479:2 6486:1 6500:1 6510:1 6523:5 6528:1 6533:1 6534:4 6536:1 6538:1 6539:1 6540:1 6543:2 6545:1 6546:1 6550:3 6552:6 6560:1 6563:1 6581:1 6595:1 6599:1 6600:2 6615:1 6619:1 6629:1 6657:1 6666:1 6667:1 6674:3 6679:3 6694:1 6720:1 6736:1 6744:1 6746:1 6749:1 6755:1 6763:1 6769:1 6772:1 6776:1 6785:1 6792:1 6795:2 6796:1 6810:2 6820:1 6831:2 6850:1 6853:1 6866:1 6872:1 6899:1 6901:1 6904:1 6908:3 6927:1 6939:1 6960:2 6962:1 6967:1 6974:1 6997:1 7030:1 7063:2 7077:1 7083:1 7101:1 7102:1 7114:1 7117:1 7130:1 7178:1 7184:1 7187:1 7192:1 7203:1 7217:6 7264:1 7269:1 7271:1 7277:1 7283:1 7287:2 7301:2 7319:1 7332:1 7369:2 7375:1 7398:1 7406:1 7409:1 7412:1 7413:2 7417:1 7423:1 7428:1 7431:1 7435:1 7442:1 7474:1 7485:1 7495:1 7496:2 7508:1 7522:1 7543:1 7562:1 7563:1 7571:1 7574:1 7582:1 7593:1 7596:6 7629:6 7632:1 7636:1 7663:1 7664:2 7679:1 7693:1 7707:1 7716:1 7718:1 7722:1 7725:1 7748:4 7749:1 7779:1 7787:1 7803:2 7815:10 7816:9 7821:1 7833:1 7834:1 7835:5 7864:3 7868:2 7871:1 7878:40 7882:1 7883:1 7886:2 7890:1 7891:1 7897:12 7900:3 7903:1 7908:1 7911:1 7932:1 7933:1 7936:1 7941:2 7949:1 7985:4 7996:2 8013:1 8014:1 8037:1 8039:2 8054:3 8065:1 8071:1 8075:3 8077:1 8083:1 8087:1 8105:1 8109:5 8119:1 8129:1 8159:1 8162:2 8189:1 8196:1 8249:1 8253:1 8286:1 8290:1 8300:1 8312:2 8348:1 8351:1 8364:1 8376:1 8377:26 8384:1 8392:1 8396:1 8402:1 8410:11 8411:3 8426:1 8428:2 8441:1 8443:1 8445:1 8449:2 8466:1 8475:1 8480:1 8492:30 8499:1 8501:1 8531:1 8561:1 8588:1 8596:1 8645:1 8657:1 8659:2 8667:1 8671:1 8674:2 8677:1 8683:1 8687:1 8693:4 8694:1 8713:1 8720:1 8725:1 8745:3 8746:1 8750:1 8760:2 8762:1 8763:1 8766:1 8768:1 8778:2 8779:2 8782:1 8783:1 8792:1 8812:1 8813:1 8822:1 8832:1 8836:1 8841:1 8845:1 8850:1 8862:3 8883:1 8915:1 8923:1 8928:1 8931:1 8987:3 8989:1 8991:1 9014:2 9052:1 9057:2 9059:1 9061:1 9069:1 9086:1 9090:3 9106:1 9110:1 9111:1 9112:1 9118:1 9129:3 9138:1 9139:1 9140:1 9184:1 9191:2 9196:1 9199:1 9204:2 9236:1 9238:5 9247:4 9256:1 9258:1 9300:1 9320:4 9343:2 9378:3 9382:2 9384:1 9391:1 9393:3 9394:1 9396:1 9400:1 9404:1 9406:2 9408:2 9415:1 9428:1 9429:1 9432:1 9435:1 9442:1 9445:1 9446:1 9447:2 9449:1 9456:1 9466:1 9472:1 9473:2 9483:4 9490:2 9496:2 9504:1 9506:1 9521:1 9525:1 9534:1 9543:1 9546:1 9558:1 9563:1 9564:2 9571:1 9580:1 9607:1 9610:1 9611:1 9616:2 9619:1 9622:1 9623:1 9624:1 9637:1 9641:1 9642:1 9660:1 9661:3 9675:1 9677:2 9678:7 9681:1 9694:1 9701:2 9703:1 9706:1 9715:1 9717:1 9719:3 9721:1 9723:1 9726:1 9738:1 9751:1 9752:1 9779:1 9782:1 9797:1 9802:1 9803:1 9804:2 9805:1 9841:1 9855:1 9856:1 9860:1 9887:1 9905:6 9914:1 9915:1 9916:1 9921:3 9924:4 9927:1 9936:1 9962:1 9987:1 10003:1 10016:1 10028:1 10029:1 10046:25 10055:1 10061:1 10069:1 10083:1 10092:1 10097:1 10102:1 10115:1 10117:1 10122:1 10131:2 10134:1 10138:1 10144:1 10170:3 10174:1 10177:2 10184:1 10188:2 10195:2 10220:1 10229:1 10233:1 10242:2 10243:1 10252:1 10260:1 10261:2 10266:1 10268:2 10280:4 10284:5 10297:2 10299:1 10322:4 10336:1 10337:1 10339:1 10350:1 10359:1 10362:1 10381:1 10383:2 10388:1 10393:1 10404:1 10405:1 10417:1 10426:6 10440:1 10464:1 10518:2 10522:1 10526:1 10542:4 10555:1 10564:2 10573:1 10575:2 10576:1 10582:1 10594:1 10604:1 10609:1 10619:1 10623:1 10624:4 10641:1 10664:3 10681:1 10691:1 10707:1 10725:1 10740:3 10745:1 10758:1 10760:5 10773:1 10786:2 10820:2 10834:1 10840:1 10842:2 10859:1 10860:4 10864:1 10867:4 10874:1 10882:1 10894:1 10907:2 10912:1 10914:1 10923:1 10929:6 10934:1 10942:1 10947:1 10955:2 10956:1 10976:1 10990:1 11005:1 11036:1 11065:1 11066:3 11083:1 11098:2 11100:1 11111:2 11114:3 11117:1 11124:1 11131:1 11143:3 11152:1 11158:1 11167:1 11170:1 11176:1 11178:1 11185:1 11195:1 11197:8 11200:1 11203:1 11215:1 11217:3 11219:3 11220:1 11231:1 11234:1 11237:1 11246:1 11264:1 11266:1 11276:6 11279:1 11285:1 11286:1 11293:1 11300:1 11303:2 11311:1 11320:1 11347:2 11373:1 11375:1 11383:1 11385:1 11390:1 11400:1 11404:3 11407:1 11437:1 11456:1 11464:2 11474:1 11475:1 11476:2 11483:1 11484:1 11487:1 11490:1 11502:1 11503:4 11505:1 11508:1 11510:1 11511:1 11518:1 11532:1 11535:2 11552:1 11571:3 11591:1 11609:1 11614:1 11617:1 11622:1 11627:1 11629:1 11636:6 11648:2 11649:2 11674:1 11679:1 11695:1 11702:1 11714:1 11732:2 11750:2 11770:1 11775:6 11797:1 11803:1 11812:2 11824:1 11827:1 11829:1 11834:1 11838:1 11839:5 11840:1 11845:2 11848:1 11851:4 11854:1 11871:1 11878:1 11881:2 11891:1 11895:2 11899:1 11900:5 11904:1 11907:1 11916:1 11930:1 11931:1 11936:2 11949:1 11979:1 11992:3 11995:1 11996:1 12003:4 12011:1 12039:1 12043:2 12054:1 12090:1 12092:1 12110:1 12139:1 12163:1 12164:1 12179:1 12193:1 12223:1 12235:1 12240:3 12261:3 12281:1 12283:1 12289:1 12311:1 12330:1 12337:1 12338:1 12339:2 12345:1 12364:1 12376:1 12383:1 12385:1 12406:1 12421:1 12431:1 12444:1 12455:1 12460:2 12461:4 12470:1 12483:1 12505:1 12510:1 12513:2 12522:1 12532:1 12563:1 12575:1 12588:1 12597:3 12599:1 12606:1 12612:1 12613:1 12635:1 12648:1 12650:1 12657:1 12664:1 12666:1 12722:1 12723:1 12746:1 12763:1 12767:1 12790:2 12792:26 12797:1 12800:1 12809:1 12813:4 12821:1 12859:6 12873:1 12884:2 12888:1 12902:1 12922:1 12927:1 12932:1 12964:1 12967:1 12969:1 12980:1 13001:1 13008:1 13020:1 13024:2 13032:1 13038:1 13086:1 13100:2 13111:1 13116:1 13132:1 13141:2 13145:1 13163:1 13174:1 13180:1 13182:1 13183:1 13217:1 13229:1 13239:1 13257:1 13262:1 13265:1 13268:1 13269:1 13280:1 13286:11 13291:2 13306:1 13307:1 13313:2 13326:1 13340:1 13384:1 13400:1 13412:1 13417:1 13418:1 13419:2 13424:2 13427:3 13430:5 13437:1 13480:1 13482:1 13491:11 13495:1 13502:1 13584:1 13585:2 13595:1 13626:1 13639:3 13641:3 13647:2 13665:1 13673:1 13675:1 13676:1 13695:2 13700:2 13705:1 13707:1 13713:1 13716:1 13717:1 13729:2 13732:1 13747:1 13766:1 13770:2 13772:2 13773:1 13775:1 13780:1 13782:8 13783:1 13784:1 13786:2 13804:1 13805:1 13806:1 13808:1 13809:1 13814:5 13821:1 13827:2 13859:1 13868:1 13869:1 13873:1 13901:1 13910:1 13928:1 13935:1 13941:1 13951:10 13953:1 13955:2 13963:1 13974:1 13980:1 13988:1 13991:1 13998:1 14001:1 14012:1 14028:1 14030:2 14038:4 14052:1 14055:1 14057:3 14059:1 14069:9 14072:4 14096:1 14107:1 14147:2 14156:1 14177:4 14179:1 14202:1 14232:1 14241:1 14259:1 14261:2 14273:1 14275:1 14278:1 14308:2 14314:1 14361:4 14393:1 14422:1 14426:1 14449:1 14451:1 14454:1 14460:2 14466:2 14468:3 14485:2 14486:1 14497:1 14498:1 14506:2 14516:1 14541:1 14555:1 14559:1 14560:1 14574:1 14575:1 14576:1 14590:1 14592:2 14607:1 14613:1 14615:1 14617:1 14621:1 14622:1 14625:1 14627:1 14629:1 14634:1 14638:1 14641:1 14643:1 14652:1 14653:1 14657:1 14659:1 14664:1 14670:2 14684:1 14688:1 14699:26 14705:3 14708:1 14709:1 14714:1 14721:1 14728:1 14736:1 14786:1 14789:1 14792:5 14800:1 14801:1 14806:2 14827:1 14832:1 14847:3 14850:1 14852:1 14863:1 14869:1 14870:1 14887:2 14890:1 14900:1 14902:1 14939:1 14941:1 14944:1 14979:1 14993:2 15000:2 15003:1 15010:1 15016:1 15031:1 15054:1 15060:1 15069:1 15070:2 15072:1 15080:1 15087:1 15100:1 15104:2 15105:1 15106:1 15109:7 15113:1 15169:1 15193:2 15197:1 15208:1 15218:1 15223:1 15237:2 15238:1 15245:2 15247:3 15257:1 15258:1 15278:1 15299:1 15315:1 15319:1 15322:1 15340:2 15379:2 15380:1 15386:1 15396:1 15409:2 15433:1 15452:1 15458:1 15462:2 15465:1 15478:1 15482:1 15488:1 15491:1 15506:1 15521:1 15526:1 15542:1 15555:1 15556:2 15557:3 15584:1 15590:1 15608:4 15610:1 15612:1 15616:2 15633:1 15653:1 15674:1 15678:1 15690:1 15718:1 15730:1 15738:1 15742:2 15757:1 15762:4 15778:1 15779:1 15783:1 15796:5 15802:3 15805:1 15818:3 15823:1 15827:1 15835:3 15844:1 15888:1 15890:1 15897:3 15899:1 15921:4 15923:1 15931:1 15944:1 15946:1 15951:1 15960:1 15961:3 15971:1 15973:1 16006:1 16023:1 16025:1 16031:1 16038:1 16051:1 16057:1 16060:12 16062:2 16067:1 16096:2 16098:3 16100:1 16105:2 16133:2 16139:2 16140:1 16142:1 16143:2 16165:9 16178:1 16186:1 16200:3 16203:1 16239:1 16250:1 16252:1 16254:1 16262:1 16264:1 16271:1 16285:4 16286:2 16291:3 16292:1 16299:2 16300:1 16301:1 16304:1 16321:1 16333:1 16357:2 16380:1 16387:1 16392:1 16404:1 16413:1 16416:1 16418:1 16419:1 16440:1 16448:1 16452:1 16455:1 16457:1 16468:1 16476:1 16484:1 16510:1 16522:1 16523:1 16524:2 16527:1 16579:1 16604:2 16613:1 16617:1 16631:2 16644:1 16646:3 16647:1 16649:1 16658:1 16679:1 16687:1 16689:1 16692:1 16712:1 16714:1 16723:1 16725:2 16751:1 16757:1 16769:1 16773:3 16776:1 16782:1 16797:1 16800:2 16810:1 16811:2 16822:1 16878:1 16881:1 16899:1 16912:1 16926:33 16932:1 16933:1 16934:1 16949:1 16951:1 16963:1 16966:1 16967:3 16998:1 17020:1 17028:1 17030:1 17038:1 17042:1 17047:1 17060:1 17068:2 17072:2 17083:1 17103:2 17132:1 17138:1 17143:1 17144:1 17160:1 17166:2 17181:1 17184:1 17199:1 17207:1 17208:1 17213:1 17234:1 17236:2 17240:1 17241:1 17250:1 17255:1 17281:1 17284:1 17329:1 17332:1 17359:1 17361:2 17375:1 17380:1 17383:1 17384:1 17393:2 17395:1 17406:1 17424:1 17436:1 17440:1 17443:1 17450:1 17452:1 17455:1 17457:1 17459:2 17465:2 17475:1 17484:1 17535:2 17545:1 17549:2 17555:2 17560:1 17579:1 17604:1 17620:1 17623:1 17632:4 17634:1 17637:2 17639:1 17645:1 17649:1 17662:1 17664:1 17671:2 17672:1 17683:1 17689:1 17692:1 17711:2 17727:2 17731:2 17758:4 17766:4 17787:2 17812:1 17817:1 17844:1 17855:5 17859:1 17860:2 17884:3 17909:2 17926:1 17929:2 17930:1 17936:2 17937:1 17945:1 17964:1 17980:1 17986:2 18012:1 18013:4 18018:1 18019:1 18026:1 18030:1 18058:1 18076:1 18098:1 18100:1 18123:1 18142:1 18146:3 18204:1 18206:2 18210:1 18223:1 18234:2 18245:1 18269:1 18300:6 18310:1 18316:1 18332:1 18340:2 18370:1 18374:1 18377:4 18393:1 18395:1 18417:1 18419:1 18431:1 18447:1 18450:1 18462:1 18499:1 18504:1 18507:1 18516:1894 18527:1 18531:1 18538:2 18551:1 18555:1 18566:1 18587:1 18597:1 18604:1 18638:3 18648:1 18651:2 18653:1 18678:1 18702:1 18707:1 18712:1 18724:1 18775:1 18780:1 18802:1 18832:1 18850:1 18859:1 18863:1 18864:1 18894:1 18901:1 18902:1 18933:1 18952:1 18969:1 18976:2 18978:1 18982:1 18986:1 19014:3 19016:2 19034:1 19037:1 19083:1 19085:4 19116:4 19120:1 19128:1 19137:1 19175:1 19178:1 19184:1 19192:1 19198:1 19219:1 19223:1 19230:1 19239:1 19245:1 19253:1 19257:1 19259:1 19268:1 19276:1 19282:5 19283:3 19290:1 19315:1 19318:4 19342:2 19362:1 19377:16 19384:1 19399:2 19409:1 19420:2 19421:1 19427:1 19428:1 19447:1 19451:4 19452:1 19454:1 19461:2 19469:1 19477:1 19481:2 19490:3 19491:1 19500:1 19509:1 19530:2 19558:1 19561:1 19573:1 19574:1 19584:3 19589:1 19603:1 19609:2 19611:1 19638:1 19653:2 19656:1 19658:1 19692:1 19697:1 19709:1 19713:1 19715:1 19726:1 19728:1 19732:1 19737:4 19768:1 19793:1 19813:1 19819:1 19820:1 19822:2 19823:1 19829:1 19835:1 19847:1 19851:2 19861:1 19866:1 19881:1 19896:1 19927:2 19929:6 19937:1 19940:1 19945:1 19950:1 19957:1 19962:1 19972:1 19986:1 19992:1 19995:2 20000:1 20001:3 20002:4 20005:1 20021:1 20029:2 20030:3 20031:1 20033:1 20042:1 20043:1 20051:4 20079:2 20099:2 20103:1 20109:2 20117:1 20123:3 20132:1 20144:2 20156:1 20162:1 20185:1 20199:1 20211:4 20223:2 20244:1 20258:1 20259:1 20268:1 20285:1 20311:1 20338:1 20387:1 20390:1 20401:1 20408:1 20451:5 20460:1 20483:1 20484:2 20495:1 20499:2 20500:1 20513:3 20541:1 20555:1 20578:1 20591:1 20601:1 20602:2 20605:1 20623:1 20630:2 20653:1 20661:1 20664:1 20668:1 20674:1 20691:2 20692:2 20697:1 20702:2 20703:1 20704:2 20711:1 20720:1 20725:1 20748:1 20754:1 20762:2 20764:2 20767:1 20773:3 20788:1 20789:1 20798:1 20799:1 20808:1 20810:2 20828:1 20829:1 20833:1 20840:1 20842:2 20848:1 20853:3 20862:2 20863:1 20866:1 20869:3 20870:2 20878:2 20886:1 20892:3 20925:1 20940:1 20942:4 20945:1 20953:2 20958:1 20994:1 20996:1 21001:2 21004:2 21018:1 21021:1 21026:1 21037:2 21057:1 21061:1 21071:2 21078:1 21114:1 21122:1 21132:1 21137:1 21151:1 21153:1 21155:1 21171:1 21185:1 21190:1 21196:1 21202:1 21204:1 21206:3 21219:2 21233:1 21237:3 21257:1 21271:2 21276:1 21285:1 21286:1 21289:1 21308:1 21310:1 21311:1 21313:3 21332:1 21341:1 21351:2 21359:1 21363:1 21364:2 21369:2 21382:1 21397:1 21398:1 21411:1 21414:1 21415:1 21436:1 21442:1 21449:1 21455:1 21464:3 21471:1 21473:1 21492:1 21493:1 21508:3 21517:1 21530:1 21535:1 21543:1 21544:1 21558:3 21562:1 21570:4 21574:1 21577:1 21610:1 21625:5 21658:1 21663:1 21695:1 21696:1 21699:1 21705:4 21711:1 21712:1 21714:1 21715:3 21719:1 21728:2 21739:1 21748:1 21763:1 21764:7 21775:1 21791:1 21835:1 21837:1 21843:1 21845:1 21879:2 21881:4 21884:2 21887:1 21895:1 21896:1 21898:2 21906:1 21908:2 21915:1 21918:1 21919:1 21923:4 21924:4 21925:1 21936:1 21937:1 21939:1 21947:1 21955:1 21975:1 21997:1 22000:1 22015:1 22026:2 22028:1 22047:2 22058:2 22062:1 22066:4 22082:2 22095:1 22114:1 22128:3 22133:1 22139:1 22144:1 22151:1 22161:3 22170:1 22175:1 22179:2 22192:1 22199:1 22214:1 22219:2 22235:1 22242:2 22248:11 22262:1 22267:2 22275:1 22310:9 22312:2 22316:1 22321:1 22362:1 22365:4 22368:2 22370:1 22379:2 22383:1 22416:1 22418:1 22425:7 22439:1 22456:3 22462:1 22471:1 22475:1 22479:1 22481:1 22490:1 22492:2 22516:1 22533:1 22536:1 22542:1 22543:2 22555:5 22566:2 22582:1 22583:1 22599:3 22640:1 22665:1 22671:1 22676:1 22688:1 22691:1 22694:25 22709:1 22713:2 22714:3 22719:1 22721:1 22727:1 22752:2 22757:3 22759:1 22760:1 22770:1 22771:1 22781:1 22805:1 22809:1 22816:1 22838:1 22841:1 22842:5 22852:2 22861:2 22866:1 22871:4 22874:1 22899:1 22901:1 22986:1 22990:1 23000:3 23008:1 23019:1 23060:1 23074:1 23075:1 23079:1 23083:1 23093:1 23095:2 23103:1 23108:3 23111:1 23115:1 23147:26 23168:3 23169:1 23186:1 23199:1 23202:1 23223:1 23227:1 23228:1 23235:2 23242:2 23247:6 23276:1 23283:1 23289:1 23307:1 23315:1 23321:3 23325:2 23329:1 23350:1 23358:1 23371:1 23379:2 23381:2 23408:1 23460:1 23487:1 23506:1 23508:1 23509:2 23525:1 23543:1 23593:1 23596:1 23610:1 23617:2 23622:1 23641:2 23651:2 23664:2 23670:1 23693:1 23699:3 23740:2 23745:1 23752:1 23767:3 23772:1 23775:1 23785:2 23786:1 23802:1 23817:1 23825:1 23832:1 23838:1 23857:1 23868:1 23890:1 23891:1 23895:1 23912:1 23915:2 23932:1 23941:1 23956:1 23957:3 23978:1 23982:2 24001:1 24008:2 24013:1 24028:2 24065:1 24067:1 24069:2 24075:2 24076:1 24080:2 24092:2 24093:2 24097:3 24105:1 24114:1 24140:1 24144:3 24147:1 24186:7 24191:1 24213:1 24217:1 24220:1 24225:1 24232:1 24235:1 24270:1 24275:1 24286:1 24291:4 24326:1 24334:2 24366:1 24379:1 24384:1 24388:2 24393:1 24414:1 24420:1 24427:1 24435:1 24444:1 24450:1 24480:3 24484:2 24492:1 24493:1 24495:2 24499:4 24502:1 24505:2 24524:1 24536:2 24552:3 24572:1 24576:2 24577:3 24612:2 24614:1 24620:1 24623:1 24626:1 24628:4 24631:1 24645:1 24646:1 24653:1 24654:1 24656:1 24661:1 24675:1 24676:1 24687:1 24689:1 24699:1 24707:1 24711:1 24757:1 24766:1 24779:1 24797:1 24802:3 24803:1 24812:1 24815:1 24838:1 24854:4 24858:2 24859:2 24863:1 24871:2 24911:1 24919:1 24922:2 24943:1 24971:1 24974:1 24979:1 25025:1 25048:2 25064:1 25069:1 25072:1 25075:2 25077:6 25088:1 25097:5 25100:3 25107:1 25132:2 25133:1 25134:1 25166:2 25173:2 25181:1 25192:2 25199:1 25205:2 25212:1 25215:1 25222:4 25227:1 25236:1 25238:1 25245:1 25248:1 25255:1 25271:1 25277:4 25279:1 25281:2 25283:1 25284:1 25306:1 25309:1 25310:1 25313:1 25328:2 25351:1 25362:1 25378:3 25383:1 25384:1 25387:1 25402:1 25408:1 25415:1 25423:2 25440:2 25451:3 25454:2 25461:1 25467:1 25485:4 25499:2 25511:2 25516:3 25542:1 25546:5 25552:1 25554:1 25565:1 25573:1 25576:11 25585:2 25599:1 25617:1 25628:1 25636:1 25693:1 25705:1 25707:1 25710:2 25713:3 25718:1 25732:1 25740:1 25741:1 25760:1 25766:1 25777:2 25778:1 25809:1 25812:1 25823:1 25832:1 25844:1 25848:1 25850:2 25861:1 25874:1 25876:1 25884:2 25885:1 25895:1 25920:3 25929:1 25933:1 25944:2 25955:1 25956:1 25964:1 25966:1 25988:1 25989:1 25994:1 25995:4 25998:1 26005:2 26018:2 26019:1 26022:8 26023:1 26042:2 26054:1 26061:1 26065:1 26074:1 26093:5 26113:1 26119:1 26122:1 26125:1 26128:1 26130:1 26145:1 26156:1 26182:1 26202:2 26231:1 26253:3 26268:1 26272:1 26277:1 26278:1 26283:1 26286:1 26333:2 26336:1 26354:1 26356:1 26399:1 26401:2 26428:1 26429:2 26440:2 26450:1 26465:1 26484:1 26489:1 26498:1 26509:1 26525:1 26536:1 26542:1 26546:1 26588:1 26597:1 26609:2 26616:1 26626:1 26630:2 26632:6 26653:1 26654:3 26657:1 26661:2 26663:1 26675:4 26685:1 26691:1 26692:1 26703:3 26712:1 26714:2 26734:1 26743:5 26744:1 26746:2 26753:1 26754:1 26757:1 26764:2 26774:1 26778:3 26789:3 26794:2 26796:1 26799:1 26813:1 26818:1 26847:1 26851:1 26866:1 26870:1 26875:1 26878:2 26884:1 26889:1 26894:1 26897:3 26899:1 26901:1 26911:1 26915:1 26918:4 26923:2 26930:1 26931:1 26932:1 26945:2 26968:1 26971:2 26979:1 26991:1 26994:1 27035:1 27043:1 27045:1 27054:3 27064:2 27074:1 27082:1 27087:1 27096:1 27100:5 27130:1 27131:1 27145:1 27150:1 27157:1 27164:2 27173:1 27176:1 27178:1 27188:3 27196:1 27206:1 27224:1 27228:1 27230:2 27235:1 27236:1 27249:1 27251:3 27254:2 27258:3 27265:1 27266:2 27269:1 27271:2 27276:3 27287:1 27296:2 27297:1 27299:2 27311:1 27318:1 27320:1 27329:1 27347:7 27353:1 27365:4 27390:1 27392:1 27401:1 27405:2 27411:1 27418:1 27424:1 27426:1 27448:2 27451:1 27466:1 27468:1 27472:1 27502:1 27504:1 27516:2 27540:1 27548:1 27556:1 27558:1 27615:1 27620:1 27658:3 27659:2 27662:1 27666:4 27670:2 27673:5 27675:1 27676:1 27689:1 27713:1 27718:1 27722:1 27727:3 27732:1 27734:1 27745:1 27764:1 27784:2 27802:2 27832:1 27858:1 27868:1 27874:1 27898:1 27899:1 27909:1 27912:1 27928:1 27945:1 27950:1 27953:1 27956:2 27969:13 27970:1 27974:1 27978:1 27981:1 27993:1 27999:2 28008:6 28032:1 28060:1 28076:1 28080:3 28095:1 28105:1 28107:1 28109:1 28117:8 28123:2 28131:1 28134:1 28137:1 28151:1 28152:1 28165:11 28170:1 28177:1 28207:1 28212:2 28214:1 28222:1 28231:1 28243:2 28258:1 28283:1 28296:2 28375:1 28388:1 28392:30 28393:1 28413:1 28416:4 28417:1 28422:1 28423:5 28424:2 28435:1 28457:1 28485:3 28490:8 28491:1 28503:1 28509:1 28512:1 28515:1 28522:1 28529:1 28545:1 28546:2 28584:1 28597:1 28610:1 28615:2 28634:1 28635:1 28647:1 28660:1 28669:4 28690:2 28701:1 28710:1 28753:3 28758:1 28760:1 28775:1 28782:1 28785:1 28787:2 28796:2 28798:1 28803:2 28814:1 28852:1 28854:1 28857:1 28859:2 28865:1 28875:2 28887:1 28894:2 28902:1 28903:1 28913:1 28928:1 28937:1 28940:1 28950:1 28954:1 28959:1 28964:1 28974:1 28976:1 28988:1 28999:1 29000:3 29003:2 29005:3 29024:1 29027:1 29031:2 29042:6 29057:3 29062:2 29063:2 29069:1 29073:26 29079:2 29100:1 29120:1 29128:1 29137:1 29139:1 29141:2 29146:2 29147:4 29176:1 29183:1 29184:1 29194:2 29197:1 29223:1 29225:2 29236:1 29240:1
2 12:1 13:1 31:2 32:1 41:1 49:1 52:1 55:1 56:1 75:1 85:3 88:1 89:2 91:1 98:1 106:1 113:1 146:2 154:1 166:1 170:2 174:2 180:1 184:1 193:1 209:1 213:2 223:1 227:1 228:1 249:2 265:2 271:4 272:1 276:1 286:2 287:1 291:1 292:1 322:1 329:1 358:1 359:3 375:1 376:1 385:1 388:1 391:1 392:1 395:1 415:2 425:2 429:1 441:1 446:2 452:1 460:1 469:1 471:1 479:2 501:2 505:1 509:1 515:1 536:1 544:1 552:1 553:1 562:1 564:1 593:1 607:3 613:2 620:1 623:1 644:6 658:27 663:3 667:1 670:1 671:1 682:1 686:1 696:1 699:2 714:1 719:1 725:1 728:2 735:2 745:1 749:1 783:2 809:1 813:2 815:1 817:3 820:2 822:1 823:1 824:2 838:1 857:1 861:3 876:2 894:1 904:3 905:6 907:2 908:1 917:5 930:1 937:4 943:1 951:2 957:3 960:6 964:1 965:2 970:1 976:2 980:2 982:3 999:2 1003:1 1006:2 1016:2 1027:1 1029:2 1032:1 1036:1 1048:2 1050:1 1055:3 1056:1 1098:2 1099:1 1112:1 1137:1 1146:1 1158:1 1160:3 1190:1 1211:1 1214:26 1220:1 1223:2 1224:2 1227:1 1229:3 1232:1 1245:1 1256:1 1258:2 1260:2 1266:1 1270:1 1275:1 1277:1 1279:2 1280:1 1281:1 1288:1 1290:1 1298:1 1302:1 1314:1 1316:1 1338:1 1354:1 1356:2 1380:3 1390:1 1393:1 1397:1 1402:2 1404:4 1420:1 1430:1 1444:1 1452:3 1459:1 1462:2 1475:1 1481:1 1499:1 1501:1 1502:3 1506:1 1510:7 1516:1 1517:1 1528:1 1532:1 1540:1 1546:1 1548:1 1550:1 1576:2 1582:1 1598:1 1602:3 1615:1 1616:1 1631:1 1636:1 1637:1 1639:1 1647:2 1650:1 1666:1 1672:1 1676:1 1677:4 1685:1 1690:1 1691:2 1705:1 1720:1 1728:1 1740:2 1741:1 1745:3 1757:1 1760:1 1776:1 1778:1 1779:1 1783:1 1795:1 1820:1 1827:1 1833:1 1838:1 1840:1 1842:1 1853:1 1866:1 1870:2 1871:2 1877:1 1878:1 1895:1 1897:1 1898:3 1901:1 1907:1 1913:1 1918:1 1921:2 1930:1 1937:1 1941:2 1947:2 1957:2 1959:1 1976:1 1982:1 1992:1 1993:1 2001:1 2022:5 2042:1 2045:1 2048:1 2051:2 2053:1 2077:1 2085:1 2094:1 2118:2 2123:1 2140:1 2144:1 2145:1 2157:1 2161:1 2172:1 2176:1 2181:1 2196:8 2217:1 2235:2 2238:1 2239:1 2265:1 2269:1 2291:1 2299:1 2325:1 2329:1 2333:1 2334:1 2335:2 2336:4 2337:1 2338:2 2339:1 2341:1 2342:5 2347:6 2349:3 2352:5 2356:3 2359:1 2362:1 2364:1 2367:1 2369:4 2372:2 2375:1 2376:1 2379:1 2382:1 2383:1 2406:1 2421:2 2422:1 2430:3 2433:1 2439:1 2457:2 2460:1 2478:1 2479:1 2492:1 2494:3 2495:3 2503:3 2513:2 2514:4 2522:3 2523:1 2531:1 2533:1 2539:1 2550:3 2564:1 2571:1 2596:1 2603:2 2604:2 2610:1 2646:2 2663:1 2674:1 2680:1 2681:1 2730:1 2735:1 2736:2 2751:2 2758:2 2767:1 2773:1 2775:1 2777:1 2785:3 2787:1 2804:1 2809:1 2812:3 2813:2 2819:1 2822:3 2826:1 2833:1 2839:1 2841:1 2872:2 2877:1 2881:1 2883:5 2889:1 2892:2 2901:2 2904:1 2937:2 2940:1 2949:1 2956:2 2982:12 2984:27 2986:1 2990:1 2991:2 2998:2 3002:1 3014:1 3018:1 3019:1 3023:4 3024:1 3029:1 3032:1 3039:6 3049:1 3053:2 3057:1 3067:1 3070:1 3091:2 3097:1 3100:1 3101:1 3127:1 3133:3 3139:1 3142:1 3169:3 3196:1 3219:1 3267:1 3278:2 3281:1 3297:1 3301:1 3316:1 3337:1 3340:1 3341:1 3351:1 3354:3 3360:1 3368:2 3393:1 3399:1 3401:2 3419:2 3445:1 3482:1 3486:1 3502:1 3506:1 3521:1 3525:1 3527:1 3536:1 3540:1 3550:1 3552:1 3556:1 3564:1 3601:1 3604:1 3612:1 3627:1 3632:1 3642:1 3666:1 3684:1 3690:1 3697:1 3704:1 3715:1 3734:1 3758:1 3773:3 3774:2 3775:1 3779:2 3782:1 3831:2 3833:1 3867:1 3872:1 3877:1 3884:3 3902:1 3907:1 3909:2 3915:2 3936:1 3938:1 3940:1 3946:3 3964:1 3985:1 3990:26 3991:2 3998:1 4012:1 4049:1 4052:1 4056:1 4066:1 4072:2 4079:4 4081:2 4096:2 4102:1 4108:1 4113:3 4117:5 4118:2 4132:2 4171:1 4182:1 4196:1 4208:3 4216:1 4225:1 4231:1 4258:1 4260:1 4262:1 4264:1 4267:1 4269:1 4272:1 4277:1 4293:1 4307:1 4309:2 4310:1 4312:3 4317:1 4319:3 4331:1 4357:1 4376:3 4402:1 4405:2 4407:1 4409:1 4415:1 4424:1 4432:2 4434:26 4435:1 4443:1 4446:1 4448:1 4452:4 4462:1 4466:1 4475:1 4477:1 4479:1 4527:2 4535:6 4550:1 4553:1 4554:1 4557:1 4564:1 4590:3 4604:2 4609:1 4610:1 4618:2 4622:2 4623:1 4629:1 4648:1 4668:7 4676:1 4698:2 4717:1 4744:1 4774:5 4790:1 4796:1 4811:1 4812:1 4818:5 4826:1 4854:1 4863:1 4898:1 4902:1 4903:2 4908:2 4909:1 4916:1 4920:2 4931:1 4942:1 4943:3 4954:1 4974:1 4977:1 4983:1 4997:2 4998:1 5012:13 5013:2 5022:2 5025:1 5046:4 5053:2 5063:1 5087:2 5089:1 5138:3 5140:1 5143:2 5149:1 5159:4 5160:4 5161:2 5167:5 5173:1 5174:2 5175:3 5176:1 5183:1 5190:2 5192:5 5194:3 5195:1 5205:1 5230:1 5264:1 5268:2 5283:1 5324:1 5342:1 5361:1 5403:1 5427:1 5438:1 5439:2 5440:1 5462:1 5482:1 5485:1 5486:1 5496:1 5533:1 5534:3 5549:1 5574:1 5577:2 5579:1 5583:1 5603:1 5606:1 5613:1 5624:1 5626:1 5630:3 5634:1 5690:1 5712:1 5713:1 5716:1 5723:1 5724:1 5729:1 5740:1 5741:1 5742:1 5762:2 5780:4 5784:1 5790:1 5792:1 5794:1 5800:1 5802:1 5807:1 5822:1 5833:1 5839:1 5841:1 5853:1 5896:1 5908:2 5921:1 5924:1 5926:2 5939:2 5968:3 6017:1 6027:1 6034:1 6043:1 6063:1 6064:1 6065:1 6076:3 6079:1 6092:1 6097:1 6118:1 6121:1 6143:1 6149:1 6151:1 6168:2 6176:2 6182:2 6187:1 6195:1 6198:1 6203:1 6207:1 6208:2 6211:1 6227:1 6247:1 6255:1 6276:1 6294:1 6295:2 6296:1 6301:1 6302:1 6304:1 6307:1 6308:1 6311:1 6312:1 6313:1 6315:3 6317:1 6320:1 6324:2 6325:2 6326:1 6345:1 6356:1 6388:1 6391:1 6399:1 6408:3 6410:2 6416:1 6428:2 6456:1 6479:2 6486:1 6500:1 6510:1 6523:5 6528:1 6533:1 6534:4 6536:1 6538:1 6539:1 6540:1 6543:2 6545:2 6546:1 6547:1 6550:3 6552:6 6553:1 6560:1 6563:1 6581:1 6595:1 6599:1 6600:2 6615:1 6619:1 6629:1 6657:1 6666:1 6667:1 6674:3 6679:3 6694:1 6720:1 6736:1 6744:1 6746:1 6749:1 6755:1 6763:1 6769:1 6772:1 6776:1 6785:1 6792:1 6795:2 6796:1 6810:2 6820:1 6831:2 6850:1 6853:1 6866:1 6872:1 6899:1 6901:1 6904:1 6908:3 6927:1 6939:1 6960:2 6962:1 6967:1 6974:1 6997:1 7030:1 7040:1 7063:2 7077:1 7083:1 7101:1 7102:1 7114:1 7117:1 7130:1 7178:1 7184:1 7187:1 7192:1 7203:1 7217:6 7264:1 7269:1 7271:1 7277:1 7283:1 7287:2 7301:2 7319:1 7332:1 7346:1 7369:2 7375:1 7398:1 7406:1 7409:1 7412:1 7413:2 7417:1 7423:1 7428:1 7431:1 7435:1 7442:1 7474:1 7485:1 7495:1 7496:2 7508:1 7522:1 7540:1 7543:1 7562:1 7563:1 7571:1 7574:1 7582:1 7593:1 7596:6 7629:6 7632:1 7636:1 7663:1 7664:2 7679:1 7693:1 7707:1 7716:1 7718:1 7722:1 7725:1 7748:4 7749:1 7779:1 7787:1 7803:2 7815:10 7816:9 7821:1 7833:1 7834:1 7835:5 7864:3 7868:3 7871:1 7878:40 7882:1 7883:1 7886:2 7890:1 7891:1 7897:12 7900:3 7903:1 7908:1 7911:1 7932:1 7933:1 7936:1 7941:2 7949:1 7985:4 7996:2 8013:1 8014:1 8037:1 8039:2 8054:3 8065:1 8071:1 8075:3 8077:1 8083:1 8087:1 8105:1 8109:5 8119:1 8129:1 8159:1 8162:2 8189:1 8196:1 8249:1 8253:1 8286:1 8290:1 8300:1 8312:2 8348:1 8351:1 8364:1 8376:1 8377:27 8384:1 8392:1 8396:1 8402:1 8410:12 8411:3 8426:1 8428:2 8441:1 8443:1 8445:1 8447:1 8449:2 8466:1 8475:1 8480:1 8492:33 8499:1 8501:1 8531:1 8561:1 8588:1 8596:1 8605:1 8645:1 8657:1 8659:2 8667:1 8671:1 8674:2 8677:1 8683:1 8687:1 8693:4 8694:1 8713:1 8720:1 8725:1 8745:3 8746:1 8750:1 8760:2 8762:1 8763:1 8766:1 8768:1 8778:2 8779:2 8782:1 8783:1 8792:1 8812:1 8813:1 8822:1 8832:1 8836:1 8841:1 8845:1 8850:1 8859:1 8862:3 8883:1 8915:1 8923:1 8928:1 8931:2 8987:3 8989:1 8991:1 9014:2 9052:1 9057:2 9059:1 9061:1 9069:1 9086:1 9090:3 9106:1 9110:1 9111:1 9112:2 9118:1 9129:3 9138:1 9139:1 9140:1 9184:1 9191:2 9196:1 9199:1 9204:2 9236:1 9238:5 9247:4 9256:1 9258:1 9300:1 9320:4 9343:3 9378:3 9382:2 9384:1 9391:1 9393:3 9394:1 9396:1 9400:1 9404:1 9406:2 9408:2 9415:1 9428:1 9429:1 9432:1 9435:1 9442:1 9445:1 9446:1 9447:2 9449:1 9456:1 9466:1 9472:1 9473:3 9483:6 9490:2 9496:2 9504:1 9506:1 9521:1 9525:1 9534:1 9543:1 9546:1 9558:1 9563:1 9564:2 9571:1 9580:1 9607:1 9610:1 9611:1 9616:2 9619:1 9622:1 9623:1 9624:1 9637:1 9641:1 9642:1 9653:1 9658:1 9660:1 9661:4 9675:1 9677:2 9678:8 9681:1 9689:1 9694:1 9701:2 9703:1 9706:1 9715:1 9717:1 9719:3 9721:1 9723:1 9726:1 9738:1 9751:1 9752:1 9779:1 9782:1 9797:1 9802:1 9803:1 9804:2 9805:1 9828:1 9841:1 9855:1 9856:1 9860:1 9887:1 9905:6 9914:1 9915:1 9916:1 9921:3 9924:4 9927:1 9936:1 9962:1 9987:1 10003:1 10016:1 10028:1 10029:1 10046:26 10055:1 10061:1 10069:1 10083:1 10092:1 10097:1 10102:1 10115:1 10117:1 10122:1 10131:2 10134:1 10138:1 10144:1 10170:3 10174:1 10177:2 10184:1 10188:2 10195:2 10220:1 10229:1 10233:1 10242:2 10243:1 10252:1 10260:1 10261:2 10266:1 10268:2 10280:4 10284:5 10297:2 10299:1 10322:4 10336:1 10337:1 10339:1 10350:1 10359:1 10362:1 10381:1 10383:2 10388:1 10393:1 10404:1 10405:1 10417:1 10426:6 10440:1 10464:1 10518:2 10522:1 10526:1 10542:4 10555:1 10564:2 10573:1 10575:2 10576:1 10582:1 10594:1 10604:1 10609:1 10619:1 10623:1 10624:5 10641:1 10664:3 10681:1 10691:1 10707:1 10725:1 10740:4 10745:1 10758:1 10760:5 10773:1 10786:2 10820:2 10834:1 10840:1 10842:2 10859:1 10860:4 10864:1 10867:4 10874:1 10882:1 10894:1 10907:2 10912:1 10914:1 10923:1 10929:6 10934:1 10942:1 10947:1 10955:2 10956:1 10976:1 10990:1 11005:1 11036:1 11065:1 11066:4 11083:1 11098:2 11100:1 11111:2 11114:3 11117:2 11124:1 11131:1 11143:4 11152:1 11158:1 11167:1 11170:1 11176:1 11178:1 11185:1 11195:1 11197:8 11200:1 11203:1 11215:1 11217:3 11219:3 11220:1 11231:1 11234:2 11237:1 11246:1 11264:1 11266:1 11276:6 11279:1 11283:1 11285:1 11286:1 11293:1 11300:1 11303:2 11311:1 11320:1 11347:2 11373:1 11375:1 11383:1 11385:1 11390:1 11400:1 11404:3 11407:1 11437:1 11456:1 11464:2 11474:1 11475:1 11476:2 11483:1 11484:1 11487:1 11490:1 11502:1 11503:4 11505:1 11508:1 11510:1 11511:1 11518:1 11532:1 11535:2 11552:1 11571:4 11591:1 11609:1 11614:1 11617:1 11622:1 11627:1 11629:1 11636:6 11648:2 11649:2 11674:1 11679:1 11695:1 11699:1 11702:1 11714:1 11732:2 11750:2 11770:1 11775:6 11797:1 11803:1 11812:3 11824:1 11827:1 11829:1 11834:1 11838:1 11839:5 11840:1 11845:2 11848:1 11851:4 11854:1 11871:1 11878:1 11881:2 11891:1 11895:2 11899:1 11900:5 11904:1 11907:1 11916:1 11930:1 11931:1 11936:2 11949:1 11955:1 11979:1 11992:3 11995:1 11996:1 12003:4 12011:1 12039:1 12043:2 12054:1 12090:1 12092:1 12110:1 12139:1 12163:2 12164:1 12179:1 12193:1 12223:1 12224:1 12235:1 12240:3 12261:3 12281:1 12283:1 12289:1 12311:1 12322:1 12330:1 12337:1 12338:1 12339:2 12344:1 12345:1 12364:1 12376:1 12383:1 12385:1 12406:1 12421:1 12431:1 12444:1 12455:1 12460:2 12461:4 12470:1 12483:1 12505:1 12510:1 12513:2 12522:1 12532:1 12563:1 12575:1 12588:1 12597:3 12599:1 12606:1 12612:1 12613:1 12635:1 12648:1 12650:1 12657:1 12664:1 12666:1 12722:1 12723:1 12746:1 12763:1 12767:1 12790:2 12792:27 12797:1 12800:1 12809:1 12813:4 12821:1 12859:6 12873:1 12884:2 12888:1 12902:1 12916:1 12922:1 12927:1 12932:1 12964:1 12967:1 12969:1 12980:1 13001:1 13008:1 13020:1 13024:2 13032:1 13038:1 13045:1 13086:1 13100:2 13111:1 13116:1 13132:1 13141:2 13145:1 13163:1 13174:1 13180:1 13182:1 13183:1 13195:1 13217:1 13229:1 13239:1 13257:1 13262:1 13265:1 13268:1 13269:1 13280:1 13286:12 13291:2 13306:1 13307:1 13313:2 13326:1 13340:1 13384:1 13400:1 13412:1 13417:1 13418:1 13419:2 13424:2 13427:3 13430:5 13437:1 13462:1 13480:1 13482:1 13491:11 13495:1 13502:1 13584:1 13585:2 13595:1 13626:1 13639:3 13641:4 13647:2 13665:1 13673:1 13675:1 13676:1 13680:1 13695:2 13700:2 13705:1 13707:1 13713:1 13716:1 13717:1 13729:2 13732:1 13747:1 13766:1 13770:2 13772:2 13773:1 13775:1 13780:1 13782:9 13783:1 13784:1 13786:2 13804:1 13805:1 13806:1 13808:1 13809:1 13814:5 13821:1 13827:2 13859:1 13868:1 13869:1 13873:1 13889:1 13901:1 13910:1 13928:1 13935:1 13941:1 13951:10 13953:1 13955:2 13963:1 13974:1 13980:1 13988:1 13991:1 13998:1 14001:1 14012:1 14028:1 14030:2 14038:4 14052:1 14055:1 14057:3 14059:1 14069:10 14072:5 14096:1 14107:1 14147:2 14156:1 14177:4 14179:1 14202:1 14232:1 14241:1 14259:1 14261:2 14273:1 14275:2 14278:1 14308:2 14314:1 14329:1 14361:4 14393:1 14422:1 14426:1 14449:1 14451:1 14454:1 14460:2 14466:2 14468:3 14485:2 14486:1 14497:1 14498:1 14506:2 14516:1 14541:1 14555:1 14557:1 14559:1 14560:1 14574:1 14575:1 14576:1 14590:1 14592:2 14607:1 14613:1 14615:1 14617:1 14621:1 14622:1 14625:1 14627:1 14629:1 14634:1 14638:1 14641:1 14643:1 14652:1 14653:1 14657:1 14659:1 14664:1 14670:2 14684:1 14688:1 14699:27 14705:3 14708:1 14709:1 14714:1 14721:1 14728:1 14736:1 14786:1 14789:1 14792:5 14800:1 14801:1 14806:2 14827:1 14832:1 14847:3 14850:1 14852:1 14863:1 14869:1 14870:1 14887:2 14890:1 14900:1 14902:1 14939:1 14941:1 14944:1 14979:1 14993:2 15000:2 15003:1 15010:1 15016:1 15031:1 15054:1 15060:1 15069:1 15070:2 15072:2 15080:1 15087:1 15100:1 15104:2 15105:1 15106:1 15109:7 15113:1 15169:1 15188:1 15193:2 15197:1 15208:1 15218:1 15223:1 15237:2 15238:1 15245:2 15247:3 15257:1 15258:1 15267:1 15278:1 15299:1 15315:1 15319:1 15322:1 15340:2 15379:2 15380:1 15386:1 15396:1 15409:2 15433:1 15452:1 15458:1 15462:2 15465:1 15478:1 15482:1 15488:1 15491:1 15506:1 15521:1 15526:1 15542:1 15555:1 15556:3 15557:3 15566:1 15584:1 15590:1 15608:4 15610:1 15612:1 15616:2 15619:1 15633:1 15653:1 15674:1 15678:1 15690:1 15718:1 15730:1 15738:1 15742:2 15757:1 15762:4 15778:1 15779:1 15783:1 15796:5 15802:3 15805:1 15818:4 15819:1 15823:1 15827:1 15835:3 15844:1 15888:1 15890:1 15897:3 15899:1 15921:4 15923:2 15931:1 15944:1 15946:1 15951:1 15960:1 15961:3 15971:1 15973:1 16006:1 16023:1 16025:1 16031:1 16038:1 16051:1 16057:1 16060:12 16062:2 16067:1 16096:2 16098:3 16100:1 16105:2 16133:2 16139:2 16140:1 16142:1 16143:2 16165:9 16178:1 16186:1 16200:3 16203:1 16239:1 16250:1 16252:1 16254:1 16262:1 16264:1 16271:2 16285:4 16286:2 16291:3 16292:1 16299:3 16300:1 16301:1 16304:1 16321:1 16333:1 16357:2 16380:1 16387:1 16392:1 16404:1 16413:1 16416:1 16418:1 16419:1 16440:1 16448:1 16452:1 16455:1 16457:1 16468:1 16476:1 16484:1 16510:1 16522:1 16523:1 16524:2 16527:1 16579:1 16590:2 16604:2 16613:1 16617:1 16631:3 16634:1 16644:1 16646:4 16647:1 16649:1 16658:1 16679:1 16687:1 16689:1 16692:1 16712:1 16714:1 16723:1 16725:2 16751:1 16757:1 16769:1 16773:3 16776:1 16782:1 16797:1 16800:2 16810:1 16811:2 16822:1 16878:1 16881:1 16899:1 16912:1 16926:36 16932:1 16933:2 16934:1 16949:1 16951:1 16963:1 16966:1 16967:3 16998:1 17020:1 17028:1 17030:1 17038:1 17042:1 17047:1 17060:1 17068:2 17072:2 17083:1 17099:1 17103:2 17132:1 17138:1 17143:1 17144:1 17160:1 17166:2 17181:1 17184:1 17199:1 17207:1 17208:1 17213:1 17234:1 17236:2 17240:1 17241:1 17250:1 17255:1 17281:1 17284:1 17329:1 17332:1 17359:1 17361:2 17375:1 17380:1 17383:1 17384:1 17393:2 17395:1 17406:1 17424:1 17436:1 17440:1 17443:1 17450:1 17452:1 17455:1 17457:1 17459:2 17465:2 17475:1 17484:1 17535:2 17541:1 17545:1 17549:2 17555:2 17560:1 17579:1 17604:1 17620:1 17623:1 17632:4 17634:1 17637:2 17639:1 17645:1 17649:1 17662:1 17664:1 17671:2 17672:1 17683:1 17689:1 17692:1 17711:2 17727:2 17731:2 17758:4 17766:4 17787:2 17788:1 17812:1 17817:1 17844:1 17855:5 17859:1 17860:2 17884:3 17909:2 17926:1 17929:2 17930:1 17936:2 17937:1 17945:1 17964:1 17980:1 17986:2 18012:1 18013:4 18018:2 18019:1 18026:1 18030:1 18058:1 18076:1 18098:1 18100:1 18123:1 18141:1 18142:1 18146:3 18204:1 18206:2 18210:1 18223:1 18234:2 18245:1 18269:1 18300:6 18310:1 18316:1 18332:1 18340:2 18370:1 18374:1 18377:4 18393:1 18395:1 18402:1 18417:1 18419:1 18431:1 18447:1 18450:1 18462:1 18499:1 18504:1 18507:1 18516:1979 18527:1 18531:1 18538:2 18551:1 18555:1 18566:1 18587:1 18597:1 18604:1 18638:3 18648:1 18651:2 18653:1 18678:1 18702:1 18707:1 18712:1 18724:1 18775:1 18780:1 18802:1 18832:1 18837:1 18850:1 18859:1 18863:1 18864:1 18894:1 18901:1 18902:1 18933:1 18952:1 18969:1 18976:2 18978:1 18982:1 18986:1 19013:1 19014:3 19016:2 19034:1 19037:1 19083:1 19085:4 19116:4 19120:1 19128:1 19137:1 19175:1 19178:1 19184:1 19189:1 19192:1 19198:1 19219:1 19223:1 19230:1 19239:1 19245:1 19253:1 19257:1 19259:1 19268:1 19276:1 19282:5 19283:3 19290:1 19315:1 19318:4 19342:2 19346:1 19362:1 19377:18 19384:1 19399:2 19409:1 19420:2 19421:1 19427:1 19428:1 19447:1 19451:4 19452:1 19454:1 19461:2 19469:1 19477:1 19481:2 19490:3 19491:1 19500:1 19509:1 19530:2 19558:1 19561:1 19573:1 19574:1 19584:4 19589:1 19603:1 19609:2 19611:1 19638:1 19653:2 19656:1 19658:1 19692:1 19697:1 19709:1 19713:2 19715:1 19726:1 19728:1 19732:1 19737:4 19768:1 19793:1 19813:1 19819:1 19820:2 19822:2 19823:1 19829:1 19835:1 19847:1 19851:2 19861:1 19866:1 19881:1 19896:1 19927:2 19929:6 19937:1 19940:1 19945:1 19947:1 19950:1 19957:1 19962:1 19972:1 19986:1 19992:1 19995:2 20000:1 20001:3 20002:4 20005:1 20021:1 20029:2 20030:4 20031:1 20033:1 20042:1 20043:1 20051:4 20079:2 20099:2 20103:1 20109:2 20117:1 20123:3 20131:1 20132:1 20144:2 20156:1 20162:1 20185:1 20199:1 20211:4 20223:2 20244:1 20258:1 20259:1 20268:1 20285:1 20311:1 20338:1 20365:1 20387:1 20390:1 20401:1 20408:1 20451:5 20460:1 20483:1 20484:2 20495:1 20499:2 20500:1 20513:3 20541:1 20555:1 20578:1 20591:1 20601:1 20602:2 20605:1 20623:1 20630:2 20653:1 20661:1 20664:1 20668:1 20674:1 20691:2 20692:2 20697:1 20702:2 20703:1 20704:2 20711:1 20720:1 20725:1 20748:1 20754:1 20762:2 20764:2 20767:1 20773:3 20788:1 20789:1 20798:1 20799:1 20808:1 20810:2 20828:1 20829:1 20833:1 20840:1 20842:2 20848:1 20853:3 20862:2 20863:1 20866:1 20869:3 20870:2 20878:2 20886:1 20892:4 20925:1 20940:1 20942:4 20945:1 20953:2 20958:1 20994:1 20996:1 21001:2 21004:3 21018:1 21021:1 21026:1 21037:2 21057:1 21061:1 21071:2 21078:1 21106:1 21114:1 21122:1 21132:1 21137:1 21146:1 21151:1 21153:1 21155:1 21171:1 21185:1 21190:1 21196:1 21202:1 21204:1 21206:4 21219:2 21233:1 21237:3 21257:1 21265:1 21271:2 21276:1 21285:1 21286:1 21289:1 21308:1 21310:1 21311:1 21313:3 21317:1 21332:1 21341:1 21351:2 21359:1 21361:1 21363:1 21364:2 21369:2 21382:1 21397:1 21398:1 21411:1 21414:1 21415:1 21436:1 21442:1 21449:1 21455:2 21464:3 21471:1 21473:1 21492:1 21493:1 21506:1 21508:3 21517:1 21530:1 21535:1 21543:1 21544:1 21547:1 21558:3 21562:1 21570:4 21574:1 21577:1 21610:1 21625:5 21658:1 21663:1 21695:1 21696:1 21699:1 21705:5 21711:1 21712:1 21714:1 21715:3 21719:1 21728:2 21739:1 21741:1 21748:1 21763:1 21764:7 21775:1 21791:1 21835:1 21837:1 21843:1 21845:1 21879:2 21881:4 21884:2 21887:1 21895:1 21896:1 21898:2 21906:1 21908:2 21915:1 21918:1 21919:1 21923:4 21924:4 21925:1 21936:1 21937:1 21939:1 21947:1 21955:1 21975:1 21997:1 22000:1 22015:1 22026:2 22028:1 22047:2 22058:2 22062:1 22066:4 22082:2 22095:1 22114:1 22128:3 22133:1 22139:1 22144:1 22151:1 22161:3 22170:1 22175:1 22179:2 22192:1 22199:1 22214:1 22219:2 22235:1 22242:2 22248:11 22262:1 22267:2 22275:1 22310:9 22312:2 22316:1 22321:1 22362:1 22365:4 22368:2 22370:1 22379:2 22383:2 22416:1 22418:1 22425:7 22432:1 22439:1 22456:3 22462:1 22471:1 22475:1 22479:1 22481:1 22490:1 22492:2 22516:1 22533:1 22536:1 22542:1 22543:2 22555:6 22566:2 22582:1 22583:1 22599:3 22640:1 22665:1 22671:1 22676:1 22688:1 22691:1 22694:26 22709:1 22713:2 22714:3 22718:1 22719:1 22721:1 22727:1 22752:2 22757:3 22759:1 22760:1 22770:1 22771:1 22781:1 22805:1 22809:1 22816:1 22838:1 22841:1 22842:5 22852:2 22861:2 22866:1 22871:4 22874:1 22899:1 22901:1 22986:1 22990:1 23000:3 23008:1 23019:1 23060:1 23074:1 23075:1 23079:1 23083:1 23093:1 23095:2 23103:1 23108:3 23111:1 23115:1 23147:27 23168:3 23169:1 23186:1 23199:1 23202:1 23223:1 23227:1 23228:1 23234:1 23235:2 23242:2 23247:6 23276:1 23283:1 23289:1 23307:1 23315:1 23321:3 23325:2 23329:1 23350:1 23358:1 23371:1 23379:2 23381:2 23408:1 23460:1 23487:1 23506:1 23508:1 23509:2 23525:1 23541:1 23543:1 23593:1 23596:1 23610:1 23617:2 23622:1 23641:2 23651:2 23664:2 23670:1 23693:1 23699:3 23740:2 23745:1 23752:1 23767:3 23772:1 23775:1 23785:2 23786:1 23802:1 23817:1 23825:1 23832:1 23838:1 23846:1 23857:1 23868:1 23890:1 23891:1 23895:1 23912:1 23915:2 23932:1 23941:1 23956:1 23957:3 23978:1 23982:2 24001:1 24008:2 24013:1 24028:2 24065:1 24067:1 24069:3 24075:2 24076:1 24080:2 24092:2 24093:2 24097:3 24105:1 24114:1 24140:1 24144:3 24147:1 24186:7 24191:1 24213:1 24217:1 24220:1 24225:1 24232:1 24235:1 24270:1 24275:1 24286:1 24291:4 24304:1 24326:1 24334:2 24366:1 24379:1 24384:1 24388:2 24393:1 24395:1 24414:1 24420:1 24427:1 24435:1 24444:1 24450:1 24480:3 24484:2 24492:1 24493:1 24495:2 24499:5 24502:1 24505:2 24524:1 24536:2 24552:3 24572:1 24576:2 24577:3 24591:1 24612:2 24614:1 24620:1 24623:1 24626:1 24628:4 24631:1 24645:1 24646:1 24653:1 24654:1 24656:1 24661:1 24675:1 24676:1 24687:1 24689:1 24699:1 24707:1 24711:1 24757:1 24766:1 24779:1 24797:1 24802:3 24803:1 24812:1 24815:1 24838:1 24854:4 24858:2 24859:2 24863:1 24871:2 24872:1 24911:1 24919:1 24922:2 24943:1 24971:1 24974:1 24979:1 25025:1 25048:2 25064:1 25069:1 25072:1 25075:2 25077:6 25088:1 25097:5 25100:3 25107:1 25132:2 25133:1 25134:1 25163:1 25166:2 25173:2 25181:1 25192:2 25199:1 25205:2 25212:1 25215:1 25222:4 25227:1 25236:1 25238:1 25245:1 25248:1 25255:1 25271:1 25277:4 25279:1 25281:2 25283:1 25284:1 25306:1 25309:1 25310:1 25313:1 25328:2 25351:1 25362:1 25378:3 25383:1 25384:1 25387:1 25402:1 25408:1 25413:1 25415:1 25423:2 25440:2 25451:3 25454:2 25461:1 25467:1 25473:1 25485:4 25499:2 25511:2 25516:3 25542:1 25546:5 25552:1 25554:1 25565:1 25573:1 25576:11 25585:2 25599:2 25617:1 25628:1 25636:1 25693:1 25705:1 25707:1 25710:2 25713:3 25718:1 25732:1 25740:1 25741:1 25760:1 25766:1 25777:2 25778:1 25803:1 25809:1 25812:1 25823:1 25832:1 25844:1 25848:1 25850:2 25860:1 25861:1 25874:1 25876:1 25884:2 25885:1 25895:1 25920:3 25929:1 25933:1 25944:2 25955:1 25956:1 25964:1 25966:1 25988:1 25989:1 25994:1 25995:4 25998:1 26005:2 26018:2 26019:1 26022:8 26023:1 26042:2 26054:1 26061:1 26065:1 26074:1 26093:5 26113:1 26119:1 26122:1 26125:1 26128:1 26130:1 26145:1 26156:1 26182:1 26202:2 26231:1 26253:3 26268:1 26272:1 26277:1 26278:1 26283:1 26286:1 26333:2 26336:1 26354:1 26356:1 26384:1 26399:1 26401:2 26428:1 26429:2 26440:2 26450:1 26465:1 26484:1 26489:1 26498:1 26509:1 26525:1 26536:1 26542:1 26546:1 26588:1 26597:1 26609:2 26616:1 26626:1 26630:2 26632:6 26653:1 26654:3 26657:1 26661:2 26663:1 26675:4 26685:1 26691:1 26692:1 26703:3 26712:1 26714:2 26734:1 26743:5 26744:1 26746:2 26753:1 26754:1 26757:1 26764:2 26774:1 26778:3 26789:3 26794:2 26796:1 26799:1 26813:1 26818:1 26847:1 26851:1 26866:1 26870:2 26875:1 26878:2 26884:1 26889:1 26894:1 26897:3 26899:1 26901:1 26911:1 26915:1 26918:4 26923:2 26930:2 26931:1 26932:1 26945:2 26968:1 26971:2 26979:1 26991:1 26994:1 27035:1 27043:1 27045:1 27054:3 27064:2 27074:1 27082:1 27087:1 27096:1 27100:6 27130:1 27131:1 27145:1 27150:1 27157:1 27164:2 27173:1 27176:1 27178:1 27188:3 27196:1 27206:1 27224:1 27228:1 27230:2 27235:1 27236:1 27249:1 27251:3 27254:2 27258:3 27265:1 27266:2 27269:1 27271:2 27276:3 27287:1 27296:2 27297:1 27299:2 27311:1 27318:1 27320:1 27329:1 27347:7 27353:1 27365:4 27390:1 27392:1 27401:1 27405:2 27411:1 27418:1 27424:1 27426:1 27448:2 27451:1 27466:1 27468:1 27472:1 27502:1 27504:1 27516:2 27540:1 27548:1 27556:1 27558:1 27615:1 27620:1 27658:3 27659:2 27662:1 27666:4 27670:2 27673:6 27675:1 27676:1 27680:1 27689:1 27713:1 27718:1 27722:1 27727:3 27732:1 27734:1 27745:1 27764:1 27784:2 27802:2 27832:1 27858:1 27868:1 27874:1 27898:1 27899:1 27908:1 27909:1 27912:1 27928:1 27945:1 27950:1 27953:1 27956:2 27969:13 27970:1 27974:1 27978:1 27981:1 27993:1 27999:2 28008:6 28032:1 28060:1 28076:1 28080:4 28095:1 28105:1 28107:1 28109:1 28117:8 28123:2 28131:1 28134:1 28137:1 28151:1 28152:1 28165:11 28170:1 28177:1 28207:1 28212:2 28214:1 28222:1 28231:1 28243:2 28258:1 28283:1 28296:2 28335:1 28375:1 28388:1 28392:33 28393:1 28413:1 28416:4 28417:1 28422:1 28423:5 28424:2 28435:1 28457:1 28485:3 28490:8 28491:1 28503:1 28509:1 28512:1 28515:1 28522:1 28529:1 28545:1 28546:2 28584:1 28597:1 28610:2 28615:2 28634:1 28635:1 28647:1 28660:1 28669:4 28690:2 28701:1 28710:1 28753:3 28758:1 28760:1 28775:1 28782:1 28785:1 28787:2 28796:2 28798:1 28803:2 28814:1 28852:1 28854:1 28857:2 28859:2 28865:1 28875:2 28887:1 28894:2 28902:1 28903:1 28913:1 28928:1 28937:1 28940:1 28950:1 28954:1 28959:1 28964:1 28974:1 28976:1 28988:1 28999:1 29000:3 29001:1 29003:2 29005:3 29024:1 29027:1 29031:2 29042:6 29057:3 29062:2 29063:2 29069:1 29073:27 29079:2 29100:1 29120:1 29128:1 29137:1 29139:1 29141:2 29146:2 29147:4 29176:1 29179:1 29183:1 29184:1 29194:2 29197:1 29223:1 29225:2 29236:1 29240:1
2 12:1 13:1 31:2 32:1 41:1 49:1 52:1 55:1 56:1 67:1 75:1 85:3 88:1 89:2 91:1 98:1 106:1 113:1 146:2 154:1 166:1 170:2 174:2 180:1 184:1 193:1 209:1 213:2 223:1 227:1 228:1 249:2 265:2 271:4 272:1 276:1 286:2 287:1 291:1 292:1 322:1 329:1 358:1 359:3 375:1 376:1 385:1 388:1 391:1 392:1 395:1 415:2 425:2 429:1 441:1 446:2 452:1 460:1 469:1 471:1 479:2 501:2 505:1 509:1 515:1 536:1 544:1 552:1 553:1 562:1 564:1 593:1 607:3 613:2 618:1 620:1 623:1 644:6 658:28 663:3 667:1 670:1 671:1 682:1 686:1 696:1 699:3 714:1 719:1 725:1 728:2 735:2 745:1 749:1 783:2 809:1 813:2 815:1 817:3 820:2 822:1 823:1 824:2 838:1 857:1 861:3 868:1 876:2 894:1 904:3 905:6 907:2 908:1 917:5 930:1 937:4 943:1 951:2 957:3 960:6 964:1 965:2 970:1 976:2 980:2 982:3 999:2 1003:1 1006:2 1016:3 1027:1 1029:2 1032:1 1036:1 1048:2 1050:1 1055:3 1056:1 1098:2 1099:1 1112:1 1137:1 1146:1 1158:1 1160:3 1190:1 1211:1 1214:27 1220:1 1223:2 1224:2 1227:1 1229:3 1232:1 1245:1 1256:1 1258:2 1260:2 1266:1 1270:1 1275:1 1277:1 1279:2 1280:1 1281:1 1288:1 1290:1 1295:1 1298:1 1302:1 1314:1 1316:1 1338:1 1354:1 1356:2 1380:3 1390:1 1393:1 1395:1 1397:1 1402:2 1404:5 1420:1 1430:1 1444:1 1452:3 1459:1 1462:2 1475:1 1481:1 1499:1 1501:1 1502:3 1506:1 1510:8 1516:1 1517:1 1528:1 1532:1 1540:1 1546:1 1548:1 1550:1 1576:2 1582:1 1598:1 1602:3 1615:1 1616:1 1631:1 1636:1 1637:1 1639:1 1647:2 1650:1 1666:1 1672:1 1676:1 1677:5 1685:1 1690:1 1691:2 1705:1 1720:1 1728:1 1740:2 1741:1 1745:3 1757:1 1760:1 1762:1 1776:1 1778:1 1779:1 1783:1 1795:1 1820:1 1827:1 1833:1 1838:1 1840:1 1842:1 1853:1 1866:1 1870:2 1871:2 1877:1 1878:1 1895:1 1897:1 1898:3 1901:1 1907:1 1913:1 1918:1 1921:2 1930:1 1937:1 1941:2 1947:2 1957:2 1959:1 1976:1 1982:1 1992:1 1993:1 2001:1 2022:5 2042:1 2045:1 2048:1 2051:2 2053:1 2077:1 2085:1 2094:1 2118:2 2123:1 2140:1 2144:1 2145:1 2157:1 2161:1 2172:1 2176:1 2181:1 2196:8 2217:1 2235:2 2238:1 2239:1 2265:1 2269:1 2291:1 2299:1 2325:1 2329:1 2333:1 2334:1 2335:2 2336:4 2337:1 2338:2 2339:2 2341:1 2342:5 2347:6 2349:3 2352:5 2356:3 2359:1 2362:1 2364:1 2367:1 2369:4 2372:3 2375:1 2376:1 2379:1 2382:1 2383:1 2405:1 2406:1 2421:2 2422:1 2430:3 2433:1 2439:1 2457:2 2460:1 2478:1 2479:1 2487:1 2492:1 2494:3 2495:3 2503:3 2513:2 2514:4 2522:3 2523:1 2531:1 2533:1 2539:1 2550:3 2562:1 2564:1 2571:1 2596:1 2603:2 2604:2 2610:1 2646:2 2663:1 2674:1 2680:1 2681:1 2730:1 2735:1 2736:2 2751:2 2758:2 2767:2 2773:1 2775:1 2777:1 2785:3 2787:1 2804:1 2809:1 2812:3 2813:2 2819:1 2822:3 2826:1 2833:1 2839:1 2841:1 2872:2 2877:1 2881:1 2883:5 2886:1 2889:1 2892:2 2901:2 2904:1 2937:2 2940:1 2949:1 2956:2 2982:13 2984:28 2986:1 2990:1 2991:2 2998:2 3002:1 3014:1 3018:1 3019:1 3023:4 3024:1 3029:1 3032:1 3039:7 3049:1 3053:2 3057:1 3067:1 3070:1 3091:2 3097:1 3100:1 3101:1 3127:1 3133:3 3139:1 3142:1 3169:3 3196:1 3219:1 3267:1 3278:2 3281:1 3297:1 3301:1 3316:1 3337:1 3340:1 3341:1 3351:1 3354:3 3360:1 3368:3 3393:1 3399:1 3401:2 3419:2 3445:1 3482:1 3486:1 3502:1 3506:1 3521:1 3525:1 3527:1 3536:1 3540:1 3550:1 3552:1 3556:1 3564:1 3601:1 3604:1 3612:1 3627:1 3632:1 3642:1 3666:1 3684:1 3690:1 3697:1 3704:1 3715:1 3734:1 3758:1 3773:3 3774:2 3775:1 3779:2 3782:1 3831:2 3833:1 3861:1 3867:1 3872:1 3877:1 3884:3 3886:1 3902:1 3907:2 3909:2 3915:2 3936:1 3938:1 3940:1 3946:3 3964:1 3985:1 3990:27 3991:2 3998:1 4012:1 4020:1 4049:1 4052:1 4056:1 4066:1 4072:2 4079:4 4081:2 4096:2 4102:1 4108:1 4113:3 4117:5 4118:2 4132:2 4171:1 4182:1 4196:1 4208:3 4216:1 4225:1 4231:1 4258:1 4260:1 4262:1 4264:1 4267:1 4269:1 4272:1 4277:1 4293:1 4307:1 4309:2 4310:1 4312:3 4317:1 4319:3 4331:1 4357:1 4376:3 4402:1 4405:2 4407:1 4409:1 4415:1 4424:1 4432:2 4434:27 4435:1 4443:1 4446:1 4448:1 4452:4 4462:1 4466:1 4475:1 4477:1 4479:1 4527:2 4535:6 4550:1 4553:1 4554:1 4557:1 4564:1 4580:1 4590:3 4604:2 4609:2 4610:1 4618:2 4622:2 4623:1 4629:1 4648:1 4668:7 4676:1 4698:2 4717:1 4744:1 4774:5 4790:1 4796:1 4811:1 4812:1 4818:5 4826:1 4854:1 4863:1 4898:1 4902:1 4903:2 4908:2 4909:1 4916:1 4920:3 4931:1 4942:1 4943:3 4954:1 4974:1 4977:1 4983:1 4997:2 4998:1 5012:13 5013:2 5022:2 5025:1 5046:4 5053:2 5063:1 5087:2 5089:1 5138:3 5140:1 5143:2 5149:1 5159:4 5160:4 5161:2 5167:5 5173:1 5174:2 5175:3 5176:1 5183:1 5190:2 5192:5 5194:3 5195:1 5205:1 5230:1 5264:1 5268:2 5283:1 5324:1 5342:1 5361:1 5389:1 5403:1 5427:1 5438:1 5439:2 5440:1 5462:1 5482:1 5485:1 5486:1 5495:1 5496:2 5533:1 5534:3 5549:1 5574:1 5577:2 5579:1 5583:1 5603:1 5606:1 5613:1 5624:1 5626:1 5630:3 5634:1 5690:1 5712:1 5713:1 5716:1 5723:1 5724:1 5729:1 5740:1 5741:1 5742:1 5762:2 5780:5 5784:1 5790:1 5792:1 5794:1 5800:1 5802:1 5807:1 5822:1 5833:1 5839:1 5841:1 5853:1 5896:1 5908:2 5921:1 5924:1 5926:2 5939:2 5968:3 6017:1 6027:1 6034:1 6043:1 6063:1 6064:1 6065:1 6076:3 6079:1 6092:1 6097:1 6118:1 6121:1 6143:1 6149:1 6151:1 6168:2 6176:2 6182:2 6187:1 6195:1 6198:1 6203:1 6207:1 6208:2 6211:1 6227:1 6247:1 6255:1 6276:1 6294:1 6295:2 6296:1 6301:1 6302:1 6304:1 6307:1 6308:1 6311:1 6312:1 6313:1 6315:3 6317:1 6320:1 6322:1 6324:2 6325:2 6326:1 6330:1 6345:1 6356:1 6388:1 6391:1 6399:1 6408:3 6410:2 6416:1 6428:2 6436:1 6456:1 6479:2 6486:1 6500:1 6510:1 6523:5 6528:1 6533:1 6534:4 6536:1 6538:1 6539:1 6540:2 6543:2 6545:2 6546:1 6547:1 6550:3 6552:6 6553:1 6560:1 6563:1 6581:1 6595:1 6599:1 6600:2 6615:1 6619:1 6629:1 6657:1 6666:2 6667:1 6674:3 6679:3 6694:1 6720:1 6736:1 6744:1 6746:1 6749:1 6755:1 6763:1 6769:1 6772:1 6776:1 6785:1 6792:1 6795:2 6796:1 6810:2 6820:1 6831:2 6850:1 6853:1 6866:1 6872:1 6892:1 6899:1 6901:1 6904:1 6908:3 6927:1 6939:1 6960:2 6962:1 6967:1 6974:1 6997:1 7030:1 7040:1 7063:2 7077:1 7083:1 7101:1 7102:1 7114:1 7117:1 7130:1 7178:1 7184:1 7187:1 7192:1 7203:1 7217:6 7264:1 7269:1 7271:1 7277:1 7283:1 7287:2 7295:1 7301:2 7319:1 7332:1 7346:1 7351:1 7369:2 7375:1 7398:1 7406:1 7409:1 7412:1 7413:2 7417:1 7423:1 7428:1 7431:1 7435:1 7442:1 7474:1 7485:1 7495:1 7496:2 7508:1 7522:1 7540:1 7543:1 7562:1 7563:1 7571:1 7574:1 7582:1 7593:1 7596:6 7629:6 7632:1 7636:1 7663:1 7664:2 7679:1 7693:1 7707:1 7716:1 7718:1 7722:1 7725:1 7748:4 7749:1 7779:1 7787:1 7803:2 7815:10 7816:10 7821:1 7833:1 7834:1 7835:5 7864:3 7868:3 7871:1 7878:42 7882:1 7883:1 7886:2 7890:1 7891:1 7897:13 7900:4 7903:1 7908:1 7911:1 7932:1 7933:1 7936:1 7941:2 7949:1 7985:4 7996:2 8013:1 8014:1 8037:1 8039:2 8054:3 8065:1 8071:1 8075:3 8077:1 8083:1 8087:1 8105:1 8109:5 8119:1 8129:1 8159:1 8162:2 8189:1 8196:1 8249:1 8253:1 8286:1 8290:1 8300:1 8312:2 8348:1 8351:1 8364:1 8376:1 8377:28 8384:1 8392:1 8396:1 8402:1 8410:12 8411:3 8426:1 8428:2 8441:1 8443:1 8445:1 8447:1 8449:2 8466:1 8475:1 8480:1 8492:34 8499:1 8501:1 8531:1 8561:1 8588:1 8596:1 8605:1 8645:1 8657:1 8659:2 8667:1 8671:1 8674:2 8677:1 8683:1 8687:1 8693:4 8694:1 8713:1 8720:1 8725:1 8745:3 8746:1 8750:1 8760:2 8762:1 8763:1 8766:1 8768:1 8778:2 8779:2 8782:1 8783:1 8792:1 8812:1 8813:1 8822:1 8832:1 8836:1 8841:1 8845:1 8850:1 8859:1 8862:3 8883:1 8915:1 8923:1 8928:1 8931:2 8987:3 8989:1 8991:1 9014:2 9052:1 9057:2 9059:1 9061:1 9069:1 9086:1 9090:3 9106:1 9110:1 9111:1 9112:2 9118:1 9129:3 9138:1 9139:1 9140:1 9184:1 9191:2 9196:1 9199:1 9204:2 9236:1 9238:5 9247:4 9256:1 9258:1 9300:1 9320:4 9343:3 9378:3 9382:2 9384:1 9391:1 9393:3 9394:1 9396:1 9400:1 9404:1 9406:2 9408:2 9415:1 9428:1 9429:1 9432:1 9435:1 9442:1 9445:1 9446:1 9447:2 9449:1 9456:1 9466:1 9472:1 9473:3 9483:6 9490:2 9496:2 9504:1 9506:1 9521:2 9525:1 9534:1 9543:1 9546:1 9558:1 9563:1 9564:2 9571:1 9580:1 9607:1 9610:1 9611:1 9616:2 9619:1 9622:1 9623:1 9624:1 9637:1 9641:1 9642:1 9653:1 9658:1 9660:1 9661:5 9675:1 9677:2 9678:9 9681:1 9689:1 9694:1 9698:1 9701:2 9703:1 9706:1 9715:1 9717:1 9719:3 9721:1 9723:1 9726:1 9738:1 9751:1 9752:1 9779:1 9782:1 9797:1 9802:1 9803:1 9804:2 9805:1 9813:1 9828:1 9841:1 9855:1 9856:1 9860:1 9887:1 9905:6 9914:1 9915:1 9916:1 9921:3 9924:4 9927:1 9936:1 9962:1 9974:1 9987:1 10003:1 10016:1 10028:1 10029:1 10046:27 10055:1 10061:1 10069:1 10083:1 10092:1 10097:1 10102:1 10115:1 10117:1 10122:1 10131:2 10134:1 10138:1 10144:1 10170:3 10174:1 10177:2 10184:1 10188:2 10195:2 10220:1 10229:1 10233:1 10242:2 10243:1 10252:1 10260:1 10261:2 10266:1 10268:2 10280:4 10284:5 10297:2 10299:1 10322:4 10336:1 10337:1 10339:1 10350:1 10359:1 10362:1 10381:1 10383:2 10388:1 10393:1 10404:1 10405:1 10417:1 10426:6 10440:1 10464:1 10518:2 10522:1 10526:1 10542:4 10555:1 10564:2 10573:1 10575:2 10576:1 10582:1 10594:1 10604:1 10609:1 10619:1 10623:1 10624:5 10641:1 10664:3 10681:1 10691:1 10707:1 10725:1 10740:4 10745:1 10758:1 10760:5 10773:1 10786:2 10820:2 10834:1 10840:1 10842:2 10859:1 10860:4 10864:2 10867:5 10874:1 10882:1 10894:1 10907:2 10912:1 10914:1 10923:1 10926:1 10929:6 10934:1 10942:1 10947:1 10955:2 10956:1 10976:1 10990:1 11005:1 11036:1 11065:1 11066:5 11082:1 11083:1 11098:2 11100:1 11111:2 11114:3 11117:3 11124:1 11131:1 11143:4 11152:1 11158:1 11167:1 11170:1 11176:1 11178:1 11185:1 11195:1 11197:8 11200:1 11203:1 11215:1 11217:3 11219:3 11220:1 11231:1 11234:2 11237:1 11246:1 11264:1 11266:1 11276:6 11279:1 11283:1 11285:1 11286:1 11293:1 11300:1 11303:2 11311:1 11320:1 11347:2 11373:1 11375:1 11383:1 11385:1 11390:1 11400:1 11404:3 11407:1 11437:1 11456:1 11464:2 11466:1 11474:1 11475:1 11476:3 11483:1 11484:1 11487:1 11490:1 11502:1 11503:4 11505:1 11508:1 11510:1 11511:1 11518:1 11532:1 11535:2 11552:1 11571:4 11591:1 11609:1 11614:1 11617:1 11622:1 11627:1 11629:1 11636:7 11648:2 11649:2 11674:1 11679:1 11695:1 11699:1 11702:1 11714:1 11732:2 11750:2 11770:1 11775:6 11797:1 11803:1 11812:3 11824:1 11827:1 11829:1 11834:1 11838:1 11839:5 11840:1 11845:2 11848:1 11851:4 11854:1 11871:1 11878:1 11881:2 11891:1 11895:2 11899:1 11900:5 11904:1 11907:1 11916:1 11930:1 11931:1 11936:2 11949:1 11955:1 11979:1 11992:3 11995:1 11996:1 12003:4 12011:1 12039:1 12043:2 12054:1 12090:1 12092:1 12110:1 12139:1 12163:2 12164:1 12179:1 12193:1 12223:1 12224:1 12235:1 12240:3 12261:3 12281:1 12283:1 12289:1 12311:1 12322:1 12330:1 12337:1 12338:1 12339:2 12344:1 12345:1 12364:1 12372:1 12376:1 12383:1 12385:1 12406:1 12421:1 12431:1 12444:1 12455:1 12460:2 12461:5 12470:1 12483:1 12505:1 12510:1 12513:2 12522:1 12532:1 12555:1 12563:1 12575:1 12588:1 12597:3 12599:1 12606:1 12612:1 12613:1 12635:1 12648:1 12650:1 12657:1 12664:1 12666:1 12722:1 12723:1 12746:1 12763:1 12767:1 12790:2 12792:28 12797:1 12800:1 12809:1 12813:4 12821:1 12859:6 12873:1 12884:2 12888:1 12902:1 12916:1 12922:1 12927:1 12932:1 12964:1 12967:1 12969:1 12980:1 13001:1 13008:1 13020:1 13024:2 13032:1 13038:1 13045:1 13086:1 13100:2 13111:1 13116:1 13132:1 13141:2 13145:1 13163:1 13174:1 13180:1 13182:1 13183:1 13195:1 13217:1 13229:1 13239:1 13257:1 13262:1 13265:1 13268:1 13269:1 13280:1 13286:12 13291:2 13306:1 13307:1 13313:2 13326:1 13340:1 13384:1 13389:1 13400:1 13412:1 13417:1 13418:1 13419:2 13424:2 13427:4 13430:5 13437:1 13462:1 13480:1 13482:1 13491:11 13495:1 13502:1 13584:1 13585:2 13595:1 13626:1 13639:3 13641:4 13647:2 13665:1 13673:1 13675:1 13676:1 13680:1 13688:1 13695:2 13700:2 13705:1 13707:1 13713:1 13716:1 13717:1 13729:2 13732:1 13747:1 13766:1 13770:2 13772:2 13773:1 13775:1 13780:1 13782:10 13783:1 13784:1 13786:2 13804:1 13805:1 13806:1 13808:1 13809:1 13814:5 13821:1 13827:2 13859:1 13868:1 13869:1 13873:1 13889:1 13901:1 13910:1 13928:1 13935:1 13941:2 13951:10 13953:1 13955:2 13963:1 13974:1 13980:1 13988:1 13991:1 13998:1 14001:1 14012:1 14028:1 14030:2 14038:4 14052:1 14055:1 14057:3 14059:1 14069:11 14072:5 14096:1 14107:1 14147:2 14156:2 14177:4 14179:1 14202:1 14232:1 14241:1 14259:1 14261:2 14273:1 14275:2 14278:1 14308:2 14314:1 14329:1 14361:4 14393:1 14422:1 14426:1 14449:2 14451:1 14454:1 14460:2 14466:2 14468:3 14485:2 14486:1 14497:1 14498:1 14506:2 14516:1 14541:1 14555:1 14557:1 14559:1 14560:1 14574:1 14575:1 14576:1 14590:1 14592:2 14607:1 14613:1 14615:1 14617:1 14621:1 14622:1 14625:1 14627:1 14629:1 14634:1 14638:1 14641:1 14643:1 14652:1 14653:1 14657:1 14659:1 14664:1 14670:2 14684:1 14688:1 14699:28 14705:3 14708:1 14709:1 14714:1 14721:1 14728:1 14736:1 14786:1 14789:1 14792:5 14800:1 14801:1 14806:2 14827:1 14832:1 14847:3 14850:1 14852:1 14863:1 14869:1 14870:1 14887:2 14890:1 14900:1 14902:1 14939:1 14941:1 14944:1 14979:1 14993:2 15000:2 15003:1 15010:1 15016:1 15031:1 15054:1 15060:1 15069:1 15070:2 15072:2 15080:1 15087:1 15100:1 15104:2 15105:1 15106:1 15109:7 15113:1 15169:1 15174:1 15188:1 15193:2 15197:1 15208:1 15218:1 15223:1 15237:2 15238:1 15245:2 15247:3 15257:1 15258:1 15267:1 15278:1 15299:1 15315:1 15319:1 15322:1 15340:2 15379:2 15380:1 15386:1 15396:1 15409:2 15433:1 15452:1 15458:1 15462:2 15465:1 15478:1 15482:2 15488:1 15491:1 15506:1 15521:1 15526:1 15536:1 15542:1 15555:1 15556:3 15557:3 15566:1 15584:1 15590:1 15608:4 15610:1 15612:1 15616:2 15619:1 15633:1 15653:1 15674:1 15678:1 15690:1 15718:1 15730:1 15738:1 15742:2 15757:1 15762:4 15778:1 15779:1 15783:1 15796:5 15802:3 15805:1 15818:4 15819:1 15823:1 15827:1 15835:3 15844:1 15888:1 15890:1 15897:4 15899:1 15921:4 15923:2 15931:1 15944:1 15946:1 15951:1 15960:1 15961:3 15971:1 15973:2 16006:1 16023:1 16025:1 16031:1 16038:1 16051:1 16057:1 16060:12 16062:2 16067:1 16096:3 16098:3 16100:1 16105:2 16133:2 16139:2 16140:1 16142:1 16143:2 16165:9 16178:1 16186:1 16200:3 16203:1 16239:1 16250:1 16252:1 16254:1 16262:1 16264:1 16271:2 16285:4 16286:2 16291:3 16292:1 16299:3 16300:1 16301:1 16304:1 16321:1 16333:1 16357:2 16380:1 16381:1 16387:1 16392:1 16404:1 16413:1 16416:1 16418:1 16419:1 16440:1 16448:1 16452:1 16455:1 16457:1 16468:1 16476:1 16484:1 16510:1 16522:1 16523:1 16524:2 16527:1 16579:1 16590:2 16604:2 16613:1 16617:1 16631:3 16634:1 16644:1 16646:5 16647:1 16649:1 16658:1 16679:1 16687:1 16689:1 16692:1 16712:1 16714:1 16723:1 16724:1 16725:2 16751:1 16757:1 16769:1 16773:3 16776:1 16782:1 16797:1 16800:2 16810:1 16811:2 16822:1 16878:1 16881:1 16899:1 16912:1 16926:37 16932:1 16933:2 16934:1 16949:1 16951:1 16963:1 16966:1 16967:3 16998:1 17020:1 17028:1 17030:1 17038:1 17042:1 17047:1 17060:1 17068:2 17072:2 17083:1 17099:1 17103:2 17132:1 17138:1 17143:1 17144:1 17160:1 17166:2 17181:1 17184:1 17199:1 17207:1 17208:1 17213:1 17234:1 17236:2 17240:1 17241:1 17250:1 17255:1 17281:1 17284:1 17329:1 17332:1 17359:1 17361:2 17375:1 17380:1 17383:1 17384:1 17393:2 17395:1 17406:1 17424:1 17436:1 17440:1 17443:1 17447:1 17450:1 17452:1 17455:1 17457:1 17459:2 17465:2 17475:1 17484:1 17535:2 17541:1 17545:1 17549:2 17555:2 17560:1 17579:1 17604:1 17620:1 17623:1 17632:4 17634:1 17637:2 17639:1 17645:1 17649:1 17662:1 17664:1 17671:2 17672:1 17683:1 17689:1 17692:1 17711:2 17727:2 17731:2 17758:4 17766:4 17787:2 17788:1 17812:1 17817:1 17844:1 17855:5 17859:1 17860:2 17884:3 17909:2 17926:1 17929:2 17930:1 17936:2 17937:1 17945:1 17964:1 17980:1 17986:2 18012:1 18013:4 18017:1 18018:2 18019:1 18026:1 18030:1 18058:1 18076:1 18098:1 18100:1 18123:1 18141:1 18142:1 18146:4 18204:1 18206:2 18210:1 18223:1 18234:2 18245:1 18269:1 18300:6 18310:1 18316:1 18332:1 18340:2 18370:1 18374:1 18377:4 18393:1 18395:1 18402:1 18417:1 18419:1 18422:1 18431:1 18447:1 18450:1 18456:1 18462:1 18499:1 18504:1 18507:1 18516:2032 18527:1 18531:1 18538:2 18551:1 18555:1 18566:1 18587:1 18597:1 18604:1 18638:3 18648:1 18651:2 18653:1 18678:1 18702:1 18707:1 18712:1 18724:1 18775:1 18780:1 18787:1 18802:1 18832:1 18837:1 18850:1 18859:1 18863:1 18864:1 18894:1 18901:1 18902:1 18933:1 18952:1 18969:1 18976:2 18978:1 18982:1 18986:1 19013:1 19014:3 19016:2 19034:1 19037:1 19083:1 19085:4 19116:4 19120:1 19128:1 19137:1 19175:1 19178:1 19184:1 19189:1 19192:1 19198:1 19219:1 19223:1 19230:1 19239:1 19245:1 19253:1 19257:1 19259:1 19268:1 19276:1 19282:5 19283:3 19290:1 19315:1 19318:4 19342:2 19346:1 19362:1 19377:19 19384:1 19399:2 19409:1 19420:2 19421:1 19427:1 19428:1 19447:1 19451:4 19452:1 19454:1 19461:2 19469:1 19477:1 19481:2 19490:3 19491:1 19500:1 19509:1 19530:2 19558:1 19561:1 19573:1 19574:1 19584:4 19589:1 19603:1 19609:2 19611:1 19638:1 19653:2 19656:1 19658:1 19678:1 19692:1 19697:1 19709:1 19713:2 19715:1 19726:1 19728:1 19732:1 19737:4 19757:1 19768:1 19793:1 19813:1 19819:1 19820:2 19822:2 19823:1 19829:1 19835:1 19847:1 19851:2 19861:1 19866:1 19881:1 19896:1 19927:2 19929:6 19937:1 19940:1 19945:1 19947:1 19950:1 19957:1 19962:1 19972:1 19986:1 19992:1 19995:2 20000:1 20001:3 20002:5 20005:1 20021:1 20029:2 20030:4 20031:1 20033:1 20042:1 20043:1 20051:4 20079:2 20099:2 20103:1 20109:2 20117:1 20123:3 20131:1 20132:1 20144:2 20156:1 20162:1 20185:1 20199:1 20211:5 20223:2 20244:1 20258:1 20259:1 20268:1 20285:1 20311:1 20338:1 20365:2 20387:1 20390:1 20401:1 20408:1 20451:5 20460:1 20483:1 20484:2 20495:1 20499:2 20500:1 20513:3 20541:1 20555:1 20578:1 20591:1 20601:1 20602:2 20605:1 20623:1 20630:2 20653:1 20661:1 20664:1 20668:1 20674:1 20691:2 20692:2 20697:1 20702:2 20703:1 20704:2 20711:1 20720:1 20725:1 20748:1 20754:1 20762:2 20764:2 20767:1 20773:3 20788:1 20789:1 20798:1 20799:1 20808:2 20810:2 20828:1 20829:1 20833:1 20840:1 20842:2 20848:1 20853:3 20862:2 20863:1 20866:1 20869:3 20870:2 20878:2 20886:1 20892:4 20918:1 20925:1 20940:1 20942:4 20945:1 20953:2 20958:1 20994:1 20996:1 21001:2 21004:3 21018:1 21021:1 21026:1 21037:2 21057:1 21061:1 21071:2 21078:1 21087:1 21106:1 21114:1 21122:1 21132:1 21137:1 21146:1 21151:1 21153:1 21155:1 21171:1 21185:1 21190:1 21196:1 21202:1 21204:1 21206:4 21219:2 21233:1 21237:3 21257:1 21265:1 21271:2 21276:1 21285:1 21286:1 21289:1 21308:1 21310:1 21311:1 21313:3 21317:1 21332:1 21341:1 21351:2 21359:1 21361:1 21363:1 21364:2 21369:2 21382:1 21397:1 21398:1 21411:1 21414:1 21415:1 21436:1 21442:1 21449:1 21455:2 21464:3 21471:1 21473:1 21492:1 21493:1 21506:1 21508:3 21517:1 21530:1 21535:1 21543:1 21544:1 21547:1 21558:3 21562:1 21570:4 21573:1 21574:1 21577:1 21590:1 21610:1 21625:5 21658:1 21663:1 21695:1 21696:1 21699:1 21705:5 21711:1 21712:1 21714:1 21715:3 21719:1 21728:2 21739:1 21741:1 21748:1 21763:1 21764:8 21775:1 21791:1 21835:1 21837:1 21843:1 21845:1 21879:2 21881:4 21884:2 21887:1 21895:1 21896:1 21898:2 21906:2 21908:2 21915:1 21918:1 21919:1 21923:4 21924:4 21925:1 21936:1 21937:1 21939:1 21947:1 21955:1 21975:1 21997:1 22000:1 22015:1 22026:2 22028:1 22047:2 22058:2 22062:1 22066:4 22082:2 22095:1 22114:1 22128:3 22133:1 22139:1 22144:1 22151:1 22161:3 22170:1 22175:1 22179:2 22192:1 22199:1 22214:1 22219:2 22235:1 22242:2 22248:12 22262:1 22267:2 22275:1 22310:9 22312:2 22316:1 22321:1 22362:1 22365:4 22368:2 22370:1 22379:2 22383:2 22416:1 22418:1 22425:7 22432:1 22439:1 22456:3 22462:1 22471:1 22475:1 22479:1 22481:1 22490:1 22492:2 22516:1 22533:1 22536:1 22542:1 22543:2 22555:6 22566:2 22582:1 22583:1 22599:3 22640:1 22665:1 22671:1 22676:1 22688:1 22691:1 22694:27 22709:1 22713:2 22714:3 22718:1 22719:1 22721:1 22727:1 22752:2 22757:3 22759:1 22760:1 22762:1 22770:1 22771:1 22781:1 22805:1 22809:1 22816:1 22838:1 22841:1 22842:5 22852:2 22861:2 22866:1 22871:4 22874:1 22887:1 22899:1 22901:1 22925:1 22986:1 22990:1 23000:3 23008:1 23019:1 23060:1 23074:1 23075:1 23079:1 23083:1 23093:1 23095:2 23103:1 23108:3 23111:1 23115:2 23147:28 23168:3 23169:1 23186:1 23199:1 23202:1 23223:1 23227:1 23228:1 23234:1 23235:2 23242:2 23247:6 23276:1 23283:1 23289:1 23307:1 23315:1 23321:3 23325:2 23329:1 23350:1 23358:1 23371:1 23379:2 23381:2 23408:1 23460:1 23487:1 23506:1 23508:1 23509:2 23525:1 23541:1 23543:1 23593:1 23596:1 23610:1 23617:2 23622:1 23641:2 23651:2 23664:2 23670:1 23693:1 23699:3 23740:2 23745:1 23752:1 23767:3 23772:1 23775:1 23785:2 23786:1 23802:1 23817:1 23825:1 23832:1 23838:1 23846:1 23857:1 23868:1 23884:1 23890:1 23891:1 23895:1 23912:1 23915:2 23932:1 23941:1 23956:1 23957:3 23978:1 23982:2 24001:1 24008:2 24013:1 24028:2 24065:1 24067:1 24069:3 24075:2 24076:1 24080:2 24092:2 24093:2 24097:3 24105:1 24114:1 24140:1 24144:3 24147:1 24186:8 24191:1 24213:1 24217:1 24220:1 24225:1 24232:1 24235:1 24270:1 24275:1 24286:1 24291:4 24304:1 24326:1 24334:2 24366:1 24379:1 24384:1 24388:2 24393:1 24395:1 24414:1 24420:1 24427:1 24435:1 24444:1 24450:1 24480:3 24484:2 24492:1 24493:1 24495:2 24499:5 24502:1 24505:2 24524:1 24536:2 24552:3 24572:1 24576:2 24577:3 24591:1 24612:2 24614:1 24620:1 24623:1 24626:1 24628:4 24631:1 24645:1 24646:1 24653:1 24654:1 24656:1 24661:1 24675:1 24676:1 24687:1 24689:1 24699:1 24707:1 24711:1 24757:1 24766:1 24779:1 24797:1 24802:3 24803:1 24812:1 24815:1 24838:1 24854:4 24858:2 24859:2 24863:1 24871:2 24872:1 24911:1 24919:1 24922:2 24943:1 24971:1 24974:1 24979:1 25025:1 25048:2 25064:1 25069:1 25072:1 25075:2 25077:6 25088:1 25097:5 25100:3 25107:1 25132:2 25133:1 25134:1 25163:1 25166:2 25173:2 25181:1 25192:2 25199:1 25205:2 25208:1 25212:1 25215:1 25222:4 25227:1 25236:1 25238:1 25245:1 25248:1 25255:1 25271:1 25277:4 25279:1 25281:2 25283:1 25284:1 25306:1 25309:1 25310:1 25313:1 25328:2 25351:1 25362:1 25378:3 25383:1 25384:1 25387:1 25402:1 25408:1 25413:1 25415:1 25423:2 25440:2 25451:3 25454:2 25461:1 25467:1 25473:1 25485:4 25499:2 25511:2 25516:3 25542:1 25546:5 25552:1 25554:1 25565:1 25573:1 25576:12 25585:2 25599:2 25617:1 25628:1 25636:1 25693:1 25705:1 25707:1 25710:2 25713:3 25718:1 25732:1 25740:1 25741:1 25760:1 25766:1 25777:2 25778:1 25803:1 25809:1 25812:1 25823:1 25832:1 25844:1 25848:1 25850:2 25860:1 25861:1 25874:1 25876:1 25884:2 25885:1 25895:1 25920:3 25929:1 25933:1 25944:2 25955:1 25956:1 25964:1 25966:1 25988:1 25989:1 25994:1 25995:4 25998:1 26005:2 26018:2 26019:1 26022:8 26023:1 26042:2 26054:1 26061:1 26065:1 26074:1 26088:1 26093:5 26113:1 26119:1 26122:1 26125:1 26128:1 26130:1 26145:1 26148:1 26156:1 26182:1 26202:2 26231:1 26253:3 26268:1 26272:1 26277:1 26278:1 26283:1 26286:1 26333:2 26336:1 26354:1 26356:1 26384:1 26399:1 26401:2 26428:1 26429:2 26440:2 26450:1 26465:1 26484:1 26489:1 26498:1 26509:1 26525:1 26536:1 26542:1 26546:1 26588:1 26597:1 26609:2 26616:1 26626:1 26630:2 26632:6 26653:1 26654:3 26657:1 26661:2 26663:1 26675:4 26685:1 26691:1 26692:1 26703:3 26712:1 26714:2 26734:1 26743:5 26744:1 26746:2 26753:1 26754:1 26757:1 26764:2 26774:1 26778:3 26789:3 26794:2 26796:1 26799:1 26813:1 26818:1 26847:1 26851:1 26866:1 26870:2 26875:1 26878:2 26884:1 26889:1 26894:1 26897:3 26899:1 26901:1 26911:1 26915:1 26918:4 26923:2 26930:2 26931:1 26932:2 26945:2 26968:1 26970:1 26971:2 26979:1 26991:1 26994:1 27035:1 27043:1 27045:1 27054:3 27064:2 27074:1 27082:1 27087:1 27096:1 27100:7 27130:1 27131:1 27145:1 27150:1 27157:1 27164:2 27173:1 27176:1 27178:1 27188:3 27196:1 27206:1 27224:1 27227:1 27228:1 27229:1 27230:2 27235:1 27236:1 27249:1 27251:3 27254:2 27258:3 27265:1 27266:2 27269:1 27271:2 27276:3 27287:1 27296:2 27297:1 27299:2 27311:1 27318:1 27320:1 27329:1 27347:7 27353:1 27365:4 27390:1 27392:1 27401:1 27405:2 27411:1 27418:1 27424:1 27426:1 27448:2 27451:1 27466:1 27468:1 27472:1 27502:1 27504:1 27516:2 27540:1 27548:1 27556:1 27558:1 27615:1 27620:1 27652:1 27658:3 27659:2 27662:1 27666:4 27670:2 27673:6 27675:1 27676:1 27680:1 27689:1 27713:1 27718:1 27722:1 27727:3 27732:1 27734:1 27745:1 27761:1 27764:1 27784:2 27802:2 27832:1 27855:1 27858:1 27868:1 27874:1 27898:1 27899:1 27908:1 27909:1 27912:1 27928:1 27945:1 27950:1 27953:1 27956:2 27969:13 27970:1 27974:1 27978:1 27981:1 27993:1 27999:2 28008:6 28032:1 28060:1 28076:1 28080:4 28095:1 28105:1 28107:1 28109:1 28117:9 28123:2 28131:1 28134:1 28137:1 28151:1 28152:1 28165:11 28170:1 28177:1 28207:1 28212:2 28214:1 28222:1 28231:1 28243:2 28258:1 28283:1 28296:2 28335:1 28345:1 28375:1 28388:1 28392:34 28393:1 28413:1 28416:4 28417:1 28422:1 28423:5 28424:2 28435:1 28457:1 28485:3 28490:8 28491:1 28503:1 28509:1 28512:1 28515:1 28522:1 28529:1 28545:1 28546:2 28584:1 28597:1 28610:2 28615:2 28634:1 28635:1 28647:1 28660:1 28669:4 28690:2 28701:2 28710:1 28753:3 28758:1 28760:1 28775:1 28782:1 28785:1 28787:2 28796:2 28798:1 28803:2 28814:1 28852:1 28854:1 28857:2 28859:2 28865:1 28875:2 28887:1 28894:2 28902:1 28903:1 28913:1 28928:1 28937:1 28940:2 28950:1 28954:1 28959:1 28964:1 28974:1 28976:1 28988:1 28999:1 29000:3 29001:1 29003:2 29005:3 29024:1 29027:1 29031:2 29042:6 29057:3 29062:2 29063:2 29069:1 29073:28 29079:2 29100:1 29120:1 29128:1 29137:1 29139:1 29141:2 29146:2 29147:4 29176:1 29179:1 29183:1 29184:1 29194:2 29197:1 29215:1 29223:1 29225:2 29236:1 29240:1
2 12:1 13:1 31:2 32:1 41:1 49:1 52:1 55:1 56:1 59:1 67:1 75:1 85:3 88:1 89:2 91:1 98:1 106:1 113:1 146:2 154:1 166:1 170:2 174:2 180:1 184:1 193:1 209:1 213:2 223:1 227:1 228:1 241:1 249:2 265:2 271:5 272:1 276:1 286:2 287:1 291:1 292:1 322:1 329:1 358:1 359:3 375:1 376:1 380:1 385:1 388:1 391:1 392:1 395:1 415:2 425:2 429:1 441:1 446:2 452:1 460:1 469:1 471:1 479:2 501:3 505:1 509:1 515:1 536:1 544:1 552:1 553:1 562:1 564:1 593:1 607:3 613:2 618:1 620:1 623:1 644:6 658:29 663:3 667:1 670:1 671:1 682:1 686:1 696:1 699:3 702:1 714:1 719:2 725:1 728:2 735:2 745:1 749:1 783:2 809:1 813:2 815:1 817:3 820:2 822:1 823:1 824:3 838:1 857:1 861:3 868:1 876:2 894:1 904:3 905:6 907:2 908:1 917:5 930:1 937:4 943:1 951:2 957:3 960:6 964:1 965:2 970:1 976:2 980:2 982:3 999:2 1003:1 1006:2 1016:3 1027:1 1029:2 1032:1 1036:1 1048:2 1050:1 1055:4 1056:1 1098:2 1099:1 1112:1 1137:1 1146:1 1158:1 1160:3 1190:1 1211:1 1214:28 1220:1 1223:2 1224:2 1227:1 1229:3 1232:1 1245:1 1256:1 1258:2 1260:2 1266:1 1270:1 1275:1 1277:1 1279:2 1280:1 1281:1 1288:1 1290:1 1295:1 1298:1 1302:1 1314:1 1316:1 1338:1 1354:1 1356:2 1380:3 1390:1 1393:1 1395:1 1397:1 1402:2 1404:6 1420:1 1430:1 1444:1 1452:3 1459:1 1462:2 1475:1 1481:1 1493:1 1499:1 1501:1 1502:3 1506:1 1510:9 1516:1 1517:1 1528:1 1532:1 1540:1 1546:2 1548:1 1550:1 1576:3 1582:1 1598:1 1602:3 1615:1 1616:1 1631:1 1636:1 1637:1 1639:1 1647:2 1650:1 1666:1 1672:1 1676:1 1677:6 1685:1 1690:1 1691:2 1705:1 1720:1 1728:1 1740:2 1741:1 1745:3 1757:1 1760:1 1762:1 1776:1 1778:1 1779:1 1783:1 1795:1 1820:1 1827:1 1833:1 1838:1 1840:1 1842:1 1853:1 1866:1 1870:2 1871:2 1877:1 1878:1 1895:1 1897:1 1898:3 1901:1 1907:1 1913:1 1918:2 1921:2 1930:1 1937:1 1941:2 1947:2 1957:2 1959:1 1976:1 1982:1 1992:1 1993:1 2001:1 2022:5 2042:1 2045:1 2048:1 2051:2 2053:1 2076:1 2077:1 2085:1 2094:1 2118:2 2123:1 2140:1 2144:1 2145:1 2157:1 2161:1 2172:1 2176:1 2181:1 2196:8 2217:1 2235:2 2238:1 2239:1 2265:1 2269:1 2291:1 2299:1 2325:1 2329:1 2333:1 2334:1 2335:2 2336:4 2337:1 2338:2 2339:2 2341:1 2342:5 2347:7 2349:3 2352:5 2356:3 2359:1 2362:1 2364:1 2367:1 2369:4 2372:3 2375:1 2376:1 2379:1 2382:1 2383:1 2405:1 2406:1 2421:2 2422:1 2430:3 2433:1 2439:1 2457:2 2460:1 2478:1 2479:1 2487:1 2492:1 2494:3 2495:3 2503:3 2513:2 2514:4 2522:3 2523:1 2531:1 2533:1 2539:1 2550:3 2562:1 2564:1 2571:1 2596:1 2603:2 2604:2 2610:1 2646:2 2663:1 2674:1 2680:1 2681:1 2730:1 2735:1 2736:2 2751:2 2758:2 2767:2 2773:1 2775:1 2777:1 2785:3 2787:1 2804:1 2809:1 2812:3 2813:2 2819:1 2822:3 2826:1 2833:1 2839:1 2841:1 2872:3 2877:1 2881:1 2883:5 2886:1 2889:1 2892:2 2901:2 2904:1 2915:1 2937:2 2940:1 2949:1 2956:2 2982:13 2984:29 2986:1 2990:1 2991:3 2998:2 3002:1 3014:1 3018:1 3019:1 3023:4 3024:1 3029:1 3032:1 3039:7 3049:1 3053:2 3057:1 3067:1 3070:1 3091:2 3097:1 3100:1 3101:1 3127:1 3133:3 3139:1 3142:1 3169:3 3196:1 3219:1 3267:1 3278:3 3281:1 3297:1 3301:1 3316:1 3337:1 3340:1 3341:1 3351:1 3354:3 3360:1 3368:3 3380:1 3387:1 3393:1 3399:1 3401:2 3419:2 3445:1 3482:1 3486:1 3502:1 3506:1 3521:1 3525:1 3527:1 3536:1 3540:1 3541:1 3550:1 3552:1 3556:1 3564:1 3601:1 3604:1 3612:1 3627:1 3632:1 3642:1 3645:1 3666:1 3677:1 3684:1 3690:1 3697:1 3704:1 3715:1 3734:1 3758:1 3773:3 3774:2 3775:1 3779:2 3782:2 3831:2 3833:1 3861:1 3867:1 3872:1 3877:1 3884:3 3886:1 3902:1 3907:2 3909:2 3915:2 3936:1 3938:1 3940:1 3946:3 3963:1 3964:1 3985:1 3990:28 3991:2 3998:1 4012:1 4020:1 4049:1 4052:1 4056:1 4066:1 4072:2 4079:4 4081:2 4096:2 4102:1 4108:1 4113:5 4117:5 4118:2 4132:2 4171:1 4182:1 4196:1 4208:3 4216:1 4225:1 4231:1 4258:1 4260:1 4262:1 4264:2 4267:1 4269:1 4272:1 4277:1 4293:1 4304:1 4307:1 4309:2 4310:1 4312:3 4317:1 4319:3 4331:1 4357:1 4376:3 4402:1 4405:2 4407:1 4409:1 4415:1 4424:1 4432:2 4434:28 4435:1 4443:1 4446:1 4448:1 4452:4 4462:1 4466:1 4475:1 4477:1 4479:1 4527:2 4535:6 4550:1 4553:1 4554:1 4557:1 4564:1 4580:1 4590:3 4604:2 4609:2 4610:1 4618:2 4622:2 4623:1 4629:1 4648:1 4668:7 4676:1 4698:2 4717:1 4744:1 4774:5 4790:1 4796:1 4811:1 4812:1 4818:5 4826:1 4854:1 4863:1 4898:1 4902:1 4903:2 4908:2 4909:1 4916:1 4920:3 4931:1 4942:1 4943:3 4954:1 4974:1 4977:1 4983:1 4997:2 4998:2 5012:14 5013:2 5022:2 5025:1 5046:5 5053:2 5063:2 5087:2 5089:1 5138:4 5140:1 5143:3 5149:1 5159:4 5160:4 5161:2 5164:1 5167:5 5173:1 5174:2 5175:3 5176:1 5183:1 5190:2 5192:5 5194:3 5195:1 5205:1 5230:1 5264:1 5268:2 5283:1 5324:1 5342:1 5361:1 5389:1 5403:1 5427:1 5438:1 5439:2 5440:1 5462:1 5482:1 5485:1 5486:1 5495:1 5496:2 5533:1 5534:3 5549:1 5574:1 5577:2 5579:1 5583:1 5603:1 5606:1 5613:1 5624:1 5626:1 5630:3 5634:1 5690:1 5700:1 5712:1 5713:1 5716:1 5723:2 5724:1 5729:1 5740:1 5741:1 5742:1 5762:2 5776:1 5780:6 5784:1 5790:1 5792:1 5794:1 5800:1 5802:1 5807:1 5822:2 5833:1 5839:1 5841:1 5853:1 5860:1 5889:1 5896:1 5908:2 5921:1 5924:1 5926:2 5939:2 5968:3 6017:1 6027:1 6034:1 6043:1 6063:1 6064:1 6065:1 6076:3 6079:1 6092:1 6097:1 6118:1 6121:1 6143:1 6149:1 6151:1 6168:2 6176:2 6182:2 6187:1 6195:1 6198:1 6203:1 6207:1 6208:2 6211:1 6227:1 6247:1 6255:1 6276:1 6281:1 6294:1 6295:2 6296:1 6301:1 6302:1 6304:1 6307:2 6308:1 6311:1 6312:1 6313:1 6315:3 6317:1 6320:1 6322:1 6324:2 6325:2 6326:1 6330:1 6345:1 6356:1 6388:1 6391:1 6399:1 6408:3 6410:2 6416:1 6428:2 6436:1 6456:1 6479:2 6486:1 6500:1 6510:1 6523:5 6528:1 6533:1 6534:4 6536:1 6538:1 6539:1 6540:2 6543:4 6545:2 6546:1 6547:1 6550:3 6552:7 6553:1 6560:1 6563:1 6581:1 6595:1 6599:1 6600:2 6615:1 6619:1 6629:1 6657:1 6666:2 6667:1 6674:3 6679:3 6694:1 6702:1 6717:1 6720:1 6736:1 6744:1 6746:1 6749:1 6755:1 6763:1 6769:1 6772:1 6776:1 6785:1 6792:1 6795:2 6796:1 6810:2 6820:1 6831:2 6850:1 6853:1 6866:1 6872:1 6892:1 6899:1 6901:1 6904:1 6908:3 6927:1 6939:1 6960:2 6962:1 6967:1 6974:1 6997:1 7030:1 7040:1 7063:2 7077:1 7083:1 7101:1 7102:1 7114:1 7117:1 7130:1 7178:1 7184:1 7187:1 7192:1 7203:1 7212:1 7217:6 7264:1 7269:1 7271:1 7277:1 7283:1 7287:2 7295:1 7301:2 7319:1 7332:1 7346:1 7351:1 7369:2 7375:1 7398:1 7406:1 7409:1 7412:1 7413:2 7417:1 7423:1 7428:1 7431:1 7435:1 7442:1 7474:1 7485:1 7495:1 7496:2 7508:1 7522:1 7540:1 7543:2 7562:1 7563:1 7571:1 7574:1 7582:1 7593:1 7596:6 7629:6 7632:1 7636:1 7663:1 7664:2 7679:1 7693:1 7707:1 7716:1 7718:1 7722:1 7725:1 7748:4 7749:1 7779:1 7787:1 7803:3 7815:10 7816:10 7821:1 7833:1 7834:1 7835:5 7837:1 7864:3 7868:3 7871:1 7878:43 7882:1 7883:1 7886:2 7890:1 7891:1 7897:13 7900:4 7903:1 7908:1 7911:1 7932:1 7933:1 7936:2 7941:2 7949:1 7957:1 7985:4 7996:2 8013:1 8014:1 8037:1 8039:2 8054:3 8065:1 8071:1 8075:3 8077:1 8083:1 8087:1 8105:1 8109:5 8119:1 8129:1 8159:1 8162:2 8189:1 8196:1 8249:1 8253:1 8286:1 8290:1 8300:1 8312:2 8348:1 8351:1 8364:1 8376:1 8377:29 8383:1 8384:1 8392:1 8396:1 8402:1 8410:12 8411:4 8426:1 8428:2 8441:1 8443:1 8445:1 8447:1 8449:2 8466:1 8475:1 8480:1 8492:36 8499:1 8501:1 8531:1 8561:1 8588:1 8596:1 8605:1 8645:1 8657:1 8659:2 8667:1 8671:1 8674:2 8677:1 8680:1 8683:1 8687:1 8693:5 8694:1 8713:1 8720:1 8725:2 8745:3 8746:1 8750:1 8760:2 8762:1 8763:1 8766:1 8768:1 8778:2 8779:2 8782:1 8783:1 8792:1 8812:1 8813:1 8822:1 8832:1 8836:1 8841:1 8845:1 8850:2 8859:1 8862:3 8883:1 8915:1 8923:1 8928:1 8931:2 8987:3 8989:1 8991:1 9014:2 9052:1 9057:2 9059:1 9061:1 9066:1 9069:2 9086:1 9090:4 9106:1 9110:1 9111:1 9112:3 9118:1 9129:3 9138:1 9139:1 9140:1 9184:1 9191:2 9196:1 9199:1 9204:2 9236:1 9238:5 9247:4 9256:1 9258:1 9300:1 9320:4 9343:3 9377:1 9378:4 9382:2 9384:1 9391:1 9393:3 9394:1 9396:1 9400:1 9404:1 9406:2 9408:2 9415:1 9428:1 9429:1 9432:1 9435:1 9442:1 9445:1 9446:1 9447:2 9448:1 9449:1 9456:1 9466:1 9472:1 9473:3 9483:7 9487:1 9490:2 9496:2 9504:1 9506:1 9521:2 9525:1 9534:1 9543:1 9546:1 9558:1 9563:1 9564:2 9571:1 9580:1 9607:1 9610:1 9611:1 9616:2 9619:2 9622:1 9623:1 9624:1 9637:1 9641:1 9642:1 9653:1 9658:1 9660:1 9661:6 9675:1 9677:2 9678:9 9681:1 9689:1 9694:1 9698:1 9701:2 9703:1 9706:1 9715:1 9717:1 9719:3 9721:1 9723:1 9726:1 9738:1 9751:1 9752:1 9779:1 9782:1 9795:1 9797:1 9802:1 9803:1 9804:2 9805:1 9813:1 9828:1 9841:1 9855:1 9856:1 9860:1 9887:1 9905:6 9914:1 9915:1 9916:1 9921:3 9924:4 9927:1 9936:1 9961:1 9962:1 9974:1 9987:1 10003:1 10016:1 10028:1 10029:1 10046:28 10055:1 10061:1 10069:1 10083:1 10092:1 10097:1 10102:1 10115:1 10117:1 10122:1 10131:2 10134:1 10138:1 10144:1 10170:4 10174:1 10177:3 10184:1 10188:2 10195:2 10220:1 10229:1 10233:1 10242:2 10243:2 10252:1 10260:1 10261:2 10266:1 10268:2 10280:4 10284:5 10297:3 10299:1 10322:5 10336:1 10337:1 10339:1 10350:1 10359:1 10362:1 10381:1 10383:2 10388:1 10393:1 10402:1 10404:1 10405:1 10417:1 10426:6 10440:1 10464:1 10518:2 10522:1 10526:1 10542:4 10555:1 10564:2 10573:1 10575:2 10576:1 10582:1 10594:1 10604:1 10609:1 10619:1 10623:1 10624:5 10641:1 10664:3 10681:1 10691:1 10707:1 10725:1 10740:4 10745:1 10758:1 10760:5 10773:1 10786:2 10820:2 10834:1 10840:1 10842:2 10859:1 10860:4 10864:2 10867:6 10874:1 10882:1 10894:1 10907:2 10912:1 10914:1 10923:1 10926:1 10929:7 10934:1 10942:1 10947:1 10955:2 10956:1 10976:2 10980:1 10990:1 11005:1 11036:1 11065:1 11066:6 11082:1 11083:1 11089:1 11098:2 11100:1 11108:1 11111:2 11114:3 11117:3 11124:1 11131:1 11143:4 11152:1 11158:1 11167:1 11170:2 11176:1 11178:1 11185:1 11195:1 11197:8 11200:1 11203:1 11215:1 11217:3 11219:4 11220:1 11231:1 11234:2 11237:1 11246:1 11264:1 11266:1 11276:6 11279:1 11283:1 11285:1 11286:1 11293:1 11300:1 11303:2 11311:1 11320:1 11347:2 11373:1 11375:1 11383:1 11385:1 11390:1 11400:1 11404:3 11407:1 11437:1 11455:1 11456:1 11464:2 11466:1 11474:1 11475:1 11476:3 11477:1 11483:1 11484:1 11487:1 11490:1 11502:1 11503:4 11505:1 11508:1 11510:1 11511:1 11518:1 11532:1 11535:3 11552:1 11571:5 11591:1 11606:1 11609:1 11614:1 11617:1 11622:1 11627:1 11629:1 11636:7 11648:2 11649:2 11674:1 11679:1 11695:1 11699:1 11702:1 11714:1 11732:2 11750:2 11770:1 11775:6 11797:1 11803:1 11809:1 11812:3 11824:1 11827:1 11829:1 11834:1 11838:1 11839:5 11840:2 11845:2 11848:1 11851:4 11854:1 11871:1 11878:1 11881:2 11891:1 11895:2 11899:1 11900:5 11904:1 11907:1 11916:1 11930:1 11931:1 11936:2 11949:1 11955:1 11979:1 11992:3 11995:1 11996:1 12003:4 12011:1 12039:1 12043:3 12054:1 12090:1 12092:1 12110:1 12139:1 12142:1 12163:2 12164:1 12179:1 12193:1 12223:1 12224:1 12235:1 12240:3 12261:4 12281:1 12283:1 12289:1 12311:1 12322:1 12330:1 12337:1 12338:1 12339:3 12344:2 12345:1 12364:1 12372:1 12376:1 12383:1 12385:1 12406:1 12421:1 12431:1 12444:1 12455:1 12460:2 12461:5 12470:1 12483:1 12505:1 12510:1 12513:2 12522:1 12532:1 12555:1 12563:1 12575:1 12588:1 12597:3 12599:1 12606:1 12612:1 12613:1 12633:1 12635:1 12648:1 12650:1 12657:1 12664:1 12666:1 12722:1 12723:1 12746:1 12763:1 12767:1 12790:3 12792:29 12797:1 12800:1 12809:1 12813:4 12815:1 12821:1 12859:6 12873:1 12884:2 12888:1 12902:1 12916:1 12922:1 12927:1 12932:1 12964:1 12967:1 12969:1 12980:1 13001:1 13008:1 13020:1 13024:2 13032:1 13038:1 13045:1 13086:1 13100:2 13111:1 13116:1 13132:1 13141:2 13145:1 13163:1 13174:1 13180:1 13182:1 13183:1 13193:1 13195:1 13217:1 13229:1 13239:1 13257:1 13262:1 13265:1 13268:1 13269:1 13280:1 13286:12 13291:2 13306:1 13307:1 13313:2 13326:1 13340:1 13384:1 13389:1 13400:1 13412:1 13417:1 13418:1 13419:2 13424:2 13427:4 13430:5 13437:1 13462:1 13480:1 13482:1 13491:11 13495:1 13502:1 13584:1 13585:2 13595:1 13626:1 13639:3 13641:4 13647:2 13665:1 13673:1 13675:1 13676:1 13680:1 13688:1 13695:2 13700:2 13705:1 13707:1 13713:1 13716:1 13717:1 13729:2 13732:1 13747:1 13766:1 13770:2 13772:2 13773:1 13775:1 13777:1 13780:1 13782:10 13783:1 13784:1 13786:2 13804:1 13805:2 13806:1 13808:1 13809:1 13814:5 13818:1 13821:1 13827:2 13859:1 13868:1 13869:1 13873:1 13889:1 13901:1 13910:1 13928:1 13935:1 13941:2 13951:10 13953:1 13955:2 13963:1 13974:1 13980:1 13988:1 13991:1 13998:1 14001:1 14012:1 14028:1 14030:2 14038:4 14052:1 14055:1 14057:3 14059:1 14069:11 14072:5 14096:1 14107:1 14147:2 14156:2 14177:4 14179:1 14202:1 14232:1 14241:1 14259:1 14261:3 14273:1 14275:2 14278:1 14299:1 14308:2 14314:1 14329:1 14361:4 14393:1 14422:1 14426:1 14440:1 14449:2 14451:1 14454:1 14460:2 14466:2 14468:3 14485:2 14486:1 14497:1 14498:2 14506:2 14516:1 14541:1 14555:1 14557:1 14559:1 14560:1 14574:1 14575:1 14576:1 14578:1 14590:1 14592:2 14607:1 14613:2 14615:1 14617:1 14621:1 14622:1 14625:1 14627:1 14629:1 14634:1 14638:1 14641:1 14643:1 14652:1 14653:1 14657:1 14659:1 14664:1 14670:2 14684:1 14688:1 14699:29 14705:3 14708:1 14709:1 14714:1 14721:1 14728:1 14736:1 14786:1 14789:1 14792:5 14800:1 14801:1 14806:2 14827:1 14832:1 14847:3 14850:1 14852:1 14863:1 14869:1 14870:1 14887:2 14890:1 14900:1 14902:1 14906:1 14939:1 14941:1 14944:1 14979:1 14993:2 15000:2 15003:1 15010:1 15016:1 15031:1 15054:1 15060:1 15069:1 15070:2 15072:2 15080:1 15087:1 15100:1 15104:2 15105:1 15106:1 15109:7 15113:1 15169:1 15174:1 15188:1 15193:2 15197:1 15208:1 15218:1 15223:1 15237:2 15238:1 15245:2 15247:3 15257:1 15258:1 15267:1 15278:1 15299:1 15315:1 15319:1 15322:1 15340:2 15379:2 15380:1 15386:1 15396:1 15409:2 15433:1 15452:1 15458:1 15462:2 15465:1 15478:1 15482:2 15488:1 15491:1 15506:1 15521:1 15526:1 15536:1 15542:1 15555:1 15556:3 15557:3 15566:1 15584:1 15590:1 15608:5 15610:1 15612:1 15616:2 15619:1 15633:1 15653:1 15674:1 15678:1 15690:1 15718:1 15723:1 15730:1 15738:1 15742:2 15757:1 15762:4 15778:1 15779:1 15783:1 15796:5 15802:3 15805:1 15818:4 15819:1 15823:1 15827:1 15828:1 15835:3 15844:1 15888:1 15890:1 15897:4 15899:1 15921:4 15923:2 15931:1 15944:1 15946:1 15951:1 15960:1 15961:3 15971:1 15973:2 16006:1 16023:1 16025:1 16031:1 16038:1 16051:1 16057:1 16060:12 16062:2 16067:1 16096:3 16098:3 16100:1 16105:2 16133:2 16139:2 16140:1 16142:1 16143:2 16165:10 16178:1 16186:1 16200:3 16203:1 16239:2 16250:1 16252:1 16254:1 16262:1 16264:1 16271:2 16285:4 16286:2 16291:3 16292:1 16299:3 16300:1 16301:1 16304:1 16321:1 16333:1 16357:2 16380:1 16381:1 16387:1 16392:1 16404:1 16413:1 16416:1 16418:1 16419:1 16440:1 16448:1 16452:1 16455:1 16457:1 16468:2 16476:1 16484:1 16510:1 16522:1 16523:1 16524:2 16527:1 16579:1 16590:2 16604:2 16613:1 16617:1 16631:3 16634:1 16644:1 16646:6 16647:1 16649:1 16658:1 16679:1 16687:1 16689:1 16692:1 16712:2 16714:1 16723:1 16724:1 16725:2 16751:1 16757:1 16769:1 16773:3 16776:1 16782:1 16797:1 16800:2 16810:1 16811:2 16822:1 16878:1 16881:1 16899:1 16912:1 16926:39 16932:1 16933:2 16934:1 16949:1 16951:1 16963:1 16966:1 16967:4 16998:1 17020:1 17028:1 17030:1 17038:1 17042:1 17047:1 17060:1 17068:3 17072:2 17083:1 17099:1 17103:2 17132:1 17138:1 17143:1 17144:1 17160:1 17166:2 17181:1 17184:1 17199:1 17207:1 17208:1 17213:1 17234:1 17236:2 17240:2 17241:1 17243:1 17250:1 17255:1 17281:1 17284:1 17329:1 17332:1 17356:1 17359:1 17361:2 17372:1 17375:1 17380:1 17383:1 17384:1 17393:2 17395:1 17406:1 17424:1 17436:1 17440:1 17443:1 17447:1 17449:1 17450:1 17452:1 17455:1 17457:1 17459:2 17465:2 17475:1 17484:1 17490:1 17535:2 17541:1 17545:1 17549:2 17555:2 17560:1 17579:1 17604:1 17620:1 17623:1 17632:4 17634:1 17637:2 17639:1 17645:1 17649:1 17662:1 17664:1 17671:2 17672:1 17683:1 17689:1 17692:1 17711:2 17717:1 17727:2 17731:2 17758:4 17766:4 17787:3 17788:1 17812:1 17817:1 17844:1 17855:5 17859:1 17860:2 17884:3 17909:2 17926:1 17929:2 17930:1 17936:2 17937:1 17945:1 17964:1 17980:1 17986:2 18012:1 18013:4 18017:1 18018:2 18019:1 18026:1 18030:1 18035:1 18055:1 18058:1 18076:1 18098:1 18100:1 18123:1 18141:1 18142:1 18146:4 18204:1 18206:2 18210:1 18223:1 18234:2 18245:1 18258:1 18269:1 18300:8 18310:1 18316:1 18332:1 18340:2 18370:1 18374:1 18377:4 18393:1 18395:1 18402:1 18417:1 18419:1 18422:1 18431:1 18447:2 18450:1 18456:1 18462:1 18499:1 18504:1 18507:1 18516:2122 18527:1 18531:1 18538:2 18551:1 18555:1 18566:1 18587:1 18597:1 18604:1 18638:3 18648:1 18651:3 18653:1 18678:1 18691:1 18702:1 18707:1 18712:1 18724:1 18775:1 18780:2 18787:1 18802:1 18832:1 18837:1 18850:1 18859:1 18863:1 18864:1 18894:1 18901:1 18902:1 18933:1 18952:1 18969:1 18976:2 18978:1 18982:1 18986:1 19013:1 19014:3 19016:2 19034:1 19037:1 19051:1 19083:1 19085:4 19116:5 19120:1 19128:1 19137:1 19175:1 19178:1 19184:1 19189:1 19192:1 19198:1 19219:1 19223:1 19230:1 19239:1 19245:1 19253:1 19257:1 19259:1 19268:1 19276:1 19282:5 19283:4 19290:1 19315:1 19318:4 19342:2 19346:1 19362:1 19377:21 19384:1 19399:2 19409:1 19420:2 19421:1 19427:1 19428:1 19447:1 19451:4 19452:1 19454:1 19461:2 19469:1 19477:1 19481:2 19490:3 19491:1 19500:1 19509:1 19530:2 19558:1 19561:1 19573:1 19574:1 19584:4 19589:1 19603:1 19609:2 19611:1 19635:1 19638:1 19653:2 19656:1 19658:1 19678:1 19692:1 19697:1 19709:1 19713:2 19715:1 19726:1 19728:1 19732:1 19737:4 19757:1 19768:1 19793:1 19813:1 19819:1 19820:3 19822:2 19823:1 19829:1 19835:1 19847:1 19851:2 19861:1 19866:1 19881:1 19896:1 19927:2 19929:6 19937:1 19940:1 19945:1 19947:1 19950:1 19957:1 19962:1 19972:1 19986:1 19992:1 19995:2 20000:1 20001:3 20002:5 20005:1 20021:1 20029:2 20030:5 20031:1 20033:1 20042:1 20043:1 20051:5 20079:2 20099:2 20103:1 20109:3 20117:1 20123:3 20131:1 20132:1 20144:2 20149:1 20156:1 20162:1 20185:1 20199:1 20211:5 20223:2 20244:1 20258:1 20259:1 20268:1 20285:1 20311:1 20338:1 20365:2 20387:1 20390:1 20401:1 20408:1 20451:5 20460:1 20483:1 20484:2 20495:1 20499:2 20500:1 20513:3 20541:1 20555:1 20578:1 20591:1 20601:1 20602:2 20605:1 20623:1 20630:2 20653:1 20661:1 20664:1 20668:1 20674:1 20691:2 20692:2 20697:1 20702:2 20703:1 20704:2 20711:1 20720:1 20725:1 20733:1 20748:1 20754:1 20762:2 20764:2 20767:1 20773:3 20787:1 20788:1 20789:1 20798:1 20799:1 20808:2 20810:2 20828:1 20829:1 20833:1 20840:1 20842:2 20848:1 20853:3 20862:2 20863:1 20866:1 20869:3 20870:2 20878:2 20886:1 20892:4 20918:1 20925:1 20940:1 20942:4 20945:1 20953:2 20958:1 20994:1 20996:1 21001:2 21004:3 21018:1 21021:1 21026:1 21037:2 21057:1 21061:1 21071:2 21078:1 21087:1 21106:1 21114:1 21122:1 21132:1 21137:1 21146:1 21151:1 21153:1 21155:1 21171:1 21185:1 21190:1 21196:1 21202:1 21204:1 21206:4 21219:2 21233:1 21237:3 21257:1 21265:1 21271:2 21276:1 21285:1 21286:1 21289:1 21308:1 21310:1 21311:1 21313:3 21317:1 21332:1 21341:1 21351:2 21359:1 21361:1 21363:1 21364:2 21369:2 21382:1 21397:1 21398:1 21411:1 21414:1 21415:1 21436:1 21442:1 21449:2 21455:2 21464:3 21471:1 21473:1 21475:1 21492:1 21493:2 21506:1 21508:4 21517:1 21530:1 21535:1 21543:1 21544:1 21547:1 21558:3 21562:1 21570:4 21573:1 21574:1 21577:1 21590:1 21610:1 21620:1 21625:5 21658:1 21663:1 21695:1 21696:1 21699:1 21705:5 21711:1 21712:1 21714:1 21715:3 21719:1 21728:3 21739:1 21741:1 21748:1 21763:1 21764:8 21775:1 21791:1 21835:1 21837:1 21843:1 21845:1 21879:2 21881:4 21884:2 21887:1 21895:1 21896:1 21898:2 21906:2 21908:2 21915:1 21918:1 21919:1 21923:4 21924:4 21925:1 21936:1 21937:1 21939:1 21947:1 21955:1 21975:1 21997:1 22000:1 22015:1 22026:2 22028:1 22047:2 22058:2 22062:1 22066:4 22082:2 22095:1 22114:1 22128:3 22133:1 22139:1 22143:1 22144:1 22151:1 22161:3 22170:1 22175:1 22179:2 22192:1 22199:1 22214:1 22219:2 22235:1 22242:2 22248:12 22262:1 22267:2 22275:1 22310:10 22312:2 22316:1 22321:1 22335:1 22362:1 22365:4 22368:2 22370:1 22379:2 22383:2 22416:1 22418:1 22425:7 22432:1 22439:1 22456:3 22457:1 22462:1 22471:1 22475:1 22479:1 22481:1 22490:1 22492:2 22516:1 22533:1 22536:1 22542:1 22543:2 22555:6 22566:2 22582:1 22583:1 22599:3 22640:1 22665:1 22671:1 22676:1 22683:1 22688:1 22691:1 22694:28 22709:1 22713:2 22714:3 22717:1 22718:2 22719:1 22721:1 22727:1 22752:2 22757:3 22759:1 22760:1 22762:1 22770:1 22771:1 22781:1 22805:1 22809:1 22816:1 22838:1 22841:1 22842:5 22852:2 22861:2 22866:1 22871:4 22874:1 22887:1 22899:1 22901:1 22925:1 22986:1 22990:1 23000:3 23008:1 23019:1 23060:1 23074:1 23075:1 23079:1 23083:1 23093:1 23095:3 23103:1 23108:3 23111:1 23115:2 23147:29 23168:3 23169:1 23176:1 23186:1 23199:1 23202:1 23223:1 23227:1 23228:1 23234:1 23235:2 23242:2 23247:6 23276:1 23283:1 23289:1 23307:1 23315:1 23321:3 23325:2 23329:1 23350:1 23358:1 23371:1 23379:2 23381:2 23408:1 23416:1 23460:1 23487:1 23506:1 23508:1 23509:2 23525:1 23541:1 23543:1 23593:1 23596:1 23610:1 23617:2 23622:1 23641:2 23651:2 23664:2 23670:1 23693:1 23699:3 23740:2 23745:1 23752:1 23766:1 23767:3 23772:1 23775:1 23785:2 23786:1 23788:1 23802:1 23817:1 23825:1 23832:1 23838:1 23846:1 23857:1 23868:1 23884:1 23890:1 23891:1 23895:1 23912:1 23915:2 23932:1 23941:1 23956:1 23957:3 23978:1 23982:2 24001:1 24008:2 24013:1 24028:2 24039:1 24065:1 24067:1 24069:3 24075:2 24076:1 24080:2 24092:2 24093:2 24097:3 24105:1 24114:1 24140:1 24144:3 24147:1 24186:8 24191:1 24213:1 24217:1 24220:1 24225:1 24232:1 24235:1 24270:1 24275:1 24286:1 24291:4 24304:1 24326:1 24334:2 24366:1 24379:1 24384:1 24388:3 24393:1 24395:1 24414:1 24420:1 24427:1 24435:1 24444:1 24450:1 24480:3 24484:2 24492:1 24493:1 24495:2 24499:5 24502:1 24503:1 24505:2 24524:1 24536:2 24552:3 24572:1 24576:2 24577:3 24591:1 24612:2 24614:1 24620:1 24623:1 24626:1 24628:4 24631:1 24645:1 24646:1 24653:1 24654:1 24656:1 24661:1 24675:1 24676:1 24687:1 24689:1 24699:1 24707:1 24711:1 24757:1 24766:1 24779:1 24797:1 24802:3 24803:1 24812:1 24815:1 24838:1 24854:4 24858:2 24859:2 24863:1 24871:2 24872:1 24911:1 24919:1 24922:2 24943:1 24971:1 24974:1 24979:1 25025:1 25048:2 25064:1 25069:1 25072:1 25075:2 25077:6 25088:1 25097:5 25100:3 25107:1 25132:2 25133:1 25134:1 25163:1 25166:2 25173:2 25181:1 25192:2 25199:1 25205:2 25208:1 25212:1 25215:1 25222:4 25227:1 25236:1 25238:1 25245:1 25248:1 25255:1 25271:1 25277:4 25279:1 25281:2 25283:1 25284:1 25306:1 25309:1 25310:1 25313:1 25328:2 25351:1 25362:1 25378:3 25383:1 25384:1 25387:1 25402:1 25408:1 25413:1 25415:1 25423:2 25440:2 25451:4 25454:2 25461:1 25467:1 25473:1 25485:4 25499:2 25511:2 25516:3 25542:1 25546:5 25552:1 25554:1 25565:1 25573:1 25576:12 25585:2 25599:2 25617:2 25628:1 25636:1 25693:1 25705:1 25707:1 25710:2 25713:3 25715:1 25718:1 25732:1 25740:1 25741:1 25760:1 25766:1 25777:2 25778:1 25803:1 25807:1 25809:1 25812:1 25823:1 25832:1 25844:1 25848:1 25850:2 25860:1 25861:1 25874:1 25875:1 25876:1 25884:2 25885:1 25895:2 25920:3 25929:1 25933:1 25944:2 25955:1 25956:1 25961:1 25964:1 25966:1 25988:1 25989:1 25994:1 25995:4 25998:1 26005:2 26018:2 26019:1 26022:10 26023:1 26027:1 26042:2 26054:1 26061:1 26065:1 26074:1 26088:1 26093:5 26113:1 26119:1 26122:1 26125:1 26128:1 26130:1 26145:1 26148:1 26156:1 26182:1 26202:2 26231:1 26253:3 26268:1 26272:1 26277:1 26278:1 26283:1 26286:1 26333:2 26336:1 26354:1 26356:1 26372:1 26384:1 26399:1 26401:2 26417:1 26428:1 26429:2 26440:2 26450:1 26465:1 26484:1 26489:1 26498:1 26509:1 26525:1 26536:1 26542:1 26546:1 26588:1 26597:1 26609:2 26616:1 26626:1 26630:2 26632:6 26653:1 26654:3 26657:1 26661:2 26663:1 26675:4 26685:1 26691:1 26692:1 26703:3 26712:1 26714:2 26734:1 26743:5 26744:1 26746:2 26753:1 26754:1 26757:1 26764:2 26774:1 26778:3 26789:3 26794:2 26796:1 26799:1 26813:1 26818:1 26847:1 26851:1 26866:1 26870:2 26875:1 26878:2 26884:1 26889:1 26894:1 26897:3 26899:1 26901:1 26911:1 26915:1 26918:4 26923:2 26930:2 26931:1 26932:2 26945:2 26968:1 26970:1 26971:2 26979:1 26991:2 26994:1 27035:1 27043:1 27045:1 27054:3 27064:2 27074:1 27082:1 27087:1 27096:1 27100:7 27130:1 27131:1 27145:1 27150:1 27157:1 27164:2 27172:1 27173:1 27176:1 27178:1 27188:3 27196:1 27206:1 27224:1 27227:1 27228:1 27229:1 27230:3 27235:1 27236:1 27249:1 27251:3 27254:2 27258:3 27265:1 27266:2 27269:1 27271:2 27276:3 27287:2 27296:2 27297:1 27299:3 27311:1 27318:1 27320:1 27329:1 27347:7 27353:1 27365:4 27390:1 27392:1 27401:1 27403:1 27405:3 27411:1 27418:1 27424:1 27426:1 27448:2 27451:1 27466:1 27468:1 27472:1 27502:1 27504:1 27516:2 27540:1 27548:1 27556:1 27558:1 27615:1 27620:1 27652:1 27658:3 27659:2 27662:1 27666:4 27670:3 27673:6 27675:1 27676:1 27680:1 27689:1 27713:1 27718:1 27722:1 27727:3 27732:1 27734:1 27745:1 27761:1 27764:1 27784:2 27802:2 27808:1 27832:1 27855:1 27858:1 27868:1 27874:1 27898:1 27899:1 27908:1 27909:1 27912:1 27928:2 27945:1 27950:1 27953:1 27956:3 27965:1 27969:13 27970:1 27974:1 27978:1 27981:1 27993:1 27999:2 28008:6 28032:1 28060:1 28076:1 28080:4 28095:1 28105:1 28107:1 28109:1 28117:9 28123:3 28131:1 28134:1 28137:1 28151:1 28152:1 28162:1 28165:11 28170:1 28177:1 28207:1 28212:2 28214:1 28222:1 28231:1 28243:2 28258:1 28283:1 28296:2 28335:1 28345:1 28375:1 28388:1 28392:36 28393:1 28413:1 28416:4 28417:1 28422:1 28423:5 28424:2 28435:1 28457:1 28485:3 28490:8 28491:1 28503:1 28509:1 28512:1 28515:1 28522:1 28529:1 28545:1 28546:2 28584:1 28597:1 28610:2 28615:2 28634:1 28635:1 28647:1 28660:1 28669:4 28690:2 28701:2 28710:1 28753:3 28758:1 28760:1 28775:1 28782:1 28785:1 28787:2 28796:2 28798:1 28803:2 28814:1 28852:1 28854:1 28857:2 28859:2 28865:1 28875:2 28887:1 28894:2 28901:1 28902:1 28903:1 28913:1 28923:1 28927:1 28928:1 28937:1 28940:2 28950:1 28954:1 28959:1 28964:1 28974:1 28976:1 28988:1 28999:1 29000:4 29001:1 29003:2 29005:3 29024:1 29027:1 29031:3 29042:6 29057:3 29062:2 29063:2 29069:1 29073:29 29079:2 29100:1 29120:1 29128:1 29137:1 29139:1 29141:2 29146:2 29147:4 29176:1 29179:1 29183:1 29184:1 29194:2 29197:1 29215:1 29223:1 29225:2 29236:1 29240:1
2 12:1 13:1 31:2 32:1 41:1 49:1 52:1 55:1 56:1 59:1 67:1 75:1 85:3 88:1 89:2 91:1 98:1 106:1 113:1 146:2 154:1 166:1 170:2 174:2 180:1 184:1 193:1 209:1 213:2 223:1 227:1 228:1 241:1 249:2 265:2 271:5 272:1 276:1 286:2 287:1 291:1 292:1 322:1 329:1 358:1 359:3 375:1 376:1 380:1 385:1 388:1 391:1 392:1 395:1 415:2 425:2 429:1 441:1 446:2 452:1 460:1 469:1 471:2 479:2 490:1 501:3 505:1 509:1 515:1 536:1 544:1 552:1 553:1 562:1 564:1 593:1 607:3 613:2 618:2 620:1 623:1 644:6 658:30 663:3 667:1 670:1 671:1 682:1 686:1 696:1 699:3 702:1 714:1 719:2 725:1 728:2 735:2 745:2 749:1 783:2 809:1 813:2 815:1 817:3 820:2 822:1 823:1 824:3 838:1 857:1 861:3 868:1 876:2 882:1 894:1 904:3 905:6 907:2 908:1 917:5 930:1 937:4 943:1 951:2 957:3 960:6 964:1 965:2 970:1 976:2 980:2 982:3 999:2 1003:1 1006:2 1016:3 1027:1 1029:2 1032:1 1036:1 1048:2 1050:1 1055:4 1056:1 1098:2 1099:1 1112:1 1137:1 1146:1 1158:1 1160:3 1190:1 1211:1 1214:29 1220:1 1223:2 1224:2 1227:1 1229:3 1232:1 1245:1 1256:1 1258:2 1260:2 1266:1 1270:1 1275:1 1277:1 1279:2 1280:1 1281:1 1288:1 1290:1 1295:1 1298:1 1302:1 1314:1 1316:1 1338:1 1354:1 1356:2 1380:3 1390:1 1393:1 1395:1 1397:1 1402:2 1404:7 1420:1 1430:1 1444:1 1452:3 1459:1 1462:2 1475:1 1481:1 1493:1 1499:1 1501:1 1502:3 1506:2 1510:9 1516:1 1517:1 1528:1 1532:1 1540:1 1546:2 1548:1 1550:1 1576:3 1582:1 1598:1 1602:3 1615:1 1616:1 1631:1 1636:1 1637:2 1639:1 1647:2 1650:1 1666:1 1672:1 1676:1 1677:7 1685:1 1690:1 1691:2 1705:1 1720:1 1728:1 1740:2 1741:1 1745:3 1757:1 1760:1 1762:1 1776:1 1778:1 1779:1 1783:1 1795:1 1820:1 1827:1 1833:1 1838:1 1840:1 1842:1 1853:1 1866:1 1870:2 1871:2 1877:1 1878:1 1895:1 1897:1 1898:3 1901:1 1907:1 1913:1 1918:2 1921:2 1930:1 1937:1 1941:2 1947:2 1957:2 1959:1 1976:1 1982:1 1992:1 1993:1 2001:1 2022:5 2042:1 2045:1 2048:1 2051:2 2053:1 2076:1 2077:1 2085:1 2094:1 2118:2 2123:1 2140:1 2144:1 2145:1 2157:1 2161:1 2172:1 2176:1 2181:1 2196:8 2217:1 2235:2 2238:1 2239:1 2265:1 2269:1 2291:1 2299:1 2325:1 2329:1 2333:1 2334:1 2335:2 2336:4 2337:1 2338:2 2339:2 2341:1 2342:5 2347:7 2349:3 2352:6 2356:3 2359:1 2362:1 2364:1 2367:1 2369:4 2372:3 2375:1 2376:1 2379:1 2382:1 2383:1 2405:1 2406:1 2421:2 2422:1 2430:4 2433:1 2439:1 2457:2 2460:1 2478:1 2479:1 2487:1 2492:1 2494:3 2495:3 2503:3 2513:2 2514:4 2522:3 2523:1 2531:1 2533:1 2539:1 2550:3 2562:1 2564:1 2571:1 2596:1 2603:2 2604:2 2610:1 2646:2 2663:1 2674:2 2680:1 2681:1 2730:1 2735:1 2736:2 2751:2 2758:2 2767:2 2773:1 2775:1 2777:1 2785:3 2787:1 2791:1 2804:1 2809:1 2812:3 2813:3 2819:1 2822:3 2826:1 2833:1 2839:1 2841:1 2872:3 2877:1 2881:2 2883:5 2886:1 2889:1 2892:2 2901:2 2904:1 2915:1 2937:2 2940:1 2949:1 2956:2 2982:14 2984:30 2986:1 2990:1 2991:3 2998:2 3002:1 3014:1 3018:1 3019:1 3023:4 3024:1 3029:1 3032:1 3039:7 3049:1 3053:4 3057:2 3067:1 3070:1 3091:2 3097:1 3100:1 3101:1 3127:2 3133:3 3139:1 3142:1 3169:3 3196:1 3219:1 3267:1 3278:3 3281:1 3297:1 3301:1 3316:1 3337:1 3340:1 3341:1 3351:1 3354:3 3360:1 3368:3 3380:1 3387:1 3393:1 3399:1 3401:4 3419:2 3445:1 3482:1 3486:1 3502:1 3506:1 3521:1 3525:1 3527:1 3536:1 3540:1 3541:1 3550:1 3552:1 3556:1 3564:1 3601:1 3604:1 3612:1 3627:1 3632:1 3642:1 3645:1 3666:2 3677:1 3684:1 3690:1 3697:1 3704:1 3715:1 3734:1 3758:1 3773:3 3774:2 3775:1 3779:2 3782:2 3831:2 3833:1 3861:1 3867:1 3872:1 3877:1 3884:3 3886:1 3902:1 3907:2 3909:2 3915:2 3936:1 3938:1 3940:1 3946:3 3960:1 3963:1 3964:1 3985:1 3990:29 3991:2 3998:1 4012:1 4020:1 4049:1 4052:1 4056:1 4066:1 4072:2 4079:4 4081:2 4096:2 4102:1 4108:1 4113:5 4117:5 4118:2 4131:1 4132:2 4171:1 4182:1 4196:1 4208:3 4216:1 4225:1 4231:1 4258:1 4260:1 4262:1 4264:2 4267:1 4269:1 4272:1 4277:1 4293:1 4304:1 4307:1 4309:2 4310:1 4312:3 4317:1 4319:3 4331:1 4357:1 4376:3 4402:1 4405:2 4407:1 4409:1 4415:1 4424:1 4432:2 4434:29 4435:1 4443:1 4446:1 4448:1 4452:4 4462:1 4466:1 4475:1 4477:1 4479:1 4527:2 4535:6 4550:1 4553:1 4554:1 4557:1 4564:1 4580:1 4590:3 4604:2 4609:2 4610:1 4618:2 4622:2 4623:1 4629:1 4648:1 4668:7 4676:1 4698:2 4717:1 4744:1 4774:5 4790:1 4796:1 4811:1 4812:1 4818:5 4826:1 4854:1 4863:1 4898:1 4902:1 4903:2 4908:2 4909:1 4916:1 4920:3 4931:1 4942:1 4943:3 4954:1 4974:1 4977:1 4983:1 4997:2 4998:2 5012:15 5013:2 5022:2 5025:1 5046:5 5053:2 5063:2 5087:2 5089:1 5138:4 5140:1 5143:3 5149:1 5159:4 5160:4 5161:2 5164:1 5167:5 5173:1 5174:2 5175:3 5176:1 5183:1 5190:2 5192:5 5194:3 5195:1 5205:1 5230:1 5264:1 5268:2 5283:1 5300:1 5324:1 5342:1 5361:1 5389:1 5403:1 5427:1 5438:1 5439:2 5440:1 5462:1 5482:1 5485:1 5486:1 5495:1 5496:2 5533:1 5534:3 5549:1 5574:1 5577:2 5579:1 5583:1 5603:1 5606:1 5613:1 5624:1 5626:1 5630:3 5634:1 5690:1 5700:1 5712:1 5713:1 5716:1 5723:2 5724:1 5729:1 5740:1 5741:1 5742:1 5762:2 5776:1 5780:7 5784:1 5790:1 5792:1 5794:1 5800:1 5802:1 5807:1 5822:2 5833:1 5839:1 5841:1 5853:2 5860:1 5889:1 5896:1 5908:2 5921:1 5924:1 5926:2 5939:2 5968:3 6017:1 6027:1 6034:1 6042:1 6043:1 6063:1 6064:1 6065:1 6076:3 6079:1 6092:1 6097:1 6118:1 6121:1 6143:1 6149:1 6151:1 6168:2 6176:2 6182:2 6187:1 6195:1 6198:1 6203:1 6207:1 6208:2 6211:1 6217:1 6220:1 6227:1 6247:1 6255:1 6276:1 6281:1 6294:1 6295:2 6296:1 6301:1 6302:1 6304:1 6307:2 6308:1 6311:1 6312:1 6313:1 6315:3 6317:1 6320:1 6322:1 6324:2 6325:2 6326:1 6330:1 6345:1 6356:1 6388:1 6391:1 6399:1 6408:3 6410:2 6416:1 6428:2 6436:1 6456:1 6479:2 6486:1 6500:1 6510:1 6523:6 6528:1 6533:1 6534:4 6536:1 6538:1 6539:1 6540:2 6543:4 6545:2 6546:1 6547:1 6550:3 6552:7 6553:1 6560:1 6563:1 6581:1 6595:1 6599:1 6600:2 6615:1 6619:1 6629:1 6657:1 6666:2 6667:1 6674:3 6679:3 6694:1 6702:1 6717:1 6720:1 6736:1 6744:1 6746:1 6749:1 6755:1 6763:1 6769:1 6772:1 6776:1 6785:1 6792:1 6795:2 6796:1 6810:2 6820:1 6831:2 6850:1 6853:1 6866:1 6872:1 6892:1 6899:1 6901:1 6904:1 6908:3 6927:1 6939:1 6960:2 6962:1 6967:1 6974:1 6997:1 7025:1 7030:1 7040:1 7063:2 7077:1 7083:1 7101:1 7102:1 7114:1 7117:1 7130:1 7178:1 7184:1 7187:1 7192:1 7203:1 7212:1 7217:6 7264:1 7269:1 7271:1 7277:1 7283:1 7287:2 7295:1 7301:2 7319:1 7332:1 7346:1 7351:1 7369:2 7375:1 7398:1 7406:1 7409:1 7412:1 7413:2 7417:1 7423:1 7428:1 7431:1 7435:1 7442:1 7474:1 7485:1 7495:1 7496:2 7508:1 7522:1 7540:1 7543:2 7562:1 7563:1 7571:1 7574:1 7582:1 7593:1 7596:6 7629:7 7632:1 7636:1 7663:1 7664:2 7679:1 7693:1 7707:1 7716:1 7718:1 7722:1 7725:1 7748:4 7749:1 7779:1 7787:1 7803:3 7815:10 7816:10 7821:1 7833:1 7834:1 7835:5 7837:1 7864:3 7868:3 7871:1 7878:44 7882:1 7883:1 7886:2 7890:1 7891:1 7897:14 7900:4 7903:1 7908:1 7911:1 7932:1 7933:1 7936:2 7941:2 7949:1 7957:1 7985:4 7996:2 8013:1 8014:1 8037:1 8039:2 8054:3 8065:1 8071:1 8075:3 8077:1 8083:1 8087:1 8105:1 8109:5 8119:1 8129:1 8159:1 8162:2 8189:1 8196:1 8249:1 8253:1 8286:1 8290:1 8300:1 8312:2 8348:1 8351:1 8364:1 8376:1 8377:30 8383:1 8384:1 8392:1 8396:1 8402:1 8410:15 8411:4 8426:1 8428:2 8441:1 8443:1 8445:1 8447:1 8449:2 8466:1 8475:1 8480:1 8492:37 8499:1 8501:1 8531:1 8561:1 8588:1 8596:1 8605:1 8645:1 8657:1 8659:2 8667:1 8671:1 8674:2 8677:1 8680:1 8683:1 8687:1 8693:5 8694:1 8713:1 8720:1 8725:2 8745:3 8746:1 8750:1 8760:2 8762:1 8763:1 8766:1 8768:1 8778:2 8779:2 8782:1 8783:1 8792:1 8812:1 8813:1 8822:1 8832:1 8836:1 8841:1 8845:1 8850:2 8859:1 8862:3 8883:1 8915:1 8923:1 8928:1 8931:2 8987:3 8989:1 8991:1 9014:2 9052:1 9057:2 9059:1 9061:1 9066:1 9069:2 9086:1 9090:4 9106:1 9110:1 9111:1 9112:3 9118:1 9129:3 9138:1 9139:1 9140:1 9184:1 9191:2 9196:1 9199:1 9204:2 9236:1 9238:5 9247:4 9256:1 9258:1 9264:1 9300:1 9320:4 9343:3 9377:1 9378:4 9382:2 9384:1 9391:1 9393:3 9394:1 9396:1 9400:1 9404:1 9406:2 9408:2 9415:1 9428:1 9429:1 9432:1 9435:1 9442:1 9445:1 9446:1 9447:2 9448:1 9449:1 9456:1 9466:1 9472:1 9473:3 9483:7 9487:1 9490:2 9496:2 9504:1 9506:1 9521:2 9525:1 9534:1 9543:1 9546:1 9558:1 9563:1 9564:2 9571:1 9580:1 9592:1 9607:1 9610:1 9611:1 9616:2 9619:2 9622:1 9623:1 9624:1 9627:1 9637:1 9641:1 9642:1 9653:1 9658:1 9660:1 9661:7 9675:1 9677:2 9678:9 9681:1 9689:1 9694:1 9698:1 9701:2 9703:1 9706:1 9715:1 9717:1 9719:3 9721:1 9723:1 9726:1 9738:1 9751:1 9752:1 9779:1 9782:1 9795:1 9797:1 9802:1 9803:1 9804:2 9805:1 9813:1 9828:1 9841:1 9855:1 9856:1 9860:1 9887:1 9905:6 9914:1 9915:1 9916:1 9920:1 9921:3 9924:4 9927:1 9936:1 9961:1 9962:1 9974:1 9987:1 10003:1 10016:1 10028:1 10029:1 10046:29 10055:1 10061:1 10069:1 10077:1 10083:1 10092:1 10097:1 10102:1 10115:1 10117:1 10122:1 10131:2 10134:1 10138:1 10144:1 10170:4 10174:1 10177:3 10184:1 10188:2 10195:2 10220:1 10229:1 10233:1 10242:2 10243:2 10252:1 10260:1 10261:2 10266:1 10268:2 10280:4 10284:5 10292:1 10297:3 10299:1 10322:5 10336:1 10337:1 10339:2 10350:1 10359:1 10362:1 10381:1 10383:2 10388:1 10393:1 10402:1 10404:1 10405:1 10417:1 10426:6 10440:1 10464:1 10518:2 10522:1 10526:1 10542:4 10555:1 10564:2 10573:1 10575:2 10576:1 10582:1 10594:1 10604:1 10609:1 10619:1 10623:1 10624:5 10641:1 10664:3 10681:1 10691:1 10707:1 10725:1 10740:4 10745:1 10758:1 10760:5 10773:1 10786:2 10820:2 10834:1 10840:1 10842:2 10859:1 10860:4 10864:2 10867:6 10874:1 10882:1 10894:1 10907:2 10912:1 10914:1 10922:1 10923:1 10926:1 10929:7 10934:1 10942:1 10947:1 10955:2 10956:1 10976:2 10980:1 10990:1 11005:1 11036:1 11065:1 11066:7 11082:1 11083:1 11089:1 11098:2 11100:1 11108:1 11111:2 11114:3 11117:3 11124:1 11131:1 11143:4 11152:1 11158:1 11167:1 11170:2 11176:1 11178:1 11185:1 11195:1 11197:8 11200:1 11203:1 11215:1 11217:3 11219:4 11220:1 11231:1 11234:2 11237:1 11246:1 11264:1 11266:1 11276:6 11279:1 11283:1 11285:1 11286:1 11293:1 11300:1 11303:2 11311:1 11320:1 11347:2 11373:1 11375:1 11383:1 11385:1 11390:1 11400:1 11404:3 11407:1 11437:2 11455:1 11456:1 11464:2 11466:1 11474:1 11475:1 11476:3 11477:1 11483:1 11484:1 11487:1 11490:1 11502:1 11503:4 11505:1 11508:1 11510:1 11511:1 11518:1 11532:1 11535:3 11552:1 11571:5 11591:1 11606:1 11609:1 11614:1 11617:1 11622:1 11627:1 11629:1 11636:8 11648:2 11649:2 11674:1 11679:1 11695:1 11699:1 11702:1 11714:1 11732:2 11750:2 11770:1 11775:6 11797:1 11800:1 11803:1 11809:1 11812:3 11824:1 11827:1 11829:1 11834:1 11838:1 11839:5 11840:3 11845:2 11848:1 11851:4 11854:1 11871:1 11878:1 11881:2 11891:1 11895:2 11899:1 11900:6 11904:1 11907:1 11916:1 11930:1 11931:1 11936:2 11949:1 11955:1 11979:1 11992:3 11995:1 11996:1 12003:4 12011:1 12039:1 12043:3 12054:1 12090:1 12092:1 12110:1 12139:1 12142:1 12163:2 12164:1 12179:1 12193:1 12223:1 12224:1 12235:1 12240:3 12261:4 12281:1 12283:1 12289:1 12311:1 12322:1 12330:1 12337:1 12338:1 12339:3 12344:2 12345:1 12354:1 12364:1 12372:1 12376:1 12383:1 12385:1 12406:1 12421:1 12431:1 12444:1 12455:1 12460:2 12461:5 12470:1 12483:1 12505:1 12510:1 12513:2 12522:1 12532:2 12555:1 12563:1 12575:1 12588:1 12597:3 12599:1 12606:1 12612:1 12613:1 12633:1 12635:1 12648:1 12650:1 12657:1 12664:1 12666:1 12722:1 12723:1 12746:1 12763:1 12767:1 12790:3 12792:30 12797:1 12800:1 12809:1 12813:4 12815:1 12821:1 12859:6 12873:1 12884:2 12888:1 12902:1 12916:1 12922:1 12927:1 12932:1 12964:1 12967:1 12969:2 12980:1 13001:1 13008:1 13020:1 13024:2 13027:1 13032:1 13038:1 13045:1 13086:1 13100:2 13111:1 13116:1 13132:1 13141:2 13145:1 13163:1 13174:1 13180:1 13182:1 13183:1 13193:1 13195:1 13217:1 13229:1 13239:1 13257:1 13262:1 13265:1 13268:1 13269:1 13280:1 13286:12 13291:4 13306:1 13307:1 13313:2 13326:1 13340:1 13384:1 13389:1 13400:1 13412:1 13417:1 13418:1 13419:2 13424:2 13427:4 13430:5 13437:1 13462:1 13480:1 13482:1 13491:11 13495:1 13502:1 13584:1 13585:2 13595:1 13626:1 13639:3 13641:4 13647:2 13665:1 13673:1 13675:1 13676:1 13680:1 13688:1 13695:2 13700:2 13705:1 13707:1 13713:1 13716:1 13717:1 13729:2 13732:1 13747:1 13766:1 13770:2 13772:3 13773:1 13775:1 13777:1 13780:1 13782:10 13783:1 13784:1 13786:2 13804:1 13805:2 13806:1 13808:1 13809:1 13814:5 13818:1 13821:1 13827:2 13859:1 13868:1 13869:1 13873:1 13889:1 13901:1 13910:1 13928:1 13935:1 13941:2 13951:10 13953:1 13955:2 13963:1 13974:1 13980:1 13988:1 13991:1 13998:1 14001:1 14012:1 14028:1 14030:2 14038:4 14052:1 14055:1 14057:3 14059:1 14069:11 14072:5 14096:1 14107:1 14147:2 14156:2 14177:4 14179:1 14202:1 14232:1 14241:1 14259:1 14261:3 14273:1 14275:2 14278:1 14299:1 14308:2 14314:1 14329:1 14361:4 14393:1 14422:1 14426:1 14440:1 14449:2 14451:1 14454:1 14460:2 14465:1 14466:2 14468:3 14485:2 14486:1 14497:1 14498:2 14506:2 14516:1 14541:1 14555:1 14557:1 14559:1 14560:1 14564:1 14574:1 14575:2 14576:1 14578:1 14590:1 14592:2 14607:1 14612:1 14613:2 14615:1 14617:1 14621:1 14622:1 14625:1 14627:1 14629:1 14634:1 14638:1 14641:1 14643:1 14652:1 14653:1 14657:1 14659:1 14664:1 14670:2 14684:1 14688:1 14699:30 14705:3 14708:1 14709:1 14714:1 14721:1 14728:1 14736:1 14786:1 14789:1 14792:5 14800:1 14801:1 14806:2 14827:1 14832:1 14847:3 14850:1 14852:1 14863:1 14869:1 14870:1 14887:2 14890:1 14900:1 14902:1 14906:1 14939:1 14941:1 14944:1 14979:1 14993:2 15000:2 15003:1 15010:1 15016:1 15031:1 15054:1 15060:1 15069:1 15070:2 15072:2 15080:1 15087:1 15100:1 15104:2 15105:1 15106:1 15109:7 15113:1 15169:1 15174:1 15188:1 15193:2 15197:1 15208:1 15218:1 15223:1 15237:2 15238:1 15245:2 15247:3 15257:1 15258:1 15267:1 15278:1 15299:1 15315:1 15319:1 15322:1 15340:2 15379:2 15380:1 15386:1 15396:1 15409:2 15433:1 15452:1 15458:1 15462:2 15465:1 15478:1 15482:2 15488:1 15491:1 15506:1 15521:1 15526:1 15536:1 15542:1 15555:1 15556:3 15557:3 15566:1 15584:1 15590:1 15608:5 15610:1 15612:1 15616:2 15619:1 15633:1 15653:1 15674:1 15678:1 15690:1 15718:1 15723:1 15730:1 15738:1 15742:2 15757:1 15762:4 15778:1 15779:1 15783:1 15796:5 15802:3 15805:1 15818:4 15819:1 15823:1 15827:1 15828:1 15835:3 15844:1 15888:1 15890:1 15897:4 15899:1 15921:4 15923:2 15931:1 15944:1 15946:1 15951:1 15960:1 15961:3 15971:1 15973:2 16006:1 16023:1 16025:1 16031:1 16038:1 16051:1 16057:1 16060:12 16062:2 16067:1 16096:3 16098:3 16100:1 16105:2 16133:2 16139:2 16140:1 16142:1 16143:2 16165:10 16178:1 16186:1 16200:3 16203:1 16239:2 16250:1 16252:1 16254:1 16262:1 16264:1 16271:2 16285:4 16286:2 16287:1 16291:3 16292:1 16298:1 16299:3 16300:1 16301:2 16304:1 16321:1 16333:1 16357:2 16380:1 16381:1 16387:1 16392:1 16404:1 16413:1 16416:1 16418:1 16419:1 16440:1 16448:1 16452:1 16455:1 16457:1 16468:2 16476:1 16484:1 16510:1 16522:1 16523:1 16524:2 16527:1 16579:1 16590:2 16604:2 16613:1 16617:1 16631:3 16634:1 16644:1 16646:7 16647:1 16649:1 16658:1 16679:1 16687:1 16689:1 16692:1 16712:2 16714:1 16723:1 16724:1 16725:2 16751:1 16757:1 16769:1 16773:3 16776:1 16782:1 16797:1 16800:2 16810:1 16811:2 16822:1 16878:1 16881:1 16899:1 16912:1 16926:40 16932:1 16933:2 16934:1 16949:1 16951:1 16963:1 16966:1 16967:4 16998:1 17020:1 17028:1 17030:1 17038:1 17042:1 17047:1 17060:1 17068:3 17072:2 17083:1 17088:1 17099:1 17103:2 17132:1 17138:1 17143:1 17144:1 17160:1 17166:2 17181:1 17184:1 17199:1 17207:1 17208:1 17213:1 17234:1 17236:2 17240:2 17241:1 17243:1 17250:1 17255:1 17281:1 17284:1 17329:1 17332:1 17356:1 17359:1 17361:2 17372:1 17375:1 17380:1 17383:1 17384:1 17393:2 17395:1 17406:1 17424:1 17436:1 17440:1 17443:1 17447:1 17449:1 17450:1 17452:1 17455:1 17457:1 17459:2 17465:2 17475:1 17484:1 17490:1 17535:2 17541:1 17545:1 17549:2 17555:2 17560:1 17579:1 17604:1 17620:1 17623:1 17632:4 17634:1 17637:2 17639:1 17645:1 17649:1 17662:1 17664:1 17671:2 17672:1 17683:1 17689:1 17692:1 17711:2 17717:1 17727:2 17731:2 17758:4 17766:4 17787:3 17788:1 17812:1 17817:1 17844:1 17855:5 17859:1 17860:2 17884:3 17909:2 17926:1 17929:2 17930:1 17936:2 17937:1 17945:1 17964:1 17980:1 17986:2 18012:1 18013:4 18017:1 18018:2 18019:1 18026:1 18030:1 18035:1 18055:1 18058:1 18076:1 18098:1 18100:1 18123:1 18141:1 18142:1 18146:4 18204:1 18206:2 18210:1 18223:1 18234:2 18245:1 18258:1 18269:1 18300:8 18310:1 18316:1 18332:1 18340:2 18370:1 18374:1 18377:4 18393:1 18395:1 18402:1 18417:1 18419:1 18422:1 18431:1 18447:2 18450:1 18456:1 18462:1 18499:1 18504:1 18507:1 18516:2189 18527:2 18531:1 18538:2 18551:1 18555:1 18566:1 18587:1 18597:1 18604:1 18619:1 18638:3 18648:1 18651:3 18653:1 18678:1 18691:1 18702:1 18707:1 18712:1 18724:1 18775:1 18780:2 18787:1 18802:1 18832:1 18837:1 18850:1 18859:1 18863:1 18864:1 18894:2 18901:1 18902:1 18933:1 18952:1 18969:1 18976:2 18978:1 18982:1 18986:1 19003:1 19013:1 19014:3 19016:2 19034:1 19037:1 19051:1 19083:1 19085:5 19116:5 19120:1 19128:1 19137:1 19175:1 19178:1 19184:1 19189:1 19192:1 19198:1 19219:1 19223:1 19230:1 19239:1 19245:1 19253:1 19257:1 19259:1 19268:1 19276:1 19282:5 19283:4 19290:1 19315:1 19318:4 19333:1 19342:2 19346:1 19362:1 19377:21 19384:1 19399:2 19409:1 19420:2 19421:1 19427:1 19428:1 19447:1 19451:4 19452:1 19454:1 19461:2 19469:1 19477:1 19481:2 19490:3 19491:1 19500:1 19509:1 19530:2 19558:1 19561:1 19573:1 19574:1 19580:1 19584:4 19589:1 19603:1 19609:2 19611:1 19635:1 19638:1 19653:2 19656:1 19658:1 19678:1 19692:1 19697:1 19709:1 19713:2 19715:1 19726:1 19728:1 19732:1 19737:4 19757:1 19768:1 19790:1 19793:1 19813:1 19819:1 19820:3 19822:2 19823:1 19829:1 19835:1 19847:1 19851:2 19861:1 19866:2 19881:1 19896:1 19927:2 19929:6 19937:1 19940:1 19945:1 19947:1 19950:1 19957:1 19962:1 19972:1 19986:1 19992:1 19995:2 20000:1 20001:3 20002:5 20005:1 20021:1 20029:2 20030:5 20031:1 20033:1 20042:1 20043:1 20051:5 20079:2 20099:2 20103:1 20109:3 20117:1 20123:4 20131:1 20132:1 20144:2 20149:1 20156:1 20162:1 20185:1 20199:1 20211:5 20223:2 20244:1 20258:1 20259:1 20268:1 20285:1 20311:1 20338:1 20365:2 20387:1 20390:1 20401:1 20408:1 20451:5 20460:1 20483:1 20484:2 20495:1 20499:2 20500:1 20513:3 20541:1 20555:1 20578:1 20591:1 20601:1 20602:2 20605:1 20623:1 20630:2 20653:1 20661:1 20664:1 20668:1 20674:1 20691:2 20692:2 20697:1 20702:2 20703:1 20704:2 20711:1 20720:1 20725:1 20733:1 20748:1 20754:1 20762:2 20764:2 20767:1 20773:3 20787:1 20788:1 20789:1 20798:1 20799:1 20808:2 20810:2 20828:1 20829:1 20833:1 20840:1 20842:2 20848:1 20853:3 20862:2 20863:1 20866:1 20869:3 20870:2 20878:2 20886:1 20892:4 20918:1 20925:1 20940:1 20942:4 20945:1 20953:2 20958:1 20994:1 20996:1 21001:2 21004:3 21018:1 21021:1 21026:1 21037:2 21057:1 21061:1 21063:1 21071:2 21078:1 21087:1 21106:1 21114:1 21122:1 21132:1 21137:1 21146:1 21151:1 21153:1 21155:1 21171:1 21185:1 21190:1 21196:1 21202:1 21204:1 21206:4 21219:2 21233:1 21237:3 21257:1 21265:1 21271:2 21276:1 21285:1 21286:1 21289:1 21306:1 21308:1 21310:1 21311:1 21313:3 21317:1 21332:1 21341:1 21351:2 21359:1 21361:1 21363:1 21364:2 21369:2 21374:1 21382:1 21397:1 21398:1 21411:1 21414:1 21415:1 21436:1 21442:1 21449:2 21455:2 21464:3 21471:1 21473:1 21475:1 21492:1 21493:2 21506:1 21508:4 21517:1 21530:1 21535:1 21543:1 21544:1 21547:1 21558:3 21562:1 21570:4 21573:1 21574:1 21577:1 21590:1 21610:1 21620:1 21625:5 21658:1 21663:1 21695:1 21696:1 21699:1 21705:5 21711:1 21712:1 21714:1 21715:3 21719:1 21728:3 21739:1 21741:1 21748:1 21763:1 21764:9 21775:1 21791:1 21835:1 21837:1 21843:1 21845:1 21879:2 21881:4 21884:2 21887:1 21895:1 21896:1 21898:2 21906:2 21908:2 21915:1 21918:1 21919:1 21923:5 21924:4 21925:1 21936:1 21937:1 21939:1 21947:1 21955:1 21975:1 21997:1 22000:1 22015:1 22026:2 22028:1 22047:2 22058:2 22062:1 22066:4 22082:2 22095:1 22114:1 22128:3 22133:1 22139:1 22143:1 22144:1 22151:1 22161:3 22170:1 22175:1 22179:2 22192:1 22199:1 22214:1 22219:2 22235:1 22242:2 22248:12 22262:1 22267:2 22275:1 22310:10 22312:2 22316:1 22321:1 22335:1 22362:1 22365:4 22368:2 22370:1 22379:3 22383:2 22416:1 22418:1 22425:7 22432:1 22439:1 22456:3 22457:1 22462:1 22471:1 22475:1 22479:1 22481:1 22490:1 22492:2 22516:1 22533:1 22536:1 22542:1 22543:2 22555:6 22566:2 22582:1 22583:1 22599:3 22640:1 22665:1 22671:1 22676:1 22683:1 22688:1 22691:1 22694:29 22709:1 22713:2 22714:3 22717:1 22718:2 22719:1 22721:1 22727:1 22752:2 22757:3 22759:1 22760:1 22762:1 22770:1 22771:1 22781:1 22805:1 22809:1 22816:1 22838:1 22841:1 22842:5 22852:2 22861:2 22866:1 22871:4 22874:1 22887:1 22899:1 22901:1 22925:1 22986:1 22990:3 23000:3 23008:1 23019:1 23060:1 23074:1 23075:1 23079:1 23083:1 23093:1 23095:3 23103:1 23108:3 23111:1 23115:2 23147:30 23168:3 23169:1 23176:1 23186:1 23199:1 23202:1 23223:1 23227:1 23228:1 23234:1 23235:2 23242:2 23247:6 23267:1 23276:1 23283:1 23289:1 23307:1 23315:1 23321:3 23325:2 23329:1 23336:1 23350:1 23358:1 23359:1 23371:1 23379:2 23381:2 23408:1 23416:1 23460:1 23465:1 23487:1 23490:1 23506:1 23508:1 23509:2 23525:1 23541:1 23543:1 23593:1 23596:1 23610:1 23617:2 23622:1 23641:2 23651:2 23664:2 23670:1 23693:1 23699:3 23740:2 23745:1 23752:1 23766:1 23767:3 23772:1 23775:1 23785:4 23786:1 23788:1 23802:1 23817:1 23825:1 23832:1 23838:1 23846:1 23857:1 23868:1 23884:1 23890:1 23891:1 23895:1 23912:1 23915:2 23932:1 23941:1 23956:1 23957:3 23978:1 23982:2 24001:1 24008:2 24013:1 24028:2 24039:1 24065:1 24067:1 24069:3 24075:2 24076:1 24080:2 24092:2 24093:2 24097:3 24105:1 24114:1 24140:1 24144:3 24147:1 24186:8 24191:1 24202:1 24213:1 24217:1 24220:1 24225:1 24232:1 24235:1 24270:1 24275:1 24286:1 24291:4 24304:1 24326:1 24334:2 24366:1 24379:1 24384:1 24388:3 24393:1 24395:1 24414:1 24420:1 24427:2 24435:1 24444:1 24450:1 24480:3 24484:2 24492:1 24493:1 24495:2 24499:5 24502:1 24503:1 24505:2 24524:1 24536:2 24552:3 24572:1 24576:2 24577:3 24591:1 24612:2 24614:1 24620:1 24623:1 24626:1 24628:4 24631:1 24645:1 24646:1 24653:1 24654:1 24656:1 24661:1 24675:1 24676:1 24687:1 24689:1 24699:1 24707:1 24711:1 24757:1 24766:1 24779:1 24797:1 24802:3 24803:1 24812:1 24815:1 24838:1 24854:4 24858:2 24859:2 24863:1 24871:2 24872:1 24911:1 24919:1 24922:2 24943:1 24971:1 24974:1 24979:1 25025:1 25048:2 25064:1 25069:1 25072:1 25075:2 25077:6 25088:1 25097:5 25100:3 25107:1 25132:2 25133:1 25134:1 25163:1 25166:2 25173:2 25181:1 25192:2 25198:1 25199:1 25205:2 25208:1 25212:1 25215:1 25222:4 25227:1 25236:1 25238:1 25245:1 25248:1 25255:1 25271:1 25277:4 25279:1 25281:2 25283:1 25284:1 25306:1 25309:1 25310:1 25313:1 25328:2 25351:1 25362:1 25378:3 25383:1 25384:1 25387:1 25402:1 25408:1 25413:1 25415:1 25423:2 25440:2 25451:4 25454:2 25461:1 25467:1 25473:1 25485:4 25499:2 25511:2 25516:3 25542:1 25546:5 25552:1 25554:1 25565:1 25573:1 25576:12 25585:2 25599:2 25617:2 25628:1 25636:1 25693:1 25705:1 25707:1 25710:2 25713:3 25715:1 25718:1 25732:1 25740:1 25741:1 25760:2 25766:1 25777:2 25778:1 25803:1 25807:1 25809:1 25812:1 25823:1 25832:1 25844:1 25848:1 25850:2 25860:1 25861:1 25874:1 25875:1 25876:1 25884:2 25885:1 25895:2 25920:3 25929:1 25933:1 25944:2 25955:1 25956:1 25961:1 25964:1 25966:1 25988:1 25989:1 25994:1 25995:4 25998:2 26005:2 26018:2 26019:1 26022:10 26023:1 26027:1 26042:2 26054:1 26061:1 26065:1 26074:1 26088:1 26093:5 26113:1 26119:1 26122:1 26125:1 26128:1 26130:1 26145:1 26148:1 26156:1 26182:1 26202:2 26231:1 26253:3 26268:1 26272:1 26277:1 26278:1 26283:1 26286:1 26333:2 26336:1 26354:1 26356:1 26372:1 26384:1 26399:1 26401:2 26417:1 26428:1 26429:2 26440:2 26450:2 26465:1 26484:1 26489:1 26498:1 26509:1 26525:1 26536:1 26542:1 26546:1 26588:1 26597:1 26609:2 26616:1 26626:1 26630:2 26632:6 26653:1 26654:3 26657:1 26661:2 26663:1 26675:4 26685:1 26691:1 26692:1 26703:3 26712:1 26714:2 26734:1 26742:1 26743:5 26744:1 26746:2 26753:1 26754:1 26757:1 26764:2 26774:1 26778:3 26789:3 26794:2 26796:1 26799:1 26813:1 26818:1 26847:1 26851:1 26866:1 26870:2 26875:1 26878:2 26884:2 26889:1 26894:1 26897:3 26899:1 26901:1 26911:1 26915:1 26918:4 26923:2 26930:2 26931:1 26932:2 26945:2 26968:1 26970:1 26971:2 26979:1 26991:2 26994:1 27035:1 27043:1 27045:1 27054:3 27064:2 27074:1 27082:1 27087:1 27096:1 27100:7 27130:1 27131:1 27145:1 27150:1 27157:1 27164:2 27172:1 27173:1 27176:1 27178:1 27188:3 27196:1 27206:1 27224:1 27227:1 27228:1 27229:1 27230:3 27235:1 27236:1 27249:1 27251:4 27254:2 27258:3 27265:1 27266:2 27269:1 27271:2 27276:3 27287:2 27296:2 27297:1 27299:3 27311:1 27318:1 27320:1 27329:1 27347:7 27353:1 27365:4 27390:1 27392:1 27401:1 27403:1 27405:3 27408:1 27411:3 27418:1 27424:1 27426:1 27448:2 27451:1 27466:1 27468:1 27472:1 27502:1 27504:1 27516:2 27540:1 27548:1 27556:1 27558:1 27615:1 27620:1 27652:1 27658:3 27659:2 27662:2 27666:4 27670:3 27673:6 27675:1 27676:1 27680:1 27689:1 27713:1 27718:1 27722:1 27727:3 27732:1 27734:1 27745:1 27761:1 27764:1 27784:2 27802:2 27808:1 27832:1 27855:1 27858:1 27868:1 27874:2 27898:1 27899:1 27908:1 27909:1 27912:1 27928:2 27945:1 27950:1 27953:1 27956:3 27965:1 27969:13 27970:1 27974:1 27978:1 27981:1 27993:1 27999:2 28008:6 28032:1 28060:1 28076:1 28080:4 28095:1 28105:1 28107:1 28109:1 28117:9 28123:3 28131:1 28134:1 28137:1 28151:1 28152:1 28162:1 28165:11 28170:1 28177:1 28207:1 28212:2 28214:1 28222:1 28231:1 28243:2 28258:1 28283:1 28296:2 28335:1 28345:1 28375:1 28388:1 28392:37 28393:1 28413:1 28416:4 28417:2 28422:1 28423:5 28424:2 28435:1 28457:1 28485:3 28490:8 28491:1 28503:1 28509:1 28512:1 28515:1 28522:1 28529:1 28545:1 28546:2 28584:1 28597:1 28610:2 28615:2 28634:1 28635:1 28647:1 28660:1 28669:4 28690:2 28701:2 28710:1 28753:3 28758:1 28760:1 28775:1 28782:1 28785:1 28787:2 28796:2 28798:1 28803:2 28814:1 28852:1 28854:1 28857:2 28859:2 28865:1 28875:2 28887:1 28894:2 28901:1 28902:1 28903:1 28913:1 28923:1 28927:1 28928:1 28937:1 28940:2 28950:1 28954:1 28959:1 28964:1 28974:1 28976:1 28988:1 28999:1 29000:6 29001:1 29003:2 29005:3 29024:1 29027:1 29031:3 29042:6 29057:3 29062:2 29063:2 29069:1 29073:30 29079:2 29100:1 29120:1 29128:1 29137:1 29139:1 29141:2 29145:1 29146:2 29147:4 29176:1 29179:1 29183:1 29184:1 29194:2 29197:1 29215:1 29223:1 29225:2 29236:1 29240:1
2 12:1 13:1 31:2 32:1 41:1 49:1 52:1 55:1 56:1 59:1 67:1 75:1 85:3 88:1 89:2 91:1 98:1 106:1 113:1 146:2 154:1 160:1 166:1 170:2 174:2 180:1 184:1 193:1 209:1 213:2 223:1 227:1 228:1 241:1 249:2 265:2 271:5 272:1 276:2 286:2 287:1 291:1 292:1 322:1 329:1 358:1 359:3 375:1 376:1 380:1 385:1 388:1 391:1 392:1 395:1 415:2 425:2 429:2 441:1 446:2 452:1 460:1 469:1 471:2 479:2 490:1 501:3 505:1 509:1 515:1 519:1 536:1 544:1 552:1 553:1 562:1 564:1 593:1 607:3 613:2 618:2 620:1 623:1 644:6 658:31 663:3 667:1 670:1 671:1 682:1 686:1 696:1 699:3 702:2 714:1 719:2 725:1 728:2 735:2 745:3 749:1 783:2 809:1 813:2 815:1 817:3 820:2 822:1 823:1 824:3 838:1 857:1 861:3 868:1 876:2 882:1 894:1 904:3 905:7 907:2 908:1 917:5 930:1 937:4 943:1 951:2 957:3 960:6 964:1 965:2 970:1 976:2 980:2 982:3 999:2 1003:1 1006:2 1016:3 1027:1 1029:2 1032:1 1036:1 1048:2 1050:1 1055:4 1056:1 1098:2 1099:1 1100:1 1112:1 1137:1 1146:1 1158:1 1160:3 1190:1 1211:1 1214:30 1220:1 1223:2 1224:2 1227:1 1229:3 1232:1 1245:1 1256:1 1258:2 1260:2 1266:1 1270:1 1275:1 1277:1 1279:2 1280:1 1281:1 1288:1 1290:1 1295:1 1298:1 1302:1 1314:1 1316:1 1338:1 1354:1 1356:2 1380:3 1390:1 1393:1 1395:1 1397:1 1402:2 1404:7 1420:1 1430:1 1444:1 1452:3 1459:1 1462:2 1475:1 1481:1 1493:1 1499:1 1501:1 1502:3 1506:2 1510:10 1516:1 1517:1 1528:1 1532:1 1540:1 1546:2 1548:1 1550:1 1576:3 1582:1 1598:1 1602:3 1615:1 1616:1 1631:1 1636:1 1637:2 1639:1 1647:2 1650:1 1666:1 1672:1 1676:1 1677:7 1685:1 1690:1 1691:2 1705:1 1720:1 1728:1 1740:2 1741:1 1745:3 1757:1 1760:1 1762:1 1776:1 1778:1 1779:1 1783:1 1795:1 1820:1 1827:1 1833:1 1838:1 1840:1 1842:1 1853:1 1866:1 1870:2 1871:2 1877:1 1878:1 1895:1 1897:1 1898:3 1901:1 1907:1 1913:1 1918:2 1921:2 1930:1 1937:1 1941:2 1947:2 1957:2 1959:1 1976:1 1982:1 1992:1 1993:1 2001:1 2022:6 2042:1 2045:1 2048:1 2051:2 2053:1 2076:1 2077:1 2085:1 2094:1 2117:1 2118:2 2123:1 2125:1 2140:1 2144:1 2145:1 2157:1 2161:1 2172:1 2176:1 2181:1 2186:1 2196:8 2217:1 2235:2 2238:1 2239:1 2265:1 2269:1 2291:1 2299:1 2325:1 2329:1 2333:1 2334:1 2335:2 2336:4 2337:1 2338:2 2339:2 2341:1 2342:5 2347:8 2349:3 2352:7 2356:3 2359:1 2362:1 2364:1 2367:1 2369:4 2372:3 2375:1 2376:1 2379:1 2382:1 2383:1 2405:1 2406:1 2421:2 2422:1 2430:5 2433:1 2439:1 2457:2 2460:1 2478:1 2479:1 2487:1 2492:1 2494:3 2495:3 2503:3 2513:2 2514:4 2522:3 2523:1 2531:1 2533:1 2539:1 2550:3 2562:1 2564:1 2571:1 2596:1 2603:2 2604:2 2610:1 2646:2 2663:1 2674:2 2680:1 2681:1 2730:1 2735:1 2736:2 2751:2 2758:2 2767:2 2773:1 2775:1 2777:1 2785:3 2787:1 2791:1 2804:1 2809:1 2812:3 2813:4 2819:1 2822:3 2826:1 2833:1 2839:1 2841:1 2872:3 2877:1 2881:2 2883:5 2886:1 2889:1 2892:2 2901:2 2904:1 2915:1 2937:2 2940:1 2949:2 2956:2 2982:14 2984:31 2986:1 2990:1 2991:3 2998:2 3002:1 3014:1 3018:1 3019:1 3023:4 3024:1 3029:1 3032:1 3039:7 3049:1 3053:4 3057:2 3067:1 3070:1 3091:2 3097:1 3100:1 3101:1 3127:2 3133:3 3139:1 3142:1 3169:3 3196:1 3219:1 3267:1 3278:4 3281:1 3293:1 3297:1 3301:1 3316:1 3337:1 3340:1 3341:1 3351:1 3354:3 3360:1 3368:3 3380:1 3387:1 3393:1 3399:1 3401:4 3419:2 3445:1 3482:1 3486:1 3502:1 3506:1 3521:2 3525:1 3527:1 3536:1 3540:1 3541:1 3550:1 3552:1 3556:2 3564:1 3601:1 3604:1 3612:1 3627:1 3632:1 3642:1 3645:1 3666:2 3677:1 3684:1 3690:1 3697:1 3704:1 3715:1 3734:1 3758:1 3773:3 3774:2 3775:1 3779:2 3782:2 3798:1 3831:3 3833:1 3861:1 3867:1 3872:1 3877:1 3884:3 3886:1 3902:1 3907:2 3909:2 3915:2 3936:1 3938:1 3940:1 3946:3 3960:1 3963:1 3964:1 3985:1 3990:30 3991:2 3998:1 4012:1 4020:1 4049:1 4052:1 4056:1 4066:1 4072:2 4079:4 4081:2 4096:2 4102:1 4108:1 4113:5 4117:5 4118:2 4131:1 4132:2 4171:1 4182:1 4196:1 4208:3 4216:1 4225:1 4231:1 4258:1 4260:1 4262:1 4264:2 4267:1 4269:1 4272:1 4277:1 4293:1 4304:1 4307:1 4309:2 4310:1 4312:3 4317:1 4319:3 4331:1 4357:1 4376:3 4402:1 4405:2 4407:1 4409:1 4412:1 4415:1 4424:1 4432:2 4434:30 4435:1 4443:1 4446:1 4448:1 4452:4 4462:1 4466:1 4475:1 4477:1 4479:1 4527:2 4535:6 4550:1 4553:1 4554:1 4557:1 4564:1 4580:1 4590:3 4604:2 4609:2 4610:1 4618:2 4622:2 4623:1 4629:1 4648:1 4668:7 4676:1 4698:2 4717:1 4744:1 4774:5 4790:1 4796:1 4811:1 4812:1 4818:5 4826:1 4854:1 4863:1 4898:1 4902:2 4903:2 4908:2 4909:1 4916:1 4920:3 4931:1 4942:1 4943:3 4954:1 4974:1 4977:1 4983:1 4997:2 4998:2 5012:16 5013:2 5022:2 5025:1 5046:5 5053:2 5063:2 5087:2 5089:1 5106:1 5138:4 5140:1 5143:3 5149:1 5159:4 5160:4 5161:2 5164:1 5167:5 5173:1 5174:2 5175:4 5176:1 5183:1 5190:2 5192:5 5194:3 5195:1 5205:1 5230:1 5264:1 5267:1 5268:2 5283:1 5300:1 5324:1 5342:1 5361:1 5389:1 5403:1 5427:1 5438:1 5439:2 5440:1 5462:1 5482:1 5485:1 5486:1 5495:1 5496:2 5533:1 5534:3 5549:2 5574:1 5577:2 5579:1 5583:1 5603:1 5606:1 5613:2 5624:1 5626:1 5630:3 5634:1 5690:1 5699:1 5700:1 5712:1 5713:1 5716:1 5723:2 5724:1 5729:1 5740:1 5741:1 5742:1 5762:2 5776:1 5780:7 5784:1 5790:1 5792:1 5794:1 5800:1 5802:2 5807:1 5822:2 5833:1 5839:1 5841:1 5853:2 5860:1 5889:1 5896:1 5908:2 5921:1 5924:1 5926:2 5939:2 5968:3 6005:1 6017:1 6027:1 6034:1 6042:1 6043:1 6063:1 6064:1 6065:1 6076:3 6079:1 6092:1 6097:1 6118:1 6121:1 6143:1 6149:1 6151:2 6168:2 6176:2 6182:2 6187:1 6195:1 6198:1 6203:1 6207:1 6208:2 6211:1 6212:1 6217:1 6220:1 6221:1 6227:1 6247:1 6255:1 6276:1 6281:1 6294:1 6295:2 6296:1 6301:1 6302:1 6304:1 6307:2 6308:1 6311:1 6312:1 6313:1 6315:3 6317:1 6320:1 6322:1 6324:2 6325:2 6326:1 6330:1 6345:1 6356:1 6388:2 6391:1 6399:1 6408:3 6410:2 6416:1 6428:2 6436:1 6448:1 6456:1 6479:2 6486:1 6500:1 6510:1 6523:6 6528:1 6533:1 6534:4 6536:1 6538:1 6539:1 6540:2 6543:4 6545:2 6546:1 6547:1 6550:4 6552:7 6553:1 6560:1 6563:1 6581:1 6595:1 6599:1 6600:2 6615:1 6619:1 6629:1 6657:1 6666:2 6667:1 6674:3 6679:3 6694:1 6702:1 6717:1 6720:1 6736:1 6744:1 6746:1 6749:1 6755:1 6763:1 6769:1 6772:1 6776:1 6785:1 6792:1 6795:2 6796:1 6810:2 6820:1 6831:2 6850:1 6853:1 6866:1 6872:1 6892:1 6899:1 6901:1 6904:1 6908:3 6927:2 6939:1 6960:2 6962:1 6967:1 6974:1 6997:1 7025:1 7030:1 7040:1 7059:1 7063:2 7077:1 7083:1 7101:1 7102:1 7114:1 7117:1 7130:1 7178:1 7184:1 7187:1 7192:2 7203:1 7212:1 7217:6 7264:1 7269:1 7271:1 7277:1 7283:1 7287:2 7295:1 7301:2 7319:1 7332:1 7346:1 7351:1 7369:2 7375:1 7398:1 7406:1 7409:1 7412:1 7413:2 7417:1 7423:1 7428:1 7431:1 7435:1 7442:1 7474:1 7485:1 7495:1 7496:2 7508:1 7522:1 7540:1 7543:2 7562:1 7563:1 7571:1 7574:1 7582:1 7593:1 7596:6 7629:9 7632:1 7636:1 7663:1 7664:2 7679:1 7693:2 7707:1 7716:1 7718:1 7722:1 7725:1 7748:4 7749:1 7779:1 7787:1 7803:3 7815:10 7816:10 7821:1 7833:1 7834:1 7835:5 7837:1 7864:3 7868:3 7871:1 7878:46 7882:1 7883:1 7886:2 7890:1 7891:1 7897:15 7900:4 7903:1 7908:1 7911:1 7932:1 7933:1 7936:2 7941:2 7949:1 7957:1 7985:5 7996:2 8013:1 8014:1 8037:1 8039:2 8054:3 8065:1 8071:1 8075:4 8077:1 8083:1 8087:1 8105:1 8109:5 8119:1 8129:1 8159:1 8162:2 8189:1 8196:1 8249:1 8253:1 8286:1 8290:1 8300:1 8312:2 8348:1 8351:1 8364:1 8376:1 8377:31 8383:1 8384:1 8392:1 8396:1 8402:1 8410:15 8411:4 8426:1 8428:2 8441:1 8443:1 8445:1 8447:1 8449:2 8466:1 8475:1 8480:1 8492:39 8499:1 8501:1 8531:2 8554:1 8561:1 8588:1 8596:1 8605:1 8645:1 8657:1 8659:2 8667:1 8671:1 8674:2 8677:1 8680:1 8683:1 8687:1 8693:5 8694:1 8713:1 8720:1 8725:2 8745:3 8746:1 8750:1 8760:2 8762:1 8763:1 8766:1 8768:1 8778:2 8779:2 8782:1 8783:1 8792:1 8812:1 8813:1 8822:1 8832:1 8836:1 8841:1 8845:1 8850:2 8859:1 8862:3 8883:1 8915:1 8923:1 8928:1 8931:2 8987:3 8989:1 8991:1 9014:2 9052:1 9057:2 9059:1 9061:1 9066:1 9069:2 9086:1 9090:4 9106:1 9110:1 9111:1 9112:3 9118:1 9129:3 9138:1 9139:1 9140:1 9184:1 9191:3 9196:1 9199:1 9204:2 9236:1 9238:5 9247:4 9256:1 9258:1 9264:1 9300:1 9320:4 9343:3 9377:1 9378:4 9382:2 9384:1 9391:1 9393:3 9394:1 9396:1 9400:1 9404:1 9406:2 9408:2 9415:1 9428:1 9429:1 9432:1 9435:1 9442:1 9445:1 9446:1 9447:2 9448:1 9449:1 9456:1 9466:1 9472:1 9473:3 9483:8 9487:1 9490:2 9496:2 9504:1 9506:1 9521:2 9525:1 9534:1 9543:1 9546:1 9558:1 9563:1 9564:2 9571:1 9580:1 9592:1 9607:1 9610:1 9611:2 9616:2 9619:2 9622:1 9623:1 9624:1 9627:1 9628:1 9637:1 9641:1 9642:1 9653:1 9658:1 9660:1 9661:7 9675:1 9677:2 9678:9 9681:1 9689:1 9694:1 9698:1 9701:2 9703:1 9706:1 9715:1 9717:1 9719:3 9721:1 9723:1 9726:1 9738:1 9751:1 9752:1 9773:1 9779:1 9782:1 9795:1 9797:1 9802:1 9803:1 9804:2 9805:1 9813:1 9828:1 9841:1 9855:1 9856:1 9860:1 9887:1 9905:6 9914:1 9915:1 9916:1 9920:1 9921:3 9924:4 9927:1 9936:1 9961:1 9962:1 9974:1 9987:1 10003:1 10016:1 10028:1 10029:1 10046:30 10055:1 10061:1 10069:1 10077:1 10083:1 10092:1 10097:1 10098:1 10102:1 10115:1 10117:1 10122:1 10131:2 10134:1 10138:1 10144:1 10166:1 10170:4 10174:1 10177:3 10184:1 10188:2 10195:2 10220:1 10229:1 10233:1 10242:2 10243:2 10252:1 10260:1 10261:2 10266:2 10268:2 10280:4 10284:5 10292:1 10297:3 10299:1 10322:5 10336:1 10337:1 10339:2 10350:1 10359:1 10362:1 10381:1 10383:2 10388:1 10393:1 10402:1 10404:1 10405:1 10417:1 10426:6 10440:1 10464:1 10518:2 10522:1 10526:1 10542:5 10555:1 10564:2 10573:1 10575:2 10576:1 10582:1 10594:1 10604:1 10609:1 10619:1 10623:1 10624:6 10641:1 10664:3 10681:1 10691:1 10707:1 10725:1 10740:4 10745:1 10758:1 10760:5 10773:1 10786:2 10820:2 10834:1 10840:1 10842:2 10859:1 10860:4 10864:2 10867:6 10874:1 10882:1 10894:1 10907:2 10912:1 10914:1 10922:1 10923:1 10926:1 10929:7 10934:1 10942:1 10947:1 10955:2 10956:1 10976:2 10980:1 10990:1 11005:1 11036:1 11065:1 11066:7 11082:1 11083:1 11089:1 11098:2 11100:1 11108:1 11111:2 11114:3 11117:3 11124:1 11131:1 11143:4 11152:1 11158:1 11167:1 11170:2 11176:1 11178:1 11185:1 11195:1 11197:8 11200:1 11203:1 11215:1 11217:3 11219:4 11220:1 11231:1 11234:2 11237:1 11246:1 11264:1 11266:1 11276:6 11279:1 11283:1 11285:1 11286:1 11293:2 11300:1 11303:2 11311:1 11320:1 11347:2 11373:1 11375:1 11383:1 11385:1 11390:1 11400:1 11404:3 11407:1 11437:2 11455:1 11456:1 11464:2 11466:1 11474:1 11475:1 11476:3 11477:1 11483:2 11484:1 11487:1 11490:1 11502:1 11503:4 11505:1 11508:1 11510:1 11511:1 11518:1 11532:1 11535:3 11552:1 11571:5 11591:1 11606:1 11609:1 11614:1 11617:1 11622:1 11627:1 11629:1 11636:8 11648:2 11649:2 11674:1 11679:1 11695:1 11699:1 11702:1 11714:1 11732:2 11746:1 11750:2 11770:1 11775:6 11797:1 11800:1 11803:1 11809:1 11812:3 11824:1 11827:2 11829:1 11834:1 11838:1 11839:5 11840:3 11845:2 11848:1 11851:4 11854:1 11871:1 11878:1 11881:2 11891:1 11895:2 11899:1 11900:6 11904:1 11907:1 11916:1 11930:1 11931:1 11936:2 11949:1 11955:1 11979:1 11992:3 11995:1 11996:1 12003:4 12011:1 12039:1 12043:3 12054:1 12090:1 12092:1 12109:1 12110:1 12139:1 12142:1 12163:2 12164:1 12179:1 12193:1 12223:1 12224:1 12235:1 12240:3 12261:4 12281:1 12283:1 12289:1 12311:1 12322:1 12330:1 12337:1 12338:1 12339:3 12344:2 12345:1 12354:1 12364:1 12372:1 12376:1 12383:1 12385:1 12406:1 12421:1 12431:1 12444:1 12455:1 12460:2 12461:5 12470:1 12483:1 12505:1 12510:1 12513:2 12522:1 12532:2 12555:1 12563:1 12575:1 12588:1 12597:3 12599:1 12606:1 12612:1 12613:1 12633:1 12635:1 12648:1 12650:1 12657:1 12664:1 12666:1 12722:1 12723:1 12746:1 12763:1 12767:1 12790:3 12792:31 12797:1 12800:1 12809:1 12813:4 12815:1 12821:1 12859:6 12873:1 12884:2 12888:1 12902:1 12916:1 12922:1 12927:1 12932:1 12964:2 12967:1 12969:2 12980:1 13001:1 13008:1 13020:1 13024:2 13027:1 13032:1 13038:1 13045:1 13086:1 13100:2 13111:1 13116:1 13132:1 13141:2 13145:1 13163:1 13174:1 13180:1 13182:1 13183:1 13193:1 13195:1 13217:1 13229:1 13239:1 13257:1 13262:1 13265:1 13268:1 13269:1 13280:1 13286:12 13291:4 13306:1 13307:1 13313:2 13326:1 13340:1 13384:1 13389:1 13400:1 13412:1 13417:1 13418:1 13419:2 13424:2 13427:5 13430:5 13437:1 13462:1 13480:1 13482:1 13491:11 13495:1 13502:1 13584:1 13585:2 13595:1 13626:1 13639:3 13641:4 13647:2 13665:1 13673:1 13675:1 13676:1 13680:1 13688:1 13695:2 13700:2 13705:1 13707:1 13713:1 13716:1 13717:1 13729:2 13732:1 13747:1 13766:1 13770:2 13772:3 13773:1 13775:1 13777:1 13780:1 13782:10 13783:1 13784:1 13786:2 13804:1 13805:2 13806:1 13808:1 13809:1 13814:6 13818:1 13821:1 13827:2 13859:1 13868:1 13869:1 13873:1 13889:1 13901:1 13910:1 13928:1 13935:1 13939:1 13941:2 13951:10 13953:1 13955:2 13963:1 13974:1 13980:1 13988:1 13991:1 13998:1 14001:1 14012:1 14028:1 14030:2 14038:5 14052:1 14055:1 14057:3 14059:1 14069:11 14072:6 14096:1 14107:1 14147:2 14156:2 14166:1 14177:4 14179:1 14202:1 14232:1 14241:1 14259:1 14261:3 14273:1 14275:2 14278:1 14299:1 14308:2 14314:1 14323:1 14329:1 14361:4 14393:1 14422:1 14426:1 14440:1 14449:2 14451:1 14454:1 14460:2 14465:1 14466:2 14468:3 14485:2 14486:1 14497:1 14498:2 14506:2 14516:1 14541:1 14555:1 14557:1 14559:1 14560:2 14564:1 14574:1 14575:2 14576:1 14578:1 14590:1 14592:2 14607:1 14612:1 14613:2 14615:1 14617:1 14621:1 14622:1 14625:1 14627:1 14629:1 14634:1 14638:1 14641:1 14643:1 14652:1 14653:1 14657:1 14659:1 14664:1 14670:2 14684:1 14688:1 14699:31 14705:3 14708:1 14709:1 14714:1 14721:1 14728:1 14736:1 14786:1 14789:1 14792:5 14800:1 14801:1 14806:2 14827:1 14832:1 14847:3 14850:1 14852:1 14863:1 14869:1 14870:1 14887:3 14890:1 14900:1 14902:1 14906:1 14939:1 14941:1 14944:1 14979:1 14993:2 15000:2 15003:1 15010:1 15016:1 15031:1 15054:1 15060:1 15069:1 15070:2 15072:2 15080:1 15087:1 15100:1 15104:2 15105:1 15106:1 15109:7 15113:1 15169:1 15174:1 15188:1 15193:2 15197:1 15208:1 15218:1 15223:1 15237:2 15238:1 15245:2 15247:3 15257:1 15258:1 15267:1 15278:1 15299:1 15315:1 15319:1 15322:1 15340:2 15379:3 15380:1 15386:1 15396:1 15408:1 15409:2 15433:1 15452:1 15458:1 15462:2 15465:1 15478:1 15482:2 15488:1 15491:1 15506:1 15521:1 15526:1 15536:1 15542:1 15555:1 15556:3 15557:3 15566:1 15584:1 15590:1 15608:5 15610:1 15612:1 15616:2 15619:1 15633:1 15653:1 15674:1 15678:1 15690:1 15718:1 15723:1 15730:1 15738:1 15742:2 15755:1 15757:1 15762:4 15778:1 15779:1 15783:1 15796:5 15802:3 15805:1 15818:4 15819:1 15823:1 15827:1 15828:1 15835:3 15844:1 15888:1 15890:1 15897:5 15899:1 15921:4 15923:2 15931:1 15944:1 15946:1 15951:1 15960:1 15961:3 15971:1 15973:2 15988:1 16006:1 16023:1 16025:1 16031:1 16038:1 16051:1 16057:1 16060:12 16062:2 16063:1 16067:1 16096:3 16098:3 16100:1 16105:2 16133:2 16137:1 16139:2 16140:1 16142:1 16143:2 16165:11 16178:1 16183:1 16186:1 16193:1 16200:3 16203:1 16239:2 16250:1 16252:1 16254:1 16262:1 16264:1 16271:2 16285:4 16286:2 16287:1 16291:3 16292:1 16298:1 16299:3 16300:1 16301:2 16304:1 16321:1 16333:1 16357:2 16380:1 16381:1 16387:1 16392:1 16404:1 16413:1 16416:1 16418:1 16419:1 16440:1 16448:1 16452:1 16455:1 16457:1 16468:2 16476:1 16484:1 16510:1 16522:1 16523:1 16524:2 16527:1 16579:1 16590:2 16604:2 16613:1 16617:1 16631:3 16634:1 16644:1 16646:7 16647:1 16649:1 16658:1 16679:1 16687:1 16689:1 16692:1 16712:2 16714:1 16723:1 16724:1 16725:2 16751:1 16757:1 16766:1 16769:1 16773:3 16776:1 16782:1 16797:1 16800:2 16810:1 16811:2 16822:1 16878:1 16881:1 16899:1 16912:1 16926:42 16932:1 16933:2 16934:1 16949:1 16951:1 16963:1 16966:1 16967:4 16998:1 17020:1 17028:1 17030:1 17038:1 17042:1 17047:1 17060:1 17068:3 17072:2 17083:1 17088:1 17099:1 17103:2 17132:1 17138:1 17143:1 17144:1 17160:1 17166:2 17181:1 17184:1 17199:1 17207:1 17208:1 17213:1 17234:1 17236:2 17240:2 17241:1 17243:1 17250:1 17255:1 17281:1 17284:1 17329:1 17332:1 17356:1 17359:1 17361:2 17372:1 17375:1 17380:1 17383:1 17384:1 17393:2 17395:1 17406:1 17424:1 17436:1 17440:1 17443:1 17447:1 17449:1 17450:1 17452:1 17455:1 17457:1 17459:2 17465:2 17475:1 17484:1 17490:1 17535:2 17541:1 17545:1 17549:2 17555:2 17560:1 17579:1 17604:1 17620:1 17623:1 17632:4 17634:1 17637:2 17639:1 17645:1 17649:1 17662:1 17664:1 17671:2 17672:1 17683:1 17689:1 17692:1 17711:2 17717:1 17727:2 17731:2 17758:4 17759:1 17766:4 17787:4 17788:1 17812:1 17817:1 17844:1 17855:5 17859:1 17860:2 17884:3 17909:2 17926:1 17929:2 17930:1 17936:2 17937:1 17945:1 17964:1 17980:1 17986:2 18012:1 18013:4 18017:1 18018:2 18019:1 18026:1 18030:1 18035:1 18055:1 18058:1 18076:1 18098:1 18100:2 18104:1 18123:1 18141:1 18142:1 18146:4 18204:1 18206:2 18210:1 18223:1 18234:2 18245:1 18258:1 18269:1 18300:8 18310:1 18316:1 18332:1 18340:2 18370:1 18374:1 18377:4 18393:1 18395:1 18402:1 18417:1 18419:1 18422:1 18431:1 18447:2 18450:1 18456:1 18462:1 18499:1 18504:1 18507:1 18516:2242 18527:2 18531:1 18538:2 18551:1 18555:1 18566:1 18587:1 18597:1 18604:1 18619:1 18638:3 18648:1 18651:3 18653:1 18678:1 18691:1 18702:1 18707:1 18712:1 18724:1 18775:1 18780:2 18787:1 18802:1 18832:1 18837:1 18850:1 18859:1 18863:1 18864:1 18894:2 18901:1 18902:1 18933:1 18952:1 18969:1 18976:2 18978:1 18982:1 18986:1 19003:1 19013:1 19014:3 19016:2 19034:1 19037:1 19051:1 19083:1 19085:5 19116:5 19120:1 19128:1 19137:1 19175:1 19178:1 19184:1 19189:1 19192:1 19198:1 19219:1 19223:1 19230:1 19239:1 19245:1 19253:1 19257:1 19259:1 19268:1 19276:1 19282:5 19283:4 19290:1 19315:1 19318:4 19333:1 19342:2 19346:1 19362:1 19377:21 19384:1 19399:2 19409:1 19420:2 19421:1 19427:1 19428:1 19447:1 19451:4 19452:1 19454:1 19461:2 19469:1 19477:1 19481:2 19490:3 19491:1 19500:1 19509:1 19530:2 19558:1 19561:1 19573:1 19574:1 19580:1 19584:4 19589:1 19603:1 19609:2 19611:1 19635:1 19638:1 19653:2 19656:1 19658:1 19678:1 19692:1 19697:1 19709:1 19713:2 19715:1 19726:1 19728:1 19732:1 19737:4 19757:1 19768:1 19790:1 19793:1 19813:1 19819:1 19820:3 19822:2 19823:1 19829:1 19835:1 19847:1 19851:2 19861:1 19866:2 19881:1 19896:1 19927:2 19929:6 19937:1 19940:1 19945:1 19947:1 19950:1 19957:1 19962:1 19972:2 19986:1 19992:2 19995:2 20000:1 20001:3 20002:5 20005:1 20021:1 20029:2 20030:6 20031:1 20033:1 20042:1 20043:1 20051:5 20079:2 20099:2 20103:1 20109:3 20117:1 20123:4 20131:1 20132:1 20144:2 20149:1 20156:1 20162:2 20185:1 20199:1 20211:5 20223:2 20244:1 20258:1 20259:1 20268:1 20285:1 20311:1 20338:1 20365:2 20387:1 20390:1 20401:1 20408:1 20451:5 20460:1 20483:1 20484:2 20495:1 20499:2 20500:1 20513:3 20541:1 20555:1 20578:1 20591:1 20601:1 20602:2 20605:1 20623:1 20630:2 20653:1 20661:1 20664:1 20668:1 20674:1 20691:2 20692:2 20697:1 20702:2 20703:1 20704:2 20711:1 20720:1 20725:1 20733:1 20748:1 20754:1 20762:2 20764:2 20767:1 20773:3 20787:1 20788:1 20789:1 20798:1 20799:1 20808:2 20810:2 20828:1 20829:1 20833:1 20840:2 20842:2 20848:1 20853:4 20862:2 20863:1 20866:1 20869:3 20870:2 20878:2 20886:1 20892:4 20899:1 20918:1 20925:1 20940:1 20942:5 20945:1 20953:2 20958:1 20994:1 20996:1 21001:2 21004:3 21018:1 21021:1 21026:1 21037:2 21057:1 21061:1 21063:1 21071:2 21078:1 21087:1 21106:1 21114:1 21122:1 21132:1 21137:1 21146:1 21151:1 21153:1 21155:1 21171:1 21185:1 21190:1 21196:1 21202:2 21204:1 21206:4 21219:2 21233:1 21237:3 21257:1 21265:1 21271:2 21276:1 21285:1 21286:1 21289:1 21306:1 21308:1 21310:1 21311:1 21313:4 21317:1 21332:1 21341:1 21351:2 21359:1 21361:1 21363:1 21364:2 21369:2 21374:1 21382:1 21397:1 21398:1 21411:1 21414:1 21415:1 21436:1 21442:1 21449:2 21455:2 21464:3 21471:1 21473:1 21475:1 21492:1 21493:2 21506:1 21508:4 21517:1 21530:1 21535:1 21543:1 21544:1 21547:1 21558:3 21562:1 21570:4 21573:1 21574:1 21577:1 21590:1 21610:1 21620:1 21625:5 21658:1 21663:1 21695:2 21696:1 21699:1 21705:6 21711:2 21712:1 21714:1 21715:3 21719:1 21728:3 21739:1 21741:1 21748:1 21763:1 21764:9 21775:1 21791:1 21835:1 21837:1 21843:1 21845:1 21877:1 21879:2 21881:4 21884:2 21887:1 21895:1 21896:1 21898:2 21906:2 21908:2 21915:1 21918:1 21919:1 21923:5 21924:4 21925:1 21936:1 21937:1 21939:1 21947:1 21955:1 21975:1 21997:1 22000:1 22015:1 22026:3 22028:1 22047:2 22058:2 22062:1 22066:4 22082:2 22095:1 22114:1 22128:3 22133:1 22139:1 22143:1 22144:1 22151:1 22161:3 22170:1 22175:2 22179:2 22192:1 22199:1 22214:1 22219:2 22235:1 22242:2 22248:13 22262:1 22267:2 22275:1 22310:11 22312:2 22316:1 22321:1 22335:1 22362:1 22365:4 22368:2 22370:1 22379:4 22383:2 22416:1 22418:1 22425:7 22432:1 22439:1 22456:3 22457:1 22462:1 22471:1 22475:1 22479:1 22481:1 22490:1 22492:2 22516:1 22533:1 22536:1 22542:1 22543:2 22555:8 22566:3 22582:1 22583:1 22599:3 22640:1 22665:1 22667:1 22671:1 22676:1 22683:1 22688:1 22691:1 22694:30 22709:1 22713:2 22714:3 22717:1 22718:2 22719:1 22721:1 22723:1 22727:1 22752:2 22757:3 22759:1 22760:1 22762:1 22770:1 22771:1 22781:1 22805:1 22809:1 22816:1 22838:1 22841:1 22842:5 22852:2 22861:2 22866:1 22871:4 22874:1 22887:1 22899:1 22901:1 22925:1 22986:1 22990:3 23000:3 23008:1 23019:1 23060:1 23074:1 23075:1 23079:1 23083:1 23093:1 23095:3 23103:1 23108:3 23109:1 23111:1 23115:2 23147:31 23168:3 23169:1 23176:1 23186:1 23199:1 23202:1 23223:1 23227:1 23228:1 23234:1 23235:2 23242:2 23247:6 23267:1 23276:1 23283:1 23289:1 23307:1 23315:1 23321:3 23325:2 23329:1 23336:1 23348:1 23350:1 23358:1 23359:1 23371:1 23379:2 23381:2 23408:1 23416:1 23460:1 23465:1 23487:1 23490:1 23506:2 23508:1 23509:2 23525:1 23541:1 23543:1 23593:1 23596:1 23610:1 23617:2 23622:1 23641:2 23651:2 23664:2 23670:1 23693:1 23699:3 23740:2 23745:1 23752:1 23766:1 23767:3 23772:1 23775:1 23785:4 23786:1 23788:1 23802:1 23817:1 23825:1 23832:1 23838:1 23846:1 23857:1 23868:1 23884:1 23890:1 23891:1 23895:1 23912:1 23915:2 23932:1 23941:1 23956:1 23957:3 23978:1 23982:2 24001:1 24008:2 24013:1 24028:2 24039:1 24065:1 24067:1 24069:3 24075:2 24076:1 24080:2 24092:2 24093:2 24097:3 24105:1 24114:1 24140:1 24144:3 24147:1 24186:8 24191:1 24202:1 24213:1 24217:1 24220:1 24225:1 24232:1 24235:1 24270:1 24275:1 24286:1 24291:4 24304:1 24326:1 24334:2 24366:1 24379:1 24384:1 24388:3 24393:1 24395:1 24414:1 24420:1 24427:2 24435:1 24444:1 24450:1 24480:3 24484:2 24492:1 24493:1 24495:2 24499:5 24502:1 24503:1 24505:2 24524:1 24536:2 24552:3 24572:1 24576:2 24577:3 24591:1 24594:1 24612:2 24614:1 24620:1 24623:1 24626:1 24628:4 24631:1 24645:1 24646:1 24653:1 24654:1 24656:1 24661:1 24675:1 24676:1 24687:1 24689:1 24699:1 24707:1 24711:1 24757:1 24766:1 24779:1 24797:1 24802:3 24803:1 24812:1 24815:1 24838:1 24854:4 24858:2 24859:2 24863:1 24871:2 24872:1 24911:1 24919:1 24922:2 24943:1 24971:1 24974:1 24979:1 25025:1 25048:2 25064:1 25069:1 25072:1 25075:2 25077:6 25088:1 25097:5 25100:3 25107:1 25132:2 25133:1 25134:1 25163:1 25166:2 25173:2 25181:1 25192:2 25198:1 25199:1 25205:2 25208:1 25212:1 25215:1 25222:4 25227:1 25236:1 25238:1 25245:1 25248:1 25255:1 25271:1 25277:4 25279:1 25281:2 25283:1 25284:1 25306:1 25309:1 25310:1 25313:1 25328:2 25351:1 25362:1 25365:1 25378:3 25383:1 25384:1 25387:1 25402:1 25408:1 25413:1 25415:1 25423:2 25440:2 25451:4 25454:2 25461:1 25467:1 25473:1 25485:4 25499:2 25511:2 25516:3 25542:1 25546:5 25552:1 25554:1 25565:1 25573:1 25576:12 25585:2 25599:2 25617:2 25628:1 25636:1 25693:1 25705:1 25707:1 25710:2 25713:3 25715:1 25718:1 25732:2 25740:1 25741:1 25760:2 25766:1 25777:2 25778:1 25803:1 25807:1 25809:1 25812:1 25823:1 25832:1 25844:1 25848:1 25849:1 25850:2 25860:1 25861:1 25874:1 25875:1 25876:1 25884:2 25885:1 25895:2 25920:3 25929:1 25933:1 25944:2 25955:1 25956:1 25961:1 25964:1 25966:2 25988:1 25989:1 25994:1 25995:4 25998:2 26005:2 26018:2 26019:1 26022:10 26023:1 26027:1 26042:2 26054:1 26061:1 26065:1 26074:1 26088:1 26093:5 26113:1 26119:1 26122:1 26125:1 26128:1 26130:1 26145:1 26148:1 26156:1 26182:1 26202:2 26231:2 26253:3 26268:1 26272:1 26277:1 26278:1 26283:1 26286:1 26333:2 26336:1 26354:1 26356:2 26372:1 26384:1 26399:1 26401:2 26417:1 26428:1 26429:2 26440:2 26450:2 26465:1 26484:1 26489:1 26498:1 26509:1 26525:1 26536:1 26542:1 26546:1 26588:1 26597:1 26609:2 26616:1 26626:1 26630:2 26632:6 26653:1 26654:3 26657:1 26661:2 26663:1 26675:4 26685:1 26691:1 26692:1 26703:3 26712:1 26714:2 26734:1 26742:1 26743:6 26744:1 26746:2 26753:1 26754:1 26757:1 26764:2 26774:1 26778:3 26789:3 26794:2 26796:1 26799:1 26813:1 26818:1 26847:1 26851:1 26866:1 26870:2 26875:1 26878:2 26884:2 26889:1 26894:1 26897:3 26899:1 26901:1 26911:1 26915:1 26918:5 26923:2 26930:2 26931:1 26932:2 26945:2 26968:1 26970:1 26971:2 26979:1 26991:2 26994:1 27003:1 27035:2 27043:1 27045:1 27054:3 27064:2 27074:1 27082:1 27087:1 27096:1 27100:8 27130:1 27131:1 27145:1 27150:1 27157:1 27164:2 27172:1 27173:1 27176:1 27178:1 27188:3 27196:1 27206:1 27224:1 27227:1 27228:1 27229:1 27230:3 27235:1 27236:1 27249:1 27251:5 27254:2 27258:3 27265:1 27266:2 27269:1 27271:2 27276:3 27287:2 27296:2 27297:1 27299:3 27311:1 27318:1 27320:1 27329:1 27347:7 27353:1 27365:4 27390:1 27392:1 27401:1 27403:1 27405:3 27408:1 27411:3 27418:1 27424:1 27426:1 27448:2 27451:1 27466:1 27468:1 27472:1 27502:1 27504:1 27516:2 27540:1 27548:1 27556:1 27558:1 27615:1 27620:1 27652:1 27658:3 27659:2 27662:2 27663:1 27666:4 27670:3 27673:6 27675:1 27676:1 27680:1 27689:1 27713:1 27718:1 27722:1 27727:3 27732:1 27734:1 27745:1 27761:1 27764:1 27784:2 27802:2 27808:1 27832:2 27855:1 27858:1 27868:1 27874:2 27898:1 27899:1 27908:1 27909:1 27912:1 27928:2 27945:1 27950:1 27953:1 27956:3 27965:1 27969:13 27970:1 27974:1 27978:1 27981:1 27993:1 27999:3 28008:6 28032:1 28060:1 28076:1 28080:4 28095:1 28105:1 28107:1 28109:2 28117:9 28123:3 28131:1 28134:1 28137:1 28151:1 28152:1 28162:1 28165:11 28170:1 28177:1 28207:1 28212:2 28214:1 28222:1 28231:1 28243:2 28258:1 28283:1 28296:2 28335:1 28345:1 28375:1 28388:1 28392:39 28393:1 28413:1 28416:4 28417:2 28422:1 28423:5 28424:2 28435:1 28457:1 28485:3 28490:8 28491:1 28503:1 28509:1 28512:2 28515:1 28522:1 28529:1 28545:1 28546:2 28584:1 28597:1 28610:2 28615:2 28634:1 28635:1 28647:1 28660:1 28669:4 28690:2 28701:2 28710:1 28753:3 28758:1 28760:1 28775:1 28782:1 28785:1 28787:2 28796:2 28798:1 28803:2 28804:1 28814:1 28852:1 28854:1 28857:2 28859:2 28865:1 28875:2 28887:1 28894:2 28901:1 28902:1 28903:1 28913:1 28923:1 28927:1 28928:1 28937:1 28940:2 28950:1 28954:1 28959:1 28964:1 28974:1 28976:1 28986:1 28988:1 28999:1 29000:6 29001:1 29003:2 29005:3 29024:1 29027:1 29031:3 29042:6 29057:4 29062:2 29063:2 29069:1 29073:31 29079:2 29100:1 29120:1 29128:1 29137:1 29139:1 29141:2 29145:1 29146:2 29147:4 29176:1 29179:1 29183:1 29184:2 29194:2 29197:1 29215:1 29223:1 29225:2 29236:1 29240:1
2 12:1 13:1 31:2 32:1 36:1 41:1 49:1 52:1 55:1 56:1 59:1 67:1 75:1 85:3 88:1 89:2 91:1 98:1 106:1 113:1 146:2 154:1 160:1 166:1 170:2 174:2 180:1 184:1 193:1 196:1 209:1 213:2 223:1 227:1 228:1 241:1 249:2 265:2 271:5 272:1 276:2 286:2 287:1 291:1 292:1 322:1 329:1 358:1 359:4 375:1 376:2 380:1 385:1 388:1 391:1 392:1 395:1 415:2 425:2 429:2 441:1 446:2 452:1 460:1 469:1 471:2 479:2 490:1 501:3 505:1 509:1 515:1 519:1 536:1 544:1 552:1 553:1 562:1 564:1 571:1 593:1 607:3 613:2 618:2 620:1 623:1 644:6 658:32 663:4 667:1 670:1 671:1 682:1 686:1 696:1 699:3 702:2 714:1 719:2 725:1 728:2 735:2 745:3 749:1 783:2 809:1 813:2 815:1 817:3 820:2 822:1 823:1 824:3 838:1 857:1 861:3 868:1 876:2 882:1 894:1 904:3 905:7 907:2 908:1 917:5 930:1 937:4 943:1 951:2 957:3 960:7 964:1 965:2 970:1 976:2 980:2 982:3 999:2 1003:1 1006:2 1016:3 1027:1 1029:2 1032:1 1036:1 1048:2 1050:1 1055:4 1056:1 1058:1 1098:2 1099:1 1100:1 1112:1 1137:1 1146:1 1158:1 1160:3 1190:1 1211:1 1214:31 1220:1 1223:2 1224:2 1227:1 1229:4 1232:1 1245:1 1256:1 1258:2 1260:2 1266:1 1270:1 1275:1 1277:1 1279:2 1280:1 1281:1 1288:1 1290:1 1295:1 1298:1 1302:1 1314:1 1316:1 1338:1 1354:1 1356:2 1380:4 1390:1 1393:1 1395:1 1397:1 1402:2 1404:8 1420:1 1430:1 1444:1 1452:3 1459:1 1462:2 1475:1 1481:1 1493:1 1499:1 1501:1 1502:3 1506:2 1510:11 1512:1 1516:1 1517:1 1528:1 1532:1 1540:1 1546:2 1548:1 1550:1 1576:3 1582:1 1598:1 1602:3 1615:1 1616:1 1631:1 1636:1 1637:2 1639:1 1647:2 1650:1 1666:1 1672:1 1676:1 1677:8 1685:1 1690:1 1691:2 1705:1 1720:1 1728:1 1740:2 1741:1 1745:3 1757:1 1760:1 1762:1 1776:1 1778:1 1779:1 1783:1 1795:1 1820:1 1827:1 1833:1 1838:1 1840:1 1842:1 1853:1 1866:1 1870:2 1871:2 1877:1 1878:1 1895:1 1897:1 1898:3 1901:1 1907:1 1913:1 1918:2 1921:2 1930:1 1937:1 1941:2 1947:2 1957:2 1959:1 1976:1 1982:1 1992:1 1993:1 2001:1 2022:7 2042:1 2045:1 2048:1 2051:2 2053:1 2076:1 2077:1 2085:1 2094:1 2115:1 2117:1 2118:2 2123:1 2125:1 2140:1 2144:1 2145:1 2157:1 2161:1 2172:1 2176:1 2181:1 2186:1 2196:8 2217:1 2235:2 2238:1 2239:1 2265:1 2269:1 2291:1 2299:1 2325:1 2329:1 2333:1 2334:1 2335:2 2336:4 2337:2 2338:2 2339:2 2341:1 2342:5 2347:8 2349:3 2352:7 2356:3 2359:1 2362:1 2364:1 2367:1 2369:4 2372:3 2375:1 2376:1 2379:1 2382:1 2383:1 2405:1 2406:1 2421:2 2422:1 2430:5 2433:1 2439:1 2457:2 2460:1 2478:1 2479:1 2487:1 2492:1 2494:4 2495:3 2503:3 2513:2 2514:4 2522:3 2523:1 2531:1 2533:1 2539:1 2550:3 2562:1 2564:1 2571:1 2596:1 2603:2 2604:2 2610:1 2624:1 2646:2 2660:1 2663:1 2674:2 2680:1 2681:1 2730:1 2735:1 2736:2 2751:2 2758:2 2767:2 2773:1 2775:1 2777:1 2785:3 2787:1 2791:1 2804:1 2809:1 2812:3 2813:4 2819:1 2822:3 2826:1 2833:1 2839:1 2841:1 2872:3 2877:1 2881:3 2883:5 2886:1 2889:1 2892:2 2901:2 2904:1 2915:1 2937:2 2940:1 2949:2 2956:2 2982:14 2984:32 2986:1 2990:1 2991:3 2998:2 3002:1 3014:1 3018:1 3019:1 3023:4 3024:1 3029:1 3032:1 3039:7 3049:1 3053:4 3057:2 3067:1 3070:1 3091:2 3097:1 3100:1 3101:1 3127:2 3133:3 3139:1 3142:1 3169:3 3196:1 3219:1 3226:1 3267:1 3278:4 3281:1 3293:1 3297:1 3301:1 3316:1 3337:1 3340:1 3341:1 3351:1 3354:3 3360:1 3368:3 3380:1 3387:1 3393:1 3399:1 3401:4 3419:2 3445:1 3482:1 3486:1 3502:1 3506:1 3521:2 3525:1 3527:1 3536:1 3540:1 3541:1 3550:1 3552:1 3556:2 3564:1 3574:1 3601:1 3604:1 3612:1 3627:1 3628:1 3632:1 3642:1 3645:1 3666:2 3677:1 3684:1 3690:1 3697:1 3704:1 3715:1 3734:1 3758:1 3773:3 3774:2 3775:1 3779:2 3782:2 3798:1 3831:3 3833:1 3861:1 3867:1 3872:2 3877:1 3884:3 3886:1 3902:1 3907:2 3909:2 3915:2 3936:1 3938:1 3940:1 3946:3 3960:1 3963:1 3964:1 3985:1 3990:31 3991:2 3998:1 4012:1 4020:1 4049:1 4052:1 4053:1 4056:1 4066:1 4072:2 4079:4 4081:3 4096:2 4102:1 4108:1 4113:5 4117:5 4118:2 4131:1 4132:2 4148:1 4171:1 4182:1 4195:1 4196:2 4208:3 4216:1 4225:1 4231:1 4258:1 4260:1 4262:1 4264:2 4267:1 4269:1 4272:1 4277:1 4293:1 4304:1 4307:1 4309:2 4310:1 4312:3 4317:1 4319:3 4331:1 4357:1 4376:3 4402:1 4405:2 4407:1 4409:1 4412:1 4415:1 4424:1 4432:2 4434:31 4435:1 4443:1 4446:1 4448:1 4452:4 4462:1 4466:1 4475:1 4477:1 4479:1 4527:2 4535:6 4550:1 4553:1 4554:1 4557:1 4564:1 4580:1 4590:3 4604:2 4609:2 4610:1 4618:2 4622:2 4623:1 4629:1 4648:1 4668:7 4676:1 4698:2 4717:1 4744:1 4774:5 4790:1 4796:1 4811:1 4812:1 4818:5 4826:1 4854:1 4863:1 4883:1 4898:1 4902:2 4903:2 4908:2 4909:1 4916:1 4920:3 4931:1 4942:1 4943:3 4954:1 4974:1 4977:1 4983:1 4997:2 4998:2 5012:17 5013:2 5022:2 5025:1 5046:6 5053:2 5063:2 5087:2 5089:1 5106:1 5138:4 5140:1 5143:3 5149:1 5159:4 5160:4 5161:2 5164:1 5167:5 5173:1 5174:2 5175:4 5176:1 5183:1 5190:2 5192:5 5194:3 5195:1 5205:1 5230:1 5264:1 5267:1 5268:2 5283:1 5300:1 5324:1 5342:1 5361:1 5389:1 5403:1 5427:1 5438:1 5439:2 5440:1 5462:1 5482:1 5485:1 5486:1 5495:1 5496:2 5533:1 5534:3 5549:2 5574:1 5577:2 5579:1 5583:1 5603:1 5606:1 5613:2 5624:1 5626:1 5630:3 5634:1 5690:1 5699:1 5700:1 5712:1 5713:1 5716:1 5723:2 5724:1 5729:1 5740:1 5741:1 5742:1 5762:2 5776:1 5780:8 5784:1 5790:1 5792:1 5794:1 5800:1 5802:2 5807:1 5822:2 5833:2 5839:1 5841:1 5853:2 5860:1 5889:1 5896:1 5908:2 5921:1 5924:1 5926:2 5939:2 5968:3 6005:1 6017:1 6027:1 6034:1 6042:1 6043:1 6063:1 6064:1 6065:2 6076:3 6079:1 6092:1 6097:1 6118:1 6121:1 6143:1 6149:1 6151:2 6168:2 6176:2 6182:2 6187:1 6195:1 6198:1 6203:1 6207:1 6208:3 6211:1 6212:1 6217:1 6220:1 6221:1 6227:1 6247:1 6255:1 6276:1 6281:1 6294:2 6295:2 6296:1 6301:1 6302:1 6304:1 6307:2 6308:1 6311:1 6312:1 6313:1 6315:3 6317:1 6320:2 6322:1 6324:2 6325:2 6326:1 6330:1 6345:1 6356:1 6388:2 6391:1 6399:1 6408:4 6410:2 6416:1 6428:2 6436:1 6448:1 6456:1 6479:2 6486:1 6500:1 6510:1 6523:7 6528:1 6533:1 6534:4 6536:1 6538:1 6539:1 6540:2 6543:4 6545:2 6546:1 6547:1 6550:4 6552:8 6553:1 6554:1 6560:1 6563:1 6581:1 6595:1 6599:1 6600:2 6615:1 6619:1 6629:1 6637:1 6657:1 6666:2 6667:1 6674:3 6679:3 6694:1 6702:1 6717:1 6720:1 6736:1 6744:1 6746:1 6747:1 6749:1 6755:1 6762:1 6763:1 6769:1 6772:1 6776:1 6785:1 6792:1 6795:2 6796:1 6810:2 6820:1 6831:2 6850:1 6853:1 6866:1 6872:1 6892:1 6899:1 6901:1 6904:1 6908:3 6927:2 6939:1 6960:2 6962:1 6967:1 6974:1 6991:1 6997:1 7025:1 7030:1 7040:1 7059:1 7063:2 7077:1 7083:1 7101:1 7102:1 7114:1 7117:1 7130:1 7178:1 7180:1 7184:1 7187:1 7192:2 7203:1 7212:1 7217:6 7264:1 7269:1 7271:1 7277:1 7283:1 7287:2 7295:1 7301:2 7319:1 7332:1 7346:1 7351:1 7369:2 7375:1 7398:1 7406:1 7409:2 7412:1 7413:2 7417:1 7423:1 7428:1 7431:1 7435:1 7442:1 7447:1 7474:1 7485:1 7495:1 7496:2 7508:1 7522:1 7540:1 7543:2 7562:1 7563:1 7571:1 7574:1 7582:1 7593:1 7596:6 7629:9 7632:1 7636:1 7663:1 7664:2 7679:1 7693:2 7707:1 7716:1 7718:1 7722:1 7725:1 7748:4 7749:1 7779:1 7787:1 7803:3 7815:11 7816:11 7821:1 7833:1 7834:1 7835:5 7837:1 7864:3 7868:4 7871:1 7878:47 7882:1 7883:1 7886:2 7890:1 7891:1 7897:15 7900:4 7903:1 7908:1 7911:1 7932:1 7933:1 7936:2 7941:2 7949:1 7957:1 7985:5 7996:2 8013:1 8014:1 8037:1 8039:2 8054:3 8065:1 8071:1 8075:4 8077:1 8083:1 8087:1 8105:1 8109:6 8119:1 8129:1 8159:1 8162:2 8189:1 8196:1 8249:1 8253:1 8286:1 8290:1 8300:1 8312:2 8316:1 8348:1 8351:1 8364:1 8376:1 8377:32 8383:1 8384:1 8392:1 8396:1 8402:1 8410:15 8411:4 8426:1 8428:2 8441:1 8443:1 8445:1 8447:1 8449:2 8466:1 8475:1 8480:1 8492:40 8499:1 8501:1 8531:2 8554:1 8561:1 8588:1 8596:1 8605:1 8645:1 8657:1 8659:2 8667:1 8671:1 8674:2 8677:1 8680:1 8683:1 8687:1 8693:5 8694:1 8713:1 8720:1 8725:2 8745:3 8746:1 8750:1 8760:2 8762:1 8763:1 8766:1 8768:1 8778:2 8779:2 8782:1 8783:1 8792:1 8812:1 8813:1 8822:1 8832:1 8836:1 8841:1 8845:1 8850:2 8859:1 8862:3 8883:1 8915:1 8923:1 8926:1 8928:1 8931:2 8987:3 8989:1 8991:1 9014:2 9052:1 9057:2 9059:1 9061:1 9066:1 9069:2 9086:1 9090:4 9106:1 9110:1 9111:1 9112:3 9118:1 9129:3 9138:1 9139:1 9140:1 9184:1 9191:3 9196:1 9199:1 9204:2 9236:1 9238:5 9247:4 9256:1 9258:1 9264:1 9300:1 9320:4 9343:3 9377:1 9378:4 9382:2 9384:1 9391:2 9393:3 9394:1 9396:1 9400:1 9404:1 9406:2 9408:2 9415:1 9428:1 9429:1 9432:1 9435:1 9442:1 9445:1 9446:1 9447:2 9448:1 9449:1 9456:1 9466:1 9472:1 9473:3 9483:8 9487:1 9490:2 9496:2 9504:1 9506:1 9521:2 9525:1 9534:1 9543:1 9546:2 9558:1 9563:2 9564:2 9571:1 9580:1 9592:1 9607:1 9610:1 9611:2 9616:2 9619:2 9622:1 9623:1 9624:1 9627:1 9628:1 9637:1 9641:1 9642:1 9653:1 9658:1 9660:1 9661:8 9675:1 9677:2 9678:9 9681:1 9689:1 9694:1 9698:1 9701:2 9703:1 9706:1 9715:1 9717:1 9719:3 9721:1 9723:1 9726:1 9738:1 9751:1 9752:1 9773:1 9779:1 9782:1 9795:1 9797:1 9802:1 9803:1 9804:2 9805:1 9813:1 9828:1 9841:1 9855:1 9856:1 9860:1 9887:1 9905:6 9914:1 9915:1 9916:1 9920:1 9921:3 9924:4 9927:1 9936:1 9961:1 9962:1 9974:1 9987:1 10003:1 10016:1 10028:1 10029:1 10046:31 10055:1 10061:1 10069:1 10077:1 10083:2 10092:1 10097:1 10098:1 10102:1 10115:1 10117:1 10122:1 10131:2 10134:1 10138:1 10144:1 10166:1 10170:4 10174:1 10177:3 10184:1 10188:2 10195:2 10220:1 10229:1 10233:1 10242:2 10243:2 10252:1 10260:1 10261:2 10266:2 10268:2 10280:4 10284:5 10292:1 10297:3 10299:1 10322:5 10336:1 10337:1 10339:2 10350:1 10359:1 10362:1 10381:1 10383:2 10388:1 10393:1 10402:1 10404:1 10405:1 10417:1 10426:7 10440:1 10464:1 10518:2 10522:1 10526:1 10542:5 10555:1 10564:2 10573:1 10575:2 10576:1 10582:1 10594:1 10604:1 10609:1 10619:1 10623:1 10624:7 10641:1 10664:3 10681:1 10691:1 10705:1 10707:1 10725:1 10740:4 10745:1 10758:1 10760:5 10770:1 10773:1 10786:2 10820:2 10834:1 10840:1 10842:2 10859:1 10860:4 10864:2 10867:6 10874:1 10882:1 10894:1 10907:2 10912:1 10914:1 10922:1 10923:1 10926:1 10929:7 10934:1 10942:1 10947:1 10955:2 10956:1 10976:2 10980:1 10990:1 11005:1 11036:1 11065:1 11066:8 11082:1 11083:1 11089:1 11098:2 11100:1 11108:1 11111:2 11114:3 11117:3 11124:1 11131:1 11143:4 11152:1 11158:1 11167:1 11170:2 11176:1 11178:1 11185:1 11195:1 11197:8 11200:1 11203:1 11215:1 11217:3 11219:4 11220:1 11231:1 11234:2 11237:1 11246:1 11264:1 11266:1 11276:6 11279:1 11281:1 11283:1 11285:1 11286:1 11293:2 11300:1 11303:2 11311:1 11320:1 11333:1 11347:2 11373:1 11375:1 11383:1 11385:1 11390:1 11400:1 11404:3 11407:1 11437:2 11455:1 11456:1 11464:2 11466:1 11474:1 11475:1 11476:3 11477:1 11483:2 11484:1 11487:1 11490:1 11502:2 11503:4 11505:1 11508:1 11510:1 11511:1 11518:1 11532:1 11535:3 11552:1 11568:1 11571:5 11591:1 11606:1 11609:1 11614:1 11617:1 11622:1 11627:1 11629:1 11636:8 11648:2 11649:2 11674:1 11679:1 11695:1 11699:1 11702:1 11714:1 11732:2 11746:1 11750:2 11770:1 11775:6 11797:1 11800:1 11803:1 11809:1 11812:3 11824:1 11827:2 11829:1 11834:1 11838:1 11839:6 11840:3 11845:2 11848:1 11851:5 11854:1 11871:1 11878:1 11881:2 11891:1 11895:2 11899:1 11900:6 11904:1 11907:1 11916:1 11930:1 11931:1 11936:2 11949:1 11955:1 11979:1 11992:3 11995:1 11996:1 12003:4 12011:1 12039:1 12043:3 12054:1 12090:1 12092:1 12109:1 12110:1 12139:1 12142:1 12163:2 12164:1 12179:1 12193:1 12223:1 12224:1 12235:1 12240:3 12261:4 12281:1 12283:1 12289:1 12311:1 12322:1 12330:1 12337:1 12338:1 12339:3 12344:3 12345:1 12354:1 12364:1 12372:1 12376:1 12383:1 12385:1 12406:1 12421:1 12431:1 12444:1 12455:1 12460:2 12461:5 12470:1 12483:1 12505:1 12510:1 12513:2 12522:1 12532:2 12555:1 12563:1 12575:1 12588:1 12597:3 12599:1 12606:1 12612:1 12613:1 12633:1 12635:1 12648:1 12650:1 12657:1 12664:1 12666:1 12722:1 12723:1 12746:1 12763:1 12767:1 12790:3 12792:32 12797:1 12800:1 12809:1 12813:4 12815:1 12821:1 12859:6 12873:1 12884:2 12888:1 12902:1 12916:1 12922:1 12927:1 12932:1 12964:2 12967:1 12969:2 12980:1 13001:1 13008:1 13020:1 13024:2 13027:1 13032:1 13038:1 13045:1 13086:1 13100:2 13111:1 13116:1 13132:1 13141:2 13145:1 13163:1 13174:1 13180:1 13182:1 13183:1 13193:1 13195:1 13217:1 13229:1 13238:1 13239:1 13257:1 13262:1 13265:1 13268:1 13269:1 13280:1 13286:12 13291:4 13306:1 13307:1 13313:2 13326:1 13340:1 13384:1 13389:1 13400:1 13412:1 13417:1 13418:1 13419:2 13424:2 13427:5 13430:5 13437:1 13462:1 13480:1 13482:1 13491:11 13495:1 13502:1 13584:1 13585:2 13595:1 13626:1 13639:3 13641:4 13647:2 13665:1 13673:1 13675:1 13676:1 13680:1 13688:1 13695:2 13700:2 13705:1 13707:1 13713:1 13716:1 13717:1 13729:2 13732:1 13747:1 13766:1 13770:2 13772:3 13773:1 13775:1 13777:1 13780:1 13782:10 13783:1 13784:1 13786:2 13804:1 13805:2 13806:1 13808:1 13809:1 13814:6 13818:1 13821:1 13827:2 13859:1 13868:1 13869:1 13873:1 13889:1 13901:1 13910:1 13928:1 13935:1 13939:1 13941:2 13951:10 13953:1 13955:2 13963:1 13974:1 13980:1 13988:1 13991:1 13998:1 14001:1 14012:1 14028:1 14030:2 14038:5 14052:1 14055:1 14057:3 14059:1 14069:11 14072:7 14096:1 14107:1 14147:2 14156:3 14166:1 14177:4 14179:1 14202:1 14232:1 14241:1 14259:1 14261:3 14273:1 14275:2 14278:1 14299:1 14308:2 14314:1 14323:1 14329:1 14361:4 14393:1 14422:1 14426:1 14440:1 14449:2 14451:1 14454:1 14460:2 14465:1 14466:2 14468:3 14480:1 14485:2 14486:1 14497:1 14498:2 14506:2 14516:1 14541:1 14555:1 14557:1 14559:1 14560:2 14564:1 14574:1 14575:2 14576:1 14578:1 14590:1 14592:2 14607:1 14612:1 14613:2 14615:1 14617:1 14621:1 14622:1 14625:1 14626:1 14627:1 14629:1 14634:1 14638:1 14641:1 14643:1 14652:1 14653:1 14657:2 14659:1 14664:1 14670:2 14684:1 14688:1 14699:32 14700:1 14705:3 14708:1 14709:1 14714:1 14721:1 14728:1 14736:1 14786:1 14789:1 14792:5 14800:1 14801:1 14806:2 14827:1 14832:1 14847:3 14850:1 14852:1 14863:1 14869:1 14870:1 14887:3 14890:1 14900:1 14902:1 14906:1 14939:1 14941:1 14944:1 14979:1 14993:2 15000:2 15001:1 15003:1 15010:1 15016:1 15031:1 15054:1 15060:1 15069:1 15070:2 15072:2 15080:1 15087:1 15100:1 15104:2 15105:1 15106:1 15109:7 15113:1 15169:1 15174:1 15188:1 15193:2 15197:1 15208:1 15218:1 15223:1 15237:2 15238:1 15245:2 15247:3 15257:1 15258:1 15267:1 15278:1 15299:1 15315:1 15319:1 15322:2 15340:2 15379:3 15380:1 15386:1 15396:1 15408:1 15409:2 15433:1 15452:1 15458:1 15462:2 15465:1 15478:1 15482:2 15488:1 15491:1 15506:1 15521:1 15526:1 15536:1 15542:1 15555:1 15556:3 15557:3 15566:1 15584:1 15590:1 15608:5 15610:1 15612:1 15616:2 15619:1 15633:1 15653:1 15674:1 15678:1 15690:1 15718:1 15723:1 15730:1 15738:1 15742:2 15755:1 15757:1 15762:4 15778:1 15779:1 15783:1 15796:5 15802:3 15805:1 15818:4 15819:1 15823:1 15827:1 15828:1 15835:3 15844:1 15888:1 15890:1 15897:5 15899:2 15921:4 15923:2 15931:1 15944:1 15946:1 15951:1 15960:1 15961:3 15971:1 15973:2 15988:1 16006:1 16023:1 16025:1 16031:1 16038:1 16051:1 16057:1 16060:12 16062:2 16063:1 16067:1 16096:3 16098:3 16100:1 16105:2 16133:2 16137:1 16139:2 16140:1 16142:1 16143:2 16165:12 16178:1 16183:1 16186:1 16193:1 16200:3 16203:1 16239:2 16250:1 16252:1 16254:1 16262:1 16264:1 16271:2 16285:4 16286:2 16287:1 16291:3 16292:1 16298:1 16299:3 16300:1 16301:2 16304:1 16321:1 16333:1 16357:2 16380:1 16381:1 16387:1 16392:1 16404:1 16413:1 16416:1 16418:1 16419:1 16440:1 16448:1 16452:1 16455:1 16457:1 16468:2 16476:1 16484:1 16510:1 16522:1 16523:1 16524:2 16527:1 16579:1 16590:2 16604:2 16613:1 16617:1 16631:3 16634:1 16644:1 16646:8 16647:1 16649:1 16658:1 16679:1 16687:1 16689:1 16692:1 16712:2 16714:1 16723:1 16724:1 16725:2 16751:1 16757:1 16766:1 16769:1 16773:3 16776:1 16782:2 16797:1 16800:2 16810:1 16811:2 16822:1 16878:1 16881:1 16899:1 16912:1 16926:44 16932:1 16933:2 16934:1 16949:1 16951:1 16963:1 16966:1 16967:4 16998:1 17020:1 17028:1 17030:1 17038:1 17042:1 17047:1 17060:1 17068:3 17072:2 17083:1 17088:1 17099:1 17103:2 17132:1 17138:1 17143:1 17144:1 17160:1 17166:2 17181:1 17184:1 17199:1 17207:1 17208:1 17213:1 17234:1 17236:2 17240:2 17241:1 17243:1 17250:1 17255:1 17281:1 17284:1 17329:1 17332:1 17356:1 17359:1 17361:2 17372:1 17375:1 17380:1 17383:1 17384:1 17388:1 17393:2 17395:1 17406:1 17424:1 17436:1 17440:1 17443:1 17447:1 17449:1 17450:1 17452:1 17455:1 17457:1 17459:2 17465:2 17475:1 17484:1 17490:1 17535:2 17541:1 17545:1 17549:2 17555:2 17560:1 17579:1 17604:1 17620:1 17623:1 17632:4 17634:1 17637:2 17639:1 17645:1 17649:1 17662:1 17664:1 17671:2 17672:1 17683:1 17689:1 17692:1 17711:2 17717:1 17727:2 17731:2 17758:4 17759:1 17766:4 17787:4 17788:1 17812:1 17817:1 17844:1 17855:6 17859:1 17860:2 17884:3 17909:2 17926:1 17929:2 17930:1 17936:2 17937:1 17945:1 17964:1 17980:1 17986:2 18012:1 18013:4 18017:2 18018:2 18019:1 18026:1 18030:1 18035:1 18055:1 18058:1 18076:1 18098:1 18100:2 18104:1 18123:1 18141:1 18142:1 18146:4 18204:1 18206:2 18210:1 18223:1 18234:2 18245:1 18258:1 18269:1 18300:9 18310:1 18316:1 18332:1 18340:2 18370:1 18374:1 18377:4 18393:1 18395:1 18402:1 18417:1 18419:1 18422:1 18431:1 18447:2 18450:1 18456:1 18462:1 18499:1 18504:1 18507:1 18516:2292 18527:2 18531:1 18538:2 18551:1 18555:1 18566:1 18587:1 18595:1 18597:1 18604:1 18619:1 18638:3 18648:1 18651:3 18653:1 18678:1 18691:1 18702:1 18707:1 18712:1 18724:1 18775:1 18780:2 18787:1 18802:1 18832:1 18837:1 18850:1 18859:1 18863:1 18864:1 18894:2 18901:1 18902:1 18933:1 18952:1 18969:1 18976:2 18978:1 18982:1 18986:1 19003:1 19013:1 19014:3 19016:2 19034:1 19037:1 19051:1 19083:1 19085:6 19116:5 19120:1 19128:1 19137:1 19175:1 19178:1 19184:1 19189:1 19192:1 19198:1 19219:1 19223:1 19230:1 19239:1 19245:1 19253:1 19257:1 19259:1 19268:1 19276:1 19282:6 19283:4 19290:1 19315:1 19318:4 19333:1 19342:2 19346:1 19362:1 19377:22 19384:1 19399:2 19409:1 19420:2 19421:1 19427:1 19428:1 19447:1 19451:4 19452:1 19454:1 19461:2 19469:1 19477:1 19481:2 19490:3 19491:1 19500:1 19509:1 19530:2 19558:1 19561:1 19573:1 19574:1 19580:1 19584:4 19589:1 19603:1 19609:2 19611:1 19635:1 19638:1 19653:2 19656:1 19658:1 19678:1 19692:1 19697:1 19709:1 19713:2 19715:1 19726:1 19728:1 19732:1 19737:4 19757:1 19768:1 19790:1 19793:1 19813:1 19819:1 19820:3 19822:2 19823:1 19829:1 19835:1 19847:1 19851:2 19861:1 19866:2 19881:1 19896:1 19927:2 19929:7 19937:1 19940:1 19945:1 19947:1 19950:1 19957:1 19962:1 19972:2 19986:1 19992:2 19995:2 20000:1 20001:3 20002:5 20005:1 20021:1 20029:2 20030:6 20031:1 20033:1 20042:1 20043:1 20051:5 20079:2 20099:2 20103:1 20109:3 20117:1 20123:4 20131:1 20132:1 20144:2 20149:1 20156:1 20162:2 20185:1 20199:1 20211:5 20223:2 20244:1 20258:1 20259:1 20268:1 20285:1 20293:1 20311:1 20338:1 20365:2 20387:1 20390:1 20401:1 20408:1 20451:5 20460:1 20462:1 20483:1 20484:2 20495:1 20499:2 20500:1 20513:3 20541:1 20555:1 20578:1 20591:1 20601:1 20602:2 20605:1 20623:1 20630:2 20653:1 20661:2 20664:1 20668:1 20674:1 20691:2 20692:2 20697:1 20699:1 20702:2 20703:1 20704:2 20711:1 20718:1 20720:1 20725:1 20733:1 20748:1 20754:1 20762:2 20764:2 20767:1 20773:3 20787:1 20788:1 20789:1 20798:1 20799:1 20808:2 20810:2 20828:1 20829:1 20833:1 20840:2 20842:2 20848:1 20853:4 20862:2 20863:1 20866:1 20869:3 20870:2 20878:2 20886:1 20892:4 20899:1 20918:1 20925:1 20940:1 20942:5 20945:1 20953:2 20958:1 20994:1 20996:1 21001:2 21004:3 21018:1 21021:1 21026:1 21037:2 21057:1 21061:1 21063:1 21071:2 21078:1 21087:1 21106:1 21114:1 21122:1 21132:1 21137:1 21146:1 21151:1 21153:1 21155:1 21171:1 21185:1 21190:1 21196:1 21202:2 21204:1 21206:4 21219:2 21233:1 21237:3 21257:1 21265:1 21271:2 21276:1 21285:1 21286:1 21289:1 21306:1 21308:1 21310:1 21311:1 21313:4 21317:1 21332:1 21341:1 21351:2 21353:1 21359:1 21361:1 21363:1 21364:2 21369:2 21374:1 21382:1 21397:1 21398:1 21410:1 21411:1 21414:1 21415:1 21436:1 21442:1 21449:2 21451:1 21455:2 21464:3 21471:1 21473:1 21475:1 21492:1 21493:2 21506:1 21508:4 21517:1 21530:1 21535:1 21543:1 21544:1 21547:1 21558:3 21562:1 21570:4 21573:1 21574:1 21577:1 21590:1 21610:1 21620:1 21625:6 21626:1 21648:1 21658:1 21663:1 21695:2 21696:1 21699:1 21705:7 21711:2 21712:1 21714:1 21715:4 21719:1 21728:3 21739:1 21741:1 21748:1 21763:1 21764:9 21775:1 21791:1 21835:1 21837:1 21843:1 21845:1 21877:1 21879:2 21881:4 21884:2 21887:1 21895:1 21896:1 21898:2 21906:2 21908:2 21915:1 21918:1 21919:1 21923:5 21924:4 21925:1 21936:1 21937:1 21939:1 21947:1 21955:1 21975:1 21997:1 22000:1 22015:1 22026:3 22028:1 22047:2 22058:2 22062:1 22066:4 22082:2 22095:1 22114:1 22128:3 22133:1 22139:1 22143:1 22144:1 22151:1 22161:3 22170:1 22175:2 22179:2 22192:1 22199:1 22214:1 22219:2 22235:1 22242:2 22248:13 22262:1 22267:2 22275:1 22310:12 22312:2 22316:1 22321:1 22335:1 22338:1 22362:1 22365:4 22368:2 22370:1 22379:4 22383:2 22416:1 22418:1 22425:7 22432:1 22439:1 22456:3 22457:1 22462:1 22471:1 22475:1 22479:1 22481:1 22490:1 22492:2 22516:1 22533:1 22536:1 22542:1 22543:2 22555:9 22566:3 22582:1 22583:1 22599:3 22640:1 22665:1 22667:1 22671:1 22676:1 22683:1 22688:1 22691:1 22694:31 22709:1 22713:2 22714:3 22717:1 22718:2 22719:1 22721:1 22723:1 22727:1 22752:2 22757:3 22759:1 22760:1 22762:1 22770:1 22771:1 22781:1 22805:1 22809:1 22816:1 22838:1 22841:1 22842:5 22852:2 22861:2 22866:1 22871:4 22874:1 22887:1 22899:1 22901:1 22925:1 22986:1 22990:3 23000:3 23008:1 23019:1 23060:1 23074:1 23075:1 23079:1 23083:1 23093:1 23095:3 23103:1 23108:3 23109:1 23111:1 23115:2 23147:32 23168:3 23169:1 23176:1 23186:1 23199:1 23202:1 23223:1 23227:1 23228:1 23234:1 23235:2 23242:2 23247:6 23267:1 23276:1 23283:1 23289:1 23307:1 23315:1 23321:3 23325:2 23329:1 23336:1 23348:1 23350:1 23358:1 23359:1 23371:1 23379:2 23381:2 23408:2 23416:1 23460:1 23465:1 23487:1 23490:1 23506:2 23508:1 23509:2 23525:1 23541:1 23543:1 23593:1 23596:1 23610:1 23617:2 23622:1 23641:2 23651:2 23664:2 23670:1 23693:1 23699:3 23735:1 23740:2 23745:1 23752:1 23766:1 23767:3 23772:1 23775:1 23782:1 23785:4 23786:1 23788:1 23802:1 23817:1 23825:1 23832:1 23838:1 23846:1 23857:1 23868:1 23884:1 23890:1 23891:1 23895:1 23912:1 23913:1 23915:2 23932:1 23941:1 23956:1 23957:3 23978:1 23982:2 24001:1 24008:2 24013:1 24028:2 24039:1 24065:1 24067:1 24069:3 24075:2 24076:1 24080:2 24092:2 24093:2 24097:3 24105:1 24114:1 24140:1 24144:3 24147:1 24150:1 24175:1 24186:8 24191:1 24202:1 24213:1 24217:1 24220:1 24225:1 24232:1 24235:1 24270:1 24275:1 24286:1 24291:4 24304:1 24326:1 24334:2 24366:1 24379:1 24384:1 24388:3 24393:1 24395:1 24414:1 24420:1 24427:2 24435:1 24444:1 24450:1 24480:3 24484:2 24492:1 24493:1 24495:2 24499:5 24502:1 24503:1 24505:2 24524:1 24536:2 24552:3 24572:1 24576:2 24577:3 24591:1 24594:1 24612:2 24614:1 24620:1 24623:1 24626:1 24628:4 24631:1 24645:1 24646:1 24653:1 24654:1 24656:1 24661:1 24675:1 24676:1 24687:1 24689:1 24690:1 24699:1 24707:1 24711:1 24757:1 24766:1 24779:1 24797:1 24802:3 24803:1 24812:1 24815:1 24838:1 24854:4 24858:2 24859:2 24863:1 24871:2 24872:1 24911:1 24919:1 24922:2 24943:1 24971:1 24974:1 24979:1 25025:1 25048:2 25064:1 25069:1 25072:1 25075:2 25077:6 25088:1 25097:5 25100:3 25107:1 25132:2 25133:1 25134:1 25163:1 25166:2 25173:2 25181:1 25184:1 25192:2 25198:1 25199:1 25205:2 25208:1 25212:1 25215:1 25222:4 25227:1 25236:1 25238:1 25245:1 25248:1 25255:1 25271:1 25277:4 25279:1 25280:1 25281:2 25283:1 25284:1 25306:1 25309:1 25310:1 25313:1 25328:2 25351:1 25362:1 25365:1 25378:3 25383:1 25384:1 25387:1 25402:1 25408:1 25413:1 25415:1 25423:2 25440:4 25451:4 25454:2 25461:1 25467:1 25473:1 25485:4 25499:4 25511:2 25516:3 25542:1 25546:5 25552:1 25554:1 25565:1 25573:1 25576:12 25585:2 25599:2 25617:2 25628:1 25636:1 25693:1 25705:1 25707:1 25710:2 25713:3 25715:1 25718:1 25732:2 25740:1 25741:1 25760:2 25766:1 25777:2 25778:1 25803:1 25807:1 25809:1 25812:1 25823:1 25832:1 25844:1 25848:1 25849:1 25850:2 25854:1 25860:1 25861:1 25874:1 25875:1 25876:1 25884:2 25885:1 25895:2 25920:3 25929:1 25933:1 25944:2 25955:1 25956:1 25961:1 25964:1 25966:2 25988:1 25989:1 25994:1 25995:4 25998:2 26005:2 26018:2 26019:1 26022:11 26023:1 26027:1 26042:2 26054:1 26061:1 26065:1 26074:1 26088:1 26093:5 26107:1 26113:1 26119:1 26122:1 26125:1 26128:1 26130:1 26145:1 26148:1 26149:1 26156:1 26182:1 26202:2 26231:2 26253:3 26268:1 26272:1 26277:1 26278:1 26283:1 26286:1 26333:2 26336:1 26354:1 26356:2 26372:1 26384:1 26399:1 26401:2 26417:1 26428:1 26429:2 26440:2 26450:2 26465:1 26484:1 26489:1 26498:1 26509:1 26525:1 26536:1 26542:1 26546:1 26588:1 26597:1 26609:2 26616:1 26626:1 26630:2 26632:6 26653:1 26654:3 26657:1 26661:2 26663:1 26675:4 26685:1 26691:1 26692:1 26703:3 26712:1 26714:2 26734:1 26742:1 26743:6 26744:1 26746:2 26753:1 26754:1 26757:1 26764:2 26774:1 26778:3 26789:3 26794:2 26796:1 26799:1 26813:1 26818:1 26847:1 26851:1 26866:1 26870:2 26875:1 26878:2 26884:2 26889:1 26894:1 26897:3 26899:1 26901:1 26911:1 26915:1 26918:5 26923:3 26930:2 26931:1 26932:2 26945:2 26968:1 26970:1 26971:2 26979:1 26991:2 26994:1 27003:1 27035:2 27043:1 27045:1 27054:3 27064:2 27074:1 27082:1 27084:1 27087:1 27096:1 27100:8 27130:1 27131:1 27145:1 27150:1 27157:1 27164:2 27172:1 27173:1 27176:1 27178:1 27188:3 27196:1 27206:1 27224:1 27227:1 27228:1 27229:1 27230:3 27235:1 27236:1 27249:1 27251:5 27254:2 27258:3 27265:1 27266:2 27269:1 27271:2 27276:3 27287:2 27296:2 27297:1 27299:3 27311:1 27318:1 27320:1 27329:1 27347:7 27353:1 27365:4 27390:1 27392:1 27401:1 27403:1 27405:3 27408:1 27411:3 27418:1 27424:1 27426:1 27427:1 27448:2 27451:1 27466:1 27468:1 27472:1 27502:1 27504:1 27516:2 27540:1 27548:1 27556:1 27558:1 27615:1 27620:1 27652:1 27658:3 27659:2 27662:2 27663:1 27666:4 27670:3 27673:6 27675:1 27676:1 27680:1 27689:1 27713:1 27718:1 27722:1 27727:3 27732:1 27734:1 27745:1 27761:1 27764:1 27784:2 27802:2 27808:1 27832:2 27855:1 27858:1 27868:1 27874:2 27898:1 27899:1 27908:1 27909:1 27912:1 27928:2 27945:1 27950:1 27953:1 27956:3 27965:1 27969:13 27970:1 27974:1 27978:1 27981:1 27993:1 27999:3 28008:6 28032:1 28060:1 28076:1 28080:4 28095:1 28105:1 28107:1 28109:2 28117:10 28123:3 28131:1 28134:1 28137:1 28151:1 28152:1 28162:1 28165:12 28170:1 28177:1 28207:1 28212:2 28214:1 28222:1 28231:1 28243:2 28258:1 28283:1 28296:2 28335:1 28345:1 28363:1 28375:1 28388:1 28392:40 28393:1 28413:1 28416:4 28417:2 28422:2 28423:5 28424:2 28425:1 28434:1 28435:1 28457:1 28485:3 28490:9 28491:1 28503:1 28509:1 28512:2 28515:1 28522:1 28529:1 28545:1 28546:2 28584:1 28597:1 28610:2 28615:2 28634:2 28635:1 28647:1 28660:1 28669:4 28690:2 28701:3 28710:1 28753:3 28758:1 28760:1 28775:1 28782:1 28785:1 28787:2 28796:2 28798:1 28803:2 28804:1 28814:1 28852:1 28854:1 28857:2 28859:2 28865:1 28875:2 28887:1 28894:2 28901:1 28902:1 28903:2 28913:1 28923:1 28927:1 28928:1 28937:1 28940:2 28950:1 28954:1 28959:1 28964:1 28974:1 28976:1 28986:1 28988:1 28999:1 29000:7 29001:1 29003:2 29005:3 29024:1 29027:1 29031:3 29042:6 29057:4 29062:2 29063:2 29069:1 29073:32 29079:2 29100:1 29120:1 29128:1 29137:1 29139:1 29141:2 29145:1 29146:2 29147:4 29176:1 29179:1 29183:1 29184:2 29194:2 29197:1 29215:1 29223:1 29225:2 29236:1 29240:1
2 12:1 13:1 31:2 32:1 36:1 41:1 49:1 52:1 55:1 56:1 59:1 67:1 75:1 85:3 88:1 89:2 91:1 98:1 106:1 113:1 146:2 154:1 160:1 166:1 170:2 174:2 176:1 180:1 184:1 193:1 196:1 209:1 213:2 223:1 227:1 228:1 241:1 249:2 252:1 265:3 271:5 272:1 276:2 286:2 287:1 291:1 292:1 322:1 329:1 358:1 359:4 375:1 376:2 380:1 385:1 388:1 391:1 392:1 395:1 415:2 425:2 429:2 441:1 446:2 452:1 460:1 462:1 469:1 471:2 479:2 490:2 501:3 505:1 509:1 515:1 519:1 536:1 544:1 552:1 553:1 562:1 564:1 571:1 593:1 607:3 613:2 618:2 620:1 623:1 632:1 644:6 658:33 663:4 667:1 670:1 671:1 682:1 686:1 696:1 699:3 702:2 714:1 719:2 725:1 728:2 735:2 745:3 749:1 783:2 809:1 813:2 815:1 817:3 820:2 822:1 823:1 824:3 838:1 857:1 861:3 868:1 876:3 882:1 894:1 904:3 905:7 907:3 908:1 917:5 930:1 937:4 943:1 951:2 957:3 960:8 964:1 965:2 970:1 976:2 980:2 982:3 999:2 1003:1 1006:2 1016:3 1027:1 1029:2 1032:1 1036:1 1048:2 1050:1 1055:4 1056:1 1058:1 1098:2 1099:1 1100:1 1112:1 1137:1 1146:1 1158:1 1160:3 1190:1 1211:1 1214:32 1220:1 1223:2 1224:2 1227:1 1229:4 1232:1 1245:1 1256:1 1258:2 1260:2 1266:1 1270:1 1275:1 1277:1 1279:3 1280:1 1281:1 1288:1 1290:1 1295:1 1298:1 1302:1 1314:1 1316:1 1338:1 1354:1 1356:2 1380:4 1390:1 1393:1 1395:1 1397:1 1402:2 1404:9 1420:1 1430:1 1444:1 1452:3 1459:1 1462:2 1475:1 1481:1 1493:1 1499:1 1501:1 1502:3 1506:2 1510:11 1512:1 1516:1 1517:1 1528:1 1532:1 1540:1 1546:2 1548:1 1550:1 1576:3 1582:1 1598:1 1602:4 1615:1 1616:1 1631:1 1636:1 1637:2 1639:1 1647:2 1650:1 1666:1 1672:1 1676:1 1677:9 1685:1 1687:1 1690:1 1691:2 1705:1 1720:1 1728:1 1740:2 1741:1 1745:3 1757:1 1760:1 1762:1 1776:1 1778:1 1779:1 1783:1 1795:1 1820:1 1827:1 1833:1 1838:1 1840:1 1842:1 1853:1 1866:1 1870:2 1871:2 1877:1 1878:1 1895:1 1897:1 1898:3 1901:1 1907:1 1913:1 1918:2 1921:2 1930:1 1937:1 1941:2 1947:2 1957:2 1959:1 1976:1 1982:1 1992:1 1993:1 2001:1 2022:7 2042:1 2045:1 2048:1 2051:2 2053:1 2076:1 2077:1 2085:1 2094:1 2115:1 2117:1 2118:2 2123:1 2125:1 2140:1 2144:1 2145:1 2157:1 2158:1 2161:1 2172:1 2176:1 2181:1 2186:1 2196:8 2217:1 2235:2 2238:1 2239:1 2265:1 2269:1 2291:1 2299:1 2325:1 2329:1 2333:1 2334:1 2335:2 2336:4 2337:2 2338:2 2339:3 2341:1 2342:5 2347:8 2349:4 2352:7 2356:4 2359:1 2362:1 2364:1 2367:1 2369:4 2372:3 2375:1 2376:1 2379:1 2382:1 2383:1 2405:1 2406:1 2412:1 2421:2 2422:1 2430:5 2433:1 2439:1 2457:2 2460:1 2478:1 2479:1 2482:1 2487:1 2492:1 2494:4 2495:4 2503:3 2513:2 2514:4 2522:3 2523:1 2531:1 2533:1 2539:1 2550:4 2562:1 2564:1 2571:1 2596:1 2603:2 2604:2 2610:1 2624:1 2646:2 2660:1 2663:1 2674:2 2680:1 2681:1 2730:1 2735:1 2736:2 2751:2 2758:2 2767:2 2773:1 2775:1 2777:1 2785:3 2787:1 2791:3 2804:1 2809:1 2812:3 2813:4 2819:1 2822:3 2826:1 2833:1 2839:1 2841:1 2872:3 2877:1 2881:4 2883:5 2886:1 2889:1 2892:2 2901:2 2904:1 2915:1 2937:2 2940:1 2949:2 2956:2 2982:17 2984:33 2986:1 2990:1 2991:3 2998:2 3002:1 3014:1 3018:1 3019:1 3023:4 3024:1 3029:1 3032:1 3039:7 3049:1 3053:4 3057:2 3067:1 3070:1 3091:2 3097:1 3100:1 3101:1 3127:2 3133:3 3139:1 3142:1 3169:3 3196:1 3219:1 3226:1 3267:1 3278:4 3281:1 3293:1 3297:1 3301:1 3316:2 3337:1 3340:1 3341:1 3351:1 3354:3 3360:1 3368:3 3380:1 3387:1 3393:1 3399:1 3401:4 3419:2 3445:1 3482:1 3486:1 3502:1 3506:1 3521:2 3525:1 3527:1 3536:1 3540:1 3541:1 3550:1 3552:1 3556:2 3564:1 3574:1 3601:1 3604:1 3606:1 3612:1 3617:1 3627:1 3628:1 3632:1 3642:1 3645:1 3666:2 3677:1 3684:1 3690:1 3697:1 3704:1 3715:1 3734:1 3758:1 3773:3 3774:2 3775:1 3779:2 3782:2 3798:1 3831:3 3833:1 3861:1 3867:1 3872:2 3877:1 3882:1 3884:3 3886:1 3902:1 3907:2 3909:2 3915:2 3936:1 3938:1 3940:1 3946:3 3960:1 3963:1 3964:1 3985:1 3990:32 3991:2 3998:1 4007:1 4012:1 4020:1 4049:1 4052:1 4053:1 4056:1 4066:1 4072:2 4079:4 4081:3 4096:2 4102:1 4108:1 4113:5 4117:5 4118:2 4131:1 4132:2 4148:1 4171:1 4182:1 4195:1 4196:2 4208:3 4216:1 4225:1 4231:1 4258:1 4260:1 4262:1 4264:2 4267:1 4269:1 4272:1 4277:1 4293:1 4304:1 4307:1 4309:2 4310:1 4312:3 4317:1 4319:3 4331:1 4357:1 4370:1 4376:3 4402:1 4405:2 4407:1 4409:1 4412:1 4415:1 4424:1 4432:2 4434:32 4435:1 4443:1 4446:1 4448:1 4452:4 4462:1 4466:1 4475:1 4477:1 4479:1 4527:2 4535:6 4550:1 4553:1 4554:1 4557:1 4564:1 4580:1 4590:3 4604:2 4609:3 4610:1 4618:2 4622:2 4623:1 4629:1 4648:1 4668:7 4676:1 4698:2 4717:1 4744:1 4774:5 4790:3 4796:1 4811:1 4812:1 4818:5 4826:1 4854:1 4863:1 4883:1 4898:1 4902:2 4903:2 4908:2 4909:1 4916:1 4920:3 4931:1 4942:1 4943:3 4954:1 4974:1 4976:1 4977:1 4983:1 4997:2 4998:2 5012:18 5013:2 5022:2 5025:1 5046:6 5053:2 5063:2 5087:2 5089:1 5106:1 5138:4 5140:1 5143:3 5149:1 5159:4 5160:4 5161:2 5164:1 5167:5 5173:1 5174:2 5175:4 5176:1 5183:1 5190:2 5192:5 5194:3 5195:1 5205:1 5230:1 5264:1 5267:1 5268:2 5283:1 5300:1 5324:1 5342:1 5361:1 5389:1 5403:1 5427:1 5438:1 5439:2 5440:1 5462:1 5482:1 5485:1 5486:1 5495:1 5496:2 5533:1 5534:3 5549:2 5574:1 5577:2 5579:1 5583:1 5603:1 5606:1 5613:2 5624:1 5626:1 5630:3 5634:1 5690:1 5699:1 5700:1 5712:1 5713:1 5716:1 5723:2 5724:1 5729:1 5740:1 5741:1 5742:1 5762:2 5774:1 5776:1 5780:9 5784:1 5790:1 5792:1 5794:1 5800:1 5802:2 5807:1 5822:2 5833:2 5839:1 5841:1 5853:2 5860:1 5889:1 5896:1 5908:2 5921:1 5924:1 5926:2 5939:2 5968:3 6005:1 6017:1 6027:1 6034:1 6042:1 6043:1 6063:1 6064:1 6065:2 6076:3 6079:1 6092:1 6097:1 6118:1 6121:1 6143:1 6149:1 6151:2 6168:2 6176:2 6182:2 6187:1 6195:1 6198:1 6203:1 6207:1 6208:3 6211:1 6212:1 6217:1 6220:1 6221:1 6227:1 6247:1 6255:1 6276:1 6281:1 6294:2 6295:2 6296:1 6301:1 6302:1 6304:1 6307:2 6308:1 6311:1 6312:1 6313:1 6315:3 6317:1 6320:2 6322:1 6324:2 6325:2 6326:1 6330:1 6345:1 6356:2 6388:2 6391:1 6399:1 6408:4 6410:2 6416:1 6428:3 6436:1 6437:1 6448:1 6456:1 6479:2 6486:1 6500:1 6510:1 6523:7 6528:1 6533:1 6534:4 6536:1 6538:1 6539:1 6540:2 6543:4 6545:2 6546:1 6547:1 6550:4 6552:8 6553:1 6554:1 6560:1 6563:1 6581:1 6595:1 6599:1 6600:2 6601:1 6615:1 6619:1 6629:1 6637:1 6657:1 6666:2 6667:1 6674:3 6679:3 6694:1 6702:2 6717:1 6720:1 6736:1 6744:1 6746:1 6747:1 6749:1 6755:1 6762:1 6763:1 6769:1 6772:1 6776:1 6785:1 6792:1 6795:2 6796:1 6810:2 6820:1 6831:2 6850:1 6853:1 6866:1 6872:1 6892:1 6899:1 6901:1 6904:1 6908:3 6927:2 6939:1 6960:2 6962:1 6967:1 6974:1 6991:1 6997:2 7025:1 7030:1 7040:1 7059:1 7063:2 7077:1 7083:1 7101:1 7102:1 7114:1 7117:1 7130:1 7178:1 7180:1 7184:1 7187:1 7192:2 7203:1 7212:1 7217:6 7264:1 7269:1 7271:1 7277:1 7283:1 7287:2 7295:1 7301:2 7319:1 7332:1 7346:1 7351:1 7369:2 7375:1 7398:1 7406:1 7409:2 7412:1 7413:2 7417:1 7423:1 7428:1 7431:1 7435:1 7442:1 7447:1 7474:1 7485:1 7495:1 7496:2 7508:1 7522:1 7540:1 7543:2 7562:1 7563:1 7571:1 7574:1 7582:1 7593:1 7596:6 7629:9 7632:1 7636:1 7663:1 7664:2 7673:1 7679:1 7693:2 7707:1 7716:1 7718:1 7722:1 7725:1 7748:4 7749:1 7779:1 7787:1 7803:3 7815:11 7816:12 7821:1 7833:1 7834:1 7835:5 7837:1 7864:3 7868:4 7871:1 7878:49 7882:1 7883:1 7886:2 7890:1 7891:1 7897:18 7900:4 7903:1 7908:1 7911:1 7932:1 7933:3 7936:2 7941:2 7949:1 7957:1 7985:6 7996:2 8002:1 8013:1 8014:1 8037:1 8039:2 8054:3 8065:1 8071:1 8075:4 8077:1 8083:1 8087:1 8105:1 8109:6 8119:1 8129:1 8159:1 8162:2 8176:1 8189:1 8196:1 8249:1 8253:1 8286:1 8290:1 8300:1 8312:2 8316:1 8348:1 8351:1 8364:1 8376:1 8377:33 8383:1 8384:1 8392:1 8396:1 8402:1 8410:16 8411:4 8426:1 8428:2 8441:1 8443:1 8445:1 8447:1 8449:2 8466:1 8475:1 8480:1 8492:41 8499:1 8501:1 8531:2 8537:1 8554:1 8561:1 8588:2 8596:1 8598:1 8605:1 8645:1 8657:1 8659:2 8667:1 8671:1 8674:2 8677:1 8680:1 8683:1 8687:1 8693:5 8694:1 8713:1 8720:1 8725:2 8745:3 8746:1 8750:1 8760:2 8762:1 8763:1 8766:1 8768:1 8778:2 8779:2 8782:1 8783:1 8792:1 8797:1 8812:1 8813:1 8822:1 8832:1 8836:1 8841:1 8845:1 8850:2 8859:1 8862:3 8883:1 8915:1 8923:1 8926:1 8928:1 8931:2 8987:3 8989:1 8991:1 9014:2 9052:1 9057:2 9059:1 9061:1 9066:1 9067:1 9069:2 9086:1 9090:4 9106:1 9110:1 9111:1 9112:3 9118:1 9129:3 9138:1 9139:1 9140:1 9184:1 9191:3 9196:1 9199:1 9204:2 9236:1 9238:5 9247:4 9256:1 9258:1 9264:2 9300:1 9320:4 9343:3 9377:1 9378:4 9382:2 9384:1 9391:4 9393:3 9394:1 9396:1 9400:1 9404:1 9406:2 9408:2 9415:1 9421:1 9428:1 9429:1 9432:1 9435:1 9442:1 9445:1 9446:1 9447:2 9448:1 9449:1 9456:1 9466:1 9472:1 9473:3 9483:8 9487:1 9490:2 9496:2 9504:1 9506:1 9521:2 9525:1 9534:1 9543:1 9546:2 9558:1 9563:2 9564:2 9571:1 9580:1 9592:1 9600:1 9607:1 9610:1 9611:2 9616:2 9619:2 9622:1 9623:1 9624:1 9627:1 9628:1 9637:1 9641:1 9642:1 9653:1 9658:1 9660:1 9661:9 9675:1 9677:2 9678:9 9681:1 9689:1 9694:1 9698:1 9701:2 9703:1 9706:1 9715:1 9717:1 9719:3 9721:1 9723:1 9726:1 9738:1 9751:1 9752:1 9773:1 9779:1 9782:1 9795:1 9797:1 9802:1 9803:1 9804:2 9805:1 9813:1 9828:1 9841:1 9855:1 9856:1 9860:1 9887:1 9905:6 9914:1 9915:1 9916:1 9920:1 9921:3 9924:4 9927:1 9936:1 9961:1 9962:1 9974:1 9987:1 10003:1 10016:1 10028:1 10029:1 10046:32 10050:1 10053:1 10055:1 10061:1 10069:1 10077:1 10083:2 10092:1 10097:1 10098:1 10102:1 10115:1 10117:1 10122:1 10131:2 10134:1 10138:1 10144:1 10166:1 10170:4 10174:1 10177:3 10184:1 10188:2 10195:2 10220:1 10229:1 10233:1 10242:2 10243:2 10252:1 10260:1 10261:2 10266:2 10268:2 10280:4 10284:5 10292:1 10297:3 10299:1 10322:5 10336:1 10337:1 10339:2 10350:1 10359:1 10362:1 10381:1 10383:2 10388:1 10393:1 10402:1 10404:1 10405:1 10417:1 10426:7 10440:1 10464:1 10518:2 10522:1 10526:1 10542:5 10555:1 10564:2 10573:1 10575:2 10576:1 10582:1 10594:1 10604:1 10609:1 10619:1 10623:1 10624:7 10641:1 10664:3 10681:1 10691:1 10705:1 10707:1 10725:1 10740:4 10745:1 10758:1 10760:5 10770:1 10773:1 10786:2 10820:2 10834:1 10840:1 10842:2 10859:1 10860:4 10864:2 10867:6 10874:1 10882:1 10894:1 10907:2 10912:1 10914:1 10922:1 10923:1 10926:1 10929:7 10934:1 10942:1 10947:1 10955:2 10956:1 10976:2 10980:1 10990:1 11005:1 11036:1 11065:1 11066:9 11082:1 11083:1 11089:1 11098:2 11100:1 11108:1 11111:2 11114:3 11117:3 11124:1 11131:1 11143:4 11152:1 11158:1 11167:1 11170:2 11176:1 11178:1 11185:1 11195:1 11197:8 11200:1 11203:1 11215:1 11217:3 11219:4 11220:1 11231:1 11234:2 11237:1 11246:1 11264:1 11266:1 11276:6 11279:1 11281:1 11283:1 11285:1 11286:1 11293:2 11300:1 11303:2 11311:1 11320:1 11333:1 11347:2 11372:1 11373:1 11375:1 11383:1 11385:1 11390:1 11400:1 11404:3 11407:1 11437:2 11455:1 11456:1 11464:2 11466:1 11474:1 11475:1 11476:3 11477:1 11483:2 11484:1 11487:1 11490:1 11502:2 11503:4 11505:1 11508:1 11510:1 11511:1 11518:1 11532:1 11535:3 11552:1 11568:1 11571:5 11591:1 11606:1 11609:2 11614:1 11617:1 11622:1 11627:1 11629:1 11636:8 11648:2 11649:2 11674:1 11679:1 11695:1 11699:1 11702:1 11714:1 11732:2 11744:1 11746:1 11750:2 11770:1 11775:6 11797:1 11800:1 11803:1 11809:1 11812:3 11824:1 11827:2 11829:1 11834:1 11838:1 11839:6 11840:4 11845:2 11848:1 11851:5 11854:1 11871:1 11878:1 11881:2 11891:1 11895:2 11899:1 11900:8 11904:1 11907:1 11916:1 11930:1 11931:1 11936:2 11949:1 11955:1 11979:1 11992:3 11995:1 11996:1 12003:4 12011:1 12039:1 12043:3 12054:1 12090:1 12092:1 12109:1 12110:1 12139:1 12142:1 12163:2 12164:1 12179:1 12193:1 12223:1 12224:1 12235:1 12240:3 12261:4 12281:1 12283:1 12289:1 12311:1 12322:1 12330:1 12337:1 12338:1 12339:3 12344:4 12345:1 12348:1 12354:1 12364:1 12372:1 12376:1 12383:1 12385:1 12406:1 12421:1 12431:1 12444:1 12455:1 12460:2 12461:5 12470:1 12483:1 12505:1 12510:1 12513:2 12522:1 12532:2 12555:1 12563:1 12575:1 12588:1 12597:3 12599:1 12606:1 12612:1 12613:1 12633:1 12635:1 12648:1 12650:1 12657:1 12664:1 12666:1 12722:1 12723:1 12746:1 12763:1 12767:1 12790:3 12792:33 12797:1 12800:1 12809:1 12813:5 12815:1 12821:1 12859:6 12873:1 12884:2 12888:1 12902:1 12916:1 12922:1 12927:1 12932:1 12964:2 12967:1 12969:2 12980:1 13001:1 13008:1 13009:1 13020:1 13024:2 13027:1 13032:1 13038:1 13045:1 13086:1 13100:2 13111:1 13116:1 13132:1 13141:2 13145:1 13163:1 13174:1 13180:1 13182:1 13183:1 13193:1 13195:1 13217:1 13229:1 13238:1 13239:1 13257:1 13262:1 13265:1 13268:1 13269:1 13280:1 13286:12 13291:4 13294:2 13306:1 13307:1 13313:2 13326:1 13339:1 13340:1 13384:1 13389:1 13400:1 13412:1 13417:1 13418:1 13419:2 13424:2 13427:5 13430:5 13437:1 13462:1 13464:1 13480:1 13482:1 13491:13 13495:1 13502:1 13584:1 13585:2 13595:1 13626:1 13639:3 13641:4 13647:2 13665:1 13673:1 13675:1 13676:1 13680:1 13688:1 13695:2 13700:2 13705:1 13707:1 13713:1 13716:1 13717:1 13729:2 13732:1 13747:1 13766:1 13770:2 13772:3 13773:1 13775:1 13777:1 13780:1 13782:10 13783:1 13784:1 13786:2 13804:1 13805:2 13806:1 13808:1 13809:1 13814:6 13818:1 13821:1 13826:1 13827:2 13859:1 13868:1 13869:1 13873:1 13889:1 13901:1 13910:1 13928:1 13935:1 13939:1 13941:2 13951:10 13953:1 13955:2 13963:1 13974:1 13980:1 13988:1 13991:1 13998:1 14001:1 14012:1 14028:1 14030:2 14038:5 14052:1 14055:1 14057:3 14059:1 14069:11 14072:7 14096:1 14107:1 14147:2 14156:4 14166:1 14177:4 14179:1 14202:1 14232:1 14241:1 14256:1 14259:1 14261:3 14273:1 14275:2 14278:1 14299:1 14308:2 14314:1 14323:1 14329:1 14361:4 14393:1 14422:1 14426:1 14440:2 14449:2 14451:1 14454:1 14460:2 14465:2 14466:2 14468:3 14480:1 14485:2 14486:1 14497:1 14498:2 14506:2 14516:1 14541:1 14555:1 14557:1 14559:1 14560:2 14564:1 14574:1 14575:2 14576:1 14578:1 14590:1 14592:2 14607:1 14612:1 14613:2 14615:1 14617:1 14621:1 14622:1 14623:1 14625:1 14626:1 14627:1 14629:1 14634:1 14638:1 14641:1 14643:1 14652:1 14653:1 14657:2 14659:1 14664:1 14670:2 14684:1 14688:1 14699:33 14700:1 14705:3 14708:1 14709:1 14714:1 14721:1 14728:1 14736:1 14786:1 14789:1 14792:5 14800:1 14801:1 14806:2 14827:1 14832:1 14847:3 14850:1 14852:1 14863:1 14869:1 14870:1 14887:3 14890:1 14900:1 14902:1 14906:1 14939:1 14941:1 14944:1 14979:1 14993:2 15000:2 15001:1 15003:1 15010:1 15016:1 15031:1 15054:1 15060:1 15069:1 15070:2 15072:2 15080:1 15087:1 15100:1 15104:2 15105:1 15106:1 15109:7 15113:1 15169:1 15174:1 15175:1 15188:1 15193:3 15197:1 15208:1 15218:1 15223:1 15237:2 15238:1 15245:2 15247:3 15257:1 15258:1 15267:1 15278:1 15299:1 15306:1 15315:1 15319:1 15322:2 15340:2 15379:3 15380:1 15386:1 15396:1 15408:1 15409:2 15433:1 15452:1 15458:1 15462:2 15465:1 15478:1 15482:2 15488:1 15491:1 15506:1 15521:1 15526:1 15536:1 15542:1 15555:1 15556:3 15557:3 15566:1 15584:1 15590:1 15608:5 15610:1 15612:1 15616:2 15619:1 15633:1 15653:1 15674:1 15678:1 15690:1 15718:1 15723:1 15730:1 15738:1 15742:2 15755:1 15757:1 15762:4 15778:1 15779:1 15783:1 15795:1 15796:5 15802:3 15805:1 15818:4 15819:1 15823:1 15827:1 15828:1 15835:3 15844:1 15888:1 15890:1 15897:5 15899:2 15921:4 15923:2 15931:1 15944:1 15946:1 15951:1 15960:1 15961:3 15971:1 15973:2 15988:1 16006:1 16023:1 16025:1 16031:1 16038:1 16051:1 16057:1 16060:14 16062:2 16063:1 16067:1 16096:3 16098:3 16100:1 16105:2 16116:1 16133:2 16137:1 16139:2 16140:1 16142:1 16143:2 16165:12 16178:1 16183:1 16186:1 16193:1 16200:3 16203:1 16239:2 16250:1 16252:1 16254:1 16262:1 16264:1 16270:1 16271:2 16285:4 16286:2 16287:1 16291:4 16292:1 16298:1 16299:3 16300:1 16301:2 16304:1 16321:1 16333:1 16357:2 16380:1 16381:1 16387:1 16392:1 16404:1 16413:1 16416:1 16418:1 16419:1 16440:1 16448:1 16452:1 16455:1 16457:1 16468:2 16476:1 16484:1 16510:1 16522:1 16523:1 16524:2 16527:1 16579:1 16590:2 16604:2 16613:1 16617:1 16631:3 16634:1 16644:1 16646:9 16647:1 16649:1 16658:1 16679:1 16687:1 16689:1 16692:1 16712:2 16714:1 16717:1 16723:1 16724:1 16725:2 16751:1 16757:1 16766:1 16769:1 16773:3 16776:1 16782:2 16797:1 16800:2 16810:1 16811:2 16822:1 16878:1 16881:1 16899:1 16912:1 16926:45 16932:1 16933:2 16934:1 16949:1 16951:1 16963:1 16966:1 16967:4 16998:1 17020:1 17028:1 17030:1 17038:1 17042:1 17047:1 17060:1 17068:3 17072:2 17083:1 17088:1 17099:1 17103:2 17132:1 17138:1 17143:1 17144:1 17160:1 17166:2 17181:1 17184:1 17199:1 17207:1 17208:1 17213:1 17234:1 17236:2 17240:2 17241:1 17243:1 17250:1 17255:1 17266:1 17281:1 17284:1 17329:1 17332:1 17356:1 17359:1 17361:2 17372:1 17375:1 17380:1 17383:1 17384:1 17388:1 17393:2 17395:1 17406:1 17424:1 17436:1 17440:1 17443:1 17447:2 17449:1 17450:1 17452:1 17455:1 17457:1 17459:2 17465:2 17475:1 17484:1 17490:1 17535:2 17541:1 17545:1 17549:2 17555:2 17560:1 17579:1 17604:1 17620:1 17623:1 17632:4 17634:1 17637:2 17639:1 17645:1 17649:1 17662:1 17664:1 17671:2 17672:2 17683:1 17689:1 17692:1 17711:2 17717:1 17727:3 17731:2 17758:4 17759:1 17766:4 17776:1 17787:4 17788:1 17796:1 17812:1 17817:1 17844:1 17855:6 17859:1 17860:2 17884:3 17891:1 17909:2 17926:1 17929:2 17930:1 17936:2 17937:1 17945:1 17964:1 17980:1 17986:2 18012:1 18013:4 18017:2 18018:2 18019:1 18026:1 18030:1 18035:1 18055:1 18058:1 18076:1 18098:1 18100:2 18104:1 18123:1 18141:1 18142:1 18146:4 18204:1 18206:2 18210:1 18223:1 18234:2 18245:1 18258:1 18269:1 18300:9 18310:1 18316:1 18332:1 18340:2 18370:1 18374:1 18377:4 18393:1 18395:1 18401:1 18402:1 18417:1 18419:1 18422:1 18431:2 18447:2 18450:1 18456:1 18462:1 18499:1 18504:1 18507:1 18516:2375 18527:2 18531:1 18538:2 18551:1 18555:1 18566:1 18587:1 18589:1 18595:1 18597:1 18604:1 18619:1 18638:3 18648:1 18651:3 18653:1 18678:1 18680:1 18691:1 18702:1 18707:1 18712:1 18724:1 18775:1 18780:2 18781:1 18787:1 18802:1 18832:1 18837:1 18850:1 18859:1 18863:1 18864:1 18894:2 18901:1 18902:1 18933:1 18952:1 18969:1 18976:2 18978:1 18982:1 18986:1 19003:1 19013:1 19014:3 19016:2 19034:1 19037:1 19051:1 19083:1 19085:6 19116:5 19120:1 19128:1 19131:1 19137:1 19175:1 19178:1 19184:1 19189:1 19192:1 19198:1 19219:1 19223:1 19230:1 19239:1 19245:1 19253:1 19257:1 19259:1 19268:1 19276:1 19282:6 19283:4 19290:1 19315:1 19318:4 19333:1 19342:2 19346:1 19362:1 19377:22 19384:1 19399:2 19409:1 19420:2 19421:1 19427:1 19428:1 19429:1 19447:1 19451:4 19452:1 19453:1 19454:2 19461:2 19469:1 19477:1 19481:2 19490:3 19491:1 19500:1 19509:1 19530:2 19558:1 19561:1 19573:1 19574:1 19580:1 19584:4 19589:1 19603:1 19609:2 19611:1 19635:1 19638:1 19641:1 19653:2 19656:1 19658:1 19663:1 19678:2 19692:1 19697:1 19709:1 19713:2 19715:1 19726:1 19728:1 19732:1 19737:4 19757:1 19768:1 19790:1 19793:1 19813:1 19819:1 19820:3 19822:2 19823:1 19829:1 19835:1 19847:1 19851:2 19861:1 19866:2 19881:1 19896:1 19927:2 19929:8 19937:1 19940:1 19945:1 19947:1 19950:1 19957:1 19962:1 19972:2 19986:1 19992:2 19995:2 20000:1 20001:3 20002:7 20005:1 20021:1 20029:2 20030:6 20031:1 20033:1 20042:1 20043:1 20051:5 20079:2 20099:2 20103:1 20109:3 20117:1 20121:1 20123:6 20131:1 20132:1 20144:2 20149:1 20156:1 20162:2 20185:1 20199:1 20211:5 20223:2 20244:1 20258:1 20259:1 20268:1 20285:1 20291:1 20293:1 20311:1 20338:1 20365:2 20387:1 20390:1 20401:1 20408:1 20451:5 20455:1 20460:1 20462:1 20483:1 20484:2 20495:1 20499:2 20500:1 20513:3 20541:1 20555:1 20578:1 20591:1 20601:1 20602:2 20605:1 20623:1 20630:2 20649:1 20653:1 20661:2 20664:1 20668:1 20674:1 20691:2 20692:3 20697:1 20699:1 20702:2 20703:1 20704:2 20711:1 20718:1 20720:1 20725:1 20733:1 20748:1 20754:1 20762:2 20764:2 20767:1 20773:3 20787:1 20788:1 20789:1 20798:1 20799:1 20808:2 20810:2 20828:1 20829:1 20833:1 20840:2 20842:2 20848:1 20853:4 20862:2 20863:1 20866:1 20869:3 20870:2 20878:2 20886:1 20892:4 20899:1 20918:1 20925:1 20940:1 20942:5 20945:1 20953:2 20958:1 20994:1 20996:1 21001:2 21004:3 21018:1 21021:1 21026:1 21037:2 21057:1 21061:1 21063:1 21071:2 21078:1 21087:1 21106:1 21114:1 21122:1 21132:1 21137:1 21146:1 21151:1 21153:1 21155:1 21171:1 21185:1 21190:1 21196:1 21202:2 21204:1 21206:4 21219:2 21228:1 21233:1 21237:3 21257:1 21265:1 21271:2 21276:1 21285:1 21286:1 21289:1 21306:1 21308:1 21310:1 21311:1 21313:4 21317:1 21332:1 21341:1 21351:2 21353:1 21359:1 21361:1 21363:1 21364:2 21369:2 21374:1 21382:1 21397:1 21398:1 21410:1 21411:1 21414:1 21415:1 21436:1 21442:1 21449:2 21451:1 21455:2 21464:3 21471:1 21473:1 21475:1 21492:1 21493:2 21506:1 21508:4 21517:1 21530:1 21535:1 21543:1 21544:1 21547:1 21558:3 21562:1 21570:4 21573:1 21574:1 21577:1 21590:1 21610:1 21620:1 21625:6 21626:1 21648:1 21658:1 21663:1 21695:2 21696:1 21699:1 21705:7 21711:2 21712:1 21714:1 21715:4 21719:1 21728:3 21739:1 21741:1 21748:1 21763:1 21764:9 21775:1 21791:1 21835:1 21837:1 21843:1 21845:1 21877:1 21879:2 21881:4 21884:2 21887:1 21895:1 21896:1 21897:1 21898:2 21906:2 21908:2 21915:1 21918:1 21919:1 21923:7 21924:4 21925:1 21930:1 21936:1 21937:1 21939:1 21947:1 21955:1 21975:1 21997:1 22000:1 22015:1 22026:3 22028:1 22047:2 22058:2 22062:1 22066:4 22082:2 22095:1 22114:1 22128:3 22133:1 22139:1 22143:1 22144:1 22151:1 22161:3 22170:1 22175:2 22179:2 22192:1 22199:1 22214:1 22219:2 22235:1 22242:2 22248:13 22262:1 22267:2 22275:1 22310:12 22312:2 22316:1 22321:1 22335:1 22338:1 22362:1 22365:4 22368:2 22370:1 22379:4 22383:2 22416:1 22418:1 22425:7 22432:1 22439:1 22456:3 22457:1 22462:1 22471:1 22475:1 22479:1 22481:1 22490:1 22492:2 22516:1 22533:1 22536:1 22542:1 22543:2 22555:9 22566:3 22582:1 22583:1 22599:3 22640:1 22665:1 22667:1 22671:1 22676:1 22683:1 22688:1 22691:1 22694:32 22709:1 22713:2 22714:3 22717:1 22718:2 22719:1 22721:1 22723:1 22727:1 22752:2 22757:3 22759:1 22760:1 22762:1 22768:2 22770:1 22771:1 22781:1 22805:1 22809:1 22816:1 22838:1 22841:1 22842:5 22852:2 22861:2 22866:1 22871:4 22874:1 22887:1 22899:1 22901:1 22925:1 22986:1 22990:3 23000:3 23008:1 23019:1 23060:1 23074:1 23075:1 23079:1 23083:1 23093:1 23095:3 23103:1 23108:3 23109:1 23111:1 23115:2 23147:33 23168:3 23169:1 23176:1 23186:1 23199:1 23202:1 23223:1 23227:1 23228:1 23234:1 23235:2 23242:2 23247:6 23267:1 23276:1 23283:1 23289:1 23290:1 23307:1 23315:1 23321:3 23325:2 23329:1 23336:1 23348:1 23350:1 23358:1 23359:1 23371:1 23379:2 23381:2 23408:2 23416:1 23460:1 23465:1 23487:1 23490:1 23506:2 23508:1 23509:2 23525:1 23541:1 23543:1 23593:1 23596:1 23610:1 23617:2 23622:1 23630:1 23641:2 23651:2 23664:2 23670:1 23693:1 23699:3 23735:1 23740:2 23745:1 23752:1 23766:1 23767:3 23772:1 23775:1 23782:1 23785:6 23786:1 23788:1 23802:1 23817:1 23825:1 23832:1 23838:1 23842:1 23846:1 23857:1 23868:1 23884:1 23890:1 23891:1 23895:1 23912:1 23913:1 23915:2 23932:1 23941:1 23944:1 23956:1 23957:3 23978:1 23982:2 24001:1 24008:2 24013:1 24028:2 24039:1 24065:1 24067:1 24069:5 24075:2 24076:1 24080:2 24092:2 24093:2 24097:3 24105:1 24114:1 24140:1 24144:3 24147:1 24150:1 24175:1 24186:9 24191:1 24202:1 24213:1 24217:1 24220:1 24225:1 24232:1 24235:1 24270:1 24275:1 24286:1 24291:4 24304:1 24326:1 24334:2 24366:1 24379:1 24384:1 24388:3 24393:1 24395:1 24414:1 24420:1 24427:2 24435:1 24444:1 24450:1 24480:3 24484:2 24492:1 24493:1 24495:2 24499:5 24502:1 24503:1 24505:2 24519:1 24524:1 24536:2 24552:3 24572:1 24576:2 24577:3 24591:1 24594:1 24612:2 24614:1 24620:1 24623:2 24626:1 24628:4 24631:1 24645:1 24646:1 24653:1 24654:1 24656:1 24661:1 24675:1 24676:1 24687:1 24689:1 24690:1 24699:1 24704:1 24707:1 24711:1 24757:1 24766:1 24778:1 24779:1 24797:1 24802:3 24803:1 24812:1 24815:1 24838:1 24854:4 24858:2 24859:2 24863:1 24871:2 24872:1 24911:1 24919:1 24922:2 24943:1 24971:1 24974:1 24979:1 25025:1 25048:2 25064:1 25069:1 25072:1 25075:2 25077:6 25088:1 25097:5 25100:3 25107:1 25132:2 25133:2 25134:1 25163:1 25166:2 25173:2 25181:1 25184:1 25192:2 25198:1 25199:1 25205:2 25208:1 25210:1 25212:1 25215:1 25222:4 25227:1 25236:1 25238:1 25245:1 25248:1 25255:1 25271:1 25274:1 25277:4 25279:1 25280:1 25281:2 25283:1 25284:1 25295:1 25306:1 25309:1 25310:1 25313:1 25328:2 25351:1 25362:1 25365:1 25378:3 25383:1 25384:1 25387:1 25402:1 25408:1 25413:1 25415:1 25423:2 25440:4 25451:4 25454:2 25461:1 25467:1 25473:1 25485:4 25499:4 25511:2 25516:4 25542:1 25546:5 25552:1 25554:1 25565:1 25573:1 25576:12 25585:2 25599:2 25617:2 25628:1 25636:1 25693:1 25705:1 25707:1 25710:2 25713:3 25715:1 25718:1 25732:2 25740:1 25741:1 25760:2 25766:1 25777:2 25778:1 25803:1 25807:1 25809:1 25812:1 25823:1 25832:1 25844:1 25848:1 25849:1 25850:2 25854:1 25860:1 25861:1 25874:1 25875:1 25876:1 25884:2 25885:1 25895:2 25920:3 25929:1 25933:1 25944:2 25955:1 25956:1 25961:1 25964:1 25966:2 25988:1 25989:1 25994:1 25995:4 25998:2 26005:2 26018:2 26019:1 26022:11 26023:1 26027:1 26042:2 26054:1 26061:1 26065:1 26074:1 26088:1 26093:5 26107:1 26113:1 26119:1 26122:1 26125:1 26128:1 26130:1 26145:1 26148:1 26149:1 26156:1 26182:1 26202:2 26231:2 26233:1 26253:3 26268:1 26272:1 26277:1 26278:1 26283:1 26286:1 26291:1 26333:2 26336:1 26354:1 26356:2 26372:1 26384:1 26399:1 26401:2 26417:1 26428:1 26429:2 26440:2 26450:2 26465:1 26484:1 26489:1 26498:1 26509:1 26525:1 26536:1 26542:1 26546:1 26588:1 26597:1 26609:2 26616:1 26626:1 26630:2 26632:6 26653:1 26654:3 26657:1 26661:2 26663:1 26675:4 26685:1 26691:1 26692:1 26703:3 26712:1 26714:2 26734:1 26742:2 26743:7 26744:1 26746:2 26753:1 26754:1 26757:1 26764:2 26774:1 26778:3 26789:3 26794:2 26796:1 26799:1 26813:1 26818:1 26847:1 26851:1 26866:1 26870:2 26875:1 26878:2 26884:2 26889:1 26894:1 26897:3 26899:1 26901:1 26911:1 26915:1 26918:5 26923:3 26930:2 26931:1 26932:2 26945:2 26968:1 26970:1 26971:2 26979:1 26991:2 26992:1 26994:1 27003:1 27035:2 27043:1 27045:1 27054:3 27064:2 27074:1 27082:1 27084:1 27087:1 27096:1 27100:8 27130:1 27131:1 27145:1 27150:1 27157:1 27164:2 27172:1 27173:1 27176:1 27178:1 27188:3 27196:1 27206:1 27224:1 27227:2 27228:1 27229:1 27230:3 27235:1 27236:1 27249:1 27251:5 27252:1 27254:2 27258:3 27265:1 27266:2 27269:1 27271:2 27276:3 27287:2 27296:3 27297:1 27299:3 27311:1 27318:1 27320:1 27329:1 27347:7 27353:1 27365:4 27390:1 27392:1 27401:1 27403:1 27405:3 27408:1 27411:3 27418:1 27424:1 27426:1 27427:1 27448:2 27451:1 27466:1 27468:1 27472:1 27502:1 27504:1 27516:2 27540:1 27548:1 27556:1 27558:1 27615:1 27620:1 27652:1 27658:3 27659:2 27662:2 27663:1 27666:4 27670:3 27673:7 27675:1 27676:1 27680:1 27689:1 27713:1 27718:1 27722:1 27727:3 27732:1 27734:1 27745:1 27761:1 27764:1 27771:1 27784:2 27802:2 27808:1 27832:2 27855:1 27858:1 27868:1 27874:2 27898:1 27899:1 27908:1 27909:1 27912:1 27928:2 27945:1 27950:1 27953:1 27956:3 27965:1 27969:13 27970:1 27974:1 27978:1 27981:1 27993:1 27999:3 28008:6 28032:1 28060:1 28073:1 28076:1 28080:4 28095:1 28105:1 28107:1 28109:2 28117:11 28123:3 28131:1 28134:1 28137:1 28151:1 28152:1 28162:1 28165:12 28170:1 28177:1 28207:1 28212:2 28214:1 28222:1 28231:1 28243:2 28258:1 28283:1 28296:2 28335:1 28345:1 28363:1 28367:1 28375:1 28388:1 28392:41 28393:1 28413:1 28416:5 28417:2 28422:2 28423:5 28424:2 28425:1 28434:1 28435:1 28457:1 28485:4 28490:11 28491:1 28503:1 28509:1 28512:2 28515:1 28522:1 28529:1 28545:1 28546:2 28584:1 28597:1 28610:2 28615:2 28634:2 28635:1 28647:1 28660:1 28664:1 28669:4 28690:2 28701:4 28710:1 28753:3 28758:1 28760:1 28775:1 28782:1 28785:1 28787:2 28796:2 28798:1 28803:2 28804:1 28814:1 28852:1 28854:1 28857:2 28859:2 28865:1 28875:2 28887:1 28894:2 28901:1 28902:1 28903:2 28913:1 28923:1 28927:1 28928:1 28937:1 28940:2 28950:1 28954:1 28959:1 28964:1 28974:1 28976:1 28979:1 28986:1 28988:1 28999:1 29000:9 29001:1 29003:2 29005:3 29024:1 29027:1 29031:3 29042:6 29057:4 29062:2 29063:2 29069:1 29073:33 29079:2 29100:1 29120:1 29128:1 29137:1 29139:1 29141:2 29145:1 29146:2 29147:4 29176:1 29179:1 29183:1 29184:2 29194:2 29197:1 29208:1 29215:1 29223:1 29225:2 29236:1 29240:1
2 12:1 13:1 31:2 32:1 36:1 41:1 49:1 52:1 55:1 56:1 59:1 67:1 75:1 85:3 88:1 89:2 91:1 98:1 106:1 113:1 146:2 154:1 160:1 166:2 170:2 174:2 176:1 180:1 184:1 193:1 196:1 199:1 209:1 213:2 223:1 227:1 228:1 241:1 249:2 252:1 265:3 271:5 272:1 276:2 286:2 287:1 291:1 292:1 322:2 329:1 358:1 359:4 375:1 376:2 380:1 385:1 388:1 391:1 392:1 395:1 415:2 425:2 429:2 441:1 446:2 452:1 460:1 462:1 469:1 471:2 479:2 490:2 501:3 505:1 509:1 515:1 519:1 536:1 544:1 552:1 553:1 562:1 564:1 571:1 593:1 607:3 613:2 618:2 620:1 623:1 632:1 644:6 658:34 661:1 663:4 667:1 670:1 671:1 682:1 686:1 696:1 699:3 702:2 714:1 719:2 725:1 728:2 735:2 745:3 749:1 783:2 809:1 813:2 815:1 817:3 820:2 822:1 823:1 824:3 838:1 857:1 861:3 868:1 876:3 882:1 894:1 904:3 905:7 907:3 908:1 917:5 930:1 937:4 943:1 951:2 957:3 960:9 964:1 965:2 970:1 976:2 980:2 982:3 999:2 1003:1 1006:2 1016:3 1027:1 1029:2 1032:1 1036:1 1048:2 1050:1 1055:4 1056:1 1058:1 1091:1 1098:2 1099:1 1100:1 1112:1 1137:1 1146:1 1158:1 1160:3 1190:1 1211:1 1214:33 1220:1 1223:2 1224:2 1227:1 1229:4 1232:1 1245:1 1256:1 1258:2 1260:2 1266:1 1270:1 1275:1 1277:1 1279:3 1280:2 1281:1 1288:1 1290:1 1295:1 1298:1 1302:1 1314:1 1316:1 1338:1 1354:1 1356:2 1380:4 1390:1 1393:1 1395:1 1397:1 1402:2 1404:10 1420:1 1430:1 1444:1 1452:3 1459:1 1462:2 1475:1 1481:1 1493:1 1499:1 1501:1 1502:3 1506:2 1510:11 1512:1 1516:1 1517:1 1528:1 1532:1 1540:1 1546:2 1548:1 1550:1 1576:3 1582:1 1598:1 1602:4 1615:1 1616:1 1631:1 1636:1 1637:2 1639:1 1647:2 1650:1 1666:1 1672:1 1676:1 1677:10 1685:1 1687:1 1690:1 1691:2 1705:1 1720:1 1728:1 1740:2 1741:1 1745:3 1757:1 1760:1 1762:1 1776:1 1778:1 1779:1 1783:1 1795:1 1820:1 1827:1 1833:1 1838:1 1840:1 1842:1 1853:1 1866:1 1870:2 1871:2 1877:1 1878:1 1895:1 1897:1 1898:3 1901:1 1907:1 1913:1 1918:2 1921:2 1930:1 1937:1 1941:2 1947:2 1957:2 1959:1 1976:1 1977:1 1982:1 1992:1 1993:1 2001:1 2022:7 2042:1 2045:1 2048:1 2051:2 2053:1 2076:1 2077:1 2085:1 2094:1 2115:1 2117:1 2118:2 2123:1 2125:1 2127:1 2140:1 2144:1 2145:1 2157:1 2158:1 2161:1 2172:1 2176:1 2181:1 2186:1 2196:9 2217:1 2235:2 2238:1 2239:1 2265:1 2269:1 2291:1 2299:1 2325:1 2329:1 2333:1 2334:2 2335:2 2336:4 2337:2 2338:2 2339:3 2341:1 2342:5 2347:8 2349:4 2352:7 2356:4 2359:1 2360:1 2362:1 2364:1 2367:1 2369:4 2372:3 2375:1 2376:1 2379:1 2382:1 2383:1 2405:1 2406:1 2412:1 2421:2 2422:1 2430:5 2433:1 2439:1 2457:2 2460:1 2478:1 2479:1 2482:1 2487:1 2492:1 2494:4 2495:4 2500:1 2503:4 2513:2 2514:4 2522:3 2523:1 2531:1 2533:1 2539:1 2550:4 2562:1 2564:1 2571:1 2596:1 2603:2 2604:2 2610:1 2616:1 2624:1 2646:2 2660:1 2663:1 2674:2 2680:1 2681:1 2730:1 2735:1 2736:2 2751:2 2758:2 2767:2 2773:1 2775:1 2777:1 2785:3 2787:1 2791:4 2804:1 2809:1 2812:3 2813:4 2819:1 2822:3 2826:1 2833:1 2839:1 2841:1 2872:3 2877:1 2881:5 2883:5 2886:1 2889:1 2892:2 2901:2 2904:1 2915:1 2937:2 2940:1 2949:2 2954:1 2956:2 2963:1 2982:17 2984:34 2986:1 2990:1 2991:3 2998:2 3002:1 3014:1 3018:1 3019:1 3023:4 3024:1 3029:1 3032:1 3039:8 3049:1 3053:4 3057:2 3067:1 3070:1 3091:2 3097:1 3100:1 3101:1 3127:2 3133:3 3139:1 3142:1 3169:3 3196:1 3219:1 3226:1 3267:1 3278:4 3281:1 3293:1 3297:1 3301:1 3316:2 3337:1 3340:1 3341:1 3351:1 3354:3 3360:1 3368:3 3380:1 3387:1 3393:1 3399:1 3401:4 3419:2 3445:1 3482:1 3486:1 3502:1 3506:1 3521:2 3525:1 3527:1 3536:1 3540:1 3541:1 3550:1 3552:1 3556:2 3564:1 3574:1 3601:1 3604:1 3606:1 3612:1 3617:1 3627:1 3628:1 3632:1 3642:1 3645:1 3666:2 3677:1 3684:1 3690:1 3697:1 3704:1 3715:1 3734:1 3758:1 3773:3 3774:2 3775:1 3779:2 3782:2 3798:1 3823:1 3831:3 3833:1 3861:1 3867:1 3872:2 3877:1 3882:1 3884:3 3886:1 3902:1 3907:2 3909:2 3915:2 3936:1 3938:1 3940:1 3946:3 3960:1 3963:1 3964:1 3985:1 3990:33 3991:2 3998:1 4007:1 4012:1 4020:1 4049:1 4052:1 4053:1 4056:1 4066:1 4072:2 4079:4 4081:4 4096:2 4102:1 4108:1 4113:5 4117:5 4118:2 4131:1 4132:2 4148:1 4171:1 4182:1 4195:1 4196:2 4208:3 4216:1 4225:1 4231:1 4258:1 4260:1 4262:1 4264:2 4267:1 4269:1 4272:1 4277:1 4293:1 4304:1 4307:1 4309:2 4310:1 4312:3 4317:1 4319:3 4331:1 4357:1 4370:1 4376:3 4402:1 4405:2 4407:1 4409:1 4412:1 4415:1 4424:1 4432:2 4434:33 4435:1 4443:1 4446:1 4448:1 4452:5 4462:1 4466:1 4475:1 4477:1 4479:1 4527:2 4535:6 4550:1 4553:1 4554:1 4557:1 4564:1 4580:1 4590:3 4604:2 4609:3 4610:1 4618:2 4622:2 4623:1 4626:1 4629:1 4648:1 4668:7 4676:1 4698:2 4717:1 4744:1 4774:5 4790:4 4796:1 4811:1 4812:1 4818:6 4826:1 4854:1 4863:1 4883:1 4898:1 4902:2 4903:2 4908:2 4909:1 4916:1 4920:3 4931:1 4942:1 4943:3 4954:1 4974:1 4976:1 4977:1 4983:1 4997:2 4998:2 5012:19 5013:2 5022:2 5025:1 5046:6 5053:2 5063:2 5087:2 5089:1 5106:1 5138:4 5140:1 5143:3 5149:1 5159:4 5160:4 5161:2 5164:1 5167:5 5173:1 5174:2 5175:4 5176:1 5183:1 5190:2 5192:5 5194:4 5195:1 5205:1 5214:1 5230:1 5264:1 5267:1 5268:2 5283:1 5300:1 5324:1 5342:1 5361:1 5389:1 5403:1 5427:1 5438:1 5439:2 5440:1 5462:1 5482:1 5485:1 5486:1 5495:1 5496:2 5533:1 5534:3 5549:2 5574:1 5577:2 5579:1 5583:1 5603:1 5606:1 5613:2 5624:1 5626:1 5630:3 5634:1 5690:1 5699:1 5700:1 5712:1 5713:1 5716:1 5723:2 5724:1 5729:2 5740:1 5741:1 5742:1 5762:2 5774:1 5776:1 5780:10 5784:1 5790:2 5792:1 5794:1 5800:1 5802:2 5807:1 5822:2 5833:2 5839:1 5841:1 5853:2 5860:1 5889:1 5896:1 5908:2 5921:1 5924:1 5926:2 5939:2 5968:3 5992:1 6005:1 6017:1 6027:1 6034:1 6042:1 6043:1 6063:1 6064:1 6065:2 6076:3 6079:1 6092:1 6097:1 6118:1 6121:1 6143:1 6149:1 6151:2 6168:2 6176:2 6182:2 6187:1 6195:1 6198:1 6203:1 6207:2 6208:3 6211:1 6212:1 6217:1 6220:1 6221:1 6227:1 6247:1 6255:1 6276:1 6281:1 6294:2 6295:2 6296:1 6301:1 6302:1 6304:1 6307:2 6308:1 6311:1 6312:1 6313:1 6315:3 6317:1 6320:2 6322:2 6324:2 6325:2 6326:1 6330:1 6345:1 6356:2 6388:2 6391:1 6399:1 6408:4 6410:2 6416:1 6428:3 6436:1 6437:1 6448:1 6456:1 6479:2 6486:1 6500:1 6507:1 6510:1 6523:7 6528:1 6533:1 6534:4 6536:1 6538:1 6539:1 6540:2 6543:4 6545:2 6546:1 6547:1 6550:4 6552:8 6553:1 6554:1 6560:1 6563:1 6581:1 6595:1 6599:1 6600:2 6601:1 6615:1 6619:1 6629:1 6637:1 6657:1 6666:2 6667:1 6674:3 6679:3 6694:1 6702:2 6717:1 6720:1 6736:1 6744:1 6746:1 6747:1 6749:1 6755:1 6762:1 6763:1 6769:1 6772:1 6776:1 6785:1 6792:1 6795:2 6796:1 6809:1 6810:2 6820:1 6831:2 6850:1 6853:1 6866:1 6872:1 6892:1 6899:1 6901:1 6904:1 6908:3 6927:3 6939:1 6960:2 6962:1 6967:1 6974:1 6991:1 6997:2 7025:1 7030:1 7040:1 7059:1 7063:2 7077:1 7083:1 7101:1 7102:1 7114:1 7117:1 7130:1 7177:1 7178:1 7180:1 7184:1 7187:1 7192:2 7203:1 7212:1 7217:6 7264:1 7269:1 7271:1 7277:1 7283:1 7287:2 7295:1 7301:2 7319:1 7332:1 7346:1 7351:1 7369:3 7375:1 7398:1 7406:1 7409:2 7412:1 7413:2 7417:1 7423:1 7428:1 7431:1 7435:1 7442:1 7447:1 7474:1 7476:1 7485:1 7495:1 7496:2 7508:1 7522:1 7540:1 7543:2 7562:1 7563:1 7571:1 7574:1 7582:1 7593:1 7596:6 7629:9 7632:1 7636:1 7663:1 7664:2 7673:1 7679:1 7693:2 7707:1 7716:1 7718:1 7722:1 7725:1 7748:4 7749:1 7779:1 7787:1 7803:3 7815:12 7816:13 7821:1 7833:1 7834:1 7835:5 7837:1 7864:3 7868:4 7871:1 7878:51 7882:1 7883:1 7886:2 7890:1 7891:1 7897:19 7900:5 7903:1 7907:1 7908:1 7911:1 7932:1 7933:4 7936:2 7941:2 7949:1 7957:1 7985:6 7996:2 8002:1 8013:1 8014:1 8037:1 8039:2 8054:3 8065:1 8071:1 8075:4 8077:1 8083:1 8087:1 8105:1 8109:6 8119:1 8129:1 8159:1 8162:2 8176:1 8189:1 8196:1 8249:1 8253:1 8286:1 8290:1 8300:1 8312:2 8316:1 8348:1 8351:1 8364:1 8376:1 8377:34 8383:1 8384:1 8392:1 8394:1 8396:1 8402:1 8410:16 8411:4 8426:1 8428:2 8441:1 8443:1 8445:1 8447:1 8449:2 8466:1 8475:1 8480:1 8492:42 8499:1 8501:1 8531:2 8537:1 8554:1 8561:1 8588:2 8596:1 8598:1 8605:1 8608:1 8645:1 8657:1 8659:2 8667:1 8671:1 8674:2 8677:1 8680:1 8683:1 8687:1 8693:5 8694:1 8713:1 8720:1 8725:2 8745:3 8746:1 8750:1 8760:2 8762:1 8763:1 8766:1 8768:1 8778:2 8779:2 8782:1 8783:1 8792:1 8797:1 8812:1 8813:1 8822:1 8832:1 8836:1 8841:1 8845:1 8850:2 8859:1 8862:3 8883:1 8915:1 8923:1 8926:1 8928:1 8931:2 8987:3 8989:1 8991:1 9014:2 9039:1 9052:1 9057:2 9059:1 9061:1 9063:1 9066:1 9067:1 9069:2 9086:1 9090:4 9106:1 9110:1 9111:1 9112:3 9118:1 9129:3 9138:1 9139:1 9140:1 9184:1 9191:3 9196:1 9199:2 9204:2 9236:1 9238:6 9247:5 9256:1 9258:1 9264:2 9300:1 9320:4 9343:3 9377:1 9378:4 9382:2 9384:1 9391:5 9393:3 9394:1 9396:1 9400:1 9404:1 9406:2 9408:2 9415:1 9421:1 9428:1 9429:1 9432:1 9435:1 9442:1 9445:1 9446:1 9447:2 9448:1 9449:1 9456:1 9466:1 9472:1 9473:3 9483:8 9487:1 9490:2 9496:2 9504:1 9506:1 9521:2 9525:1 9534:1 9543:1 9546:2 9558:1 9563:2 9564:2 9571:1 9580:1 9592:1 9600:1 9607:1 9610:1 9611:2 9616:2 9619:2 9622:1 9623:1 9624:1 9627:1 9628:1 9637:1 9641:1 9642:1 9653:1 9658:1 9660:1 9661:10 9675:1 9677:2 9678:9 9681:1 9689:1 9694:1 9698:1 9701:2 9703:1 9706:1 9715:1 9717:1 9719:3 9721:1 9723:1 9726:1 9738:1 9751:1 9752:1 9763:1 9773:1 9779:1 9782:1 9795:1 9797:1 9802:1 9803:1 9804:2 9805:1 9813:1 9828:1 9841:1 9855:1 9856:1 9860:1 9887:1 9905:6 9914:1 9915:1 9916:1 9920:1 9921:3 9924:4 9927:1 9934:1 9936:1 9961:1 9962:1 9974:1 9987:1 10003:1 10016:1 10028:1 10029:1 10046:33 10050:1 10053:1 10055:1 10061:1 10069:1 10077:1 10083:2 10092:1 10097:1 10098:1 10102:1 10115:1 10117:1 10122:1 10131:2 10134:1 10138:1 10144:1 10166:1 10170:4 10174:1 10177:3 10184:1 10188:2 10195:2 10220:1 10229:1 10233:1 10242:2 10243:2 10252:1 10255:1 10260:1 10261:2 10266:2 10268:2 10280:5 10284:5 10292:1 10297:3 10299:1 10322:5 10336:1 10337:1 10339:2 10350:1 10359:1 10362:1 10381:1 10383:2 10388:1 10393:1 10402:1 10404:1 10405:1 10417:1 10426:7 10440:1 10464:1 10518:2 10522:1 10526:1 10542:5 10555:1 10564:2 10573:1 10575:2 10576:1 10582:1 10594:1 10604:1 10609:1 10619:1 10623:1 10624:7 10641:1 10664:3 10681:1 10691:1 10705:1 10707:1 10725:1 10740:4 10745:1 10758:1 10760:5 10770:1 10773:1 10786:2 10820:2 10834:1 10840:1 10842:2 10859:1 10860:5 10864:2 10867:6 10874:1 10882:1 10894:1 10907:2 10912:1 10914:1 10922:1 10923:1 10926:1 10929:7 10934:1 10942:1 10947:1 10955:2 10956:1 10976:2 10980:1 10990:1 11004:1 11005:1 11036:1 11065:1 11066:10 11082:1 11083:1 11089:1 11098:2 11100:1 11108:1 11111:2 11114:3 11117:3 11124:1 11131:1 11143:4 11152:1 11158:1 11167:1 11170:2 11176:1 11178:1 11185:1 11195:1 11197:8 11200:1 11203:1 11215:1 11217:3 11219:4 11220:1 11231:1 11234:2 11237:1 11246:1 11264:1 11266:1 11276:6 11279:1 11281:1 11283:1 11285:1 11286:1 11293:2 11300:1 11303:2 11311:1 11320:1 11333:1 11347:2 11372:1 11373:1 11375:1 11383:1 11385:1 11390:1 11400:1 11404:3 11407:1 11437:2 11455:1 11456:2 11464:2 11466:1 11474:1 11475:1 11476:4 11477:1 11483:2 11484:1 11487:1 11490:1 11502:2 11503:5 11505:1 11508:1 11510:1 11511:1 11518:1 11532:1 11535:3 11552:1 11568:1 11571:5 11591:1 11606:1 11609:2 11613:1 11614:1 11617:1 11622:1 11627:1 11629:1 11636:9 11648:2 11649:2 11674:1 11679:1 11695:1 11699:1 11702:1 11714:1 11732:2 11744:1 11746:1 11750:2 11770:1 11775:6 11797:1 11800:1 11803:1 11809:1 11812:3 11824:1 11825:1 11827:2 11829:1 11834:1 11838:1 11839:6 11840:4 11845:2 11848:1 11851:5 11854:1 11871:1 11878:1 11881:2 11891:1 11895:2 11899:1 11900:8 11904:1 11907:1 11916:1 11930:1 11931:1 11936:2 11949:1 11955:1 11979:1 11992:3 11995:1 11996:1 12003:4 12011:1 12039:1 12043:3 12054:1 12090:1 12092:1 12109:1 12110:1 12139:1 12142:1 12163:2 12164:1 12179:1 12193:1 12223:1 12224:1 12235:1 12240:3 12261:4 12281:1 12283:1 12289:1 12311:1 12322:1 12329:1 12330:1 12337:1 12338:1 12339:3 12344:5 12345:1 12348:1 12354:1 12364:1 12372:1 12376:1 12383:1 12385:1 12406:1 12421:1 12431:1 12444:1 12455:1 12460:2 12461:5 12470:1 12483:1 12505:1 12510:1 12513:2 12522:1 12532:2 12555:1 12563:1 12575:1 12588:1 12597:3 12599:1 12606:1 12612:1 12613:1 12633:1 12635:1 12648:1 12650:1 12657:1 12664:1 12666:1 12722:1 12723:1 12746:1 12763:1 12767:1 12790:3 12792:34 12797:1 12800:1 12809:1 12813:5 12815:1 12821:1 12859:6 12873:1 12884:2 12888:1 12902:1 12916:1 12922:1 12927:1 12932:1 12964:2 12967:1 12969:2 12980:1 13001:1 13008:1 13009:1 13020:1 13024:2 13027:1 13032:1 13038:1 13045:1 13086:1 13100:2 13111:1 13116:1 13132:1 13141:2 13145:1 13163:1 13174:1 13180:1 13182:1 13183:1 13193:1 13195:1 13217:1 13229:1 13238:1 13239:1 13257:1 13259:1 13262:1 13265:1 13268:1 13269:1 13280:1 13286:12 13291:4 13294:3 13306:1 13307:1 13313:2 13326:1 13339:1 13340:1 13384:1 13389:1 13400:1 13412:1 13417:1 13418:1 13419:2 13424:2 13427:6 13430:5 13437:1 13462:1 13464:1 13480:1 13482:1 13491:14 13495:1 13502:1 13532:1 13584:1 13585:2 13595:1 13626:1 13639:3 13641:4 13647:2 13665:1 13673:1 13675:1 13676:1 13680:1 13688:1 13695:2 13700:2 13705:1 13707:1 13713:1 13716:1 13717:1 13729:2 13732:1 13747:1 13766:1 13770:2 13772:3 13773:1 13775:1 13777:1 13780:1 13782:10 13783:1 13784:1 13786:2 13804:1 13805:2 13806:1 13808:1 13809:1 13814:6 13818:1 13821:1 13826:1 13827:2 13859:1 13868:1 13869:1 13873:1 13889:1 13901:1 13910:1 13928:1 13935:1 13939:1 13941:2 13951:10 13953:1 13955:2 13963:1 13974:1 13980:1 13988:1 13991:1 13998:1 14001:1 14012:1 14028:1 14030:2 14038:5 14052:1 14055:1 14057:3 14059:1 14069:11 14072:7 14096:1 14107:1 14147:2 14156:5 14166:1 14177:4 14179:1 14202:1 14232:1 14241:1 14256:1 14259:1 14261:3 14273:1 14275:2 14278:1 14299:1 14308:2 14314:1 14323:1 14329:1 14361:4 14393:1 14398:1 14422:1 14426:1 14440:2 14449:2 14451:1 14454:1 14460:2 14465:2 14466:2 14468:3 14480:1 14485:2 14486:1 14497:1 14498:2 14506:2 14516:1 14541:1 14555:1 14557:1 14559:1 14560:2 14564:1 14574:1 14575:2 14576:1 14578:1 14590:1 14592:2 14607:1 14612:1 14613:2 14615:1 14617:1 14621:1 14622:1 14623:1 14625:1 14626:1 14627:1 14629:1 14634:1 14638:1 14641:1 14643:1 14652:1 14653:1 14657:2 14659:1 14664:1 14670:2 14684:1 14688:1 14699:34 14700:1 14705:3 14708:1 14709:1 14714:1 14721:1 14728:1 14736:1 14786:1 14789:1 14792:5 14800:1 14801:1 14806:2 14827:1 14832:1 14847:3 14850:1 14852:1 14863:1 14869:1 14870:1 14887:3 14890:1 14900:1 14902:1 14906:1 14939:1 14941:1 14944:1 14979:1 14993:2 15000:2 15001:1 15003:1 15010:1 15016:1 15031:1 15054:1 15060:1 15069:1 15070:2 15072:2 15080:1 15087:1 15100:1 15104:2 15105:1 15106:1 15109:7 15113:1 15169:1 15174:1 15175:1 15188:1 15193:3 15194:1 15197:1 15208:1 15218:1 15223:1 15237:2 15238:1 15245:2 15247:3 15257:1 15258:1 15267:1 15278:2 15299:1 15306:1 15315:1 15319:1 15322:2 15340:2 15379:3 15380:1 15386:1 15396:1 15408:1 15409:2 15433:1 15452:1 15458:1 15462:2 15465:1 15478:1 15482:2 15488:1 15491:1 15506:1 15521:1 15526:1 15536:1 15542:1 15555:1 15556:3 15557:4 15566:1 15584:1 15590:1 15608:5 15610:1 15612:1 15616:2 15619:1 15633:1 15653:1 15674:1 15678:1 15690:1 15718:1 15723:1 15730:1 15738:1 15742:2 15755:1 15757:1 15762:4 15778:1 15779:1 15783:1 15795:1 15796:5 15802:3 15805:2 15818:4 15819:1 15823:1 15827:1 15828:1 15835:3 15844:1 15888:1 15890:1 15897:5 15899:2 15921:4 15923:2 15931:1 15944:1 15946:1 15951:1 15960:1 15961:3 15971:1 15973:3 15988:1 16006:1 16023:1 16025:1 16031:1 16038:1 16051:1 16057:1 16060:15 16062:2 16063:1 16067:1 16096:4 16098:3 16100:1 16105:2 16116:1 16133:2 16137:1 16139:2 16140:1 16142:1 16143:2 16165:12 16178:1 16183:1 16186:1 16193:1 16200:4 16203:1 16239:2 16250:1 16252:1 16254:1 16262:1 16264:1 16270:1 16271:2 16279:1 16285:4 16286:2 16287:1 16291:4 16292:1 16298:1 16299:3 16300:1 16301:2 16304:1 16321:1 16333:1 16357:2 16380:1 16381:1 16387:1 16392:1 16404:1 16413:1 16416:1 16418:1 16419:1 16440:1 16448:1 16452:1 16455:1 16457:1 16468:2 16476:1 16484:1 16510:1 16522:1 16523:1 16524:2 16527:1 16579:1 16590:2 16604:2 16613:1 16617:1 16631:3 16634:1 16644:1 16646:10 16647:1 16649:1 16658:1 16679:1 16687:1 16689:1 16692:1 16712:2 16714:1 16717:1 16723:1 16724:1 16725:2 16751:1 16757:1 16766:1 16769:1 16773:3 16776:1 16782:2 16797:2 16800:3 16810:1 16811:2 16822:1 16878:1 16881:1 16899:1 16912:1 16922:1 16926:46 16932:1 16933:2 16934:1 16949:1 16951:1 16963:1 16966:1 16967:4 16998:1 17020:1 17028:1 17030:1 17038:1 17042:1 17047:1 17060:1 17068:3 17072:2 17083:1 17088:1 17099:1 17103:2 17132:1 17138:1 17143:1 17144:1 17160:1 17166:2 17181:1 17184:1 17199:1 17207:1 17208:1 17213:1 17234:1 17236:2 17240:2 17241:1 17243:1 17250:1 17255:1 17266:1 17281:1 17284:1 17329:1 17332:1 17356:1 17359:1 17361:2 17372:1 17375:1 17380:1 17383:1 17384:1 17388:1 17393:2 17395:1 17406:1 17424:1 17436:1 17440:1 17443:1 17447:2 17449:1 17450:1 17452:1 17455:1 17457:1 17459:2 17465:2 17475:1 17484:1 17490:1 17535:2 17541:1 17545:1 17549:2 17555:2 17560:1 17579:1 17604:1 17620:1 17623:1 17632:4 17634:1 17637:2 17639:1 17645:1 17649:1 17662:1 17664:1 17671:2 17672:2 17683:1 17689:1 17692:1 17711:2 17717:1 17727:3 17731:2 17758:4 17759:1 17766:4 17776:1 17787:4 17788:1 17796:1 17812:1 17817:1 17844:1 17855:7 17859:1 17860:2 17884:3 17891:1 17909:2 17926:1 17929:2 17930:1 17936:2 17937:1 17945:1 17964:1 17980:1 17986:2 18012:1 18013:4 18017:2 18018:2 18019:1 18026:1 18030:1 18035:1 18055:1 18058:1 18076:1 18098:1 18100:2 18104:1 18123:1 18141:1 18142:1 18146:5 18204:1 18206:2 18210:1 18223:1 18234:2 18245:1 18258:1 18269:1 18300:9 18310:1 18316:1 18332:1 18340:2 18370:1 18374:1 18377:4 18384:1 18393:1 18395:1 18401:1 18402:1 18417:1 18419:1 18422:1 18431:2 18447:2 18450:1 18456:1 18462:1 18499:1 18504:1 18507:1 18516:2428 18527:2 18531:1 18538:2 18551:1 18555:1 18566:1 18581:1 18587:1 18589:1 18595:1 18597:1 18604:1 18619:1 18638:3 18648:1 18651:3 18653:1 18678:1 18680:1 18691:1 18702:1 18707:1 18712:2 18724:1 18760:1 18775:1 18780:2 18781:1 18787:1 18802:1 18832:1 18837:1 18850:2 18859:1 18863:1 18864:1 18894:2 18901:1 18902:1 18933:1 18952:1 18960:1 18969:1 18976:2 18978:1 18982:1 18986:1 19003:1 19013:1 19014:3 19016:2 19034:1 19037:1 19051:1 19083:1 19085:6 19116:5 19120:1 19128:1 19131:2 19137:1 19175:1 19178:1 19184:1 19189:1 19192:1 19198:1 19219:1 19223:1 19230:1 19239:1 19245:1 19253:1 19257:1 19259:1 19268:1 19276:1 19282:7 19283:4 19290:1 19315:1 19318:4 19333:1 19342:2 19346:1 19362:1 19377:23 19384:1 19399:2 19409:1 19420:2 19421:1 19427:1 19428:1 19429:2 19447:1 19451:4 19452:1 19453:1 19454:2 19461:2 19469:1 19477:1 19481:2 19490:3 19491:1 19500:1 19509:1 19530:2 19558:1 19561:1 19573:1 19574:1 19580:1 19584:4 19589:2 19603:1 19609:3 19611:1 19635:1 19638:1 19641:1 19653:2 19656:1 19658:1 19663:1 19678:2 19692:1 19697:1 19709:1 19713:2 19715:1 19726:1 19728:1 19732:1 19737:4 19757:1 19768:1 19790:1 19793:1 19813:1 19819:1 19820:3 19822:2 19823:1 19829:1 19835:1 19847:1 19851:2 19861:1 19866:2 19881:1 19896:1 19927:2 19929:8 19937:1 19940:1 19945:1 19947:1 19950:1 19957:1 19962:1 19972:2 19986:1 19992:2 19995:2 20000:1 20001:3 20002:7 20005:1 20021:1 20029:2 20030:6 20031:1 20033:1 20042:1 20043:1 20051:5 20079:2 20099:2 20103:1 20109:3 20117:1 20121:1 20123:6 20131:1 20132:1 20144:3 20149:1 20156:1 20162:2 20185:1 20199:1 20211:5 20223:2 20244:1 20258:1 20259:1 20268:1 20285:1 20291:1 20293:1 20311:1 20338:1 20365:2 20375:1 20387:1 20390:1 20401:1 20408:1 20451:6 20455:1 20460:1 20462:1 20483:1 20484:2 20495:1 20499:2 20500:1 20513:3 20541:1 20555:1 20578:1 20591:1 20601:1 20602:2 20605:1 20623:1 20630:2 20649:1 20653:1 20661:2 20664:1 20668:1 20674:1 20691:2 20692:3 20697:1 20699:1 20702:2 20703:1 20704:2 20711:1 20718:2 20720:1 20725:1 20733:1 20748:1 20754:1 20762:2 20764:2 20767:1 20773:3 20787:1 20788:1 20789:1 20798:1 20799:1 20808:2 20810:2 20828:1 20829:1 20833:1 20840:2 20842:2 20848:1 20853:4 20862:2 20863:1 20866:1 20869:3 20870:2 20878:2 20886:1 20892:4 20899:1 20918:1 20925:1 20940:1 20942:5 20945:1 20953:2 20958:1 20994:1 20996:1 21001:2 21004:3 21018:1 21021:1 21026:1 21037:2 21057:1 21061:1 21063:1 21071:2 21078:1 21087:1 21106:1 21114:1 21122:1 21132:1 21137:1 21146:1 21151:1 21153:1 21155:1 21171:1 21185:1 21190:1 21196:1 21202:2 21204:1 21206:4 21219:2 21228:1 21233:1 21237:3 21257:1 21265:1 21271:2 21276:1 21285:1 21286:1 21289:1 21306:1 21308:1 21310:1 21311:1 21313:4 21317:1 21329:1 21332:1 21341:1 21351:2 21353:1 21359:1 21361:1 21363:1 21364:2 21369:2 21374:1 21382:1 21397:1 21398:1 21410:1 21411:1 21414:1 21415:1 21436:1 21442:1 21449:2 21451:1 21455:2 21464:4 21471:1 21473:1 21475:1 21492:2 21493:2 21506:1 21508:4 21517:1 21518:1 21530:1 21535:1 21543:1 21544:1 21547:1 21558:3 21562:1 21570:4 21573:1 21574:1 21577:1 21590:1 21610:1 21620:1 21625:7 21626:1 21648:1 21658:1 21663:1 21695:2 21696:1 21699:1 21705:7 21711:2 21712:1 21714:1 21715:4 21719:1 21728:3 21739:1 21741:1 21748:1 21763:1 21764:10 21775:1 21791:1 21835:1 21837:1 21843:1 21845:1 21877:1 21879:2 21881:4 21884:2 21887:1 21895:1 21896:1 21897:1 21898:2 21906:2 21908:2 21915:1 21918:1 21919:1 21923:7 21924:4 21925:1 21930:1 21936:1 21937:1 21939:1 21947:1 21955:1 21975:1 21997:1 22000:1 22015:1 22026:3 22028:1 22047:2 22058:2 22062:1 22066:4 22069:1 22082:2 22086:1 22095:1 22114:1 22128:3 22133:1 22139:1 22143:1 22144:1 22151:1 22161:4 22170:1 22175:2 22179:2 22192:1 22199:1 22214:1 22219:2 22235:1 22242:2 22248:15 22262:1 22267:2 22275:1 22296:1 22310:12 22312:2 22316:1 22321:1 22335:1 22338:1 22342:1 22362:1 22365:4 22368:2 22370:1 22379:4 22383:2 22416:1 22418:1 22425:7 22432:1 22439:1 22456:3 22457:1 22462:1 22471:1 22475:1 22479:1 22481:1 22490:1 22492:2 22516:1 22533:1 22536:1 22542:1 22543:2 22555:9 22566:3 22582:1 22583:1 22599:3 22640:1 22665:1 22667:1 22671:1 22676:1 22683:1 22688:1 22691:1 22694:33 22709:1 22713:3 22714:3 22717:1 22718:2 22719:1 22721:1 22723:1 22727:1 22752:2 22757:3 22759:1 22760:1 22762:1 22768:3 22770:1 22771:1 22781:1 22805:1 22809:1 22816:1 22838:1 22841:1 22842:5 22852:2 22861:2 22866:1 22871:4 22874:1 22887:1 22899:1 22901:1 22925:1 22986:1 22990:3 23000:3 23008:1 23019:1 23060:1 23074:1 23075:1 23079:1 23083:1 23093:1 23095:3 23100:1 23103:1 23108:3 23109:1 23111:1 23115:2 23147:34 23168:3 23169:1 23176:1 23186:1 23199:1 23202:1 23223:1 23227:1 23228:1 23234:1 23235:2 23242:2 23247:6 23267:1 23276:1 23283:1 23289:1 23290:1 23307:1 23315:1 23321:3 23325:2 23329:1 23336:1 23348:2 23350:1 23358:1 23359:1 23371:1 23379:2 23381:2 23408:2 23416:1 23460:1 23465:1 23487:1 23490:1 23506:2 23508:1 23509:2 23525:1 23541:1 23543:1 23593:1 23596:1 23610:1 23617:2 23622:1 23630:1 23641:2 23651:2 23664:2 23670:1 23693:1 23699:3 23735:1 23736:1 23740:2 23745:1 23752:1 23766:1 23767:3 23772:1 23775:1 23782:1 23785:7 23786:1 23788:1 23802:1 23817:1 23825:1 23832:1 23838:1 23842:1 23846:1 23857:1 23868:1 23884:1 23890:1 23891:1 23895:1 23912:1 23913:1 23915:2 23932:1 23941:1 23944:1 23956:1 23957:3 23978:1 23982:2 24001:1 24008:2 24013:1 24028:2 24039:1 24065:1 24067:1 24069:5 24075:2 24076:1 24080:2 24092:2 24093:2 24097:3 24105:1 24114:1 24140:1 24144:3 24147:1 24150:1 24175:1 24186:10 24191:1 24202:1 24213:1 24217:1 24220:1 24225:2 24232:1 24235:1 24270:1 24275:1 24286:1 24291:5 24304:1 24326:1 24334:2 24366:1 24379:1 24384:1 24388:3 24393:1 24395:1 24414:1 24420:1 24427:2 24435:1 24444:1 24450:1 24480:3 24484:2 24492:1 24493:1 24495:2 24499:5 24502:1 24503:1 24505:2 24519:1 24524:1 24536:2 24552:3 24572:1 24576:2 24577:3 24591:1 24594:1 24612:2 24614:1 24620:1 24623:2 24626:1 24628:4 24631:1 24641:1 24645:1 24646:1 24653:1 24654:1 24656:1 24661:1 24675:1 24676:1 24687:1 24689:1 24690:1 24699:1 24704:1 24707:1 24711:1 24757:1 24766:1 24778:1 24779:1 24797:1 24802:3 24803:1 24812:1 24815:1 24838:1 24854:5 24858:2 24859:2 24863:1 24871:2 24872:1 24911:1 24919:1 24922:2 24943:1 24971:1 24974:1 24979:1 25025:1 25048:2 25064:1 25069:1 25072:1 25075:2 25077:6 25088:1 25097:6 25100:3 25107:1 25130:1 25132:2 25133:2 25134:1 25163:1 25166:2 25173:2 25181:1 25184:1 25192:2 25198:1 25199:1 25205:2 25208:1 25210:1 25212:1 25215:1 25222:4 25227:1 25236:1 25238:1 25245:1 25248:1 25255:1 25271:1 25274:1 25277:4 25279:1 25280:1 25281:2 25283:1 25284:2 25295:1 25306:1 25309:1 25310:1 25313:1 25328:2 25340:1 25351:1 25362:1 25365:1 25378:3 25383:1 25384:1 25387:1 25402:1 25408:1 25413:1 25415:1 25423:2 25439:1 25440:4 25451:4 25454:2 25461:1 25467:1 25473:1 25485:5 25499:4 25511:2 25516:4 25542:1 25546:5 25552:1 25554:1 25565:1 25573:1 25576:14 25585:2 25599:2 25617:2 25628:1 25636:1 25693:1 25705:1 25707:1 25710:2 25713:3 25715:1 25718:1 25730:1 25732:2 25740:1 25741:1 25760:2 25766:1 25777:2 25778:1 25803:1 25807:1 25809:1 25812:1 25823:1 25832:1 25844:1 25848:1 25849:1 25850:2 25854:1 25860:1 25861:1 25874:1 25875:1 25876:1 25884:2 25885:1 25895:2 25920:3 25929:1 25933:1 25944:2 25955:1 25956:1 25961:1 25964:1 25966:2 25988:1 25989:1 25994:1 25995:4 25998:2 26005:2 26018:2 26019:1 26022:11 26023:1 26027:1 26035:1 26042:2 26054:1 26061:1 26065:1 26074:1 26088:1 26093:5 26107:1 26113:1 26119:1 26122:1 26125:1 26128:1 26130:1 26145:1 26148:1 26149:1 26156:1 26182:1 26202:2 26231:2 26233:1 26253:3 26268:1 26272:1 26277:1 26278:1 26283:1 26286:1 26291:1 26333:2 26336:1 26354:1 26356:2 26372:1 26384:1 26399:1 26401:2 26417:1 26428:1 26429:2 26440:2 26450:2 26465:1 26484:1 26489:1 26498:1 26509:1 26525:1 26536:1 26542:1 26546:1 26588:1 26597:1 26609:2 26616:1 26626:1 26630:2 26632:6 26653:1 26654:3 26657:1 26661:2 26663:1 26675:4 26685:1 26691:1 26692:1 26703:4 26712:1 26714:2 26734:1 26742:2 26743:7 26744:1 26746:2 26753:1 26754:1 26757:1 26764:2 26774:1 26778:3 26789:3 26794:2 26796:1 26799:1 26813:1 26818:1 26847:1 26851:1 26866:1 26870:2 26875:1 26878:2 26884:2 26889:1 26894:1 26897:3 26899:1 26901:1 26911:1 26915:1 26918:5 26923:4 26930:2 26931:1 26932:2 26945:2 26968:1 26970:1 26971:2 26979:1 26991:2 26992:1 26994:1 27003:1 27035:2 27043:1 27045:1 27054:3 27064:2 27074:1 27082:1 27084:1 27087:1 27096:1 27100:8 27130:1 27131:1 27145:1 27150:1 27157:1 27164:2 27172:1 27173:1 27176:1 27178:1 27188:3 27196:1 27206:1 27224:1 27227:2 27228:1 27229:1 27230:3 27235:1 27236:1 27249:1 27251:5 27252:1 27254:2 27258:3 27265:1 27266:2 27269:1 27271:2 27276:3 27287:2 27296:3 27297:1 27299:3 27311:1 27318:1 27320:1 27329:1 27347:8 27353:1 27365:4 27390:1 27392:1 27401:1 27403:1 27405:3 27408:1 27411:3 27418:1 27424:1 27426:1 27427:1 27448:2 27451:2 27466:1 27468:1 27472:1 27502:1 27504:1 27516:2 27540:1 27548:1 27556:1 27558:1 27574:1 27615:1 27620:1 27652:1 27658:3 27659:2 27662:2 27663:1 27666:4 27670:3 27673:7 27675:1 27676:1 27680:1 27689:1 27713:1 27718:1 27722:1 27727:3 27732:1 27734:1 27745:1 27761:1 27764:1 27771:1 27784:2 27802:2 27808:1 27832:2 27855:1 27858:1 27868:1 27874:2 27898:1 27899:1 27908:1 27909:1 27912:1 27928:2 27945:1 27950:1 27953:1 27956:3 27965:1 27969:13 27970:2 27974:1 27978:1 27981:1 27993:1 27999:3 28008:6 28032:1 28060:1 28073:1 28076:1 28080:4 28095:1 28105:1 28107:1 28109:2 28117:12 28123:3 28131:1 28134:1 28137:1 28151:1 28152:1 28162:1 28165:13 28170:2 28177:1 28207:1 28212:2 28214:1 28222:1 28231:1 28243:2 28258:1 28283:1 28296:2 28335:1 28345:1 28363:1 28367:1 28375:1 28388:1 28392:42 28393:1 28413:1 28416:5 28417:2 28422:2 28423:5 28424:2 28425:1 28434:1 28435:1 28457:1 28485:4 28490:12 28491:1 28503:1 28509:1 28512:2 28515:1 28522:1 28529:1 28545:1 28546:2 28584:1 28597:1 28610:2 28615:2 28634:2 28635:1 28647:1 28660:1 28664:1 28669:5 28690:2 28701:5 28710:1 28753:3 28758:1 28760:1 28775:1 28782:1 28785:1 28787:2 28796:2 28798:1 28803:2 28804:1 28814:1 28852:1 28854:1 28857:2 28859:2 28865:1 28875:2 28887:1 28894:2 28901:1 28902:1 28903:2 28913:1 28923:1 28927:1 28928:1 28937:1 28940:2 28950:1 28954:1 28959:1 28964:1 28974:1 28976:1 28979:1 28986:1 28988:1 28999:1 29000:10 29001:1 29003:2 29005:3 29024:1 29027:1 29031:3 29042:6 29057:4 29062:2 29063:2 29069:1 29073:34 29079:2 29100:1 29120:1 29128:1 29137:1 29139:1 29141:2 29145:2 29146:2 29147:5 29176:1 29179:1 29183:1 29184:2 29194:2 29197:1 29208:1 29215:1 29223:1 29225:2 29236:1 29240:1
2 12:1 13:1 31:2 32:1 36:1 41:1 49:1 52:1 55:1 56:1 59:1 67:1 75:1 85:3 88:1 89:2 91:1 98:1 106:1 113:1 146:2 154:1 160:1 166:2 170:2 174:2 176:1 180:1 184:1 193:1 196:1 199:1 209:1 213:2 223:1 227:1 228:1 241:1 249:2 252:1 265:3 271:5 272:1 276:2 286:2 287:1 291:1 292:1 322:2 329:1 358:1 359:4 375:1 376:2 380:1 384:1 385:1 388:1 391:1 392:1 395:1 415:2 425:2 429:2 441:1 446:2 452:1 460:1 462:1 469:1 471:2 479:2 490:2 501:3 505:1 509:1 515:1 519:1 536:1 544:1 552:1 553:1 562:1 564:1 571:1 593:1 607:3 613:2 618:2 620:1 623:1 632:1 644:6 658:35 661:1 663:4 667:1 670:1 671:1 682:1 686:1 696:1 699:3 702:3 714:1 719:2 725:1 728:2 735:2 745:3 749:1 783:2 809:1 813:2 815:1 817:3 820:2 822:1 823:2 824:3 838:1 857:1 861:3 868:1 876:3 882:1 894:1 904:3 905:7 907:3 908:1 917:5 930:1 937:5 943:1 951:2 957:4 960:10 964:1 965:2 970:1 976:2 980:2 982:3 999:2 1003:1 1006:2 1016:3 1027:1 1029:2 1032:1 1036:1 1048:2 1050:1 1055:4 1056:1 1058:1 1091:1 1098:2 1099:1 1100:1 1112:1 1137:1 1146:1 1158:1 1160:3 1173:1 1190:1 1211:1 1214:34 1220:1 1223:2 1224:2 1227:1 1229:4 1232:1 1245:1 1256:2 1258:2 1260:2 1266:1 1270:1 1275:1 1277:1 1279:3 1280:2 1281:1 1288:1 1290:1 1291:1 1295:1 1298:1 1302:1 1314:1 1316:1 1338:1 1354:1 1356:2 1357:1 1380:4 1390:1 1393:1 1395:1 1397:1 1402:2 1404:10 1420:1 1430:1 1444:1 1452:3 1459:1 1462:2 1475:1 1481:1 1493:1 1499:1 1501:1 1502:3 1506:2 1510:12 1512:1 1516:1 1517:1 1528:1 1532:1 1540:1 1546:2 1548:1 1550:1 1575:1 1576:3 1582:2 1598:1 1602:5 1615:1 1616:1 1631:1 1636:1 1637:2 1639:1 1647:2 1650:1 1666:1 1672:1 1676:1 1677:10 1685:1 1687:1 1690:1 1691:2 1705:1 1720:1 1728:1 1740:2 1741:1 1745:3 1757:1 1760:1 1762:1 1776:1 1778:1 1779:1 1783:1 1795:1 1820:1 1827:1 1833:1 1838:1 1840:1 1842:1 1853:1 1866:1 1870:2 1871:2 1877:1 1878:1 1892:1 1895:1 1897:1 1898:3 1901:1 1907:1 1913:1 1918:2 1921:3 1930:1 1937:1 1941:2 1947:2 1957:2 1959:1 1976:1 1977:1 1982:1 1992:1 1993:1 2001:1 2022:8 2042:1 2045:1 2048:1 2051:2 2053:1 2076:1 2077:1 2085:1 2094:1 2115:1 2117:1 2118:2 2123:1 2125:1 2127:1 2140:1 2144:1 2145:1 2157:1 2158:1 2161:1 2172:1 2176:1 2181:1 2186:1 2196:9 2217:1 2235:2 2238:1 2239:1 2265:1 2269:1 2291:1 2299:1 2325:1 2329:1 2333:1 2334:2 2335:2 2336:4 2337:2 2338:2 2339:3 2341:1 2342:5 2343:1 2347:8 2349:4 2352:7 2356:4 2359:1 2360:1 2362:1 2364:1 2367:1 2369:4 2372:4 2375:1 2376:1 2379:1 2382:1 2383:1 2405:1 2406:1 2412:1 2421:2 2422:1 2430:5 2433:1 2439:1 2457:2 2460:1 2478:1 2479:1 2482:1 2487:1 2492:1 2494:4 2495:4 2500:1 2503:4 2513:2 2514:4 2522:4 2523:1 2531:1 2533:1 2539:1 2550:4 2562:1 2564:1 2571:1 2596:1 2603:2 2604:2 2610:1 2616:1 2624:1 2646:2 2660:1 2663:1 2674:2 2680:1 2681:1 2730:1 2735:1 2736:2 2745:1 2751:2 2758:3 2766:1 2767:2 2773:1 2775:1 2777:1 2785:3 2787:1 2791:4 2804:1 2809:1 2812:3 2813:4 2819:1 2822:3 2826:1 2833:1 2839:1 2841:1 2872:3 2877:1 2881:5 2883:5 2886:1 2889:1 2892:2 2901:2 2904:1 2915:1 2937:2 2940:1 2948:1 2949:2 2954:1 2956:2 2963:1 2982:17 2984:35 2986:1 2990:1 2991:3 2998:2 3002:2 3014:1 3018:1 3019:1 3023:4 3024:1 3029:1 3032:1 3039:8 3049:1 3053:4 3057:2 3067:1 3070:1 3091:2 3097:1 3100:1 3101:1 3127:2 3133:3 3139:1 3142:1 3169:3 3196:2 3219:1 3226:1 3267:1 3278:4 3281:1 3293:1 3297:1 3301:1 3316:2 3337:1 3340:1 3341:1 3351:1 3354:3 3360:1 3368:3 3380:1 3387:1 3393:1 3399:1 3401:4 3419:2 3445:1 3482:1 3486:1 3502:1 3506:1 3521:2 3525:1 3527:1 3536:1 3540:1 3541:1 3550:1 3552:1 3556:2 3564:1 3574:1 3601:1 3604:1 3606:1 3612:1 3617:1 3627:1 3628:1 3632:1 3642:1 3645:1 3666:2 3677:1 3684:1 3690:1 3697:1 3704:1 3715:1 3734:1 3758:1 3773:3 3774:2 3775:1 3779:2 3782:2 3797:1 3798:1 3823:1 3831:3 3833:1 3861:1 3867:1 3868:1 3872:2 3877:1 3882:1 3884:3 3886:1 3902:1 3907:2 3909:2 3915:2 3936:1 3938:1 3940:1 3946:3 3960:1 3963:1 3964:1 3985:1 3990:34 3991:2 3998:1 4007:1 4012:1 4020:1 4049:1 4052:1 4053:1 4056:1 4066:1 4071:1 4072:2 4079:4 4081:4 4096:2 4102:1 4108:1 4113:5 4117:6 4118:2 4131:1 4132:2 4148:1 4171:1 4182:1 4192:1 4195:1 4196:2 4208:3 4216:1 4225:1 4231:1 4258:1 4260:1 4262:1 4264:2 4267:1 4269:1 4272:1 4277:1 4293:1 4304:1 4307:1 4309:2 4310:1 4312:3 4317:1 4319:3 4331:1 4357:1 4370:1 4376:3 4402:1 4405:2 4407:1 4409:1 4412:1 4415:1 4424:1 4432:2 4434:34 4435:1 4443:1 4446:1 4448:1 4452:5 4462:1 4466:1 4475:1 4477:1 4479:1 4527:2 4535:6 4550:1 4553:1 4554:1 4557:1 4564:1 4580:1 4590:3 4604:2 4609:3 4610:1 4618:2 4622:2 4623:1 4626:1 4629:1 4648:1 4668:7 4676:1 4698:2 4717:1 4744:1 4774:5 4790:4 4796:1 4811:1 4812:1 4818:6 4826:1 4839:1 4854:1 4863:1 4883:1 4898:1 4902:2 4903:2 4908:2 4909:1 4916:1 4920:3 4931:1 4942:1 4943:3 4954:1 4974:1 4976:1 4977:1 4983:1 4997:2 4998:2 5012:19 5013:2 5022:2 5025:1 5046:7 5053:2 5063:2 5074:1 5087:2 5089:1 5091:1 5106:1 5138:4 5140:1 5143:4 5149:1 5159:4 5160:4 5161:2 5164:1 5167:5 5173:1 5174:2 5175:4 5176:1 5183:1 5190:2 5192:5 5194:4 5195:1 5205:1 5214:1 5230:1 5264:1 5267:1 5268:2 5283:1 5300:1 5324:1 5342:1 5361:1 5389:1 5403:1 5427:1 5438:1 5439:2 5440:1 5462:1 5482:1 5485:1 5486:1 5495:1 5496:2 5533:1 5534:3 5549:2 5574:1 5577:2 5579:1 5583:1 5603:1 5606:1 5613:2 5624:1 5626:1 5630:3 5634:1 5690:1 5699:1 5700:1 5707:1 5712:1 5713:1 5716:1 5723:2 5724:1 5729:2 5740:1 5741:1 5742:1 5762:2 5774:1 5776:1 5780:10 5784:1 5790:2 5792:1 5794:1 5800:1 5802:2 5807:1 5822:2 5833:2 5839:1 5841:1 5853:2 5860:1 5880:1 5889:1 5896:1 5908:2 5921:1 5924:1 5926:2 5939:2 5968:3 5992:1 6005:1 6017:1 6027:1 6034:1 6042:1 6043:1 6063:1 6064:1 6065:2 6076:3 6079:1 6092:1 6097:1 6118:1 6121:1 6143:1 6149:1 6151:2 6168:2 6176:2 6182:3 6187:1 6195:1 6198:1 6203:1 6207:2 6208:3 6211:1 6212:1 6217:1 6220:1 6221:1 6222:1 6227:1 6247:1 6255:1 6276:1 6281:1 6294:2 6295:2 6296:1 6301:1 6302:1 6304:1 6307:2 6308:1 6311:1 6312:1 6313:1 6315:3 6317:1 6320:2 6322:2 6324:2 6325:2 6326:1 6330:1 6345:1 6356:2 6388:2 6391:1 6399:1 6408:4 6410:2 6416:1 6428:3 6436:1 6437:1 6448:1 6456:1 6479:2 6486:1 6500:1 6507:1 6510:1 6523:7 6528:1 6533:1 6534:4 6536:1 6538:1 6539:1 6540:2 6543:4 6545:3 6546:1 6547:1 6550:4 6552:9 6553:1 6554:1 6560:1 6563:1 6581:1 6595:1 6599:1 6600:2 6601:1 6615:1 6619:1 6629:1 6637:1 6657:1 6666:2 6667:1 6674:3 6679:3 6694:1 6702:2 6717:1 6720:1 6736:1 6744:1 6746:1 6747:1 6749:1 6755:1 6762:1 6763:1 6769:1 6772:1 6776:1 6785:1 6792:1 6795:2 6796:1 6809:1 6810:2 6820:1 6831:2 6850:1 6853:1 6866:1 6872:1 6892:1 6899:1 6901:1 6904:1 6908:3 6927:3 6939:1 6960:2 6962:1 6967:1 6974:1 6991:1 6997:2 7025:1 7030:1 7040:1 7059:1 7063:2 7077:1 7083:1 7101:1 7102:1 7114:1 7117:1 7130:1 7177:1 7178:1 7180:1 7184:1 7187:1 7192:2 7203:1 7205:1 7212:1 7217:6 7264:1 7269:1 7271:1 7277:1 7283:1 7287:2 7289:1 7295:1 7301:2 7319:1 7332:1 7346:1 7351:1 7369:3 7375:1 7398:1 7406:1 7409:2 7412:1 7413:2 7417:1 7423:1 7428:1 7431:1 7435:1 7437:1 7442:1 7447:1 7474:1 7476:1 7485:1 7495:1 7496:2 7508:1 7522:1 7540:1 7543:2 7562:1 7563:1 7571:1 7574:1 7582:1 7593:1 7596:6 7629:9 7632:1 7636:1 7663:1 7664:2 7673:1 7679:1 7693:2 7707:1 7716:1 7718:1 7722:1 7725:1 7748:4 7749:1 7779:1 7787:1 7803:3 7815:13 7816:13 7821:1 7833:1 7834:1 7835:5 7837:1 7864:3 7868:4 7871:1 7878:53 7882:1 7883:1 7886:2 7890:1 7891:1 7897:19 7900:5 7903:1 7907:1 7908:1 7911:1 7932:1 7933:4 7936:2 7941:2 7949:1 7957:1 7985:6 7986:1 7996:2 8002:1 8013:1 8014:1 8037:1 8039:2 8054:3 8065:1 8071:1 8075:4 8077:1 8083:1 8087:1 8105:1 8109:6 8119:1 8129:1 8159:1 8162:2 8176:2 8189:1 8196:1 8249:1 8253:1 8286:1 8290:1 8300:1 8307:1 8312:3 8316:1 8348:1 8351:1 8364:1 8376:1 8377:35 8383:1 8384:1 8392:1 8394:1 8396:1 8402:1 8410:16 8411:4 8426:1 8428:2 8441:1 8443:1 8445:1 8447:1 8449:2 8462:1 8466:1 8475:1 8480:1 8492:43 8499:1 8501:1 8531:2 8537:1 8554:1 8561:1 8588:2 8596:1 8598:1 8605:1 8608:1 8645:1 8657:1 8659:2 8667:1 8671:1 8674:2 8677:1 8680:1 8683:1 8687:1 8693:5 8694:1 8713:1 8720:1 8725:2 8737:1 8745:3 8746:1 8749:1 8750:1 8760:2 8762:1 8763:1 8766:1 8768:1 8778:2 8779:2 8782:1 8783:1 8792:1 8797:1 8812:1 8813:1 8822:1 8832:1 8836:1 8841:1 8845:1 8850:2 8859:1 8862:3 8883:1 8915:1 8923:1 8926:1 8928:1 8931:2 8987:3 8989:1 8991:1 9014:2 9019:1 9039:1 9052:1 9057:2 9059:1 9061:1 9063:1 9066:1 9067:1 9069:2 9086:1 9090:4 9106:1 9110:1 9111:1 9112:3 9118:1 9129:3 9138:1 9139:1 9140:1 9184:1 9191:3 9196:1 9199:2 9204:2 9236:1 9238:6 9247:5 9256:1 9258:1 9264:2 9300:1 9320:4 9343:3 9344:1 9377:1 9378:4 9382:2 9384:1 9391:5 9393:3 9394:1 9396:1 9400:1 9404:2 9406:2 9408:2 9415:1 9421:1 9428:1 9429:1 9432:1 9435:1 9442:1 9445:1 9446:1 9447:2 9448:1 9449:1 9456:1 9466:1 9472:1 9473:3 9483:8 9487:2 9490:2 9496:2 9504:1 9506:1 9521:3 9525:1 9534:1 9543:1 9546:2 9558:1 9563:2 9564:2 9571:1 9580:1 9592:1 9597:1 9600:1 9607:1 9610:1 9611:2 9616:2 9619:2 9622:1 9623:1 9624:1 9627:1 9628:2 9637:1 9641:1 9642:1 9653:1 9658:1 9660:1 9661:10 9675:1 9677:2 9678:9 9681:1 9689:1 9694:1 9698:1 9701:2 9703:1 9706:1 9715:1 9717:1 9719:3 9721:1 9723:1 9726:1 9738:1 9751:1 9752:1 9763:1 9773:1 9779:1 9782:1 9795:1 9797:2 9802:1 9803:1 9804:2 9805:1 9813:1 9828:1 9829:1 9841:1 9855:1 9856:1 9860:1 9887:1 9905:6 9914:1 9915:1 9916:1 9920:1 9921:3 9924:4 9927:1 9934:1 9936:1 9960:1 9961:1 9962:1 9974:1 9987:1 10003:1 10016:1 10028:1 10029:1 10046:34 10050:1 10053:1 10055:1 10061:1 10069:1 10077:1 10083:2 10092:1 10097:1 10098:1 10102:1 10115:1 10117:1 10122:2 10131:2 10134:1 10138:1 10144:1 10166:1 10170:5 10174:1 10177:3 10184:1 10188:2 10195:2 10220:1 10229:1 10233:1 10242:2 10243:2 10252:1 10255:1 10260:1 10261:2 10266:2 10268:2 10280:5 10284:5 10292:1 10297:3 10299:1 10322:5 10336:1 10337:1 10339:2 10350:1 10359:1 10362:1 10369:1 10381:1 10383:3 10388:1 10393:1 10402:1 10404:1 10405:1 10417:1 10426:7 10440:1 10464:1 10518:2 10522:1 10526:1 10542:5 10555:1 10564:2 10573:1 10575:2 10576:1 10582:1 10594:1 10604:1 10609:1 10619:1 10623:2 10624:7 10632:1 10641:1 10664:3 10681:1 10691:1 10705:1 10707:1 10725:1 10740:4 10745:1 10758:1 10760:5 10770:1 10773:1 10786:2 10820:3 10834:1 10840:1 10842:2 10859:1 10860:5 10864:2 10867:6 10874:1 10882:1 10894:1 10907:2 10912:1 10914:1 10922:1 10923:1 10926:1 10929:7 10934:1 10942:1 10947:1 10955:2 10956:1 10963:1 10976:2 10980:1 10990:1 11004:1 11005:1 11036:1 11065:1 11066:10 11082:1 11083:1 11089:1 11098:3 11100:1 11108:1 11111:3 11114:3 11117:3 11124:1 11131:1 11143:4 11148:1 11152:1 11158:1 11167:1 11170:2 11176:1 11178:1 11185:1 11195:1 11197:8 11200:1 11203:1 11215:1 11217:3 11219:4 11220:1 11231:1 11234:2 11237:1 11246:1 11264:1 11266:1 11276:6 11279:1 11281:1 11283:1 11285:1 11286:1 11293:2 11300:1 11303:2 11311:1 11320:1 11333:1 11347:3 11372:1 11373:1 11375:1 11383:1 11385:1 11390:1 11400:1 11404:3 11407:1 11437:2 11455:1 11456:2 11464:2 11466:1 11474:1 11475:1 11476:4 11477:1 11483:2 11484:1 11487:1 11490:1 11502:2 11503:5 11505:1 11508:1 11510:1 11511:1 11518:1 11532:1 11535:3 11552:1 11568:1 11571:5 11591:1 11606:1 11609:2 11613:1 11614:1 11617:1 11622:1 11627:1 11629:1 11636:9 11648:2 11649:2 11674:1 11679:1 11695:1 11699:1 11702:1 11714:1 11732:2 11744:1 11746:2 11750:2 11770:1 11775:6 11797:1 11800:1 11803:1 11809:1 11812:3 11824:1 11825:1 11827:2 11829:1 11834:1 11838:1 11839:6 11840:4 11845:2 11848:1 11851:5 11854:1 11871:1 11878:1 11881:2 11891:1 11895:2 11899:1 11900:8 11904:1 11907:1 11916:1 11930:1 11931:1 11936:2 11949:1 11955:1 11979:1 11992:3 11995:1 11996:1 12003:4 12011:1 12039:1 12043:3 12054:1 12090:1 12092:1 12109:1 12110:1 12139:1 12142:1 12154:1 12163:2 12164:1 12179:1 12193:1 12223:1 12224:1 12235:1 12240:3 12243:1 12261:4 12281:1 12283:1 12289:1 12311:1 12322:1 12329:1 12330:1 12337:1 12338:1 12339:3 12344:5 12345:1 12348:1 12354:1 12364:1 12372:1 12376:1 12383:1 12385:1 12406:1 12421:1 12431:1 12444:1 12455:1 12460:3 12461:5 12470:1 12483:1 12505:1 12510:1 12513:2 12522:1 12532:2 12555:1 12563:1 12575:1 12588:1 12597:3 12599:1 12606:1 12612:1 12613:1 12633:1 12635:1 12648:1 12650:1 12657:1 12664:1 12666:1 12722:1 12723:1 12742:1 12746:1 12763:1 12767:1 12790:3 12792:35 12797:1 12800:1 12809:1 12813:5 12815:1 12821:1 12859:6 12873:1 12884:2 12888:1 12892:1 12902:1 12916:1 12922:1 12927:1 12932:1 12935:1 12964:2 12967:1 12969:2 12980:1 13001:1 13008:1 13009:1 13020:1 13024:2 13027:1 13032:1 13038:1 13045:1 13086:1 13100:2 13111:1 13116:1 13132:1 13141:2 13145:1 13163:1 13174:1 13180:1 13182:1 13183:1 13193:1 13195:1 13217:1 13229:1 13238:1 13239:1 13257:1 13259:1 13262:1 13265:1 13268:1 13269:1 13280:1 13286:12 13291:4 13294:3 13306:1 13307:1 13313:2 13326:1 13339:1 13340:1 13384:1 13389:1 13400:1 13412:1 13417:1 13418:1 13419:2 13424:2 13427:6 13430:5 13437:1 13462:1 13464:1 13480:1 13482:1 13491:14 13495:1 13502:1 13532:1 13541:1 13584:1 13585:2 13595:1 13626:1 13639:3 13641:4 13647:2 13665:1 13673:1 13675:1 13676:1 13680:1 13688:1 13695:2 13700:2 13705:1 13707:1 13713:1 13716:1 13717:1 13729:2 13732:1 13747:1 13766:1 13770:2 13772:3 13773:1 13775:1 13777:1 13780:1 13782:10 13783:1 13784:1 13786:2 13804:1 13805:2 13806:1 13807:1 13808:1 13809:1 13812:1 13814:6 13818:1 13821:1 13826:1 13827:2 13859:1 13868:1 13869:1 13873:1 13889:1 13901:1 13910:1 13928:1 13935:1 13939:1 13941:2 13951:10 13953:1 13955:2 13963:1 13974:1 13980:1 13988:1 13991:1 13998:1 14001:1 14012:1 14028:1 14030:2 14038:5 14052:1 14055:1 14057:3 14059:1 14069:11 14072:8 14096:1 14107:1 14116:1 14147:2 14156:5 14166:2 14177:4 14179:1 14202:1 14229:1 14232:1 14241:1 14256:1 14259:1 14261:3 14273:1 14275:2 14278:1 14299:1 14308:2 14314:1 14323:1 14329:1 14355:1 14361:4 14393:1 14398:1 14420:1 14422:1 14426:1 14440:2 14449:2 14451:1 14454:1 14460:2 14465:2 14466:2 14468:3 14471:1 14480:1 14485:2 14486:1 14497:1 14498:2 14506:2 14516:1 14541:1 14555:1 14557:1 14559:1 14560:2 14564:1 14574:1 14575:2 14576:1 14578:1 14590:2 14592:2 14607:1 14612:1 14613:2 14615:1 14617:1 14621:1 14622:1 14623:1 14625:1 14626:1 14627:1 14629:1 14634:1 14638:1 14641:1 14643:1 14652:1 14653:1 14657:2 14659:1 14664:1 14670:2 14684:1 14688:1 14699:35 14700:1 14705:3 14708:1 14709:1 14714:1 14721:1 14728:1 14736:1 14786:1 14789:1 14792:5 14793:1 14800:1 14801:1 14806:2 14827:1 14832:1 14847:3 14850:1 14852:1 14863:1 14869:1 14870:1 14887:3 14890:1 14900:1 14902:1 14906:1 14939:1 14941:1 14944:1 14979:1 14993:2 15000:2 15001:1 15003:1 15010:1 15016:1 15031:1 15054:1 15060:1 15069:1 15070:2 15072:2 15080:1 15087:1 15100:1 15104:2 15105:1 15106:1 15109:7 15113:1 15169:1 15174:1 15175:1 15188:1 15193:3 15194:1 15197:1 15208:1 15218:1 15223:1 15237:2 15238:1 15245:2 15247:3 15257:1 15258:1 15267:1 15278:2 15299:1 15306:1 15315:1 15319:1 15322:2 15340:2 15341:1 15379:3 15380:1 15386:1 15396:1 15408:1 15409:3 15433:1 15452:1 15458:1 15462:2 15465:1 15478:1 15482:2 15488:1 15491:1 15506:1 15521:1 15526:1 15536:1 15542:1 15555:1 15556:3 15557:4 15566:1 15584:1 15590:1 15608:5 15610:1 15612:1 15616:2 15619:1 15633:1 15653:1 15674:1 15678:1 15690:1 15718:1 15723:1 15730:1 15738:1 15742:2 15755:1 15757:1 15762:4 15778:1 15779:1 15783:1 15792:1 15795:1 15796:5 15802:3 15805:2 15818:4 15819:1 15823:1 15827:1 15828:1 15835:3 15844:1 15888:1 15890:1 15897:5 15899:2 15921:4 15923:2 15931:1 15944:1 15946:1 15951:1 15960:1 15961:3 15971:1 15973:3 15988:1 16006:1 16020:1 16023:1 16025:1 16031:1 16038:1 16051:1 16057:1 16060:15 16062:2 16063:1 16067:1 16096:4 16098:3 16100:1 16105:2 16116:1 16133:2 16137:1 16139:2 16140:2 16142:1 16143:2 16165:12 16178:1 16183:1 16186:1 16193:1 16200:4 16203:1 16239:2 16250:1 16252:1 16254:1 16262:1 16264:1 16270:1 16271:2 16279:1 16285:4 16286:2 16287:1 16291:4 16292:1 16298:1 16299:3 16300:1 16301:2 16304:1 16321:1 16333:1 16357:2 16380:1 16381:1 16387:1 16392:1 16404:1 16413:1 16416:1 16418:1 16419:1 16440:1 16448:1 16452:1 16455:1 16457:1 16468:2 16476:1 16484:2 16510:1 16522:1 16523:1 16524:2 16527:1 16579:1 16590:2 16604:2 16613:1 16617:1 16631:3 16634:1 16644:1 16646:10 16647:1 16649:1 16658:1 16679:1 16687:1 16689:1 16692:1 16712:2 16714:1 16717:1 16723:1 16724:1 16725:2 16749:1 16751:1 16757:1 16766:1 16769:1 16773:3 16776:1 16782:2 16797:2 16800:3 16810:1 16811:2 16822:1 16878:1 16881:1 16899:1 16912:1 16922:1 16926:47 16932:1 16933:2 16934:1 16949:1 16951:1 16963:1 16966:1 16967:4 16998:1 17020:1 17028:1 17030:1 17038:1 17042:1 17047:1 17060:1 17068:3 17072:2 17083:1 17088:1 17099:1 17103:2 17132:1 17138:1 17143:1 17144:1 17160:1 17166:2 17181:1 17184:1 17199:1 17207:1 17208:1 17213:1 17234:1 17236:2 17240:2 17241:1 17243:1 17250:1 17255:1 17266:1 17281:1 17284:1 17329:1 17332:1 17346:1 17356:1 17359:1 17361:2 17363:1 17372:1 17375:1 17380:1 17383:1 17384:1 17388:1 17393:2 17395:1 17406:1 17424:1 17436:1 17440:1 17443:1 17447:2 17449:1 17450:1 17452:1 17455:1 17457:1 17459:2 17465:2 17475:1 17484:1 17490:1 17535:2 17541:1 17545:1 17549:2 17555:2 17560:1 17579:1 17593:1 17604:1 17620:1 17623:1 17631:1 17632:4 17634:1 17637:2 17639:1 17645:1 17649:1 17662:1 17664:1 17671:2 17672:2 17683:1 17689:1 17692:1 17711:2 17717:1 17727:3 17731:2 17758:4 17759:1 17766:5 17776:1 17787:4 17788:1 17796:1 17812:1 17817:1 17844:2 17855:8 17859:1 17860:2 17884:3 17891:1 17909:2 17926:1 17929:2 17930:1 17936:2 17937:1 17945:1 17964:1 17980:1 17986:2 18012:1 18013:4 18017:2 18018:2 18019:1 18026:1 18030:1 18035:1 18055:2 18058:2 18076:1 18098:1 18100:2 18104:1 18123:1 18141:1 18142:1 18146:5 18156:1 18204:1 18206:2 18210:1 18223:1 18234:2 18245:1 18258:1 18269:1 18300:9 18310:2 18316:1 18332:1 18340:2 18370:1 18374:1 18377:4 18384:1 18393:1 18395:1 18401:1 18402:1 18417:1 18419:1 18422:1 18431:2 18447:2 18450:1 18456:1 18462:1 18499:1 18504:1 18507:1 18516:2495 18527:2 18531:1 18538:2 18551:1 18555:1 18566:1 18581:1 18587:1 18589:1 18595:1 18597:1 18604:1 18619:1 18638:3 18648:1 18651:3 18653:1 18678:1 18680:1 18691:1 18702:1 18707:1 18709:1 18712:2 18724:1 18760:1 18775:1 18780:2 18781:1 18787:1 18802:1 18832:1 18837:1 18850:2 18859:1 18863:1 18864:1 18894:2 18901:1 18902:1 18933:1 18952:1 18960:1 18969:1 18976:2 18978:1 18982:1 18986:1 19003:1 19013:1 19014:3 19016:2 19034:1 19037:1 19051:1 19083:1 19085:6 19116:5 19120:1 19128:1 19131:2 19137:2 19174:1 19175:1 19178:1 19184:1 19189:1 19192:1 19198:1 19219:1 19223:1 19230:1 19239:1 19245:1 19253:1 19257:1 19259:1 19268:1 19276:1 19282:8 19283:4 19290:1 19315:1 19318:4 19333:1 19342:2 19346:1 19362:1 19377:23 19384:1 19399:2 19409:1 19420:2 19421:1 19427:1 19428:1 19429:2 19447:1 19451:4 19452:1 19453:1 19454:2 19461:2 19469:1 19477:1 19481:2 19490:3 19491:1 19500:1 19509:1 19513:1 19530:2 19558:1 19561:1 19573:1 19574:2 19580:1 19584:4 19589:2 19603:1 19609:3 19611:1 19635:1 19638:1 19641:1 19653:2 19656:1 19658:1 19663:1 19678:2 19692:1 19697:1 19709:1 19713:2 19715:1 19726:1 19728:1 19732:1 19737:4 19757:1 19768:1 19790:1 19793:1 19813:1 19819:1 19820:3 19822:2 19823:1 19829:1 19835:1 19847:1 19851:2 19861:1 19866:2 19881:1 19896:1 19927:2 19929:8 19937:1 19940:1 19945:1 19947:1 19950:1 19957:1 19962:1 19972:2 19986:1 19992:2 19995:2 20000:1 20001:3 20002:7 20005:1 20021:1 20029:2 20030:6 20031:1 20033:1 20042:1 20043:1 20051:5 20079:2 20099:2 20103:1 20109:3 20117:1 20121:1 20123:6 20131:1 20132:1 20144:3 20149:1 20156:1 20162:2 20185:1 20199:1 20211:5 20223:2 20244:1 20258:1 20259:1 20268:1 20285:1 20291:1 20293:1 20311:1 20338:1 20365:2 20375:1 20387:1 20390:1 20401:1 20408:1 20451:6 20455:1 20460:1 20462:1 20483:1 20484:2 20495:1 20499:2 20500:1 20513:3 20525:1 20541:1 20555:1 20578:1 20591:1 20601:1 20602:2 20605:1 20623:1 20630:2 20649:1 20653:1 20661:2 20664:1 20668:1 20674:1 20691:2 20692:3 20697:1 20699:1 20702:2 20703:1 20704:2 20711:1 20718:2 20720:1 20725:1 20733:1 20748:1 20754:1 20762:2 20764:2 20767:1 20773:3 20787:1 20788:1 20789:1 20798:1 20799:1 20808:2 20810:2 20828:1 20829:1 20833:1 20840:2 20842:2 20848:1 20853:4 20862:2 20863:1 20866:1 20869:3 20870:2 20878:2 20886:1 20892:4 20899:1 20918:1 20925:1 20940:1 20942:5 20945:1 20953:2 20958:1 20994:1 20996:1 21001:2 21004:3 21018:1 21021:1 21026:1 21037:2 21057:1 21061:1 21063:1 21071:2 21078:1 21087:1 21106:1 21114:1 21122:1 21127:1 21132:1 21137:1 21146:1 21151:1 21153:1 21155:1 21171:1 21185:1 21190:1 21196:1 21202:2 21204:1 21206:4 21219:2 21228:1 21233:1 21237:3 21257:1 21265:1 21271:2 21276:1 21285:1 21286:1 21289:1 21306:1 21308:1 21310:1 21311:1 21313:4 21317:1 21329:1 21332:1 21341:1 21351:2 21353:1 21359:1 21361:1 21363:1 21364:2 21369:2 21374:1 21382:1 21397:1 21398:1 21410:1 21411:1 21414:1 21415:1 21420:1 21436:1 21442:1 21449:2 21451:1 21455:2 21464:4 21471:1 21473:1 21475:1 21492:2 21493:2 21506:1 21508:4 21517:1 21518:1 21530:1 21535:1 21543:1 21544:1 21547:1 21558:3 21562:1 21570:4 21573:2 21574:1 21577:1 21590:1 21610:1 21620:1 21625:8 21626:1 21648:1 21658:1 21663:1 21695:2 21696:1 21699:1 21705:8 21711:2 21712:1 21714:1 21715:5 21719:1 21728:3 21739:1 21741:1 21748:1 21763:1 21764:10 21775:1 21791:1 21835:1 21837:1 21843:1 21845:1 21877:1 21879:2 21881:4 21884:2 21887:1 21895:1 21896:1 21897:1 21898:2 21906:2 21908:2 21915:1 21918:1 21919:1 21923:7 21924:4 21925:1 21930:1 21936:1 21937:1 21939:1 21947:1 21955:1 21975:1 21997:1 22000:1 22015:1 22026:3 22028:1 22047:2 22058:2 22062:1 22066:4 22069:1 22082:2 22086:1 22095:1 22114:1 22128:3 22133:1 22139:1 22143:1 22144:1 22151:1 22161:4 22170:1 22175:2 22179:2 22192:1 22199:1 22214:1 22219:2 22235:1 22242:2 22248:15 22262:1 22267:2 22275:1 22296:1 22310:12 22312:2 22316:1 22321:1 22335:1 22338:1 22342:1 22362:1 22365:4 22368:2 22370:1 22379:4 22383:2 22416:1 22418:1 22425:7 22432:1 22439:2 22456:3 22457:1 22462:1 22471:1 22475:1 22479:1 22481:1 22490:1 22492:2 22516:1 22533:1 22536:1 22542:1 22543:2 22555:10 22566:3 22582:1 22583:1 22599:3 22640:1 22665:1 22667:1 22671:1 22676:1 22683:1 22688:1 22691:1 22694:34 22709:1 22713:3 22714:3 22717:1 22718:2 22719:1 22721:1 22723:1 22727:1 22752:2 22757:3 22759:1 22760:1 22762:1 22768:3 22770:1 22771:1 22781:1 22805:1 22809:1 22816:1 22838:1 22841:1 22842:5 22852:2 22861:2 22866:1 22871:4 22874:1 22887:1 22899:1 22901:1 22925:1 22986:1 22990:3 23000:3 23008:1 23019:1 23060:1 23074:1 23075:1 23079:1 23083:1 23093:1 23095:3 23100:1 23103:1 23108:3 23109:1 23111:1 23115:2 23120:1 23147:35 23168:3 23169:1 23176:1 23186:1 23199:1 23202:1 23223:1 23227:1 23228:1 23234:1 23235:2 23242:2 23247:6 23267:1 23276:1 23283:1 23289:1 23290:1 23305:1 23307:1 23315:1 23321:3 23325:2 23329:1 23336:1 23348:2 23350:1 23358:1 23359:1 23371:1 23379:2 23381:2 23408:2 23416:1 23433:1 23460:1 23465:1 23487:1 23490:1 23506:2 23508:1 23509:2 23525:1 23541:1 23543:1 23593:1 23596:1 23610:1 23617:2 23622:1 23630:1 23641:2 23651:2 23664:2 23670:1 23693:1 23699:3 23735:1 23736:1 23740:2 23745:1 23751:1 23752:1 23766:1 23767:3 23772:1 23775:1 23782:1 23785:7 23786:1 23788:1 23802:1 23817:1 23825:1 23832:1 23838:1 23842:1 23846:1 23857:1 23868:1 23884:1 23890:1 23891:1 23895:1 23896:1 23912:1 23913:1 23915:2 23932:1 23941:1 23944:1 23956:1 23957:3 23978:1 23982:2 24001:1 24008:2 24013:1 24028:2 24039:1 24065:1 24067:1 24069:6 24075:2 24076:1 24080:2 24092:2 24093:2 24097:3 24105:1 24112:1 24114:1 24140:1 24144:3 24147:1 24150:1 24175:1 24186:10 24191:1 24202:1 24213:1 24217:1 24220:1 24225:2 24232:1 24235:1 24251:1 24270:1 24275:1 24286:1 24291:5 24304:1 24326:1 24334:2 24363:1 24366:1 24379:1 24384:1 24388:3 24393:1 24395:1 24414:1 24420:1 24427:2 24435:1 24444:1 24450:1 24480:3 24484:2 24492:1 24493:1 24495:2 24499:5 24502:1 24503:1 24505:2 24519:1 24524:1 24536:2 24552:3 24572:1 24576:2 24577:3 24591:1 24594:1 24612:2 24614:1 24620:1 24623:2 24626:1 24628:4 24631:1 24641:1 24645:1 24646:1 24653:1 24654:1 24656:1 24661:1 24675:1 24676:1 24683:1 24687:1 24689:1 24690:1 24699:1 24704:1 24707:1 24711:1 24757:1 24766:1 24778:1 24779:1 24797:1 24802:3 24803:1 24812:1 24815:1 24838:1 24854:5 24858:2 24859:2 24863:1 24871:2 24872:1 24911:1 24919:1 24922:2 24943:2 24971:1 24974:1 24979:1 25025:1 25030:1 25048:2 25064:1 25069:2 25072:1 25075:2 25077:6 25088:1 25097:6 25100:3 25107:1 25130:1 25132:2 25133:2 25134:1 25163:1 25166:2 25173:2 25181:1 25184:1 25192:2 25198:1 25199:1 25205:2 25208:1 25210:1 25212:1 25215:1 25222:4 25227:1 25236:1 25238:1 25245:1 25248:1 25255:1 25271:1 25274:1 25277:4 25279:1 25280:1 25281:2 25283:1 25284:2 25295:1 25306:2 25309:1 25310:1 25313:1 25328:2 25340:1 25351:1 25362:1 25365:1 25378:3 25383:1 25384:1 25387:1 25402:1 25408:1 25413:1 25415:1 25423:2 25439:1 25440:4 25451:4 25454:2 25461:1 25467:1 25473:1 25485:5 25499:4 25511:2 25516:4 25542:1 25546:5 25552:1 25554:1 25565:1 25573:1 25576:14 25585:2 25599:2 25617:2 25628:1 25636:1 25693:1 25705:1 25707:1 25710:2 25713:3 25715:1 25718:1 25730:1 25732:2 25740:1 25741:1 25760:3 25766:1 25777:3 25778:1 25803:1 25807:1 25809:1 25812:1 25823:1 25832:1 25844:1 25848:1 25849:1 25850:2 25854:1 25860:1 25861:1 25874:1 25875:1 25876:1 25884:2 25885:1 25895:2 25920:3 25929:1 25933:1 25944:2 25955:1 25956:1 25961:1 25964:1 25966:2 25988:1 25989:1 25994:1 25995:4 25998:2 26005:2 26018:2 26019:1 26022:11 26023:1 26027:1 26035:1 26042:2 26054:1 26061:1 26065:1 26074:1 26088:1 26093:5 26107:1 26113:1 26119:1 26122:1 26125:1 26128:1 26130:1 26145:1 26148:1 26149:1 26156:1 26182:1 26202:2 26231:2 26233:1 26239:1 26253:3 26268:1 26272:1 26277:1 26278:1 26283:1 26286:1 26291:1 26333:2 26336:1 26354:1 26356:2 26372:1 26384:1 26399:1 26401:2 26417:1 26428:1 26429:2 26440:2 26450:2 26465:1 26484:1 26489:1 26498:1 26509:1 26510:1 26525:1 26536:1 26542:1 26546:1 26588:1 26597:1 26609:2 26616:1 26626:1 26630:2 26632:6 26653:1 26654:3 26657:1 26661:2 26663:1 26675:4 26685:1 26691:1 26692:1 26703:4 26710:1 26712:1 26714:2 26734:1 26742:2 26743:7 26744:1 26746:2 26753:1 26754:1 26757:1 26764:2 26774:1 26778:3 26789:3 26794:2 26796:1 26799:1 26813:1 26818:1 26847:1 26851:1 26866:1 26870:2 26875:1 26878:2 26884:2 26889:1 26894:1 26897:3 26899:1 26901:1 26911:1 26915:1 26918:5 26923:4 26930:2 26931:2 26932:2 26945:2 26968:1 26970:1 26971:2 26976:1 26979:1 26991:2 26992:1 26994:1 27003:1 27011:1 27035:2 27043:1 27045:1 27054:3 27064:2 27074:1 27082:1 27084:1 27087:1 27096:1 27100:8 27130:1 27131:1 27145:1 27150:1 27157:1 27164:2 27172:1 27173:1 27176:1 27178:1 27188:3 27196:1 27206:1 27224:1 27227:2 27228:1 27229:1 27230:3 27235:1 27236:1 27249:1 27251:5 27252:1 27254:2 27258:3 27265:1 27266:2 27269:1 27271:2 27276:3 27287:2 27296:3 27297:1 27299:3 27311:1 27318:1 27320:1 27329:1 27347:8 27353:1 27365:4 27390:1 27392:1 27401:1 27403:1 27405:3 27408:1 27411:3 27418:1 27424:1 27426:1 27427:1 27448:2 27451:2 27466:1 27468:1 27472:1 27502:1 27504:1 27516:2 27540:1 27548:1 27556:1 27558:1 27574:1 27615:1 27620:1 27652:1 27658:3 27659:2 27662:2 27663:1 27666:5 27670:3 27673:7 27675:1 27676:1 27680:1 27689:1 27713:1 27718:1 27722:1 27727:3 27732:1 27734:1 27739:1 27745:1 27761:1 27764:1 27771:1 27784:2 27802:2 27808:1 27832:2 27855:1 27858:1 27868:1 27874:2 27898:1 27899:1 27908:1 27909:1 27912:1 27928:2 27945:1 27950:1 27953:1 27956:3 27965:1 27969:14 27970:2 27974:1 27978:1 27981:1 27993:1 27999:3 28007:1 28008:6 28032:1 28060:1 28073:1 28076:1 28080:4 28095:1 28105:1 28107:1 28109:2 28117:12 28123:3 28131:1 28134:1 28137:1 28151:1 28152:1 28162:1 28165:14 28170:2 28177:1 28207:1 28212:2 28214:1 28220:1 28222:1 28231:1 28243:2 28258:1 28283:1 28296:2 28335:1 28345:1 28363:1 28367:1 28375:1 28388:1 28392:43 28393:1 28413:1 28416:5 28417:2 28422:2 28423:5 28424:2 28425:1 28434:1 28435:1 28457:1 28485:4 28490:13 28491:1 28503:1 28509:1 28512:2 28515:1 28522:1 28529:1 28545:1 28546:2 28584:1 28597:1 28610:2 28615:2 28634:2 28635:1 28647:1 28660:1 28664:1 28669:5 28690:2 28701:5 28710:1 28753:3 28758:1 28760:1 28775:1 28782:1 28785:1 28787:2 28796:2 28798:1 28803:2 28804:1 28814:1 28852:1 28854:1 28857:2 28859:2 28865:1 28875:2 28887:1 28894:3 28901:1 28902:1 28903:2 28913:1 28923:1 28927:1 28928:1 28937:1 28940:2 28950:1 28954:1 28959:1 28964:1 28974:1 28976:1 28979:1 28986:1 28988:1 28999:1 29000:10 29001:1 29003:2 29005:3 29024:1 29027:1 29031:3 29042:6 29046:1 29057:4 29062:2 29063:2 29069:1 29073:35 29079:2 29100:2 29120:1 29121:1 29128:1 29137:1 29139:1 29141:2 29145:2 29146:2 29147:5 29176:1 29179:1 29183:1 29184:2 29194:2 29197:1 29201:1 29202:1 29208:1 29215:1 29223:1 29225:2 29236:1 29240:1
2 12:1 13:1 31:2 32:1 36:1 41:1 49:1 52:1 55:1 56:1 59:1 67:1 75:1 85:3 88:1 89:2 91:1 98:1 106:1 113:1 146:2 154:1 160:1 166:2 170:2 174:2 176:1 180:1 184:1 193:1 196:1 199:1 209:1 213:2 223:1 227:1 228:1 241:1 249:2 252:1 265:3 271:5 272:1 276:2 286:2 287:1 291:1 292:1 322:2 329:1 358:1 359:4 375:1 376:2 380:1 384:1 385:1 388:1 391:1 392:1 395:1 415:2 425:2 429:2 441:1 446:2 452:1 460:1 462:1 469:1 471:2 479:2 490:2 501:4 505:1 509:1 515:1 519:1 536:1 544:1 552:1 553:1 562:1 564:1 571:1 593:1 607:3 613:2 618:2 620:1 623:1 632:1 644:6 658:36 661:1 663:4 667:1 670:1 671:1 682:1 686:1 696:1 699:3 702:3 714:1 719:2 725:1 728:2 735:2 745:3 749:1 783:2 809:1 813:2 815:1 817:3 820:2 822:1 823:2 824:3 838:1 857:1 861:3 868:1 876:3 882:1 885:1 894:1 904:3 905:7 907:3 908:1 917:5 930:1 937:5 943:1 951:2 957:4 960:10 964:1 965:2 970:1 976:2 980:2 982:3 999:2 1003:1 1006:2 1016:3 1027:1 1029:2 1032:1 1036:1 1048:2 1050:1 1055:4 1056:1 1058:1 1091:1 1098:2 1099:1 1100:1 1112:1 1137:1 1146:1 1158:1 1160:3 1173:1 1190:1 1211:1 1214:35 1220:1 1223:2 1224:2 1227:1 1229:4 1232:1 1245:1 1256:2 1258:2 1260:2 1266:1 1270:1 1275:1 1277:1 1279:3 1280:2 1281:1 1288:1 1290:1 1291:1 1295:1 1298:1 1302:1 1314:1 1316:1 1338:1 1354:1 1356:2 1357:1 1380:4 1390:1 1393:1 1395:1 1397:1 1402:2 1404:10 1420:1 1430:1 1444:1 1452:3 1459:1 1462:2 1475:1 1481:1 1493:1 1499:1 1501:1 1502:3 1506:2 1510:13 1512:1 1516:1 1517:1 1528:1 1532:1 1540:1 1546:2 1548:1 1550:1 1575:1 1576:3 1582:2 1598:1 1602:6 1615:1 1616:1 1631:1 1636:1 1637:2 1639:1 1647:2 1650:1 1666:1 1672:1 1676:1 1677:10 1685:1 1687:1 1690:1 1691:2 1705:1 1720:1 1728:1 1740:2 1741:1 1745:3 1757:1 1760:1 1762:1 1776:1 1778:1 1779:1 1783:1 1787:1 1795:1 1820:1 1827:1 1833:1 1838:1 1840:1 1842:1 1853:1 1866:1 1870:2 1871:2 1877:1 1878:1 1892:1 1895:1 1897:1 1898:3 1901:1 1907:1 1913:1 1918:2 1921:3 1930:1 1937:1 1941:2 1947:2 1957:2 1959:1 1973:1 1976:1 1977:1 1982:1 1992:1 1993:1 2001:1 2022:8 2042:1 2045:1 2048:1 2051:2 2053:1 2076:1 2077:1 2085:1 2094:1 2108:1 2115:1 2117:1 2118:2 2123:1 2125:1 2127:1 2140:1 2144:1 2145:1 2157:2 2158:1 2159:1 2161:1 2172:1 2176:1 2181:1 2186:1 2196:9 2217:1 2235:2 2238:1 2239:1 2265:1 2269:1 2291:1 2299:1 2325:1 2329:1 2333:1 2334:2 2335:2 2336:4 2337:3 2338:2 2339:3 2341:1 2342:5 2343:1 2347:8 2349:4 2352:7 2356:4 2359:1 2360:2 2362:1 2364:1 2367:1 2369:4 2372:4 2375:1 2376:1 2379:1 2382:1 2383:1 2405:1 2406:1 2412:1 2421:3 2422:1 2430:5 2433:1 2439:1 2457:2 2460:1 2478:1 2479:1 2482:1 2485:1 2487:1 2492:1 2494:4 2495:4 2500:1 2503:4 2513:2 2514:4 2522:4 2523:1 2531:1 2533:1 2539:1 2550:4 2562:1 2564:1 2571:1 2596:1 2603:2 2604:2 2610:1 2616:1 2624:1 2646:2 2660:1 2663:1 2674:2 2680:1 2681:1 2730:1 2735:1 2736:2 2745:1 2751:2 2758:3 2766:1 2767:2 2773:1 2775:1 2777:1 2785:3 2787:1 2791:4 2804:1 2809:1 2812:3 2813:4 2819:1 2822:3 2826:1 2833:1 2839:1 2841:1 2872:3 2877:1 2881:5 2883:5 2886:1 2889:1 2892:2 2901:2 2904:1 2915:1 2937:2 2940:1 2948:1 2949:2 2954:1 2956:2 2963:1 2982:17 2984:36 2986:1 2990:1 2991:3 2998:2 3002:2 3014:1 3018:2 3019:1 3023:4 3024:1 3029:1 3032:1 3039:8 3049:1 3053:4 3057:2 3067:1 3070:1 3091:2 3097:1 3100:1 3101:1 3127:2 3133:3 3139:1 3142:1 3169:3 3196:2 3219:1 3226:1 3267:1 3278:4 3281:1 3293:1 3297:1 3301:1 3316:2 3337:1 3340:1 3341:1 3351:1 3354:3 3360:1 3368:3 3380:1 3387:2 3393:1 3399:1 3401:4 3419:2 3445:1 3482:1 3486:1 3502:1 3506:1 3521:2 3525:1 3527:1 3536:1 3540:1 3541:1 3550:1 3552:1 3556:2 3564:1 3574:1 3601:1 3604:1 3606:1 3612:1 3617:1 3627:1 3628:1 3632:1 3642:1 3645:1 3666:2 3677:1 3684:1 3690:1 3697:1 3704:1 3715:1 3734:1 3758:1 3773:3 3774:2 3775:1 3779:2 3782:2 3797:1 3798:1 3823:1 3831:3 3833:1 3861:1 3867:1 3868:1 3872:2 3877:1 3882:1 3884:3 3886:1 3902:1 3907:2 3909:2 3915:2 3936:1 3938:1 3940:1 3946:3 3960:1 3963:1 3964:1 3985:1 3990:35 3991:2 3998:1 4007:1 4012:1 4020:1 4049:1 4052:1 4053:1 4056:1 4066:1 4071:1 4072:2 4079:4 4081:4 4096:2 4102:1 4108:1 4113:6 4117:7 4118:2 4131:1 4132:2 4148:1 4169:1 4171:1 4182:1 4192:1 4195:1 4196:2 4208:3 4216:1 4225:1 4231:1 4258:1 4260:1 4262:1 4264:2 4267:1 4269:1 4272:1 4277:1 4283:1 4293:1 4304:1 4307:1 4309:2 4310:1 4312:3 4317:1 4319:3 4331:1 4357:1 4370:1 4372:1 4376:3 4402:1 4405:2 4407:1 4409:1 4412:1 4415:1 4424:1 4432:2 4434:35 4435:1 4443:1 4446:1 4448:1 4452:5 4462:1 4466:1 4475:1 4477:1 4479:1 4527:2 4535:6 4550:1 4553:1 4554:1 4557:1 4564:1 4580:1 4590:3 4604:2 4609:3 4610:1 4618:2 4622:2 4623:1 4626:1 4629:1 4648:1 4668:8 4676:2 4698:2 4717:1 4744:1 4774:6 4790:4 4796:1 4811:1 4812:1 4818:6 4826:1 4839:1 4854:1 4863:1 4870:1 4883:1 4898:1 4902:3 4903:2 4908:2 4909:1 4916:1 4920:4 4931:1 4942:1 4943:3 4954:1 4974:1 4976:1 4977:1 4983:1 4997:2 4998:2 5012:19 5013:2 5022:2 5025:1 5046:7 5053:2 5063:2 5074:1 5087:2 5089:1 5091:1 5106:1 5138:4 5140:1 5143:4 5149:1 5159:4 5160:4 5161:2 5164:1 5167:5 5173:1 5174:2 5175:4 5176:1 5183:1 5190:2 5192:5 5194:4 5195:1 5205:1 5214:1 5230:1 5264:1 5267:1 5268:2 5273:1 5283:1 5300:1 5314:1 5324:1 5342:1 5361:1 5389:1 5403:1 5427:1 5438:1 5439:2 5440:1 5462:1 5482:1 5485:1 5486:1 5495:2 5496:2 5520:1 5533:1 5534:3 5549:2 5574:1 5577:2 5579:1 5583:1 5603:1 5606:1 5613:2 5624:1 5626:1 5630:3 5634:1 5690:1 5699:1 5700:1 5707:1 5712:1 5713:1 5716:1 5723:2 5724:1 5726:1 5729:2 5740:1 5741:1 5742:1 5762:2 5774:1 5776:1 5780:10 5784:1 5790:2 5792:1 5794:1 5800:1 5802:2 5807:1 5822:2 5833:2 5839:1 5841:1 5853:2 5860:2 5880:1 5889:1 5896:1 5908:2 5921:1 5924:1 5926:2 5939:2 5968:3 5992:1 6005:1 6017:1 6019:1 6027:1 6034:1 6042:1 6043:1 6063:1 6064:1 6065:2 6076:3 6079:1 6092:1 6097:1 6118:1 6121:1 6143:1 6149:1 6151:2 6168:2 6176:2 6182:3 6187:1 6195:1 6198:1 6203:1 6207:2 6208:3 6211:1 6212:1 6217:1 6220:1 6221:1 6222:1 6227:1 6247:1 6255:1 6276:1 6281:1 6294:2 6295:2 6296:1 6301:1 6302:1 6304:1 6307:2 6308:1 6311:1 6312:1 6313:1 6315:3 6317:1 6320:2 6322:2 6324:2 6325:2 6326:1 6330:1 6345:1 6356:2 6388:3 6391:1 6399:1 6408:4 6410:2 6416:1 6428:3 6436:1 6437:1 6448:1 6456:1 6479:2 6486:1 6500:1 6507:1 6510:1 6523:7 6528:1 6533:1 6534:5 6536:1 6538:1 6539:1 6540:2 6541:1 6543:4 6545:3 6546:1 6547:1 6550:4 6552:9 6553:1 6554:1 6560:1 6563:1 6581:1 6595:1 6599:1 6600:2 6601:1 6615:1 6619:1 6629:1 6637:1 6657:1 6666:2 6667:1 6674:3 6679:3 6694:1 6702:2 6717:1 6720:1 6736:1 6744:1 6746:1 6747:1 6749:1 6755:1 6762:1 6763:1 6769:1 6772:1 6776:1 6785:1 6792:1 6795:2 6796:1 6809:1 6810:2 6820:1 6831:2 6850:1 6853:1 6866:1 6872:1 6892:1 6899:1 6901:1 6904:1 6908:3 6927:3 6939:1 6960:2 6962:1 6967:1 6974:1 6991:1 6997:2 7025:1 7030:1 7040:1 7059:1 7063:2 7077:1 7083:1 7101:1 7102:1 7114:1 7117:1 7130:1 7177:1 7178:1 7180:1 7184:1 7187:1 7192:3 7203:1 7205:1 7212:1 7217:6 7264:1 7269:1 7271:1 7277:1 7283:1 7287:2 7289:1 7295:1 7301:2 7319:1 7332:2 7346:1 7351:1 7369:3 7375:1 7398:1 7406:1 7409:2 7412:1 7413:2 7417:1 7423:1 7428:1 7431:1 7435:1 7437:1 7442:1 7447:1 7474:1 7476:1 7485:1 7495:1 7496:2 7508:1 7516:1 7522:1 7540:1 7543:2 7562:1 7563:1 7571:1 7574:1 7582:1 7593:1 7596:6 7629:9 7632:1 7636:1 7663:1 7664:2 7673:1 7679:1 7693:2 7707:1 7716:1 7718:1 7722:1 7725:1 7748:4 7749:1 7779:1 7787:1 7803:3 7815:13 7816:13 7821:1 7832:1 7833:1 7834:1 7835:5 7837:1 7864:3 7868:4 7871:1 7878:54 7882:1 7883:1 7886:2 7890:1 7891:1 7897:19 7900:5 7903:1 7907:1 7908:1 7911:1 7932:1 7933:4 7936:2 7941:2 7949:1 7957:1 7985:6 7986:1 7996:2 8002:1 8013:1 8014:1 8037:1 8039:2 8054:3 8065:1 8071:1 8075:4 8077:1 8083:1 8087:1 8105:1 8109:6 8119:1 8129:1 8159:1 8162:2 8176:2 8189:1 8196:1 8249:1 8253:1 8286:1 8290:1 8300:1 8307:1 8312:3 8316:1 8348:1 8351:1 8364:1 8376:1 8377:36 8383:1 8384:1 8392:1 8394:1 8396:1 8402:1 8410:16 8411:4 8426:1 8428:2 8441:1 8443:1 8445:1 8447:1 8449:2 8462:1 8466:1 8475:1 8480:1 8492:44 8499:1 8501:1 8531:2 8537:1 8554:1 8561:1 8588:2 8596:1 8598:1 8605:1 8608:1 8645:1 8657:1 8659:2 8667:1 8671:1 8674:2 8677:1 8680:1 8683:1 8687:1 8693:5 8694:1 8713:1 8720:1 8725:2 8737:1 8745:3 8746:1 8749:1 8750:1 8760:2 8762:1 8763:1 8766:1 8768:1 8778:2 8779:2 8782:1 8783:1 8792:1 8797:1 8812:1 8813:1 8822:1 8832:1 8836:1 8841:1 8845:1 8850:2 8859:1 8862:4 8883:1 8915:1 8923:1 8926:1 8928:1 8931:2 8987:3 8989:1 8991:1 9014:2 9019:1 9039:1 9052:1 9057:2 9059:1 9061:1 9063:1 9066:1 9067:1 9069:2 9086:1 9090:4 9106:1 9110:1 9111:1 9112:4 9118:1 9129:3 9138:1 9139:1 9140:1 9184:1 9191:3 9196:1 9199:2 9204:2 9236:1 9238:6 9247:5 9256:1 9258:1 9264:2 9300:1 9320:4 9343:3 9344:1 9354:1 9377:1 9378:4 9382:2 9384:1 9391:5 9393:3 9394:1 9396:1 9400:1 9404:2 9406:2 9408:2 9415:1 9421:1 9428:1 9429:1 9432:1 9435:1 9442:1 9445:1 9446:1 9447:2 9448:1 9449:1 9456:1 9466:1 9472:1 9473:3 9483:8 9487:2 9490:2 9496:2 9504:1 9506:1 9521:3 9525:1 9534:1 9543:1 9546:2 9558:1 9563:2 9564:2 9571:1 9580:1 9592:1 9597:1 9600:1 9607:1 9610:1 9611:2 9616:2 9619:2 9622:1 9623:1 9624:1 9627:1 9628:2 9637:1 9641:1 9642:1 9653:1 9658:1 9660:1 9661:10 9675:1 9677:2 9678:10 9681:1 9689:1 9694:1 9698:1 9701:3 9703:1 9706:1 9715:1 9717:1 9719:3 9721:1 9723:1 9726:1 9738:1 9751:1 9752:1 9763:1 9773:1 9779:1 9782:1 9795:1 9797:2 9802:1 9803:1 9804:2 9805:1 9813:1 9828:1 9829:1 9841:1 9855:1 9856:1 9860:1 9887:1 9905:6 9914:1 9915:1 9916:1 9920:1 9921:3 9924:4 9927:1 9934:1 9936:1 9960:1 9961:1 9962:1 9974:1 9987:1 10003:1 10016:1 10028:1 10029:1 10046:35 10050:1 10053:1 10055:1 10061:1 10069:1 10077:1 10083:2 10092:1 10097:1 10098:1 10102:1 10115:1 10117:1 10122:2 10131:2 10134:1 10138:1 10144:1 10166:1 10170:5 10174:1 10177:3 10184:1 10188:2 10195:2 10220:1 10229:1 10233:1 10242:2 10243:2 10252:1 10255:1 10260:1 10261:2 10266:2 10268:2 10280:5 10284:5 10292:1 10297:3 10299:1 10322:5 10336:1 10337:1 10339:2 10350:1 10359:1 10362:1 10369:1 10381:1 10383:3 10388:1 10393:1 10402:1 10404:1 10405:1 10417:1 10426:7 10440:1 10464:1 10518:2 10522:1 10526:1 10527:1 10542:5 10555:1 10564:2 10573:1 10575:2 10576:2 10582:1 10594:1 10604:1 10609:1 10619:1 10623:2 10624:7 10632:1 10641:1 10664:3 10681:1 10691:1 10705:1 10707:1 10725:1 10740:4 10745:1 10758:1 10760:5 10770:1 10773:1 10786:2 10820:3 10834:1 10840:1 10842:2 10859:1 10860:5 10864:2 10867:7 10874:1 10882:1 10894:1 10907:2 10912:1 10914:1 10922:1 10923:1 10926:1 10929:7 10934:1 10942:1 10947:1 10955:2 10956:1 10963:1 10976:2 10980:1 10990:1 11004:1 11005:1 11036:1 11065:1 11066:10 11082:1 11083:1 11086:1 11089:1 11098:3 11100:1 11108:1 11111:3 11114:3 11117:3 11124:1 11131:1 11143:4 11148:1 11152:1 11158:1 11167:1 11170:2 11176:1 11178:1 11185:1 11195:1 11197:9 11199:1 11200:1 11203:1 11215:1 11217:3 11219:4 11220:1 11231:1 11234:2 11237:1 11246:1 11264:1 11266:1 11276:6 11279:1 11281:1 11283:1 11285:1 11286:1 11293:2 11300:1 11303:2 11311:1 11320:1 11333:1 11347:3 11372:1 11373:1 11375:1 11383:1 11385:1 11390:1 11400:1 11404:3 11407:1 11437:2 11455:1 11456:2 11464:2 11466:1 11474:1 11475:1 11476:4 11477:1 11483:2 11484:1 11487:1 11490:1 11502:2 11503:5 11505:1 11508:1 11510:1 11511:1 11518:1 11532:1 11535:3 11552:1 11568:1 11571:5 11591:1 11606:1 11609:2 11613:1 11614:1 11617:1 11622:1 11627:1 11629:1 11636:9 11648:2 11649:2 11674:1 11679:1 11695:1 11699:1 11702:1 11714:1 11732:2 11744:1 11746:2 11750:2 11770:1 11775:6 11797:1 11800:1 11803:1 11809:1 11812:3 11824:1 11825:1 11827:2 11829:1 11834:1 11838:1 11839:6 11840:4 11845:2 11848:1 11851:5 11854:1 11871:1 11878:1 11881:2 11891:1 11895:2 11899:1 11900:8 11904:1 11907:1 11916:1 11930:1 11931:1 11936:2 11949:1 11955:1 11979:1 11992:3 11995:1 11996:1 12003:4 12011:1 12039:1 12043:3 12054:1 12090:1 12092:1 12109:1 12110:1 12139:1 12142:1 12154:1 12163:2 12164:1 12179:1 12193:1 12223:1 12224:1 12235:1 12240:3 12243:1 12261:4 12281:1 12283:1 12289:1 12311:1 12322:1 12329:1 12330:1 12332:1 12337:2 12338:1 12339:3 12344:5 12345:1 12348:1 12354:1 12364:1 12372:1 12376:1 12383:1 12385:1 12406:1 12421:1 12431:1 12444:1 12455:1 12460:3 12461:5 12470:1 12483:1 12505:1 12510:1 12513:2 12522:1 12532:2 12555:1 12563:1 12575:1 12588:1 12597:3 12599:1 12606:1 12612:1 12613:1 12633:1 12635:1 12648:1 12650:1 12657:1 12664:1 12666:1 12722:1 12723:1 12742:1 12746:1 12763:1 12767:1 12790:3 12792:36 12797:1 12800:1 12809:1 12813:5 12815:1 12821:1 12859:6 12873:1 12884:2 12888:1 12892:1 12902:1 12916:1 12922:1 12927:1 12932:1 12935:1 12964:2 12967:1 12969:2 12980:1 13001:1 13008:1 13009:1 13020:1 13024:2 13027:1 13032:1 13038:1 13045:1 13086:1 13095:1 13100:2 13111:1 13116:1 13132:1 13141:2 13145:1 13163:1 13174:1 13180:1 13182:1 13183:1 13193:1 13195:1 13217:1 13229:1 13238:1 13239:1 13257:1 13259:1 13262:1 13265:1 13268:1 13269:1 13280:1 13286:12 13291:4 13294:3 13306:1 13307:1 13313:2 13326:1 13339:1 13340:1 13384:1 13389:1 13400:1 13412:1 13417:1 13418:1 13419:2 13424:2 13427:6 13430:6 13437:1 13462:1 13464:1 13480:1 13482:1 13491:14 13495:1 13502:1 13532:1 13541:1 13584:1 13585:2 13595:1 13626:1 13639:3 13641:4 13647:2 13665:1 13673:1 13675:1 13676:1 13680:1 13688:1 13695:2 13700:2 13705:1 13707:1 13713:1 13716:1 13717:1 13729:2 13732:1 13747:1 13766:1 13770:2 13772:3 13773:1 13775:1 13777:1 13780:1 13782:11 13783:1 13784:1 13786:2 13804:1 13805:2 13806:1 13807:1 13808:1 13809:1 13812:1 13814:6 13818:1 13821:1 13826:1 13827:2 13859:1 13868:1 13869:1 13873:1 13889:1 13901:1 13910:1 13928:1 13935:1 13939:1 13941:2 13951:10 13953:1 13955:2 13963:1 13974:1 13980:1 13988:1 13991:1 13998:1 14001:1 14012:1 14028:1 14030:2 14038:5 14052:1 14055:1 14057:3 14059:1 14069:12 14072:8 14096:1 14107:1 14116:1 14147:2 14156:5 14166:2 14177:4 14179:1 14202:1 14229:1 14232:1 14241:1 14256:1 14259:1 14261:3 14273:1 14275:2 14278:1 14299:1 14308:2 14314:1 14323:1 14329:1 14355:1 14361:4 14393:1 14398:1 14420:1 14422:1 14426:1 14440:2 14449:2 14451:1 14454:1 14460:2 14465:2 14466:2 14468:3 14471:1 14480:1 14485:2 14486:1 14497:1 14498:2 14506:2 14516:1 14541:1 14555:1 14557:1 14559:1 14560:2 14564:1 14574:1 14575:2 14576:1 14578:1 14590:2 14592:2 14607:1 14612:1 14613:2 14615:1 14617:1 14621:1 14622:1 14623:1 14625:1 14626:1 14627:1 14629:1 14634:1 14638:1 14641:1 14643:2 14652:1 14653:1 14657:2 14659:1 14664:1 14670:2 14671:1 14684:1 14688:1 14699:36 14700:1 14705:3 14708:1 14709:1 14714:1 14721:1 14728:1 14736:1 14786:1 14789:1 14792:5 14793:1 14800:1 14801:1 14806:2 14827:1 14832:1 14847:3 14850:1 14852:1 14863:1 14869:1 14870:1 14887:4 14890:1 14900:1 14902:1 14906:1 14939:1 14941:1 14944:1 14979:1 14993:2 15000:2 15001:1 15003:1 15010:1 15016:1 15031:1 15054:1 15060:1 15069:1 15070:2 15072:2 15080:1 15087:1 15100:1 15104:2 15105:1 15106:1 15109:7 15113:1 15169:1 15174:1 15175:1 15188:1 15193:3 15194:1 15197:1 15208:1 15218:1 15223:1 15237:2 15238:1 15245:2 15247:3 15257:1 15258:1 15267:1 15278:2 15299:1 15306:1 15315:1 15319:1 15322:2 15340:2 15341:1 15379:3 15380:1 15386:1 15396:1 15408:1 15409:3 15433:1 15452:1 15458:1 15462:2 15465:1 15478:1 15482:2 15484:1 15488:1 15491:1 15506:1 15521:1 15526:1 15536:1 15542:1 15555:1 15556:3 15557:4 15566:1 15584:1 15590:2 15608:6 15610:1 15612:1 15616:2 15619:1 15633:1 15653:1 15674:1 15678:1 15690:1 15718:1 15723:1 15730:1 15738:1 15742:2 15755:1 15757:1 15762:4 15778:1 15779:1 15783:1 15792:1 15795:1 15796:5 15802:3 15805:2 15818:4 15819:1 15823:1 15827:1 15828:1 15835:3 15844:1 15888:1 15890:1 15897:5 15899:2 15921:4 15923:2 15931:1 15944:1 15946:1 15951:1 15960:1 15961:3 15971:1 15973:4 15988:1 16006:1 16020:1 16023:1 16025:1 16031:1 16038:1 16051:1 16057:1 16060:15 16062:2 16063:1 16067:1 16096:4 16098:3 16100:1 16105:2 16116:1 16133:2 16137:1 16139:2 16140:2 16142:1 16143:2 16165:12 16178:1 16183:1 16185:1 16186:1 16193:1 16200:4 16203:1 16239:2 16250:1 16252:1 16254:1 16262:1 16264:1 16270:1 16271:2 16279:1 16285:4 16286:2 16287:1 16291:4 16292:1 16298:1 16299:3 16300:1 16301:2 16304:1 16321:1 16333:2 16357:2 16380:1 16381:1 16387:1 16392:1 16404:1 16413:1 16416:1 16418:1 16419:1 16440:1 16448:1 16452:1 16455:1 16457:1 16468:2 16476:1 16484:2 16510:1 16522:1 16523:1 16524:2 16527:1 16579:1 16590:2 16604:2 16613:1 16617:1 16631:3 16634:1 16644:1 16646:10 16647:1 16649:1 16658:1 16679:1 16687:1 16689:1 16692:1 16712:2 16714:1 16717:1 16723:1 16724:1 16725:2 16749:1 16751:1 16757:1 16766:1 16769:1 16773:3 16776:1 16782:2 16797:2 16800:3 16810:1 16811:2 16822:1 16878:1 16881:1 16899:1 16912:2 16922:1 16926:48 16932:1 16933:2 16934:1 16944:1 16949:1 16951:1 16963:1 16966:1 16967:4 16998:1 17020:1 17028:1 17030:1 17038:1 17042:1 17047:1 17060:1 17068:3 17072:2 17083:1 17088:1 17099:1 17103:2 17132:1 17138:1 17143:1 17144:1 17160:1 17166:2 17181:1 17184:1 17199:1 17207:1 17208:1 17213:1 17234:1 17236:2 17240:2 17241:1 17243:1 17250:1 17255:1 17266:1 17281:1 17284:1 17329:1 17332:1 17346:1 17356:1 17359:1 17361:2 17363:1 17372:1 17375:1 17380:1 17383:1 17384:1 17388:1 17393:2 17395:1 17406:1 17424:1 17436:1 17440:1 17443:1 17447:2 17449:1 17450:1 17452:1 17455:1 17457:1 17459:2 17465:2 17475:1 17484:1 17490:1 17535:2 17541:1 17545:1 17549:2 17555:2 17560:1 17579:1 17593:1 17604:1 17620:1 17623:1 17631:1 17632:4 17634:1 17637:2 17639:1 17645:1 17649:1 17662:1 17664:1 17671:2 17672:2 17683:1 17689:1 17692:1 17711:2 17717:1 17727:3 17731:2 17758:4 17759:1 17766:5 17776:1 17787:4 17788:1 17796:1 17812:1 17817:1 17844:2 17855:8 17859:1 17860:2 17884:3 17891:1 17909:2 17926:1 17929:2 17930:1 17936:2 17937:1 17945:1 17964:1 17980:1 17986:2 18012:1 18013:4 18017:2 18018:2 18019:1 18026:1 18030:1 18035:1 18055:2 18058:2 18076:1 18098:1 18100:2 18104:1 18123:1 18141:1 18142:1 18146:5 18156:1 18204:1 18206:2 18210:1 18223:1 18234:2 18245:1 18258:1 18269:1 18300:9 18310:2 18316:1 18332:1 18340:2 18370:1 18374:1 18377:4 18384:1 18393:1 18395:1 18401:1 18402:1 18417:1 18419:1 18422:1 18431:2 18447:2 18450:1 18456:1 18462:1 18492:1 18499:1 18504:1 18507:1 18516:2630 18527:2 18531:1 18538:2 18551:1 18555:1 18566:1 18581:1 18587:1 18589:1 18595:1 18597:1 18604:1 18619:1 18638:3 18648:1 18651:3 18653:1 18659:1 18678:1 18680:1 18691:1 18702:1 18707:1 18709:1 18712:2 18724:2 18760:1 18775:1 18780:2 18781:1 18787:1 18802:1 18832:1 18837:1 18850:2 18859:1 18863:1 18864:1 18894:2 18901:1 18902:1 18933:1 18952:1 18960:1 18969:1 18976:2 18978:1 18982:1 18986:1 19003:1 19013:1 19014:3 19016:2 19034:1 19037:1 19051:1 19083:1 19085:6 19116:5 19120:1 19128:1 19131:2 19137:2 19174:1 19175:1 19178:1 19184:1 19189:1 19192:1 19198:1 19219:1 19223:1 19230:1 19239:1 19245:1 19253:1 19257:1 19259:1 19268:1 19276:1 19282:8 19283:4 19290:1 19315:1 19318:4 19333:1 19342:2 19346:1 19362:1 19377:23 19384:1 19399:2 19409:1 19420:2 19421:1 19426:1 19427:1 19428:1 19429:2 19447:1 19451:4 19452:1 19453:1 19454:2 19461:2 19469:1 19477:1 19481:2 19490:3 19491:1 19500:1 19509:1 19513:1 19530:2 19558:1 19561:1 19573:1 19574:2 19576:1 19580:1 19584:4 19589:2 19603:1 19609:3 19611:1 19635:1 19638:1 19641:1 19653:2 19656:1 19658:1 19663:1 19678:2 19692:1 19697:1 19709:1 19713:2 19715:1 19726:1 19728:1 19732:1 19737:4 19757:1 19768:1 19790:1 19793:1 19813:1 19819:1 19820:3 19822:2 19823:1 19829:1 19835:1 19847:1 19851:2 19861:1 19866:2 19881:1 19896:1 19927:2 19929:8 19937:1 19940:1 19945:1 19947:1 19950:1 19957:1 19962:1 19972:2 19986:1 19992:2 19995:2 20000:1 20001:3 20002:7 20005:1 20021:1 20029:2 20030:6 20031:1 20033:1 20042:1 20043:1 20051:5 20079:2 20099:2 20103:1 20109:3 20117:1 20121:1 20123:6 20131:1 20132:1 20144:3 20149:1 20156:1 20162:2 20185:1 20199:1 20208:1 20211:5 20223:2 20244:1 20258:1 20259:1 20268:1 20285:1 20291:1 20293:1 20311:1 20338:1 20365:2 20375:1 20387:1 20390:1 20401:1 20408:1 20451:6 20455:1 20460:1 20462:1 20483:1 20484:2 20495:1 20499:2 20500:1 20513:3 20525:1 20541:1 20555:1 20578:1 20591:1 20601:1 20602:2 20605:1 20623:1 20630:2 20649:1 20653:1 20661:2 20664:1 20668:1 20674:1 20691:2 20692:3 20697:1 20699:1 20702:2 20703:1 20704:2 20711:1 20718:2 20720:1 20725:1 20733:1 20748:1 20754:1 20762:2 20764:2 20767:1 20773:3 20787:1 20788:1 20789:1 20798:1 20799:1 20808:2 20810:2 20828:1 20829:1 20833:1 20840:2 20842:2 20848:1 20853:4 20862:2 20863:1 20866:1 20869:3 20870:2 20878:2 20886:1 20892:4 20899:1 20918:1 20925:1 20940:1 20942:5 20945:1 20953:2 20958:1 20994:1 20996:1 21001:2 21004:3 21018:1 21021:1 21026:1 21037:2 21057:1 21061:1 21063:1 21071:2 21078:1 21087:1 21106:1 21114:1 21122:1 21127:1 21132:1 21137:1 21146:1 21151:1 21153:1 21155:1 21171:1 21185:1 21190:1 21196:1 21202:2 21204:1 21206:4 21219:2 21228:1 21233:1 21237:3 21257:1 21265:1 21271:2 21276:1 21285:1 21286:1 21289:1 21306:1 21308:1 21310:1 21311:1 21313:4 21317:1 21329:1 21332:1 21341:1 21351:2 21353:1 21359:1 21361:1 21362:1 21363:1 21364:2 21369:2 21374:1 21382:1 21397:1 21398:1 21410:1 21411:1 21414:1 21415:1 21420:1 21436:1 21442:1 21449:2 21451:1 21455:2 21464:4 21471:1 21473:1 21475:1 21492:2 21493:2 21506:1 21508:4 21517:1 21518:1 21530:1 21535:1 21543:1 21544:1 21545:1 21547:1 21558:3 21562:1 21570:4 21573:2 21574:1 21577:1 21590:1 21610:1 21620:1 21625:8 21626:1 21634:1 21648:1 21658:1 21663:1 21695:2 21696:1 21699:1 21705:8 21711:2 21712:1 21714:1 21715:5 21719:1 21728:3 21739:1 21741:1 21748:1 21763:1 21764:11 21775:1 21791:1 21835:1 21837:1 21843:1 21845:1 21877:1 21879:2 21881:4 21884:2 21887:1 21895:2 21896:1 21897:1 21898:2 21906:2 21908:2 21915:1 21918:1 21919:1 21923:7 21924:4 21925:1 21930:1 21936:1 21937:1 21939:1 21947:1 21955:1 21975:1 21997:1 22000:1 22015:1 22026:3 22028:1 22047:2 22058:2 22062:1 22066:4 22069:1 22082:2 22086:1 22095:1 22114:1 22128:3 22133:1 22139:1 22143:1 22144:1 22151:1 22161:4 22170:1 22175:2 22179:2 22192:1 22199:1 22214:1 22219:2 22235:1 22242:2 22248:15 22262:1 22267:2 22275:1 22296:1 22310:12 22312:2 22316:1 22321:1 22335:1 22338:1 22342:1 22362:1 22365:4 22368:2 22370:1 22379:4 22383:2 22416:1 22418:1 22425:7 22432:1 22439:2 22448:1 22456:3 22457:1 22462:1 22471:1 22475:1 22479:1 22481:1 22490:1 22492:2 22516:1 22533:1 22536:1 22542:1 22543:2 22555:10 22566:3 22582:1 22583:1 22599:3 22640:1 22665:1 22667:1 22671:1 22676:1 22683:1 22688:1 22691:1 22694:35 22709:1 22713:3 22714:3 22717:1 22718:2 22719:1 22721:1 22723:1 22727:1 22752:2 22757:3 22759:1 22760:1 22762:1 22768:3 22770:1 22771:1 22781:1 22805:1 22809:1 22816:1 22838:1 22841:1 22842:6 22852:3 22861:2 22866:1 22871:4 22874:1 22887:1 22899:1 22901:1 22925:1 22986:1 22990:3 23000:3 23008:1 23019:1 23060:1 23074:1 23075:1 23079:1 23083:1 23093:1 23095:3 23100:1 23103:1 23108:3 23109:1 23111:1 23115:2 23120:1 23147:36 23168:3 23169:1 23176:1 23186:1 23199:1 23202:1 23209:1 23223:1 23227:1 23228:1 23234:1 23235:2 23242:2 23247:6 23267:1 23276:1 23283:1 23289:1 23290:1 23305:1 23307:1 23315:1 23321:3 23325:2 23329:1 23336:1 23348:2 23350:1 23358:1 23359:1 23371:1 23379:2 23381:2 23385:1 23408:2 23416:1 23433:1 23460:1 23465:1 23487:1 23490:1 23506:3 23508:1 23509:2 23525:1 23541:1 23543:1 23593:1 23596:1 23610:1 23617:2 23622:1 23630:1 23641:2 23651:2 23664:2 23670:1 23693:1 23699:3 23735:1 23736:1 23740:2 23745:1 23751:1 23752:1 23766:1 23767:3 23772:1 23775:1 23782:1 23785:7 23786:1 23788:1 23802:1 23817:1 23825:1 23832:1 23838:1 23842:1 23846:1 23857:1 23868:1 23884:1 23890:1 23891:1 23895:1 23896:1 23912:1 23913:1 23915:2 23932:1 23941:1 23944:1 23950:1 23956:1 23957:3 23978:1 23982:2 24001:1 24008:2 24013:1 24028:2 24039:1 24065:1 24067:1 24069:7 24075:2 24076:1 24080:2 24092:2 24093:2 24097:3 24105:1 24112:1 24114:1 24140:1 24144:3 24147:1 24150:1 24175:1 24186:10 24191:1 24202:1 24213:1 24217:1 24220:1 24225:2 24232:1 24235:1 24251:1 24270:1 24275:1 24286:1 24291:5 24304:1 24326:1 24334:2 24363:1 24366:1 24379:1 24384:1 24388:3 24393:1 24395:1 24414:1 24420:1 24427:2 24435:1 24444:1 24450:1 24480:3 24484:2 24492:1 24493:1 24495:2 24499:5 24502:1 24503:1 24505:2 24519:1 24524:1 24536:2 24552:3 24572:1 24576:2 24577:3 24591:1 24594:1 24611:1 24612:2 24614:1 24620:1 24623:2 24626:1 24628:4 24631:1 24641:1 24645:1 24646:1 24653:1 24654:1 24656:1 24661:1 24664:1 24675:1 24676:1 24683:1 24687:1 24689:1 24690:1 24699:1 24704:1 24707:1 24711:1 24757:1 24766:1 24778:1 24779:1 24797:1 24802:3 24803:1 24812:1 24815:1 24838:1 24854:5 24858:2 24859:2 24863:1 24871:2 24872:1 24911:1 24919:1 24922:2 24943:2 24971:1 24974:1 24979:1 25025:1 25030:1 25048:2 25064:1 25069:2 25072:1 25075:2 25077:6 25088:1 25097:6 25100:3 25107:1 25130:1 25132:2 25133:2 25134:1 25163:1 25166:2 25173:2 25181:1 25184:1 25192:2 25198:1 25199:1 25205:2 25208:1 25210:1 25212:1 25215:1 25222:4 25227:1 25233:1 25236:1 25238:1 25245:1 25248:1 25255:1 25271:1 25274:1 25277:4 25279:1 25280:1 25281:2 25283:1 25284:2 25295:1 25306:2 25309:1 25310:1 25313:1 25328:2 25340:1 25351:1 25362:1 25365:1 25378:3 25383:1 25384:1 25387:1 25402:1 25408:1 25413:1 25415:1 25423:2 25439:1 25440:4 25451:4 25454:2 25461:1 25467:1 25473:1 25485:5 25499:4 25500:1 25511:2 25516:4 25542:1 25546:5 25552:1 25554:1 25565:1 25573:1 25576:14 25585:2 25599:2 25617:2 25628:1 25636:1 25693:1 25705:1 25707:1 25710:2 25713:3 25715:1 25718:1 25730:1 25732:2 25740:1 25741:1 25760:3 25766:1 25777:3 25778:1 25803:1 25807:1 25809:1 25812:1 25823:1 25832:1 25844:1 25848:1 25849:1 25850:2 25854:1 25860:1 25861:1 25874:1 25875:1 25876:1 25884:2 25885:1 25895:2 25920:3 25929:1 25933:1 25944:2 25955:1 25956:1 25961:1 25964:1 25966:2 25988:1 25989:1 25994:1 25995:4 25998:2 26005:2 26018:2 26019:1 26022:11 26023:1 26027:1 26035:1 26042:3 26054:1 26061:1 26065:1 26074:1 26088:1 26093:5 26107:1 26113:1 26119:1 26122:1 26125:1 26128:1 26130:1 26145:1 26148:2 26149:1 26156:1 26182:1 26202:2 26231:2 26233:1 26239:1 26253:3 26268:1 26272:1 26277:1 26278:1 26283:1 26286:1 26291:1 26333:2 26336:1 26354:1 26356:2 26372:1 26384:1 26399:1 26401:2 26417:1 26428:1 26429:2 26440:2 26450:2 26465:1 26484:1 26489:1 26498:1 26509:1 26510:1 26525:1 26536:1 26542:1 26546:1 26580:1 26588:1 26597:1 26609:2 26616:1 26626:1 26630:2 26632:6 26653:1 26654:3 26657:1 26661:2 26663:1 26675:4 26685:1 26691:1 26692:1 26703:4 26710:1 26712:1 26714:2 26734:1 26742:2 26743:7 26744:1 26746:2 26753:1 26754:1 26757:1 26764:2 26774:1 26778:3 26789:3 26794:2 26796:1 26799:1 26813:1 26818:1 26847:1 26851:1 26866:1 26870:2 26875:1 26878:2 26881:1 26884:2 26889:1 26894:1 26897:3 26899:1 26901:1 26911:1 26915:1 26918:5 26923:4 26930:2 26931:2 26932:2 26945:2 26968:1 26970:1 26971:2 26976:1 26979:1 26991:2 26992:1 26994:1 27003:1 27011:1 27035:2 27043:1 27045:1 27054:3 27064:2 27074:1 27082:1 27084:1 27087:1 27096:1 27100:8 27130:1 27131:1 27145:1 27150:1 27157:1 27164:2 27172:1 27173:1 27176:2 27178:1 27188:3 27196:1 27206:1 27224:1 27227:2 27228:1 27229:1 27230:3 27235:1 27236:1 27249:1 27251:5 27252:1 27254:2 27258:3 27265:1 27266:2 27269:1 27271:2 27276:3 27287:2 27296:3 27297:1 27299:3 27311:1 27318:1 27320:1 27329:1 27347:8 27353:1 27365:4 27390:1 27392:1 27401:1 27403:1 27405:3 27408:1 27411:3 27418:1 27424:1 27426:1 27427:1 27448:2 27451:2 27466:1 27468:1 27472:1 27502:1 27504:1 27516:2 27540:1 27548:1 27556:1 27558:1 27574:1 27615:1 27620:1 27649:1 27652:1 27658:3 27659:2 27662:2 27663:1 27666:5 27670:3 27673:7 27675:1 27676:1 27680:1 27689:1 27713:1 27718:1 27722:1 27727:3 27732:1 27734:1 27739:1 27745:1 27761:1 27764:1 27771:1 27784:2 27802:2 27808:1 27832:3 27855:1 27858:1 27868:1 27874:2 27898:1 27899:1 27908:1 27909:1 27912:1 27928:2 27945:1 27950:1 27953:1 27956:3 27965:1 27969:14 27970:2 27974:1 27978:1 27981:1 27993:1 27999:4 28007:1 28008:6 28032:1 28060:1 28073:1 28076:1 28080:4 28095:1 28105:1 28107:1 28109:2 28117:12 28123:3 28131:1 28134:1 28137:1 28151:2 28152:1 28162:1 28165:14 28170:2 28177:1 28207:1 28212:2 28214:1 28220:1 28222:1 28231:1 28243:2 28258:1 28283:1 28296:2 28335:2 28345:1 28363:1 28367:1 28375:1 28388:1 28392:44 28393:1 28413:1 28416:5 28417:2 28422:2 28423:5 28424:2 28425:1 28434:1 28435:1 28457:1 28485:4 28490:13 28491:1 28503:1 28509:1 28512:2 28515:1 28522:1 28529:1 28545:1 28546:2 28584:1 28597:1 28610:2 28615:2 28634:2 28635:1 28647:1 28660:1 28664:1 28669:5 28690:2 28701:5 28710:1 28753:3 28758:1 28760:1 28775:1 28782:1 28785:1 28787:2 28796:2 28798:1 28803:2 28804:1 28814:1 28852:1 28854:1 28857:2 28859:2 28865:1 28875:2 28887:1 28894:3 28901:1 28902:1 28903:2 28913:1 28923:1 28927:1 28928:1 28937:1 28940:2 28950:1 28954:1 28959:1 28964:1 28974:1 28976:1 28979:1 28986:1 28988:1 28999:1 29000:10 29001:1 29003:2 29005:3 29024:1 29027:1 29031:3 29042:6 29046:1 29057:4 29062:2 29063:2 29069:1 29073:36 29079:2 29100:2 29120:1 29121:1 29128:1 29137:1 29139:1 29141:2 29145:2 29146:2 29147:5 29171:1 29176:1 29179:1 29183:1 29184:2 29194:2 29197:1 29201:1 29202:1 29208:1 29215:1 29223:1 29225:2 29236:1 29240:1
2 12:1 13:1 31:2 32:1 36:1 41:1 49:1 52:1 55:1 56:1 59:1 67:1 75:1 85:3 88:1 89:2 91:1 98:1 106:1 113:1 146:2 154:1 160:1 166:2 170:2 174:2 176:1 180:1 184:1 193:1 196:1 199:1 209:1 213:2 223:1 227:1 228:1 241:1 249:2 252:1 265:3 271:5 272:1 276:2 286:2 287:1 291:1 292:2 322:2 329:1 358:1 359:4 375:1 376:2 380:1 384:1 385:1 388:1 391:1 392:1 395:1 415:2 425:2 429:2 441:1 446:2 452:1 460:1 462:1 469:1 471:2 479:2 490:2 501:4 505:1 509:1 515:1 519:1 536:2 544:1 552:1 553:1 562:1 564:1 565:1 571:1 593:1 607:3 613:2 618:2 620:1 623:1 632:1 637:1 644:6 658:37 661:1 663:4 667:1 670:1 671:1 682:1 686:1 696:1 699:3 702:3 714:1 719:2 725:1 728:2 735:2 745:3 749:1 783:2 809:1 813:2 815:1 817:3 820:2 822:1 823:2 824:3 838:1 857:1 861:3 868:1 876:3 882:1 885:1 894:1 904:3 905:7 907:3 908:1 917:5 930:1 937:5 943:1 951:2 957:4 960:10 964:1 965:3 970:1 976:2 980:2 982:3 999:2 1003:1 1006:2 1016:3 1027:1 1029:3 1032:1 1036:1 1048:2 1050:1 1055:4 1056:1 1058:1 1091:1 1098:2 1099:1 1100:1 1112:1 1137:1 1146:1 1158:1 1160:3 1173:1 1190:1 1211:1 1214:36 1220:1 1223:2 1224:2 1227:1 1229:4 1232:1 1245:1 1256:2 1258:2 1260:2 1266:1 1270:1 1275:1 1277:1 1279:3 1280:2 1281:1 1288:1 1290:1 1291:1 1295:1 1298:1 1302:1 1314:1 1316:2 1338:1 1354:1 1356:2 1357:1 1380:4 1390:1 1393:1 1395:1 1397:1 1402:2 1404:11 1420:1 1430:1 1444:1 1452:3 1459:1 1462:2 1475:1 1481:1 1493:1 1499:1 1501:1 1502:3 1506:2 1510:16 1512:1 1516:1 1517:1 1528:1 1532:1 1540:1 1546:2 1548:1 1550:1 1575:1 1576:3 1582:2 1598:1 1602:6 1615:1 1616:1 1631:1 1636:1 1637:2 1639:1 1647:3 1650:1 1666:1 1672:1 1676:1 1677:11 1685:1 1687:1 1690:1 1691:2 1705:1 1720:1 1728:1 1740:2 1741:1 1745:3 1757:1 1760:1 1762:1 1776:1 1778:1 1779:1 1783:1 1787:1 1795:1 1820:1 1827:1 1833:1 1838:1 1840:1 1842:1 1853:1 1866:1 1870:3 1871:2 1877:1 1878:1 1892:1 1895:1 1897:1 1898:3 1901:1 1907:1 1913:1 1918:2 1921:3 1930:1 1937:1 1941:2 1947:2 1957:2 1959:1 1973:1 1976:1 1977:1 1980:1 1982:1 1986:1 1988:1 1992:1 1993:1 2001:1 2022:8 2042:1 2045:1 2048:1 2051:2 2053:1 2076:1 2077:1 2085:1 2094:1 2108:1 2115:1 2117:1 2118:2 2121:1 2123:1 2125:1 2127:1 2140:1 2144:1 2145:1 2157:2 2158:1 2159:1 2161:1 2172:1 2176:1 2181:1 2186:1 2196:10 2217:1 2235:3 2238:1 2239:1 2265:1 2269:2 2291:1 2299:1 2325:1 2329:1 2333:1 2334:2 2335:2 2336:4 2337:3 2338:2 2339:3 2341:1 2342:5 2343:1 2347:9 2349:4 2352:7 2356:4 2359:1 2360:3 2362:1 2364:1 2367:1 2369:4 2372:4 2375:1 2376:1 2379:1 2382:1 2383:1 2405:1 2406:1 2412:1 2421:3 2422:1 2430:5 2433:1 2439:1 2457:2 2460:1 2478:1 2479:1 2482:1 2485:1 2487:1 2492:1 2494:4 2495:4 2500:1 2503:4 2513:2 2514:4 2522:4 2523:1 2531:1 2533:1 2539:1 2550:4 2562:1 2563:1 2564:1 2571:1 2596:1 2603:2 2604:2 2610:1 2616:1 2624:1 2639:1 2646:2 2660:1 2663:1 2674:2 2680:1 2681:1 2730:1 2735:1 2736:2 2745:1 2751:2 2758:3 2766:1 2767:2 2773:1 2775:1 2777:1 2785:3 2787:1 2791:4 2804:1 2809:1 2812:3 2813:4 2819:1 2822:3 2826:1 2833:1 2839:1 2841:1 2872:3 2877:1 2881:5 2883:5 2886:1 2889:1 2892:4 2901:2 2904:1 2915:1 2937:2 2940:1 2948:1 2949:2 2954:1 2956:2 2963:1 2982:17 2984:37 2986:1 2990:1 2991:3 2998:2 3002:2 3005:1 3014:1 3018:2 3019:1 3023:4 3024:1 3029:1 3032:1 3039:8 3049:1 3053:4 3057:2 3061:1 3067:1 3070:1 3091:2 3097:1 3100:1 3101:1 3127:2 3133:3 3139:1 3142:1 3169:3 3196:2 3219:1 3226:1 3261:1 3267:1 3278:4 3281:1 3293:1 3297:1 3301:1 3316:2 3337:2 3340:1 3341:1 3351:1 3354:3 3360:1 3368:3 3380:1 3387:2 3393:1 3399:1 3401:4 3419:2 3445:1 3482:1 3486:1 3502:1 3506:1 3521:2 3525:1 3527:1 3536:1 3540:1 3541:1 3550:1 3552:1 3556:2 3564:1 3574:1 3601:1 3604:1 3606:1 3612:1 3617:1 3627:1 3628:1 3632:1 3642:1 3645:1 3666:2 3677:1 3684:1 3690:1 3697:1 3704:1 3715:1 3734:1 3758:1 3773:3 3774:2 3775:1 3779:2 3782:2 3797:1 3798:1 3823:1 3831:3 3833:1 3861:1 3867:1 3868:2 3872:2 3877:1 3882:1 3884:3 3886:1 3902:1 3907:2 3909:2 3915:2 3936:1 3938:1 3940:1 3946:3 3960:1 3963:1 3964:1 3985:1 3990:36 3991:2 3998:1 4007:2 4012:1 4020:1 4049:1 4052:1 4053:1 4056:1 4066:1 4071:1 4072:2 4079:4 4081:5 4096:2 4102:2 4108:1 4113:6 4117:7 4118:2 4131:1 4132:2 4133:1 4148:1 4169:1 4171:1 4182:1 4192:1 4195:1 4196:2 4208:3 4216:1 4225:1 4231:1 4258:1 4260:1 4262:1 4264:2 4267:1 4269:1 4272:1 4277:1 4283:1 4293:1 4304:1 4307:1 4309:2 4310:1 4312:3 4317:1 4319:3 4331:1 4357:1 4370:1 4372:1 4376:3 4402:1 4405:2 4407:1 4409:1 4412:1 4415:2 4424:1 4432:2 4434:36 4435:1 4443:2 4446:1 4448:1 4452:5 4462:1 4466:1 4475:1 4477:1 4479:1 4527:2 4535:6 4550:1 4553:1 4554:1 4557:1 4564:1 4580:1 4590:3 4604:2 4609:3 4610:1 4618:2 4622:2 4623:1 4626:1 4629:1 4648:1 4668:8 4676:2 4698:2 4717:1 4740:1 4744:1 4752:1 4774:6 4790:4 4796:1 4811:1 4812:1 4818:6 4826:1 4839:1 4854:1 4863:1 4867:1 4870:1 4883:1 4898:1 4902:5 4903:2 4908:2 4909:1 4913:1 4916:1 4920:4 4931:1 4942:1 4943:3 4954:1 4974:1 4976:1 4977:1 4983:1 4997:3 4998:2 5012:19 5013:2 5022:2 5025:1 5046:7 5053:2 5063:2 5074:1 5087:2 5089:1 5091:1 5106:1 5138:4 5140:1 5143:5 5149:1 5159:4 5160:4 5161:2 5164:1 5167:6 5173:1 5174:2 5175:4 5176:1 5183:1 5190:2 5192:5 5194:4 5195:1 5205:1 5214:1 5230:1 5264:1 5267:1 5268:2 5273:1 5283:1 5300:1 5314:1 5324:1 5342:1 5361:1 5389:1 5403:1 5427:1 5438:1 5439:2 5440:1 5462:1 5482:1 5485:1 5486:1 5495:2 5496:2 5520:1 5533:1 5534:3 5549:2 5574:1 5577:2 5579:1 5583:1 5603:1 5606:1 5613:2 5624:1 5626:1 5630:3 5634:1 5690:1 5699:1 5700:1 5707:1 5712:1 5713:1 5716:1 5723:2 5724:1 5726:1 5729:2 5740:1 5741:1 5742:1 5762:2 5774:1 5776:1 5780:11 5784:1 5790:2 5792:1 5794:1 5800:1 5802:2 5807:1 5822:2 5833:2 5839:1 5841:1 5853:2 5860:2 5880:1 5889:1 5896:1 5908:2 5921:1 5924:1 5926:2 5939:2 5968:3 5992:1 6005:1 6017:1 6019:1 6027:1 6034:1 6042:1 6043:1 6063:1 6064:1 6065:2 6076:3 6079:1 6092:1 6097:1 6118:1 6121:1 6143:1 6149:1 6151:2 6168:2 6176:2 6182:3 6187:1 6195:1 6198:1 6203:1 6207:2 6208:4 6211:1 6212:1 6217:1 6220:1 6221:1 6222:1 6227:1 6247:1 6255:1 6276:1 6281:1 6294:2 6295:2 6296:1 6301:1 6302:1 6304:1 6307:2 6308:1 6311:1 6312:1 6313:1 6315:3 6317:1 6320:2 6322:2 6324:2 6325:3 6326:1 6330:1 6345:1 6356:2 6388:5 6391:1 6399:1 6408:4 6410:2 6416:1 6428:3 6436:1 6437:1 6448:1 6456:1 6479:2 6486:1 6500:1 6507:1 6510:1 6523:8 6527:1 6528:1 6533:2 6534:5 6536:2 6538:1 6539:1 6540:2 6541:1 6543:5 6545:3 6546:1 6547:1 6550:4 6552:9 6553:1 6554:1 6560:1 6563:1 6581:1 6595:1 6599:1 6600:2 6601:1 6615:1 6619:1 6629:1 6637:1 6657:1 6666:2 6667:1 6674:3 6679:3 6694:1 6702:2 6717:1 6720:1 6736:1 6744:1 6746:1 6747:1 6749:1 6755:1 6762:1 6763:1 6769:1 6772:1 6776:1 6785:1 6792:1 6795:2 6796:1 6809:1 6810:2 6820:1 6831:2 6850:1 6853:1 6866:1 6872:1 6892:1 6899:1 6901:1 6904:1 6908:3 6927:3 6939:1 6944:1 6960:2 6962:1 6967:1 6974:1 6991:1 6997:2 7025:1 7030:1 7040:1 7059:1 7063:2 7077:1 7083:2 7101:1 7102:1 7114:1 7117:1 7130:1 7177:1 7178:1 7180:1 7184:1 7187:1 7192:5 7203:1 7205:1 7212:1 7217:6 7264:1 7269:1 7271:1 7277:1 7283:1 7287:2 7289:1 7295:1 7301:2 7319:1 7332:2 7346:1 7351:1 7369:3 7375:1 7398:1 7406:1 7409:2 7412:1 7413:2 7417:1 7423:1 7428:1 7431:1 7435:1 7437:1 7442:1 7447:1 7474:1 7476:1 7485:1 7495:1 7496:2 7508:1 7516:1 7522:1 7540:1 7543:2 7562:1 7563:1 7571:1 7574:1 7582:1 7593:1 7596:6 7629:9 7632:1 7636:1 7663:1 7664:2 7673:1 7679:1 7693:2 7707:1 7716:1 7718:1 7722:1 7725:1 7748:4 7749:1 7752:1 7779:1 7787:1 7803:3 7815:13 7816:13 7821:1 7832:1 7833:1 7834:1 7835:5 7837:1 7864:3 7868:4 7871:1 7878:56 7882:1 7883:1 7886:2 7890:1 7891:1 7897:19 7900:6 7903:1 7907:1 7908:1 7911:1 7932:1 7933:4 7936:2 7941:2 7949:1 7957:1 7985:6 7986:1 7996:2 8002:1 8013:1 8014:1 8037:1 8039:2 8054:3 8065:1 8071:1 8075:4 8077:1 8083:1 8087:1 8105:1 8109:6 8119:1 8129:1 8159:1 8162:2 8176:2 8189:1 8196:1 8249:1 8253:1 8286:1 8290:1 8300:1 8307:1 8312:3 8316:1 8348:2 8351:1 8352:1 8364:1 8376:1 8377:36 8383:1 8384:1 8392:1 8394:1 8396:1 8402:1 8410:16 8411:4 8426:1 8428:2 8441:1 8443:1 8445:1 8447:1 8449:2 8462:1 8466:1 8475:1 8480:1 8492:45 8499:1 8501:1 8531:2 8537:1 8554:1 8561:1 8588:2 8596:1 8598:1 8605:1 8608:1 8645:1 8657:1 8659:2 8667:1 8671:1 8674:2 8677:1 8680:1 8683:1 8687:1 8693:5 8694:1 8713:1 8720:1 8725:2 8737:1 8745:3 8746:1 8749:1 8750:1 8760:2 8762:1 8763:2 8766:1 8768:1 8778:2 8779:2 8782:1 8783:1 8792:1 8797:1 8812:1 8813:1 8822:1 8832:1 8836:1 8841:1 8845:1 8850:2 8859:1 8862:4 8883:1 8915:1 8923:1 8926:1 8928:1 8931:2 8987:3 8989:1 8991:1 9014:2 9019:1 9039:1 9052:1 9057:2 9059:1 9061:1 9063:1 9066:1 9067:1 9069:2 9086:1 9090:4 9106:1 9110:1 9111:1 9112:4 9118:1 9129:3 9138:1 9139:1 9140:1 9184:1 9191:3 9196:1 9199:2 9204:2 9236:1 9238:6 9247:5 9256:1 9258:1 9264:2 9300:1 9320:4 9343:3 9344:1 9354:1 9377:1 9378:4 9382:2 9384:1 9391:5 9393:3 9394:1 9396:1 9400:1 9404:2 9406:2 9408:2 9415:1 9421:1 9428:1 9429:1 9432:1 9435:1 9442:1 9445:1 9446:1 9447:2 9448:1 9449:1 9456:1 9466:1 9472:1 9473:3 9483:8 9487:2 9490:2 9496:2 9504:1 9506:1 9521:3 9525:1 9534:1 9543:1 9546:2 9558:1 9563:3 9564:2 9571:1 9580:1 9592:1 9597:1 9600:1 9607:1 9610:1 9611:2 9616:2 9619:2 9622:1 9623:1 9624:1 9627:1 9628:2 9637:1 9641:1 9642:1 9651:1 9653:1 9658:1 9660:1 9661:11 9675:1 9677:2 9678:11 9681:1 9689:1 9694:1 9698:1 9701:3 9703:1 9706:1 9715:1 9717:1 9719:3 9721:1 9723:1 9726:1 9738:1 9751:1 9752:1 9763:1 9773:1 9779:1 9782:1 9795:1 9797:2 9802:1 9803:1 9804:2 9805:1 9813:1 9820:1 9828:1 9829:1 9841:1 9855:1 9856:1 9860:1 9887:1 9905:6 9914:1 9915:1 9916:1 9920:1 9921:3 9924:4 9927:1 9934:1 9936:1 9960:1 9961:1 9962:1 9974:1 9987:1 10003:2 10016:1 10028:1 10029:1 10046:36 10050:1 10053:1 10055:1 10061:1 10069:1 10077:1 10083:2 10092:1 10097:1 10098:1 10102:1 10115:1 10117:1 10122:2 10131:2 10134:1 10138:1 10144:1 10166:1 10170:5 10174:1 10177:3 10184:1 10188:2 10195:2 10220:1 10229:1 10233:1 10242:2 10243:2 10252:2 10255:1 10260:1 10261:2 10266:2 10268:2 10280:5 10284:5 10292:1 10297:3 10299:1 10322:5 10336:1 10337:1 10339:2 10350:1 10359:1 10362:1 10369:1 10381:1 10383:3 10388:1 10393:1 10402:1 10404:1 10405:1 10417:1 10426:7 10440:1 10464:1 10518:2 10522:1 10526:1 10527:1 10542:5 10555:1 10564:2 10573:1 10575:2 10576:2 10582:1 10594:1 10604:1 10609:1 10619:1 10623:2 10624:8 10632:1 10641:1 10664:3 10681:1 10691:1 10705:1 10707:1 10725:1 10740:4 10745:1 10758:1 10760:5 10770:1 10773:1 10786:2 10820:3 10834:1 10840:1 10842:2 10859:1 10860:5 10864:2 10867:8 10874:1 10882:1 10894:1 10899:1 10907:2 10912:1 10914:1 10922:1 10923:2 10926:1 10929:7 10934:1 10942:1 10947:1 10955:2 10956:1 10963:1 10976:2 10980:1 10990:1 11004:1 11005:1 11036:1 11065:1 11066:11 11082:1 11083:1 11086:1 11089:1 11098:3 11100:1 11108:1 11111:3 11114:3 11117:3 11124:1 11131:1 11143:5 11148:1 11152:1 11158:1 11167:2 11170:2 11176:1 11178:1 11185:1 11195:1 11197:9 11199:1 11200:1 11203:1 11215:1 11217:3 11219:4 11220:1 11231:1 11234:2 11237:1 11246:1 11264:1 11266:1 11276:6 11279:1 11281:1 11283:1 11285:1 11286:1 11293:2 11300:1 11303:2 11311:1 11320:1 11333:1 11347:3 11372:1 11373:1 11375:1 11383:1 11385:1 11390:1 11400:1 11404:3 11407:1 11437:2 11455:1 11456:2 11464:2 11466:1 11474:1 11475:1 11476:4 11477:1 11483:2 11484:1 11487:1 11490:1 11502:2 11503:5 11505:1 11508:1 11510:1 11511:1 11518:1 11532:1 11535:3 11538:1 11552:1 11568:1 11571:5 11591:1 11606:1 11607:1 11609:2 11613:1 11614:1 11617:1 11622:1 11627:1 11629:1 11636:10 11648:2 11649:2 11674:1 11679:1 11694:1 11695:1 11699:1 11702:1 11714:1 11732:2 11744:1 11746:2 11750:2 11770:1 11775:6 11797:1 11800:1 11803:1 11809:1 11812:3 11824:1 11825:1 11827:2 11829:1 11834:1 11838:1 11839:6 11840:4 11845:2 11848:1 11851:5 11854:1 11871:1 11878:1 11881:2 11891:1 11895:2 11899:1 11900:9 11904:1 11907:1 11916:1 11930:1 11931:1 11936:2 11949:1 11955:1 11979:1 11992:3 11995:1 11996:1 12003:4 12011:1 12039:1 12043:3 12054:1 12083:1 12090:1 12092:1 12109:1 12110:1 12139:1 12140:1 12142:1 12154:1 12163:2 12164:1 12179:1 12193:1 12223:1 12224:1 12235:1 12240:3 12243:1 12261:4 12281:1 12283:1 12289:1 12311:1 12322:1 12329:1 12330:1 12332:1 12337:2 12338:1 12339:3 12344:6 12345:1 12348:1 12354:1 12364:1 12372:1 12376:1 12383:1 12385:1 12406:1 12421:1 12431:1 12444:1 12455:1 12460:3 12461:5 12470:1 12483:1 12505:1 12510:1 12513:2 12522:1 12532:2 12555:1 12563:1 12575:1 12588:1 12597:3 12599:1 12606:1 12612:1 12613:1 12633:1 12635:1 12648:1 12650:1 12657:1 12664:1 12666:1 12722:1 12723:1 12742:1 12746:1 12763:1 12767:1 12790:3 12792:37 12797:1 12800:1 12809:1 12813:5 12815:1 12821:1 12859:6 12873:1 12884:2 12888:1 12892:1 12902:1 12916:1 12922:1 12927:1 12932:1 12935:1 12964:2 12967:1 12969:2 12980:1 13001:1 13008:1 13009:1 13020:1 13024:2 13027:1 13032:1 13038:1 13045:1 13086:1 13095:1 13100:3 13111:1 13116:1 13132:1 13141:2 13145:1 13163:1 13174:1 13180:1 13182:1 13183:1 13193:1 13195:1 13217:1 13229:1 13238:1 13239:1 13257:1 13259:1 13262:1 13265:1 13268:1 13269:1 13280:1 13286:12 13291:4 13294:3 13306:1 13307:1 13313:2 13326:1 13339:1 13340:1 13384:1 13389:1 13400:1 13412:1 13417:1 13418:1 13419:2 13424:2 13427:6 13430:6 13437:1 13462:1 13464:1 13480:1 13482:1 13491:14 13495:1 13502:1 13532:1 13541:1 13584:1 13585:2 13595:1 13626:1 13639:3 13641:4 13647:3 13665:1 13673:1 13675:2 13676:1 13680:1 13688:1 13695:2 13700:2 13705:1 13707:1 13713:1 13716:1 13717:1 13729:3 13732:1 13747:1 13766:1 13770:2 13772:3 13773:1 13775:1 13777:1 13780:1 13782:12 13783:1 13784:1 13786:2 13804:1 13805:2 13806:1 13807:1 13808:1 13809:1 13812:1 13814:6 13818:1 13821:1 13826:1 13827:2 13859:1 13868:1 13869:1 13873:1 13889:1 13901:1 13910:1 13928:1 13935:1 13939:1 13941:2 13951:10 13953:1 13955:2 13963:1 13974:1 13980:1 13988:1 13991:1 13998:1 14001:1 14012:1 14028:1 14030:2 14038:5 14052:1 14055:1 14057:3 14059:1 14069:13 14072:8 14096:1 14107:1 14116:1 14147:2 14154:1 14156:5 14166:2 14177:4 14179:1 14202:1 14229:1 14232:1 14241:1 14256:1 14259:1 14261:3 14273:1 14275:2 14278:1 14299:1 14308:2 14314:1 14323:1 14329:1 14355:1 14361:4 14393:1 14398:1 14420:1 14422:1 14426:1 14440:2 14449:2 14451:1 14454:1 14460:2 14465:2 14466:2 14468:3 14471:1 14480:1 14485:2 14486:1 14497:1 14498:2 14506:2 14516:1 14541:1 14555:1 14557:1 14559:1 14560:2 14564:1 14574:1 14575:2 14576:1 14578:1 14590:2 14592:2 14607:1 14612:1 14613:2 14615:1 14617:1 14621:1 14622:1 14623:1 14625:1 14626:1 14627:1 14629:1 14634:1 14638:1 14641:1 14643:2 14652:1 14653:1 14657:2 14659:1 14664:1 14670:2 14671:1 14684:1 14688:1 14699:37 14700:1 14705:3 14708:1 14709:1 14714:1 14721:1 14728:1 14736:1 14786:1 14789:1 14792:5 14793:1 14800:1 14801:1 14806:2 14827:1 14832:1 14847:3 14850:1 14852:1 14863:1 14869:1 14870:1 14887:6 14890:1 14900:1 14902:1 14906:1 14939:1 14941:1 14944:1 14979:1 14993:2 15000:2 15001:2 15003:1 15010:1 15016:1 15031:1 15054:1 15060:1 15069:1 15070:2 15072:2 15080:1 15087:1 15100:1 15104:2 15105:1 15106:1 15109:7 15113:1 15169:1 15174:1 15175:1 15188:1 15193:3 15194:1 15197:1 15208:1 15218:1 15223:1 15237:2 15238:1 15245:2 15247:3 15257:1 15258:1 15267:1 15278:2 15299:1 15306:1 15315:1 15319:1 15322:2 15340:2 15341:1 15379:3 15380:1 15386:1 15396:1 15408:1 15409:3 15432:1 15433:1 15452:1 15458:1 15462:2 15465:1 15478:1 15482:2 15484:1 15488:1 15491:1 15506:2 15521:1 15526:1 15536:1 15542:1 15555:1 15556:3 15557:4 15566:1 15584:1 15590:2 15608:6 15610:1 15612:1 15616:2 15619:1 15633:1 15653:1 15674:1 15678:1 15690:1 15718:1 15722:1 15723:1 15730:1 15738:1 15741:1 15742:3 15755:1 15757:1 15762:4 15778:1 15779:1 15783:1 15792:1 15795:1 15796:5 15802:3 15805:2 15818:4 15819:1 15823:1 15827:1 15828:1 15835:3 15844:1 15888:1 15890:1 15897:5 15899:2 15921:4 15923:2 15931:1 15944:1 15946:1 15951:1 15960:1 15961:3 15971:1 15973:5 15988:1 16006:1 16020:1 16023:1 16025:1 16031:1 16038:1 16051:1 16057:1 16060:15 16062:2 16063:1 16067:1 16096:4 16098:3 16100:1 16105:2 16116:1 16133:2 16137:1 16139:3 16140:2 16142:1 16143:2 16165:12 16178:1 16183:1 16185:1 16186:1 16193:1 16200:4 16203:1 16239:2 16250:1 16252:1 16254:1 16262:1 16264:1 16270:1 16271:2 16279:1 16285:4 16286:2 16287:1 16291:4 16292:1 16298:1 16299:3 16300:1 16301:2 16304:1 16321:1 16333:2 16357:2 16380:1 16381:1 16387:1 16392:1 16404:1 16413:1 16416:1 16418:1 16419:1 16440:1 16448:1 16452:1 16455:1 16457:1 16468:2 16476:1 16484:2 16510:1 16522:1 16523:1 16524:2 16527:1 16579:1 16590:2 16604:2 16613:1 16617:1 16631:4 16634:1 16644:1 16646:11 16647:1 16649:1 16658:1 16679:1 16687:1 16689:1 16692:1 16712:2 16714:3 16717:1 16723:1 16724:1 16725:2 16749:1 16751:1 16757:1 16766:1 16769:1 16773:3 16776:1 16782:2 16797:2 16800:3 16810:1 16811:2 16822:1 16878:1 16881:1 16899:1 16912:2 16922:1 16926:49 16932:1 16933:2 16934:1 16944:1 16949:1 16951:1 16963:1 16966:1 16967:4 16998:1 17020:1 17028:1 17030:1 17038:1 17042:1 17047:1 17060:1 17068:3 17072:2 17083:1 17088:1 17099:1 17103:2 17132:1 17138:1 17143:1 17144:1 17160:1 17166:2 17169:1 17181:1 17184:1 17199:1 17207:1 17208:1 17213:1 17234:1 17236:2 17240:2 17241:1 17243:1 17250:1 17255:1 17266:1 17281:1 17284:1 17329:1 17332:1 17346:1 17356:1 17359:1 17361:2 17363:1 17372:1 17375:1 17380:1 17383:1 17384:1 17388:1 17393:2 17395:1 17406:1 17424:1 17436:1 17440:1 17443:2 17447:2 17449:1 17450:1 17452:1 17455:1 17457:1 17459:2 17465:2 17475:1 17484:1 17490:1 17535:2 17541:1 17545:1 17549:2 17555:2 17560:1 17579:1 17593:1 17604:1 17609:1 17620:1 17623:1 17631:1 17632:4 17634:1 17637:2 17639:1 17645:1 17649:1 17662:1 17664:1 17671:2 17672:2 17683:1 17689:1 17692:1 17711:2 17717:1 17727:3 17731:2 17758:4 17759:1 17766:5 17776:1 17787:4 17788:1 17796:1 17812:1 17817:1 17844:2 17855:8 17859:1 17860:2 17884:3 17891:1 17909:2 17926:1 17929:2 17930:1 17936:2 17937:1 17945:1 17964:1 17980:1 17986:2 18012:1 18013:4 18017:2 18018:2 18019:1 18026:1 18030:1 18035:1 18055:2 18058:2 18076:1 18098:1 18100:2 18104:1 18123:1 18141:1 18142:1 18146:5 18156:1 18204:1 18206:2 18210:1 18223:1 18234:2 18245:1 18258:1 18265:1 18269:1 18300:9 18310:2 18316:1 18332:1 18340:2 18370:1 18374:1 18377:4 18384:1 18393:1 18395:1 18401:1 18402:1 18417:1 18419:1 18422:1 18431:2 18447:2 18450:1 18456:1 18462:1 18492:1 18499:1 18504:1 18507:1 18516:2657 18527:2 18531:1 18538:2 18551:1 18555:1 18566:1 18581:1 18587:1 18589:1 18595:1 18597:1 18604:1 18619:1 18638:3 18648:1 18651:3 18653:1 18659:1 18678:1 18680:1 18691:1 18702:1 18707:1 18709:1 18712:2 18724:2 18732:1 18760:1 18775:1 18780:2 18781:1 18787:1 18802:1 18832:1 18837:1 18850:2 18859:1 18863:1 18864:1 18894:2 18901:1 18902:1 18933:1 18952:1 18960:1 18969:1 18976:2 18978:1 18982:1 18986:1 19003:1 19013:1 19014:3 19016:2 19034:1 19037:1 19051:1 19083:1 19085:6 19116:5 19120:1 19128:1 19131:2 19137:2 19174:1 19175:1 19178:1 19184:1 19189:1 19192:1 19198:1 19219:1 19223:1 19230:2 19239:1 19245:1 19253:1 19257:1 19259:1 19268:1 19276:1 19282:8 19283:4 19290:1 19315:1 19318:5 19333:1 19342:2 19346:1 19362:1 19377:23 19384:1 19399:2 19409:1 19420:2 19421:1 19426:1 19427:1 19428:1 19429:2 19447:1 19451:4 19452:1 19453:1 19454:2 19461:2 19469:1 19477:1 19481:2 19490:3 19491:1 19500:1 19509:1 19513:1 19530:2 19558:1 19561:1 19573:1 19574:2 19576:1 19580:1 19584:4 19589:2 19603:1 19609:3 19611:1 19635:1 19638:1 19641:1 19653:2 19656:1 19658:1 19663:1 19678:2 19685:1 19692:1 19697:1 19709:1 19713:2 19715:1 19726:1 19728:1 19732:1 19737:4 19757:1 19768:1 19790:1 19793:1 19813:1 19819:1 19820:3 19822:2 19823:1 19829:1 19835:1 19847:1 19851:2 19861:1 19866:2 19881:1 19896:1 19927:3 19929:8 19937:1 19940:1 19945:1 19947:1 19950:1 19957:1 19962:1 19972:2 19986:1 19992:2 19995:2 20000:1 20001:3 20002:7 20005:1 20021:1 20029:2 20030:6 20031:1 20033:1 20042:1 20043:1 20051:5 20079:3 20099:2 20103:1 20109:3 20117:1 20121:1 20123:6 20131:1 20132:1 20144:3 20149:1 20156:1 20162:2 20185:1 20199:1 20208:1 20211:5 20223:2 20244:1 20258:1 20259:1 20268:1 20285:1 20291:1 20293:1 20311:1 20338:1 20365:2 20375:1 20387:1 20390:1 20401:1 20408:1 20451:6 20455:1 20460:1 20462:1 20483:1 20484:2 20495:1 20499:2 20500:1 20513:3 20525:1 20541:1 20555:1 20578:1 20591:1 20601:1 20602:3 20605:1 20623:1 20630:2 20649:1 20653:1 20661:2 20664:2 20668:1 20674:1 20691:2 20692:3 20697:1 20699:1 20702:2 20703:1 20704:2 20711:1 20718:2 20720:1 20725:1 20733:1 20748:1 20754:1 20762:2 20764:2 20767:1 20773:3 20787:1 20788:1 20789:1 20798:1 20799:1 20808:2 20810:2 20828:1 20829:1 20833:1 20837:1 20840:2 20842:2 20848:1 20853:4 20862:2 20863:1 20866:1 20869:3 20870:2 20878:2 20886:1 20892:4 20899:1 20918:1 20925:1 20940:1 20942:5 20945:1 20953:2 20958:1 20994:1 20996:1 21001:2 21004:3 21018:1 21021:1 21026:1 21037:2 21057:1 21061:1 21063:1 21071:2 21078:1 21087:1 21106:1 21114:1 21122:1 21127:1 21132:1 21137:1 21146:1 21151:1 21153:1 21155:1 21171:1 21185:1 21190:1 21196:1 21202:2 21204:1 21206:5 21219:2 21228:1 21233:1 21237:3 21257:1 21265:1 21271:2 21276:1 21285:1 21286:1 21289:1 21306:1 21308:1 21310:1 21311:1 21313:4 21317:1 21329:1 21332:2 21341:1 21351:2 21353:1 21359:1 21361:1 21362:1 21363:1 21364:2 21369:2 21374:1 21382:2 21397:1 21398:1 21410:1 21411:1 21414:1 21415:2 21420:1 21436:1 21442:1 21449:2 21451:1 21455:2 21464:4 21471:1 21473:1 21475:1 21476:1 21492:2 21493:2 21506:1 21508:4 21517:1 21518:1 21530:1 21535:1 21543:1 21544:1 21545:1 21547:1 21558:3 21562:1 21570:4 21573:2 21574:1 21577:1 21590:1 21610:1 21620:1 21625:8 21626:1 21634:1 21648:1 21658:1 21663:1 21695:2 21696:1 21699:1 21705:8 21711:2 21712:1 21714:1 21715:5 21719:1 21728:3 21739:1 21741:1 21748:1 21763:1 21764:12 21775:1 21791:1 21835:1 21837:1 21843:1 21845:1 21877:1 21879:2 21881:4 21884:2 21887:1 21895:2 21896:1 21897:1 21898:2 21906:2 21908:2 21915:1 21918:1 21919:1 21923:7 21924:4 21925:1 21930:1 21936:1 21937:1 21939:1 21947:1 21955:1 21975:1 21997:1 22000:1 22015:1 22026:3 22028:1 22047:3 22058:2 22062:1 22066:4 22069:1 22082:2 22086:1 22095:1 22114:1 22128:3 22133:1 22139:1 22143:1 22144:1 22151:1 22161:4 22170:1 22175:2 22179:2 22192:1 22199:1 22214:1 22219:2 22235:1 22242:2 22248:15 22262:2 22267:2 22275:1 22296:1 22310:12 22312:2 22316:1 22321:1 22329:1 22335:1 22338:1 22342:1 22362:1 22365:4 22368:2 22370:1 22379:4 22383:2 22416:1 22418:1 22425:7 22432:1 22439:2 22448:1 22456:3 22457:1 22462:1 22471:1 22475:1 22479:1 22481:1 22490:1 22492:2 22516:1 22533:1 22536:1 22542:1 22543:2 22555:10 22566:3 22582:1 22583:1 22599:3 22640:1 22665:1 22667:1 22671:1 22676:1 22683:1 22688:1 22691:1 22694:36 22709:1 22713:3 22714:3 22717:1 22718:2 22719:1 22721:1 22723:1 22727:1 22752:2 22757:3 22759:1 22760:1 22762:1 22768:3 22770:1 22771:1 22781:1 22805:1 22809:1 22816:1 22838:1 22841:1 22842:6 22852:3 22861:2 22866:1 22871:4 22874:1 22887:1 22899:1 22901:1 22925:1 22938:1 22986:1 22990:3 23000:3 23008:1 23019:1 23060:1 23074:1 23075:1 23079:1 23083:1 23093:1 23095:3 23100:1 23103:1 23108:3 23109:1 23111:1 23113:1 23115:2 23120:1 23147:37 23168:3 23169:1 23176:1 23186:1 23199:1 23202:1 23209:1 23223:1 23227:1 23228:1 23234:1 23235:2 23242:2 23247:6 23252:1 23267:1 23276:1 23283:1 23289:1 23290:1 23305:1 23307:1 23315:1 23321:3 23325:2 23329:1 23336:1 23348:2 23350:1 23358:1 23359:1 23371:1 23379:2 23381:2 23385:1 23408:2 23416:1 23433:1 23460:1 23465:1 23487:1 23490:1 23506:5 23508:1 23509:2 23525:1 23541:1 23543:1 23593:1 23596:1 23610:1 23617:2 23622:1 23630:1 23641:2 23651:2 23664:2 23670:1 23693:1 23699:3 23735:1 23736:1 23740:2 23745:1 23751:1 23752:1 23766:1 23767:3 23772:1 23775:1 23782:1 23785:7 23786:1 23788:1 23802:1 23817:1 23825:1 23832:1 23838:1 23842:1 23846:1 23857:1 23868:1 23884:1 23890:1 23891:1 23895:1 23896:1 23912:1 23913:1 23915:2 23932:1 23941:1 23944:1 23950:1 23956:1 23957:3 23978:1 23982:2 24001:1 24008:2 24013:1 24028:2 24039:1 24065:1 24067:1 24069:7 24075:2 24076:1 24080:2 24092:2 24093:2 24097:3 24105:1 24112:1 24114:1 24140:1 24144:3 24147:1 24150:1 24175:1 24186:10 24191:1 24202:1 24213:1 24217:1 24220:1 24225:2 24232:1 24235:1 24236:1 24251:2 24270:1 24275:1 24286:1 24291:5 24304:1 24326:1 24334:2 24363:1 24366:1 24379:1 24384:1 24388:3 24393:1 24395:1 24414:1 24420:1 24427:2 24435:1 24436:1 24444:1 24450:1 24480:3 24484:2 24492:1 24493:1 24495:3 24499:5 24502:1 24503:1 24505:2 24519:1 24524:1 24536:2 24552:3 24572:1 24576:2 24577:3 24591:1 24594:1 24611:1 24612:2 24614:1 24620:1 24623:2 24626:1 24628:4 24631:1 24641:1 24645:1 24646:1 24653:1 24654:1 24656:1 24661:1 24664:1 24675:1 24676:1 24683:1 24687:1 24689:1 24690:1 24699:1 24704:1 24707:1 24711:1 24757:1 24766:3 24778:1 24779:1 24797:1 24802:3 24803:1 24812:1 24815:1 24838:1 24854:5 24858:2 24859:2 24863:1 24871:2 24872:1 24911:1 24919:1 24922:2 24943:2 24971:1 24974:1 24979:1 25025:1 25030:1 25048:2 25064:1 25069:2 25072:1 25075:2 25077:6 25088:1 25097:6 25100:3 25107:1 25130:1 25132:2 25133:2 25134:1 25163:1 25166:2 25173:2 25181:1 25184:1 25192:2 25198:1 25199:1 25205:2 25208:1 25210:1 25212:1 25215:1 25222:4 25227:1 25233:1 25236:1 25238:1 25245:1 25248:1 25255:1 25271:1 25274:1 25277:4 25279:1 25280:1 25281:2 25283:1 25284:2 25295:1 25306:2 25309:1 25310:1 25313:1 25328:2 25340:1 25351:1 25362:1 25365:1 25378:3 25383:1 25384:1 25387:1 25402:1 25408:1 25413:1 25415:1 25423:2 25439:1 25440:4 25451:4 25454:2 25461:1 25467:1 25473:1 25485:5 25495:1 25499:4 25500:1 25511:2 25516:4 25542:1 25546:5 25552:1 25554:1 25565:1 25573:1 25576:14 25585:2 25599:2 25617:2 25628:1 25636:1 25642:1 25688:1 25693:1 25705:1 25707:1 25710:2 25713:3 25715:1 25718:1 25730:1 25732:2 25740:1 25741:1 25760:3 25766:1 25777:3 25778:1 25803:1 25807:1 25809:1 25812:1 25823:1 25832:1 25844:1 25848:1 25849:1 25850:2 25854:1 25860:1 25861:1 25874:1 25875:1 25876:1 25884:2 25885:1 25895:2 25920:3 25929:1 25933:1 25944:2 25955:1 25956:1 25961:1 25964:1 25966:2 25988:1 25989:1 25994:1 25995:4 25998:2 26005:2 26018:2 26019:1 26022:11 26023:1 26027:1 26035:1 26042:3 26054:1 26061:1 26065:1 26074:1 26088:1 26093:5 26107:1 26113:1 26119:1 26122:1 26125:1 26128:1 26130:1 26145:1 26148:2 26149:1 26156:1 26182:1 26202:2 26209:1 26231:2 26233:1 26239:1 26253:3 26268:1 26272:1 26277:1 26278:1 26283:1 26286:1 26291:1 26333:3 26336:1 26354:1 26356:4 26372:1 26384:1 26399:1 26401:2 26417:1 26428:1 26429:2 26440:2 26450:2 26465:1 26484:1 26489:1 26498:1 26509:1 26510:1 26525:1 26536:1 26542:1 26546:1 26580:1 26588:1 26597:1 26609:2 26616:1 26626:1 26630:2 26632:6 26653:1 26654:3 26657:1 26661:2 26663:1 26675:4 26685:1 26691:1 26692:1 26703:4 26710:1 26712:1 26714:2 26734:1 26742:2 26743:7 26744:1 26746:2 26753:1 26754:1 26757:1 26764:2 26774:1 26778:3 26789:3 26794:2 26796:1 26799:1 26810:1 26813:1 26818:1 26847:1 26851:1 26866:1 26870:2 26875:1 26878:2 26881:1 26884:2 26889:1 26894:1 26897:3 26899:1 26901:1 26911:1 26915:1 26918:5 26923:5 26930:2 26931:2 26932:2 26945:2 26968:1 26970:1 26971:2 26976:1 26979:1 26991:2 26992:1 26994:1 27003:1 27011:1 27035:2 27043:1 27045:1 27054:3 27064:2 27074:1 27082:1 27084:1 27087:1 27096:1 27100:9 27130:1 27131:1 27145:1 27150:1 27157:1 27164:2 27172:1 27173:1 27176:3 27178:1 27188:3 27196:1 27206:1 27224:1 27227:2 27228:1 27229:1 27230:3 27235:1 27236:1 27249:1 27251:5 27252:1 27254:2 27258:3 27262:1 27265:1 27266:2 27269:1 27271:2 27276:3 27287:2 27296:3 27297:1 27299:3 27311:1 27318:1 27320:1 27329:1 27347:8 27353:1 27365:4 27390:1 27392:1 27401:1 27403:1 27405:3 27408:1 27411:3 27418:1 27424:1 27426:1 27427:1 27448:2 27451:2 27466:1 27468:1 27472:1 27502:1 27504:1 27516:2 27540:1 27548:1 27556:1 27558:1 27574:1 27615:1 27620:1 27649:1 27652:1 27658:3 27659:2 27662:2 27663:1 27666:5 27670:3 27673:7 27675:1 27676:1 27680:1 27689:1 27713:1 27718:1 27722:1 27727:3 27732:1 27734:1 27739:1 27745:1 27761:1 27764:1 27771:1 27784:2 27802:2 27808:1 27832:5 27855:1 27858:1 27868:1 27874:2 27885:1 27898:1 27899:1 27908:1 27909:1 27912:1 27928:2 27945:1 27950:1 27953:1 27956:3 27965:1 27969:15 27970:2 27974:1 27978:1 27981:1 27993:1 27999:6 28007:1 28008:6 28032:1 28060:1 28073:1 28076:1 28080:4 28095:1 28105:1 28107:1 28109:2 28117:12 28123:3 28131:1 28134:1 28137:1 28151:2 28152:1 28162:1 28165:14 28170:2 28177:1 28207:1 28212:2 28214:2 28220:1 28222:1 28231:1 28233:1 28243:2 28258:1 28283:1 28296:2 28335:2 28345:1 28363:1 28367:1 28375:1 28388:1 28392:45 28393:1 28413:1 28416:5 28417:2 28422:2 28423:5 28424:2 28425:1 28434:1 28435:1 28457:1 28485:4 28490:13 28491:1 28503:1 28509:1 28512:2 28515:1 28522:1 28529:1 28545:1 28546:2 28555:1 28584:1 28597:1 28610:2 28615:2 28634:2 28635:1 28647:1 28660:1 28664:1 28669:5 28690:2 28701:5 28710:1 28753:3 28758:1 28760:1 28775:1 28782:1 28785:1 28787:2 28796:2 28798:1 28803:2 28804:1 28814:1 28852:1 28854:1 28857:2 28859:2 28865:1 28875:2 28887:1 28894:3 28901:1 28902:1 28903:3 28913:1 28923:1 28927:1 28928:1 28937:1 28940:2 28950:1 28954:1 28959:1 28964:1 28974:1 28976:1 28979:1 28986:1 28988:1 28999:1 29000:10 29001:1 29003:2 29005:3 29024:1 29027:1 29031:3 29042:6 29046:1 29057:4 29062:2 29063:2 29069:2 29073:37 29079:2 29100:2 29117:1 29120:1 29121:1 29128:1 29137:1 29139:1 29141:2 29145:2 29146:2 29147:5 29148:1 29171:1 29176:1 29179:1 29183:1 29184:2 29194:2 29197:2 29201:1 29202:1 29208:1 29215:1 29223:1 29225:2 29236:1 29240:1
2 12:1 13:1 31:2 32:1 36:1 41:1 49:1 52:1 55:1 56:1 59:1 67:1 75:1 85:3 88:1 89:2 91:1 98:1 106:1 113:1 146:2 154:1 160:1 166:2 170:2 174:2 176:1 180:1 184:1 193:1 196:1 199:1 209:1 213:2 223:1 227:1 228:1 241:1 249:2 252:1 265:3 271:5 272:1 276:2 286:2 287:1 291:1 292:2 322:2 329:1 358:1 359:4 375:1 376:2 380:1 384:1 385:1 388:1 391:1 392:1 395:1 415:2 425:2 429:2 441:1 446:2 452:1 460:1 462:1 469:1 471:2 479:2 490:2 500:1 501:4 505:1 509:1 515:1 519:1 536:2 544:1 552:1 553:1 562:1 564:1 565:1 571:1 593:1 607:3 613:2 618:2 620:1 623:1 632:1 637:1 644:6 658:38 661:1 663:4 667:1 670:1 671:1 682:1 686:1 696:1 699:3 702:3 714:1 719:2 725:1 728:2 735:2 745:3 749:1 783:2 809:1 813:2 815:1 817:3 820:2 822:1 823:2 824:3 838:1 857:1 861:3 868:1 876:3 882:1 885:1 894:1 904:3 905:7 907:3 908:1 917:5 930:1 937:5 943:1 951:2 957:4 960:10 964:1 965:3 970:1 976:2 980:2 982:3 999:2 1003:1 1006:2 1016:3 1027:1 1029:3 1032:1 1036:1 1048:2 1050:1 1055:4 1056:1 1058:1 1091:1 1098:2 1099:1 1100:1 1107:1 1112:1 1137:1 1146:1 1158:1 1160:3 1173:1 1187:1 1190:1 1211:1 1214:37 1220:2 1223:2 1224:2 1227:1 1229:4 1232:1 1245:1 1256:2 1258:2 1260:2 1266:1 1270:1 1275:1 1277:1 1279:4 1280:2 1281:1 1288:1 1290:1 1291:1 1295:1 1298:1 1302:1 1314:1 1316:2 1338:2 1354:2 1356:2 1357:1 1380:4 1390:1 1393:1 1395:1 1397:1 1402:2 1404:11 1420:1 1430:1 1444:1 1452:3 1459:1 1462:2 1475:1 1481:1 1493:1 1499:1 1501:1 1502:4 1506:2 1510:17 1512:1 1516:1 1517:1 1528:1 1530:1 1532:1 1540:1 1546:2 1548:1 1550:1 1575:1 1576:3 1582:2 1598:1 1602:6 1615:1 1616:1 1631:1 1636:1 1637:2 1639:1 1647:3 1650:1 1666:1 1672:1 1676:1 1677:11 1685:1 1687:1 1690:1 1691:2 1705:1 1720:1 1728:1 1740:2 1741:1 1745:3 1757:1 1760:1 1762:1 1776:1 1778:1 1779:1 1783:1 1787:1 1795:1 1820:1 1827:1 1833:1 1838:1 1840:1 1842:1 1853:1 1866:1 1870:3 1871:2 1877:1 1878:1 1892:1 1895:1 1897:1 1898:3 1901:1 1907:1 1913:1 1918:2 1921:3 1930:1 1937:1 1941:2 1947:2 1957:2 1959:1 1973:1 1976:1 1977:1 1980:1 1982:1 1986:1 1988:1 1992:1 1993:2 2001:1 2008:1 2022:8 2042:1 2045:1 2048:1 2051:2 2053:1 2076:1 2077:1 2085:1 2094:2 2108:1 2115:1 2117:1 2118:2 2121:1 2123:1 2125:1 2127:1 2140:1 2144:1 2145:1 2153:1 2157:2 2158:1 2159:1 2161:1 2172:1 2176:1 2181:1 2186:1 2196:10 2217:1 2235:3 2238:1 2239:1 2265:1 2269:2 2291:1 2299:1 2325:1 2329:1 2333:1 2334:2 2335:2 2336:4 2337:3 2338:2 2339:3 2341:1 2342:5 2343:1 2347:9 2349:5 2352:7 2356:5 2359:1 2360:3 2362:1 2364:1 2367:1 2369:4 2372:4 2375:1 2376:1 2379:1 2382:1 2383:1 2405:1 2406:1 2412:1 2421:3 2422:1 2430:5 2433:1 2439:1 2457:2 2460:1 2478:2 2479:1 2482:1 2485:1 2487:1 2492:1 2494:4 2495:4 2500:1 2503:4 2513:2 2514:4 2522:4 2523:1 2531:1 2533:1 2539:1 2550:4 2562:1 2563:1 2564:1 2571:1 2596:1 2603:2 2604:2 2610:1 2616:1 2624:1 2639:1 2643:1 2646:2 2660:1 2663:1 2674:2 2680:1 2681:1 2730:1 2735:1 2736:2 2745:1 2751:2 2758:3 2766:1 2767:2 2773:1 2775:1 2777:1 2785:3 2787:1 2791:4 2804:1 2809:1 2812:3 2813:4 2819:1 2822:3 2826:1 2833:1 2839:1 2841:1 2872:3 2877:1 2881:5 2883:5 2886:1 2889:1 2892:4 2901:2 2904:1 2915:1 2937:2 2940:1 2948:1 2949:2 2954:1 2956:2 2963:1 2982:17 2984:38 2986:1 2990:1 2991:3 2998:2 3002:2 3005:1 3014:1 3018:2 3019:1 3023:4 3024:1 3029:1 3032:1 3039:8 3049:1 3053:4 3057:2 3061:1 3067:1 3070:1 3091:2 3097:1 3100:1 3101:1 3127:2 3133:3 3139:1 3142:1 3169:3 3196:2 3219:1 3226:1 3261:1 3267:1 3278:4 3281:1 3293:1 3297:1 3301:1 3316:2 3337:2 3340:1 3341:2 3351:1 3354:3 3360:1 3368:3 3380:1 3387:2 3393:1 3399:1 3401:4 3419:2 3445:1 3482:1 3486:1 3502:1 3506:1 3521:2 3525:1 3527:1 3536:1 3540:1 3541:1 3550:1 3552:1 3556:2 3564:1 3569:1 3574:1 3601:1 3604:1 3606:1 3612:1 3617:1 3627:1 3628:1 3632:1 3642:1 3645:1 3666:2 3677:1 3684:1 3690:1 3697:1 3704:1 3715:1 3734:1 3758:1 3773:3 3774:2 3775:1 3779:2 3782:2 3797:1 3798:1 3823:1 3831:3 3833:1 3861:1 3867:1 3868:2 3872:2 3877:1 3882:1 3884:3 3886:1 3902:1 3907:2 3909:2 3915:2 3936:1 3938:1 3940:1 3946:3 3960:1 3963:1 3964:1 3968:1 3985:1 3990:37 3991:2 3998:1 4007:2 4012:1 4020:1 4049:1 4052:1 4053:1 4056:1 4066:1 4071:1 4072:2 4079:4 4081:6 4096:2 4102:2 4108:1 4113:6 4117:7 4118:2 4131:1 4132:2 4133:1 4148:1 4169:1 4171:1 4182:1 4192:1 4195:1 4196:2 4208:3 4216:1 4225:1 4231:1 4258:1 4260:1 4262:2 4264:2 4267:1 4269:1 4272:1 4277:1 4283:1 4293:1 4304:1 4307:1 4309:2 4310:1 4312:4 4317:1 4319:3 4331:1 4357:1 4370:1 4372:1 4376:3 4402:1 4405:2 4407:1 4409:1 4412:1 4415:2 4424:1 4432:2 4434:37 4435:1 4443:2 4446:1 4448:1 4452:5 4462:1 4466:1 4475:1 4477:1 4479:1 4499:1 4527:2 4535:6 4550:1 4553:1 4554:1 4557:1 4564:1 4580:1 4590:3 4604:2 4609:3 4610:1 4618:2 4622:2 4623:1 4626:1 4629:1 4648:1 4668:8 4676:2 4698:2 4717:1 4740:1 4744:1 4752:1 4774:6 4790:4 4796:1 4811:1 4812:1 4818:6 4826:1 4839:1 4854:1 4863:1 4867:1 4870:1 4883:1 4898:1 4902:5 4903:2 4908:2 4909:1 4913:1 4916:1 4920:4 4931:1 4942:1 4943:3 4954:1 4974:1 4976:1 4977:1 4983:1 4997:3 4998:2 5012:20 5013:2 5022:2 5025:1 5046:8 5053:2 5063:2 5074:1 5087:2 5089:1 5091:1 5106:1 5138:4 5140:1 5143:5 5149:1 5159:4 5160:5 5161:2 5164:1 5167:6 5173:1 5174:2 5175:4 5176:1 5183:1 5190:2 5192:5 5193:1 5194:4 5195:1 5205:1 5214:1 5230:1 5264:1 5267:1 5268:2 5273:1 5283:1 5300:1 5314:1 5324:1 5342:1 5361:1 5389:1 5403:1 5406:1 5427:1 5430:1 5438:1 5439:2 5440:1 5462:1 5482:1 5485:1 5486:1 5495:2 5496:2 5520:1 5533:1 5534:3 5549:2 5574:1 5577:2 5579:1 5583:1 5603:1 5606:1 5613:2 5624:1 5626:1 5630:3 5634:1 5690:1 5699:1 5700:1 5707:1 5712:1 5713:1 5716:1 5723:2 5724:1 5726:1 5729:2 5740:1 5741:1 5742:1 5762:2 5774:1 5776:1 5780:11 5784:1 5790:2 5792:1 5794:1 5800:1 5802:2 5807:1 5822:2 5833:2 5839:1 5841:1 5853:2 5860:2 5880:1 5889:1 5896:1 5908:2 5921:1 5924:1 5926:2 5939:2 5968:3 5992:1 6005:1 6017:1 6019:1 6027:1 6034:1 6042:1 6043:1 6063:1 6064:1 6065:2 6076:3 6079:1 6092:1 6097:1 6118:1 6121:1 6143:1 6149:1 6151:2 6157:1 6168:2 6176:2 6182:3 6187:1 6195:1 6198:1 6203:1 6207:2 6208:5 6211:1 6212:1 6217:1 6220:1 6221:1 6222:1 6227:1 6242:1 6247:1 6255:1 6276:1 6281:1 6294:2 6295:2 6296:1 6301:1 6302:1 6304:1 6307:2 6308:1 6311:1 6312:1 6313:1 6315:3 6317:1 6320:2 6322:2 6324:2 6325:3 6326:1 6330:1 6345:1 6356:2 6388:5 6391:2 6399:1 6408:4 6410:2 6416:1 6428:3 6436:1 6437:1 6448:1 6456:1 6479:2 6486:1 6500:1 6507:1 6510:1 6523:9 6527:1 6528:1 6533:2 6534:5 6536:2 6538:1 6539:1 6540:2 6541:1 6543:5 6545:4 6546:1 6547:1 6550:4 6552:9 6553:1 6554:2 6560:1 6563:1 6581:1 6595:1 6599:1 6600:2 6601:1 6615:1 6619:1 6629:1 6637:1 6657:1 6666:2 6667:1 6674:3 6679:3 6694:1 6702:3 6717:1 6720:1 6736:1 6744:1 6746:1 6747:1 6749:1 6755:1 6762:1 6763:1 6769:1 6772:1 6776:1 6785:1 6792:1 6795:2 6796:1 6809:1 6810:2 6820:1 6831:2 6850:1 6853:1 6866:1 6872:1 6892:1 6899:1 6901:1 6904:1 6908:3 6927:3 6939:1 6944:1 6960:2 6962:1 6967:1 6974:1 6991:1 6997:2 7025:1 7030:1 7040:1 7059:1 7063:2 7077:1 7083:2 7101:1 7102:1 7114:1 7117:1 7130:1 7177:1 7178:1 7180:1 7184:1 7187:1 7192:5 7203:1 7205:1 7212:1 7217:6 7264:1 7269:1 7271:1 7277:1 7283:1 7287:2 7289:1 7295:1 7301:2 7319:1 7332:2 7346:1 7351:1 7369:3 7375:1 7398:1 7406:1 7409:2 7412:1 7413:2 7417:1 7423:1 7428:1 7431:1 7435:1 7437:1 7442:1 7447:1 7474:1 7476:1 7485:1 7495:1 7496:2 7508:1 7516:1 7522:1 7540:1 7543:2 7562:1 7563:1 7571:1 7574:1 7582:1 7593:1 7596:6 7629:9 7632:1 7636:1 7663:1 7664:2 7673:1 7679:1 7693:2 7707:1 7716:1 7718:1 7722:1 7725:1 7748:4 7749:1 7752:1 7779:1 7787:1 7803:3 7815:13 7816:13 7821:1 7832:1 7833:1 7834:1 7835:5 7837:1 7864:4 7868:4 7871:1 7878:57 7882:1 7883:1 7886:2 7890:1 7891:1 7897:19 7900:6 7903:1 7907:1 7908:1 7911:1 7932:1 7933:4 7936:2 7941:2 7949:1 7957:1 7974:1 7985:6 7986:1 7996:2 8002:1 8013:1 8014:1 8037:1 8039:2 8054:3 8063:1 8065:1 8071:1 8075:4 8077:1 8083:1 8087:1 8105:1 8109:6 8119:1 8122:1 8129:1 8159:1 8162:2 8176:2 8189:1 8196:1 8249:1 8253:1 8286:1 8290:1 8300:1 8307:1 8312:3 8316:1 8348:2 8351:1 8352:1 8364:1 8376:1 8377:37 8383:1 8384:1 8392:1 8394:1 8396:1 8402:1 8410:18 8411:4 8426:1 8428:2 8441:1 8443:1 8445:1 8447:1 8449:2 8462:1 8466:1 8475:1 8480:1 8492:46 8499:1 8501:1 8531:2 8537:1 8554:1 8561:1 8588:2 8596:1 8598:1 8605:1 8608:1 8645:1 8657:1 8659:2 8667:1 8671:1 8674:2 8677:1 8680:1 8683:1 8687:1 8693:5 8694:1 8713:1 8720:1 8725:2 8737:1 8745:3 8746:1 8749:1 8750:1 8760:2 8762:1 8763:2 8766:1 8768:1 8778:2 8779:2 8782:1 8783:1 8792:1 8797:1 8812:1 8813:1 8822:1 8832:1 8836:1 8841:1 8845:1 8850:2 8859:1 8862:4 8883:1 8915:1 8923:1 8926:1 8928:1 8931:3 8987:3 8989:1 8991:1 9014:2 9019:1 9039:1 9052:1 9057:2 9059:1 9061:1 9063:1 9066:1 9067:1 9069:2 9086:1 9090:4 9106:1 9110:1 9111:1 9112:4 9118:1 9129:3 9138:1 9139:1 9140:1 9184:1 9191:3 9196:1 9199:2 9204:2 9236:1 9238:6 9247:5 9256:1 9258:1 9264:2 9300:1 9320:4 9343:3 9344:1 9354:1 9377:1 9378:4 9382:2 9384:1 9391:5 9393:3 9394:1 9396:1 9400:1 9404:2 9406:2 9408:2 9415:1 9421:1 9428:1 9429:1 9432:1 9435:1 9442:1 9444:1 9445:1 9446:1 9447:2 9448:1 9449:1 9456:1 9466:1 9472:1 9473:3 9483:8 9487:2 9490:2 9496:2 9504:1 9506:1 9521:3 9525:1 9534:1 9543:1 9546:2 9558:1 9563:3 9564:2 9571:1 9580:1 9592:1 9597:1 9600:1 9607:1 9610:1 9611:2 9616:2 9619:2 9622:1 9623:1 9624:1 9627:1 9628:2 9637:1 9641:1 9642:1 9651:1 9653:1 9658:2 9660:1 9661:11 9675:1 9677:2 9678:12 9681:1 9689:1 9694:1 9698:1 9701:3 9703:1 9706:1 9715:1 9717:1 9719:3 9720:1 9721:1 9723:1 9726:1 9738:1 9751:1 9752:1 9763:1 9773:1 9779:1 9782:1 9795:1 9797:2 9802:1 9803:1 9804:2 9805:1 9813:1 9820:1 9828:1 9829:1 9841:1 9855:1 9856:1 9860:1 9887:1 9905:6 9914:1 9915:1 9916:1 9920:1 9921:3 9924:4 9927:1 9934:1 9936:1 9938:1 9960:1 9961:1 9962:1 9974:1 9987:1 10003:2 10016:1 10028:1 10029:1 10046:37 10050:1 10053:1 10055:1 10061:1 10069:1 10077:1 10083:2 10092:1 10097:1 10098:1 10102:1 10115:1 10117:1 10122:2 10131:2 10134:1 10138:1 10144:1 10166:1 10170:5 10174:1 10177:3 10184:1 10188:2 10195:2 10220:1 10229:1 10233:1 10242:2 10243:2 10252:2 10255:1 10260:1 10261:2 10266:2 10268:2 10280:5 10284:5 10292:1 10297:3 10299:1 10322:5 10336:1 10337:1 10339:2 10350:1 10359:1 10362:1 10369:1 10381:1 10383:3 10388:1 10393:1 10402:1 10404:1 10405:1 10417:1 10425:1 10426:7 10440:1 10464:1 10497:1 10518:2 10522:1 10526:1 10527:1 10542:5 10555:1 10564:2 10573:1 10575:2 10576:2 10582:1 10594:1 10604:1 10609:1 10619:1 10623:2 10624:8 10632:1 10641:1 10664:3 10681:1 10691:1 10705:1 10707:1 10725:1 10740:5 10745:1 10758:1 10760:5 10761:1 10770:1 10773:1 10786:2 10820:3 10834:1 10840:1 10842:2 10859:1 10860:5 10864:2 10867:8 10874:1 10882:1 10894:1 10899:1 10907:2 10912:1 10914:1 10922:1 10923:2 10926:1 10929:7 10934:1 10942:1 10947:1 10955:2 10956:1 10963:1 10976:2 10980:1 10990:1 11004:1 11005:1 11036:1 11065:1 11066:11 11082:1 11083:1 11086:1 11089:1 11098:3 11100:1 11108:1 11111:3 11114:3 11117:3 11124:1 11131:1 11143:5 11148:1 11152:1 11158:1 11164:1 11167:2 11170:2 11176:1 11178:1 11185:1 11195:1 11197:9 11199:1 11200:1 11203:1 11215:1 11217:3 11219:4 11220:1 11231:2 11234:2 11237:1 11246:1 11264:1 11266:1 11276:6 11279:1 11281:1 11283:1 11285:1 11286:1 11293:2 11300:1 11303:2 11311:1 11320:1 11333:1 11347:3 11350:1 11372:1 11373:1 11375:1 11383:1 11385:1 11390:1 11400:1 11404:3 11407:1 11437:2 11455:1 11456:2 11464:2 11465:1 11466:1 11474:1 11475:1 11476:4 11477:1 11480:1 11483:2 11484:1 11487:1 11490:1 11502:2 11503:5 11505:1 11508:1 11510:1 11511:1 11518:1 11532:1 11535:3 11538:1 11552:1 11568:1 11571:5 11591:1 11606:1 11607:1 11609:2 11613:1 11614:1 11617:1 11622:1 11627:1 11629:1 11636:10 11648:2 11649:2 11674:1 11679:1 11694:1 11695:1 11699:1 11702:1 11714:1 11732:2 11744:1 11746:2 11750:2 11770:1 11775:6 11797:1 11800:1 11803:1 11809:1 11812:3 11824:1 11825:1 11827:2 11829:1 11834:1 11838:1 11839:6 11840:5 11845:2 11848:1 11851:5 11854:1 11871:1 11878:1 11881:2 11891:1 11895:2 11899:1 11900:9 11904:1 11907:1 11916:1 11930:1 11931:1 11936:2 11940:1 11949:1 11955:1 11979:1 11992:3 11995:1 11996:1 12003:4 12011:1 12039:1 12043:3 12054:1 12083:1 12089:1 12090:1 12092:1 12109:1 12110:1 12139:1 12140:1 12142:1 12154:1 12163:2 12164:1 12179:1 12193:1 12223:1 12224:1 12235:1 12240:3 12243:1 12261:4 12277:1 12281:1 12283:1 12289:2 12311:1 12322:1 12329:1 12330:1 12332:2 12337:2 12338:1 12339:3 12344:6 12345:1 12348:1 12354:1 12364:1 12372:1 12376:1 12383:1 12385:1 12406:1 12421:1 12431:1 12444:1 12455:1 12460:3 12461:5 12470:1 12478:1 12483:1 12505:1 12510:1 12513:2 12522:1 12532:2 12555:1 12563:1 12575:1 12588:1 12597:3 12599:1 12606:1 12612:1 12613:1 12632:1 12633:1 12635:1 12648:1 12650:1 12657:1 12664:1 12666:1 12722:1 12723:1 12733:1 12742:1 12746:1 12763:1 12767:1 12790:3 12792:38 12797:1 12800:1 12809:1 12813:5 12815:1 12821:1 12859:6 12873:1 12884:2 12888:1 12892:1 12902:1 12916:1 12922:1 12927:1 12932:1 12935:1 12964:2 12967:1 12969:2 12980:1 13001:1 13008:1 13009:1 13020:1 13024:2 13027:1 13032:1 13038:1 13045:1 13086:1 13095:1 13100:3 13111:1 13116:1 13132:1 13141:2 13145:1 13163:1 13174:1 13180:1 13182:1 13183:1 13193:1 13195:1 13217:1 13229:1 13238:1 13239:1 13257:1 13259:1 13262:1 13265:1 13268:1 13269:1 13280:1 13286:13 13291:4 13294:3 13306:1 13307:1 13313:2 13326:1 13339:1 13340:1 13384:1 13389:1 13400:1 13412:1 13417:1 13418:1 13419:2 13424:2 13427:6 13430:6 13437:1 13462:1 13464:1 13480:1 13482:1 13491:14 13495:1 13502:1 13532:1 13541:1 13563:1 13584:1 13585:2 13595:1 13626:1 13629:1 13639:3 13641:4 13647:3 13665:1 13673:1 13675:2 13676:1 13680:1 13688:1 13695:2 13700:2 13705:1 13707:1 13713:1 13716:1 13717:1 13729:3 13732:1 13747:1 13766:1 13770:2 13772:3 13773:1 13775:1 13777:1 13780:1 13782:13 13783:1 13784:1 13786:2 13804:1 13805:2 13806:1 13807:1 13808:1 13809:1 13812:1 13814:6 13818:1 13821:1 13826:1 13827:2 13859:1 13868:1 13869:1 13873:1 13889:1 13901:1 13910:1 13928:1 13933:1 13935:1 13939:1 13941:2 13951:10 13953:1 13955:2 13963:1 13974:1 13980:1 13988:1 13991:1 13998:1 14001:1 14012:1 14028:1 14030:2 14038:5 14052:1 14055:1 14057:3 14059:1 14069:14 14072:8 14096:1 14107:1 14116:1 14147:2 14154:1 14156:5 14166:2 14177:4 14179:1 14202:1 14229:1 14232:1 14241:1 14256:1 14259:1 14261:3 14273:1 14275:2 14278:1 14290:1 14299:1 14308:2 14314:1 14323:1 14329:1 14355:1 14361:4 14393:1 14398:1 14420:1 14422:1 14426:1 14440:3 14449:2 14451:1 14454:1 14460:2 14465:2 14466:2 14468:3 14471:1 14480:1 14485:2 14486:1 14497:1 14498:2 14506:2 14516:1 14541:1 14555:1 14557:1 14559:1 14560:2 14564:1 14574:1 14575:2 14576:1 14578:1 14590:2 14592:2 14607:1 14612:1 14613:2 14615:1 14617:2 14621:1 14622:1 14623:1 14625:1 14626:1 14627:1 14629:1 14634:1 14638:1 14641:1 14643:2 14652:1 14653:1 14657:2 14659:1 14664:1 14670:2 14671:1 14684:1 14688:1 14699:38 14700:1 14705:3 14708:1 14709:1 14714:1 14721:1 14728:1 14736:2 14747:1 14786:1 14789:1 14792:5 14793:1 14800:1 14801:1 14806:2 14827:1 14832:1 14847:3 14850:1 14852:1 14863:1 14869:1 14870:1 14887:6 14890:1 14900:1 14902:1 14906:1 14939:1 14941:1 14944:1 14979:1 14993:2 15000:2 15001:2 15003:1 15010:1 15016:1 15031:1 15040:1 15054:1 15060:1 15069:1 15070:2 15072:2 15080:1 15087:1 15100:1 15104:2 15105:1 15106:1 15109:7 15113:1 15169:1 15174:1 15175:1 15188:1 15193:4 15194:1 15197:1 15204:1 15208:1 15218:1 15223:1 15237:2 15238:1 15245:2 15247:3 15257:1 15258:1 15267:1 15278:2 15299:1 15306:1 15315:1 15319:1 15322:2 15340:2 15341:1 15379:3 15380:1 15386:1 15396:1 15408:1 15409:3 15432:1 15433:1 15452:1 15458:1 15462:2 15465:1 15478:1 15482:2 15484:1 15488:1 15491:1 15506:2 15521:1 15526:1 15536:1 15542:1 15555:1 15556:3 15557:4 15566:1 15584:1 15590:2 15608:7 15610:1 15612:1 15616:2 15619:2 15633:1 15653:1 15674:1 15678:1 15690:1 15693:1 15718:1 15722:1 15723:1 15730:1 15738:1 15741:1 15742:4 15745:1 15755:1 15757:1 15762:4 15778:1 15779:1 15782:1 15783:1 15792:1 15795:1 15796:5 15802:3 15805:2 15818:4 15819:1 15823:1 15827:1 15828:1 15835:3 15844:1 15888:1 15890:1 15897:5 15899:2 15921:4 15923:2 15931:1 15944:1 15946:1 15951:1 15960:1 15961:3 15971:1 15973:5 15988:1 16006:1 16020:1 16023:1 16025:1 16031:1 16038:1 16051:1 16057:1 16060:15 16062:2 16063:1 16067:1 16096:4 16098:3 16100:1 16105:2 16116:1 16133:2 16137:1 16139:3 16140:2 16142:1 16143:2 16165:12 16178:1 16183:1 16185:1 16186:1 16193:1 16200:4 16203:1 16239:2 16250:1 16252:1 16254:1 16262:1 16264:1 16270:1 16271:3 16279:1 16285:4 16286:2 16287:1 16291:4 16292:2 16298:1 16299:4 16300:1 16301:2 16304:1 16321:1 16333:2 16357:2 16380:1 16381:1 16387:1 16392:1 16404:1 16413:1 16416:1 16418:1 16419:1 16440:1 16448:1 16452:1 16455:1 16457:1 16468:2 16476:1 16484:2 16510:1 16522:1 16523:1 16524:2 16527:1 16579:1 16590:2 16604:2 16613:1 16617:1 16631:4 16634:1 16644:2 16646:11 16647:1 16649:1 16658:1 16679:1 16687:1 16689:1 16692:1 16712:2 16714:3 16717:1 16723:1 16724:1 16725:2 16749:1 16751:1 16757:1 16766:1 16769:1 16773:3 16776:1 16782:2 16797:2 16800:3 16810:1 16811:2 16822:1 16878:1 16881:1 16899:1 16912:2 16916:1 16922:1 16926:50 16932:1 16933:3 16934:1 16944:1 16949:1 16951:1 16963:1 16966:1 16967:4 16998:1 17020:1 17028:1 17030:1 17038:1 17042:1 17047:1 17060:1 17068:3 17072:2 17083:1 17088:1 17099:1 17103:2 17132:1 17138:1 17143:1 17144:1 17160:1 17166:2 17169:1 17181:1 17184:1 17199:1 17207:1 17208:1 17213:1 17234:1 17236:2 17240:2 17241:1 17243:1 17250:1 17255:1 17266:1 17281:1 17284:1 17329:1 17332:1 17346:1 17356:1 17359:1 17361:2 17363:1 17372:1 17375:2 17380:1 17383:1 17384:1 17388:1 17393:2 17395:1 17406:1 17424:2 17436:1 17440:1 17443:2 17447:2 17449:1 17450:1 17452:1 17455:1 17457:1 17459:2 17465:2 17475:1 17484:1 17490:1 17512:1 17535:2 17541:1 17545:1 17549:2 17555:2 17560:1 17579:1 17580:1 17593:1 17604:1 17609:1 17620:1 17623:1 17631:1 17632:4 17634:1 17637:2 17639:1 17645:1 17649:1 17662:1 17664:1 17671:2 17672:2 17683:1 17689:1 17692:1 17711:2 17717:1 17727:3 17731:2 17758:4 17759:1 17766:5 17776:1 17787:4 17788:1 17796:1 17812:1 17817:1 17844:2 17855:8 17859:1 17860:2 17884:3 17891:1 17909:2 17926:1 17929:2 17930:1 17936:2 17937:1 17945:1 17964:1 17980:1 17986:2 18012:1 18013:4 18017:2 18018:2 18019:1 18026:1 18030:1 18035:1 18041:1 18055:2 18058:2 18076:1 18098:1 18100:2 18104:1 18123:1 18141:1 18142:1 18146:5 18156:1 18204:1 18206:2 18210:1 18223:1 18234:2 18245:1 18258:1 18265:1 18269:1 18300:10 18310:2 18316:1 18332:1 18340:2 18370:1 18374:1 18377:4 18384:1 18393:1 18395:1 18401:1 18402:1 18417:1 18419:1 18422:1 18431:2 18447:2 18450:1 18456:1 18462:1 18492:1 18499:1 18504:1 18507:1 18516:2732 18527:2 18531:1 18538:2 18551:1 18555:1 18566:1 18581:1 18583:1 18587:1 18589:1 18595:1 18597:1 18604:1 18619:1 18626:1 18638:3 18648:1 18651:3 18653:1 18659:1 18678:1 18680:1 18691:1 18702:1 18707:1 18709:1 18712:2 18724:2 18732:1 18760:1 18771:1 18775:1 18780:2 18781:1 18787:1 18802:1 18832:1 18837:1 18850:2 18858:1 18859:1 18863:1 18864:1 18894:2 18901:1 18902:1 18933:1 18952:1 18960:1 18969:1 18976:2 18978:1 18982:1 18986:1 19000:1 19003:1 19013:1 19014:3 19016:2 19034:1 19037:1 19051:1 19061:1 19083:1 19085:6 19116:5 19120:1 19128:1 19131:2 19137:2 19174:1 19175:1 19178:1 19184:1 19189:1 19192:1 19198:1 19219:1 19223:1 19230:2 19239:1 19245:1 19253:1 19257:1 19259:1 19268:1 19276:1 19282:8 19283:4 19290:1 19315:1 19318:5 19333:1 19342:2 19346:1 19362:1 19377:23 19384:1 19399:2 19409:1 19420:2 19421:1 19426:1 19427:1 19428:1 19429:2 19447:1 19451:4 19452:1 19453:1 19454:2 19461:2 19469:1 19477:1 19481:2 19490:3 19491:1 19500:1 19509:1 19513:1 19530:2 19558:1 19561:1 19573:1 19574:2 19576:1 19580:1 19584:4 19589:2 19603:1 19609:3 19611:1 19635:1 19638:1 19641:1 19653:2 19656:1 19658:1 19663:1 19678:2 19685:1 19692:1 19697:2 19709:1 19713:2 19715:1 19726:1 19728:1 19732:1 19737:4 19757:1 19768:1 19790:1 19793:1 19813:1 19819:1 19820:3 19822:2 19823:1 19829:1 19835:1 19847:1 19851:2 19861:1 19866:2 19881:1 19896:1 19927:4 19929:8 19937:1 19940:1 19945:1 19947:1 19950:1 19957:1 19962:1 19972:2 19986:1 19992:2 19995:2 20000:1 20001:3 20002:7 20005:1 20021:1 20027:1 20029:2 20030:6 20031:1 20033:1 20042:1 20043:1 20051:5 20079:3 20099:2 20103:1 20109:3 20117:1 20121:1 20123:6 20131:1 20132:1 20144:3 20149:1 20156:1 20162:2 20185:1 20199:1 20208:1 20211:5 20223:2 20244:1 20258:1 20259:1 20268:1 20275:1 20285:1 20291:1 20293:1 20311:1 20338:1 20365:2 20375:1 20387:1 20390:1 20401:1 20408:1 20451:6 20455:1 20460:2 20462:1 20483:1 20484:2 20495:1 20499:2 20500:1 20513:3 20525:1 20541:1 20555:1 20578:1 20591:1 20601:1 20602:3 20605:1 20623:1 20630:2 20649:1 20653:1 20661:3 20664:2 20668:1 20674:1 20684:1 20691:2 20692:3 20697:1 20699:1 20702:2 20703:1 20704:2 20711:1 20718:2 20720:1 20725:1 20733:1 20748:1 20754:1 20762:2 20764:2 20767:1 20773:3 20787:1 20788:1 20789:1 20798:1 20799:1 20808:2 20810:2 20828:1 20829:1 20833:1 20837:1 20840:2 20842:2 20848:1 20853:4 20862:2 20863:1 20866:1 20869:3 20870:2 20878:2 20886:1 20892:5 20899:1 20918:1 20925:1 20940:1 20942:5 20945:1 20953:2 20958:1 20994:1 20996:1 21001:2 21004:3 21018:1 21021:1 21026:1 21037:2 21057:1 21061:1 21063:1 21071:2 21078:1 21087:1 21106:1 21114:1 21122:1 21127:1 21132:1 21137:1 21146:1 21151:1 21153:1 21155:1 21171:1 21185:1 21190:1 21196:1 21202:2 21204:1 21206:5 21219:2 21228:1 21233:1 21237:3 21257:1 21265:1 21271:2 21276:1 21285:1 21286:1 21289:1 21306:1 21308:1 21310:1 21311:1 21313:4 21317:1 21329:1 21332:2 21341:1 21351:2 21353:1 21359:1 21361:1 21362:1 21363:1 21364:2 21369:2 21374:1 21382:2 21397:1 21398:1 21410:1 21411:1 21414:1 21415:2 21420:1 21436:1 21442:1 21449:2 21451:1 21455:3 21464:4 21471:1 21473:1 21475:1 21476:1 21492:2 21493:2 21506:1 21508:4 21517:1 21518:1 21530:1 21535:1 21543:1 21544:1 21545:1 21547:1 21558:3 21562:1 21570:4 21573:2 21574:1 21577:1 21590:1 21601:1 21610:1 21620:1 21625:8 21626:1 21634:1 21648:1 21650:1 21658:1 21663:1 21695:2 21696:1 21699:1 21705:8 21711:2 21712:1 21714:1 21715:5 21719:1 21728:3 21739:1 21741:1 21748:1 21763:1 21764:12 21775:1 21791:1 21835:1 21837:1 21843:1 21845:1 21877:1 21879:2 21881:4 21884:2 21887:1 21895:2 21896:1 21897:1 21898:2 21906:2 21908:2 21915:1 21918:1 21919:1 21923:7 21924:4 21925:1 21930:1 21934:1 21936:1 21937:1 21939:1 21947:1 21955:1 21975:1 21997:1 22000:1 22015:1 22026:3 22028:1 22047:3 22058:2 22062:1 22066:4 22069:1 22082:2 22086:1 22093:1 22095:1 22114:1 22128:3 22133:1 22139:1 22143:1 22144:1 22151:1 22161:4 22170:1 22175:2 22179:2 22192:1 22199:1 22214:1 22219:2 22235:1 22242:2 22248:16 22262:2 22267:2 22275:1 22296:1 22310:13 22312:2 22316:1 22321:1 22329:1 22334:1 22335:1 22338:1 22342:1 22362:1 22365:4 22368:2 22370:1 22379:4 22383:2 22416:1 22418:1 22425:7 22432:1 22439:2 22448:1 22456:4 22457:1 22462:1 22471:1 22475:1 22479:1 22481:1 22490:1 22492:2 22516:1 22533:1 22536:1 22542:1 22543:2 22555:10 22566:3 22582:1 22583:1 22599:3 22640:1 22647:1 22665:1 22667:1 22671:1 22676:2 22683:1 22688:1 22691:1 22694:37 22709:1 22713:3 22714:3 22717:1 22718:2 22719:1 22721:1 22723:1 22727:1 22752:2 22757:3 22759:1 22760:1 22762:1 22768:3 22770:1 22771:1 22781:1 22805:1 22809:1 22816:1 22838:1 22841:1 22842:6 22852:3 22861:2 22866:1 22871:4 22874:1 22887:1 22899:1 22901:1 22925:1 22938:1 22986:1 22990:3 23000:3 23008:1 23019:1 23060:1 23074:1 23075:1 23079:1 23083:1 23093:1 23095:3 23100:1 23103:1 23108:3 23109:1 23111:1 23113:1 23115:2 23120:1 23147:38 23168:3 23169:2 23176:1 23186:1 23199:1 23202:1 23209:1 23223:1 23227:1 23228:1 23234:1 23235:2 23242:2 23247:6 23252:1 23267:1 23276:1 23283:1 23289:1 23290:1 23294:1 23305:1 23307:1 23315:1 23321:3 23325:2 23329:1 23336:1 23348:2 23350:1 23358:1 23359:1 23371:1 23379:2 23381:3 23385:1 23408:2 23416:1 23433:1 23460:1 23465:1 23487:1 23490:2 23506:5 23508:1 23509:2 23525:1 23541:1 23543:1 23593:1 23596:1 23610:1 23617:2 23622:1 23630:1 23641:2 23651:2 23664:2 23670:1 23693:1 23699:3 23735:1 23736:1 23740:2 23745:1 23751:1 23752:1 23766:1 23767:3 23772:1 23775:1 23782:1 23785:7 23786:1 23788:1 23802:1 23817:1 23825:1 23832:1 23838:1 23842:1 23846:1 23857:1 23868:1 23884:1 23890:1 23891:1 23895:1 23896:1 23912:1 23913:1 23915:2 23932:1 23941:1 23944:1 23950:1 23956:1 23957:3 23978:1 23982:2 24001:1 24008:2 24013:1 24028:2 24039:1 24065:1 24067:1 24069:7 24075:2 24076:1 24080:2 24092:2 24093:2 24097:3 24105:1 24112:1 24114:1 24125:1 24140:1 24144:3 24147:1 24150:1 24175:1 24186:10 24191:1 24202:1 24213:1 24217:1 24220:1 24225:2 24232:1 24235:1 24236:1 24251:2 24270:1 24275:1 24283:1 24286:1 24291:5 24304:1 24326:1 24334:2 24363:1 24366:1 24371:1 24379:1 24384:2 24388:4 24393:1 24395:1 24414:1 24420:1 24427:2 24435:1 24436:1 24444:1 24450:1 24476:1 24480:3 24484:2 24491:1 24492:1 24493:1 24495:3 24499:5 24502:1 24503:1 24505:2 24519:1 24524:1 24536:2 24552:3 24572:1 24576:2 24577:3 24591:1 24594:1 24611:1 24612:2 24614:1 24620:1 24623:2 24626:1 24628:4 24631:1 24641:1 24645:1 24646:1 24653:1 24654:1 24656:1 24661:1 24664:1 24675:1 24676:1 24683:1 24687:1 24689:1 24690:1 24699:1 24704:1 24707:1 24711:1 24757:1 24766:3 24778:1 24779:1 24797:1 24802:3 24803:1 24812:1 24815:1 24838:1 24854:5 24858:2 24859:2 24863:1 24871:2 24872:1 24911:1 24919:1 24922:2 24943:2 24971:1 24974:1 24979:1 25025:1 25030:1 25048:2 25064:1 25069:2 25072:1 25075:2 25077:6 25088:1 25097:6 25100:3 25107:1 25130:1 25132:2 25133:2 25134:1 25163:1 25166:2 25173:2 25181:1 25184:1 25192:2 25198:1 25199:1 25205:2 25208:1 25210:1 25212:1 25215:1 25222:4 25227:1 25233:1 25236:1 25238:1 25245:1 25248:1 25255:1 25271:1 25274:1 25277:4 25279:1 25280:1 25281:2 25283:1 25284:2 25295:1 25302:1 25306:2 25309:1 25310:1 25313:1 25328:2 25340:1 25351:1 25362:1 25365:1 25378:3 25383:1 25384:1 25387:1 25402:1 25408:1 25413:1 25415:1 25423:2 25427:1 25439:1 25440:4 25451:4 25454:2 25461:1 25467:1 25473:1 25485:5 25495:1 25499:4 25500:1 25511:2 25516:4 25542:1 25546:5 25552:1 25554:1 25565:1 25573:1 25576:15 25585:2 25599:2 25617:2 25628:1 25636:1 25642:1 25688:1 25693:1 25705:1 25707:1 25710:2 25713:3 25715:1 25718:1 25730:1 25732:2 25740:1 25741:1 25760:3 25766:1 25777:3 25778:1 25803:1 25807:1 25809:1 25812:1 25823:1 25832:1 25844:1 25848:1 25849:1 25850:2 25854:1 25860:1 25861:1 25874:1 25875:1 25876:1 25884:2 25885:1 25895:2 25920:3 25929:1 25933:1 25944:3 25955:1 25956:1 25961:1 25964:1 25966:2 25988:1 25989:1 25994:1 25995:4 25998:2 26005:2 26018:2 26019:1 26022:12 26023:1 26027:1 26032:1 26035:1 26042:3 26054:1 26061:1 26065:1 26074:1 26088:1 26093:5 26107:1 26113:1 26119:1 26122:1 26125:1 26128:1 26130:1 26145:1 26148:2 26149:1 26156:1 26163:1 26182:1 26202:2 26209:1 26231:2 26233:1 26239:1 26253:3 26268:2 26272:1 26277:1 26278:1 26283:1 26286:1 26291:1 26333:4 26336:1 26352:1 26354:1 26356:4 26372:1 26384:1 26399:1 26401:2 26417:1 26420:1 26428:1 26429:2 26440:2 26450:2 26465:1 26484:1 26489:1 26498:1 26499:1 26509:1 26510:1 26525:1 26536:1 26542:1 26546:1 26580:1 26584:1 26588:1 26597:1 26609:2 26616:1 26626:1 26630:2 26632:6 26653:1 26654:3 26657:1 26661:2 26663:1 26675:4 26685:1 26691:1 26692:1 26703:4 26710:1 26712:1 26714:2 26734:1 26742:2 26743:7 26744:1 26746:2 26753:1 26754:1 26757:1 26764:2 26773:1 26774:1 26778:3 26789:3 26794:2 26796:1 26799:1 26810:1 26813:1 26818:1 26847:1 26851:1 26866:1 26870:2 26875:1 26878:2 26881:1 26884:2 26889:1 26894:1 26897:3 26899:1 26901:1 26911:1 26915:1 26918:5 26923:6 26930:2 26931:2 26932:2 26945:2 26968:1 26970:1 26971:2 26976:1 26979:1 26991:2 26992:1 26994:1 27003:1 27011:1 27035:2 27043:1 27045:1 27054:3 27064:2 27074:1 27082:1 27084:1 27087:1 27096:1 27100:10 27130:1 27131:1 27145:1 27150:1 27157:1 27164:2 27172:1 27173:1 27176:3 27178:1 27188:3 27196:1 27206:1 27224:1 27227:2 27228:1 27229:1 27230:3 27235:1 27236:1 27249:1 27251:5 27252:1 27254:2 27258:3 27262:1 27265:1 27266:2 27269:1 27271:2 27276:3 27287:2 27296:3 27297:1 27299:3 27311:1 27318:1 27320:1 27329:1 27347:8 27353:1 27359:1 27365:4 27390:1 27392:1 27393:1 27401:1 27403:1 27405:3 27408:1 27411:3 27418:1 27424:1 27426:1 27427:1 27448:2 27451:2 27466:1 27468:1 27472:1 27502:1 27504:1 27516:2 27540:1 27548:1 27556:1 27558:1 27574:1 27615:1 27620:1 27649:1 27652:1 27658:3 27659:2 27662:2 27663:1 27666:5 27670:3 27673:8 27675:1 27676:1 27680:1 27689:1 27713:1 27718:1 27722:1 27727:3 27732:1 27734:1 27739:1 27745:1 27761:1 27764:1 27771:1 27784:2 27802:2 27808:1 27832:5 27855:1 27858:1 27868:1 27874:2 27885:1 27889:1 27898:1 27899:1 27908:1 27909:1 27912:1 27928:3 27945:1 27950:1 27953:1 27956:3 27965:1 27969:15 27970:2 27974:1 27978:1 27981:1 27993:1 27999:6 28007:1 28008:6 28032:1 28060:1 28073:1 28076:1 28080:5 28095:1 28105:1 28107:1 28109:2 28117:12 28123:3 28131:1 28134:1 28137:1 28151:2 28152:1 28162:1 28165:14 28170:2 28177:1 28207:1 28212:2 28214:2 28220:1 28222:1 28231:1 28233:1 28236:1 28242:1 28243:2 28258:1 28283:1 28296:2 28335:2 28345:1 28358:1 28363:1 28367:1 28375:1 28388:1 28392:46 28393:1 28413:1 28416:5 28417:2 28422:2 28423:5 28424:2 28425:1 28434:1 28435:1 28457:1 28485:4 28490:13 28491:1 28503:1 28509:1 28512:2 28515:1 28522:1 28529:1 28545:1 28546:2 28555:1 28584:1 28597:1 28610:3 28615:2 28634:2 28635:1 28647:1 28660:1 28664:1 28669:5 28690:2 28701:5 28710:1 28753:3 28758:1 28760:1 28775:1 28782:1 28785:1 28787:2 28796:2 28798:1 28803:2 28804:1 28814:1 28843:1 28852:1 28854:1 28857:2 28859:2 28865:1 28875:2 28887:1 28894:3 28901:1 28902:1 28903:3 28905:1 28913:1 28923:1 28927:1 28928:1 28937:1 28940:2 28950:1 28954:1 28959:1 28964:1 28974:1 28976:1 28979:1 28986:1 28988:1 28999:1 29000:10 29001:1 29003:2 29005:3 29024:1 29027:1 29031:3 29042:6 29046:1 29053:1 29057:4 29062:2 29063:2 29069:2 29073:38 29079:2 29100:2 29117:1 29120:1 29121:1 29128:1 29137:1 29139:1 29140:1 29141:2 29145:2 29146:2 29147:5 29148:1 29171:1 29176:1 29179:1 29183:1 29184:2 29194:2 29197:3 29201:1 29202:1 29208:1 29215:1 29223:1 29225:2 29236:1 29240:1
2 12:1 13:1 31:2 32:1 36:2 41:1 49:1 52:1 55:1 56:1 59:1 67:1 75:1 85:3 88:1 89:2 91:1 98:1 106:1 113:1 146:2 154:1 160:1 166:2 170:2 174:2 176:1 180:1 184:1 193:1 196:1 199:1 206:1 209:1 213:3 223:1 227:1 228:1 241:1 249:2 250:1 252:1 265:4 271:6 272:1 276:2 286:2 287:1 291:1 292:2 322:2 329:1 358:1 359:4 375:1 376:2 380:1 384:1 385:1 388:1 391:1 392:1 395:1 415:2 425:2 429:2 441:1 446:2 452:1 460:1 462:1 469:1 471:2 479:2 490:2 500:1 501:4 505:1 509:1 515:1 519:1 536:2 544:1 552:1 553:1 562:1 564:1 565:1 571:1 593:1 607:3 613:2 618:2 620:1 623:1 632:1 637:1 644:6 652:1 658:38 661:1 663:4 667:1 670:1 671:1 682:1 686:1 696:1 699:3 702:3 714:1 719:2 723:1 725:1 728:2 735:2 745:3 749:1 752:1 783:2 809:1 813:2 815:1 817:3 820:2 822:1 823:2 824:3 838:1 857:1 861:4 868:1 876:3 882:1 885:1 894:1 904:3 905:7 907:3 908:1 917:6 921:1 930:1 937:5 943:1 951:2 957:4 960:12 964:1 965:3 970:1 976:2 978:1 980:2 982:3 999:2 1003:1 1006:3 1016:3 1027:1 1029:3 1032:1 1036:1 1048:2 1050:1 1055:4 1056:1 1058:1 1091:1 1098:2 1099:1 1100:1 1107:1 1112:1 1137:1 1146:1 1158:1 1160:4 1173:1 1187:1 1190:1 1211:1 1214:37 1220:2 1223:2 1224:2 1227:1 1229:4 1232:1 1245:1 1256:2 1258:2 1260:2 1266:1 1270:1 1275:1 1277:1 1279:4 1280:2 1281:1 1288:1 1290:1 1291:1 1295:1 1298:1 1302:1 1314:1 1316:4 1338:3 1354:2 1356:2 1357:1 1380:4 1390:1 1393:1 1395:1 1397:1 1402:2 1404:11 1405:1 1420:1 1430:1 1444:1 1452:3 1459:1 1462:2 1475:1 1481:1 1493:1 1499:1 1501:1 1502:4 1506:2 1510:17 1512:1 1516:1 1517:1 1528:1 1530:1 1532:1 1540:1 1546:2 1548:2 1550:1 1575:1 1576:3 1582:2 1598:1 1602:6 1615:1 1616:1 1631:1 1636:1 1637:2 1639:1 1647:3 1650:1 1666:1 1672:1 1676:1 1677:11 1685:1 1687:1 1690:1 1691:3 1705:1 1720:1 1728:1 1740:2 1741:1 1745:3 1757:1 1760:1 1762:1 1776:1 1778:1 1779:1 1783:1 1787:1 1795:1 1820:1 1827:1 1833:1 1838:1 1840:1 1842:1 1853:1 1866:1 1870:3 1871:2 1877:1 1878:1 1892:1 1895:1 1897:1 1898:3 1901:1 1907:1 1913:1 1918:2 1921:3 1930:1 1937:1 1941:2 1947:2 1957:3 1959:1 1973:1 1976:1 1977:1 1980:1 1982:1 1986:1 1988:1 1992:1 1993:2 2001:1 2008:1 2022:8 2042:1 2044:1 2045:1 2048:1 2051:2 2053:1 2076:1 2077:1 2085:1 2094:2 2108:1 2115:1 2117:1 2118:2 2121:1 2123:1 2125:1 2127:1 2140:1 2144:1 2145:1 2153:1 2157:2 2158:1 2159:1 2161:1 2172:1 2176:1 2181:1 2186:1 2196:11 2217:1 2235:3 2238:1 2239:1 2265:1 2269:2 2291:2 2299:1 2325:1 2329:1 2333:1 2334:2 2335:2 2336:4 2337:3 2338:2 2339:3 2341:1 2342:6 2343:1 2347:9 2349:5 2352:7 2356:5 2359:1 2360:3 2362:1 2364:1 2367:1 2369:4 2372:4 2375:1 2376:1 2379:1 2382:1 2383:1 2405:1 2406:1 2412:1 2421:3 2422:1 2430:5 2433:1 2439:1 2457:2 2460:1 2478:2 2479:1 2480:1 2482:1 2485:1 2487:1 2492:1 2494:4 2495:4 2500:1 2503:4 2513:2 2514:4 2522:4 2523:1 2531:1 2533:1 2539:1 2550:4 2562:1 2563:1 2564:1 2571:1 2596:1 2603:2 2604:2 2610:1 2616:1 2624:1 2639:1 2643:1 2646:2 2660:1 2663:1 2674:2 2680:1 2681:1 2729:1 2730:1 2735:1 2736:2 2745:1 2751:2 2758:3 2766:1 2767:2 2773:1 2775:1 2777:1 2785:3 2787:2 2791:4 2804:1 2809:1 2812:3 2813:4 2819:1 2822:3 2826:1 2833:1 2839:1 2841:1 2872:3 2877:1 2881:5 2883:5 2886:1 2889:1 2892:4 2901:2 2904:1 2915:1 2937:2 2940:1 2948:1 2949:2 2954:1 2956:2 2963:1 2982:17 2984:38 2986:1 2990:1 2991:3 2998:2 3002:2 3005:1 3014:1 3018:2 3019:1 3023:4 3024:1 3029:1 3032:1 3039:8 3049:1 3053:4 3057:2 3061:1 3067:1 3070:1 3091:2 3097:1 3100:1 3101:1 3127:2 3133:3 3139:1 3142:1 3169:3 3196:2 3219:1 3226:1 3261:1 3267:1 3278:4 3281:1 3293:1 3297:1 3301:1 3316:2 3337:2 3340:1 3341:2 3351:1 3354:3 3360:1 3366:1 3368:4 3380:1 3385:1 3387:2 3393:1 3399:1 3401:4 3419:2 3445:1 3482:1 3486:1 3502:1 3506:1 3521:2 3525:1 3527:1 3536:1 3540:1 3541:1 3548:1 3550:1 3552:1 3556:2 3564:1 3569:1 3574:1 3577:1 3601:1 3604:1 3606:1 3612:1 3617:1 3627:1 3628:1 3632:1 3642:1 3645:1 3666:2 3677:1 3684:1 3690:1 3697:1 3704:1 3715:1 3734:1 3753:1 3758:1 3773:3 3774:2 3775:1 3779:3 3782:2 3797:1 3798:1 3823:1 3831:3 3833:1 3861:1 3867:1 3868:2 3872:2 3877:1 3882:1 3884:3 3886:1 3902:1 3907:2 3909:2 3915:2 3936:1 3938:1 3940:1 3946:3 3960:1 3963:1 3964:1 3968:1 3985:1 3990:37 3991:2 3998:1 4007:2 4012:1 4020:1 4049:1 4052:1 4053:1 4056:1 4066:1 4071:1 4072:2 4079:4 4081:6 4093:1 4096:2 4102:2 4108:1 4113:6 4117:7 4118:2 4131:1 4132:2 4133:1 4148:1 4169:1 4171:1 4182:1 4192:1 4195:1 4196:2 4208:3 4213:1 4216:1 4225:1 4231:1 4258:1 4260:1 4262:2 4264:2 4267:1 4269:1 4272:1 4277:1 4283:1 4293:1 4304:1 4307:1 4309:2 4310:1 4312:4 4317:1 4319:3 4331:1 4357:1 4370:1 4372:1 4376:3 4402:1 4405:2 4407:1 4409:1 4412:1 4415:2 4424:1 4432:2 4434:37 4435:1 4443:2 4446:1 4448:1 4452:5 4462:1 4466:1 4475:1 4477:1 4479:1 4495:1 4499:1 4527:2 4535:6 4550:1 4553:1 4554:1 4557:1 4564:1 4580:1 4590:3 4604:2 4609:3 4610:1 4618:2 4622:2 4623:1 4626:1 4629:1 4648:1 4668:8 4676:2 4698:2 4717:1 4740:1 4744:1 4752:1 4774:6 4790:4 4796:1 4811:1 4812:1 4818:6 4826:1 4839:1 4854:1 4863:1 4867:1 4870:1 4883:1 4898:1 4902:5 4903:2 4908:2 4909:1 4913:1 4916:1 4920:4 4931:1 4942:1 4943:3 4954:1 4974:1 4976:1 4977:1 4978:1 4983:1 4997:3 4998:2 5012:20 5013:2 5022:2 5025:1 5046:8 5053:2 5063:2 5074:1 5087:2 5089:1 5091:1 5106:1 5138:4 5140:2 5143:5 5149:1 5159:4 5160:6 5161:2 5164:1 5167:6 5173:1 5174:2 5175:4 5176:1 5183:1 5190:2 5192:5 5193:1 5194:4 5195:1 5205:1 5214:1 5230:1 5264:1 5267:1 5268:2 5273:1 5283:1 5300:1 5314:1 5324:1 5342:1 5361:1 5389:1 5403:1 5406:1 5427:1 5430:1 5438:1 5439:2 5440:1 5462:1 5482:1 5485:1 5486:1 5495:2 5496:2 5520:1 5533:1 5534:3 5549:2 5574:1 5577:2 5579:1 5583:1 5603:1 5606:1 5613:2 5624:1 5626:1 5630:3 5634:1 5690:1 5699:1 5700:1 5707:1 5712:1 5713:1 5716:1 5723:2 5724:1 5726:2 5729:2 5740:1 5741:1 5742:1 5762:2 5774:1 5776:1 5780:11 5782:1 5784:1 5790:2 5792:1 5794:1 5800:1 5802:2 5807:1 5822:2 5833:2 5839:1 5841:1 5853:2 5860:2 5880:1 5889:1 5896:1 5908:2 5921:1 5924:1 5926:2 5939:2 5943:1 5968:3 5992:1 6005:1 6017:1 6019:1 6027:1 6034:1 6042:1 6043:1 6063:1 6064:1 6065:2 6076:3 6079:1 6092:1 6097:1 6118:1 6121:1 6143:1 6149:1 6151:2 6157:1 6168:2 6176:2 6182:3 6187:1 6195:1 6198:1 6203:1 6207:2 6208:5 6211:1 6212:1 6217:1 6220:1 6221:1 6222:1 6224:1 6227:1 6242:1 6247:1 6248:1 6255:1 6276:1 6281:1 6294:2 6295:2 6296:1 6301:1 6302:1 6304:1 6307:2 6308:1 6311:1 6312:1 6313:1 6315:3 6317:1 6320:2 6322:2 6324:2 6325:3 6326:1 6330:1 6345:1 6356:2 6388:5 6391:2 6399:1 6408:4 6410:2 6416:1 6428:4 6434:1 6436:1 6437:1 6445:1 6448:1 6456:1 6479:2 6486:1 6500:1 6507:1 6510:1 6523:10 6527:1 6528:1 6533:2 6534:5 6536:2 6538:1 6539:1 6540:2 6541:1 6543:5 6545:4 6546:1 6547:1 6550:4 6552:9 6553:1 6554:2 6560:1 6563:1 6581:1 6595:1 6599:1 6600:2 6601:1 6615:1 6619:1 6629:1 6637:1 6657:1 6666:2 6667:1 6674:3 6679:3 6694:1 6702:3 6717:1 6720:1 6736:1 6744:1 6746:1 6747:1 6749:1 6755:1 6762:1 6763:1 6769:1 6772:1 6776:1 6785:1 6792:1 6795:2 6796:1 6809:1 6810:3 6820:1 6831:2 6850:1 6853:1 6866:1 6872:1 6892:1 6899:1 6901:1 6904:1 6908:3 6911:1 6913:1 6927:3 6939:1 6944:1 6960:3 6962:1 6967:1 6974:1 6991:2 6997:3 7025:1 7030:1 7040:1 7059:1 7063:2 7077:1 7083:2 7101:1 7102:1 7114:1 7117:1 7130:1 7177:1 7178:1 7180:1 7184:1 7187:1 7192:5 7203:1 7205:1 7212:2 7217:6 7264:1 7269:1 7271:1 7277:1 7283:1 7287:2 7289:1 7295:1 7301:2 7319:1 7332:2 7346:1 7351:1 7369:3 7375:1 7398:1 7406:1 7409:2 7412:1 7413:2 7415:1 7417:1 7423:1 7428:1 7431:1 7435:1 7437:1 7442:1 7447:1 7474:1 7476:1 7485:1 7495:1 7496:2 7508:1 7516:1 7522:1 7527:1 7540:1 7543:2 7562:1 7563:1 7571:1 7574:1 7582:1 7593:1 7596:6 7629:9 7632:1 7636:1 7663:1 7664:2 7673:1 7679:1 7693:2 7707:1 7716:1 7718:1 7722:1 7725:1 7748:4 7749:1 7752:1 7779:1 7787:1 7803:3 7815:13 7816:13 7821:1 7828:1 7832:1 7833:2 7834:1 7835:6 7837:1 7864:4 7868:4 7871:1 7878:58 7882:1 7883:1 7886:2 7890:1 7891:1 7897:19 7900:6 7903:1 7907:1 7908:1 7911:1 7932:1 7933:4 7936:2 7941:2 7949:1 7957:1 7974:1 7985:6 7986:1 7996:2 8002:1 8013:1 8014:1 8037:1 8039:3 8054:3 8063:1 8065:1 8071:1 8075:4 8077:1 8083:1 8087:1 8105:1 8109:6 8119:1 8122:1 8129:1 8159:1 8162:2 8176:2 8189:1 8196:1 8249:1 8253:1 8286:2 8290:1 8300:1 8307:1 8312:3 8316:1 8348:2 8351:1 8352:1 8364:1 8376:1 8377:37 8383:1 8384:1 8392:1 8394:1 8396:1 8402:1 8410:20 8411:4 8426:1 8428:2 8441:1 8443:1 8445:1 8447:1 8449:2 8462:1 8466:1 8475:1 8480:1 8492:47 8499:1 8501:1 8531:2 8537:1 8554:1 8561:1 8588:2 8596:1 8598:1 8605:1 8608:1 8645:1 8657:1 8659:2 8667:1 8671:1 8674:3 8677:1 8680:1 8683:1 8687:1 8693:5 8694:1 8713:1 8720:1 8725:2 8737:1 8745:3 8746:1 8749:1 8750:1 8760:2 8762:1 8763:2 8766:1 8768:1 8778:2 8779:2 8782:1 8783:1 8792:1 8797:1 8812:1 8813:1 8822:1 8832:1 8836:1 8841:1 8845:1 8850:2 8859:1 8862:4 8883:1 8911:1 8915:1 8923:1 8926:1 8928:1 8931:3 8987:3 8989:1 8991:1 9014:2 9019:1 9024:1 9039:1 9052:1 9057:2 9059:1 9061:1 9063:1 9066:1 9067:1 9069:2 9086:1 9090:4 9106:1 9110:2 9111:1 9112:4 9118:1 9129:3 9138:1 9139:1 9140:1 9184:1 9191:3 9196:1 9199:2 9204:2 9236:1 9238:6 9244:1 9247:5 9256:1 9258:1 9264:2 9300:1 9320:4 9341:1 9343:3 9344:2 9354:1 9377:1 9378:4 9382:2 9384:1 9391:5 9393:3 9394:1 9396:1 9400:1 9404:2 9406:2 9408:2 9409:1 9415:1 9421:1 9428:1 9429:1 9432:1 9435:1 9442:1 9444:1 9445:1 9446:1 9447:2 9448:1 9449:1 9456:1 9466:1 9472:1 9473:3 9483:9 9487:2 9490:2 9496:2 9504:1 9506:1 9521:3 9525:1 9534:1 9543:1 9546:2 9558:1 9563:3 9564:2 9571:1 9580:1 9592:1 9597:1 9600:1 9607:1 9610:1 9611:2 9616:2 9619:2 9622:1 9623:1 9624:1 9627:1 9628:2 9637:1 9641:1 9642:1 9651:1 9653:1 9658:2 9660:1 9661:11 9675:1 9677:2 9678:12 9681:1 9689:1 9694:1 9698:1 9701:3 9703:1 9706:1 9715:1 9717:1 9719:3 9720:1 9721:1 9723:1 9726:1 9738:1 9751:1 9752:1 9763:1 9764:1 9773:1 9779:1 9782:1 9795:1 9797:2 9802:1 9803:1 9804:2 9805:1 9813:1 9820:1 9828:1 9829:1 9841:1 9855:1 9856:1 9860:1 9887:1 9905:6 9914:1 9915:1 9916:1 9920:1 9921:3 9924:4 9927:1 9934:1 9936:1 9938:1 9960:1 9961:1 9962:1 9974:1 9987:1 10003:2 10016:1 10028:1 10029:1 10046:37 10050:1 10053:1 10055:1 10061:1 10069:1 10077:1 10083:2 10092:1 10097:1 10098:1 10102:1 10115:1 10117:1 10122:2 10131:2 10134:1 10138:1 10144:1 10166:1 10170:5 10174:1 10177:3 10184:1 10188:2 10195:2 10220:1 10229:1 10233:1 10242:2 10243:2 10252:2 10255:1 10260:1 10261:2 10266:2 10268:2 10280:5 10284:5 10292:1 10297:3 10299:1 10322:5 10326:1 10336:1 10337:1 10339:2 10350:1 10359:1 10362:1 10369:1 10381:2 10383:3 10388:1 10393:1 10402:1 10404:1 10405:1 10417:1 10425:1 10426:8 10440:2 10464:1 10497:1 10518:2 10522:1 10526:1 10527:1 10542:5 10555:1 10564:2 10573:1 10575:2 10576:2 10582:1 10594:1 10604:1 10609:1 10619:1 10623:2 10624:8 10632:1 10641:1 10664:3 10681:1 10691:1 10705:1 10707:1 10725:1 10740:5 10745:1 10758:1 10760:5 10761:1 10770:1 10773:1 10786:2 10814:1 10820:3 10834:1 10840:1 10842:2 10859:1 10860:5 10864:2 10867:8 10874:1 10882:1 10894:1 10899:1 10907:2 10912:1 10914:1 10922:1 10923:2 10926:1 10929:7 10934:1 10942:1 10947:1 10955:3 10956:1 10963:1 10976:2 10980:1 10990:1 11004:1 11005:1 11036:1 11065:1 11066:11 11082:1 11083:1 11086:1 11089:1 11098:3 11100:1 11108:1 11111:3 11114:3 11117:3 11124:1 11131:1 11143:5 11148:1 11152:1 11158:1 11164:1 11167:2 11170:2 11176:1 11178:1 11185:1 11195:1 11197:9 11199:1 11200:1 11203:1 11215:1 11217:3 11219:4 11220:1 11231:4 11234:2 11237:1 11246:1 11256:1 11264:1 11266:1 11269:1 11276:6 11279:1 11281:1 11283:1 11285:1 11286:1 11293:2 11300:1 11303:2 11305:1 11311:1 11320:1 11333:1 11347:3 11350:1 11372:1 11373:1 11375:1 11383:1 11385:1 11390:1 11400:1 11404:3 11407:1 11437:2 11455:1 11456:2 11464:2 11465:1 11466:1 11474:1 11475:1 11476:4 11477:1 11480:1 11483:2 11484:1 11487:1 11490:1 11502:2 11503:5 11505:1 11508:1 11510:1 11511:1 11518:1 11532:1 11535:3 11538:1 11552:1 11568:1 11571:5 11591:1 11606:1 11607:1 11609:2 11613:1 11614:1 11617:1 11622:1 11627:1 11629:1 11636:10 11648:2 11649:2 11674:1 11679:1 11684:1 11694:2 11695:1 11699:1 11702:1 11714:1 11732:2 11744:1 11746:2 11750:2 11770:1 11775:6 11797:1 11800:1 11803:1 11809:1 11812:3 11824:1 11825:1 11827:2 11829:1 11834:1 11838:1 11839:6 11840:5 11845:2 11848:1 11851:5 11854:1 11871:1 11878:1 11881:2 11891:1 11895:2 11899:1 11900:9 11904:1 11907:1 11916:1 11930:1 11931:1 11936:2 11940:1 11949:1 11955:1 11979:1 11992:3 11995:1 11996:1 12003:4 12011:1 12039:1 12043:4 12054:1 12069:1 12083:1 12089:1 12090:1 12092:1 12109:1 12110:1 12139:1 12140:1 12142:1 12154:1 12163:2 12164:1 12179:1 12193:1 12223:1 12224:1 12235:1 12240:3 12243:1 12261:4 12277:1 12281:1 12283:1 12286:1 12289:2 12311:1 12322:1 12329:1 12330:1 12332:2 12337:2 12338:1 12339:3 12344:6 12345:1 12348:1 12354:1 12364:1 12372:1 12376:1 12383:1 12385:1 12406:1 12421:1 12431:1 12444:1 12455:1 12460:3 12461:5 12470:1 12478:1 12483:1 12505:1 12510:1 12513:2 12522:1 12532:2 12555:1 12563:1 12575:1 12588:1 12597:3 12599:1 12606:1 12612:2 12613:1 12632:1 12633:1 12635:1 12648:1 12650:2 12657:1 12664:1 12666:1 12722:1 12723:1 12733:1 12742:1 12746:1 12763:1 12767:1 12790:3 12792:38 12797:1 12800:1 12809:1 12813:5 12815:1 12821:1 12859:6 12873:1 12884:2 12888:1 12892:1 12902:1 12916:1 12922:1 12927:1 12932:1 12935:1 12964:2 12967:1 12969:2 12980:1 13001:1 13008:1 13009:1 13020:1 13024:2 13027:1 13032:1 13038:1 13045:1 13054:1 13086:2 13095:1 13100:3 13111:1 13116:1 13132:1 13141:2 13145:1 13163:1 13174:1 13180:1 13182:1 13183:1 13193:1 13195:1 13217:1 13229:1 13238:2 13239:1 13257:1 13259:1 13262:1 13265:1 13268:1 13269:1 13280:1 13286:13 13291:4 13294:3 13306:1 13307:1 13313:2 13326:1 13339:1 13340:1 13384:1 13389:1 13400:1 13412:1 13417:1 13418:1 13419:2 13424:2 13427:6 13430:6 13437:1 13462:1 13464:1 13480:1 13482:1 13491:14 13495:1 13502:1 13532:1 13541:1 13563:1 13584:1 13585:2 13595:1 13626:1 13629:1 13639:3 13641:4 13647:3 13665:1 13673:1 13675:2 13676:1 13680:1 13688:1 13695:2 13700:2 13705:1 13707:1 13713:1 13716:1 13717:1 13729:3 13732:1 13747:1 13766:1 13770:2 13772:3 13773:1 13775:1 13777:1 13780:1 13782:13 13783:1 13784:1 13786:2 13804:1 13805:2 13806:1 13807:1 13808:1 13809:1 13811:1 13812:1 13814:6 13818:1 13821:1 13826:1 13827:2 13859:1 13868:1 13869:1 13873:2 13889:1 13901:1 13910:1 13928:1 13933:1 13935:1 13939:1 13941:2 13951:10 13953:1 13955:2 13963:1 13974:1 13980:1 13988:1 13991:1 13998:1 14001:1 14012:1 14028:1 14030:2 14038:5 14052:1 14055:1 14057:3 14059:1 14069:14 14072:8 14096:1 14107:1 14116:1 14135:1 14147:2 14154:1 14156:5 14166:2 14177:4 14179:1 14202:1 14229:1 14232:1 14241:1 14248:1 14256:1 14259:1 14261:3 14273:1 14275:2 14278:1 14290:1 14299:1 14308:2 14314:1 14323:1 14329:1 14355:1 14361:4 14372:1 14393:1 14398:1 14420:2 14422:1 14426:1 14440:3 14449:2 14450:1 14451:1 14454:1 14460:2 14465:2 14466:2 14468:3 14471:1 14480:1 14485:2 14486:1 14497:1 14498:2 14506:2 14516:1 14541:1 14555:1 14557:1 14559:1 14560:2 14564:1 14574:1 14575:2 14576:1 14578:1 14590:2 14592:2 14607:1 14612:1 14613:2 14615:1 14617:2 14621:1 14622:1 14623:1 14625:1 14626:1 14627:1 14629:1 14634:1 14638:1 14641:1 14643:2 14652:1 14653:1 14657:2 14659:1 14664:1 14670:2 14671:1 14684:1 14688:1 14699:38 14700:1 14705:3 14708:1 14709:1 14714:1 14721:1 14728:1 14736:2 14747:1 14786:1 14789:1 14792:5 14793:1 14800:1 14801:1 14806:2 14827:1 14832:1 14847:3 14850:1 14852:1 14863:1 14869:1 14870:1 14887:6 14890:1 14900:1 14902:1 14906:1 14939:1 14941:1 14944:1 14979:1 14993:2 15000:2 15001:2 15003:1 15010:1 15016:1 15031:1 15040:1 15054:1 15060:1 15069:1 15070:2 15072:2 15080:1 15087:1 15100:1 15104:2 15105:1 15106:1 15109:9 15113:1 15169:1 15174:1 15175:1 15188:1 15193:4 15194:1 15197:1 15204:1 15208:1 15218:1 15223:1 15237:2 15238:1 15245:2 15247:3 15257:1 15258:1 15267:1 15278:2 15299:1 15306:1 15315:2 15319:1 15322:2 15340:2 15341:1 15379:3 15380:1 15386:1 15396:1 15408:1 15409:3 15432:1 15433:1 15452:1 15458:1 15462:2 15465:1 15478:1 15482:2 15484:1 15488:1 15491:1 15506:2 15521:1 15526:1 15536:1 15542:1 15555:1 15556:3 15557:4 15566:1 15584:1 15590:2 15608:9 15610:1 15612:1 15616:2 15619:2 15625:1 15633:1 15653:1 15674:1 15678:1 15690:1 15693:1 15718:1 15722:1 15723:1 15730:1 15738:1 15741:1 15742:4 15745:2 15755:1 15757:1 15762:4 15778:1 15779:1 15782:1 15783:1 15792:1 15795:1 15796:5 15802:3 15805:2 15818:4 15819:1 15823:1 15827:1 15828:2 15835:3 15844:1 15888:1 15890:1 15897:5 15899:2 15921:4 15923:2 15931:1 15944:1 15946:1 15951:1 15960:1 15961:3 15971:1 15973:5 15988:1 16006:1 16020:1 16023:1 16025:1 16031:1 16038:1 16051:1 16057:2 16060:15 16062:2 16063:1 16067:1 16096:4 16098:3 16100:1 16105:2 16116:1 16133:2 16137:1 16139:3 16140:2 16142:1 16143:2 16165:13 16178:1 16183:1 16185:1 16186:1 16193:1 16200:4 16203:1 16239:2 16250:1 16252:1 16254:1 16262:1 16264:1 16270:1 16271:3 16278:1 16279:1 16285:4 16286:2 16287:1 16291:4 16292:2 16297:1 16298:1 16299:4 16300:1 16301:2 16304:1 16306:1 16321:1 16333:2 16357:2 16380:1 16381:1 16387:1 16392:1 16404:1 16413:1 16416:1 16418:1 16419:1 16440:1 16448:1 16452:1 16455:1 16457:1 16468:2 16476:1 16484:2 16510:1 16522:1 16523:1 16524:2 16527:1 16579:1 16590:2 16604:2 16613:1 16617:1 16631:4 16634:1 16644:2 16646:11 16647:1 16649:1 16658:1 16679:1 16687:1 16689:1 16692:1 16712:2 16714:4 16717:1 16723:1 16724:1 16725:2 16749:1 16751:1 16757:1 16766:1 16769:1 16773:3 16776:1 16782:2 16797:2 16800:3 16810:1 16811:2 16822:1 16878:1 16881:1 16899:1 16912:2 16916:1 16918:1 16922:1 16926:51 16932:1 16933:3 16934:1 16944:1 16949:1 16951:1 16963:1 16966:1 16967:4 16998:1 17020:1 17028:1 17030:1 17038:2 17042:1 17047:1 17060:1 17068:3 17072:2 17083:1 17088:1 17099:1 17103:2 17132:1 17138:1 17143:1 17144:1 17160:1 17166:2 17169:1 17181:1 17184:1 17199:1 17207:1 17208:1 17213:1 17234:1 17236:2 17240:2 17241:1 17243:1 17250:1 17255:1 17266:1 17281:1 17284:1 17329:1 17332:1 17346:1 17356:2 17359:1 17361:2 17363:1 17372:1 17374:1 17375:2 17380:2 17383:1 17384:1 17388:1 17393:2 17395:1 17406:1 17424:2 17436:1 17440:1 17443:2 17447:2 17449:1 17450:2 17452:1 17455:1 17457:1 17459:2 17465:2 17475:1 17484:1 17490:1 17512:1 17535:2 17541:1 17545:1 17549:2 17555:2 17560:1 17579:1 17580:1 17593:1 17604:1 17609:1 17620:1 17623:1 17631:1 17632:4 17634:1 17637:2 17639:1 17645:1 17649:1 17662:1 17664:1 17671:2 17672:2 17683:1 17689:1 17692:1 17711:2 17717:1 17727:3 17731:2 17758:4 17759:1 17766:5 17776:1 17787:4 17788:1 17796:1 17812:1 17817:1 17844:2 17855:8 17859:1 17860:2 17884:3 17891:1 17909:2 17926:1 17929:2 17930:1 17936:2 17937:1 17945:1 17964:1 17980:1 17986:2 18012:1 18013:4 18017:2 18018:2 18019:1 18026:1 18030:1 18035:1 18041:1 18055:2 18058:2 18076:1 18098:1 18100:2 18104:1 18123:1 18141:1 18142:1 18146:5 18156:1 18204:1 18206:2 18210:1 18223:1 18234:2 18245:1 18258:1 18265:1 18269:1 18300:13 18307:1 18310:2 18316:1 18332:1 18340:2 18370:1 18374:1 18377:4 18384:1 18393:1 18395:1 18401:1 18402:1 18417:1 18419:1 18422:1 18431:2 18447:2 18450:1 18456:1 18462:1 18471:1 18492:1 18499:1 18504:1 18507:1 18516:2819 18527:2 18531:1 18538:2 18551:1 18555:1 18566:1 18581:1 18583:1 18587:1 18589:1 18595:1 18597:1 18604:1 18619:1 18626:1 18638:3 18648:1 18651:3 18653:1 18659:1 18678:1 18680:1 18691:1 18702:1 18707:1 18709:1 18712:2 18724:2 18732:1 18760:1 18771:1 18775:1 18780:2 18781:1 18787:1 18802:1 18832:1 18837:1 18850:2 18858:1 18859:1 18863:1 18864:1 18894:2 18901:1 18902:1 18918:1 18933:1 18952:1 18960:1 18969:1 18976:2 18978:1 18982:1 18986:1 19000:1 19003:1 19013:1 19014:3 19016:2 19034:1 19037:1 19051:1 19061:1 19083:1 19085:7 19116:5 19120:1 19128:1 19131:2 19137:2 19174:1 19175:1 19178:1 19181:1 19184:1 19189:1 19192:1 19198:1 19219:1 19223:1 19230:2 19239:1 19245:1 19253:1 19257:1 19259:1 19268:1 19276:1 19282:8 19283:4 19290:1 19315:1 19318:5 19333:1 19342:2 19346:1 19362:1 19377:23 19384:1 19399:2 19409:1 19420:2 19421:1 19426:1 19427:1 19428:1 19429:2 19447:1 19451:4 19452:1 19453:1 19454:2 19461:2 19469:1 19477:1 19481:2 19490:3 19491:1 19496:1 19500:1 19509:1 19513:1 19530:2 19558:1 19561:1 19573:1 19574:2 19576:1 19580:1 19584:4 19589:2 19603:1 19609:3 19611:1 19635:1 19638:1 19641:1 19653:2 19656:1 19658:1 19663:1 19678:2 19685:1 19692:1 19697:2 19709:1 19713:2 19715:1 19726:1 19728:1 19732:1 19737:4 19757:1 19768:1 19790:1 19793:1 19813:1 19819:1 19820:3 19822:2 19823:1 19829:1 19835:1 19847:1 19851:2 19861:1 19866:2 19881:2 19896:1 19927:4 19929:9 19937:1 19940:1 19945:1 19947:1 19950:1 19957:1 19962:1 19964:1 19967:1 19972:2 19986:1 19992:2 19995:2 20000:1 20001:3 20002:7 20005:1 20021:1 20027:1 20029:2 20030:6 20031:1 20033:1 20042:1 20043:1 20051:5 20079:3 20099:2 20103:1 20109:3 20117:1 20121:1 20123:6 20131:1 20132:1 20144:3 20149:1 20156:1 20162:2 20185:1 20199:1 20208:1 20211:5 20223:2 20244:1 20258:1 20259:1 20268:1 20275:1 20285:1 20291:1 20293:1 20311:1 20338:1 20365:2 20375:1 20387:1 20390:1 20401:1 20408:1 20451:6 20455:1 20460:2 20462:1 20483:1 20484:2 20495:2 20499:2 20500:1 20513:3 20525:1 20541:1 20555:1 20578:1 20591:1 20601:1 20602:3 20605:1 20623:1 20630:2 20649:1 20653:1 20661:3 20664:2 20668:1 20674:2 20684:1 20691:2 20692:3 20697:1 20699:1 20702:2 20703:1 20704:2 20711:1 20718:2 20720:1 20725:1 20733:1 20748:1 20754:1 20762:2 20764:2 20767:1 20773:3 20787:1 20788:1 20789:1 20798:1 20799:1 20805:1 20808:2 20810:2 20828:1 20829:1 20833:1 20837:1 20840:2 20842:2 20848:1 20853:4 20862:2 20863:1 20866:1 20869:3 20870:2 20878:2 20886:1 20892:5 20899:1 20918:1 20921:1 20925:1 20940:1 20942:5 20945:1 20953:2 20958:1 20994:1 20996:1 21001:2 21004:3 21018:1 21021:1 21026:1 21037:2 21057:2 21061:1 21063:1 21071:2 21078:1 21087:1 21106:1 21114:1 21122:1 21125:1 21127:1 21132:1 21137:1 21146:1 21151:1 21153:1 21155:1 21171:1 21185:1 21190:1 21196:1 21202:2 21204:1 21206:5 21219:2 21228:1 21233:1 21237:3 21257:1 21265:1 21271:2 21276:1 21285:1 21286:1 21289:1 21306:1 21308:1 21310:1 21311:1 21313:4 21317:1 21329:1 21332:2 21341:1 21351:2 21353:1 21359:1 21361:1 21362:1 21363:1 21364:2 21369:2 21374:1 21382:2 21397:1 21398:1 21410:1 21411:1 21414:1 21415:2 21420:1 21427:1 21436:1 21442:1 21449:2 21451:1 21455:3 21464:4 21471:1 21473:1 21475:1 21476:1 21492:2 21493:2 21506:1 21508:4 21517:1 21518:1 21530:1 21535:1 21543:1 21544:1 21545:1 21547:1 21558:3 21562:1 21570:4 21573:2 21574:1 21577:1 21590:1 21601:1 21610:1 21620:1 21625:8 21626:1 21634:1 21648:1 21650:1 21658:1 21663:1 21695:2 21696:1 21699:1 21705:8 21711:2 21712:1 21714:1 21715:5 21719:1 21728:3 21739:1 21741:1 21748:1 21763:2 21764:12 21775:1 21791:1 21835:1 21837:1 21843:1 21845:1 21877:1 21879:2 21881:4 21884:3 21887:1 21895:2 21896:1 21897:1 21898:2 21906:2 21908:2 21915:1 21918:1 21919:1 21923:7 21924:4 21925:1 21930:1 21934:1 21936:1 21937:1 21939:1 21947:1 21955:1 21975:1 21997:1 22000:1 22015:1 22026:3 22028:1 22047:3 22058:2 22062:1 22066:4 22069:1 22082:2 22086:1 22093:1 22095:1 22114:1 22128:3 22133:1 22139:1 22143:1 22144:1 22151:1 22161:4 22170:1 22175:2 22179:2 22192:1 22199:1 22214:1 22219:2 22223:1 22235:1 22242:2 22248:16 22262:2 22267:2 22275:1 22296:1 22310:14 22312:2 22316:1 22321:1 22329:1 22334:1 22335:1 22338:1 22342:1 22362:1 22365:4 22368:2 22370:1 22379:4 22383:2 22390:1 22416:1 22418:1 22425:7 22432:1 22439:2 22448:1 22456:5 22457:1 22462:1 22471:1 22475:1 22479:1 22481:1 22490:1 22492:2 22510:1 22516:2 22533:1 22536:1 22542:1 22543:2 22555:10 22566:3 22582:1 22583:1 22599:3 22622:1 22640:1 22647:1 22665:2 22667:1 22671:1 22676:2 22683:1 22687:1 22688:1 22691:1 22694:37 22700:1 22709:1 22713:3 22714:3 22716:1 22717:1 22718:2 22719:1 22721:1 22723:1 22727:1 22752:2 22757:3 22759:1 22760:1 22762:1 22768:3 22770:1 22771:1 22781:1 22805:1 22809:1 22816:1 22838:1 22841:1 22842:6 22852:3 22861:2 22866:1 22871:4 22874:1 22887:1 22899:1 22901:1 22925:1 22938:1 22986:1 22990:3 23000:3 23008:1 23019:1 23060:1 23074:1 23075:1 23079:1 23083:1 23093:1 23095:3 23100:1 23103:1 23108:3 23109:1 23111:1 23113:1 23115:2 23120:1 23147:38 23168:3 23169:2 23176:1 23186:1 23199:1 23202:1 23209:1 23223:1 23227:1 23228:1 23234:1 23235:2 23242:2 23247:6 23252:1 23267:1 23276:1 23283:2 23289:1 23290:1 23294:1 23305:1 23307:1 23315:1 23321:3 23325:2 23329:1 23336:1 23348:2 23350:1 23358:1 23359:1 23371:1 23379:2 23381:3 23385:1 23408:2 23416:1 23426:1 23433:1 23460:1 23465:1 23487:1 23490:3 23506:5 23508:1 23509:2 23525:1 23541:1 23543:1 23578:1 23593:1 23596:1 23610:1 23617:2 23622:1 23630:1 23641:2 23651:2 23664:2 23670:1 23693:1 23699:3 23735:1 23736:1 23740:2 23745:1 23751:1 23752:1 23766:1 23767:3 23772:1 23775:1 23782:2 23785:7 23786:1 23788:1 23802:1 23817:1 23825:2 23832:1 23838:1 23842:1 23846:1 23857:1 23868:1 23884:1 23886:1 23890:1 23891:1 23895:1 23896:1 23912:1 23913:1 23915:2 23932:1 23941:1 23944:1 23950:1 23956:1 23957:3 23978:1 23982:2 24001:1 24008:2 24013:1 24028:2 24039:1 24055:1 24065:1 24067:1 24069:7 24075:2 24076:1 24080:2 24092:2 24093:2 24097:3 24105:1 24112:1 24114:1 24125:1 24131:1 24140:1 24144:3 24147:1 24150:1 24175:1 24181:1 24185:2 24186:10 24191:1 24202:1 24213:1 24217:1 24220:1 24225:2 24232:1 24235:1 24236:1 24251:2 24270:1 24275:1 24283:1 24286:1 24291:5 24304:1 24326:1 24334:2 24363:1 24366:1 24371:1 24379:1 24384:2 24388:4 24393:1 24395:1 24414:1 24420:1 24427:2 24435:1 24436:1 24444:1 24450:1 24476:1 24480:4 24484:2 24491:1 24492:1 24493:1 24495:3 24499:5 24502:1 24503:1 24505:2 24519:2 24524:1 24536:2 24552:3 24572:1 24576:2 24577:3 24591:1 24594:1 24611:2 24612:2 24614:1 24620:1 24623:2 24626:1 24628:4 24631:1 24641:1 24645:1 24646:1 24653:1 24654:1 24656:1 24661:1 24664:1 24675:1 24676:1 24683:1 24687:1 24689:1 24690:1 24699:1 24704:1 24707:1 24711:1 24757:1 24766:4 24778:1 24779:1 24797:1 24802:3 24803:2 24812:1 24815:1 24838:1 24854:5 24858:2 24859:2 24863:1 24871:2 24872:1 24911:1 24919:1 24922:2 24943:2 24971:1 24974:1 24979:1 25025:1 25030:1 25048:2 25064:1 25069:2 25072:1 25075:2 25077:6 25088:1 25097:6 25100:3 25107:1 25130:1 25132:2 25133:2 25134:1 25163:1 25166:2 25173:2 25181:1 25184:1 25192:2 25198:1 25199:1 25205:2 25208:1 25210:1 25212:1 25215:1 25222:4 25227:1 25233:2 25236:1 25238:2 25245:1 25248:1 25255:1 25271:1 25274:1 25277:4 25279:1 25280:1 25281:3 25283:1 25284:2 25295:1 25302:1 25306:2 25309:1 25310:1 25313:1 25322:1 25328:2 25340:1 25351:1 25362:1 25365:1 25378:3 25383:1 25384:1 25387:1 25402:1 25408:1 25413:1 25415:1 25423:2 25427:1 25439:1 25440:4 25451:4 25454:2 25461:1 25467:1 25473:1 25485:5 25495:1 25499:4 25500:1 25511:2 25516:4 25542:1 25546:5 25552:1 25554:1 25565:1 25573:1 25576:15 25585:2 25599:2 25617:2 25628:1 25636:1 25642:1 25688:1 25693:1 25705:1 25707:1 25710:2 25713:3 25715:1 25718:1 25730:1 25732:2 25740:1 25741:1 25760:3 25766:1 25777:3 25778:1 25803:1 25807:1 25809:1 25812:1 25823:1 25832:1 25844:1 25848:1 25849:1 25850:2 25854:1 25860:1 25861:1 25874:1 25875:1 25876:1 25882:1 25884:2 25885:1 25895:2 25920:3 25929:1 25933:1 25944:3 25955:2 25956:2 25961:1 25964:1 25966:2 25988:1 25989:1 25994:1 25995:4 25998:2 26005:2 26018:2 26019:1 26022:15 26023:1 26027:1 26032:1 26035:1 26042:3 26054:1 26061:1 26065:2 26074:1 26088:1 26093:5 26107:1 26113:1 26119:1 26122:1 26125:1 26128:1 26130:1 26145:1 26148:2 26149:1 26156:1 26163:1 26182:1 26202:2 26209:1 26231:2 26233:1 26239:1 26253:3 26268:2 26272:1 26277:1 26278:1 26283:1 26286:1 26291:1 26333:4 26336:1 26352:1 26354:1 26356:4 26372:1 26384:1 26399:1 26401:3 26417:1 26420:1 26428:1 26429:2 26440:2 26450:2 26465:1 26484:1 26489:1 26498:1 26499:1 26509:1 26510:1 26525:1 26536:1 26542:1 26546:1 26580:1 26584:1 26588:1 26597:1 26609:2 26616:1 26622:1 26626:1 26630:2 26632:6 26634:1 26653:1 26654:3 26657:1 26661:2 26663:1 26675:4 26685:1 26691:1 26692:1 26703:4 26710:1 26712:1 26714:3 26734:1 26742:2 26743:7 26744:1 26746:2 26753:1 26754:2 26757:1 26764:2 26773:1 26774:1 26778:3 26789:3 26794:2 26796:1 26799:1 26810:1 26813:1 26818:1 26840:1 26847:1 26851:1 26866:1 26870:2 26875:1 26878:2 26881:1 26884:2 26889:1 26894:1 26897:3 26899:1 26901:1 26911:1 26915:1 26918:5 26923:6 26930:2 26931:2 26932:2 26945:2 26968:1 26970:1 26971:2 26976:1 26979:1 26991:2 26992:1 26994:1 27003:1 27011:1 27021:1 27035:2 27043:1 27045:1 27054:3 27064:2 27074:1 27082:1 27084:1 27087:1 27096:1 27100:10 27130:1 27131:1 27145:1 27150:1 27157:1 27164:2 27172:1 27173:1 27176:3 27178:1 27184:1 27188:3 27196:1 27206:1 27224:1 27227:2 27228:1 27229:1 27230:3 27235:1 27236:1 27249:1 27251:5 27252:1 27254:2 27258:3 27262:1 27265:1 27266:2 27269:1 27271:2 27276:4 27287:2 27296:3 27297:1 27299:3 27311:1 27318:1 27320:1 27329:1 27347:8 27353:1 27359:1 27365:4 27390:1 27392:1 27393:1 27401:1 27403:1 27405:3 27408:1 27411:3 27418:1 27424:1 27426:1 27427:1 27448:2 27451:2 27466:1 27468:1 27472:1 27502:1 27504:1 27516:2 27540:1 27548:1 27556:1 27558:1 27571:1 27574:1 27615:1 27620:1 27649:1 27652:1 27658:3 27659:2 27662:2 27663:1 27666:5 27670:3 27673:8 27675:1 27676:1 27680:1 27689:1 27713:1 27718:1 27722:1 27727:3 27731:1 27732:1 27734:1 27739:1 27745:1 27761:1 27764:1 27771:1 27784:2 27802:2 27808:1 27832:5 27855:1 27858:2 27868:1 27874:2 27885:1 27889:1 27898:1 27899:1 27908:1 27909:1 27912:1 27928:3 27945:1 27950:1 27953:1 27956:3 27965:1 27969:15 27970:2 27974:1 27978:1 27981:1 27993:1 27999:6 28007:1 28008:6 28032:1 28048:1 28060:1 28073:1 28076:1 28080:5 28095:1 28099:1 28105:1 28107:1 28109:2 28113:1 28117:12 28123:3 28131:1 28134:1 28137:1 28151:2 28152:1 28162:1 28165:14 28170:2 28177:1 28207:1 28212:2 28214:2 28220:1 28222:1 28231:1 28233:1 28236:1 28242:1 28243:2 28258:1 28283:1 28296:2 28335:3 28345:1 28358:1 28363:2 28367:1 28375:1 28388:1 28392:47 28393:1 28413:1 28416:5 28417:2 28422:2 28423:5 28424:2 28425:1 28434:1 28435:1 28457:1 28485:4 28490:13 28491:1 28503:1 28509:1 28512:2 28515:1 28522:1 28529:1 28545:1 28546:2 28555:1 28584:1 28597:1 28610:3 28615:2 28634:2 28635:1 28647:1 28660:1 28664:1 28669:5 28690:2 28701:5 28710:1 28753:3 28758:1 28760:1 28775:1 28782:1 28785:1 28787:2 28796:2 28798:1 28803:2 28804:1 28814:1 28843:1 28852:1 28854:1 28857:2 28859:2 28865:1 28875:2 28876:1 28887:1 28894:3 28901:1 28902:1 28903:3 28905:1 28913:1 28923:1 28927:1 28928:1 28937:1 28940:2 28950:1 28954:1 28959:1 28964:1 28974:1 28976:1 28979:1 28986:1 28988:1 28999:1 29000:11 29001:1 29003:2 29005:4 29024:1 29027:1 29031:3 29042:7 29046:1 29053:1 29057:4 29062:2 29063:2 29069:2 29073:38 29079:2 29100:2 29117:1 29120:1 29121:1 29128:1 29137:2 29139:1 29140:1 29141:2 29145:2 29146:2 29147:5 29148:1 29171:1 29176:1 29179:1 29183:1 29184:2 29194:2 29197:3 29201:1 29202:1 29208:1 29215:1 29223:1 29225:2 29236:1 29240:1
2 12:1 13:1 31:2 32:1 36:2 41:1 49:1 52:1 55:1 56:1 59:1 67:2 75:1 85:3 88:1 89:2 91:1 98:1 106:1 113:1 146:2 154:1 160:1 164:1 166:2 170:2 174:2 176:1 180:1 184:1 190:1 193:1 196:1 199:1 206:1 209:1 213:3 223:1 227:1 228:1 241:1 249:3 250:1 252:1 265:4 271:6 272:2 276:2 279:1 286:2 287:1 291:1 292:2 322:2 329:1 354:1 358:1 359:4 375:1 376:2 380:1 384:1 385:1 388:1 391:1 392:1 395:1 415:2 420:1 425:2 429:2 441:1 446:2 452:1 460:1 462:1 469:1 471:2 479:2 490:2 500:1 501:5 505:1 509:1 515:1 519:1 536:2 544:1 552:1 553:1 562:1 564:1 565:1 571:1 593:1 607:3 613:2 618:2 620:1 623:1 632:1 637:1 644:6 652:1 658:39 661:1 663:4 667:1 670:1 671:1 682:1 686:1 696:1 699:3 702:3 714:1 719:2 723:1 725:1 728:2 735:2 745:3 749:1 752:1 783:2 809:1 813:2 815:1 817:3 820:2 822:1 823:2 824:3 838:1 857:1 861:4 868:1 876:3 882:1 885:1 894:1 904:3 905:7 907:3 908:1 917:6 921:1 930:1 937:5 943:1 951:2 957:4 960:13 964:1 965:3 970:1 976:2 978:1 980:2 982:4 999:2 1003:1 1006:4 1016:3 1027:1 1029:3 1032:1 1036:1 1048:2 1050:1 1055:4 1056:1 1058:1 1091:1 1092:1 1098:2 1099:1 1100:1 1107:1 1112:1 1137:1 1146:1 1158:1 1160:4 1173:1 1187:1 1190:2 1211:1 1214:38 1220:3 1223:2 1224:2 1227:1 1229:4 1232:1 1245:1 1256:3 1258:2 1260:2 1266:1 1270:1 1275:1 1277:1 1279:4 1280:2 1281:1 1288:1 1290:1 1291:1 1295:1 1298:1 1302:1 1314:1 1316:4 1338:3 1354:2 1356:2 1357:1 1380:4 1390:1 1393:1 1395:1 1397:1 1402:2 1404:11 1405:1 1420:1 1430:1 1444:1 1452:3 1459:1 1462:2 1475:1 1481:1 1493:1 1499:1 1501:1 1502:4 1506:2 1510:18 1512:1 1516:1 1517:1 1528:1 1530:2 1532:1 1540:1 1546:2 1548:2 1550:1 1575:1 1576:3 1582:2 1598:1 1602:6 1615:1 1616:1 1631:1 1636:1 1637:2 1639:1 1647:3 1650:1 1666:1 1672:1 1676:1 1677:11 1685:1 1687:1 1690:1 1691:3 1705:1 1720:1 1728:1 1740:2 1741:1 1745:3 1757:1 1760:1 1762:1 1776:1 1778:1 1779:1 1783:1 1787:1 1795:1 1820:1 1827:1 1833:1 1838:1 1840:1 1842:1 1853:1 1866:1 1870:3 1871:2 1877:2 1878:1 1892:1 1895:1 1897:1 1898:3 1901:1 1907:1 1913:1 1918:2 1921:3 1930:1 1937:1 1941:2 1947:2 1957:3 1959:1 1973:1 1976:1 1977:1 1980:1 1982:1 1986:1 1988:1 1992:1 1993:2 2001:1 2008:1 2022:8 2042:1 2044:1 2045:1 2048:1 2051:2 2053:1 2076:1 2077:1 2078:1 2085:1 2094:2 2108:1 2115:1 2117:1 2118:2 2121:1 2123:1 2125:1 2127:1 2140:1 2144:1 2145:1 2153:1 2157:2 2158:1 2159:1 2161:1 2172:1 2176:1 2181:1 2186:1 2196:12 2217:1 2235:3 2238:1 2239:1 2265:1 2269:2 2291:2 2293:1 2299:1 2325:1 2329:1 2333:1 2334:2 2335:2 2336:4 2337:3 2338:2 2339:3 2341:1 2342:6 2343:1 2347:10 2349:5 2352:7 2356:5 2359:1 2360:3 2362:1 2364:1 2367:1 2369:4 2372:4 2375:1 2376:1 2379:1 2382:1 2383:1 2405:1 2406:1 2412:1 2421:3 2422:1 2430:5 2433:1 2439:1 2457:2 2460:1 2478:2 2479:1 2480:1 2482:1 2485:1 2487:1 2492:1 2494:4 2495:4 2500:1 2503:4 2513:2 2514:4 2522:4 2523:1 2531:1 2533:1 2539:1 2550:4 2562:1 2563:1 2564:1 2571:1 2596:1 2603:2 2604:2 2610:1 2616:1 2624:1 2639:1 2643:1 2646:3 2653:1 2660:1 2663:1 2674:2 2680:1 2681:1 2707:1 2729:1 2730:1 2735:1 2736:2 2745:1 2751:2 2758:3 2766:1 2767:2 2773:1 2775:1 2777:1 2785:3 2787:2 2791:4 2804:1 2809:1 2812:3 2813:4 2819:1 2822:3 2826:1 2833:1 2839:1 2841:1 2872:3 2877:1 2881:5 2883:5 2886:1 2889:1 2892:4 2901:2 2904:1 2915:1 2937:2 2940:1 2948:1 2949:2 2954:1 2956:2 2963:1 2982:17 2984:39 2986:1 2990:1 2991:3 2998:2 3002:2 3005:1 3014:1 3018:2 3019:1 3023:4 3024:1 3029:1 3032:1 3039:8 3049:1 3053:4 3057:2 3061:1 3067:1 3070:1 3091:2 3097:1 3100:1 3101:1 3127:2 3133:4 3139:1 3142:1 3169:3 3196:2 3219:1 3226:1 3261:1 3267:1 3278:4 3281:1 3293:1 3297:1 3301:1 3316:2 3337:2 3340:1 3341:2 3351:1 3354:3 3360:1 3366:1 3368:4 3380:1 3385:1 3387:2 3393:1 3399:1 3401:4 3419:2 3445:1 3482:1 3486:1 3502:1 3506:1 3521:2 3525:1 3527:1 3536:1 3540:1 3541:1 3548:1 3550:1 3552:1 3556:2 3564:1 3569:1 3574:1 3577:1 3601:1 3604:1 3606:1 3612:1 3617:1 3627:1 3628:1 3632:1 3642:1 3645:1 3666:2 3677:1 3684:1 3690:1 3697:1 3704:1 3715:1 3734:1 3753:1 3758:1 3773:3 3774:2 3775:1 3779:3 3782:3 3797:1 3798:1 3823:1 3831:3 3833:1 3861:1 3867:1 3868:2 3872:2 3877:1 3882:1 3884:3 3886:1 3902:1 3907:2 3909:2 3915:2 3936:1 3938:1 3940:1 3946:3 3960:1 3963:1 3964:1 3968:1 3985:1 3990:38 3991:3 3998:1 4007:2 4012:1 4020:1 4049:1 4052:1 4053:1 4056:1 4066:1 4069:1 4071:1 4072:2 4079:4 4081:6 4093:1 4096:2 4102:2 4108:1 4113:6 4117:7 4118:2 4131:1 4132:2 4133:1 4148:1 4169:1 4171:1 4182:1 4192:1 4195:1 4196:3 4208:3 4213:1 4216:1 4225:1 4231:1 4258:1 4260:1 4262:2 4264:2 4267:1 4269:1 4272:1 4277:1 4283:1 4293:1 4304:1 4307:1 4309:2 4310:1 4312:4 4317:1 4319:3 4331:1 4357:1 4370:1 4372:1 4376:3 4394:1 4402:1 4405:2 4407:1 4409:1 4411:1 4412:1 4415:2 4424:1 4432:2 4434:38 4435:1 4443:2 4446:1 4448:1 4452:5 4462:1 4466:1 4475:1 4477:2 4479:1 4495:1 4499:1 4527:2 4535:6 4550:1 4553:1 4554:1 4557:1 4564:1 4580:1 4590:3 4604:2 4609:3 4610:1 4618:2 4622:2 4623:1 4626:1 4629:1 4648:1 4668:9 4676:2 4698:2 4717:1 4740:1 4744:1 4752:1 4774:6 4790:4 4796:1 4811:1 4812:1 4818:6 4826:1 4839:1 4854:1 4863:1 4867:1 4870:1 4883:1 4898:1 4902:5 4903:2 4908:2 4909:1 4913:1 4916:1 4920:4 4931:1 4942:1 4943:3 4954:1 4974:1 4976:1 4977:1 4978:1 4983:1 4997:3 4998:2 5012:21 5013:2 5022:2 5025:1 5046:9 5053:2 5063:2 5073:1 5074:1 5087:2 5089:1 5091:1 5106:1 5138:4 5140:2 5143:5 5149:1 5159:4 5160:6 5161:2 5164:1 5167:6 5173:1 5174:2 5175:4 5176:1 5183:1 5190:2 5192:6 5193:1 5194:4 5195:1 5205:1 5214:1 5230:1 5264:1 5267:1 5268:2 5273:1 5283:1 5300:1 5314:1 5324:1 5329:1 5342:1 5361:1 5389:1 5403:1 5406:1 5427:1 5430:1 5438:1 5439:2 5440:1 5462:1 5482:1 5485:1 5486:1 5495:2 5496:2 5520:1 5533:1 5534:4 5547:1 5549:2 5567:1 5574:1 5577:2 5579:1 5583:1 5603:1 5606:1 5613:2 5624:1 5626:1 5630:3 5634:1 5661:1 5690:1 5699:1 5700:1 5707:1 5712:1 5713:1 5716:1 5723:2 5724:1 5726:2 5729:2 5739:1 5740:1 5741:1 5742:1 5762:2 5774:1 5776:1 5780:11 5782:1 5784:1 5790:2 5792:1 5794:1 5800:1 5802:2 5807:1 5822:2 5833:2 5839:1 5841:1 5853:2 5860:2 5864:1 5880:1 5889:1 5896:1 5908:2 5921:1 5924:1 5926:2 5939:2 5943:1 5968:3 5992:1 6005:1 6017:1 6019:1 6027:1 6034:1 6042:1 6043:1 6063:1 6064:1 6065:2 6074:1 6076:3 6079:1 6092:1 6097:2 6118:1 6121:1 6143:1 6149:1 6151:2 6157:1 6162:1 6168:2 6176:2 6182:3 6187:1 6195:1 6198:1 6203:1 6207:3 6208:5 6209:1 6211:1 6212:1 6217:1 6220:1 6221:1 6222:1 6224:1 6227:1 6242:1 6247:1 6248:1 6255:1 6276:1 6281:1 6294:2 6295:2 6296:1 6301:1 6302:1 6304:1 6307:2 6308:1 6311:1 6312:1 6313:1 6315:3 6317:1 6320:2 6322:2 6324:2 6325:3 6326:1 6330:1 6345:1 6356:2 6382:1 6388:5 6391:2 6399:1 6408:4 6410:2 6416:1 6428:4 6434:1 6436:2 6437:1 6445:1 6448:1 6456:1 6479:2 6486:2 6500:1 6507:1 6510:1 6523:10 6527:1 6528:1 6533:2 6534:5 6536:2 6538:1 6539:1 6540:2 6541:1 6543:5 6545:4 6546:1 6547:1 6550:4 6552:9 6553:1 6554:3 6560:1 6563:1 6581:1 6595:1 6599:1 6600:2 6601:1 6615:1 6619:1 6629:1 6637:1 6657:1 6666:2 6667:1 6674:3 6679:3 6694:1 6702:3 6717:1 6720:1 6736:1 6744:1 6746:1 6747:1 6749:1 6755:1 6762:1 6763:1 6769:1 6772:1 6776:1 6785:1 6792:1 6795:2 6796:1 6809:1 6810:3 6820:1 6831:2 6850:1 6853:1 6866:1 6872:1 6892:1 6893:1 6899:1 6901:1 6904:1 6908:3 6911:1 6913:1 6927:3 6932:1 6939:1 6944:1 6960:3 6962:1 6967:1 6974:1 6991:2 6997:3 7025:1 7030:1 7040:1 7059:1 7063:2 7077:1 7083:2 7101:1 7102:1 7114:1 7117:1 7119:1 7130:1 7177:1 7178:1 7180:1 7184:1 7187:1 7192:5 7203:1 7205:1 7212:2 7217:6 7264:1 7269:1 7271:1 7277:1 7283:1 7287:2 7289:1 7295:1 7301:2 7315:1 7319:1 7332:2 7346:1 7351:1 7369:3 7375:1 7398:1 7406:1 7409:2 7412:1 7413:2 7415:1 7417:1 7423:1 7428:1 7431:1 7435:1 7437:1 7442:1 7447:1 7474:1 7476:1 7485:1 7495:1 7496:2 7508:1 7516:1 7522:1 7527:1 7540:1 7543:2 7562:1 7563:1 7571:1 7574:1 7582:1 7593:1 7596:6 7629:9 7632:1 7636:1 7663:1 7664:2 7673:1 7679:1 7693:2 7707:1 7716:1 7718:1 7722:1 7725:1 7748:4 7749:1 7752:1 7779:1 7782:1 7787:1 7803:3 7815:13 7816:13 7821:1 7828:1 7832:1 7833:3 7834:1 7835:6 7837:1 7864:5 7868:4 7871:1 7878:60 7882:1 7883:1 7886:2 7890:1 7891:1 7897:19 7900:6 7903:1 7907:1 7908:1 7911:1 7932:1 7933:4 7936:2 7941:2 7949:1 7957:1 7974:1 7985:6 7986:1 7996:2 8002:1 8013:1 8014:1 8037:1 8039:3 8054:4 8063:1 8065:1 8071:1 8075:4 8077:1 8083:1 8087:1 8105:1 8109:7 8119:1 8122:1 8129:1 8141:1 8159:1 8162:2 8176:2 8189:1 8196:1 8249:1 8253:1 8286:2 8290:1 8300:1 8307:1 8308:1 8312:3 8316:1 8348:2 8351:1 8352:1 8364:1 8376:2 8377:38 8383:1 8384:1 8392:1 8394:1 8396:1 8402:1 8410:21 8411:4 8426:1 8428:2 8441:1 8443:1 8445:1 8447:1 8449:2 8462:1 8466:1 8475:1 8480:1 8492:48 8499:1 8501:1 8531:2 8537:1 8554:1 8561:1 8588:2 8596:1 8598:1 8605:1 8608:1 8631:1 8645:1 8651:1 8657:1 8659:2 8667:1 8671:1 8674:3 8677:1 8680:1 8683:2 8687:1 8693:5 8694:1 8713:1 8720:1 8725:2 8737:1 8745:3 8746:1 8749:1 8750:1 8760:2 8762:1 8763:2 8766:2 8768:1 8778:2 8779:2 8782:1 8783:1 8792:1 8797:1 8812:1 8813:1 8822:1 8832:1 8836:2 8841:1 8845:1 8850:2 8859:1 8862:4 8883:1 8911:1 8915:1 8923:1 8926:1 8928:1 8931:3 8987:3 8989:1 8991:1 9014:2 9019:1 9024:1 9039:1 9052:1 9057:2 9059:1 9061:1 9063:1 9066:1 9067:1 9069:2 9086:1 9090:4 9106:1 9110:2 9111:1 9112:4 9118:1 9129:3 9138:1 9139:1 9140:1 9184:1 9191:3 9196:1 9199:2 9204:2 9236:1 9238:6 9244:1 9247:5 9256:1 9258:1 9264:2 9300:1 9320:4 9341:1 9343:3 9344:2 9354:1 9377:1 9378:4 9382:2 9384:1 9391:5 9393:3 9394:1 9396:1 9400:1 9404:2 9406:2 9408:2 9409:1 9415:1 9417:1 9421:1 9428:1 9429:1 9432:1 9435:1 9442:1 9444:1 9445:1 9446:1 9447:2 9448:1 9449:1 9456:1 9466:1 9472:1 9473:3 9483:9 9487:2 9490:2 9496:2 9504:1 9506:1 9521:3 9525:1 9534:1 9543:1 9546:2 9558:1 9563:3 9564:2 9571:1 9580:1 9592:1 9597:1 9600:1 9607:1 9610:1 9611:2 9616:2 9619:2 9622:1 9623:1 9624:1 9627:1 9628:2 9629:1 9637:1 9641:1 9642:1 9651:1 9653:1 9658:2 9660:1 9661:11 9675:1 9677:2 9678:12 9681:1 9689:1 9694:1 9698:1 9701:3 9703:1 9706:1 9715:1 9717:1 9719:3 9720:1 9721:2 9723:1 9726:1 9738:1 9751:1 9752:1 9763:1 9764:1 9773:1 9779:1 9782:1 9795:1 9797:2 9802:1 9803:1 9804:2 9805:1 9813:1 9820:1 9828:1 9829:1 9841:1 9842:1 9855:1 9856:1 9860:1 9887:1 9905:6 9914:1 9915:1 9916:1 9920:1 9921:3 9924:4 9927:1 9934:1 9936:1 9938:1 9960:1 9961:1 9962:1 9974:1 9987:1 10003:2 10016:1 10028:1 10029:1 10046:38 10050:1 10053:1 10055:1 10061:2 10069:1 10077:1 10083:2 10092:1 10097:1 10098:1 10102:1 10115:1 10117:1 10122:2 10131:2 10134:1 10138:1 10144:1 10166:1 10170:5 10174:1 10177:3 10184:1 10188:2 10195:2 10220:1 10229:1 10233:1 10242:2 10243:2 10252:2 10255:1 10260:1 10261:2 10266:2 10268:2 10280:5 10284:5 10292:1 10297:3 10299:1 10322:5 10326:1 10336:1 10337:1 10339:2 10350:1 10359:1 10362:1 10369:1 10381:2 10383:3 10384:1 10388:1 10393:1 10402:1 10404:1 10405:1 10417:1 10425:1 10426:8 10440:2 10464:1 10497:1 10518:2 10522:1 10526:1 10527:1 10542:5 10555:1 10564:2 10573:1 10575:2 10576:2 10582:1 10594:1 10604:1 10609:1 10619:1 10623:2 10624:8 10632:1 10641:1 10657:1 10664:3 10681:1 10691:1 10705:1 10707:1 10725:1 10740:5 10745:1 10758:1 10760:5 10761:2 10770:1 10773:1 10786:2 10814:1 10820:3 10834:1 10840:1 10842:2 10859:1 10860:5 10864:2 10867:8 10874:1 10882:1 10894:1 10899:1 10907:2 10912:1 10914:1 10922:1 10923:2 10926:1 10929:7 10934:1 10942:1 10947:1 10955:3 10956:1 10963:1 10976:2 10980:1 10990:1 11004:1 11005:1 11036:1 11065:1 11066:11 11082:1 11083:1 11086:1 11089:1 11098:3 11100:1 11108:1 11111:3 11114:3 11117:3 11124:2 11131:1 11143:5 11148:1 11152:1 11158:1 11164:1 11167:2 11170:2 11176:1 11178:1 11185:1 11195:1 11197:10 11199:1 11200:1 11203:1 11207:1 11215:1 11217:3 11219:4 11220:1 11231:4 11234:2 11237:1 11246:1 11256:1 11264:1 11266:1 11269:1 11276:6 11279:1 11281:1 11283:1 11285:1 11286:2 11293:2 11300:1 11303:2 11305:1 11311:1 11320:1 11333:1 11347:3 11350:1 11372:1 11373:1 11375:1 11383:1 11385:1 11390:1 11400:1 11404:3 11407:1 11437:2 11455:1 11456:2 11464:2 11465:1 11466:1 11474:1 11475:1 11476:4 11477:1 11480:1 11483:2 11484:1 11487:1 11490:1 11502:2 11503:6 11505:1 11508:1 11510:1 11511:1 11518:1 11532:1 11535:3 11538:1 11552:1 11568:1 11571:5 11591:1 11606:1 11607:1 11609:2 11613:1 11614:1 11617:1 11622:1 11627:1 11629:1 11636:10 11648:2 11649:2 11674:1 11679:1 11684:1 11694:2 11695:1 11699:1 11702:1 11714:1 11732:2 11744:1 11746:2 11750:2 11770:1 11775:6 11797:1 11800:1 11803:1 11809:1 11812:3 11824:1 11825:1 11827:2 11829:1 11834:2 11838:1 11839:7 11840:5 11845:2 11848:1 11851:6 11854:1 11871:1 11878:1 11881:2 11891:1 11895:2 11899:1 11900:9 11904:1 11907:1 11916:1 11930:1 11931:1 11936:2 11940:1 11949:1 11955:1 11979:1 11992:3 11995:1 11996:1 12003:4 12011:1 12039:1 12043:4 12054:1 12069:1 12083:1 12089:1 12090:2 12092:1 12109:1 12110:1 12139:1 12140:1 12142:1 12154:1 12163:2 12164:1 12179:1 12193:1 12223:1 12224:1 12235:1 12240:3 12243:1 12261:4 12277:1 12281:1 12283:1 12286:1 12289:2 12311:1 12322:1 12329:1 12330:1 12332:3 12337:2 12338:1 12339:3 12340:1 12344:6 12345:1 12348:1 12354:1 12364:1 12372:1 12376:1 12383:1 12385:1 12406:1 12421:1 12431:1 12444:1 12455:1 12460:3 12461:5 12470:1 12478:1 12483:1 12505:1 12510:1 12513:2 12522:1 12532:2 12555:1 12563:1 12575:1 12588:1 12597:3 12599:1 12606:1 12612:2 12613:1 12632:1 12633:1 12635:1 12648:1 12650:2 12657:1 12664:1 12666:1 12722:1 12723:1 12733:1 12742:1 12746:1 12763:1 12767:1 12790:3 12792:39 12797:1 12800:1 12809:1 12813:6 12815:1 12821:1 12859:6 12873:1 12884:2 12888:1 12892:1 12902:1 12916:1 12922:1 12927:1 12932:1 12935:1 12964:2 12967:1 12969:2 12980:1 13001:1 13008:1 13009:1 13020:1 13024:2 13027:1 13032:1 13038:1 13045:1 13054:1 13086:2 13095:1 13100:3 13111:1 13116:1 13132:1 13141:2 13145:1 13163:1 13174:1 13180:1 13182:1 13183:1 13193:1 13195:1 13217:1 13229:1 13238:2 13239:1 13245:1 13257:1 13259:1 13262:1 13265:1 13268:1 13269:1 13280:1 13286:13 13291:4 13294:3 13306:1 13307:1 13313:2 13326:1 13339:1 13340:1 13384:1 13389:2 13400:1 13412:1 13417:1 13418:1 13419:2 13424:2 13427:6 13430:6 13437:1 13462:1 13464:1 13480:1 13482:1 13491:14 13495:1 13502:1 13532:1 13541:1 13563:1 13584:1 13585:2 13595:1 13626:1 13629:1 13639:3 13641:4 13647:3 13665:1 13673:1 13675:2 13676:1 13680:1 13688:1 13695:2 13700:2 13705:1 13707:1 13713:1 13716:1 13717:1 13729:3 13732:1 13747:1 13766:1 13770:2 13772:3 13773:1 13775:1 13777:1 13780:1 13782:13 13783:1 13784:1 13786:2 13804:1 13805:2 13806:1 13807:1 13808:1 13809:1 13811:1 13812:1 13814:6 13818:1 13821:1 13826:1 13827:2 13859:1 13868:1 13869:1 13873:2 13889:1 13901:1 13910:1 13928:1 13933:1 13935:1 13939:1 13941:2 13951:10 13953:1 13955:2 13963:1 13974:1 13980:1 13988:1 13991:1 13998:1 14001:1 14012:1 14028:1 14030:2 14038:5 14052:1 14055:1 14057:3 14059:1 14069:14 14072:8 14096:1 14107:1 14116:1 14135:1 14147:2 14154:1 14156:5 14166:2 14177:4 14179:1 14202:1 14229:1 14232:1 14241:1 14248:1 14256:1 14259:1 14261:3 14273:1 14275:2 14278:1 14290:1 14299:1 14301:1 14308:2 14314:1 14323:1 14329:1 14355:1 14361:5 14372:1 14393:1 14398:1 14420:2 14422:1 14426:1 14440:3 14449:2 14450:1 14451:1 14454:1 14460:2 14465:2 14466:2 14468:3 14471:1 14472:1 14480:1 14485:2 14486:1 14497:1 14498:2 14506:2 14516:1 14541:1 14555:1 14557:1 14559:1 14560:2 14564:1 14574:1 14575:2 14576:1 14578:1 14590:2 14592:2 14607:1 14612:1 14613:2 14615:1 14617:2 14621:1 14622:1 14623:1 14625:1 14626:1 14627:1 14629:1 14634:1 14638:1 14641:1 14643:2 14652:1 14653:1 14657:2 14659:1 14664:1 14670:2 14671:1 14684:1 14688:1 14699:39 14700:1 14705:3 14708:1 14709:1 14714:1 14721:1 14728:1 14736:2 14747:1 14786:1 14789:1 14792:6 14793:1 14800:1 14801:1 14806:2 14827:1 14832:1 14847:3 14850:1 14852:1 14863:1 14869:1 14870:1 14879:1 14887:6 14890:1 14900:1 14902:1 14906:1 14931:1 14939:1 14941:1 14944:1 14979:1 14993:2 14995:1 15000:2 15001:2 15003:1 15010:1 15016:1 15031:1 15040:1 15054:1 15060:1 15069:1 15070:2 15072:2 15080:1 15087:1 15100:1 15104:2 15105:1 15106:1 15109:9 15113:1 15169:1 15174:1 15175:1 15188:1 15193:4 15194:1 15197:1 15204:1 15208:1 15218:1 15223:1 15237:2 15238:1 15245:2 15247:3 15257:1 15258:1 15267:1 15278:2 15298:1 15299:1 15306:1 15315:2 15319:1 15322:2 15340:2 15341:1 15351:1 15379:3 15380:1 15386:1 15396:1 15408:1 15409:3 15432:1 15433:1 15452:1 15458:1 15462:2 15465:1 15478:1 15482:2 15484:2 15488:1 15491:1 15506:2 15521:1 15526:1 15536:1 15542:1 15555:1 15556:3 15557:4 15566:1 15584:1 15590:2 15608:9 15610:1 15612:1 15616:2 15619:2 15625:1 15633:1 15653:1 15674:1 15678:1 15690:1 15693:2 15718:1 15722:1 15723:1 15730:1 15738:1 15741:1 15742:4 15745:2 15755:1 15757:1 15762:4 15778:1 15779:1 15782:1 15783:1 15792:1 15795:1 15796:6 15802:3 15805:2 15818:4 15819:1 15823:1 15827:1 15828:2 15835:3 15844:1 15888:1 15890:1 15897:5 15899:2 15921:4 15923:2 15931:1 15944:1 15946:1 15951:1 15960:1 15961:3 15971:1 15973:5 15988:1 16006:1 16020:1 16023:1 16025:1 16031:1 16038:1 16051:1 16057:2 16060:15 16062:2 16063:1 16067:1 16096:4 16098:3 16100:1 16105:3 16116:1 16133:2 16137:1 16139:3 16140:2 16142:1 16143:2 16165:13 16178:1 16183:1 16185:1 16186:1 16193:1 16200:4 16203:1 16226:1 16239:2 16250:1 16252:1 16254:1 16262:1 16264:1 16270:1 16271:3 16278:1 16279:1 16285:4 16286:3 16287:1 16291:4 16292:2 16297:1 16298:1 16299:5 16300:1 16301:2 16304:1 16306:1 16321:1 16333:2 16357:2 16380:1 16381:1 16387:1 16392:1 16404:1 16413:1 16416:1 16418:1 16419:1 16440:1 16448:1 16452:1 16455:1 16457:1 16468:2 16476:1 16484:2 16510:1 16522:1 16523:1 16524:2 16527:1 16579:1 16590:2 16604:2 16613:1 16617:1 16631:4 16634:1 16644:2 16646:11 16647:1 16649:1 16658:1 16679:1 16687:1 16689:1 16692:1 16704:1 16712:2 16714:4 16717:1 16723:1 16724:1 16725:2 16749:1 16751:1 16757:1 16766:1 16769:1 16773:3 16776:1 16782:2 16791:1 16797:2 16800:3 16810:1 16811:2 16822:1 16878:1 16881:1 16899:1 16912:2 16916:1 16918:1 16922:1 16926:52 16932:1 16933:3 16934:1 16944:1 16949:1 16951:1 16963:1 16966:1 16967:4 16998:1 17020:1 17028:1 17030:1 17033:1 17038:2 17042:1 17047:1 17060:1 17068:3 17072:2 17083:1 17088:1 17099:1 17103:2 17132:1 17138:1 17143:1 17144:1 17160:1 17166:2 17169:1 17181:1 17184:1 17199:1 17207:1 17208:1 17213:1 17234:1 17236:2 17240:2 17241:1 17243:1 17250:1 17255:1 17266:1 17281:1 17284:1 17329:1 17332:1 17346:1 17356:2 17359:1 17361:2 17363:1 17372:2 17374:1 17375:2 17380:2 17383:1 17384:1 17388:1 17393:2 17395:1 17406:1 17424:2 17436:1 17440:1 17443:2 17447:2 17449:1 17450:2 17452:1 17455:1 17457:1 17459:2 17465:2 17475:1 17484:1 17490:1 17512:1 17535:2 17541:1 17545:1 17549:2 17555:2 17560:1 17579:1 17580:2 17593:1 17604:1 17609:1 17620:1 17623:1 17631:1 17632:4 17634:1 17637:2 17639:1 17645:1 17649:1 17662:1 17664:1 17671:2 17672:2 17683:1 17684:1 17689:1 17692:1 17708:1 17711:2 17717:1 17727:3 17731:2 17758:4 17759:1 17766:5 17776:1 17787:4 17788:1 17796:1 17812:1 17817:1 17844:2 17855:8 17859:1 17860:2 17884:3 17891:1 17909:2 17926:1 17929:2 17930:1 17936:2 17937:1 17945:1 17964:1 17980:1 17986:2 18012:1 18013:5 18017:2 18018:2 18019:1 18026:1 18030:1 18035:1 18041:1 18052:1 18055:2 18058:2 18076:1 18098:1 18100:2 18104:1 18123:1 18129:1 18141:1 18142:1 18146:5 18156:1 18204:1 18206:2 18210:1 18223:1 18234:3 18245:1 18258:1 18265:1 18269:1 18300:14 18307:1 18310:2 18316:1 18332:1 18340:2 18370:1 18374:1 18377:4 18384:1 18393:1 18395:1 18401:1 18402:1 18417:1 18419:1 18422:1 18431:2 18447:2 18450:1 18456:1 18462:1 18471:1 18492:1 18499:1 18504:1 18507:1 18516:2852 18527:2 18531:1 18538:2 18551:1 18553:1 18555:2 18566:1 18581:1 18583:1 18587:1 18589:1 18595:1 18597:1 18604:1 18619:1 18626:1 18638:3 18648:1 18651:3 18653:1 18659:1 18678:1 18680:1 18691:1 18702:1 18707:1 18709:1 18712:2 18724:2 18732:1 18760:1 18771:1 18775:1 18780:2 18781:1 18787:1 18802:1 18832:1 18837:1 18850:2 18858:1 18859:1 18863:1 18864:1 18894:2 18901:1 18902:1 18918:1 18933:1 18952:1 18960:1 18969:1 18976:2 18978:1 18982:1 18986:1 19000:1 19003:1 19013:1 19014:3 19016:2 19034:1 19037:1 19051:1 19061:1 19083:1 19085:7 19116:5 19120:1 19128:1 19131:2 19137:2 19174:1 19175:1 19178:1 19181:1 19184:1 19189:1 19192:1 19198:1 19219:1 19223:1 19230:2 19239:1 19245:1 19253:1 19257:1 19259:1 19268:1 19276:1 19282:8 19283:4 19290:1 19315:1 19318:5 19333:1 19342:2 19346:1 19362:1 19377:23 19384:1 19399:2 19409:1 19420:2 19421:1 19426:1 19427:1 19428:1 19429:2 19447:1 19451:4 19452:1 19453:1 19454:2 19461:2 19469:1 19477:1 19481:2 19490:3 19491:1 19496:1 19500:1 19509:1 19513:1 19530:2 19558:1 19561:1 19573:1 19574:2 19576:1 19580:1 19584:4 19589:2 19603:1 19609:3 19611:1 19635:1 19638:1 19641:1 19653:2 19656:1 19658:1 19663:1 19678:2 19685:1 19692:1 19697:2 19709:1 19713:2 19715:1 19726:1 19728:1 19732:1 19737:5 19757:1 19767:1 19768:1 19790:1 19793:1 19813:1 19819:1 19820:3 19822:2 19823:1 19829:1 19835:1 19847:1 19851:2 19861:1 19866:2 19881:2 19896:1 19927:4 19929:9 19937:1 19940:1 19945:1 19947:1 19950:1 19957:1 19962:1 19964:1 19967:1 19972:2 19986:1 19992:2 19995:2 20000:1 20001:3 20002:7 20005:1 20021:1 20027:1 20029:2 20030:6 20031:1 20033:1 20042:1 20043:1 20051:5 20079:3 20099:2 20103:1 20109:3 20117:1 20121:1 20123:6 20131:1 20132:1 20144:3 20149:1 20156:1 20162:2 20185:1 20199:1 20208:1 20211:5 20223:2 20244:1 20258:1 20259:2 20268:1 20275:1 20285:1 20291:1 20293:1 20311:1 20338:1 20354:1 20365:2 20375:1 20387:1 20390:1 20401:1 20408:1 20451:6 20455:1 20460:2 20462:1 20483:1 20484:2 20495:2 20499:2 20500:1 20513:3 20525:1 20541:1 20555:1 20578:1 20591:1 20601:1 20602:3 20605:1 20623:1 20630:2 20649:1 20653:1 20661:3 20664:2 20668:1 20674:2 20684:1 20691:2 20692:3 20697:1 20699:1 20702:2 20703:1 20704:2 20711:1 20718:2 20720:1 20725:1 20733:1 20748:1 20754:1 20762:2 20764:2 20767:1 20773:3 20787:1 20788:1 20789:1 20798:1 20799:1 20801:1 20805:1 20808:2 20810:2 20828:1 20829:1 20833:1 20837:1 20840:2 20842:2 20848:1 20853:4 20862:2 20863:1 20866:1 20869:3 20870:2 20878:2 20886:1 20892:5 20899:1 20918:1 20921:1 20925:1 20940:1 20942:5 20945:1 20953:2 20958:1 20994:1 20996:1 21001:2 21004:3 21018:1 21021:1 21026:1 21037:2 21057:2 21061:2 21063:1 21071:2 21078:1 21087:1 21106:1 21114:1 21122:1 21125:1 21127:1 21132:1 21137:1 21146:1 21151:1 21153:1 21155:1 21171:1 21185:1 21190:1 21196:1 21202:2 21204:1 21206:5 21219:2 21228:1 21233:1 21237:3 21257:1 21265:1 21271:2 21276:1 21285:1 21286:1 21289:1 21306:1 21308:1 21310:1 21311:1 21313:4 21317:1 21329:1 21332:2 21341:1 21345:1 21351:2 21353:1 21359:1 21361:1 21362:1 21363:1 21364:2 21369:2 21374:1 21382:2 21397:1 21398:1 21410:1 21411:1 21414:1 21415:2 21420:1 21427:1 21436:1 21442:1 21449:2 21451:1 21455:3 21464:4 21471:1 21472:1 21473:1 21475:1 21476:1 21492:2 21493:2 21506:1 21508:4 21517:1 21518:1 21530:1 21535:1 21543:1 21544:1 21545:1 21547:1 21558:3 21562:1 21570:4 21573:2 21574:1 21577:1 21590:1 21601:1 21610:1 21620:1 21625:8 21626:1 21634:1 21648:1 21650:2 21658:1 21663:1 21695:2 21696:1 21699:1 21705:8 21711:2 21712:1 21714:1 21715:5 21719:1 21728:3 21739:1 21741:1 21748:1 21763:2 21764:12 21775:1 21791:1 21835:1 21837:1 21843:1 21845:1 21877:1 21879:2 21881:5 21884:3 21887:1 21895:2 21896:1 21897:1 21898:2 21906:2 21908:2 21915:1 21918:1 21919:1 21923:7 21924:4 21925:1 21930:1 21934:1 21936:1 21937:1 21939:1 21947:1 21955:1 21975:1 21997:1 22000:1 22015:1 22026:3 22028:1 22047:3 22058:2 22062:1 22066:4 22069:1 22082:2 22086:1 22093:1 22095:2 22114:1 22128:4 22133:1 22139:1 22143:1 22144:1 22151:1 22161:4 22170:1 22175:2 22179:2 22186:1 22192:1 22199:1 22214:1 22219:2 22223:1 22235:1 22242:2 22248:17 22262:2 22267:2 22275:1 22296:1 22310:14 22312:2 22316:1 22321:1 22329:1 22334:1 22335:1 22338:1 22342:1 22362:1 22365:4 22368:2 22370:1 22378:1 22379:4 22383:2 22390:1 22416:2 22418:1 22425:7 22432:1 22439:2 22448:1 22456:5 22457:1 22462:1 22471:1 22475:1 22479:1 22481:1 22490:1 22492:2 22510:1 22516:2 22533:1 22536:1 22542:1 22543:2 22555:10 22566:3 22582:1 22583:1 22599:3 22622:1 22640:1 22647:1 22665:2 22667:1 22671:1 22676:2 22683:1 22687:1 22688:1 22691:1 22694:38 22700:1 22709:1 22713:3 22714:3 22716:1 22717:1 22718:2 22719:1 22721:1 22723:1 22727:1 22752:2 22757:3 22759:1 22760:1 22762:1 22768:3 22770:1 22771:1 22781:1 22805:1 22809:1 22816:1 22838:1 22841:1 22842:6 22852:3 22861:2 22866:1 22871:4 22874:1 22887:1 22899:1 22901:1 22925:1 22938:1 22986:1 22990:3 23000:4 23008:1 23019:1 23060:1 23074:1 23075:1 23079:1 23083:2 23093:1 23095:3 23100:1 23103:1 23108:3 23109:1 23111:1 23113:1 23115:2 23120:1 23147:39 23168:3 23169:2 23176:1 23186:1 23199:1 23202:1 23209:1 23223:1 23227:1 23228:1 23230:1 23234:1 23235:2 23236:1 23242:2 23247:6 23252:1 23267:1 23276:1 23283:2 23289:1 23290:1 23294:1 23305:1 23307:1 23315:1 23321:3 23325:2 23329:1 23336:1 23348:2 23350:1 23358:1 23359:1 23371:1 23379:2 23381:3 23385:1 23408:2 23416:1 23426:1 23433:1 23460:1 23465:1 23487:1 23490:3 23506:5 23508:1 23509:2 23525:1 23541:1 23543:1 23578:1 23593:1 23596:1 23610:1 23617:2 23622:1 23630:1 23641:2 23651:2 23664:3 23670:2 23693:1 23699:3 23735:1 23736:1 23740:2 23745:1 23751:1 23752:1 23766:1 23767:3 23772:1 23775:1 23782:2 23785:7 23786:1 23788:1 23802:1 23817:1 23825:2 23832:1 23838:1 23842:1 23846:1 23857:1 23868:1 23884:1 23886:1 23890:1 23891:1 23895:1 23896:1 23912:1 23913:1 23915:2 23932:1 23941:1 23944:1 23950:1 23956:1 23957:3 23978:1 23982:2 24001:1 24008:2 24013:1 24028:2 24039:1 24055:1 24065:1 24067:1 24069:7 24075:2 24076:2 24080:2 24092:2 24093:2 24097:3 24105:1 24112:1 24114:1 24125:1 24131:1 24140:1 24144:3 24147:1 24150:1 24153:1 24175:1 24181:1 24185:2 24186:10 24191:1 24202:1 24213:1 24217:1 24220:1 24225:2 24232:1 24235:1 24236:1 24241:1 24251:2 24270:1 24275:1 24283:1 24286:1 24291:5 24304:1 24326:1 24334:2 24363:1 24366:1 24371:1 24379:1 24384:2 24388:4 24393:1 24395:1 24414:1 24420:1 24427:2 24435:1 24436:1 24444:1 24450:1 24476:1 24480:4 24484:2 24491:1 24492:1 24493:1 24495:3 24499:5 24502:1 24503:1 24505:2 24519:2 24524:1 24536:2 24552:3 24572:1 24576:2 24577:3 24591:1 24594:1 24611:2 24612:2 24614:1 24620:1 24623:2 24626:1 24628:4 24631:1 24641:1 24645:1 24646:1 24653:1 24654:1 24656:1 24661:1 24664:1 24675:1 24676:1 24683:1 24687:1 24689:1 24690:1 24699:1 24704:1 24707:1 24711:1 24757:1 24766:4 24778:1 24779:1 24797:1 24802:3 24803:2 24812:1 24815:1 24838:1 24854:5 24858:2 24859:2 24863:1 24869:1 24871:2 24872:1 24909:1 24911:1 24919:1 24922:2 24943:2 24971:1 24974:1 24979:1 25025:1 25030:1 25048:2 25064:1 25069:2 25072:1 25075:2 25077:6 25088:1 25097:7 25100:3 25107:1 25130:1 25132:2 25133:2 25134:1 25163:1 25166:2 25173:2 25181:1 25184:1 25192:2 25198:1 25199:1 25205:2 25208:1 25210:1 25212:1 25215:1 25222:4 25227:1 25233:2 25236:1 25238:2 25245:1 25248:1 25255:1 25271:1 25274:1 25277:4 25279:1 25280:1 25281:3 25283:1 25284:2 25295:1 25302:1 25306:2 25309:1 25310:1 25313:1 25322:1 25328:2 25340:1 25351:1 25362:1 25365:1 25378:3 25383:1 25384:1 25387:1 25402:1 25408:1 25413:1 25415:1 25423:2 25427:1 25439:1 25440:4 25451:4 25454:2 25461:1 25467:1 25473:1 25485:5 25495:1 25499:4 25500:1 25511:2 25516:4 25542:1 25546:5 25552:1 25554:1 25565:1 25573:1 25576:16 25585:2 25587:1 25599:2 25617:2 25628:1 25636:1 25642:1 25688:1 25693:1 25705:1 25707:1 25710:2 25713:3 25715:1 25718:1 25730:1 25732:2 25740:1 25741:1 25760:3 25766:1 25777:3 25778:1 25803:1 25807:1 25809:1 25812:1 25823:1 25832:1 25844:1 25848:1 25849:1 25850:2 25854:1 25860:1 25861:1 25874:1 25875:1 25876:1 25882:1 25884:2 25885:1 25895:2 25920:3 25928:1 25929:1 25933:1 25944:3 25955:2 25956:2 25961:1 25964:1 25966:2 25988:1 25989:1 25994:1 25995:4 25998:2 26005:2 26018:2 26019:1 26022:16 26023:1 26027:1 26032:1 26035:1 26042:3 26054:1 26061:1 26065:2 26074:1 26088:1 26093:6 26107:1 26113:1 26119:1 26122:1 26125:1 26128:1 26130:1 26145:1 26148:2 26149:1 26156:1 26163:1 26182:1 26202:2 26209:1 26231:2 26233:1 26239:1 26253:3 26268:2 26272:1 26277:1 26278:1 26283:1 26286:1 26291:1 26333:4 26336:1 26352:1 26354:1 26356:4 26372:1 26384:1 26399:1 26401:3 26417:1 26420:1 26428:1 26429:2 26440:2 26450:2 26465:1 26484:1 26489:1 26498:1 26499:2 26509:1 26510:1 26525:1 26536:1 26542:1 26546:1 26580:1 26584:1 26588:1 26597:2 26609:2 26616:1 26622:1 26626:1 26630:2 26632:6 26634:1 26653:1 26654:3 26657:1 26661:2 26663:1 26675:4 26685:1 26691:1 26692:1 26703:4 26710:1 26712:1 26714:3 26734:1 26742:2 26743:7 26744:1 26746:2 26753:1 26754:2 26757:1 26764:2 26773:1 26774:1 26778:3 26789:3 26794:2 26796:1 26799:1 26807:1 26810:1 26813:1 26818:1 26840:1 26847:1 26851:1 26866:1 26870:2 26875:1 26878:2 26881:1 26884:2 26888:1 26889:1 26894:1 26897:3 26899:1 26901:1 26911:1 26915:1 26918:5 26923:6 26930:2 26931:2 26932:2 26945:2 26968:1 26970:1 26971:2 26976:1 26979:1 26991:2 26992:1 26994:1 27003:1 27011:1 27021:1 27035:2 27043:1 27045:1 27054:3 27064:2 27074:1 27082:1 27084:1 27087:1 27096:1 27100:10 27130:1 27131:1 27145:1 27150:1 27157:1 27164:2 27172:1 27173:1 27176:3 27178:1 27184:1 27188:3 27196:1 27206:1 27224:1 27227:2 27228:1 27229:1 27230:3 27235:1 27236:1 27249:1 27251:5 27252:1 27254:2 27258:3 27262:1 27265:1 27266:2 27269:1 27271:2 27276:4 27287:3 27296:3 27297:1 27299:3 27306:1 27311:1 27318:1 27320:1 27329:1 27347:8 27353:1 27359:1 27365:4 27390:1 27392:1 27393:1 27401:1 27403:1 27405:3 27408:1 27411:3 27418:1 27424:1 27426:1 27427:1 27448:2 27451:2 27466:1 27468:1 27472:1 27502:1 27504:1 27516:2 27540:1 27548:1 27556:1 27558:1 27571:1 27574:1 27615:1 27620:1 27634:1 27649:1 27652:1 27658:3 27659:2 27662:2 27663:1 27666:5 27670:3 27673:8 27675:1 27676:1 27680:1 27689:1 27713:1 27718:1 27722:1 27727:3 27731:1 27732:1 27734:1 27739:1 27745:1 27761:1 27764:1 27771:1 27784:2 27802:2 27808:1 27832:5 27852:1 27853:1 27855:1 27858:2 27868:1 27874:2 27885:1 27889:1 27898:1 27899:1 27908:1 27909:1 27912:1 27928:4 27945:1 27950:2 27953:1 27956:3 27965:1 27969:16 27970:2 27974:1 27978:1 27981:1 27993:1 27999:6 28007:1 28008:6 28032:1 28048:1 28060:1 28073:1 28076:1 28080:5 28095:1 28099:1 28105:1 28107:1 28109:2 28113:1 28117:12 28123:3 28131:1 28134:1 28137:1 28151:2 28152:1 28162:1 28165:14 28170:2 28177:1 28207:1 28212:2 28214:2 28220:1 28222:1 28231:1 28233:1 28236:1 28242:1 28243:2 28258:1 28283:1 28296:2 28335:3 28345:1 28358:1 28363:2 28367:1 28375:1 28388:1 28392:48 28393:1 28413:1 28416:5 28417:2 28422:2 28423:6 28424:2 28425:1 28434:1 28435:1 28457:1 28485:4 28490:13 28491:1 28503:1 28509:1 28512:2 28515:1 28522:1 28529:1 28545:1 28546:2 28555:1 28584:1 28597:1 28610:3 28612:1 28615:2 28634:2 28635:1 28647:1 28660:1 28664:1 28669:5 28690:2 28701:5 28710:1 28753:3 28758:1 28760:1 28775:1 28782:1 28785:1 28787:2 28796:2 28798:1 28803:2 28804:1 28814:1 28843:1 28852:1 28854:1 28857:2 28859:2 28865:1 28875:2 28876:1 28887:1 28894:3 28901:1 28902:1 28903:3 28905:1 28913:1 28923:1 28927:1 28928:1 28937:1 28940:2 28950:1 28954:1 28959:1 28964:1 28974:1 28976:1 28977:1 28979:1 28986:1 28988:2 28999:1 29000:11 29001:1 29003:2 29005:4 29024:1 29027:1 29031:3 29042:7 29046:1 29053:2 29057:4 29062:2 29063:2 29069:2 29073:39 29079:2 29100:2 29117:1 29120:1 29121:1 29128:1 29137:2 29139:1 29140:1 29141:2 29145:2 29146:2 29147:5 29148:1 29171:1 29176:1 29179:1 29183:1 29184:2 29190:1 29194:2 29197:3 29201:1 29202:1 29208:1 29214:1 29215:1 29223:1 29225:2 29236:1 29240:1
|
987ec31ed00cdd94db50cbea1dae0d7155c13193
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1388/CH8/EX8.3/8_3.sce
|
a2a1bb2c533eca0956cc537b079970a57ca42db9
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 363 |
sce
|
8_3.sce
|
clc
//initialisation of variables
h= 6.6234*10^-27 //ergs sec
m= 2.59 //gms
v= 3.35*10^4 //cm sec ^-1
e= 4.8*10^-10 //ev
V= 40000 //volts
M= 300 //gms
L= 1836 //A
N= 6*10^23 //molecules
//CALCULATIONS
p= m*v
l= h/p
E= V*e/M
P= sqrt(2*E*(1/(L*N)))
L1= h*10^8/P
//RESULTS
printf (' wavelength = %.2e cm',l)
printf (' \n wavelength = %.4f cm',L1)
|
8e4f15d6c605af3a295523bfc858e59ddeccb8a0
|
dc1af20bca10db33d1adcbf61d5fe874eb6eab07
|
/2018_fast_test/2018_fast_test/environment/MANAGER_C/MANAGER_C.tst
|
88b4593a733f22d9a6044632e79c44fbfd1cbd94
|
[] |
no_license
|
TimSVector/PointOfSales_v2
|
2d1130516cfc5d77f2e5d0f60adcde96374f6fc2
|
ef630f05850715568725cf94cc0e497146a049d4
|
refs/heads/master
| 2023-08-04T10:51:50.031346 | 2023-08-03T20:50:28 | 2023-08-03T20:50:28 | 133,404,783 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 820 |
tst
|
MANAGER_C.tst
|
-- VectorCAST 18.sp5 (03/03/19)
-- Test Case Script
--
-- Environment : MANAGER_C
-- Unit(s) Under Test: manager
--
-- Script Features
TEST.SCRIPT_FEATURE:C_DIRECT_ARRAY_INDEXING
TEST.SCRIPT_FEATURE:CPP_CLASS_OBJECT_REVISION
TEST.SCRIPT_FEATURE:MULTIPLE_UUT_SUPPORT
TEST.SCRIPT_FEATURE:MIXED_CASE_NAMES
TEST.SCRIPT_FEATURE:STATIC_HEADER_FUNCS_IN_UUTS
--
-- Unit: manager
-- Subprogram: Place_Order
-- Test Case: Place_Order.001
TEST.UNIT:manager
TEST.SUBPROGRAM:Place_Order
TEST.NEW
TEST.NAME:Place_Order.001
TEST.VALUE:manager.Place_Order.Table:1
TEST.VALUE:manager.Place_Order.Seat:1
TEST.VALUE:manager.Place_Order.Order.Entree:STEAK
TEST.EXPECTED:uut_prototype_stubs.Update_Table_Record.Data.Check_Total:0..20
TEST.ATTRIBUTES:uut_prototype_stubs.Update_Table_Record.Data.Check_Total:EXPECTED_BASE=10
TEST.END
|
fad827eb005d8f2f240e38b61fc36cb6db336b79
|
a159f59d19e2b03b234e9c2977ba4a932180e648
|
/Software/GreenScilabV0.9/macros/Draw_SMB_transform.sci
|
837fa127afe0850d7835595bbb1430512698203b
|
[] |
no_license
|
OpenAgricultureFoundation/openag_sim
|
e052bbcc31b1d7f9b84add066327b479785f8723
|
425e678b55e24b5848d17181d25770175b8c2c3f
|
refs/heads/master
| 2021-07-01T06:25:08.753260 | 2017-09-20T21:44:18 | 2017-09-20T21:44:18 | 80,540,145 | 0 | 1 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 496 |
sci
|
Draw_SMB_transform.sci
|
function [X,Y,Z,CP]=Draw_SMB_transform(X,Y,Z,L,O,V,C)
CP=list();
for i=1:length(X)
np=size(X(i),1); nf=size(X(i),2); len=np*nf;
P=[matrix(X(i),1,len); matrix(Y(i),1,len); matrix(Z(i),1,len)];
P=V*P;
P=L*P;
P(1,:)=P(1,:)+O(1); //x-shift
P(2,:)=P(2,:)+O(2); //y-shift
P(3,:)=P(3,:)+O(3); //z-shift
X(i)=matrix(P(1,:),np,nf);
Y(i)=matrix(P(2,:),np,nf);
Z(i)=matrix(P(3,:),np,nf);
CP(i)= ones(1,nf)*addcolor(C);
end
endfunction
|
62d55eb5d289c1f9845114e9255ced2413af8c39
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3014/CH1/EX1.3/Ex1_3.sce
|
f0af4190c99db75043fb03a49ca7c9f8f3682b4e
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 282 |
sce
|
Ex1_3.sce
|
clc
// Given that
m = 1e-30 // Mass of any object in Kg
v = 1e5 // velocity of object in m/s
h = 6.625e-34 // Plank constant
printf("Example 1.3")
lambda = h/(m*v) // calculation of de Broglie wavelength
printf("\n de Broglie wavelength of body is %e m.\n\n\n",lambda)
|
1b90cb0e0d121e025bd687c570fb4673459677fe
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2258/CH4/EX4.8/4_8.sce
|
8f4bf2f8e2625e77fac7bc0dfc28e3f616c0fa6b
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 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
|
4_8.sce
|
clc();
clear;
// To calculate the change in magnetic moment
r=0.052*10^-9; //radius of orbit in m
B=1; //magnetic field in Wb/m^2
e=1.6*10^-19; //charge of electron in coulomb
m=9.1*10^-31; //mass of electron in kg
dmew=(e^2)*(r^2)*B/(4*m);
printf("magnetic moment in Am^2 is");
disp(dmew);
//answer given in the book is wrong
|
13a97d253989570d4fcaeb913b07b529921f79e5
|
d7ec0352fdd4cf451ee9dd6bac2218fb96c24c0f
|
/src/gui/qml/img/pbutton_pressed.sci
|
486702deaa4c688f90e4881b284468d0206eb881
|
[] |
no_license
|
mireq/facedetect
|
d3fc340926a54e144dcf09ef4a814a77cbc9afde
|
94ab039149efb2d8f1496c6042bf3a6b133bb49e
|
refs/heads/master
| 2021-01-22T04:33:34.209921 | 2011-05-13T01:08:47 | 2011-05-13T01:08:47 | 1,525,248 | 3 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 90 |
sci
|
pbutton_pressed.sci
|
border.left: 6
border.right: 6
border.top: 6
border.bottom: 7
source: pbutton_pressed.png
|
1b99546cfad520f6c51ec9f1662524441487fe1c
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2243/CH12/EX12.1/Ex12_1.sce
|
910ef4cf1f0eb8c22c117fc32af84c2581e1f241
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 697 |
sce
|
Ex12_1.sce
|
clc();
clear;
//Given:
sigma_n = 10^4; //conductivity in mho/m
sigma_p = 10^2; // conductivity in mho/m
e = 1.6*10^-19;// charge of an electron in C
kT = 0.026 ;// k*T value at room temperature in eV
ni = 2.5*10^19; // per m^3
mue = 0.38; // mobility of free electrons in m^2/Vs
muh = 0.18;// mobility of free electrons in m^2/Vs
// sigma_n = e*n*mue and sigma_p = e*p*muh
nn0 = sigma_n/(e*mue); // per m^3
pp0 = sigma_p/(e*muh);// per m^3
np0 =( ni^2)/pp0; // in m^-3
// V0 = (kT/e)*log(nn0/np0) , but we consider only kT because kT/e = 0.026 eV/e , both the e's cancel each other.Finally we obtain the answer in Volts
V0 = (kT)*log(nn0/np0); // in V
printf("V0 = %.2f V",V0);
|
e08660eaa7e0974f9750a7cabc5d963a79d79eaf
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3871/CH15/EX15.1/Ex15_1.sce
|
51910d2d5ab3aa0e561159c7530e12983fc5f576
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 379 |
sce
|
Ex15_1.sce
|
//=====================================================================================
//Chapter 15 example 1
clc;clear all;
//variable declaration
Ip = 25; //power level ot the third-order intercept in dBm
M = -85; //minimum detectable signal in dBm
//calculations
Rd = (2/3)*(Ip-M);
//result
mprintf("dynamic range = %3.0f dB",Rd);
|
6555939ebdfffdbb9865e317037b02191cb5b24c
|
66106821c3fd692db68c20ab2934f0ce400c0890
|
/test/disassembler/brcs.instr.tst
|
1bb1c0aa1789010320c6b478bdaddaeacc46e027
|
[] |
no_license
|
aurelf/avrora
|
491023f63005b5b61e0a0d088b2f07e152f3a154
|
c270f2598c4a340981ac4a53e7bd6813e6384546
|
refs/heads/master
| 2021-01-19T05:39:01.927906 | 2008-01-27T22:03:56 | 2008-01-27T22:03:56 | 4,779,104 | 2 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 5,670 |
tst
|
brcs.instr.tst
|
; @Harness: disassembler
; @Result: PASS
section .text size=0x00000100 vma=0x00000000 lma=0x00000000 offset=0x00000034 ;2**0
section .data size=0x00000000 vma=0x00000000 lma=0x00000000 offset=0x00000134 ;2**0
start .text:
label 0x00000000 ".text":
0x0: 0xf8 0xf1 brcs .+126 ; 0x80
0x2: 0xf0 0xf1 brcs .+124 ; 0x80
0x4: 0xe8 0xf1 brcs .+122 ; 0x80
0x6: 0xe0 0xf1 brcs .+120 ; 0x80
0x8: 0xd8 0xf1 brcs .+118 ; 0x80
0xa: 0xd0 0xf1 brcs .+116 ; 0x80
0xc: 0xc8 0xf1 brcs .+114 ; 0x80
0xe: 0xc0 0xf1 brcs .+112 ; 0x80
0x10: 0xb8 0xf1 brcs .+110 ; 0x80
0x12: 0xb0 0xf1 brcs .+108 ; 0x80
0x14: 0xa8 0xf1 brcs .+106 ; 0x80
0x16: 0xa0 0xf1 brcs .+104 ; 0x80
0x18: 0x98 0xf1 brcs .+102 ; 0x80
0x1a: 0x90 0xf1 brcs .+100 ; 0x80
0x1c: 0x88 0xf1 brcs .+98 ; 0x80
0x1e: 0x80 0xf1 brcs .+96 ; 0x80
0x20: 0x78 0xf1 brcs .+94 ; 0x80
0x22: 0x70 0xf1 brcs .+92 ; 0x80
0x24: 0x68 0xf1 brcs .+90 ; 0x80
0x26: 0x60 0xf1 brcs .+88 ; 0x80
0x28: 0x58 0xf1 brcs .+86 ; 0x80
0x2a: 0x50 0xf1 brcs .+84 ; 0x80
0x2c: 0x48 0xf1 brcs .+82 ; 0x80
0x2e: 0x40 0xf1 brcs .+80 ; 0x80
0x30: 0x38 0xf1 brcs .+78 ; 0x80
0x32: 0x30 0xf1 brcs .+76 ; 0x80
0x34: 0x28 0xf1 brcs .+74 ; 0x80
0x36: 0x20 0xf1 brcs .+72 ; 0x80
0x38: 0x18 0xf1 brcs .+70 ; 0x80
0x3a: 0x10 0xf1 brcs .+68 ; 0x80
0x3c: 0x08 0xf1 brcs .+66 ; 0x80
0x3e: 0x00 0xf1 brcs .+64 ; 0x80
0x40: 0xf8 0xf0 brcs .+62 ; 0x80
0x42: 0xf0 0xf0 brcs .+60 ; 0x80
0x44: 0xe8 0xf0 brcs .+58 ; 0x80
0x46: 0xe0 0xf0 brcs .+56 ; 0x80
0x48: 0xd8 0xf0 brcs .+54 ; 0x80
0x4a: 0xd0 0xf0 brcs .+52 ; 0x80
0x4c: 0xc8 0xf0 brcs .+50 ; 0x80
0x4e: 0xc0 0xf0 brcs .+48 ; 0x80
0x50: 0xb8 0xf0 brcs .+46 ; 0x80
0x52: 0xb0 0xf0 brcs .+44 ; 0x80
0x54: 0xa8 0xf0 brcs .+42 ; 0x80
0x56: 0xa0 0xf0 brcs .+40 ; 0x80
0x58: 0x98 0xf0 brcs .+38 ; 0x80
0x5a: 0x90 0xf0 brcs .+36 ; 0x80
0x5c: 0x88 0xf0 brcs .+34 ; 0x80
0x5e: 0x80 0xf0 brcs .+32 ; 0x80
0x60: 0x78 0xf0 brcs .+30 ; 0x80
0x62: 0x70 0xf0 brcs .+28 ; 0x80
0x64: 0x68 0xf0 brcs .+26 ; 0x80
0x66: 0x60 0xf0 brcs .+24 ; 0x80
0x68: 0x58 0xf0 brcs .+22 ; 0x80
0x6a: 0x50 0xf0 brcs .+20 ; 0x80
0x6c: 0x48 0xf0 brcs .+18 ; 0x80
0x6e: 0x40 0xf0 brcs .+16 ; 0x80
0x70: 0x38 0xf0 brcs .+14 ; 0x80
0x72: 0x30 0xf0 brcs .+12 ; 0x80
0x74: 0x28 0xf0 brcs .+10 ; 0x80
0x76: 0x20 0xf0 brcs .+8 ; 0x80
0x78: 0x18 0xf0 brcs .+6 ; 0x80
0x7a: 0x10 0xf0 brcs .+4 ; 0x80
0x7c: 0x08 0xf0 brcs .+2 ; 0x80
0x7e: 0x00 0xf0 brcs .+0 ; 0x80
0x80: 0xf8 0xf3 brcs .-2 ; 0x80
0x82: 0xf0 0xf3 brcs .-4 ; 0x80
0x84: 0xe8 0xf3 brcs .-6 ; 0x80
0x86: 0xe0 0xf3 brcs .-8 ; 0x80
0x88: 0xd8 0xf3 brcs .-10 ; 0x80
0x8a: 0xd0 0xf3 brcs .-12 ; 0x80
0x8c: 0xc8 0xf3 brcs .-14 ; 0x80
0x8e: 0xc0 0xf3 brcs .-16 ; 0x80
0x90: 0xb8 0xf3 brcs .-18 ; 0x80
0x92: 0xb0 0xf3 brcs .-20 ; 0x80
0x94: 0xa8 0xf3 brcs .-22 ; 0x80
0x96: 0xa0 0xf3 brcs .-24 ; 0x80
0x98: 0x98 0xf3 brcs .-26 ; 0x80
0x9a: 0x90 0xf3 brcs .-28 ; 0x80
0x9c: 0x88 0xf3 brcs .-30 ; 0x80
0x9e: 0x80 0xf3 brcs .-32 ; 0x80
0xa0: 0x78 0xf3 brcs .-34 ; 0x80
0xa2: 0x70 0xf3 brcs .-36 ; 0x80
0xa4: 0x68 0xf3 brcs .-38 ; 0x80
0xa6: 0x60 0xf3 brcs .-40 ; 0x80
0xa8: 0x58 0xf3 brcs .-42 ; 0x80
0xaa: 0x50 0xf3 brcs .-44 ; 0x80
0xac: 0x48 0xf3 brcs .-46 ; 0x80
0xae: 0x40 0xf3 brcs .-48 ; 0x80
0xb0: 0x38 0xf3 brcs .-50 ; 0x80
0xb2: 0x30 0xf3 brcs .-52 ; 0x80
0xb4: 0x28 0xf3 brcs .-54 ; 0x80
0xb6: 0x20 0xf3 brcs .-56 ; 0x80
0xb8: 0x18 0xf3 brcs .-58 ; 0x80
0xba: 0x10 0xf3 brcs .-60 ; 0x80
0xbc: 0x08 0xf3 brcs .-62 ; 0x80
0xbe: 0x00 0xf3 brcs .-64 ; 0x80
0xc0: 0xf8 0xf2 brcs .-66 ; 0x80
0xc2: 0xf0 0xf2 brcs .-68 ; 0x80
0xc4: 0xe8 0xf2 brcs .-70 ; 0x80
0xc6: 0xe0 0xf2 brcs .-72 ; 0x80
0xc8: 0xd8 0xf2 brcs .-74 ; 0x80
0xca: 0xd0 0xf2 brcs .-76 ; 0x80
0xcc: 0xc8 0xf2 brcs .-78 ; 0x80
0xce: 0xc0 0xf2 brcs .-80 ; 0x80
0xd0: 0xb8 0xf2 brcs .-82 ; 0x80
0xd2: 0xb0 0xf2 brcs .-84 ; 0x80
0xd4: 0xa8 0xf2 brcs .-86 ; 0x80
0xd6: 0xa0 0xf2 brcs .-88 ; 0x80
0xd8: 0x98 0xf2 brcs .-90 ; 0x80
0xda: 0x90 0xf2 brcs .-92 ; 0x80
0xdc: 0x88 0xf2 brcs .-94 ; 0x80
0xde: 0x80 0xf2 brcs .-96 ; 0x80
0xe0: 0x78 0xf2 brcs .-98 ; 0x80
0xe2: 0x70 0xf2 brcs .-100 ; 0x80
0xe4: 0x68 0xf2 brcs .-102 ; 0x80
0xe6: 0x60 0xf2 brcs .-104 ; 0x80
0xe8: 0x58 0xf2 brcs .-106 ; 0x80
0xea: 0x50 0xf2 brcs .-108 ; 0x80
0xec: 0x48 0xf2 brcs .-110 ; 0x80
0xee: 0x40 0xf2 brcs .-112 ; 0x80
0xf0: 0x38 0xf2 brcs .-114 ; 0x80
0xf2: 0x30 0xf2 brcs .-116 ; 0x80
0xf4: 0x28 0xf2 brcs .-118 ; 0x80
0xf6: 0x20 0xf2 brcs .-120 ; 0x80
0xf8: 0x18 0xf2 brcs .-122 ; 0x80
0xfa: 0x10 0xf2 brcs .-124 ; 0x80
0xfc: 0x08 0xf2 brcs .-126 ; 0x80
0xfe: 0x00 0xf2 brcs .-128 ; 0x80
start .data:
|
72f249daa5c5ff43acfed3239195cc0d43a957b5
|
906f286d018d405ea3ace52a3e8e8a109d68cefe
|
/kalman/chemPlantModel.sce
|
52ac38e657e4826ea1c92c648296dcc23dd1dc05
|
[] |
no_license
|
andreinakagawa/control
|
165398c239178670934328a278113d136e7c5747
|
b69f0cb7ee4f4328bdc7d45d7bb9fd82eec6343f
|
refs/heads/master
| 2021-01-21T21:38:24.436418 | 2017-07-13T18:57:30 | 2017-07-13T18:57:30 | 92,322,739 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 5,430 |
sce
|
chemPlantModel.sce
|
// FEDERAL UNIVERSITY OF UBERLANDIA
// Biomedical Engineering Lab
// Uberlandia, Brazil
//--------------------------------------------------
// Author: Andrei Nakagawa, MSc
// contact: andrei.ufu@gmail.com
//--------------------------------------------------
// Control II
// Exercise I
// Finding steady-state values
//--------------------------------------------------
//--------------------------------------------------
clear;
clc;
//--------------------------------------------------
//Model equations
function [f] = modelEq(x,Ca0,rho,Cp,dH,Qk,k0,Ear,Vr,u)
Ca = x(1); //Concentration of A
Cb = x(2); //Concentration of B
T = x(3); //Reactor jacket temperature
//Retrieving the values of K
K = tempEq(T,k0,Ear);
f(1) = u(1) * (Ca0 - Ca) - K(1)*Ca - K(3)*Ca^2;
f(2) = -Cb*u(1) + K(1)*Ca - K(2)*Cb;
f(3) = -1/(rho*Cp)*(K(1)*Ca*dH(1) + K(2)*Cb*dH(2) + K(3)*Ca*Ca*dH(3)) + u(1)*(u(2)-T) + Qk/(rho*Cp*Vr);
endfunction
//--------------------------------------------------
//Temperature
function [k] = tempEq(T,k0,Ear)
for i=1:3
k(i) = k0(i) * exp(-Ear(i) / (T+273.15));
end
endfunction
//--------------------------------------------------
function [f] = integModel(t,x,Ca0,rho,Cp,dH,Qk,k0,Ear,Vr,u)
f = modelEq(x,Ca0,rho,Cp,dH,Qk,k0,Ear,Vr,u);
endfunction
//--------------------------------------------------
//Linear model
function [A,B]=linearModel(x,Ca0,rho,Cp,dH,Qk,k0,Ea_R,Vr,u)
Ca=x(1); Cb=x(2); T=x(3);
A(1,1)=-2*Ca*k0(3)*exp(-Ea_R(3)/(T + 273.15)) - k0(1)*exp(-Ea_R(1)/(T + 273.15)) - u(1);
A(1,2)=0;
A(1,3)=-Ca^2*Ea_R(3)*k0(3)*exp(-Ea_R(3)/(T + 273.15))/(T + 273.15)^2 - Ca*Ea_R(1)*k0(1)*exp(-Ea_R(1)/(T + 273.15))/(T + 273.15)^2;
A(2,1)=k0(1)*exp(-Ea_R(1)/(T + 273.15));
A(2,2)=-k0(2)*exp(-Ea_R(2)/(T + 273.15)) - u(1);
A(2,3)=Ca*Ea_R(1)*k0(1)*exp(-Ea_R(1)/(T + 273.15))/(T + 273.15)^2 - Cb*Ea_R(2)*k0(2)*exp(-Ea_R(2)/(T + 273.15))/(T + 273.15)^2;
A(3,1)=-(2*Ca*dH(3)*k0(3)*exp(-Ea_R(3)/(T + 273.15)) + dH(1)*k0(1)*exp(-Ea_R(1)/(T + 273.15)))/(Cp*rho);
A(3,2)=-dH(2)*k0(2)*exp(-Ea_R(2)/(T + 273.15))/(Cp*rho);
A(3,3)= -u(1) - (Ca^2*Ea_R(3)*dH(3)*k0(3)*exp(-Ea_R(3)/(T + 273.15))/(T + 273.15)^2 + Ca*Ea_R(1)*dH(1)*k0(1)*exp(-Ea_R(1)/(T + 273.15))/(T + 273.15)^2 + Cb*Ea_R(2)*dH(2)*k0(2)*exp(-Ea_R(2)/(T + 273.15))/(T + 273.15)^2)/(Cp*rho);
B=[-Ca + Ca0,0; -Cb,0; -T + u(2),u(1)];
endfunction
//--------------------------------------------------
//Parameters
rho = 0.9342;
Cp = 3.01;
Qk = -4496;
Vr = 0.01 * 10^3;
H1 = 4.2;
H2 = -11;
H3 = -41.85;
Ca0 = 5.1;
Ear = [9758.3,9758.3,8560];
k0 = [1.287e12,1.287e12,9.043e9];
dH = [H1;H2;H3];
//Input
u10 = 18.83;
u20 = 130;
u0 = [u10;u20];
//--------------------------------------------------
//Finding all the stationary points
u1 = 5:0.1:160;
x0 = [1;1;130];
x2 = [];
for i=1:length(u1)
xss = fsolve(x0,list(modelEq,Ca0,rho,Cp,dH,Qk,k0,Ear,Vr,[u1(i);u20]));
x2 = [x2 xss(2)];
end
//--------------------------------------------------
//Linear model
//Stationary point
uss = [18.83;130];
xss = fsolve(x0,list(modelEq,Ca0,rho,Cp,dH,Qk,k0,Ear,Vr,uss));
[Ac,Bc] = linearModel(xss,Ca0,rho,Cp,dH,Qk,k0,Ear,Vr,uss);
C = eye(3,3);
contSys = syslin('c',Ac,Bc,C);
//--------------------------------------------------
//Discrete model
dt = 0.01;
discSys = dscr(contSys,dt);
//--------------------------------------------------
//Simulation parameters
t0=0; tf=1;
t=t0:dt:tf;
//--------------------------------------------------
//--------------------------------------------------
//Adding noise
rand('seed',2);rand('normal');
//state uncertainty
w = rand(3,length(t))/1000;
for i=1:3
w(i,:) = w(i,:) - mean(w(i,:));
end
//measurement noise
v = rand(3,length(t))/100;
for i=1:3
v(i,:) = v(i,:) - mean(v(i,:));
end
//input noise covariance matrix
q = [mean(w(1,:)*w(1,:)') 0 0; 0 mean(w(2,:)*w(2,:)') 0; 0 0 mean(w(3,:)*w(3,:)')];
//output noise covariance matrix
r = [mean(v(1,:)*v(1,:)') 0 0; 0 mean(v(2,:)*v(2,:)') 0; 0 0 mean(v(3,:)*v(3,:)')];
//--------------------------------------------------
//Simulation
amp = 0.8;
freq=1;
usine = amp * sin(2*%pi*freq*t);
Xk = []; //without noise
Xkn = []; //with noise
uk = [1;0];
xk = [0;0;0];
xkn = [0;0;0];
Yk = []
//Bd = zeros(3,3);
//Bd(:,1:2) = discSys.B;
//discSys.B = Bd;
Xkalman = [];
q = [0 0; 0 0];
r = [100 0 0; 0 100 0; 0 0 100];
p0 = chol([100 0 0; 0 100 0; 0 0 100]);
p1 = p0;
x1 = x0;
for k=1:length(t)
//model without noise
xk = (discSys.A * xk) + (discSys.B * uk);
Xk = [Xk xk];
//model with noise
xkn = (discSys.A * xkn) + (discSys.B * uk);
Xkn = [Xkn xkn];
//output with noise
yk = discSys.C*xkn + v(:,k);
Yk = [Yk yk];
//kalman filter
[x1,p1] = kalm(yk,x1,p1,discSys.A,discSys.B,discSys.C,q,r);
Xkalman = [Xkalman x1];
end
//------------------------------------------------------------------------------
figure();
plot(t,Xk(1,:),'r');
plot(t,Xk(2,:),'g');
plot(t,Xk(3,:),'b');
//------------------------------------------------------------------------------
figure();
plot(t,Yk(1,:),'r');
plot(t,Yk(2,:),'g');
plot(t,Yk(3,:),'b');
//------------------------------------------------------------------------------
figure();
plot(t,Xkalman(1,:),'r');
plot(t,Xkalman(2,:),'g');
plot(t,Xkalman(3,:),'b');
//------------------------------------------------------------------------------
|
89c3f775692442ac4743965d60249c94e5bc3825
|
25ecbf436e9499640445c5f8dd256d12dcfecf2a
|
/Rb model/Scilab/StochRb8 DA multi.sci
|
3e99e17948b1dacb15aeea910dec3e09bfc0f553
|
[] |
no_license
|
ModelDBRepository/141272
|
89fa654099db5fe443f1d34b43071108882d740e
|
67f44e52600c751f37f731f71a5b13a21fd28e8e
|
refs/heads/master
| 2020-05-29T18:22:46.893645 | 2019-05-31T02:44:35 | 2019-05-31T02:44:35 | 189,298,198 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 4,489 |
sci
|
StochRb8 DA multi.sci
|
// Rubinstein model of Ranvier Node's action potentials as in
// Rubinstein JT (1995) Biophys J 68: 779-785.
// Mino H, Rubinstein JT, White JA (2002) Ann Biomed Eng 30: 578-587.
// Bruce IC (2007) Ann Biomed Eng 35: 315-318;
// Voltage is shifted so that resting voltage = 0 mV (the reversal of the leak)
// This script simulates 1000 sweeps per stimulus and calculates
// firing efficiency, mean firing time and firing time variance
// 100 (nsim) simultaneous sweeps, 10 times
// Lines 43, 59, 60, 110 and 111 are intended to make a voltage trace
// It is advisable to reduce nsim before uncommenting them
//
// Coupled activation particles, 8-state Na channel
// Diffusion Approximation
nsim=100;
gNa=0.02569*265; //mS/cm2
ENa=144; //mV
Cm=0.0000714*265; Rm=1953.49/265;
NNa=1000;
Tstop=1; dt=0.001; //ms
points = round(Tstop/dt)
Idel=0; Idur=0.1; //ms, ms
threshold=80;
rand('normal');
currents=[5:0.1:6.5];
Eff=[];
meanFT=[];
varFT=[];
NaNs=[];
tic()
for curr=1:size(currents,'*')
Iamp=ones(1,nsim)*currents(curr);
firetimes=[];
NNaNs=0;
for nn=1:10
p=1;
// Uncomment this only with a small nsim
// vrec = zeros(points,nsim);
v = 0*ones(1,nsim);
am=1.872*(v-25.41)./(1-exp((25.41-v)/6.06));
bm=3.973*(21-v)./(1-exp((v-21)/9.41));
ah=-0.549*(27.74+v)./(1-exp((v+27.74)/9.06));
bh=(22.57)./(1+exp((56-v)/12.5));
M=am./bm;
H=ah./bh;
statesum=(1+H).*(1+M)^3;
s=[ones(1,nsim);3*M;3*M.^2;M.^3;H;3*M.*H;3*M.^(2).*H;M^(3).*H]./(ones(8,1)*statesum);
firetime=zeros(1,nsim);
firing=zeros(1,nsim);
for t = dt:dt:Tstop
//vrec(p,:) = v; //uncomment with small nsim
//p=p+1;
if or(~firing&v>=threshold) then
ind=find(v>=threshold&~firing);
firetime(ind)=t;
firing(ind)=1;
end
am=1.872*(v-25.41)./(1-exp((25.41-v)/6.06));
bm=3.973*(21-v)./(1-exp((v-21)/9.41));
ah=-0.549*(27.74+v)./(1-exp((v+27.74)/9.06));
bh=(22.57)./(1+exp((56-v)/12.5));
Iapp=Iamp*(t>Idel&t<(Idel+Idur));
Imemb=-Iapp+gNa.*s(8,:).*(v-ENa)+v/Rm;
// deterministic transition matrix
transition=[3*am.*s(1,:)-(2*am+bm+ah).*s(2,:)+2*bm.*s(3,:)+bh.*s(6,:);
2*am.*s(2,:)-(2*bm+am+ah).*s(3,:)+3*bm.*s(4,:)+bh.*s(7,:);
am.*s(3,:)-(3*bm+ah).*s(4,:)+bh.*s(8,:);
-(3*am+bh).*s(5,:)+bm.*s(6,:)+ah.*s(1,:);
3*am.*s(5,:)-(2*am+bm+bh).*s(6,:)+2*bm.*s(7,:)+ah.*s(2,:);
2*am.*s(6,:)-(2*bm+am+bh).*s(7,:)+3*bm.*s(8,:)+ah.*s(3,:);
am.*s(7,:)-(3*bm+bh).*s(8,:)+ah.*s(4,:)];
ma=abs(s); //The stochastic terms (R) are calculated with the absolute value of state variables
R=rand(10,nsim).*sqrt((dt/NNa)*[3*am.*ma(1,:)+bm.*ma(2,:);
2*am.*ma(2,:)+2*bm.*ma(3,:);
am.*ma(3,:)+3*bm.*ma(4,:);
ah.*ma(1,:)+bh.*ma(5,:);
ah.*ma(2,:)+bh.*ma(6,:);
ah.*ma(3,:)+bh.*ma(7,:);
ah.*ma(4,:)+bh.*ma(8,:);
3*am.*ma(5,:)+bm.*ma(6,:);
2*am.*ma(6,:)+2*bm.*ma(7,:);
am.*ma(7,:)+3*bm.*ma(8,:)]);
//Stochastic terms that correspond to state variables 2-8
Wt=[-R(1,:)+R(2,:)+R(5,:);
-R(2,:)+R(3,:)+R(6,:);
-R(3,:)+R(7,:);
R(8,:)-R(4,:);
-R(8,:)+R(9,:)-R(5,:);
-R(9,:)+R(10,:)-R(6,:);
-R(10,:)-R(7,:)];
s(2:8,:)=s(2:8,:)+dt*transition+Wt;
s(1,:)=ones(1,nsim)-sum(s(2:8,:),'r');
v=v-dt*Imemb/Cm;
end
printf("round %d Iamp %g\n",nn,currents(curr))
//clf //uncomment with small nsim
//plot(dt:dt:Tstop,vrec)
firetimes=[firetimes firetime];
NNaNs=NNaNs + sum(1*(isinf(v)|isnan(v)));
end
Eff=[Eff;size(find(firetimes<>0),'*')];
meanFT=[meanFT;mean(firetimes(find(firetimes<>0)))];
if size(find(firetimes<>0),'*')>1 then
varFT=[varFT;variance(firetimes(find(firetimes<>0)))];
else
varFT=[varFT;0];
end
NaNs=[NaNs;NNaNs];
end
realt=toc();
printf("time = %g\n",realt)
write_csv([currents' Eff meanFT varFT NaNs],sprintf('EffN-Rb8DA-N%g-dt%g-%gs.csv',NNa,dt,realt),',',".")
scf(0);
clf
subplot(3,1,1)
plot(currents,Eff)
subplot(3,1,2)
plot(currents,meanFT)
subplot(3,1,3)
plot(currents,varFT)
|
65186c95dcbf8bd99ba7387688da1d5d34e773e8
|
e8bcf3f9ffdfb367940fb9ed498b1c598ce92e65
|
/plot2d2.sce
|
77b371a4defee15b6534e0af1a66aee062fde75f
|
[] |
no_license
|
yoddha24/Intro-to-Scilab
|
1fe25aee3ebd319bc2c9e2cf7c25d7050b09890e
|
4c458c1bea6880839ebae07adfd39dea0eac4e2c
|
refs/heads/master
| 2021-01-20T18:24:05.191473 | 2016-08-08T13:45:16 | 2016-08-08T13:45:16 | 65,207,356 | 1 | 1 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 175 |
sce
|
plot2d2.sce
|
// Program to plot using plot2d2 function
x = linspace(-%pi,%pi,20)
plot2d2(x,sin(x))
xtitle('Graph for plotting sin(x) using plot2d2')
xlabel('angle')
ylabel('sin(x)')
|
a66eed8247921d7056e49139c006b12d952c98a6
|
fbd17575bab2ee4dc49cc7d13b5b94d24ab9482c
|
/TP4/rendre/solinf.sci
|
360f75d555821d0f0a9692ef64df8a7a318c5397
|
[] |
no_license
|
1saac-W/MT09-Analyse-Num-rique
|
05b509981dfa00e3b7b550716b1487cbbf0a3fed
|
0853f8053254f5dd23179073187ada3d936aff84
|
refs/heads/master
| 2020-09-27T04:34:36.549125 | 2020-01-05T16:02:18 | 2020-01-05T16:02:18 | 226,431,201 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 409 |
sci
|
solinf.sci
|
function [x] = solinf(l,b)
N = length(b);
if( size(l)~= [N, N] | size(b,2) ~= 1) then
disp("size(l)=",size(l));
disp("size(b,2)=",size(b,2));
disp("incorrct!");
end
x = zeros(N,1);
x(1)= b(1)/l(1,1);
for i = 2:1:N
x(i) = b(i);
for j = 1:1:i-1
x(i) = x(i)-x(j)*l(i,j);
end
x(i) = x(i)/l(i,i);
end
endfunction
|
ba6ce2e2202f45bc2dbfc02c989345baab1f41dd
|
089894a36ef33cb3d0f697541716c9b6cd8dcc43
|
/NLP_Project/test/tweet/bow/bow.15_19.tst
|
8742867a845a9b5ba5855bedf57027baac6d108d
|
[] |
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 | 24,121 |
tst
|
bow.15_19.tst
|
15 4:0.2 16:1.0 180:0.125 595:1.0 1259:1.0 1701:1.0 1773:1.0 1774:2.0 3003:1.0 3010:1.0 4177:1.0
15 13:1.0 24:0.125 29:0.5 41:0.3333333333333333 108:0.2 110:1.0 124:1.0 160:1.0 180:0.125 196:1.0 225:1.0 259:0.14285714285714285 456:1.0 466:1.0 668:0.5 1652:1.0 1699:1.0 1977:0.5 2139:2.0 2917:1.0
15 23:1.0 24:0.125 103:0.16666666666666666 108:0.1 212:0.5 213:1.0 308:1.0 396:2.0 528:0.3333333333333333 880:1.0 1137:1.0 1416:1.0 1633:1.0 2284:0.5 2576:0.5 6173:1.0 6829:1.0
15 6:0.25 29:1.0 59:0.014925373134328358 108:0.1 209:0.14285714285714285 234:0.4 456:1.0 530:0.5 649:1.0 761:1.0 806:1.0 988:1.0 2939:1.0 4861:1.0 6272:1.0
15 4:0.2 29:1.0 61:1.0 65:0.3333333333333333 70:1.0 103:0.16666666666666666 116:0.07142857142857142 118:0.5 140:0.75 151:0.16666666666666666 167:1.0 225:1.0 311:1.0 337:1.0 360:0.5 418:1.0 456:1.0 527:0.16666666666666666 614:1.0 961:1.0 1249:1.0 1303:1.0 2447:1.0 2824:1.0
15 472:0.5 553:0.5 911:1.0 1354:0.3333333333333333 2122:1.0 2502:1.0 4567:1.0
15 4:0.2 24:0.125 29:0.5 60:0.14285714285714285 108:0.1 192:0.14285714285714285 326:1.0 349:0.3333333333333333 352:0.2 360:0.5 528:0.3333333333333333 1057:1.0 1354:0.3333333333333333 2873:1.0 2911:1.0 3257:1.0 5711:1.0 6111:1.0
15 9:1.0 24:0.25 41:0.3333333333333333 59:0.014925373134328358 78:0.09090909090909091 85:0.3333333333333333 101:0.5 118:0.5 119:0.6666666666666666 140:0.25 180:0.125 251:0.2 289:1.0 362:0.3333333333333333 505:1.0 755:2.0 861:0.125 1025:1.0 1115:0.5 1275:1.0 1374:1.0 1457:1.0 2701:1.0 3230:1.0 3386:1.0 4974:1.0 5203:1.0 7182:1.0
15 41:0.3333333333333333 43:0.3333333333333333 59:0.029850746268656716 60:0.14285714285714285 91:0.25 180:0.125 238:1.0 755:1.0 909:1.0 974:1.0 1094:1.0 1557:1.0 1696:2.0 1697:2.0 1699:1.0 1800:1.0 1887:1.0 2902:1.0 2975:1.0 3167:1.0 4264:1.0 4832:1.0
15 24:0.125 59:0.014925373134328358 88:1.0 213:1.0 466:1.0 974:1.0 1693:1.0 1887:1.0 2305:1.0 3477:1.0 3479:1.0 5414:1.0
15 1:2.0 15:0.5 24:0.25 41:0.3333333333333333 43:0.3333333333333333 65:0.3333333333333333 103:0.16666666666666666 116:0.07142857142857142 119:0.3333333333333333 140:0.5 180:0.125 198:1.0 245:0.5 259:0.14285714285714285 321:0.3333333333333333 340:1.0 361:0.1 383:0.3333333333333333 469:0.5 668:0.5 709:1.0 829:1.0 866:0.3333333333333333 911:1.0 995:1.0 1055:1.0 1057:1.0 1058:1.0 1062:1.0 1304:0.3333333333333333 1312:1.0 1543:1.0 1797:1.0 1841:0.07142857142857142 1904:1.0 1910:1.0
15 1:1.0 4:0.2 84:0.5 103:0.16666666666666666 166:1.0 234:0.2 254:0.5 333:1.0 362:0.3333333333333333 387:1.0 456:1.0 896:1.0 1275:1.0 1541:1.0 1947:1.0 2211:1.0 2392:1.0 3010:1.0 3612:1.0 4014:1.0
15 24:0.125 29:1.0 31:1.0 59:0.029850746268656716 82:1.0 180:0.375 249:0.5 321:0.3333333333333333 355:1.0 653:1.0 862:1.0 977:1.0 978:1.0 1145:0.3333333333333333 1262:1.0 1864:1.0 1887:1.0 2211:1.0 2826:1.0 3886:1.0 4037:1.0 7029:1.0
15 24:0.25 70:1.0 84:0.5 85:0.3333333333333333 92:1.0 101:1.0 135:1.0 195:1.0 225:1.0 300:1.0 343:1.0 359:0.5 487:0.25 528:0.6666666666666666 597:1.0 601:1.0 1185:1.0 1352:1.0 1354:0.3333333333333333 1356:1.0 2305:1.0 2635:0.25 2724:1.0 2861:1.0 3251:1.0 3627:1.0 3839:1.0 5127:1.0 5413:1.0
15 6:0.5 9:1.0 29:0.5 33:0.3333333333333333 59:0.029850746268656716 62:0.08333333333333333 84:0.5 108:0.2 116:0.07142857142857142 171:0.25 180:0.125 209:0.14285714285714285 210:1.0 225:1.0 250:1.0 327:1.0 552:1.0 753:1.0 1557:1.0 1638:1.0 1641:1.0 1887:1.0 3953:1.0 6188:1.0 6425:1.0
15 16:2.0 24:0.25 29:1.0 30:1.0 32:1.0 50:0.5 59:0.029850746268656716 101:0.5 108:0.2 168:0.5 195:1.0 209:0.2857142857142857 321:0.3333333333333333 611:1.0 866:0.3333333333333333 909:1.0 1062:1.0 1151:1.0 1207:1.0 2284:0.5 3445:1.0 4297:1.0 5159:1.0
15 1:2.0 6:0.5 33:0.3333333333333333 41:0.3333333333333333 43:0.3333333333333333 91:0.25 101:0.5 110:1.0 186:1.0 338:0.3333333333333333 362:0.3333333333333333 396:1.0 421:1.0 449:1.0 472:0.5 688:0.5 1249:1.0 1794:1.0 2017:1.0 2360:1.0 2538:1.0 2811:1.0 4759:1.0
15 29:0.5 33:0.3333333333333333 116:0.14285714285714285 119:0.3333333333333333 300:1.0 460:1.0 963:1.0 1055:1.0 1903:0.5 1904:1.0 1911:0.5 2291:1.0 3690:1.0 5476:1.0
15 108:0.1 110:1.0 192:0.14285714285714285 249:0.5 361:0.2 1955:1.0 3728:1.0 6412:1.0
15 101:0.5 126:0.3333333333333333 170:1.0 321:0.3333333333333333 338:0.6666666666666666 361:0.2 1467:1.0 1728:1.0 1828:0.5 3082:1.0 5119:1.0
15 98:0.25 104:1.0 126:0.6666666666666666 140:0.25 151:0.16666666666666666 362:0.3333333333333333 396:1.0 433:1.0 494:1.0 588:1.0 611:0.5 765:1.0 925:0.5 1229:1.0 1356:1.0 1470:1.0 1521:1.0 1712:1.0 2262:1.0
15 4:0.2 15:0.5 24:0.125 62:0.041666666666666664 103:0.16666666666666666 108:0.1 171:0.25 180:0.125 196:1.0 254:0.5 415:1.0 552:0.5 909:1.0 936:0.5 960:1.0 986:0.3333333333333333 1032:1.0 1203:1.0 1354:0.3333333333333333 1406:0.5 1778:1.0 2284:0.5 2635:0.25 3469:1.0 3603:1.0 4003:1.0 5007:1.0 6372:1.0
15 65:0.6666666666666666 108:0.1 151:0.16666666666666666 170:1.0 254:0.5 361:0.1 425:1.0 469:0.5 472:0.5 623:0.2 1647:0.5 1648:1.0 2454:1.0 2618:1.0 3770:1.0 7215:1.0
15 4:0.2 6:0.25 24:0.125 41:0.3333333333333333 43:0.3333333333333333 65:0.3333333333333333 82:1.0 84:0.5 96:1.0 108:0.1 116:0.07142857142857142 126:0.3333333333333333 140:0.25 151:0.16666666666666666 156:1.0 234:0.2 235:1.0 251:0.1 360:0.5 433:2.0 466:1.0 584:1.0 601:1.0 616:1.0 709:1.0 763:0.5 975:1.0 1460:1.0 1522:1.0 1803:1.0 1816:1.0 1840:1.0 2621:1.0 2638:1.0 2716:1.0 2830:1.0 3190:1.0 4003:1.0 4458:1.0 5114:1.0
15 29:0.5 49:1.0 50:0.5 55:0.3333333333333333 116:0.14285714285714285 119:0.3333333333333333 165:0.25 221:0.5 234:0.2 319:1.0 657:0.25 785:1.0 1257:1.0 1557:1.0 2962:1.0 4173:2.0 5709:1.0
15 59:0.014925373134328358 60:0.14285714285714285 65:0.3333333333333333 108:0.1 156:1.0 192:0.14285714285714285 208:1.0 234:0.2 249:0.5 362:0.3333333333333333 396:2.0 561:1.0 838:1.0 1001:1.0 1118:0.5 1251:1.0 1304:0.3333333333333333 2392:1.0 3189:1.0 6344:1.0
15 41:0.3333333333333333 104:1.0 108:0.2 110:1.0 209:0.14285714285714285 342:0.5 442:1.0 469:0.5 1203:0.5 1208:1.0 1514:1.0 1652:1.0 2462:1.0 2917:1.0 5853:1.0
15 4:0.2 24:0.25 29:0.5 33:0.3333333333333333 71:1.0 108:0.1 320:0.5 484:0.14285714285714285 491:1.0 662:1.0 785:1.0 1543:1.0 1639:1.0 1674:1.0 6282:1.0
15 1:1.0 4:0.2 24:0.125 29:0.5 41:1.3333333333333333 84:0.5 101:0.5 103:0.3333333333333333 108:0.1 126:0.6666666666666666 149:1.0 248:0.3333333333333333 335:1.0 352:0.2 360:0.5 484:0.14285714285714285 665:0.25 763:0.5 785:1.0 1021:1.0 1162:1.0 1192:0.2 1223:1.0 1449:1.0 1637:1.0 1797:1.0 2323:1.0 2576:0.5 2617:1.0 2721:1.0 2959:1.0 3215:1.0 3560:1.0 4276:1.0 5050:1.0
15 4:0.2 12:1.0 24:0.5 50:0.5 65:0.3333333333333333 84:2.0 91:0.5 110:1.0 151:0.16666666666666666 156:1.0 186:1.0 213:1.0 217:1.0 311:0.3333333333333333 321:0.3333333333333333 324:1.0 491:1.0 691:1.0 866:0.3333333333333333 925:0.5 1036:1.0 1427:1.0 2330:1.0 3207:1.0 3501:2.0 4417:1.0 6188:1.0 6850:1.0
15 4:0.6 24:0.125 29:0.5 41:1.0 65:0.3333333333333333 70:3.0 108:0.2 140:0.25 151:0.3333333333333333 167:1.0 201:1.0 321:0.3333333333333333 361:0.1 484:0.14285714285714285 528:0.3333333333333333 603:1.5 611:0.5 691:1.0 866:0.3333333333333333 1021:1.0 1022:1.0 1354:0.3333333333333333 1639:1.0 1990:1.0 2139:1.0 2323:2.0 2332:1.0 3288:1.0 4538:1.0 4555:1.0 5074:1.0 6282:1.0
15 6:0.25 33:0.3333333333333333 59:0.014925373134328358 60:0.14285714285714285 91:0.25 108:0.1 192:0.14285714285714285 194:1.0 196:1.0 209:0.14285714285714285 223:1.0 484:0.14285714285714285 526:0.5 537:1.0 636:1.0 873:1.0 1496:1.0 2023:0.75 2062:1.0 2284:0.5 2576:0.5 4388:1.0 6758:1.0
15 16:1.0 24:0.125 65:0.3333333333333333 88:1.0 101:0.5 116:0.07142857142857142 126:0.3333333333333333 151:0.16666666666666666 171:0.25 180:0.125 251:0.1 311:0.3333333333333333 332:1.0 340:1.0 348:1.0 444:1.0 487:0.25 530:0.5 576:0.5 709:1.0 866:0.3333333333333333 928:1.0 949:1.0 1161:1.0 1208:1.0 1210:1.0 1356:1.0 1495:1.0 2191:1.0 2341:1.0 2635:0.25 2752:1.0 3772:1.0 4984:1.0 6204:1.0
15 1:1.0 4:0.2 24:0.125 59:0.014925373134328358 115:0.1 116:0.21428571428571427 192:0.14285714285714285 194:1.0 196:1.0 205:0.5 207:0.5 209:0.14285714285714285 251:0.1 252:2.0 253:1.0 327:1.0 936:0.5 1057:1.0 1354:0.3333333333333333 2177:1.0 2343:1.0 2581:1.0 2911:1.0 3840:0.5 6758:1.0
15 88:1.0 116:0.07142857142857142 251:0.1 348:1.0 530:0.5 576:0.5 766:1.0 866:0.3333333333333333 1693:1.0 1705:1.0 2002:1.0 2341:1.0 2752:1.0 2868:1.0
15 24:0.125 51:1.0 276:1.0 454:1.0 528:0.3333333333333333 1354:0.3333333333333333 1470:1.0 1652:1.0 1707:0.5 3483:0.5 3668:1.0
15 29:0.5 36:0.2 70:1.0 73:0.3333333333333333 118:0.5 166:1.0 225:1.0 456:1.0 1076:1.0 1304:0.3333333333333333
15 4:0.2 29:1.0 60:0.14285714285714285 74:0.3333333333333333 78:0.09090909090909091 108:0.2 116:0.07142857142857142 205:0.5 209:0.14285714285714285 326:1.0 352:0.2 456:1.0 550:1.0 667:1.0 866:0.3333333333333333 1107:1.0 1177:1.0 1644:1.0 1837:1.0 2119:0.5 3137:1.0 3840:0.5 6173:1.0 6699:1.0
15 7:1.0 24:0.25 108:0.1 110:1.0 116:0.07142857142857142 324:1.0 409:0.5 433:1.0 469:0.5 484:0.14285714285714285 527:0.16666666666666666 576:0.5 614:1.0 753:1.0 756:1.0 757:1.0 809:0.2 1137:1.0 1144:1.0 1156:1.0 1192:0.2 1280:1.0 1304:0.3333333333333333 1336:1.0 1457:1.0 1614:1.0 1693:1.0 1696:1.0 1701:1.0 1702:1.0 3009:1.0 3010:1.0 3493:1.0 3719:1.0 4995:1.0 5414:1.0 7189:1.0
15 1:1.0 4:0.2 41:0.6666666666666666 65:0.3333333333333333 70:1.0 91:0.25 101:0.5 171:0.25 205:0.5 211:1.0 249:0.5 324:1.0 333:1.0 337:1.0 362:0.3333333333333333 620:1.0 909:1.0 1145:0.3333333333333333 1207:1.0 1210:1.0 1359:1.0 3444:1.0 3840:0.5 4268:1.0 5420:1.0 6173:1.0
15 24:0.125 25:1.0 26:1.0 29:0.5 30:1.0 31:1.0 170:1.0 180:0.125 234:0.2 266:0.25 402:0.5 456:1.0 552:0.5 576:0.5 750:0.3333333333333333 986:0.3333333333333333 1144:1.0 1641:1.0 1914:1.0
15 12:1.0 41:0.3333333333333333 146:1.0 189:1.0 192:0.14285714285714285 309:1.0 434:1.0 1489:1.0 1552:1.0 1816:1.0 2880:1.0 4173:1.0
15 24:0.25 37:0.5 38:1.0 39:1.0 40:1.0 41:0.3333333333333333 42:1.0 43:0.3333333333333333 44:1.0 45:1.0 91:0.25 101:0.5 104:1.0 129:0.3333333333333333 292:1.0 444:1.0 1652:1.0 1689:1.0 1690:1.0 1947:1.0 2128:0.3333333333333333 2130:1.0 2261:1.0 2606:1.0 3633:1.0 4293:1.0 4575:1.0 4980:1.0
15 4:0.2 31:1.0 41:0.6666666666666666 43:0.3333333333333333 78:0.09090909090909091 84:0.5 88:1.0 212:0.5 469:0.5 1157:1.0 3453:1.0 3467:1.0 3783:1.0
15 17:1.0 41:0.3333333333333333 70:1.0 92:1.0 127:0.25 128:1.0 171:0.25 225:1.0 311:0.3333333333333333 361:0.2 408:1.0 421:1.0 433:1.0 484:0.14285714285714285 528:0.3333333333333333 552:0.5 584:1.0 636:1.0 975:1.0 1111:1.0 1210:1.0 1359:1.0 1674:1.0 1944:1.0 2396:1.0 3754:1.0 3755:1.0 4005:1.0 4849:1.0 4881:1.0 5709:1.0 6260:1.0
15 1:1.0 15:0.5 29:1.0 78:0.09090909090909091 84:0.5 92:1.0 119:0.3333333333333333 140:0.25 165:0.25 168:1.0 180:0.125 225:3.0 340:1.0 375:1.0 422:1.0 649:1.0 1506:1.0 1663:1.0 1786:0.5 1907:1.0 2002:1.0 2753:1.0 3373:1.0 5159:1.0
15 4:0.2 17:1.0 24:0.125 29:0.5 92:3.0 103:0.16666666666666666 108:0.1 116:0.07142857142857142 126:0.3333333333333333 129:0.3333333333333333 151:0.16666666666666666 162:1.0 171:0.25 198:1.0 203:1.0 321:0.3333333333333333 326:1.0 444:1.0 552:0.5 925:0.5 1154:1.0 1276:1.0 1406:0.5 2355:1.0 2628:1.0 2859:1.0 4697:1.0 4849:1.0 6160:1.0 6750:1.0
15 6:0.25 24:0.125 29:0.5 41:0.6666666666666666 62:0.041666666666666664 98:0.25 101:0.5 108:0.2 170:1.0 171:0.25 180:0.125 368:0.16666666666666666 387:1.0 551:1.0 552:0.5 689:1.0 709:1.0 975:1.0 1144:1.0 1303:1.0 1786:0.5 2167:1.0 2261:1.0 2396:1.0 2480:1.0 2628:1.0 2663:1.0 4161:1.0 4984:1.0 5723:0.5
15 1:1.0 41:0.3333333333333333 43:0.3333333333333333 47:1.0 62:0.041666666666666664 65:0.3333333333333333 101:0.5 140:0.5 151:0.16666666666666666 234:0.2 319:1.0 362:0.3333333333333333 487:0.25 552:0.5 687:0.2 709:1.0 975:1.0 1154:1.0 1207:1.0 1546:1.0 2167:1.0 2859:1.0 3247:1.0 4543:1.0
15 17:1.0 24:0.25 29:0.5 41:0.6666666666666666 62:0.041666666666666664 65:0.3333333333333333 84:0.5 101:0.5 180:0.125 195:1.0 235:1.0 368:0.16666666666666666 422:1.0 440:1.0 456:1.0 528:0.3333333333333333 866:0.3333333333333333 993:1.0 1032:1.0 1154:1.0 1374:1.0 1689:1.0 2617:1.0 3082:1.0 3650:1.0 5992:1.0
15 6:0.25 29:0.5 33:0.3333333333333333 49:1.0 84:0.5 103:0.16666666666666666 466:1.0 473:0.5 723:1.0 754:1.0 1021:1.0 1543:1.0 2357:1.0 2359:1.0 3086:1.0 3429:1.0 3716:1.0 4143:1.0 4144:1.0 4145:1.0 4146:1.0 4147:1.0 4295:1.0 5608:1.0 5945:1.0
15 1:1.0 12:1.0 24:0.125 33:0.3333333333333333 59:0.014925373134328358 84:1.0 98:0.25 101:0.5 103:0.16666666666666666 140:0.25 180:0.125 211:1.0 259:0.42857142857142855 333:1.0 340:1.0 361:0.1 415:1.0 572:1.0 841:1.0 1001:1.0 1002:1.0 1118:0.5 1192:0.2 1284:1.0 1843:1.0 2023:0.25 2202:1.0 2752:1.0 5050:2.0 5061:1.0 6411:1.0 6497:1.0
15 6:0.25 33:0.3333333333333333 62:0.041666666666666664 84:0.5 85:0.3333333333333333 110:1.0 116:0.07142857142857142 129:0.3333333333333333 135:2.0 139:1.0 140:0.75 146:1.0 160:1.0 209:0.14285714285714285 234:0.2 307:1.0 308:1.0 309:1.0 552:0.5 1591:1.0 1764:1.0 3623:0.5 5796:1.0
15 12:1.0 108:0.2 110:1.0 159:0.5 182:1.0 196:1.0 321:0.3333333333333333 484:0.14285714285714285 527:0.16666666666666666 866:0.3333333333333333 909:1.0 2126:3.0 3019:1.0 3237:1.0 3309:1.0 4862:1.0
15 41:0.3333333333333333 65:0.3333333333333333 70:1.0 91:0.25 104:1.0 132:1.0 140:0.5 147:2.0 156:1.0 186:1.0 201:1.0 340:1.0 361:0.1 396:1.0 623:0.2 687:0.2 773:1.0 825:2.0 1400:0.5 1470:1.0 2172:1.0 2173:1.0 2174:1.0 2175:1.0 2176:1.0 2846:1.0 3257:1.0 4479:1.0
15 24:0.125 43:0.3333333333333333 50:0.5 60:0.14285714285714285 65:0.3333333333333333 70:1.0 89:0.3333333333333333 108:0.2 126:0.3333333333333333 129:0.3333333333333333 140:0.25 151:0.16666666666666666 173:1.0 180:0.375 244:0.5 338:0.3333333333333333 361:0.1 392:0.5 603:0.5 611:0.5 874:1.0 995:1.0 1358:1.0 1521:1.0 1712:1.0 2067:1.0 2185:1.0 2186:2.0 2611:1.0 3101:1.0 4451:1.0 4693:1.0 6814:1.0 6841:1.0
15 4:0.2 6:0.25 24:0.125 41:0.3333333333333333 103:0.16666666666666666 104:1.0 362:0.3333333333333333 609:1.0 869:1.0 1438:0.5 1665:1.0 1862:1.0 2434:1.0 3890:1.0 4194:1.0 4285:1.0
15 24:0.125 41:0.3333333333333333 65:0.3333333333333333 101:0.5 127:0.25 173:1.0 212:0.5 433:1.0 492:1.0 1065:1.0 1531:1.0 2392:1.0 2908:1.0 3881:1.0 4045:1.0 4886:3.0
15 1:1.0 6:0.25 24:0.125 29:0.5 36:0.2 41:0.3333333333333333 43:0.3333333333333333 59:0.014925373134328358 62:0.041666666666666664 70:1.0 84:0.5 91:0.25 108:0.2 110:2.0 140:0.25 160:1.0 162:1.0 168:0.5 180:0.125 212:0.5 311:0.3333333333333333 716:1.0 850:1.0 911:1.0 995:1.0 1115:0.5 1144:1.0 1154:1.0 1156:1.0 1249:1.0 1254:1.0 1639:1.0 1668:1.0 2023:0.25 2854:1.0 3839:1.0 4682:1.0 4731:0.25 5422:1.0 6157:1.0
15 1:1.0 12:1.0 24:0.125 41:0.6666666666666666 65:0.3333333333333333 70:1.0 96:1.0 103:0.3333333333333333 104:1.0 110:1.0 187:1.0 361:0.1 396:2.0 444:1.0 451:0.5 487:0.25 491:1.0 689:1.0 770:1.0 815:1.0 1118:0.5 1151:1.0 1166:1.0 1207:1.0 1210:1.0 1238:0.5 1286:1.0 1470:1.0 2140:1.0 2261:1.0 2457:1.0 2654:1.0 3257:1.0 3453:1.0 3524:1.0 3788:1.0 4005:1.0 4194:1.0 4195:1.0 4235:1.0 4285:1.0 5606:1.0 5817:1.0
15 6:0.5 24:0.125 29:0.5 41:0.3333333333333333 81:2.0 84:1.0 110:1.0 116:0.07142857142857142 180:0.125 196:1.0 225:1.0 361:0.2 472:0.5 473:0.5 485:1.0 527:0.16666666666666666 531:2.0 537:1.0 572:1.0 1652:1.0 1791:2.0 2140:1.0 2491:1.0 2550:1.0 4020:1.0 5120:1.0 5299:1.0 6724:1.0
15 24:0.125 41:1.0 70:1.0 92:1.0 103:0.16666666666666666 129:0.3333333333333333 153:1.0 338:0.6666666666666666 361:0.2 623:0.2 709:1.0 1208:1.0 2396:1.0 2495:1.0 5120:1.0 5385:1.0 6724:1.0
15 2:1.0 24:0.375 47:1.0 65:0.3333333333333333 89:0.3333333333333333 108:0.1 112:1.0 140:0.25 198:1.0 368:0.16666666666666666 530:0.5 552:0.5 1144:1.0 1151:1.0 1177:1.0 1913:1.0 2618:1.0 3042:1.0 3455:1.0 4682:1.0 7216:1.0
15 41:0.6666666666666666 78:0.09090909090909091 104:1.0 135:1.0 140:0.25 151:0.16666666666666666 300:1.0 709:1.0 731:0.5 790:1.0 873:1.0 1042:1.0 1947:1.0 2288:1.0 3634:1.0 4982:1.0 5348:1.0 5349:1.0
15 6:0.25 24:0.125 41:0.6666666666666666 140:0.25 171:0.25 289:1.0 361:0.1 1196:1.0 1203:0.5 1210:1.0 1457:1.0 1699:1.0 1712:1.0 2017:1.0 2405:1.0 3010:1.0 3469:1.0
15 17:1.0 29:0.5 55:0.3333333333333333 115:0.1 116:0.07142857142857142 127:0.25 128:1.0 180:0.125 203:1.0 321:0.3333333333333333 400:0.5 425:1.0 440:1.0 456:1.0 526:0.5 527:0.16666666666666666 1294:1.0 1304:0.3333333333333333 2424:1.0 2425:1.0 4035:1.0 4061:1.0 5009:1.0
15 24:0.125 43:0.6666666666666666 103:0.16666666666666666 126:0.3333333333333333 140:0.75 187:1.0 194:1.0 311:0.6666666666666666 335:1.0 363:1.0 528:0.3333333333333333 597:1.0 601:1.0 623:0.2 1354:0.3333333333333333 1356:1.0 2136:1.0 2443:1.0 2444:1.0 2445:1.0 2446:1.0 2836:1.0 3788:1.0 4035:1.0 4543:1.0
15 24:0.125 60:0.14285714285714285 126:0.6666666666666666 180:0.125 192:0.14285714285714285 196:1.0 212:0.5 217:1.0 266:0.25 324:1.0 335:1.0 342:0.5 709:1.0 763:0.5 935:1.0 1145:0.3333333333333333 1192:0.2 1217:1.0 1230:1.0 1807:1.0 1837:1.0 2151:1.0 2576:0.5 2623:1.0 2638:1.0 2975:1.0 3252:1.0 3425:1.0 3633:1.0 4291:1.0 5967:1.0
15 1:1.0 55:0.3333333333333333 127:0.25 143:1.0 387:1.0 433:1.0 469:0.5 911:1.0 986:0.3333333333333333 1000:1.0 2832:1.0
15 6:0.5 24:0.125 29:0.5 84:0.5 160:1.0 165:0.25 170:1.0 348:1.0 469:0.5 572:1.0 636:1.0 704:1.0 809:0.2 986:0.3333333333333333 1559:1.0 1774:1.0 2911:1.0 4617:1.0
15 6:0.25 24:0.125 43:0.3333333333333333 65:1.0 96:1.0 103:0.5 108:0.4 116:0.07142857142857142 126:0.6666666666666666 140:0.25 151:0.16666666666666666 196:2.0 335:1.0 444:1.0 609:0.5 672:1.0 674:1.0 765:1.0 770:1.0 1106:1.0 1203:0.5 1507:1.0 1914:1.0 2329:1.0 3469:1.0 3591:1.0 5031:1.0
15 12:1.0 24:0.125 29:1.0 31:1.0 50:0.5 82:1.0 108:0.1 116:0.07142857142857142 160:1.0 168:0.5 180:0.125 198:1.0 211:1.0 225:1.0 280:1.0 326:1.0 418:1.0 485:1.0 572:1.0 668:0.5 689:1.0 1057:1.0 1106:1.0 1111:1.0 1151:1.0 1264:1.0 1843:1.0 1869:1.0 2506:1.0 2862:1.0 2888:1.0 2911:1.0 4598:1.0 5472:1.0 6411:1.0 6507:1.0 6837:1.0 6859:1.0
15 24:0.125 98:0.25 103:0.16666666666666666 140:0.25 444:1.0 494:1.0 611:1.0 707:1.0 1575:1.0 1668:1.0 1827:1.0 2130:1.0 2859:1.0 3249:1.0
15 24:0.125 29:0.5 59:0.014925373134328358 65:0.3333333333333333 82:1.0 85:0.3333333333333333 88:1.0 103:0.16666666666666666 126:0.3333333333333333 151:0.16666666666666666 180:0.125 209:0.14285714285714285 362:0.3333333333333333 487:0.25 1143:1.0 2194:1.0 2346:1.0 6155:1.0
15 28:0.14285714285714285 29:0.5 60:0.14285714285714285 82:1.0 84:0.5 116:0.07142857142857142 209:0.14285714285714285 321:1.0 3500:1.0 3636:0.25 5865:1.0 6963:1.0
15 36:0.2 88:1.0 140:0.5 311:0.3333333333333333 603:0.5 2112:1.0 6942:1.0 7278:1.0
15 24:0.125 33:0.3333333333333333 108:0.1 115:0.1 158:1.0 456:1.0 653:1.0 2550:1.0
15 1:1.0 24:0.25 33:0.6666666666666666 41:0.3333333333333333 65:0.3333333333333333 88:1.0 181:1.0 239:1.0 282:1.0 284:1.0 368:0.16666666666666666 410:1.0 636:2.0 655:1.0 657:0.25 1079:2.0 1092:1.0 1308:1.0 1403:1.0 1846:1.0 1911:0.5 2017:1.0 2062:1.0 3451:1.0 5310:1.0 5889:1.0
15 1:2.0 4:0.2 12:1.0 24:0.125 41:0.3333333333333333 55:0.3333333333333333 59:0.014925373134328358 61:1.0 127:0.25 129:0.3333333333333333 151:0.16666666666666666 170:1.0 188:0.5 226:1.0 258:1.0 311:0.3333333333333333 396:1.0 425:1.0 449:1.0 469:0.5 505:1.0 862:1.0 967:1.0 1030:1.0 1081:0.5 1092:1.0 1118:0.5 1791:1.0 1836:1.0 1931:1.0 2016:1.0 2396:1.0 2557:1.0 5903:1.0 7029:1.0
15 17:2.0 24:0.25 41:0.3333333333333333 62:0.041666666666666664 65:0.6666666666666666 103:0.16666666666666666 110:1.0 116:0.07142857142857142 127:0.25 234:0.2 251:0.1 320:0.5 362:0.3333333333333333 404:1.0 466:1.0 723:1.0 1030:1.0 1304:0.3333333333333333 1394:1.0 1406:0.5 1496:1.0 1591:1.0 1734:1.0 1738:1.0 1998:1.0 2543:1.0 3102:1.0 3418:1.0 3422:1.0 4782:1.0 4804:1.0
15 59:0.029850746268656716 85:0.3333333333333333 89:0.3333333333333333 91:0.25 99:1.0 103:0.16666666666666666 140:0.25 151:0.16666666666666666 245:0.5 429:1.0 451:0.5 815:1.0 1452:1.0 1791:1.0 2354:0.3333333333333333 3257:1.0
15 1:1.0 4:0.2 12:1.0 108:0.1 110:1.0 198:1.0 245:0.5 280:1.0 374:1.0 484:0.14285714285714285 487:0.25 491:1.0 552:0.5 741:1.0 862:1.0 864:1.0 1186:1.0 1641:1.0 5209:1.0 5357:1.0
15 4:0.2 24:0.125 28:0.14285714285714285 29:0.5 33:0.3333333333333333 49:1.0 50:1.0 82:1.0 110:1.0 116:0.21428571428571427 118:1.0 119:0.3333333333333333 172:1.0 180:0.125 225:1.0 234:0.2 251:0.1 259:0.14285714285714285 361:0.1 425:1.0 528:0.3333333333333333 530:0.5 661:1.0 829:1.0 960:1.0 1055:1.0 1139:1.0 1550:0.3333333333333333 1591:1.0 1816:1.0 1904:1.0 3606:1.0 4299:1.0 4860:1.0 5009:1.0 5725:1.0 6662:1.0
15 41:1.0 65:0.3333333333333333 96:1.0 126:0.6666666666666666 140:0.25 340:1.0 362:0.6666666666666666 383:0.3333333333333333 472:0.5 611:0.5 829:1.0 861:0.125 911:1.0 1453:1.0 1979:1.0 2122:1.0 2224:1.0 2346:1.0 2396:1.0
15 6:0.25 29:0.5 33:0.3333333333333333 36:0.4 91:0.25 123:1.0 126:0.3333333333333333 168:0.5 180:0.125 212:0.5 324:1.0 415:1.0 731:0.5 1162:1.0 1249:1.0 1253:1.0 2911:1.0 5357:1.0
15 29:0.5 60:0.14285714285714285 225:1.0 266:0.25 267:0.5 321:0.3333333333333333 422:1.0 527:0.16666666666666666 553:0.5 636:1.0 657:0.25 716:1.0 2266:1.0 2356:1.0 2581:1.0 3288:1.0 3546:1.0 5608:1.0
15 129:0.3333333333333333 140:0.25 340:2.0 3866:1.0
15 71:1.0 84:0.5 127:0.25 129:0.6666666666666666 135:1.0 140:0.25 225:1.0 290:1.0 361:0.1 623:0.4 704:1.0 963:1.0 964:1.0 1065:1.0 1947:1.0 2119:0.5 2136:1.0 7004:1.0
15 6:0.25 23:1.0 24:0.125 65:0.3333333333333333 123:1.0 129:0.3333333333333333 140:0.25 180:0.125 425:1.0 971:1.0 1238:0.5 1354:0.3333333333333333 1712:1.0 2752:1.0 4481:1.0 5709:1.0
15 4:0.4 6:0.25 28:0.14285714285714285 29:1.0 82:1.0 108:0.1 110:1.0 116:0.14285714285714285 182:1.0 203:1.0 266:0.25 321:0.3333333333333333 368:0.16666666666666666 400:0.5 440:1.0 472:0.5 553:0.5 809:0.2 1519:1.0 2659:1.0 2764:1.0 2975:1.0 3042:1.0 4421:1.0 4438:1.0 6242:1.0 6282:1.0
15 29:0.5 41:0.3333333333333333 43:0.6666666666666666 55:0.3333333333333333 91:0.25 143:1.0 192:0.14285714285714285 212:0.5 562:1.0 1388:1.0 1947:1.0 2628:1.0 2773:1.0 3048:1.0 3049:1.0 3271:1.0 3627:1.0 4204:1.0 4206:1.0
15 16:1.0 24:0.125 43:0.3333333333333333 65:0.3333333333333333 91:0.25 103:0.16666666666666666 129:0.3333333333333333 198:1.0 199:0.5 212:0.5 270:1.0 395:1.0 588:1.0 723:2.0 1241:1.0 1358:1.0 1470:1.0 1740:1.0 4334:1.0
15 17:1.0 24:0.125 57:1.0 84:0.5 103:0.16666666666666666 108:0.1 127:0.25 180:0.125 234:0.2 340:1.0 528:0.3333333333333333 557:1.0 611:0.5 785:1.0 790:1.0 854:1.0 866:0.3333333333333333 1000:1.0 1144:1.0 1506:1.0 1559:1.0 1693:1.0 1819:1.0 2136:1.0 2780:1.0 3962:1.0 4354:1.0
15 24:0.125 70:1.0 82:1.0 103:0.16666666666666666 108:0.1 132:1.0 139:1.0 140:0.25 151:0.16666666666666666 234:0.2 311:0.3333333333333333 340:1.0 361:0.1 362:0.3333333333333333 505:3.0 557:1.0 623:0.2 723:1.0 785:1.0 790:1.0 815:1.0 949:1.0 1210:1.0 1532:1.0 1712:1.0 1819:1.0 2136:1.0 2364:1.0 2780:1.0 3962:1.0 4354:1.0
15 24:0.125 65:0.3333333333333333 96:1.0 103:0.16666666666666666 140:0.25 361:0.1 444:1.0 448:1.0 494:1.0 528:0.3333333333333333 636:1.0 709:1.0 1429:1.0 3826:1.0 5203:1.0 5205:1.0
15 65:0.3333333333333333 70:1.0 84:0.5 108:0.1 140:0.25 180:0.125 234:0.2 429:1.0 593:1.0 636:1.0 1094:2.0 1712:1.0 1914:1.0 1923:1.0 2062:1.0 3918:1.0 4858:1.0
15 24:0.125 41:0.3333333333333333 65:0.3333333333333333 103:0.16666666666666666 116:0.14285714285714285 165:0.25 225:1.0 266:0.25 471:0.5 534:0.3333333333333333 665:0.25 684:0.3333333333333333 712:1.0 862:1.0 1341:1.0 1363:1.0 1566:1.0 2002:0.5 2117:0.5 2329:1.0 2618:1.0 3082:1.0 3212:1.0 3944:1.0 4630:1.0 7259:1.0
15 6:0.25 41:0.3333333333333333 65:0.3333333333333333 108:0.1 308:1.0 321:0.3333333333333333 383:0.3333333333333333 945:2.0 3023:0.5 3422:1.0 4083:0.5
15 24:0.125 59:0.029850746268656716 101:0.5 116:0.07142857142857142 119:0.3333333333333333 165:0.25 362:0.3333333333333333 440:1.0 909:1.0 911:1.0 921:1.0 1492:1.0 1622:1.0 1843:1.0 2157:1.0 3024:1.0 3274:1.0 4023:1.0 4731:0.25 4793:1.0 5275:1.0 6194:1.0 6221:1.0
15 4:0.2 24:0.25 41:0.3333333333333333 82:1.0 91:0.25 92:1.0 103:0.16666666666666666 126:0.3333333333333333 188:0.5 362:0.6666666666666666 433:1.0 479:1.0 611:0.5 765:1.0 949:1.0 978:1.0 1208:1.0 1356:1.0 1915:1.0 2314:1.0 2364:1.0 2620:1.0 2649:1.0 3316:1.0 3454:1.0 4560:1.0
|
17278cec050a3da0258ff22f92553207f9b46777
|
d465fcea94a1198464d7f8a912244e8a6dcf41f9
|
/system/kiks_gui_loghistory.sci
|
13dd9b9a4f62969c6b9e25d8c780142b939f2454
|
[] |
no_license
|
manasdas17/kiks-scilab
|
4f4064ed7619cad9e2117a6c0040a51056c938ee
|
37dc68914547c9d0f423008d44e973ba296de67b
|
refs/heads/master
| 2021-01-15T14:18:21.918789 | 2009-05-11T05:43:11 | 2009-05-11T05:43:11 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 3,843 |
sci
|
kiks_gui_loghistory.sci
|
function [] = kiks_gui_loghistory()
// Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
global("KIKS_HISTORY_HDL","KIKS_GUI_HDL","KIKS_LOG_HISTORY","KIKS_STATUS_BUFFER","KIKS_STATUS_BUFFER_CNT")
valid_handle = %F;
if ~isempty(KIKS_HISTORY_HDL) then
try
close(KIKS_HISTORY_HDL);
valid_handle = %T;
end;
end;
if ~valid_handle then
// !! L.14: Matlab function figure not yet converted
// !! L.14: Matlab function figure not yet converted, original calling sequence used
h = figure("Visible","off","PaperUnits","points","CloseRequestFcn","kiks_gui_loghistory","Name","KiKS log history","ToolBar","none","KeypressFcn","kiks_matlab_focus","Resize","on","ResizeFcn","p=get(gcf,''Position''); h=findobj(gcf,''tag'',''loghistory''); lp=get(h,''position''); lp(3:4)=p(3:4); set(h,''position'',lp);","Menu","none","NumberTitle","off");
// !! L.15: Matlab function set not yet converted, original calling sequence used
// L.15: Name conflict: function name changed from set to %set
set(h,"Name","KiKS log history");
// !! L.16: Matlab function get not yet converted, original calling sequence used
// L.16: Name conflict: function name changed from get to %get
p = get(h,"Position");
xs = 640;
ys = 460;
p = mtlb_i(p,1,mtlb_a(mtlb_double(mtlb_e(p,1)),mtlb_s(mtlb_double(mtlb_e(p,3)),xs)/2));
p = mtlb_i(p,2,mtlb_a(mtlb_double(mtlb_e(p,2)),mtlb_s(mtlb_double(mtlb_e(p,4)),ys)/2));
p = mtlb_i(p,3,xs);
p = mtlb_i(p,4,ys);
// !! L.23: Matlab function set not yet converted, original calling sequence used
// L.23: Name conflict: function name changed from set to %set
set(h,"Position",p);
// !! L.36: Unknown function mtlb_double not converted, original calling sequence used
// !! L.36: Unknown function mtlb_double not converted, original calling sequence used
// !! L.36: Unknown function mtlb_s not converted, original calling sequence used
// !! L.36: Unknown function mtlb_a not converted, original calling sequence used
// !! L.36: Unknown function mtlb_double not converted, original calling sequence used
// !! L.36: Unknown function mtlb_imp not converted, original calling sequence used
// !! L.36: Matlab function uicontrol not yet converted, original calling sequence used
try
logtext = strcat(mtlb_e(KIKS_STATUS_BUFFER,mtlb_imp(mtlb_a(mtlb_s(mtlb_double(KIKS_LOG_HISTORY),mtlb_double(KIKS_STATUS_BUFFER_CNT)),1),mtlb_double(KIKS_LOG_HISTORY))), '|');
catch
logtext = '';
end;
h1 = uicontrol("Parent",h,"BackgroundColor",[1,1,1],"Units","pixels","FontUnits","points","FontName","Courier New","FontSize",9,"FontWeight","normal","HorizontalAlignment","left","Position",[0,0,xs,ys],"Style","listbox","String",logtext,"Tag","loghistory");
set(h1,"value",KIKS_STATUS_BUFFER_CNT);
KIKS_HISTORY_HDL = h;
// !! L.39: Matlab function findobj not yet converted, original calling sequence used
// L.39: Name conflict: function name changed from findobj to %findobj
s = findobj("tag","togglelog");
// !! L.40: Matlab function set not yet converted, original calling sequence used
// L.40: Name conflict: function name changed from set to %set
set(s,"string","close log history");
// !! L.41: Matlab function set not yet converted, original calling sequence used
// L.41: Name conflict: function name changed from set to %set
set(KIKS_HISTORY_HDL,"Visible","on");
else
//close(KIKS_HISTORY_HDL);
KIKS_HISTORY_HDL = [];
// !! L.45: Matlab function findobj not yet converted, original calling sequence used
// L.45: Name conflict: function name changed from findobj to %findobj
s = findobj("tag","togglelog");
// !! L.46: Matlab function set not yet converted, original calling sequence used
// L.46: Name conflict: function name changed from set to %set
set(s,"string","view log history");
end;
endfunction
|
8d62a47a4b9fc77e746297a5a293ef2b01fadf04
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2258/CH7/EX7.18/7_18.sce
|
d6354859f2f8b9f0663c77ed0ded3e5540cdced9
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 292 |
sce
|
7_18.sce
|
clc();
clear;
// To calculate the density and mobility of charge carrier
RH=-7.35*10^-5; //hall coefficient
e=1.6*10^-19;
n=(-1/(RH*e));
sigma=200;
mew=sigma/(n*e);
printf("density of charge carriers in m^3 is");
disp(n);
printf("mobility of charge carriers is %f m^2/Vs",mew);
|
274c5661350b1ce45f489417e1461048050eceea
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1301/CH5/EX5.10/ex5_10.sce
|
1743113350e19ab0613d460051ee04161265f0a8
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 222 |
sce
|
ex5_10.sce
|
clc;
p=1; //power output in hp
p=1*746 //power output in Watt using 1hp = 746Watt
F=300; //Force in Newton
v=p/F; //calculating v in m/sec using P=F*v
disp(v,"Velocity in m/sec = "); //displaying velocity in m/sec
|
265b5a5051378d43651da5d502c9317bd88591e8
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1670/CH11/EX11.2/11_2.sce
|
7de5e12ea855012410ee6c433eaeafa607cd24ca
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 575 |
sce
|
11_2.sce
|
//Example 11.2
//Gauss-Seidel Method
//Page no. 368
clc;clear;close;
U=[0,1,2,0;1,0,0,4;2,0,0,5;0,4,5,0]
k=1;
for i=2:3
for j=2:3
if (i==2 & j==3) | (i==3 & j==2) then
U(i,j)=0
else
U(i,j)=(U(i-1,j)+U(i+1,j)+U(i,j-1)+U(i,j+1))/4
end
printf(" u%i=%g, ",k,U(i,j))
k=k+1
end
end
for l=1:7
printf('\n\n')
k=1;
for i=2:3
for j=2:3
U(i,j)=(U(i-1,j)+U(i+1,j)+U(i,j-1)+U(i,j+1))/4
printf("\n u%i(%i)=%.13g\n",k,l,U(i,j))
k=k+1
end
end
end
|
b60998b54c5eb4006376d3fac474ec7793de0b98
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3784/CH4/EX4.50/Ex4_50.sce
|
c6f99366f77358d1b844ca7fba6dbe7622db4d6e
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 761 |
sce
|
Ex4_50.sce
|
clc
//Variable Initialisation
Ea=500//Input Voltage of motor in volts
Ra=0.06//Armature resistance in ohm
Rf=0.09//Field resistance in ohm
K=12e-3//Motor Constant
Ia=400//Armature Current in Ampere
d1=0.6//Duty Ratio
//Solution
E0=(1-d1)*Ea
Pin=E0*Ia
R=Ra+Rf
Req=(E0/Ia)+R
Wmin=R/K
Wminr=Wmin*30/%pi
Wmax=(R/K)+(Ea/(K*Ia))
Wmaxr=Wmax*30/%pi
Eb=E0+(Ia*R)
W=Eb/(K*Ia)
Wr=W*30/%pi
printf('\n\n Voltage across Converter=%0.1f Volts\n\n',E0)
printf('\n\n Power Generated=%0.1f KW\n\n',Pin*10^-3)
printf('\n\n Equivalent Resistance of Motor=%0.1f ohm\n\n',Req)
printf('\n\n Maximum Permissible Braking Speed=%0.1f rpm\n\n',Wmaxr)
printf('\n\n Minimum Permissible Braking Speed=%0.1f rpm\n\n',Wminr)
printf('\n\n Motor Speed=%0.1f rpm\n\n',Wr)
|
2f74594a6b9b9259fb4b5df28c70794abdc974eb
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2627/CH6/EX6.6/Ex6_6.sce
|
c9158e52157e4d414143c63158bd4e051f49d88a
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 416 |
sce
|
Ex6_6.sce
|
//Ex 6.6
clc;clear;close;
format('v',5);
Ia=110;//A
Vs=480;//V
Ra=0.2;//ohm
P=6;//no. of poles
c=6;//no. of parallel paths
p=P/2;//no. of pair of poles
Z=864;//no. of conductors
fi=0.05;//Wb
emf=Vs-Ia*Ra;//V
N=emf/(2*Z/c*p/60*fi);//rpm
N=round(N);//rpm
disp(N,"(a) Speed in rpm");
Pm=Ia*emf;//W(Mechanical power developed)
M=Pm/(N/60)/(2*%pi);//Nm(Torque)
disp(M,"(b) Gross torque developed(Nm)");
|
81b0333de951ca6d0218a5fca9b21e26dc426670
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/545/CH5/EX5.2/ch_5_eg_2.sce
|
47ff290bdd2c4df49fe19e41b5005e39c508f870
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 597 |
sce
|
ch_5_eg_2.sce
|
clc
disp("the solution of eg 5.2 -->Discretization in 1-D space");
//boundary conditions are: x=0 at y=0; dy/dx=1 at x=1
disp("to solve this problem we will take delta x=.5 since we have to find the value at x=.5");
delta_x=.5
y_1=0
//using central difference eqn
dy_by_dx=1 //at x=1, i=3
//y_4=dy/dx*2*delta_x+y_2 sincefrom B.C. at node 3
//y_2=delta_x^2+y_3-delta_x on substituting the value of y_4
y_3=-(2*delta_x^2+2*(delta_x^2-delta_x)-y_1) //on substituting the value of y_2
y_2=delta_x^2+y_3-delta_x
disp(y_2,"the value of y at x=.5 is");
|
b7cc5d772364b1b59712c6f47b4f924c1739c461
|
6802d20f76f56f855fcfe45543132d077e591474
|
/App/Models/App/ServerTemplate.tst
|
777da85721dedf577098348a3c057bf908da9781
|
[] |
no_license
|
mike-ward/Nancy.Start
|
5c16844554345eecb6502c696f0abfe75062fd29
|
ff5804c48b4ec18a8793a9d2eb1ff3bac6fe5788
|
refs/heads/master
| 2021-01-09T05:24:39.589221 | 2018-02-19T18:42:53 | 2018-02-19T18:42:53 | 80,761,860 | 1 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 299 |
tst
|
ServerTemplate.tst
|
// Generated by Typewriter Visual Studio Extension
${
using Typewriter.Extensions.Types;
Template(Settings settings) { settings.OutputExtension = ".cs.d.ts"; }
}
declare module Server {
$Classes([DataContract])[
class $Name {
$Properties[$name: $Type;
]
}]
}
|
a5da46d97af8370b56b34c40818a792a9c515789
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3774/CH4/EX4.2/Ex4_2.sce
|
0660587a9a98ff841c7200cf768e25f3d3217964
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 779 |
sce
|
Ex4_2.sce
|
// exa 4.2 Pg 104
clc;clear;close;
// Given Data
rBYd=0.1;
DBYd=1.2;
P=3;// kN
Syt=300;//MPa
n=3;// factor of safety
//dimensions of plate
l1=400;//mm
l2=300;//mm
l3=400;//mm
sigma_d=Syt/n;// MPa
Kt=1.65;// factor for circular fillet radius member
Rp=P/2;//kN (bearing reaction due to symmetry)
Mf=Rp*l1;// kN.mm (bending moment at fillet)
Mc=P*(l1+l2+l3)/4;// kN.mm (bending moment at centre)
//Fillet
//sigma_max=Kt*32*Mf/(%pi*d**3)
sigma_max_into_d_cube_1 = Kt*32*Mf*1000/%pi
//Centre
//sigma_max=32*Mc/(%pi*d**3)
sigma_max_into_d_cube_2 = Kt*32*Mf*1000/%pi
sigma_max_into_d_cube=max(sigma_max_into_d_cube_1,sigma_max_into_d_cube_2);// (getting max)
//putting sigma_max=sigma_d
t=(sigma_max_into_d_cube/sigma_d)**(1/3);// mm
printf('\n Diameter of axle = %.1f mm',t)
|
b08b91c98345195fea51c55917e352a1676bb3ec
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2204/CH5/EX5.9/ex5_9.sce
|
97a18c65e292c653f4c64dd370cc5b98bb962084
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 582 |
sce
|
ex5_9.sce
|
// Exa 5.9
clc;
clear;
close;
// Given data
alpha = 1.414;
f_c = 1.5;// in kHz
f_c = f_c * 10^3;// in Hz
C1 = 2/alpha;// in F
C2 = alpha/2;// in F
R1 = 1;// in ohm
R2 = R1;// in ohm
R_F = 2;// in ohm
Omega_c = 2*%pi*f_c;// in rad/sec
R = 1/Omega_c;// in ohm
R = R * 10^7;// in ohm
R1 = R;// in ohm
R2= R1;// in ohm
R_F = 2*R;// in ohm
C1 = C1/10^7;// in F
C2 = C2/10^7;// in F
disp(R1*10^-3,"The value of R1 and R2 in k ohm");
disp(C1*10^9,"The value of C1 in nF is");
disp(C2*10^9,"The value of C2 in nF is");
disp(R_F*10^-3,"The value of R_F in k ohm");
|
cd0cdc41532391c8f7dc105f9c733c3a50a95f69
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1580/CH5/EX5.3/Ch05Ex3.sce
|
beafa440048b49df87b2961921fdfa79eb079b90
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 404 |
sce
|
Ch05Ex3.sce
|
// Scilab Code Ex5.3 : Page-5.8 (2004)
clc;clear;
h = 6.626e-34; // Planck's const in Js
m = 1.67e-27; // Mass of the neutron in kg
e = 1.6e-19; // charge of electron in C
E = 0.025; // kinetic energy of the neutron in J
lam = h/(sqrt(2*m*E*e)); // de Broglie wavelength in m
printf("\nde Broglie wavelength = %5.3f nm", lam/1e-9);
// Result
// de Broglie wavelength = 0.181 nm
|
5d00bf5f7f2ca5697aef79cc5550111ad5373dcb
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1040/CH7/EX7.7/Ex7_7.sce
|
4fe4a5709365d534434e5cf08fb585a08c91cd81
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 5,202 |
sce
|
Ex7_7.sce
|
//Harriot P.,2003,Chemical Reactor Design (I-Edition) Marcel Dekker,Inc.,USA,pp 436.
//Chapter-7 Ex7.7 Pg No.304
//Title:Apparent value of kLa, regime of operation and selectivity dependency on gas mixing
//======================================================================================================================
clear
clc
//INPUT
Vol_reactor=35;//Volume of reactor(L)
No_reactor=3;//No. of reactor
T_C=155;//Operating Temperature (°C)
T_ref=273;//Reference Temperature (°C)
T_K= T_C+T_ref;//Operating Temperature (K)
P=8.2;//Operating Pressure (atm)
X_conversion=9.5*10^(-2);//Conversion
S=73*10^(-2);//Selectivity
M_cyclohexane=84.16;//Molecular weight of cyclohexane
F_cyclohexane=100;//Feed rate of cyclohexane (L/hr)
F_air=9.9;//Feed rate of air (nm3/hr)
f_O2_air=0.21;//Fraction of O2 in air
V_ref=22400;//Reference volume at STP(cm3/mol)
y_O2=0.002;//O2 in vent gas
f_O2_consumed=0.99;//Fraction of O2 Consumed
rho_cyclohexane=0.779;//Density of cyclohexane at 20 (°C)
main_pdt_ratio=3/2;
by_pdt_ratio=(1-main_pdt_ratio);
stoi_rxn_O2=[0.5 1];
rho_M=0.650;//Density of Cyclohexane at 155 (°C)
P_dash=5.8;//Vapour Pressure of cyclohexane at 155 (°C)
D_reactor=30;//Diameter of reactor (cm)
h_reactor=50;//Height of reactor (cm)
myu_20=0.98;//(cp) Viscosity at 20(°C)
myu_155=0.2// (cp) Viscosity at 155(°C)
x_O2=6.38*(10^(-6));//Mol fraction of O2
D_B_by_D_A=0.5;//Assumed value (refer Ex7.7)
Phi=20;//Refer Fig. 7.7
n=1/(0.7);
//CALCULATION (Ex7.7.a )
F_O2=(F_air*10^(6)*f_O2_air)/(3600*V_ref);
delta_N_O2=F_O2*f_O2_consumed;
F_C6=(F_cyclohexane*10^(3)*rho_cyclohexane)/(3600*M_cyclohexane)
F_prdts=F_C6*X_conversion*S;
F_O2_prdts=F_prdts*(main_pdt_ratio*stoi_rxn_O2(1)+by_pdt_ratio*stoi_rxn_O2(2));
F_O2_remain_used=delta_N_O2-F_O2_prdts;
F_O2_prdts_conver=F_O2_prdts/(F_C6*X_conversion*S);
F_O2_remain_used_conver=F_O2_remain_used/(F_C6*X_conversion*(1-S));
X_O2=10^(0.366*log10(T_K)-3.8385);//O2 solubility from Wild et al. [37]:
PO2_plus_PN2=P-P_dash;
P_O2=y_O2*PO2_plus_PN2;
x_O2=P_O2*X_O2;//Mol fraction of O2
C_M=rho_M*10^(3)/M_cyclohexane;
C_O2_star=C_M*x_O2;
//Assume each reactor has 30 L solution
V_soln_n=30;//Volume of solution in each reactor
apparent_kLa=(delta_N_O2)/(V_soln_n*No_reactor*C_O2_star);
F_total=(F_air*10^(6)/3600)*(T_K/T_ref)*(8.2/2.4)*(1/8.2);//The total vapor flow is 8.2/2.4 times the air flow
CSA_reactor=%pi*(D_reactor^2)/4;
u_g=F_total/(CSA_reactor*No_reactor);
//Calculation for predicted value of kLa
kLa_20=0.16;//From Figure 7.16, for O2–C6H12 at 20 (°C), 2 cm/sec, 5 kW/m3
T_data=20+T_ref;//Temperature at which data is taken from the table
D_155_by_D_20=(T_K/T_data)*(myu_20/myu_155);
Predicted_kLa=kLa_20*(D_155_by_D_20^(0.5))*(u_g/2)^(0.5);
//CALCULATION (Ex7.7.b )
C_M=rho_M*10^(3)/M_cyclohexane;
C_B0=(1-X_conversion)*C_M;
C_Ai=C_M*x_O2;
Phi_a=(1+(C_B0/(C_Ai*n))*(D_B_by_D_A)^(0.5));
ratio=Phi_a/Phi;
//OUTPUT (Ex7.7.a )
mprintf('\n OUTPUT Ex7.7.a');
mprintf('\n==========================================================');
mprintf('\nThe value of apparent kLa: %0.2f (sec-1)',apparent_kLa);
mprintf('\n The value of predicted kLa: %0.2f (sec-1)',Predicted_kLa);
if (apparent_kLa>Predicted_kLa)
mprintf('\nThe absorption of oxygen is greatly enhanced by chemical reactions in the liquid film')
mprintf('\nThe kinetics can be approximated by a first-order expression,the reaction would fall in the pseudo-first-order regime,\nwhere the rate varies with the square root of the oxygen diffusivity and the rate constant.')
end
//OUTPUT (Ex7.7.b )
mprintf('\n\n\n OUTPUT Ex7.7.b');
mprintf('\n==========================================================');
mprintf('\nThe value of Phi (enhancement factor) %0.4E ',Phi_a);
mprintf('\nThe value of ratio Phi_a_by_Phi:%0.1E',ratio);
mprintf('\nFrom the ratio value Phi_a is greater than Phi hence there is no significant gradient for cyclohexane');
// FILE OUTPUT
fid= mopen('.\Chapter7-Ex7-Output.txt','w');
mfprintf(fid,'\n OUTPUT Ex7.7.a');
mfprintf(fid,'\n==========================================================');
mfprintf(fid,'\nThe value of apparent kLa: %0.2f (sec-1)',apparent_kLa);
mfprintf(fid,'\n The value of predicted kLa: %0.2f (sec-1)',Predicted_kLa);
if (apparent_kLa>Predicted_kLa)
mfprintf(fid,'\nThe absorption of oxygen is greatly enhanced by chemical reactions in the liquid film')
mfprintf(fid,'\nThe kinetics can be approximated by a first-order expression,the reaction would fall in the pseudo-first-order regime,\nwhere the rate varies with the square root of the oxygen diffusivity and the rate constant.')
end
mfprintf(fid,'\n\n\n OUTPUT Ex7.7.b');
mfprintf(fid,'\n==========================================================');
mfprintf(fid,'\nThe value of Phi (enhancement factor) %0.4E ',Phi_a);
mfprintf(fid,'\nThe value of ratio Phi_a_by_Phi:%0.1E',ratio);
mfprintf(fid,'\nFrom the ratio value Phi_a is greater than Phi hence there is no significant gradient for cyclohexane');
mclose(fid);
//==========================================================END OF PROGRAM===============================================
|
e532594a105b1fa67ae8cdbab71e9501bbfb9537
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3756/CH3/EX3.6/Ex3_6.sce
|
7a68239e3adf23832bca137e8283d29ebfb8a6c2
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 311 |
sce
|
Ex3_6.sce
|
clc
//
//
//
//Variable declaration
lambdaa=5893*10**-10 //Wavelength
muo=1.54 //Refractive index of ordinary rays
mue=1.53 //Refractive index of extra ordinary rays
//Calculations
t=((lambdaa)/(4*(muo-mue)))*10**2
//Result
printf("\n The thickness of the crystal is %0.3f cm",t)
|
c5b4064dbdb1a120b9b91b01a9ebc79ecc58be3c
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2072/CH26/EX26.6/EX26_6.sce
|
ad751d583739fc06cbdde1e73a13cedd973cfed0
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 329 |
sce
|
EX26_6.sce
|
//clc
//Example6
//given
c=3*10^8 //velocity of light in m/sec
Vmo=0.80*c // velocity of motocycle w.r.t stationary observer
Vlm=c // velocity of motocycle w.r.t motorcycle
//velocity of light w.r.t stationary observer
Vlo=(Vlm+Vmo)/(1+(Vlm*Vmo)/c^2)
disp(Vlo,"velocity of light w.r.t stationary observer in m/sec")
|
03a8bff35b346c8d8b2bb18ed5f1708901773a4e
|
fd6e45f66c41ad779a3d47c3bf8ebfa140d3d657
|
/P6 - Eigenvalues and eigenvectors/power.sci
|
6e47345f919b2e0e1a339a607c6a7b0c3a9bf1c0
|
[] |
no_license
|
jere1882/Numerical-Analysis-Assignments
|
7f474e2020d010f9f9c3dceff5e48c03b0d38652
|
1074f92ca93d0a402259f92a0f61f105f25e5230
|
refs/heads/master
| 2021-09-06T20:00:36.411386 | 2018-02-10T18:04:38 | 2018-02-10T18:04:38 | 121,039,769 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 993 |
sci
|
power.sci
|
// MÉTODO DE LAS POTENCIAS PARA CALCULAR ÉL AUTOVALOR DOMINANTE lambda Y EL AUTOVECTOR ASOCIADO V DE UNA MATRIZ A DE ORDEN n x n. SE SUPONE QUE LOS AUTOVALORES VERIFICAN LA CONDICION DE DOMINACION (UN AUTOVALOR ES MAYOR A TODOS LOS OTROS EN VALOR ABSOLUTO, DISTINTO DE CERO)
function [lambda, V]=power(A,X,epsilon,maxit)
// A matriz de nxn
// X vector aproximación inicial a un autovector de lambda, n x 1
//lambda: radio espectral
//V: autovector asociado
//inicializacion
lambda=0;
cnt=0;
err=1;
state=1;
while ((cnt<maxit)&(state==1))
Y=A*X
[m j]=max(abs(Y))
c1=m
dc=abs(lambda-c1)
Y=(1/c1)*Y
//actualizacion de X y de lambda y criterio de convergencia
dv=norm(X-Y)
err=max(dc,dv)
X=Y
lambda=c1
state=0
if (err>eps) then
state=1
end
cnt=cnt+1
end
V=X
endfunction
|
e041588b4f938be2e741a986099b32f55850dbfb
|
6886f9c39f0a208f28d1196a33ca54d3309881c2
|
/arithmetic coding.sce
|
c87d2e937c2aa2cbfbdca649c789d93480c5b00e
|
[] |
no_license
|
sonusharma55/Data-Compression-and-Encryption
|
9110c083d58c59d1d4c102033a9d5cc6f3f314c6
|
ade4590edfc8f74e12e2644fd60a2997deb6885c
|
refs/heads/master
| 2020-07-25T21:45:51.063843 | 2019-09-14T11:40:39 | 2019-09-14T11:40:39 | 155,232,740 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 449 |
sce
|
arithmetic coding.sce
|
clc
clear
p = input("Enter probabilities of symbol, p = ");
t = 0;
for i = 1:length(p)
c(i) = t + p(i);
t = c(i);
end
printf("\nCDF of symbols ");
disp(c)
s = input("Enter sequence of symbol to be encoded, s = ");
x = [0;c];
for i = 1:length(s)
l = x(s(i));
u = x(s(i) + 1);
l1 = l + (u - l)*c(1);
u1 = l + (u - l)*c(2);
x = [l l1 u1 u];
end
Tag = (l + u)/2
printf("Tag value, Tag = %f", Tag);
|
cc3274da239cbc6704d848bef1f992a5014fdfe7
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1388/CH7/EX7.22/7_22.sce
|
bebd47f4ded62602443b8a60ca78c58663cac752
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 239 |
sce
|
7_22.sce
|
clc
//initialisation of variables
E= 1.0508 //volts
V= 0.3338 //volts
a= 0.0796
a1= sqrt(0.0490)
f= 0.05916 //J/mol coloumb
//CALCULATIONS
V= E+V+f*log10(a/a1)
//RESULTS
printf (' Standard electrode poteential = %.4f volts',V)
|
ac1796e3125cd668b8f47e8d4fed132399847e2f
|
f6134e0a162a059c42ec3ef8de2a63941d73936c
|
/Scilab_code/Graph_search/find_centroid.sci
|
dbd039ffeae00050fbb6ec6e49793226c7325555
|
[] |
no_license
|
mxch18/SRL-WRT_pathPlanning
|
38a1701934a4a0e919a6c1c7990092b242df72da
|
6992febbbe103814d2cef5351a0e8917b183a2b0
|
refs/heads/master
| 2020-03-23T06:43:54.155192 | 2018-09-26T17:26:56 | 2018-09-26T17:26:56 | 141,226,032 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 416 |
sci
|
find_centroid.sci
|
function cntr = find_centroid(STNC)
//Author : Maxens ACHIEPI
//Space Robotics Laboratory - Tohoku University
//Description:
//
//INPUT
//
//OUTPUT
//
//----------------------------------------------------------------------------//
for i=1:size(STNC,2)
stance_pos(i,:) = STNC.pos(i);
end
cntr = mean(stance_pos,'r');
endfunction
|
8de329a1c5140645562cbfa410ffa5484c1212fc
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3492/CH6/EX6.11/Ex6_11.sce
|
efa618f69435f1f1af07b4eece4036772036a2db
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 361 |
sce
|
Ex6_11.sce
|
clc
//Chapter6
//Ex_11
//Given
Z=50*10^-6 //in m
L=10*10^-6 //in m
t_ox=450*10^-10 //in m
V_GS=8//in V
V_th=4//in V
V_DS=20//in V
lambda=0.01
ue=750*10^-4 //in m2/V/s
epsilon_r=3.9
epsilon_o=8.85*10^-12//F/m2
epsilon=epsilon_r*epsilon_o
K=(Z*ue*epsilon)/(2*L*t_ox)
I_DS=K*(V_GS-V_th)^2*(1+lambda*V_DS)
disp(I_DS*10^3,"drain current in mA is")
|
af0b528c96e3c74663e054f4d4a443d2d51812b0
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1019/CH8/EX8.16/Example_8_16.sce
|
075293b98e5244eb10f5bb87a778308709bbcd6c
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 582 |
sce
|
Example_8_16.sce
|
//Example 8.16
clear;
clc;
//Given
T=298;//temperature in K
R=8.314;//gas constant in J K^-1 mol^-1
delGfoCuO=-127.2;//standard enthalpy of formation of CuO in kJ mol^-1
pH2O=23.7;//vapour pressure of water in mm Hg
P=760;//standard pressure in mm Hg
//To determine delGfoH2Og
Kp=pH2O/P;//equillibrium constant for given reaction
delGo=(-2)*delGfoCuO;//delGo in kJ mol^-1
k=(-1000*delGo)/(R*T);//k=log(Kp)
Kp=exp(k);//equillibrium constant Kp
pO2=Kp*1;//partial pressure of O2 in atm
mprintf('Partial pressure of O2 over CuO and Cu at 298 K = %f atm',pO2);
//end
|
b947339c6d7b6b815363f30c942869b118435c60
|
4a9f190afee555b0b80b83855ab62d9c529f5b34
|
/Assignment1/nr.sce
|
601772936afe1d4d9be963059a68e5e496e9c162
|
[] |
no_license
|
imajou/IU-S20-DSP-Assignments
|
5ab41f331f996d9764be41a56fb2eee9e7cd5267
|
e518c52a1ef988a6871cb078b25e64e75ed0fc95
|
refs/heads/master
| 2022-10-22T09:24:33.601398 | 2020-06-12T21:24:23 | 2020-06-12T21:24:23 | 271,892,319 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 677 |
sce
|
nr.sce
|
clc; clear; close;
an_x1 = (-4 - sqrt(4 * 4 - 4 * 29 * (-1999)))/ (2 * 29);
an_x2 = (-4 + sqrt(4 * 4 - 4 * 29 * (-1999)))/ (2 * 29);
printf('\n Analytical:\t x1 = %.8f, x2 = %.8f', an_x1, an_x2);
p = [29 4 -1999]
p_roots = roots(p)
printf('\n SciLab:\t x1 = %.8f, x2 = %.8f', p_roots(1), p_roots(2));
deff('x=f(x)','x=29*x^2+4*x-1999');
deff('x=f1(x)','x=58*x+4');
x0 = -0.0689655;
steps = 10;
printf('\n\n n\txn\t\t\f(xn)\t\tf1(xn)\t\tXn+1\t\tError\n');
for i = 1:steps
x1 = x0 - f(x0) / f1(x0);
err = abs(x0 - x1);
printf(' %i\t%.10f\t%.10f\t%.10f\t%.10f\t%.10f\n', i - 1, x0, f(x0), f1(x0), x1, err);
x0 = x1;
end
printf('\nNumerical: x1 = %.8f', x0);
|
f9172ed18cd59fd1e0a90eedd2778cde12576f66
|
f4cfee6e4201b01843e6de00cc439883a49aa4f1
|
/my scilab files/yogesh12.sce
|
585118b42d73916563b7a9286adb928c8a0d07bb
|
[] |
no_license
|
yogeshkhatana/All_programming_language_files
|
a17bb49ea4d3aef2b667bdbb03f3af5c4224b0d1
|
bec946abcf8e69a6e6ebc568d14db73c52029170
|
refs/heads/master
| 2022-11-19T09:05:08.861581 | 2020-07-24T17:40:32 | 2020-07-24T17:40:32 | 282,181,013 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 376 |
sce
|
yogesh12.sce
|
x=[0.5 1.0 1.5 2.0 2.5 3.0]
y=[0 1 2 3 4 5]
z=[0 2 4 6 8 10]
subplot(3,1,1)
plot(x,y,'b*-')
xtitle('subplot 1')
xlabel('x-axis')
ylabel('y-axis')
xstring(1,0.5,'line1')
xgrid()
subplot(3,1,2)
plot(x,y,'g+-')
xtitle('subplot 2')
xstring(1,0.5,'line2')
xgrid()
subplot(3,1,3)
plot(x,y,'b*-')
xtitle('subplot 3')
xlabel('x-axis')
ylabel('y-axis')
xstring(1,0.5,'line 3')
xgrid()
|
6432037eb35284b5d6ae8cc04ca7fd68345971af
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1976/CH7/EX7.8/Ex7_8.sce
|
2ba1c78334cfce7e874154aa24eb2bf481bf729d
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 695 |
sce
|
Ex7_8.sce
|
//To determine the weight of the locomotive
//Page 378
clc;
clear;
Wg=300; //Weight of the train to be hauled
RI=10/100; //Rotation inertia
Ma=20/100; //Co-Efficient of adhesion
Wa=20; //Permissible Weight of axle load
r=45;
G=2;
a=1; //Acceleration
Wl=poly(0,'Wl'); //Variable Weight of locmotive
W=Wg+Wl; //Total Weight of the train
We=W*(1+RI);
Ft=((277.8*a*We/W)+(98.1*G)+r)*W;
Fmax=(9.81*1000*Ma*Wl);
X=Ft-Fmax; //Polynomial Equation to find Wl
Wl=roots(X(2)); //Numerical Value of the Weight of the locomotive
NoA=Wl/Wa; //Number of axles
printf('The weight of the locomotive and the number of axles is %g tonnes and %g axles respectively\n',Wl,ceil(NoA))
|
034e8804b51f3f109c0e53e3338ee6c424c6d581
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/764/CH5/EX5.13.a/data5_13.sci
|
8686ec4b91177dc08b515b3dc12c3745051e6cb1
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 652 |
sci
|
data5_13.sci
|
//(Design against Fluctuating Load) Example 5.13
//Ultimate tensile strength of 27Mn2 Sut (N/mm2)
Sut = 500
//Tensile yield strength of 27Mn2 Syt (N/mm2)
Syt = 300
//Maximum torque acting on the transmission shaft Mtmax (N-m)
Mtmax = 400
//Minimum torque acting on the transmission shaft Mtmin (N-m)
Mtmin = -100
//Factor of safety fs
fs = 2
//Reliability (%)
reliability = 90
//Operation
//Nomenclature:
//1 - Ground
//2 - Machined or cold drawn
//3 - Hot-rolled
//4 - Forged
op = 2
//Assume distortion energy theory of failure
//Assume diameter of transmission shaft to be between 7.5 and 50 mm d
d = 25
|
9a5cdfc05c2498e956bec384ba1e7bfa4f2f6899
|
a62e0da056102916ac0fe63d8475e3c4114f86b1
|
/set6/s_Electronic_Circuits_M._H._Tooley_995.zip/Electronic_Circuits_M._H._Tooley_995/CH2/EX2.27/Ex2_27.sce
|
75abc0246b16de52a0587a9d61670e8c5c56c672
|
[] |
no_license
|
hohiroki/Scilab_TBC
|
cb11e171e47a6cf15dad6594726c14443b23d512
|
98e421ab71b2e8be0c70d67cca3ecb53eeef1df6
|
refs/heads/master
| 2021-01-18T02:07:29.200029 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 191 |
sce
|
Ex2_27.sce
|
errcatch(-1,"stop");mode(2);//Ex:2.27
;
;
L=600*10^-3;//in H
I1=6;//in A
I2=2;//in A
dI=I1-I2;
dt=250*10^-3;//in sec.
E=-L*(dI/dt);
printf("Induced voltage = %f volts",E);
exit();
|
551c72a08db3bf926ff3634e614f2cf1a97afb3f
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2375/CH7/EX7.17/ex7_17.sce
|
0ff9cd5a43db64fd00b0d752ae2093cdb2212a24
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 553 |
sce
|
ex7_17.sce
|
// Exa 7.17
clc;
clear;
close;
format('v',6)
// Given data
I_D = 0.5;// in mA
V_D = 3;// in V
Vt = -1;// in v
KnWbyL = 1;// in mA/V^2
V_DD = 5;// in V
V_D = 3;// in v
V_GS= poly(0,'V_GS');
V_GS= I_D -1/2*KnWbyL*(V_GS-Vt)^2;// in V
V_GS= roots(V_GS)// in V
V_GS= V_GS(1);// in V
R_G1 = 2;// in Mohm
R_G1 = R_G1 * 10^6;// in ohm
R_G2 = 3;// in Mohm
R_G2 = R_G2 * 10^6;// in ohm
V_GS = -2;// in V
R_D = V_D/I_D;// in k ohm
V_Dmax = V_D+abs(Vt);// in V
R_D = V_Dmax/I_D;// in k ohm
disp(R_D,"The largest value of R_D in k ohm is");
|
38f6fd8600ab86420ce9cd1c1e741bd959073ec5
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3537/CH2/EX2.5/Ex2_5.sce
|
2ddfb81437642fe75fb38dd335051f11a922f75f
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 518 |
sce
|
Ex2_5.sce
|
//Example 2_5
clc();
clear;
//To find the angle of separation
lemda1=5016*10^-8 //units in cm
lemda2=5048*10^-8 //units in cm
k=2
e=2.54/15000 //units in cm
theta1=asin((2*lemda1)/e)*180/%pi
theta2=asin((2*lemda2)/e)*180/%pi
theta=(theta2-theta1)
theta=theta*100
theta=(theta*101)/60
printf("The angle of separation is %f degrees",theta)
//In text book the answer is printed wrong as 16 Minutes correct answer is 45 minutes
|
ff4b672cb116efad71bea2390051a40f48c9e3c5
|
9ad712cefe61d85b01d2448a5b74c34296ee7e5f
|
/rlocus_basic1.sce
|
a41bad6e3c39bc15b784fdd047df5042dfd0bbf0
|
[] |
no_license
|
CoE-Warintorn/Control
|
a50f7cf26d0e80e3b90ea9dc3cac097b67f94d49
|
9572040e0e41d8d355f51032cd2ac98b1d04db64
|
refs/heads/master
| 2020-03-16T06:56:11.148006 | 2018-05-08T07:02:35 | 2018-05-08T07:02:35 | 132,565,771 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 386 |
sce
|
rlocus_basic1.sce
|
s = poly(0, 's');
t = 0:0.01:20;
Gs = (s+3)/(s*(s+1)*(s+2)*(s+4))
Gs1 = syslin('c', Gs)
//K = 1/abs(horner(Gs,-4+%i*0.4))
//K1 = 1/abs(horner(Gs,-3.5+%i*0.61))
K1 = 0.94
K = 1.2
Ts = K*Gs1/(1+K*Gs1)
Ts1 = K1*Gs1/(1+K1*Gs1)
//den1 = denom(Ts)
//roots(den1)
evans(Gs1)
sgrid([0.2,0.5,0.7],1)
//sgrid([0.59],1)
//plot(t,csim('step', t, Ts),t,csim('step', t, Ts1))
xgrid()
|
8bc13c64d6b0ebcbd89f05771c8aebd53581de23
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2744/CH8/EX8.9/Ex8_9.sce
|
3a9a5642aabe9b425ec0ebd2242d7e0a5429ffcc
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 216 |
sce
|
Ex8_9.sce
|
clear;
clc;
h = 100;// feet
d = 4;// feet
p = 50;// lb. per square foot
c = 2/3;
M = integrate('(100*x/3)*(10-(6*x/100))','x',0,100);
printf('Bending moment at the foot of the chimney is, M = %d lb-feet',M);
|
9a56a344ac15d03e1fdcbea1f0e3c62fe404a262
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/29/CH11/EX11.15/exa11_15.sce
|
eed6c5763f71d300ff8729abae5cfe43994fc4c8
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 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,222 |
sce
|
exa11_15.sce
|
//caption:determine_Wn,Wd,zeta_and_steady_state_error
//example 11_15
//page 484
s=%s;
G=sym('25/(s*(s+5))');
G=simple(G);
H=1;
CL=G/.H;
CL=simple(CL);
disp(CL,"C(s)/R(s)=");
printf("the char. eq is:")
disp("s^2+5*s+25")
Wn=sqrt(25)//natural_frequency
//2*zeta*Wn=5
zeta=5/(2*Wn);//damping ratio
d=zeta*Wn;//damping_factor
z=sqrt(1-zeta^2);
Wd=Wn*z;//damped_frequency_of_oscillation
Mp=exp((-zeta*%pi)/z)*100;//%_max.peak_overshoot
//steady state error for unit ramp input is:Ess= (2*zeta/Wn)
Ess=(2*zeta/Wn);//steady state error
disp("part(a):")
disp(Wn,"natural_frequency=");
disp(zeta,"damping ratio=");
disp(Wd,"damped_frequency_of_oscillation=");
disp(Mp,"%_max.peak_overshoot=");
disp(Ess,"steady state error=");
//if damping ratio is increased from 0.5 to 0.75 by incorporating tachometer feedback
zeta=0.75;
H1=sym('s*Kt')//tachometer_feedback
CL1=G/(1+G*H1);
CL1=simple(CL1);
CL2=CL1/(1+H*CL1);
CL2=simple(CL2);
disp(CL2,"C(s)/R(s)=");
Wn=sqrt(25);
//2*zeta*Wn=25*Kt+5;
Kt=(2*zeta*Wn-5)/25;//tachometer_gain
Mp1=exp((-zeta*%pi)/sqrt(1-zeta^2))*100;//%_peak_overshoot
disp("After applying tachometer feedback:")
disp(Kt,"tachometer_gain=");
disp(Mp1,"%_peak_overshoot=");
|
07fbf38e15385deef533de66a9d266831dfcf12c
|
36c5f94ce0d09d8d1cc8d0f9d79ecccaa78036bd
|
/Valobotz_Aim_90.sce
|
362ca368bdcbf5096f11da129e06411dc7259216
|
[] |
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 | 58,913 |
sce
|
Valobotz_Aim_90.sce
|
Name=Valobotz_Aim_90
PlayerCharacters=valorant_player_AR_char
BotCharacters=valorant_enemy_150.bot
IsChallenge=true
Timelimit=60.0
PlayerProfile=valorant_player_AR_char
AddedBots=valorant_enemy_150.bot;valorant_enemy_150.bot;valorant_enemy_150.bot;valorant_enemy_150.bot;valorant_enemy_150.bot;valorant_enemy_150.bot;valorant_enemy_150.bot;valorant_enemy_150.bot;valorant_enemy_150.bot;valorant_enemy_150.bot;valorant_enemy_150.bot;valorant_enemy_150.bot
PlayerMaxLives=0
BotMaxLives=0;0;0;0;0;0;0;0;0;0;0;0
PlayerTeam=1
BotTeams=2;2;2;2;2;2;2;2;2;2;2;2
MapName=valobotz_trainer_ver2.map
MapScale=10.0
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=true
InvincibleBots=false
Timescale=1.0
BlockHealthbars=true
TimeRefilledByKill=0.0
ScoreToWin=1.0
ScorePerDamage=0.0
ScorePerKill=1.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=false
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=
WeaponHeroTag=Vandal,Phantom,Ghost,Sheriff
DifficultyTag=2
AuthorsTag=wjokin,NFNT
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=false
BlockFCT=false
Description=Practice shooting against 12 Valorant BOTs.
GameVersion=2.0.2.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
LockFOVRange=false
LockedFOVMin=60.0
LockedFOVMax=120.0
LockedFOVScale=Clamped Horizontal
[Aim Profile]
Name=Aimgod
MinReactionTime=0.25
MaxReactionTime=0.25
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=90.0
FlickSpeed=10.0
FlickError=0.0
TrackSpeed=10.0
TrackError=0.0
MaxTurnAngleFromPadCenter=360.0
MinRecenterTime=0.0
MaxRecenterTime=0.0
OptimalAimFOV=360.0
OuterAimPenalty=0.0
MaxError=0.0
ShootFOV=90.0
VerticalAimOffset=-50.0
MaxTolerableSpread=0.0
MinTolerableSpread=0.0
TolerableSpreadDist=100.0
MaxSpreadDistFactor=1.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[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
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Bot Profile]
Name=valorant_enemy_150
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Aimgod;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=valorant_enemy_150_char
SeeThroughWalls=false
NoDodging=true
NoAiming=false
AbilityUseTimer=1.0
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=1.0
UseAbilityFreqMaxTime=1.0
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Character Profile]
Name=valorant_player_AR_char
MaxHealth=150.0
WeaponProfileNames=AR VANDAL v2;AR PHANTOM v2;Ghost;Sheriff;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.8
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=1080.0
MaxCrouchSpeed=500.0
Acceleration=1750.0
AirAcceleration=16000.0
Friction=20.0
BrakingFrictionFactor=2.0
JumpVelocity=1900.0
Gravity=4.0
AirControl=0.5
CanCrouch=true
CanPogoJump=true
CanCrouchInAir=true
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=1
AirJumpVelocity=1900.0
MainBBType=Cylindrical
MainBBHeight=600.0
MainBBRadius=110.0
MainBBHasHead=true
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cylindrical
ProjBBHeight=600.0
ProjBBRadius=110.0
ProjBBHasHead=true
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=8.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=false
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.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=16.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=valorant_enemy_150_char
MaxHealth=150.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.00001
MaxRespawnDelay=0.00001
StepUpHeight=75.0
CrouchHeightModifier=0.8
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=1080.0
MaxCrouchSpeed=500.0
Acceleration=7000.0
AirAcceleration=16000.0
Friction=20.0
BrakingFrictionFactor=2.0
JumpVelocity=1200.0
Gravity=4.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=600.0
MainBBRadius=110.0
MainBBHasHead=true
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cylindrical
ProjBBHeight=600.0
ProjBBRadius=110.0
ProjBBHasHead=true
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=tagging.abilsprint;;;
HideWeapon=true
AerialFriction=8.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=1000.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=true
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.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=16.0
VerticalSpawnOffset=-100.0
TerminalVelocity=0.0
CharacterModel=Endo
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Weapon Profile]
Name=AR VANDAL v2
Type=Hitscan
ShotsPerClick=1
DamagePerShot=39.0
KnockbackFactor=0.0
TimeBetweenShots=0.1081
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=250000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=4.0
MagazineMax=25
AmmoPerShot=1
ReloadTimeFromEmpty=2.5
ReloadTimeFromPartial=2.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=39.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.1
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.2
ADSZoomSensFactor=1.0
ADSMoveFactor=0.76
ADSStartDelay=0.0
ShootSoundCooldown=0.001
HitSoundCooldown=0.001
HitscanVisualOffset=X=120.000 Y=15.000 Z=-6.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=true
DecalType=1
DecalSize=40.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=5.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=0.1
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=0.9
PSRADSScale=0.8
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.2
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=true
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=30
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=103.0
ADSFOVScale=Valorant
ADSAllowUserOverrideFOV=false
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=1.0
WeaponModel=Asp
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.1
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=-50.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=None
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=Stud Gun
ParticleWallImpact=Fission Dealer
ParticleBodyImpact=Gunshot
ParticleProjectileTrail=
ParticleHitscanTrace=Bullet
ParticleMuzzleFlashScale=0.2
ParticleWallImpactScale=0.75
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.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=0.25,1.0,0.0,1.0
SpreadSCA=0.25,1.0,0.0,1.0
SpreadMSA=3.0,1.0,3.0,3.0
SpreadMCA=3.0,1.0,3.0,3.0
SpreadSSH=0.25,1.0,0.0,1.0
SpreadSCH=0.25,1.0,0.0,1.0
SpreadMSH=3.0,1.0,3.0,3.0
SpreadMCH=3.0,1.0,3.0,3.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.15
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
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=true
PSRLoopStartIndex=10
PSRViewRecoilTracking=0.6
PSRCapUp=90.0
PSRCapRight=90.0
PSRCapLeft=90.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=100.0
PSR0=0.5,0.2
PSR1=0.5,0.2
PSR2=1.5,0.0
PSR3=1.0,0.2
PSR4=0.5,-0.2
PSR5=1.5,0.3
PSR6=1.5,0.3
PSR7=1.0,0.4
PSR8=0.5,0.0
PSR9=-0.5,0.0
PSR10=0.0,-1.4
PSR11=0.0,-1.4
PSR12=0.0,-0.7
PSR13=0.5,0.0
PSR14=-0.5,0.0
PSR15=0.5,0.0
PSR16=-0.5,0.0
PSR17=0.0,0.0
PSR18=0.0,1.6
PSR19=0.0,1.6
PSR20=0.0,1.0
PSR21=0.5,0.0
PSR22=-0.5,0.0
PSR23=0.0,0.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=AR PHANTOM v2
Type=Hitscan
ShotsPerClick=1
DamagePerShot=39.0
KnockbackFactor=0.0
TimeBetweenShots=0.0909
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=250000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=4.0
MagazineMax=30
AmmoPerShot=1
ReloadTimeFromEmpty=2.5
ReloadTimeFromPartial=2.5
DamageFalloffStartDistance=4500.0
DamageFalloffStopDistance=15000.0
DamageAtMaxRange=31.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.1
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.2
ADSZoomSensFactor=1.0
ADSMoveFactor=0.76
ADSStartDelay=0.0
ShootSoundCooldown=0.001
HitSoundCooldown=0.001
HitscanVisualOffset=X=120.000 Y=15.000 Z=-6.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=true
DecalType=1
DecalSize=40.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=5.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=0.1
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=0.9
PSRADSScale=0.8
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.2
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=true
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=30
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=103.0
ADSFOVScale=Valorant
ADSAllowUserOverrideFOV=false
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=1.0
WeaponModel=Asp
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.1
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=-50.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=None
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=Stud Gun
ParticleWallImpact=Fission Dealer
ParticleBodyImpact=Gunshot
ParticleProjectileTrail=
ParticleHitscanTrace=Bullet
ParticleMuzzleFlashScale=0.2
ParticleWallImpactScale=0.75
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.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=0.2,1.0,0.0,1.0
SpreadSCA=0.2,1.0,0.0,1.0
SpreadMSA=3.0,1.0,3.0,3.0
SpreadMCA=3.0,1.0,3.0,3.0
SpreadSSH=0.2,1.0,0.0,1.0
SpreadSCH=0.2,1.0,0.0,1.0
SpreadMSH=3.0,1.0,3.0,3.0
SpreadMCH=3.0,1.0,3.0,3.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.15
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
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=true
PSRLoopStartIndex=10
PSRViewRecoilTracking=0.6
PSRCapUp=90.0
PSRCapRight=90.0
PSRCapLeft=90.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=100.0
PSR0=0.4,0.2
PSR1=0.4,0.2
PSR2=0.8,0.0
PSR3=1.2,-0.2
PSR4=1.2,0.2
PSR5=2.0,0.3
PSR6=0.4,0.3
PSR7=0.4,0.0
PSR8=0.5,0.0
PSR9=-0.5,0.0
PSR10=0.5,0.0
PSR11=-0.5,0.0
PSR12=0.0,0.0
PSR13=0.0,-2.3
PSR14=0.0,-0.4
PSR15=0.0,-0.4
PSR16=0.5,0.0
PSR17=-0.5,0.0
PSR18=0.5,0.0
PSR19=-0.5,0.0
PSR20=0.0,2.5
PSR21=0.0,1.7
PSR22=0.5,0.0
PSR23=-0.5,0.0
PSR24=0.5,0.0
PSR25=-0.5,0.0
PSR26=0.5,0.0
PSR27=-0.5,0.0
PSR28=0.0,0.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=Ghost
Type=Hitscan
ShotsPerClick=1
DamagePerShot=30.0
KnockbackFactor=0.0
TimeBetweenShots=0.148148
Pierces=false
Category=SemiAuto
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=250000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=3.5
MagazineMax=15
AmmoPerShot=1
ReloadTimeFromEmpty=1.5
ReloadTimeFromPartial=1.5
DamageFalloffStartDistance=9000.0
DamageFalloffStopDistance=15000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.1
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=1.0
ADSMoveFactor=0.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=50.000 Y=80.000 Z=-35.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=1
DecalSize=40.0
DelayAfterShooting=0.0
BeamTracksCrosshair=true
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=400.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=0.1
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=0.9
PSRADSScale=0.8
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=false
AimPunchUpTime=0.05
AmmoReloadedOnKill=15
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=1.0
ADSFOVScale=Clamped Horizontal
ADSAllowUserOverrideFOV=false
IsBurstWeapon=false
ForceFirstPersonInADS=false
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.75
WeaponModel=Machine Pistol
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=1.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=None
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=Spike B
ParticleWallImpact=Spark
ParticleBodyImpact=Spark
ParticleProjectileTrail=None
ParticleHitscanTrace=Bullet
ParticleMuzzleFlashScale=0.25
ParticleWallImpactScale=0.75
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=50.0
DamageAtCenter=0.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.0
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=2.5,9.0,0.0,3.5
SpreadSCA=2.5,9.0,0.0,3.5
SpreadMSA=5.0,9.0,0.0,3.5
SpreadMCA=5.0,9.0,0.0,3.5
SpreadSSH=2.5,9.0,0.0,3.5
SpreadSCH=2.5,9.0,0.0,3.5
SpreadMSH=5.0,9.0,0.0,3.5
SpreadMCH=5.0,9.0,0.0,3.5
MaxRecoilUp=5.0
MinRecoilUp=5.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=0.3
RecoilAutoReset=true
TimeToRecoilPeak=0.04
TimeToRecoilReset=0.06
AAMode=0
AAPreferClosestPlayer=true
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
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=1.0
PSRCapUp=90.0
PSRCapRight=90.0
PSRCapLeft=90.0
PSRTimeToPeak=0.65
PSRResetDegreesPerSec=40.0
PSR0=0.0,0.0
PSR1=0.0,0.0
PSR2=0.0,0.0
PSR3=0.0,0.0
PSR4=0.0,0.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=Sheriff
Type=Hitscan
ShotsPerClick=1
DamagePerShot=55.0
KnockbackFactor=0.0
TimeBetweenShots=0.25
Pierces=false
Category=SemiAuto
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=250000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.891
MagazineMax=6
AmmoPerShot=1
ReloadTimeFromEmpty=2.25
ReloadTimeFromPartial=2.25
DamageFalloffStartDistance=9000.0
DamageFalloffStopDistance=15000.0
DamageAtMaxRange=50.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.1
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=1.0
ADSMoveFactor=0.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=50.000 Y=50.000 Z=-32.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=1
DecalSize=40.0
DelayAfterShooting=0.0
BeamTracksCrosshair=true
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=400.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=0.1
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=0.9
PSRADSScale=0.8
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=false
AimPunchUpTime=0.05
AmmoReloadedOnKill=6
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=1.0
ADSFOVScale=Clamped Horizontal
ADSAllowUserOverrideFOV=false
IsBurstWeapon=false
ForceFirstPersonInADS=false
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=1.0
WeaponModel=Law Bringer
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=1.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=None
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=Spike B
ParticleWallImpact=Spark
ParticleBodyImpact=Spark
ParticleProjectileTrail=None
ParticleHitscanTrace=Bullet
ParticleMuzzleFlashScale=0.25
ParticleWallImpactScale=0.75
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=50.0
DamageAtCenter=0.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.0
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=3.5,7.5,0.0,5.0
SpreadSCA=3.5,7.5,0.0,5.0
SpreadMSA=7.0,7.5,0.0,5.0
SpreadMCA=7.0,7.5,0.0,5.0
SpreadSSH=3.5,7.5,0.0,5.0
SpreadSCH=3.5,7.5,0.0,5.0
SpreadMSH=7.0,7.5,0.0,5.0
SpreadMCH=7.0,7.5,0.0,5.0
MaxRecoilUp=16.0
MinRecoilUp=16.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=0.25
RecoilAutoReset=true
TimeToRecoilPeak=0.04
TimeToRecoilReset=0.16
AAMode=0
AAPreferClosestPlayer=true
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
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=1.0
PSRCapUp=90.0
PSRCapRight=90.0
PSRCapLeft=90.0
PSRTimeToPeak=0.65
PSRResetDegreesPerSec=40.0
PSR0=0.0,0.0
PSR1=0.0,0.0
PSR2=0.0,0.0
PSR3=0.0,0.0
PSR4=0.0,0.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Sprint Ability Profile]
Name=tagging
MaxCharges=1.0
ChargeTimer=0.001
ChargesRefundedOnKill=0.0
DelayAfterUse=0.1
FullyAuto=false
AbilityDuration=0.5
BlockAttackWhileSprinting=false
AbilityBlockedWhenAttacking=false
SpeedModifier=0.3
45DegreeSprint=true
90DegreeSprint=true
135DegreeSprint=true
180DegreeSprint=false
TapToSprint=true
Block45DegreesWhenSprinting=false
AIUseInCombat=true
AIUseOutOfCombat=false
AIUseOnGround=true
AIUseInAir=true
AIReuseTimer=1.0
AIMinSelfHealth=0.0
AIMaxSelfHealth=100.0
AIMinTargHealth=0.0
AIMaxTargHealth=100.0
AIMinTargDist=0.0
AIMaxTargDist=2000.0
AIMaxTargFOV=15.0
AIDamageReaction=true
AIDamageReactionIgnoreChance=0.0
AIDamageReactionMinDelay=0.001
AIDamageReactionMaxDelay=0.001
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=0.001
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
String32 targetGameOverCamera end
ColourXRGB32 sky.skyTopColor fffdcdc2
ColourXRGB32 sky.skyHorizonColor ff3d2b14
ColourXRGB32 sky.skyBottomColor ff040404
ColourXRGB32 sky.horizonColor ff6b6b60
String256 title csbotz_trainer
String256 ownerString wjokin
UInt8 playersMin 1
UInt8 playersMax 16
Bool8 modeFFA 0
Bool8 modeTraining 1
brush
vertices
-1056.000000 0.000000 1056.000000
1056.000000 0.000000 1056.000000
1056.000000 0.000000 416.000000
-1056.000000 0.000000 416.000000
-1056.000000 -16.000000 1056.000000
1056.000000 -16.000000 1056.000000
1056.000000 -16.000000 416.000000
-1056.000000 -16.000000 416.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
-416.000000 0.000000 416.000000
416.000000 0.000000 416.000000
416.000000 0.000000 -416.000000
-416.000000 0.000000 -416.000000
-416.000000 -16.000000 416.000000
416.000000 -16.000000 416.000000
416.000000 -16.000000 -416.000000
-416.000000 -16.000000 -416.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
-352.000000 32.000000 -352.000000
352.000000 32.000000 -352.000000
352.000000 32.000000 -416.000000
-352.000000 32.000000 -416.000000
-352.000000 0.000000 -352.000000
352.000000 0.000000 -352.000000
352.000000 0.000000 -416.000000
-352.000000 0.000000 -416.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
-352.000000 144.000000 416.000000
352.000000 144.000000 416.000000
352.000000 144.000000 352.000000
-352.000000 144.000000 352.000000
-352.000000 96.000000 416.000000
352.000000 96.000000 416.000000
352.000000 96.000000 352.000000
-352.000000 96.000000 352.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
-352.000000 144.000000 -352.000000
352.000000 144.000000 -352.000000
352.000000 144.000000 -416.000000
-352.000000 144.000000 -416.000000
-352.000000 96.000000 -352.000000
352.000000 96.000000 -352.000000
352.000000 96.000000 -416.000000
-352.000000 96.000000 -416.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
352.000000 144.000000 416.000000
416.000000 144.000000 416.000000
416.000000 144.000000 -416.000000
352.000000 144.000000 -416.000000
352.000000 96.000000 416.000000
416.000000 96.000000 416.000000
416.000000 96.000000 -416.000000
352.000000 96.000000 -416.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
-416.000000 144.000000 416.000000
-352.000000 144.000000 416.000000
-352.000000 144.000000 -416.000000
-416.000000 144.000000 -416.000000
-416.000000 96.000000 416.000000
-352.000000 96.000000 416.000000
-352.000000 96.000000 -416.000000
-416.000000 96.000000 -416.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
-416.000000 192.000000 16.000000
-16.000000 192.000000 16.000000
-16.000000 192.000000 -16.000000
-416.000000 192.000000 -16.000000
-416.000000 176.000000 16.000000
-16.000000 176.000000 16.000000
-16.000000 176.000000 -16.000000
-416.000000 176.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 192.000000 -16.000000
16.000000 192.000000 -16.000000
16.000000 192.000000 -416.000000
-16.000000 192.000000 -416.000000
-16.000000 176.000000 -16.000000
16.000000 176.000000 -16.000000
16.000000 176.000000 -416.000000
-16.000000 176.000000 -416.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 192.000000 16.000000
416.000000 192.000000 16.000000
416.000000 192.000000 -16.000000
16.000000 192.000000 -16.000000
16.000000 176.000000 16.000000
416.000000 176.000000 16.000000
416.000000 176.000000 -16.000000
16.000000 176.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 192.000000 416.000000
16.000000 192.000000 416.000000
16.000000 192.000000 16.000000
-16.000000 192.000000 16.000000
-16.000000 176.000000 416.000000
16.000000 176.000000 416.000000
16.000000 176.000000 16.000000
-16.000000 176.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
768.000000 0.000000 736.000000
1056.000000 192.000000 1056.000000
1056.000000 192.000000 416.000000
416.000000 192.000000 416.000000
416.000000 0.000000 416.000000
1056.000000 0.000000 416.000000
1056.000000 0.000000 1056.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 4 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 4 0 4 5 0x00000000
brush
vertices
-1056.000000 192.000000 1072.000000
1056.000000 192.000000 1072.000000
1056.000000 192.000000 1056.000000
-1056.000000 192.000000 1056.000000
-1056.000000 0.000000 1072.000000
1056.000000 0.000000 1072.000000
1056.000000 0.000000 1056.000000
-1056.000000 0.000000 1056.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
-1056.000000 192.000000 1056.000000
-416.000000 0.000000 416.000000
-1056.000000 192.000000 416.000000
-1056.000000 0.000000 1056.000000
-688.000000 0.000000 672.000000
-416.000000 192.000000 416.000000
-1056.000000 0.000000 416.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 4 6 1 0x00000000
brush
vertices
320.000000 32.000000 352.000000
352.000000 32.000000 352.000000
352.000000 32.000000 320.000000
352.000000 0.000000 352.000000
320.000000 0.000000 352.000000
352.000000 0.000000 320.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 2 5 0x00000000
brush
vertices
384.000000 32.000000 320.000000
416.000000 32.000000 320.000000
416.000000 32.000000 -416.000000
416.000000 0.000000 320.000000
384.000000 32.000000 -416.000000
384.000000 0.000000 -416.000000
384.000000 0.000000 320.000000
416.000000 0.000000 -416.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
-320.000000 32.000000 416.000000
320.000000 32.000000 416.000000
320.000000 32.000000 384.000000
-320.000000 32.000000 384.000000
-320.000000 0.000000 416.000000
320.000000 0.000000 416.000000
320.000000 0.000000 384.000000
-320.000000 0.000000 384.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
-416.000000 32.000000 320.000000
-384.000000 32.000000 320.000000
-384.000000 32.000000 -416.000000
-416.000000 32.000000 -416.000000
-416.000000 0.000000 320.000000
-384.000000 0.000000 320.000000
-384.000000 0.000000 -416.000000
-416.000000 0.000000 -416.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 32.000000 384.000000
352.000000 32.000000 384.000000
352.000000 32.000000 352.000000
-320.000000 32.000000 352.000000
-320.000000 0.000000 384.000000
352.000000 0.000000 384.000000
352.000000 0.000000 352.000000
-320.000000 0.000000 352.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 0.000000 352.000000
-320.000000 32.000000 416.000000
-320.000000 32.000000 352.000000
-368.000000 0.000000 352.000000
-320.000000 0.000000 416.000000
-416.000000 0.000000 320.000000
-416.000000 32.000000 320.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 0 3 0 4 0x00000000
brush
vertices
320.000000 32.000000 416.000000
416.000000 0.000000 320.000000
320.000000 32.000000 352.000000
320.000000 0.000000 416.000000
336.000000 0.000000 384.000000
416.000000 32.000000 320.000000
320.000000 0.000000 352.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 4 6 1 0x00000000
brush
vertices
-352.000000 32.000000 352.000000
-320.000000 32.000000 352.000000
-352.000000 32.000000 320.000000
-352.000000 0.000000 352.000000
-320.000000 0.000000 352.000000
-352.000000 0.000000 320.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 3 0 2 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 1 4 0x00000000
brush
vertices
352.000000 32.000000 352.000000
384.000000 32.000000 352.000000
384.000000 32.000000 -416.000000
352.000000 0.000000 -416.000000
352.000000 32.000000 -416.000000
384.000000 0.000000 352.000000
384.000000 0.000000 -416.000000
352.000000 0.000000 352.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 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 4 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
-384.000000 32.000000 352.000000
-352.000000 32.000000 352.000000
-352.000000 32.000000 -416.000000
-384.000000 32.000000 -416.000000
-384.000000 0.000000 352.000000
-352.000000 0.000000 352.000000
-352.000000 0.000000 -416.000000
-384.000000 0.000000 -416.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
-384.000000 0.000000 320.000000
-384.000000 32.000000 336.000000
-384.000000 32.000000 320.000000
-416.000000 32.000000 320.000000
-384.000000 0.000000 336.000000
-416.000000 0.000000 320.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 3 2 0 0x00000000
brush
vertices
-416.000000 192.000000 416.000000
-416.000000 0.000000 320.000000
-464.000000 192.000000 416.000000
-416.000000 0.000000 416.000000
-464.000000 0.000000 416.000000
-416.000000 192.000000 320.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 2 5 0x00000000
brush
vertices
416.000000 0.000000 416.000000
416.000000 192.000000 416.000000
464.000000 192.000000 416.000000
416.000000 192.000000 320.000000
416.000000 0.000000 320.000000
464.000000 0.000000 416.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
384.000000 32.000000 336.000000
416.000000 0.000000 320.000000
416.000000 32.000000 320.000000
384.000000 0.000000 320.000000
384.000000 32.000000 320.000000
384.000000 0.000000 336.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 5 0x00000000
brush
vertices
-416.000000 208.000000 416.000000
416.000000 208.000000 416.000000
416.000000 208.000000 -416.000000
-416.000000 208.000000 -416.000000
-416.000000 192.000000 416.000000
416.000000 192.000000 416.000000
416.000000 192.000000 -416.000000
-416.000000 192.000000 -416.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 common/materials/glass/glass_frosted
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 common/materials/glass/glass_frosted
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 common/materials/glass/glass_frosted
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 common/materials/glass/glass_frosted
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 common/materials/glass/glass_frosted
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 common/materials/glass/glass_frosted
brush
vertices
-416.000000 216.000000 416.000000
416.000000 216.000000 416.000000
416.000000 216.000000 -416.000000
-416.000000 216.000000 -416.000000
-416.000000 200.000000 416.000000
416.000000 200.000000 416.000000
416.000000 200.000000 -416.000000
-416.000000 200.000000 -416.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 common/materials/glass/glass_frosted
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 common/materials/glass/glass_frosted
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 common/materials/glass/glass_frosted
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 common/materials/glass/glass_frosted
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 common/materials/glass/glass_frosted
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 common/materials/glass/glass_frosted
brush
vertices
-416.000000 96.000000 360.000000
416.000000 96.000000 360.000000
416.000000 96.000000 356.000000
-416.000000 96.000000 356.000000
-416.000000 32.000000 360.000000
416.000000 32.000000 360.000000
416.000000 32.000000 356.000000
-416.000000 32.000000 356.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
-360.000000 96.000000 356.000000
-356.000000 96.000000 356.000000
-356.000000 96.000000 -360.000000
-360.000000 96.000000 -360.000000
-360.000000 32.000000 356.000000
-356.000000 32.000000 356.000000
-356.000000 32.000000 -360.000000
-360.000000 32.000000 -360.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
356.000000 96.000000 356.000000
360.000000 96.000000 356.000000
360.000000 96.000000 -360.000000
356.000000 96.000000 -360.000000
356.000000 32.000000 356.000000
360.000000 32.000000 356.000000
360.000000 32.000000 -360.000000
356.000000 32.000000 -360.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
-356.000000 96.000000 -356.000000
356.000000 96.000000 -356.000000
356.000000 96.000000 -360.000000
-356.000000 96.000000 -360.000000
-356.000000 32.000000 -356.000000
356.000000 32.000000 -356.000000
356.000000 32.000000 -360.000000
-356.000000 32.000000 -360.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 PlayerSpawn
Vector3 position 0.000000 0.000000 320.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 CameraPath
UInt32 entityIdAttachedTo 44
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type Target
Vector3 position 0.000000 32.000000 448.000000
Vector3 angles 180.000000 0.000000 0.000000
entity
type Target
Vector3 position -128.000000 32.000000 448.000000
Vector3 angles 180.000000 0.000000 0.000000
entity
type Target
Vector3 position -256.000000 32.000000 448.000000
Vector3 angles 180.000000 0.000000 0.000000
entity
type Target
Vector3 position 128.000000 32.000000 448.000000
Vector3 angles 180.000000 0.000000 0.000000
entity
type Target
Vector3 position 256.000000 32.000000 448.000000
Vector3 angles 180.000000 0.000000 0.000000
entity
type Target
Vector3 position 0.000000 32.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
entity
type Target
Vector3 position 128.000000 32.000000 576.000000
Vector3 angles 180.000000 0.000000 0.000000
entity
type Target
Vector3 position 384.000000 32.000000 576.000000
Vector3 angles 180.000000 0.000000 0.000000
entity
type Target
Vector3 position -128.000000 32.000000 960.000000
Vector3 angles 180.000000 0.000000 0.000000
entity
type Target
Vector3 position -128.000000 32.000000 576.000000
Vector3 angles 180.000000 0.000000 0.000000
entity
type Target
Vector3 position -384.000000 32.000000 576.000000
Vector3 angles 180.000000 0.000000 0.000000
entity
type Target
Vector3 position 256.000000 32.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
entity
type Target
Vector3 position -512.000000 32.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
entity
type Target
Vector3 position -256.000000 32.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
entity
type Target
Vector3 position 512.000000 32.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
entity
type Target
Vector3 position 128.000000 32.000000 960.000000
Vector3 angles 180.000000 0.000000 0.000000
entity
type Target
Vector3 position 384.000000 32.000000 960.000000
Vector3 angles 180.000000 0.000000 0.000000
entity
type Target
Vector3 position 640.000000 32.000000 960.000000
Vector3 angles 180.000000 0.000000 0.000000
entity
type Target
Vector3 position -384.000000 32.000000 960.000000
Vector3 angles 180.000000 0.000000 0.000000
entity
type Target
Vector3 position -640.000000 32.000000 960.000000
Vector3 angles 180.000000 0.000000 0.000000
entity
type PlayerSpawn
Vector3 position 256.000000 0.000000 448.000000
Vector3 angles 180.000000 0.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 128.000000 0.000000 448.000000
Vector3 angles 180.000000 0.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 0.000000 0.000000 448.000000
Vector3 angles 180.000000 0.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 -128.000000 0.000000 448.000000
Vector3 angles 180.000000 0.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 128.000000 0.000000 576.000000
Vector3 angles 180.000000 0.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 -256.000000 0.000000 448.000000
Vector3 angles 180.000000 0.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 384.000000 0.000000 576.000000
Vector3 angles 180.000000 0.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 -384.000000 0.000000 576.000000
Vector3 angles 180.000000 0.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 -128.000000 0.000000 576.000000
Vector3 angles 180.000000 0.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 -512.000000 0.000000 768.000000
Vector3 angles 180.000000 0.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 -256.000000 0.000000 768.000000
Vector3 angles 180.000000 0.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 0.000000 0.000000 768.000000
Vector3 angles 180.000000 0.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 256.000000 0.000000 768.000000
Vector3 angles 180.000000 0.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 512.000000 0.000000 768.000000
Vector3 angles 180.000000 0.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 -384.000000 0.000000 960.000000
Vector3 angles 180.000000 0.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 -128.000000 0.000000 960.000000
Vector3 angles 180.000000 0.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 128.000000 0.000000 960.000000
Vector3 angles 180.000000 0.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 384.000000 0.000000 960.000000
Vector3 angles 180.000000 0.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 640.000000 0.000000 960.000000
Vector3 angles 180.000000 0.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 -640.000000 0.000000 960.000000
Vector3 angles 180.000000 0.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
|
f65306397c0f3d1d50a15427031541de0c68b221
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1430/CH9/EX9.12/exa9_12.sce
|
9005a8d17ee57e9fdb9ab40b7368f39e06455469
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 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,236 |
sce
|
exa9_12.sce
|
// Example 9.12
// Step Response with variable damping
V_s1=0; // Voltage source value for t<0
V_s2=30;//Voltage source value for t>0
L=0.1;
C=1/640;
omega_0=sqrt(1/(L*C));
v_C_aft=0; // v_C(0^+)=0;
v_C_aft_d=0; // v_C'(0^+)=0;
V_ss=30;
// for Overdamped Response
// Let
R=34;
alpha=R/(2*L);
p1=-alpha+sqrt(alpha^2-omega_0^2)
p2=-alpha-sqrt(alpha^2-omega_0^2)
P=[1,1;p1,p2];// coefficients of A's matrix
V=[v_C_aft-V_ss;v_C_aft_d];// initial conditions and excitations
A=P\V;
A_1=A(1);
A_2=A(2);
t=0:0.001:0.5
v_C=V_ss+A_1*exp(p1*t)+A_2*exp(p2*t);// t>0
// for Underdamped Response
// Let
R1=5;
alpha1=R1/(2*L);
p3=-alpha1+sqrt(alpha1^2-omega_0^2);
p4=-alpha1-sqrt(alpha1^2-omega_0^2);
omega_d=sqrt(omega_0^2-alpha1^2);
P1=[1,1;p3,p4];
V1=[v_C_aft-V_ss;v_C_aft_d];
A1=P1\V1
A_3=A1(1);
v_C1=V_ss+2*abs(A_3)*exp(-alpha1*t).*cos(omega_d*t+atan(imag(A_3),real(A_3)));
// for Critically Damped Response
R2=sqrt(6400/25);
alpha2=R2/(2*L);
A_4=v_C_aft-V_ss;
A_5=v_C_aft_d+alpha2*A_4;
v_C2=V_ss+A_4*exp(-alpha2*t)+A_5*t.*exp(-alpha2*t);
plot(t,v_C,t,v_C1,t,v_C2)
xlabel('t')
ylabel('v_c(t)')
title('Step Response with variable damping')
h1=legend(['Overdamped';'Underdamped';'Critically damped'])
|
5b1cb467e7735575f2416483fa445bc87c6db1c8
|
3c47dba28e5d43bda9b77dca3b741855c25d4802
|
/microdaq/macros/microdaq_macros/mdaqEncoderInit.sci
|
804e89d3e4d24f6e7e9ab7e48882b957608a184e
|
[
"BSD-3-Clause"
] |
permissive
|
microdaq/Scilab
|
78dd3b4a891e39ec20ebc4e9b77572fd12c90947
|
ce0baa6e6a1b56347c2fda5583fb1ccdb120afaf
|
refs/heads/master
| 2021-09-29T11:55:21.963637 | 2019-10-18T09:47:29 | 2019-10-18T09:47:29 | 35,049,912 | 6 | 3 |
BSD-3-Clause
| 2019-10-18T09:47:30 | 2015-05-04T17:48:48 |
Scilab
|
UTF-8
|
Scilab
| false | false | 2,086 |
sci
|
mdaqEncoderInit.sci
|
function mdaqEncoderInit(arg1, arg2, arg3, arg4)
if argn(2) == 3 then
enc = arg1;
init_value = arg2;
enc_mode = arg3;
end
if argn(2) == 4 then
link_id = arg1;
enc = arg2;
init_value = arg3;
enc_mode = arg4;
if link_id < 0 then
error("Invalid connection id!")
end
end
if argn(2) > 4 | argn(2) < 3 | enc > 2 | enc < 1 then
mprintf("Description:\n");
mprintf("\tInitializes encoder module\n");
mprintf("Usage:\n");
mprintf("\tmdaqEncoderInit(linkID, module, initValue, mode)\n")
mprintf("\tlinkID - connection id returned by mdaqOpen() (OPTIONAL)\n");
mprintf("\tmodule - encoder module (1 | 2)\n");
mprintf("\tinitValue - initial counter value\n");
mprintf("\tmode - encoder counter mode (""quadrature"" | ""dir"" | ""up"" | ""down"")\n");
return;
end
if type(enc_mode) == 10 then
count_mode = convstr(enc_mode, 'l');
select count_mode
case "quadrature" then
mode_arg = 0;
case "dir" then
mode_arg = 1;
case "up" then
mode_arg = 2;
case "down" then
mode_arg = 3;
else
error("Unsupported Encoder mode");
end
else
if enc_mode < 0 | enc_mode > 4 then
error("Unsupported Encoder mode");
else
mode_arg = enc_mode;
end
end
if argn(2) == 3 then
link_id = mdaqOpen();
if link_id < 0 then
error("Unable to connect to MicroDAQ device!");
end
end
result = call("sci_mlink_enc_reset",..
link_id, 1, "i",..
enc, 2, "i",..
mode_arg, 3, "i",..
init_value, 4, "i",..
"out",..
[1, 1], 5, "i");
if argn(2) == 3 then
mdaqClose(link_id);
end
if result < 0 then
error(mdaq_error2(result), 10000 + abs(result));
end
endfunction
|
5ec7760a31be19a97d9930353ba7ba454d756861
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/278/CH25/EX25.14/ex_25_14.sce
|
c0cd89ec0ac74a70cacb5b4965632f18cfd3f209
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 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
|
ex_25_14.sce
|
//find..
clc
//solution
//given
n=12
q=(%pi/180)*7.5//rad
t=0.075//m
d=0.85//m
P=225*1000//W
N=240//rpm
u=0.4
//ref fig 25.35
//(T1+T1b)*sin(q)=Rn....eq1
//(T1-T1b)*cos(q)=uRn....eq2
//(T1/T1b)=(1+utan(q))/(1-utan(q))//constant
//similarly for other blocks
//T1b/T2b=T2b/T3b..etc remain constant
//T1/T2={(1+utan(q))/(1-utan(q))}^12=3.55//....eq1
//let P1 be least force req at C
D=d+2*t//m
//(T1-T2)=P*60/(%pi*D*N)=17900//N....eq2
//from eq1 and eq2
T1=24920//N
T2=7020//N
P1=(T2*150-T1*30)/500//N
printf("least force req is,%f N\n",P1)
|
b65e2a718e8eb64a886f8b1caee767c7cde85cb9
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2240/CH5/EX4.2/EX4_2.sce
|
1dc22b31558c7af89170767029ba2ee20c3d036a
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 347 |
sce
|
EX4_2.sce
|
// Grob's Basic Electronics 11e
// Chapter No. 04
// Example No. 4_2
clc; clear;
//With 80 V applied across the series string, how much is the current in R3?
// Given data
Rt = 20; // Total Resistance=20 Ohms
Vt = 80; // Applied Voltage=80 Volts
I = Vt/Rt;
disp (I,'The Current in Resistor R3 connected in Series in Amps')
|
71daf9c041a4dd26ba9e65cb2e16b2d747bf6437
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/545/CH4/EX4.2/ch_4_eg_2.sce
|
634e9ebf720937ebe2098031cb3be73eb4154b46
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 627 |
sce
|
ch_4_eg_2.sce
|
clc
disp("the solution of e.g. 4.2 -->Ordinary Differential Eqn.-Runge Kutta method")
// in this problem dy/dx=-y/(1+x)
x_0=0 //initial values given
y_0=2
function ydash=fr(x,y),
ydash=-y/(1+x),
endfunction
for x_0=0:0.01:2.5,
h=0.01 //step increment of 0.01
f_0=fr(x_0,y_0)
k1=h*f_0
k2=h*fr(x_0+h/2,y_0+k1/2)
k3=h*fr(x_0+h/2,y_0+k2/2)
k4=h*fr(x_0+h,y_0+k3)
y_0=y_0+(k1+2*k2+2*k3+k4)/6
end
y_0=y_0-(k1+2*k2+2*k3+k4)/6 //final value at x=2.5
disp(y_0,"the value of y at x=2.5 using Runge Kutta method is");
|
8843809896ecc09deb97e218c2a25ed3d882c89f
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2510/CH22/EX22.10/Ex22_10.sce
|
2cea58d8a3bb6239f930d677e3158c6ff7029160
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 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,233 |
sce
|
Ex22_10.sce
|
//Variable declaration:
//From example 22.9:
t1 = 23.5 //Initial temperature of oil ( C)
t2 = 27 //Final temperature of oil ( C)
T1 = 93 //Water heating temperature of water ( C)
T2 = 88.16 //Minimum temperature of heating water ( C)
U = 34.6 //Overall heat transfer coefficient (W/m^2. C)
Q = 7227.2 //Duty of exchanger (W)
D = 6*0.0254 //Inside diameter of %pipe (m)
l = 6.68 //Previous heat transfer length (m)
//Calculation:
DT1 = T1-t1 //Inlet temperature difference ( C)
DT2 = T2-t2 //Outlet temperature difference ( C)
DTlm = (DT1-DT2)/log(DT1/DT2) //Log mean temperature difference ( C)
A = Q/(U*DTlm) //Required heat transfer area (m^2)
L = A/(%pi*D) //Required heat transfer length (m)
//Result:
printf("The length of the parallel %%pipe heat exchanger is : %.2f ",L)
if L>l then
printf("The tube length would increase slightly.")
elseif L<l then
printf("The tube length would decrease slightly.")
end
|
297c7162d78434f67b1d39a3d75df8794caead50
|
717ddeb7e700373742c617a95e25a2376565112c
|
/806/DEPENDENCIES/1_32.sci
|
fbb08df73f49ffcf2ca08707b871fbd0cfe3dd7e
|
[] |
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 | 29 |
sci
|
1_32.sci
|
F=10//N(Force)
m=2//kg(mass)
|
5deb36146be8f8cf6a5cba2cfebdec5c1a95b40e
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/60/CH4/EX4.6/ex_6.sce
|
a23148baaf375ab9a67cbf25581f5fdc72175e32
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 226 |
sce
|
ex_6.sce
|
//Example (pg no.140)
A=[1 2;2 4]
det(A)
// Here A is a singular matrix i.e, det(A)=0
//inv(A)=(adj(A))/det(A)
//so A is not invertible
|
d0821a605f51865ae46794e4271bb9491c2fd665
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2789/CH4/EX4.3/Ex4_3.sce
|
da6b8cc7b47bb6b56af42ef94e17d2dae7a70b74
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 242 |
sce
|
Ex4_3.sce
|
clear;
clc;
//page no. 107
p = 14;//psia
gam = 62;//lb/cuft
l1 = 35;// ft
l2 = 10;// ft
d = 6;//in
p_v = 2.2*gam;
p_B = p*144;
k_c = l1-l2+(p_B/gam)-(p_v/gam);
K6 = l1;
d_c = d*(K6/k_c)^0.25;
printf('d = %.2f in',d_c);
|
e260edc691bc0d4d50d63b25deae1260d0dd9321
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2609/CH5/EX5.3/ex_5_3.sce
|
c0af1eeb8e74496ce4eb2a11dfbdbab13affb581
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 190 |
sce
|
ex_5_3.sce
|
//Ex 5.3
clc;
clear;
close;
format('v',5);
V1=-2;V2=3;//V
R1=50;R2=100;//kohm
Rf=250;//kohm
//I1+I2=If with IB=0 & Vx=0
Vout=-(V1/R1+V2/R2)*Rf;//V
disp(Vout,"Output Voltage(V)");
|
a448d286b816f702f9e03d9f724140f1635e95b8
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3651/CH4/EX4.9/9.sce
|
393ab7cbe00a35bba023d3bed5d55d113ffcc770
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 251 |
sce
|
9.sce
|
//Variable declaration
rho_r=0
T=300
rho=1.7*10**-18
//Calculations
a=rho/T
rho_973=a*973
//Results
printf('Temperature coefficient of resistivity,a =%0.3f \n ',(a*10**21))
printf('rho_973 =%0.3f *10**-8 ohm-m \n ',(rho_973*10**18))
|
67f2c4d671bbfa687581be70e9120f1b9892e48f
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/866/CH3/EX3.1/3_1.sce
|
64d485f70aa107ccd628a571043b88128081ee01
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 129 |
sce
|
3_1.sce
|
clc
//initialisation of variables
Rah= -10 //KN
F= 10 //KN
//CALCULATIONS
Nab= -Rah
//RESULTS
printf ('Nab= %.f kN',Nab)
|
2cacf1994d2e7b4f5d7a69e14cc7f58fe625267d
|
14a72a1c4caceaaa52bfd973edacc3b3280fe783
|
/SmartOrni/src/SciLab/showDat.sce
|
5360f5f374d32a201a4c6a4d49e3ff04738f7c30
|
[] |
no_license
|
betito/beto-inpa
|
55b7e8d25bd8c6535e2d071ff64c24e38afd3fc7
|
9ecc175967ec78b2f03471fefd863762f33de1fe
|
refs/heads/master
| 2020-05-18T00:32:45.253708 | 2015-03-20T01:32:45 | 2015-03-20T01:32:45 | 32,187,733 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 526 |
sce
|
showDat.sce
|
localdir="./*.wav"
listoffiles = listfiles(localdir)
//disp(listoffiles(:))
[numfiles, y] = size(listoffiles)
disp(numfiles)
disp(y)
listoffiles = ["_Inambari-Tambopata__Antwren_0.wav" "Papa-formiga-barrado_7.wav"]
data = read(listoffiles(1,1) + ".dat", -1,240000)
//subplot(311)
//plot(data(1,:), 'r.')
//subplot(312)
//plot(data(2,:), 'g.')
//subplot(313)
//plot(data(3,:), 'b.')
savewave('tmp1.wav', data(1,:))
savewave('tmp2.wav', data(2,:))
savewave('tmp3.wav', data(3,:))
disp ("Fim...")
|
323ff8c658e4cbbbfbd55c3c1913b72f86740496
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3669/CH4/EX4.1/1.sce
|
55edd4f86ccdcc93fd4d1ed6467da0ed25b5be2f
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 264 |
sce
|
1.sce
|
//Variable declaration
e=1.6*10**-19;
m=9.1*10**-31; //mass(kg)
h=6.63*10**-34; //planck's constant
E=2000; //energy(eV)
//Calculation
lamda=h/sqrt(2*m*E*e); //wavelength(m)
//Result
printf('wavelength is %0.4f nm\n ',(lamda*10**9))
|
fefd7cdaf102bd50e077bb9f57d3b2574d708f49
|
1d7cb1dbfad2558a4145c06cbe3f5fa3fc6d2c08
|
/Scilab/SparamToolBox/SparamToolbox/v1.0/x86/sci_gateway/loader_gateway.sce
|
f1abd1e41aac9c2ddf9eb5f473d043cbe41546fa
|
[] |
no_license
|
lrayzman/SI-Scripts
|
5b5f6a8e4ae19ccff53b8dab7b5773e0acde710d
|
9ab161c6deff2a27c9da906e37aa68964fabb036
|
refs/heads/master
| 2020-09-25T16:23:23.389526 | 2020-02-09T02:13:46 | 2020-02-09T02:13:46 | 66,975,754 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 923 |
sce
|
loader_gateway.sce
|
// This file is released into the public domain
// Generated by builder_gateway.sce: Please, do not edit this file
//
try
v = getversion('scilab');
catch
v = [ 5 0 ]; // or older
end
if (v(1) <= 5) & (v(2) < 2) then
// new API in scilab 5.2
error(gettext('Scilab 5.2 or more is required.'));
end
sci_gateway_dir = get_absolute_file_path('loader_gateway.sce');
current_dir = pwd();
chdir(sci_gateway_dir);
if ( isdir('c') ) then
chdir('c');
exec('loader.sce');
end
chdir(sci_gateway_dir);
if ( isdir('fortran') ) then
chdir('fortran');
exec('loader.sce');
end
chdir(sci_gateway_dir);
if ( isdir('cpp') ) then
chdir('cpp');
exec('loader.sce');
end
chdir(current_dir);
// ====================================================================
clear sci_gateway_dir;
clear current_dir;
// ====================================================================
|
314a951e5dd082a0f74e64fdd1e1e87949865a42
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/662/CH6/EX6.5/ex6_5.sce
|
7faa227f8018e974607c6668df0d2cc85586fa82
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 370 |
sce
|
ex6_5.sce
|
//Example 6.5
//The if statement
printf("Enter first number: ");
first=scanf("%d");
printf("Enter second numer: ");
second=scanf("%d");
if (first > second) then
printf("First number is bigger\n");
end
if (second > first) then
printf("second number is bigger\n");
end
if (first == second) then
printf("Both numbers are equal\n");
end
|
f8dac2bafeef07d8fc38c009fea85c1f4b5041b0
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2384/CH9/EX9.14/ex9_14.sce
|
b17bc5d5fb063b2f7a46e30eb67e8da6d3de75b5
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 458 |
sce
|
ex9_14.sce
|
// Exa 9.14
clc;
clear;
close;
format('v',6)
// Given data
Rating = 40*10^3;// in VA
Pi = 400;// in W
Pcu_f1 = 800;// in W
phi= acosd(0.9);// in °
Eta_f1 = ((Rating*cosd(phi))/( (Rating*cosd(phi)) + Pi + Pcu_f1 ))*100;// in %
disp(Eta_f1,"Full load efficiency in % is");
// percentage of the full load
Eta_max = Rating*sqrt( Pi/Pcu_f1);// in KVA
Eta_max = Eta_max/Rating*100;// in %
disp(Eta_max,"The percentage of the full load in % is");
|
2f526b271e43da226f15bce7c0bcea806ebd8f2c
|
4533c11d75f955d8350d45606af92ca064d2e319
|
/differentialEvolution/scilab-scripts/NSGA-IIAFDCa,p+Kir+K+Lparallele.sce
|
fdcc5283118f7de890c2fb96b36c09425f0b1f58
|
[] |
no_license
|
lois76/ParamEstimationDE
|
0066c5a18042637b97bf989e77f2ce04ba283b12
|
ab3911174450a4ec9976a108885cf8e7afc62b3d
|
refs/heads/master
| 2022-05-21T04:49:51.662762 | 2022-03-21T13:15:38 | 2022-03-21T13:15:38 | 167,556,538 | 0 | 1 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 12,506 |
sce
|
NSGA-IIAFDCa,p+Kir+K+Lparallele.sce
|
//////////////////////////////////////////////////////////
/////////////// Experimental data ///////////////
//////////////////////////////////////////////////////////
// Voltage
a = read("/scilab-scripts/Fig 1A_AFD Current-Clamp Trace.txt",-1,12);
A=a(2489:14988,2:$)*1000;
//a = read("/home/loisse/Documents/FichierScilab/EstimationAFD/Fig1A_AFDCurrentClampTrace.txt",-1,12);
//A=a(2489:14988,2:$)*1000;
t=linspace(0,50,12500);
t0=0;
stim=[-15:5:35];
// Steady-state currents
vecV=[-110:10:50]
Inf=[-68.6 -49.5 -18.2 -5.06 2.19 3.37 2.52 2.68 5.97 14.6 33.4 60.2 85 114 152 208 254]
////////////////////////////////////////////////////////
/////////////// Objective functions //////////////
////////////////////////////////////////////////////////
function u=xinf(VH,V12,k)
u = 1 ./(1+exp((V12-VH) ./k));
endfunction
function [Hdot]=HH(t,x,pa)
Hdot=zeros(4,1);
Hdot(1)=(1/pa(22))*(-pa(1)*x(2)*(x(1)-pa(5)) - pa(2)*xinf(x(1),pa(9),pa(13))*(x(1)-pa(6)) - pa(3)*x(3)*x(4)*(x(1)-pa(6)) - pa(4)*(x(1)-pa(7)) + I)
Hdot(2)=(xinf(x(1),pa(8),pa(12))-x(2))/pa(16)
Hdot(3)=(xinf(x(1),pa(10),pa(14))-x(3))/pa(17)
Hdot(4)=(xinf(x(1),pa(11),pa(15))-x(4))/pa(18)
endfunction
// Objective function
function f=costFct(pa)
// cost function f1
c=0;
condini = [-78; pa(19); pa(20); pa(21)]
for i=1:11
I=stim(i);
x=ode(condini,t0,t,HH);
V=x(1,:);
for k=1:length(t)
c=c+(V(k)-A(k,i))*(V(k)-A(k,i))
end
end
f1=c/length(t);
// cost function f2
e=0;
for i=1:length(vecV)
e=e+(Inf(i)-(pa(1).*xinf(vecV(i),pa(8),pa(12)).*(vecV(i)-pa(5)) + pa(2).*xinf(vecV(i),pa(9),pa(13)).*(vecV(i)-pa(6)) + pa(3).*xinf(vecV(i),pa(10),pa(14)).*xinf(vecV(i),pa(11),pa(15)).*(vecV(i)-pa(6)) + pa(4).*(vecV(i)-pa(7))))^2
end
f2=e/length(vecV)
f=[f1, f2];
endfunction
// Borne sup et inf
Xmin=[0.0001 0.0001 0.0001 0.0001 20 -100 -90 -90 -90 -90 -90 1 -30 1 -30 0.0001 0.0001 0.0001 0.001 0.001 0.001 0.001]';
Xmax=[50 50 50 50 150 -2 30 -2 -2 -2 -2 30 -1 30 -1 15 15 15 0.999 0.999 0.999 10]';
// Problem dimension
dim = 22;
// Parameter of the genetic algorithm
funcname='costFct';
PopSize=500;
Proba_cross=0.9;
Proba_mut=0.045 // (=1/22=1/NdVs)
NbGen=5000;
NbCouples=110;
Log=%T;
pressure=0.1;
// Setting parameters of optim_nsga2 function
ga_params = init_param();
// Parameters to adapt to the shape of the optimization problem
ga_params=add_param(ga_params,'minbound',Xmin);
ga_params=add_param(ga_params,'maxbound',Xmax);
ga_params=add_param(ga_params,'dimension',dim);
ga_params=add_param(ga_params,'beta',0);
ga_params=add_param(ga_params,'delta',0.1);
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) 2008 - Yann COLLETTE <yann.collette@renault.com>
//
// Copyright (C) 2012 - 2016 - Scilab Enterprises
//
// This file is hereby licensed under the terms of the GNU GPL v2.0,
// pursuant to article 5.3.4 of the CeCILL v.2.1.
// This file was originally licensed under the terms of the CeCILL v2.1,
// and continues to be available under such terms.
// For more information, see the COPYING file which you should have received
// along with this program.
//function [pop_opt, fobj_pop_opt, pop_init, fobj_pop_init, pop_1000, fobj_pop_1000, pop_2000, fobj_pop_2000, pop_3000, fobj_pop_3000, pop_4000, fobj_pop_4000] = optim_nsga2(ga_f, pop_size, nb_generation, p_mut, p_cross, Log, param)
function [pop_opt, fobj_pop_opt, pop_init, fobj_pop_init, pop_1000, fobj_pop_1000, pop_2500, fobj_pop_2500, pop_4000, fobj_pop_4000, pop_4300, fobj_pop_4300, pop_4600, fobj_pop_4600, pop_4800, fobj_pop_4800] = simulation(ga_f, pop_size, nb_generation, p_mut, p_cross, Log, param)
// isdef vérifie l'existence de la variable (ici en local). Donc ~isdef vérifie la non existence car ~ désigne la négation
if ~isdef("param", "local") then
param = [];
end
[codage_func, err] = get_param(param, "codage_func", coding_ga_identity);
[init_func, err] = get_param(param, "init_func", init_ga_default);
[crossover_func, err] = get_param(param, "crossover_func", crossover_ga_default);
[mutation_func, err] = get_param(param, "mutation_func", mutation_ga_default);
[nb_couples, err] = get_param(param, "nb_couples", 100);
[output_func, err] = get_param(param, 'output_func', output_nsga2_default);
// si ga_f n'existe pas, alors renvoyé un message d'erreur car celle-ci est obligatoire
if ~isdef("ga_f", "local") then
error(gettext("optim_nsga2: ga_f is mandatory"));
else
if typeof(ga_f)=="list" then
deff("y=_ga_f(x)", "y=ga_f(1)(x, ga_f(2:$))");
else
deff("y=_ga_f(x)", "y=ga_f(x)");
end
end
// Initialisation de la population
Pop = init_func(pop_size, param);
disp(Pop);
tmp1=Pop;
pop_init = tmp1;
// Code the individuals
Pop = codage_func(Pop, "code", param);
for i=1:length(Pop)
FObj_Pop(i, :) = _ga_f(Pop(i));
end
tmp2=FObj_Pop;
fobj_pop_init = tmp2;
// Compute the domination rank
Rank=DominationRank(FObj_Pop);
// Compute the crowding distance
MO_FObj_Pop = FObj_Pop;
Index = 1:size(MO_FObj_Pop, 1);
Crowdist = zeros(size(MO_FObj_Pop, 1), 1);
for i=1:size(FObj_Pop, 2)
[tmp, Index_List] = gsort(MO_FObj_Pop(:, i));
MO_FObj_Pop = MO_FObj_Pop(Index_List, :);
Index = Index(Index_List);
Crowdist(Index_List(1)) = %inf;
Crowdist(Index_List($)) = %inf;
_Max = max(MO_FObj_Pop(:, i));
_Min = min(MO_FObj_Pop(:, i));
for j=2:size(MO_FObj_Pop, 1)-1
Crowdist(Index(j)) = Crowdist(Index(j)) - (MO_FObj_Pop(j+1, i) - MO_FObj_Pop(j-1, i)) / (_Max - _Min);
end
end
// The genetic algorithm
for It=1:nb_generation
//
// Selection
//
Indiv1 = list();
Indiv2 = list();
for j=1:nb_couples
// Selection of 2 individuals via binary tournament selection to fill Indiv1
Index1 = ceil((size(FObj_Pop, 1) - 1)*grand(1, 1, "def")+1);
Index2 = ceil((size(FObj_Pop, 1) - 1)*grand(1, 1, "def")+1);
if (Rank(Index1)<Rank(Index2)) | ((Rank(Index1)==Rank(Index2)) & (Crowdist(Index1)>Crowdist(Index2))) then
Indiv1(j) = Pop(Index1);
FObj_Indiv1(j, :) = MO_FObj_Pop(Index1, :);
else
Indiv1(j) = Pop(Index2);
FObj_Indiv1(j, :) = MO_FObj_Pop(Index2, :);
end
// Selection of 2 individuals via binary tournament selection to fill Indiv2
Index1 = ceil((size(FObj_Pop, 1) - 1)*grand(1, 1, "def")+1);
Index2 = ceil((size(FObj_Pop, 1) - 1)*grand(1, 1, "def")+1);
if (Rank(Index1)<Rank(Index2)) | ((Rank(Index1)==Rank(Index2)) & (Crowdist(Index1)>Crowdist(Index2))) then
Indiv2(j) = Pop(Index1);
FObj_Indiv2(j, :) = MO_FObj_Pop(Index1, :);
else
Indiv2(j) = Pop(Index2);
FObj_Indiv2(j, :) = MO_FObj_Pop(Index2, :);
end
end
//
// Crossover
//
for j=1:nb_couples
if (p_cross>grand(1, 1, "def")) then
[x1, x2] = crossover_func(Indiv1(j), Indiv2(j), param);
Indiv1(j) = x1;
Indiv2(j) = x2;
ToCompute_I1(j) = %T;
ToCompute_I2(j) = %T;
else
ToCompute_I1(j) = %F;
ToCompute_I2(j) = %F;
end
end
//
// Mutation
//
for j=1:nb_couples
if (p_mut>grand(1, 1, "def")) then
x1 = mutation_func(Indiv1(j), param);
Indiv1(j) = x1;
ToCompute_I1(j) = %T;
end
if (p_mut>grand(1, 1, "def")) then
x2 = mutation_func(Indiv2(j), param);
Indiv2(j) = x2;
ToCompute_I2(j) = %T;
end
end
//
// Computation of the objective functions
//
for j=1:length(Indiv1)
if ToCompute_I1(j) then FObj_Indiv1(j, :) = _ga_f(Indiv1(j)); end
if ToCompute_I2(j) then FObj_Indiv2(j, :) = _ga_f(Indiv2(j)); end
end
// Reinit ToCompute lists
ToCompute_I1 = ToCompute_I1 & %F;
ToCompute_I2 = ToCompute_I2 & %F;
// We merge all the individuals in one list ...
All_Pop = lstcat(Pop, Indiv1, Indiv2);
All_FObj = [FObj_Pop' FObj_Indiv1' FObj_Indiv2']';
// Compute the domination rank on all the population
Rank=DominationRank(All_FObj);
// Compute the crowding distance
MO_All_FObj = All_FObj;
Index = 1:size(MO_All_FObj, 1);
Crowdist = zeros(size(MO_All_FObj, 1), 1);
for k=1:size(MO_All_FObj, 2)
[tmp, Index_List] = gsort(MO_All_FObj(:, k));
MO_All_FObj = MO_All_FObj(Index_List, :);
Index = Index(Index_List);
Crowdist(Index_List(1)) = %inf;
Crowdist(Index_List($)) = %inf;
_Max = max(MO_All_FObj(:, k));
_Min = min(MO_All_FObj(:, k));
for j=2:size(MO_All_FObj, 1)-1
Crowdist(Index(j)) = Crowdist(Index(j)) - (MO_All_FObj(j+1, k) - MO_All_FObj(j-1, k)) / (_Max - _Min);
end
end
//
// Recombination
//
// We rank all the individual wrt to the partial order
for k=1:size(All_FObj, 1)-1
for j=k+1:size(All_FObj, 1)
if (Rank(j)<Rank(k)) | ((Rank(j)==Rank(k)) & (Crowdist(j)>Crowdist(k))) then
tmp = Rank(k);
Rank(k) = Rank(j);
Rank(j) = tmp;
tmp = Crowdist(k);
Crowdist(k) = Crowdist(j);
Crowdist(j) = tmp;
tmp = All_Pop(k);
All_Pop(k) = All_Pop(j);
All_Pop(j) = tmp;
tmp = All_FObj(k, :);
All_FObj(k, :) = All_FObj(j, :);
All_FObj(j, :) = tmp;
end
end
end
// Extraction and selection of the phenotype
FObj_Pop = All_FObj(1:pop_size, :);
// Extraction and selection of the genotype
Pop = list(All_Pop(1:pop_size));
// Extraction of the ranks and Crow distance
Rank = Rank(1:pop_size);
Crowdist = Crowdist(1:pop_size);
// Save population and associated objective fonctions
if It==1000 then
disp(Pop);
npop=length(Pop);
pop_1000=matrix(list2vec(Pop),dim,npop);
fobj_pop_1000=FObj_Pop;
end
if It==2500 then
disp(Pop);
npop=length(Pop);
pop_2500=matrix(list2vec(Pop),dim,npop);
fobj_pop_2500=FObj_Pop;
end
if It==4000 then
disp(Pop);
npop=length(Pop);
pop_4000=matrix(list2vec(Pop),dim,npop);
fobj_pop_4000=FObj_Pop;
end
if It==4300 then
disp(Pop);
npop=length(Pop);
pop_4300=matrix(list2vec(Pop),dim,npop);
fobj_pop_4300=FObj_Pop;
end
if It==4600 then
disp(Pop);
npop=length(Pop);
pop_4600=matrix(list2vec(Pop),dim,npop);
fobj_pop_4600=FObj_Pop;
end
if It==4800 then
disp(Pop);
npop=length(Pop);
pop_4800=matrix(list2vec(Pop),dim,npop);
fobj_pop_4800=FObj_Pop;
end
if It==nb_generation then
disp(Pop);
npop=length(Pop);
pop_opt=matrix(list2vec(Pop),dim,npop);
fobj_pop_opt=FObj_Pop;
end
if (Log) then
stop = output_func(i, nb_generation, Pop, FObj_Pop, param);
if stop then
break
end
end
end
endfunction
//// Performing optimization
//printf("Performing optimization:");
[pop_opt, fobj_pop_opt, pop_init, fobj_pop_init, pop_3, fobj_pop_3, pop_5, fobj_pop_5] = simulation(costFct,PopSize,NbGen,Proba_mut,Proba_cross,Log,ga_params);
|
7ae760b53ff4176f3e73408e7620a62526801bc4
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3281/CH12/EX12.4/ex12_4.sce
|
db5068d3dd7621260aec07f7e5ca18ac6e712850
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 142 |
sce
|
ex12_4.sce
|
//Page Number: 651
//Example 12.4
clc;
//Given
delx=3.5; //cm
s=0.25; //cm
lmbg=2*delx;
vswr=lmbg/(%pi*s);
disp(vswr,'VSWR:');
|
9cfdc40271d0d02e556826f50b57aa753e0e0a9b
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1316/CH1/EX1.2/example1_2.sce
|
17860f9e916cf92f8d513c60ecd93e48807603e7
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 240 |
sce
|
example1_2.sce
|
//Chapter 1
//Example 1.2
//Page 23
clear;
clc;
p=2.1*10^3;
//Calculation of pressure in pascals
printf("As we know that 10^2 cm= 1m and 10^5 dyne=1 Newton \n Thus the value of pressure is %.f Pascals",(p*10000)/(100000));
|
3f2e67cc94b4dfecb331cc208167060787bbd8ae
|
717ddeb7e700373742c617a95e25a2376565112c
|
/1379/CH10/EX10.1.5/example10_5.sce
|
9f1d2a8963fef2118b0112ec1ffd0dda6a08ff2e
|
[] |
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 | 850 |
sce
|
example10_5.sce
|
//example 10.5
clc; funcprot(0);
clf()
//exapple 10.5
// Initialization of Variable
t=[0 45 135 495 1875 6900 66600 86400];//time
m=[0.1911 0.1586 0.1388 0.1109 0.0805 0.0568 0.0372 0.0359];//mass total
rho1=3100;//density of cement
mu=1.2/1000;//viscosity of desperant liquid
rho=790;//density of desperant liquid
h=0.2;
V=10;
s=0;
d(1)=100/1000000;//assumed value
for i=1:7
d(i+1)=sqrt(18*mu*h/g/t(i+1)/(rho1-rho));//dia of particles
mc(i+1)=m(i+1)-0.2/100*V;//mass of cement
s=s+mc(i+1);
end
mc(1)=m(1)-0.2*V/100;
s=s+mc(1);
mp(1)=100;
for i=1:7
mp(i+1)=mc(i+1)/mc(1)*100;//mass percent below size
end
plot(mp,d);
xtitle("", "%undersize", "Particle Size(m)");
u=h/t(2);
Re=d(2)*u*rho/mu;
if Re<2 then
disp("since Re<2 for 81% of particles so settlement occurs mainly by stoke-s law")
end
|
f9b782840a3d05c0cc46e45133a9a9a6b1fda9f4
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3838/CH2/EX2.17.a/EX2_17_a.sce
|
dd3b04feef7612aa5a4ebd45a6f0fb0c515d2aae
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 267 |
sce
|
EX2_17_a.sce
|
//EXAMPLE 2.17.A
clc;
x=[1,1,1,1]
t=-1:0:1;
y(t)=cos(x(t));
disp('the max val of cos function is');
disp(cos(0));
disp('the min val of cos function is');
disp(cos(%pi));
disp('HENCE THE GIVEN SYSTEM IS BOUNDED IN -1 TO 1 HENCE THE GIVEN SYSTEM IS STABLE');
|
7d3c2217ea656bb0d46666c21069b645bdd52d40
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2498/CH1/EX1.20/ex1_20.sce
|
af2229ea12f860e45df2560973ef8161087db061
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 389 |
sce
|
ex1_20.sce
|
// Exa 1.20
clc;
clear;
close;
format('v',9)
// Given data
R_H = 3.55 * 10^-4;// in m^3/C
Ix = 15;// in mA
Ix = Ix * 10^-3;// in A
A = 15*1;// in mm
A = A * 10^-6;// in m^2
Bz = 0.48;// in Wb/m^2
Jx = Ix/A;// in A/m^2
// R_H = Ey/(Bz*Jx);
Ey = R_H*Bz*Jx;// in V/m
// voltage between contacts
Voltage = Ey*Ix;// in V
disp(Voltage,"The voltage between contacts in V is");
|
79d0eaea56fe4543ebd3fb6ae8166b1487c64980
|
d465fcea94a1198464d7f8a912244e8a6dcf41f9
|
/system/kiks_gui_setlimitlistbox.sci
|
e481a852e5b89206e5a0c1859e15af702002f10f
|
[] |
no_license
|
manasdas17/kiks-scilab
|
4f4064ed7619cad9e2117a6c0040a51056c938ee
|
37dc68914547c9d0f423008d44e973ba296de67b
|
refs/heads/master
| 2021-01-15T14:18:21.918789 | 2009-05-11T05:43:11 | 2009-05-11T05:43:11 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 1,028 |
sci
|
kiks_gui_setlimitlistbox.sci
|
function [] = kiks_gui_setlimitlistbox(val)
// Number of arguments in function call
[%nargout,%nargin] = argn(0)
// Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
// -----------------------------------------------------
// (c) 2000-2004 Theodor Storm <theodor@tstorm.se>
// http://www.tstorm.se
// -----------------------------------------------------
global("KIKS_GUI_HDL","KIKS_INT_LIMIT","KIKS_INT_CELL");
if %nargin<1 then
val = 4;
end;
// !! L.13: Matlab function findobj not yet converted, original calling sequence used
// L.13: Name conflict: function name changed from findobj to %findobj
h = findobj("Tag","limit_popup");
// !! L.14: Matlab function set not yet converted, original calling sequence used
// L.14: Name conflict: function name changed from set to %set
set(h,"String",KIKS_INT_CELL);
// !! L.15: Matlab function set not yet converted, original calling sequence used
// L.15: Name conflict: function name changed from set to %set
set(h,"Value",val);
endfunction
|
5ce5c6f518d2ff9450583dd0878fc40060c520de
|
4a1effb7ec08302914dbd9c5e560c61936c1bb99
|
/Project 2/Experiments/AdaBoost/results/AdaBoost.NC-C.led7digit-10-1tra/result5s0.tst
|
1d3cfa28d12ef3772327ec78cf31a9d343be2bf0
|
[] |
no_license
|
nickgreenquist/Intro_To_Intelligent_Systems
|
964cad20de7099b8e5808ddee199e3e3343cf7d5
|
7ad43577b3cbbc0b620740205a14c406d96a2517
|
refs/heads/master
| 2021-01-20T13:23:23.931062 | 2017-05-04T20:08:05 | 2017-05-04T20:08:05 | 90,484,366 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 535 |
tst
|
result5s0.tst
|
@relation led7digit
@attribute Led1 real[0.0,1.0]
@attribute Led2 real[0.0,1.0]
@attribute Led3 real[0.0,1.0]
@attribute Led4 real[0.0,1.0]
@attribute Led5 real[0.0,1.0]
@attribute Led6 real[0.0,1.0]
@attribute Led7 real[0.0,1.0]
@attribute number{0,1,2,3,4,5,6,7,8,9}
@inputs Led1,Led2,Led3,Led4,Led5,Led6,Led7
@outputs number
@data
1 1
2 1
3 1
3 1
3 1
5 1
0 0
1 1
3 1
4 1
7 1
0 0
4 1
0 1
1 1
4 1
5 1
7 1
9 1
9 1
5 1
6 1
2 1
3 1
5 1
5 1
6 1
9 1
0 0
4 1
5 1
6 1
0 0
1 1
2 1
6 1
7 1
7 1
8 0
8 1
9 1
2 1
7 1
9 1
9 1
3 1
4 1
6 1
8 1
9 1
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.