blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 6 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2 values | repo_name stringlengths 6 87 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 15 values | visit_date timestamp[us]date 2016-08-04 09:00:04 2023-09-05 17:18:33 | revision_date timestamp[us]date 1998-12-11 00:15:10 2023-09-02 05:42:40 | committer_date timestamp[us]date 2005-04-26 09:58:02 2023-09-02 05:42:40 | github_id int64 436k 586M ⌀ | star_events_count int64 0 12.3k | fork_events_count int64 0 6.3k | gha_license_id stringclasses 7 values | gha_event_created_at timestamp[us]date 2012-11-16 11:45:07 2023-09-14 20:45:37 ⌀ | gha_created_at timestamp[us]date 2010-03-22 23:34:58 2023-01-07 03:47:44 ⌀ | gha_language stringclasses 36 values | src_encoding stringclasses 17 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 5 10.4M | extension stringclasses 15 values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
25c05f913ce841805b090441ff80b2fb8d34737e | 449d555969bfd7befe906877abab098c6e63a0e8 | /555/CH5/EX5.8/8.sce | 839e031b7da50763f275824d2940fae2ac8f277a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 530 | sce | 8.sce | // Implementation of example 5.8
// Basic and Applied Thermodynamics by P.K.Nag
clc
clear
//temperature at certain instance 't', power to paddle wheel 'Wt'
t = -273; //degree C
//Let
u=0;
u0 = u - 0.718*t;
//hp = u + p*v; and u = 0.718(t+273) and pv=0.278(t+273) thus
t = 150; //degree C
hp = 1.005*(t+273); //kJ/kg
Wt = 0.1; //kJ/s or kW
//dm/dt = m dW/dt = Wt
//rate of flow of air out of tank 'm'
m = (1/hp)*Wt;//kg/s
m = m*3600; //kg/h
printf("Rate of flow of air out of tank = %.3f kg/h",m);
// end |
8b2e3c0b35a1ca0c2a338b6393ec66c3946e2fcd | 449d555969bfd7befe906877abab098c6e63a0e8 | /1133/CH8/EX8.45/Example8_45.sce | 538ed253a463dd0b82b1920b00f6447cf28efecb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Example8_45.sce | //Example 8.45
clc
disp("Johnson counter will produce a modulus of 2xn where n is the number of stages (i.e. flip-flops) in the counter. Therefore, Mod 10 requires 5 flip-flops and Mod 16 requires 8 flip-flops.")
|
a138d2df7238c4d5e355c1c524e7dde351641679 | 1db0a7f58e484c067efa384b541cecee64d190ab | /macros/convmtx.sci | c0aa89179ce1e8e55b33d564d6db27f0fce0dbfa | [] | no_license | sonusharma55/Signal-Toolbox | 3eff678d177633ee8aadca7fb9782b8bd7c2f1ce | 89bfeffefc89137fe3c266d3a3e746a749bbc1e9 | refs/heads/master | 2020-03-22T21:37:22.593805 | 2018-07-12T12:35:54 | 2018-07-12T12:35:54 | 140,701,211 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 939 | sci | convmtx.sci | //Convolution Matrix
//convmtx(h,n) returns the convolution matrix for vector h. If h is a
//column vector and X is a column vector of length n, then convmtx(h,n)*X
//gives the result of the convolution oof h and X.If R is a row vector and X//is a row vector of length N, then X*convmtx(R,N) gives the convolution of R and X.
//Example:
//Generate a simple convolution matrix.
//
// h = [%i 1 2 3];
// convmtx(h,7) //Convolution matrix
//
//Author
//Debdeep Dey
function t=convmtx(v,n);
n=double(n);
[mv,nv]=size(v);
v=v(:);
//put Toeplitz code inline
c = [v; zeros(n-1,1)];
r = zeros(n,1);
m = length(c);
x = [r(n:-1:2) ; c(:)];
cidx = (0:m-1)';
ridx = n:-1:1;
t = cidx(:,ones(n,1)) + ridx(ones(m,1),:); //Toeplitz subscripts
t(:) = x(t); //actual data
//t = single(t);
// end of toeplitz code
if mv < nv then
t = t.';
end
endfunction
|
a153a3f6d79a1926bba9acc15314c8aaf67d65fd | 449d555969bfd7befe906877abab098c6e63a0e8 | /3718/CH1/EX1.7/Ex1_7.sce | 9de3521e40bbd71b177ecebcd20c6ec94806c556 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 445 | sce | Ex1_7.sce | //Chapter 1: Structure and Bonding
//Problem: 7
clc;
//Declaration of Constants
m = 9.1 * 10 ** -31 // Mass of electron, kg
h = 6.626 * 10 ** -34 // Plank's constant, J.sec
pi = 3.141 // Pi
// Variable
delta_x = 1 * 10 ** -10 // Uncertainty in Velocity, m
// Solution
delta_v = h / (4 * pi * m * delta_x)
mprintf( "Uncertainty in position of electron >= :%.1e m/s",delta_v)
|
e897d237109ac5310f18e2ca6dedc881c14c617c | e82d1909ffc4f200b5f6d16cffb9868f3b695f2a | /Lista 5/Lista 5/retorn_P.sci | 386968deceed8cd2f8ca1289ce4c86ee70fc66f0 | [] | no_license | AugustoCam95/Computational-Linear-Algebra | eb14307dd3b45ccc79617efe74d1faca639c36c5 | 99b1a1f9499fbc4343bd5c878444e9e281952774 | refs/heads/master | 2020-03-30T22:26:23.790763 | 2018-10-05T03:34:06 | 2018-10-05T03:34:06 | 151,666,289 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 501 | sci | retorn_P.sci | //Função que retorna a matriz de Householder de um vetor v.
function [P] = retorn_P(x)
//início
norma = 0;
for i = 1 : length(x)
norma = norma + x(i).^2;
end
norma = norma^(1/2); //norma do vetor x
sinal = abs(x(1))/x(1); //sinal de x(i)
//disp(sinal)
v = x + (sinal * norma * eye(length(x), 1)); //construção de v
//disp(v)
P = eye(length(v), length(v)) - (2 / (v' * v)) * (v * v');
//fim
endfunction
|
163b20e9ab5967df3926e88fef1d831359d57361 | 01ecab2f6eeeff384acae2c4861aa9ad1b3f6861 | /sci2blif/sci2blif_added_blocks/div_by_n.sce | 187b984471e14f5745ad8427959d61b25a689676 | [] | no_license | jhasler/rasp30 | 9a7c2431d56c879a18b50c2d43e487d413ceccb0 | 3612de44eaa10babd7298d2e0a7cddf4a4b761f6 | refs/heads/master | 2023-05-25T08:21:31.003675 | 2023-05-11T16:19:59 | 2023-05-11T16:19:59 | 62,917,238 | 3 | 3 | null | null | null | null | UTF-8 | Scilab | false | false | 1,642 | sce | div_by_n.sce | //*************************** DIV_BY_N *********************************
if (blk_name.entries(bl) =='div_by_n') then
cd(vpr_path);
//**********************************
//Writing supporting list file
//**********************************
digifl='div_by_n'+ string(bl) +'.blif';
digi='div_by_n'+string(bl);
diginame='div_by_n'+string(bl);
prime_ipnet='inputs';
for s=2:(numofip+1)
prime_ipnet=prime_ipnet+' '+string(blk(bl,s));
end
prime_opnet='outputs'
for s=(2+numofip): (1+numofip+numofop)
prime_opnet=prime_opnet+' '+string(blk(bl,s));
end
fd_w2= mopen (digi+'_list.txt','wt')
mputl(strcat(["obj"," ",fname]) ,fd_w2);
mputl('numips '+string(length(scs_m.objs(blk(bl,1)).model.in)),fd_w2);
mputl('numops '+string(length(scs_m.objs(blk(bl,1)).model.out)),fd_w2);
mputl(prime_ipnet,fd_w2);
mputl(prime_opnet,fd_w2);
mclose(fd_w2);
unix_w(' perl /home/ubuntu/rasp30/vtr_release/vtr_flow/scripts/run_vtr_flow.pl /home/ubuntu/rasp30/sci2blif/benchmarks/verilog/div_by_n.v /home/ubuntu/rasp30/vtr_release/vpr_rasp3/rasp3_arch.xml -ending_stage scripts -no_mem');
unix_w('pwd ') ;
unix_w('cp temp/div_by_n.pre-vpr.blif ./'+digifl+' -rf');
//unix_w('cp /home/ubuntu/rasp30/vtr_release/vtr_flow/temp/div2.pre-vpr.blif /home/ubuntu/rasp30/vtr_release/vtr_flow/div2.blif -rf');
unix_w('pwd ') ;
//disp("Copied files");
unix_w('bash genblif.sh '+diginame) ;
unix_w('cp '+digifl+' '+path);
cd(path)
//unix_g('cp '+vpr_path+digifl+' . -rf');
fext=fname+'.blif'
unix_w('cat '+digifl+' >> '+fext);
end
|
b23c1d3ae5fa066154dd0095f2034c0019ee04d5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2120/CH4/EX4.17/ex4_17.sce | 2786311bcd54ba0876c030583ff92f1dc46b664f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 255 | sce | ex4_17.sce | // Exa 4.17
clc;
clear;
close;
// Given data
W = -1;// in kWh
W = W * 10^3 * 3600;// in J
del_U = -5000;// in kj
del_U = del_U * 10^3;// in J
Q = del_U + W;// in J
Q = Q * 10^-6;// in MJ
disp(Q,"Net heat transfer for the system in MJ is : ");
|
2e8046b85ad6b7e1a9ffdcb63f33b70b3c4e1145 | 449d555969bfd7befe906877abab098c6e63a0e8 | /60/CH3/EX3.2.a/ex_2_a.sce | 44d0623851b6aa995c4a37e8a42261c4053c0920 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 355 | sce | ex_2_a.sce | // // Example(3.2a)
//
//// finding roots using bisection method
//
//
// deff('[y]=f(x)','y=x^3-x-1')
// bisection(0,10,f);
//
//
////regula falsi method
//
//deff('[y]=f(x)','y=x^3-x-1')
//regularfalsi(0,10,f);
//
//
//
//newton rapson method
//
//x=(0+10)/2
//deff('[y]=f(x)','x^3-x-1')
//deff ('[y]=g(x)','y=2*x^2 -1')
//x=newton(x,f,g); |
0e0cb468e08b9304cd1ca5b6dfa4acadacc60317 | 9cb37875b74a713c93c09fa50ccc70ac0f71ecdb | /ManipulationPlanner/SCENARIO/ManipulationPr2WithNavigation.sce | 40a93f63b423c76602f2b19da517fa93a349ff0d | [] | no_license | jmainpri/move3d-assets | a5b621daaedaaf8784fed0da1e80d029c83f3983 | 939db49d17a14e052bb58324b70e6112803d3105 | refs/heads/master | 2021-01-16T17:48:56.669119 | 2016-02-16T14:04:09 | 2016-02-16T14:04:09 | 20,237,987 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 29,744 | sce | ManipulationPr2WithNavigation.sce | #************************************************************
# Scenario of grande_salle
#
# date : Thu Nov 24 17:03:01 2011
#************************************************************
p3d_sel_desc_name P3D_ENV grande_salle
p3d_sel_desc_name P3D_ROBOT MOVING_BOX
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT LOTR_TAPE
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT WALLE_TAPE
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT GREY_K7
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT GREY_TAPE
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.889000 -2.748000 1.192000 -0.878049 0.000000 83.556000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT HERAKLES_HUMAN1
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT HERAKLES_HUMAN2
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT HERAKLES_HUMAN3
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT LOWTABLE
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT LONG_TABLE1
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT LONG_TABLE2
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT SQUARE_TABLE
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT CHAIR1
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT CHAIR2
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT TRASHBIN
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.118000 -2.259000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT SHELF
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT HRP2TABLE
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.975610 -2.380488 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT SIMPLECHAIR
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT SMALLBOARD
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT LARGEBOARD
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT HRP2BARTable
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT IKEA_SHELF
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.121000 -2.662000 0.765000 -0.878049 0.000000 -26.496000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT SURPRISE_BOX
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT TOYCUBE_WOOD
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT PLACEMAT_RED
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.965000 -2.133000 0.757000 0.000000 0.000000 -14.580000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT PLACEMAT_BLUE
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.031000 -2.757000 1.175000 0.000000 0.000000 -116.964000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT PLACEMAT_GREEN
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.775000 -2.628000 0.761000 0.000000 0.000000 -115.092000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT PLACEMAT_PURPLE
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT ACCESSKIT
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT CUPHANDLE
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT SPACENAVBOX
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT PINK_TRASHBIN
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT PAPERDOG
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT BLUE_BOTTLE
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT ORANGE_BOTTLE
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.746000 -2.539000 0.754000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT YELLOW_BOTTLE
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.910000 -2.309000 0.765000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT RED_BOTTLE
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT COFFEEJAR
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT PR_2CYLINDER
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT HUMCYLINDER
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT VISBALL_INTERNAL
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT PR2_GRIPPER
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT PR2_GRIPPER_LEFT
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT VISBALL_MIGHTABILITY
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT SAHandRight2
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT PR2_ROBOT
p3d_set_robot_steering_method Multi-Localpath
p3d_set_robot_radius 1.000000
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.490065 -1.467662 0.000000 -0.000000 0.000000 -129.077553 0.252511 0.739577 33.315583 -19.882776 16.136835 29.340006 3.484296 -51.515845 143.874289 -20.248724 -148.019424 16.315432 25.562397 41.966874 49.340917 3.370732 -120.009161 138.648235 -73.779279 -169.028258 31.398100 31.398100 2.616095 1.262378 2.421759 4.965002 -2.132998 0.867000 -0.000005 0.000001 162.751124 5.561246 -2.153840 1.053659 0.000000 0.000000 -129.077553
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.490065 -1.467662 0.000000 -0.000000 0.000000 -129.077553 0.252511 0.739582 37.780454 -19.882776 16.004019 34.597873 3.484296 -43.961122 108.385529 -12.009625 -110.979229 16.315432 25.562397 41.966874 49.340917 3.370732 -120.009161 138.648235 -73.779279 -169.028258 31.398100 31.398100 2.616095 1.262378 2.421759 4.965002 -2.132999 0.767000 -0.000023 -0.000026 162.751129 5.561246 -2.153840 1.053659 0.000000 0.000000 -129.077553
p3d_set_robot_config configTraj_0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.299000 -2.390244 0.000000 -0.000000 0.000000 -0.000000 0.252511 -63.316234 39.219512 -19.882776 -11.104639 77.570369 2.489317 -51.349721 -116.885255 -11.181183 107.508853 17.126425 17.126425 41.966874 49.340917 3.370732 -120.009161 138.648235 -73.779279 -169.028258 31.398100 31.398100 2.616095 1.262378 2.421759 3.868657 -2.689999 0.316000 -2.767650 30.744000 90.033949 3.786805 -1.902439 1.053659 0.000000 0.000000 0.000000
p3d_set_robot_config configTraj_15 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.161795 -3.180281 0.000000 -0.000000 0.000000 46.475224 0.252511 1.105842 37.682694 -19.882776 10.142250 29.950761 0.408566 -31.997805 -78.953071 -14.344313 81.138444 16.315432 25.562397 41.966874 49.340917 3.370732 -120.009161 138.648235 -73.779279 -169.028258 31.398100 31.398100 2.616095 1.262378 2.421759 4.746000 -2.539000 0.754000 -0.000000 0.000000 -0.000000 4.144035 -2.490649 1.053659 -0.000000 -0.000000 46.475224
p3d_set_robot_config configTraj_14 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.161795 -3.180281 0.000000 -0.000000 0.000000 46.475224 0.252511 1.105842 37.682694 -19.882776 10.142250 29.950761 0.408566 -31.997805 -78.953071 -14.344313 81.138444 25.365071 25.562397 41.966874 49.340917 3.370732 -120.009161 138.648235 -73.779279 -169.028258 31.398100 31.398100 2.616095 1.262378 2.421759 4.746000 -2.539000 0.754000 -0.000000 0.000000 -0.000000 4.144035 -2.490649 1.053659 -0.000000 -0.000000 46.475224
p3d_set_robot_config configTraj_13 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.161795 -3.180281 0.000000 -0.000000 0.000000 46.475224 0.252511 -1.531299 41.140104 -19.882776 8.175422 48.199751 0.408566 -66.651914 -129.002855 -20.941297 133.728089 25.365071 25.562397 41.966874 49.340917 3.370732 -120.009161 138.648235 -73.779279 -169.028258 31.398100 31.398100 2.616095 1.262378 2.421759 4.712747 -2.632938 0.745646 -0.000000 0.000000 -0.000000 4.144035 -2.490649 1.053659 -0.000000 -0.000000 46.475224
p3d_set_robot_config configTraj_11 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.387145 -3.312640 0.000000 -0.000000 0.000000 64.744083 0.252511 -63.316234 39.219512 -19.882776 11.183299 17.121068 -0.046599 -26.506843 -174.154884 -54.720840 -8.105755 16.808806 16.808806 41.966874 49.340917 3.370732 -120.009161 138.648235 -73.779279 -169.028258 31.398100 31.398100 2.616095 1.262378 2.421759 4.746000 -2.539000 0.754000 -0.000000 0.000000 -0.000000 4.154097 -2.663336 1.053659 -0.000000 -0.000000 64.744083
p3d_set_robot_config configTraj_10 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.387145 -3.312640 0.000000 -0.000000 0.000000 64.744083 0.252511 -63.316234 39.219512 -19.882776 11.183299 17.121068 -0.046599 -26.506843 -174.154884 -54.720840 -8.105755 25.562397 16.808806 41.966874 49.340917 3.370732 -120.009161 138.648235 -73.779279 -169.028258 31.398100 31.398100 2.616095 1.262378 2.421759 4.746000 -2.539000 0.754000 -0.000000 0.000000 -0.000000 4.154097 -2.663336 1.053659 -0.000000 -0.000000 64.744083
p3d_set_robot_config configTraj_9 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.387145 -3.312640 0.000000 -0.000000 0.000000 64.744083 0.252511 -63.316234 39.219512 -19.882776 10.524263 25.457035 -0.046599 -58.970934 -174.671195 -78.795595 -6.227132 25.562397 25.562397 41.966874 49.340917 3.370732 -120.009161 138.648235 -73.779279 -169.028258 31.398100 31.398100 2.616095 1.262378 2.421759 4.736952 -2.609129 0.824711 -0.000000 0.000000 -0.000000 4.154097 -2.663336 1.053659 -0.000000 -0.000000 64.744083
p3d_set_robot_config configTraj_8 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.299000 -2.390244 0.000000 -0.000000 0.000000 -0.000000 0.252511 -63.316234 39.219512 -19.882776 -11.104639 77.570369 2.489317 -51.349721 -116.885255 -11.181183 107.508853 17.126425 17.126425 41.966874 49.340917 3.370732 -120.009161 138.648235 -73.779279 -169.028258 31.398100 31.398100 2.616095 1.262378 2.421759 3.868657 -2.689999 0.316000 -2.767650 30.744000 90.033949 3.786805 -1.902439 1.053659 -0.000000 0.000000 0.000000
p3d_set_robot_config configTraj_7 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.227448 -3.096822 0.000000 -0.000000 0.000000 24.526344 0.252511 -63.316234 39.219512 -19.882776 30.486186 3.430191 -1.384588 -56.973077 114.193090 -74.483266 -147.383917 12.369185 12.369185 41.966874 49.340917 3.370732 -120.009161 138.648235 -73.779279 -169.028258 31.398100 31.398100 2.616095 1.262378 2.421759 4.888998 -2.748001 1.192000 -0.878049 0.000000 83.556000 4.468745 -2.450538 1.053659 -0.000000 -0.000000 24.526344
p3d_set_robot_config configTraj_6 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.227448 -3.096822 0.000000 -0.000000 0.000000 24.526344 0.252511 -63.316234 39.219512 -19.882776 30.486186 3.430191 -1.384588 -56.973077 114.193090 -74.483266 -147.383917 21.883665 21.883665 41.966874 49.340917 3.370732 -120.009161 138.648235 -73.779279 -169.028258 31.398100 31.398100 2.616095 1.262378 2.421759 4.888998 -2.748001 1.192000 -0.878049 0.000000 83.556000 4.468745 -2.450538 1.053659 -0.000000 -0.000000 24.526344
p3d_set_robot_config configTraj_5 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.227448 -3.096822 0.000000 -0.000000 0.000000 24.526344 0.252511 -63.316234 39.219512 -19.882776 38.205524 6.980193 -1.384588 -68.703338 108.910644 -81.438104 -153.753696 21.883665 21.883665 41.966874 49.340917 3.370732 -120.009161 138.648235 -73.779279 -169.028258 31.398100 31.398100 2.616095 1.262378 2.421759 4.789630 -2.736779 1.191828 -0.878049 -0.000000 83.556000 4.468745 -2.450538 1.053659 -0.000000 -0.000000 24.526344
p3d_set_robot_config configTraj_4 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.299000 -2.390244 0.000000 -0.000000 0.000000 -0.000000 0.252511 -63.316234 39.219512 -19.882776 -11.104639 77.570369 2.489317 -51.349721 -116.885255 -11.181183 107.508853 17.126425 17.126425 41.966874 49.340917 3.370732 -120.009161 138.648235 -73.779279 -169.028258 31.398100 31.398100 2.616095 1.262378 2.421759 3.868657 -2.689999 0.316000 -2.767650 30.744000 90.033949 3.786805 -1.902439 1.053659 -0.000000 0.000000 0.000000
p3d_set_robot_config configTraj_3 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.227448 -3.096822 0.000000 -0.000000 0.000000 24.526344 0.252511 -63.316234 39.219512 -19.882776 30.486186 3.430191 -1.384588 -56.973077 114.193090 -74.483266 -147.383917 12.369185 12.369185 41.966874 49.340917 3.370732 -120.009161 138.648235 -73.779279 -169.028258 31.398100 31.398100 2.616095 1.262378 2.421759 4.889000 -2.748000 1.192000 -0.878049 0.000000 83.556000 4.468745 -2.450538 1.053659 -0.000000 -0.000000 24.526344
p3d_set_robot_config configTraj_2 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.227448 -3.096822 0.000000 -0.000000 0.000000 24.526344 0.252511 -63.316234 39.219512 -19.882776 30.486186 3.430191 -1.384588 -56.973077 114.193090 -74.483266 -147.383917 21.883665 12.369185 41.966874 49.340917 3.370732 -120.009161 138.648235 -73.779279 -169.028258 31.398100 31.398100 2.616095 1.262378 2.421759 4.889000 -2.748000 1.192000 -0.878049 0.000000 83.556000 4.468745 -2.450538 1.053659 -0.000000 -0.000000 24.526344
p3d_set_robot_config configTraj_1 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.227448 -3.096822 0.000000 -0.000000 0.000000 24.526344 0.252511 -63.316234 39.219512 -19.882776 38.205524 6.980193 -1.384588 -68.703338 108.910644 -81.438104 -153.753696 21.883665 21.883665 41.966874 49.340917 3.370732 -120.009161 138.648235 -73.779279 -169.028258 31.398100 31.398100 2.616095 1.262378 2.421759 4.789632 -2.736778 1.191828 -0.878049 0.000000 83.556000 4.468745 -2.450538 1.053659 -0.000000 -0.000000 24.526344
p3d_set_robot_config configTraj_12 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.387145 -3.312640 0.000000 -0.000000 0.000000 64.744083 0.252511 2.251090 29.164684 -19.882776 11.183299 17.121068 -0.046599 -26.506843 -174.154884 -54.720840 -8.105755 25.562397 25.562397 41.966874 49.340917 3.370732 -120.009161 138.648235 -73.779279 -169.028258 31.398100 31.398100 2.616095 1.262378 2.421759 4.760514 -2.426503 0.887929 135.236478 -5.191322 5.212721 4.154097 -2.663336 1.053659 -0.000000 -0.000000 64.744083
p3d_constraint p3d_lin_rel_dofs 1 15 1 14 2 1.000000 0.000000 0
p3d_constraint p3d_lin_rel_dofs 1 25 1 24 2 1.000000 0.000000 0
p3d_constraint p3d_pr2_arm_ik 7 6 7 9 10 11 12 13 1 32 0 1 8
p3d_set_cntrt_Tatt 2 0.332533 -0.943092 0.000000 -0.059084 0.939384 0.331226 -0.088579 -0.166895 0.083538 0.029455 0.996069 0.112271
p3d_set_cntrt_Tatt2 2 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 1.000000 0.000000 0.000000 -0.180000
p3d_constraint p3d_pr2_arm_ik 7 16 17 19 20 21 22 23 1 33 0 1 18
p3d_set_cntrt_Tatt 3 1.000000 -0.000000 0.000000 -0.180000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000
p3d_set_cntrt_Tatt2 3 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 1.000000 0.000000 0.000000 -0.180000
p3d_constraint p3d_head_object_track 2 3 4 1 32 0 0
p3d_set_cntrt_Tatt 4 -0.000000 -1.000000 0.000000 0.240187 1.000000 -0.000000 -0.000000 0.000000 -0.000000 0.000000 1.000000 -0.097105
p3d_constraint p3d_fix_jnts_relpos 1 32 1 13 0 0
p3d_set_cntrt_Tatt 5 0.332533 0.939384 0.083538 0.167047 -0.943091 0.331226 0.029455 -0.003749 -0.000000 -0.088579 0.996069 -0.126613
p3d_constraint p3d_fix_jnts_relpos 1 33 1 23 0 0
p3d_set_cntrt_Tatt 6 1.000000 -0.000000 0.000000 0.180001 0.000000 1.000000 0.000000 0.000002 -0.000000 -0.000000 1.000000 0.000000
p3d_set_object_base_and_arm_constraints 32 1 0 2 2 3
p3d_set_arm_data 2 3 32
p3d_set_arm_data 3 3 33
p3d_set_camera_pos 4.980822 -2.339809 1.087105 3.221076 2.478750 0.698750 0.000000 0.000000 1.000000 0.000000
|
7feb52d7d8891ebf586af6687a43348ba736ed29 | 449d555969bfd7befe906877abab098c6e63a0e8 | /746/DEPENDENCIES/9_08.sci | a6004efa48b5ad70b27d21368f0f23457d06aee5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 297 | sci | 9_08.sci | //Wing area(in ft^2):
A=1600;
//Aspect ratio:
ar=6.5;
//Groos weight of aircraft(in lbf):
W=150000;
//Coefficient of drag at zero lift :
Cd0=0.0182;
//Sonic speed at sea level(in mph):
c=759;
//Density of air(in slug/ft^3):
p=0.00238;
//Srall speed at sea level(in mph):
Vssl=175;
|
e47e1109f5634a6cd5d4e8a512b1fb4ed2143f0e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1364/CH12/EX12.10.3/12_10_3.sce | 0381bb50453f6dce10f48ed1401b29602d4295b2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 191 | sce | 12_10_3.sce | clc
//initialisation of variables
r= 1.4
T= 15 //C
M= 0.788
//CALCULATIONS
T0= (T+273)*(1+((r-1)*M^2/2))
P= (T0-T-273)*100/T
//RESULTS
printf ('percentage rise = %.f per cent',P+2)
|
3a44a00999407b3fdf74f2ca0eee794ca730e6b5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1226/CH21/EX21.2/EX21_2.sce | 1eb5b6758c7f12508b9d540a0dda056fdb00a26d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,420 | sce | EX21_2.sce | clc;funcprot(0);//EXAMPLE 21.2
// Initialisation of Variables
t1=288;........//Temperature of air entering the turbine in K
t3=883;..............//Temperature before expansion in turbine in K
etac=0.8;....//Efficiency of compressor
etat=0.82;.....//Efficiency of turbine
rp=6;...........//Pressure ratio
ma=16;...........//Mass of air in kg/s
gac=1.4;........//Ratio of specific heats for compression process
gae=1.333;............//Ratio of specific heats for expansion process
cpc=1.005;.............//Specific heat at constant pressure in kJ/kgK during compression process
cpe=1.11;.............//Specific heat at constant pressure in kJ/kgK during expansion process
C=41800;.............//Calorific value of fuel in kJ/kg
//Calculations
t2=t1*((rp)^((gac-1)/gac));...............//Ideal temperature of air after compression in K
t21=((t2-t1)/etac)+t1;..............//Actual temperature of air after compression in K
t4=t3/((rp)^((gae-1)/gae));............//Ideal temperature after expansion in turbine in K
t41=t3-(etat*(t3-t4));.................//Actual temperature after expansion in turbine in K
wt=cpe*(t3-t41);........//Work done by turbine in kJ/kg of air
wc=(1*cpc*(t21-t1));.................//Work done by compression in kJ/kg of air
wnet=wt-wc;..........//Net work done in kJ/kg
P=wnet*ma;.................//Power developed in kW/kg of air
disp(P,"Power developed in kW/kg of air:")
|
e1b76f44d3096a35ad0e57b5a229a4780efa19e1 | 01ecab2f6eeeff384acae2c4861aa9ad1b3f6861 | /sci2blif/sci2blif_added_blocks/vmmwta.sce | 7a6081c83de1f174e7e8566f9c6e46fc3fdb0008 | [] | no_license | jhasler/rasp30 | 9a7c2431d56c879a18b50c2d43e487d413ceccb0 | 3612de44eaa10babd7298d2e0a7cddf4a4b761f6 | refs/heads/master | 2023-05-25T08:21:31.003675 | 2023-05-11T16:19:59 | 2023-05-11T16:19:59 | 62,917,238 | 3 | 3 | null | null | null | null | UTF-8 | Scilab | false | false | 2,785 | sce | vmmwta.sce | //************************* VMM_WTA ************************************
if (blk_name.entries(bl) =='vmmwta') then
addvmm = %t;
cap_info = cap_info2(cap_info,pass_num,'vmm_out1', bl)
cap_info = cap_info2(cap_info,pass_num,'vmm_out2', bl)
cap_info = cap_info2(cap_info,pass_num,'vmm_out3', bl)
cap_info = cap_info2(cap_info,pass_num,'vmm_out4', bl)
cap_info = cap_info2(cap_info,pass_num,'nfet_d', bl)
b_elements = elements_add(b_elements,1,0, 0, 6, 0, 0, 0, 0,1)
k =scs_m.objs(blk_objs(bl)).model.opar(1);
tar1=[];
tar2=[];
for i=1:size(k,1)
for j=1:size(k,2)
if (j == size(k,2)) & (i == size(k,1)) then tar1=tar1+'%1.2e';
else tar1=tar1+'%1.2e,';
end
end
tar2=tar2+'k('+string(i)+',:) ';
end
tar2= evstr(tar2);
mputl("# VMM + WTA",fd_w);
mputl(".subckt vmm4x4 in[0]=net"+string(blk(blk_objs(bl),2))+"_"+string(1)+ " in[1]=net"+string(blk(blk_objs(bl),2))+"_"+string(2)+ " in[2]=net"+string(blk(blk_objs(bl),2))+"_"+string(3)+ " in[3]=net"+string(blk(blk_objs(bl),2))+"_"+string(4)+ " out[0]=vmm_out1 out[1]=vmm_out2 out[2]=vmm_out3 out[3]=vmm_out4 #vmm4x4_target =" +string(sprintf(tar1,tar2)),fd_w)
mputl(" ",fd_w);
mputl(".subckt wta_new in[0]=vmm_out1 in[1]=nfet_d in[2]=unconn out[0]=net"+ string(blk(blk_objs(bl),2+numofip))+"_" + string(1)+" #wta_new_ls =0&wta_new_buf_bias =" +string(sprintf('%1.1e',scs_m.objs(blk_objs(bl)).model.rpar(6)))+"&wta_new_wta_bias =" +string(sprintf('%1.2e',scs_m.objs(blk_objs(bl)).model.rpar(7))),fd_w)
mputl(" ",fd_w);
mputl(".subckt wta_new in[0]=vmm_out2 in[1]=nfet_d in[2]=unconn out[0]=net"+ string(blk(blk_objs(bl),2+numofip))+"_" + string(2)+" #wta_new_ls =0&wta_new_buf_bias =" +string(sprintf('%1.1e',scs_m.objs(blk_objs(bl)).model.rpar(6)))+"&wta_new_wta_bias =" +string(sprintf('%1.2e',scs_m.objs(blk_objs(bl)).model.rpar(8))),fd_w)
mputl(" ",fd_w);
mputl(".subckt wta_new in[0]=vmm_out3 in[1]=nfet_d in[2]=unconn out[0]=net"+ string(blk(blk_objs(bl),2+numofip))+"_" + string(3)+" #wta_new_ls =0&wta_new_buf_bias =" +string(sprintf('%1.1e',scs_m.objs(blk_objs(bl)).model.rpar(6)))+"&wta_new_wta_bias =" +string(sprintf('%1.2e',scs_m.objs(blk_objs(bl)).model.rpar(9))),fd_w)
mputl(" ",fd_w);
mputl(".subckt wta_new in[0]=vmm_out4 in[1]=nfet_d in[2]=unconn out[0]=net"+ string(blk(blk_objs(bl),2+numofip))+"_" + string(4)+" #wta_new_ls =0&wta_new_buf_bias =" +string(sprintf('%1.1e',scs_m.objs(blk_objs(bl)).model.rpar(6)))+"&wta_new_wta_bias =" +string(sprintf('%1.2e',scs_m.objs(blk_objs(bl)).model.rpar(10))),fd_w)
mputl(" ",fd_w);
mputl(".subckt nfet in[0]=net"+string(blk(blk_objs(bl),3))+"_"+string(1)+ " in[1]=unconn out=nfet_d",fd_w);
mputl(" ",fd_w);
end
|
c80efa97fb6ffb4794bbc5aa9438de2daed6bb34 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1748/CH2/EX2.14/Exa2_14.sce | f64dcbac8742ef934cdd41d251c0ddae450ea075 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 429 | sce | Exa2_14.sce | //Exa 2.14
clc;
clear;
close;
//Given data :
P=4;//no. of poles
f=50;//in Hz
R2=0.024;//in ohm
X2=0.6;//in ohm
disp("Since the torque under running condition is maximum at that value of slip which makes rotor reactance per phase equal to the rotor resistance per phase.")
Sm=R2/X2;//slip corresponding to max torque
Ns=120*f/P;//in rpm
N=Ns*(1-Sm);//in rpm
disp(N,"Speed corresponding to maximum torque in rpm : "); |
7821bfe5491108ac22d87aa1c83352213512c7c2 | 1218e33055a066314bb364402221c6449cb2b1f9 | /Ipopt-3.12.7/ThirdParty/Mumps/MUMPS/SCILAB/examples/sparseRHS_example.sce | ae831babb2cc1925d3e4faecc8846136bafe72fd | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain"
] | permissive | yueyangdk/CarND-MPC-Project | 1086c912bf8313d34dc47f2020483c7abd1729e4 | a4edcf25a7312ec3a79c04db6cfe66df6f7b1479 | refs/heads/master | 2020-04-06T19:42:43.737116 | 2018-11-15T17:54:14 | 2018-11-15T17:54:14 | 157,746,640 | 1 | 0 | MIT | 2018-11-15T17:16:39 | 2018-11-15T17:16:38 | null | UTF-8 | Scilab | false | false | 1,026 | sce | sparseRHS_example.sce | //A simple demo for the MUMPS interface, with the use of a sparse Right Hand Side
//to run it, You just have to execute the instruction within Scilab
// exec sparse_example.sce;
//*********************** MATRIX INITIALISATION ***********************//
// This matrix has to be a SciSparse, otherwise it won't work.
exec('ex.sci');
//voir pour les speyes
mat=sparse(a);
// Right Hand side setting
exec('ex_rhs.sci');
RHS = sparse(rhs);
//****************** Initialisation of the Scilab MUMPS structure ******************//
timer();
[id]=initmumps();
//Here Job=-1, the next call will only initialise the C and Fortran structure
[id]=dmumps(id);
id.RHS=RHS;
//******************** CALL TO MUMPS FOR RESOLUTION ********************//
job=6;
id.JOB=job;
[id]=dmumps(id,mat);
// verification of the solution
solution=id.SOL;
norm_res=norm(mat*solution-RHS,'inf');
write(%io(2),norm_res);
//****************** DESTRUCTION OF THE MUMPS INSTANCE ******************//
job=-2;
id.JOB=job;
[id]=dmumps(id);
t=timer()
|
7ffbfc9cc7374bc94b315ed90157c6351368961b | 449d555969bfd7befe906877abab098c6e63a0e8 | /24/CH3/EX3.6/Example3_6.sce | e08889b9edba0e743c69ce1709be8ab34e012cfe | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 252 | sce | Example3_6.sce | exec("degree_rad.sci",-1)
//Given that
a = [3,-4,0]
b = [-2,0,3]
//Sample Problem 3-6
printf("**Sample Problem 3-6**\n")
angle_ab = acos(-norm(a*b')/(norm(a) * norm(b)))
printf("The angle between given vectors is %f degress", rtod(angle_ab)) |
30d721e153798395909b43092ae1a2ec9d9d98ca | 449d555969bfd7befe906877abab098c6e63a0e8 | /281/CH6/EX6.1/example6_1.sce | d02546b8dbeae45c71ec7a3cd181f6be4b937e39 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 774 | sce | example6_1.sce | disp('chapter 6 ex6.1')
disp('given')
disp("voltage souurce to be designed")
disp("constant output voltage=6V")
Vo=6
disp("minimum load resistance=150")
disp("available supply voltage=+/-12V")
Vcc=12
Rl=150
disp("from the zener diode specification Vz=6.3")
Vz=6.3
disp("recommended current for for zener is 20mA")
Iz=.02
disp("R1=(Vcc-Vz)/Iz")
R1=(Vcc-Vz)/Iz
disp('ohms',R1)
disp("Ilmax=Vz/Rl")
Ilmax=Vz/Rl
disp('amperes',Ilmax)
disp("Transistor specification is")
disp("npn Ie(max)>42mA Vcemax>Vcc=12V")
disp("Vrl=6V")
disp("PD=Iemax(Vcc-Vrl)")
Iemax=0.042
Vrl=6
Pd=Iemax*(Vcc-Vrl)
disp('watts',Pd)
disp("hfe(min)=20")
disp("Iomax=Ilmax/hfe(min)")
hfe=20
Iomax=Ilmax/hfe
disp('amperes',Iomax)
disp("use opamp with a compesating capacitor") |
50a1d6d5acab94403a173668e9c0dd3c10dc3afb | 449d555969bfd7befe906877abab098c6e63a0e8 | /1427/CH5/EX5.37/5_37.sce | 7e19971cfa625b2af68f0aa1f5b2a40205046ce3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 558 | sce | 5_37.sce | //ques-5.37
//Calculating transport number of Copper and sulphate ions
clc
p=2.84;//percentage strength of CuSO4
m=54.7;//mass of cathode solution (in g)
x=0.409;//weight of Cu in cathode solution after electrolysis (in g)
y=(p/100)*m*((63.5/2)/(159.6/2));//weight of Cu in cathode solution before electrolysis (in g)
z=0.804;//increase in weight of cathode (in g)
t2=(y-x)/z;//transport number of sulphate ions
t1=1-t2;//transport number of copper ions
printf("Transport number of copper and sulphate ions are %.3f and %.3f respetively.",t1,t2);
|
2278e66acf570081d06cbd15f7c6056f67abb0cd | 931df7de6dffa2b03ac9771d79e06d88c24ab4ff | /Overwatch tester.sce | dddf9810892ebeb13436f4c3be604179f7cebbce | [] | no_license | MBHuman/Scenarios | be1a722825b3b960014b07cda2f12fa4f75c7fc8 | 1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137 | refs/heads/master | 2023-01-14T02:10:25.103083 | 2020-11-21T16:47:14 | 2020-11-21T16:47:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 141,755 | sce | Overwatch tester.sce | Name=Overwatch tester
PlayerCharacters=Winston;Hanzo;McCoy;Racer;roadhog;Rocket Flyer;Reaper;Junkrat;Marine;Mei
BotCharacters=winston bot.bot;Roadhog bot.bot;Racer Bot.bot;random bot.rot;Reaper bot.bot;mcree.bot;hanzo bot.bot;junkrat bot.bot
IsChallenge=false
Timelimit=60.0
PlayerProfile=
AddedBots=
PlayerMaxLives=0
BotMaxLives=
PlayerTeam=0
BotTeams=
MapName=
MapScale=3.8125
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=false
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=1000.0
ScorePerDamage=1.0
ScorePerKill=0.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=false
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=#deathmatch #overwatch
WeaponHeroTag=Many overwatch heros done to replaca as much as possible
DifficultyTag=2
AuthorsTag=Pataroro10296
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=true
BlockFCT=false
Description=Plz give back any feedback, either on suggestions or characters you want in the scenarios updates i'll be making.
GameVersion=1.0.6.2
ScorePerDistance=0.0
[Aim Profile]
Name=Medium Skill
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
[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
[Aim Profile]
Name=Ignore Spread
MinReactionTime=0.1
MaxReactionTime=0.12
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=10.0
FlickError=15.0
TrackSpeed=10.0
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=1.0
MaxRecenterTime=1.0
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=20.0
VerticalAimOffset=0.0
MaxTolerableSpread=90.0
MinTolerableSpread=90.0
TolerableSpreadDist=100000.0
MaxSpreadDistFactor=1.0
[Bot Profile]
Name=winston bot
DodgeProfileNames=Circle Strafe
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Medium Skill;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=Winston
SeeThroughWalls=false
[Bot Profile]
Name=Roadhog bot
DodgeProfileNames=Short Strafes
DodgeProfileWeights=0.1
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=100.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Ignore Spread;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=roadhog
SeeThroughWalls=false
[Bot Profile]
Name=Racer Bot
DodgeProfileNames=Short Strafes Close
DodgeProfileWeights=0.6
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Medium Skill;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=Racer
SeeThroughWalls=false
[Bot Profile]
Name=McCoy Bot
DodgeProfileNames=Long Strafes Jumping;Short Strafes Jumping;Mimic;Circle Strafe
DodgeProfileWeights=3.0;2.0;1.0;2.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=0.1
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Medium Skill;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=McCoy
SeeThroughWalls=false
[Bot Profile]
Name=Rocket Flyer Bot
DodgeProfileNames=Long Strafes Jumping;Short Strafes Jumping
DodgeProfileWeights=2.0;1.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=0.1
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Medium Skill;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=Rocket Flyer
SeeThroughWalls=false
[Bot Profile]
Name=Sergeant Bot
DodgeProfileNames=Long Strafes Jumping;Short Strafes Jumping;Mimic;Circle Strafe
DodgeProfileWeights=3.0;2.0;1.0;2.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=0.1
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=Sergeant 87
SeeThroughWalls=false
[Bot Profile]
Name=Shinji Bot
DodgeProfileNames=Long Strafes Close;Short Strafes Close
DodgeProfileWeights=2.0;1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=Shinji
SeeThroughWalls=false
[Bot Profile]
Name=Reaper bot
DodgeProfileNames=Circle Strafe;Short Strafes Close;Long Strafes Jumping
DodgeProfileWeights=1.0;1.0;1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Ignore Spread;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=Reaper
SeeThroughWalls=false
[Bot Profile]
Name=mcree
DodgeProfileNames=Long Strafes Jumping;Short Strafes Jumping;Mimic;Circle Strafe
DodgeProfileWeights=3.0;2.0;1.0;2.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=0.1
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Medium Skill;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=McCoy
SeeThroughWalls=false
[Bot Profile]
Name=hanzo bot
DodgeProfileNames=Long Strafes Jumping
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Medium Skill;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=Hanzo
SeeThroughWalls=false
[Bot Profile]
Name=junkrat bot
DodgeProfileNames=cs peek
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=Junkrat
SeeThroughWalls=false
[Bot Rotation Profile]
Name=random bot
ProfileNames=McCoy Bot;Rocket Flyer Bot;Sergeant Bot;Shinji Bot;Racer Bot
ProfileWeights=1.0;1.0;1.0;1.0;1.0
Randomized=true
[Character Profile]
Name=Winston
MaxHealth=500.0
WeaponProfileNames=Winston lazer;;;;;;;
MinRespawnDelay=5.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.75
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=1000.0
MaxCrouchSpeed=500.0
Acceleration=16000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=1600.0
Gravity=4.0
AirControl=0.5
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=0.212 Y=0.212 Z=0.212
EnemyHeadColor=X=0.000 Y=0.000 Z=0.000
TeamBodyColor=X=0.212 Y=0.212 Z=0.212
TeamHeadColor=X=0.000 Y=0.000 Z=0.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=350.0
MainBBRadius=80.0
MainBBHasHead=true
MainBBHeadRadius=30.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.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=heal 600.abilmov;winston leap.abilmov;Melee.abilmelee;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=3.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
[Character Profile]
Name=Hanzo
MaxHealth=200.0
WeaponProfileNames=Hanzo bow main;;;;;;;
MinRespawnDelay=5.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=1200.0
MaxCrouchSpeed=500.0
Acceleration=16000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.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=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=200.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=200.0
ProjBBRadius=55.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=Hanzo Bomb Abil.abilwep;winston leap.abilmov;hanzo burst.abilwep;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=2.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=5.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=2048.0
VerticalSpawnOffset=0.0
[Character Profile]
Name=McCoy
MaxHealth=200.0
WeaponProfileNames=Six Shooter;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=30.0
CrouchHeightModifier=0.69
CrouchAnimationSpeed=5.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=1.0
MovementType=Base
MaxSpeed=1100.0
MaxCrouchSpeed=270.0
Acceleration=48888.890625
AirAcceleration=16000.0
Friction=100.0
BrakingFrictionFactor=0.0
JumpVelocity=270.0
Gravity=1.0
AirControl=0.03
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=true
EnemyBodyColor=X=0.778 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=0.265 Z=0.000
TeamBodyColor=X=0.000 Y=0.000 Z=0.787
TeamHeadColor=X=1.000 Y=0.265 Z=0.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=150.0
MainBBRadius=40.0
MainBBHasHead=true
MainBBHeadRadius=40.0
MainBBHeadOffset=-12.5
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=120.0
ProjBBRadius=20.0
ProjBBHasHead=true
ProjBBHeadRadius=12.5
ProjBBHeadOffset=-12.5
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.5
JetpackFullFuelTime=1000.0
JetpackFuelIncPerSec=100.0
JetpackFuelRegensInAir=true
JetpackThrust=6000.0
JetpackMaxZVelocity=600.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=Rush.abilmov;Stun Gren.abilwep;Melee.abilmelee;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.45
BackSpeedMult=0.9
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
[Character Profile]
Name=Racer
MaxHealth=150.0
WeaponProfileNames=Machine Pistols;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=30.0
CrouchHeightModifier=0.69
CrouchAnimationSpeed=5.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=1.0
MovementType=Base
MaxSpeed=1400.0
MaxCrouchSpeed=270.0
Acceleration=48888.890625
AirAcceleration=16000.0
Friction=100.0
BrakingFrictionFactor=0.0
JumpVelocity=270.0
Gravity=1.0
AirControl=0.03
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=true
EnemyBodyColor=X=0.774 Y=0.000 Z=0.000
EnemyHeadColor=X=0.691 Y=0.514 Z=0.294
TeamBodyColor=X=0.000 Y=0.000 Z=0.774
TeamHeadColor=X=0.691 Y=0.514 Z=0.294
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=1600.0
MainBBType=Cylindrical
MainBBHeight=130.0
MainBBRadius=30.0
MainBBHasHead=true
MainBBHeadRadius=35.0
MainBBHeadOffset=-12.5
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=105.0
ProjBBRadius=20.0
ProjBBHasHead=true
ProjBBHeadRadius=12.5
ProjBBHeadOffset=-12.5
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.5
JetpackFullFuelTime=1000.0
JetpackFuelIncPerSec=100.0
JetpackFuelRegensInAir=true
JetpackThrust=6000.0
JetpackMaxZVelocity=600.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=Unwind.abilrecall;Phase.abilmov;Melee.abilmelee;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=0.9
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=7.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
[Character Profile]
Name=roadhog
MaxHealth=600.0
WeaponProfileNames=roadhog shotgun;;;;;;;
MinRespawnDelay=5.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=750.0
MaxCrouchSpeed=500.0
Acceleration=16000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.888 Z=0.000
EnemyHeadColor=X=1.000 Y=0.722 Z=0.004
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=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=250.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.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=heal 300.abilmov;Anchor.abilmov;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
[Character Profile]
Name=Rocket Flyer
MaxHealth=200.0
WeaponProfileNames=Rocket Launcher;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=30.0
CrouchHeightModifier=0.69
CrouchAnimationSpeed=5.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=1.0
MovementType=Base
MaxSpeed=488.888885
MaxCrouchSpeed=270.0
Acceleration=48888.890625
AirAcceleration=16000.0
Friction=100.0
BrakingFrictionFactor=0.0
JumpVelocity=270.0
Gravity=1.0
AirControl=0.03
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=true
EnemyBodyColor=X=0.771 Y=0.000 Z=0.000
EnemyHeadColor=X=0.000 Y=0.000 Z=0.787
TeamBodyColor=X=0.000 Y=0.000 Z=0.784
TeamHeadColor=X=0.000 Y=0.000 Z=0.787
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=180.0
MainBBRadius=90.0
MainBBHasHead=true
MainBBHeadRadius=91.0
MainBBHeadOffset=-12.5
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=115.555557
ProjBBRadius=20.0
ProjBBHasHead=true
ProjBBHeadRadius=12.5
ProjBBHeadOffset=-12.5
ProjBBHide=true
HasJetpack=true
JetpackActivationDelay=0.2
JetpackFullFuelTime=2.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=true
JetpackThrust=1600.0
JetpackMaxZVelocity=270.0
JetpackAirControlWithThrust=0.06
AbilityProfileNames=Gravity Boost.abilmov;Boop Rocket.abilwep;Melee.abilmelee;
HideWeapon=false
AerialFriction=0.3
StrafeSpeedMult=1.0
BackSpeedMult=0.9
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
[Character Profile]
Name=Reaper
MaxHealth=250.0
WeaponProfileNames=Reaper shotguns;;;;;;;
MinRespawnDelay=5.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=1000.0
MaxCrouchSpeed=500.0
Acceleration=16000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.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=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=160.0
MainBBRadius=60.0
MainBBHasHead=true
MainBBHeadRadius=60.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.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=teleport.abilmov;Melee.abilmelee;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=250.0
HealthRegenPerSec=15.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=2048.0
VerticalSpawnOffset=0.0
[Character Profile]
Name=Junkrat
MaxHealth=200.0
WeaponProfileNames=gernade launcher;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=16.0
MovementType=Base
MaxSpeed=1150.0
MaxCrouchSpeed=500.0
Acceleration=16000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=1200.0
Gravity=3.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=0.546 Y=0.546 Z=0.546
EnemyHeadColor=X=1.000 Y=0.888 Z=0.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=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cuboid
MainBBHeight=170.0
MainBBRadius=60.0
MainBBHasHead=true
MainBBHeadRadius=50.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.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=bounce mines.abilmov;trap.abilwep;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=0.9
BackSpeedMult=0.9
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=30.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=2048.0
VerticalSpawnOffset=0.0
[Character Profile]
Name=Marine
MaxHealth=75.0
WeaponProfileNames=SCAR;trap;;;;;;
MinRespawnDelay=4.0
MaxRespawnDelay=15.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=1200.0
MaxCrouchSpeed=500.0
Acceleration=16000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.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=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=230.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.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=Melee.abilmelee;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.2
HealthRegainedonkill=0.0
HealthRegenPerSec=2.0
HealthRegenDelay=5.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
[Character Profile]
Name=Mei
MaxHealth=250.0
WeaponProfileNames=Mei left click;;;;;;;
MinRespawnDelay=5.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=1000.0
MaxCrouchSpeed=500.0
Acceleration=16000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=750.0
Gravity=3.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=0.000 Y=0.514 Z=0.807
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=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=175.0
MainBBRadius=80.0
MainBBHasHead=true
MainBBHeadRadius=79.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.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=Icicle.abilwep;Ice bubble.abilmov;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.2
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
[Character Profile]
Name=Sergeant 87
MaxHealth=200.0
WeaponProfileNames=Rifle;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=30.0
CrouchHeightModifier=0.69
CrouchAnimationSpeed=5.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=1.0
MovementType=Base
MaxSpeed=1200.0
MaxCrouchSpeed=270.0
Acceleration=48888.890625
AirAcceleration=16000.0
Friction=100.0
BrakingFrictionFactor=0.0
JumpVelocity=270.0
Gravity=1.0
AirControl=0.03
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=true
EnemyBodyColor=X=0.774 Y=0.000 Z=0.000
EnemyHeadColor=X=0.149 Y=0.542 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=0.771
TeamHeadColor=X=0.149 Y=0.542 Z=1.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=150.0
MainBBRadius=75.0
MainBBHasHead=true
MainBBHeadRadius=76.0
MainBBHeadOffset=-12.5
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=128.888885
ProjBBRadius=20.0
ProjBBHasHead=true
ProjBBHeadRadius=12.5
ProjBBHeadOffset=-12.5
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.5
JetpackFullFuelTime=1000.0
JetpackFuelIncPerSec=100.0
JetpackFuelRegensInAir=true
JetpackThrust=6000.0
JetpackMaxZVelocity=600.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=Run.abilsprint;Offhand Rocket.abilwep;Melee.abilmelee;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=0.9
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=15.0
HealthRegenDelay=2.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
[Character Profile]
Name=Shinji
MaxHealth=200.0
WeaponProfileNames=Shinji Stars;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=30.0
CrouchHeightModifier=0.69
CrouchAnimationSpeed=5.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=1.0
MovementType=Base
MaxSpeed=1350.0
MaxCrouchSpeed=270.0
Acceleration=48888.890625
AirAcceleration=16000.0
Friction=100.0
BrakingFrictionFactor=0.0
JumpVelocity=270.0
Gravity=1.0
AirControl=0.03
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=true
EnemyBodyColor=X=0.774 Y=0.000 Z=0.000
EnemyHeadColor=X=0.163 Y=0.167 Z=0.166
TeamBodyColor=X=0.000 Y=0.000 Z=0.771
TeamHeadColor=X=0.163 Y=0.167 Z=0.166
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=1
AirJumpVelocity=450.0
MainBBType=Cylindrical
MainBBHeight=150.0
MainBBRadius=50.0
MainBBHasHead=true
MainBBHeadRadius=40.0
MainBBHeadOffset=-12.5
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=101.0
ProjBBRadius=20.0
ProjBBHasHead=true
ProjBBHeadRadius=12.5
ProjBBHeadOffset=-12.5
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.5
JetpackFullFuelTime=1000.0
JetpackFuelIncPerSec=100.0
JetpackFuelRegensInAir=true
JetpackThrust=6000.0
JetpackMaxZVelocity=600.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=Dash.abilmov;Triple Star.abilwep;Melee.abilmelee;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=0.9
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
[Dodge Profile]
Name=Circle Strafe
MaxTargetDistance=2500.0
MinTargetDistance=750.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.5
MaxLRTimeChange=1.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=50.0
DamageReactionResetTimer=0.5
JumpFrequency=0.2
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Oppose
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Dodge Profile]
Name=Short Strafes
MaxTargetDistance=2500.0
MinTargetDistance=750.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.2
MaxLRTimeChange=0.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=50.0
DamageReactionResetTimer=0.5
JumpFrequency=0.2
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Dodge Profile]
Name=Short Strafes Close
MaxTargetDistance=500.0
MinTargetDistance=100.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.2
MaxLRTimeChange=0.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.5
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.1
MaxJumpTime=0.3
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Dodge Profile]
Name=Long Strafes Jumping
MaxTargetDistance=1245.901611
MinTargetDistance=373.770477
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.5
MaxLRTimeChange=1.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.65
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Dodge Profile]
Name=Short Strafes Jumping
MaxTargetDistance=1245.901611
MinTargetDistance=373.770477
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.2
MaxLRTimeChange=0.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.65
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.5
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Dodge Profile]
Name=Mimic
MaxTargetDistance=1245.901611
MinTargetDistance=373.770477
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.2
MaxLRTimeChange=0.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.5
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Mimic
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Dodge Profile]
Name=Long Strafes Close
MaxTargetDistance=500.0
MinTargetDistance=100.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.5
MaxLRTimeChange=1.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.5
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.1
MaxJumpTime=0.3
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Dodge Profile]
Name=cs peek
MaxTargetDistance=10000.0
MinTargetDistance=0.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.125
MaxLRTimeChange=0.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.01
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.25
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=1.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.0
BlockedMovementReactionMax=0.125
[Weapon Profile]
Name=Winston lazer
Type=Projectile
ShotsPerClick=3
DamagePerShot=3.0
KnockbackFactor=0.0
TimeBetweenShots=0.02
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=5000.000 Y=100.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=0.3
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=false
HeadshotMultiplier=1.0
MagazineMax=300
AmmoPerShot=1
ReloadTimeFromEmpty=1.5
ReloadTimeFromPartial=1.5
DamageFalloffStartDistance=9.0
DamageFalloffStopDistance=80.0
DamageAtMaxRange=5.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Plasma
VisualLifetime=0.1
WallParticleEffect=None
HitParticleEffect=Blood
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=10000.0
ProjectileEnemyHitRadius=2.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=0
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=300.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=Sparks
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.2
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=103.0
ADSFOVScale=Clamped Horizontal
ADSAllowUserOverrideFOV=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=100.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,5.0
SpreadSCA=1.0,1.0,-1.0,5.0
SpreadMSA=1.0,1.0,-1.0,5.0
SpreadMCA=1.0,1.0,-1.0,5.0
SpreadSSH=1.0,1.0,-1.0,5.0
SpreadSCH=1.0,1.0,-1.0,5.0
SpreadMSH=1.0,1.0,-1.0,5.0
SpreadMCH=1.0,1.0,-1.0,5.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=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=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=true
PBS0=0.0,0.1
PBS1=0.0,0.2
PBS2=0.0,0.0
[Weapon Profile]
Name=Hanzo bow main
Type=Hitscan
ShotsPerClick=1
DamagePerShot=125.0
KnockbackFactor=4.0
TimeBetweenShots=0.5
Pierces=false
Category=Charge
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=29.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=100.0
ChargeTimeToCap=0.7
ChargeMoveSpeedModifier=0.7
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=3.0
MagazineMax=0
AmmoPerShot=0
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=None
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=true
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.0
RecoilNegatable=false
DecalType=0
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=300.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.2
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=1
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=103.0
ADSFOVScale=Clamped Horizontal
ADSAllowUserOverrideFOV=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=100.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,5.0
SpreadSCA=1.0,1.0,-1.0,5.0
SpreadMSA=1.0,1.0,-1.0,5.0
SpreadMCA=1.0,1.0,-1.0,5.0
SpreadSSH=1.0,1.0,-1.0,5.0
SpreadSCH=1.0,1.0,-1.0,5.0
SpreadMSH=1.0,1.0,-1.0,5.0
SpreadMCH=1.0,1.0,-1.0,5.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=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=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=Hanzo bomb weap
Type=Projectile
ShotsPerClick=1
DamagePerShot=1.0
KnockbackFactor=4.0
TimeBetweenShots=5.0
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=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=1.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Arrow
VisualLifetime=0.1
WallParticleEffect=None
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.0
RecoilNegatable=false
DecalType=0
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=300.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.2
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=1
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=103.0
ADSFOVScale=Clamped Horizontal
ADSAllowUserOverrideFOV=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
Explosive=true
Radius=1000.0
DamageAtCenter=130.0
DamageAtEdge=100.0
SelfDamageMultiplier=0.0
ExplodesOnContactWithEnemy=true
DelayAfterEnemyContact=0.1
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=true
SpreadSSA=1.0,1.0,-1.0,5.0
SpreadSCA=1.0,1.0,-1.0,5.0
SpreadMSA=1.0,1.0,-1.0,5.0
SpreadMCA=1.0,1.0,-1.0,5.0
SpreadSSH=1.0,1.0,-1.0,5.0
SpreadSCH=1.0,1.0,-1.0,5.0
SpreadMSH=1.0,1.0,-1.0,5.0
SpreadMCH=1.0,1.0,-1.0,5.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=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=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=hanzo quintuple shot
Type=Hitscan
ShotsPerClick=6
DamagePerShot=70.0
KnockbackFactor=4.0
TimeBetweenShots=0.5
Pierces=false
Category=Burst
BurstShotCount=6
TimeBetweenBursts=0.12
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=3.0
MagazineMax=6
AmmoPerShot=1
ReloadTimeFromEmpty=5.0
ReloadTimeFromPartial=5.0
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=65.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Arrow
VisualLifetime=0.1
WallParticleEffect=None
HitParticleEffect=Blood
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.0
RecoilNegatable=false
DecalType=0
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=300.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.2
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=103.0
ADSFOVScale=Clamped Horizontal
ADSAllowUserOverrideFOV=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=100.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,5.0
SpreadSCA=1.0,1.0,-1.0,5.0
SpreadMSA=1.0,1.0,-1.0,5.0
SpreadMCA=1.0,1.0,-1.0,5.0
SpreadSSH=1.0,1.0,-1.0,5.0
SpreadSCH=1.0,1.0,-1.0,5.0
SpreadMSH=1.0,1.0,-1.0,5.0
SpreadMCH=1.0,1.0,-1.0,5.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=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=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
PBS1=0.0,0.0
PBS2=0.0,0.0
PBS3=0.0,0.0
PBS4=0.0,0.0
PBS5=0.0,0.0
[Weapon Profile]
Name=Six Shooter
Type=Hitscan
ShotsPerClick=1
DamagePerShot=75.0
KnockbackFactor=0.1
TimeBetweenShots=0.5
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=6
AmmoPerShot=1
ReloadTimeFromEmpty=1.5
ReloadTimeFromPartial=1.5
DamageFalloffStartDistance=2200.0
DamageFalloffStopDistance=4500.0
DamageAtMaxRange=20.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.5
WallParticleEffect=None
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.1
RecoilNegatable=true
DecalType=1
DecalSize=15.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=3.5
MinRecoilUp=3.5
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.04
TimeToRecoilReset=0.45
AAMode=2
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=0.5
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=true
TriggerBotDelay=0.01
TriggerBotFOV=0.1
StickyLock=false
HeadLock=true
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=Stun Gren
Type=Projectile
ShotsPerClick=1
DamagePerShot=25.0
KnockbackFactor=4.0
TimeBetweenShots=0.8
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=100.000 Y=0.000 Z=0.000
MaxTravelTime=1.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=false
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=Flare
HitParticleEffect=Flare
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.0
RecoilNegatable=false
DecalType=0
DecalSize=15.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.8
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
Explosive=true
Radius=230.0
DamageAtCenter=25.0
DamageAtEdge=25.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=true
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.15
BlockedByWorld=true
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=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=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=Machine Pistols
Type=Hitscan
ShotsPerClick=2
DamagePerShot=9.0
KnockbackFactor=0.1
TimeBetweenShots=0.05
Pierces=false
Category=FullyAuto
BurstShotCount=2
TimeBetweenBursts=0.1
ChargeStartDamage=0.1
ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=3.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=3.0
MagazineMax=40
AmmoPerShot=2
ReloadTimeFromEmpty=1.0
ReloadTimeFromPartial=1.0
DamageFalloffStartDistance=1500.0
DamageFalloffStopDistance=3000.0
DamageAtMaxRange=4.5
DelayBeforeShot=0.0
HitscanVisualEffect=None
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=Gunshot
HitParticleEffect=Blood
BounceOffWorld=true
BounceFactor=0.6
BounceCount=0
HomingProjectileAcceleration=6000.0
ProjectileEnemyHitRadius=0.1
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.1
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.03
HitSoundCooldown=0.03
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.1
RecoilNegatable=true
DecalType=1
DecalSize=15.0
DelayAfterShooting=0.25
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=10.3
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.1
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=true
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=true
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=5.0
BlockedByWorld=true
SpreadSSA=10.0,5.0,0.0,2.5
SpreadSCA=10.0,5.0,0.0,2.5
SpreadMSA=10.0,5.0,0.0,2.5
SpreadMCA=10.0,5.0,0.0,2.5
SpreadSSH=10.0,5.0,0.0,4.0
SpreadSCH=10.0,5.0,0.0,2.5
SpreadMSH=10.0,5.0,0.0,4.0
SpreadMCH=10.0,5.0,0.0,2.5
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.45
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.5
AAMaxSpeed=5.0
AADeadZone=0.0
AAFOV=720.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=0.1
StickyLock=false
HeadLock=true
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
PBS1=0.0,0.0
[Weapon Profile]
Name=roadhog shotgun
Type=Projectile
ShotsPerClick=25
DamagePerShot=6.0
KnockbackFactor=8.0
TimeBetweenShots=0.7
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=5000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=10000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=125
AmmoPerShot=25
ReloadTimeFromEmpty=2.0
ReloadTimeFromPartial=2.0
DamageFalloffStartDistance=10.0
DamageFalloffStopDistance=30.0
DamageAtMaxRange=4.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=Gunshot
HitParticleEffect=Blood
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=0.6
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=6.0
RecoilNegatable=false
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.3
CircularSpread=true
SpreadStationaryVelocity=300.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=1.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=Smoke
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.2
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=103.0
ADSFOVScale=Clamped Horizontal
ADSAllowUserOverrideFOV=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=100.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,5.0
SpreadSCA=1.0,1.0,-1.0,5.0
SpreadMSA=1.0,1.0,-1.0,5.0
SpreadMCA=1.0,1.0,-1.0,5.0
SpreadSSH=10.0,10.0,10.0,10.0
SpreadSCH=1.0,1.0,-1.0,5.0
SpreadMSH=10.0,10.0,10.0,10.0
SpreadMCH=1.0,1.0,-1.0,5.0
MaxRecoilUp=15.0
MinRecoilUp=10.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=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=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=true
PBS0=0.0,0.1
PBS1=0.0,1.0
PBS2=0.0,0.0
PBS3=0.0,0.0
PBS4=0.0,0.0
PBS5=0.0,0.0
PBS6=0.0,0.0
PBS7=0.0,0.0
PBS8=0.0,0.0
PBS9=0.0,0.0
PBS10=0.0,0.0
PBS11=0.0,0.0
PBS12=0.0,0.0
PBS13=0.0,0.0
PBS14=0.0,0.0
PBS15=0.0,0.0
PBS16=0.0,0.0
PBS17=0.0,0.0
PBS18=0.0,0.0
PBS19=0.0,0.0
PBS20=0.0,0.0
PBS21=0.0,0.0
PBS22=0.0,0.0
PBS23=0.0,0.0
PBS24=0.0,0.0
[Weapon Profile]
Name=Rocket Launcher
Type=Projectile
ShotsPerClick=1
DamagePerShot=120.0
KnockbackFactor=4.0
TimeBetweenShots=0.8
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=3111.111 Y=0.000 Z=0.000
MuzzleVelocityMax=X=3111.111 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=100.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=0.0
HeadshotCapable=false
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Rocket
VisualLifetime=0.1
WallParticleEffect=Flare
HitParticleEffect=Flare
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.0
RecoilNegatable=false
DecalType=0
DecalSize=15.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
Explosive=true
Radius=500.0
DamageAtCenter=120.0
DamageAtEdge=0.1
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=true
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=true
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.4
AAMaxSpeed=1.5
AADeadZone=0.0
AAFOV=180.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=true
TriggerBotDelay=0.001
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=-25.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=Boop Rocket
Type=Projectile
ShotsPerClick=1
DamagePerShot=0.0
KnockbackFactor=1.0
TimeBetweenShots=0.8
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=5333.333 Y=0.000 Z=0.000
MuzzleVelocityMax=X=5333.333 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=0.0
HeadshotCapable=false
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=0.0
DelayBeforeShot=0.2
HitscanVisualEffect=Tracer
ProjectileGraphic=Rocket
VisualLifetime=0.1
WallParticleEffect=Flare
HitParticleEffect=Flare
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=2.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=1.0
RecoilNegatable=false
DecalType=0
DecalSize=15.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=1000.0
FlatKnockbackVertical=250.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=1000.0
FlatKnockbackVerticalMin=250.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
Explosive=true
Radius=500.0
DamageAtCenter=0.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=true
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=true
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=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=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=Reaper shotguns
Type=Projectile
ShotsPerClick=20
DamagePerShot=21.0
KnockbackFactor=4.0
TimeBetweenShots=0.5
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=5000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=0.0
HeadshotCapable=true
HeadshotMultiplier=1.5
MagazineMax=8
AmmoPerShot=1
ReloadTimeFromEmpty=1.5
ReloadTimeFromPartial=1.5
DamageFalloffStartDistance=15.0
DamageFalloffStopDistance=50.0
DamageAtMaxRange=6.3
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=None
HitParticleEffect=Blood
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=0.5
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.0
RecoilNegatable=false
DecalType=0
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=300.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=Smoke
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.2
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=1
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=103.0
ADSFOVScale=Clamped Horizontal
ADSAllowUserOverrideFOV=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=100.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,5.0
SpreadSCA=1.0,1.0,-1.0,5.0
SpreadMSA=1.0,1.0,-1.0,5.0
SpreadMCA=1.0,1.0,-1.0,5.0
SpreadSSH=10.0,10.0,10.0,10.0
SpreadSCH=1.0,1.0,-1.0,5.0
SpreadMSH=10.0,10.0,10.0,10.0
SpreadMCH=1.0,1.0,-1.0,5.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=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=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=true
PBS0=0.0,0.1
PBS1=0.0,0.2
PBS2=0.0,0.0
PBS3=0.0,0.0
PBS4=0.0,0.0
PBS5=0.0,0.0
PBS6=0.0,0.0
PBS7=0.0,0.0
PBS8=0.0,0.0
PBS9=0.0,0.0
PBS10=0.0,0.0
PBS11=0.0,0.0
PBS12=0.0,0.0
PBS13=0.0,0.0
PBS14=0.0,0.0
PBS15=0.0,0.0
PBS16=0.0,0.0
PBS17=0.0,0.0
PBS18=0.0,0.0
PBS19=0.0,0.0
[Weapon Profile]
Name=gernade launcher
Type=Projectile
ShotsPerClick=1
DamagePerShot=120.0
KnockbackFactor=4.0
TimeBetweenShots=0.8
Pierces=true
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=3111.111 Y=0.000 Z=0.000
MuzzleVelocityMax=X=3111.111 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=100.000 Y=0.000 Z=0.000
MaxTravelTime=10.0
MaxHitscanRange=100000.0
GravityScale=3.0
HeadshotCapable=true
HeadshotMultiplier=1.5
MagazineMax=5
AmmoPerShot=1
ReloadTimeFromEmpty=1.5
ReloadTimeFromPartial=1.3
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Rocket
VisualLifetime=0.1
WallParticleEffect=Flare
HitParticleEffect=Blood
BounceOffWorld=false
BounceFactor=0.05
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.2
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.0
RecoilNegatable=false
DecalType=0
DecalSize=45.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.6
CircularSpread=false
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.7
TaggingMaxFactor=1.0
TaggingHitFactor=0.5
ProjectileTrail=Smoke
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=8.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
Explosive=true
Radius=800.0
DamageAtCenter=80.0
DamageAtEdge=20.0
SelfDamageMultiplier=0.0
ExplodesOnContactWithEnemy=true
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=1.75
ExplodesOnNextAttack=false
DelayAfterSpawn=3.0
BlockedByWorld=true
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=0.0,0.1,0.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=0.0,0.1,0.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=8.0
MinRecoilUp=5.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.4
AAMaxSpeed=1.5
AADeadZone=0.0
AAFOV=180.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=true
TriggerBotDelay=0.001
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=-25.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=trap
Type=Projectile
ShotsPerClick=1
DamagePerShot=80.0
KnockbackFactor=4.0
TimeBetweenShots=0.8
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=100.000 Y=0.000 Z=0.000
MaxTravelTime=1.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=false
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=Flare
HitParticleEffect=Flare
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.0
RecoilNegatable=false
DecalType=0
DecalSize=15.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=4.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
Explosive=true
Radius=230.0
DamageAtCenter=25.0
DamageAtEdge=25.0
SelfDamageMultiplier=0.0
ExplodesOnContactWithEnemy=true
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=5.0
ExplodesOnNextAttack=false
DelayAfterSpawn=5.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=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=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=SCAR
Type=Hitscan
ShotsPerClick=1
DamagePerShot=30.0
KnockbackFactor=4.0
TimeBetweenShots=0.096
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=87000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=87000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=0.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=30
AmmoPerShot=1
ReloadTimeFromEmpty=1.0
ReloadTimeFromPartial=1.2
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=None
ProjectileGraphic=Arrow
VisualLifetime=0.1
WallParticleEffect=None
HitParticleEffect=Flare
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=0.01
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.0
RecoilNegatable=false
DecalType=0
DecalSize=20.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=300.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.2
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=15
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Clamped Horizontal
ADSAllowUserOverrideFOV=true
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
Explosive=false
Radius=100.0
DamageAtCenter=0.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.0,0.1,-1.0,0.0
SpreadSCA=0.0,0.1,-1.0,0.0
SpreadMSA=0.0,0.1,-1.0,0.0
SpreadMCA=0.0,0.1,-1.0,0.0
SpreadSSH=0.0,0.1,-1.0,0.0
SpreadSCH=0.0,0.1,-1.0,0.0
SpreadMSH=0.0,0.1,-1.0,0.0
SpreadMCH=0.0,0.1,-1.0,0.0
MaxRecoilUp=0.8
MinRecoilUp=0.8
MinRecoilHoriz=-0.6
MaxRecoilHoriz=0.6
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=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=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=Mei left click
Type=Projectile
ShotsPerClick=20
DamagePerShot=0.67
KnockbackFactor=4.0
TimeBetweenShots=0.1
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=6000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=0.2
HeadshotCapable=false
HeadshotMultiplier=2.0
MagazineMax=200
AmmoPerShot=1
ReloadTimeFromEmpty=1.5
ReloadTimeFromPartial=1.5
DamageFalloffStartDistance=100.0
DamageFalloffStopDistance=1500.0
DamageAtMaxRange=0.1
DelayBeforeShot=0.0
HitscanVisualEffect=Beam
ProjectileGraphic=Plasma
VisualLifetime=0.3
WallParticleEffect=Flare
HitParticleEffect=Flare
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=0.4
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.0
RecoilNegatable=false
DecalType=0
DecalSize=2.5
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=1.0
CircularSpread=true
SpreadStationaryVelocity=300.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=0.3
TaggingDuration=5.0
TaggingMaxFactor=0.3
TaggingHitFactor=0.25
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.2
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=1
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=103.0
ADSFOVScale=Clamped Horizontal
ADSAllowUserOverrideFOV=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=100.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,5.0
SpreadSCA=1.0,1.0,-1.0,5.0
SpreadMSA=1.0,1.0,-1.0,5.0
SpreadMCA=1.0,1.0,-1.0,5.0
SpreadSSH=3.0,3.0,3.0,3.0
SpreadSCH=1.0,1.0,-1.0,5.0
SpreadMSH=3.0,3.0,3.0,3.0
SpreadMCH=1.0,1.0,-1.0,5.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=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=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
PBS1=0.0,0.0
PBS2=0.0,0.0
PBS3=0.0,0.0
PBS4=0.0,0.0
PBS5=0.0,0.0
PBS6=0.0,0.0
PBS7=0.0,0.0
PBS8=0.0,0.0
PBS9=0.0,0.0
PBS10=0.0,0.0
PBS11=0.0,0.0
PBS12=0.0,0.0
PBS13=0.0,0.0
PBS14=0.0,0.0
PBS15=0.0,0.0
PBS16=0.0,0.0
PBS17=0.0,0.0
PBS18=0.0,0.0
PBS19=0.0,0.0
[Weapon Profile]
Name=Mei right click
Type=Projectile
ShotsPerClick=1
DamagePerShot=75.0
KnockbackFactor=4.0
TimeBetweenShots=0.41
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=5000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=2.5
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=200
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=75.0
DelayBeforeShot=0.4
HitscanVisualEffect=Tracer
ProjectileGraphic=Arrow
VisualLifetime=0.1
WallParticleEffect=Flare
HitParticleEffect=Blood
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=0.75
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.0
RecoilNegatable=false
DecalType=1
DecalSize=15.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=300.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=Sparks
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=1.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.2
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=1
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=103.0
ADSFOVScale=Clamped Horizontal
ADSAllowUserOverrideFOV=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=100.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,5.0
SpreadSCA=1.0,1.0,-1.0,5.0
SpreadMSA=1.0,1.0,-1.0,5.0
SpreadMCA=1.0,1.0,-1.0,5.0
SpreadSSH=1.0,1.0,-1.0,5.0
SpreadSCH=1.0,1.0,-1.0,5.0
SpreadMSH=1.0,1.0,-1.0,5.0
SpreadMCH=1.0,1.0,-1.0,5.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=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=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
[Weapon Profile]
Name=Rifle
Type=Hitscan
ShotsPerClick=1
DamagePerShot=20.0
KnockbackFactor=0.1
TimeBetweenShots=0.1
Pierces=false
Category=FullyAuto
BurstShotCount=2
TimeBetweenBursts=0.1
ChargeStartDamage=0.1
ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=3.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=50
AmmoPerShot=1
ReloadTimeFromEmpty=1.5
ReloadTimeFromPartial=1.5
DamageFalloffStartDistance=3000.0
DamageFalloffStopDistance=5500.0
DamageAtMaxRange=6.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=Gunshot
HitParticleEffect=Blood
BounceOffWorld=true
BounceFactor=0.6
BounceCount=0
HomingProjectileAcceleration=6000.0
ProjectileEnemyHitRadius=0.1
CanAimDownSight=true
ADSZoomDelay=0.0
ADSZoomSensFactor=0.1
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.1
RecoilNegatable=true
DecalType=1
DecalSize=15.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=10.3
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.1
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=true
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=true
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=5.0
BlockedByWorld=true
SpreadSSA=2.0,10.0,-2.6,2.4
SpreadSCA=2.0,10.0,-2.6,2.4
SpreadMSA=2.0,10.0,-2.6,2.4
SpreadMCA=2.0,10.0,-2.6,2.4
SpreadSSH=2.0,10.0,-2.6,2.4
SpreadSCH=2.0,10.0,-2.6,2.4
SpreadMSH=2.0,10.0,-2.6,2.4
SpreadMCH=2.0,10.0,-2.6,2.4
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.45
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.15
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=0.1
StickyLock=false
HeadLock=true
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=Offhand Rocket
Type=Projectile
ShotsPerClick=1
DamagePerShot=120.0
KnockbackFactor=4.0
TimeBetweenShots=0.8
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=4444.444 Y=0.000 Z=0.000
MuzzleVelocityMax=X=4444.444 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=100.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=0.0
HeadshotCapable=false
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Rocket
VisualLifetime=0.1
WallParticleEffect=Flare
HitParticleEffect=Flare
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=2.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.0
RecoilNegatable=false
DecalType=0
DecalSize=15.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
Explosive=true
Radius=400.0
DamageAtCenter=120.0
DamageAtEdge=30.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=true
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=true
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=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=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=Shinji Stars
Type=Projectile
ShotsPerClick=1
DamagePerShot=28.0
KnockbackFactor=0.1
TimeBetweenShots=1.0
Pierces=false
Category=Burst
BurstShotCount=3
TimeBetweenBursts=0.1
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=5333.333 Y=0.000 Z=0.000
MuzzleVelocityMax=X=5333.333 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=100.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=0.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=24
AmmoPerShot=1
ReloadTimeFromEmpty=1.0
ReloadTimeFromPartial=1.0
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=28.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=None
HitParticleEffect=Blood
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.1
RecoilNegatable=false
DecalType=1
DecalSize=15.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.1
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=0.1,0.1,0.0,0.0
SpreadSCA=0.1,0.1,0.0,0.0
SpreadMSA=0.1,0.1,0.0,0.0
SpreadMCA=0.1,0.1,0.0,0.0
SpreadSSH=0.1,0.1,0.0,0.0
SpreadSCH=0.1,0.1,0.0,0.0
SpreadMSH=0.1,0.1,0.0,0.0
SpreadMCH=0.1,0.1,0.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.2
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=true
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=Shinji Triple
Type=Projectile
ShotsPerClick=1
DamagePerShot=28.0
KnockbackFactor=0.1
TimeBetweenShots=1.0
Pierces=false
Category=FullyAuto
BurstShotCount=3
TimeBetweenBursts=0.1
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=5333.333 Y=0.000 Z=0.000
MuzzleVelocityMax=X=5333.333 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=100.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=0.0
HeadshotCapable=true
HeadshotMultiplier=3.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=28.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=None
HitParticleEffect=Blood
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.1
RecoilNegatable=false
DecalType=1
DecalSize=15.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=Shinji Left;Shinji Right
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.1
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=0.1,0.1,0.0,0.0
SpreadSCA=0.1,0.1,0.0,0.0
SpreadMSA=0.1,0.1,0.0,0.0
SpreadMCA=0.1,0.1,0.0,0.0
SpreadSSH=0.1,0.1,0.0,0.0
SpreadSCH=0.1,0.1,0.0,0.0
SpreadMSH=0.1,0.1,0.0,0.0
SpreadMCH=0.1,0.1,0.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=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=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=Shinji Left
Type=Projectile
ShotsPerClick=1
DamagePerShot=28.0
KnockbackFactor=0.1
TimeBetweenShots=1.0
Pierces=false
Category=FullyAuto
BurstShotCount=3
TimeBetweenBursts=0.1
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=5304.117 Y=-557.485 Z=0.000
MuzzleVelocityMax=X=5304.117 Y=-557.485 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=100.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=0.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=28.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=None
HitParticleEffect=Blood
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.1
RecoilNegatable=false
DecalType=1
DecalSize=15.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.1
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=0.1,0.1,0.0,0.0
SpreadSCA=0.1,0.1,0.0,0.0
SpreadMSA=0.1,0.1,0.0,0.0
SpreadMCA=0.1,0.1,0.0,0.0
SpreadSSH=0.1,0.1,0.0,0.0
SpreadSCH=0.1,0.1,0.0,0.0
SpreadMSH=0.1,0.1,0.0,0.0
SpreadMCH=0.1,0.1,0.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=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=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=Shinji Right
Type=Projectile
ShotsPerClick=1
DamagePerShot=28.0
KnockbackFactor=0.1
TimeBetweenShots=1.0
Pierces=false
Category=FullyAuto
BurstShotCount=3
TimeBetweenBursts=0.1
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=5304.117 Y=557.485 Z=0.000
MuzzleVelocityMax=X=5304.117 Y=557.485 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=100.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=0.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=28.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=None
HitParticleEffect=Blood
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.1
RecoilNegatable=false
DecalType=1
DecalSize=15.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.1
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=0.1,0.1,0.0,0.0
SpreadSCA=0.1,0.1,0.0,0.0
SpreadMSA=0.1,0.1,0.0,0.0
SpreadMCA=0.1,0.1,0.0,0.0
SpreadSSH=0.1,0.1,0.0,0.0
SpreadSCH=0.1,0.1,0.0,0.0
SpreadMSH=0.1,0.1,0.0,0.0
SpreadMCH=0.1,0.1,0.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=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=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Movement Ability Profile]
Name=heal 600
MaxCharges=1.0
ChargeTimer=13.0
ChargesRefundedOnKill=0.0
DelayAfterUse=2.5
FullyAuto=true
AbilityDuration=0.4
LockDirectionForDuration=true
NegateGravityForDuration=true
MainVelocity=0.0
MainVelocityCanGoVertical=false
MainVelocitySetToMovementKeys=false
UpVelocity=0.0
EndVelocityFactor=1.0
Hurtbox=false
HurtboxRadius=50.0
HurtboxDamage=50.0
HurtboxGroundKnockbackFactor=1.0
HurtboxAirKnockbackFactor=1.0
AbilityBlocksTurning=false
AbilityBlocksMovement=false
AbilityBlocksAttack=false
AttackCancelsAbility=false
AbilityReloadsWeapon=false
HealthRestore=600.0
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.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=0.1
[Movement Ability Profile]
Name=winston leap
MaxCharges=1.0
ChargeTimer=6.0
ChargesRefundedOnKill=0.0
DelayAfterUse=0.5
FullyAuto=false
AbilityDuration=0.5
LockDirectionForDuration=true
NegateGravityForDuration=true
MainVelocity=2000.0
MainVelocityCanGoVertical=false
MainVelocitySetToMovementKeys=true
UpVelocity=200.0
EndVelocityFactor=1.0
Hurtbox=true
HurtboxRadius=1000.0
HurtboxDamage=45.0
HurtboxGroundKnockbackFactor=1.0
HurtboxAirKnockbackFactor=1.0
AbilityBlocksTurning=false
AbilityBlocksMovement=true
AbilityBlocksAttack=false
AttackCancelsAbility=false
AbilityReloadsWeapon=false
HealthRestore=0.0
AIUseInCombat=true
AIUseOutOfCombat=true
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.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=0.1
[Movement Ability Profile]
Name=Rush
MaxCharges=1.0
ChargeTimer=8.0
ChargesRefundedOnKill=0.0
DelayAfterUse=0.5
FullyAuto=false
AbilityDuration=0.25
LockDirectionForDuration=true
NegateGravityForDuration=true
MainVelocity=1500.0
MainVelocityCanGoVertical=false
MainVelocitySetToMovementKeys=true
UpVelocity=0.0
EndVelocityFactor=0.25
Hurtbox=false
HurtboxRadius=50.0
HurtboxDamage=50.0
HurtboxGroundKnockbackFactor=1.0
HurtboxAirKnockbackFactor=1.0
AbilityBlocksTurning=false
AbilityBlocksMovement=true
AbilityBlocksAttack=true
AttackCancelsAbility=false
AbilityReloadsWeapon=true
HealthRestore=0.0
AIUseInCombat=false
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.75
AIDamageReactionMinDelay=0.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=50.0
AIDamageReactionResetTimer=1.0
[Movement Ability Profile]
Name=Phase
MaxCharges=3.0
ChargeTimer=3.0
ChargesRefundedOnKill=0.0
DelayAfterUse=0.1
FullyAuto=false
AbilityDuration=0.075
LockDirectionForDuration=true
NegateGravityForDuration=true
MainVelocity=8000.0
MainVelocityCanGoVertical=false
MainVelocitySetToMovementKeys=true
UpVelocity=0.0
EndVelocityFactor=0.075
Hurtbox=false
HurtboxRadius=50.0
HurtboxDamage=50.0
HurtboxGroundKnockbackFactor=1.0
HurtboxAirKnockbackFactor=1.0
AbilityBlocksTurning=false
AbilityBlocksMovement=true
AbilityBlocksAttack=false
AttackCancelsAbility=false
AbilityReloadsWeapon=false
HealthRestore=0.0
AIUseInCombat=true
AIUseOutOfCombat=false
AIUseOnGround=true
AIUseInAir=true
AIReuseTimer=1.0
AIMinSelfHealth=0.0
AIMaxSelfHealth=100.0
AIMinTargHealth=0.0
AIMaxTargHealth=100.0
AIMinTargDist=1500.0
AIMaxTargDist=1000000.0
AIMaxTargFOV=15.0
AIDamageReaction=true
AIDamageReactionIgnoreChance=0.75
AIDamageReactionMinDelay=0.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=25.0
AIDamageReactionResetTimer=1.0
[Movement Ability Profile]
Name=heal 300
MaxCharges=1.0
ChargeTimer=8.0
ChargesRefundedOnKill=0.0
DelayAfterUse=2.5
FullyAuto=true
AbilityDuration=1.0
LockDirectionForDuration=true
NegateGravityForDuration=true
MainVelocity=0.0
MainVelocityCanGoVertical=false
MainVelocitySetToMovementKeys=false
UpVelocity=0.0
EndVelocityFactor=1.0
Hurtbox=false
HurtboxRadius=50.0
HurtboxDamage=50.0
HurtboxGroundKnockbackFactor=1.0
HurtboxAirKnockbackFactor=1.0
AbilityBlocksTurning=false
AbilityBlocksMovement=false
AbilityBlocksAttack=false
AttackCancelsAbility=false
AbilityReloadsWeapon=false
HealthRestore=300.0
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.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=0.1
[Movement Ability Profile]
Name=Anchor
MaxCharges=1.0
ChargeTimer=8.0
ChargesRefundedOnKill=0.0
DelayAfterUse=0.1
FullyAuto=false
AbilityDuration=0.3
LockDirectionForDuration=true
NegateGravityForDuration=true
MainVelocity=15000.0
MainVelocityCanGoVertical=false
MainVelocitySetToMovementKeys=true
UpVelocity=0.0
EndVelocityFactor=0.075
Hurtbox=true
HurtboxRadius=50.0
HurtboxDamage=30.0
HurtboxGroundKnockbackFactor=1.0
HurtboxAirKnockbackFactor=1.0
AbilityBlocksTurning=false
AbilityBlocksMovement=true
AbilityBlocksAttack=false
AttackCancelsAbility=false
AbilityReloadsWeapon=false
HealthRestore=0.0
AIUseInCombat=true
AIUseOutOfCombat=false
AIUseOnGround=true
AIUseInAir=true
AIReuseTimer=1.0
AIMinSelfHealth=0.0
AIMaxSelfHealth=100.0
AIMinTargHealth=0.0
AIMaxTargHealth=100.0
AIMinTargDist=1500.0
AIMaxTargDist=1000000.0
AIMaxTargFOV=15.0
AIDamageReaction=true
AIDamageReactionIgnoreChance=0.75
AIDamageReactionMinDelay=0.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=25.0
AIDamageReactionResetTimer=1.0
[Movement Ability Profile]
Name=Gravity Boost
MaxCharges=1.0
ChargeTimer=10.0
ChargesRefundedOnKill=1.0
DelayAfterUse=0.5
FullyAuto=true
AbilityDuration=0.0
LockDirectionForDuration=false
NegateGravityForDuration=true
MainVelocity=400.0
MainVelocityCanGoVertical=false
MainVelocitySetToMovementKeys=true
UpVelocity=1000.0
EndVelocityFactor=1.0
Hurtbox=false
HurtboxRadius=50.0
HurtboxDamage=50.0
HurtboxGroundKnockbackFactor=1.0
HurtboxAirKnockbackFactor=1.0
AbilityBlocksTurning=false
AbilityBlocksMovement=false
AbilityBlocksAttack=false
AttackCancelsAbility=false
AbilityReloadsWeapon=false
HealthRestore=0.0
AIUseInCombat=true
AIUseOutOfCombat=false
AIUseOnGround=true
AIUseInAir=true
AIReuseTimer=10.0
AIMinSelfHealth=0.0
AIMaxSelfHealth=99.0
AIMinTargHealth=0.0
AIMaxTargHealth=100.0
AIMinTargDist=0.0
AIMaxTargDist=10000.0
AIMaxTargFOV=45.0
AIDamageReaction=false
AIDamageReactionIgnoreChance=0.0
AIDamageReactionMinDelay=0.0
AIDamageReactionMaxDelay=0.0
AIDamageReactionCooldown=0.1
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=0.1
[Movement Ability Profile]
Name=teleport
MaxCharges=1.0
ChargeTimer=10.0
ChargesRefundedOnKill=0.0
DelayAfterUse=0.1
FullyAuto=false
AbilityDuration=1.25
LockDirectionForDuration=true
NegateGravityForDuration=true
MainVelocity=5000.0
MainVelocityCanGoVertical=false
MainVelocitySetToMovementKeys=true
UpVelocity=0.0
EndVelocityFactor=0.075
Hurtbox=true
HurtboxRadius=50.0
HurtboxDamage=25.0
HurtboxGroundKnockbackFactor=10.0
HurtboxAirKnockbackFactor=20.0
AbilityBlocksTurning=false
AbilityBlocksMovement=true
AbilityBlocksAttack=true
AttackCancelsAbility=true
AbilityReloadsWeapon=false
HealthRestore=0.0
AIUseInCombat=true
AIUseOutOfCombat=false
AIUseOnGround=true
AIUseInAir=true
AIReuseTimer=1.0
AIMinSelfHealth=0.0
AIMaxSelfHealth=100.0
AIMinTargHealth=0.0
AIMaxTargHealth=100.0
AIMinTargDist=1500.0
AIMaxTargDist=1000000.0
AIMaxTargFOV=15.0
AIDamageReaction=true
AIDamageReactionIgnoreChance=0.75
AIDamageReactionMinDelay=0.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=25.0
AIDamageReactionResetTimer=1.0
[Movement Ability Profile]
Name=bounce mines
MaxCharges=3.0
ChargeTimer=8.0
ChargesRefundedOnKill=0.0
DelayAfterUse=0.5
FullyAuto=false
AbilityDuration=0.6
LockDirectionForDuration=true
NegateGravityForDuration=true
MainVelocity=1500.0
MainVelocityCanGoVertical=false
MainVelocitySetToMovementKeys=true
UpVelocity=1300.0
EndVelocityFactor=1.0
Hurtbox=true
HurtboxRadius=200.0
HurtboxDamage=120.0
HurtboxGroundKnockbackFactor=20.0
HurtboxAirKnockbackFactor=20.0
AbilityBlocksTurning=false
AbilityBlocksMovement=true
AbilityBlocksAttack=false
AttackCancelsAbility=false
AbilityReloadsWeapon=false
HealthRestore=0.0
AIUseInCombat=true
AIUseOutOfCombat=true
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.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=0.1
[Movement Ability Profile]
Name=Ice bubble
MaxCharges=1.0
ChargeTimer=1.0
ChargesRefundedOnKill=0.0
DelayAfterUse=0.5
FullyAuto=false
AbilityDuration=4.0
LockDirectionForDuration=true
NegateGravityForDuration=true
MainVelocity=0.0
MainVelocityCanGoVertical=false
MainVelocitySetToMovementKeys=true
UpVelocity=0.0
EndVelocityFactor=1.0
Hurtbox=false
HurtboxRadius=50.0
HurtboxDamage=50.0
HurtboxGroundKnockbackFactor=1.0
HurtboxAirKnockbackFactor=1.0
AbilityBlocksTurning=false
AbilityBlocksMovement=true
AbilityBlocksAttack=true
AttackCancelsAbility=true
AbilityReloadsWeapon=false
HealthRestore=250.0
AIUseInCombat=true
AIUseOutOfCombat=true
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.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=0.1
[Movement Ability Profile]
Name=Dash
MaxCharges=1.0
ChargeTimer=8.0
ChargesRefundedOnKill=1.0
DelayAfterUse=0.1
FullyAuto=false
AbilityDuration=0.25
LockDirectionForDuration=true
NegateGravityForDuration=true
MainVelocity=3000.0
MainVelocityCanGoVertical=true
MainVelocitySetToMovementKeys=false
UpVelocity=0.0
EndVelocityFactor=0.2
Hurtbox=true
HurtboxRadius=300.0
HurtboxDamage=50.0
HurtboxGroundKnockbackFactor=1.0
HurtboxAirKnockbackFactor=1.0
AbilityBlocksTurning=true
AbilityBlocksMovement=true
AbilityBlocksAttack=true
AttackCancelsAbility=false
AbilityReloadsWeapon=false
HealthRestore=0.0
AIUseInCombat=true
AIUseOutOfCombat=false
AIUseOnGround=true
AIUseInAir=true
AIReuseTimer=0.2
AIMinSelfHealth=0.0
AIMaxSelfHealth=100.0
AIMinTargHealth=0.0
AIMaxTargHealth=25.0
AIMinTargDist=0.0
AIMaxTargDist=1750.0
AIMaxTargFOV=15.0
AIDamageReaction=true
AIDamageReactionIgnoreChance=0.75
AIDamageReactionMinDelay=0.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=75.0
AIDamageReactionResetTimer=1.0
[Weapon Ability Profile]
Name=Hanzo Bomb Abil
MaxCharges=1.0
ChargeTimer=9.0
ChargesRefundedOnKill=0.0
DelayAfterUse=0.5
FullyAuto=false
WeaponProfile=Hanzo bomb weap
BlockAttackTimer=0.0
AbilityBlockedWhenAttacking=false
AmmoPerShot=0
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.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=0.1
[Weapon Ability Profile]
Name=hanzo burst
MaxCharges=1.0
ChargeTimer=10.0
ChargesRefundedOnKill=0.0
DelayAfterUse=0.0
FullyAuto=false
WeaponProfile=hanzo quintuple shot
BlockAttackTimer=0.0
AbilityBlockedWhenAttacking=false
AmmoPerShot=1
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.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=0.1
[Weapon Ability Profile]
Name=Stun Gren
MaxCharges=1.0
ChargeTimer=10.0
ChargesRefundedOnKill=0.0
DelayAfterUse=0.5
FullyAuto=false
WeaponProfile=Stun Gren
BlockAttackTimer=0.0
AbilityBlockedWhenAttacking=false
AmmoPerShot=0
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=500.0
AIMaxTargFOV=15.0
AIDamageReaction=false
AIDamageReactionIgnoreChance=0.0
AIDamageReactionMinDelay=0.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=1.0
[Weapon Ability Profile]
Name=Boop Rocket
MaxCharges=1.0
ChargeTimer=12.0
ChargesRefundedOnKill=1.0
DelayAfterUse=0.5
FullyAuto=true
WeaponProfile=Boop Rocket
BlockAttackTimer=0.0
AbilityBlockedWhenAttacking=false
AmmoPerShot=0
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=false
AIDamageReactionIgnoreChance=0.0
AIDamageReactionMinDelay=0.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=0.1
[Weapon Ability Profile]
Name=trap
MaxCharges=1.0
ChargeTimer=10.0
ChargesRefundedOnKill=0.0
DelayAfterUse=0.5
FullyAuto=false
WeaponProfile=trap
BlockAttackTimer=0.0
AbilityBlockedWhenAttacking=false
AmmoPerShot=0
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=500.0
AIMaxTargFOV=15.0
AIDamageReaction=false
AIDamageReactionIgnoreChance=0.0
AIDamageReactionMinDelay=0.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=1.0
[Weapon Ability Profile]
Name=Icicle
MaxCharges=1.0
ChargeTimer=0.4
ChargesRefundedOnKill=0.0
DelayAfterUse=0.0
FullyAuto=true
WeaponProfile=Mei right click
BlockAttackTimer=0.0
AbilityBlockedWhenAttacking=true
AmmoPerShot=20
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.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=0.1
[Weapon Ability Profile]
Name=Offhand Rocket
MaxCharges=1.0
ChargeTimer=8.0
ChargesRefundedOnKill=0.0
DelayAfterUse=0.5
FullyAuto=false
WeaponProfile=Offhand Rocket
BlockAttackTimer=0.3
AbilityBlockedWhenAttacking=false
AmmoPerShot=0
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=5000.0
AIMaxTargFOV=2.0
AIDamageReaction=false
AIDamageReactionIgnoreChance=0.0
AIDamageReactionMinDelay=0.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=1.0
[Weapon Ability Profile]
Name=Triple Star
MaxCharges=1.0
ChargeTimer=0.1
ChargesRefundedOnKill=0.0
DelayAfterUse=0.1
FullyAuto=true
WeaponProfile=Shinji Triple
BlockAttackTimer=0.5
AbilityBlockedWhenAttacking=true
AmmoPerShot=3
AIUseInCombat=true
AIUseOutOfCombat=false
AIUseOnGround=true
AIUseInAir=true
AIReuseTimer=0.2
AIMinSelfHealth=0.0
AIMaxSelfHealth=100.0
AIMinTargHealth=0.0
AIMaxTargHealth=100.0
AIMinTargDist=0.0
AIMaxTargDist=1500.0
AIMaxTargFOV=15.0
AIDamageReaction=false
AIDamageReactionIgnoreChance=0.0
AIDamageReactionMinDelay=0.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=1.0
[Melee Ability Profile]
Name=Melee
MaxCharges=1.0
ChargeTimer=0.25
ChargesRefundedOnKill=0.0
DelayAfterUse=0.25
FullyAuto=false
AbilityDuration=0.15
HurtboxRadius=250.0
HurtboxDamage=50.0
HurtboxGroundKnockbackFactor=0.0
HurtboxAirKnockbackFactor=0.0
BlockAttackTimer=0.1
AbilityBlockedWhenAttacking=false
AmmoPerShot=0
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
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=600.0
AIMaxTargFOV=15.0
AIDamageReaction=false
AIDamageReactionIgnoreChance=0.0
AIDamageReactionMinDelay=0.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=0.1
[Recall Ability Profile]
Name=Unwind
MaxCharges=1.0
ChargeTimer=10.0
ChargesRefundedOnKill=1.0
DelayAfterUse=0.5
FullyAuto=false
AbilityDuration=1.0
BlockAttackTimer=0.25
AbilityBlockedWhenAttacking=false
RecallTimer=3.0
RefillAmmo=true
AIUseInCombat=false
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.25
AIDamageReactionMinDelay=0.25
AIDamageReactionMaxDelay=0.5
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=75.0
AIDamageReactionResetTimer=1.0
[Sprint Ability Profile]
Name=Run
MaxCharges=1.0
ChargeTimer=0.001
ChargesRefundedOnKill=0.0
DelayAfterUse=0.5
FullyAuto=false
AbilityDuration=0.0
BlockAttackWhileSprinting=false
AbilityBlockedWhenAttacking=true
SpeedModifier=1.5
45DegreeSprint=true
90DegreeSprint=false
135DegreeSprint=false
180DegreeSprint=false
TapToSprint=false
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.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=0.1
[Map Data]
|
0b2ef2f23836473a177ef58b420f7e59e6b6e9bc | 449d555969bfd7befe906877abab098c6e63a0e8 | /260/CH4/EX4.11/4_11.sce | 740616998b5388c4d534e46397d28ea7f7ba0d04 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 542 | sce | 4_11.sce | //Eg-4.11
//pg-163
clear
clc
// Secant Method
clear ;
close ;
clc ;
deff('[z]=f(x)','z=1.55*x^(-0.5)-7.2*x+8.1*x^2-4*x^3-1.3');
iter=1;
eps=10^(-10);
x1=0.5;
x2=1;
imax=20;
Abserr=100;
while Abserr>eps&iter<imax
//printf('iteration number %i\n',iter);
xnew1=x2-feval(x2,f)*(x2-x1)/(feval(x2,f)-feval(x1,f));
//printf('xnew1 = %f \n',xnew1);
Abserr=abs(xnew1-x1)/abs(xnew1);
x1=x2;
x2=xnew1;
iter=iter+1;
end
printf('The result of %f has been found after %d iterations',x2,iter-1) |
b5693bdf33837e1dcb1236dc3f79a990a67cd5d4 | 9cb37875b74a713c93c09fa50ccc70ac0f71ecdb | /CostHriFunction/Justin/SCNEARIOS_Justin_Trajectory/AvoidingHuman.sce | e1edd5404ad3d9e3111555ad4b4d23ace5d78f41 | [] | no_license | jmainpri/move3d-assets | a5b621daaedaaf8784fed0da1e80d029c83f3983 | 939db49d17a14e052bb58324b70e6112803d3105 | refs/heads/master | 2021-01-16T17:48:56.669119 | 2016-02-16T14:04:09 | 2016-02-16T14:04:09 | 20,237,987 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 6,343 | sce | AvoidingHuman.sce | #************************************************************
# Scenario of Ikea
#
# date : Fri Aug 6 11:19:31 2010
#************************************************************
p3d_sel_desc_name P3D_ENV Ikea
p3d_sel_desc_name P3D_ROBOT HUMAN_ACHILE
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.800000 -1.520000 0.750000 0.000000 0.000000 76.320000 4.292683 0.000000 -1.327433 -1.283183 0.219512 12.951220 65.780000 8.370000 -14.860000 91.170000 20.930000 -39.760000 -5.120000 -27.600000 14.650000 -43.080000 -34.208450 0.880000 -107.640000 8.620000 -11.570000 -90.000000 -5.490000 103.630000 0.000000 0.000000 3.260000 5.980000 -90.000000 8.840000 96.870000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT ROBOT_JUSTIN
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.050000 -0.090000 -179.675309 67.770000 -33.380035 36.969028 -13.274338 -1.327433 3.871682 -66.863319 -95.575218 -15.044244 115.634224 1.671586 -16.914946 39.690266 -1.745135 -107.261429 -19.289826 63.546378 1.952895 -10.168409 -16.470275 2.048704 -0.799339 0.930000 12.277172 -9.669024 162.854080
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.489090 -2.452390 4.344514 112.419047 -33.380035 36.969028 -13.274338 -1.327433 3.871682 -66.863319 -95.575218 -15.044244 115.634224 1.671586 -16.914946 39.690266 -2.070528 -74.885085 -21.010105 73.265811 31.443746 -24.598214 3.491415 1.810000 -2.070000 1.130000 -3.955605 4.250000 16.960000
p3d_set_robot_traj /Users/jmainpri/workspace/BioMove3DDemos/CostHriFunction/ICRA_Justin_Trajectory/AvoidingHuman.traj
p3d_constraint p3d_kuka_arm_ik 6 18 19 21 22 23 24 1 29 0 3 20 -1 1
p3d_set_cntrt_Tatt 0 -0.982797 0.018403 -0.183754 -0.036039 -0.003530 0.992963 0.118341 -0.346482 0.184640 0.116955 -0.975819 -0.017708
p3d_constraint p3d_min_max_dofs 0 2 4 3 2 0.000000 135.000000 0
p3d_constraint p3d_lin_rel_dofs 1 5 2 3 4 3 -1.000000 -1.000000 0.000000 0
p3d_constraint p3d_fixed_jnt 1 3 0 1 -33.380035 0
p3d_constraint p3d_fixed_jnt 1 4 0 1 36.969028 0
p3d_constraint p3d_fixed_jnt 1 5 0 1 -13.274338 0
p3d_constraint p3d_fixed_jnt 1 7 0 1 -1.327433 0
p3d_constraint p3d_fixed_jnt 1 8 0 1 3.871682 0
p3d_constraint p3d_fixed_jnt 1 10 0 1 -66.863319 0
p3d_constraint p3d_fixed_jnt 1 11 0 1 -95.575218 0
p3d_constraint p3d_fixed_jnt 1 12 0 1 -15.044244 0
p3d_constraint p3d_fixed_jnt 1 13 0 1 115.634224 0
p3d_constraint p3d_fixed_jnt 1 14 0 1 1.671586 0
p3d_constraint p3d_fixed_jnt 1 15 0 1 -16.914946 0
p3d_constraint p3d_fixed_jnt 1 16 0 1 39.690266 0
p3d_constraint p3d_fix_jnts_relpos 1 29 1 24 0 0
p3d_set_cntrt_Tatt 15 -0.982797 -0.003530 0.184640 -0.033372 0.018403 0.992963 0.116955 0.346778 -0.183754 0.118341 -0.975819 0.017101
p3d_set_object_base_and_arm_constraints 29 1 0 1 0
p3d_sel_desc_name P3D_ROBOT Lampe
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -1.966568 1.622419 0.983776 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT Assiette
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.884956 -1.573254 0.787611 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT Pommes
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.442478 -1.622419 0.762537 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT Verre
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT Tabouret
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -0.360000 0.220000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT sailLamp1
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029268 0.263415 3.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT sailLamp2
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029268 0.556098 3.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT sailLamp3
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029268 0.848780 3.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_camera_pos 1.568165 -1.892750 0.427876 6.792545 0.352500 0.777500 0.000000 0.000000 1.000000 0.000000
|
236c14f81ea54c326de43028c7a2e28dcc0c5617 | 5f48beee3dc825617c83ba20a7c82c544061af65 | /tests/s/82.tst | 28d533ffd00dbb4da1e34a603c036c284c978909 | [] | no_license | grenkin/compiler | bed06cd6dac49c1ca89d2723174210cd3dc8efea | 30634ec46fba10333cf284399f577be7fb8e5b61 | refs/heads/master | 2020-06-20T12:44:17.903582 | 2016-11-27T03:08:20 | 2016-11-27T03:08:20 | 74,863,612 | 3 | 0 | null | null | null | null | WINDOWS-1251 | Scilab | false | false | 100 | tst | 82.tst | struct T {
int A;
};
int f(void)
{
struct T;
struct T z;
z.A;
}
/* ошибка */ |
233b6705dcdfc220e27e0f51eb17fd0e2dfc0cb2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2078/CH4/EX4.4/Example4_4.sce | c92095c46f8cf9b52f23bdf1e0b634faf2ae0cfb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 470 | sce | Example4_4.sce | //Exa 4.4
clc;
clear;
close;
//Given data :
r=3;//mm
d11=r;//mm
d12=2*r;//mm
d34=2*r;//mm
d16=2*r;//mm
d17=2*r;//mm
d14=4*r;//mm
d13=sqrt(d14^2-d34^2);//mm
d15=d13;//mm
Ds1=(0.7788*d11*d12*d13*d14*d15*d16*d17)^(1/7);//mm
Ds2=Ds1;//mm
Ds3=Ds1;//mm
Ds4=Ds1;//mm
Ds5=Ds1;//mm
Ds6=Ds1;//mm
Ds7=(2*r*0.7788*d11*d12*d13*2*r*2*r)^(1/7);//mm
Ds=(Ds1*Ds2*Ds3*Ds4*Ds5*Ds6*Ds7)^(1/7);//mm
disp(Ds,"Geometric mean radius(mm)");
//Answer in the book is wrong
|
3c843c88655bd473d049b178bb619e3eff7207b2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /213/CH10/EX10.29/10_29.sce | 9e384a02b8f55bed6a98d41df19cca8497e780e2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 692 | sce | 10_29.sce | //To find maximum intensity of pressure
clc
//Given:
n1=3, n2=2, mu=0.3
d1=240, r1=d1/2, d2=120, r2=d2/2 //mm
P=25*1000 //W
N=1575 //rpm
//Solution:
//Calculating the angular speed of the shaft
omega=2*%pi*N/60 //rad/s
//Calculating the torque transmitted
T=P/omega //N-m
//Calculating the number of pairs of friction surfaces
n=n1+n2-1
//Calculating the mean radius of friction surfaces for uniform wear
R=(r1+r2)/(2*1000) //m
//Calculating the axial force on each friction surface
W=T/(n*mu*R) //N
//Calculating the maximum axial intensity of pressure
p=W/(2*%pi*r2*(r1-r2)) //N/mm^2
//Results:
printf("\n\n Maximum axial intensity of pressure, p = %.3f N/mm^2.\n\n",p) |
f194094a42b915087d49fbc33960ff97c4abc30c | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.5/Unix-Windows/scilab-2.5/tests/examples/cond.man.tst | 36d5fe47c3dc65c04fb136e24d0d77b153ad118b | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 48 | tst | cond.man.tst | clear;lines(0);
A=testmatrix('hilb',6);
cond(A)
|
514c2f5c82d4ddb8434a9991489308ac4fad5688 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1367/CH14/EX14.9/14_9.sce | 3ee09f74dad715810b153eb9a1a7802356a817b5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 317 | sce | 14_9.sce | //Find Eddy current loss at 60 and 100 Hz
//Ex:14.9
clc;
clear;
close;
f=50;//in Hz
L=100;//Eddy current loss in transformer in W
f1=60;//in Hz
w_e=L*(f1/f)^2;//in W
disp(w_e,"Eddy current loss at 60 Hz (in W) = ");
f2=100;//in Hz
w_ee=L*(f2/f)^2;//in W
disp(w_ee,"Eddy current loss at 100 Hz (in W) = "); |
82a73cc5a11b8138794e5217ea4bbe2af0efaef0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1364/CH7/EX7.5.1/7_5_1.sce | d046c8555146a9aec68f377897c89e206a5bf245 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 252 | sce | 7_5_1.sce | clc
//initialisation of variables
r= 40
c= 2//lb/sec
v= 2500 //ft/sec
v1= 800 //ft/sec
//CALCULATIONS
m1= r*c
mr= r*c+c
F= (mr*v-m1*v1)/32.2
P= F*v1/550
//RESULTS
printf (' thrust horse power developed under these conditions = %.f h.p',P)
|
c95fbdd550aa3a5157497cd4098430809c41a803 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1301/CH18/EX18.13/ex18_13.sce | 3f2936ee2a2cc35604b44f664c227fc9bf0df089 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 428 | sce | ex18_13.sce | clc;
h=6.63*10^-34; //planck's constant in J.sec
delx=10^-9; //in m
m=9.1*10^-31; //mass in kg
u=h/(2*%pi*delx); //uncertainty principle
disp(u,"Uncertainty in electrons momentum in kg.m/sec"); //displaying result
delv=u/m; //uncertainty principle
disp(delv,"Uncertainty in electrons velocity in m/sec"); //displaying result
disp(u*1,"Uncertainty in electrons position in m"); //displaying result |
a132957c225e78498795b28fe00c753cb3bd1957 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1076/CH5/EX5.8/5_8.sce | 2f41afdba436b1fa95281cb4e4bbf138ef5b0324 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 350 | sce | 5_8.sce | clear;
clc;
h1=75;
h2=45;
l=300;
g=9.81;
T=2500*g;
m=.9;
w=m*g;
//(a)
lc=l+ (2*T * (h1-h2)/(w*l));
dOC=(lc/2)-l;
hCO=w * dOC *dOC / (2*T);
dOP=dOC+(l/2);
hPO=w * dOP *dOP / (2*T);
hPC=hPO-hCO;
mprintf("\nHeight of mid point P above C =%.2f m",hPC);
hP=hPC+h2;
mprintf("\nHeight of mid point P above water level =%.2f m",hP);
|
cafaaf1fb1dc031809c98a0144373727631c5145 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3689/CH17/EX17.11/17_11.sce | a5c728aac757a6cf9c2dd0785c39592043daee41 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 326 | sce | 17_11.sce | ////Variable Declaration
LMg = 0.0106 //Ionic conductance for Mg, S.m2/mol
LCl = 0.0076 //Ionic conductance for Cl, S.m2/mol
[nMg,nCl] = (1,2)
//Calculations
LMgCl2 = nMg*LMg + nCl*LCl
//Results
printf("\n Molar conductivity of MgCl2 on infinite dilution is %5.4f S.m2/mol",LMgCl2)
|
339096d2496304c777e35537b6d4e3baf7185eff | 449d555969bfd7befe906877abab098c6e63a0e8 | /98/CH3/EX3.21/example3_21.sce | 2002fd7a46f0e8a6ec74388741e39c07ff4f9334 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 327 | sce | example3_21.sce | //Chapter 3
//Example 3_31
//Page 64
clear;clc;
max_l=60000;
min_l=20000;
peak_l=50000;
lf=1;
n_steam=0.6;
s=poly(0,"s");
p=333*s^2+24000*s-338000;
r=roots(p);
x=r(1);
y=40000*round(x)/24;
steam_capacity=max_l-y;
printf("x=%d \n", x);
printf("y=%d kW \n", y);
printf("Capacity of steam plant = %d kW \n", steam_capacity);
|
86bd32befccecbacda8cc88cd8749d1d79cedadd | 449d555969bfd7befe906877abab098c6e63a0e8 | /929/CH3/EX3.17/Example3_17.sce | 5696f052b4748fe717ba1f42915b3de832efa91a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 600 | sce | Example3_17.sce | //Example 3.17
clear;
clc;
f0=1*10^3;
Q=10;
HondB=0;
Hon=10^(HondB/20);
C=10*10^(-9);//Assuming C=10 nF
C1=C;
C2=C;
R3=10*10^3;
R4=R3/Hon;
R5=Hon*R4;
R2=(2*Q)/(2*%pi*f0*C);
R1A=Q/(Hon*2*%pi*f0*C);
R1B=R1A/((2*Q^2/Hon)-1);
printf("Designed Multiple Feedback Notch Filter :");
printf("\nR1A=%.2f kohms",R1A*10^(-3));
printf("\nR1B=%.2f ohms",R1B);
printf("\nR2=%.2f kohms",R2*10^(-3));
printf("\nR3=%.2f kohms",R3*10^(-3));
printf("\nR4=%.2f kohms",R4*10^(-3));
printf("\nR5=%.2f kohms",R5*10^(-3));
printf("\nC1=C2=%.2f nF",C*10^9); |
c1809420577d29f7de93a4ab1d7d2d4eadf09b02 | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/IN6.prev.tst | 3dee5811571adc38e58d1e21f993626776d08e1e | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | gfis/ramath | 498adfc7a6d353d4775b33020fdf992628e3fbff | b09b48639ddd4709ffb1c729e33f6a4b9ef676b5 | refs/heads/master | 2023-08-17T00:10:37.092379 | 2023-08-04T07:48:00 | 2023-08-04T07:48:00 | 30,116,803 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 202 | tst | IN6.prev.tst | [[16384,32768,8192,8192],[0,32768,0,0],[49152,-32768,57344,-8192],[-49152,32768,-49152,16384]],fraction=65536,det=0 is inverse of [[4,-4,-4,-4],[0,2,0,0],[-3,4,5,4],[3,-4,3,4]],det=64,identity = false
|
b0ec318944b524ad869fdac749d078bda957a2a6 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/ngram/5.8_14.tst | 1e26a00ddb1fca9317c85c45434ebe722e26160f | [] | 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 | 535,830 | tst | 5.8_14.tst | 8 194:1 369:1 494:1 683:1 771:1 869:1 1147:1 1371:1 1395:1 1432:1 1523:1 1696:1 1776:1 1835:1 1856:1 1858:1 2057:2 2188:1 2203:1 2211:1 2214:1 2583:1 2602:1 2662:1 2705:1 2801:1 2831:1 3062:1 3134:1 3324:1 3491:1 3625:1 3650:1 3709:1 3858:1 4042:1 4115:1 4249:1 4351:1 4471:1 4533:1 4567:1 4648:2 4787:1 4789:1 4800:1 4810:1 4944:1 5104:1 5170:1 5222:1 5739:1 5808:1 6045:1 6053:1 6058:1 6100:1 6416:1 6489:1 6493:1 6521:1 6852:1 6914:2 7323:4 7345:1 7434:1 7513:1 7539:1 8035:1 8282:1 8439:1 8503:1 8556:1 8670:1 8930:1 8979:1 8997:1 9063:1 9325:1 9442:1 9486:1 9793:1 9877:1 9974:1 10153:1 10322:1 10574:1 10724:1 10965:1 10994:1 11001:1 11046:1 11229:1 11354:1 11410:1 11421:1 11501:1 12313:1 12404:1 12472:1 12641:1 12743:1 12894:1 12896:1 12919:1 12982:1 13001:1 13040:1 13126:1 13628:2 13989:1 14439:1 14577:1 14638:1 14851:1 14924:1 15568:1 15582:1 16055:1 16434:1 16518:1 16583:1 16781:1 16915:1 17110:1 17276:1 17415:98 17845:1 18232:1 18275:1 18355:1 18412:1 18723:1 19014:1 19033:1 19148:1 19205:2 19520:1 19556:1 19568:1 19769:1 19905:1 19950:1 20016:1 20025:1 20041:1 20069:1 20152:1 20490:1 20559:1 20590:1 20803:1 21087:1 21167:1 21287:1 21549:1 22043:1 22054:2 22156:1 22810:1 22946:1 22962:1 23403:1 23559:1 23699:1 23801:1 24473:1 24551:1 24570:1 25221:1 25265:1 25329:1 25333:1 25505:1 25561:1 25900:1 26567:1 27019:1 27078:1 27390:1 27396:1 27433:1 27730:1
8 46:1 194:1 214:1 327:1 369:1 494:1 683:1 771:1 869:1 934:1 1147:1 1371:1 1395:1 1432:1 1496:1 1523:1 1696:1 1720:1 1776:1 1835:1 1856:1 1858:1 1883:1 2057:3 2188:1 2203:1 2211:1 2214:1 2248:1 2510:1 2583:1 2602:1 2662:1 2705:1 2774:1 2801:1 2831:1 3062:1 3134:1 3148:1 3324:1 3491:1 3621:1 3625:2 3650:1 3709:1 3728:1 3815:1 3826:1 3857:2 3858:2 3923:1 4002:1 4020:1 4042:1 4115:1 4196:1 4249:1 4351:1 4471:1 4533:1 4567:1 4648:2 4787:1 4789:1 4800:1 4802:1 4810:1 4871:1 4944:1 5104:1 5170:1 5222:1 5437:1 5739:2 5808:1 5913:1 6037:1 6045:1 6053:1 6058:1 6100:1 6187:1 6416:1 6489:1 6493:1 6521:1 6779:1 6852:1 6914:2 7323:4 7344:1 7345:1 7434:1 7513:1 7539:1 7600:1 7817:1 8035:1 8282:1 8322:1 8439:1 8485:1 8493:1 8503:1 8556:1 8670:1 8816:1 8930:1 8954:1 8979:1 8997:1 9063:1 9179:1 9325:1 9442:1 9486:1 9793:1 9823:1 9877:1 9974:1 10153:1 10299:1 10322:1 10371:1 10427:1 10574:1 10684:1 10724:1 10786:1 10850:1 10965:1 10994:1 11001:1 11046:1 11229:1 11245:1 11354:1 11410:1 11421:1 11422:1 11477:1 11501:1 11611:1 11688:1 11876:1 12018:1 12021:1 12039:1 12313:1 12404:1 12472:2 12522:1 12641:1 12737:1 12743:1 12775:1 12894:1 12896:1 12919:1 12982:1 13001:1 13040:1 13097:1 13120:1 13126:1 13628:2 13701:1 13989:1 13996:1 14320:1 14439:1 14577:1 14604:1 14638:1 14851:1 14924:1 15495:1 15567:1 15568:1 15582:1 15584:1 15962:1 16055:1 16434:1 16435:1 16518:1 16519:1 16583:1 16762:1 16781:1 16915:1 16932:1 17110:1 17132:1 17235:1 17266:1 17276:1 17415:209 17473:1 17845:1 18232:1 18275:1 18355:1 18412:1 18723:1 18838:1 19014:1 19033:1 19137:1 19148:1 19205:3 19223:1 19492:1 19500:1 19520:1 19541:1 19556:1 19568:1 19753:1 19769:1 19819:1 19889:1 19905:1 19950:1 20016:1 20025:1 20041:1 20069:1 20143:1 20152:1 20270:1 20490:1 20556:1 20559:1 20590:1 20685:1 20803:1 20828:1 21087:1 21167:1 21287:1 21376:1 21549:1 21640:1 21709:1 21816:1 22043:1 22054:2 22067:1 22156:1 22164:1 22171:1 22449:1 22686:1 22779:1 22810:1 22946:1 22962:1 23252:1 23403:1 23559:1 23699:1 23720:1 23766:1 23801:1 23985:1 24288:1 24473:1 24551:1 24570:1 24603:1 24807:1 24809:1 25221:1 25242:1 25265:1 25279:1 25288:1 25329:1 25333:1 25505:1 25508:1 25519:1 25523:1 25561:1 25570:1 25900:1 25959:1 26567:1 26807:1 26813:1 26966:1 27019:1 27063:1 27078:1 27227:1 27390:1 27396:1 27402:1 27433:1 27730:1 27797:1
8 46:1 47:1 194:1 214:1 240:1 327:1 369:1 494:1 575:1 683:1 771:1 869:1 934:1 1147:1 1253:1 1371:1 1393:1 1395:1 1432:2 1496:1 1523:1 1696:1 1720:1 1776:1 1801:1 1835:1 1856:1 1858:1 1883:1 2057:3 2188:1 2203:1 2211:1 2214:1 2248:1 2510:1 2583:1 2602:1 2662:1 2705:1 2774:1 2801:1 2831:1 2886:1 3002:1 3062:1 3134:2 3148:1 3216:1 3324:1 3491:1 3621:1 3625:2 3650:1 3709:1 3728:1 3758:1 3815:1 3826:1 3857:2 3858:2 3923:1 4002:1 4020:1 4042:1 4115:1 4129:1 4196:1 4249:1 4351:1 4471:1 4533:1 4567:1 4648:4 4787:1 4789:1 4800:1 4802:1 4810:1 4814:1 4871:1 4944:1 5074:1 5104:1 5126:1 5136:1 5170:1 5222:1 5296:1 5437:1 5739:2 5808:1 5913:1 6037:1 6045:2 6053:1 6058:1 6089:1 6100:1 6147:1 6187:1 6295:1 6327:1 6416:1 6457:1 6489:1 6493:1 6521:1 6779:1 6852:1 6914:2 7048:1 7323:4 7344:1 7345:1 7434:1 7513:1 7539:1 7550:1 7600:1 7650:1 7684:1 7791:1 7817:1 8035:1 8135:1 8282:1 8322:1 8439:1 8485:1 8493:1 8503:1 8556:1 8620:1 8670:1 8816:1 8930:1 8954:1 8979:1 8997:1 9063:2 9179:1 9325:1 9442:1 9451:1 9486:1 9605:1 9793:1 9823:1 9877:1 9974:1 10153:1 10299:1 10322:1 10371:1 10427:1 10574:1 10684:1 10724:1 10784:1 10786:1 10850:1 10965:1 10973:1 10994:1 10995:1 11001:1 11046:1 11149:1 11229:1 11245:1 11304:1 11354:1 11410:1 11421:1 11422:1 11477:1 11501:1 11611:1 11688:1 11876:1 12009:1 12018:1 12021:1 12039:1 12313:1 12404:2 12472:2 12522:1 12641:1 12737:1 12743:1 12775:1 12894:1 12896:1 12919:1 12982:1 13001:1 13040:1 13097:1 13120:1 13126:1 13270:1 13628:2 13701:1 13989:1 13996:1 14106:1 14320:1 14439:1 14445:1 14577:1 14604:1 14638:1 14851:1 14918:1 14924:1 15012:1 15177:1 15495:1 15567:1 15568:1 15582:1 15584:1 15655:1 15962:1 16055:1 16108:1 16139:1 16399:1 16434:1 16435:1 16518:1 16519:1 16583:1 16592:1 16729:1 16762:1 16781:1 16915:1 16932:1 17110:1 17127:1 17132:1 17235:1 17266:1 17276:1 17415:260 17473:1 17845:1 18167:1 18232:1 18275:1 18303:1 18355:1 18412:1 18723:1 18753:1 18838:1 18932:1 19014:1 19033:1 19137:1 19148:1 19205:3 19223:1 19370:1 19492:1 19500:1 19520:1 19541:1 19556:1 19568:1 19577:1 19753:1 19769:1 19819:1 19889:1 19905:1 19942:1 19950:1 20016:1 20025:1 20041:2 20069:1 20143:1 20152:1 20270:1 20490:1 20556:1 20559:1 20590:1 20685:1 20752:1 20803:1 20828:1 20960:1 21087:1 21167:1 21262:1 21287:1 21376:1 21442:1 21549:1 21633:1 21640:1 21645:1 21709:1 21816:1 21928:1 21951:1 22043:1 22054:2 22067:1 22125:1 22156:1 22164:1 22171:1 22268:1 22381:1 22449:1 22491:1 22598:1 22686:1 22779:1 22810:1 22946:1 22962:1 22991:1 23252:1 23403:1 23559:1 23634:1 23681:1 23699:1 23720:1 23766:1 23779:1 23801:1 23882:1 23985:1 24288:1 24473:1 24551:1 24570:1 24603:1 24723:1 24807:1 24809:1 24969:1 25060:1 25221:1 25240:1 25242:1 25265:1 25267:1 25279:1 25288:1 25306:1 25329:1 25333:1 25392:1 25505:1 25508:1 25519:1 25523:1 25561:1 25570:1 25900:1 25959:1 26448:1 26508:1 26567:1 26764:1 26807:1 26813:1 26834:1 26921:1 26966:1 26982:1 27019:1 27063:1 27078:1 27227:1 27390:1 27396:1 27402:1 27433:1 27521:1 27534:1 27716:1 27730:1 27797:1
8 8:1 46:1 47:1 194:2 214:1 240:1 327:1 369:1 494:1 575:1 627:1 683:1 771:1 869:1 934:1 1074:1 1147:1 1182:1 1187:1 1205:1 1253:1 1311:1 1371:1 1393:1 1395:1 1432:2 1496:1 1523:1 1553:1 1670:1 1696:1 1720:1 1776:1 1801:1 1835:1 1856:1 1858:1 1871:1 1883:1 1962:1 2012:1 2057:3 2181:1 2188:1 2193:1 2203:1 2209:1 2211:1 2214:1 2216:1 2248:1 2295:1 2510:1 2583:1 2602:2 2650:1 2662:1 2705:1 2774:2 2801:1 2831:1 2886:1 2908:1 3002:1 3062:1 3134:2 3138:1 3148:1 3216:1 3324:1 3491:1 3518:1 3621:1 3625:2 3650:1 3709:1 3728:1 3758:1 3815:1 3826:1 3857:2 3858:2 3923:1 4002:1 4020:1 4030:1 4042:1 4115:1 4129:2 4169:1 4174:1 4196:1 4224:1 4249:1 4351:1 4426:1 4471:1 4533:1 4546:1 4567:1 4648:4 4787:1 4789:1 4800:1 4802:1 4810:1 4814:1 4871:1 4944:1 5074:1 5104:1 5126:1 5136:1 5170:1 5222:1 5296:1 5437:1 5739:2 5808:1 5828:1 5913:1 6034:1 6037:1 6045:2 6053:1 6058:1 6060:1 6089:1 6100:1 6147:2 6187:1 6295:1 6327:1 6416:1 6437:1 6457:1 6462:1 6489:2 6493:2 6521:1 6716:1 6779:1 6852:1 6914:2 6954:1 7048:1 7249:1 7250:1 7323:6 7344:2 7345:1 7434:1 7513:1 7539:1 7550:1 7600:1 7650:1 7684:1 7791:1 7817:1 7879:1 7964:1 8035:1 8135:1 8280:1 8282:1 8322:1 8326:1 8439:1 8485:1 8493:1 8503:1 8531:1 8556:1 8620:1 8670:1 8697:1 8816:1 8930:1 8954:1 8979:1 8997:1 9000:1 9007:1 9063:2 9179:1 9215:1 9249:1 9325:1 9418:1 9442:1 9451:1 9486:1 9569:1 9605:1 9696:1 9701:1 9793:1 9823:2 9877:1 9925:1 9974:1 10070:1 10076:1 10153:1 10299:2 10322:1 10371:1 10427:2 10574:1 10684:2 10717:1 10724:1 10784:1 10786:1 10850:1 10965:1 10973:1 10994:1 10995:1 11001:1 11046:1 11149:1 11154:1 11229:1 11245:1 11304:1 11354:1 11410:1 11414:1 11421:1 11422:1 11477:1 11501:1 11611:1 11688:1 11704:1 11876:1 12009:1 12013:1 12018:1 12021:1 12039:1 12235:1 12313:1 12402:1 12404:2 12409:1 12472:2 12522:1 12641:1 12737:1 12743:1 12775:2 12894:1 12896:1 12919:1 12982:1 13001:1 13040:1 13053:1 13097:1 13120:1 13126:1 13270:1 13366:1 13563:1 13628:2 13701:1 13751:1 13757:1 13875:1 13973:1 13989:1 13991:1 13996:1 14106:1 14211:1 14320:1 14418:1 14439:1 14445:1 14451:1 14487:1 14508:1 14577:1 14604:1 14638:1 14841:2 14851:1 14918:1 14924:1 14952:1 15012:3 15170:1 15177:1 15419:1 15495:1 15560:1 15567:1 15568:1 15582:1 15584:1 15655:1 15775:1 15907:1 15962:1 16055:1 16108:1 16139:1 16319:1 16351:1 16399:1 16434:1 16435:1 16518:1 16519:1 16583:1 16592:1 16612:1 16729:1 16762:1 16781:1 16782:1 16915:1 16932:2 17098:1 17110:1 17127:1 17132:1 17235:1 17266:1 17276:1 17415:287 17473:1 17706:1 17845:1 17928:1 18167:1 18232:1 18275:2 18303:1 18306:1 18355:1 18404:1 18412:1 18723:1 18753:1 18801:1 18838:1 18845:1 18886:1 18932:1 18936:1 19014:1 19033:1 19137:1 19148:1 19205:3 19223:1 19370:1 19492:1 19500:1 19520:1 19541:1 19556:2 19568:2 19577:1 19701:1 19753:1 19769:1 19785:1 19819:1 19889:1 19905:1 19942:1 19950:1 20016:1 20025:1 20041:2 20069:1 20143:1 20152:1 20270:1 20399:1 20490:1 20556:1 20559:1 20571:1 20590:1 20685:1 20731:1 20752:1 20803:1 20828:1 20893:1 20960:2 21028:1 21087:1 21167:1 21262:1 21287:1 21376:1 21442:1 21483:1 21547:1 21549:1 21633:1 21640:1 21645:1 21709:1 21816:1 21928:1 21951:1 22043:1 22054:2 22067:1 22125:1 22156:1 22164:1 22171:1 22268:1 22304:1 22381:1 22389:1 22449:1 22491:1 22542:1 22598:1 22686:1 22779:1 22810:1 22946:1 22962:1 22991:1 23010:1 23015:1 23073:1 23096:1 23147:1 23189:1 23252:1 23277:1 23403:1 23493:1 23559:1 23634:1 23646:1 23681:2 23699:1 23720:1 23766:1 23779:1 23791:1 23801:1 23882:1 23907:1 23985:1 24153:1 24288:1 24331:1 24439:1 24470:1 24473:1 24551:1 24570:1 24603:1 24723:1 24807:1 24809:1 24969:2 24972:1 25060:1 25112:1 25221:1 25240:2 25242:1 25265:1 25267:1 25279:1 25288:1 25306:1 25329:1 25333:1 25392:1 25505:1 25508:1 25519:1 25523:1 25561:1 25570:1 25715:1 25738:1 25793:1 25820:1 25900:1 25959:1 25994:1 25997:1 26368:1 26448:1 26508:1 26539:1 26567:1 26655:1 26692:1 26764:1 26807:1 26813:1 26834:2 26921:1 26966:1 26975:1 26982:1 27019:2 27063:1 27078:1 27150:1 27227:1 27390:1 27396:1 27402:1 27433:1 27477:1 27521:1 27534:1 27619:1 27635:1 27716:1 27730:1 27797:1
8 8:1 46:1 47:1 194:3 214:1 240:1 327:1 369:1 441:1 494:1 575:1 627:1 683:1 771:1 869:1 934:1 1045:1 1074:1 1147:1 1182:1 1187:1 1205:1 1238:1 1253:1 1311:1 1371:1 1393:1 1395:2 1411:1 1432:2 1496:1 1523:1 1553:1 1670:2 1696:1 1720:1 1776:1 1801:1 1835:1 1856:1 1858:1 1871:1 1883:1 1956:1 1962:1 2012:1 2057:3 2179:1 2181:1 2188:1 2193:1 2201:1 2203:1 2209:1 2211:1 2214:1 2216:1 2248:1 2252:1 2260:1 2295:1 2510:1 2563:1 2583:1 2602:2 2650:1 2662:1 2705:1 2774:2 2801:1 2831:1 2886:1 2908:1 3002:1 3062:1 3134:2 3137:1 3138:1 3148:1 3216:1 3324:1 3491:1 3506:1 3518:1 3621:1 3625:2 3650:1 3709:2 3728:1 3758:1 3815:1 3826:1 3857:2 3858:2 3923:1 4002:1 4020:1 4030:1 4042:1 4115:1 4129:2 4131:1 4169:1 4174:1 4196:1 4224:1 4249:1 4351:1 4426:1 4471:1 4533:1 4546:1 4567:1 4648:5 4767:1 4787:1 4789:1 4796:1 4800:1 4802:1 4810:1 4813:1 4814:1 4871:1 4944:1 5074:1 5104:1 5126:1 5136:1 5170:1 5212:1 5222:1 5296:1 5313:1 5319:1 5413:1 5437:1 5643:1 5739:3 5808:1 5828:1 5896:1 5913:1 6034:2 6037:1 6045:2 6048:1 6053:1 6058:1 6060:1 6089:1 6100:1 6147:2 6187:1 6295:1 6327:1 6416:1 6437:1 6457:1 6462:1 6475:1 6489:3 6493:2 6519:1 6521:1 6703:1 6716:1 6721:1 6779:1 6816:1 6852:1 6914:2 6954:1 6999:1 7048:1 7073:1 7249:1 7250:1 7323:8 7344:2 7345:1 7434:1 7488:1 7513:1 7539:1 7550:1 7600:1 7650:1 7684:1 7791:2 7817:1 7879:1 7964:1 8035:1 8124:1 8135:1 8161:1 8280:1 8282:1 8322:1 8326:1 8439:1 8484:1 8485:1 8493:1 8503:1 8515:1 8531:1 8556:1 8620:1 8670:1 8697:1 8748:1 8816:1 8907:1 8930:2 8954:1 8979:1 8997:1 9000:1 9007:1 9063:2 9179:1 9215:1 9236:1 9249:1 9325:1 9418:1 9442:1 9451:1 9486:1 9569:1 9605:1 9687:1 9696:1 9701:1 9793:1 9823:2 9877:2 9925:1 9974:1 10070:1 10076:1 10153:1 10299:2 10322:1 10346:1 10371:1 10427:2 10526:1 10574:1 10684:2 10717:1 10724:1 10784:1 10786:1 10850:1 10907:1 10965:1 10973:1 10994:2 10995:1 11001:1 11046:1 11149:1 11154:1 11229:1 11245:1 11304:1 11354:1 11410:1 11414:1 11421:1 11422:1 11447:1 11477:1 11501:1 11611:1 11688:1 11704:1 11756:1 11876:1 12009:1 12013:1 12018:1 12021:1 12039:1 12235:1 12243:1 12313:1 12402:1 12404:2 12409:1 12472:3 12522:1 12641:1 12737:1 12743:1 12775:2 12894:1 12896:1 12919:1 12982:1 12995:1 13001:1 13040:1 13053:1 13080:1 13097:1 13120:1 13126:1 13270:1 13366:1 13563:1 13628:2 13701:1 13751:1 13757:1 13875:1 13969:1 13973:1 13989:1 13991:1 13996:2 14106:1 14211:1 14267:1 14320:1 14418:1 14430:1 14439:1 14445:1 14451:1 14487:1 14508:1 14564:1 14577:1 14586:1 14604:1 14638:1 14809:1 14841:2 14851:1 14918:1 14924:2 14952:1 15012:3 15170:1 15177:1 15187:1 15195:1 15402:1 15419:1 15483:1 15495:1 15513:1 15560:1 15567:1 15568:1 15582:1 15584:1 15655:1 15775:1 15907:1 15962:1 16055:1 16108:1 16139:1 16319:1 16351:1 16399:1 16434:1 16435:1 16518:1 16519:1 16583:1 16592:1 16612:1 16729:1 16762:1 16781:1 16782:1 16915:1 16932:2 17098:1 17110:2 17127:1 17132:1 17183:1 17235:1 17266:1 17276:1 17415:356 17473:1 17505:1 17706:1 17845:1 17917:1 17928:1 17936:1 18142:1 18167:1 18232:2 18275:2 18277:1 18303:1 18306:1 18355:1 18360:1 18404:1 18411:1 18412:1 18543:1 18687:1 18723:1 18753:1 18754:1 18801:1 18838:1 18845:1 18886:1 18932:1 18936:1 19014:1 19033:1 19050:1 19137:1 19148:1 19205:3 19223:1 19370:1 19492:1 19500:1 19520:1 19541:1 19556:3 19559:1 19568:2 19577:1 19701:1 19733:1 19753:1 19769:1 19785:1 19819:1 19889:1 19905:1 19942:1 19950:1 20016:1 20025:1 20041:2 20069:1 20143:1 20152:1 20270:1 20332:1 20399:1 20490:1 20526:1 20556:1 20559:1 20571:1 20590:1 20683:1 20685:1 20731:1 20752:1 20803:1 20828:1 20893:1 20906:1 20960:2 21022:1 21028:1 21087:1 21167:1 21199:1 21262:1 21287:1 21341:1 21375:1 21376:1 21442:1 21483:1 21513:1 21547:1 21549:1 21633:1 21640:1 21645:1 21709:1 21789:1 21816:1 21817:1 21928:1 21951:1 22008:1 22043:1 22054:2 22067:1 22085:1 22125:1 22156:1 22164:1 22171:1 22268:1 22304:1 22381:1 22389:1 22449:1 22491:1 22542:1 22598:1 22686:1 22687:1 22779:1 22810:1 22904:1 22946:1 22962:1 22991:1 23010:1 23015:2 23073:1 23096:2 23147:1 23189:1 23252:1 23277:1 23403:1 23493:2 23559:1 23634:1 23646:1 23669:1 23681:2 23689:1 23699:1 23720:1 23766:1 23779:1 23791:1 23801:1 23882:1 23907:1 23985:1 23996:1 23998:1 24153:1 24288:1 24331:1 24439:1 24470:1 24473:1 24551:1 24562:1 24570:1 24603:1 24704:1 24723:1 24807:1 24809:1 24896:1 24904:1 24969:2 24972:1 25060:1 25112:1 25221:1 25240:2 25242:1 25265:1 25267:1 25279:1 25288:1 25306:1 25329:1 25333:1 25392:1 25496:1 25505:1 25508:1 25519:1 25523:1 25561:1 25568:1 25570:1 25715:1 25738:1 25793:1 25796:1 25802:1 25820:1 25824:1 25871:1 25900:1 25957:1 25959:1 25994:1 25997:1 26007:1 26072:1 26368:1 26439:1 26448:1 26484:1 26508:2 26539:1 26547:1 26567:1 26655:2 26692:1 26764:1 26807:1 26813:1 26834:2 26921:1 26946:1 26966:1 26975:1 26982:1 27019:2 27063:1 27078:1 27096:1 27150:1 27202:1 27227:1 27390:1 27396:1 27402:1 27433:1 27447:1 27477:1 27521:1 27534:1 27569:1 27619:1 27635:1 27689:1 27716:1 27730:1 27797:1
8 8:1 46:1 47:1 194:3 214:1 240:2 327:1 329:1 369:1 432:1 441:1 494:1 575:1 605:1 627:1 683:1 771:1 843:1 869:1 934:1 1045:1 1074:1 1147:1 1176:1 1182:1 1187:1 1191:1 1205:1 1238:1 1253:1 1265:1 1311:1 1371:1 1393:1 1395:2 1411:1 1432:2 1475:1 1496:1 1509:1 1523:1 1553:1 1565:1 1588:1 1644:1 1670:2 1696:1 1720:1 1740:1 1776:1 1801:1 1824:1 1835:1 1856:1 1858:1 1871:1 1883:1 1956:1 1962:1 2012:1 2057:3 2179:1 2181:1 2188:1 2193:1 2196:1 2201:1 2203:1 2209:1 2211:1 2214:1 2216:1 2248:1 2252:1 2260:1 2295:1 2510:1 2563:1 2583:1 2602:2 2649:1 2650:1 2662:1 2705:1 2760:1 2774:2 2801:1 2831:1 2880:1 2886:1 2908:1 3002:1 3062:2 3134:2 3137:1 3138:1 3148:1 3158:1 3216:1 3313:1 3324:1 3491:1 3506:1 3518:1 3614:1 3621:1 3625:2 3646:1 3650:1 3709:2 3728:1 3758:1 3815:1 3826:1 3857:2 3858:2 3923:1 3983:1 4002:1 4020:1 4030:1 4042:1 4115:1 4129:2 4131:1 4152:1 4169:1 4174:1 4196:1 4224:1 4249:1 4281:1 4351:1 4426:2 4471:1 4497:1 4533:1 4546:1 4567:1 4648:5 4669:1 4767:1 4787:1 4789:1 4792:1 4796:1 4800:1 4802:1 4810:1 4813:1 4814:1 4871:1 4944:1 5074:1 5104:2 5126:1 5136:1 5170:1 5212:1 5222:1 5296:1 5313:1 5319:1 5413:1 5437:1 5585:1 5643:1 5710:1 5739:3 5773:1 5808:1 5828:1 5896:1 5913:1 5942:1 6027:1 6034:2 6037:1 6045:2 6047:1 6048:1 6053:1 6058:1 6060:1 6089:1 6100:1 6147:2 6187:1 6295:1 6327:1 6338:1 6416:1 6437:1 6457:1 6462:1 6475:1 6489:3 6493:2 6519:1 6521:1 6592:1 6620:1 6703:1 6716:1 6721:1 6779:1 6816:1 6852:1 6914:2 6954:1 6960:1 6999:1 7048:1 7073:1 7249:1 7250:1 7307:1 7323:8 7344:2 7345:1 7434:1 7488:1 7513:1 7539:1 7550:1 7600:1 7603:1 7650:1 7675:1 7677:1 7684:1 7791:3 7817:1 7879:1 7891:1 7958:1 7964:1 8035:1 8124:1 8125:1 8135:1 8161:1 8280:2 8282:1 8322:1 8326:1 8439:1 8484:1 8485:1 8493:1 8503:1 8515:1 8531:1 8556:1 8620:1 8670:1 8697:1 8748:1 8816:1 8907:1 8930:2 8954:1 8971:1 8979:1 8997:1 9000:1 9007:1 9063:2 9179:2 9215:1 9236:1 9249:1 9325:1 9418:1 9442:1 9451:1 9486:1 9569:1 9571:1 9605:1 9687:1 9696:1 9701:1 9773:1 9793:1 9823:2 9877:2 9917:1 9925:1 9974:1 10066:1 10070:1 10076:1 10153:2 10299:2 10300:1 10322:1 10346:1 10371:1 10398:1 10427:2 10526:1 10574:1 10684:2 10717:1 10724:1 10784:1 10786:1 10850:1 10907:1 10965:1 10973:1 10994:2 10995:1 11001:1 11046:1 11109:1 11149:1 11154:1 11229:1 11245:1 11304:1 11354:1 11387:1 11388:1 11410:1 11414:1 11421:1 11422:1 11447:1 11477:1 11501:1 11611:1 11688:1 11704:1 11735:1 11756:1 11876:1 11945:1 12009:1 12013:1 12018:1 12021:1 12039:1 12167:1 12235:1 12243:1 12313:1 12402:1 12404:3 12409:2 12472:3 12522:1 12557:1 12641:1 12737:2 12743:1 12775:2 12894:1 12896:1 12919:1 12945:1 12951:1 12982:1 12995:1 13001:1 13040:1 13053:1 13067:1 13080:1 13097:1 13120:1 13126:1 13270:1 13310:1 13366:1 13371:1 13563:1 13628:2 13701:1 13751:1 13757:1 13875:1 13969:1 13973:1 13989:1 13991:1 13996:2 14106:1 14211:1 14267:1 14320:1 14418:1 14430:1 14439:1 14445:1 14451:1 14487:1 14508:1 14564:1 14577:1 14586:1 14604:1 14638:1 14809:1 14841:2 14843:1 14851:1 14881:1 14918:1 14924:2 14952:1 14973:1 15012:3 15170:2 15177:1 15187:1 15188:1 15195:1 15352:1 15402:1 15419:1 15483:1 15495:1 15513:1 15560:1 15567:1 15568:1 15582:2 15584:1 15655:1 15775:2 15907:1 15962:1 16055:1 16108:1 16139:1 16319:1 16351:1 16399:2 16434:1 16435:1 16518:1 16519:1 16583:1 16592:1 16612:1 16729:1 16762:1 16781:1 16782:1 16865:1 16915:1 16932:2 17098:1 17110:2 17127:1 17132:1 17183:1 17205:1 17235:1 17266:1 17276:1 17415:422 17473:1 17505:1 17706:1 17845:1 17917:1 17928:1 17936:1 17980:1 18121:1 18142:1 18167:1 18232:2 18275:2 18277:1 18303:1 18306:1 18355:1 18360:1 18404:1 18411:1 18412:1 18543:1 18545:1 18687:1 18723:1 18753:1 18754:1 18755:1 18801:1 18838:1 18845:1 18875:1 18886:1 18932:1 18936:1 19011:1 19014:1 19033:1 19050:1 19137:1 19148:1 19205:3 19223:1 19233:1 19370:1 19441:1 19492:1 19500:1 19520:1 19541:1 19556:3 19559:1 19568:2 19577:1 19701:1 19733:1 19753:1 19769:1 19785:1 19819:1 19852:1 19889:1 19894:1 19905:1 19923:1 19942:1 19950:1 20016:1 20025:1 20039:1 20041:2 20069:1 20070:1 20085:1 20089:1 20143:1 20152:1 20270:1 20332:1 20399:1 20469:1 20490:1 20526:1 20556:1 20559:1 20571:1 20590:1 20683:1 20685:1 20731:1 20752:1 20803:1 20828:1 20893:1 20906:1 20960:2 21022:1 21028:1 21087:1 21167:1 21199:1 21262:1 21287:1 21312:1 21341:1 21375:1 21376:1 21414:1 21442:1 21483:2 21513:2 21547:1 21549:1 21633:1 21640:1 21645:1 21709:1 21737:1 21789:1 21816:1 21817:1 21869:1 21928:1 21951:1 21979:1 22008:1 22043:1 22054:2 22067:1 22085:1 22125:1 22156:1 22164:1 22171:1 22268:1 22304:1 22381:2 22389:1 22449:1 22491:1 22542:1 22545:1 22598:1 22666:1 22686:1 22687:1 22779:1 22810:1 22891:1 22904:1 22946:1 22962:1 22991:1 23010:1 23015:2 23073:1 23096:2 23142:1 23147:1 23189:1 23252:1 23277:1 23369:1 23403:2 23493:2 23559:1 23634:1 23646:1 23669:1 23681:2 23683:1 23689:1 23699:1 23720:1 23766:1 23779:1 23791:1 23801:1 23848:1 23882:1 23907:1 23985:1 23996:1 23998:1 24153:1 24288:1 24331:1 24439:1 24470:1 24473:1 24551:1 24562:1 24570:1 24603:1 24704:1 24723:1 24733:1 24807:1 24809:1 24896:1 24904:1 24969:2 24972:1 25060:1 25097:1 25112:1 25221:1 25240:2 25242:1 25265:1 25267:1 25279:1 25288:1 25306:1 25329:1 25333:1 25392:1 25496:1 25505:1 25508:1 25519:1 25523:1 25561:1 25568:1 25570:1 25672:1 25715:1 25738:2 25793:1 25796:1 25802:1 25820:2 25824:1 25871:1 25900:1 25957:1 25959:1 25994:1 25997:1 26007:1 26072:1 26368:1 26439:1 26446:1 26448:1 26484:1 26508:3 26539:1 26547:1 26567:1 26655:2 26692:1 26764:1 26807:1 26813:1 26834:2 26864:1 26921:1 26946:1 26966:1 26975:1 26982:1 27019:2 27063:1 27078:1 27096:1 27150:2 27202:1 27227:1 27241:1 27390:1 27396:1 27402:1 27433:1 27447:1 27477:1 27521:1 27534:1 27569:1 27619:1 27635:1 27669:1 27689:1 27715:1 27716:1 27730:1 27775:1 27792:1 27797:1
8 8:1 46:1 47:1 190:1 194:3 214:1 240:2 327:1 329:1 369:2 432:1 441:1 494:1 575:1 605:1 627:1 683:1 771:1 843:1 869:1 934:1 973:1 1045:1 1074:1 1147:1 1176:1 1182:1 1187:1 1191:1 1205:1 1238:1 1253:1 1265:1 1311:1 1371:1 1374:1 1393:1 1395:3 1399:1 1411:1 1432:2 1475:2 1496:1 1509:1 1523:1 1553:1 1565:1 1588:1 1607:1 1640:1 1644:1 1670:2 1696:1 1720:1 1740:1 1776:1 1801:2 1824:1 1835:1 1844:1 1856:1 1858:1 1871:1 1883:1 1956:1 1962:1 2012:1 2057:3 2179:1 2181:1 2188:1 2193:1 2196:2 2201:2 2203:1 2209:1 2211:1 2214:1 2216:1 2248:1 2252:1 2260:1 2295:1 2418:1 2510:1 2563:1 2583:1 2602:2 2649:1 2650:1 2662:1 2705:1 2731:1 2760:1 2774:2 2801:1 2803:1 2831:1 2880:1 2885:1 2886:1 2908:1 3002:1 3062:2 3134:2 3137:1 3138:1 3148:1 3158:1 3216:1 3313:1 3324:1 3491:1 3506:1 3518:1 3614:1 3621:1 3625:2 3646:1 3650:1 3709:2 3728:1 3758:1 3815:1 3818:1 3826:1 3857:2 3858:2 3923:1 3983:1 4002:1 4020:1 4030:1 4042:1 4109:1 4115:1 4129:2 4131:1 4152:1 4169:1 4174:1 4196:1 4224:1 4235:1 4249:1 4281:2 4351:1 4426:2 4462:1 4471:1 4497:1 4533:1 4546:1 4567:1 4648:5 4669:1 4767:1 4787:1 4789:1 4792:1 4796:1 4800:1 4802:1 4810:1 4813:1 4814:1 4871:1 4944:1 4994:1 5074:1 5104:2 5126:1 5136:1 5170:1 5212:1 5222:1 5296:1 5313:1 5315:1 5319:1 5413:1 5437:1 5585:1 5643:2 5710:1 5739:3 5760:1 5773:1 5808:1 5828:1 5896:1 5913:1 5942:2 6027:1 6034:2 6037:1 6041:1 6045:2 6047:1 6048:1 6053:1 6058:1 6060:1 6089:1 6100:1 6101:1 6147:2 6187:1 6295:1 6327:1 6338:1 6416:1 6437:1 6457:2 6462:1 6475:1 6489:3 6493:2 6519:2 6521:1 6592:1 6596:1 6620:1 6625:2 6703:1 6716:1 6721:1 6779:1 6816:3 6852:1 6860:1 6903:1 6914:2 6954:1 6960:1 6999:1 7048:1 7073:1 7249:1 7250:1 7274:1 7307:1 7323:9 7344:2 7345:2 7434:1 7488:1 7513:1 7525:1 7539:1 7550:1 7563:1 7600:1 7603:1 7650:1 7675:1 7677:1 7684:1 7791:3 7812:1 7817:1 7879:1 7891:1 7958:1 7964:1 8035:1 8122:1 8124:1 8125:1 8126:1 8128:2 8135:1 8161:1 8280:2 8282:1 8322:1 8326:1 8406:1 8439:1 8484:1 8485:1 8493:1 8503:1 8515:1 8531:1 8556:2 8575:1 8620:1 8670:1 8697:1 8748:1 8816:1 8907:1 8930:2 8954:1 8971:1 8979:1 8997:1 9000:1 9007:1 9016:1 9063:2 9073:1 9179:2 9215:1 9236:1 9249:1 9267:1 9325:1 9385:1 9418:1 9442:1 9451:1 9486:1 9569:1 9571:1 9605:1 9687:1 9696:1 9701:1 9773:1 9793:1 9823:2 9870:1 9877:3 9917:1 9925:1 9974:1 10066:1 10070:1 10076:1 10121:1 10153:2 10299:2 10300:1 10322:1 10346:1 10371:1 10398:1 10404:1 10427:2 10526:1 10574:1 10684:2 10717:1 10724:1 10778:1 10784:1 10786:1 10821:1 10850:1 10907:1 10965:1 10973:1 10994:2 10995:1 11001:1 11046:1 11109:1 11149:1 11154:1 11229:1 11245:1 11304:1 11354:1 11387:1 11388:1 11410:1 11414:1 11421:1 11422:1 11447:1 11477:1 11501:1 11611:1 11688:1 11704:1 11735:1 11756:1 11876:1 11945:1 12009:1 12013:1 12018:1 12021:1 12039:1 12167:1 12235:1 12243:1 12313:1 12402:1 12404:3 12409:2 12472:6 12522:1 12557:1 12641:1 12661:1 12737:2 12743:1 12775:2 12894:1 12896:1 12919:1 12945:1 12951:1 12982:1 12995:1 13001:1 13040:1 13053:1 13067:1 13080:1 13097:1 13120:1 13126:1 13270:1 13310:1 13366:1 13371:1 13563:1 13628:2 13701:1 13751:1 13757:1 13875:1 13969:1 13973:1 13989:1 13991:1 13996:2 14045:1 14106:1 14211:1 14267:1 14320:1 14418:1 14430:1 14439:1 14445:1 14451:1 14487:1 14508:1 14564:1 14577:1 14586:1 14604:1 14622:1 14638:1 14809:1 14841:2 14843:1 14851:1 14881:1 14918:1 14924:5 14952:1 14973:1 15012:3 15170:2 15177:1 15187:1 15188:1 15195:1 15352:1 15402:1 15419:1 15442:1 15483:2 15495:1 15513:1 15560:1 15567:1 15568:1 15582:2 15584:1 15629:1 15655:2 15775:2 15907:1 15962:1 16028:1 16055:1 16108:1 16139:1 16319:1 16351:1 16399:2 16434:1 16435:1 16518:1 16519:1 16531:1 16583:1 16592:1 16612:1 16729:1 16762:1 16781:1 16782:1 16807:1 16865:1 16915:1 16932:2 17098:1 17110:3 17127:1 17132:1 17183:1 17205:1 17235:1 17266:1 17276:1 17326:1 17415:510 17473:1 17505:1 17594:1 17600:1 17706:1 17845:1 17917:1 17928:1 17936:1 17980:1 18074:1 18121:1 18142:1 18167:1 18232:3 18275:2 18277:1 18303:1 18306:1 18324:1 18335:1 18355:1 18359:1 18360:1 18404:1 18411:1 18412:1 18543:1 18545:1 18687:1 18723:1 18753:1 18754:1 18755:2 18801:1 18838:1 18845:1 18875:1 18884:1 18886:1 18893:1 18932:1 18936:1 18947:1 18966:1 19011:1 19014:1 19033:1 19050:1 19137:1 19148:1 19205:3 19213:1 19223:1 19233:1 19370:1 19441:1 19492:1 19500:1 19520:1 19541:1 19556:3 19559:1 19568:2 19577:1 19582:1 19607:1 19701:1 19733:1 19753:1 19769:1 19785:1 19797:1 19819:1 19852:1 19889:1 19894:1 19905:1 19923:1 19942:1 19950:1 20016:1 20025:1 20039:1 20041:2 20069:1 20070:1 20085:1 20089:1 20143:1 20152:1 20270:1 20332:1 20399:1 20447:1 20469:1 20490:1 20526:1 20556:1 20559:1 20571:1 20590:1 20683:1 20685:1 20731:1 20752:1 20755:2 20803:1 20828:1 20893:1 20906:1 20960:2 21022:1 21028:1 21087:1 21167:1 21199:1 21262:1 21287:1 21312:1 21341:1 21375:1 21376:1 21414:1 21442:1 21483:2 21513:2 21547:1 21549:1 21633:1 21640:1 21645:1 21703:1 21709:1 21735:1 21737:1 21789:1 21816:2 21817:1 21869:1 21928:1 21930:1 21951:1 21979:1 22008:1 22043:1 22054:2 22067:1 22085:1 22125:2 22156:1 22164:1 22171:1 22268:1 22304:1 22381:2 22389:1 22449:1 22466:1 22491:1 22542:1 22545:1 22598:1 22666:1 22686:1 22687:1 22779:1 22810:1 22891:1 22904:1 22946:1 22962:1 22991:1 22996:1 23010:1 23015:2 23073:1 23096:2 23142:1 23147:1 23189:1 23252:1 23277:1 23369:1 23403:2 23493:2 23559:1 23634:1 23646:1 23669:1 23681:2 23683:1 23689:1 23692:1 23699:1 23718:1 23720:1 23721:1 23766:1 23779:1 23791:1 23801:1 23848:1 23862:1 23882:1 23907:1 23985:1 23996:1 23998:1 24153:1 24288:1 24331:1 24340:1 24439:1 24470:1 24473:1 24497:1 24551:1 24562:1 24570:1 24603:1 24704:1 24723:1 24733:1 24807:1 24809:1 24896:1 24904:1 24969:2 24972:1 25060:1 25097:1 25112:1 25159:1 25221:1 25240:2 25242:1 25265:1 25267:1 25279:1 25288:1 25306:1 25309:1 25329:1 25333:2 25392:1 25496:1 25505:1 25508:1 25513:1 25519:1 25523:1 25561:1 25568:2 25570:1 25572:1 25672:1 25715:1 25738:2 25793:1 25796:1 25802:1 25820:2 25824:1 25870:1 25871:1 25872:1 25900:2 25925:1 25957:1 25959:1 25994:1 25997:1 26007:1 26072:1 26368:1 26439:1 26446:1 26448:1 26484:1 26508:7 26539:1 26547:1 26567:1 26655:2 26692:1 26764:1 26807:1 26813:1 26834:2 26864:1 26921:1 26946:1 26966:1 26975:1 26982:1 27019:2 27063:1 27078:1 27096:1 27150:2 27154:1 27202:1 27227:1 27241:1 27390:1 27396:1 27402:1 27433:1 27447:1 27477:1 27521:1 27534:1 27564:1 27569:1 27619:1 27635:1 27669:1 27689:1 27706:1 27715:1 27716:1 27723:1 27730:1 27775:1 27792:1 27797:1
8 8:1 46:1 47:2 190:1 194:3 214:1 240:2 327:1 329:1 369:2 432:1 441:1 486:1 494:1 575:1 605:1 627:1 683:1 771:1 843:1 869:1 891:1 934:1 973:1 1045:1 1052:1 1074:1 1147:1 1176:1 1182:1 1187:1 1191:1 1205:1 1238:1 1253:1 1265:1 1311:1 1324:1 1371:1 1374:1 1393:2 1395:4 1399:1 1411:1 1424:1 1432:2 1475:2 1496:1 1509:2 1523:2 1553:1 1565:1 1588:1 1607:1 1640:1 1644:1 1670:2 1692:1 1696:1 1720:1 1740:1 1769:1 1776:1 1801:2 1824:1 1835:1 1844:1 1856:1 1858:1 1859:1 1871:1 1883:1 1956:1 1962:1 2012:1 2057:3 2179:1 2181:1 2188:1 2193:1 2196:2 2201:3 2203:1 2209:1 2211:1 2214:1 2216:1 2248:1 2252:1 2260:1 2295:1 2418:1 2510:1 2563:1 2583:1 2598:1 2602:2 2649:1 2650:1 2662:1 2676:1 2705:1 2731:1 2760:1 2766:1 2774:2 2801:1 2803:1 2831:1 2880:1 2885:1 2886:1 2908:1 3002:1 3010:1 3062:2 3090:1 3134:3 3137:1 3138:1 3148:1 3158:1 3174:1 3216:1 3313:2 3324:1 3434:1 3481:1 3491:1 3506:1 3518:1 3614:1 3621:1 3625:2 3646:1 3650:1 3709:2 3728:1 3758:1 3807:1 3815:1 3818:1 3826:1 3857:2 3858:2 3923:1 3940:1 3983:1 4002:1 4020:2 4030:1 4035:1 4042:1 4109:1 4115:1 4129:2 4131:1 4152:1 4169:1 4174:1 4196:1 4224:1 4235:1 4249:1 4281:2 4351:1 4400:1 4426:2 4462:1 4471:1 4497:2 4533:1 4546:1 4567:1 4648:6 4669:1 4670:1 4673:1 4767:1 4787:2 4789:1 4792:1 4796:1 4800:1 4802:1 4810:1 4813:1 4814:2 4871:1 4944:1 4994:1 5010:1 5074:1 5104:2 5126:1 5136:1 5170:1 5212:1 5222:2 5296:1 5313:1 5315:1 5319:1 5320:1 5413:1 5423:1 5437:1 5585:1 5587:1 5593:1 5643:2 5710:1 5739:3 5760:1 5773:1 5808:1 5828:1 5896:1 5913:1 5942:2 6027:1 6034:2 6037:1 6041:1 6045:3 6047:1 6048:1 6053:1 6058:1 6060:1 6089:1 6100:1 6101:1 6121:1 6147:2 6187:1 6295:1 6327:1 6338:1 6416:1 6433:1 6437:1 6457:2 6462:1 6475:1 6489:3 6493:2 6508:1 6519:2 6521:2 6592:1 6596:1 6597:1 6620:1 6625:2 6703:1 6716:1 6721:1 6779:1 6816:3 6818:1 6852:1 6860:1 6890:1 6903:1 6914:2 6954:1 6960:1 6999:1 7048:1 7073:1 7249:1 7250:1 7274:1 7307:1 7323:10 7344:2 7345:2 7434:1 7488:1 7513:1 7525:1 7539:1 7550:1 7563:1 7600:1 7603:1 7650:1 7675:1 7677:1 7684:1 7791:3 7812:1 7815:1 7817:1 7879:1 7891:1 7958:1 7964:1 8035:1 8122:1 8124:1 8125:1 8126:1 8128:2 8135:1 8161:1 8280:2 8282:1 8322:1 8326:1 8362:1 8397:1 8406:1 8439:1 8441:1 8484:1 8485:1 8493:1 8503:1 8515:1 8531:1 8556:2 8558:1 8575:1 8620:1 8670:2 8697:1 8748:1 8752:1 8816:1 8907:1 8930:2 8954:1 8971:1 8979:1 8997:1 9000:1 9007:1 9016:1 9063:2 9073:1 9179:2 9215:1 9236:1 9249:2 9267:1 9325:1 9385:1 9418:1 9442:1 9451:1 9486:1 9569:1 9571:1 9605:1 9687:1 9696:1 9701:1 9707:1 9773:1 9788:1 9793:1 9799:1 9823:2 9870:1 9877:4 9917:2 9925:1 9974:1 10013:1 10066:1 10070:1 10076:1 10121:1 10153:2 10167:1 10281:1 10299:2 10300:1 10322:1 10346:1 10371:1 10398:1 10404:1 10410:1 10427:2 10526:1 10574:1 10646:1 10684:2 10717:1 10724:1 10778:1 10784:1 10786:1 10821:1 10850:1 10907:1 10965:2 10973:1 10994:2 10995:1 11001:1 11046:1 11109:1 11149:1 11154:1 11176:1 11229:1 11245:1 11252:1 11304:1 11354:1 11355:1 11387:1 11388:1 11410:1 11414:1 11421:1 11422:1 11447:1 11477:1 11501:1 11515:1 11611:1 11688:1 11704:1 11735:1 11756:1 11860:1 11876:1 11945:1 11960:1 12009:1 12013:1 12018:1 12021:1 12039:1 12167:1 12235:1 12243:1 12271:1 12313:1 12402:1 12404:3 12409:2 12472:7 12522:1 12557:1 12641:1 12661:1 12737:2 12743:1 12775:2 12894:1 12896:1 12919:1 12945:1 12951:1 12982:1 12995:1 13001:1 13040:1 13053:1 13067:1 13080:1 13097:1 13120:1 13126:1 13155:1 13187:1 13270:1 13310:1 13366:1 13371:1 13459:1 13498:1 13563:1 13628:2 13701:1 13744:1 13751:1 13757:1 13875:1 13969:1 13973:1 13989:1 13991:1 13996:2 14045:1 14106:1 14211:1 14267:1 14320:1 14418:1 14430:1 14439:1 14445:1 14451:1 14487:1 14508:1 14564:1 14577:1 14586:1 14604:1 14622:1 14638:1 14809:1 14818:1 14841:2 14843:1 14851:1 14881:1 14901:1 14918:1 14924:5 14952:2 14973:1 15012:4 15018:1 15170:2 15177:1 15187:1 15188:1 15195:1 15207:1 15352:1 15402:1 15419:1 15442:1 15483:2 15495:1 15513:1 15560:1 15567:2 15568:1 15582:2 15584:1 15629:1 15655:2 15775:2 15839:1 15907:1 15962:1 16028:1 16055:1 16108:1 16139:1 16319:1 16351:1 16399:2 16434:1 16435:1 16518:1 16519:1 16531:1 16583:1 16592:1 16612:1 16729:1 16762:1 16781:1 16782:1 16807:1 16865:1 16915:1 16932:2 17098:1 17110:4 17127:1 17132:1 17183:1 17205:1 17235:1 17262:1 17266:1 17276:1 17326:1 17415:573 17473:1 17505:1 17594:1 17600:1 17706:2 17845:1 17917:1 17928:1 17931:1 17936:1 17980:1 18074:1 18121:1 18142:1 18167:1 18187:1 18232:4 18275:2 18277:1 18303:1 18306:1 18324:1 18335:1 18355:1 18359:1 18360:1 18404:1 18411:1 18412:1 18543:1 18545:1 18687:1 18703:1 18723:1 18753:1 18754:1 18755:2 18801:1 18805:1 18838:1 18845:1 18875:1 18884:1 18886:1 18893:1 18901:1 18932:1 18936:1 18947:1 18966:1 19011:1 19014:1 19033:1 19050:1 19109:1 19137:1 19148:1 19205:3 19213:1 19223:1 19233:1 19370:1 19407:1 19441:1 19492:1 19500:2 19502:1 19520:1 19541:1 19556:3 19559:1 19568:2 19577:1 19582:1 19607:1 19689:1 19701:1 19731:1 19733:1 19753:1 19769:1 19785:1 19797:1 19819:2 19852:1 19857:1 19877:1 19889:2 19894:1 19905:1 19923:1 19942:1 19950:1 20016:1 20025:1 20039:1 20041:3 20069:1 20070:1 20085:1 20089:1 20143:1 20152:1 20270:1 20332:1 20399:1 20447:1 20469:1 20490:1 20526:1 20548:1 20556:1 20559:1 20571:1 20590:1 20596:1 20683:1 20685:1 20730:1 20731:1 20752:1 20755:2 20803:1 20828:1 20893:1 20906:1 20960:3 21022:1 21028:1 21057:1 21087:1 21167:1 21186:1 21199:1 21262:1 21284:1 21287:1 21312:1 21341:1 21354:1 21375:1 21376:1 21414:1 21442:1 21480:1 21483:2 21496:1 21513:2 21547:1 21549:1 21633:1 21640:1 21645:1 21703:2 21709:1 21728:1 21735:1 21737:1 21789:1 21816:2 21817:1 21869:1 21928:1 21930:1 21951:1 21966:1 21979:1 21985:1 22008:1 22043:1 22054:2 22067:1 22085:1 22125:2 22156:1 22164:1 22171:1 22268:1 22304:1 22381:2 22389:1 22449:1 22466:1 22491:1 22542:1 22545:2 22598:1 22666:2 22686:1 22687:1 22724:1 22779:1 22810:1 22891:1 22904:1 22946:1 22962:1 22991:1 22996:1 23010:1 23013:1 23015:2 23073:2 23096:2 23136:1 23142:1 23147:1 23189:1 23252:1 23277:2 23369:1 23403:2 23493:2 23496:1 23559:1 23634:1 23646:1 23669:1 23681:2 23683:1 23689:1 23692:1 23699:1 23718:1 23720:1 23721:1 23766:1 23779:1 23791:1 23801:1 23848:2 23862:1 23882:1 23907:1 23985:1 23996:1 23998:1 24153:1 24288:1 24331:1 24340:1 24434:1 24439:1 24470:1 24473:1 24497:1 24551:1 24562:1 24570:1 24603:1 24704:1 24723:1 24733:1 24807:1 24809:1 24896:1 24904:1 24969:2 24972:1 25060:1 25097:1 25112:1 25114:1 25159:1 25221:1 25240:2 25242:1 25265:1 25267:1 25279:1 25288:1 25306:1 25309:1 25323:1 25329:1 25333:2 25363:1 25392:1 25496:1 25505:1 25507:1 25508:1 25513:1 25519:1 25523:1 25561:1 25568:2 25570:1 25572:1 25651:1 25672:1 25715:1 25738:2 25793:1 25796:1 25802:1 25820:2 25824:1 25826:1 25870:1 25871:1 25872:1 25900:2 25925:1 25928:1 25957:1 25959:1 25994:1 25997:1 26007:1 26072:1 26368:1 26439:1 26446:1 26448:1 26484:1 26508:7 26513:1 26539:1 26547:1 26567:1 26610:1 26622:1 26655:2 26692:1 26764:1 26807:1 26813:1 26834:2 26864:1 26921:1 26946:1 26966:1 26975:1 26982:1 27019:2 27063:1 27078:1 27096:1 27150:2 27154:1 27202:1 27227:1 27236:1 27241:1 27390:1 27396:1 27402:1 27433:1 27447:1 27477:1 27521:1 27534:1 27564:1 27569:1 27619:1 27635:1 27669:1 27689:1 27706:1 27715:1 27716:1 27723:1 27730:1 27775:1 27792:1 27797:1
8 8:1 46:1 47:2 88:1 181:1 190:1 194:3 214:1 240:2 327:1 329:1 369:2 432:1 441:1 486:1 494:1 575:1 605:1 627:1 683:1 771:1 843:1 869:1 891:1 934:1 970:1 973:1 1045:1 1052:1 1074:1 1147:1 1176:1 1182:1 1187:1 1191:1 1205:1 1238:1 1253:1 1255:1 1265:1 1296:1 1311:1 1324:1 1371:1 1374:1 1393:2 1395:4 1399:1 1411:1 1424:1 1432:2 1468:1 1475:2 1496:1 1509:2 1523:2 1553:1 1565:1 1588:1 1607:1 1612:1 1640:1 1644:1 1670:2 1692:1 1696:1 1720:1 1740:1 1769:1 1776:1 1801:2 1818:1 1824:1 1835:1 1844:1 1856:1 1858:1 1859:1 1871:1 1883:1 1956:1 1962:1 2012:1 2057:3 2179:1 2181:1 2185:1 2188:1 2193:1 2196:2 2201:3 2203:1 2209:1 2211:1 2214:1 2216:1 2248:1 2252:1 2260:2 2295:1 2418:1 2510:1 2563:1 2583:1 2598:1 2602:2 2649:1 2650:1 2662:1 2676:1 2705:1 2731:1 2760:1 2766:1 2774:2 2801:1 2803:1 2831:1 2880:1 2885:1 2886:1 2908:1 3002:1 3010:1 3062:2 3090:1 3131:1 3134:3 3137:1 3138:1 3148:1 3158:1 3174:1 3216:1 3313:2 3324:1 3434:1 3481:1 3491:1 3506:1 3518:1 3614:1 3621:1 3625:2 3646:1 3650:1 3709:2 3728:1 3758:1 3764:1 3807:1 3815:1 3818:1 3826:1 3857:2 3858:2 3923:1 3940:1 3983:1 4002:1 4020:2 4030:2 4035:1 4042:1 4109:1 4115:1 4129:2 4131:1 4152:1 4169:1 4174:1 4196:1 4224:1 4235:1 4249:1 4281:2 4351:1 4400:1 4426:2 4462:1 4471:1 4497:2 4533:1 4546:1 4567:1 4648:6 4669:1 4670:1 4673:1 4767:1 4787:3 4789:1 4792:1 4796:1 4800:1 4802:1 4810:1 4813:1 4814:3 4871:1 4944:1 4994:1 5002:1 5010:1 5074:1 5104:2 5126:1 5136:1 5170:1 5212:1 5222:2 5286:1 5296:1 5313:1 5315:1 5319:1 5320:1 5322:1 5413:1 5423:1 5437:1 5585:1 5587:1 5593:1 5643:2 5710:1 5739:3 5760:1 5773:1 5808:1 5828:1 5832:1 5896:1 5913:1 5942:2 5993:1 6027:1 6034:2 6037:1 6041:1 6045:3 6047:1 6048:1 6053:1 6058:1 6060:2 6089:1 6100:1 6101:1 6121:1 6147:2 6187:1 6256:1 6295:1 6327:1 6338:1 6416:1 6433:1 6437:1 6457:2 6462:1 6475:1 6486:1 6489:3 6493:2 6508:1 6519:2 6521:2 6592:1 6596:1 6597:1 6612:1 6620:1 6625:2 6703:1 6707:1 6716:1 6721:1 6768:1 6779:1 6816:3 6818:1 6852:1 6860:1 6890:1 6903:1 6914:2 6954:1 6960:1 6999:1 7011:1 7048:1 7073:2 7249:2 7250:1 7274:1 7307:1 7323:11 7344:2 7345:2 7434:1 7488:1 7513:1 7525:1 7539:1 7550:1 7563:1 7600:1 7603:1 7650:1 7675:1 7677:1 7684:1 7791:3 7812:1 7815:1 7817:1 7879:1 7891:1 7922:1 7957:1 7958:1 7964:1 8035:1 8116:1 8122:1 8124:1 8125:2 8126:1 8128:2 8135:1 8161:1 8280:2 8282:1 8322:1 8326:1 8362:1 8397:1 8406:1 8439:1 8441:1 8484:1 8485:1 8493:1 8503:1 8515:1 8531:1 8556:2 8558:1 8575:1 8620:1 8670:2 8697:1 8748:1 8752:1 8816:1 8907:1 8930:2 8954:1 8971:1 8979:1 8997:1 9000:1 9007:1 9016:1 9063:2 9073:1 9179:2 9215:1 9236:1 9249:2 9267:1 9325:1 9385:1 9418:1 9442:1 9451:1 9473:1 9486:1 9569:1 9571:1 9605:1 9687:1 9696:1 9701:1 9707:1 9773:1 9788:1 9793:1 9799:1 9823:2 9870:1 9877:4 9917:3 9925:1 9974:1 10013:1 10066:1 10070:1 10076:1 10121:1 10153:2 10167:1 10276:1 10281:1 10299:2 10300:1 10322:1 10346:1 10371:1 10398:1 10404:1 10410:1 10427:2 10526:1 10564:1 10574:1 10646:1 10684:2 10717:1 10724:1 10778:1 10784:1 10786:1 10821:1 10850:1 10907:1 10965:2 10973:1 10994:2 10995:1 11001:1 11046:1 11109:1 11149:1 11154:1 11176:1 11229:1 11245:1 11252:1 11304:1 11354:1 11355:1 11387:1 11388:1 11410:1 11414:1 11421:1 11422:1 11437:1 11447:1 11477:1 11501:1 11515:1 11611:1 11688:1 11704:1 11735:1 11756:1 11860:1 11876:1 11945:1 11960:1 12009:1 12013:1 12018:1 12021:1 12039:1 12167:1 12235:2 12242:1 12243:1 12271:2 12313:1 12402:2 12404:3 12409:2 12472:7 12522:1 12557:1 12641:1 12661:1 12710:1 12737:2 12743:1 12775:2 12894:1 12896:1 12919:1 12945:1 12951:1 12982:1 12995:1 13001:1 13040:1 13053:1 13067:1 13080:1 13097:1 13120:1 13126:1 13155:1 13187:1 13247:1 13270:1 13310:1 13366:1 13371:1 13459:1 13476:1 13498:1 13563:1 13586:1 13628:2 13701:1 13744:1 13751:1 13757:1 13875:1 13969:1 13973:1 13989:1 13991:1 13996:2 14045:1 14106:1 14211:1 14267:1 14320:1 14418:1 14430:1 14439:1 14445:1 14451:1 14487:1 14508:1 14564:1 14577:1 14586:1 14604:1 14622:1 14635:1 14638:1 14672:1 14809:1 14818:1 14841:2 14843:1 14851:1 14881:1 14901:1 14918:1 14924:5 14952:2 14973:1 15012:4 15018:1 15083:1 15145:1 15170:2 15177:1 15187:1 15188:1 15195:1 15207:1 15352:1 15372:1 15402:1 15419:1 15442:1 15483:2 15495:1 15513:1 15539:1 15560:1 15567:2 15568:1 15582:2 15584:1 15629:1 15655:2 15762:1 15775:2 15839:1 15863:1 15896:1 15907:1 15962:1 16028:1 16055:1 16108:1 16139:1 16319:1 16329:1 16351:1 16399:2 16434:1 16435:1 16518:1 16519:1 16531:1 16583:1 16592:1 16612:1 16729:1 16762:1 16781:1 16782:1 16807:1 16865:1 16915:1 16932:2 17098:1 17110:4 17127:1 17132:1 17183:1 17205:1 17235:1 17262:1 17266:1 17276:1 17326:1 17410:1 17415:610 17473:1 17505:1 17594:1 17600:1 17706:2 17845:1 17911:1 17917:1 17928:1 17931:1 17936:1 17980:1 18074:1 18121:1 18142:1 18167:1 18187:1 18232:4 18275:2 18277:1 18303:1 18306:1 18324:1 18335:1 18355:1 18359:1 18360:1 18378:1 18404:1 18411:1 18412:1 18543:1 18545:1 18687:1 18703:1 18723:1 18753:1 18754:1 18755:2 18770:1 18801:1 18805:1 18838:1 18845:1 18875:1 18884:1 18886:1 18893:1 18901:1 18932:1 18936:1 18947:1 18966:1 19011:1 19014:1 19033:1 19050:1 19109:1 19137:1 19148:1 19205:3 19213:1 19223:1 19233:1 19370:1 19407:1 19441:1 19492:1 19500:2 19502:1 19520:1 19541:1 19556:3 19559:1 19568:2 19577:1 19582:1 19607:1 19689:1 19701:1 19731:1 19733:1 19753:1 19769:1 19785:2 19797:1 19819:2 19852:1 19857:1 19877:1 19889:2 19894:1 19905:1 19923:1 19942:1 19950:1 20016:1 20025:1 20039:1 20041:3 20069:1 20070:1 20085:1 20089:1 20143:1 20152:1 20270:1 20332:1 20399:1 20411:1 20447:1 20469:1 20490:1 20526:2 20548:1 20556:1 20559:2 20571:1 20590:1 20596:1 20608:1 20683:1 20685:1 20730:1 20731:1 20752:2 20755:2 20803:1 20828:1 20893:1 20906:1 20960:3 21002:1 21022:1 21028:1 21057:1 21087:1 21167:1 21186:1 21199:1 21262:1 21284:1 21287:1 21312:1 21341:1 21354:1 21375:1 21376:1 21414:1 21442:1 21480:1 21483:2 21496:1 21513:2 21547:1 21549:1 21633:2 21640:1 21645:1 21703:2 21709:1 21728:1 21735:1 21737:1 21789:1 21816:2 21817:1 21869:1 21891:1 21928:1 21930:1 21951:1 21966:1 21979:1 21985:1 22008:1 22043:1 22054:2 22067:1 22085:1 22125:3 22156:1 22164:1 22171:1 22268:1 22304:1 22381:2 22386:1 22389:1 22449:1 22466:1 22491:1 22542:1 22545:2 22575:1 22598:1 22604:1 22666:2 22686:1 22687:1 22724:1 22779:1 22791:1 22810:1 22891:1 22904:1 22946:1 22962:1 22991:1 22996:1 23010:1 23013:1 23015:2 23073:2 23096:2 23136:1 23142:1 23147:1 23189:1 23252:1 23277:2 23369:1 23403:2 23493:2 23496:1 23559:1 23634:1 23646:1 23669:1 23681:2 23683:1 23689:1 23692:1 23699:1 23718:1 23720:1 23721:1 23766:1 23779:1 23791:1 23801:1 23848:2 23862:1 23882:1 23907:2 23973:1 23985:1 23996:1 23998:1 24153:1 24288:1 24310:1 24331:1 24340:2 24434:1 24439:1 24470:1 24473:1 24497:1 24507:1 24551:1 24562:1 24570:1 24603:1 24704:1 24723:1 24733:1 24807:1 24809:1 24896:1 24904:1 24969:2 24972:1 25060:1 25097:1 25112:1 25114:1 25115:1 25159:1 25221:1 25240:2 25242:1 25265:1 25267:1 25279:1 25288:1 25306:1 25309:1 25323:1 25329:1 25333:2 25363:1 25387:1 25392:1 25496:1 25505:1 25507:1 25508:1 25513:1 25517:1 25519:1 25523:1 25561:1 25568:2 25570:1 25572:1 25651:1 25672:1 25715:1 25738:2 25793:1 25796:1 25802:2 25820:2 25824:1 25826:1 25870:1 25871:2 25872:1 25900:2 25925:1 25927:1 25928:1 25957:1 25959:1 25994:1 25997:1 26007:1 26072:1 26211:1 26368:1 26439:1 26446:1 26448:1 26484:1 26508:9 26513:1 26539:1 26547:1 26567:1 26610:1 26622:1 26655:2 26692:2 26764:1 26807:1 26813:1 26834:2 26864:1 26921:1 26946:1 26966:1 26975:1 26982:1 27019:2 27063:1 27073:1 27078:1 27096:1 27150:2 27154:1 27202:1 27227:1 27236:1 27241:1 27390:1 27396:1 27402:1 27433:1 27447:1 27477:1 27521:1 27534:1 27564:1 27569:1 27619:1 27635:1 27669:1 27689:1 27706:1 27715:1 27716:1 27723:1 27730:1 27734:1 27739:1 27775:1 27792:1 27797:1
8 8:1 46:1 47:2 88:1 102:1 121:1 160:1 162:1 181:1 190:1 194:3 214:1 240:2 327:1 329:1 369:2 432:1 441:1 486:1 494:1 575:1 605:1 627:1 683:1 771:1 843:3 856:1 869:1 891:1 934:1 970:1 973:1 1045:1 1052:1 1074:1 1086:1 1147:1 1176:1 1182:1 1187:1 1191:1 1205:1 1210:1 1238:1 1253:1 1255:1 1265:1 1296:1 1311:1 1324:1 1332:1 1371:1 1374:1 1393:2 1395:4 1399:1 1411:1 1424:1 1432:3 1468:1 1475:2 1496:1 1509:2 1523:2 1553:1 1565:1 1588:1 1607:1 1612:1 1640:1 1644:1 1670:2 1692:1 1696:1 1720:1 1738:1 1740:1 1769:1 1776:1 1787:1 1801:2 1818:2 1824:1 1835:1 1844:1 1856:1 1858:1 1859:1 1871:1 1883:1 1956:1 1962:1 2012:1 2057:3 2145:1 2179:1 2181:1 2185:2 2188:1 2193:1 2196:2 2201:3 2203:1 2209:1 2211:1 2214:1 2216:1 2248:1 2252:1 2260:2 2295:1 2380:1 2418:1 2510:1 2547:1 2563:1 2583:1 2598:1 2602:2 2649:1 2650:1 2662:1 2676:1 2705:1 2731:1 2760:1 2766:1 2774:3 2801:1 2803:1 2831:1 2880:1 2885:1 2886:1 2908:1 3002:1 3010:1 3062:2 3090:1 3131:1 3134:3 3137:1 3138:1 3148:1 3158:2 3174:1 3216:1 3313:2 3324:1 3434:1 3481:1 3491:1 3506:1 3518:2 3614:1 3621:1 3625:2 3646:1 3650:1 3692:1 3709:2 3728:1 3758:1 3764:1 3807:1 3815:1 3818:1 3826:1 3857:2 3858:2 3916:1 3923:1 3940:1 3983:1 4002:1 4020:2 4030:2 4035:2 4042:1 4109:1 4115:1 4129:3 4131:1 4152:2 4169:1 4174:1 4196:1 4224:1 4235:1 4249:1 4281:2 4351:1 4400:1 4426:2 4462:1 4471:1 4497:2 4533:1 4546:1 4567:1 4648:7 4669:1 4670:1 4673:1 4767:1 4787:4 4789:2 4792:1 4796:1 4800:1 4802:1 4810:1 4813:1 4814:3 4871:1 4903:1 4944:1 4994:1 5002:1 5010:1 5074:1 5092:1 5104:2 5126:1 5136:1 5170:1 5212:1 5222:2 5286:1 5296:1 5313:1 5315:2 5319:1 5320:1 5322:1 5413:1 5422:1 5423:1 5437:1 5585:1 5587:1 5593:1 5643:2 5710:1 5739:3 5760:1 5773:1 5808:1 5828:1 5832:1 5896:1 5910:1 5913:1 5942:2 5993:1 6027:1 6034:2 6037:1 6041:1 6045:3 6047:1 6048:1 6053:1 6058:1 6060:3 6089:1 6100:1 6101:1 6121:1 6147:2 6187:1 6206:1 6216:1 6256:1 6295:1 6327:1 6330:1 6338:1 6416:1 6431:1 6433:1 6437:1 6457:2 6462:1 6475:1 6486:1 6489:3 6493:2 6497:1 6508:1 6519:3 6521:2 6592:1 6596:1 6597:1 6612:1 6620:1 6625:2 6703:1 6707:1 6716:1 6721:1 6768:1 6779:1 6816:3 6818:1 6838:1 6852:1 6860:1 6890:1 6903:2 6914:2 6954:1 6960:1 6994:1 6999:1 7011:1 7048:2 7073:2 7249:2 7250:1 7273:1 7274:1 7307:1 7323:12 7344:3 7345:2 7414:1 7434:1 7488:1 7513:1 7525:1 7539:2 7550:1 7563:1 7600:1 7603:1 7650:2 7675:1 7677:1 7684:1 7791:3 7812:1 7815:1 7817:1 7879:1 7891:1 7922:1 7957:1 7958:1 7964:1 8035:1 8116:1 8122:1 8124:1 8125:2 8126:1 8128:2 8135:2 8161:1 8280:2 8282:1 8322:1 8326:1 8362:1 8397:1 8406:1 8439:1 8441:1 8484:1 8485:1 8493:1 8503:1 8515:1 8531:1 8556:2 8558:1 8575:1 8620:1 8670:2 8697:1 8747:1 8748:1 8752:1 8801:1 8816:1 8907:1 8930:2 8944:1 8954:1 8971:1 8979:1 8997:1 9000:1 9007:1 9010:1 9016:1 9048:1 9063:2 9073:1 9179:2 9215:1 9236:1 9249:2 9267:1 9325:1 9385:1 9418:1 9442:1 9451:1 9473:1 9486:1 9569:1 9571:1 9605:1 9683:1 9687:1 9696:1 9697:1 9701:1 9707:1 9712:1 9773:1 9783:1 9788:1 9793:1 9799:1 9823:2 9870:1 9877:4 9917:3 9925:1 9974:1 10013:1 10066:1 10070:1 10075:1 10076:1 10121:1 10153:2 10167:1 10276:1 10281:1 10299:2 10300:2 10322:1 10346:1 10371:1 10398:1 10404:1 10410:1 10427:2 10526:1 10564:1 10574:1 10646:1 10684:2 10717:1 10724:1 10754:1 10778:1 10784:1 10786:1 10821:1 10850:1 10872:1 10907:1 10965:2 10973:1 10994:3 10995:1 11001:2 11046:1 11109:1 11149:1 11154:1 11176:1 11229:1 11245:1 11252:1 11304:1 11354:1 11355:1 11387:1 11388:1 11410:1 11414:1 11421:1 11422:1 11437:1 11447:1 11477:1 11501:1 11515:1 11552:1 11611:1 11688:1 11704:1 11735:1 11756:1 11860:1 11876:1 11945:1 11960:1 12009:1 12013:1 12018:1 12021:1 12039:1 12167:1 12235:2 12242:1 12243:1 12271:2 12300:1 12313:2 12402:2 12404:4 12409:2 12472:7 12522:1 12557:1 12641:2 12661:1 12687:1 12710:1 12737:2 12743:1 12766:1 12768:1 12775:2 12893:1 12894:1 12896:1 12910:1 12919:1 12932:1 12945:1 12951:1 12982:1 12995:1 13001:1 13040:1 13053:1 13067:1 13080:1 13097:1 13120:1 13126:1 13155:1 13170:1 13187:1 13211:1 13247:1 13270:1 13310:1 13366:1 13371:1 13459:1 13476:1 13498:1 13506:1 13563:1 13586:1 13628:2 13701:1 13744:1 13751:1 13757:1 13875:1 13969:2 13973:1 13989:1 13991:1 13996:2 14045:1 14106:1 14211:1 14267:1 14320:1 14403:1 14418:1 14430:1 14439:1 14445:1 14451:1 14487:1 14508:1 14564:2 14577:1 14586:1 14604:1 14622:1 14635:1 14638:1 14643:1 14672:1 14809:1 14818:1 14841:2 14843:1 14851:1 14881:1 14901:1 14918:1 14924:5 14952:2 14973:1 15012:5 15018:1 15073:1 15083:1 15095:1 15145:1 15170:2 15177:1 15187:1 15188:1 15195:1 15207:1 15352:1 15372:1 15402:1 15419:1 15442:1 15483:2 15495:1 15513:1 15520:1 15539:1 15560:1 15567:2 15568:1 15582:2 15584:1 15629:1 15655:2 15723:1 15762:1 15775:2 15798:1 15839:1 15863:1 15896:1 15907:1 15962:1 16028:1 16055:1 16108:1 16119:1 16129:1 16139:1 16157:1 16319:1 16329:1 16331:1 16337:1 16351:1 16399:2 16434:1 16435:1 16462:1 16477:1 16518:1 16519:1 16531:1 16583:1 16592:1 16612:1 16729:2 16762:1 16781:1 16782:1 16807:1 16865:1 16915:1 16925:1 16932:2 17009:1 17098:1 17110:4 17127:1 17132:1 17183:1 17205:1 17235:1 17262:1 17265:1 17266:2 17276:1 17326:1 17410:1 17415:702 17473:1 17505:2 17594:1 17600:1 17706:2 17845:1 17892:1 17911:1 17917:1 17928:1 17931:1 17936:1 17980:1 18074:1 18121:1 18142:1 18167:1 18187:1 18232:4 18275:2 18277:1 18303:1 18306:1 18324:1 18335:1 18355:1 18359:1 18360:1 18365:1 18378:1 18404:1 18411:1 18412:1 18432:1 18444:1 18543:2 18545:2 18619:1 18687:1 18703:1 18723:1 18753:1 18754:1 18755:2 18770:1 18801:1 18805:1 18838:1 18845:1 18875:2 18878:1 18884:1 18886:1 18890:1 18893:1 18901:1 18932:1 18936:1 18947:1 18966:1 19011:1 19013:1 19014:1 19033:1 19050:1 19109:1 19137:1 19148:1 19205:3 19213:1 19223:1 19229:1 19233:1 19370:1 19407:1 19441:1 19455:1 19492:1 19500:2 19502:1 19520:1 19541:1 19556:4 19559:1 19568:2 19577:1 19582:1 19593:1 19607:1 19689:1 19701:1 19731:1 19733:1 19753:1 19769:1 19785:2 19797:1 19819:2 19852:1 19857:1 19877:1 19889:2 19894:1 19905:1 19923:1 19942:1 19950:1 20016:1 20025:1 20039:1 20041:3 20069:1 20070:1 20085:1 20089:1 20143:1 20152:1 20233:1 20270:1 20332:1 20399:1 20411:2 20447:1 20469:1 20490:2 20526:2 20548:1 20556:2 20559:3 20563:1 20571:1 20590:1 20596:1 20608:1 20683:1 20685:1 20730:1 20731:1 20752:2 20755:2 20803:1 20828:1 20893:1 20906:1 20960:4 21002:1 21022:1 21028:1 21057:1 21087:1 21167:1 21186:1 21199:1 21262:1 21284:1 21287:1 21312:1 21341:1 21346:1 21354:1 21375:1 21376:1 21414:1 21442:1 21480:1 21483:2 21496:1 21513:2 21547:1 21549:1 21633:2 21640:1 21645:1 21703:2 21709:1 21728:1 21735:1 21737:1 21789:1 21816:2 21817:1 21857:1 21869:1 21891:1 21928:1 21930:1 21951:1 21966:1 21979:1 21985:1 22008:1 22043:1 22054:2 22067:1 22085:1 22105:1 22125:3 22156:1 22164:1 22171:1 22215:1 22268:1 22298:1 22304:1 22381:2 22386:1 22389:1 22449:1 22466:1 22491:1 22542:1 22545:2 22575:1 22598:1 22604:1 22666:2 22686:1 22687:1 22724:1 22779:1 22791:1 22810:1 22891:1 22904:1 22946:1 22962:1 22991:1 22996:1 23010:1 23013:1 23015:2 23073:2 23096:2 23136:1 23142:1 23147:1 23149:1 23158:1 23171:1 23189:1 23234:1 23252:1 23277:2 23307:1 23369:1 23403:2 23493:2 23496:1 23559:1 23563:1 23634:1 23646:1 23669:1 23681:2 23683:1 23689:1 23692:1 23699:1 23718:1 23720:1 23721:1 23766:1 23777:1 23779:1 23791:1 23801:1 23848:2 23862:1 23882:1 23907:2 23973:1 23985:1 23996:1 23998:1 24017:1 24153:1 24271:1 24288:1 24310:1 24331:1 24334:1 24340:3 24434:1 24439:1 24459:1 24470:1 24473:1 24497:1 24507:1 24551:1 24562:1 24570:1 24603:1 24704:1 24723:1 24733:1 24807:1 24809:1 24896:1 24904:1 24969:3 24972:1 25033:1 25060:1 25097:1 25112:1 25114:1 25115:1 25159:1 25221:1 25240:2 25242:1 25265:1 25267:1 25279:1 25288:1 25306:1 25309:1 25323:1 25329:1 25333:2 25363:1 25387:1 25392:1 25496:1 25505:1 25507:1 25508:1 25513:1 25517:1 25519:1 25523:1 25561:1 25567:1 25568:2 25570:1 25572:1 25614:1 25630:1 25651:1 25672:2 25715:1 25738:2 25792:1 25793:1 25796:1 25802:2 25820:2 25824:1 25826:1 25827:1 25861:1 25870:1 25871:2 25872:1 25900:2 25925:1 25927:1 25928:1 25957:1 25959:1 25994:1 25997:1 26007:1 26072:1 26099:1 26211:1 26368:1 26439:1 26446:1 26448:1 26484:1 26508:10 26513:1 26539:1 26547:1 26567:1 26610:1 26622:1 26655:2 26692:2 26764:2 26807:1 26813:1 26834:2 26864:1 26867:1 26921:1 26946:1 26966:1 26975:1 26982:1 27019:2 27063:1 27073:1 27078:1 27096:2 27150:2 27154:1 27202:1 27227:1 27236:1 27241:1 27333:1 27390:1 27396:1 27402:1 27433:1 27447:1 27477:1 27491:1 27521:1 27534:1 27564:1 27569:1 27619:1 27635:1 27669:1 27689:1 27706:1 27715:2 27716:1 27723:1 27730:1 27734:1 27739:1 27775:2 27792:1 27797:1
8 8:1 46:1 47:2 88:1 102:1 121:1 160:1 162:1 181:1 190:1 194:3 214:1 240:2 327:1 329:1 369:2 432:1 441:1 486:1 494:1 575:1 605:1 627:1 659:1 683:1 771:1 843:3 856:1 869:1 891:1 930:1 934:1 970:1 973:1 1045:1 1050:1 1052:1 1074:1 1086:1 1147:1 1176:1 1182:1 1187:1 1191:1 1205:1 1210:1 1238:1 1251:1 1253:1 1255:1 1265:1 1296:1 1311:1 1324:1 1332:1 1371:1 1374:1 1393:2 1395:4 1399:1 1411:1 1424:2 1432:3 1468:1 1475:2 1496:1 1509:2 1523:2 1553:1 1565:1 1588:1 1607:1 1612:1 1640:1 1644:1 1670:2 1692:1 1696:1 1720:1 1738:1 1740:1 1769:1 1776:1 1787:1 1801:2 1818:2 1824:1 1835:1 1844:1 1856:1 1858:1 1859:1 1871:1 1883:1 1956:1 1962:2 2012:1 2057:4 2145:1 2179:1 2181:1 2185:2 2188:1 2193:1 2196:2 2201:3 2203:1 2208:1 2209:1 2211:1 2214:1 2216:1 2248:1 2252:1 2260:2 2285:1 2295:1 2380:1 2418:1 2510:1 2547:1 2563:1 2565:1 2583:1 2598:1 2602:2 2646:1 2649:1 2650:1 2662:1 2676:1 2705:1 2731:1 2760:1 2766:1 2774:3 2801:1 2803:1 2831:1 2854:1 2880:1 2885:1 2886:1 2908:1 3002:1 3010:1 3062:2 3090:1 3131:1 3134:3 3137:2 3138:1 3148:1 3158:2 3174:1 3216:1 3313:2 3324:1 3423:1 3434:1 3481:1 3491:1 3506:1 3518:2 3614:1 3621:1 3625:2 3646:1 3650:1 3692:1 3709:2 3715:1 3728:1 3738:1 3758:1 3764:1 3807:1 3815:1 3818:1 3826:1 3857:2 3858:2 3916:1 3923:1 3940:1 3983:1 4002:1 4011:1 4020:2 4030:2 4035:3 4042:1 4109:1 4115:1 4129:3 4131:1 4152:2 4169:1 4174:1 4196:1 4224:1 4235:1 4249:1 4281:2 4351:1 4400:1 4426:2 4462:1 4471:1 4497:2 4500:1 4533:1 4546:1 4567:1 4648:8 4669:1 4670:1 4673:1 4767:1 4787:4 4789:3 4792:1 4796:1 4800:1 4802:1 4810:1 4813:1 4814:3 4871:1 4903:1 4944:1 4994:1 4997:1 5002:1 5010:1 5074:1 5092:1 5104:2 5126:2 5136:1 5170:1 5212:1 5222:2 5286:1 5296:1 5313:1 5315:2 5319:1 5320:1 5322:1 5413:1 5422:1 5423:1 5437:1 5585:1 5587:1 5593:1 5643:2 5710:1 5739:3 5760:1 5773:1 5804:1 5808:1 5828:1 5832:1 5867:1 5896:1 5910:1 5913:1 5942:2 5993:1 6027:1 6034:2 6037:1 6041:1 6044:1 6045:3 6047:1 6048:1 6053:1 6058:1 6060:3 6089:1 6100:1 6101:1 6121:1 6147:2 6187:1 6206:1 6216:1 6256:1 6295:1 6327:1 6330:1 6338:1 6416:1 6431:1 6433:1 6437:1 6457:2 6462:1 6475:1 6486:1 6489:3 6493:2 6497:1 6508:1 6519:3 6521:2 6592:1 6596:1 6597:1 6612:1 6620:1 6625:2 6703:1 6707:1 6716:1 6721:1 6768:1 6779:1 6816:3 6818:1 6838:1 6852:1 6860:1 6890:1 6903:2 6914:2 6954:1 6960:1 6994:1 6999:1 7011:1 7048:2 7073:2 7249:3 7250:1 7273:1 7274:1 7307:1 7323:13 7344:3 7345:2 7414:1 7434:1 7488:1 7513:1 7525:1 7539:2 7550:1 7563:1 7600:1 7603:1 7650:2 7675:1 7677:1 7684:1 7715:2 7791:4 7812:1 7815:1 7817:1 7826:1 7879:1 7891:1 7922:1 7957:1 7958:1 7964:1 8035:1 8116:1 8122:1 8124:1 8125:2 8126:1 8128:2 8135:2 8161:1 8280:2 8282:1 8322:1 8326:1 8362:1 8397:1 8406:1 8439:1 8441:1 8484:1 8485:1 8493:1 8503:1 8515:1 8531:1 8539:1 8556:2 8558:1 8575:1 8620:1 8670:2 8697:1 8716:1 8719:2 8747:1 8748:1 8752:1 8801:1 8816:1 8907:1 8930:2 8944:1 8954:1 8971:1 8979:1 8997:1 9000:1 9007:1 9010:1 9016:1 9048:1 9063:2 9073:1 9179:2 9215:1 9236:1 9249:2 9267:1 9325:1 9385:1 9418:1 9442:1 9451:1 9473:1 9486:1 9569:1 9571:1 9605:1 9683:1 9687:1 9696:1 9697:1 9701:1 9707:1 9712:1 9773:1 9783:1 9788:1 9793:1 9799:1 9823:2 9870:1 9877:4 9882:1 9917:3 9925:1 9974:1 10013:1 10066:1 10070:1 10075:1 10076:1 10121:1 10136:1 10153:2 10167:1 10183:1 10276:1 10281:1 10287:2 10299:2 10300:2 10322:1 10346:1 10371:1 10398:1 10404:1 10410:1 10427:2 10498:1 10526:1 10564:1 10574:1 10637:1 10646:1 10684:2 10717:1 10724:1 10750:1 10754:1 10778:1 10784:1 10786:1 10821:1 10850:1 10872:1 10907:1 10965:2 10973:1 10977:1 10994:3 10995:1 11001:2 11046:1 11109:1 11149:1 11154:1 11176:1 11229:1 11245:1 11252:1 11304:1 11354:1 11355:1 11387:1 11388:1 11410:1 11414:1 11421:1 11422:1 11437:1 11447:1 11477:1 11499:1 11501:1 11515:1 11552:1 11611:1 11688:1 11704:1 11735:1 11756:1 11860:1 11876:1 11945:1 11960:1 12009:1 12013:1 12018:1 12021:1 12039:1 12167:1 12235:2 12242:1 12243:1 12271:3 12300:1 12313:2 12402:2 12404:4 12409:2 12472:7 12522:1 12557:1 12591:1 12641:2 12661:1 12687:1 12710:1 12737:2 12743:1 12766:1 12768:1 12775:2 12893:1 12894:1 12896:1 12910:1 12919:1 12932:1 12945:1 12951:1 12982:1 12995:1 13001:1 13040:1 13053:1 13067:1 13068:1 13080:1 13097:1 13120:1 13126:1 13155:1 13170:1 13187:1 13211:1 13247:1 13270:1 13310:1 13366:1 13371:1 13459:1 13476:1 13498:1 13506:1 13563:1 13586:1 13628:2 13701:1 13744:1 13751:1 13757:1 13875:1 13969:2 13973:1 13989:1 13991:1 13996:2 14036:1 14045:1 14106:1 14193:1 14211:1 14267:1 14320:1 14403:1 14418:1 14430:1 14439:1 14445:1 14451:1 14487:1 14508:1 14564:2 14577:1 14586:1 14604:1 14622:1 14634:1 14635:1 14638:1 14643:1 14672:1 14724:1 14809:1 14818:1 14841:2 14843:1 14851:1 14881:1 14901:1 14918:1 14924:5 14952:2 14973:1 15012:6 15018:1 15073:1 15083:1 15095:1 15145:1 15170:2 15173:1 15177:1 15187:1 15188:1 15195:1 15196:1 15207:1 15352:1 15372:1 15402:1 15419:1 15442:1 15483:2 15495:1 15513:1 15520:1 15539:1 15560:1 15567:2 15568:1 15582:2 15584:1 15629:1 15655:2 15723:1 15762:1 15775:2 15798:1 15839:1 15863:1 15896:1 15907:1 15962:1 16028:1 16055:1 16108:1 16119:1 16129:1 16139:1 16157:1 16162:1 16319:1 16329:1 16331:1 16337:1 16351:1 16399:2 16434:1 16435:1 16457:1 16462:1 16477:1 16518:1 16519:1 16531:1 16583:1 16592:1 16612:1 16625:1 16729:2 16743:1 16762:1 16781:1 16782:1 16807:1 16865:1 16915:1 16925:1 16932:2 16985:1 17009:1 17098:1 17110:4 17127:1 17132:1 17183:1 17205:1 17235:1 17262:1 17265:1 17266:2 17276:1 17326:1 17335:1 17410:1 17415:793 17473:1 17505:2 17594:1 17600:1 17706:2 17814:1 17845:1 17892:1 17900:1 17911:1 17917:1 17928:1 17931:1 17936:1 17980:1 18074:1 18121:1 18142:1 18167:1 18172:1 18175:1 18187:1 18232:4 18275:2 18277:1 18303:1 18306:1 18324:1 18335:1 18355:1 18359:1 18360:1 18365:1 18378:1 18404:1 18411:1 18412:1 18432:1 18444:1 18543:2 18545:2 18619:1 18687:1 18703:1 18723:1 18753:1 18754:1 18755:2 18770:1 18801:1 18805:1 18838:1 18845:1 18875:2 18878:1 18884:1 18886:1 18890:1 18893:1 18901:1 18932:1 18936:1 18947:1 18966:1 19011:1 19013:1 19014:1 19033:1 19050:1 19109:1 19137:1 19148:1 19205:3 19213:1 19223:1 19229:1 19233:1 19370:1 19407:1 19441:1 19455:1 19492:1 19500:2 19502:1 19520:1 19541:1 19556:4 19559:1 19568:2 19577:1 19582:1 19593:1 19607:1 19689:1 19701:1 19731:1 19733:1 19753:1 19769:1 19785:2 19797:1 19819:2 19852:1 19857:1 19877:1 19889:2 19894:1 19905:1 19923:1 19942:1 19950:1 20016:1 20025:1 20039:1 20041:3 20069:1 20070:1 20085:1 20089:1 20143:1 20152:1 20233:1 20270:1 20325:1 20327:1 20332:1 20399:1 20411:2 20429:1 20447:1 20469:1 20490:2 20526:2 20528:1 20548:1 20556:2 20559:3 20563:1 20571:1 20590:1 20596:1 20608:1 20683:1 20685:1 20730:1 20731:1 20752:2 20755:2 20803:1 20828:1 20893:1 20906:1 20960:5 21002:1 21022:1 21028:1 21057:1 21087:1 21167:1 21186:1 21199:1 21262:1 21284:1 21287:1 21312:1 21341:1 21346:1 21354:1 21375:1 21376:1 21414:1 21442:1 21480:1 21483:2 21496:1 21513:2 21547:1 21549:1 21633:2 21640:1 21645:1 21657:1 21703:2 21709:1 21728:1 21735:1 21737:1 21789:1 21816:3 21817:1 21857:1 21869:1 21891:1 21928:1 21930:1 21951:1 21966:1 21979:1 21985:1 22008:1 22043:1 22054:2 22067:1 22085:1 22105:1 22125:3 22156:1 22164:1 22171:1 22215:1 22268:1 22298:1 22304:1 22381:2 22386:1 22389:1 22449:1 22466:1 22491:1 22542:1 22545:2 22575:1 22598:1 22604:1 22657:1 22666:2 22686:1 22687:1 22724:1 22779:1 22791:1 22810:1 22891:1 22904:1 22941:1 22946:1 22962:1 22991:1 22996:1 23010:1 23013:1 23015:2 23073:2 23096:2 23136:1 23142:1 23147:1 23149:1 23158:1 23171:1 23189:1 23234:1 23252:1 23277:2 23307:1 23369:1 23403:2 23493:2 23496:2 23559:1 23563:1 23634:1 23646:1 23669:1 23681:2 23683:1 23689:1 23692:1 23699:1 23718:1 23720:1 23721:1 23766:1 23777:1 23779:1 23791:1 23801:1 23848:2 23862:1 23874:1 23875:1 23882:1 23907:2 23955:1 23970:1 23973:1 23985:1 23994:1 23996:1 23998:1 24017:1 24092:1 24153:1 24160:1 24271:1 24288:1 24310:1 24331:1 24334:1 24340:3 24434:1 24439:1 24459:1 24470:2 24473:1 24497:1 24507:1 24551:1 24562:1 24570:1 24603:1 24704:1 24723:1 24733:1 24807:1 24809:1 24896:1 24904:1 24969:3 24972:1 25033:1 25060:1 25097:1 25112:1 25114:1 25115:1 25159:1 25221:1 25240:2 25242:1 25262:1 25265:1 25267:1 25279:1 25288:1 25306:1 25309:1 25323:1 25329:1 25333:2 25363:1 25387:1 25392:1 25496:1 25505:1 25507:1 25508:1 25513:1 25517:1 25519:1 25523:1 25561:1 25567:1 25568:2 25570:1 25572:1 25614:1 25630:1 25651:1 25672:2 25715:1 25738:2 25782:1 25792:1 25793:1 25796:1 25802:2 25820:2 25824:1 25826:1 25827:1 25861:1 25870:1 25871:2 25872:1 25900:2 25925:1 25927:1 25928:1 25957:1 25959:1 25994:1 25997:1 26007:1 26072:1 26099:1 26211:1 26289:1 26368:1 26439:1 26446:1 26448:1 26484:1 26508:10 26513:1 26539:1 26547:1 26567:1 26610:2 26622:1 26655:2 26692:3 26764:2 26800:1 26807:1 26813:1 26834:2 26864:1 26867:1 26886:1 26921:1 26946:1 26965:1 26966:1 26975:1 26982:1 27016:1 27019:2 27020:2 27063:1 27073:1 27078:1 27096:2 27150:2 27154:1 27202:1 27227:1 27236:1 27241:1 27333:1 27390:1 27396:1 27402:1 27433:1 27447:1 27477:1 27491:1 27492:1 27521:1 27534:1 27564:1 27569:1 27619:1 27635:1 27669:1 27683:1 27689:1 27706:1 27715:2 27716:1 27723:1 27730:1 27734:1 27739:1 27765:1 27775:2 27792:1 27797:1
8 8:1 46:1 47:2 83:1 88:1 102:1 121:1 148:1 160:1 162:1 181:1 190:1 194:3 214:1 240:3 327:2 329:1 369:2 432:1 441:1 486:1 494:1 575:1 605:1 627:1 659:1 683:1 771:1 843:3 856:1 869:1 876:1 891:1 930:1 934:1 970:1 973:1 1045:1 1050:1 1052:1 1074:1 1086:1 1147:1 1176:1 1182:1 1187:1 1191:1 1201:1 1205:1 1210:1 1222:1 1238:1 1241:1 1251:1 1253:1 1255:1 1265:1 1296:1 1311:1 1324:1 1332:1 1371:1 1374:1 1393:2 1395:4 1399:1 1411:1 1424:2 1432:3 1468:1 1475:3 1496:1 1509:2 1523:2 1553:1 1565:2 1578:1 1588:1 1607:1 1612:1 1626:1 1640:1 1644:1 1670:2 1692:1 1696:1 1720:1 1738:1 1740:1 1769:1 1776:1 1787:1 1801:2 1818:2 1824:1 1835:1 1844:2 1856:1 1858:1 1859:1 1871:1 1883:1 1956:1 1962:2 2012:1 2057:4 2145:1 2179:1 2181:1 2185:2 2188:1 2193:1 2196:2 2201:5 2203:1 2208:1 2209:1 2211:1 2214:1 2216:1 2248:1 2252:1 2260:2 2285:1 2295:1 2380:1 2418:1 2510:1 2547:1 2563:1 2565:1 2583:1 2598:1 2602:2 2646:1 2649:1 2650:1 2662:1 2676:1 2705:1 2731:1 2760:1 2766:1 2774:4 2801:1 2803:1 2831:1 2854:1 2880:1 2883:1 2885:1 2886:1 2908:1 2996:1 3002:1 3010:1 3062:2 3090:1 3131:1 3134:3 3137:2 3138:1 3148:1 3158:2 3174:1 3216:1 3313:2 3324:1 3339:1 3423:1 3434:1 3481:1 3491:1 3506:1 3518:2 3614:1 3621:1 3625:2 3646:1 3650:1 3692:1 3709:2 3715:1 3728:1 3738:1 3757:1 3758:1 3764:1 3807:1 3815:1 3818:1 3826:1 3836:1 3857:2 3858:2 3916:1 3923:1 3940:1 3983:1 4002:1 4011:1 4020:2 4030:2 4035:3 4042:1 4109:1 4115:1 4129:3 4131:1 4152:2 4169:1 4174:1 4196:1 4224:1 4235:1 4249:1 4281:2 4351:1 4400:1 4426:2 4462:1 4471:1 4497:2 4500:1 4533:1 4546:1 4567:1 4648:8 4669:1 4670:1 4673:1 4767:1 4787:4 4789:3 4792:1 4796:1 4800:1 4802:1 4810:1 4813:1 4814:4 4871:2 4903:1 4944:1 4994:1 4997:1 5002:1 5010:1 5074:1 5092:1 5104:2 5126:2 5136:1 5170:1 5212:1 5222:2 5286:1 5296:1 5309:1 5313:1 5315:2 5319:1 5320:1 5322:1 5413:1 5422:1 5423:1 5437:1 5585:1 5587:1 5593:1 5643:3 5710:1 5739:3 5760:1 5773:1 5804:1 5808:1 5828:1 5832:1 5867:1 5896:1 5910:1 5913:2 5942:2 5993:1 6027:1 6034:2 6037:1 6041:1 6044:1 6045:3 6047:1 6048:1 6053:1 6058:1 6060:3 6089:1 6100:1 6101:1 6121:1 6147:2 6187:1 6206:1 6216:1 6256:1 6259:1 6295:1 6327:1 6330:1 6338:1 6353:1 6416:1 6431:1 6433:1 6437:1 6457:2 6462:1 6475:1 6486:1 6489:3 6493:2 6497:1 6508:1 6519:3 6521:2 6592:1 6596:1 6597:1 6612:1 6620:1 6625:2 6703:1 6707:1 6716:1 6721:1 6768:1 6779:1 6816:3 6818:1 6838:1 6852:1 6860:1 6890:1 6903:2 6914:2 6954:1 6960:1 6994:1 6999:1 7011:1 7048:2 7073:2 7249:3 7250:1 7273:1 7274:1 7307:1 7323:15 7344:4 7345:2 7414:1 7434:2 7488:1 7513:1 7525:1 7539:2 7550:1 7563:1 7571:1 7590:1 7600:1 7603:1 7650:2 7675:1 7677:1 7684:1 7701:1 7715:2 7791:5 7812:1 7815:1 7817:1 7826:1 7879:1 7891:1 7922:1 7957:1 7958:1 7964:1 7994:1 8035:1 8116:1 8122:1 8124:1 8125:2 8126:1 8128:2 8135:2 8161:1 8280:2 8282:1 8322:1 8326:1 8362:1 8397:1 8406:1 8439:1 8441:1 8484:1 8485:2 8493:1 8503:1 8505:1 8515:1 8531:1 8539:1 8556:2 8558:1 8575:1 8620:1 8670:2 8697:1 8716:1 8719:2 8747:1 8748:1 8752:1 8801:1 8816:1 8907:1 8930:2 8944:1 8954:1 8971:1 8979:1 8997:1 9000:1 9007:1 9010:1 9016:1 9048:1 9063:2 9073:1 9179:2 9180:1 9215:1 9236:1 9249:2 9257:1 9267:1 9325:1 9385:1 9418:1 9442:1 9451:1 9473:1 9486:1 9569:1 9571:1 9605:1 9683:1 9687:1 9696:1 9697:1 9701:1 9707:1 9712:1 9770:1 9773:1 9783:1 9788:1 9793:1 9799:1 9823:2 9844:1 9870:1 9877:4 9882:1 9917:3 9925:1 9935:1 9974:1 10013:1 10066:1 10070:1 10075:1 10076:1 10121:1 10136:1 10153:2 10167:1 10183:1 10276:1 10281:1 10287:2 10296:1 10299:2 10300:2 10322:1 10346:1 10371:1 10398:1 10404:1 10410:1 10427:2 10498:1 10526:1 10564:1 10574:1 10637:1 10646:1 10652:1 10684:2 10717:1 10724:1 10750:1 10754:1 10778:1 10784:1 10786:1 10821:1 10833:1 10850:1 10872:1 10907:1 10965:2 10973:1 10977:1 10994:3 10995:1 11001:2 11046:1 11109:1 11149:1 11154:1 11176:1 11229:1 11245:1 11252:1 11304:1 11354:1 11355:1 11387:1 11388:1 11394:1 11410:1 11414:1 11421:1 11422:1 11437:1 11447:1 11477:1 11499:1 11501:1 11515:1 11552:1 11611:1 11688:1 11699:1 11704:1 11735:1 11756:1 11860:1 11876:1 11945:1 11960:1 12007:1 12009:1 12013:1 12018:1 12021:1 12039:1 12167:2 12235:2 12242:1 12243:1 12271:3 12300:1 12313:2 12402:2 12404:4 12409:2 12472:8 12522:1 12557:1 12591:1 12641:2 12661:1 12687:1 12710:1 12737:2 12743:1 12766:1 12768:1 12775:2 12893:1 12894:1 12896:1 12910:1 12919:1 12932:1 12945:1 12951:1 12974:1 12982:1 12995:1 13001:1 13018:1 13040:1 13053:1 13067:1 13068:1 13080:1 13097:1 13120:1 13126:1 13155:1 13170:1 13187:1 13211:1 13247:1 13270:1 13310:1 13366:1 13371:1 13459:1 13476:1 13498:1 13506:1 13557:1 13563:1 13586:1 13628:2 13701:1 13744:1 13751:1 13757:1 13875:1 13969:2 13973:1 13989:1 13991:1 13996:2 14036:1 14045:1 14106:1 14193:1 14211:1 14222:1 14267:1 14320:1 14403:1 14418:1 14430:1 14439:1 14445:1 14451:1 14487:1 14492:1 14508:1 14564:2 14577:1 14586:1 14604:1 14622:1 14634:1 14635:1 14638:1 14643:1 14672:1 14724:1 14769:1 14809:1 14818:1 14841:2 14843:1 14851:2 14881:1 14901:1 14918:1 14924:6 14952:2 14973:2 15012:6 15018:1 15039:1 15073:1 15083:1 15095:1 15145:1 15166:1 15170:2 15173:1 15177:1 15187:1 15188:1 15193:1 15195:1 15196:1 15207:1 15352:1 15372:1 15402:1 15419:1 15442:1 15483:3 15495:1 15513:1 15520:1 15539:1 15560:1 15567:2 15568:1 15582:2 15584:1 15629:1 15655:2 15723:1 15762:1 15775:2 15798:1 15839:1 15863:1 15896:1 15907:1 15962:1 16028:1 16055:1 16108:1 16119:1 16129:1 16139:1 16157:1 16162:1 16319:1 16329:1 16331:1 16337:1 16347:1 16351:1 16399:2 16434:1 16435:2 16457:1 16462:1 16477:1 16518:1 16519:1 16531:1 16570:1 16583:1 16592:1 16612:1 16625:1 16729:2 16743:1 16762:1 16781:1 16782:1 16807:1 16865:1 16915:1 16925:1 16932:2 16985:1 17009:1 17098:1 17110:4 17127:1 17132:1 17183:1 17205:1 17235:1 17262:1 17265:1 17266:2 17276:1 17326:2 17335:1 17410:1 17415:846 17433:1 17473:1 17505:2 17594:1 17600:1 17706:2 17814:1 17845:1 17892:1 17900:1 17911:1 17917:1 17928:1 17931:1 17936:1 17980:1 18074:1 18121:1 18142:1 18167:1 18172:1 18175:1 18187:1 18232:4 18275:2 18277:1 18303:1 18306:1 18324:1 18335:1 18355:1 18359:2 18360:1 18365:1 18378:1 18404:1 18411:1 18412:1 18432:1 18444:1 18543:2 18545:2 18608:1 18619:1 18687:1 18703:1 18723:1 18753:1 18754:1 18755:2 18770:1 18786:1 18801:1 18805:1 18838:1 18845:1 18875:2 18878:1 18884:1 18886:1 18890:1 18893:1 18901:1 18932:1 18936:1 18947:1 18966:1 19011:1 19013:1 19014:1 19033:1 19050:1 19109:1 19137:1 19143:1 19148:1 19205:3 19213:1 19223:1 19229:1 19233:1 19370:1 19407:1 19441:1 19455:1 19492:1 19500:2 19502:1 19520:1 19541:1 19556:4 19559:1 19568:2 19577:1 19582:1 19593:1 19607:1 19689:1 19701:1 19731:2 19733:1 19753:1 19769:1 19785:2 19797:1 19819:2 19852:1 19857:1 19877:1 19889:2 19894:1 19905:1 19923:1 19942:1 19950:1 20016:1 20025:1 20039:1 20041:3 20069:1 20070:1 20085:1 20089:1 20143:1 20152:1 20233:1 20270:1 20325:1 20327:1 20332:1 20399:1 20411:2 20429:1 20447:1 20469:1 20490:2 20526:2 20528:1 20546:1 20548:1 20556:2 20559:3 20563:1 20571:1 20590:1 20596:1 20608:1 20683:1 20685:1 20730:1 20731:1 20752:3 20755:2 20803:1 20828:1 20893:1 20906:1 20960:5 21002:1 21022:1 21028:1 21057:1 21087:1 21167:1 21186:1 21199:1 21262:1 21284:1 21287:1 21312:1 21341:1 21346:1 21354:1 21375:1 21376:1 21414:1 21442:1 21480:1 21483:2 21496:1 21513:2 21547:1 21549:1 21633:3 21640:1 21645:1 21657:1 21703:2 21709:1 21728:1 21735:1 21737:1 21789:1 21816:3 21817:1 21857:1 21869:1 21891:1 21928:1 21930:1 21951:1 21966:1 21979:1 21985:1 22008:1 22043:1 22054:2 22067:1 22085:1 22105:1 22125:3 22156:1 22164:1 22171:1 22215:1 22268:1 22298:1 22304:1 22381:2 22386:1 22389:1 22449:1 22466:1 22491:1 22542:1 22545:2 22575:1 22598:1 22604:1 22657:1 22666:2 22686:1 22687:1 22724:1 22742:1 22779:1 22791:1 22810:1 22843:1 22891:1 22904:1 22905:1 22941:1 22946:1 22962:2 22991:1 22996:1 23010:1 23013:1 23015:2 23073:2 23096:2 23136:1 23142:1 23147:1 23149:1 23158:1 23171:1 23189:1 23234:1 23252:1 23263:1 23277:2 23307:1 23308:1 23335:1 23369:1 23403:2 23493:2 23496:2 23559:1 23563:1 23634:1 23646:1 23669:1 23681:2 23683:1 23689:1 23692:2 23699:1 23718:1 23720:1 23721:1 23723:1 23766:1 23777:1 23779:1 23791:1 23801:1 23848:2 23862:1 23874:1 23875:1 23882:1 23907:2 23955:1 23970:1 23973:1 23985:1 23994:1 23996:1 23998:1 24017:1 24092:1 24153:1 24160:1 24271:1 24288:1 24310:1 24331:1 24334:1 24340:3 24434:1 24439:1 24459:1 24470:2 24473:1 24497:1 24507:1 24551:1 24562:1 24570:1 24586:1 24603:1 24704:1 24723:1 24733:1 24807:1 24809:1 24896:1 24904:1 24969:3 24972:1 25033:1 25060:1 25097:1 25112:1 25114:1 25115:1 25159:1 25221:1 25240:2 25242:1 25262:1 25265:1 25267:1 25279:1 25288:1 25306:1 25309:1 25323:1 25329:1 25333:3 25337:1 25363:1 25387:1 25392:1 25496:1 25505:1 25507:1 25508:1 25513:1 25517:1 25519:1 25523:1 25525:1 25561:1 25567:1 25568:3 25570:1 25572:1 25614:1 25630:1 25651:1 25672:2 25715:1 25738:2 25761:1 25782:1 25792:1 25793:1 25796:1 25802:2 25820:2 25824:1 25826:1 25827:1 25861:1 25870:1 25871:2 25872:1 25900:2 25925:1 25927:1 25928:1 25957:1 25959:1 25994:1 25997:1 26007:1 26072:1 26099:1 26211:1 26283:1 26289:1 26346:1 26368:1 26439:1 26446:1 26448:1 26484:1 26508:10 26513:1 26539:1 26547:1 26567:1 26576:1 26610:2 26622:1 26655:2 26662:1 26692:3 26764:2 26800:1 26807:1 26813:1 26834:2 26852:1 26864:1 26867:1 26886:1 26921:1 26946:1 26965:1 26966:1 26975:1 26977:1 26982:1 27016:1 27019:2 27020:2 27063:1 27073:1 27078:1 27096:2 27150:2 27154:1 27202:1 27227:1 27236:1 27241:1 27333:1 27390:1 27396:1 27402:1 27433:1 27447:1 27477:1 27491:1 27492:1 27521:1 27534:1 27564:1 27569:1 27619:1 27635:1 27669:1 27683:1 27689:1 27706:1 27715:2 27716:1 27723:1 27730:1 27734:1 27739:1 27765:1 27775:2 27778:1 27792:1 27797:1
8 8:1 40:1 46:1 47:2 83:1 88:1 102:1 121:1 148:1 160:1 162:1 181:1 190:1 194:3 214:1 240:3 303:1 327:2 329:1 369:2 432:1 441:1 486:1 494:1 575:1 605:1 627:1 659:1 683:1 771:1 843:3 856:1 869:1 876:2 891:1 930:1 934:1 970:1 973:1 1045:1 1050:1 1052:1 1074:1 1086:1 1147:1 1176:1 1182:1 1187:1 1191:1 1201:1 1205:1 1210:1 1222:1 1238:1 1241:1 1251:1 1253:1 1255:1 1265:1 1270:1 1296:1 1311:1 1324:1 1332:1 1371:1 1374:1 1393:2 1395:4 1399:1 1411:1 1424:2 1432:3 1468:1 1475:3 1496:1 1509:2 1523:2 1553:1 1565:2 1578:1 1588:1 1607:1 1612:1 1626:1 1640:1 1644:1 1670:2 1692:1 1696:1 1720:1 1738:1 1740:1 1769:1 1776:1 1787:1 1801:2 1818:2 1824:1 1833:1 1835:1 1844:2 1856:1 1858:1 1859:1 1871:1 1883:1 1956:1 1958:1 1962:2 2012:1 2057:4 2145:1 2179:1 2181:1 2185:3 2188:1 2193:1 2196:2 2201:5 2203:1 2208:1 2209:1 2211:1 2214:1 2216:1 2248:1 2252:1 2260:2 2285:1 2295:1 2380:1 2418:1 2510:1 2547:1 2563:1 2565:1 2583:1 2598:1 2602:2 2646:1 2649:1 2650:1 2662:1 2676:1 2705:1 2731:1 2760:1 2766:1 2774:5 2801:1 2803:1 2811:1 2831:1 2854:1 2869:1 2880:1 2883:1 2885:1 2886:1 2908:1 2983:1 2996:1 3002:1 3010:1 3062:2 3090:1 3131:1 3134:3 3137:2 3138:1 3148:1 3158:3 3174:1 3216:1 3313:2 3324:1 3339:1 3423:1 3434:1 3481:1 3491:1 3506:1 3518:2 3614:1 3621:1 3625:2 3646:1 3650:1 3692:1 3709:2 3715:1 3728:1 3732:1 3738:1 3757:2 3758:1 3764:1 3807:1 3815:1 3818:1 3826:1 3836:1 3857:2 3858:2 3916:1 3923:1 3928:1 3940:1 3970:1 3983:1 4002:1 4011:1 4020:2 4030:2 4035:3 4042:1 4109:1 4115:1 4129:3 4131:1 4152:2 4169:1 4174:1 4196:1 4224:1 4235:1 4249:1 4281:2 4351:1 4400:1 4426:2 4462:1 4471:1 4497:2 4500:1 4533:1 4546:1 4567:1 4648:9 4669:1 4670:1 4673:1 4767:1 4787:4 4789:4 4792:1 4796:1 4800:1 4802:1 4810:1 4813:1 4814:4 4871:2 4903:1 4944:1 4994:1 4997:1 5002:1 5010:1 5074:1 5092:1 5104:2 5126:2 5136:1 5170:1 5212:1 5222:2 5286:1 5296:1 5309:1 5313:1 5315:2 5319:1 5320:1 5322:1 5413:1 5422:1 5423:1 5437:1 5585:1 5587:1 5593:1 5643:3 5710:2 5739:3 5760:1 5773:1 5804:1 5808:1 5828:1 5832:1 5867:1 5896:1 5910:1 5913:2 5942:2 5993:1 6027:1 6034:2 6037:1 6041:1 6044:1 6045:3 6047:1 6048:1 6053:1 6058:1 6060:3 6089:1 6100:1 6101:1 6121:1 6147:2 6187:1 6206:1 6216:1 6256:1 6259:1 6295:1 6327:1 6330:1 6338:1 6353:1 6416:1 6431:1 6433:1 6437:1 6457:2 6462:1 6475:1 6486:1 6489:3 6493:2 6497:1 6508:1 6519:3 6521:2 6592:1 6596:1 6597:1 6612:1 6620:1 6625:2 6703:1 6707:1 6716:1 6721:1 6737:1 6768:1 6779:1 6792:1 6816:3 6818:1 6838:1 6852:1 6860:1 6890:1 6903:2 6914:2 6954:1 6960:1 6994:1 6999:1 7011:1 7048:2 7073:2 7249:3 7250:2 7273:1 7274:1 7307:1 7323:16 7344:5 7345:2 7369:1 7414:1 7434:3 7488:1 7513:2 7525:1 7539:3 7550:1 7563:1 7571:1 7590:1 7600:1 7603:1 7650:2 7675:1 7677:1 7684:1 7701:1 7715:2 7791:5 7812:1 7815:1 7817:1 7826:1 7879:1 7891:1 7922:1 7957:1 7958:1 7964:1 7990:1 7994:1 8035:1 8054:1 8116:1 8122:1 8124:1 8125:2 8126:1 8128:2 8135:2 8155:1 8161:1 8280:2 8282:2 8293:1 8322:1 8326:1 8362:1 8397:1 8406:1 8439:1 8441:1 8484:1 8485:2 8493:1 8503:1 8505:1 8515:1 8531:1 8539:1 8556:3 8558:1 8575:1 8620:1 8670:2 8697:1 8716:1 8719:2 8747:1 8748:1 8752:1 8801:1 8816:1 8907:1 8930:2 8944:1 8954:1 8971:1 8979:1 8997:1 9000:1 9007:1 9010:1 9016:1 9048:1 9063:2 9073:1 9179:2 9180:1 9215:1 9236:1 9249:2 9257:1 9267:1 9325:1 9385:1 9418:1 9442:1 9451:1 9473:1 9486:1 9569:1 9571:1 9605:1 9683:1 9687:1 9696:1 9697:1 9701:1 9707:1 9712:1 9770:1 9773:1 9783:1 9788:1 9793:1 9799:1 9823:2 9844:1 9870:1 9877:4 9882:1 9917:3 9925:1 9935:1 9974:1 10013:1 10066:1 10070:1 10075:1 10076:1 10121:1 10126:1 10136:1 10153:2 10167:1 10183:1 10276:1 10281:1 10287:2 10296:2 10299:2 10300:3 10322:1 10346:1 10371:1 10398:1 10404:1 10410:1 10427:2 10498:1 10526:1 10564:1 10574:1 10637:1 10646:1 10652:1 10654:1 10684:2 10717:1 10724:1 10750:1 10754:1 10778:1 10784:1 10786:1 10821:2 10833:1 10850:1 10872:1 10907:1 10940:1 10965:2 10973:1 10977:1 10994:4 10995:1 11001:2 11046:1 11109:1 11149:1 11154:1 11176:1 11229:1 11245:1 11252:1 11304:1 11354:1 11355:1 11375:1 11387:1 11388:1 11394:1 11410:2 11414:1 11421:1 11422:1 11437:1 11447:1 11477:1 11499:1 11501:1 11515:1 11552:1 11611:1 11688:1 11699:1 11704:1 11735:1 11756:1 11860:1 11876:1 11945:1 11960:1 12007:1 12009:1 12013:1 12018:1 12021:1 12039:1 12157:1 12167:2 12235:2 12242:1 12243:1 12250:1 12265:1 12271:3 12300:1 12313:2 12402:2 12404:5 12409:2 12472:8 12522:1 12557:1 12591:1 12641:2 12661:1 12687:1 12701:1 12710:1 12737:2 12743:1 12766:1 12768:1 12775:2 12893:1 12894:1 12896:1 12910:1 12919:1 12932:2 12945:1 12951:1 12974:1 12982:2 12995:1 13001:1 13018:1 13040:1 13053:1 13067:1 13068:1 13080:1 13086:1 13097:1 13120:1 13126:1 13155:1 13170:1 13186:1 13187:1 13211:1 13247:1 13270:1 13310:1 13366:1 13371:1 13459:1 13476:1 13498:1 13506:1 13557:1 13563:1 13586:1 13599:1 13628:2 13701:1 13744:1 13751:1 13757:1 13875:1 13894:1 13969:2 13973:1 13989:1 13991:1 13996:2 14036:1 14045:1 14106:1 14193:1 14211:1 14222:1 14259:1 14267:1 14306:1 14320:1 14403:1 14418:1 14430:1 14439:1 14445:2 14451:1 14487:1 14492:1 14508:1 14564:2 14577:1 14583:1 14586:1 14604:1 14613:1 14618:1 14622:1 14634:1 14635:1 14638:1 14643:1 14672:1 14724:1 14769:1 14809:1 14818:1 14824:1 14841:2 14843:1 14851:2 14881:1 14901:1 14908:1 14918:1 14924:6 14952:2 14973:2 14978:1 15012:6 15018:1 15039:1 15073:1 15083:1 15095:1 15145:1 15166:1 15170:2 15173:1 15177:1 15187:1 15188:1 15193:1 15195:1 15196:1 15207:1 15301:1 15352:1 15372:1 15402:1 15419:1 15442:1 15483:3 15495:1 15513:1 15520:1 15539:1 15560:1 15567:2 15568:1 15582:2 15584:1 15629:1 15655:2 15723:1 15762:1 15775:2 15798:1 15839:1 15842:1 15863:1 15896:1 15907:1 15962:1 16028:1 16055:1 16108:1 16119:1 16129:1 16139:1 16157:1 16162:1 16319:1 16324:1 16329:1 16331:1 16337:1 16347:1 16351:1 16399:2 16434:1 16435:2 16457:1 16462:1 16477:1 16518:1 16519:1 16531:1 16570:1 16583:1 16592:2 16612:1 16625:1 16729:2 16743:1 16762:1 16781:1 16782:1 16807:1 16865:1 16915:1 16925:1 16932:2 16985:1 17009:1 17098:1 17110:4 17127:1 17132:1 17183:1 17205:1 17235:1 17262:1 17265:1 17266:2 17276:1 17326:2 17335:1 17410:1 17415:901 17433:1 17473:1 17505:2 17594:1 17600:1 17706:2 17814:1 17845:1 17869:1 17892:1 17900:1 17911:1 17917:1 17928:1 17931:1 17936:1 17980:1 18074:1 18100:1 18121:1 18142:1 18167:1 18172:1 18175:1 18187:1 18232:4 18275:2 18277:1 18303:1 18306:1 18324:1 18335:1 18355:1 18359:2 18360:1 18365:1 18378:1 18404:1 18411:1 18412:1 18432:1 18444:1 18543:2 18545:2 18608:1 18619:1 18687:1 18703:1 18723:1 18753:1 18754:1 18755:2 18770:1 18786:1 18801:1 18802:1 18805:1 18838:1 18845:1 18875:2 18878:1 18884:1 18886:1 18890:1 18893:1 18901:1 18932:1 18936:1 18947:1 18966:1 19004:1 19011:1 19013:1 19014:1 19033:1 19050:1 19109:1 19137:1 19143:1 19148:1 19176:1 19205:3 19213:1 19223:1 19229:1 19233:1 19370:1 19407:1 19441:1 19455:1 19492:1 19500:2 19502:1 19520:1 19522:1 19541:1 19556:5 19559:1 19568:2 19577:1 19582:1 19585:1 19593:1 19607:1 19689:1 19701:1 19731:2 19733:1 19753:1 19769:1 19785:2 19797:1 19819:2 19852:1 19857:1 19877:1 19889:2 19894:1 19905:1 19923:1 19942:1 19950:1 20016:2 20025:2 20039:1 20041:3 20069:2 20070:1 20085:1 20089:2 20143:1 20152:1 20233:1 20270:1 20325:1 20327:1 20332:1 20398:1 20399:1 20411:2 20429:1 20447:2 20469:1 20490:2 20526:2 20528:1 20546:1 20548:1 20551:1 20556:2 20559:3 20563:1 20571:1 20590:1 20596:1 20608:1 20683:1 20685:1 20730:1 20731:1 20752:3 20755:2 20803:1 20828:1 20832:1 20893:1 20906:1 20960:5 20967:1 20973:1 21002:1 21022:1 21028:1 21057:1 21087:1 21167:1 21186:1 21199:1 21262:1 21284:1 21287:1 21312:1 21341:1 21346:1 21354:1 21375:1 21376:1 21414:1 21442:1 21480:1 21483:2 21496:1 21513:2 21547:1 21549:1 21633:3 21640:1 21645:1 21657:1 21703:2 21709:1 21728:1 21735:1 21737:1 21789:1 21816:3 21817:1 21857:1 21869:1 21885:1 21891:1 21928:1 21930:1 21951:1 21966:1 21979:1 21985:1 22008:1 22043:1 22054:2 22067:1 22085:1 22105:1 22125:3 22156:1 22164:1 22171:1 22215:1 22268:1 22298:1 22304:1 22381:2 22386:1 22389:1 22449:1 22466:1 22491:1 22493:1 22542:1 22545:2 22575:1 22598:1 22604:1 22657:1 22666:2 22686:1 22687:1 22722:1 22724:1 22742:1 22779:1 22784:1 22791:1 22810:1 22843:1 22859:1 22891:1 22904:1 22905:1 22941:1 22946:1 22962:2 22991:1 22996:1 23010:1 23013:1 23015:2 23073:2 23096:2 23136:1 23142:1 23147:1 23149:1 23153:1 23158:1 23171:1 23189:1 23234:1 23252:1 23263:1 23277:2 23285:1 23307:1 23308:1 23335:1 23369:1 23403:2 23493:2 23496:2 23559:1 23563:1 23594:1 23634:1 23646:1 23669:1 23681:2 23683:1 23689:1 23692:2 23699:1 23718:1 23719:1 23720:1 23721:1 23723:1 23766:1 23777:1 23779:1 23791:1 23801:1 23848:2 23862:1 23874:1 23875:1 23882:1 23907:2 23919:1 23955:1 23966:1 23970:1 23973:1 23985:1 23994:1 23996:1 23998:1 24017:1 24092:1 24153:1 24160:1 24271:1 24288:1 24290:1 24310:1 24331:1 24334:1 24340:3 24434:1 24439:1 24459:1 24470:2 24473:1 24497:1 24507:1 24551:1 24562:1 24570:1 24586:1 24603:1 24704:1 24723:1 24733:1 24807:1 24809:1 24896:1 24904:1 24936:1 24969:3 24972:1 25033:1 25060:1 25097:1 25112:1 25114:1 25115:1 25159:1 25221:1 25240:2 25242:1 25247:1 25262:1 25265:1 25267:1 25279:1 25288:1 25306:1 25309:1 25323:1 25329:1 25333:4 25337:1 25363:1 25387:1 25392:1 25445:1 25496:1 25505:1 25507:1 25508:1 25513:1 25517:1 25519:1 25523:1 25525:1 25561:1 25567:1 25568:3 25570:1 25572:1 25614:1 25630:1 25651:1 25672:2 25715:1 25738:2 25761:1 25782:1 25792:1 25793:1 25796:1 25802:2 25820:2 25824:1 25826:1 25827:1 25861:1 25870:1 25871:2 25872:1 25900:3 25925:1 25927:1 25928:1 25930:1 25957:1 25959:1 25994:1 25997:1 26007:1 26072:1 26099:1 26211:1 26283:1 26289:1 26346:1 26368:1 26439:1 26446:1 26448:1 26484:1 26508:10 26513:1 26539:1 26547:1 26567:1 26576:1 26610:2 26622:1 26645:1 26655:2 26662:1 26692:3 26764:2 26800:1 26807:1 26813:1 26834:2 26852:1 26864:2 26867:1 26886:1 26921:1 26946:1 26952:1 26965:1 26966:2 26975:1 26977:1 26982:1 27016:1 27019:2 27020:2 27063:1 27073:1 27078:1 27096:2 27150:2 27154:1 27202:1 27227:1 27236:1 27241:1 27248:1 27333:1 27390:1 27396:1 27402:1 27433:1 27440:1 27447:1 27477:1 27491:1 27492:1 27521:1 27534:1 27564:1 27569:1 27598:1 27619:1 27635:1 27669:1 27683:1 27689:1 27706:1 27715:2 27716:1 27723:1 27730:1 27734:1 27739:1 27765:1 27775:3 27778:1 27792:1 27797:1
8 8:1 40:1 46:1 47:2 83:1 88:1 102:1 121:1 132:1 148:1 160:1 162:1 181:1 190:1 194:3 214:1 240:3 303:1 327:2 329:1 369:2 432:1 441:1 486:1 494:1 575:1 605:1 627:1 659:1 667:1 683:1 771:1 843:3 856:1 869:1 876:3 891:1 930:1 934:1 970:1 973:2 1045:1 1050:1 1052:1 1074:1 1086:1 1147:1 1176:1 1182:1 1187:1 1191:1 1201:1 1205:1 1210:1 1222:1 1238:1 1241:1 1244:1 1251:1 1253:1 1255:1 1265:1 1270:1 1296:1 1311:1 1324:1 1332:1 1371:1 1374:1 1393:2 1395:5 1399:1 1411:1 1424:2 1432:3 1468:1 1475:3 1496:1 1509:2 1523:2 1553:1 1565:2 1576:1 1578:1 1588:1 1607:1 1612:1 1626:1 1640:1 1644:1 1670:2 1692:1 1696:1 1720:1 1738:1 1740:1 1769:1 1776:1 1787:1 1797:1 1801:2 1815:1 1818:2 1824:1 1833:1 1835:1 1844:2 1856:1 1858:1 1859:1 1871:1 1883:1 1956:1 1958:1 1962:2 2006:1 2012:1 2057:4 2145:1 2179:1 2181:1 2185:3 2188:1 2193:1 2196:2 2201:6 2203:1 2208:1 2209:1 2211:1 2214:1 2216:1 2248:1 2252:1 2260:2 2285:1 2295:1 2378:1 2380:1 2418:1 2510:1 2547:1 2563:1 2565:1 2583:1 2598:1 2599:1 2602:2 2646:1 2649:1 2650:1 2662:1 2676:1 2705:1 2731:1 2760:1 2766:1 2774:5 2801:1 2803:1 2811:1 2831:1 2840:1 2854:1 2869:1 2880:1 2883:1 2885:1 2886:1 2908:1 2983:1 2996:1 3002:1 3010:1 3062:2 3090:1 3131:1 3134:3 3137:2 3138:1 3148:1 3158:3 3174:1 3195:1 3216:1 3313:2 3324:1 3325:1 3339:1 3406:1 3423:1 3434:1 3481:1 3491:1 3496:1 3506:1 3518:2 3538:1 3574:1 3614:1 3621:2 3625:2 3646:1 3650:1 3682:1 3688:1 3692:1 3709:2 3715:1 3728:1 3732:1 3738:1 3757:2 3758:1 3764:1 3807:1 3815:1 3818:1 3826:1 3836:1 3857:2 3858:2 3916:1 3923:1 3928:1 3940:1 3970:1 3983:1 4002:1 4011:1 4020:2 4030:2 4035:3 4042:1 4109:1 4115:1 4129:3 4131:1 4152:2 4169:1 4174:1 4196:1 4224:1 4230:1 4235:1 4249:1 4281:2 4351:1 4400:1 4426:2 4462:1 4471:1 4497:2 4500:1 4533:1 4546:1 4567:1 4648:9 4669:1 4670:1 4673:1 4767:1 4787:4 4789:4 4792:1 4796:1 4800:1 4802:2 4810:1 4813:1 4814:4 4871:2 4903:1 4944:1 4994:1 4997:1 5002:1 5010:1 5047:1 5074:1 5092:1 5104:2 5126:2 5136:1 5170:1 5212:1 5222:2 5286:1 5296:1 5309:1 5313:1 5315:2 5319:1 5320:1 5322:1 5413:1 5422:1 5423:1 5436:1 5437:1 5585:1 5587:1 5593:1 5643:3 5710:2 5739:3 5760:1 5773:1 5804:1 5808:1 5828:1 5832:1 5867:1 5896:1 5910:1 5913:2 5942:3 5993:1 6027:1 6034:2 6037:1 6041:1 6044:1 6045:3 6047:1 6048:1 6053:1 6058:1 6060:3 6089:1 6100:1 6101:1 6121:1 6147:2 6187:1 6206:1 6216:1 6256:1 6259:1 6295:1 6327:1 6330:1 6338:1 6353:1 6416:1 6431:1 6433:1 6437:1 6457:2 6462:1 6475:1 6486:1 6489:3 6493:3 6497:1 6508:1 6519:4 6521:2 6592:1 6596:1 6597:1 6612:1 6620:1 6625:2 6703:1 6707:1 6716:1 6721:1 6737:1 6768:1 6771:1 6779:1 6792:1 6816:3 6818:1 6838:1 6852:1 6860:1 6890:1 6903:2 6914:2 6948:1 6954:1 6960:2 6994:1 6999:1 7011:1 7048:2 7073:2 7249:4 7250:2 7273:1 7274:2 7307:1 7323:17 7344:5 7345:2 7369:1 7414:1 7434:3 7488:1 7513:2 7525:1 7539:3 7550:1 7563:1 7571:1 7590:1 7600:1 7603:1 7650:2 7675:1 7677:1 7684:1 7701:1 7715:3 7791:5 7812:1 7815:1 7817:1 7826:1 7879:1 7891:1 7922:1 7957:1 7958:1 7964:1 7990:1 7994:1 8031:1 8035:1 8054:1 8116:1 8122:1 8124:1 8125:2 8126:1 8128:2 8135:2 8155:1 8161:1 8229:1 8280:2 8282:2 8293:1 8322:1 8326:1 8362:1 8397:1 8406:1 8423:1 8439:1 8441:1 8467:1 8484:1 8485:2 8493:1 8503:1 8505:1 8515:1 8531:1 8539:1 8556:3 8558:1 8575:1 8620:1 8670:2 8697:1 8716:1 8719:3 8747:1 8748:1 8752:1 8801:1 8816:1 8898:1 8907:1 8930:2 8944:1 8954:1 8971:1 8979:1 8997:1 9000:1 9007:1 9010:1 9016:1 9048:1 9063:2 9073:1 9179:2 9180:1 9215:1 9236:2 9249:2 9257:1 9267:1 9325:1 9385:1 9418:1 9442:1 9451:1 9473:1 9486:1 9569:1 9571:1 9594:1 9605:1 9683:1 9687:1 9696:1 9697:1 9701:1 9707:1 9712:1 9757:1 9770:1 9773:1 9783:1 9788:1 9793:1 9799:2 9823:2 9844:1 9870:1 9877:5 9882:1 9917:3 9925:1 9935:1 9974:1 10013:1 10046:1 10066:1 10070:2 10075:1 10076:1 10121:1 10126:1 10136:1 10153:2 10167:1 10183:1 10187:1 10276:1 10281:1 10287:3 10296:2 10299:2 10300:3 10312:1 10322:1 10346:1 10371:2 10398:1 10404:1 10410:1 10427:2 10477:1 10498:1 10526:1 10564:1 10574:1 10580:1 10637:1 10646:1 10652:1 10654:1 10684:2 10717:1 10724:1 10750:1 10754:1 10778:1 10784:1 10786:1 10821:2 10832:1 10833:1 10850:1 10872:1 10907:1 10940:1 10965:2 10973:1 10977:1 10994:4 10995:1 11001:2 11046:1 11093:1 11109:1 11149:1 11154:1 11176:1 11229:1 11245:1 11252:1 11304:1 11354:1 11355:1 11375:1 11387:1 11388:1 11394:1 11410:2 11414:1 11421:1 11422:1 11437:1 11447:1 11477:1 11499:1 11501:1 11515:1 11552:1 11611:1 11688:1 11699:1 11704:1 11735:1 11756:1 11860:1 11876:1 11933:1 11945:1 11960:1 12007:1 12009:1 12013:1 12018:1 12021:1 12039:1 12152:1 12157:1 12167:2 12235:2 12242:1 12243:1 12250:1 12265:1 12271:3 12300:1 12313:2 12402:2 12404:5 12409:2 12472:8 12522:1 12557:1 12591:1 12641:2 12661:1 12687:1 12701:1 12710:1 12737:2 12743:1 12766:1 12768:1 12775:2 12778:1 12893:1 12894:1 12896:1 12910:1 12919:1 12932:2 12945:1 12951:1 12974:1 12982:2 12995:1 13001:1 13018:1 13033:1 13040:1 13053:1 13067:1 13068:1 13080:1 13086:1 13097:1 13120:1 13126:1 13155:1 13170:1 13186:1 13187:1 13211:1 13247:1 13270:1 13295:1 13310:1 13366:1 13371:1 13459:1 13464:1 13476:1 13498:1 13506:1 13557:1 13563:1 13586:1 13599:1 13628:2 13701:1 13744:1 13751:1 13757:1 13875:1 13894:1 13969:2 13973:1 13989:1 13991:1 13996:2 14036:1 14045:1 14106:1 14193:1 14211:1 14222:1 14259:1 14267:1 14306:1 14320:1 14403:1 14418:1 14430:1 14439:1 14445:2 14451:1 14487:1 14492:1 14508:1 14564:2 14577:1 14583:1 14586:1 14604:1 14613:1 14618:1 14622:1 14634:1 14635:1 14638:1 14643:1 14667:1 14672:1 14724:1 14769:1 14809:1 14818:1 14824:1 14841:2 14843:1 14851:2 14881:1 14901:1 14908:1 14918:1 14924:6 14952:2 14973:2 14978:1 15012:6 15018:1 15039:1 15073:1 15083:1 15095:1 15145:1 15166:1 15170:2 15173:1 15177:1 15187:1 15188:1 15193:1 15195:1 15196:1 15207:1 15301:1 15352:1 15372:1 15402:1 15419:1 15442:1 15483:3 15495:2 15513:1 15520:1 15539:1 15560:1 15567:2 15568:1 15582:2 15584:1 15629:1 15655:2 15723:1 15762:1 15775:2 15778:1 15798:1 15839:1 15842:1 15863:1 15896:1 15907:1 15962:1 16028:1 16055:1 16108:1 16117:1 16119:1 16129:1 16139:1 16157:1 16162:1 16319:1 16324:1 16329:1 16331:1 16337:1 16347:1 16351:1 16399:2 16434:1 16435:2 16457:1 16462:1 16477:1 16489:1 16518:1 16519:1 16531:1 16570:1 16583:1 16592:2 16612:1 16625:2 16674:1 16729:2 16733:1 16743:2 16756:1 16762:1 16777:1 16781:1 16782:1 16807:1 16865:1 16915:1 16925:1 16932:2 16985:1 17009:1 17098:1 17110:5 17127:1 17132:1 17183:1 17205:1 17235:1 17262:1 17265:1 17266:2 17276:1 17326:2 17335:1 17376:1 17410:1 17415:952 17433:1 17473:1 17505:2 17594:1 17600:1 17706:2 17814:1 17845:1 17869:1 17892:1 17900:1 17911:1 17917:1 17928:1 17931:1 17936:1 17980:1 18074:1 18100:1 18121:1 18142:1 18167:1 18172:2 18175:1 18187:1 18232:5 18275:2 18277:1 18303:1 18306:1 18319:1 18324:1 18335:1 18355:1 18359:2 18360:1 18365:1 18378:1 18404:1 18411:1 18412:1 18432:1 18444:1 18543:2 18545:2 18608:1 18619:1 18626:1 18687:1 18703:1 18723:1 18753:1 18754:1 18755:2 18770:1 18786:1 18801:1 18802:1 18805:1 18838:1 18845:1 18875:2 18878:1 18884:1 18886:1 18890:1 18893:1 18901:1 18912:1 18932:1 18936:1 18947:1 18966:1 19004:1 19011:1 19013:1 19014:1 19033:1 19050:1 19109:1 19137:2 19143:1 19148:1 19176:1 19205:3 19213:1 19223:1 19229:1 19233:1 19252:1 19370:1 19407:1 19441:1 19455:1 19492:1 19500:2 19502:1 19520:1 19522:1 19541:1 19556:6 19559:1 19568:2 19577:1 19582:1 19585:1 19593:1 19607:1 19609:1 19689:1 19701:1 19731:2 19733:1 19753:1 19769:1 19785:2 19797:1 19819:2 19852:1 19857:1 19877:1 19889:2 19894:1 19905:1 19918:1 19923:1 19942:1 19950:1 20016:2 20025:2 20039:1 20041:3 20069:2 20070:1 20085:1 20089:2 20143:1 20152:1 20233:1 20270:1 20325:2 20327:1 20332:1 20398:1 20399:1 20411:2 20429:1 20447:2 20469:1 20490:2 20526:2 20528:1 20546:1 20548:1 20551:1 20556:2 20559:3 20563:1 20571:1 20590:1 20596:1 20608:1 20683:1 20685:1 20730:1 20731:1 20752:3 20755:2 20803:1 20828:2 20832:1 20893:1 20906:1 20960:5 20967:1 20973:1 21002:1 21022:1 21028:1 21057:1 21087:1 21167:1 21186:1 21199:1 21262:1 21284:1 21287:1 21312:1 21341:1 21346:1 21354:1 21375:1 21376:1 21414:1 21442:1 21480:1 21483:2 21496:1 21513:2 21547:1 21549:1 21633:3 21640:1 21645:1 21657:1 21703:2 21709:1 21728:1 21735:1 21737:1 21784:1 21789:1 21816:3 21817:1 21838:1 21857:1 21869:1 21885:1 21891:1 21928:1 21930:1 21951:1 21965:1 21966:1 21979:1 21985:1 22008:1 22043:1 22054:2 22067:1 22085:1 22105:1 22125:3 22156:1 22164:1 22171:1 22215:1 22268:1 22298:1 22304:1 22336:1 22381:2 22386:1 22389:1 22449:1 22466:1 22491:1 22493:1 22542:1 22545:2 22575:1 22598:1 22604:1 22657:1 22666:2 22686:1 22687:1 22722:1 22724:1 22742:1 22779:1 22784:1 22791:1 22810:1 22843:1 22859:1 22891:1 22904:1 22905:1 22941:1 22946:1 22962:2 22965:1 22991:1 22996:1 23010:1 23013:1 23015:2 23073:2 23096:2 23136:1 23142:1 23147:1 23149:1 23153:1 23158:1 23171:1 23189:1 23234:1 23252:1 23263:1 23277:2 23285:1 23290:1 23307:1 23308:1 23335:1 23369:1 23403:2 23493:2 23496:2 23559:1 23563:1 23594:1 23634:1 23646:1 23669:1 23681:2 23683:1 23689:1 23692:3 23699:1 23718:1 23719:1 23720:1 23721:1 23723:1 23766:1 23777:1 23779:1 23791:1 23801:1 23848:2 23862:1 23874:1 23875:1 23882:1 23907:2 23911:1 23919:1 23955:1 23966:1 23970:1 23973:1 23985:1 23994:1 23996:1 23998:1 24017:1 24092:1 24153:1 24160:1 24271:1 24288:1 24290:1 24310:1 24331:1 24334:1 24340:3 24434:1 24439:1 24459:1 24470:2 24473:1 24497:1 24507:1 24551:1 24562:1 24570:1 24571:1 24586:1 24603:1 24704:1 24723:1 24733:1 24807:1 24809:1 24871:1 24893:1 24896:1 24904:1 24936:1 24956:1 24969:3 24972:1 25033:1 25060:1 25097:1 25112:1 25114:1 25115:1 25159:1 25221:1 25240:2 25242:1 25247:1 25262:1 25265:1 25267:1 25279:1 25288:1 25306:1 25309:1 25323:1 25329:1 25333:4 25337:1 25363:1 25387:1 25392:1 25445:1 25496:2 25505:1 25507:1 25508:1 25513:1 25517:1 25519:1 25523:1 25525:1 25550:1 25561:1 25567:1 25568:3 25570:1 25572:1 25614:1 25630:1 25651:1 25672:2 25715:1 25738:2 25761:1 25782:1 25792:1 25793:1 25796:1 25802:2 25820:2 25824:1 25826:1 25827:1 25861:1 25870:1 25871:2 25872:1 25900:3 25925:1 25927:1 25928:1 25930:1 25957:1 25959:1 25994:1 25997:1 26007:1 26032:1 26072:1 26099:1 26211:1 26283:1 26289:1 26346:1 26368:1 26439:1 26446:1 26448:1 26484:1 26508:10 26513:1 26539:1 26547:2 26567:1 26576:1 26610:2 26622:1 26645:1 26655:2 26662:1 26692:4 26764:2 26800:1 26807:1 26813:1 26834:2 26852:1 26864:2 26867:1 26886:1 26921:1 26944:1 26946:1 26952:1 26965:1 26966:2 26975:1 26977:1 26982:1 27016:1 27019:2 27020:3 27063:1 27073:1 27078:1 27096:2 27150:2 27154:1 27202:1 27227:1 27236:1 27241:1 27248:1 27333:1 27379:1 27390:1 27396:1 27402:1 27433:1 27440:1 27447:1 27477:1 27491:1 27492:1 27521:1 27534:1 27564:1 27569:1 27598:1 27619:1 27635:1 27669:1 27683:1 27689:1 27706:1 27715:2 27716:2 27723:1 27730:1 27734:1 27739:1 27765:1 27775:3 27778:1 27792:1 27797:1
8 8:1 40:1 46:1 47:2 83:2 88:1 102:1 121:1 132:1 148:1 160:1 162:1 181:1 190:1 194:3 214:1 234:1 240:3 303:1 327:3 329:1 369:2 432:1 441:1 486:1 494:1 575:1 605:1 627:1 659:1 667:1 683:1 771:1 843:3 856:1 869:1 876:3 891:1 930:3 934:1 970:1 973:2 1045:1 1050:1 1052:1 1074:1 1086:1 1105:1 1147:1 1176:1 1182:1 1187:1 1191:1 1201:1 1205:1 1210:1 1221:1 1222:1 1238:1 1241:1 1244:1 1251:1 1253:1 1255:1 1265:1 1270:1 1296:1 1311:1 1324:1 1332:1 1371:1 1374:1 1393:2 1395:5 1399:1 1411:1 1424:2 1432:3 1468:1 1475:3 1496:1 1509:2 1523:2 1553:1 1565:2 1576:1 1578:1 1588:1 1607:1 1612:1 1626:1 1640:1 1644:1 1663:1 1670:2 1681:1 1692:1 1696:1 1720:1 1732:1 1738:1 1740:1 1744:1 1769:1 1776:1 1787:1 1797:1 1801:2 1815:1 1818:2 1824:1 1833:1 1835:1 1844:2 1856:1 1858:1 1859:1 1871:1 1883:1 1887:1 1956:1 1958:1 1962:2 1997:1 2006:1 2012:1 2057:4 2145:1 2176:1 2179:1 2181:1 2185:3 2188:1 2193:1 2196:2 2201:6 2203:2 2208:1 2209:1 2211:2 2214:1 2216:1 2248:1 2252:1 2260:2 2285:1 2295:1 2378:1 2380:1 2418:1 2430:1 2437:1 2510:1 2547:1 2557:1 2563:1 2565:1 2569:1 2583:1 2597:1 2598:1 2599:1 2602:2 2646:1 2649:1 2650:1 2662:1 2676:1 2705:1 2731:1 2760:1 2766:2 2774:5 2801:1 2803:1 2811:1 2831:1 2840:1 2854:1 2869:1 2880:1 2883:1 2885:1 2886:1 2908:1 2983:1 2996:1 3002:1 3010:1 3062:2 3090:1 3131:1 3134:3 3137:2 3138:1 3148:1 3158:3 3174:1 3195:1 3216:1 3313:2 3324:1 3325:1 3339:1 3406:1 3423:1 3434:1 3442:1 3481:1 3491:1 3496:1 3506:1 3518:2 3538:1 3574:1 3614:1 3621:2 3625:2 3646:1 3650:1 3682:1 3688:1 3692:1 3709:2 3715:1 3724:1 3728:2 3732:1 3738:1 3757:2 3758:1 3764:1 3807:1 3815:1 3818:1 3826:1 3836:1 3857:2 3858:3 3916:1 3923:1 3928:1 3934:1 3940:1 3970:1 3983:1 4002:1 4011:1 4020:2 4030:2 4031:1 4035:3 4042:1 4109:1 4115:1 4129:4 4131:1 4152:2 4169:1 4174:1 4196:1 4224:1 4230:1 4235:1 4249:1 4281:2 4351:1 4400:1 4426:2 4462:1 4471:1 4497:3 4498:1 4500:1 4533:1 4536:1 4546:1 4567:1 4648:9 4669:1 4670:1 4673:1 4767:2 4787:4 4789:4 4792:1 4796:1 4800:2 4802:2 4810:1 4813:1 4814:4 4871:2 4903:1 4944:1 4994:1 4997:1 5002:1 5005:1 5010:1 5013:1 5047:1 5074:1 5092:1 5104:2 5126:2 5136:1 5170:1 5212:1 5222:2 5224:1 5286:1 5296:1 5309:2 5313:1 5315:2 5319:1 5320:1 5322:1 5413:1 5422:1 5423:1 5436:1 5437:1 5585:1 5587:1 5593:1 5643:3 5708:1 5710:2 5739:4 5760:1 5773:1 5804:1 5808:1 5828:1 5832:1 5867:1 5896:1 5910:1 5913:3 5942:3 5993:2 6027:1 6034:2 6037:1 6041:1 6044:1 6045:3 6047:1 6048:2 6053:1 6058:2 6060:3 6089:1 6100:1 6101:1 6121:1 6147:2 6187:1 6206:1 6216:1 6256:1 6259:1 6295:1 6327:1 6330:1 6338:1 6353:1 6416:1 6418:1 6431:1 6433:1 6437:1 6457:2 6462:1 6475:1 6486:1 6489:3 6493:3 6497:1 6508:1 6519:4 6521:2 6522:1 6592:1 6596:1 6597:1 6612:1 6620:1 6625:2 6703:1 6707:1 6716:1 6721:1 6737:1 6768:1 6771:1 6779:1 6792:1 6816:3 6818:1 6838:1 6852:1 6860:1 6890:1 6903:2 6914:2 6948:1 6954:1 6960:2 6994:1 6999:1 7011:1 7048:3 7073:3 7077:1 7137:1 7249:5 7250:2 7273:1 7274:2 7307:1 7323:20 7344:5 7345:2 7369:1 7414:1 7434:3 7488:1 7513:2 7525:1 7539:3 7550:1 7563:1 7566:1 7571:1 7590:1 7600:1 7603:1 7646:1 7650:2 7675:1 7677:1 7684:1 7701:1 7715:3 7791:6 7812:1 7815:1 7817:1 7826:1 7879:1 7891:1 7922:1 7949:1 7957:1 7958:1 7964:1 7990:1 7994:1 8026:1 8031:1 8035:1 8054:1 8116:1 8122:1 8124:1 8125:2 8126:1 8128:2 8135:2 8155:1 8161:1 8229:1 8268:1 8280:2 8282:2 8293:1 8322:1 8326:1 8362:1 8397:1 8406:1 8413:1 8423:1 8439:1 8441:1 8467:1 8484:1 8485:2 8493:1 8503:1 8505:1 8515:1 8531:1 8539:1 8556:3 8558:1 8575:1 8620:1 8670:2 8694:1 8697:1 8716:1 8719:3 8747:1 8748:1 8752:1 8801:1 8816:1 8853:1 8898:1 8907:1 8930:2 8944:1 8954:1 8971:1 8979:1 8991:1 8997:1 9000:1 9007:1 9010:1 9016:1 9048:1 9063:2 9073:1 9179:2 9180:1 9215:1 9236:2 9249:2 9257:1 9267:1 9325:1 9385:1 9418:1 9442:1 9451:1 9473:1 9486:1 9495:1 9569:1 9571:1 9594:1 9597:1 9605:1 9683:1 9687:1 9696:1 9697:1 9701:1 9707:1 9712:1 9757:1 9770:1 9773:1 9783:1 9788:1 9793:1 9799:2 9823:2 9844:1 9870:1 9877:5 9882:1 9917:3 9925:1 9935:1 9974:1 10013:1 10046:1 10066:1 10070:2 10075:1 10076:1 10121:1 10126:1 10136:1 10153:2 10167:1 10183:1 10187:1 10276:1 10281:1 10287:3 10289:1 10296:2 10299:2 10300:3 10304:1 10308:1 10312:1 10322:1 10346:1 10371:2 10398:1 10404:1 10410:1 10427:2 10429:1 10477:1 10498:1 10526:1 10564:1 10574:1 10580:1 10637:1 10646:1 10652:2 10654:1 10684:2 10717:2 10724:1 10750:1 10754:1 10778:1 10784:1 10786:1 10821:2 10832:1 10833:1 10850:1 10855:1 10872:1 10907:1 10940:1 10965:2 10973:1 10977:1 10994:4 10995:1 11001:2 11046:1 11093:1 11109:1 11149:1 11154:1 11176:1 11229:1 11245:1 11252:1 11304:1 11354:1 11355:1 11375:1 11387:1 11388:1 11394:1 11410:2 11414:1 11421:1 11422:1 11437:1 11447:1 11477:1 11499:1 11501:1 11515:1 11552:1 11611:1 11662:1 11671:1 11688:1 11699:1 11704:1 11735:1 11756:1 11778:1 11860:1 11876:1 11888:1 11903:1 11933:1 11945:1 11960:1 12007:1 12009:1 12013:1 12018:1 12021:1 12039:1 12152:1 12156:1 12157:1 12167:2 12235:2 12242:1 12243:1 12250:1 12265:1 12271:3 12300:2 12313:2 12369:1 12385:1 12402:2 12404:5 12409:2 12472:10 12522:1 12557:1 12591:1 12640:1 12641:2 12661:1 12687:1 12701:1 12710:1 12737:2 12743:1 12766:1 12768:1 12775:2 12778:1 12893:1 12894:1 12896:1 12910:1 12919:1 12932:2 12945:1 12951:1 12974:1 12982:2 12995:1 13001:1 13018:1 13033:1 13040:1 13053:1 13067:1 13068:1 13080:1 13086:1 13097:1 13120:1 13126:1 13155:1 13170:1 13186:1 13187:1 13211:1 13247:1 13270:1 13295:1 13310:1 13366:1 13371:1 13459:1 13464:1 13476:1 13498:1 13506:1 13557:1 13563:1 13586:1 13599:1 13628:2 13701:1 13744:1 13751:1 13757:1 13805:1 13875:1 13894:1 13969:2 13973:1 13989:1 13991:1 13996:2 14036:1 14045:1 14106:1 14193:1 14211:1 14222:1 14240:1 14259:1 14267:1 14306:1 14320:1 14339:1 14403:1 14418:1 14430:1 14439:1 14445:2 14451:1 14487:2 14492:1 14508:1 14564:2 14577:1 14583:1 14586:1 14604:1 14613:1 14618:1 14622:1 14628:1 14634:1 14635:1 14638:1 14643:1 14667:1 14672:1 14724:1 14728:1 14769:1 14797:1 14809:1 14818:1 14824:1 14841:2 14843:1 14851:2 14881:1 14901:1 14907:1 14908:1 14918:1 14924:8 14952:2 14973:2 14978:1 15012:6 15018:1 15039:2 15073:1 15083:1 15095:1 15144:1 15145:1 15166:1 15170:2 15173:1 15177:1 15187:2 15188:1 15193:1 15195:1 15196:1 15207:1 15301:1 15352:1 15372:1 15402:1 15419:1 15442:1 15483:3 15495:2 15513:1 15520:1 15539:1 15560:1 15567:2 15568:1 15578:1 15582:2 15584:1 15629:1 15655:2 15723:1 15762:1 15775:2 15778:1 15798:1 15839:1 15842:1 15863:1 15896:1 15907:1 15915:1 15962:1 16028:1 16055:1 16108:1 16117:1 16119:1 16129:1 16139:1 16157:1 16162:1 16319:1 16324:1 16329:1 16331:1 16337:1 16347:1 16351:1 16399:2 16434:1 16435:3 16457:1 16462:1 16477:1 16489:1 16518:2 16519:1 16531:1 16570:1 16583:1 16592:2 16612:1 16625:2 16674:1 16729:2 16733:1 16743:2 16756:1 16762:1 16777:1 16781:1 16782:1 16807:1 16865:1 16915:1 16925:1 16932:2 16934:1 16985:1 17009:1 17016:1 17098:1 17110:5 17127:1 17132:1 17183:1 17205:1 17235:1 17262:1 17265:1 17266:2 17276:1 17326:2 17335:1 17376:1 17410:1 17415:1011 17433:1 17473:1 17505:2 17594:1 17600:1 17706:2 17814:1 17845:1 17869:1 17892:1 17900:1 17911:1 17917:1 17928:1 17931:1 17936:1 17978:1 17980:1 18074:1 18085:1 18100:1 18121:1 18142:1 18167:1 18172:2 18175:1 18187:1 18232:5 18275:2 18277:1 18303:1 18306:1 18319:1 18320:1 18324:1 18335:1 18355:1 18359:2 18360:1 18364:1 18365:1 18378:1 18404:1 18411:1 18412:1 18432:1 18444:1 18543:2 18545:2 18608:1 18619:1 18626:1 18663:1 18687:1 18703:1 18723:1 18724:1 18753:1 18754:1 18755:2 18770:1 18786:1 18801:1 18802:1 18805:1 18838:1 18845:1 18861:1 18875:2 18878:1 18884:1 18886:1 18890:1 18893:1 18901:1 18912:1 18932:1 18936:1 18947:1 18966:1 19004:1 19011:1 19013:1 19014:1 19033:1 19050:1 19109:1 19137:2 19143:1 19148:1 19176:1 19177:1 19205:3 19213:1 19223:1 19229:1 19233:1 19252:1 19370:1 19407:1 19441:1 19455:1 19492:1 19500:2 19502:1 19520:1 19522:1 19541:1 19556:6 19559:1 19568:2 19577:1 19582:1 19585:1 19593:1 19607:1 19609:1 19689:1 19701:1 19731:2 19733:1 19753:1 19769:1 19785:2 19797:1 19819:2 19852:1 19857:1 19877:1 19889:2 19894:1 19905:2 19918:1 19923:1 19942:1 19950:1 20016:2 20025:2 20039:1 20041:3 20069:2 20070:1 20085:1 20089:2 20143:1 20152:1 20193:1 20233:1 20270:1 20274:1 20325:2 20327:1 20332:1 20395:1 20398:1 20399:1 20401:1 20411:2 20429:1 20447:2 20469:1 20490:2 20526:2 20528:1 20546:1 20548:1 20551:1 20556:2 20559:3 20563:1 20571:1 20590:1 20592:1 20596:1 20608:1 20682:1 20683:1 20685:1 20730:1 20731:1 20752:3 20755:2 20803:2 20828:2 20832:1 20893:1 20906:1 20960:5 20967:1 20973:1 21002:1 21022:1 21028:1 21057:1 21087:1 21103:1 21167:1 21186:1 21199:1 21262:1 21284:1 21287:1 21312:1 21341:1 21346:1 21354:1 21375:1 21376:1 21414:1 21442:1 21480:1 21483:2 21496:1 21513:2 21547:1 21549:1 21609:1 21633:3 21640:1 21645:1 21657:1 21683:1 21703:2 21709:1 21728:1 21735:1 21737:1 21784:1 21789:1 21816:3 21817:1 21838:1 21857:1 21869:1 21885:1 21891:1 21928:1 21930:1 21951:1 21965:1 21966:1 21971:1 21979:1 21985:1 22008:1 22015:1 22026:1 22043:1 22054:3 22067:1 22085:1 22105:1 22125:3 22156:1 22164:1 22171:1 22215:1 22268:1 22298:1 22304:1 22336:1 22381:2 22386:1 22389:1 22449:1 22466:1 22491:1 22493:1 22542:1 22545:2 22575:1 22598:1 22604:1 22657:1 22666:2 22686:1 22687:1 22722:1 22724:1 22742:1 22779:1 22784:1 22791:1 22810:1 22843:1 22859:1 22891:1 22904:1 22905:1 22941:1 22946:1 22962:2 22965:1 22991:1 22996:1 23010:1 23013:1 23015:2 23025:1 23073:2 23096:2 23136:1 23142:1 23147:1 23149:1 23153:1 23158:1 23171:1 23189:1 23234:1 23252:1 23263:1 23277:2 23285:1 23290:1 23307:1 23308:2 23335:1 23360:1 23369:1 23403:2 23493:2 23496:2 23559:1 23563:1 23594:1 23634:1 23646:1 23669:1 23681:2 23683:1 23689:1 23692:3 23699:1 23718:1 23719:1 23720:1 23721:1 23723:1 23766:1 23777:2 23779:1 23791:1 23801:1 23848:3 23862:1 23865:1 23874:1 23875:1 23882:1 23907:2 23911:1 23919:1 23955:1 23966:1 23970:1 23973:1 23985:1 23994:1 23996:1 23998:1 24017:1 24092:1 24093:1 24153:1 24160:1 24166:1 24271:1 24288:1 24290:1 24310:1 24331:1 24334:1 24340:3 24434:1 24439:1 24459:1 24470:2 24473:1 24497:1 24507:1 24551:1 24562:1 24570:1 24571:1 24586:1 24603:1 24704:1 24723:1 24733:1 24740:1 24807:1 24809:1 24871:1 24893:1 24896:1 24904:1 24936:1 24956:1 24969:4 24972:1 25033:1 25060:1 25097:1 25112:1 25114:1 25115:1 25159:1 25221:1 25240:2 25242:1 25247:1 25262:1 25265:1 25267:1 25279:1 25288:1 25306:1 25309:1 25323:1 25329:1 25333:4 25337:1 25363:1 25387:1 25392:1 25445:1 25496:2 25505:1 25507:1 25508:1 25513:1 25517:1 25518:1 25519:1 25523:1 25525:1 25550:1 25561:1 25567:1 25568:3 25570:1 25572:1 25584:1 25614:1 25630:1 25651:1 25672:2 25715:1 25738:2 25761:1 25782:1 25792:1 25793:1 25796:1 25802:2 25820:2 25824:1 25826:1 25827:1 25861:1 25870:1 25871:2 25872:1 25900:3 25925:1 25927:1 25928:1 25930:1 25957:1 25959:1 25994:1 25997:1 26007:1 26032:1 26072:1 26099:1 26204:1 26211:1 26283:1 26289:1 26346:1 26349:1 26368:1 26439:1 26446:1 26448:1 26484:1 26508:10 26513:1 26539:1 26547:2 26567:1 26576:1 26610:2 26619:1 26622:1 26645:1 26655:3 26662:1 26692:5 26764:2 26800:1 26807:1 26813:1 26834:2 26852:2 26864:2 26867:1 26886:1 26921:1 26944:1 26946:2 26952:1 26965:1 26966:2 26975:1 26977:1 26982:1 27016:1 27019:2 27020:3 27063:1 27073:1 27078:2 27096:2 27150:2 27154:1 27202:1 27227:1 27236:1 27241:1 27248:1 27333:1 27379:1 27390:1 27396:1 27402:1 27433:1 27440:1 27447:1 27477:1 27491:1 27492:1 27521:1 27530:1 27534:1 27564:1 27569:1 27598:1 27619:1 27635:1 27669:1 27672:1 27683:1 27689:1 27706:1 27715:2 27716:2 27723:1 27730:1 27734:1 27739:1 27765:1 27775:3 27778:1 27784:1 27792:1 27797:1
8 1:1 8:1 40:1 46:1 47:2 83:2 88:1 102:1 121:1 132:1 148:1 160:1 162:1 181:1 190:1 194:3 214:1 234:1 240:3 303:1 327:3 329:1 369:2 432:1 441:1 486:1 494:1 575:1 587:1 605:1 627:1 659:1 667:1 683:1 771:1 843:3 856:1 869:1 876:3 891:1 925:1 930:3 934:1 970:1 973:2 1045:1 1050:1 1052:1 1074:1 1086:1 1105:1 1147:1 1176:1 1182:1 1187:1 1191:1 1201:1 1205:1 1210:1 1221:1 1222:1 1238:1 1241:1 1244:1 1251:1 1253:1 1255:1 1265:1 1270:1 1296:1 1311:1 1324:1 1332:1 1371:1 1374:1 1393:2 1395:5 1399:1 1411:1 1424:2 1432:3 1468:1 1475:3 1496:1 1509:2 1523:2 1553:1 1565:2 1576:1 1578:1 1588:1 1607:1 1612:1 1626:1 1640:1 1644:1 1663:1 1670:2 1681:1 1682:1 1692:1 1696:1 1720:1 1732:1 1738:1 1740:1 1744:1 1769:1 1774:1 1776:2 1787:2 1797:1 1801:2 1815:1 1818:2 1824:1 1833:1 1835:1 1844:2 1856:1 1858:1 1859:1 1871:1 1883:1 1887:1 1928:1 1956:1 1958:1 1962:2 1997:1 2006:1 2012:1 2057:4 2145:1 2176:1 2177:1 2179:1 2181:1 2185:3 2188:1 2193:1 2196:2 2201:6 2203:2 2208:1 2209:1 2211:2 2214:1 2216:1 2248:1 2252:1 2260:2 2285:1 2295:1 2378:1 2380:1 2418:1 2430:1 2437:1 2510:1 2547:1 2557:1 2563:1 2565:1 2569:1 2583:1 2597:1 2598:1 2599:1 2602:3 2646:1 2649:1 2650:1 2662:1 2676:1 2705:1 2731:1 2760:1 2766:2 2774:6 2801:1 2803:1 2811:1 2831:2 2840:1 2854:1 2869:1 2880:1 2883:1 2885:1 2886:1 2908:1 2983:1 2996:1 3002:1 3010:1 3062:2 3090:1 3131:1 3134:3 3137:2 3138:1 3148:1 3158:3 3174:1 3195:1 3216:1 3313:2 3324:1 3325:1 3339:1 3406:1 3423:1 3434:1 3442:1 3481:1 3491:1 3496:1 3506:1 3518:2 3538:1 3574:1 3614:1 3621:2 3625:2 3646:1 3650:1 3682:1 3688:1 3692:1 3709:2 3715:1 3724:1 3728:2 3732:1 3738:1 3757:2 3758:1 3764:1 3807:1 3810:1 3815:1 3818:1 3826:1 3836:1 3857:2 3858:3 3916:2 3923:1 3928:1 3934:1 3940:1 3970:1 3983:1 4002:1 4011:1 4020:2 4030:2 4031:1 4035:3 4042:1 4109:1 4115:1 4129:4 4131:1 4152:2 4169:1 4174:1 4196:1 4224:1 4230:1 4235:1 4249:1 4281:2 4351:1 4400:1 4426:2 4462:1 4471:1 4497:3 4498:1 4500:1 4533:1 4536:1 4546:1 4567:1 4648:11 4669:1 4670:1 4673:1 4767:2 4787:4 4789:4 4792:1 4796:1 4800:2 4802:2 4810:1 4813:1 4814:4 4871:2 4903:1 4944:1 4947:1 4994:1 4997:1 5002:1 5005:1 5010:1 5013:1 5047:1 5074:1 5092:1 5104:2 5126:2 5136:1 5170:1 5182:1 5212:1 5222:2 5224:1 5253:1 5286:1 5296:1 5309:2 5313:1 5315:2 5319:1 5320:1 5322:1 5413:1 5422:1 5423:1 5436:1 5437:1 5585:1 5587:1 5593:1 5643:3 5708:1 5710:2 5739:4 5760:1 5773:1 5804:1 5808:1 5828:1 5832:1 5862:1 5867:1 5896:1 5910:1 5913:3 5942:3 5993:3 6027:1 6034:2 6037:1 6041:1 6044:1 6045:3 6047:1 6048:2 6053:1 6058:2 6060:3 6089:1 6100:1 6101:1 6121:1 6147:2 6187:1 6206:1 6216:1 6256:1 6259:1 6288:1 6295:1 6327:1 6330:1 6338:1 6353:1 6416:1 6418:1 6431:1 6433:1 6437:1 6457:2 6462:1 6475:1 6486:1 6489:3 6493:3 6497:1 6507:1 6508:1 6519:4 6521:2 6522:1 6592:1 6596:1 6597:1 6612:1 6620:1 6625:2 6703:1 6707:1 6716:1 6721:1 6737:1 6748:1 6768:1 6771:1 6779:1 6792:1 6816:3 6818:1 6838:1 6852:1 6860:1 6890:1 6903:2 6914:2 6948:1 6954:1 6960:2 6994:1 6999:1 7011:1 7048:3 7073:3 7077:1 7137:1 7249:5 7250:2 7273:1 7274:2 7307:1 7323:20 7344:6 7345:3 7369:1 7414:1 7434:3 7488:2 7513:2 7525:1 7539:4 7550:1 7563:1 7566:1 7571:1 7590:1 7600:1 7603:1 7646:1 7650:2 7675:1 7677:1 7684:1 7701:1 7715:3 7791:6 7812:1 7815:1 7817:1 7826:1 7879:1 7891:1 7922:1 7949:1 7957:2 7958:1 7964:1 7990:1 7994:1 8026:1 8031:1 8035:1 8054:1 8116:1 8122:1 8124:1 8125:3 8126:1 8128:2 8135:2 8155:1 8161:1 8229:1 8268:1 8280:2 8282:2 8293:1 8322:1 8326:1 8362:1 8397:1 8406:1 8413:1 8423:1 8439:1 8441:1 8467:1 8484:1 8485:2 8493:1 8503:1 8505:1 8515:1 8531:1 8539:1 8556:3 8558:1 8575:1 8620:1 8670:2 8694:1 8697:1 8716:1 8719:3 8747:1 8748:1 8752:1 8801:1 8816:1 8853:1 8878:1 8898:1 8907:1 8930:2 8944:1 8954:1 8971:1 8979:1 8991:1 8997:1 9000:1 9007:1 9010:1 9016:1 9048:1 9063:2 9073:1 9179:2 9180:1 9215:1 9236:2 9249:2 9257:1 9267:1 9325:1 9385:1 9418:1 9442:1 9451:1 9460:1 9473:1 9486:1 9495:1 9544:1 9569:1 9571:1 9594:1 9597:1 9605:1 9683:1 9687:1 9696:1 9697:1 9701:1 9707:1 9712:1 9757:1 9770:1 9773:1 9783:1 9788:1 9793:1 9799:2 9803:1 9823:3 9844:1 9870:1 9877:5 9882:1 9917:3 9925:1 9935:1 9974:1 10013:1 10046:1 10066:1 10070:2 10075:1 10076:1 10121:1 10126:1 10136:1 10153:2 10167:1 10183:1 10187:1 10276:1 10281:1 10287:3 10289:2 10296:2 10299:2 10300:3 10304:1 10308:1 10312:1 10322:1 10346:1 10371:2 10398:1 10404:1 10410:1 10427:2 10429:1 10477:1 10498:1 10526:1 10564:1 10574:1 10580:1 10637:1 10646:1 10652:2 10654:1 10684:2 10717:2 10724:1 10750:1 10754:1 10778:1 10784:1 10786:1 10799:1 10821:2 10832:1 10833:1 10850:1 10855:1 10872:1 10907:1 10933:1 10940:2 10965:2 10973:1 10977:1 10989:1 10994:4 10995:1 11001:2 11046:1 11093:1 11109:1 11149:1 11154:1 11176:1 11229:1 11245:1 11252:1 11304:1 11313:1 11354:1 11355:2 11375:1 11387:1 11388:1 11394:1 11410:2 11414:1 11421:1 11422:1 11437:1 11447:1 11477:1 11499:1 11501:2 11515:1 11552:1 11611:1 11662:1 11671:1 11688:1 11699:1 11704:1 11735:1 11756:1 11778:1 11860:1 11876:1 11888:1 11903:1 11933:1 11945:1 11960:1 12007:1 12009:1 12013:1 12018:1 12021:1 12023:1 12039:1 12152:1 12156:1 12157:1 12167:2 12235:2 12242:1 12243:1 12250:1 12265:1 12271:3 12300:2 12313:2 12369:1 12385:1 12402:2 12404:5 12409:2 12472:10 12522:1 12557:1 12591:1 12640:1 12641:2 12661:1 12687:1 12701:1 12710:1 12737:2 12743:1 12766:1 12768:1 12775:3 12778:1 12893:1 12894:2 12896:1 12910:1 12919:1 12932:2 12945:1 12951:1 12970:1 12974:1 12982:2 12995:1 13001:1 13018:1 13033:1 13040:1 13053:1 13067:1 13068:1 13080:1 13086:1 13097:1 13120:2 13126:1 13155:1 13170:1 13186:1 13187:1 13211:1 13247:1 13270:1 13295:1 13310:1 13316:1 13366:1 13371:1 13459:1 13464:1 13476:1 13498:1 13506:2 13557:1 13563:1 13586:1 13597:1 13599:1 13628:2 13676:1 13701:1 13708:1 13723:1 13744:1 13751:1 13757:1 13805:1 13875:1 13894:1 13969:2 13973:1 13989:1 13991:2 13996:2 14036:1 14045:1 14106:1 14193:1 14211:1 14222:1 14240:1 14259:1 14267:1 14306:1 14320:1 14339:1 14403:1 14418:1 14430:1 14439:1 14445:2 14451:1 14487:2 14492:1 14508:1 14564:2 14577:1 14583:1 14586:1 14604:1 14613:1 14618:1 14622:1 14628:1 14634:1 14635:1 14638:1 14643:1 14667:1 14672:1 14724:1 14728:1 14769:1 14797:1 14809:1 14818:1 14824:1 14841:2 14843:1 14851:2 14881:1 14901:1 14907:1 14908:1 14918:1 14924:8 14952:2 14967:1 14973:2 14978:1 15012:7 15018:1 15039:2 15073:1 15083:1 15095:1 15144:1 15145:1 15166:1 15170:2 15173:1 15177:1 15187:2 15188:1 15193:1 15195:1 15196:1 15207:1 15301:1 15314:1 15352:1 15372:1 15399:2 15402:1 15419:1 15442:1 15483:3 15495:2 15513:1 15520:1 15539:1 15560:1 15567:2 15568:1 15578:1 15582:2 15584:1 15629:1 15655:2 15723:1 15762:1 15775:2 15778:1 15798:1 15839:1 15842:1 15863:1 15896:1 15907:1 15915:1 15962:1 16028:2 16055:1 16108:1 16117:1 16119:1 16129:1 16139:1 16157:1 16162:1 16319:1 16324:1 16329:1 16331:1 16337:1 16347:1 16351:1 16399:2 16434:2 16435:3 16457:1 16462:1 16477:1 16489:1 16505:1 16518:2 16519:1 16531:1 16570:1 16583:1 16592:2 16612:1 16625:2 16674:1 16729:2 16733:1 16743:2 16756:1 16762:1 16777:1 16781:1 16782:1 16807:1 16865:1 16915:1 16925:1 16932:2 16934:1 16985:1 17009:1 17016:1 17098:1 17110:5 17127:1 17132:1 17183:1 17205:1 17235:1 17262:1 17265:1 17266:2 17276:1 17326:2 17335:1 17376:1 17410:1 17415:1067 17433:1 17473:1 17476:1 17505:2 17594:1 17600:1 17706:2 17814:1 17845:1 17869:1 17892:1 17900:1 17911:1 17917:1 17928:1 17931:1 17936:1 17978:1 17980:1 18074:1 18085:1 18100:1 18121:1 18142:1 18167:1 18172:2 18175:1 18187:1 18232:5 18275:2 18277:1 18303:1 18306:1 18319:1 18320:1 18324:1 18335:1 18355:1 18359:2 18360:1 18364:1 18365:1 18378:1 18404:1 18410:1 18411:1 18412:1 18432:1 18444:1 18457:1 18543:2 18545:2 18608:1 18619:1 18626:1 18663:1 18687:1 18703:1 18723:1 18724:1 18753:1 18754:1 18755:2 18770:1 18786:1 18801:1 18802:1 18805:1 18838:1 18845:1 18861:1 18875:2 18878:1 18884:1 18886:1 18890:1 18893:1 18901:1 18912:1 18932:1 18936:1 18947:1 18966:1 19004:1 19011:1 19013:1 19014:1 19033:2 19050:1 19064:1 19109:1 19137:2 19143:1 19148:1 19176:1 19177:1 19205:3 19213:1 19223:1 19229:1 19233:1 19252:1 19268:1 19370:1 19395:1 19407:1 19441:1 19455:1 19492:1 19500:2 19502:1 19520:1 19522:1 19541:1 19556:6 19559:1 19568:2 19574:1 19577:1 19582:1 19585:1 19593:1 19607:1 19609:1 19689:1 19701:1 19731:2 19733:1 19753:1 19769:1 19785:2 19797:1 19813:1 19819:2 19852:1 19857:1 19877:1 19889:2 19894:1 19905:2 19910:1 19918:1 19923:1 19942:1 19950:1 20016:2 20025:2 20039:1 20041:3 20069:2 20070:1 20085:1 20089:2 20143:1 20152:1 20193:1 20233:1 20270:1 20274:1 20325:2 20327:1 20332:1 20395:1 20398:1 20399:1 20401:1 20411:2 20429:1 20447:2 20469:1 20490:2 20526:2 20528:1 20546:1 20548:1 20551:2 20554:1 20556:2 20559:3 20563:1 20571:1 20590:1 20592:1 20596:1 20608:1 20630:1 20682:1 20683:1 20685:1 20730:1 20731:1 20752:3 20755:2 20803:2 20828:2 20832:1 20893:1 20906:1 20927:1 20939:2 20960:6 20967:1 20973:1 21002:1 21022:1 21028:1 21057:1 21087:1 21103:1 21167:1 21186:1 21199:1 21262:1 21284:1 21287:1 21312:1 21341:1 21346:1 21354:2 21363:1 21365:1 21375:1 21376:1 21397:1 21414:1 21420:1 21442:1 21480:1 21483:2 21496:1 21513:2 21536:1 21547:1 21549:1 21609:1 21633:3 21640:1 21645:1 21657:1 21683:1 21703:2 21709:1 21728:1 21735:1 21737:1 21784:1 21789:1 21816:3 21817:1 21838:1 21857:1 21869:1 21885:1 21891:1 21928:1 21930:1 21951:1 21965:1 21966:1 21971:1 21979:1 21985:1 22008:2 22015:1 22026:1 22043:1 22054:3 22067:1 22085:1 22105:1 22125:3 22156:1 22164:1 22171:1 22215:1 22268:1 22288:1 22298:1 22304:1 22336:1 22381:2 22386:1 22389:1 22449:1 22466:1 22491:1 22493:1 22542:1 22545:2 22575:1 22598:1 22604:1 22657:1 22666:2 22686:1 22687:1 22722:1 22724:1 22742:1 22779:1 22784:1 22791:1 22810:1 22814:1 22843:1 22859:1 22891:1 22904:1 22905:1 22941:1 22946:1 22962:2 22965:1 22991:1 22996:1 23010:1 23013:1 23015:2 23025:1 23038:1 23073:2 23096:2 23136:1 23142:1 23147:1 23149:1 23153:1 23158:1 23171:1 23189:1 23234:1 23252:1 23263:1 23277:2 23285:1 23290:1 23307:1 23308:2 23335:1 23360:1 23369:1 23403:2 23422:1 23493:2 23496:2 23559:1 23563:1 23594:1 23634:1 23646:1 23660:1 23669:1 23681:2 23683:1 23689:1 23692:3 23699:1 23718:1 23719:1 23720:1 23721:1 23723:1 23766:2 23777:2 23779:1 23791:1 23801:1 23848:3 23862:1 23865:1 23874:1 23875:1 23882:1 23907:2 23911:1 23919:1 23955:1 23966:1 23970:1 23973:1 23985:1 23994:1 23996:1 23998:1 24017:1 24092:1 24093:1 24153:1 24160:1 24166:1 24271:1 24288:1 24290:1 24310:1 24331:1 24334:1 24340:3 24434:1 24439:1 24459:1 24470:2 24473:1 24497:1 24507:1 24551:1 24562:1 24570:1 24571:1 24586:1 24603:1 24704:1 24723:1 24733:1 24740:1 24807:1 24809:1 24871:1 24893:1 24896:1 24904:1 24936:1 24956:1 24969:4 24972:1 25033:1 25060:1 25097:1 25112:1 25114:1 25115:1 25159:1 25221:1 25240:2 25242:1 25247:1 25249:1 25262:1 25265:1 25267:1 25279:1 25288:1 25306:1 25309:1 25323:1 25329:1 25333:4 25337:1 25363:1 25387:1 25392:1 25445:1 25496:2 25505:1 25507:1 25508:1 25513:1 25517:2 25518:1 25519:1 25523:1 25525:1 25550:1 25561:1 25567:1 25568:3 25570:1 25572:1 25584:1 25614:1 25630:1 25651:1 25672:2 25715:1 25738:2 25761:1 25782:1 25792:1 25793:1 25796:1 25802:2 25820:2 25824:1 25826:1 25827:1 25861:1 25870:1 25871:2 25872:1 25900:3 25925:1 25927:2 25928:1 25930:1 25957:1 25959:1 25994:1 25997:1 26007:1 26019:1 26032:1 26072:1 26099:1 26204:1 26211:1 26283:1 26289:1 26346:1 26349:1 26368:1 26439:1 26446:1 26448:1 26484:1 26508:11 26513:1 26530:1 26539:1 26547:2 26567:1 26576:1 26610:2 26619:1 26622:1 26645:1 26655:3 26662:1 26692:5 26733:1 26764:2 26800:1 26807:1 26813:1 26834:2 26852:2 26864:2 26867:1 26886:1 26904:1 26921:1 26944:1 26946:2 26952:1 26965:1 26966:2 26975:1 26977:1 26982:1 27016:1 27019:2 27020:3 27063:1 27073:1 27078:2 27096:2 27150:2 27154:1 27202:1 27227:1 27236:1 27241:1 27248:1 27309:1 27333:1 27379:1 27390:1 27394:1 27396:1 27402:2 27433:1 27440:1 27447:1 27477:1 27491:1 27492:1 27521:1 27530:1 27534:1 27564:1 27569:1 27598:1 27619:1 27635:1 27669:1 27672:1 27683:1 27689:1 27706:1 27715:2 27716:2 27723:1 27730:1 27734:1 27739:2 27765:1 27775:3 27778:1 27784:1 27792:1 27797:1 27820:1
8 1:1 8:1 21:1 40:1 46:1 47:2 83:2 88:1 102:1 121:1 125:1 132:1 148:1 160:1 162:1 181:1 190:1 194:3 214:1 234:1 240:3 303:1 327:3 329:1 369:2 432:1 441:1 486:1 494:1 575:1 587:1 605:3 627:2 659:1 667:1 683:1 771:1 843:3 856:1 869:1 876:3 891:1 925:1 930:3 934:1 970:1 973:2 1045:1 1050:1 1052:1 1074:1 1086:1 1105:1 1147:1 1176:1 1182:1 1187:1 1191:1 1201:1 1205:1 1210:1 1221:1 1222:1 1238:1 1241:1 1244:1 1251:1 1253:1 1255:1 1265:1 1270:1 1296:1 1311:1 1324:1 1332:1 1371:1 1374:1 1393:2 1395:5 1399:1 1411:1 1424:3 1432:3 1468:1 1475:3 1496:1 1509:2 1523:2 1553:1 1565:2 1576:1 1578:1 1588:1 1607:1 1612:1 1626:1 1640:1 1644:1 1663:1 1669:1 1670:2 1681:1 1682:1 1692:1 1696:1 1720:1 1732:1 1738:1 1740:1 1744:1 1769:1 1774:1 1776:2 1787:2 1797:1 1801:2 1815:1 1818:2 1824:1 1833:1 1835:1 1844:2 1856:1 1858:1 1859:1 1871:1 1883:1 1887:1 1928:1 1956:1 1958:1 1962:2 1997:1 2006:1 2012:1 2057:4 2145:1 2176:1 2177:1 2179:1 2181:1 2185:3 2188:1 2193:1 2196:2 2201:6 2203:2 2208:1 2209:1 2211:2 2214:1 2216:1 2248:1 2252:1 2260:2 2285:1 2295:1 2378:1 2380:1 2418:1 2430:1 2437:1 2510:1 2547:1 2557:1 2563:1 2565:1 2569:1 2583:1 2597:1 2598:1 2599:1 2602:3 2646:1 2649:1 2650:1 2662:1 2676:1 2705:1 2731:1 2760:1 2766:2 2774:6 2801:1 2803:1 2811:1 2831:3 2840:1 2854:1 2869:1 2880:1 2883:1 2885:1 2886:1 2908:1 2983:1 2996:1 3002:1 3010:1 3062:2 3090:1 3131:1 3134:3 3137:2 3138:1 3148:1 3158:3 3174:1 3195:1 3216:1 3227:1 3313:2 3324:1 3325:1 3339:1 3362:1 3406:1 3423:1 3434:1 3442:1 3481:1 3491:1 3496:1 3506:1 3518:2 3538:1 3574:1 3614:1 3621:2 3625:2 3646:1 3650:1 3682:1 3688:1 3692:1 3709:2 3715:1 3724:1 3728:2 3732:1 3738:1 3757:2 3758:1 3764:1 3807:1 3810:1 3815:1 3818:1 3826:1 3836:1 3857:2 3858:3 3916:2 3923:1 3928:1 3934:1 3940:1 3970:1 3983:1 4002:1 4011:1 4020:2 4030:2 4031:1 4035:4 4042:1 4109:1 4115:1 4129:4 4131:1 4152:2 4169:1 4174:1 4196:1 4224:1 4230:1 4235:1 4249:1 4251:1 4281:2 4351:1 4400:1 4426:2 4462:1 4471:1 4497:3 4498:1 4500:1 4533:1 4536:1 4546:1 4567:1 4648:11 4669:1 4670:1 4673:1 4677:1 4767:2 4787:4 4789:4 4792:1 4796:1 4800:2 4802:2 4810:1 4813:1 4814:4 4871:2 4903:1 4944:1 4947:1 4994:1 4997:1 5002:1 5005:1 5010:1 5013:1 5047:1 5074:1 5092:1 5102:1 5104:2 5126:2 5136:1 5170:1 5182:1 5212:1 5222:2 5224:1 5248:1 5253:1 5286:1 5296:1 5309:2 5313:1 5315:2 5319:1 5320:1 5322:1 5413:1 5422:1 5423:1 5436:1 5437:1 5585:1 5587:1 5593:1 5643:3 5708:1 5710:2 5739:4 5760:1 5773:1 5804:1 5808:1 5828:1 5832:1 5862:1 5867:1 5896:1 5910:1 5913:3 5942:4 5945:1 5993:3 6027:1 6034:2 6037:1 6041:1 6044:1 6045:3 6047:1 6048:2 6053:1 6058:2 6060:3 6089:1 6100:1 6101:1 6121:1 6147:2 6187:1 6206:1 6216:1 6256:1 6259:1 6288:1 6295:1 6327:1 6330:1 6338:1 6353:1 6416:1 6418:1 6431:1 6433:1 6437:1 6457:2 6462:1 6475:1 6486:1 6489:3 6493:4 6497:1 6507:1 6508:1 6519:4 6521:2 6522:1 6592:1 6596:1 6597:1 6612:1 6620:1 6625:2 6703:1 6707:1 6716:1 6721:1 6737:1 6748:1 6768:1 6771:1 6779:1 6792:1 6816:3 6818:1 6838:1 6852:1 6860:1 6890:1 6903:2 6914:2 6948:1 6954:1 6960:2 6994:1 6999:1 7011:1 7048:3 7073:3 7077:1 7137:1 7144:1 7249:5 7250:2 7273:1 7274:2 7307:1 7323:20 7344:6 7345:4 7369:1 7414:1 7434:3 7488:2 7513:2 7525:1 7539:4 7550:1 7563:1 7566:1 7571:1 7590:1 7600:1 7603:1 7646:1 7650:2 7675:1 7677:1 7684:1 7696:1 7701:1 7715:3 7791:6 7812:1 7815:1 7817:1 7826:1 7843:1 7879:1 7891:1 7922:1 7949:1 7957:2 7958:1 7964:1 7990:1 7994:1 8026:1 8031:1 8035:1 8054:1 8116:1 8122:1 8124:1 8125:3 8126:1 8128:2 8135:2 8155:1 8161:1 8166:1 8191:1 8229:1 8268:1 8280:2 8282:2 8293:1 8322:1 8326:1 8362:1 8397:1 8406:1 8413:1 8423:1 8439:1 8441:1 8467:1 8484:1 8485:2 8493:1 8503:1 8505:1 8515:1 8531:1 8539:1 8556:3 8558:1 8575:1 8620:1 8670:2 8694:1 8697:1 8716:1 8719:3 8747:1 8748:1 8752:2 8801:1 8813:1 8816:1 8853:1 8878:1 8898:1 8907:1 8930:2 8942:1 8944:1 8954:1 8971:1 8979:1 8991:1 8997:1 9000:1 9007:1 9010:1 9016:1 9048:1 9063:2 9073:1 9118:1 9179:2 9180:1 9215:1 9236:2 9249:2 9257:1 9267:1 9325:1 9385:1 9418:1 9442:1 9451:1 9460:1 9473:1 9484:1 9486:1 9495:1 9544:1 9569:1 9571:1 9594:1 9597:1 9605:1 9683:1 9687:1 9696:1 9697:1 9701:1 9707:1 9712:1 9757:1 9770:1 9773:1 9783:1 9788:1 9793:1 9799:3 9803:1 9823:3 9844:1 9870:1 9877:5 9882:1 9917:3 9925:1 9935:1 9974:1 10013:1 10046:1 10066:1 10070:2 10075:1 10076:1 10121:1 10126:1 10136:1 10153:2 10167:1 10183:1 10187:1 10276:1 10281:1 10287:3 10289:2 10296:2 10299:2 10300:3 10304:1 10308:1 10312:1 10322:1 10346:1 10371:2 10398:1 10404:1 10410:1 10427:2 10429:1 10477:1 10498:1 10526:1 10564:1 10574:1 10580:1 10637:1 10646:1 10652:2 10654:1 10684:2 10717:2 10724:1 10750:1 10754:1 10778:1 10784:1 10786:1 10799:1 10821:2 10832:1 10833:1 10850:1 10855:1 10872:1 10907:1 10933:1 10940:2 10965:2 10973:1 10977:1 10989:1 10994:4 10995:1 11001:2 11046:1 11071:1 11093:1 11109:1 11149:1 11154:1 11176:1 11222:1 11229:1 11245:1 11252:1 11304:1 11313:1 11354:1 11355:2 11375:1 11387:1 11388:1 11394:1 11410:2 11414:1 11421:1 11422:1 11437:1 11447:1 11477:1 11499:2 11501:2 11515:1 11552:1 11611:1 11662:1 11671:1 11688:1 11699:1 11704:1 11735:1 11756:1 11778:1 11860:1 11876:1 11888:1 11903:1 11933:1 11945:1 11960:1 12007:1 12009:1 12013:1 12018:1 12021:1 12023:1 12039:1 12152:1 12156:1 12157:1 12167:2 12235:2 12242:1 12243:1 12250:1 12261:1 12262:1 12265:1 12271:4 12300:2 12313:2 12369:1 12385:1 12402:2 12404:5 12409:2 12468:1 12472:10 12502:1 12522:1 12557:1 12591:1 12640:1 12641:2 12661:1 12687:1 12701:1 12710:1 12733:1 12737:2 12743:1 12766:1 12768:1 12775:3 12778:1 12893:1 12894:2 12896:1 12910:1 12919:1 12932:2 12945:1 12951:1 12970:1 12974:1 12982:2 12995:1 13001:1 13018:1 13033:1 13040:1 13053:1 13067:1 13068:1 13080:1 13086:1 13097:1 13120:2 13126:1 13155:1 13170:1 13186:1 13187:1 13211:1 13247:1 13270:1 13295:1 13310:1 13316:1 13366:1 13371:1 13459:1 13464:1 13476:1 13498:1 13506:2 13557:1 13563:1 13586:1 13597:1 13599:1 13628:2 13676:1 13701:1 13708:1 13723:1 13744:1 13751:1 13757:1 13805:1 13825:1 13875:1 13894:1 13969:2 13973:1 13989:1 13991:2 13996:2 14036:2 14045:1 14106:1 14193:1 14211:1 14222:1 14240:1 14259:1 14267:1 14303:1 14306:1 14320:1 14339:1 14403:1 14418:1 14419:1 14430:1 14439:1 14445:2 14451:1 14487:2 14492:1 14508:1 14564:2 14577:1 14583:1 14586:1 14604:1 14613:1 14618:1 14622:1 14628:1 14634:1 14635:1 14638:1 14643:1 14667:1 14672:1 14724:1 14728:1 14769:1 14797:1 14809:1 14818:1 14824:1 14841:2 14843:1 14851:2 14881:1 14901:1 14907:1 14908:1 14918:1 14924:8 14952:2 14967:1 14973:2 14978:1 15012:7 15018:1 15039:2 15073:1 15083:1 15095:1 15144:1 15145:1 15166:1 15170:2 15173:1 15177:1 15187:2 15188:1 15193:1 15195:1 15196:1 15207:1 15301:1 15314:1 15352:1 15372:1 15399:2 15402:1 15419:1 15442:1 15483:3 15495:2 15513:1 15520:1 15539:1 15560:1 15567:2 15568:1 15578:1 15582:2 15584:1 15629:1 15655:2 15723:1 15762:1 15775:2 15778:1 15798:1 15839:1 15842:1 15863:1 15896:1 15907:1 15915:1 15962:1 16028:2 16055:1 16108:1 16117:1 16119:1 16129:1 16139:1 16157:1 16162:1 16319:1 16324:1 16329:1 16331:1 16337:1 16347:1 16351:1 16399:2 16434:2 16435:3 16457:1 16462:1 16477:1 16489:1 16505:1 16518:2 16519:1 16531:1 16570:1 16583:1 16592:2 16612:1 16625:2 16674:1 16729:2 16733:1 16743:2 16756:1 16762:1 16777:1 16781:1 16782:1 16807:1 16832:1 16865:1 16915:1 16925:1 16932:2 16934:1 16985:1 17009:1 17016:1 17098:1 17110:5 17127:1 17132:1 17183:1 17205:1 17235:1 17262:1 17265:1 17266:2 17276:1 17326:2 17335:1 17376:1 17410:1 17415:1108 17433:1 17473:1 17476:1 17505:2 17594:1 17600:1 17613:1 17644:1 17706:2 17814:1 17845:1 17869:1 17892:1 17900:1 17911:1 17917:1 17928:1 17931:1 17936:1 17978:1 17980:1 18074:1 18085:1 18100:1 18121:1 18142:1 18167:1 18172:2 18175:1 18187:1 18232:5 18275:2 18277:1 18303:1 18306:1 18319:1 18320:1 18324:1 18335:1 18355:1 18359:2 18360:1 18364:1 18365:1 18378:1 18404:1 18410:1 18411:1 18412:1 18432:1 18444:1 18457:1 18543:2 18545:2 18603:1 18608:1 18619:1 18626:1 18663:1 18687:1 18703:1 18723:1 18724:1 18753:1 18754:1 18755:2 18770:1 18786:1 18801:1 18802:1 18805:1 18838:1 18845:1 18861:1 18875:2 18876:1 18878:1 18884:1 18886:1 18890:1 18893:1 18901:1 18912:1 18932:1 18936:1 18947:1 18966:1 19004:1 19011:1 19013:1 19014:1 19015:1 19033:3 19050:1 19064:1 19109:1 19137:2 19143:1 19148:1 19176:1 19177:1 19205:3 19213:1 19223:1 19229:1 19233:1 19252:1 19268:1 19370:1 19395:1 19407:1 19441:1 19455:1 19492:1 19500:2 19502:1 19520:1 19522:1 19541:1 19556:6 19559:1 19563:1 19568:2 19574:1 19577:1 19582:1 19585:1 19593:1 19607:1 19609:1 19689:1 19701:1 19731:2 19733:1 19751:1 19753:1 19769:1 19785:2 19797:1 19813:1 19819:2 19852:1 19857:1 19877:1 19889:2 19894:1 19905:2 19910:1 19918:1 19923:1 19942:1 19950:1 20016:2 20025:2 20039:1 20041:3 20069:2 20070:1 20085:1 20089:2 20143:1 20152:1 20193:1 20233:1 20270:1 20274:1 20325:2 20327:1 20332:1 20395:1 20398:1 20399:1 20401:1 20411:2 20429:1 20447:2 20469:1 20490:2 20526:2 20528:1 20546:1 20548:1 20551:2 20554:1 20556:2 20559:3 20563:1 20571:1 20590:1 20592:1 20596:1 20608:1 20630:1 20682:1 20683:1 20685:1 20730:1 20731:1 20752:3 20755:2 20803:2 20828:2 20832:1 20893:1 20906:1 20927:1 20939:2 20960:6 20967:1 20973:1 21002:1 21022:1 21028:1 21057:1 21072:1 21087:1 21103:1 21167:1 21179:1 21186:1 21199:1 21262:1 21284:1 21287:1 21312:1 21341:1 21346:1 21354:2 21363:1 21365:1 21375:1 21376:1 21397:1 21414:1 21420:1 21442:1 21480:1 21483:2 21496:1 21513:2 21536:1 21547:1 21549:1 21609:1 21614:1 21633:3 21640:1 21645:1 21657:1 21683:1 21703:2 21709:1 21728:1 21735:1 21737:1 21784:1 21789:1 21816:3 21817:1 21838:1 21857:1 21869:1 21885:1 21891:1 21928:1 21930:1 21951:1 21965:1 21966:1 21971:1 21979:1 21985:1 22008:2 22015:1 22026:1 22043:1 22054:3 22067:1 22080:1 22085:1 22105:1 22125:3 22156:1 22164:1 22171:1 22215:1 22268:1 22288:1 22298:1 22304:1 22336:1 22381:2 22386:1 22389:1 22449:1 22466:1 22491:1 22493:1 22542:1 22545:2 22575:1 22598:1 22604:1 22657:1 22666:2 22686:1 22687:1 22722:1 22724:1 22742:1 22765:1 22779:1 22784:1 22791:1 22810:1 22814:1 22843:1 22859:1 22891:2 22904:1 22905:1 22941:1 22946:1 22962:2 22965:1 22991:1 22996:1 23010:1 23013:1 23015:2 23025:1 23038:1 23073:2 23096:2 23136:1 23142:1 23147:1 23149:1 23153:1 23158:1 23171:1 23189:1 23234:1 23252:1 23263:1 23277:2 23285:1 23290:1 23307:1 23308:2 23335:1 23360:1 23369:1 23403:2 23422:1 23493:2 23496:2 23559:1 23563:1 23594:1 23634:1 23646:1 23660:1 23669:1 23681:2 23683:1 23689:1 23692:3 23699:1 23717:1 23718:1 23719:1 23720:1 23721:1 23723:1 23766:2 23777:2 23779:1 23791:1 23801:1 23848:3 23862:1 23865:1 23874:1 23875:1 23882:1 23907:2 23911:1 23919:1 23946:1 23955:1 23966:1 23970:1 23973:1 23985:1 23994:1 23996:1 23998:1 24017:1 24092:1 24093:1 24153:1 24160:1 24166:1 24271:1 24288:1 24290:1 24310:1 24331:1 24334:2 24340:3 24434:1 24439:1 24459:1 24470:2 24473:1 24497:1 24507:1 24551:1 24562:1 24570:1 24571:1 24586:1 24603:1 24704:1 24723:1 24733:1 24740:1 24807:1 24809:1 24871:1 24893:1 24896:1 24904:1 24936:1 24956:1 24969:4 24972:1 25033:1 25060:1 25069:1 25097:1 25112:1 25114:1 25115:1 25159:1 25221:1 25240:2 25242:2 25247:1 25249:1 25262:1 25265:1 25267:1 25279:1 25288:1 25306:1 25309:1 25323:1 25329:1 25333:4 25337:1 25363:1 25381:1 25387:1 25392:1 25445:1 25474:1 25496:2 25505:1 25507:1 25508:1 25513:1 25517:2 25518:1 25519:1 25523:1 25525:1 25550:1 25561:1 25567:1 25568:3 25570:1 25572:1 25584:1 25614:1 25630:1 25650:1 25651:1 25672:2 25715:1 25738:2 25761:1 25782:1 25792:1 25793:1 25796:1 25802:2 25806:1 25820:2 25824:1 25826:1 25827:1 25861:1 25870:1 25871:2 25872:1 25900:3 25925:1 25927:2 25928:1 25930:1 25957:1 25959:1 25994:1 25997:1 26007:1 26019:1 26032:1 26072:1 26099:1 26204:1 26211:1 26268:1 26283:1 26289:1 26346:1 26349:1 26368:1 26439:1 26446:1 26448:1 26484:1 26508:11 26513:1 26530:1 26539:1 26547:2 26567:1 26576:1 26610:3 26619:1 26622:1 26645:1 26655:3 26662:1 26692:5 26733:1 26764:2 26800:1 26807:1 26813:1 26834:2 26852:2 26864:2 26867:1 26886:1 26904:1 26921:1 26944:1 26946:2 26952:1 26953:1 26965:1 26966:2 26975:1 26977:1 26982:1 27016:1 27019:2 27020:3 27063:1 27073:1 27078:2 27096:2 27150:2 27154:1 27202:1 27227:1 27236:1 27241:1 27248:1 27309:1 27333:1 27379:1 27390:1 27394:1 27396:1 27402:2 27433:1 27440:1 27447:1 27477:1 27491:1 27492:1 27521:1 27530:1 27534:1 27564:1 27569:1 27598:1 27619:1 27635:1 27669:1 27672:1 27683:1 27689:1 27706:1 27715:2 27716:2 27723:1 27730:1 27734:1 27739:2 27765:1 27775:3 27778:1 27784:1 27792:1 27797:1 27820:1
8 1:1 8:1 21:1 40:1 43:1 46:1 47:2 83:2 88:1 102:1 121:1 125:1 132:1 148:1 160:1 162:1 181:1 190:1 194:3 214:1 234:1 240:3 303:1 327:3 328:1 329:1 369:2 432:1 441:1 451:1 486:1 494:1 575:1 587:1 605:3 627:2 659:1 667:1 683:1 771:1 843:3 856:1 869:1 876:3 891:1 925:1 930:3 934:2 969:1 970:1 973:2 1045:1 1050:1 1052:1 1074:1 1086:1 1105:1 1147:1 1176:1 1182:1 1187:1 1191:1 1201:1 1205:1 1210:1 1221:1 1222:1 1238:1 1241:1 1243:1 1244:1 1251:1 1253:1 1255:1 1265:1 1270:1 1296:1 1311:1 1324:1 1332:1 1371:1 1374:1 1393:2 1395:5 1399:1 1411:1 1424:3 1432:3 1446:1 1468:1 1475:3 1496:1 1509:3 1523:2 1553:1 1565:2 1576:1 1578:1 1588:1 1607:1 1612:1 1626:1 1640:1 1644:1 1663:1 1669:1 1670:2 1681:1 1682:1 1692:1 1696:1 1720:1 1732:1 1738:1 1740:1 1744:1 1769:1 1774:1 1776:2 1787:3 1797:1 1801:2 1815:1 1818:2 1824:1 1833:1 1835:1 1844:2 1856:1 1858:1 1859:1 1871:1 1883:1 1887:1 1928:1 1956:1 1958:1 1962:2 1997:1 2006:1 2012:1 2057:4 2145:1 2176:1 2177:1 2179:1 2181:1 2185:3 2188:1 2193:1 2196:2 2201:6 2203:2 2208:1 2209:1 2211:2 2214:1 2216:1 2248:1 2252:1 2260:2 2274:1 2285:1 2295:1 2378:1 2380:1 2418:1 2430:1 2437:1 2510:1 2547:1 2557:1 2563:1 2565:1 2569:1 2583:1 2597:1 2598:1 2599:1 2602:3 2646:1 2649:1 2650:1 2662:1 2676:1 2705:1 2731:1 2755:1 2760:1 2766:2 2774:6 2801:1 2803:2 2811:1 2818:1 2831:3 2840:1 2854:1 2869:1 2880:1 2883:1 2885:1 2886:1 2908:1 2983:1 2996:1 3002:1 3010:1 3062:2 3090:1 3127:1 3131:1 3134:3 3137:2 3138:1 3148:1 3158:3 3174:1 3195:1 3216:1 3227:1 3313:2 3324:1 3325:1 3339:1 3362:1 3406:1 3423:1 3434:1 3442:1 3481:1 3491:1 3496:1 3506:1 3518:2 3530:1 3537:1 3538:1 3574:1 3585:1 3614:1 3621:2 3625:2 3646:1 3650:1 3682:1 3688:1 3692:1 3709:2 3715:1 3724:1 3728:2 3732:1 3738:1 3757:2 3758:1 3764:1 3807:1 3810:1 3815:1 3818:1 3826:1 3836:1 3857:2 3858:3 3916:2 3923:1 3928:1 3934:1 3940:1 3970:1 3983:1 4002:1 4011:1 4020:2 4030:2 4031:1 4035:4 4042:1 4109:1 4115:1 4126:1 4129:4 4131:1 4152:2 4169:1 4174:1 4196:1 4224:1 4230:1 4235:1 4249:1 4251:1 4281:2 4315:1 4351:1 4400:1 4426:2 4433:1 4462:1 4471:1 4497:3 4498:1 4500:1 4533:1 4536:1 4546:1 4567:1 4648:12 4669:1 4670:1 4673:1 4677:1 4767:2 4787:4 4789:4 4792:1 4796:1 4800:2 4802:2 4810:1 4813:1 4814:4 4871:2 4903:1 4944:1 4947:1 4994:1 4997:1 5002:1 5005:1 5010:1 5013:1 5047:1 5074:1 5092:1 5102:1 5104:2 5126:2 5136:1 5170:1 5182:1 5212:1 5222:2 5224:1 5248:1 5253:1 5275:1 5286:1 5296:1 5301:1 5309:2 5313:1 5315:2 5319:1 5320:1 5322:1 5413:1 5422:1 5423:1 5436:1 5437:1 5446:1 5486:1 5585:1 5587:1 5593:1 5643:3 5708:1 5710:2 5739:4 5755:1 5760:1 5773:1 5804:1 5808:1 5828:1 5832:1 5862:1 5867:1 5896:1 5910:1 5913:3 5942:4 5945:1 5961:1 5993:3 6027:1 6034:2 6037:1 6041:1 6044:1 6045:3 6047:1 6048:2 6053:1 6058:2 6060:3 6089:1 6100:1 6101:1 6121:1 6147:2 6174:1 6187:1 6206:1 6216:1 6256:1 6259:1 6288:1 6295:1 6327:1 6330:1 6338:1 6353:1 6416:1 6418:1 6431:1 6433:1 6437:1 6457:2 6462:1 6475:1 6486:1 6489:3 6493:4 6497:1 6507:1 6508:1 6512:1 6519:5 6521:2 6522:1 6592:1 6596:1 6597:1 6612:1 6620:1 6625:2 6703:1 6707:1 6716:1 6721:1 6737:1 6748:1 6768:1 6771:1 6779:1 6792:1 6816:3 6818:1 6838:1 6839:1 6852:1 6860:1 6890:1 6903:2 6914:2 6948:1 6954:1 6960:3 6994:1 6999:1 7011:1 7048:3 7073:3 7077:1 7137:1 7144:1 7249:5 7250:2 7273:1 7274:2 7307:1 7323:20 7344:6 7345:5 7369:1 7381:1 7414:1 7434:3 7488:2 7513:2 7525:1 7539:4 7550:1 7563:1 7566:1 7571:1 7590:1 7600:1 7603:1 7646:1 7650:2 7675:1 7677:1 7684:1 7696:1 7698:1 7701:1 7715:3 7791:6 7812:1 7815:1 7817:1 7826:1 7843:1 7879:1 7891:1 7922:1 7949:1 7957:2 7958:1 7964:1 7990:1 7994:1 8026:1 8031:1 8035:1 8054:1 8116:1 8122:1 8124:1 8125:3 8126:1 8128:2 8135:2 8155:1 8161:1 8166:1 8191:1 8229:1 8268:1 8280:2 8282:2 8293:1 8322:1 8326:1 8328:1 8362:1 8397:1 8406:1 8413:1 8423:1 8439:1 8441:1 8467:1 8484:1 8485:2 8493:1 8503:1 8505:1 8515:1 8531:1 8539:1 8556:3 8558:1 8575:1 8620:1 8670:2 8694:1 8697:1 8705:1 8716:1 8719:3 8747:1 8748:1 8752:2 8801:1 8813:1 8816:1 8853:1 8878:1 8898:1 8907:1 8930:2 8942:1 8944:2 8954:1 8971:1 8979:1 8991:1 8997:1 9000:1 9007:1 9010:1 9016:1 9048:1 9063:2 9073:1 9118:1 9179:2 9180:1 9215:1 9236:2 9249:2 9257:1 9267:1 9325:1 9385:1 9405:2 9418:1 9442:1 9451:1 9460:1 9473:1 9484:1 9486:1 9495:1 9544:1 9569:1 9571:1 9594:1 9597:1 9605:1 9683:1 9687:1 9696:1 9697:1 9701:1 9707:1 9712:1 9757:1 9770:1 9773:1 9778:1 9783:1 9788:1 9793:1 9799:3 9803:1 9823:3 9844:1 9870:1 9877:5 9882:1 9883:1 9917:3 9925:1 9935:1 9974:1 10013:1 10046:1 10066:1 10070:2 10075:1 10076:1 10121:1 10126:1 10136:1 10153:2 10167:1 10183:1 10187:1 10276:1 10281:1 10287:3 10289:2 10296:2 10299:2 10300:3 10304:1 10308:1 10312:1 10322:1 10346:1 10371:2 10398:1 10404:1 10410:1 10417:1 10427:2 10429:1 10477:1 10498:1 10526:1 10564:1 10574:1 10580:1 10637:1 10646:1 10652:2 10654:1 10684:2 10717:2 10724:1 10750:1 10754:1 10778:1 10784:1 10786:1 10799:1 10821:2 10832:1 10833:1 10850:1 10855:1 10872:1 10907:1 10933:1 10940:2 10965:2 10973:1 10977:1 10989:1 10994:4 10995:1 11001:2 11046:1 11067:1 11071:1 11081:1 11093:1 11109:1 11116:1 11149:1 11154:1 11176:1 11222:1 11229:1 11245:1 11247:1 11252:1 11304:1 11313:1 11354:1 11355:2 11375:1 11387:1 11388:1 11389:1 11394:1 11410:2 11414:1 11416:1 11421:1 11422:1 11437:1 11447:1 11477:1 11499:2 11501:2 11515:1 11552:1 11611:1 11619:1 11662:1 11671:1 11688:1 11699:1 11704:1 11735:1 11756:1 11778:1 11860:1 11876:1 11888:1 11903:1 11933:1 11945:1 11960:1 12007:1 12009:1 12013:1 12018:1 12021:1 12023:1 12039:1 12152:1 12156:1 12157:1 12167:2 12235:2 12242:1 12243:1 12250:1 12261:1 12262:2 12265:1 12271:4 12300:2 12313:2 12369:1 12385:1 12402:2 12404:5 12409:2 12468:1 12472:11 12502:1 12522:1 12557:1 12591:1 12640:1 12641:2 12661:1 12687:1 12701:1 12710:1 12733:1 12737:2 12743:1 12766:1 12768:1 12775:3 12778:1 12893:1 12894:2 12896:1 12910:1 12919:1 12932:2 12945:1 12951:1 12970:1 12974:1 12982:2 12995:1 13001:1 13018:1 13033:1 13040:1 13053:1 13067:1 13068:1 13080:1 13086:1 13097:1 13120:2 13126:1 13155:1 13170:1 13186:1 13187:1 13211:1 13247:1 13263:1 13270:1 13295:1 13310:1 13316:1 13366:1 13371:1 13441:1 13459:1 13464:1 13476:1 13498:1 13506:2 13557:1 13563:1 13586:1 13597:1 13599:1 13628:2 13676:1 13701:1 13708:1 13723:1 13744:1 13751:1 13757:1 13805:1 13825:1 13875:1 13882:1 13894:1 13945:1 13969:2 13973:1 13989:1 13991:2 13996:2 14036:2 14045:1 14106:1 14193:1 14211:1 14222:1 14240:1 14259:1 14267:1 14303:1 14306:1 14320:1 14339:1 14403:1 14418:1 14419:1 14430:1 14439:1 14445:2 14451:1 14487:3 14492:1 14508:1 14564:2 14577:1 14583:1 14586:1 14604:1 14613:1 14618:1 14622:1 14628:1 14634:1 14635:1 14638:1 14643:1 14667:1 14672:1 14705:1 14724:1 14728:1 14769:1 14797:1 14809:1 14818:1 14824:1 14841:2 14843:1 14851:2 14881:1 14901:1 14907:1 14908:1 14918:1 14924:9 14952:2 14967:1 14973:2 14978:1 15012:7 15018:1 15039:2 15073:1 15083:1 15095:1 15144:1 15145:1 15166:1 15170:2 15173:1 15177:1 15187:2 15188:1 15193:1 15195:1 15196:1 15207:1 15263:1 15301:1 15314:1 15345:1 15352:1 15372:1 15399:2 15402:1 15419:1 15442:1 15483:3 15495:2 15513:1 15520:2 15539:1 15560:1 15567:2 15568:1 15578:1 15582:2 15584:1 15629:1 15655:2 15723:1 15762:1 15775:2 15778:1 15798:1 15839:1 15842:1 15863:1 15896:1 15907:1 15915:1 15962:1 16028:2 16055:1 16108:1 16117:1 16119:1 16129:2 16139:1 16157:1 16162:1 16319:1 16324:1 16329:1 16331:1 16337:1 16347:1 16351:1 16399:2 16434:2 16435:3 16457:1 16462:1 16477:1 16489:1 16505:1 16518:2 16519:1 16531:1 16570:1 16583:1 16592:2 16612:1 16625:2 16674:1 16729:2 16733:1 16743:2 16756:1 16762:1 16777:1 16781:1 16782:1 16807:1 16832:1 16865:1 16915:1 16925:1 16932:2 16934:1 16985:1 17009:1 17016:1 17098:1 17110:5 17127:1 17132:1 17183:1 17205:1 17235:1 17262:1 17265:1 17266:2 17276:1 17317:1 17326:2 17335:1 17376:1 17410:1 17415:1151 17433:1 17473:1 17476:1 17505:2 17594:1 17600:1 17613:1 17639:1 17644:1 17706:2 17814:1 17845:1 17869:1 17871:1 17892:1 17900:1 17911:1 17917:1 17928:1 17931:1 17936:1 17978:1 17980:1 18074:1 18085:1 18100:1 18121:1 18142:1 18167:1 18172:2 18175:1 18187:1 18232:5 18275:2 18277:1 18303:1 18306:1 18319:1 18320:1 18324:1 18335:1 18355:1 18359:3 18360:1 18364:1 18365:1 18378:1 18404:1 18410:1 18411:1 18412:1 18432:1 18444:1 18457:1 18543:2 18545:2 18603:1 18608:1 18619:1 18626:1 18663:1 18687:1 18703:1 18723:1 18724:1 18753:1 18754:1 18755:2 18770:1 18786:1 18801:1 18802:1 18805:1 18838:1 18845:1 18861:1 18875:2 18876:1 18878:1 18884:1 18886:1 18890:1 18893:1 18901:1 18912:1 18932:1 18936:2 18944:1 18947:1 18966:1 19004:1 19011:1 19013:1 19014:1 19015:1 19033:3 19050:1 19064:1 19109:1 19137:2 19143:1 19148:1 19176:1 19177:1 19205:3 19213:1 19223:1 19225:1 19229:1 19233:1 19252:1 19268:1 19330:1 19370:1 19395:1 19407:1 19441:1 19455:1 19492:1 19500:2 19502:1 19520:1 19522:1 19541:1 19556:6 19559:1 19563:1 19568:2 19574:1 19577:1 19582:1 19585:1 19593:1 19607:1 19609:1 19689:1 19701:1 19731:2 19733:1 19751:1 19753:1 19769:1 19785:2 19797:1 19813:1 19819:2 19831:1 19852:1 19857:1 19877:1 19889:2 19894:1 19905:2 19910:1 19918:1 19923:1 19942:1 19950:1 19965:1 20016:2 20025:2 20039:1 20041:3 20069:2 20070:1 20085:1 20089:2 20143:1 20152:1 20171:1 20193:1 20233:1 20270:1 20274:1 20325:2 20327:1 20332:1 20395:1 20398:1 20399:1 20401:1 20411:2 20429:1 20447:2 20469:1 20490:2 20526:2 20528:1 20546:1 20548:1 20551:2 20554:1 20556:2 20559:3 20563:1 20571:1 20574:1 20590:1 20592:1 20596:1 20608:1 20630:1 20682:1 20683:1 20685:1 20730:1 20731:1 20752:3 20755:2 20803:2 20811:1 20828:2 20832:1 20893:1 20906:1 20927:1 20939:2 20960:6 20967:1 20973:1 21002:1 21022:1 21028:1 21029:1 21057:1 21072:1 21087:1 21103:1 21167:1 21179:1 21186:1 21199:1 21262:1 21284:1 21287:1 21312:1 21341:1 21346:1 21354:2 21363:1 21365:1 21375:1 21376:1 21397:1 21414:1 21420:1 21442:1 21472:1 21480:1 21483:2 21496:1 21513:2 21534:1 21536:1 21547:1 21549:1 21550:1 21609:1 21614:1 21633:3 21640:1 21645:1 21657:1 21683:1 21703:2 21709:1 21728:1 21735:1 21737:1 21784:1 21789:1 21816:3 21817:1 21838:1 21857:1 21869:1 21885:1 21891:1 21928:1 21930:1 21951:1 21965:1 21966:1 21971:1 21979:1 21985:1 22008:2 22015:1 22026:1 22043:1 22054:3 22067:1 22080:1 22085:1 22105:1 22125:3 22156:1 22164:1 22171:1 22215:1 22268:1 22288:1 22298:1 22304:1 22336:1 22381:2 22386:1 22389:1 22449:1 22450:1 22466:1 22491:1 22493:1 22542:1 22545:2 22575:1 22598:1 22604:1 22657:1 22666:3 22686:1 22687:1 22722:1 22724:1 22742:1 22765:1 22779:1 22784:1 22791:1 22810:1 22814:1 22843:1 22859:1 22891:2 22904:1 22905:1 22941:1 22946:1 22962:2 22965:1 22991:1 22996:1 23010:1 23013:1 23015:2 23025:1 23038:1 23073:2 23096:2 23136:1 23142:1 23147:1 23149:2 23153:1 23158:1 23171:1 23189:1 23234:1 23252:1 23263:1 23277:2 23285:1 23290:1 23307:1 23308:2 23335:1 23360:1 23369:1 23403:2 23422:1 23493:2 23496:2 23559:1 23563:1 23594:1 23634:1 23646:1 23660:1 23669:1 23681:2 23683:1 23689:1 23692:3 23699:1 23717:1 23718:1 23719:1 23720:1 23721:1 23723:1 23766:2 23777:2 23779:1 23791:1 23801:1 23848:3 23862:1 23865:1 23871:1 23874:1 23875:1 23882:1 23907:2 23911:1 23919:1 23946:1 23955:1 23966:1 23970:1 23973:1 23985:1 23994:1 23996:1 23998:1 24017:1 24092:2 24093:1 24153:1 24160:1 24166:1 24271:1 24288:1 24290:1 24310:1 24331:1 24334:2 24340:3 24434:1 24439:1 24459:1 24470:2 24473:1 24497:1 24507:1 24551:1 24562:1 24570:1 24571:1 24586:1 24602:1 24603:1 24704:1 24723:1 24733:1 24740:1 24807:1 24809:1 24871:1 24893:1 24896:1 24904:1 24936:1 24940:1 24956:1 24969:4 24972:1 25029:1 25033:1 25060:1 25069:1 25097:1 25112:1 25114:1 25115:1 25159:1 25221:1 25240:2 25242:2 25247:1 25249:1 25262:1 25265:1 25267:1 25279:1 25288:1 25306:1 25309:1 25323:1 25329:1 25333:4 25337:1 25363:1 25372:1 25381:1 25387:1 25392:1 25445:1 25474:1 25496:2 25505:1 25507:1 25508:1 25513:1 25517:2 25518:1 25519:1 25523:1 25525:1 25550:1 25561:1 25567:2 25568:3 25570:1 25572:1 25584:1 25614:1 25630:1 25650:1 25651:1 25672:2 25715:1 25738:2 25761:1 25782:1 25792:1 25793:1 25796:1 25802:2 25806:1 25820:2 25824:1 25826:1 25827:1 25837:1 25861:1 25870:1 25871:2 25872:1 25900:3 25925:1 25927:2 25928:1 25930:1 25957:1 25959:1 25994:1 25997:1 26007:1 26019:1 26032:1 26072:1 26099:1 26107:1 26204:1 26211:1 26268:1 26283:1 26289:1 26346:1 26349:1 26368:1 26439:1 26446:1 26448:1 26484:1 26485:1 26508:11 26513:1 26530:1 26539:1 26547:2 26564:1 26567:1 26576:1 26610:3 26619:1 26622:1 26645:1 26655:3 26662:1 26692:5 26733:1 26764:2 26800:1 26807:1 26813:1 26834:2 26852:2 26864:2 26867:1 26882:1 26886:1 26904:1 26921:1 26944:1 26946:2 26952:1 26953:1 26965:1 26966:2 26975:1 26977:1 26982:1 27016:2 27019:2 27020:4 27063:1 27073:1 27078:2 27096:2 27150:2 27154:1 27202:1 27227:1 27236:1 27241:1 27248:1 27309:1 27333:1 27379:1 27390:1 27394:1 27396:1 27402:2 27433:1 27440:1 27447:1 27477:1 27491:1 27492:1 27521:1 27530:1 27534:1 27564:1 27569:1 27598:1 27619:1 27635:1 27637:1 27669:1 27672:1 27683:1 27689:1 27706:1 27715:2 27716:2 27723:1 27730:1 27734:1 27739:2 27765:1 27775:3 27778:1 27784:1 27792:1 27797:1 27820:1
8 1:1 8:1 21:1 40:1 43:1 46:1 47:2 83:2 88:1 102:1 121:1 125:1 132:1 148:1 160:1 162:1 181:1 190:1 194:3 214:1 234:1 240:3 303:1 327:3 328:1 329:1 369:2 432:1 441:1 451:1 486:1 494:1 575:1 587:1 605:4 627:3 659:1 667:1 683:1 771:1 843:3 856:1 869:1 876:3 891:1 925:1 930:3 934:2 969:1 970:1 973:3 1045:1 1050:1 1052:1 1074:1 1086:1 1105:1 1129:1 1147:1 1176:1 1182:1 1187:1 1191:1 1201:1 1205:1 1210:1 1221:1 1222:1 1238:1 1241:1 1243:1 1244:1 1251:1 1253:1 1255:1 1265:1 1270:1 1296:1 1311:1 1324:1 1332:1 1371:1 1374:1 1393:3 1395:5 1399:1 1411:1 1424:3 1432:3 1446:1 1468:1 1475:3 1496:1 1509:3 1523:2 1553:1 1565:2 1576:1 1578:1 1588:1 1607:1 1612:1 1626:1 1640:1 1644:1 1663:1 1669:1 1670:2 1681:1 1682:1 1692:1 1696:1 1720:1 1732:1 1738:1 1740:1 1744:1 1769:1 1774:1 1776:2 1787:4 1797:1 1801:2 1815:1 1818:2 1824:1 1833:1 1835:1 1844:2 1856:1 1858:1 1859:1 1871:1 1883:1 1887:1 1928:1 1956:1 1958:1 1962:2 1997:1 2006:1 2012:1 2057:4 2145:1 2176:1 2177:1 2179:1 2181:1 2185:3 2188:1 2193:1 2196:2 2201:6 2203:2 2208:1 2209:1 2211:2 2214:1 2216:1 2248:1 2252:1 2260:2 2274:1 2285:1 2295:1 2378:1 2380:1 2418:1 2430:1 2437:1 2510:1 2547:1 2557:1 2563:1 2565:1 2569:1 2583:1 2597:1 2598:1 2599:1 2602:3 2646:1 2649:1 2650:1 2662:1 2676:1 2705:1 2731:1 2755:1 2760:1 2766:2 2774:6 2801:2 2803:2 2811:1 2818:1 2831:3 2840:1 2854:1 2869:1 2880:1 2883:1 2885:1 2886:1 2908:1 2983:1 2996:1 3002:1 3010:1 3062:2 3090:1 3127:1 3131:1 3134:3 3137:3 3138:1 3148:1 3158:3 3174:1 3195:1 3216:1 3227:1 3313:2 3324:1 3325:1 3339:1 3362:1 3406:1 3423:1 3434:1 3442:1 3481:1 3491:1 3496:1 3506:1 3518:2 3530:1 3537:1 3538:1 3574:1 3585:1 3614:1 3621:2 3625:2 3630:1 3646:1 3650:1 3682:1 3688:1 3692:1 3709:2 3715:1 3724:1 3728:2 3732:1 3738:1 3757:2 3758:1 3764:1 3807:1 3810:1 3815:1 3818:1 3826:1 3836:1 3857:2 3858:3 3916:2 3923:1 3928:1 3934:1 3940:1 3970:1 3983:1 4002:1 4011:1 4020:2 4030:2 4031:1 4035:4 4042:1 4109:1 4115:1 4126:1 4129:4 4131:1 4152:2 4169:1 4174:1 4196:1 4224:1 4230:1 4235:1 4249:1 4251:1 4281:2 4290:1 4315:1 4351:1 4400:1 4426:2 4433:1 4462:1 4471:1 4497:3 4498:1 4500:1 4533:1 4536:1 4546:1 4567:1 4648:13 4669:1 4670:1 4673:1 4677:1 4767:3 4787:4 4789:4 4792:1 4796:1 4800:2 4802:2 4810:1 4813:1 4814:4 4871:2 4903:1 4944:1 4947:1 4994:1 4997:1 5002:1 5005:1 5010:1 5013:1 5047:1 5074:1 5092:1 5102:1 5104:2 5123:1 5126:2 5136:1 5170:1 5182:1 5201:1 5212:1 5222:2 5224:1 5248:1 5253:1 5275:1 5286:1 5296:1 5301:1 5309:2 5313:1 5315:2 5319:1 5320:1 5322:1 5413:1 5422:1 5423:1 5436:1 5437:1 5446:1 5486:1 5585:1 5587:2 5593:1 5643:3 5708:1 5710:2 5739:4 5755:1 5760:1 5773:1 5804:1 5808:1 5828:1 5832:1 5862:1 5867:1 5896:1 5910:1 5913:3 5942:5 5945:1 5950:1 5961:1 5993:3 6027:1 6034:3 6037:1 6041:1 6044:1 6045:3 6047:1 6048:2 6053:1 6058:2 6060:3 6089:1 6100:1 6101:1 6121:1 6140:1 6147:2 6174:1 6187:1 6206:1 6216:1 6221:1 6256:1 6259:1 6288:1 6295:1 6327:1 6330:1 6338:1 6353:1 6416:1 6418:1 6431:1 6433:1 6437:1 6457:2 6462:1 6475:1 6486:1 6489:3 6493:4 6497:1 6507:1 6508:1 6512:1 6519:5 6521:2 6522:1 6592:1 6596:1 6597:1 6612:1 6620:1 6625:2 6645:1 6683:1 6703:1 6707:1 6716:1 6721:1 6737:1 6748:1 6768:1 6771:1 6779:1 6792:1 6816:3 6818:1 6838:1 6839:1 6852:1 6860:1 6890:1 6903:2 6914:2 6941:1 6948:1 6954:1 6960:3 6994:1 6999:1 7011:1 7048:3 7073:3 7077:1 7137:1 7144:1 7187:1 7249:5 7250:2 7273:1 7274:3 7307:1 7323:20 7344:6 7345:5 7369:1 7381:1 7414:1 7434:3 7488:2 7513:2 7525:1 7539:4 7550:1 7563:1 7566:1 7571:1 7590:1 7600:1 7603:1 7646:1 7650:2 7675:1 7677:1 7684:1 7696:1 7698:1 7701:1 7715:3 7791:6 7812:1 7815:1 7817:1 7826:1 7843:1 7879:1 7891:1 7922:1 7936:1 7949:1 7957:2 7958:1 7964:1 7990:1 7994:1 8026:1 8031:1 8035:1 8054:1 8116:1 8117:1 8122:1 8124:1 8125:3 8126:1 8128:2 8135:2 8155:1 8161:1 8166:1 8191:1 8229:1 8268:1 8280:2 8282:2 8293:1 8322:1 8326:1 8328:1 8362:1 8397:1 8406:1 8413:1 8423:1 8439:1 8441:1 8467:1 8484:1 8485:2 8493:1 8503:1 8505:1 8515:1 8531:1 8539:1 8556:3 8558:2 8575:1 8620:1 8621:1 8670:2 8694:1 8697:1 8705:1 8716:1 8719:3 8747:1 8748:1 8752:2 8801:1 8813:1 8816:1 8853:1 8878:1 8898:1 8907:1 8930:2 8942:1 8944:2 8954:1 8971:1 8979:1 8991:1 8997:1 9000:1 9007:1 9010:1 9016:1 9030:1 9048:1 9062:1 9063:2 9068:1 9073:1 9118:1 9179:2 9180:1 9215:1 9236:2 9249:2 9257:1 9267:1 9325:1 9385:1 9405:2 9418:1 9442:1 9451:1 9460:1 9473:1 9484:2 9486:1 9495:1 9544:1 9569:1 9571:1 9594:1 9597:1 9605:1 9683:1 9687:1 9696:1 9697:1 9701:1 9707:1 9712:1 9757:1 9770:1 9773:1 9778:1 9783:1 9788:1 9793:1 9799:3 9803:1 9823:3 9844:1 9870:1 9877:5 9882:1 9883:1 9917:3 9925:1 9935:1 9974:1 10013:1 10046:1 10066:1 10070:2 10075:1 10076:1 10121:1 10126:1 10136:1 10153:2 10167:2 10183:1 10187:1 10276:1 10281:1 10287:3 10289:2 10296:2 10299:2 10300:3 10304:2 10308:2 10312:1 10322:1 10345:1 10346:1 10371:2 10398:1 10404:1 10410:1 10417:1 10427:2 10429:1 10477:1 10498:1 10526:1 10564:1 10574:1 10580:1 10637:1 10646:1 10652:2 10653:1 10654:1 10684:2 10717:2 10724:1 10750:1 10754:1 10778:1 10784:1 10786:1 10799:1 10821:2 10832:1 10833:1 10834:1 10850:1 10855:1 10872:1 10907:1 10933:1 10940:2 10965:2 10973:2 10977:1 10989:1 10994:4 10995:1 11001:2 11046:1 11067:1 11071:1 11081:1 11093:1 11109:1 11116:1 11149:1 11154:1 11176:1 11222:1 11229:1 11245:1 11247:1 11252:1 11304:1 11313:1 11354:1 11355:2 11375:1 11387:1 11388:1 11389:1 11393:1 11394:1 11410:2 11414:1 11416:1 11421:1 11422:1 11437:1 11447:1 11477:1 11499:2 11501:2 11515:1 11552:1 11611:1 11619:1 11639:1 11662:1 11671:1 11688:2 11699:1 11704:1 11735:1 11756:1 11778:1 11860:1 11876:1 11888:1 11903:1 11933:1 11945:1 11960:1 12007:1 12009:1 12013:1 12018:1 12021:1 12023:1 12039:1 12152:1 12156:1 12157:1 12167:2 12235:2 12242:1 12243:1 12250:1 12261:1 12262:2 12265:1 12271:4 12276:1 12300:2 12313:2 12369:1 12385:1 12402:2 12404:5 12409:2 12468:1 12472:11 12502:1 12522:1 12557:1 12591:1 12640:1 12641:2 12661:1 12687:1 12701:1 12710:1 12733:1 12737:2 12743:1 12766:1 12768:1 12775:3 12778:1 12893:1 12894:2 12896:1 12910:1 12919:1 12932:2 12945:1 12951:1 12970:1 12974:1 12982:2 12995:1 13001:1 13018:1 13033:1 13040:1 13053:1 13067:1 13068:1 13080:1 13086:1 13097:1 13120:2 13126:1 13155:1 13170:1 13186:1 13187:1 13211:1 13247:1 13263:1 13270:1 13295:1 13310:1 13316:1 13332:1 13366:1 13367:1 13371:1 13388:1 13441:1 13459:1 13464:1 13476:1 13498:1 13506:2 13557:1 13563:1 13586:1 13597:1 13599:1 13618:1 13628:2 13676:1 13701:1 13704:1 13708:1 13723:1 13744:1 13751:1 13757:1 13805:1 13825:1 13875:1 13882:1 13894:1 13945:1 13969:2 13973:1 13989:1 13991:2 13996:2 14036:2 14045:1 14106:1 14154:1 14193:1 14211:1 14222:1 14240:1 14259:1 14267:1 14303:1 14306:1 14320:2 14339:1 14403:1 14418:1 14419:1 14422:1 14430:1 14439:1 14445:2 14451:1 14487:3 14492:1 14508:1 14564:2 14577:1 14583:1 14586:1 14604:1 14613:1 14618:1 14622:1 14628:1 14634:1 14635:1 14638:1 14643:1 14667:1 14672:1 14705:1 14724:1 14728:1 14769:1 14797:1 14809:1 14818:1 14824:1 14841:2 14843:1 14851:2 14881:1 14901:1 14907:1 14908:1 14918:1 14924:9 14952:2 14967:1 14973:2 14978:1 15012:7 15018:1 15039:2 15073:1 15083:1 15095:1 15144:1 15145:1 15166:1 15170:2 15173:1 15177:1 15187:2 15188:1 15193:1 15195:1 15196:1 15207:1 15263:1 15301:1 15314:1 15345:1 15352:1 15372:1 15399:2 15402:1 15419:1 15442:1 15483:3 15495:2 15513:1 15520:2 15539:1 15560:1 15567:2 15568:1 15578:1 15582:2 15584:1 15629:1 15655:2 15723:1 15762:1 15775:2 15778:1 15798:1 15839:2 15842:1 15863:1 15896:1 15907:1 15915:1 15962:1 16028:2 16055:1 16070:1 16108:1 16117:1 16119:1 16129:2 16139:1 16157:1 16162:1 16319:1 16324:1 16329:1 16331:1 16337:1 16347:1 16351:1 16399:2 16434:2 16435:3 16457:1 16462:1 16477:1 16489:1 16505:1 16518:2 16519:1 16531:1 16570:1 16583:1 16592:2 16612:1 16625:2 16674:1 16729:2 16733:1 16743:2 16756:1 16762:1 16777:1 16781:1 16782:1 16807:1 16832:1 16837:1 16865:1 16915:1 16925:1 16932:2 16934:1 16985:1 17009:1 17016:1 17097:1 17098:1 17110:5 17127:1 17132:1 17183:1 17205:1 17235:1 17262:1 17265:1 17266:2 17276:1 17317:1 17326:2 17335:1 17376:1 17410:1 17415:1226 17433:1 17473:1 17476:1 17505:2 17594:1 17600:1 17601:1 17613:1 17639:1 17644:1 17706:2 17814:1 17845:1 17869:1 17871:1 17892:1 17900:1 17911:1 17917:1 17928:1 17931:1 17936:1 17946:1 17978:1 17980:1 17989:1 18074:1 18085:1 18100:1 18109:1 18121:1 18142:1 18167:1 18172:2 18175:1 18187:1 18232:5 18275:3 18277:1 18303:1 18306:1 18319:1 18320:1 18324:1 18335:1 18355:1 18359:3 18360:1 18364:1 18365:1 18378:1 18404:1 18410:1 18411:1 18412:1 18432:1 18444:1 18457:1 18543:2 18545:2 18603:1 18608:1 18619:1 18626:1 18663:1 18687:1 18703:1 18723:1 18724:1 18753:1 18754:1 18755:2 18770:1 18786:1 18801:1 18802:1 18805:1 18838:1 18845:1 18861:1 18875:2 18876:1 18878:1 18884:1 18886:1 18890:1 18893:1 18901:1 18908:1 18912:1 18932:1 18936:2 18944:1 18947:1 18966:1 19004:1 19011:1 19013:1 19014:1 19015:1 19033:3 19050:1 19064:1 19109:1 19137:2 19143:1 19148:1 19176:1 19177:1 19205:3 19213:1 19223:1 19225:1 19229:1 19233:1 19252:1 19268:1 19330:1 19370:1 19385:1 19395:1 19407:1 19441:1 19455:1 19492:1 19500:2 19502:1 19520:1 19522:1 19541:1 19556:6 19559:1 19563:1 19568:2 19574:1 19577:1 19582:1 19585:1 19593:1 19607:1 19609:1 19689:1 19701:1 19731:2 19733:1 19747:1 19751:1 19753:1 19769:1 19785:2 19797:1 19810:1 19813:1 19819:2 19831:1 19852:1 19857:1 19877:1 19889:2 19894:1 19905:2 19910:1 19918:1 19923:1 19942:1 19950:1 19965:1 20016:2 20025:2 20039:1 20041:3 20069:2 20070:1 20085:1 20089:2 20143:1 20152:1 20171:1 20178:1 20193:1 20233:1 20270:1 20274:1 20325:2 20327:1 20332:1 20395:1 20398:1 20399:1 20401:1 20411:2 20421:1 20429:1 20447:2 20469:1 20490:2 20526:2 20528:1 20546:1 20548:1 20551:2 20554:1 20556:2 20559:3 20563:1 20571:1 20574:1 20590:1 20592:1 20596:1 20608:1 20630:1 20682:1 20683:1 20685:1 20730:1 20731:2 20752:3 20755:2 20803:2 20811:1 20828:2 20832:1 20893:1 20906:1 20927:1 20939:2 20960:6 20967:1 20973:1 21002:1 21022:1 21028:1 21029:1 21057:1 21072:1 21087:1 21103:1 21167:1 21179:1 21186:1 21199:1 21262:1 21284:1 21287:1 21312:1 21341:1 21346:1 21354:2 21363:1 21365:1 21375:1 21376:1 21397:1 21414:1 21420:1 21442:1 21472:1 21480:1 21483:2 21496:1 21513:2 21534:1 21536:1 21547:1 21549:1 21550:1 21608:1 21609:1 21614:1 21633:3 21640:1 21645:1 21657:1 21683:1 21703:2 21709:1 21728:1 21735:1 21737:1 21753:1 21784:1 21789:1 21816:3 21817:1 21837:1 21838:1 21857:1 21869:1 21885:1 21891:1 21928:1 21930:1 21951:1 21965:1 21966:1 21971:1 21979:1 21985:1 22008:2 22015:1 22026:1 22043:1 22054:3 22067:1 22080:1 22085:1 22105:1 22125:3 22156:1 22164:1 22171:1 22215:1 22268:1 22288:1 22298:1 22304:1 22336:1 22381:2 22386:1 22389:1 22400:1 22449:1 22450:1 22466:1 22491:1 22493:1 22542:1 22545:2 22575:1 22598:1 22604:1 22657:1 22666:3 22686:2 22687:1 22722:1 22724:1 22742:1 22765:1 22779:1 22784:1 22791:1 22810:1 22814:1 22843:1 22859:1 22891:2 22904:1 22905:1 22941:1 22946:1 22962:2 22965:1 22991:1 22996:1 23010:1 23013:1 23015:2 23025:1 23038:1 23073:2 23096:2 23136:1 23142:1 23147:1 23149:2 23153:1 23158:1 23171:1 23189:1 23234:1 23252:1 23263:1 23277:2 23285:1 23290:1 23307:1 23308:2 23335:1 23360:1 23369:1 23403:2 23422:1 23493:2 23496:2 23559:1 23563:1 23594:1 23634:1 23646:1 23660:1 23669:1 23681:2 23683:1 23689:1 23692:3 23699:1 23717:1 23718:1 23719:1 23720:1 23721:1 23723:1 23766:2 23777:2 23779:1 23791:1 23801:1 23848:3 23862:1 23865:1 23871:1 23874:1 23875:1 23882:1 23907:2 23911:1 23919:1 23946:1 23955:1 23966:1 23970:1 23973:1 23985:1 23994:1 23996:1 23998:1 24017:1 24022:1 24054:1 24092:2 24093:1 24153:1 24160:1 24166:1 24271:1 24288:1 24290:1 24310:1 24331:1 24334:2 24340:3 24434:1 24439:1 24459:1 24470:2 24473:1 24497:1 24507:1 24551:1 24562:1 24570:1 24571:1 24586:1 24602:1 24603:1 24704:1 24723:1 24733:1 24740:1 24807:1 24809:1 24871:1 24893:1 24896:1 24904:1 24936:1 24940:1 24956:1 24969:4 24972:1 25029:1 25033:1 25060:1 25069:1 25097:1 25112:1 25114:1 25115:2 25159:1 25221:1 25240:2 25242:2 25247:1 25249:1 25262:1 25265:1 25267:1 25279:1 25288:1 25306:1 25309:1 25323:1 25329:1 25333:4 25337:1 25363:1 25372:1 25381:1 25387:1 25392:1 25445:1 25474:1 25496:2 25505:1 25507:1 25508:1 25513:1 25517:2 25518:1 25519:1 25523:1 25525:1 25550:1 25561:1 25567:2 25568:3 25570:1 25572:1 25584:1 25614:1 25630:1 25650:1 25651:1 25672:2 25715:1 25738:2 25761:1 25782:1 25792:1 25793:1 25796:1 25802:2 25806:1 25820:2 25824:1 25826:1 25827:2 25837:1 25839:1 25861:1 25870:1 25871:2 25872:1 25900:3 25925:1 25927:2 25928:1 25930:1 25957:1 25959:1 25994:1 25997:1 26007:1 26019:1 26032:1 26072:1 26099:1 26107:1 26204:1 26211:1 26268:1 26283:1 26289:1 26346:1 26349:1 26368:1 26439:1 26446:1 26448:1 26484:1 26485:1 26508:12 26513:1 26530:1 26539:1 26547:2 26564:1 26567:1 26576:1 26610:3 26619:1 26622:1 26645:1 26655:3 26662:1 26692:5 26733:1 26764:2 26800:1 26807:1 26813:1 26834:2 26852:2 26864:2 26867:1 26882:1 26886:1 26904:1 26921:1 26944:1 26946:2 26952:1 26953:1 26965:1 26966:2 26975:1 26977:1 26982:1 27016:2 27019:2 27020:4 27063:1 27073:1 27078:2 27096:2 27150:2 27154:1 27202:1 27227:1 27236:1 27241:1 27247:1 27248:1 27309:1 27333:1 27379:1 27390:1 27394:1 27396:1 27402:2 27433:1 27434:1 27440:1 27447:1 27477:1 27491:1 27492:1 27521:1 27530:1 27534:1 27553:1 27564:1 27569:1 27598:1 27619:1 27635:1 27637:1 27669:1 27672:1 27683:1 27689:1 27706:1 27715:2 27716:2 27723:1 27730:1 27734:1 27739:2 27765:1 27775:3 27778:1 27784:2 27792:1 27797:1 27820:1
8 1:1 8:1 21:1 40:1 43:1 46:1 47:2 83:2 88:1 102:1 121:1 125:1 132:1 148:1 160:1 162:1 181:1 190:1 194:3 214:1 234:1 240:3 303:1 327:3 328:1 329:1 369:2 432:1 441:1 451:1 486:1 494:1 575:1 587:1 605:4 627:3 659:1 667:1 683:1 771:1 843:3 856:1 869:1 876:3 891:1 925:1 930:3 934:2 969:1 970:1 973:3 1045:1 1050:1 1052:1 1074:1 1086:1 1105:1 1129:1 1147:1 1176:1 1182:1 1187:1 1191:1 1201:1 1202:1 1205:1 1210:1 1221:1 1222:1 1238:1 1241:1 1243:1 1244:1 1251:1 1253:1 1255:1 1265:1 1270:1 1296:1 1311:1 1324:1 1332:1 1371:1 1374:1 1393:3 1395:5 1399:1 1411:1 1424:3 1432:3 1446:1 1468:1 1475:3 1496:1 1509:3 1523:2 1553:1 1565:2 1576:1 1578:1 1588:1 1607:1 1612:1 1626:1 1640:1 1644:1 1663:1 1669:1 1670:2 1681:1 1682:1 1692:1 1696:1 1720:1 1732:1 1738:1 1740:1 1744:1 1769:1 1774:1 1776:2 1787:4 1791:1 1797:1 1801:2 1815:1 1818:2 1824:1 1833:1 1835:1 1844:2 1856:1 1858:1 1859:1 1871:1 1883:1 1887:1 1926:1 1928:1 1956:1 1958:1 1962:2 1997:1 2006:1 2012:1 2057:4 2145:1 2176:1 2177:2 2179:1 2181:1 2185:3 2188:1 2193:1 2196:2 2201:6 2203:2 2208:1 2209:1 2211:2 2214:1 2216:1 2248:1 2252:1 2260:2 2274:1 2285:1 2295:1 2378:1 2380:1 2418:1 2430:1 2437:1 2510:1 2547:1 2557:1 2563:1 2565:1 2569:1 2583:1 2597:1 2598:1 2599:1 2602:3 2646:1 2649:1 2650:1 2662:1 2676:1 2705:1 2731:1 2755:1 2760:1 2766:2 2774:6 2801:2 2803:2 2811:1 2818:1 2831:3 2840:1 2854:1 2869:1 2880:1 2883:1 2885:1 2886:1 2908:1 2983:1 2996:1 3002:1 3010:1 3062:2 3090:1 3092:1 3122:1 3127:1 3131:1 3134:3 3137:3 3138:1 3148:1 3158:3 3164:1 3174:1 3195:1 3216:1 3227:1 3233:1 3313:2 3324:1 3325:1 3339:1 3362:1 3406:1 3423:1 3434:1 3442:1 3481:1 3491:1 3496:1 3506:1 3518:2 3530:1 3537:1 3538:1 3574:1 3585:1 3614:1 3621:2 3625:2 3630:1 3646:1 3647:1 3650:1 3682:1 3688:1 3692:1 3709:2 3715:1 3724:1 3728:2 3732:1 3738:1 3757:2 3758:1 3764:1 3807:1 3810:1 3815:1 3818:1 3826:1 3836:1 3857:2 3858:3 3916:2 3923:1 3928:1 3934:1 3940:1 3970:1 3983:1 4002:1 4011:1 4020:2 4030:2 4031:1 4035:4 4042:1 4109:1 4115:1 4126:1 4129:4 4131:1 4152:2 4169:1 4174:1 4196:1 4224:1 4230:1 4235:1 4249:1 4251:1 4281:2 4290:1 4315:1 4351:1 4400:1 4426:2 4433:1 4462:2 4471:1 4497:3 4498:1 4500:1 4533:1 4536:1 4546:1 4567:1 4648:13 4669:1 4670:1 4673:1 4677:1 4767:3 4787:4 4789:4 4792:1 4796:1 4797:1 4800:2 4802:2 4810:1 4813:1 4814:4 4871:2 4903:1 4944:1 4947:1 4994:1 4997:1 5002:1 5005:1 5010:1 5013:1 5047:1 5074:1 5092:1 5102:1 5104:2 5123:1 5126:2 5136:1 5170:1 5182:1 5201:1 5212:1 5222:2 5224:1 5248:1 5253:1 5275:1 5286:1 5296:1 5301:1 5309:2 5313:1 5315:2 5319:1 5320:1 5322:1 5413:1 5422:1 5423:1 5436:1 5437:1 5446:1 5486:1 5585:1 5587:2 5593:1 5643:3 5708:1 5710:2 5739:4 5755:1 5760:1 5773:1 5804:1 5808:1 5828:1 5832:1 5862:1 5867:1 5896:1 5910:1 5913:3 5942:5 5945:1 5950:1 5961:1 5993:3 6027:1 6034:3 6037:1 6041:1 6044:1 6045:3 6047:1 6048:2 6053:1 6058:2 6060:3 6089:1 6100:1 6101:1 6121:1 6140:1 6147:2 6174:1 6187:1 6206:1 6216:1 6221:1 6256:1 6259:1 6288:1 6295:1 6327:1 6330:1 6338:1 6353:1 6416:1 6418:1 6431:1 6433:1 6437:1 6457:2 6462:1 6475:1 6486:1 6489:3 6493:4 6497:1 6507:1 6508:1 6512:1 6519:5 6521:2 6522:1 6592:1 6596:1 6597:1 6612:1 6620:1 6625:2 6645:1 6683:1 6703:1 6707:1 6716:1 6721:1 6737:1 6748:1 6768:1 6771:1 6779:1 6792:1 6816:3 6818:1 6838:1 6839:1 6852:1 6860:1 6890:1 6903:2 6914:2 6941:1 6948:1 6954:1 6960:3 6994:1 6999:1 7011:1 7048:3 7073:3 7077:1 7137:1 7144:1 7187:1 7249:5 7250:2 7273:1 7274:3 7307:1 7323:21 7344:6 7345:5 7369:1 7381:1 7414:1 7434:3 7488:2 7513:2 7525:1 7539:4 7550:1 7563:1 7566:1 7571:1 7590:1 7600:1 7603:1 7646:1 7650:2 7675:1 7677:1 7684:1 7696:1 7698:1 7701:1 7715:3 7791:6 7812:1 7815:1 7817:1 7826:1 7843:1 7879:1 7884:1 7891:1 7922:1 7929:1 7936:1 7949:1 7957:2 7958:1 7964:1 7990:1 7994:1 8026:1 8031:1 8034:1 8035:1 8054:1 8116:1 8117:1 8122:1 8124:1 8125:3 8126:1 8128:2 8135:2 8155:1 8161:1 8166:1 8191:1 8229:1 8268:1 8280:2 8282:2 8293:1 8322:1 8326:1 8328:1 8340:1 8362:1 8397:1 8406:1 8413:1 8423:1 8439:1 8441:1 8467:1 8484:1 8485:2 8493:1 8503:1 8505:1 8515:1 8531:1 8539:1 8556:3 8558:2 8575:1 8620:1 8621:1 8670:2 8694:1 8697:1 8705:1 8716:1 8719:3 8747:1 8748:1 8752:2 8801:1 8813:1 8816:1 8853:1 8878:1 8898:1 8907:1 8930:2 8942:1 8944:2 8954:1 8962:1 8971:1 8979:1 8991:1 8997:1 9000:1 9007:1 9010:1 9016:1 9030:1 9048:1 9062:1 9063:2 9068:1 9073:1 9118:1 9179:2 9180:1 9215:1 9236:2 9249:2 9257:1 9267:1 9317:1 9325:1 9385:1 9405:2 9418:1 9442:1 9451:1 9460:1 9473:1 9484:2 9486:1 9495:1 9507:1 9544:1 9569:1 9571:1 9594:1 9597:1 9605:1 9683:1 9687:1 9696:1 9697:1 9701:1 9707:1 9712:1 9757:1 9770:1 9773:1 9778:1 9783:1 9788:1 9793:1 9799:3 9803:1 9823:3 9844:1 9870:1 9877:5 9882:1 9883:1 9917:4 9925:1 9935:1 9955:2 9974:1 10013:1 10046:2 10066:1 10070:2 10075:1 10076:1 10121:1 10126:1 10136:1 10153:2 10167:2 10183:1 10187:1 10276:1 10281:1 10287:3 10289:2 10296:2 10299:2 10300:3 10304:2 10308:2 10312:1 10322:1 10345:1 10346:1 10371:2 10398:1 10404:1 10410:1 10417:1 10427:2 10429:1 10477:1 10498:1 10526:1 10564:1 10574:1 10580:1 10637:1 10646:1 10652:2 10653:1 10654:1 10684:2 10717:2 10724:1 10750:1 10754:1 10778:1 10784:1 10786:1 10799:1 10821:2 10832:1 10833:1 10834:1 10850:1 10855:1 10872:1 10907:1 10933:1 10940:2 10965:2 10973:2 10977:1 10989:1 10994:4 10995:1 11001:2 11046:1 11067:1 11071:1 11081:1 11093:1 11109:1 11116:1 11149:1 11154:1 11176:1 11222:1 11229:1 11245:1 11247:1 11252:1 11304:1 11313:1 11354:1 11355:2 11375:1 11387:1 11388:1 11389:1 11393:1 11394:1 11410:2 11414:1 11416:1 11421:1 11422:1 11437:1 11447:1 11477:1 11499:2 11501:2 11515:1 11552:1 11611:1 11619:1 11639:1 11661:2 11662:1 11671:1 11688:2 11699:1 11704:1 11735:1 11756:1 11778:1 11860:1 11876:1 11888:1 11903:1 11933:1 11945:1 11960:1 12007:1 12009:1 12013:1 12018:1 12021:1 12023:1 12039:1 12152:1 12156:1 12157:1 12167:2 12214:2 12235:2 12236:1 12242:1 12243:1 12250:1 12261:1 12262:2 12265:1 12271:4 12276:1 12300:2 12313:2 12369:1 12385:1 12402:2 12404:5 12409:2 12468:1 12472:11 12502:1 12522:1 12557:1 12591:1 12640:1 12641:2 12661:1 12687:1 12701:1 12710:1 12733:1 12737:2 12743:1 12766:1 12768:1 12775:3 12778:1 12885:1 12893:1 12894:2 12896:1 12910:1 12919:1 12932:2 12945:1 12951:1 12970:1 12974:1 12982:2 12995:1 13001:1 13018:1 13033:1 13040:1 13053:1 13067:1 13068:1 13080:1 13086:1 13097:1 13120:2 13126:1 13155:1 13170:1 13186:1 13187:1 13211:1 13247:1 13263:1 13270:1 13295:1 13310:1 13316:1 13332:1 13366:1 13367:1 13371:1 13388:1 13441:1 13459:1 13464:1 13476:1 13498:1 13506:2 13557:1 13563:1 13586:1 13597:1 13599:1 13618:1 13628:2 13676:1 13701:1 13704:1 13708:1 13723:1 13744:1 13751:1 13757:1 13805:1 13825:1 13875:1 13882:1 13894:1 13911:1 13945:1 13969:2 13973:1 13989:1 13991:2 13996:2 14036:2 14045:1 14106:1 14154:1 14193:1 14211:1 14222:1 14240:1 14259:1 14267:1 14303:1 14306:1 14320:2 14339:1 14403:1 14418:1 14419:1 14422:1 14430:1 14439:1 14445:2 14451:2 14487:3 14492:1 14506:1 14508:1 14564:2 14577:1 14583:1 14586:1 14604:1 14613:1 14618:1 14622:1 14628:1 14634:1 14635:1 14638:1 14643:1 14667:1 14672:1 14705:1 14724:1 14728:1 14769:1 14797:1 14809:1 14818:1 14824:1 14841:2 14843:1 14851:2 14881:1 14901:1 14907:1 14908:1 14918:1 14924:9 14945:1 14952:2 14967:1 14973:2 14978:1 15012:7 15018:1 15039:2 15073:1 15083:1 15095:1 15144:1 15145:1 15166:1 15170:2 15173:1 15177:1 15187:2 15188:1 15193:1 15195:1 15196:1 15207:1 15263:1 15301:1 15314:1 15345:1 15352:1 15372:1 15399:2 15402:1 15419:1 15442:1 15483:3 15495:2 15513:1 15520:2 15539:1 15560:1 15567:2 15568:1 15578:1 15582:2 15584:1 15629:1 15655:2 15723:1 15762:1 15775:2 15778:1 15798:1 15839:2 15842:1 15863:1 15896:1 15907:1 15915:1 15962:1 16028:2 16055:1 16070:1 16108:1 16117:1 16119:1 16129:2 16139:1 16157:1 16162:1 16319:1 16324:1 16329:1 16331:1 16337:1 16347:1 16351:1 16399:2 16434:2 16435:3 16457:1 16462:1 16477:1 16489:1 16505:1 16518:2 16519:1 16531:1 16570:1 16583:1 16592:2 16612:1 16625:3 16674:1 16729:2 16733:2 16743:2 16756:1 16762:1 16777:1 16781:1 16782:1 16807:1 16832:1 16837:1 16865:1 16915:1 16925:1 16932:2 16934:1 16985:1 17009:1 17016:1 17097:1 17098:1 17110:5 17127:1 17132:1 17183:1 17205:1 17235:1 17262:1 17265:1 17266:2 17276:1 17317:1 17326:2 17335:1 17376:1 17410:1 17415:1278 17433:1 17473:1 17476:1 17505:2 17594:1 17600:1 17601:1 17613:1 17639:1 17644:1 17646:1 17706:2 17814:1 17824:1 17831:1 17845:1 17869:1 17871:1 17892:1 17900:1 17911:1 17917:1 17928:1 17931:1 17936:1 17946:1 17978:1 17980:1 17989:1 18074:1 18085:1 18100:1 18109:1 18121:1 18142:1 18167:1 18172:2 18175:1 18187:1 18232:5 18275:3 18277:1 18303:1 18306:1 18314:1 18319:1 18320:1 18324:1 18335:1 18355:1 18359:3 18360:1 18364:1 18365:1 18378:1 18404:1 18410:1 18411:1 18412:1 18432:1 18444:1 18457:1 18543:2 18545:2 18603:1 18608:1 18619:1 18626:1 18663:1 18687:1 18703:1 18723:1 18724:1 18753:1 18754:1 18755:2 18770:1 18786:1 18801:1 18802:1 18805:1 18838:1 18845:1 18861:1 18875:2 18876:1 18878:1 18884:1 18886:1 18890:1 18893:1 18901:1 18908:1 18912:1 18932:1 18936:2 18944:1 18947:1 18966:1 19004:1 19011:1 19013:1 19014:1 19015:1 19033:3 19050:1 19064:1 19109:1 19137:2 19143:1 19148:1 19176:1 19177:1 19205:3 19213:1 19223:1 19225:1 19229:1 19233:1 19252:1 19268:1 19330:1 19370:1 19385:1 19395:1 19407:1 19441:1 19455:1 19492:1 19500:2 19502:1 19520:1 19522:1 19541:1 19556:6 19559:1 19563:1 19568:2 19574:1 19577:1 19582:1 19585:1 19593:1 19607:1 19609:1 19689:1 19701:1 19731:2 19733:1 19747:1 19751:1 19753:1 19769:1 19785:2 19797:1 19810:1 19813:1 19819:3 19831:1 19852:1 19857:1 19877:1 19889:2 19894:1 19905:2 19910:1 19918:1 19923:1 19942:1 19950:1 19965:1 20016:2 20025:2 20039:1 20041:3 20069:2 20070:1 20085:1 20089:2 20143:1 20152:1 20171:1 20178:1 20193:1 20233:1 20270:1 20274:1 20325:2 20327:1 20332:1 20334:1 20395:1 20398:1 20399:1 20401:1 20411:2 20421:1 20429:1 20447:2 20469:1 20490:2 20526:2 20528:1 20546:1 20548:1 20551:2 20554:1 20556:2 20559:3 20563:1 20571:1 20574:1 20590:1 20592:1 20596:1 20608:1 20630:1 20682:1 20683:1 20685:1 20730:1 20731:2 20752:3 20755:2 20803:2 20811:1 20828:2 20832:1 20893:1 20906:1 20927:1 20939:2 20960:6 20967:1 20973:1 21002:1 21022:1 21028:1 21029:1 21057:1 21072:1 21087:1 21103:1 21167:1 21179:1 21186:1 21199:1 21262:1 21284:1 21287:1 21312:1 21341:1 21342:1 21346:1 21354:2 21363:1 21365:1 21375:1 21376:1 21397:1 21414:1 21420:1 21442:1 21472:1 21480:1 21483:2 21496:1 21513:2 21534:1 21536:1 21547:1 21549:1 21550:1 21608:1 21609:1 21614:1 21633:3 21640:1 21645:1 21657:2 21683:1 21703:2 21709:1 21728:1 21735:1 21737:1 21753:1 21784:1 21789:1 21816:3 21817:1 21837:1 21838:1 21844:2 21857:1 21869:1 21885:1 21891:1 21928:1 21930:1 21951:1 21965:1 21966:1 21971:1 21979:1 21985:1 22008:2 22015:1 22026:1 22043:1 22054:3 22067:1 22080:1 22085:1 22105:1 22125:3 22156:1 22164:1 22171:1 22215:1 22268:1 22288:1 22298:1 22304:1 22336:1 22381:2 22386:1 22389:1 22400:1 22449:1 22450:1 22466:1 22491:1 22493:1 22542:1 22545:2 22575:1 22598:1 22604:1 22657:1 22666:3 22686:2 22687:1 22722:1 22724:1 22742:1 22765:1 22779:1 22784:1 22791:1 22798:1 22810:1 22814:1 22843:1 22859:1 22891:2 22904:1 22905:1 22941:1 22946:1 22962:2 22965:1 22991:1 22996:1 23010:1 23013:1 23015:2 23025:1 23038:1 23073:2 23096:2 23136:1 23142:1 23144:1 23147:1 23149:2 23153:1 23158:1 23171:1 23189:1 23234:1 23252:1 23263:1 23277:2 23285:1 23290:1 23307:1 23308:2 23335:1 23360:1 23369:1 23403:2 23422:1 23493:2 23496:2 23559:1 23563:1 23594:1 23634:1 23646:1 23660:1 23669:1 23681:2 23683:1 23689:1 23692:4 23699:1 23717:1 23718:1 23719:1 23720:1 23721:1 23723:1 23766:2 23777:2 23779:1 23791:1 23801:1 23848:3 23862:1 23865:1 23871:1 23874:1 23875:1 23882:1 23907:2 23911:1 23919:1 23946:1 23955:1 23966:1 23970:1 23973:1 23985:1 23994:1 23996:1 23998:1 24017:1 24022:1 24054:1 24092:2 24093:1 24094:1 24153:1 24160:1 24166:1 24271:1 24288:1 24290:1 24310:1 24331:1 24334:2 24340:3 24434:1 24439:1 24459:1 24470:2 24473:1 24497:1 24507:1 24551:1 24562:1 24570:1 24571:1 24586:1 24602:1 24603:1 24704:1 24723:1 24733:1 24740:1 24807:1 24809:1 24871:1 24893:1 24896:1 24904:1 24936:1 24940:1 24956:1 24969:4 24972:1 25029:1 25033:1 25060:1 25069:1 25097:1 25112:1 25114:1 25115:2 25159:1 25221:1 25240:2 25242:2 25247:1 25249:1 25262:1 25265:1 25267:1 25279:1 25288:1 25306:1 25309:1 25323:1 25329:1 25333:4 25337:1 25363:1 25372:1 25381:1 25387:1 25392:1 25445:1 25474:1 25496:2 25505:1 25507:1 25508:1 25513:1 25517:2 25518:1 25519:1 25523:1 25525:1 25550:1 25561:1 25567:2 25568:3 25570:1 25572:1 25584:1 25614:1 25630:1 25650:1 25651:1 25672:2 25715:1 25738:2 25761:1 25782:1 25792:1 25793:1 25796:1 25802:2 25806:1 25820:2 25824:1 25826:1 25827:2 25837:1 25839:1 25861:1 25870:1 25871:2 25872:1 25900:3 25925:1 25927:2 25928:1 25930:1 25957:1 25959:1 25994:1 25997:1 26007:1 26019:1 26032:1 26072:1 26099:1 26107:1 26204:1 26211:1 26268:1 26283:1 26289:1 26346:1 26349:1 26368:1 26413:1 26439:1 26446:1 26448:1 26484:1 26485:1 26508:12 26513:1 26530:1 26539:1 26547:2 26564:1 26567:1 26576:1 26610:3 26619:1 26622:1 26645:1 26655:3 26662:1 26692:5 26733:1 26764:2 26800:1 26807:1 26813:1 26834:2 26852:2 26864:2 26867:1 26882:1 26886:1 26904:1 26921:1 26944:1 26946:2 26952:1 26953:1 26965:1 26966:2 26975:1 26977:1 26982:1 27016:2 27019:2 27020:4 27063:1 27073:1 27078:2 27096:2 27150:2 27154:1 27202:1 27227:1 27236:1 27241:1 27247:1 27248:1 27309:1 27333:1 27379:1 27390:1 27394:1 27396:1 27402:2 27433:1 27434:1 27440:1 27447:1 27477:1 27491:1 27492:1 27521:1 27530:1 27534:1 27553:1 27564:1 27569:1 27598:1 27619:1 27635:1 27637:1 27669:1 27672:1 27683:1 27689:1 27706:1 27715:2 27716:2 27723:1 27730:1 27734:1 27739:2 27765:1 27775:4 27778:1 27784:2 27792:1 27797:1 27820:1
8 1:1 8:1 21:1 40:1 43:1 46:1 47:2 83:2 88:1 102:1 121:1 125:1 132:1 148:1 160:1 162:1 181:1 190:1 194:4 214:1 234:1 240:3 279:1 303:1 327:3 328:1 329:1 354:1 369:2 432:1 441:1 451:1 486:1 494:1 575:1 587:1 605:4 627:3 659:1 667:2 683:1 771:1 843:3 856:1 869:1 876:3 891:1 925:1 930:3 934:2 969:1 970:1 973:3 1045:1 1050:1 1052:1 1074:1 1086:1 1105:1 1129:1 1147:1 1176:1 1182:1 1187:1 1191:1 1201:1 1202:1 1205:1 1210:1 1221:1 1222:1 1238:1 1241:1 1243:1 1244:1 1251:1 1253:1 1255:1 1265:1 1270:1 1296:1 1311:1 1324:1 1332:1 1371:1 1374:1 1389:1 1393:3 1395:5 1399:1 1411:1 1424:3 1432:3 1446:1 1468:1 1475:3 1496:1 1509:3 1523:2 1553:1 1565:2 1576:1 1578:1 1588:1 1607:1 1612:1 1626:1 1640:1 1644:1 1663:1 1669:1 1670:2 1681:1 1682:1 1692:1 1696:1 1720:1 1732:1 1738:1 1740:1 1744:1 1762:1 1769:1 1774:1 1776:2 1787:4 1791:1 1797:1 1801:2 1815:1 1818:2 1824:1 1833:1 1835:1 1844:2 1856:1 1858:1 1859:1 1871:1 1883:1 1887:1 1926:1 1928:1 1956:1 1958:1 1962:2 1997:1 2006:1 2012:1 2057:4 2145:1 2176:1 2177:2 2179:1 2181:1 2185:3 2188:1 2193:1 2196:2 2201:6 2203:2 2208:1 2209:1 2211:2 2214:1 2216:1 2248:1 2252:1 2260:2 2274:1 2285:1 2295:1 2378:1 2380:1 2418:1 2430:1 2437:1 2510:1 2547:1 2557:1 2563:1 2565:1 2569:1 2583:1 2597:1 2598:1 2599:1 2602:3 2646:1 2649:1 2650:1 2662:1 2676:1 2687:1 2705:1 2713:1 2731:1 2755:1 2760:1 2766:2 2774:6 2801:2 2803:2 2811:1 2818:1 2831:3 2840:1 2854:1 2869:1 2880:1 2883:1 2885:1 2886:1 2897:1 2908:1 2983:1 2996:1 3002:1 3010:1 3062:2 3090:1 3092:1 3122:1 3127:1 3131:1 3134:3 3137:3 3138:1 3148:1 3158:4 3164:1 3174:1 3195:1 3216:1 3227:1 3233:1 3313:2 3324:1 3325:1 3339:1 3362:1 3406:1 3423:1 3434:1 3442:1 3481:1 3491:1 3496:1 3506:1 3518:2 3530:1 3537:1 3538:1 3574:1 3585:1 3614:1 3621:2 3625:2 3630:1 3646:1 3647:1 3650:1 3680:1 3682:1 3688:1 3692:1 3709:2 3715:1 3724:1 3728:2 3732:1 3738:1 3757:2 3758:1 3764:1 3807:1 3810:1 3815:1 3818:1 3826:1 3836:1 3857:2 3858:3 3916:2 3923:1 3928:1 3934:1 3940:1 3970:1 3983:1 4002:1 4011:1 4020:2 4030:2 4031:1 4035:4 4042:1 4052:1 4068:1 4109:1 4115:1 4126:1 4129:4 4131:1 4152:2 4169:1 4174:1 4196:1 4224:1 4230:2 4235:1 4249:1 4251:1 4281:2 4290:1 4315:1 4351:1 4384:1 4400:1 4426:2 4433:1 4459:1 4462:2 4471:1 4474:1 4497:3 4498:1 4500:1 4533:1 4536:1 4546:1 4567:1 4648:13 4669:1 4670:1 4673:1 4677:1 4767:3 4787:4 4789:4 4792:1 4796:1 4797:1 4800:2 4802:2 4810:1 4813:1 4814:4 4871:2 4903:1 4944:1 4947:1 4994:1 4997:1 5002:1 5005:1 5010:1 5013:1 5047:1 5074:1 5092:1 5102:1 5104:2 5123:1 5126:2 5136:1 5170:1 5182:1 5201:1 5212:1 5222:2 5224:1 5248:1 5253:1 5269:1 5275:1 5286:1 5296:1 5301:1 5309:2 5313:1 5315:2 5319:1 5320:1 5322:1 5413:1 5422:1 5423:1 5436:1 5437:1 5446:1 5486:1 5585:1 5587:2 5593:1 5643:3 5708:2 5710:2 5739:4 5755:1 5760:1 5773:1 5804:1 5808:1 5828:1 5832:1 5862:1 5867:1 5896:1 5910:1 5913:3 5942:5 5945:1 5950:1 5961:1 5993:3 6027:1 6034:3 6037:1 6041:1 6044:1 6045:3 6047:1 6048:2 6053:1 6058:3 6060:3 6089:1 6100:1 6101:1 6121:1 6140:1 6147:2 6174:1 6187:1 6206:1 6216:1 6221:1 6256:1 6259:1 6288:1 6295:1 6327:1 6330:1 6338:1 6353:1 6416:1 6418:1 6431:1 6433:1 6437:1 6457:2 6462:1 6475:1 6486:1 6489:4 6493:4 6497:1 6507:1 6508:1 6512:1 6519:5 6521:2 6522:1 6579:1 6592:1 6596:1 6597:1 6612:1 6620:1 6625:2 6645:1 6683:1 6703:1 6707:1 6716:1 6721:1 6737:1 6748:1 6768:1 6771:1 6779:1 6792:1 6816:3 6818:1 6838:1 6839:1 6852:1 6860:1 6890:1 6903:2 6914:2 6941:2 6948:1 6954:1 6960:3 6994:1 6999:1 7011:1 7048:3 7073:3 7077:1 7088:1 7137:1 7144:1 7187:1 7249:5 7250:2 7273:1 7274:3 7307:1 7323:21 7344:6 7345:5 7369:1 7370:1 7381:1 7414:1 7434:3 7488:2 7513:2 7525:1 7539:4 7550:1 7563:1 7566:1 7571:1 7590:1 7600:1 7603:1 7646:1 7650:2 7675:1 7677:1 7684:1 7696:1 7698:1 7701:1 7715:3 7789:1 7791:6 7812:1 7815:1 7817:1 7826:1 7843:1 7879:2 7884:1 7891:1 7922:1 7929:1 7936:1 7949:1 7957:2 7958:1 7964:1 7990:1 7994:1 8026:1 8031:1 8034:1 8035:1 8054:1 8116:1 8117:1 8122:1 8123:1 8124:1 8125:3 8126:1 8128:2 8135:2 8155:1 8161:1 8166:1 8180:1 8182:1 8191:1 8229:2 8268:1 8280:2 8282:2 8293:1 8322:1 8326:1 8328:1 8340:1 8362:1 8397:1 8406:1 8413:1 8423:1 8439:1 8441:1 8467:1 8484:1 8485:2 8493:1 8503:1 8505:1 8515:1 8531:1 8539:1 8556:3 8558:2 8575:1 8620:1 8621:1 8670:2 8694:1 8697:1 8705:1 8716:1 8719:3 8747:1 8748:1 8752:2 8801:1 8813:1 8816:1 8817:1 8853:1 8878:1 8898:1 8907:1 8930:2 8942:1 8944:2 8954:1 8962:1 8971:1 8979:1 8991:1 8997:1 9000:1 9007:1 9010:1 9016:1 9030:1 9048:1 9062:1 9063:2 9068:1 9073:1 9118:1 9179:2 9180:1 9215:1 9236:2 9249:2 9257:1 9267:1 9317:1 9325:1 9385:1 9405:2 9418:1 9442:1 9451:1 9460:1 9473:1 9484:2 9486:1 9495:1 9507:1 9544:1 9569:1 9571:1 9594:1 9597:1 9605:1 9683:1 9687:1 9696:1 9697:1 9701:1 9707:1 9712:1 9757:1 9770:1 9773:1 9778:1 9783:1 9788:1 9793:1 9799:3 9803:1 9823:3 9844:1 9870:1 9877:5 9882:2 9883:1 9917:4 9925:1 9935:1 9955:2 9974:1 9996:1 10013:1 10046:2 10066:1 10070:2 10075:1 10076:1 10121:1 10126:1 10136:1 10153:2 10167:2 10183:1 10187:1 10199:1 10276:1 10281:1 10287:3 10289:2 10296:2 10299:2 10300:3 10304:2 10308:2 10312:1 10322:1 10345:1 10346:1 10371:2 10398:1 10404:1 10406:1 10410:1 10417:1 10427:2 10429:1 10477:1 10498:1 10526:1 10564:1 10574:1 10580:1 10585:1 10637:1 10646:1 10652:2 10653:1 10654:1 10684:2 10717:2 10724:1 10750:1 10754:1 10778:1 10784:1 10786:1 10799:2 10821:2 10832:1 10833:1 10834:1 10850:1 10855:1 10872:1 10907:1 10933:1 10940:2 10965:2 10973:2 10977:1 10989:1 10994:4 10995:1 11001:2 11046:1 11067:1 11071:1 11081:1 11093:1 11109:1 11116:1 11149:1 11154:1 11176:1 11222:1 11229:1 11245:1 11247:1 11252:1 11291:1 11304:1 11313:1 11354:1 11355:2 11375:1 11387:1 11388:1 11389:1 11393:1 11394:1 11410:2 11414:1 11416:1 11421:1 11422:1 11437:1 11447:1 11477:1 11499:2 11501:2 11515:1 11552:1 11611:1 11619:1 11639:1 11661:2 11662:1 11671:1 11688:2 11699:1 11704:1 11735:1 11756:1 11778:1 11860:1 11876:2 11888:1 11889:1 11903:1 11933:1 11945:1 11960:1 12007:1 12009:1 12013:1 12018:1 12021:1 12023:1 12039:1 12152:1 12156:1 12157:1 12167:2 12214:2 12235:2 12236:1 12242:1 12243:1 12250:1 12261:1 12262:2 12265:1 12271:5 12276:1 12300:2 12313:2 12369:1 12385:1 12402:2 12404:5 12409:2 12468:1 12472:11 12502:1 12522:1 12539:1 12557:1 12591:1 12640:1 12641:2 12661:1 12687:1 12701:1 12710:1 12733:1 12737:2 12743:2 12766:1 12768:1 12775:3 12778:1 12885:1 12893:1 12894:2 12896:1 12910:1 12919:1 12932:2 12945:1 12951:1 12970:1 12974:1 12982:2 12995:1 13001:1 13018:1 13033:1 13040:1 13053:1 13067:1 13068:1 13080:1 13086:1 13097:1 13120:2 13126:1 13155:1 13170:1 13186:1 13187:1 13211:1 13247:1 13263:1 13270:1 13295:2 13310:1 13316:1 13332:1 13366:1 13367:1 13371:1 13388:1 13441:1 13459:1 13464:1 13476:1 13498:1 13506:2 13557:1 13563:1 13586:1 13597:1 13599:1 13618:1 13628:2 13676:1 13692:1 13701:1 13704:1 13708:1 13723:1 13744:1 13751:1 13757:1 13805:1 13825:1 13875:1 13882:1 13894:1 13906:1 13911:1 13945:1 13969:2 13973:1 13989:1 13991:2 13996:3 14036:2 14045:1 14106:1 14154:1 14193:1 14202:1 14211:1 14222:1 14240:1 14259:1 14267:1 14303:1 14306:1 14320:2 14339:1 14403:1 14418:1 14419:1 14422:1 14430:1 14439:1 14445:2 14451:3 14487:3 14492:1 14506:1 14508:1 14564:2 14577:1 14583:1 14586:1 14604:1 14613:1 14618:1 14622:1 14628:1 14634:1 14635:1 14638:1 14643:1 14667:1 14672:1 14705:1 14724:1 14728:1 14769:1 14797:1 14809:1 14818:1 14824:1 14841:2 14843:1 14851:2 14881:1 14901:1 14907:1 14908:1 14918:1 14924:9 14945:1 14952:2 14967:1 14973:2 14978:1 15002:1 15012:7 15018:1 15039:2 15073:1 15083:1 15095:1 15144:1 15145:1 15166:1 15170:2 15173:1 15177:1 15187:2 15188:1 15193:1 15195:1 15196:1 15207:1 15263:1 15301:1 15309:1 15314:1 15345:1 15352:1 15372:1 15399:2 15402:1 15419:1 15442:1 15483:3 15495:2 15513:1 15520:2 15538:1 15539:1 15560:1 15567:2 15568:1 15578:1 15582:2 15584:1 15629:1 15639:1 15655:2 15723:1 15762:1 15775:2 15778:1 15798:1 15839:2 15842:1 15863:1 15896:1 15907:1 15915:1 15962:1 16028:2 16055:1 16070:1 16108:1 16117:2 16119:1 16129:2 16139:1 16157:1 16162:1 16238:1 16319:1 16324:1 16329:1 16331:1 16337:1 16347:1 16351:1 16399:2 16434:2 16435:3 16457:1 16462:1 16477:1 16489:2 16505:1 16518:2 16519:1 16531:1 16570:1 16583:1 16592:2 16612:1 16625:3 16674:2 16729:2 16733:2 16743:2 16756:1 16762:1 16777:2 16781:1 16782:1 16807:1 16808:1 16824:1 16832:1 16837:1 16865:1 16915:1 16925:1 16932:2 16934:1 16985:1 17009:1 17016:1 17097:1 17098:2 17110:5 17127:1 17132:1 17183:1 17205:1 17235:1 17262:1 17265:1 17266:2 17276:1 17317:1 17326:2 17335:1 17376:1 17410:1 17415:1348 17433:1 17473:1 17476:1 17505:2 17594:1 17600:1 17601:1 17613:1 17639:1 17644:1 17646:1 17706:2 17814:1 17824:1 17831:1 17845:1 17869:1 17871:1 17892:1 17900:1 17911:1 17917:1 17928:1 17931:1 17936:1 17946:1 17978:1 17980:1 17989:1 18074:1 18085:1 18100:1 18109:1 18121:1 18142:1 18167:1 18172:2 18175:1 18187:1 18232:5 18275:3 18277:1 18303:1 18306:1 18314:1 18319:1 18320:1 18324:1 18335:1 18355:1 18359:3 18360:1 18364:1 18365:1 18378:1 18392:1 18404:1 18410:1 18411:1 18412:1 18417:1 18432:1 18444:1 18457:1 18543:2 18545:2 18596:1 18603:1 18608:1 18619:1 18626:1 18637:1 18663:1 18687:1 18703:1 18723:1 18724:1 18753:1 18754:1 18755:2 18770:1 18786:1 18801:1 18802:1 18805:1 18838:1 18845:1 18861:1 18875:2 18876:1 18878:1 18884:1 18886:1 18890:1 18893:1 18901:1 18908:1 18912:1 18932:1 18936:3 18944:1 18947:1 18966:1 19004:1 19011:1 19013:1 19014:1 19015:1 19033:3 19050:1 19064:1 19109:1 19137:2 19143:1 19148:1 19176:1 19177:1 19205:3 19213:1 19223:1 19225:1 19229:1 19233:1 19252:1 19268:1 19330:1 19358:1 19370:1 19385:1 19395:1 19407:1 19441:1 19455:1 19492:1 19500:2 19502:1 19520:1 19522:1 19541:1 19556:6 19559:1 19563:1 19568:2 19574:1 19577:1 19582:1 19585:1 19593:1 19607:1 19609:1 19689:1 19701:1 19731:2 19733:1 19747:1 19751:1 19753:1 19769:1 19785:2 19797:1 19810:1 19813:1 19819:3 19831:1 19852:1 19857:1 19877:1 19889:2 19894:1 19905:2 19910:1 19918:1 19923:1 19942:1 19950:1 19956:1 19965:1 20016:2 20025:2 20039:1 20041:3 20069:2 20070:1 20085:1 20089:2 20143:1 20152:1 20171:1 20178:1 20193:1 20233:1 20260:1 20270:1 20274:1 20325:2 20327:1 20332:1 20334:1 20395:2 20398:1 20399:1 20401:1 20411:2 20421:1 20429:1 20447:2 20469:1 20490:2 20525:1 20526:2 20528:1 20546:1 20548:1 20551:2 20554:1 20556:2 20559:3 20563:1 20571:1 20574:1 20590:1 20592:1 20596:1 20608:1 20630:1 20680:1 20682:1 20683:1 20685:1 20730:1 20731:2 20752:3 20755:2 20803:2 20811:1 20828:2 20832:1 20893:1 20906:1 20927:1 20939:2 20960:6 20967:1 20973:1 21002:1 21022:1 21028:1 21029:1 21057:1 21072:1 21087:2 21100:1 21103:1 21167:1 21179:1 21186:1 21199:1 21262:1 21284:1 21287:1 21312:1 21341:1 21342:1 21346:1 21354:2 21363:1 21365:1 21375:1 21376:1 21382:1 21397:1 21414:1 21420:1 21442:1 21472:1 21480:1 21483:2 21496:1 21513:2 21534:1 21536:1 21547:1 21549:1 21550:1 21608:1 21609:1 21614:1 21633:3 21640:1 21645:1 21657:2 21683:1 21703:2 21709:1 21728:1 21735:1 21737:1 21753:1 21784:1 21789:1 21816:3 21817:1 21837:1 21838:1 21844:2 21857:1 21869:1 21885:1 21891:1 21928:1 21930:1 21951:1 21965:1 21966:1 21971:1 21979:1 21985:1 22008:2 22015:1 22026:1 22043:1 22054:3 22067:1 22080:1 22085:1 22105:1 22125:3 22156:1 22164:1 22171:1 22215:1 22268:1 22288:1 22298:1 22304:1 22336:1 22362:1 22381:2 22384:1 22386:1 22389:1 22400:1 22449:1 22450:1 22466:1 22491:1 22493:1 22542:1 22545:2 22575:1 22598:1 22604:1 22657:1 22666:3 22686:2 22687:1 22722:1 22724:1 22742:1 22765:1 22779:1 22784:1 22791:1 22798:1 22810:1 22814:1 22843:1 22859:1 22891:2 22904:1 22905:1 22941:1 22946:1 22962:2 22965:1 22991:2 22996:1 23010:1 23013:1 23015:2 23025:1 23038:1 23073:2 23096:2 23100:1 23136:1 23142:1 23144:1 23147:1 23149:2 23153:1 23158:1 23171:1 23189:1 23234:1 23252:1 23263:1 23277:2 23285:1 23290:1 23307:1 23308:3 23335:1 23360:1 23369:1 23403:2 23422:1 23493:3 23496:2 23559:1 23563:1 23594:1 23634:1 23646:1 23660:1 23669:1 23681:2 23683:1 23689:1 23692:4 23699:1 23717:1 23718:1 23719:1 23720:1 23721:1 23723:1 23766:2 23777:2 23779:1 23791:1 23801:1 23848:3 23862:1 23865:1 23871:1 23874:1 23875:1 23882:1 23907:2 23911:1 23919:1 23946:1 23953:1 23955:1 23966:1 23970:1 23973:1 23985:1 23994:1 23996:1 23998:1 24017:1 24022:1 24054:1 24066:1 24092:2 24093:1 24094:1 24122:1 24153:1 24160:1 24166:1 24271:1 24288:1 24290:1 24310:1 24331:1 24334:2 24340:3 24434:1 24439:1 24459:1 24470:2 24473:1 24497:1 24507:1 24551:1 24562:1 24570:1 24571:1 24586:1 24602:1 24603:1 24612:1 24704:1 24723:1 24733:1 24740:1 24807:1 24809:1 24871:1 24893:1 24896:1 24904:1 24936:1 24940:1 24956:1 24969:4 24972:1 25029:1 25033:1 25060:1 25069:1 25097:1 25112:1 25114:1 25115:2 25159:1 25221:1 25234:1 25240:2 25242:2 25247:1 25249:1 25262:1 25265:1 25267:1 25279:1 25288:1 25306:1 25309:1 25323:1 25329:1 25333:4 25337:1 25363:1 25372:1 25381:1 25386:1 25387:1 25392:1 25445:1 25474:1 25496:2 25505:1 25507:1 25508:1 25513:1 25517:2 25518:1 25519:1 25523:1 25525:1 25550:1 25561:1 25567:2 25568:3 25570:1 25572:1 25584:1 25614:1 25630:1 25650:1 25651:1 25672:3 25715:1 25738:2 25761:1 25779:1 25782:1 25792:1 25793:1 25796:1 25802:2 25806:1 25820:2 25824:1 25826:1 25827:2 25837:1 25839:1 25861:1 25870:1 25871:2 25872:1 25900:3 25925:1 25927:2 25928:1 25930:1 25957:1 25959:1 25994:1 25997:1 26007:1 26019:1 26032:1 26072:1 26099:1 26100:1 26107:1 26204:1 26211:1 26268:1 26283:1 26289:1 26335:1 26346:1 26349:1 26368:1 26413:1 26439:1 26446:1 26448:1 26484:1 26485:1 26508:13 26513:1 26530:1 26539:1 26547:2 26564:1 26567:1 26576:1 26610:3 26619:1 26622:1 26645:1 26655:3 26662:1 26692:5 26733:1 26764:2 26787:1 26800:1 26807:1 26813:1 26834:2 26852:2 26864:2 26867:1 26882:1 26886:1 26904:1 26921:1 26944:1 26946:2 26952:1 26953:1 26965:1 26966:2 26975:1 26977:1 26982:1 27016:2 27019:2 27020:4 27063:1 27073:1 27074:1 27078:2 27096:2 27150:2 27154:1 27179:1 27202:1 27227:1 27236:1 27241:1 27247:1 27248:1 27309:1 27333:1 27379:1 27390:1 27394:1 27396:1 27402:2 27433:1 27434:1 27440:1 27447:1 27477:1 27491:1 27492:1 27521:1 27530:1 27534:1 27553:1 27564:1 27569:1 27598:1 27619:1 27635:1 27637:1 27638:1 27643:1 27669:1 27672:1 27683:2 27689:1 27706:1 27715:2 27716:3 27723:2 27730:1 27734:1 27739:2 27765:1 27775:4 27778:1 27784:2 27792:1 27797:1 27820:1
8 1:1 8:1 21:1 40:1 43:1 46:1 47:2 83:2 88:1 102:1 121:1 125:1 132:1 148:1 160:1 162:1 181:1 190:1 194:4 214:1 234:1 240:3 279:1 303:1 327:3 328:1 329:1 354:1 369:2 432:1 441:1 451:1 486:1 494:1 575:1 587:1 594:1 605:4 627:3 659:1 667:3 683:1 771:1 784:1 843:3 856:1 869:1 876:3 891:1 925:1 930:3 934:2 969:1 970:1 973:3 1045:1 1050:1 1052:1 1074:1 1086:1 1105:1 1129:1 1147:1 1172:1 1176:1 1182:1 1187:1 1191:1 1201:1 1202:1 1205:1 1210:1 1221:1 1222:1 1238:1 1241:1 1243:1 1244:1 1251:1 1253:1 1255:1 1265:1 1270:1 1296:1 1311:1 1324:1 1332:1 1362:1 1371:1 1374:1 1389:1 1393:3 1395:5 1399:1 1411:2 1424:3 1432:3 1446:1 1468:1 1475:3 1496:1 1509:3 1523:2 1553:1 1565:2 1576:1 1578:1 1588:1 1607:1 1612:1 1626:1 1640:1 1644:1 1663:1 1669:1 1670:2 1681:1 1682:1 1688:1 1692:1 1696:1 1717:1 1720:1 1732:1 1738:1 1740:1 1744:1 1762:1 1769:1 1774:1 1776:2 1787:4 1791:1 1797:1 1801:2 1815:1 1818:2 1824:1 1833:1 1835:1 1844:2 1856:1 1858:1 1859:1 1871:1 1883:1 1887:1 1926:1 1928:1 1956:1 1958:1 1962:2 1997:1 2006:1 2012:1 2057:4 2145:1 2176:1 2177:2 2179:1 2181:1 2185:3 2188:1 2193:1 2196:2 2201:6 2203:2 2208:1 2209:1 2211:2 2214:1 2216:1 2248:1 2252:1 2260:2 2274:1 2285:1 2295:1 2378:1 2380:1 2418:1 2430:1 2437:1 2510:1 2547:1 2557:1 2563:1 2565:1 2569:1 2583:1 2597:1 2598:1 2599:1 2602:3 2646:1 2649:1 2650:1 2662:1 2676:1 2687:1 2703:1 2705:1 2713:1 2731:1 2755:1 2760:1 2766:2 2774:6 2801:2 2803:2 2811:1 2818:1 2831:3 2840:1 2854:1 2869:1 2880:1 2883:1 2885:1 2886:1 2897:1 2908:1 2983:1 2996:1 3002:1 3010:1 3062:2 3072:1 3090:1 3092:1 3122:1 3127:1 3131:2 3134:3 3137:4 3138:1 3148:1 3158:4 3164:1 3174:1 3195:1 3216:1 3227:1 3233:1 3313:2 3324:1 3325:1 3339:1 3362:1 3406:1 3423:1 3434:1 3442:1 3481:1 3491:1 3496:1 3506:1 3518:2 3530:1 3537:1 3538:1 3574:1 3585:1 3614:1 3621:2 3625:2 3630:1 3646:1 3647:1 3650:1 3680:1 3682:1 3688:1 3692:1 3709:2 3715:1 3724:1 3728:2 3732:1 3738:1 3757:2 3758:1 3764:1 3807:1 3810:1 3815:1 3818:1 3826:1 3836:1 3857:2 3858:3 3916:2 3923:1 3928:1 3934:1 3940:1 3970:1 3983:1 3998:1 4002:1 4011:2 4020:2 4030:2 4031:1 4035:4 4042:1 4052:1 4068:1 4109:1 4115:1 4126:1 4129:4 4131:1 4152:2 4169:1 4174:1 4196:1 4224:1 4230:2 4235:1 4249:1 4250:1 4251:1 4281:2 4290:1 4315:1 4351:1 4384:1 4400:1 4426:2 4433:1 4459:1 4462:2 4471:1 4474:1 4497:3 4498:1 4500:1 4533:1 4536:1 4546:1 4567:1 4648:13 4669:1 4670:1 4673:1 4677:1 4713:1 4767:3 4787:4 4789:4 4792:1 4796:1 4797:1 4800:2 4802:2 4810:1 4813:1 4814:4 4871:2 4903:1 4944:1 4947:1 4994:1 4997:1 5002:1 5005:1 5010:1 5013:1 5047:1 5074:1 5092:1 5102:1 5104:2 5123:1 5126:2 5136:1 5170:1 5182:1 5201:1 5212:1 5222:2 5224:1 5248:1 5253:1 5269:1 5275:1 5286:1 5296:1 5301:1 5309:2 5313:1 5315:2 5319:1 5320:1 5322:1 5413:1 5422:1 5423:1 5436:1 5437:1 5446:1 5486:1 5585:1 5587:2 5593:1 5643:3 5708:2 5710:2 5739:4 5755:2 5760:1 5773:1 5804:1 5808:1 5828:1 5832:1 5862:1 5867:1 5896:1 5910:1 5913:3 5942:5 5945:1 5950:1 5961:1 5993:3 6027:1 6034:3 6037:1 6041:1 6044:1 6045:3 6047:1 6048:2 6052:1 6053:1 6058:3 6060:3 6074:1 6089:1 6100:1 6101:1 6121:1 6140:1 6147:2 6174:1 6187:1 6191:1 6206:1 6216:1 6221:1 6256:1 6259:1 6288:1 6295:1 6327:1 6330:1 6338:1 6353:1 6373:1 6416:1 6418:1 6431:1 6433:1 6437:1 6457:2 6462:1 6475:1 6486:1 6489:4 6493:4 6497:1 6507:1 6508:1 6512:2 6519:5 6521:2 6522:1 6579:1 6592:1 6596:1 6597:1 6612:1 6620:1 6625:2 6645:1 6683:1 6703:1 6707:1 6716:1 6721:1 6737:1 6748:1 6768:1 6771:1 6779:1 6792:1 6816:3 6818:1 6838:1 6839:1 6852:1 6860:1 6890:1 6903:2 6914:2 6934:1 6941:2 6948:1 6954:1 6960:3 6994:1 6999:1 7011:1 7048:3 7073:3 7077:1 7088:1 7137:1 7144:1 7187:1 7249:5 7250:2 7273:1 7274:3 7307:1 7323:21 7344:6 7345:5 7369:1 7370:1 7381:1 7409:1 7414:1 7434:3 7488:2 7513:2 7525:1 7539:4 7550:1 7563:1 7566:1 7571:1 7590:1 7600:1 7603:1 7646:1 7650:2 7675:1 7677:1 7684:1 7696:1 7698:1 7701:1 7715:3 7789:1 7791:6 7812:1 7815:1 7817:1 7826:1 7843:1 7879:2 7884:1 7891:1 7922:1 7929:1 7936:1 7949:1 7957:2 7958:1 7964:1 7990:1 7994:1 8026:1 8031:1 8034:1 8035:1 8054:1 8116:1 8117:1 8122:1 8123:1 8124:1 8125:3 8126:1 8128:2 8135:2 8155:1 8161:1 8166:1 8169:1 8180:1 8182:1 8191:1 8229:3 8268:1 8280:2 8282:2 8293:1 8322:1 8326:1 8328:1 8340:1 8362:1 8397:1 8406:1 8413:1 8423:1 8439:1 8441:1 8467:1 8484:1 8485:2 8493:1 8503:1 8505:1 8515:1 8531:1 8539:1 8556:3 8558:2 8575:1 8620:1 8621:1 8670:2 8694:1 8697:1 8705:1 8716:1 8719:3 8747:1 8748:2 8752:2 8801:1 8803:1 8813:1 8816:1 8817:1 8853:1 8878:1 8898:1 8907:1 8926:1 8930:2 8942:1 8944:2 8954:1 8962:1 8971:1 8979:1 8991:1 8997:1 9000:1 9007:1 9010:1 9016:1 9030:1 9048:1 9062:1 9063:2 9068:1 9073:1 9118:1 9179:2 9180:1 9215:1 9236:2 9249:2 9257:1 9267:1 9317:1 9325:1 9385:1 9405:2 9418:1 9420:1 9442:1 9451:1 9460:1 9473:1 9484:2 9486:1 9495:1 9507:1 9544:1 9569:1 9571:1 9594:1 9597:1 9605:1 9683:1 9687:1 9696:1 9697:1 9701:1 9707:1 9712:1 9757:1 9770:1 9773:1 9778:1 9783:1 9788:1 9793:1 9799:3 9803:1 9823:3 9844:1 9870:1 9877:5 9882:2 9883:1 9917:4 9925:1 9935:1 9947:1 9955:2 9974:1 9996:1 10013:1 10046:2 10066:1 10070:2 10075:1 10076:1 10121:1 10126:1 10136:2 10153:2 10167:2 10183:1 10187:1 10199:1 10259:1 10276:1 10281:1 10287:3 10289:2 10296:2 10299:2 10300:3 10304:2 10308:2 10312:1 10322:1 10345:1 10346:1 10371:2 10398:1 10404:1 10406:1 10410:1 10417:1 10427:2 10429:1 10477:1 10498:1 10526:1 10564:1 10574:1 10580:1 10585:1 10595:1 10637:1 10646:1 10652:2 10653:1 10654:1 10664:1 10684:2 10717:2 10724:1 10750:1 10754:2 10778:1 10784:1 10786:1 10799:2 10804:1 10821:2 10832:1 10833:1 10834:1 10850:1 10855:1 10872:1 10907:1 10933:1 10940:2 10965:2 10973:2 10977:1 10989:1 10994:4 10995:1 11001:2 11046:1 11067:1 11071:1 11081:1 11093:1 11109:1 11116:1 11149:1 11154:1 11176:1 11222:1 11229:1 11245:1 11247:1 11252:1 11291:1 11304:1 11313:1 11354:1 11355:2 11375:1 11387:1 11388:1 11389:1 11393:1 11394:1 11410:2 11414:1 11416:1 11421:1 11422:1 11437:1 11447:1 11477:1 11499:2 11501:2 11515:1 11532:1 11536:1 11552:1 11611:1 11619:1 11639:1 11661:2 11662:1 11671:1 11688:2 11699:1 11704:1 11735:1 11756:1 11778:1 11860:1 11876:2 11888:1 11889:1 11903:1 11933:1 11945:1 11960:1 12007:1 12009:1 12013:1 12018:1 12021:1 12023:1 12039:1 12152:1 12156:1 12157:1 12167:2 12169:1 12214:2 12234:1 12235:2 12236:1 12242:1 12243:1 12250:1 12261:1 12262:2 12265:1 12271:5 12276:1 12300:2 12313:2 12369:1 12385:1 12402:2 12404:5 12409:2 12468:1 12472:11 12502:1 12522:1 12526:1 12539:1 12557:1 12591:1 12640:1 12641:2 12661:1 12687:1 12701:1 12710:2 12733:1 12737:2 12743:2 12766:1 12768:1 12775:3 12778:1 12885:1 12893:1 12894:2 12896:1 12910:1 12919:1 12932:2 12945:1 12951:1 12970:1 12974:1 12982:2 12995:1 13001:1 13018:1 13033:1 13040:1 13053:1 13067:1 13068:1 13080:1 13086:1 13097:1 13120:2 13126:1 13155:1 13170:1 13186:1 13187:1 13211:1 13247:1 13263:1 13270:1 13276:1 13295:3 13310:1 13316:1 13332:1 13366:1 13367:1 13371:1 13388:1 13441:1 13459:1 13464:1 13476:1 13498:1 13506:2 13557:1 13563:1 13586:1 13597:1 13599:1 13618:1 13628:2 13676:1 13692:1 13701:1 13704:1 13708:1 13723:1 13744:1 13751:1 13757:1 13805:1 13825:1 13875:1 13882:1 13894:1 13906:1 13911:1 13945:1 13969:2 13973:1 13989:1 13991:2 13996:3 14036:2 14045:1 14106:1 14154:1 14193:1 14202:1 14211:1 14222:1 14240:1 14259:1 14267:1 14303:1 14306:1 14320:2 14339:1 14403:1 14418:1 14419:1 14422:1 14430:1 14439:1 14445:2 14451:3 14487:3 14492:1 14506:1 14508:1 14564:2 14577:1 14583:1 14586:1 14604:1 14613:1 14618:1 14622:1 14628:1 14634:1 14635:1 14638:1 14643:1 14655:1 14667:1 14672:1 14705:1 14724:1 14728:1 14769:1 14797:1 14809:1 14818:1 14824:1 14841:2 14843:1 14851:2 14881:1 14901:1 14907:1 14908:1 14918:1 14924:9 14945:1 14952:2 14967:1 14973:2 14978:1 15002:1 15012:7 15018:1 15039:2 15073:1 15083:1 15095:1 15144:1 15145:1 15166:1 15170:2 15173:1 15177:1 15187:2 15188:1 15193:1 15195:1 15196:1 15207:1 15263:1 15301:1 15309:1 15314:1 15345:1 15352:1 15372:1 15399:2 15402:1 15419:1 15442:1 15483:3 15495:2 15513:1 15520:2 15538:1 15539:1 15560:1 15567:2 15568:1 15578:1 15582:2 15584:1 15629:1 15639:1 15655:2 15723:1 15762:1 15775:2 15778:1 15798:1 15839:2 15842:1 15863:1 15896:1 15907:1 15915:1 15962:1 16028:2 16055:1 16070:1 16108:1 16117:3 16119:1 16129:2 16139:1 16157:1 16162:1 16238:1 16319:1 16324:1 16329:1 16331:1 16337:1 16347:1 16351:1 16399:2 16434:2 16435:3 16457:1 16462:1 16477:1 16489:3 16505:1 16518:2 16519:1 16531:1 16570:1 16583:1 16592:2 16612:1 16625:3 16674:3 16729:2 16733:2 16743:2 16756:1 16762:1 16777:3 16781:1 16782:1 16807:1 16808:1 16824:1 16832:1 16837:1 16865:1 16915:1 16916:1 16925:1 16932:2 16934:1 16985:1 17009:1 17016:1 17097:1 17098:2 17110:5 17127:1 17132:1 17183:1 17205:1 17235:1 17262:1 17265:1 17266:2 17276:1 17317:1 17326:2 17335:1 17376:1 17410:1 17415:1385 17425:1 17433:1 17473:1 17476:1 17505:2 17594:1 17600:1 17601:1 17613:1 17639:1 17644:1 17646:1 17650:1 17706:2 17814:1 17824:1 17831:1 17845:1 17869:1 17871:1 17892:1 17900:1 17911:1 17917:1 17928:1 17931:1 17936:1 17946:1 17978:1 17980:1 17989:1 18074:1 18085:1 18100:1 18109:1 18121:1 18142:1 18167:1 18172:2 18175:1 18187:1 18232:5 18275:3 18277:1 18303:1 18306:1 18314:1 18319:1 18320:1 18324:1 18335:1 18355:1 18359:3 18360:1 18364:1 18365:1 18378:1 18392:1 18404:1 18410:1 18411:1 18412:1 18417:1 18432:1 18444:1 18457:1 18543:2 18545:2 18596:1 18603:1 18608:1 18619:1 18626:1 18637:1 18663:1 18687:1 18703:1 18723:1 18724:1 18753:1 18754:1 18755:2 18770:1 18786:1 18801:1 18802:1 18805:1 18808:1 18838:1 18845:1 18861:1 18875:2 18876:1 18878:1 18884:1 18886:1 18890:1 18893:1 18901:1 18908:1 18912:1 18932:1 18936:4 18944:1 18947:1 18966:1 19004:1 19011:1 19013:1 19014:1 19015:1 19033:3 19050:1 19064:1 19109:1 19137:2 19143:1 19148:1 19176:1 19177:1 19205:3 19213:1 19223:1 19225:1 19229:1 19233:1 19252:1 19268:1 19330:1 19358:1 19370:1 19385:1 19395:1 19407:1 19441:1 19455:1 19492:1 19500:2 19502:1 19520:1 19522:1 19541:1 19554:1 19556:6 19559:1 19563:1 19568:2 19574:1 19577:1 19582:1 19585:1 19593:1 19607:1 19609:1 19689:1 19701:1 19727:1 19731:2 19733:1 19747:1 19751:1 19753:1 19769:1 19785:2 19797:1 19810:1 19813:1 19819:3 19831:1 19852:1 19857:1 19877:1 19889:2 19894:1 19905:2 19910:1 19918:1 19923:1 19933:1 19942:1 19950:1 19956:1 19965:1 19990:1 20016:2 20025:2 20039:1 20041:3 20069:2 20070:1 20085:1 20089:2 20143:1 20152:1 20169:1 20171:1 20178:1 20193:1 20233:1 20260:1 20270:1 20274:1 20325:2 20327:1 20332:1 20334:1 20395:2 20398:1 20399:1 20401:1 20411:2 20421:1 20429:2 20447:2 20469:1 20490:2 20525:1 20526:2 20528:1 20546:1 20548:1 20551:2 20554:1 20556:2 20559:3 20563:1 20571:1 20574:1 20590:1 20592:1 20596:1 20608:1 20630:1 20680:1 20682:1 20683:1 20685:1 20730:1 20731:2 20752:3 20755:2 20803:2 20811:1 20828:2 20832:1 20893:2 20906:1 20927:1 20939:2 20960:6 20967:1 20973:1 21002:1 21022:1 21028:1 21029:1 21057:1 21072:1 21087:2 21100:1 21103:1 21167:1 21179:1 21186:1 21199:1 21262:1 21284:1 21287:1 21312:1 21341:1 21342:1 21346:1 21354:2 21363:1 21365:1 21375:1 21376:1 21382:1 21397:1 21414:1 21420:1 21442:1 21472:1 21480:2 21483:2 21496:1 21513:2 21534:1 21536:1 21547:1 21549:1 21550:1 21608:1 21609:1 21614:1 21633:3 21640:1 21645:1 21657:2 21683:1 21703:2 21709:1 21728:1 21735:1 21737:1 21753:1 21784:1 21789:1 21816:3 21817:1 21837:1 21838:1 21844:2 21857:1 21869:1 21885:1 21891:1 21928:1 21930:1 21933:1 21951:1 21965:1 21966:1 21971:1 21979:1 21985:1 22008:2 22015:1 22026:1 22043:1 22054:3 22067:1 22080:1 22085:1 22105:1 22125:3 22156:1 22164:1 22171:1 22215:1 22268:1 22288:1 22298:1 22304:1 22336:1 22362:1 22381:2 22384:1 22386:1 22389:1 22398:1 22400:1 22449:1 22450:1 22466:1 22491:1 22493:1 22542:1 22545:2 22575:1 22598:1 22604:1 22657:1 22666:3 22686:2 22687:1 22722:1 22724:1 22742:1 22765:1 22779:1 22784:1 22791:1 22798:1 22810:1 22814:1 22843:1 22859:1 22891:2 22904:1 22905:1 22941:1 22946:1 22962:2 22965:1 22991:2 22996:1 23010:1 23013:1 23015:2 23025:1 23038:1 23073:2 23096:2 23100:1 23136:1 23142:1 23144:1 23147:1 23149:2 23153:1 23158:1 23171:1 23189:1 23234:1 23252:1 23263:1 23277:2 23285:1 23290:1 23291:1 23307:1 23308:3 23335:1 23360:1 23369:1 23403:2 23422:1 23493:3 23496:2 23559:1 23563:1 23594:1 23609:1 23634:1 23646:1 23660:1 23669:1 23681:2 23683:1 23689:1 23692:4 23699:1 23717:1 23718:1 23719:1 23720:1 23721:1 23723:1 23766:2 23777:2 23779:1 23791:1 23801:1 23848:3 23862:1 23865:1 23871:1 23874:1 23875:1 23882:1 23907:2 23911:1 23913:1 23919:1 23946:1 23953:1 23955:1 23966:1 23970:1 23973:1 23985:1 23994:1 23996:1 23998:1 24017:1 24022:1 24054:1 24066:1 24092:2 24093:1 24094:1 24122:1 24153:2 24160:1 24166:1 24271:1 24288:1 24290:1 24310:1 24331:1 24334:2 24340:3 24434:1 24439:1 24459:1 24470:2 24473:1 24497:1 24507:1 24551:1 24562:1 24570:1 24571:1 24586:1 24602:1 24603:1 24612:1 24704:1 24723:1 24733:1 24740:1 24807:1 24809:1 24871:1 24893:1 24896:1 24904:1 24936:1 24940:1 24956:1 24969:4 24972:1 25029:1 25033:1 25060:1 25069:1 25097:1 25112:1 25114:2 25115:2 25159:1 25181:1 25221:1 25234:1 25240:2 25242:2 25247:1 25249:1 25262:1 25265:1 25267:1 25279:1 25288:1 25306:1 25309:1 25323:1 25329:1 25333:4 25337:1 25363:1 25372:1 25381:1 25386:1 25387:1 25392:1 25445:1 25460:1 25474:1 25496:2 25505:1 25507:1 25508:1 25513:1 25517:2 25518:1 25519:1 25523:1 25525:1 25550:1 25561:1 25567:2 25568:3 25570:1 25572:1 25584:1 25614:1 25630:1 25650:1 25651:1 25672:3 25715:1 25738:2 25761:1 25779:1 25782:1 25792:1 25793:1 25796:1 25802:2 25806:1 25820:2 25824:1 25826:1 25827:2 25837:1 25839:1 25861:1 25870:1 25871:2 25872:1 25900:3 25925:1 25927:2 25928:1 25930:1 25957:1 25959:1 25988:1 25994:1 25997:1 26007:1 26019:1 26032:1 26072:1 26099:1 26100:1 26107:1 26123:1 26204:1 26211:1 26268:1 26283:1 26289:2 26317:1 26335:1 26346:1 26349:1 26368:1 26413:1 26439:1 26446:1 26448:1 26484:1 26485:1 26508:13 26513:1 26530:1 26539:1 26547:2 26564:1 26567:1 26576:1 26610:3 26619:1 26622:1 26645:1 26655:3 26662:1 26692:6 26733:1 26764:2 26787:1 26800:1 26807:1 26813:1 26834:2 26852:2 26864:2 26867:1 26882:2 26886:1 26904:1 26921:1 26944:1 26946:2 26952:1 26953:1 26965:1 26966:2 26975:1 26977:1 26982:1 27016:2 27019:2 27020:4 27063:1 27073:1 27074:1 27078:2 27096:3 27150:2 27154:1 27179:1 27202:1 27227:1 27236:1 27241:1 27247:1 27248:1 27309:1 27333:1 27379:1 27390:1 27394:1 27396:1 27402:2 27433:1 27434:1 27440:1 27447:1 27477:1 27491:1 27492:1 27521:1 27530:1 27534:1 27553:2 27564:1 27569:1 27598:1 27619:1 27635:1 27637:1 27638:1 27643:2 27652:1 27669:1 27672:1 27683:2 27689:1 27706:1 27715:3 27716:3 27723:2 27730:1 27734:1 27739:2 27765:1 27775:4 27778:1 27784:2 27792:1 27797:1 27820:1
8 1:1 8:1 21:1 40:1 43:1 46:1 47:2 83:2 88:1 102:1 121:1 125:1 132:1 148:1 160:1 162:1 181:1 190:1 194:4 214:1 234:1 240:3 279:1 303:1 327:3 328:1 329:1 354:1 369:2 416:2 432:1 441:1 451:1 486:1 494:1 575:1 587:1 594:1 605:4 627:3 656:1 659:1 667:3 683:1 771:1 784:1 843:4 856:1 869:1 876:4 891:1 925:1 930:3 934:2 969:1 970:1 973:3 1045:1 1050:1 1052:1 1074:1 1086:1 1105:1 1129:1 1147:1 1172:2 1176:1 1182:1 1187:1 1191:1 1201:1 1202:1 1205:1 1210:1 1221:1 1222:1 1233:1 1238:1 1241:1 1243:1 1244:1 1250:1 1251:1 1253:1 1255:1 1265:1 1270:1 1278:1 1296:1 1311:1 1324:1 1332:1 1348:1 1362:1 1371:1 1374:1 1389:1 1393:3 1395:5 1399:1 1411:2 1424:3 1432:3 1446:1 1468:1 1475:3 1496:1 1509:3 1523:2 1553:1 1565:2 1576:1 1578:1 1588:1 1607:1 1612:1 1626:1 1640:1 1644:1 1663:2 1669:1 1670:2 1681:1 1682:1 1688:1 1692:1 1696:1 1717:1 1720:1 1732:1 1738:1 1740:1 1744:1 1762:1 1769:1 1774:1 1776:2 1787:4 1791:1 1797:1 1801:2 1815:1 1818:2 1824:1 1833:1 1835:1 1844:2 1849:1 1856:1 1858:1 1859:1 1871:1 1883:1 1887:1 1926:1 1928:1 1956:1 1958:1 1962:2 1997:1 2006:1 2012:1 2057:4 2145:1 2175:1 2176:1 2177:2 2179:1 2181:1 2185:3 2188:1 2193:1 2196:2 2201:7 2203:2 2208:1 2209:1 2211:2 2214:1 2216:1 2248:1 2252:1 2260:2 2274:1 2285:1 2288:1 2295:1 2378:1 2380:1 2418:1 2430:1 2437:1 2510:1 2547:1 2557:1 2563:1 2565:1 2569:1 2583:1 2597:1 2598:1 2599:1 2602:3 2646:2 2649:1 2650:1 2662:1 2676:2 2687:1 2703:1 2705:1 2713:2 2731:1 2732:1 2755:1 2760:1 2766:2 2774:6 2801:2 2803:2 2811:1 2818:1 2831:3 2840:1 2854:1 2869:1 2880:1 2883:1 2885:1 2886:1 2897:1 2908:2 2983:1 2996:1 3002:1 3010:1 3062:2 3072:1 3090:1 3092:1 3122:1 3127:1 3131:3 3134:3 3137:4 3138:1 3148:1 3158:4 3164:1 3174:1 3195:1 3216:1 3227:1 3233:1 3313:2 3324:1 3325:1 3339:1 3362:1 3406:1 3423:1 3434:1 3442:1 3481:1 3491:1 3496:1 3506:1 3518:2 3530:1 3537:1 3538:1 3574:1 3585:1 3614:1 3621:2 3625:2 3630:1 3646:1 3647:1 3650:1 3680:1 3682:1 3688:1 3692:1 3709:2 3715:1 3724:2 3728:2 3732:1 3738:1 3757:2 3758:1 3764:1 3803:1 3807:1 3810:1 3815:1 3818:1 3826:1 3836:1 3857:2 3858:4 3916:2 3923:1 3928:1 3929:1 3934:1 3940:1 3970:1 3983:1 3998:1 4002:1 4011:2 4020:2 4030:2 4031:1 4035:4 4042:1 4052:1 4068:1 4109:1 4115:1 4126:1 4129:4 4131:1 4152:2 4169:1 4174:1 4196:1 4224:1 4230:2 4235:1 4249:1 4250:1 4251:1 4281:2 4290:1 4315:1 4351:1 4384:1 4400:1 4426:2 4433:1 4459:1 4462:2 4471:1 4474:1 4497:3 4498:1 4500:1 4533:1 4536:1 4546:1 4567:1 4645:1 4648:13 4669:1 4670:1 4673:1 4677:1 4713:1 4767:3 4787:5 4789:5 4792:1 4796:1 4797:1 4800:2 4802:2 4810:1 4813:1 4814:6 4871:2 4903:1 4944:1 4947:1 4972:1 4994:1 4997:1 5002:1 5005:1 5010:1 5013:1 5047:1 5074:1 5084:1 5092:1 5102:1 5104:2 5123:1 5126:2 5136:1 5170:1 5182:1 5201:1 5212:1 5222:2 5224:1 5248:1 5253:1 5269:1 5275:1 5286:1 5296:1 5301:1 5309:2 5313:1 5315:2 5319:1 5320:1 5322:1 5413:1 5422:1 5423:1 5436:1 5437:1 5446:1 5486:1 5585:1 5587:2 5593:1 5643:3 5708:3 5710:2 5739:4 5755:2 5760:1 5773:1 5804:1 5808:1 5828:1 5832:1 5862:1 5867:1 5896:1 5910:1 5913:3 5942:5 5945:1 5950:1 5961:1 5993:3 6027:1 6034:3 6037:1 6041:1 6044:1 6045:3 6047:1 6048:2 6052:1 6053:1 6058:3 6060:4 6063:1 6074:1 6089:1 6100:1 6101:1 6121:1 6140:1 6147:2 6174:1 6187:1 6191:2 6206:1 6216:1 6221:1 6256:1 6259:1 6288:1 6295:1 6327:1 6330:1 6338:1 6353:1 6373:1 6416:1 6418:1 6431:1 6433:1 6437:1 6457:2 6462:1 6465:1 6475:1 6486:1 6489:4 6493:4 6497:1 6507:1 6508:1 6512:2 6519:5 6521:2 6522:1 6579:1 6592:1 6596:1 6597:1 6612:1 6620:1 6625:2 6645:1 6675:1 6683:1 6696:1 6703:1 6707:1 6716:1 6721:1 6722:1 6737:1 6748:1 6768:1 6771:1 6779:1 6792:1 6816:3 6818:1 6838:1 6839:1 6852:1 6860:1 6890:1 6903:2 6914:2 6934:1 6941:2 6948:1 6954:1 6960:3 6994:1 6999:1 7011:1 7048:3 7073:4 7077:1 7088:1 7106:1 7137:1 7144:1 7187:1 7231:1 7249:6 7250:2 7273:1 7274:3 7307:1 7323:24 7344:6 7345:5 7369:1 7370:1 7381:1 7409:1 7414:1 7434:3 7488:2 7513:2 7525:1 7539:4 7550:1 7563:1 7566:1 7571:1 7590:1 7600:1 7603:1 7646:2 7650:2 7675:1 7677:1 7684:1 7696:1 7698:1 7701:1 7715:3 7789:1 7791:8 7812:1 7815:1 7817:1 7826:1 7843:1 7879:2 7884:1 7891:1 7922:1 7929:1 7936:1 7949:2 7957:2 7958:1 7964:2 7990:1 7994:1 8013:1 8026:1 8031:1 8034:1 8035:1 8054:1 8116:1 8117:1 8122:1 8123:1 8124:1 8125:3 8126:1 8128:2 8135:2 8155:1 8161:1 8166:1 8169:1 8180:1 8182:1 8191:1 8229:3 8268:1 8280:2 8282:2 8293:1 8322:1 8326:1 8328:1 8340:1 8362:1 8397:1 8406:1 8413:1 8423:1 8439:1 8441:1 8467:1 8484:1 8485:2 8493:1 8503:1 8505:1 8515:1 8531:1 8539:1 8556:3 8558:2 8575:1 8620:1 8621:1 8670:2 8694:1 8697:1 8705:1 8716:1 8719:3 8747:1 8748:2 8752:2 8801:1 8803:1 8813:1 8816:1 8817:1 8853:1 8878:1 8898:1 8907:1 8926:1 8930:2 8942:1 8944:2 8954:1 8962:1 8971:1 8979:1 8991:1 8997:1 9000:1 9007:1 9010:1 9016:1 9023:1 9030:1 9048:1 9062:1 9063:2 9068:1 9073:1 9080:1 9118:1 9179:2 9180:1 9215:1 9236:2 9249:2 9257:1 9267:1 9317:1 9325:1 9385:1 9405:2 9418:1 9420:2 9442:1 9451:1 9460:1 9473:3 9484:2 9486:1 9495:1 9507:1 9544:1 9569:1 9571:1 9594:1 9597:1 9605:1 9683:1 9687:1 9696:1 9697:1 9701:1 9707:1 9712:1 9757:1 9770:1 9773:1 9778:1 9783:1 9788:1 9793:1 9799:3 9803:1 9823:3 9844:1 9870:1 9877:5 9882:3 9883:1 9917:4 9925:1 9935:1 9947:1 9955:2 9963:1 9974:1 9996:1 10013:1 10046:2 10054:1 10066:1 10070:2 10075:1 10076:1 10121:1 10126:1 10136:2 10153:2 10167:2 10183:1 10187:1 10199:1 10254:1 10259:1 10276:1 10281:1 10287:3 10289:3 10296:2 10299:2 10300:3 10304:2 10308:2 10312:1 10322:1 10345:1 10346:1 10371:2 10398:1 10404:1 10406:1 10410:1 10417:1 10427:2 10429:1 10477:1 10498:1 10515:1 10526:1 10564:1 10574:1 10580:1 10585:1 10595:1 10637:2 10646:1 10652:2 10653:1 10654:1 10664:1 10684:2 10717:2 10724:1 10750:1 10754:2 10778:1 10784:1 10786:1 10799:2 10804:1 10821:2 10832:1 10833:1 10834:1 10850:1 10855:1 10872:1 10907:1 10933:1 10940:2 10965:2 10973:2 10977:1 10989:1 10994:4 10995:1 11001:2 11046:1 11056:1 11067:1 11071:1 11081:1 11093:1 11109:1 11116:1 11149:1 11154:1 11170:1 11176:1 11222:1 11229:1 11245:1 11247:1 11252:1 11291:1 11304:1 11313:1 11354:2 11355:2 11375:1 11387:1 11388:1 11389:1 11393:1 11394:1 11401:1 11410:2 11414:1 11416:1 11421:1 11422:1 11437:1 11447:1 11477:1 11499:3 11501:2 11515:1 11532:1 11536:1 11552:1 11606:1 11611:1 11619:1 11639:1 11661:2 11662:1 11671:1 11688:2 11699:1 11704:1 11735:1 11756:1 11778:1 11860:1 11876:2 11888:2 11889:1 11903:1 11933:1 11945:1 11960:1 12007:1 12009:1 12013:1 12018:1 12021:1 12023:1 12039:1 12152:1 12156:1 12157:1 12167:2 12169:1 12214:2 12234:1 12235:2 12236:1 12242:1 12243:1 12250:1 12261:1 12262:2 12265:1 12271:6 12276:1 12300:2 12313:2 12369:1 12385:1 12402:2 12404:5 12409:2 12468:1 12472:11 12502:1 12522:1 12526:1 12539:1 12557:1 12591:1 12640:1 12641:2 12661:1 12687:1 12701:1 12710:3 12733:1 12737:2 12743:3 12766:1 12768:1 12775:3 12778:1 12856:1 12885:1 12893:1 12894:2 12896:1 12910:1 12919:1 12932:2 12945:1 12951:1 12970:1 12974:1 12982:2 12995:1 13001:1 13016:1 13018:1 13033:1 13040:1 13053:1 13067:1 13068:1 13080:1 13086:1 13097:1 13120:2 13126:2 13133:1 13155:1 13170:1 13186:1 13187:1 13211:1 13247:1 13263:1 13270:1 13276:2 13295:3 13310:1 13316:1 13332:1 13366:1 13367:1 13371:1 13388:1 13441:1 13459:1 13464:1 13476:1 13498:1 13506:2 13557:1 13563:1 13586:1 13597:1 13599:1 13618:1 13628:2 13666:1 13676:1 13692:1 13701:1 13704:1 13708:1 13723:1 13744:1 13751:1 13757:1 13805:1 13825:1 13875:1 13882:1 13894:1 13906:1 13911:1 13945:1 13969:2 13973:1 13989:1 13991:2 13996:3 14036:3 14045:1 14106:1 14154:1 14193:1 14202:1 14211:1 14222:1 14233:1 14240:1 14259:1 14267:1 14297:1 14303:1 14306:1 14320:2 14339:1 14350:1 14403:1 14418:1 14419:1 14422:1 14430:1 14439:1 14445:2 14451:3 14487:3 14492:1 14506:1 14508:1 14564:2 14577:1 14583:1 14586:1 14604:1 14612:1 14613:1 14618:1 14622:1 14628:1 14634:1 14635:1 14638:2 14643:1 14655:1 14667:1 14672:1 14705:1 14724:1 14728:1 14769:1 14797:1 14809:1 14818:1 14824:1 14841:2 14843:1 14851:2 14881:1 14887:1 14901:1 14907:1 14908:1 14918:1 14924:9 14945:1 14952:2 14967:1 14973:2 14978:1 15002:1 15012:7 15018:1 15039:2 15073:1 15083:1 15095:1 15144:1 15145:1 15166:1 15170:2 15173:1 15177:1 15187:2 15188:2 15193:1 15195:1 15196:2 15207:1 15263:1 15272:1 15301:1 15309:1 15314:1 15345:1 15352:1 15372:1 15399:2 15402:1 15419:1 15442:1 15483:3 15495:2 15513:1 15520:2 15538:1 15539:1 15560:1 15567:2 15568:1 15578:1 15582:2 15584:1 15629:1 15639:1 15655:2 15723:1 15762:1 15775:2 15778:1 15798:1 15839:2 15842:1 15863:1 15867:1 15896:1 15907:1 15915:1 15951:1 15962:1 16028:2 16055:1 16070:1 16095:1 16108:1 16117:3 16119:1 16129:2 16139:1 16157:1 16162:1 16238:1 16319:1 16324:1 16329:1 16331:1 16337:1 16347:1 16351:1 16399:2 16434:2 16435:3 16457:1 16462:1 16477:1 16489:3 16505:1 16518:2 16519:1 16531:1 16555:1 16570:1 16583:1 16592:2 16612:1 16625:3 16674:3 16729:2 16733:2 16743:2 16756:1 16762:1 16777:3 16781:1 16782:1 16807:1 16808:1 16824:1 16832:1 16837:1 16865:1 16873:1 16915:1 16916:1 16925:1 16932:2 16934:1 16985:1 17009:1 17016:1 17094:1 17097:1 17098:2 17110:5 17127:1 17132:1 17183:1 17205:1 17235:1 17262:1 17265:1 17266:2 17276:1 17317:1 17326:2 17335:1 17342:1 17376:1 17410:1 17415:1460 17425:1 17433:1 17473:1 17476:1 17505:2 17547:1 17594:1 17600:1 17601:1 17613:1 17639:1 17644:1 17646:1 17650:1 17706:2 17814:1 17824:1 17831:1 17845:1 17869:1 17871:1 17892:1 17900:1 17911:1 17917:1 17928:1 17931:1 17936:1 17946:1 17978:1 17980:1 17989:1 18074:1 18085:1 18100:1 18109:1 18121:1 18142:1 18167:1 18172:2 18175:1 18187:1 18210:1 18232:5 18275:3 18277:1 18303:1 18306:1 18314:1 18319:1 18320:1 18324:1 18335:1 18355:1 18359:3 18360:1 18364:1 18365:1 18378:1 18392:1 18404:1 18410:1 18411:1 18412:1 18417:1 18432:1 18444:1 18457:1 18539:1 18543:2 18545:2 18596:1 18603:1 18608:1 18619:1 18626:1 18632:2 18637:1 18663:1 18687:1 18703:1 18707:1 18723:1 18724:1 18753:1 18754:1 18755:2 18770:1 18786:1 18801:1 18802:1 18805:1 18808:1 18838:1 18845:1 18861:1 18875:2 18876:1 18878:1 18884:1 18886:1 18890:1 18893:1 18901:1 18908:1 18912:1 18932:1 18936:4 18944:1 18947:1 18966:1 19004:1 19011:1 19013:1 19014:1 19015:1 19033:3 19050:1 19064:1 19109:1 19137:2 19143:1 19148:1 19176:1 19177:1 19205:3 19213:1 19223:1 19225:1 19229:1 19233:1 19252:1 19268:1 19330:1 19358:1 19370:1 19385:1 19395:1 19407:1 19441:1 19455:1 19492:1 19500:2 19502:1 19520:1 19522:1 19541:1 19554:1 19556:6 19559:1 19563:1 19568:2 19574:1 19577:1 19582:2 19585:1 19593:1 19607:1 19609:1 19689:1 19701:1 19727:1 19731:2 19733:1 19747:1 19751:1 19753:1 19769:1 19785:2 19797:1 19810:1 19813:1 19819:3 19831:1 19852:1 19857:1 19877:1 19889:2 19894:1 19905:2 19910:1 19915:1 19918:1 19923:1 19933:1 19942:1 19950:1 19956:1 19965:1 19990:1 20016:2 20025:2 20039:1 20041:3 20069:2 20070:1 20085:1 20089:2 20143:1 20152:1 20169:1 20171:1 20178:1 20193:1 20233:1 20260:1 20270:1 20274:1 20325:2 20327:1 20332:1 20334:1 20343:1 20395:2 20398:1 20399:1 20401:1 20411:4 20421:1 20429:2 20447:2 20469:1 20490:2 20525:2 20526:2 20528:1 20546:1 20548:1 20551:2 20554:1 20556:2 20559:4 20563:1 20571:1 20574:1 20590:1 20592:1 20596:1 20608:1 20630:1 20680:1 20682:1 20683:1 20685:1 20730:1 20731:2 20752:4 20755:2 20775:1 20778:1 20803:2 20811:1 20828:2 20832:1 20879:1 20893:2 20906:1 20927:1 20939:2 20960:6 20967:1 20973:1 21002:1 21022:1 21028:1 21029:1 21057:1 21072:1 21087:2 21100:2 21103:1 21167:1 21179:1 21186:1 21199:1 21225:1 21262:1 21284:1 21287:1 21312:1 21341:1 21342:1 21346:1 21354:2 21363:1 21365:1 21375:1 21376:1 21382:1 21397:1 21414:1 21420:1 21442:1 21472:1 21480:2 21483:2 21496:1 21513:2 21534:1 21536:1 21547:1 21549:1 21550:1 21571:1 21608:1 21609:1 21614:1 21633:4 21640:1 21645:1 21657:2 21683:1 21703:2 21709:1 21728:1 21735:1 21737:1 21753:1 21784:1 21789:1 21816:3 21817:1 21837:1 21838:1 21844:2 21847:1 21857:1 21869:1 21885:1 21891:1 21928:1 21930:1 21933:1 21951:1 21965:1 21966:1 21971:1 21979:1 21985:1 22008:2 22015:1 22026:1 22043:1 22054:3 22067:1 22080:1 22085:1 22105:1 22125:3 22156:1 22164:1 22165:1 22171:1 22215:1 22244:1 22268:1 22288:1 22298:1 22304:1 22336:1 22362:1 22366:1 22381:2 22384:1 22386:1 22389:1 22398:1 22400:1 22449:1 22450:1 22466:1 22491:1 22493:1 22542:2 22545:2 22547:1 22575:1 22598:1 22604:1 22657:1 22666:3 22686:2 22687:2 22722:1 22724:1 22742:1 22765:1 22779:1 22784:1 22791:1 22798:1 22810:1 22814:1 22843:1 22859:1 22891:2 22904:1 22905:1 22941:1 22946:1 22962:2 22965:1 22991:2 22996:1 23010:1 23013:1 23015:2 23025:1 23038:1 23073:2 23096:2 23100:1 23136:1 23142:1 23144:1 23147:1 23149:2 23153:1 23158:1 23171:1 23189:2 23234:1 23252:1 23263:1 23277:2 23285:1 23290:1 23291:1 23307:1 23308:3 23335:1 23360:1 23369:1 23403:2 23422:1 23493:3 23496:2 23559:1 23563:1 23594:1 23609:1 23634:1 23646:1 23660:2 23669:1 23681:2 23683:1 23689:1 23692:4 23699:1 23717:1 23718:1 23719:1 23720:1 23721:1 23723:1 23766:2 23777:2 23779:1 23791:1 23801:1 23848:3 23862:1 23865:1 23871:1 23874:1 23875:1 23882:1 23907:2 23911:1 23913:2 23919:1 23946:1 23953:1 23955:1 23966:1 23970:1 23973:1 23985:1 23994:1 23996:1 23998:1 24017:1 24022:1 24054:1 24066:1 24092:2 24093:1 24094:1 24122:1 24151:1 24153:2 24160:1 24166:1 24271:1 24288:1 24290:1 24310:1 24331:1 24334:2 24340:3 24434:1 24439:1 24459:1 24470:2 24473:1 24497:1 24507:1 24551:1 24562:1 24570:1 24571:1 24586:1 24602:1 24603:1 24612:1 24704:1 24723:1 24733:1 24740:1 24807:1 24809:1 24871:1 24893:1 24896:1 24904:1 24936:1 24940:1 24956:1 24969:4 24972:1 24982:1 25029:1 25033:1 25060:1 25069:1 25097:1 25112:1 25114:2 25115:2 25149:1 25159:1 25181:1 25221:1 25234:1 25240:2 25242:2 25247:1 25249:1 25262:1 25265:1 25267:1 25279:1 25288:1 25306:1 25309:1 25323:1 25329:1 25333:4 25337:1 25363:1 25372:1 25381:1 25386:1 25387:1 25392:1 25445:1 25460:1 25474:1 25496:2 25505:1 25507:1 25508:1 25513:1 25517:2 25518:1 25519:1 25523:1 25525:1 25550:1 25561:1 25567:2 25568:3 25570:1 25572:1 25584:1 25614:1 25630:1 25650:1 25651:1 25656:1 25672:3 25715:2 25738:2 25761:1 25779:1 25781:1 25782:1 25792:1 25793:1 25796:1 25802:2 25806:1 25820:2 25822:1 25824:1 25826:1 25827:2 25837:1 25839:1 25861:1 25870:1 25871:2 25872:1 25900:3 25925:1 25927:2 25928:1 25930:1 25957:1 25959:1 25988:2 25994:1 25997:1 26007:1 26019:1 26032:1 26072:1 26099:1 26100:1 26107:1 26123:1 26204:1 26211:1 26260:1 26268:1 26283:1 26289:2 26317:1 26319:1 26335:1 26346:1 26349:1 26368:1 26406:1 26413:1 26439:1 26446:1 26448:1 26484:1 26485:1 26508:13 26513:1 26530:1 26539:1 26547:2 26564:1 26567:1 26576:1 26610:3 26619:1 26622:1 26645:1 26655:3 26662:1 26692:7 26733:1 26764:2 26787:1 26800:1 26807:1 26813:1 26834:2 26852:2 26864:2 26867:1 26882:2 26886:1 26904:1 26921:1 26944:1 26946:2 26952:1 26953:1 26965:1 26966:2 26975:1 26977:1 26982:1 27012:1 27016:2 27019:2 27020:4 27063:1 27073:1 27074:1 27078:2 27096:3 27150:2 27154:1 27179:1 27202:1 27227:1 27236:1 27241:1 27247:1 27248:1 27309:1 27333:1 27379:1 27390:1 27394:1 27396:1 27402:2 27407:1 27433:1 27434:1 27440:1 27447:1 27477:1 27491:1 27492:1 27521:1 27530:1 27534:1 27553:2 27564:1 27569:1 27572:1 27598:1 27619:1 27635:1 27637:1 27638:1 27643:2 27652:1 27667:1 27669:1 27672:1 27683:3 27689:1 27706:1 27715:3 27716:3 27723:2 27730:1 27734:1 27739:2 27765:1 27775:4 27778:1 27784:2 27792:1 27797:1 27820:1
8 1:1 8:1 21:1 40:1 43:1 46:1 47:2 83:2 88:1 102:1 121:1 125:1 132:1 148:1 160:1 162:1 181:1 190:1 194:4 214:1 234:1 240:3 279:1 303:1 327:3 328:1 329:1 354:1 369:2 416:2 432:1 441:1 451:1 477:1 486:1 494:1 575:1 587:1 594:1 605:4 627:3 656:1 659:1 667:4 683:1 771:1 784:1 796:1 843:4 850:1 856:1 869:1 876:4 891:1 906:1 925:1 930:3 934:2 969:1 970:1 973:3 1045:1 1050:1 1052:1 1068:1 1074:1 1086:1 1105:1 1129:1 1147:1 1172:2 1176:1 1182:1 1187:1 1190:1 1191:1 1201:1 1202:1 1205:1 1210:1 1221:1 1222:1 1233:1 1238:1 1241:1 1243:1 1244:1 1250:1 1251:1 1253:1 1255:1 1265:1 1270:1 1278:1 1296:1 1311:1 1324:1 1332:1 1348:1 1362:1 1371:1 1374:1 1389:1 1393:3 1395:5 1399:1 1411:2 1424:3 1432:3 1446:1 1468:1 1475:3 1496:1 1509:3 1523:2 1525:1 1553:1 1565:2 1576:1 1578:1 1588:1 1607:1 1612:1 1626:1 1640:1 1644:1 1663:2 1669:1 1670:2 1681:1 1682:1 1688:1 1692:1 1696:1 1717:1 1720:1 1732:1 1738:1 1740:1 1744:1 1762:1 1769:1 1774:1 1776:2 1787:4 1791:1 1797:1 1801:2 1815:1 1818:2 1824:1 1833:1 1835:1 1844:2 1849:1 1856:1 1858:1 1859:1 1871:1 1883:1 1887:1 1926:1 1928:1 1956:1 1958:1 1962:2 1997:1 2006:1 2012:1 2057:4 2090:1 2145:1 2175:1 2176:1 2177:2 2179:1 2181:1 2185:3 2188:1 2193:1 2196:2 2201:7 2203:2 2208:2 2209:1 2211:2 2214:1 2216:1 2248:1 2252:1 2260:3 2274:1 2285:1 2288:1 2295:1 2378:1 2380:1 2418:1 2430:1 2437:1 2510:1 2547:1 2557:1 2563:1 2565:1 2569:1 2583:1 2597:1 2598:1 2599:1 2602:3 2621:1 2646:2 2649:1 2650:1 2662:1 2676:2 2687:1 2703:1 2705:1 2713:2 2731:1 2732:1 2755:1 2760:1 2766:2 2774:6 2801:2 2803:2 2811:1 2818:1 2831:3 2840:1 2854:1 2869:1 2880:1 2883:1 2885:1 2886:1 2897:1 2908:2 2983:1 2996:1 3002:1 3010:1 3017:1 3062:2 3072:1 3090:1 3092:1 3122:1 3127:1 3131:3 3134:3 3137:4 3138:1 3148:1 3158:4 3164:1 3174:1 3195:1 3216:1 3227:1 3233:1 3313:2 3324:1 3325:1 3339:1 3362:1 3406:1 3423:1 3434:1 3442:1 3481:1 3491:1 3496:1 3506:1 3518:2 3530:1 3537:1 3538:1 3550:1 3574:1 3585:1 3614:1 3621:2 3625:2 3630:1 3646:1 3647:1 3650:1 3680:1 3682:1 3688:1 3692:1 3709:2 3715:1 3724:2 3728:2 3732:1 3738:1 3757:2 3758:1 3764:1 3795:1 3803:1 3807:1 3810:1 3815:1 3818:2 3826:1 3836:1 3857:2 3858:4 3916:2 3923:1 3928:1 3929:1 3934:1 3940:1 3970:1 3983:1 3998:1 4002:1 4011:2 4020:2 4030:2 4031:1 4035:4 4042:1 4052:1 4068:1 4094:1 4109:1 4115:1 4126:1 4129:4 4131:1 4152:2 4169:1 4174:1 4196:1 4224:1 4230:2 4235:1 4249:1 4250:1 4251:1 4281:2 4290:1 4315:1 4342:1 4351:1 4384:1 4400:2 4426:2 4433:1 4459:1 4462:2 4471:1 4474:1 4497:3 4498:1 4500:1 4510:1 4533:1 4536:1 4546:1 4567:1 4645:1 4648:13 4669:1 4670:1 4673:1 4677:1 4713:1 4767:3 4787:5 4789:5 4792:1 4796:1 4797:1 4800:2 4802:2 4810:1 4813:1 4814:7 4840:1 4871:2 4903:1 4944:1 4947:1 4972:1 4994:1 4997:1 5002:1 5005:1 5010:1 5013:1 5047:1 5074:1 5084:1 5092:1 5102:1 5104:2 5123:1 5126:2 5136:1 5170:1 5182:1 5201:1 5212:1 5222:2 5224:1 5248:1 5253:1 5269:1 5275:1 5286:1 5296:1 5301:1 5309:2 5311:1 5313:1 5315:2 5319:1 5320:1 5322:1 5413:1 5422:1 5423:1 5436:1 5437:1 5446:1 5486:1 5585:1 5587:2 5593:1 5609:1 5643:3 5708:3 5710:2 5739:4 5755:2 5760:1 5773:1 5804:1 5808:1 5828:1 5832:1 5862:1 5867:1 5896:1 5910:1 5913:3 5942:5 5945:1 5950:1 5961:1 5993:3 6027:1 6034:4 6037:1 6041:1 6044:1 6045:3 6047:1 6048:2 6052:1 6053:1 6058:3 6060:4 6063:1 6074:1 6089:1 6100:1 6101:1 6121:1 6140:1 6147:2 6174:1 6187:2 6191:2 6203:1 6206:1 6216:1 6221:1 6256:1 6259:1 6265:1 6268:1 6288:1 6295:1 6327:1 6330:1 6338:1 6353:1 6373:1 6375:1 6416:1 6418:1 6431:1 6433:1 6437:1 6457:2 6462:1 6465:1 6475:1 6486:1 6489:4 6493:4 6497:1 6507:1 6508:1 6512:2 6519:5 6521:2 6522:1 6579:1 6592:1 6596:1 6597:1 6612:1 6620:1 6625:2 6645:1 6675:1 6683:1 6696:1 6703:1 6707:1 6716:1 6721:1 6722:1 6737:1 6748:1 6768:1 6771:1 6779:1 6792:1 6816:3 6818:1 6838:1 6839:1 6852:1 6860:1 6890:1 6903:2 6914:2 6934:1 6941:2 6948:1 6954:1 6960:3 6994:1 6999:1 7011:1 7048:4 7073:5 7077:2 7088:1 7106:1 7137:1 7144:1 7187:1 7231:1 7249:7 7250:2 7273:1 7274:3 7307:1 7323:25 7344:6 7345:5 7369:1 7370:1 7381:1 7409:1 7414:1 7434:3 7488:2 7513:2 7525:1 7539:4 7550:1 7563:1 7566:1 7571:1 7590:1 7600:1 7603:1 7646:2 7650:2 7675:1 7677:1 7684:1 7696:1 7698:1 7701:1 7715:3 7789:1 7791:9 7812:1 7815:1 7817:1 7826:1 7843:1 7879:2 7884:1 7891:1 7898:1 7922:1 7929:1 7936:1 7949:2 7957:2 7958:1 7964:2 7990:1 7994:1 8013:1 8026:1 8031:1 8034:1 8035:1 8054:1 8116:1 8117:1 8122:1 8123:1 8124:1 8125:3 8126:1 8128:2 8135:2 8136:1 8155:1 8161:1 8166:1 8169:1 8180:1 8182:1 8191:1 8229:4 8268:1 8280:3 8282:2 8293:1 8322:1 8326:1 8328:1 8340:1 8362:1 8397:1 8406:1 8413:1 8423:1 8439:1 8441:1 8467:1 8484:1 8485:2 8493:1 8503:1 8505:1 8515:1 8531:1 8539:1 8556:3 8558:2 8575:1 8620:1 8621:1 8670:2 8694:1 8697:1 8705:1 8716:1 8719:3 8747:1 8748:2 8752:2 8801:1 8803:1 8813:1 8816:1 8817:1 8853:1 8878:1 8898:1 8907:1 8926:1 8930:2 8942:2 8944:2 8954:1 8962:1 8971:1 8979:1 8991:1 8997:1 9000:1 9007:1 9010:1 9016:1 9023:1 9028:1 9030:1 9048:1 9062:1 9063:2 9068:1 9073:1 9080:1 9118:1 9179:2 9180:1 9215:1 9236:2 9242:1 9249:2 9257:1 9267:1 9317:1 9325:1 9385:1 9405:2 9418:1 9420:2 9442:1 9451:1 9460:1 9473:3 9484:2 9486:1 9495:1 9507:1 9533:1 9544:1 9569:1 9571:1 9594:1 9597:1 9605:1 9621:1 9683:1 9687:1 9696:1 9697:1 9701:1 9707:1 9712:1 9757:1 9770:1 9773:1 9778:1 9783:1 9788:1 9793:1 9799:3 9803:1 9823:3 9844:1 9870:1 9877:5 9882:3 9883:1 9917:4 9925:1 9935:1 9947:1 9955:2 9963:1 9974:1 9996:1 10013:1 10046:2 10054:1 10066:1 10070:2 10075:1 10076:1 10121:1 10126:1 10132:1 10136:2 10153:2 10167:2 10183:1 10187:1 10199:1 10254:1 10259:1 10276:1 10281:1 10287:3 10289:3 10296:2 10299:2 10300:3 10304:2 10308:2 10312:1 10322:1 10345:1 10346:1 10371:2 10398:1 10404:1 10406:1 10410:1 10417:1 10427:2 10429:1 10477:1 10498:1 10515:1 10526:1 10564:1 10573:1 10574:1 10580:1 10585:1 10595:2 10637:2 10646:1 10652:2 10653:1 10654:1 10664:1 10684:2 10717:2 10724:1 10750:1 10754:2 10778:1 10784:1 10786:1 10799:2 10804:1 10821:2 10832:1 10833:1 10834:1 10850:1 10855:1 10872:1 10907:1 10933:1 10940:2 10965:2 10973:2 10977:1 10989:1 10994:4 10995:1 11001:2 11046:1 11056:1 11067:1 11071:1 11081:1 11093:1 11109:1 11116:1 11149:1 11154:1 11170:1 11176:2 11222:1 11229:1 11245:1 11247:1 11252:2 11291:1 11304:1 11313:1 11354:2 11355:2 11375:1 11387:1 11388:1 11389:1 11393:1 11394:1 11401:1 11410:2 11414:1 11416:1 11421:1 11422:1 11437:1 11447:1 11477:1 11499:3 11501:2 11515:1 11532:1 11536:1 11552:1 11606:1 11611:1 11619:1 11639:1 11661:2 11662:1 11671:1 11688:2 11699:1 11704:1 11735:1 11756:1 11778:1 11860:1 11876:2 11888:2 11889:1 11903:1 11933:1 11945:1 11960:1 12007:1 12009:1 12013:1 12018:1 12021:1 12023:1 12039:1 12152:1 12156:1 12157:1 12167:2 12169:1 12214:2 12234:1 12235:2 12236:1 12242:1 12243:1 12250:1 12261:1 12262:2 12265:1 12271:6 12276:1 12300:2 12313:2 12369:1 12385:1 12402:2 12404:5 12409:2 12468:1 12472:11 12502:1 12522:1 12526:1 12539:1 12557:1 12591:1 12640:1 12641:2 12661:1 12687:1 12701:1 12710:3 12733:1 12737:2 12743:3 12766:1 12768:1 12775:3 12778:1 12790:1 12856:1 12885:1 12893:1 12894:2 12896:1 12910:1 12919:1 12932:2 12942:1 12945:1 12951:1 12970:1 12974:1 12982:2 12995:1 13001:1 13016:1 13018:1 13033:1 13040:1 13053:1 13067:1 13068:1 13080:1 13086:1 13097:1 13120:2 13126:3 13133:1 13155:1 13170:1 13186:1 13187:1 13211:1 13247:1 13263:1 13270:1 13276:2 13295:4 13310:1 13316:1 13332:1 13366:1 13367:1 13371:1 13388:1 13441:1 13459:1 13464:1 13476:1 13498:1 13506:2 13557:1 13563:1 13586:1 13597:1 13599:1 13618:1 13628:2 13629:1 13666:1 13676:1 13691:1 13692:1 13701:1 13704:1 13708:1 13723:1 13744:1 13751:1 13757:1 13805:1 13806:1 13825:1 13875:1 13882:1 13894:1 13906:1 13911:1 13945:1 13969:2 13973:1 13989:1 13991:2 13996:3 14036:3 14045:1 14093:1 14106:1 14154:1 14193:1 14202:1 14210:1 14211:1 14222:1 14233:1 14240:1 14259:1 14267:1 14297:1 14303:2 14306:1 14320:2 14339:1 14350:1 14403:1 14418:1 14419:1 14422:1 14430:1 14439:1 14445:2 14451:3 14487:3 14492:1 14506:1 14508:1 14564:2 14577:1 14583:1 14586:1 14604:1 14612:1 14613:1 14618:1 14622:1 14628:1 14634:1 14635:1 14638:2 14643:1 14655:1 14667:1 14672:1 14696:1 14705:1 14724:1 14728:1 14769:2 14796:1 14797:1 14809:1 14818:1 14824:1 14841:2 14843:1 14851:2 14881:1 14887:1 14901:1 14907:1 14908:1 14918:1 14924:9 14945:1 14952:2 14967:1 14973:2 14978:1 15002:1 15012:8 15018:1 15039:2 15073:1 15080:1 15083:1 15095:1 15144:1 15145:1 15166:1 15170:3 15173:1 15177:1 15187:2 15188:2 15193:1 15195:1 15196:2 15197:1 15207:1 15263:1 15272:1 15297:1 15301:1 15309:1 15314:1 15345:1 15352:1 15372:1 15399:2 15402:1 15419:1 15442:1 15483:3 15495:2 15513:1 15520:2 15538:1 15539:1 15560:1 15567:2 15568:1 15578:1 15582:2 15584:1 15629:1 15639:1 15655:2 15723:1 15762:2 15775:2 15778:1 15798:1 15839:2 15842:1 15863:1 15867:1 15896:1 15907:1 15915:1 15951:1 15962:1 16028:2 16055:1 16070:1 16095:1 16108:1 16117:4 16119:1 16129:2 16139:1 16157:1 16162:1 16238:1 16319:1 16324:1 16329:1 16331:1 16337:1 16347:1 16351:1 16399:2 16434:2 16435:3 16457:1 16462:1 16477:1 16489:3 16505:2 16518:2 16519:1 16531:1 16555:1 16570:1 16583:1 16592:2 16612:1 16625:3 16674:4 16729:2 16733:2 16743:2 16756:1 16762:1 16777:4 16781:1 16782:1 16807:1 16808:1 16824:1 16832:1 16837:1 16865:1 16873:1 16915:1 16916:1 16925:1 16932:2 16934:1 16985:1 17009:1 17016:1 17094:1 17097:1 17098:2 17110:5 17127:1 17132:1 17183:1 17205:1 17235:1 17262:1 17265:1 17266:2 17276:1 17317:1 17326:2 17335:1 17342:1 17376:1 17410:1 17415:1526 17425:1 17433:1 17473:1 17476:1 17478:1 17505:2 17547:1 17594:1 17600:1 17601:1 17613:1 17639:1 17644:1 17646:1 17650:1 17706:2 17814:1 17824:1 17831:1 17845:1 17869:1 17871:1 17892:1 17900:1 17911:1 17917:1 17928:1 17931:1 17936:1 17946:2 17978:1 17980:1 17989:1 18074:1 18085:1 18100:1 18109:1 18119:1 18121:1 18142:1 18167:1 18172:2 18175:1 18187:1 18210:1 18232:5 18275:3 18277:1 18303:1 18306:1 18314:1 18319:1 18320:1 18324:1 18335:1 18355:1 18359:3 18360:1 18364:1 18365:1 18378:1 18392:1 18404:1 18410:1 18411:1 18412:1 18417:1 18432:1 18437:1 18444:1 18457:1 18539:1 18543:2 18545:2 18596:1 18603:1 18608:1 18619:1 18626:1 18632:2 18637:1 18663:1 18687:1 18703:1 18707:1 18723:1 18724:1 18753:1 18754:1 18755:2 18770:1 18786:1 18801:1 18802:1 18805:1 18808:1 18838:1 18845:1 18861:1 18875:2 18876:1 18878:1 18884:1 18886:1 18890:1 18893:1 18901:1 18908:1 18912:1 18932:1 18936:4 18944:1 18947:1 18966:1 19004:1 19011:1 19013:1 19014:1 19015:1 19033:3 19050:1 19064:1 19109:1 19137:2 19143:1 19148:1 19176:1 19177:1 19186:1 19205:3 19213:1 19223:1 19225:1 19229:1 19233:1 19252:1 19268:1 19330:1 19358:1 19370:1 19385:1 19395:1 19407:1 19441:1 19455:1 19492:1 19500:2 19502:1 19520:1 19522:1 19541:1 19554:1 19556:6 19559:1 19563:1 19568:2 19574:1 19577:1 19582:2 19585:1 19593:1 19607:1 19609:1 19689:1 19695:1 19701:1 19727:1 19731:2 19733:1 19747:1 19751:1 19753:1 19769:1 19785:2 19797:1 19810:1 19813:1 19819:3 19831:1 19852:1 19857:1 19877:1 19889:2 19894:1 19905:2 19910:1 19915:1 19918:1 19923:1 19933:1 19942:1 19950:1 19956:1 19965:1 19990:1 20016:2 20025:2 20039:1 20041:3 20069:2 20070:1 20073:1 20085:1 20089:2 20143:1 20152:1 20169:1 20171:1 20178:1 20193:1 20233:1 20260:1 20270:1 20274:1 20325:2 20327:1 20332:1 20334:1 20343:1 20395:2 20398:1 20399:1 20401:1 20411:4 20421:1 20429:2 20447:2 20452:1 20469:1 20490:2 20525:2 20526:2 20528:1 20546:1 20548:1 20551:2 20554:1 20556:2 20559:4 20563:1 20571:1 20574:1 20590:1 20592:1 20596:1 20608:1 20630:1 20680:1 20682:1 20683:1 20685:1 20730:1 20731:2 20747:1 20752:4 20755:2 20775:1 20778:1 20803:2 20811:1 20828:2 20832:1 20879:1 20893:2 20906:1 20927:1 20939:2 20960:7 20967:1 20973:1 21002:1 21022:1 21028:1 21029:1 21057:1 21072:1 21087:2 21100:2 21103:1 21167:1 21179:1 21186:1 21199:1 21225:1 21262:1 21284:1 21287:1 21312:1 21341:1 21342:1 21346:1 21354:2 21363:1 21365:1 21375:1 21376:1 21382:1 21397:1 21414:1 21420:1 21442:1 21472:1 21480:2 21483:2 21496:1 21513:2 21534:1 21536:1 21547:1 21549:1 21550:1 21571:2 21608:1 21609:1 21614:1 21633:4 21640:1 21645:1 21657:2 21683:1 21703:2 21709:1 21728:1 21735:1 21737:1 21753:1 21758:1 21784:1 21789:1 21816:3 21817:1 21834:1 21837:1 21838:1 21844:2 21847:1 21857:1 21869:1 21885:1 21891:1 21928:1 21930:1 21933:1 21951:1 21965:1 21966:1 21971:1 21979:1 21985:1 22008:2 22015:1 22026:1 22043:1 22054:3 22067:1 22080:1 22085:1 22105:1 22125:3 22156:1 22164:1 22165:1 22171:1 22215:1 22244:1 22268:1 22288:2 22298:1 22304:1 22336:1 22362:1 22366:1 22374:1 22381:2 22384:1 22386:1 22389:1 22398:1 22400:1 22449:1 22450:1 22466:1 22491:1 22493:1 22542:2 22545:2 22547:1 22575:1 22598:1 22604:1 22657:1 22666:3 22686:2 22687:2 22722:1 22724:1 22742:1 22765:1 22779:1 22784:1 22791:1 22798:1 22810:1 22814:1 22843:1 22859:1 22891:2 22904:1 22905:1 22941:1 22946:1 22962:2 22965:1 22991:2 22996:1 23010:1 23013:1 23015:2 23025:1 23038:1 23073:2 23096:2 23100:1 23136:1 23142:1 23144:1 23147:1 23149:2 23153:1 23158:1 23171:1 23189:2 23234:1 23252:1 23263:1 23277:2 23285:1 23290:1 23291:1 23307:1 23308:3 23335:1 23360:1 23369:1 23403:2 23422:1 23493:3 23496:2 23559:1 23563:1 23594:1 23609:1 23634:1 23646:1 23660:2 23669:1 23681:2 23683:1 23689:1 23692:4 23699:1 23717:1 23718:1 23719:1 23720:1 23721:1 23723:1 23766:2 23777:2 23779:1 23791:1 23801:1 23848:3 23853:1 23862:1 23865:1 23871:1 23874:1 23875:1 23882:1 23907:2 23911:1 23912:1 23913:2 23919:1 23946:1 23953:1 23955:1 23966:1 23970:1 23973:1 23985:1 23994:1 23996:1 23998:1 24017:1 24022:1 24054:1 24066:1 24092:2 24093:1 24094:1 24122:1 24151:1 24153:2 24160:1 24166:1 24271:1 24288:1 24290:1 24310:1 24331:1 24334:2 24340:3 24434:1 24439:1 24456:1 24459:1 24470:2 24473:1 24497:1 24507:1 24551:1 24562:1 24570:1 24571:1 24586:1 24602:1 24603:1 24612:1 24704:1 24723:1 24733:1 24740:1 24807:1 24809:1 24871:1 24893:1 24896:1 24904:1 24936:1 24940:1 24956:1 24965:1 24969:4 24972:1 24982:1 25029:1 25033:1 25060:1 25069:1 25096:1 25097:1 25112:1 25114:2 25115:2 25149:1 25159:1 25181:1 25221:1 25234:1 25240:2 25242:3 25247:1 25249:1 25262:1 25265:1 25267:1 25279:1 25288:1 25306:1 25309:1 25323:1 25329:1 25333:4 25337:1 25363:1 25372:1 25381:1 25386:1 25387:1 25392:1 25445:1 25460:1 25474:1 25496:2 25497:1 25505:1 25507:1 25508:1 25513:2 25517:2 25518:1 25519:1 25523:1 25525:1 25550:1 25561:1 25567:2 25568:3 25570:1 25572:1 25584:1 25614:1 25619:1 25630:1 25650:1 25651:1 25656:1 25672:3 25715:2 25738:2 25761:1 25779:1 25781:1 25782:1 25792:1 25793:1 25796:1 25802:2 25806:1 25820:2 25822:1 25824:1 25826:1 25827:2 25834:1 25837:1 25839:1 25861:1 25870:1 25871:2 25872:1 25900:3 25925:1 25927:2 25928:1 25930:1 25957:1 25959:1 25988:2 25994:1 25997:1 26007:1 26019:1 26032:1 26072:1 26099:1 26100:1 26107:1 26123:1 26171:1 26204:1 26211:1 26260:1 26268:1 26283:1 26289:2 26317:1 26319:1 26335:1 26346:1 26349:1 26368:1 26406:2 26413:1 26439:1 26446:1 26448:1 26484:1 26485:1 26508:14 26513:1 26530:1 26539:1 26547:2 26564:1 26567:1 26576:1 26610:3 26619:1 26622:1 26645:1 26655:3 26662:1 26692:8 26733:1 26764:2 26787:1 26800:1 26807:1 26813:1 26834:2 26852:2 26864:2 26867:1 26882:2 26886:1 26904:1 26921:1 26944:1 26946:2 26952:1 26953:2 26965:1 26966:2 26975:1 26977:1 26982:1 27012:1 27016:2 27019:2 27020:4 27063:1 27073:1 27074:1 27078:2 27096:3 27150:3 27154:1 27179:1 27202:1 27227:1 27236:1 27241:1 27247:1 27248:1 27309:2 27333:1 27379:1 27390:1 27394:1 27396:1 27402:2 27407:1 27433:1 27434:1 27440:1 27447:1 27477:1 27491:1 27492:1 27521:1 27530:1 27534:1 27547:1 27553:2 27564:1 27569:1 27572:1 27598:1 27619:1 27635:1 27637:1 27638:1 27643:2 27652:1 27667:1 27669:1 27672:1 27683:3 27689:1 27706:1 27715:3 27716:3 27723:2 27730:1 27734:1 27739:2 27765:1 27775:4 27778:1 27784:2 27792:1 27797:1 27820:1
8 1:3 8:1 21:1 40:1 43:1 46:1 47:2 83:2 88:1 102:1 121:1 125:1 132:1 148:1 160:1 162:1 163:1 181:1 190:1 194:4 214:1 234:1 240:3 279:1 303:1 327:3 328:1 329:1 354:1 369:2 416:2 432:1 441:1 451:1 477:1 486:1 494:1 567:1 575:1 587:1 594:1 605:4 627:4 656:1 659:1 667:4 683:1 688:1 771:2 784:1 796:1 843:4 850:1 856:1 869:1 876:4 891:1 906:1 925:1 930:3 934:2 969:1 970:1 973:3 1045:1 1050:1 1052:1 1068:1 1074:1 1086:1 1105:1 1129:2 1147:1 1157:1 1170:1 1172:2 1176:1 1182:1 1187:1 1190:1 1191:1 1201:1 1202:1 1205:1 1210:1 1221:1 1222:1 1233:1 1238:1 1241:1 1243:1 1244:1 1250:1 1251:1 1253:1 1255:1 1265:1 1270:1 1278:1 1296:1 1311:1 1324:1 1332:1 1348:1 1362:1 1371:1 1374:1 1389:1 1393:3 1395:5 1399:1 1411:2 1424:3 1432:3 1446:1 1468:1 1475:3 1496:1 1509:3 1523:2 1525:1 1553:1 1565:2 1576:1 1578:1 1588:1 1607:1 1612:1 1626:2 1640:1 1644:1 1659:1 1663:2 1669:1 1670:2 1681:1 1682:1 1688:1 1692:1 1696:1 1717:1 1720:1 1732:1 1738:1 1740:1 1744:1 1762:1 1769:1 1774:1 1776:2 1787:4 1791:1 1797:1 1801:2 1815:1 1818:2 1824:1 1833:1 1835:1 1844:2 1849:1 1856:1 1858:1 1859:1 1871:1 1883:1 1887:1 1926:1 1928:2 1956:1 1958:1 1962:2 1997:1 2006:1 2012:1 2057:4 2090:1 2145:1 2175:1 2176:1 2177:3 2179:1 2181:1 2185:3 2188:1 2193:1 2196:2 2201:7 2203:2 2208:2 2209:1 2211:2 2214:1 2216:1 2248:1 2252:1 2260:3 2274:1 2285:1 2288:1 2295:1 2378:1 2380:1 2418:1 2430:1 2437:1 2510:1 2547:1 2557:1 2563:1 2565:1 2569:1 2583:1 2597:1 2598:1 2599:1 2602:3 2621:1 2646:2 2649:1 2650:1 2662:1 2676:2 2687:1 2703:1 2705:1 2713:2 2731:1 2732:1 2755:1 2760:1 2766:2 2774:6 2793:1 2801:2 2803:2 2811:1 2818:1 2831:3 2840:1 2854:1 2869:1 2880:1 2883:1 2885:1 2886:1 2897:1 2908:2 2983:1 2995:1 2996:1 3002:1 3010:1 3017:1 3062:2 3072:1 3090:1 3092:1 3122:1 3127:1 3131:3 3134:3 3137:4 3138:1 3148:1 3158:4 3164:1 3174:1 3195:1 3216:1 3227:1 3233:1 3258:1 3313:2 3324:1 3325:1 3339:1 3362:1 3383:1 3406:1 3423:1 3434:1 3442:1 3443:2 3481:1 3491:1 3496:1 3506:1 3518:2 3530:2 3537:1 3538:1 3550:1 3574:1 3585:1 3614:1 3621:2 3625:2 3630:1 3646:1 3647:1 3650:1 3680:1 3682:1 3688:1 3692:1 3709:2 3715:1 3724:2 3728:2 3732:1 3738:1 3757:2 3758:1 3764:1 3795:1 3803:1 3807:1 3810:1 3815:1 3818:3 3826:1 3836:2 3857:2 3858:4 3916:2 3923:1 3928:1 3929:1 3934:1 3940:1 3970:1 3983:1 3998:1 4002:1 4011:2 4020:2 4030:2 4031:1 4035:4 4042:1 4043:1 4052:1 4068:1 4094:1 4109:1 4115:1 4126:1 4129:4 4131:1 4152:2 4169:1 4174:1 4196:1 4224:1 4230:2 4235:1 4249:1 4250:1 4251:1 4281:2 4290:1 4315:1 4342:2 4351:1 4384:1 4400:2 4426:2 4433:1 4459:1 4462:2 4471:1 4474:1 4497:3 4498:1 4500:1 4510:1 4533:1 4536:1 4546:1 4567:1 4645:1 4648:13 4669:1 4670:1 4673:1 4677:1 4713:1 4767:3 4787:5 4789:5 4792:1 4796:1 4797:1 4800:2 4802:2 4810:1 4813:1 4814:7 4840:1 4871:2 4903:1 4944:1 4947:3 4972:1 4994:1 4997:1 5002:1 5005:1 5010:1 5013:1 5044:1 5047:1 5074:1 5084:1 5092:1 5102:1 5104:2 5123:1 5126:2 5136:1 5170:1 5171:1 5182:1 5201:1 5212:1 5222:2 5224:1 5248:1 5253:1 5269:1 5275:1 5286:1 5296:1 5301:1 5304:1 5309:2 5311:1 5313:1 5315:2 5319:1 5320:1 5322:1 5413:1 5422:1 5423:1 5436:1 5437:1 5446:1 5486:1 5585:1 5587:2 5593:1 5609:1 5643:3 5708:3 5710:2 5739:4 5755:2 5760:1 5773:1 5804:1 5808:1 5828:1 5832:1 5862:1 5867:1 5896:1 5910:1 5913:3 5942:5 5945:1 5950:1 5961:1 5993:4 6027:1 6034:4 6037:1 6041:1 6044:1 6045:3 6047:1 6048:2 6052:1 6053:1 6058:3 6060:4 6063:1 6074:1 6089:1 6100:1 6101:1 6121:1 6140:1 6147:2 6174:1 6187:2 6191:2 6203:1 6206:1 6216:1 6221:1 6256:1 6257:1 6259:1 6265:1 6268:1 6288:1 6295:1 6327:1 6330:1 6338:1 6353:1 6373:1 6375:1 6416:1 6418:1 6431:1 6433:1 6437:1 6457:2 6462:1 6465:1 6475:1 6486:1 6489:4 6493:4 6497:1 6507:1 6508:1 6512:2 6519:5 6520:1 6521:2 6522:1 6529:1 6579:1 6591:1 6592:1 6596:1 6597:1 6612:1 6620:1 6625:2 6645:1 6675:1 6683:1 6696:1 6703:1 6707:1 6716:1 6721:1 6722:1 6737:1 6748:1 6768:1 6771:1 6779:1 6792:1 6816:3 6818:1 6838:1 6839:1 6852:1 6860:1 6890:1 6903:2 6914:2 6934:1 6941:2 6948:1 6954:1 6960:3 6994:1 6999:1 7011:1 7048:4 7073:5 7077:2 7088:1 7106:1 7137:1 7144:1 7187:1 7231:1 7249:7 7250:2 7273:1 7274:3 7307:1 7323:26 7344:6 7345:5 7369:1 7370:1 7381:1 7409:1 7414:1 7434:3 7488:2 7513:2 7525:1 7539:4 7550:1 7563:1 7566:1 7571:1 7590:1 7600:1 7603:1 7646:2 7650:2 7675:1 7677:1 7684:1 7696:1 7698:1 7701:1 7715:3 7789:1 7791:9 7812:1 7815:1 7817:1 7826:1 7843:1 7879:2 7884:1 7891:1 7898:1 7922:1 7929:1 7936:1 7949:2 7957:3 7958:1 7964:2 7990:1 7994:1 8013:1 8026:1 8031:1 8034:1 8035:1 8054:1 8116:1 8117:1 8122:1 8123:1 8124:1 8125:4 8126:1 8128:2 8135:2 8136:1 8155:1 8161:1 8166:1 8169:1 8180:1 8182:1 8191:1 8229:4 8268:1 8280:3 8282:2 8293:1 8322:1 8326:1 8328:1 8340:1 8362:1 8397:1 8406:1 8413:1 8423:1 8439:1 8441:1 8467:1 8484:1 8485:2 8493:1 8503:1 8505:1 8515:1 8531:1 8539:1 8556:3 8558:2 8575:1 8620:1 8621:1 8670:2 8682:1 8694:1 8697:1 8705:1 8716:1 8719:3 8747:1 8748:2 8752:2 8801:1 8803:1 8813:1 8816:1 8817:1 8853:1 8878:1 8898:1 8907:1 8926:1 8930:2 8942:2 8944:2 8954:1 8962:1 8971:1 8979:1 8991:1 8997:1 9000:1 9007:1 9010:1 9016:1 9023:1 9028:1 9030:1 9048:1 9062:1 9063:2 9068:1 9073:1 9080:1 9118:1 9179:2 9180:1 9215:1 9236:2 9242:1 9244:1 9249:2 9257:1 9267:1 9317:1 9325:1 9385:1 9405:2 9418:1 9420:2 9442:1 9451:1 9460:1 9473:3 9484:2 9486:1 9495:1 9507:1 9533:2 9544:1 9569:1 9571:1 9594:1 9597:1 9605:1 9621:1 9683:1 9687:1 9696:1 9697:1 9701:1 9707:2 9712:1 9741:1 9757:1 9770:1 9773:1 9778:1 9783:1 9788:1 9793:1 9799:3 9803:1 9822:1 9823:3 9844:1 9858:1 9870:1 9877:5 9882:3 9883:1 9917:4 9925:1 9935:1 9947:1 9955:2 9963:1 9974:1 9996:1 10013:1 10046:2 10054:1 10066:1 10070:2 10075:1 10076:1 10085:1 10121:1 10126:1 10132:1 10136:2 10153:2 10167:2 10183:1 10187:1 10199:1 10254:1 10259:1 10276:1 10281:1 10287:3 10289:3 10296:3 10299:2 10300:3 10304:2 10307:1 10308:2 10312:1 10322:1 10345:1 10346:1 10371:2 10398:1 10404:1 10406:1 10410:1 10417:1 10427:2 10429:1 10477:1 10498:1 10515:1 10526:1 10564:1 10573:1 10574:1 10580:1 10585:1 10595:2 10637:2 10646:1 10652:2 10653:1 10654:1 10664:1 10684:2 10698:1 10717:2 10724:1 10750:1 10754:2 10778:1 10784:1 10786:1 10799:2 10804:1 10821:2 10832:1 10833:1 10834:1 10850:1 10855:1 10872:1 10907:1 10933:1 10940:2 10965:2 10973:2 10977:1 10989:1 10994:4 10995:1 11001:2 11046:1 11056:1 11062:1 11067:1 11071:1 11081:1 11093:1 11109:1 11116:1 11140:1 11149:1 11154:1 11170:1 11176:2 11222:1 11229:1 11245:1 11247:1 11252:2 11291:1 11304:1 11313:1 11354:3 11355:2 11375:1 11387:1 11388:1 11389:1 11393:1 11394:1 11401:1 11410:2 11414:1 11416:1 11421:1 11422:1 11437:1 11447:1 11477:1 11499:3 11501:2 11515:1 11532:1 11536:1 11552:1 11606:1 11611:1 11619:1 11639:1 11661:2 11662:1 11671:1 11688:2 11689:1 11699:1 11704:1 11735:1 11756:1 11778:1 11860:1 11876:2 11888:2 11889:1 11903:1 11933:1 11945:1 11960:1 12007:1 12009:1 12013:1 12018:1 12021:1 12023:1 12039:1 12152:1 12156:1 12157:1 12167:2 12169:1 12214:2 12234:1 12235:2 12236:1 12242:1 12243:1 12250:1 12261:1 12262:2 12265:1 12271:6 12276:1 12300:2 12313:2 12369:1 12385:1 12402:2 12404:5 12409:2 12468:1 12472:11 12502:1 12522:1 12526:1 12539:1 12557:1 12591:1 12640:1 12641:2 12661:1 12687:1 12701:1 12710:3 12733:1 12737:2 12743:3 12766:1 12768:1 12775:3 12778:1 12790:1 12856:1 12885:1 12893:1 12894:2 12896:1 12910:1 12919:1 12932:2 12942:1 12945:1 12951:1 12970:1 12974:2 12982:2 12995:1 13001:1 13016:1 13018:1 13033:1 13040:1 13053:1 13067:1 13068:1 13080:1 13086:1 13097:1 13120:2 13126:4 13133:1 13155:1 13170:1 13186:1 13187:1 13211:1 13247:1 13263:1 13270:1 13276:2 13295:4 13310:1 13316:1 13332:1 13366:1 13367:1 13371:1 13379:1 13388:1 13441:1 13459:1 13464:1 13476:1 13498:1 13501:1 13506:2 13557:1 13563:1 13586:1 13597:1 13599:1 13618:1 13628:2 13629:2 13666:1 13676:1 13691:1 13692:1 13701:1 13704:1 13708:1 13723:1 13744:1 13751:1 13757:1 13805:1 13806:1 13825:1 13875:1 13882:1 13894:1 13906:1 13911:1 13945:1 13969:2 13973:1 13989:1 13991:2 13996:3 14036:3 14045:1 14093:1 14106:1 14154:1 14193:1 14202:1 14210:1 14211:1 14222:1 14233:1 14240:1 14249:1 14259:1 14267:1 14297:1 14303:2 14306:1 14320:2 14339:1 14350:1 14403:1 14418:1 14419:1 14422:1 14430:1 14439:1 14443:1 14445:2 14451:3 14487:3 14492:1 14506:1 14508:1 14564:2 14577:1 14583:1 14586:1 14604:1 14612:1 14613:1 14618:1 14622:1 14628:1 14634:1 14635:1 14638:2 14643:1 14655:1 14667:1 14672:1 14696:1 14705:1 14724:1 14728:1 14769:3 14796:1 14797:1 14809:1 14818:1 14824:1 14841:2 14843:1 14851:2 14881:1 14887:1 14901:1 14907:1 14908:1 14918:1 14924:9 14945:1 14952:2 14967:1 14973:2 14978:1 15002:1 15012:8 15018:1 15039:2 15073:1 15080:1 15083:1 15095:1 15097:1 15144:1 15145:1 15166:1 15170:3 15173:1 15177:1 15187:2 15188:2 15193:1 15195:1 15196:2 15197:1 15207:1 15263:1 15272:1 15297:1 15301:1 15309:1 15314:1 15345:1 15352:1 15372:1 15399:2 15402:1 15419:1 15442:1 15483:3 15495:2 15513:1 15520:2 15538:1 15539:1 15560:1 15567:2 15568:1 15578:1 15582:2 15584:1 15629:1 15639:1 15655:2 15723:1 15762:2 15775:2 15778:1 15786:1 15798:1 15839:2 15842:1 15863:1 15867:1 15896:1 15907:1 15915:1 15951:1 15962:1 16028:2 16055:1 16070:1 16095:1 16108:1 16117:4 16119:1 16129:2 16139:1 16157:1 16162:1 16238:1 16319:1 16324:1 16329:1 16331:1 16337:1 16347:2 16351:1 16399:3 16434:2 16435:3 16457:1 16462:1 16477:1 16489:3 16505:3 16518:2 16519:1 16531:1 16555:1 16570:2 16583:1 16592:2 16612:1 16625:3 16674:4 16729:2 16733:2 16743:2 16756:1 16762:1 16777:4 16781:1 16782:1 16807:1 16808:1 16824:1 16832:1 16837:1 16865:1 16873:1 16915:1 16916:1 16925:1 16932:2 16934:1 16985:1 17009:1 17016:1 17094:1 17097:1 17098:2 17110:5 17127:1 17132:1 17183:1 17205:1 17235:1 17262:1 17265:1 17266:2 17276:1 17317:1 17326:2 17335:1 17342:1 17376:1 17410:1 17415:1605 17425:1 17430:1 17433:1 17473:1 17476:1 17478:1 17505:2 17547:1 17594:1 17600:1 17601:1 17613:1 17639:1 17644:1 17646:1 17650:1 17706:2 17814:1 17824:1 17831:1 17845:1 17869:1 17871:1 17892:1 17900:1 17911:1 17917:1 17928:1 17931:1 17936:1 17946:2 17964:1 17978:1 17980:1 17989:1 18074:1 18085:1 18100:1 18109:1 18119:2 18121:1 18142:1 18167:1 18172:2 18175:1 18187:1 18210:1 18232:5 18275:4 18277:1 18303:1 18306:1 18314:1 18319:1 18320:1 18324:1 18335:1 18355:1 18359:3 18360:1 18364:1 18365:1 18378:1 18392:1 18404:1 18410:1 18411:1 18412:1 18417:1 18432:1 18437:2 18444:1 18457:1 18506:1 18539:1 18543:2 18545:2 18596:1 18603:1 18608:1 18619:1 18626:1 18632:2 18637:1 18663:1 18687:1 18703:1 18707:1 18723:1 18724:1 18753:1 18754:1 18755:2 18770:1 18786:1 18801:1 18802:1 18805:2 18808:1 18838:1 18845:1 18861:1 18875:2 18876:1 18878:1 18884:1 18886:1 18890:1 18893:1 18901:1 18908:1 18912:1 18928:1 18932:1 18936:4 18944:1 18947:1 18966:1 19004:1 19011:1 19013:1 19014:1 19015:1 19033:3 19050:1 19064:1 19109:1 19137:2 19143:1 19148:1 19176:1 19177:1 19186:1 19205:3 19213:1 19223:1 19225:1 19229:1 19233:1 19252:1 19268:1 19330:1 19358:1 19370:1 19385:1 19395:1 19407:1 19441:1 19455:1 19492:1 19500:2 19502:1 19520:1 19522:1 19541:1 19554:1 19556:6 19559:1 19563:1 19568:2 19574:1 19577:1 19582:2 19585:1 19593:1 19607:1 19609:1 19689:1 19695:1 19701:1 19727:1 19731:2 19733:1 19747:1 19751:1 19753:1 19769:1 19785:2 19796:1 19797:1 19810:1 19813:1 19819:3 19831:1 19852:1 19857:1 19877:1 19889:2 19894:1 19905:2 19910:1 19915:1 19918:1 19923:1 19933:1 19942:1 19950:1 19956:1 19965:1 19990:1 20016:2 20025:2 20039:1 20041:3 20069:2 20070:1 20073:2 20085:1 20089:2 20143:1 20152:1 20169:1 20171:1 20178:1 20193:1 20233:1 20260:1 20270:1 20274:1 20322:1 20325:2 20327:1 20332:1 20334:1 20343:1 20395:2 20398:1 20399:1 20401:1 20411:4 20421:1 20429:2 20447:2 20452:1 20454:1 20469:1 20490:2 20519:1 20525:2 20526:2 20528:1 20546:1 20548:1 20551:2 20554:1 20556:2 20559:4 20563:1 20571:1 20574:1 20590:1 20592:1 20596:1 20608:1 20630:1 20680:1 20682:1 20683:1 20684:1 20685:1 20730:1 20731:2 20747:1 20752:4 20755:2 20775:1 20778:1 20803:2 20811:1 20828:2 20832:1 20879:1 20893:2 20906:1 20927:3 20939:2 20960:7 20967:1 20973:1 21002:1 21022:1 21028:1 21029:1 21057:1 21072:1 21087:2 21100:2 21103:1 21167:1 21179:1 21186:1 21199:1 21225:1 21262:1 21284:1 21287:1 21312:1 21341:1 21342:1 21346:1 21354:2 21363:1 21365:1 21375:1 21376:1 21382:1 21397:1 21414:1 21420:2 21442:1 21472:1 21480:2 21483:2 21496:1 21513:2 21534:1 21536:1 21547:1 21549:1 21550:1 21571:2 21584:1 21608:1 21609:1 21614:1 21633:4 21640:1 21645:2 21657:2 21683:1 21703:2 21709:1 21728:1 21735:1 21737:1 21753:1 21758:1 21784:1 21789:1 21816:3 21817:1 21834:1 21837:1 21838:1 21844:2 21847:1 21857:1 21869:1 21885:1 21891:1 21928:1 21930:1 21933:1 21951:1 21965:1 21966:1 21971:1 21979:1 21985:1 22008:2 22015:1 22026:1 22043:1 22054:3 22067:1 22080:1 22085:1 22105:1 22125:3 22156:1 22164:1 22165:1 22171:1 22215:1 22244:1 22268:1 22288:3 22298:1 22304:1 22336:1 22362:1 22366:1 22374:1 22381:2 22384:1 22386:1 22389:1 22398:1 22400:1 22448:1 22449:1 22450:1 22466:1 22491:1 22493:1 22542:2 22545:2 22547:1 22575:1 22598:1 22604:1 22657:1 22666:3 22686:2 22687:2 22722:1 22724:1 22742:1 22765:1 22779:1 22784:1 22791:1 22798:1 22810:1 22814:1 22843:1 22859:1 22891:3 22904:1 22905:1 22941:1 22946:1 22962:2 22965:1 22991:2 22996:1 23010:1 23013:1 23015:2 23025:1 23038:1 23073:2 23096:2 23100:1 23136:1 23142:1 23144:1 23147:1 23149:2 23153:1 23158:1 23171:1 23189:2 23234:1 23252:1 23263:1 23277:2 23285:1 23290:1 23291:1 23307:1 23308:3 23335:1 23360:1 23369:1 23403:2 23414:1 23422:1 23493:3 23496:2 23559:1 23563:1 23594:2 23609:1 23634:1 23646:1 23660:2 23669:1 23681:2 23683:1 23689:1 23692:4 23699:2 23717:2 23718:1 23719:1 23720:1 23721:1 23723:1 23766:2 23777:2 23779:1 23791:1 23801:1 23848:3 23853:2 23862:1 23865:1 23871:1 23874:1 23875:1 23882:1 23907:2 23911:1 23912:1 23913:2 23919:1 23946:1 23953:1 23955:1 23966:1 23970:1 23973:1 23985:1 23994:1 23996:1 23998:1 24017:1 24022:1 24054:1 24066:1 24092:2 24093:1 24094:1 24122:1 24151:1 24153:2 24160:1 24166:1 24271:1 24288:1 24290:1 24310:1 24331:1 24334:2 24340:3 24423:1 24434:1 24439:1 24456:1 24459:1 24463:2 24470:2 24473:1 24497:1 24507:1 24551:1 24562:1 24570:1 24571:1 24586:1 24602:1 24603:1 24612:1 24704:1 24723:1 24733:1 24740:1 24758:1 24807:1 24809:1 24871:1 24893:1 24896:1 24904:1 24936:1 24940:1 24956:1 24965:1 24969:4 24972:1 24982:1 25029:1 25033:1 25060:1 25069:1 25096:1 25097:1 25112:1 25114:2 25115:3 25149:1 25159:1 25181:1 25221:1 25234:1 25240:2 25242:3 25247:1 25249:1 25262:1 25265:1 25267:1 25279:1 25288:1 25306:1 25309:1 25323:1 25329:1 25333:4 25337:2 25354:1 25363:1 25372:1 25381:1 25386:1 25387:1 25392:1 25445:1 25460:1 25474:1 25496:2 25497:1 25505:1 25507:1 25508:1 25513:3 25517:2 25518:1 25519:1 25523:1 25525:2 25550:1 25561:1 25567:2 25568:3 25570:1 25572:1 25584:1 25614:1 25619:1 25630:1 25634:1 25650:1 25651:1 25656:1 25672:3 25715:2 25738:2 25761:1 25779:1 25781:1 25782:1 25792:1 25793:1 25796:1 25802:2 25806:1 25820:2 25822:1 25824:1 25826:1 25827:3 25834:1 25837:2 25839:1 25861:1 25870:1 25871:2 25872:1 25900:3 25925:1 25927:3 25928:1 25930:1 25957:1 25959:1 25988:2 25994:1 25997:1 26007:1 26019:1 26032:1 26072:1 26099:1 26100:1 26107:1 26123:1 26171:2 26204:1 26211:1 26260:1 26268:1 26283:1 26289:2 26317:1 26319:1 26335:1 26346:1 26349:1 26368:1 26406:2 26413:1 26439:1 26446:1 26448:1 26484:1 26485:1 26508:15 26513:1 26530:1 26539:1 26542:1 26547:2 26564:1 26567:1 26576:1 26610:3 26619:1 26622:1 26645:1 26655:3 26662:1 26692:8 26733:1 26764:2 26787:1 26800:1 26807:1 26813:1 26834:2 26852:2 26864:2 26867:1 26882:2 26886:1 26904:1 26921:1 26944:1 26946:2 26952:1 26953:2 26965:1 26966:2 26975:1 26977:1 26982:1 27012:1 27016:2 27019:2 27020:4 27063:1 27073:1 27074:1 27078:2 27096:3 27150:3 27154:1 27179:1 27202:1 27227:1 27236:1 27241:1 27247:1 27248:1 27309:3 27333:1 27379:1 27390:1 27394:1 27396:1 27402:2 27407:1 27433:1 27434:1 27440:1 27447:1 27477:1 27491:1 27492:1 27521:1 27530:1 27534:1 27547:2 27553:2 27564:1 27569:1 27572:1 27590:1 27598:1 27619:1 27635:1 27637:1 27638:1 27643:2 27652:1 27667:1 27669:1 27672:1 27683:3 27689:1 27706:1 27715:3 27716:3 27723:2 27730:1 27734:1 27739:3 27765:1 27775:4 27778:1 27784:2 27792:1 27797:1 27812:1 27820:1
8 1:4 8:1 21:1 40:1 43:1 46:1 47:2 83:2 88:1 102:1 121:1 125:1 132:1 148:1 160:1 162:1 163:1 181:1 190:1 194:4 214:1 234:1 240:3 250:1 279:1 303:1 327:3 328:1 329:1 354:1 369:2 416:2 432:1 441:1 451:1 477:1 486:1 494:1 567:1 575:1 587:2 594:1 605:4 627:5 656:1 659:1 667:4 683:1 688:1 771:2 784:1 796:1 843:4 850:1 856:1 869:1 870:1 876:4 891:1 906:1 925:1 930:3 934:2 969:1 970:1 973:3 1045:1 1050:1 1052:1 1068:1 1074:1 1086:1 1105:1 1129:3 1147:1 1157:1 1170:1 1172:2 1176:1 1182:1 1187:1 1190:1 1191:1 1201:1 1202:1 1205:1 1210:1 1221:1 1222:1 1233:1 1238:1 1241:1 1243:1 1244:1 1250:1 1251:1 1253:1 1255:1 1265:1 1270:1 1278:1 1296:1 1311:1 1323:1 1324:1 1332:1 1348:1 1362:1 1371:1 1374:1 1389:1 1393:3 1395:5 1399:1 1411:2 1424:3 1432:4 1446:1 1468:1 1475:3 1496:1 1509:3 1523:2 1525:1 1553:1 1565:2 1576:1 1578:1 1588:1 1607:1 1612:1 1626:2 1640:1 1644:1 1659:1 1663:2 1669:1 1670:2 1681:1 1682:1 1688:1 1692:1 1696:1 1697:2 1717:1 1720:1 1732:1 1738:1 1740:1 1744:1 1762:1 1769:1 1774:1 1776:2 1787:4 1791:1 1797:1 1801:2 1815:1 1818:2 1824:1 1833:1 1835:1 1844:2 1849:1 1856:1 1858:1 1859:1 1871:1 1883:1 1887:1 1926:1 1928:2 1956:1 1958:1 1962:2 1997:1 2006:1 2012:1 2057:4 2090:1 2124:1 2145:1 2175:1 2176:1 2177:3 2179:1 2181:1 2185:3 2188:1 2193:1 2196:2 2201:7 2203:2 2208:2 2209:1 2211:2 2214:1 2216:1 2248:1 2252:1 2260:3 2274:1 2285:1 2288:1 2295:1 2334:1 2378:1 2380:1 2418:1 2430:1 2437:1 2510:1 2547:1 2557:1 2563:1 2565:1 2569:1 2583:1 2597:1 2598:1 2599:1 2602:3 2621:1 2646:2 2649:1 2650:1 2662:1 2676:2 2687:1 2703:1 2705:1 2713:2 2731:1 2732:1 2755:1 2760:1 2766:2 2774:6 2793:1 2801:2 2803:2 2811:1 2818:1 2831:3 2840:1 2854:1 2869:1 2880:1 2883:1 2885:1 2886:1 2897:1 2908:2 2948:1 2983:1 2995:1 2996:1 3002:1 3010:1 3017:1 3062:2 3072:1 3090:1 3092:1 3122:1 3127:1 3131:3 3134:3 3137:4 3138:1 3148:1 3158:4 3164:1 3174:1 3195:1 3216:1 3227:1 3233:1 3258:1 3313:2 3324:1 3325:1 3339:1 3362:1 3383:1 3406:1 3423:1 3434:1 3442:1 3443:2 3481:1 3491:1 3496:1 3506:1 3518:2 3530:2 3537:1 3538:1 3550:1 3574:1 3585:1 3614:1 3621:2 3625:2 3630:1 3646:1 3647:1 3650:1 3680:1 3682:1 3688:1 3692:1 3709:2 3715:1 3724:2 3728:2 3732:1 3738:1 3757:2 3758:1 3764:1 3795:1 3803:1 3807:1 3810:1 3815:1 3818:3 3826:1 3836:2 3857:2 3858:5 3916:2 3923:1 3928:1 3929:1 3934:1 3940:1 3970:1 3983:1 3998:1 4002:1 4011:2 4020:2 4030:2 4031:1 4035:4 4042:1 4043:1 4052:1 4068:1 4094:1 4109:1 4115:1 4126:1 4129:5 4131:1 4152:2 4169:1 4174:1 4196:1 4224:1 4230:2 4235:1 4249:1 4250:1 4251:1 4281:2 4290:1 4315:1 4342:2 4351:1 4384:1 4400:2 4426:2 4433:2 4459:1 4462:2 4471:1 4474:1 4497:3 4498:1 4500:1 4503:1 4510:1 4533:1 4536:1 4546:1 4567:1 4645:1 4648:13 4669:1 4670:1 4673:1 4677:1 4713:1 4767:3 4787:5 4789:5 4792:1 4796:1 4797:1 4800:2 4802:2 4810:1 4813:1 4814:7 4840:1 4871:2 4903:1 4944:1 4947:4 4972:1 4994:1 4997:1 5002:1 5005:1 5010:1 5013:1 5023:1 5044:1 5047:1 5074:1 5084:1 5092:1 5102:1 5104:2 5123:1 5126:2 5136:1 5170:1 5171:1 5182:1 5201:1 5212:1 5222:2 5224:1 5248:1 5253:1 5269:1 5275:1 5286:1 5296:1 5301:1 5304:1 5309:2 5311:1 5313:1 5315:2 5319:1 5320:1 5322:1 5379:1 5413:1 5422:1 5423:1 5436:1 5437:1 5446:1 5486:1 5585:1 5587:2 5593:1 5609:1 5643:3 5708:3 5710:2 5739:4 5755:2 5760:1 5773:1 5804:2 5808:1 5828:1 5832:1 5862:1 5867:1 5896:1 5910:1 5913:3 5935:1 5942:5 5945:1 5950:1 5961:1 5993:4 6027:1 6034:4 6037:1 6041:1 6044:1 6045:3 6046:1 6047:1 6048:2 6052:2 6053:1 6058:3 6060:4 6063:1 6074:1 6089:1 6100:1 6101:1 6121:1 6140:1 6147:2 6174:1 6187:2 6191:2 6203:1 6206:1 6216:1 6221:1 6256:1 6257:1 6259:1 6265:1 6268:1 6288:1 6295:1 6327:1 6330:1 6338:1 6353:1 6373:1 6375:1 6416:1 6418:1 6431:1 6433:1 6437:2 6457:2 6462:2 6465:1 6475:1 6486:1 6489:4 6493:4 6497:1 6507:1 6508:1 6512:2 6519:5 6520:1 6521:2 6522:1 6529:1 6579:1 6591:1 6592:1 6596:1 6597:1 6612:1 6620:1 6625:2 6645:1 6675:1 6683:1 6696:1 6703:1 6707:1 6716:1 6721:1 6722:1 6737:1 6739:1 6748:1 6768:1 6771:1 6779:1 6792:1 6816:3 6818:1 6838:1 6839:1 6852:1 6860:1 6890:1 6903:2 6914:2 6934:2 6941:2 6948:1 6954:1 6956:1 6960:3 6994:1 6999:1 7011:1 7048:4 7073:5 7077:2 7088:1 7106:1 7137:1 7144:1 7187:1 7231:1 7249:7 7250:2 7273:1 7274:3 7307:1 7311:1 7323:26 7344:6 7345:5 7369:1 7370:1 7381:2 7409:1 7414:1 7434:3 7488:2 7513:2 7525:1 7539:4 7550:1 7563:1 7566:1 7571:1 7590:1 7600:1 7603:1 7646:2 7650:2 7675:1 7677:1 7684:1 7696:1 7698:1 7701:1 7715:3 7789:1 7791:9 7812:1 7815:1 7817:1 7826:1 7843:1 7879:2 7884:1 7891:1 7898:1 7922:1 7929:1 7936:1 7949:2 7957:3 7958:1 7964:2 7990:1 7994:1 8013:1 8026:1 8031:1 8034:1 8035:1 8054:1 8116:1 8117:1 8122:1 8123:1 8124:1 8125:4 8126:1 8128:2 8135:2 8136:1 8155:1 8161:2 8166:1 8169:1 8176:1 8180:1 8182:1 8191:1 8229:4 8268:1 8280:3 8282:2 8293:1 8322:1 8326:1 8328:1 8340:1 8362:1 8397:1 8406:1 8413:1 8423:1 8439:1 8441:1 8467:1 8484:1 8485:2 8493:1 8503:1 8505:1 8515:1 8531:1 8539:1 8556:3 8558:2 8575:1 8620:1 8621:1 8670:2 8682:1 8694:1 8697:1 8705:2 8716:1 8719:3 8747:1 8748:2 8752:2 8801:1 8803:1 8813:1 8816:1 8817:1 8853:1 8878:1 8898:1 8907:1 8926:1 8930:2 8942:2 8944:2 8954:1 8962:1 8971:1 8979:1 8991:1 8997:1 9000:2 9007:1 9010:1 9016:1 9023:1 9028:1 9030:1 9048:1 9062:1 9063:2 9068:1 9073:1 9080:1 9118:1 9179:2 9180:1 9215:1 9236:2 9242:1 9244:1 9249:2 9257:1 9267:1 9317:1 9325:1 9385:1 9405:2 9418:1 9420:2 9442:1 9451:1 9460:1 9473:3 9484:2 9486:1 9495:1 9507:1 9533:2 9544:1 9569:1 9571:1 9594:1 9597:1 9605:1 9621:1 9683:1 9687:1 9696:1 9697:1 9701:1 9707:2 9712:1 9741:1 9757:1 9770:1 9773:1 9778:1 9783:1 9788:1 9793:1 9799:3 9803:1 9822:1 9823:3 9844:1 9858:1 9870:1 9877:5 9882:3 9883:1 9917:4 9925:1 9935:1 9947:1 9955:2 9963:1 9974:1 9996:1 10013:1 10046:2 10054:1 10066:1 10070:2 10075:1 10076:1 10083:1 10085:1 10121:1 10126:1 10132:1 10136:2 10153:2 10167:2 10183:1 10187:1 10199:1 10254:1 10259:1 10276:1 10281:1 10287:3 10289:3 10296:3 10299:2 10300:3 10304:2 10307:1 10308:2 10312:1 10315:1 10322:1 10345:1 10346:1 10371:2 10398:1 10404:1 10406:1 10410:1 10417:1 10427:2 10429:1 10477:1 10498:1 10515:1 10526:1 10564:1 10573:1 10574:1 10580:1 10585:1 10595:2 10637:2 10646:1 10652:2 10653:1 10654:1 10664:1 10684:2 10698:1 10717:2 10724:1 10750:1 10754:2 10778:1 10784:1 10786:1 10799:2 10804:1 10821:2 10832:1 10833:1 10834:1 10850:1 10855:1 10872:1 10907:1 10933:1 10940:2 10965:2 10973:2 10977:1 10989:1 10994:4 10995:1 11001:2 11046:1 11052:1 11054:1 11056:1 11062:1 11067:1 11071:1 11081:1 11093:1 11109:1 11116:1 11140:1 11149:1 11154:1 11170:1 11176:2 11222:1 11229:1 11245:1 11247:1 11252:2 11291:1 11304:1 11313:1 11354:3 11355:2 11375:1 11387:1 11388:1 11389:1 11393:1 11394:1 11401:1 11410:2 11414:1 11416:1 11421:1 11422:1 11437:1 11447:1 11477:1 11499:3 11501:2 11515:1 11532:1 11536:1 11552:1 11606:1 11611:1 11619:1 11639:1 11654:1 11661:2 11662:1 11671:1 11688:2 11689:1 11699:1 11704:1 11735:1 11756:1 11778:1 11860:1 11876:2 11888:2 11889:1 11903:1 11933:1 11945:1 11960:1 12007:1 12009:1 12013:1 12018:1 12021:1 12023:1 12039:1 12152:1 12156:1 12157:1 12167:2 12169:1 12214:2 12234:1 12235:2 12236:1 12242:1 12243:1 12250:1 12261:1 12262:2 12265:1 12271:7 12276:1 12300:2 12313:2 12369:1 12385:1 12402:2 12404:5 12409:2 12468:1 12472:13 12502:1 12522:1 12526:1 12539:1 12557:1 12591:1 12640:1 12641:2 12661:1 12687:1 12701:1 12710:3 12733:1 12737:2 12743:3 12766:1 12768:1 12775:3 12778:1 12790:1 12856:1 12885:1 12893:1 12894:2 12896:1 12910:1 12919:1 12932:2 12942:1 12945:1 12951:1 12970:1 12974:2 12982:2 12995:1 13001:1 13016:1 13018:1 13033:1 13040:1 13053:1 13067:1 13068:1 13080:1 13086:1 13097:1 13120:2 13126:4 13133:1 13155:1 13170:1 13186:1 13187:1 13211:1 13247:1 13263:1 13270:1 13276:2 13295:4 13310:1 13316:1 13332:1 13366:1 13367:1 13371:1 13379:1 13388:1 13401:1 13441:1 13459:1 13464:1 13476:1 13498:1 13501:1 13506:2 13557:1 13563:2 13586:1 13597:1 13599:1 13618:1 13628:2 13629:2 13666:1 13676:1 13691:1 13692:1 13701:1 13704:1 13708:1 13723:1 13744:1 13751:1 13757:1 13805:1 13806:1 13825:1 13875:1 13882:1 13889:1 13894:1 13906:1 13911:1 13945:1 13969:2 13973:1 13989:1 13991:2 13996:3 14036:3 14045:1 14093:1 14106:1 14154:1 14193:1 14202:1 14210:1 14211:1 14222:1 14233:1 14240:1 14249:1 14259:1 14267:1 14297:1 14303:2 14306:1 14320:2 14339:1 14350:1 14380:1 14403:1 14418:1 14419:1 14422:1 14430:1 14439:1 14443:1 14445:2 14451:3 14487:3 14492:1 14506:1 14508:1 14564:2 14577:1 14583:1 14586:1 14604:1 14612:1 14613:1 14618:1 14622:1 14628:1 14634:1 14635:1 14638:2 14643:1 14655:1 14659:1 14667:2 14672:1 14696:1 14705:1 14724:1 14728:1 14769:3 14796:1 14797:1 14809:1 14818:1 14824:1 14841:2 14843:1 14851:2 14881:1 14887:1 14901:1 14907:1 14908:1 14918:1 14924:10 14945:1 14951:1 14952:2 14967:1 14973:2 14978:1 14993:1 15002:1 15012:8 15018:1 15039:2 15073:1 15080:1 15083:1 15095:1 15097:1 15144:1 15145:1 15166:1 15170:3 15173:1 15177:1 15187:2 15188:2 15193:1 15195:1 15196:2 15197:1 15207:1 15263:1 15266:1 15272:1 15297:1 15301:1 15309:1 15314:2 15345:1 15352:1 15372:1 15399:2 15402:1 15419:1 15442:1 15483:3 15495:2 15513:1 15520:2 15538:1 15539:1 15560:1 15567:2 15568:1 15571:1 15578:1 15582:2 15584:1 15629:1 15639:1 15655:2 15723:1 15762:2 15775:2 15778:1 15786:1 15798:1 15839:2 15842:1 15863:2 15867:1 15896:1 15907:1 15915:1 15951:1 15962:1 16028:2 16055:1 16070:1 16095:1 16108:1 16117:4 16119:1 16129:2 16139:1 16157:1 16162:1 16221:1 16238:1 16319:1 16324:1 16329:1 16331:1 16337:1 16347:2 16351:1 16399:3 16434:2 16435:3 16457:1 16462:2 16477:1 16489:3 16505:3 16518:2 16519:1 16525:1 16531:1 16555:1 16570:2 16583:1 16592:2 16612:1 16625:3 16674:4 16729:2 16733:2 16743:3 16756:1 16762:1 16777:4 16781:1 16782:1 16807:1 16808:1 16824:1 16832:1 16837:1 16865:1 16873:1 16915:1 16916:1 16925:1 16932:2 16934:1 16985:1 17009:1 17016:1 17094:1 17097:1 17098:2 17110:5 17127:1 17132:1 17183:1 17205:1 17235:1 17262:1 17265:1 17266:2 17276:1 17317:1 17326:2 17335:1 17342:1 17376:1 17410:1 17415:1662 17425:1 17430:1 17433:1 17473:1 17476:1 17478:1 17486:1 17505:2 17547:1 17594:1 17600:1 17601:1 17613:1 17639:1 17644:1 17646:1 17650:1 17706:2 17753:1 17814:1 17820:2 17824:1 17831:1 17845:1 17869:1 17871:1 17892:1 17900:1 17911:1 17917:1 17928:1 17931:1 17936:1 17944:1 17946:2 17964:1 17978:1 17980:1 17989:1 18009:1 18074:1 18085:1 18100:1 18109:1 18119:2 18121:1 18142:1 18167:1 18172:3 18175:1 18187:1 18210:1 18232:5 18275:4 18277:1 18303:1 18306:1 18314:1 18319:1 18320:1 18324:1 18326:1 18335:1 18355:1 18359:3 18360:1 18364:1 18365:1 18378:1 18384:1 18392:1 18404:1 18410:1 18411:1 18412:1 18417:1 18427:1 18432:1 18437:2 18444:1 18457:1 18506:1 18539:1 18543:2 18545:2 18596:1 18603:1 18608:1 18619:1 18626:2 18632:2 18637:1 18663:1 18687:1 18703:1 18707:1 18723:1 18724:1 18753:1 18754:1 18755:2 18757:1 18770:1 18786:1 18801:1 18802:1 18805:2 18808:1 18838:1 18845:1 18861:1 18875:2 18876:1 18878:2 18884:1 18886:1 18890:1 18893:1 18901:1 18908:1 18912:1 18928:1 18932:1 18936:4 18944:1 18947:1 18966:1 19004:1 19011:1 19013:1 19014:1 19015:1 19033:3 19050:1 19064:1 19106:1 19109:1 19137:2 19143:1 19148:1 19176:1 19177:1 19186:1 19205:3 19213:1 19223:1 19225:1 19229:1 19233:1 19252:1 19268:1 19330:1 19358:1 19370:1 19385:1 19395:1 19407:1 19409:1 19441:1 19455:1 19492:1 19500:2 19502:1 19520:1 19522:1 19541:1 19554:1 19556:6 19559:1 19563:1 19568:2 19574:1 19577:1 19582:2 19585:1 19593:1 19607:1 19609:1 19689:1 19695:1 19701:1 19727:1 19731:2 19733:1 19747:1 19751:1 19753:1 19769:1 19785:2 19796:1 19797:1 19810:1 19813:1 19819:3 19831:1 19852:1 19857:1 19877:1 19889:2 19894:1 19905:2 19910:1 19915:1 19918:1 19923:1 19933:1 19942:1 19950:1 19956:1 19959:1 19965:1 19990:1 20016:2 20025:2 20039:1 20041:3 20059:1 20069:2 20070:1 20073:2 20085:1 20089:2 20143:1 20152:1 20169:2 20171:1 20178:1 20188:1 20193:1 20233:1 20260:1 20270:1 20274:1 20322:1 20325:3 20327:1 20332:1 20334:1 20343:1 20395:2 20398:1 20399:1 20401:1 20411:4 20421:1 20429:2 20447:2 20452:1 20454:1 20469:1 20490:2 20519:1 20525:2 20526:2 20528:1 20529:1 20546:1 20548:1 20551:2 20554:1 20556:2 20559:4 20563:1 20571:1 20574:1 20590:1 20592:1 20596:1 20608:1 20630:1 20680:1 20682:1 20683:1 20684:1 20685:1 20730:1 20731:2 20747:1 20752:4 20755:2 20775:1 20778:1 20803:2 20811:1 20828:2 20832:1 20879:1 20893:2 20906:1 20927:4 20939:2 20960:7 20967:1 20973:1 21002:1 21022:1 21028:1 21029:1 21057:1 21072:1 21087:2 21100:2 21103:1 21167:1 21179:1 21186:1 21199:1 21225:1 21262:1 21284:1 21287:1 21304:1 21312:1 21341:1 21342:1 21346:1 21354:2 21363:1 21365:1 21375:1 21376:1 21382:1 21397:1 21414:1 21420:2 21442:1 21472:1 21480:2 21483:2 21496:1 21513:2 21534:1 21536:1 21547:1 21549:1 21550:1 21571:2 21584:1 21608:1 21609:1 21614:1 21633:4 21640:1 21645:2 21657:2 21683:1 21703:2 21705:1 21709:1 21728:1 21735:1 21737:1 21742:1 21753:1 21758:1 21784:1 21789:1 21816:3 21817:1 21834:1 21837:1 21838:1 21844:2 21847:1 21857:1 21869:1 21885:1 21891:1 21928:1 21930:1 21933:1 21951:1 21965:1 21966:1 21971:1 21979:1 21984:1 21985:1 22008:2 22015:1 22026:1 22043:1 22054:3 22067:1 22080:1 22085:1 22105:1 22125:3 22156:1 22164:1 22165:1 22171:1 22215:1 22244:1 22268:1 22288:3 22298:1 22304:1 22336:1 22362:1 22366:1 22374:1 22381:2 22384:1 22386:1 22389:1 22398:1 22400:1 22448:1 22449:1 22450:1 22466:1 22491:1 22493:1 22542:2 22545:2 22547:1 22575:1 22598:1 22604:1 22657:1 22666:3 22686:2 22687:2 22722:1 22724:1 22742:1 22765:1 22779:1 22784:1 22791:1 22798:1 22810:1 22814:1 22843:1 22859:1 22891:3 22904:1 22905:1 22935:1 22941:1 22946:1 22962:2 22965:1 22991:2 22996:1 23010:1 23013:1 23015:2 23025:1 23038:1 23073:2 23096:3 23100:1 23136:1 23142:1 23144:1 23147:1 23149:2 23152:1 23153:1 23158:1 23171:1 23189:2 23234:1 23252:1 23263:1 23273:1 23277:2 23285:1 23290:1 23291:1 23307:1 23308:3 23335:1 23360:1 23369:1 23403:2 23414:1 23422:1 23493:4 23496:2 23559:1 23563:1 23594:2 23609:1 23634:1 23646:1 23660:2 23669:1 23681:2 23683:1 23689:1 23692:5 23699:2 23717:2 23718:1 23719:1 23720:1 23721:1 23723:1 23766:2 23777:2 23779:1 23791:1 23801:1 23848:3 23853:2 23862:1 23865:1 23871:1 23874:1 23875:1 23882:1 23907:2 23911:1 23912:1 23913:2 23919:1 23946:1 23953:1 23955:1 23966:1 23970:1 23973:1 23985:1 23994:1 23996:1 23998:1 24017:1 24022:1 24054:1 24066:1 24092:2 24093:1 24094:1 24122:1 24151:1 24153:2 24160:1 24166:1 24271:1 24288:1 24290:1 24310:1 24331:1 24334:2 24340:3 24423:1 24434:1 24439:1 24456:1 24459:1 24463:2 24470:2 24473:1 24497:1 24507:1 24551:1 24562:1 24570:1 24571:1 24586:1 24602:1 24603:1 24612:1 24704:1 24723:1 24733:1 24740:1 24758:1 24807:1 24809:1 24871:1 24893:1 24896:1 24904:1 24936:1 24940:1 24956:1 24965:1 24969:5 24972:1 24982:1 25029:1 25033:1 25060:1 25069:1 25096:1 25097:1 25112:1 25114:2 25115:3 25149:1 25159:1 25181:1 25192:1 25221:1 25234:1 25240:2 25242:3 25247:1 25249:1 25262:1 25265:1 25267:1 25279:1 25282:1 25288:1 25306:1 25309:1 25323:1 25329:1 25333:4 25337:2 25354:1 25363:1 25372:1 25381:1 25386:1 25387:1 25392:1 25445:1 25460:1 25474:1 25496:2 25497:1 25505:1 25507:1 25508:1 25513:3 25517:2 25518:1 25519:1 25523:1 25525:2 25550:2 25561:1 25567:2 25568:3 25570:1 25572:1 25584:1 25614:1 25619:1 25630:1 25634:1 25650:1 25651:1 25656:1 25672:3 25715:2 25738:2 25761:1 25779:1 25781:1 25782:1 25792:2 25793:1 25796:1 25802:2 25806:1 25820:2 25822:1 25824:1 25826:1 25827:4 25834:1 25837:2 25839:1 25861:1 25870:1 25871:2 25872:1 25900:3 25925:1 25927:3 25928:1 25930:1 25957:1 25959:1 25988:2 25994:1 25997:1 26007:1 26019:1 26032:1 26072:1 26099:1 26100:1 26107:1 26115:1 26123:1 26171:2 26204:1 26211:1 26260:1 26268:1 26283:1 26289:2 26317:1 26319:1 26335:1 26346:1 26349:1 26368:1 26406:2 26413:1 26439:1 26446:1 26448:1 26484:1 26485:1 26508:15 26513:1 26530:1 26539:1 26542:1 26547:2 26564:1 26567:1 26576:1 26610:3 26619:1 26622:1 26645:1 26655:3 26662:1 26692:8 26733:1 26764:2 26777:1 26787:1 26800:1 26807:1 26813:1 26834:2 26852:2 26864:2 26867:1 26882:2 26886:1 26904:1 26921:1 26944:1 26946:2 26952:1 26953:2 26965:1 26966:2 26975:1 26977:1 26982:1 27012:1 27016:2 27019:2 27020:5 27063:1 27073:1 27074:1 27078:2 27096:3 27150:3 27154:1 27179:1 27202:1 27227:1 27236:1 27241:1 27247:1 27248:1 27309:3 27333:1 27379:1 27390:1 27394:1 27396:1 27402:2 27407:1 27433:1 27434:1 27440:1 27447:2 27477:1 27491:1 27492:1 27521:1 27530:1 27534:1 27547:2 27553:2 27564:1 27569:1 27572:1 27590:1 27598:1 27619:1 27635:1 27637:1 27638:1 27643:2 27652:1 27667:1 27669:1 27672:1 27683:3 27689:1 27706:1 27715:3 27716:3 27723:2 27730:1 27732:1 27734:1 27739:3 27765:1 27775:4 27778:1 27784:2 27792:1 27797:1 27812:1 27820:1
8 1:4 8:1 21:1 40:1 43:1 46:1 47:2 83:2 88:1 102:1 121:1 125:1 132:1 148:1 160:1 162:1 163:1 181:1 190:1 194:4 214:1 234:1 240:3 250:1 279:1 303:1 327:3 328:1 329:1 354:1 369:2 416:2 432:1 441:1 451:1 477:1 486:1 494:1 567:1 575:1 587:2 594:1 605:4 627:6 656:1 659:1 667:4 683:1 688:1 771:2 784:1 796:1 843:4 850:2 856:1 869:1 870:1 876:5 891:1 906:1 925:1 930:3 934:2 969:1 970:1 973:3 1045:1 1050:1 1052:1 1068:1 1074:1 1086:1 1093:1 1105:1 1129:3 1138:1 1147:1 1157:1 1170:1 1172:2 1176:1 1182:1 1187:1 1190:1 1191:1 1201:1 1202:1 1205:1 1210:1 1221:1 1222:1 1233:1 1238:1 1241:1 1243:1 1244:1 1250:1 1251:1 1253:1 1255:1 1265:1 1270:1 1278:1 1296:1 1311:1 1323:1 1324:1 1332:1 1348:1 1362:1 1371:1 1374:1 1379:1 1389:1 1393:4 1395:5 1399:1 1411:2 1424:3 1432:4 1446:1 1468:1 1472:1 1475:3 1496:1 1509:3 1523:2 1525:1 1553:1 1565:2 1576:1 1578:1 1580:1 1588:1 1607:1 1612:1 1626:2 1640:1 1644:1 1659:1 1663:2 1669:1 1670:2 1681:1 1682:1 1688:1 1692:1 1696:1 1697:2 1717:1 1720:1 1732:1 1738:1 1740:1 1744:1 1762:1 1769:1 1774:1 1776:2 1787:4 1791:1 1797:1 1801:2 1815:1 1818:2 1824:1 1833:1 1835:1 1844:2 1849:1 1856:1 1858:1 1859:1 1871:1 1883:1 1887:1 1926:1 1928:2 1943:1 1956:1 1958:1 1962:2 1997:1 2006:1 2012:1 2057:4 2090:1 2124:1 2145:1 2175:1 2176:1 2177:4 2179:1 2181:1 2185:3 2188:1 2193:1 2196:2 2201:7 2203:2 2208:2 2209:1 2211:2 2214:1 2216:1 2248:1 2252:1 2260:3 2274:1 2285:1 2288:1 2295:1 2334:1 2378:1 2380:1 2418:1 2430:1 2437:1 2510:1 2547:1 2557:1 2563:1 2565:1 2569:1 2583:1 2597:1 2598:1 2599:1 2602:3 2621:1 2646:2 2649:1 2650:1 2662:1 2676:2 2687:1 2701:1 2703:1 2705:1 2713:2 2731:1 2732:1 2755:1 2760:1 2766:2 2774:6 2793:2 2801:2 2803:2 2811:1 2818:1 2831:3 2840:1 2854:1 2869:1 2880:1 2883:1 2885:1 2886:1 2897:1 2908:2 2948:1 2983:1 2995:1 2996:1 3002:1 3010:1 3017:1 3062:2 3072:1 3090:1 3092:1 3122:1 3127:1 3131:3 3134:3 3137:4 3138:1 3148:1 3158:4 3164:1 3174:1 3195:1 3216:1 3227:1 3233:1 3258:1 3313:2 3324:1 3325:1 3339:1 3362:1 3383:1 3406:1 3423:1 3434:1 3442:1 3443:2 3481:1 3491:1 3496:1 3506:1 3516:1 3518:2 3530:2 3537:1 3538:1 3550:1 3555:1 3574:1 3585:1 3614:1 3621:2 3625:2 3630:1 3646:1 3647:1 3650:1 3680:1 3682:1 3688:1 3692:1 3709:2 3715:1 3724:2 3728:2 3732:1 3738:1 3757:2 3758:1 3764:1 3795:1 3803:1 3807:1 3810:1 3815:1 3818:3 3826:1 3836:2 3857:2 3858:5 3916:2 3923:1 3928:1 3929:1 3934:1 3940:1 3970:1 3983:1 3998:1 4002:1 4011:2 4020:2 4030:2 4031:1 4035:4 4042:1 4043:1 4052:1 4068:1 4094:1 4109:1 4115:1 4126:1 4129:5 4131:1 4152:2 4169:1 4174:1 4196:1 4224:1 4230:2 4235:1 4249:1 4250:1 4251:1 4281:2 4290:1 4315:1 4342:2 4351:1 4384:1 4400:2 4426:2 4433:2 4459:1 4462:2 4471:1 4474:1 4497:3 4498:1 4500:1 4503:1 4510:1 4533:1 4536:1 4546:1 4567:1 4645:1 4648:13 4658:1 4669:1 4670:1 4673:1 4677:1 4713:1 4767:3 4787:5 4789:5 4792:1 4796:1 4797:1 4800:2 4802:2 4808:1 4810:1 4813:1 4814:7 4840:1 4871:2 4903:1 4944:1 4947:4 4972:1 4994:1 4997:1 5002:1 5005:1 5010:1 5013:1 5023:1 5044:1 5047:1 5074:1 5084:1 5092:1 5102:1 5104:2 5123:1 5126:2 5136:1 5170:1 5171:1 5182:1 5201:1 5212:1 5222:2 5224:1 5248:1 5253:1 5269:1 5275:1 5286:1 5296:1 5299:1 5301:1 5304:1 5309:2 5311:1 5313:1 5315:2 5319:1 5320:1 5322:1 5379:1 5413:1 5422:1 5423:1 5436:1 5437:1 5446:1 5486:1 5585:1 5587:3 5593:1 5609:1 5643:3 5689:1 5708:3 5710:2 5739:4 5755:2 5760:1 5773:1 5795:1 5804:2 5808:1 5828:1 5832:1 5862:1 5867:1 5896:1 5910:1 5913:3 5935:1 5942:6 5945:1 5950:1 5961:1 5982:1 5993:4 6027:1 6034:4 6037:2 6041:1 6044:1 6045:3 6046:1 6047:1 6048:2 6052:2 6053:1 6058:3 6060:4 6063:1 6074:1 6089:1 6100:1 6101:1 6121:1 6140:1 6147:2 6174:1 6187:2 6191:2 6203:1 6206:1 6216:1 6221:1 6256:1 6257:1 6259:1 6265:1 6268:1 6288:1 6295:1 6327:1 6330:1 6338:1 6353:1 6373:1 6375:1 6416:1 6418:1 6431:1 6433:1 6437:2 6457:2 6462:2 6465:1 6475:1 6486:1 6489:4 6493:5 6497:1 6507:1 6508:1 6512:2 6519:5 6520:1 6521:2 6522:1 6529:2 6579:2 6591:1 6592:1 6596:1 6597:1 6612:1 6620:1 6625:2 6645:1 6675:1 6683:1 6696:1 6703:1 6707:1 6716:1 6721:1 6722:1 6737:1 6739:1 6748:1 6768:1 6771:1 6779:1 6792:1 6816:3 6818:1 6838:1 6839:1 6852:1 6860:1 6890:1 6903:2 6914:2 6934:2 6941:2 6943:1 6948:1 6954:1 6956:1 6960:3 6994:1 6999:1 7011:1 7048:4 7073:5 7077:2 7088:1 7106:1 7137:1 7144:1 7187:1 7231:1 7249:8 7250:2 7273:1 7274:3 7286:1 7307:1 7311:1 7323:27 7344:6 7345:5 7369:1 7370:1 7381:2 7409:1 7414:1 7434:3 7488:2 7513:2 7525:1 7539:4 7550:1 7563:1 7566:1 7571:1 7590:1 7600:1 7603:1 7646:2 7650:2 7675:1 7677:1 7684:1 7696:1 7698:1 7701:1 7706:1 7715:3 7789:1 7791:9 7812:1 7815:1 7817:1 7826:1 7843:1 7879:3 7884:1 7891:1 7898:1 7922:1 7929:1 7936:2 7949:2 7957:3 7958:1 7964:2 7990:1 7994:1 8013:1 8026:1 8031:1 8034:1 8035:1 8054:1 8116:1 8117:1 8122:1 8123:2 8124:1 8125:4 8126:1 8128:2 8135:2 8136:1 8155:1 8161:2 8166:1 8169:1 8176:1 8180:1 8182:1 8191:1 8229:4 8268:1 8280:3 8282:2 8293:2 8322:1 8326:1 8328:1 8340:1 8362:1 8397:1 8406:1 8413:1 8423:1 8437:1 8439:1 8441:1 8467:1 8484:1 8485:2 8493:1 8503:1 8505:1 8515:1 8531:1 8539:1 8556:3 8558:3 8575:1 8620:1 8621:1 8670:2 8682:1 8694:1 8697:1 8705:2 8716:1 8719:3 8747:1 8748:2 8752:2 8801:1 8803:1 8813:1 8816:1 8817:1 8828:1 8853:1 8878:1 8898:1 8907:1 8926:1 8930:2 8942:2 8944:2 8954:1 8962:1 8971:1 8979:1 8991:1 8997:1 9000:2 9007:1 9010:1 9016:1 9023:1 9028:1 9030:1 9034:1 9048:1 9062:1 9063:2 9068:2 9073:1 9080:1 9118:1 9179:2 9180:1 9215:1 9236:2 9242:1 9244:1 9249:2 9257:1 9267:1 9279:1 9317:1 9325:1 9385:1 9405:2 9418:1 9420:2 9442:1 9451:1 9460:1 9473:3 9484:2 9486:1 9495:1 9507:1 9533:2 9544:1 9569:1 9571:1 9594:1 9597:1 9605:1 9621:1 9683:1 9687:1 9696:1 9697:1 9701:1 9707:2 9712:1 9741:1 9757:1 9770:1 9773:1 9778:1 9783:1 9788:1 9793:1 9799:4 9803:1 9822:1 9823:3 9844:1 9858:1 9870:1 9877:5 9882:3 9883:1 9917:4 9925:1 9935:1 9947:1 9955:2 9963:1 9974:1 9996:1 10013:1 10046:2 10054:1 10066:1 10070:2 10075:1 10076:2 10083:1 10085:1 10121:1 10126:1 10132:1 10136:2 10153:2 10167:3 10183:1 10187:1 10199:1 10254:1 10259:1 10276:1 10281:1 10287:3 10289:3 10296:3 10299:2 10300:3 10304:2 10307:2 10308:2 10312:1 10315:1 10322:1 10345:1 10346:1 10371:2 10398:1 10404:1 10406:1 10410:1 10417:1 10427:2 10429:1 10477:1 10498:1 10515:1 10526:1 10564:1 10573:1 10574:1 10580:1 10585:1 10595:2 10637:2 10646:1 10652:2 10653:1 10654:1 10664:2 10684:2 10698:1 10717:2 10724:2 10750:1 10754:2 10778:1 10784:1 10786:1 10799:2 10804:1 10821:2 10832:1 10833:1 10834:1 10850:1 10855:1 10872:1 10907:1 10933:2 10940:2 10965:2 10973:2 10977:1 10989:1 10994:4 10995:1 11001:2 11046:1 11052:2 11054:1 11056:1 11062:1 11067:1 11071:1 11081:1 11093:1 11109:1 11116:1 11140:1 11149:1 11154:1 11170:1 11176:2 11222:1 11229:1 11245:1 11247:1 11252:2 11291:1 11304:1 11313:1 11354:3 11355:2 11375:1 11387:1 11388:1 11389:2 11393:2 11394:1 11401:1 11410:2 11414:1 11416:1 11421:1 11422:1 11437:1 11447:1 11477:1 11499:3 11501:2 11515:1 11532:1 11536:1 11552:1 11581:1 11606:1 11611:1 11619:1 11639:1 11654:1 11661:2 11662:1 11671:1 11688:2 11689:1 11699:1 11704:1 11735:1 11756:1 11778:1 11860:1 11876:2 11888:2 11889:1 11903:1 11933:1 11945:1 11960:1 12007:1 12009:1 12013:1 12018:1 12021:1 12023:1 12039:1 12152:1 12156:1 12157:1 12167:2 12169:1 12214:2 12234:1 12235:2 12236:1 12241:1 12242:1 12243:1 12250:1 12261:1 12262:2 12265:1 12271:7 12276:1 12300:2 12313:2 12324:1 12369:1 12385:1 12402:2 12404:5 12409:2 12468:1 12472:13 12502:1 12522:1 12526:1 12539:1 12557:1 12591:1 12640:1 12641:2 12661:1 12687:1 12701:1 12710:3 12733:1 12737:2 12743:3 12766:1 12768:1 12775:3 12778:1 12790:1 12856:1 12884:1 12885:1 12893:1 12894:2 12896:1 12910:1 12919:1 12932:2 12942:1 12945:1 12951:1 12970:1 12971:1 12974:2 12982:2 12995:1 13001:1 13016:1 13018:1 13033:1 13040:1 13053:1 13067:1 13068:1 13080:1 13086:1 13097:2 13120:2 13126:4 13133:1 13155:1 13170:1 13186:1 13187:1 13211:1 13247:1 13263:1 13270:1 13276:2 13295:4 13310:1 13316:1 13323:1 13332:1 13366:1 13367:1 13371:1 13379:1 13388:1 13401:1 13441:1 13459:1 13464:1 13476:1 13498:1 13501:1 13506:2 13539:1 13557:1 13563:2 13586:1 13597:1 13599:1 13618:1 13628:2 13629:2 13634:1 13666:1 13676:1 13691:1 13692:1 13701:1 13704:1 13708:1 13723:1 13744:1 13751:1 13757:1 13805:1 13806:1 13825:1 13875:1 13882:1 13889:1 13894:1 13906:1 13911:1 13945:1 13969:2 13973:1 13989:1 13991:2 13996:3 14001:2 14036:3 14045:1 14049:1 14093:1 14106:1 14154:1 14193:1 14202:1 14210:1 14211:1 14222:1 14233:1 14240:1 14249:1 14259:1 14267:2 14297:1 14303:2 14306:1 14320:2 14339:1 14350:1 14380:1 14403:1 14418:1 14419:1 14422:1 14430:1 14438:1 14439:1 14443:1 14445:2 14451:4 14487:3 14492:1 14506:1 14508:1 14564:2 14577:1 14583:1 14586:1 14604:1 14612:1 14613:1 14618:1 14622:1 14628:1 14634:1 14635:1 14638:2 14643:1 14655:1 14659:1 14667:2 14672:1 14696:1 14705:1 14724:1 14728:1 14769:3 14796:1 14797:1 14809:1 14818:1 14824:1 14841:2 14843:1 14851:2 14881:1 14887:1 14901:1 14907:1 14908:1 14918:1 14924:10 14945:1 14951:1 14952:2 14967:1 14973:2 14978:1 14993:2 15002:1 15012:8 15018:1 15033:1 15039:2 15073:1 15080:1 15083:1 15095:1 15097:1 15144:1 15145:1 15166:1 15170:3 15173:1 15177:1 15187:2 15188:2 15193:1 15195:1 15196:2 15197:1 15207:1 15229:1 15263:1 15266:1 15272:1 15297:1 15301:1 15309:1 15314:2 15332:1 15345:1 15352:1 15372:1 15399:2 15402:1 15419:1 15442:1 15483:3 15495:2 15504:1 15513:1 15520:2 15538:2 15539:1 15560:1 15567:2 15568:1 15571:1 15578:1 15582:2 15584:1 15629:1 15639:1 15655:2 15723:1 15762:2 15775:2 15778:1 15786:1 15798:1 15839:3 15842:1 15863:2 15867:1 15896:1 15907:1 15915:1 15951:1 15962:1 16028:2 16055:1 16067:1 16070:1 16095:1 16108:1 16117:4 16119:1 16129:2 16139:1 16157:1 16162:1 16221:1 16238:1 16319:1 16324:1 16329:1 16331:1 16337:1 16347:2 16351:1 16399:3 16434:2 16435:3 16457:1 16462:2 16477:1 16489:3 16505:3 16518:2 16519:1 16525:1 16531:1 16555:1 16570:2 16583:1 16592:2 16612:1 16625:3 16674:4 16680:1 16729:2 16733:2 16743:3 16756:1 16762:1 16777:4 16781:1 16782:1 16795:1 16807:1 16808:1 16824:1 16832:1 16837:1 16865:1 16873:1 16915:1 16916:1 16925:1 16932:2 16934:1 16985:1 17009:1 17016:1 17046:1 17094:1 17097:1 17098:2 17110:5 17127:1 17132:1 17183:1 17205:1 17235:1 17262:1 17265:1 17266:2 17276:1 17317:1 17326:2 17335:1 17342:1 17376:1 17410:1 17415:1728 17425:1 17430:1 17433:1 17473:1 17476:1 17478:1 17486:1 17505:2 17547:1 17594:1 17600:1 17601:1 17613:1 17639:1 17644:1 17646:1 17650:1 17706:2 17753:1 17810:1 17814:1 17820:2 17824:1 17831:1 17845:1 17869:1 17871:1 17892:1 17900:1 17911:1 17917:1 17928:1 17931:1 17936:1 17944:1 17946:2 17964:1 17978:1 17980:1 17989:1 18009:1 18074:1 18085:1 18100:1 18109:1 18119:2 18121:1 18142:1 18167:1 18172:3 18175:1 18187:1 18210:1 18232:5 18275:4 18277:1 18303:1 18306:1 18314:1 18319:1 18320:1 18324:1 18326:1 18335:1 18355:1 18359:3 18360:1 18364:1 18365:1 18378:1 18384:1 18390:1 18392:1 18404:1 18410:1 18411:1 18412:1 18417:1 18427:1 18432:1 18437:2 18444:1 18457:1 18476:1 18491:1 18506:1 18539:1 18543:2 18545:2 18596:1 18603:1 18608:1 18619:1 18626:2 18632:2 18637:1 18663:1 18687:1 18703:1 18707:1 18723:1 18724:1 18753:1 18754:1 18755:2 18757:1 18770:1 18786:1 18801:1 18802:1 18805:2 18808:1 18838:1 18845:1 18861:1 18875:2 18876:1 18878:2 18884:1 18886:1 18890:1 18893:1 18901:1 18908:1 18912:2 18928:1 18932:1 18936:4 18944:2 18947:1 18966:1 19004:1 19011:1 19013:1 19014:1 19015:1 19033:3 19050:1 19064:1 19106:1 19109:1 19137:2 19143:1 19148:1 19176:1 19177:1 19186:1 19205:3 19213:1 19223:1 19225:1 19229:1 19233:1 19252:1 19268:1 19330:1 19358:1 19370:1 19385:1 19395:1 19407:1 19409:1 19441:1 19455:1 19492:1 19500:2 19502:1 19520:1 19522:1 19541:1 19554:1 19556:6 19559:1 19560:1 19563:1 19568:2 19574:1 19577:1 19582:2 19585:1 19593:1 19607:1 19609:1 19689:1 19695:1 19701:1 19727:1 19731:2 19733:1 19747:1 19751:1 19753:1 19769:1 19785:2 19796:1 19797:1 19810:1 19813:1 19819:3 19831:1 19852:1 19857:1 19877:1 19889:2 19894:1 19905:2 19910:1 19915:2 19918:1 19923:1 19933:1 19942:1 19950:1 19956:1 19959:1 19965:1 19990:1 20016:2 20025:2 20039:1 20041:3 20059:1 20069:2 20070:1 20073:2 20085:1 20089:2 20091:1 20143:1 20152:1 20169:2 20171:1 20178:1 20188:1 20193:1 20233:1 20260:1 20270:1 20274:1 20322:1 20325:3 20327:1 20332:1 20334:1 20343:1 20395:2 20398:1 20399:1 20401:1 20411:4 20421:1 20429:2 20443:1 20447:2 20452:1 20454:1 20469:1 20490:2 20519:1 20525:2 20526:2 20528:1 20529:1 20545:1 20546:1 20548:1 20551:2 20554:1 20556:2 20559:4 20563:1 20571:1 20574:1 20590:1 20592:1 20596:1 20602:1 20608:1 20630:1 20680:1 20682:1 20683:1 20684:1 20685:2 20730:1 20731:2 20747:1 20752:4 20755:2 20775:1 20778:1 20803:2 20811:1 20828:2 20832:1 20879:1 20893:3 20906:1 20927:4 20939:2 20960:7 20967:1 20973:1 21002:1 21022:1 21028:1 21029:1 21057:1 21072:1 21087:2 21100:2 21103:1 21167:1 21179:1 21186:1 21189:1 21199:1 21221:1 21225:1 21262:1 21284:1 21287:1 21300:1 21304:1 21312:1 21341:1 21342:1 21346:1 21354:2 21363:1 21365:1 21375:1 21376:1 21382:1 21397:1 21414:1 21420:2 21442:1 21472:1 21480:2 21483:2 21496:1 21513:2 21534:1 21536:1 21547:1 21549:1 21550:1 21571:2 21584:1 21608:1 21609:1 21614:1 21633:4 21640:1 21645:2 21657:2 21683:1 21703:2 21705:1 21709:1 21728:1 21735:1 21737:1 21742:1 21753:1 21758:1 21784:1 21789:1 21816:3 21817:1 21834:1 21837:1 21838:1 21844:2 21847:1 21857:1 21869:1 21879:1 21885:1 21891:1 21928:1 21930:1 21933:1 21951:1 21965:1 21966:1 21971:1 21979:1 21984:1 21985:1 22008:2 22015:1 22026:1 22043:1 22054:3 22067:1 22078:1 22080:1 22085:1 22105:1 22125:3 22156:1 22164:1 22165:1 22171:1 22215:1 22244:1 22268:1 22288:3 22298:1 22304:1 22336:1 22362:1 22366:1 22374:1 22381:2 22384:1 22386:1 22389:1 22398:1 22400:1 22448:1 22449:1 22450:1 22466:1 22491:1 22493:1 22542:2 22545:2 22547:1 22575:1 22598:1 22604:1 22657:1 22666:3 22686:2 22687:2 22722:1 22724:1 22742:1 22765:1 22779:1 22784:1 22791:1 22798:1 22810:1 22814:1 22843:1 22859:1 22891:3 22904:1 22905:1 22935:1 22941:1 22946:1 22962:2 22965:1 22972:1 22991:2 22996:1 23010:1 23013:1 23015:2 23025:1 23038:1 23073:2 23096:3 23100:1 23136:1 23142:1 23144:1 23147:1 23149:2 23151:1 23152:2 23153:1 23158:1 23171:1 23189:2 23234:1 23252:1 23263:1 23273:1 23277:2 23285:1 23290:1 23291:1 23307:1 23308:3 23335:1 23360:1 23369:1 23403:2 23414:1 23422:2 23493:4 23496:2 23559:1 23563:1 23594:2 23609:1 23634:1 23646:1 23660:3 23669:1 23681:2 23683:1 23689:1 23692:5 23699:2 23717:2 23718:1 23719:1 23720:1 23721:1 23723:1 23766:2 23777:2 23779:1 23791:1 23801:1 23848:3 23853:2 23862:1 23865:1 23871:1 23874:1 23875:1 23882:1 23907:2 23911:1 23912:1 23913:2 23919:1 23946:1 23953:1 23955:1 23966:1 23970:1 23973:1 23985:1 23994:1 23996:1 23998:1 24017:1 24022:1 24054:1 24066:1 24092:2 24093:1 24094:1 24122:1 24151:1 24153:3 24160:1 24166:1 24271:1 24288:1 24290:1 24310:1 24331:1 24334:2 24340:3 24423:1 24434:1 24439:1 24456:1 24459:1 24463:2 24470:2 24473:1 24497:1 24507:1 24551:1 24562:1 24567:1 24570:1 24571:1 24586:1 24602:1 24603:1 24612:1 24704:1 24723:1 24733:1 24740:1 24758:1 24807:1 24809:1 24871:1 24893:1 24896:1 24904:1 24936:1 24940:1 24956:1 24965:1 24969:5 24972:1 24982:1 25029:1 25033:1 25060:1 25069:1 25096:1 25097:1 25112:1 25114:2 25115:3 25149:1 25159:1 25181:1 25192:1 25221:1 25234:1 25240:2 25242:3 25247:1 25249:1 25262:1 25265:1 25267:1 25279:2 25282:1 25288:1 25306:1 25309:1 25323:1 25329:1 25333:4 25337:2 25354:1 25363:1 25372:1 25381:1 25386:1 25387:1 25392:1 25445:1 25460:1 25474:1 25496:2 25497:1 25505:1 25507:1 25508:1 25513:3 25517:2 25518:1 25519:1 25523:1 25525:2 25550:2 25561:1 25567:2 25568:3 25570:1 25572:1 25584:1 25614:1 25619:1 25630:1 25634:1 25650:1 25651:1 25656:1 25672:3 25715:2 25735:1 25738:2 25761:1 25774:1 25779:1 25781:1 25782:1 25792:2 25793:1 25796:1 25802:2 25806:1 25820:2 25822:1 25824:1 25826:2 25827:4 25834:1 25837:2 25839:1 25861:1 25870:1 25871:2 25872:1 25900:3 25925:1 25927:3 25928:1 25930:1 25957:1 25959:1 25988:2 25994:1 25997:1 26007:1 26019:1 26032:1 26072:1 26099:1 26100:1 26107:1 26115:1 26123:1 26171:2 26204:1 26211:1 26260:1 26268:1 26283:1 26289:2 26317:1 26319:1 26335:1 26346:1 26349:1 26368:1 26406:2 26413:1 26439:1 26446:1 26448:1 26484:1 26485:2 26508:16 26513:2 26530:1 26539:1 26542:1 26547:2 26564:1 26567:1 26576:1 26610:3 26619:1 26622:1 26645:1 26655:3 26662:1 26692:9 26733:1 26759:1 26764:2 26777:1 26787:1 26800:1 26807:1 26813:1 26834:2 26852:2 26864:2 26867:1 26882:2 26886:1 26904:1 26921:1 26944:1 26946:2 26952:1 26953:2 26965:1 26966:2 26975:1 26977:1 26982:1 27005:1 27012:1 27016:2 27019:2 27020:5 27063:1 27073:1 27074:1 27078:2 27096:3 27150:3 27154:1 27160:1 27179:1 27202:1 27227:1 27236:1 27241:1 27247:2 27248:1 27309:3 27333:1 27379:1 27390:1 27394:1 27396:1 27402:2 27407:1 27433:1 27434:1 27440:1 27447:2 27477:1 27491:1 27492:1 27506:1 27521:1 27530:1 27534:1 27547:2 27553:2 27564:1 27569:1 27572:1 27590:1 27598:1 27619:1 27635:1 27637:1 27638:1 27643:2 27652:1 27667:1 27669:1 27672:1 27683:3 27689:1 27706:1 27715:3 27716:3 27723:2 27730:1 27732:1 27734:1 27739:3 27765:1 27775:5 27778:1 27784:2 27792:1 27797:1 27812:1 27820:1
8 1:4 8:1 21:1 40:1 43:1 46:1 47:2 83:2 88:1 102:1 121:1 125:1 132:1 148:1 160:1 162:1 163:1 181:1 190:1 194:4 214:1 222:1 234:1 240:3 250:1 279:1 303:1 327:3 328:1 329:1 354:1 369:2 416:2 432:1 441:1 451:1 477:1 486:1 494:1 567:1 575:1 587:2 594:2 605:4 627:6 656:1 659:1 667:4 683:1 686:1 688:1 771:2 784:1 796:1 843:4 850:2 856:1 869:1 870:1 876:5 891:1 906:1 925:1 930:3 934:2 969:1 970:1 973:3 984:1 1045:1 1050:1 1052:1 1068:1 1074:1 1086:1 1093:1 1105:1 1129:3 1138:1 1147:1 1157:1 1170:1 1172:2 1176:1 1182:1 1187:1 1190:1 1191:1 1201:1 1202:1 1205:1 1210:1 1221:1 1222:1 1233:1 1235:1 1238:1 1241:1 1243:1 1244:1 1250:1 1251:1 1253:1 1255:1 1265:1 1270:1 1278:1 1296:1 1311:1 1323:1 1324:1 1332:1 1348:1 1362:1 1371:1 1374:1 1379:1 1386:1 1389:1 1393:5 1395:5 1399:1 1411:2 1422:1 1424:3 1432:4 1446:1 1468:1 1472:1 1475:3 1496:1 1509:3 1513:1 1523:2 1525:1 1527:1 1553:1 1565:2 1576:1 1578:1 1580:1 1588:1 1607:1 1612:1 1626:2 1640:1 1644:1 1659:1 1663:2 1669:1 1670:2 1681:1 1682:1 1688:1 1692:1 1696:1 1697:2 1717:1 1720:1 1732:1 1738:1 1740:1 1744:1 1762:1 1769:1 1774:1 1776:2 1787:4 1791:1 1796:1 1797:1 1801:2 1815:1 1818:2 1824:1 1833:1 1835:1 1844:2 1849:1 1856:1 1858:1 1859:1 1871:1 1883:1 1887:1 1926:1 1928:2 1943:1 1956:1 1958:1 1962:2 1997:1 2006:1 2012:1 2023:1 2057:4 2072:1 2090:1 2124:1 2145:1 2174:1 2175:1 2176:1 2177:4 2179:1 2181:1 2185:3 2188:1 2193:1 2196:2 2201:7 2203:2 2208:2 2209:1 2211:2 2214:1 2216:1 2248:1 2252:1 2260:3 2274:1 2285:1 2288:1 2295:1 2334:1 2378:1 2380:1 2418:1 2430:1 2437:1 2499:1 2510:1 2547:1 2557:1 2563:1 2565:1 2569:1 2583:1 2597:1 2598:1 2599:1 2602:3 2621:1 2646:2 2649:1 2650:1 2662:1 2676:3 2687:1 2701:1 2703:1 2705:1 2713:2 2731:1 2732:1 2755:1 2760:1 2766:2 2774:6 2793:3 2801:2 2803:2 2811:1 2818:1 2831:3 2840:1 2854:1 2869:1 2880:1 2883:1 2885:1 2886:1 2897:1 2908:2 2948:1 2983:1 2995:1 2996:1 3002:1 3010:1 3017:1 3062:2 3072:1 3090:1 3092:1 3122:1 3127:1 3131:3 3134:3 3137:4 3138:1 3148:1 3158:5 3164:1 3174:1 3195:1 3216:1 3227:1 3233:1 3258:1 3313:2 3324:1 3325:1 3339:1 3362:1 3383:1 3406:1 3423:1 3434:1 3442:1 3443:2 3481:1 3491:1 3496:1 3506:1 3516:1 3518:2 3530:2 3537:1 3538:1 3550:1 3555:1 3574:1 3585:1 3614:1 3621:2 3625:2 3630:1 3646:1 3647:1 3650:1 3680:1 3682:1 3688:1 3692:1 3709:2 3715:1 3724:2 3728:2 3732:1 3738:1 3757:2 3758:1 3764:1 3795:1 3803:1 3807:1 3810:1 3815:1 3818:3 3826:1 3836:2 3857:2 3858:5 3916:2 3923:1 3928:1 3929:1 3934:1 3940:1 3970:1 3983:1 3998:1 4002:1 4011:2 4020:2 4030:2 4031:1 4035:5 4042:1 4043:1 4052:1 4068:1 4094:1 4109:1 4115:1 4126:1 4129:5 4131:1 4152:2 4169:1 4174:1 4196:1 4224:1 4230:2 4235:1 4249:1 4250:1 4251:1 4281:2 4290:1 4307:1 4315:1 4342:2 4351:1 4384:1 4400:2 4426:2 4433:2 4459:1 4462:2 4471:1 4474:1 4497:3 4498:1 4500:1 4503:1 4510:1 4533:1 4536:1 4546:1 4567:1 4645:1 4648:14 4658:1 4669:1 4670:1 4673:1 4677:1 4713:1 4767:3 4787:6 4789:5 4792:1 4796:1 4797:1 4800:2 4802:2 4808:1 4810:1 4813:1 4814:7 4840:1 4871:2 4903:1 4944:1 4947:4 4972:1 4994:1 4997:1 5002:1 5005:1 5010:1 5013:1 5020:1 5023:1 5044:1 5047:1 5074:1 5084:1 5092:1 5102:1 5104:2 5123:1 5126:2 5136:1 5170:1 5171:1 5182:1 5201:1 5212:1 5222:2 5224:1 5248:1 5253:1 5269:1 5275:1 5286:1 5296:1 5299:2 5301:1 5304:1 5309:2 5311:1 5313:1 5315:2 5319:1 5320:1 5322:1 5353:1 5379:1 5386:1 5413:1 5422:1 5423:1 5436:1 5437:1 5446:1 5486:1 5585:1 5587:4 5593:1 5609:1 5643:3 5689:1 5708:3 5710:2 5739:4 5755:2 5760:1 5773:1 5795:1 5804:2 5808:1 5828:1 5832:1 5862:1 5867:1 5896:1 5910:1 5913:3 5935:1 5942:6 5945:1 5950:1 5961:1 5982:1 5993:4 6027:1 6034:4 6037:2 6041:1 6044:1 6045:3 6046:1 6047:1 6048:2 6052:2 6053:1 6058:3 6060:4 6063:1 6074:1 6089:1 6100:1 6101:1 6121:1 6140:1 6147:2 6174:1 6187:2 6191:2 6203:1 6206:1 6216:1 6221:1 6256:1 6257:1 6259:1 6265:1 6268:1 6288:1 6295:1 6327:1 6330:1 6338:1 6340:1 6353:1 6373:1 6375:1 6416:1 6418:1 6431:1 6433:1 6437:2 6457:3 6462:2 6465:1 6475:1 6486:1 6489:4 6493:6 6497:1 6507:1 6508:1 6512:2 6519:5 6520:1 6521:2 6522:1 6529:3 6579:2 6591:1 6592:1 6596:1 6597:1 6612:1 6620:1 6625:2 6645:1 6675:1 6683:1 6696:1 6703:1 6707:1 6716:1 6721:1 6722:1 6735:1 6737:1 6739:1 6748:1 6767:1 6768:1 6771:1 6779:1 6792:1 6816:3 6818:1 6838:1 6839:1 6852:1 6860:1 6890:1 6903:2 6914:2 6934:2 6941:3 6943:1 6948:1 6954:1 6956:1 6960:3 6994:1 6999:1 7011:1 7048:4 7073:5 7077:2 7088:1 7106:1 7137:1 7144:2 7187:1 7231:2 7249:10 7250:3 7273:1 7274:3 7286:2 7307:1 7311:1 7323:28 7344:6 7345:5 7369:1 7370:1 7381:2 7384:1 7403:1 7409:1 7414:1 7434:3 7488:2 7513:2 7525:1 7539:4 7550:1 7563:1 7566:1 7571:1 7590:1 7600:1 7603:1 7646:2 7650:2 7675:1 7677:1 7684:1 7696:1 7698:1 7701:1 7706:1 7715:3 7789:1 7791:9 7812:1 7815:1 7817:1 7826:1 7843:1 7879:3 7884:1 7891:1 7898:1 7922:1 7929:1 7936:2 7949:2 7957:3 7958:1 7964:2 7990:1 7994:1 8013:1 8026:1 8031:1 8034:1 8035:1 8054:1 8116:1 8117:1 8122:1 8123:2 8124:1 8125:4 8126:1 8128:2 8135:2 8136:1 8155:1 8161:3 8166:1 8169:1 8176:1 8180:1 8182:1 8191:1 8229:4 8268:1 8280:3 8282:2 8293:2 8322:1 8326:1 8328:1 8340:1 8362:1 8397:1 8406:1 8413:1 8423:1 8437:2 8439:1 8441:1 8467:1 8484:1 8485:2 8493:1 8503:1 8505:1 8515:1 8531:1 8539:1 8556:3 8558:4 8575:1 8620:1 8621:1 8670:2 8682:1 8694:1 8697:1 8698:1 8705:2 8716:1 8719:3 8747:1 8748:2 8752:2 8788:1 8801:1 8803:1 8813:1 8816:1 8817:1 8828:1 8853:1 8858:1 8878:1 8898:1 8907:1 8926:1 8930:2 8942:2 8944:2 8954:1 8962:1 8971:1 8979:1 8991:1 8997:1 9000:2 9007:1 9010:1 9016:1 9023:1 9028:1 9030:2 9034:1 9048:1 9062:1 9063:2 9068:2 9073:1 9080:1 9118:1 9179:2 9180:1 9215:1 9236:2 9242:1 9244:1 9249:2 9257:1 9267:1 9279:1 9317:1 9325:1 9385:1 9405:2 9418:1 9420:2 9442:1 9451:1 9460:1 9473:3 9484:2 9486:1 9495:1 9507:1 9522:1 9533:2 9544:1 9569:1 9571:1 9594:1 9597:1 9605:1 9621:1 9683:1 9687:1 9696:1 9697:1 9701:1 9707:2 9712:1 9741:1 9757:1 9770:1 9773:1 9778:1 9783:1 9788:1 9793:1 9799:4 9803:1 9822:1 9823:3 9844:1 9858:1 9870:1 9877:5 9882:3 9883:1 9917:4 9925:1 9935:1 9947:1 9955:2 9963:1 9974:1 9996:1 10013:1 10046:2 10054:1 10066:1 10070:2 10073:1 10075:1 10076:2 10083:1 10085:1 10121:1 10126:1 10132:1 10136:2 10153:2 10167:4 10177:1 10183:1 10187:1 10199:1 10254:1 10259:1 10276:1 10281:1 10287:3 10289:3 10296:3 10299:2 10300:4 10304:2 10307:3 10308:2 10312:1 10315:1 10322:1 10345:1 10346:1 10371:2 10398:1 10404:1 10406:1 10410:1 10417:1 10427:2 10429:1 10477:1 10498:1 10515:1 10526:1 10564:1 10573:1 10574:1 10580:1 10585:1 10595:2 10637:2 10646:1 10652:2 10653:1 10654:1 10664:2 10679:1 10684:2 10698:1 10717:2 10724:3 10750:1 10754:2 10778:1 10784:1 10786:1 10799:2 10804:1 10821:2 10832:1 10833:1 10834:1 10850:1 10855:1 10872:1 10907:1 10933:2 10940:2 10965:2 10973:2 10977:1 10982:1 10989:1 10994:4 10995:1 11001:2 11046:1 11052:2 11054:1 11056:1 11062:1 11067:1 11071:1 11081:1 11092:1 11093:1 11109:1 11116:1 11140:1 11149:1 11154:1 11170:1 11176:2 11222:1 11229:1 11245:1 11247:1 11252:2 11291:1 11304:1 11313:1 11354:3 11355:2 11375:1 11387:1 11388:1 11389:2 11393:3 11394:1 11401:1 11410:2 11414:1 11416:1 11421:1 11422:1 11437:1 11447:1 11477:1 11499:3 11501:2 11515:1 11532:1 11536:1 11552:1 11581:2 11606:1 11611:1 11619:1 11639:1 11654:1 11661:2 11662:1 11671:1 11688:2 11689:1 11699:1 11704:1 11735:1 11756:1 11778:1 11860:1 11876:2 11888:2 11889:1 11903:1 11933:1 11945:1 11960:1 12007:1 12009:1 12013:1 12018:1 12021:1 12023:1 12024:1 12039:1 12152:1 12156:1 12157:1 12167:2 12169:1 12214:2 12234:1 12235:2 12236:1 12241:1 12242:1 12243:1 12250:1 12261:1 12262:2 12265:1 12271:7 12276:1 12300:2 12313:2 12324:1 12369:1 12385:1 12402:2 12404:5 12409:2 12468:1 12472:14 12475:1 12502:1 12522:1 12526:1 12539:1 12557:1 12591:1 12612:1 12640:1 12641:2 12661:1 12687:1 12701:1 12710:3 12733:1 12737:2 12743:3 12766:1 12768:1 12775:3 12778:1 12790:1 12856:1 12884:1 12885:1 12893:1 12894:2 12896:1 12910:1 12919:2 12932:2 12942:1 12945:1 12951:1 12970:1 12971:1 12974:2 12982:2 12995:1 13001:1 13016:1 13018:1 13033:1 13040:1 13053:1 13067:1 13068:1 13080:1 13086:2 13097:2 13120:2 13126:4 13133:1 13155:1 13170:1 13186:1 13187:1 13211:1 13247:1 13263:1 13270:1 13276:2 13295:4 13310:1 13316:1 13323:2 13332:1 13366:1 13367:1 13371:1 13379:1 13388:1 13401:1 13441:1 13459:1 13464:1 13476:1 13498:1 13501:1 13506:2 13539:1 13557:1 13563:2 13586:1 13597:1 13599:1 13618:1 13628:2 13629:2 13634:1 13666:1 13676:1 13691:1 13692:1 13701:1 13704:1 13708:1 13723:1 13726:1 13744:1 13751:1 13757:1 13805:1 13806:1 13825:1 13875:1 13882:1 13889:1 13894:1 13906:1 13911:1 13945:1 13969:2 13973:1 13989:1 13991:2 13996:3 14001:2 14036:3 14045:1 14049:1 14093:1 14106:1 14154:1 14192:1 14193:1 14202:1 14210:1 14211:1 14222:1 14233:2 14240:1 14249:1 14259:1 14267:2 14297:1 14303:2 14306:1 14320:2 14339:1 14350:1 14380:1 14403:1 14418:1 14419:1 14422:1 14430:1 14438:1 14439:1 14443:1 14445:2 14451:4 14487:3 14492:1 14506:1 14508:1 14564:2 14577:1 14583:1 14586:1 14604:1 14612:1 14613:1 14618:1 14622:1 14628:1 14634:1 14635:1 14638:3 14643:1 14655:1 14659:1 14667:2 14672:1 14696:1 14705:1 14724:1 14728:1 14769:3 14796:1 14797:1 14809:1 14818:1 14824:1 14841:2 14843:1 14851:2 14881:1 14887:1 14901:1 14907:1 14908:1 14918:1 14924:11 14945:1 14951:1 14952:2 14967:1 14973:2 14978:1 14993:2 15002:1 15012:8 15018:1 15033:1 15039:2 15073:1 15080:1 15083:1 15095:1 15097:1 15144:1 15145:1 15166:1 15170:3 15173:1 15177:1 15187:2 15188:2 15193:1 15195:1 15196:2 15197:1 15207:1 15229:1 15263:1 15266:1 15272:1 15297:1 15301:1 15309:1 15314:2 15332:1 15345:1 15352:1 15372:1 15399:2 15402:1 15419:1 15442:1 15483:3 15495:2 15504:1 15513:1 15520:2 15538:2 15539:1 15560:1 15567:2 15568:1 15571:1 15578:1 15582:2 15584:1 15629:1 15639:1 15655:2 15723:1 15762:2 15775:2 15778:1 15786:1 15798:1 15807:1 15839:4 15842:1 15863:2 15867:1 15896:1 15907:1 15915:1 15937:1 15951:1 15962:1 15984:1 16028:2 16055:1 16067:1 16070:1 16095:1 16108:1 16117:4 16119:1 16129:2 16139:1 16157:1 16162:1 16221:1 16238:1 16312:1 16319:1 16324:1 16329:1 16331:1 16337:1 16347:2 16351:1 16399:3 16434:2 16435:3 16457:1 16462:2 16477:1 16489:3 16505:3 16518:2 16519:1 16525:1 16531:1 16555:1 16570:2 16583:1 16592:2 16612:1 16625:3 16674:4 16680:1 16729:2 16733:2 16743:3 16756:1 16762:1 16777:4 16781:1 16782:1 16795:1 16807:1 16808:1 16824:1 16832:1 16837:1 16865:1 16873:1 16915:1 16916:1 16925:1 16932:2 16934:1 16962:1 16985:1 17009:1 17016:1 17046:1 17094:1 17097:1 17098:2 17110:5 17127:1 17132:1 17183:1 17205:1 17224:1 17235:1 17262:1 17265:1 17266:2 17276:1 17317:1 17326:2 17335:1 17342:1 17376:1 17410:1 17415:1792 17425:1 17430:1 17433:1 17473:1 17476:1 17478:1 17486:1 17505:2 17547:1 17594:1 17600:1 17601:1 17613:1 17639:1 17644:1 17646:1 17650:1 17706:2 17753:1 17810:1 17814:1 17820:2 17824:1 17831:1 17845:1 17869:1 17871:1 17892:1 17900:1 17911:1 17917:1 17928:1 17931:1 17936:1 17944:1 17946:2 17964:1 17978:1 17980:1 17989:1 18009:1 18015:1 18074:1 18085:1 18100:1 18109:1 18119:2 18121:1 18142:1 18167:1 18172:3 18175:1 18187:1 18210:1 18232:5 18275:4 18277:1 18303:1 18306:1 18314:1 18319:1 18320:1 18324:1 18326:2 18335:1 18355:1 18359:3 18360:1 18364:1 18365:1 18378:1 18384:1 18390:1 18392:1 18404:1 18410:1 18411:1 18412:1 18417:1 18427:1 18432:1 18437:2 18444:1 18457:1 18476:1 18491:1 18506:1 18539:1 18543:2 18545:2 18596:1 18603:1 18608:1 18619:1 18626:2 18632:2 18637:1 18663:1 18687:1 18703:1 18707:1 18723:1 18724:1 18753:1 18754:1 18755:2 18757:1 18770:1 18786:1 18801:1 18802:1 18805:2 18808:1 18838:1 18845:1 18861:1 18875:2 18876:1 18878:2 18884:1 18886:1 18890:1 18893:1 18901:1 18908:1 18912:2 18928:1 18932:1 18936:4 18944:2 18947:1 18966:1 18998:1 19004:1 19011:1 19013:1 19014:1 19015:1 19033:3 19050:1 19064:1 19106:1 19109:1 19137:2 19143:1 19148:1 19152:1 19176:1 19177:1 19186:1 19205:3 19213:1 19223:1 19225:1 19229:1 19233:1 19252:1 19268:1 19330:1 19358:1 19370:1 19385:1 19395:1 19407:1 19409:1 19441:1 19455:1 19492:1 19500:2 19502:1 19520:1 19522:1 19541:1 19554:1 19556:6 19559:1 19560:2 19563:1 19568:2 19574:1 19577:1 19582:2 19585:1 19593:1 19607:1 19609:1 19689:1 19695:1 19701:1 19727:1 19731:2 19733:1 19747:1 19751:1 19753:1 19769:1 19785:2 19796:1 19797:1 19810:1 19813:1 19819:3 19831:1 19852:1 19857:1 19860:1 19877:1 19889:2 19894:1 19905:2 19910:1 19915:2 19918:1 19923:1 19933:1 19942:1 19950:1 19956:1 19959:1 19965:1 19990:1 20016:2 20025:2 20039:1 20041:3 20059:1 20069:2 20070:1 20073:2 20085:1 20089:2 20091:1 20143:1 20152:1 20169:2 20171:1 20178:1 20188:1 20190:1 20192:1 20193:1 20233:1 20260:1 20270:1 20274:1 20322:1 20325:3 20327:1 20332:1 20334:1 20343:1 20395:2 20398:1 20399:1 20401:1 20411:4 20421:1 20429:2 20443:1 20447:2 20452:1 20454:1 20469:1 20471:1 20490:2 20519:1 20525:2 20526:2 20528:1 20529:1 20545:1 20546:1 20548:1 20551:2 20554:1 20556:2 20559:5 20563:1 20571:1 20574:1 20590:1 20592:1 20596:1 20602:1 20608:1 20630:1 20680:1 20682:1 20683:1 20684:1 20685:2 20730:1 20731:2 20747:1 20752:4 20755:2 20775:1 20778:1 20803:2 20811:1 20828:2 20832:1 20879:1 20893:4 20906:1 20927:4 20939:2 20960:7 20967:1 20973:1 21002:1 21022:1 21028:1 21029:1 21057:1 21072:1 21087:2 21100:2 21103:1 21167:1 21179:1 21186:1 21189:1 21199:1 21221:1 21225:1 21262:1 21284:1 21287:1 21300:1 21304:1 21312:1 21341:1 21342:1 21346:1 21354:2 21363:1 21365:1 21375:1 21376:1 21382:1 21397:1 21414:1 21420:2 21442:1 21472:1 21480:2 21483:2 21496:1 21513:2 21534:1 21536:1 21547:1 21549:1 21550:1 21571:2 21584:1 21608:1 21609:1 21614:1 21633:4 21640:1 21645:2 21657:2 21683:1 21703:2 21705:1 21709:1 21728:1 21735:1 21737:1 21742:1 21753:1 21758:1 21784:1 21789:1 21816:3 21817:1 21834:1 21837:1 21838:1 21844:2 21847:1 21857:1 21869:1 21879:1 21885:1 21891:1 21928:1 21930:1 21933:2 21951:1 21965:1 21966:1 21971:1 21979:1 21984:1 21985:1 22008:3 22015:1 22026:1 22043:1 22054:3 22067:1 22078:1 22080:1 22085:1 22105:1 22125:3 22156:1 22164:1 22165:1 22171:1 22215:1 22244:1 22268:1 22288:3 22298:1 22304:1 22336:1 22362:1 22366:1 22374:1 22381:2 22384:1 22386:1 22389:1 22398:1 22400:1 22448:1 22449:1 22450:1 22466:1 22479:1 22491:1 22493:1 22542:2 22545:2 22547:1 22575:1 22598:1 22604:1 22657:1 22666:3 22686:2 22687:2 22722:1 22724:1 22742:1 22765:1 22779:1 22784:2 22791:1 22798:1 22810:1 22814:1 22843:1 22859:1 22891:3 22904:1 22905:1 22935:1 22941:1 22946:1 22962:2 22965:1 22972:1 22991:2 22996:1 23010:1 23013:1 23015:2 23025:1 23038:1 23073:2 23096:3 23100:1 23136:1 23142:1 23144:1 23147:1 23149:2 23151:1 23152:2 23153:1 23158:1 23171:1 23189:2 23234:1 23252:1 23263:1 23273:1 23277:2 23285:1 23290:1 23291:1 23307:1 23308:3 23310:1 23335:1 23360:1 23369:1 23403:2 23414:1 23422:2 23493:4 23496:2 23559:1 23563:1 23594:2 23609:1 23634:1 23646:1 23660:3 23669:1 23681:2 23683:1 23689:1 23692:5 23699:3 23717:2 23718:1 23719:1 23720:1 23721:1 23723:1 23766:2 23777:2 23779:1 23791:1 23800:1 23801:1 23848:3 23853:2 23862:1 23865:1 23871:1 23874:1 23875:1 23882:1 23907:2 23911:1 23912:1 23913:2 23919:1 23946:1 23953:1 23955:1 23966:1 23970:1 23973:1 23985:1 23994:1 23996:1 23998:1 24017:1 24022:1 24054:1 24066:1 24092:2 24093:1 24094:1 24122:1 24151:1 24153:4 24160:1 24166:1 24271:1 24288:1 24290:1 24310:1 24328:1 24331:1 24334:2 24340:3 24423:1 24434:1 24439:1 24456:1 24459:1 24463:2 24470:2 24473:1 24497:1 24507:1 24551:1 24562:1 24567:1 24570:1 24571:1 24586:1 24602:1 24603:1 24612:1 24704:1 24723:1 24733:1 24740:1 24758:1 24807:1 24809:1 24871:1 24893:1 24896:1 24904:1 24910:1 24936:1 24940:1 24956:1 24965:1 24969:5 24972:1 24982:1 25029:1 25033:1 25060:1 25069:1 25096:1 25097:1 25112:1 25114:2 25115:3 25149:1 25159:1 25181:1 25192:1 25221:1 25230:1 25234:1 25240:2 25242:3 25247:1 25249:1 25262:1 25265:1 25267:1 25279:2 25282:1 25288:1 25306:1 25309:1 25323:1 25329:1 25333:4 25337:2 25354:1 25363:1 25372:1 25381:1 25386:1 25387:1 25392:1 25445:1 25460:1 25474:1 25496:2 25497:1 25505:1 25507:1 25508:1 25513:3 25517:2 25518:1 25519:1 25523:1 25525:2 25550:2 25561:1 25567:2 25568:3 25570:1 25572:1 25584:1 25614:1 25619:1 25630:1 25634:1 25650:1 25651:1 25656:1 25672:3 25715:2 25731:1 25735:1 25738:2 25761:1 25774:1 25779:1 25781:1 25782:1 25792:2 25793:1 25796:1 25802:2 25806:1 25820:2 25822:1 25824:1 25826:2 25827:4 25834:1 25837:2 25839:2 25861:1 25870:1 25871:2 25872:1 25900:3 25925:1 25927:3 25928:1 25930:1 25957:1 25959:1 25988:2 25994:1 25997:1 26007:1 26019:1 26021:1 26032:1 26072:1 26099:1 26100:1 26107:1 26115:1 26123:1 26171:2 26204:1 26211:1 26260:1 26268:1 26283:1 26289:2 26317:1 26319:1 26335:1 26346:1 26349:1 26368:1 26406:2 26413:1 26439:1 26446:1 26448:1 26484:1 26485:2 26508:16 26513:3 26530:1 26539:1 26542:1 26547:2 26564:1 26567:1 26576:1 26591:1 26610:3 26619:1 26622:1 26645:2 26655:3 26662:1 26692:11 26733:1 26759:1 26764:2 26777:1 26787:1 26800:1 26807:1 26813:1 26834:2 26852:2 26864:2 26867:1 26869:1 26882:2 26886:1 26904:1 26921:1 26944:1 26946:2 26952:1 26953:2 26965:1 26966:2 26975:1 26977:1 26982:1 27005:2 27012:1 27016:2 27019:2 27020:5 27063:1 27073:1 27074:1 27078:2 27096:3 27150:3 27154:1 27160:1 27179:1 27202:1 27227:1 27236:1 27241:1 27247:3 27248:1 27309:3 27333:1 27379:1 27390:1 27394:1 27396:1 27402:2 27407:1 27433:1 27434:1 27440:1 27447:3 27477:1 27491:1 27492:1 27506:1 27521:1 27530:1 27534:1 27547:2 27553:2 27564:1 27569:1 27572:1 27590:1 27598:1 27619:1 27635:1 27637:1 27638:1 27643:2 27652:1 27667:1 27669:1 27672:1 27683:3 27689:1 27706:1 27715:3 27716:3 27723:2 27730:1 27732:1 27734:1 27739:3 27765:1 27775:5 27778:1 27784:2 27792:1 27797:1 27812:1 27820:1
8 1:4 8:1 21:1 40:1 43:1 46:1 47:2 83:2 88:1 102:1 121:1 125:1 132:1 148:1 158:1 160:1 162:1 163:1 181:1 190:1 194:4 214:2 222:1 234:1 240:3 250:1 279:1 303:1 327:3 328:1 329:1 354:1 369:2 416:2 432:2 441:2 451:1 477:1 486:1 494:1 567:1 575:1 587:2 594:2 605:4 627:6 656:1 659:1 667:4 683:1 686:1 688:1 771:2 784:1 796:1 843:5 850:2 856:1 869:1 870:1 876:5 891:1 906:1 925:1 930:3 934:2 969:1 970:1 973:3 984:1 991:1 1045:1 1050:1 1052:1 1068:2 1074:1 1086:1 1093:1 1105:1 1129:3 1138:1 1147:1 1157:1 1170:1 1172:2 1176:1 1182:1 1187:1 1190:1 1191:1 1201:1 1202:1 1205:1 1210:1 1221:1 1222:1 1233:1 1235:1 1238:1 1241:1 1243:1 1244:1 1250:1 1251:1 1253:1 1255:1 1265:1 1270:1 1278:1 1296:1 1311:1 1323:1 1324:1 1332:1 1348:1 1362:1 1371:1 1374:1 1379:1 1386:1 1389:2 1393:5 1395:5 1399:1 1411:2 1422:1 1424:3 1432:4 1446:2 1468:1 1472:1 1475:3 1496:1 1509:3 1513:1 1523:2 1525:1 1527:1 1553:1 1565:2 1576:1 1578:1 1580:2 1588:1 1607:1 1612:1 1626:2 1636:1 1640:1 1644:1 1659:1 1663:2 1669:1 1670:2 1681:1 1682:1 1688:1 1692:1 1696:1 1697:2 1717:1 1720:1 1732:1 1738:1 1740:1 1744:1 1762:1 1769:1 1774:1 1776:2 1787:4 1791:1 1796:1 1797:1 1801:2 1815:1 1818:2 1824:1 1833:1 1835:1 1844:2 1849:1 1856:1 1858:1 1859:1 1871:1 1883:1 1887:1 1926:1 1928:2 1943:1 1956:1 1957:1 1958:1 1962:2 1997:1 2006:1 2012:1 2023:1 2057:4 2072:1 2090:1 2110:1 2124:1 2136:1 2145:1 2174:1 2175:1 2176:1 2177:4 2179:1 2181:1 2185:3 2188:1 2193:1 2194:1 2196:2 2201:7 2203:2 2208:3 2209:1 2211:2 2214:1 2216:1 2248:1 2252:1 2260:3 2274:1 2285:1 2288:1 2295:1 2334:1 2378:1 2380:1 2418:1 2430:1 2437:1 2499:1 2510:1 2547:1 2557:1 2563:1 2565:1 2569:1 2583:1 2597:1 2598:1 2599:1 2601:1 2602:3 2618:1 2621:1 2631:1 2646:2 2649:1 2650:1 2662:1 2676:3 2687:1 2701:1 2703:1 2705:1 2713:2 2731:1 2732:1 2755:1 2760:1 2766:2 2774:6 2793:3 2801:2 2803:2 2811:1 2818:1 2831:3 2840:1 2854:1 2869:1 2880:1 2883:1 2885:1 2886:1 2897:1 2908:2 2948:1 2983:1 2995:1 2996:1 3002:1 3010:1 3017:1 3062:2 3072:1 3090:1 3092:1 3122:1 3127:1 3131:3 3134:3 3137:4 3138:1 3148:1 3158:5 3164:1 3174:1 3195:1 3216:1 3227:1 3233:1 3258:1 3313:2 3324:1 3325:1 3339:1 3362:1 3383:1 3406:1 3423:1 3434:1 3442:1 3443:2 3456:1 3464:1 3481:1 3491:1 3496:1 3506:1 3516:1 3518:2 3520:1 3530:2 3537:1 3538:1 3550:1 3555:1 3574:1 3585:1 3614:1 3621:2 3625:2 3630:1 3646:1 3647:1 3650:1 3680:1 3682:1 3688:1 3692:1 3709:2 3715:1 3718:1 3724:2 3728:2 3732:1 3738:1 3757:2 3758:1 3764:1 3795:1 3803:1 3807:1 3810:1 3815:1 3818:3 3826:1 3836:2 3842:1 3857:2 3858:5 3916:2 3923:1 3928:1 3929:1 3934:1 3940:1 3970:1 3983:1 3998:1 4002:1 4011:2 4020:2 4030:2 4031:1 4035:5 4042:1 4043:1 4052:1 4068:1 4094:2 4109:1 4115:1 4126:1 4129:5 4131:1 4152:2 4169:1 4174:1 4196:1 4224:1 4230:2 4234:1 4235:1 4249:1 4250:1 4251:1 4281:2 4290:1 4307:1 4315:1 4321:1 4342:2 4351:1 4384:1 4400:2 4426:2 4433:2 4459:1 4462:3 4471:1 4474:1 4497:3 4498:1 4500:1 4503:1 4510:1 4533:1 4536:1 4546:1 4565:1 4567:1 4645:1 4648:14 4658:1 4669:1 4670:1 4673:1 4677:1 4713:1 4767:3 4787:6 4789:6 4792:1 4795:1 4796:1 4797:1 4800:2 4802:2 4808:1 4810:1 4813:1 4814:7 4840:1 4871:2 4903:1 4944:1 4947:4 4972:1 4994:1 4997:1 5002:1 5005:1 5010:1 5013:1 5020:1 5023:1 5044:2 5047:1 5074:1 5084:1 5092:1 5102:1 5104:2 5123:1 5126:2 5136:1 5170:1 5171:1 5182:1 5201:1 5212:1 5222:2 5224:1 5248:1 5253:1 5269:1 5275:1 5286:1 5296:1 5299:2 5301:1 5304:1 5309:2 5311:1 5313:1 5315:2 5319:1 5320:1 5322:1 5353:1 5379:2 5386:1 5413:1 5422:1 5423:1 5436:1 5437:1 5446:1 5448:1 5486:1 5585:1 5587:4 5593:1 5609:2 5643:3 5689:1 5708:3 5710:2 5739:4 5755:2 5760:1 5773:1 5795:1 5804:2 5808:1 5828:1 5832:1 5862:1 5867:1 5896:1 5910:1 5913:3 5916:1 5935:1 5942:7 5945:1 5950:1 5961:1 5982:1 5993:5 6027:1 6034:5 6037:2 6041:1 6044:1 6045:3 6046:1 6047:1 6048:2 6052:2 6053:1 6058:3 6060:4 6063:1 6074:1 6089:1 6100:1 6101:1 6121:1 6140:1 6147:2 6174:1 6187:2 6191:2 6203:1 6206:1 6216:1 6221:1 6256:1 6257:1 6259:1 6265:1 6268:1 6288:1 6295:1 6327:1 6330:1 6338:1 6340:1 6353:1 6373:1 6375:1 6416:1 6418:1 6425:1 6431:1 6433:1 6437:2 6457:3 6462:2 6465:1 6475:1 6486:1 6489:4 6493:6 6497:1 6507:1 6508:1 6512:2 6519:5 6520:1 6521:2 6522:1 6529:3 6579:2 6591:1 6592:1 6596:1 6597:1 6612:1 6620:1 6625:2 6645:1 6675:1 6683:1 6687:1 6696:1 6703:1 6707:1 6716:1 6721:1 6722:1 6732:1 6735:1 6737:1 6739:1 6748:2 6767:1 6768:1 6771:1 6779:1 6792:1 6794:1 6816:3 6818:1 6838:1 6839:1 6852:1 6860:1 6890:1 6903:2 6914:2 6934:2 6941:3 6943:1 6948:1 6954:1 6956:2 6960:3 6994:1 6999:1 7011:1 7048:5 7073:5 7077:2 7088:1 7106:1 7137:1 7144:2 7186:1 7187:1 7231:2 7249:10 7250:4 7273:1 7274:3 7286:2 7307:1 7311:1 7323:30 7344:6 7345:5 7369:1 7370:1 7381:2 7384:1 7403:1 7409:1 7414:1 7434:3 7488:2 7513:2 7525:1 7539:4 7550:1 7563:1 7566:1 7571:1 7590:1 7600:1 7603:1 7646:2 7650:2 7675:1 7677:1 7684:1 7696:1 7698:1 7701:1 7706:1 7715:3 7789:1 7791:10 7812:1 7815:1 7817:1 7826:1 7843:1 7879:3 7884:1 7891:1 7898:1 7914:1 7922:1 7929:1 7936:2 7947:1 7949:2 7957:4 7958:1 7964:2 7990:1 7994:1 8013:1 8026:1 8031:1 8034:1 8035:1 8054:1 8116:1 8117:1 8122:1 8123:2 8124:1 8125:4 8126:1 8128:2 8135:2 8136:1 8155:1 8159:1 8161:3 8166:1 8169:1 8176:1 8180:1 8182:1 8191:1 8221:1 8229:4 8268:1 8280:3 8282:2 8293:2 8322:1 8326:1 8328:1 8340:1 8362:1 8397:1 8406:1 8413:1 8423:1 8437:2 8439:1 8441:1 8467:1 8484:1 8485:2 8493:1 8503:1 8505:1 8515:1 8531:1 8539:1 8556:3 8558:4 8575:1 8620:1 8621:1 8670:2 8682:1 8694:1 8697:1 8698:1 8705:2 8716:1 8719:3 8747:1 8748:2 8752:2 8788:1 8801:1 8803:1 8813:1 8816:1 8817:1 8828:1 8853:1 8858:1 8876:1 8878:1 8898:1 8907:1 8926:1 8930:2 8942:2 8944:2 8954:1 8962:1 8971:1 8979:1 8991:1 8997:1 9000:2 9007:1 9010:1 9016:1 9023:1 9028:1 9030:2 9034:1 9048:1 9062:1 9063:2 9068:2 9073:1 9080:1 9087:1 9118:1 9179:2 9180:1 9215:1 9236:3 9242:2 9244:1 9249:2 9257:1 9267:1 9279:1 9317:1 9325:1 9372:1 9385:1 9405:2 9418:1 9420:2 9442:1 9451:1 9460:1 9473:3 9484:2 9486:1 9495:1 9507:1 9522:1 9533:2 9534:1 9544:1 9569:1 9571:1 9594:1 9597:1 9605:1 9621:1 9683:1 9687:1 9696:1 9697:1 9701:1 9707:2 9712:1 9741:1 9757:1 9770:1 9773:1 9778:1 9783:1 9788:1 9793:1 9799:4 9803:1 9822:1 9823:3 9844:1 9858:1 9870:1 9877:5 9882:3 9883:1 9917:5 9925:1 9935:1 9947:1 9955:2 9963:1 9974:1 9996:1 10013:1 10046:2 10054:1 10066:1 10070:3 10073:1 10075:1 10076:2 10083:1 10085:1 10121:1 10126:1 10132:1 10136:2 10153:2 10167:4 10177:1 10183:1 10187:1 10199:1 10254:2 10259:1 10276:1 10281:1 10287:3 10289:3 10296:3 10299:3 10300:4 10304:2 10307:3 10308:2 10312:1 10315:1 10322:1 10345:1 10346:1 10371:2 10398:1 10404:1 10406:1 10410:1 10417:1 10427:2 10429:1 10438:1 10477:1 10498:1 10515:1 10526:1 10564:1 10573:1 10574:1 10580:1 10585:1 10595:2 10633:1 10637:3 10646:1 10652:2 10653:1 10654:1 10664:2 10679:1 10683:1 10684:2 10698:1 10717:2 10724:3 10750:1 10754:2 10778:1 10781:1 10784:1 10786:1 10799:2 10804:1 10821:2 10832:1 10833:1 10834:1 10850:1 10855:1 10872:1 10907:1 10933:2 10940:2 10965:2 10973:2 10977:1 10982:1 10989:1 10994:4 10995:1 11001:2 11046:1 11052:2 11054:1 11056:1 11062:2 11067:1 11071:1 11081:1 11086:1 11092:1 11093:1 11109:1 11116:1 11140:1 11149:1 11154:1 11170:1 11176:2 11222:1 11229:1 11245:1 11247:1 11252:2 11261:1 11291:1 11304:1 11313:1 11354:3 11355:2 11375:1 11387:1 11388:1 11389:2 11393:3 11394:1 11401:1 11410:2 11414:1 11416:1 11421:1 11422:1 11437:1 11440:1 11447:1 11477:1 11492:1 11499:4 11501:2 11515:1 11532:1 11536:1 11552:1 11581:2 11606:1 11611:1 11619:1 11639:1 11654:1 11661:2 11662:1 11671:1 11688:2 11689:1 11699:1 11704:1 11735:1 11756:1 11778:1 11860:1 11876:2 11888:2 11889:1 11903:1 11933:1 11945:1 11960:1 12007:1 12009:1 12013:1 12018:1 12021:1 12023:1 12024:1 12039:1 12079:1 12152:1 12156:1 12157:1 12167:2 12169:1 12214:2 12234:1 12235:2 12236:1 12241:1 12242:1 12243:1 12250:1 12261:1 12262:2 12265:1 12271:7 12276:1 12300:2 12313:2 12323:1 12324:1 12369:1 12385:1 12396:1 12402:2 12404:5 12409:2 12468:1 12472:14 12475:1 12502:1 12522:1 12526:1 12528:1 12532:1 12539:1 12557:1 12591:1 12612:1 12640:1 12641:2 12661:1 12687:1 12701:1 12710:3 12733:1 12737:2 12743:3 12748:1 12766:1 12768:1 12775:3 12778:1 12790:1 12856:1 12884:1 12885:1 12893:1 12894:2 12896:1 12910:1 12919:2 12932:2 12942:2 12945:1 12951:1 12970:1 12971:1 12974:2 12982:2 12995:1 13001:1 13016:1 13018:1 13033:1 13040:1 13053:1 13067:1 13068:1 13080:1 13086:2 13097:2 13120:2 13126:4 13133:1 13155:1 13170:1 13186:1 13187:1 13211:1 13247:1 13263:1 13270:1 13276:2 13295:4 13310:1 13316:1 13323:2 13332:1 13366:1 13367:1 13371:1 13379:1 13388:1 13401:1 13441:1 13459:1 13464:1 13476:1 13498:1 13501:1 13506:2 13539:1 13557:1 13563:2 13586:1 13597:1 13599:1 13618:1 13628:2 13629:2 13634:1 13662:1 13666:1 13676:1 13691:2 13692:1 13701:1 13704:1 13708:1 13723:1 13726:1 13744:1 13751:1 13757:1 13805:1 13806:2 13825:1 13875:1 13882:1 13889:1 13890:1 13894:1 13906:1 13911:1 13945:1 13969:2 13973:1 13989:1 13991:2 13996:3 14001:2 14036:4 14043:1 14045:1 14049:1 14093:1 14106:1 14154:1 14192:1 14193:1 14202:1 14210:1 14211:1 14222:1 14233:2 14240:1 14249:1 14259:1 14267:2 14297:1 14303:2 14306:1 14320:2 14339:1 14350:1 14380:1 14391:1 14403:1 14418:1 14419:1 14422:1 14430:1 14438:1 14439:1 14443:1 14445:2 14451:4 14487:3 14492:1 14506:1 14508:1 14564:3 14577:1 14583:1 14586:1 14604:1 14612:1 14613:1 14618:1 14622:1 14628:1 14630:1 14634:1 14635:1 14638:3 14643:1 14655:1 14659:1 14667:2 14672:1 14696:2 14705:1 14724:1 14728:1 14769:3 14796:1 14797:1 14801:1 14809:1 14818:1 14824:1 14841:2 14843:1 14851:2 14881:1 14887:1 14901:1 14907:1 14908:1 14918:1 14924:11 14945:1 14951:1 14952:2 14967:1 14973:2 14978:1 14993:2 15002:1 15012:9 15018:1 15033:1 15039:2 15073:1 15080:2 15083:1 15095:1 15097:1 15144:1 15145:1 15166:1 15170:3 15173:1 15177:1 15187:2 15188:2 15193:1 15195:1 15196:2 15197:2 15207:1 15229:1 15263:1 15266:1 15272:1 15297:1 15301:1 15309:1 15314:2 15332:1 15345:1 15352:1 15372:1 15376:1 15399:2 15402:1 15419:1 15442:1 15483:3 15495:2 15504:1 15513:1 15520:2 15538:2 15539:1 15560:1 15567:2 15568:1 15571:1 15578:1 15582:2 15584:1 15629:1 15639:1 15655:2 15723:1 15762:3 15775:2 15778:1 15786:1 15798:1 15807:1 15839:4 15842:1 15863:2 15867:1 15896:1 15907:1 15915:1 15937:1 15951:1 15962:2 15984:1 16028:2 16055:1 16067:1 16070:1 16083:1 16095:1 16108:1 16117:4 16119:1 16129:2 16139:1 16157:1 16162:1 16221:1 16238:1 16312:1 16319:1 16324:1 16329:1 16331:1 16337:2 16347:2 16351:1 16399:3 16434:2 16435:3 16457:1 16462:2 16477:1 16489:3 16505:3 16518:2 16519:1 16525:1 16531:1 16555:1 16570:2 16583:1 16592:2 16612:1 16625:3 16674:4 16680:1 16729:2 16733:2 16743:3 16756:1 16762:1 16777:4 16781:1 16782:1 16787:1 16795:1 16807:1 16808:1 16824:1 16832:1 16837:1 16865:1 16873:1 16915:1 16916:1 16925:1 16932:2 16934:1 16962:1 16970:1 16985:1 17009:1 17016:1 17046:1 17094:1 17097:1 17098:2 17110:5 17127:1 17132:1 17183:1 17205:1 17224:1 17230:1 17235:1 17262:1 17265:1 17266:2 17276:1 17317:1 17326:2 17335:1 17342:1 17376:1 17410:1 17415:1863 17425:1 17430:1 17433:1 17473:1 17476:1 17478:1 17486:1 17505:3 17547:1 17594:1 17600:1 17601:1 17613:1 17639:1 17644:1 17646:1 17650:1 17706:2 17753:1 17810:1 17814:1 17820:2 17824:1 17831:1 17845:1 17869:1 17871:1 17892:1 17900:2 17911:1 17917:1 17928:1 17931:1 17936:1 17944:1 17946:3 17964:1 17978:1 17980:1 17989:1 18009:1 18015:1 18074:1 18085:1 18100:1 18109:1 18119:2 18121:1 18142:1 18167:1 18172:3 18175:1 18187:1 18210:1 18232:5 18275:4 18277:1 18303:1 18306:1 18314:1 18319:1 18320:1 18324:1 18326:2 18333:1 18335:1 18355:1 18359:3 18360:1 18364:1 18365:1 18378:1 18384:2 18390:1 18392:1 18404:1 18410:1 18411:1 18412:1 18417:1 18427:1 18432:1 18437:2 18444:1 18457:1 18476:1 18491:1 18495:1 18506:1 18539:1 18543:3 18545:2 18596:1 18603:1 18608:1 18619:1 18626:2 18632:2 18637:1 18663:1 18687:1 18703:1 18707:1 18723:1 18724:1 18753:1 18754:1 18755:2 18757:1 18760:1 18770:1 18786:1 18801:1 18802:1 18805:2 18808:1 18838:1 18845:1 18861:1 18875:3 18876:1 18878:2 18884:1 18886:1 18890:1 18893:1 18901:1 18908:1 18912:2 18928:1 18932:1 18936:4 18944:2 18947:1 18966:1 18998:1 19004:1 19011:1 19013:1 19014:1 19015:1 19033:3 19037:1 19050:1 19064:1 19106:1 19109:1 19137:2 19143:1 19148:1 19152:1 19176:1 19177:1 19186:1 19205:3 19213:1 19223:1 19225:1 19229:1 19233:1 19252:1 19268:1 19328:1 19330:1 19358:1 19370:1 19385:1 19395:1 19407:1 19409:1 19441:2 19455:1 19491:1 19492:1 19500:2 19502:1 19520:1 19522:2 19541:1 19554:1 19556:6 19559:1 19560:2 19563:1 19568:2 19574:1 19577:1 19582:2 19585:1 19590:1 19593:1 19607:1 19609:1 19689:1 19695:2 19701:1 19727:1 19731:2 19733:1 19747:1 19751:1 19753:1 19755:1 19769:1 19785:2 19796:1 19797:1 19810:2 19813:1 19819:3 19831:1 19852:1 19857:1 19860:1 19877:1 19889:2 19894:1 19905:2 19910:1 19915:2 19918:1 19923:1 19933:1 19942:1 19950:1 19956:1 19959:1 19965:1 19990:1 20016:2 20025:2 20039:1 20041:3 20059:1 20069:2 20070:1 20073:2 20085:1 20089:2 20091:1 20143:1 20152:1 20169:2 20171:2 20178:1 20188:1 20190:1 20192:1 20193:1 20233:1 20260:1 20270:1 20274:1 20322:1 20325:3 20327:1 20332:1 20334:1 20343:1 20374:1 20395:2 20398:1 20399:1 20401:1 20411:4 20421:1 20429:2 20443:1 20447:2 20452:2 20454:1 20469:1 20471:1 20490:2 20519:1 20525:2 20526:2 20528:1 20529:1 20535:1 20545:1 20546:1 20548:1 20551:2 20554:1 20556:2 20559:5 20563:1 20571:1 20574:1 20590:1 20592:1 20596:1 20602:1 20608:1 20630:1 20680:1 20682:1 20683:1 20684:1 20685:2 20730:1 20731:2 20747:1 20752:4 20755:2 20775:1 20778:1 20803:2 20811:1 20828:2 20832:1 20879:1 20893:5 20906:1 20915:1 20927:4 20939:2 20960:8 20967:1 20973:1 21002:1 21022:1 21028:1 21029:1 21057:1 21072:1 21080:1 21087:2 21100:2 21103:1 21167:1 21179:1 21186:1 21189:1 21199:1 21221:1 21225:1 21262:1 21284:1 21287:1 21300:1 21304:1 21312:1 21341:1 21342:1 21346:1 21354:2 21363:1 21365:1 21375:1 21376:1 21382:1 21397:1 21414:1 21420:2 21442:1 21472:1 21480:2 21483:2 21496:1 21513:2 21534:1 21536:1 21547:1 21549:1 21550:1 21571:2 21584:1 21608:1 21609:1 21614:1 21633:4 21640:1 21645:2 21657:2 21683:1 21703:2 21705:1 21709:1 21728:1 21735:1 21737:1 21742:1 21747:1 21753:1 21758:1 21784:1 21789:1 21816:3 21817:1 21834:2 21837:1 21838:1 21844:2 21847:1 21857:1 21869:1 21876:1 21879:1 21885:1 21891:1 21928:1 21930:1 21933:2 21951:1 21965:1 21966:1 21971:1 21979:1 21984:2 21985:1 22008:3 22015:1 22026:1 22043:1 22054:3 22067:1 22078:1 22080:1 22085:1 22105:1 22125:3 22156:1 22164:1 22165:1 22171:1 22215:1 22230:1 22244:1 22268:1 22288:3 22298:1 22304:1 22336:1 22362:1 22366:1 22374:1 22381:2 22384:1 22386:1 22389:1 22398:1 22400:1 22448:1 22449:1 22450:1 22466:1 22479:1 22491:1 22493:1 22542:2 22545:2 22547:1 22575:1 22598:1 22604:1 22657:1 22666:3 22686:2 22687:2 22696:1 22722:1 22724:1 22742:1 22765:1 22779:1 22784:3 22791:1 22798:1 22810:1 22814:1 22843:1 22859:1 22891:3 22904:1 22905:1 22935:1 22941:1 22946:1 22962:2 22965:1 22972:1 22991:2 22996:1 23010:1 23013:1 23015:2 23025:1 23038:1 23073:2 23096:3 23100:1 23136:1 23142:1 23144:1 23147:1 23149:2 23151:1 23152:2 23153:1 23158:1 23171:1 23189:2 23234:1 23252:2 23263:1 23273:2 23277:2 23285:1 23290:1 23291:1 23307:1 23308:3 23310:2 23335:1 23360:1 23369:1 23403:2 23414:1 23422:2 23456:1 23493:4 23496:2 23559:1 23563:1 23594:2 23609:1 23634:1 23646:1 23660:3 23669:1 23681:2 23683:1 23689:1 23692:6 23699:3 23717:2 23718:1 23719:1 23720:1 23721:1 23723:1 23766:2 23777:2 23779:1 23791:1 23800:1 23801:1 23848:3 23853:2 23862:1 23865:1 23871:1 23874:1 23875:1 23882:1 23907:2 23911:1 23912:1 23913:2 23919:1 23946:1 23953:1 23955:1 23966:1 23970:1 23973:1 23985:1 23994:1 23996:1 23998:1 24017:1 24022:1 24054:1 24066:1 24092:2 24093:1 24094:1 24122:1 24143:1 24151:1 24153:5 24160:1 24166:1 24271:1 24288:1 24290:1 24310:1 24328:1 24331:1 24334:2 24340:3 24423:1 24434:1 24439:1 24456:2 24459:1 24463:2 24470:2 24473:1 24497:1 24507:1 24551:1 24562:1 24567:1 24570:1 24571:1 24586:1 24602:1 24603:1 24605:1 24612:1 24687:1 24704:1 24723:1 24733:1 24740:1 24758:1 24807:1 24809:1 24871:1 24889:1 24893:1 24896:1 24904:1 24910:1 24936:1 24940:1 24956:1 24965:2 24969:5 24972:1 24982:1 25003:1 25029:1 25033:1 25060:1 25069:1 25096:2 25097:1 25112:1 25114:2 25115:3 25149:1 25159:1 25181:1 25192:1 25221:1 25230:1 25234:1 25240:2 25242:3 25247:1 25249:1 25262:1 25265:1 25267:1 25271:1 25279:2 25282:1 25288:1 25306:1 25309:1 25323:1 25329:1 25333:4 25337:2 25354:1 25363:1 25369:1 25372:1 25381:1 25386:1 25387:1 25392:1 25445:1 25460:1 25474:1 25496:2 25497:1 25505:1 25507:1 25508:1 25513:3 25517:2 25518:1 25519:1 25523:1 25525:2 25550:2 25561:1 25567:2 25568:3 25570:1 25572:1 25584:1 25614:1 25619:1 25630:1 25634:1 25650:1 25651:1 25656:2 25672:4 25715:2 25731:1 25735:1 25738:2 25757:1 25761:1 25774:1 25779:1 25781:1 25782:1 25792:2 25793:1 25796:1 25802:2 25805:1 25806:1 25820:2 25822:1 25824:1 25826:2 25827:4 25834:1 25837:2 25839:2 25861:1 25870:1 25871:2 25872:1 25900:3 25915:1 25925:1 25927:4 25928:1 25930:1 25957:1 25959:1 25988:2 25994:1 25997:1 26007:1 26019:1 26021:1 26032:1 26072:1 26095:1 26099:1 26100:1 26107:1 26115:1 26123:1 26171:2 26204:1 26211:1 26260:1 26268:1 26283:1 26289:2 26317:1 26319:1 26335:1 26346:1 26349:1 26368:1 26406:2 26413:1 26417:1 26439:1 26446:1 26448:1 26454:1 26484:1 26485:2 26508:16 26513:3 26530:1 26539:1 26542:1 26547:3 26562:1 26564:1 26567:1 26576:1 26591:1 26610:3 26619:1 26622:1 26645:3 26655:3 26662:1 26692:11 26733:1 26759:1 26764:2 26777:1 26787:1 26800:1 26807:1 26813:1 26834:2 26852:2 26864:2 26867:1 26869:1 26882:2 26886:1 26904:1 26921:1 26944:1 26946:2 26948:1 26952:1 26953:2 26965:1 26966:2 26975:1 26977:1 26982:1 27005:2 27012:1 27016:2 27019:2 27020:5 27062:1 27063:1 27073:1 27074:1 27078:2 27096:3 27150:3 27154:1 27160:1 27179:1 27197:1 27202:1 27227:1 27236:1 27241:1 27247:3 27248:1 27309:3 27333:1 27379:1 27390:1 27394:1 27396:1 27402:2 27407:1 27433:1 27434:1 27440:1 27447:3 27477:1 27491:1 27492:1 27506:1 27521:1 27530:1 27534:1 27547:2 27553:2 27564:1 27569:1 27572:1 27590:1 27598:1 27619:1 27635:1 27637:1 27638:1 27643:3 27652:1 27667:1 27669:1 27672:1 27683:3 27689:1 27706:1 27715:3 27716:3 27723:3 27730:1 27732:1 27734:1 27739:4 27765:1 27775:5 27778:1 27784:2 27792:1 27797:1 27812:1 27820:1
8 1:4 8:1 21:1 40:1 43:1 46:1 47:2 83:2 88:1 102:1 121:1 125:1 132:1 148:1 158:1 160:1 162:1 163:1 181:1 190:1 194:4 214:2 222:1 234:1 240:3 250:1 279:1 303:1 327:3 328:1 329:1 354:1 369:2 416:2 432:2 441:2 451:1 477:1 486:1 494:1 567:1 575:1 587:2 594:2 605:4 627:7 656:1 659:1 667:4 683:1 686:1 688:1 771:2 784:1 796:1 843:5 850:2 856:1 869:1 870:1 876:5 891:1 906:1 925:1 930:4 934:2 969:1 970:1 973:3 984:1 991:1 1045:1 1050:1 1052:1 1068:2 1074:1 1086:1 1093:1 1105:1 1129:3 1138:1 1147:1 1157:1 1170:1 1172:2 1176:1 1182:1 1187:1 1190:1 1191:1 1201:1 1202:1 1205:1 1210:1 1221:1 1222:1 1233:1 1235:1 1238:1 1241:1 1243:1 1244:1 1250:1 1251:1 1253:1 1255:1 1265:1 1270:1 1278:1 1296:1 1311:1 1323:1 1324:1 1332:1 1348:1 1362:1 1371:1 1374:1 1379:1 1386:1 1389:2 1393:5 1395:5 1399:1 1411:2 1422:1 1424:3 1432:4 1446:2 1468:1 1472:1 1475:3 1496:1 1509:3 1513:1 1523:2 1525:1 1527:1 1553:1 1565:2 1576:1 1578:2 1580:2 1588:1 1607:1 1612:1 1626:2 1636:1 1640:1 1644:1 1659:1 1663:2 1669:1 1670:2 1681:1 1682:1 1688:1 1692:1 1696:1 1697:2 1717:1 1720:1 1732:1 1738:1 1740:1 1744:1 1762:1 1769:1 1774:1 1776:2 1787:4 1791:1 1796:1 1797:1 1801:2 1815:1 1818:2 1824:1 1833:1 1835:1 1844:2 1849:1 1856:1 1858:2 1859:1 1871:1 1883:1 1887:1 1926:1 1928:3 1943:1 1956:1 1957:1 1958:1 1962:2 1997:1 2006:1 2012:1 2023:1 2057:4 2072:1 2090:1 2110:1 2124:1 2136:1 2145:1 2174:1 2175:1 2176:1 2177:5 2179:1 2181:1 2185:3 2188:1 2193:1 2194:1 2196:2 2201:7 2203:3 2208:3 2209:1 2211:2 2214:1 2216:1 2248:1 2252:1 2260:3 2274:1 2285:1 2288:1 2295:1 2334:1 2378:1 2380:1 2418:1 2430:1 2437:1 2499:1 2510:1 2547:1 2557:1 2563:1 2565:1 2569:1 2583:1 2597:1 2598:1 2599:1 2601:1 2602:3 2618:1 2621:1 2631:1 2646:2 2649:1 2650:1 2662:1 2676:3 2687:1 2701:1 2703:1 2705:1 2713:2 2725:1 2731:1 2732:1 2755:1 2760:1 2766:2 2774:7 2793:3 2801:2 2803:2 2811:1 2818:1 2831:3 2840:1 2854:1 2869:1 2880:1 2883:1 2885:1 2886:1 2897:1 2908:2 2948:1 2983:1 2995:1 2996:1 3002:1 3010:1 3017:1 3055:1 3062:2 3072:1 3090:1 3092:1 3122:1 3127:1 3131:3 3134:3 3137:4 3138:1 3148:1 3158:5 3164:1 3174:1 3195:1 3216:1 3227:1 3233:1 3258:1 3313:2 3324:1 3325:1 3339:1 3362:1 3383:1 3406:1 3423:1 3434:1 3442:1 3443:2 3456:1 3464:1 3481:1 3491:1 3496:1 3506:1 3516:1 3518:2 3520:1 3530:2 3537:1 3538:1 3550:1 3555:1 3574:1 3584:1 3585:1 3614:1 3621:2 3625:2 3630:1 3646:1 3647:1 3650:1 3680:1 3682:1 3688:1 3692:1 3699:1 3709:2 3715:1 3718:1 3724:2 3728:2 3732:1 3738:1 3751:1 3757:2 3758:1 3764:1 3795:1 3803:1 3807:1 3810:1 3815:1 3818:3 3826:1 3836:2 3842:1 3857:2 3858:5 3916:2 3923:1 3928:1 3929:1 3934:1 3940:1 3970:1 3983:1 3986:1 3988:1 3998:1 4002:1 4011:2 4020:2 4030:2 4031:1 4035:5 4042:1 4043:1 4052:1 4068:1 4094:2 4109:1 4115:1 4126:1 4129:5 4131:1 4152:2 4169:1 4174:1 4196:1 4224:1 4230:2 4234:1 4235:1 4249:1 4250:1 4251:1 4281:2 4290:1 4307:1 4315:1 4321:1 4342:2 4351:1 4384:1 4400:2 4426:2 4433:2 4459:1 4462:3 4471:1 4474:1 4497:3 4498:1 4500:1 4503:1 4510:1 4533:1 4536:1 4546:1 4565:1 4567:1 4645:1 4648:14 4658:1 4669:1 4670:1 4673:1 4677:1 4713:1 4767:3 4787:6 4789:6 4792:1 4795:1 4796:1 4797:1 4800:2 4802:2 4808:1 4810:1 4813:1 4814:7 4840:1 4871:2 4903:1 4944:1 4947:4 4972:1 4994:1 4997:1 5002:2 5005:1 5010:1 5013:1 5020:1 5023:1 5044:2 5047:1 5074:1 5084:1 5092:1 5102:1 5104:2 5123:1 5126:2 5136:1 5170:1 5171:1 5182:1 5201:1 5212:1 5222:2 5224:1 5248:1 5253:1 5269:1 5275:1 5286:1 5296:1 5299:2 5301:1 5304:1 5309:2 5311:1 5313:1 5315:2 5319:1 5320:1 5322:1 5353:1 5357:1 5379:2 5386:1 5413:1 5422:1 5423:1 5436:1 5437:1 5446:1 5448:1 5486:1 5504:1 5574:1 5585:1 5587:4 5593:1 5609:2 5643:3 5689:1 5708:3 5710:2 5739:4 5755:2 5760:1 5773:1 5795:1 5804:2 5808:1 5828:2 5832:1 5862:1 5867:1 5896:1 5910:1 5913:3 5916:1 5935:1 5942:7 5945:1 5950:1 5961:1 5982:1 5993:6 6027:1 6034:5 6037:2 6041:1 6044:1 6045:3 6046:1 6047:1 6048:2 6052:2 6053:1 6058:3 6060:4 6063:1 6074:1 6089:1 6100:1 6101:1 6121:1 6140:1 6147:2 6174:1 6187:2 6191:2 6203:1 6206:1 6216:1 6221:1 6256:1 6257:1 6259:1 6265:1 6268:1 6286:1 6288:1 6295:1 6327:1 6330:1 6338:1 6340:1 6353:1 6373:1 6375:1 6399:1 6416:1 6418:1 6425:1 6431:1 6433:1 6437:2 6457:3 6462:2 6465:1 6475:1 6486:1 6489:4 6493:6 6497:1 6507:1 6508:1 6512:2 6519:5 6520:1 6521:2 6522:1 6529:3 6579:2 6580:1 6591:1 6592:1 6596:1 6597:1 6612:1 6620:1 6625:2 6645:1 6675:1 6683:1 6687:1 6696:1 6703:1 6707:1 6716:1 6721:1 6722:1 6732:1 6735:1 6737:1 6739:1 6748:2 6767:1 6768:1 6771:1 6779:1 6792:1 6794:1 6816:3 6818:1 6838:1 6839:1 6852:1 6860:1 6890:1 6903:2 6914:2 6934:2 6941:3 6943:1 6948:1 6954:1 6956:2 6960:4 6994:1 6999:1 7011:1 7048:5 7073:5 7077:2 7088:1 7106:1 7137:1 7144:2 7186:1 7187:1 7231:2 7249:10 7250:4 7273:1 7274:3 7286:2 7307:1 7311:1 7323:32 7344:7 7345:5 7369:1 7370:1 7381:2 7384:1 7403:1 7409:1 7414:1 7434:3 7488:2 7513:2 7525:1 7539:4 7550:1 7563:1 7566:1 7571:1 7590:1 7600:1 7603:1 7646:2 7650:2 7675:1 7677:1 7684:1 7696:1 7698:1 7701:1 7706:1 7715:3 7789:1 7791:10 7812:1 7815:1 7817:1 7826:1 7843:1 7879:3 7884:1 7891:1 7898:1 7914:1 7922:1 7929:1 7936:2 7947:1 7949:2 7957:5 7958:1 7964:2 7990:1 7994:1 8013:1 8026:1 8031:1 8034:1 8035:1 8054:1 8116:1 8117:1 8122:1 8123:2 8124:1 8125:4 8126:1 8128:2 8135:2 8136:1 8140:1 8155:1 8159:1 8161:3 8166:1 8169:1 8176:1 8180:1 8182:1 8191:1 8221:1 8229:4 8268:1 8280:3 8282:2 8293:2 8322:1 8326:1 8328:1 8340:1 8362:1 8397:1 8404:1 8406:1 8413:1 8423:1 8437:2 8439:1 8441:1 8467:1 8484:1 8485:2 8493:1 8503:1 8505:1 8515:1 8531:1 8539:1 8556:3 8558:4 8575:1 8620:1 8621:1 8670:2 8682:1 8694:1 8697:1 8698:1 8705:2 8716:1 8719:3 8747:1 8748:2 8752:2 8788:1 8801:1 8803:1 8813:1 8816:1 8817:1 8828:1 8853:1 8858:1 8876:1 8878:1 8898:1 8907:1 8926:1 8930:2 8942:2 8944:2 8954:1 8962:1 8971:1 8979:1 8991:1 8997:1 9000:2 9007:1 9010:1 9016:1 9023:1 9028:1 9030:2 9034:1 9048:1 9062:1 9063:2 9068:2 9073:1 9080:1 9087:1 9118:1 9179:2 9180:1 9215:1 9236:3 9242:2 9244:1 9249:2 9257:2 9267:1 9279:1 9317:1 9325:1 9372:1 9385:1 9405:2 9418:1 9420:2 9432:1 9442:1 9451:1 9460:1 9473:3 9484:2 9486:1 9495:1 9507:1 9522:1 9533:2 9534:1 9544:1 9569:1 9571:1 9594:1 9597:1 9605:1 9621:1 9683:1 9687:1 9696:1 9697:1 9701:1 9707:2 9712:1 9741:1 9757:1 9762:1 9770:1 9773:1 9778:1 9783:1 9788:1 9793:1 9799:4 9803:1 9822:1 9823:3 9844:1 9858:1 9870:1 9877:5 9882:3 9883:1 9917:5 9925:1 9935:1 9947:1 9955:2 9963:1 9974:1 9996:1 10013:1 10046:2 10054:1 10066:1 10070:3 10073:1 10075:2 10076:2 10083:1 10085:1 10121:1 10126:1 10132:1 10136:2 10153:2 10167:4 10177:1 10183:1 10187:1 10199:1 10254:2 10259:1 10276:1 10281:1 10287:3 10289:3 10296:3 10299:3 10300:4 10304:2 10307:3 10308:2 10312:1 10315:1 10322:1 10345:1 10346:1 10371:2 10398:1 10404:1 10406:1 10410:1 10417:1 10427:2 10429:1 10438:1 10477:1 10498:1 10515:1 10526:1 10564:1 10573:1 10574:1 10580:1 10585:1 10595:2 10633:1 10637:4 10646:1 10652:2 10653:1 10654:1 10664:2 10679:1 10683:1 10684:2 10698:1 10717:2 10724:3 10750:1 10754:2 10778:1 10781:1 10784:1 10786:1 10799:2 10804:1 10821:2 10832:1 10833:1 10834:1 10850:1 10855:1 10872:1 10907:1 10933:2 10940:2 10965:2 10973:2 10977:1 10982:1 10989:1 10994:4 10995:1 11001:2 11046:1 11052:2 11054:1 11056:1 11062:2 11067:1 11071:1 11081:1 11086:1 11092:1 11093:1 11109:1 11116:1 11140:1 11149:1 11154:1 11170:1 11176:2 11222:1 11229:1 11245:1 11247:1 11252:2 11261:1 11291:1 11304:1 11313:1 11354:3 11355:2 11375:1 11387:1 11388:1 11389:2 11393:3 11394:1 11401:1 11410:2 11414:1 11416:1 11421:1 11422:1 11437:1 11440:1 11447:1 11477:1 11492:1 11499:5 11501:2 11515:1 11521:1 11532:1 11536:1 11552:1 11581:2 11606:1 11611:1 11619:1 11639:1 11654:1 11661:2 11662:1 11671:1 11688:2 11689:1 11699:1 11704:1 11735:1 11756:1 11778:1 11860:1 11876:2 11888:2 11889:1 11903:1 11933:1 11945:1 11960:1 12007:1 12009:1 12013:1 12018:1 12021:1 12023:1 12024:1 12039:1 12079:1 12152:1 12156:1 12157:1 12167:2 12169:1 12214:2 12234:1 12235:2 12236:1 12241:1 12242:1 12243:1 12250:1 12261:1 12262:2 12265:1 12271:7 12276:1 12300:2 12313:2 12323:1 12324:1 12369:1 12385:1 12396:1 12402:2 12404:5 12409:2 12468:1 12472:14 12475:1 12502:1 12522:1 12526:1 12528:1 12532:1 12539:1 12557:1 12591:1 12612:1 12640:1 12641:2 12661:1 12687:1 12701:1 12710:3 12733:1 12737:2 12743:3 12748:1 12766:1 12768:1 12775:3 12778:1 12790:1 12856:1 12884:1 12885:1 12893:1 12894:2 12896:1 12910:1 12919:2 12932:2 12942:2 12945:1 12951:1 12970:1 12971:1 12974:2 12982:2 12995:1 13001:1 13016:1 13018:1 13033:1 13040:1 13053:1 13067:1 13068:1 13080:1 13086:2 13097:2 13120:2 13126:4 13133:1 13155:1 13170:1 13186:1 13187:1 13211:1 13247:1 13263:1 13270:1 13276:2 13295:4 13310:1 13316:1 13323:2 13332:1 13366:1 13367:1 13371:1 13379:1 13388:1 13401:1 13441:1 13459:1 13464:1 13476:1 13498:1 13501:1 13506:2 13539:1 13557:1 13563:2 13586:1 13597:1 13599:1 13618:1 13628:2 13629:2 13634:1 13662:1 13666:1 13676:1 13691:2 13692:1 13701:1 13704:1 13708:1 13723:1 13726:1 13744:1 13751:1 13757:1 13805:1 13806:2 13825:1 13875:1 13882:1 13889:1 13890:1 13894:1 13906:1 13911:1 13945:1 13969:2 13973:1 13987:1 13989:1 13991:2 13996:3 14001:2 14036:5 14043:1 14045:1 14049:1 14093:1 14106:1 14154:1 14192:1 14193:1 14202:1 14210:1 14211:1 14222:1 14233:2 14240:1 14249:1 14259:1 14267:2 14297:1 14303:2 14306:1 14320:2 14339:1 14350:1 14380:1 14391:1 14403:1 14418:1 14419:1 14422:1 14430:1 14438:1 14439:1 14443:1 14445:2 14451:4 14487:3 14492:1 14506:1 14508:1 14557:1 14564:3 14577:1 14583:1 14586:1 14604:1 14612:1 14613:1 14618:1 14622:1 14628:1 14630:1 14634:1 14635:1 14638:3 14643:1 14655:1 14659:1 14667:2 14672:1 14696:2 14705:1 14724:1 14728:1 14769:3 14796:1 14797:1 14801:1 14809:1 14818:1 14824:1 14841:3 14843:1 14851:2 14881:1 14887:1 14901:1 14907:1 14908:1 14918:1 14924:11 14945:1 14951:1 14952:2 14967:1 14973:2 14978:1 14993:2 15002:1 15012:9 15018:1 15033:1 15039:2 15073:1 15080:2 15083:1 15095:1 15097:1 15122:1 15144:1 15145:1 15166:1 15170:3 15173:1 15177:1 15187:2 15188:2 15193:1 15195:1 15196:2 15197:2 15207:1 15229:1 15263:1 15266:1 15272:1 15297:1 15301:1 15309:1 15314:2 15332:1 15345:1 15352:1 15372:1 15376:1 15399:2 15402:1 15419:1 15442:1 15483:3 15495:2 15504:2 15513:1 15520:2 15538:2 15539:1 15560:1 15567:2 15568:1 15571:1 15578:1 15582:2 15584:1 15629:1 15639:1 15655:2 15723:1 15738:1 15762:3 15775:2 15778:1 15786:1 15798:1 15807:1 15838:1 15839:4 15842:1 15863:2 15867:1 15896:1 15907:1 15915:1 15937:1 15951:1 15962:2 15984:1 16028:2 16055:1 16067:1 16070:1 16083:1 16095:1 16108:1 16117:4 16119:1 16129:2 16139:1 16157:1 16162:1 16221:1 16238:1 16312:1 16319:1 16324:1 16329:1 16331:1 16337:2 16347:2 16351:1 16399:3 16434:2 16435:3 16457:1 16462:2 16477:1 16489:3 16505:3 16518:2 16519:1 16525:1 16531:1 16555:1 16570:2 16583:1 16592:2 16612:1 16625:3 16674:4 16680:1 16729:2 16733:2 16743:3 16756:1 16762:1 16777:4 16781:1 16782:1 16787:1 16795:1 16807:1 16808:1 16824:1 16832:1 16837:1 16865:1 16873:1 16915:1 16916:1 16925:1 16932:2 16934:1 16962:1 16970:1 16985:1 17009:1 17016:1 17046:2 17094:1 17097:1 17098:2 17110:5 17127:1 17132:1 17165:1 17183:1 17205:1 17221:1 17224:1 17230:1 17235:1 17241:1 17262:1 17265:1 17266:2 17276:1 17317:1 17326:2 17335:1 17342:1 17353:1 17376:1 17410:1 17415:1929 17425:1 17430:1 17433:1 17473:1 17476:1 17478:1 17486:1 17505:3 17547:1 17594:1 17600:1 17601:1 17613:1 17639:1 17644:1 17646:1 17650:1 17706:2 17753:1 17810:1 17814:1 17820:2 17824:1 17831:1 17845:1 17869:1 17871:1 17892:1 17900:3 17911:1 17917:1 17928:1 17931:1 17936:1 17944:2 17946:3 17964:1 17978:1 17980:1 17989:1 18009:1 18015:1 18074:1 18085:1 18100:1 18109:1 18119:2 18121:1 18142:1 18143:1 18167:1 18172:3 18175:1 18187:1 18210:1 18232:5 18275:5 18277:1 18303:1 18306:1 18314:1 18319:1 18320:1 18324:1 18326:2 18333:1 18335:1 18355:1 18359:3 18360:1 18364:1 18365:1 18378:1 18384:2 18390:1 18392:1 18404:1 18410:1 18411:1 18412:1 18417:1 18427:1 18432:1 18437:2 18444:1 18457:1 18476:1 18491:1 18495:1 18506:1 18539:1 18543:3 18545:2 18596:1 18603:1 18608:1 18619:1 18626:2 18632:2 18637:2 18663:1 18687:1 18703:1 18707:1 18723:1 18724:1 18748:1 18753:1 18754:1 18755:2 18757:1 18760:1 18770:1 18786:1 18801:1 18802:1 18805:2 18808:1 18838:1 18845:1 18861:1 18875:3 18876:1 18878:2 18884:1 18886:1 18890:1 18893:1 18901:1 18908:1 18912:2 18928:1 18932:1 18936:4 18944:2 18947:1 18966:1 18984:1 18998:1 19004:1 19011:1 19013:1 19014:1 19015:1 19033:3 19037:1 19050:1 19064:1 19106:1 19109:1 19137:2 19143:1 19148:1 19152:1 19176:1 19177:1 19186:1 19205:3 19213:1 19223:1 19225:1 19229:1 19233:1 19252:1 19268:1 19309:1 19328:1 19330:1 19358:1 19370:1 19385:1 19395:1 19407:1 19409:1 19413:1 19441:2 19455:1 19491:1 19492:2 19500:2 19502:1 19520:1 19522:2 19541:1 19554:1 19556:6 19559:1 19560:2 19563:1 19568:2 19574:1 19577:1 19582:2 19585:1 19590:1 19593:1 19607:1 19609:1 19689:1 19695:2 19701:1 19727:1 19731:2 19733:1 19747:1 19751:1 19753:1 19755:1 19769:1 19785:2 19796:1 19797:1 19810:2 19813:1 19819:3 19831:1 19852:1 19857:1 19860:1 19877:1 19889:2 19894:1 19905:2 19910:1 19915:2 19918:1 19923:1 19933:1 19942:1 19950:1 19956:1 19959:1 19965:1 19990:1 20016:2 20025:2 20039:1 20041:3 20059:1 20069:2 20070:1 20073:2 20085:1 20089:2 20091:1 20143:1 20152:1 20169:2 20171:2 20178:1 20188:1 20190:1 20192:1 20193:1 20233:1 20260:1 20270:1 20274:1 20322:1 20325:3 20327:1 20332:1 20334:1 20343:1 20374:1 20395:2 20398:1 20399:1 20401:1 20411:4 20421:1 20429:2 20443:1 20447:2 20452:2 20454:1 20469:1 20471:1 20490:2 20519:1 20525:2 20526:2 20528:1 20529:1 20535:1 20541:1 20545:1 20546:1 20548:1 20551:2 20554:1 20556:2 20559:5 20563:1 20571:1 20574:1 20590:1 20592:1 20596:1 20602:1 20608:1 20630:1 20680:1 20682:1 20683:1 20684:1 20685:2 20730:1 20731:2 20747:1 20752:4 20755:2 20775:1 20778:1 20803:2 20811:1 20828:2 20832:1 20879:1 20893:5 20906:1 20915:1 20927:4 20939:2 20960:8 20967:1 20973:1 21002:1 21022:1 21028:1 21029:1 21057:1 21072:1 21080:1 21087:2 21100:2 21103:1 21167:1 21179:1 21186:1 21189:1 21199:1 21221:1 21225:1 21262:1 21284:1 21287:1 21300:1 21304:1 21312:1 21341:1 21342:1 21346:1 21354:2 21363:1 21365:1 21375:1 21376:1 21382:1 21397:1 21414:1 21420:3 21442:1 21472:1 21480:2 21483:2 21496:1 21513:2 21534:1 21536:1 21547:1 21549:1 21550:1 21571:2 21584:1 21608:1 21609:1 21614:1 21633:4 21640:1 21645:2 21657:2 21683:1 21703:2 21705:1 21709:1 21728:1 21735:1 21737:1 21742:1 21747:1 21753:1 21758:1 21784:1 21789:1 21816:3 21817:1 21834:2 21837:1 21838:1 21844:2 21847:1 21857:1 21869:1 21876:1 21879:1 21885:1 21891:1 21928:1 21930:1 21933:2 21951:1 21965:1 21966:1 21971:1 21979:1 21984:2 21985:1 22008:3 22015:2 22026:1 22043:1 22054:3 22067:1 22078:1 22080:1 22085:1 22105:1 22125:3 22156:1 22164:1 22165:1 22171:1 22215:1 22230:1 22244:1 22268:1 22288:3 22298:1 22304:1 22336:1 22362:1 22366:1 22374:1 22381:2 22384:1 22386:1 22389:1 22398:1 22400:1 22448:1 22449:1 22450:1 22466:1 22479:1 22491:1 22493:1 22542:2 22545:2 22547:1 22575:1 22598:1 22604:1 22657:1 22665:1 22666:3 22686:2 22687:2 22696:1 22722:1 22724:1 22742:1 22765:1 22779:1 22784:3 22791:1 22798:1 22810:1 22814:1 22843:1 22859:1 22891:3 22904:1 22905:1 22935:1 22941:1 22946:1 22962:2 22965:1 22972:1 22991:2 22996:1 23010:1 23013:1 23015:2 23025:1 23038:1 23073:2 23096:3 23100:1 23136:1 23142:1 23144:1 23147:1 23149:2 23151:1 23152:2 23153:1 23158:1 23171:1 23189:2 23234:1 23252:2 23263:2 23273:2 23277:2 23285:1 23290:1 23291:1 23307:1 23308:3 23310:2 23335:1 23360:1 23369:1 23403:2 23414:1 23422:2 23456:1 23493:4 23496:2 23559:1 23563:1 23594:2 23609:1 23634:1 23646:1 23660:3 23669:1 23681:2 23683:1 23689:1 23692:6 23699:3 23717:2 23718:1 23719:1 23720:1 23721:1 23723:1 23766:2 23777:2 23779:1 23791:1 23800:1 23801:1 23848:3 23853:2 23862:1 23865:1 23871:1 23874:1 23875:1 23882:1 23907:2 23911:1 23912:1 23913:2 23919:1 23946:1 23953:1 23955:1 23956:1 23966:1 23970:1 23973:1 23985:1 23994:1 23996:1 23998:1 24017:1 24022:1 24054:1 24066:1 24071:1 24092:2 24093:1 24094:1 24122:1 24143:1 24151:1 24153:5 24160:1 24166:1 24271:1 24288:1 24290:1 24310:1 24328:1 24331:1 24334:2 24340:3 24423:1 24434:1 24439:1 24456:2 24459:1 24463:2 24470:2 24473:1 24497:1 24507:1 24551:1 24562:1 24567:1 24570:1 24571:1 24586:1 24602:1 24603:1 24605:1 24612:1 24687:1 24704:1 24723:1 24733:1 24740:1 24758:1 24807:1 24809:1 24871:1 24889:1 24893:1 24896:1 24904:1 24910:1 24936:1 24940:1 24956:1 24965:2 24969:5 24972:1 24982:1 25003:1 25029:1 25033:1 25060:1 25069:1 25096:2 25097:1 25112:1 25114:2 25115:3 25149:1 25159:1 25181:1 25192:1 25221:1 25230:1 25234:1 25240:2 25242:3 25247:1 25249:1 25262:1 25265:1 25267:1 25271:1 25279:2 25282:1 25288:1 25306:1 25309:1 25323:1 25329:1 25333:4 25337:2 25354:1 25363:1 25369:1 25372:1 25381:1 25386:1 25387:1 25392:1 25445:1 25460:1 25474:1 25496:2 25497:1 25505:1 25507:1 25508:1 25513:3 25517:2 25518:1 25519:1 25523:1 25525:2 25550:2 25561:1 25567:2 25568:3 25570:1 25572:1 25584:1 25614:1 25619:1 25630:1 25634:1 25650:1 25651:1 25656:2 25672:4 25679:1 25715:2 25731:1 25735:1 25738:2 25757:1 25761:1 25774:1 25779:1 25781:1 25782:1 25792:2 25793:1 25796:1 25802:2 25805:1 25806:1 25820:2 25822:1 25824:1 25826:2 25827:4 25834:1 25837:2 25839:2 25861:1 25870:1 25871:2 25872:1 25900:3 25915:1 25925:1 25927:5 25928:1 25930:1 25957:1 25959:1 25988:2 25994:1 25997:1 26007:1 26019:1 26021:1 26032:1 26072:1 26095:1 26099:1 26100:1 26107:1 26115:1 26123:1 26171:2 26204:1 26211:1 26260:1 26268:1 26283:1 26289:2 26317:1 26319:1 26335:1 26346:1 26349:1 26368:1 26406:2 26413:1 26417:1 26439:1 26446:1 26448:1 26454:1 26484:1 26485:2 26508:17 26513:3 26530:1 26539:1 26542:1 26547:3 26562:1 26564:1 26567:1 26576:1 26591:1 26610:3 26619:1 26622:1 26645:3 26655:3 26662:1 26692:11 26733:1 26759:1 26764:2 26777:1 26787:1 26800:1 26807:1 26813:1 26834:2 26852:2 26864:2 26867:1 26869:1 26882:2 26886:1 26904:1 26921:1 26944:1 26946:2 26948:1 26952:1 26953:2 26965:1 26966:2 26975:1 26977:1 26982:1 27005:2 27012:1 27016:2 27019:2 27020:5 27062:1 27063:1 27073:1 27074:1 27078:2 27096:3 27150:3 27154:1 27160:1 27179:1 27197:1 27202:1 27227:1 27236:1 27241:1 27247:3 27248:1 27309:3 27333:1 27379:1 27390:1 27394:1 27396:1 27402:2 27407:1 27433:1 27434:1 27440:1 27447:3 27477:1 27491:1 27492:1 27506:1 27521:1 27530:1 27534:1 27547:2 27553:2 27564:1 27569:1 27572:1 27590:1 27598:1 27619:1 27635:1 27637:1 27638:1 27643:3 27652:1 27667:1 27669:1 27672:1 27683:3 27689:1 27706:1 27715:3 27716:3 27723:3 27730:1 27732:1 27734:1 27739:5 27765:1 27775:5 27778:1 27784:2 27792:1 27797:1 27812:1 27820:1
8 1:4 8:1 21:1 40:1 43:1 46:1 47:2 83:2 88:1 102:1 121:1 125:1 132:1 148:1 158:1 160:1 162:1 163:1 181:1 190:1 194:4 214:2 222:1 234:1 240:4 250:1 263:1 279:1 303:1 327:3 328:1 329:1 354:1 369:2 416:2 431:1 432:2 441:2 451:1 477:1 486:1 494:1 567:1 575:1 587:2 594:2 605:4 627:8 656:1 659:1 667:5 683:1 686:1 688:1 749:1 771:2 784:1 796:1 843:5 850:2 856:1 869:1 870:1 876:5 891:1 906:1 925:1 930:4 934:2 969:1 970:1 973:3 984:1 991:1 1045:1 1050:1 1052:1 1068:2 1074:1 1086:1 1093:1 1105:1 1129:3 1138:1 1147:1 1156:1 1157:1 1170:1 1172:2 1176:1 1182:1 1187:1 1190:1 1191:1 1201:1 1202:1 1205:1 1210:1 1221:1 1222:1 1233:1 1235:1 1238:1 1241:1 1243:2 1244:1 1250:1 1251:1 1253:1 1255:1 1265:1 1270:1 1278:1 1296:1 1311:1 1323:1 1324:1 1332:1 1348:1 1362:1 1371:1 1374:1 1379:1 1380:1 1386:1 1389:2 1393:5 1395:5 1399:1 1411:2 1422:1 1424:3 1432:4 1446:2 1468:1 1472:1 1475:3 1496:1 1509:4 1513:1 1523:2 1525:1 1527:1 1553:1 1565:2 1576:1 1578:2 1580:2 1588:1 1607:1 1612:1 1626:2 1636:1 1640:1 1644:1 1659:1 1663:2 1669:1 1670:2 1681:1 1682:1 1688:1 1692:1 1696:1 1697:2 1717:1 1720:1 1732:1 1738:1 1740:1 1744:1 1753:2 1762:1 1769:1 1774:1 1776:2 1779:1 1787:4 1791:1 1796:1 1797:1 1801:2 1815:1 1818:2 1824:1 1833:1 1835:1 1844:2 1849:1 1856:1 1858:2 1859:1 1871:1 1883:1 1887:1 1926:1 1928:4 1943:1 1956:1 1957:1 1958:1 1962:2 1996:1 1997:1 2006:1 2012:1 2023:1 2057:5 2072:1 2090:1 2110:1 2124:1 2136:1 2145:1 2174:1 2175:1 2176:1 2177:6 2179:1 2181:1 2185:3 2188:1 2193:2 2194:1 2196:2 2201:7 2203:3 2208:3 2209:1 2211:2 2214:1 2216:1 2248:1 2252:1 2260:3 2274:1 2285:1 2288:1 2293:1 2295:1 2334:1 2378:1 2380:1 2408:1 2418:1 2430:1 2437:1 2487:1 2499:1 2510:1 2547:1 2557:1 2563:1 2565:1 2569:1 2583:1 2597:1 2598:1 2599:1 2601:1 2602:3 2618:1 2621:1 2631:1 2646:2 2649:1 2650:1 2662:1 2676:3 2687:1 2701:1 2703:1 2705:1 2713:2 2725:1 2731:1 2732:1 2755:1 2760:1 2766:2 2774:7 2793:3 2801:2 2803:2 2811:1 2818:1 2831:3 2840:1 2854:1 2869:1 2880:1 2883:1 2885:1 2886:1 2897:1 2908:2 2948:1 2958:1 2983:1 2995:2 2996:1 3002:1 3010:1 3017:1 3055:1 3062:2 3072:1 3090:1 3092:1 3122:1 3127:1 3131:3 3134:3 3137:4 3138:2 3148:1 3158:6 3164:1 3174:1 3195:1 3216:1 3227:1 3233:1 3258:1 3313:2 3324:1 3325:1 3339:1 3362:1 3383:1 3406:1 3423:1 3434:1 3442:1 3443:2 3456:1 3464:1 3481:1 3491:1 3496:1 3506:1 3516:1 3518:2 3520:1 3530:2 3537:1 3538:1 3550:1 3555:1 3574:1 3584:1 3585:1 3614:1 3621:2 3625:2 3630:1 3646:1 3647:1 3650:1 3680:1 3682:1 3688:1 3692:1 3699:1 3709:2 3715:1 3718:1 3724:2 3728:2 3732:1 3738:1 3751:1 3757:2 3758:1 3764:1 3795:1 3803:1 3807:1 3810:1 3815:1 3818:3 3826:1 3836:2 3842:1 3857:2 3858:5 3916:2 3923:1 3928:1 3929:1 3934:1 3940:1 3970:1 3983:1 3986:1 3988:1 3998:1 4002:1 4003:1 4011:2 4020:2 4030:2 4031:1 4035:5 4042:1 4043:1 4052:1 4068:1 4094:3 4109:1 4115:1 4126:1 4129:6 4131:1 4152:2 4169:1 4174:1 4196:1 4224:1 4230:3 4234:1 4235:1 4249:1 4250:1 4251:1 4281:2 4290:1 4307:1 4315:1 4321:1 4342:2 4351:1 4384:1 4400:2 4407:1 4426:3 4433:2 4459:1 4462:3 4471:1 4474:1 4489:1 4497:3 4498:1 4500:1 4503:1 4510:1 4533:1 4536:1 4546:1 4565:1 4567:1 4645:1 4648:14 4649:1 4658:1 4669:1 4670:1 4673:1 4677:1 4713:1 4747:1 4767:3 4787:7 4789:6 4792:1 4795:1 4796:1 4797:2 4800:2 4802:2 4808:1 4810:1 4813:1 4814:7 4840:1 4871:2 4903:1 4906:1 4944:1 4947:4 4972:1 4994:1 4997:1 5002:2 5005:1 5010:1 5013:1 5020:1 5023:1 5044:3 5047:1 5074:1 5084:1 5092:1 5102:1 5104:2 5123:1 5126:2 5136:1 5170:1 5171:1 5182:1 5201:1 5212:1 5222:2 5224:1 5248:1 5253:1 5269:1 5275:1 5286:1 5296:1 5299:2 5301:1 5304:1 5309:2 5311:1 5313:1 5315:2 5319:1 5320:1 5322:1 5353:1 5357:1 5379:3 5386:1 5413:1 5422:1 5423:1 5436:1 5437:1 5446:1 5448:1 5486:1 5504:1 5574:1 5585:1 5587:4 5593:1 5609:2 5636:1 5643:3 5671:1 5689:2 5708:3 5710:2 5739:4 5755:2 5760:1 5773:1 5795:1 5804:2 5808:1 5828:2 5832:1 5862:1 5867:1 5896:1 5910:1 5913:3 5916:1 5935:1 5942:7 5945:1 5950:1 5961:1 5982:1 5993:7 6027:1 6034:5 6037:2 6041:1 6044:1 6045:4 6046:1 6047:2 6048:2 6052:2 6053:1 6058:3 6060:4 6063:1 6074:1 6089:1 6100:1 6101:1 6121:1 6140:1 6147:2 6174:1 6187:3 6191:2 6203:1 6206:1 6216:1 6221:1 6256:1 6257:1 6259:1 6265:1 6268:1 6286:1 6288:1 6295:1 6327:1 6330:1 6338:1 6340:1 6353:1 6373:1 6375:1 6399:1 6416:1 6418:1 6425:1 6431:1 6433:1 6437:2 6457:3 6462:2 6465:1 6475:1 6486:1 6489:4 6493:6 6497:2 6507:1 6508:1 6512:2 6519:5 6520:1 6521:2 6522:1 6529:3 6579:2 6580:1 6588:1 6591:1 6592:1 6596:1 6597:1 6612:1 6620:1 6625:2 6645:1 6675:1 6683:1 6687:1 6696:1 6703:1 6707:1 6716:1 6721:1 6722:1 6732:1 6735:1 6737:1 6739:1 6748:2 6767:1 6768:1 6771:1 6779:1 6792:1 6794:1 6816:3 6818:1 6838:1 6839:1 6852:1 6860:1 6890:1 6903:2 6904:1 6914:2 6934:2 6941:3 6943:1 6948:1 6954:1 6956:3 6960:4 6994:1 6999:1 7011:1 7048:5 7073:5 7077:2 7088:1 7106:1 7123:1 7137:1 7144:2 7186:1 7187:1 7231:3 7249:10 7250:4 7273:1 7274:3 7286:2 7307:1 7311:1 7323:34 7344:7 7345:5 7369:1 7370:1 7381:2 7384:1 7403:1 7409:1 7414:1 7434:3 7488:2 7513:2 7525:1 7539:4 7550:1 7563:1 7566:1 7571:1 7590:1 7600:1 7603:1 7646:2 7650:2 7675:1 7677:1 7684:1 7696:1 7698:1 7701:1 7706:1 7715:3 7771:1 7789:1 7791:12 7812:1 7815:1 7817:2 7826:1 7843:1 7879:3 7884:1 7891:1 7898:1 7914:1 7922:1 7929:1 7936:2 7947:1 7949:2 7957:6 7958:1 7964:2 7990:1 7994:1 8013:1 8026:1 8031:1 8034:1 8035:1 8054:1 8064:1 8116:1 8117:1 8122:1 8123:2 8124:1 8125:4 8126:1 8128:2 8130:1 8135:2 8136:1 8140:1 8155:1 8159:1 8161:3 8166:1 8169:1 8176:1 8180:1 8182:1 8191:1 8221:1 8229:5 8268:1 8280:4 8282:2 8293:2 8322:1 8326:1 8328:1 8340:1 8351:1 8362:1 8397:1 8404:1 8406:1 8413:1 8423:1 8437:2 8439:1 8441:1 8467:1 8484:1 8485:2 8493:1 8503:1 8505:1 8515:1 8531:1 8539:1 8556:4 8558:4 8575:1 8620:1 8621:1 8670:2 8682:2 8694:1 8697:1 8698:1 8705:2 8716:1 8719:3 8747:1 8748:2 8752:2 8788:1 8796:1 8801:1 8803:1 8813:1 8816:1 8817:1 8828:1 8853:1 8858:1 8876:1 8878:1 8898:1 8907:1 8926:1 8930:2 8942:2 8944:2 8954:1 8962:1 8971:1 8979:1 8991:1 8996:1 8997:1 9000:2 9007:1 9010:2 9016:1 9023:1 9028:1 9030:2 9034:1 9045:1 9048:1 9062:1 9063:2 9068:2 9073:1 9080:1 9087:1 9118:1 9179:2 9180:1 9215:1 9236:3 9242:2 9244:1 9249:2 9257:2 9267:1 9279:1 9317:1 9325:2 9372:1 9385:1 9405:2 9418:1 9420:2 9430:1 9432:1 9442:1 9451:1 9460:1 9473:4 9484:2 9486:1 9495:1 9507:1 9522:1 9533:2 9534:1 9544:1 9569:1 9571:2 9594:1 9597:1 9605:1 9621:1 9683:1 9687:1 9696:1 9697:1 9701:1 9707:2 9712:1 9741:1 9757:1 9762:1 9770:1 9773:1 9778:1 9783:1 9788:1 9793:1 9799:4 9803:1 9822:1 9823:3 9844:1 9858:1 9870:1 9877:5 9882:3 9883:1 9917:5 9925:1 9935:1 9947:1 9955:2 9963:1 9974:1 9981:1 9996:1 10013:1 10046:2 10052:1 10054:1 10066:1 10070:3 10073:1 10075:2 10076:3 10083:1 10085:1 10121:1 10124:1 10126:1 10132:1 10136:2 10144:1 10153:2 10167:4 10177:1 10183:1 10187:1 10199:1 10254:2 10259:1 10276:1 10281:1 10287:3 10289:3 10296:3 10299:3 10300:5 10304:2 10307:3 10308:2 10312:1 10315:1 10322:1 10345:1 10346:1 10347:1 10371:2 10398:1 10404:1 10406:1 10410:1 10417:1 10427:2 10429:1 10438:1 10477:1 10498:1 10515:1 10526:1 10564:1 10573:1 10574:1 10580:1 10585:2 10595:2 10607:1 10633:1 10637:4 10646:1 10652:2 10653:1 10654:1 10664:2 10679:1 10683:1 10684:2 10698:1 10717:2 10724:3 10750:1 10754:2 10778:1 10781:1 10784:1 10786:1 10799:2 10804:1 10821:3 10832:1 10833:1 10834:1 10850:1 10855:1 10872:2 10907:1 10933:4 10940:2 10965:2 10973:2 10977:1 10982:1 10989:1 10994:4 10995:1 11001:2 11046:2 11052:2 11054:1 11056:1 11062:2 11067:1 11071:1 11081:1 11086:1 11092:1 11093:1 11107:1 11109:1 11116:1 11140:1 11149:1 11154:1 11170:1 11176:2 11222:1 11229:1 11245:1 11247:1 11252:2 11261:1 11291:1 11304:1 11310:1 11313:1 11354:3 11355:2 11375:1 11387:1 11388:1 11389:2 11393:3 11394:1 11401:1 11410:2 11414:1 11416:1 11421:1 11422:1 11437:1 11440:1 11447:1 11477:1 11492:1 11499:5 11501:2 11515:1 11521:1 11532:1 11536:1 11552:1 11581:2 11606:1 11611:1 11619:1 11639:1 11654:1 11661:2 11662:1 11671:1 11688:2 11689:1 11699:1 11704:1 11735:1 11756:1 11778:1 11860:1 11876:2 11888:2 11889:1 11903:1 11933:1 11945:1 11960:1 12007:1 12009:1 12013:1 12018:1 12021:1 12023:1 12024:1 12039:1 12079:1 12152:1 12156:1 12157:1 12167:2 12169:1 12214:2 12234:1 12235:2 12236:1 12241:1 12242:1 12243:1 12250:2 12261:1 12262:2 12265:1 12271:7 12276:1 12300:2 12313:2 12323:1 12324:1 12369:1 12385:1 12396:1 12402:2 12404:5 12409:3 12468:1 12472:14 12475:1 12502:1 12522:1 12526:1 12528:1 12532:1 12539:1 12548:1 12557:1 12565:1 12591:1 12612:1 12640:1 12641:2 12661:1 12687:1 12701:1 12710:3 12733:1 12737:2 12743:3 12748:1 12766:1 12768:1 12775:3 12778:1 12790:1 12856:1 12884:1 12885:1 12893:1 12894:2 12896:1 12910:1 12919:2 12932:2 12942:2 12945:1 12951:1 12970:1 12971:1 12974:2 12982:2 12995:1 13001:1 13016:1 13018:1 13033:1 13040:1 13053:1 13067:1 13068:1 13080:1 13086:2 13097:2 13120:2 13126:4 13133:1 13155:1 13170:1 13179:1 13186:1 13187:1 13211:1 13247:1 13263:1 13270:1 13276:2 13295:5 13310:1 13316:1 13323:2 13332:1 13366:1 13367:1 13371:1 13379:1 13388:1 13401:1 13441:1 13459:1 13464:1 13476:1 13498:1 13501:1 13506:2 13539:1 13557:1 13563:2 13586:1 13597:1 13599:1 13618:1 13628:2 13629:2 13634:1 13662:1 13666:1 13676:1 13691:2 13692:1 13693:1 13701:1 13704:1 13708:1 13723:1 13726:1 13744:1 13751:2 13757:1 13805:1 13806:2 13825:1 13875:1 13882:1 13889:1 13890:1 13894:1 13906:1 13911:1 13945:1 13956:1 13969:2 13973:1 13987:1 13989:1 13991:2 13996:3 14001:2 14036:5 14043:1 14045:1 14049:1 14093:1 14106:1 14154:1 14192:1 14193:1 14202:1 14210:1 14211:1 14222:1 14233:2 14240:1 14249:2 14259:1 14267:2 14297:1 14303:2 14306:1 14320:2 14339:1 14350:1 14380:1 14391:1 14403:1 14418:2 14419:1 14422:1 14430:1 14438:1 14439:1 14443:1 14445:2 14451:4 14487:3 14492:1 14506:1 14508:2 14557:1 14564:3 14577:1 14583:1 14586:1 14604:1 14612:1 14613:1 14618:1 14622:1 14628:1 14630:1 14634:1 14635:1 14638:4 14643:1 14655:1 14659:1 14667:2 14672:1 14696:2 14705:1 14724:1 14728:1 14769:3 14796:1 14797:1 14801:1 14809:1 14818:1 14824:1 14841:3 14843:1 14851:2 14881:1 14887:1 14901:1 14907:1 14908:1 14918:1 14924:11 14945:1 14951:1 14952:2 14967:1 14973:2 14978:1 14993:2 15002:1 15012:9 15018:1 15033:1 15039:2 15073:1 15080:2 15083:1 15095:1 15097:1 15122:1 15144:1 15145:1 15166:1 15170:4 15173:1 15177:2 15178:1 15187:2 15188:2 15193:1 15195:1 15196:2 15197:2 15207:1 15229:1 15263:1 15266:1 15272:1 15297:1 15301:1 15309:1 15314:2 15332:1 15345:1 15352:1 15372:1 15376:1 15399:2 15402:1 15419:1 15442:1 15470:1 15483:3 15495:2 15504:2 15513:1 15520:2 15538:2 15539:1 15560:1 15567:2 15568:1 15571:1 15578:1 15582:2 15584:1 15629:1 15639:1 15655:2 15723:1 15738:1 15762:4 15768:1 15775:3 15778:1 15786:1 15798:1 15807:1 15838:1 15839:4 15842:1 15863:2 15867:1 15896:1 15907:1 15915:1 15937:1 15951:1 15962:2 15984:1 16028:2 16055:1 16067:1 16070:1 16083:1 16095:1 16108:1 16117:5 16119:1 16129:2 16139:1 16157:1 16162:1 16221:1 16238:1 16258:1 16312:1 16319:1 16324:1 16329:1 16331:1 16337:2 16347:2 16351:1 16399:4 16434:2 16435:3 16457:1 16462:2 16477:1 16486:1 16489:4 16505:3 16518:2 16519:1 16525:1 16531:1 16555:1 16570:2 16583:1 16592:2 16612:1 16625:3 16664:1 16674:5 16680:1 16729:2 16733:2 16743:3 16756:1 16762:1 16777:5 16781:1 16782:1 16787:1 16795:1 16807:1 16808:1 16824:1 16832:1 16837:1 16865:1 16873:1 16892:1 16915:1 16916:1 16925:1 16932:2 16934:1 16962:1 16970:1 16985:1 17009:1 17016:1 17046:2 17094:1 17097:1 17098:2 17110:5 17127:1 17132:1 17165:1 17183:1 17205:1 17221:1 17224:1 17230:1 17235:1 17241:1 17262:1 17265:1 17266:2 17276:1 17317:1 17326:2 17335:1 17342:1 17353:1 17376:1 17398:1 17410:1 17415:1994 17425:1 17430:1 17433:1 17473:1 17476:1 17478:1 17486:1 17505:3 17547:1 17589:1 17594:1 17600:1 17601:1 17613:1 17639:1 17644:1 17646:1 17650:1 17703:1 17706:2 17744:1 17753:1 17782:1 17810:1 17814:1 17820:2 17824:1 17831:1 17845:1 17869:1 17871:1 17892:1 17900:3 17911:1 17917:1 17928:1 17931:1 17936:1 17944:2 17946:3 17964:1 17978:1 17980:1 17989:1 18009:1 18015:1 18074:1 18085:1 18100:1 18109:1 18119:2 18121:1 18142:1 18143:1 18167:1 18172:3 18175:1 18187:1 18210:1 18232:5 18275:5 18277:1 18303:1 18306:1 18314:1 18319:1 18320:1 18324:1 18326:2 18333:1 18335:1 18355:1 18359:3 18360:1 18364:1 18365:1 18378:1 18384:3 18390:1 18392:1 18404:1 18410:2 18411:1 18412:1 18417:1 18427:1 18432:1 18437:2 18444:1 18457:1 18476:1 18491:1 18495:1 18506:1 18539:1 18543:3 18545:2 18587:1 18596:1 18603:1 18608:1 18619:1 18626:2 18632:2 18637:2 18663:1 18687:1 18703:1 18707:1 18723:1 18724:1 18748:1 18753:1 18754:1 18755:2 18757:1 18760:1 18770:1 18786:1 18801:1 18802:1 18805:2 18808:1 18838:1 18845:1 18861:1 18875:3 18876:1 18878:2 18884:1 18886:1 18890:1 18893:1 18901:1 18908:1 18912:2 18928:1 18932:1 18936:4 18944:2 18947:1 18949:1 18966:1 18984:1 18998:1 19004:1 19011:1 19013:1 19014:1 19015:1 19033:3 19037:1 19044:1 19050:1 19064:1 19106:1 19109:1 19137:2 19140:1 19143:1 19148:1 19152:1 19176:1 19177:1 19186:1 19205:4 19213:1 19223:1 19225:1 19229:1 19233:1 19252:2 19268:1 19306:1 19309:1 19328:1 19330:1 19358:1 19370:1 19385:1 19395:1 19407:1 19409:1 19413:1 19441:2 19455:1 19470:1 19491:1 19492:2 19500:2 19502:1 19520:1 19522:2 19541:1 19554:1 19556:6 19559:1 19560:2 19563:1 19568:2 19574:1 19577:1 19582:2 19585:1 19590:1 19593:1 19607:1 19609:1 19617:1 19689:1 19695:2 19701:1 19727:1 19731:2 19733:1 19747:1 19751:1 19753:1 19755:1 19769:1 19774:1 19785:2 19796:1 19797:1 19810:2 19813:1 19819:3 19831:1 19852:2 19857:1 19860:1 19877:1 19889:2 19894:1 19905:2 19910:1 19915:2 19918:1 19923:1 19933:1 19942:1 19950:1 19956:1 19959:1 19965:1 19990:1 20016:2 20025:2 20031:1 20039:1 20041:3 20047:1 20059:1 20069:2 20070:1 20073:2 20075:1 20085:1 20089:2 20091:1 20143:1 20152:1 20169:2 20171:2 20178:1 20188:1 20190:1 20192:1 20193:1 20233:1 20260:1 20270:1 20274:1 20322:1 20325:3 20327:1 20332:1 20334:1 20343:1 20374:1 20395:2 20398:1 20399:1 20401:1 20411:5 20421:1 20429:2 20443:1 20447:3 20452:2 20454:1 20469:1 20471:1 20490:2 20519:1 20525:2 20526:2 20528:1 20529:1 20535:1 20539:1 20541:1 20545:1 20546:1 20548:1 20551:2 20553:1 20554:1 20556:2 20559:6 20563:1 20571:1 20574:1 20590:1 20592:1 20596:1 20602:1 20608:1 20630:1 20680:1 20682:1 20683:1 20684:1 20685:2 20730:1 20731:2 20747:1 20752:4 20755:2 20775:2 20778:1 20803:2 20811:1 20828:2 20832:1 20858:1 20879:1 20893:5 20906:1 20915:1 20927:4 20939:2 20960:8 20967:1 20973:1 21002:1 21022:1 21028:1 21029:1 21057:1 21072:1 21080:1 21087:2 21100:2 21103:1 21161:1 21167:1 21179:1 21186:1 21189:1 21199:1 21221:1 21225:1 21233:1 21262:1 21284:1 21287:1 21300:1 21304:1 21312:1 21341:1 21342:1 21346:1 21354:2 21363:1 21365:1 21375:1 21376:1 21382:1 21397:1 21414:1 21420:4 21442:1 21472:1 21480:2 21483:3 21496:1 21513:2 21534:1 21536:1 21547:1 21549:1 21550:1 21571:2 21584:2 21608:1 21609:1 21614:1 21633:4 21640:1 21645:3 21657:2 21683:1 21703:2 21705:1 21709:1 21728:1 21735:1 21737:1 21742:1 21747:1 21753:1 21758:1 21784:1 21789:1 21816:3 21817:1 21834:2 21837:1 21838:1 21844:2 21847:1 21857:1 21869:1 21876:1 21879:1 21885:1 21891:1 21928:1 21930:1 21933:2 21951:1 21965:1 21966:1 21971:1 21979:1 21984:3 21985:1 22008:3 22015:2 22026:1 22043:1 22054:3 22067:1 22078:1 22080:1 22085:1 22105:1 22125:3 22156:1 22164:1 22165:1 22171:1 22215:1 22230:1 22244:1 22268:1 22288:3 22298:1 22304:1 22336:1 22362:1 22366:1 22374:1 22381:2 22384:1 22386:1 22389:1 22398:1 22400:1 22448:2 22449:1 22450:1 22466:1 22479:1 22491:1 22493:1 22542:2 22545:2 22547:1 22575:1 22598:1 22604:1 22614:1 22626:1 22657:1 22665:1 22666:4 22686:2 22687:2 22696:1 22722:1 22724:1 22742:1 22765:1 22779:1 22784:3 22791:1 22798:1 22810:1 22814:1 22817:1 22843:1 22859:1 22891:3 22904:1 22905:1 22935:1 22941:1 22946:1 22962:2 22965:1 22972:1 22991:2 22996:1 23007:1 23010:1 23013:1 23015:2 23025:1 23038:1 23073:2 23096:3 23100:1 23136:1 23142:1 23144:1 23147:1 23149:2 23151:1 23152:2 23153:1 23158:1 23165:1 23171:1 23189:2 23234:1 23252:2 23263:2 23273:3 23277:2 23285:1 23290:1 23291:1 23307:1 23308:3 23310:2 23335:1 23360:1 23369:1 23403:2 23414:1 23422:2 23456:1 23493:4 23496:2 23559:1 23563:1 23594:2 23609:1 23634:1 23646:1 23660:4 23669:1 23681:2 23683:1 23689:1 23692:6 23699:3 23717:2 23718:1 23719:1 23720:1 23721:1 23723:1 23766:2 23777:2 23779:1 23791:1 23800:1 23801:1 23848:3 23853:2 23862:1 23865:1 23871:1 23874:1 23875:1 23882:1 23906:1 23907:2 23911:1 23912:1 23913:2 23919:1 23946:1 23953:1 23955:1 23956:1 23966:1 23970:1 23973:1 23985:1 23994:1 23996:1 23998:1 24017:1 24022:1 24054:1 24066:1 24071:1 24092:2 24093:1 24094:1 24122:1 24143:1 24151:1 24153:5 24160:1 24166:1 24196:1 24271:1 24288:1 24290:1 24310:1 24328:1 24331:1 24334:2 24340:4 24423:1 24428:1 24434:1 24439:1 24456:2 24459:1 24463:2 24470:2 24473:1 24497:1 24507:1 24551:1 24562:1 24567:1 24570:1 24571:1 24586:1 24602:1 24603:1 24605:1 24612:1 24687:1 24704:1 24723:1 24733:1 24740:1 24758:1 24807:1 24809:1 24871:1 24889:1 24893:1 24896:1 24904:1 24910:1 24936:1 24940:1 24956:1 24965:2 24969:5 24972:1 24982:1 25003:1 25029:1 25033:1 25060:1 25069:1 25096:2 25097:1 25112:1 25114:2 25115:3 25149:1 25159:1 25181:1 25192:1 25221:1 25230:1 25234:1 25240:2 25242:4 25247:1 25249:1 25262:1 25265:1 25267:1 25271:1 25279:2 25282:1 25288:1 25306:1 25309:1 25323:1 25329:1 25333:4 25337:2 25354:1 25363:1 25369:1 25372:1 25381:1 25386:1 25387:1 25392:1 25445:1 25455:1 25460:1 25468:1 25474:1 25496:2 25497:1 25505:1 25507:1 25508:1 25513:3 25517:2 25518:1 25519:1 25523:1 25525:2 25550:2 25561:1 25567:2 25568:3 25570:1 25572:1 25584:1 25614:1 25619:1 25630:1 25634:1 25650:1 25651:1 25656:2 25672:4 25679:1 25715:2 25731:1 25735:1 25738:2 25742:1 25757:1 25761:1 25774:1 25779:1 25781:1 25782:1 25792:2 25793:1 25796:1 25802:2 25805:2 25806:1 25817:1 25820:2 25822:1 25824:1 25826:2 25827:4 25834:1 25837:2 25839:2 25861:1 25870:1 25871:2 25872:1 25900:4 25915:1 25925:1 25927:6 25928:1 25930:1 25957:1 25959:1 25988:2 25994:1 25997:1 26007:1 26019:1 26021:1 26032:1 26072:1 26095:1 26099:1 26100:1 26107:1 26115:1 26123:1 26171:2 26204:1 26211:1 26260:1 26268:1 26283:1 26289:2 26317:1 26319:1 26335:1 26346:1 26349:1 26365:1 26368:1 26406:2 26413:1 26417:1 26439:2 26446:1 26448:1 26454:1 26484:1 26485:2 26490:1 26508:18 26513:3 26530:1 26539:1 26542:1 26547:3 26562:1 26564:1 26567:1 26576:1 26591:1 26610:3 26619:1 26622:1 26634:1 26645:3 26655:3 26662:1 26692:11 26733:1 26759:1 26764:2 26777:1 26782:1 26787:1 26800:1 26807:1 26813:1 26834:2 26852:2 26864:2 26867:1 26869:2 26882:2 26886:1 26904:1 26921:1 26944:1 26946:2 26948:1 26952:1 26953:2 26965:1 26966:2 26975:1 26977:1 26982:1 27005:2 27012:1 27016:2 27019:2 27020:5 27062:1 27063:1 27073:1 27074:1 27078:2 27096:3 27150:4 27154:1 27160:1 27179:1 27197:1 27202:1 27227:1 27236:1 27241:1 27247:3 27248:1 27309:3 27333:1 27379:1 27390:2 27394:1 27396:1 27402:2 27407:1 27433:1 27434:1 27440:1 27447:3 27477:1 27491:1 27492:1 27506:1 27521:1 27530:1 27534:1 27547:2 27553:2 27564:1 27569:1 27572:1 27590:1 27598:1 27609:2 27619:1 27635:1 27637:1 27638:1 27643:3 27652:1 27667:1 27669:1 27672:1 27683:3 27689:1 27706:1 27715:3 27716:4 27723:3 27730:1 27732:1 27734:1 27739:6 27765:1 27775:5 27778:1 27784:2 27792:1 27797:1 27812:1 27820:1
8 1:4 8:1 21:1 40:1 43:1 46:1 47:2 83:2 88:1 102:1 121:1 125:1 132:1 148:1 158:1 160:1 162:1 163:1 181:1 190:1 194:4 214:2 222:1 234:1 240:4 250:1 263:1 279:1 303:1 327:3 328:1 329:1 354:1 369:2 416:2 431:1 432:2 441:2 451:1 477:1 486:1 494:1 567:1 575:1 587:2 594:2 605:4 627:8 656:1 659:1 667:5 683:1 686:1 688:1 749:1 771:2 784:1 796:1 843:5 850:2 856:1 869:1 870:1 876:5 891:1 906:1 925:1 930:4 934:2 969:1 970:1 973:3 984:1 991:1 1011:1 1045:1 1050:1 1052:1 1068:2 1074:1 1086:1 1093:1 1105:1 1129:3 1138:1 1147:1 1156:1 1157:1 1170:1 1172:2 1176:1 1182:1 1187:1 1190:1 1191:1 1201:1 1202:1 1205:1 1210:1 1221:1 1222:1 1233:1 1235:1 1238:1 1241:1 1243:2 1244:1 1250:1 1251:1 1253:1 1255:1 1265:1 1270:1 1278:1 1296:1 1311:1 1323:1 1324:1 1332:1 1348:1 1362:1 1371:1 1374:1 1379:1 1380:1 1386:1 1389:2 1393:5 1395:5 1399:1 1411:2 1422:1 1424:3 1432:4 1446:2 1468:1 1472:1 1475:3 1496:1 1509:4 1513:1 1523:2 1525:1 1527:1 1542:1 1553:1 1565:2 1576:1 1578:2 1580:2 1588:1 1607:1 1612:1 1626:2 1636:1 1640:1 1644:1 1659:1 1663:2 1669:1 1670:2 1681:1 1682:1 1688:1 1692:1 1696:1 1697:2 1717:1 1720:1 1732:1 1738:1 1740:1 1744:1 1753:2 1762:1 1769:1 1774:1 1776:2 1779:1 1787:4 1791:1 1796:1 1797:1 1801:2 1815:1 1818:2 1824:1 1833:1 1835:1 1844:2 1849:1 1856:1 1858:2 1859:1 1871:1 1883:1 1887:1 1926:1 1928:6 1943:1 1956:1 1957:1 1958:1 1962:2 1996:1 1997:1 2006:1 2012:1 2023:1 2057:5 2072:1 2090:1 2110:1 2124:1 2136:1 2145:1 2174:1 2175:1 2176:1 2177:8 2179:1 2181:1 2185:3 2188:1 2193:2 2194:1 2196:2 2201:7 2203:3 2208:3 2209:1 2211:3 2214:1 2216:1 2248:1 2252:1 2260:3 2270:1 2274:1 2285:1 2288:1 2293:1 2295:1 2334:1 2378:1 2380:1 2408:1 2418:1 2430:1 2437:1 2487:1 2499:1 2510:1 2547:1 2557:1 2563:1 2565:1 2566:1 2569:1 2582:1 2583:1 2597:1 2598:1 2599:1 2601:1 2602:3 2618:1 2621:1 2631:1 2646:2 2649:1 2650:1 2662:1 2676:3 2687:1 2701:1 2703:1 2705:1 2713:2 2725:1 2731:1 2732:1 2755:1 2760:1 2766:2 2774:8 2793:3 2801:2 2803:2 2811:1 2818:1 2831:4 2840:1 2854:1 2869:1 2880:1 2883:1 2885:1 2886:1 2897:1 2908:2 2948:1 2958:1 2983:1 2995:2 2996:1 3002:1 3010:1 3017:1 3055:1 3062:2 3072:1 3090:1 3092:1 3122:1 3127:1 3131:3 3134:3 3137:4 3138:2 3148:1 3158:6 3164:1 3174:1 3195:1 3216:1 3227:1 3233:1 3258:1 3313:2 3324:1 3325:1 3339:1 3362:1 3383:1 3406:1 3423:1 3434:1 3442:1 3443:2 3456:1 3464:1 3481:1 3491:1 3496:1 3506:1 3516:1 3518:3 3520:1 3530:2 3537:1 3538:1 3550:1 3555:1 3574:1 3584:1 3585:1 3614:1 3616:1 3621:2 3625:2 3630:1 3646:1 3647:1 3650:1 3680:1 3682:1 3688:1 3692:1 3699:1 3709:2 3715:1 3718:1 3724:2 3728:2 3732:1 3738:1 3751:1 3757:2 3758:1 3764:1 3795:1 3803:1 3807:1 3810:1 3815:1 3818:3 3826:1 3836:2 3842:1 3857:2 3858:5 3916:2 3923:1 3928:1 3929:1 3934:1 3940:1 3970:1 3983:1 3986:1 3988:1 3998:1 4002:1 4003:1 4011:2 4020:2 4030:2 4031:1 4035:5 4042:1 4043:1 4052:1 4068:1 4094:3 4109:1 4115:1 4126:1 4129:6 4131:1 4152:2 4169:1 4174:1 4196:1 4224:1 4230:3 4234:1 4235:1 4249:1 4250:1 4251:1 4281:2 4290:1 4307:1 4315:1 4321:1 4342:2 4351:1 4384:1 4400:2 4407:1 4426:3 4433:2 4459:1 4462:3 4471:1 4474:1 4489:1 4497:3 4498:1 4500:1 4503:1 4510:1 4533:1 4536:1 4546:1 4565:1 4567:1 4645:1 4648:15 4649:1 4658:1 4669:1 4670:1 4673:1 4677:1 4713:1 4747:1 4767:4 4787:7 4789:6 4792:1 4795:1 4796:1 4797:2 4800:2 4802:2 4808:1 4810:1 4813:1 4814:7 4840:1 4871:2 4903:1 4906:1 4944:1 4947:4 4972:1 4994:1 4997:1 5002:2 5005:1 5010:1 5013:1 5020:1 5023:1 5044:4 5047:1 5074:1 5084:1 5092:1 5102:1 5104:2 5123:1 5126:2 5136:1 5170:1 5171:1 5182:1 5201:1 5212:1 5222:2 5224:1 5248:1 5253:1 5269:1 5275:1 5286:1 5296:1 5299:2 5301:1 5304:1 5309:2 5311:1 5313:1 5315:2 5319:1 5320:1 5322:1 5353:1 5357:2 5379:3 5386:1 5413:1 5422:1 5423:1 5436:1 5437:1 5446:1 5448:1 5486:1 5504:1 5574:2 5585:1 5587:4 5593:1 5609:2 5636:1 5643:3 5671:1 5689:2 5708:3 5710:2 5739:4 5755:2 5760:1 5773:1 5795:1 5804:2 5808:2 5828:2 5832:1 5862:1 5867:1 5896:1 5910:1 5913:3 5916:1 5935:1 5942:7 5945:1 5950:1 5961:1 5982:1 5993:8 6027:1 6034:5 6037:2 6041:1 6044:1 6045:4 6046:2 6047:2 6048:2 6052:2 6053:1 6056:1 6058:3 6060:4 6063:1 6074:1 6089:1 6100:1 6101:1 6121:1 6140:1 6147:2 6174:1 6187:3 6191:2 6203:1 6206:1 6216:1 6221:1 6256:1 6257:1 6259:1 6265:1 6268:1 6286:1 6288:1 6295:1 6327:1 6330:1 6338:1 6340:1 6353:1 6373:1 6375:1 6399:1 6416:1 6418:1 6425:1 6431:1 6433:1 6437:2 6457:3 6462:2 6465:1 6475:1 6486:1 6489:4 6493:7 6497:2 6507:1 6508:1 6512:2 6519:5 6520:1 6521:2 6522:1 6529:3 6579:2 6580:1 6588:1 6591:1 6592:1 6596:1 6597:1 6612:1 6620:1 6625:2 6645:1 6657:1 6675:1 6683:1 6687:1 6696:1 6703:1 6707:1 6716:1 6721:1 6722:1 6732:1 6735:1 6737:1 6739:1 6748:2 6767:1 6768:1 6771:1 6779:1 6792:1 6794:1 6816:3 6818:1 6826:1 6838:1 6839:1 6852:1 6860:1 6890:1 6903:2 6904:1 6914:2 6934:2 6941:3 6943:1 6948:1 6954:1 6956:3 6960:4 6994:1 6999:1 7011:1 7048:5 7073:5 7077:2 7088:1 7106:1 7123:1 7137:1 7144:2 7186:1 7187:1 7231:3 7249:10 7250:4 7273:1 7274:3 7286:2 7307:1 7311:1 7323:37 7344:8 7345:6 7369:1 7370:1 7381:2 7384:1 7403:1 7409:1 7414:1 7434:3 7488:2 7513:2 7525:1 7539:5 7550:1 7563:1 7566:1 7571:1 7590:1 7600:1 7603:1 7646:2 7650:2 7675:1 7677:1 7684:1 7696:1 7698:1 7701:1 7706:1 7715:3 7771:1 7789:1 7791:12 7812:1 7815:1 7817:2 7826:1 7843:1 7879:3 7884:1 7891:1 7898:1 7914:1 7922:1 7929:1 7936:2 7947:1 7949:2 7957:7 7958:1 7964:2 7990:1 7994:1 8013:1 8026:1 8031:1 8034:1 8035:1 8054:1 8064:1 8116:1 8117:1 8122:1 8123:2 8124:1 8125:4 8126:1 8128:2 8130:2 8135:2 8136:1 8140:1 8155:1 8159:1 8161:3 8166:1 8169:1 8176:1 8180:1 8182:1 8191:1 8221:1 8229:5 8268:1 8280:4 8282:2 8293:2 8322:1 8326:1 8328:1 8340:1 8351:1 8362:1 8397:1 8404:1 8406:1 8413:1 8423:1 8437:2 8439:1 8441:1 8467:1 8484:2 8485:2 8493:1 8503:1 8505:1 8515:1 8531:1 8539:1 8556:4 8558:4 8575:1 8620:1 8621:1 8670:2 8682:2 8694:1 8697:1 8698:1 8705:2 8716:1 8719:3 8747:1 8748:2 8752:2 8788:1 8796:1 8801:1 8803:1 8813:1 8816:1 8817:1 8828:1 8853:1 8858:1 8876:1 8878:1 8898:1 8907:1 8926:1 8930:2 8942:2 8944:2 8954:1 8962:1 8971:1 8979:1 8991:1 8996:1 8997:1 9000:2 9007:1 9010:2 9016:1 9023:1 9028:1 9030:2 9034:1 9045:1 9048:1 9062:1 9063:2 9068:2 9073:1 9080:1 9087:1 9118:1 9179:2 9180:1 9215:1 9236:3 9242:2 9244:1 9249:2 9257:2 9267:1 9279:1 9317:1 9325:2 9372:1 9385:1 9398:1 9405:2 9418:1 9420:2 9430:1 9432:1 9442:1 9451:1 9460:1 9473:4 9484:2 9486:1 9495:1 9507:1 9522:1 9533:2 9534:1 9544:1 9569:1 9571:2 9594:1 9597:1 9605:1 9621:1 9683:1 9687:1 9696:1 9697:1 9701:1 9707:2 9712:1 9741:1 9757:1 9762:1 9770:1 9773:1 9778:1 9783:1 9788:1 9793:1 9799:4 9802:1 9803:1 9822:1 9823:3 9844:1 9858:1 9870:1 9877:5 9882:4 9883:1 9917:5 9925:2 9935:1 9947:1 9955:2 9961:1 9963:1 9974:1 9981:1 9996:1 10013:1 10046:2 10052:1 10054:1 10066:1 10070:3 10073:1 10075:2 10076:5 10083:1 10085:1 10121:1 10124:1 10126:1 10132:1 10136:2 10144:1 10153:2 10167:4 10174:1 10177:1 10183:1 10187:1 10199:1 10254:2 10259:1 10276:1 10281:1 10287:3 10289:3 10296:3 10299:3 10300:5 10304:2 10307:3 10308:2 10312:1 10315:1 10322:1 10345:1 10346:1 10347:1 10371:2 10398:1 10404:1 10406:1 10410:1 10417:1 10427:2 10429:1 10438:1 10477:1 10498:1 10515:1 10526:1 10564:1 10573:1 10574:1 10580:1 10585:2 10595:2 10607:1 10633:1 10637:4 10646:1 10652:2 10653:1 10654:1 10664:2 10679:1 10683:1 10684:2 10698:1 10717:2 10724:3 10750:1 10754:2 10778:1 10781:1 10784:1 10786:1 10799:2 10804:1 10821:3 10832:1 10833:1 10834:1 10850:1 10855:1 10872:2 10907:1 10933:4 10940:2 10965:2 10973:2 10977:1 10982:1 10989:1 10994:5 10995:1 11001:3 11046:2 11052:2 11054:1 11056:1 11062:2 11067:1 11071:1 11081:1 11086:1 11092:1 11093:1 11107:1 11109:1 11116:1 11140:1 11149:1 11154:1 11170:1 11176:2 11222:1 11229:1 11245:1 11247:1 11252:2 11261:1 11291:1 11304:1 11310:1 11313:1 11354:3 11355:2 11375:1 11387:1 11388:1 11389:2 11393:3 11394:1 11401:1 11410:2 11414:1 11416:1 11421:1 11422:1 11437:1 11440:1 11447:1 11477:1 11492:1 11499:5 11501:2 11515:1 11521:1 11532:1 11536:1 11552:1 11581:2 11606:1 11611:1 11619:1 11639:1 11654:1 11661:2 11662:1 11671:1 11688:2 11689:1 11699:1 11704:1 11735:1 11756:1 11778:1 11860:1 11876:2 11888:2 11889:1 11903:1 11933:1 11945:1 11960:1 12007:1 12009:1 12013:1 12018:1 12021:1 12023:1 12024:1 12039:1 12079:1 12152:1 12156:1 12157:1 12167:2 12169:1 12214:2 12234:1 12235:2 12236:1 12241:1 12242:1 12243:1 12250:2 12261:1 12262:2 12265:1 12271:7 12276:1 12300:2 12313:2 12323:1 12324:1 12369:1 12385:1 12396:1 12402:2 12404:5 12409:3 12468:1 12472:14 12475:1 12502:1 12522:1 12526:1 12528:1 12532:1 12539:1 12548:1 12557:1 12565:1 12591:1 12612:1 12640:1 12641:2 12661:1 12687:1 12701:1 12710:3 12733:1 12737:2 12743:3 12748:1 12766:1 12768:1 12775:3 12778:1 12782:1 12790:1 12856:1 12884:1 12885:1 12893:1 12894:2 12896:1 12910:1 12919:2 12932:2 12942:2 12945:1 12951:1 12970:1 12971:1 12974:2 12982:2 12995:1 13001:1 13016:1 13018:1 13033:1 13040:1 13053:1 13067:1 13068:1 13080:1 13086:2 13097:2 13120:2 13126:4 13133:1 13155:1 13170:1 13179:1 13186:1 13187:1 13211:1 13247:1 13263:1 13270:1 13276:2 13295:5 13310:1 13316:1 13323:2 13332:1 13366:1 13367:1 13371:1 13379:1 13384:1 13388:1 13401:1 13441:1 13459:1 13464:1 13476:1 13498:1 13501:1 13506:2 13539:1 13557:1 13563:2 13586:1 13597:1 13599:1 13618:1 13628:2 13629:2 13634:1 13662:1 13666:1 13676:1 13691:2 13692:1 13693:1 13701:1 13704:1 13708:1 13723:1 13726:1 13744:1 13751:2 13757:1 13805:1 13806:2 13825:1 13875:1 13882:1 13889:1 13890:1 13894:1 13906:1 13911:1 13945:1 13956:1 13969:2 13973:1 13987:1 13989:1 13991:2 13996:3 14001:2 14036:5 14043:1 14045:1 14049:1 14093:1 14106:1 14154:1 14192:1 14193:1 14202:1 14210:1 14211:1 14222:1 14233:2 14240:1 14249:2 14259:1 14267:2 14297:1 14303:2 14306:1 14320:2 14339:1 14350:1 14361:1 14380:1 14391:1 14403:1 14418:2 14419:1 14422:1 14430:1 14438:1 14439:1 14443:1 14445:2 14451:4 14487:3 14492:1 14506:1 14508:2 14557:1 14564:3 14577:2 14583:1 14586:1 14604:1 14612:1 14613:1 14618:1 14622:1 14628:1 14630:1 14634:1 14635:1 14638:4 14643:1 14655:1 14659:1 14667:2 14672:1 14696:2 14705:1 14724:1 14728:1 14769:3 14796:1 14797:1 14801:1 14809:1 14818:1 14824:1 14841:3 14843:1 14851:2 14881:1 14887:1 14901:1 14907:1 14908:1 14918:1 14924:11 14945:2 14951:1 14952:2 14967:1 14973:2 14978:1 14993:2 15002:1 15012:9 15018:1 15033:1 15039:2 15073:1 15080:2 15083:1 15095:1 15097:1 15122:1 15144:1 15145:1 15166:1 15170:4 15173:1 15177:2 15178:1 15187:2 15188:2 15193:1 15195:1 15196:2 15197:2 15207:1 15229:1 15263:1 15266:1 15272:1 15297:1 15301:1 15309:1 15314:2 15332:1 15345:1 15352:1 15372:1 15376:1 15399:2 15402:1 15419:1 15442:1 15470:1 15483:3 15495:2 15504:2 15513:1 15520:2 15538:2 15539:1 15560:1 15567:2 15568:1 15571:1 15578:1 15582:2 15584:1 15629:1 15639:1 15655:2 15657:1 15723:1 15738:1 15762:4 15768:1 15775:3 15778:1 15786:1 15798:1 15807:1 15838:1 15839:4 15842:1 15863:2 15867:1 15896:1 15907:1 15915:1 15937:1 15951:1 15962:2 15984:1 16028:2 16055:1 16067:1 16070:1 16083:1 16095:1 16108:1 16117:5 16119:1 16129:2 16139:1 16157:1 16162:1 16221:1 16238:1 16258:1 16312:1 16319:1 16324:1 16329:1 16331:1 16337:2 16347:2 16351:1 16399:4 16419:1 16434:2 16435:3 16457:1 16462:2 16477:1 16486:1 16489:4 16505:3 16518:2 16519:1 16525:1 16531:1 16555:1 16570:2 16583:1 16592:2 16612:1 16625:3 16633:1 16664:1 16674:5 16680:1 16729:2 16733:2 16743:3 16756:1 16762:1 16777:5 16781:1 16782:1 16787:1 16788:1 16795:1 16807:1 16808:1 16824:1 16832:1 16837:1 16865:1 16873:1 16892:1 16915:1 16916:1 16925:1 16932:2 16934:1 16962:1 16970:1 16985:1 17009:1 17016:1 17046:2 17094:1 17097:1 17098:2 17110:5 17127:1 17132:1 17165:1 17183:1 17205:1 17221:1 17224:1 17230:1 17235:1 17241:1 17262:1 17265:1 17266:2 17276:1 17317:1 17326:2 17335:1 17342:1 17353:1 17376:1 17398:1 17410:1 17415:2030 17425:1 17430:1 17433:1 17473:1 17476:1 17478:1 17486:1 17505:3 17547:1 17589:1 17594:1 17600:1 17601:1 17613:1 17639:1 17644:1 17646:1 17650:1 17703:2 17706:2 17744:1 17753:1 17782:1 17810:1 17814:1 17820:2 17824:1 17831:1 17845:1 17859:1 17869:1 17871:1 17892:1 17900:3 17911:1 17917:1 17928:1 17931:1 17936:1 17944:2 17946:3 17964:1 17978:1 17980:1 17989:1 18009:1 18015:1 18074:1 18085:1 18100:1 18109:1 18119:2 18121:1 18142:1 18143:1 18167:1 18172:3 18175:1 18187:1 18210:1 18232:5 18275:6 18277:1 18303:1 18306:1 18314:1 18319:1 18320:1 18324:1 18326:2 18333:1 18335:1 18355:1 18359:3 18360:1 18364:1 18365:1 18378:1 18384:3 18390:1 18392:1 18404:1 18410:2 18411:1 18412:1 18417:1 18427:1 18432:1 18437:2 18444:1 18457:1 18476:1 18491:1 18495:1 18506:1 18515:1 18539:1 18543:3 18545:2 18587:1 18596:1 18603:1 18608:1 18619:1 18626:2 18632:2 18637:2 18663:1 18687:1 18703:1 18707:1 18723:1 18724:1 18748:1 18753:1 18754:1 18755:2 18757:1 18760:1 18770:1 18786:1 18801:1 18802:1 18805:2 18808:1 18838:1 18845:1 18861:1 18875:3 18876:1 18878:2 18884:1 18886:1 18890:1 18893:1 18901:1 18908:1 18912:3 18928:1 18932:1 18936:4 18944:2 18947:1 18948:1 18949:1 18966:1 18979:1 18984:1 18998:1 19004:1 19011:1 19013:1 19014:1 19015:1 19033:3 19037:1 19044:1 19050:1 19064:1 19106:1 19109:1 19137:2 19140:1 19143:1 19148:1 19152:1 19176:1 19177:1 19186:1 19205:4 19213:1 19223:1 19225:1 19229:1 19233:1 19252:2 19268:1 19306:1 19309:1 19328:1 19330:1 19358:1 19370:1 19385:1 19395:1 19407:1 19409:1 19413:1 19440:1 19441:2 19455:1 19457:1 19470:1 19491:1 19492:2 19500:2 19502:1 19520:1 19522:2 19541:1 19554:1 19556:6 19559:1 19560:2 19563:2 19568:2 19574:1 19577:1 19582:2 19585:1 19590:1 19593:1 19607:1 19609:1 19617:1 19689:1 19695:2 19701:1 19727:1 19731:2 19733:1 19747:1 19751:1 19753:1 19755:1 19769:1 19774:1 19785:2 19796:1 19797:1 19810:2 19813:1 19819:3 19831:1 19852:2 19857:1 19860:1 19877:1 19889:2 19894:1 19905:2 19910:1 19915:2 19918:1 19923:1 19933:1 19942:1 19950:1 19956:1 19959:1 19965:1 19990:1 20016:2 20025:2 20031:1 20039:1 20041:3 20047:1 20059:1 20063:1 20069:2 20070:1 20073:2 20075:1 20085:1 20089:2 20090:1 20091:1 20143:1 20152:1 20169:2 20171:2 20178:1 20188:1 20190:1 20192:1 20193:1 20233:1 20260:1 20270:1 20274:1 20322:1 20325:3 20327:1 20332:1 20334:1 20343:1 20374:1 20395:2 20398:1 20399:1 20401:1 20411:5 20421:1 20429:2 20443:1 20447:3 20452:2 20454:1 20469:1 20471:1 20490:2 20519:1 20525:2 20526:2 20528:1 20529:1 20531:1 20535:1 20539:1 20541:1 20545:2 20546:1 20548:1 20551:2 20553:1 20554:1 20556:2 20559:6 20563:1 20571:1 20574:1 20590:1 20592:1 20596:2 20602:1 20608:1 20630:1 20680:1 20682:1 20683:1 20684:1 20685:2 20730:1 20731:3 20747:1 20752:4 20755:2 20775:2 20778:1 20803:2 20811:1 20828:2 20832:1 20858:1 20879:1 20893:5 20900:1 20906:1 20915:1 20927:4 20939:2 20960:8 20967:1 20973:1 21002:1 21022:1 21028:1 21029:1 21057:1 21072:1 21080:1 21087:2 21100:2 21103:1 21161:1 21167:1 21179:1 21186:1 21189:1 21199:1 21221:1 21225:1 21233:1 21262:1 21284:1 21287:1 21300:1 21304:1 21312:1 21341:1 21342:1 21346:1 21354:2 21363:1 21365:1 21369:1 21375:1 21376:1 21382:1 21397:1 21411:1 21414:1 21420:5 21442:1 21472:1 21480:2 21483:3 21496:1 21513:2 21534:1 21536:1 21547:1 21549:1 21550:1 21571:2 21584:2 21608:1 21609:1 21614:1 21633:4 21640:1 21645:3 21657:2 21683:1 21703:2 21705:1 21709:1 21728:1 21735:1 21737:1 21742:1 21747:1 21753:1 21758:1 21784:1 21789:1 21816:3 21817:1 21834:2 21837:1 21838:1 21844:2 21847:1 21857:1 21869:1 21876:1 21879:1 21885:1 21891:1 21928:1 21929:1 21930:1 21933:2 21951:1 21965:1 21966:1 21971:1 21979:1 21984:3 21985:1 22008:3 22015:2 22026:1 22043:1 22054:3 22067:1 22078:1 22080:1 22085:1 22105:1 22125:3 22156:1 22164:1 22165:1 22171:1 22215:1 22230:1 22244:2 22268:1 22288:3 22298:1 22304:1 22336:1 22362:1 22366:1 22374:1 22381:2 22384:1 22386:1 22389:1 22398:1 22400:1 22448:2 22449:1 22450:1 22466:1 22479:1 22491:1 22493:1 22542:2 22545:2 22547:1 22575:1 22598:1 22604:1 22614:1 22626:1 22657:1 22665:1 22666:4 22686:2 22687:2 22696:1 22722:1 22724:1 22742:1 22765:1 22779:1 22784:3 22791:1 22798:1 22810:1 22814:1 22817:1 22843:1 22859:1 22891:3 22904:1 22905:1 22935:1 22941:1 22946:1 22962:2 22965:1 22972:1 22991:2 22996:1 23007:1 23010:1 23013:1 23015:2 23025:1 23038:1 23073:2 23096:3 23100:1 23136:1 23142:1 23144:2 23147:1 23149:2 23151:1 23152:2 23153:1 23158:1 23165:1 23171:1 23189:2 23234:1 23252:2 23263:2 23273:3 23277:2 23285:1 23290:1 23291:1 23307:1 23308:3 23310:2 23335:1 23360:1 23369:1 23403:2 23414:1 23422:2 23456:1 23458:1 23493:4 23496:2 23559:1 23563:1 23594:2 23609:1 23634:1 23646:1 23660:4 23669:1 23681:2 23683:1 23689:1 23692:6 23699:3 23717:2 23718:1 23719:1 23720:1 23721:1 23723:1 23766:2 23777:2 23779:1 23791:1 23800:1 23801:1 23848:3 23853:2 23862:1 23865:1 23871:1 23874:1 23875:1 23882:1 23906:1 23907:2 23911:1 23912:1 23913:2 23919:1 23946:1 23953:1 23955:1 23956:1 23966:1 23970:1 23973:1 23985:1 23994:1 23996:1 23998:1 24017:1 24022:1 24054:1 24066:1 24071:1 24092:2 24093:1 24094:1 24122:1 24143:1 24151:1 24153:5 24160:1 24166:1 24196:1 24271:1 24288:1 24290:1 24310:1 24328:1 24331:1 24334:2 24340:4 24423:1 24428:1 24434:1 24439:1 24456:2 24459:1 24463:2 24470:2 24473:1 24497:1 24507:1 24551:1 24562:1 24567:1 24570:1 24571:1 24585:1 24586:1 24602:1 24603:1 24605:1 24612:1 24687:1 24704:1 24723:1 24733:1 24740:1 24758:1 24807:1 24809:1 24871:1 24889:1 24893:1 24896:1 24904:1 24910:1 24936:1 24940:1 24956:1 24965:2 24969:5 24972:1 24982:1 25003:1 25029:1 25033:1 25060:1 25069:1 25096:2 25097:1 25112:1 25114:2 25115:3 25149:1 25159:1 25181:1 25192:1 25221:1 25230:1 25234:1 25240:2 25242:4 25247:1 25249:1 25262:1 25265:1 25267:1 25271:1 25279:2 25282:1 25288:1 25306:1 25309:1 25323:1 25329:1 25333:4 25337:2 25354:1 25363:1 25369:1 25372:1 25381:1 25386:1 25387:1 25392:1 25445:1 25455:1 25460:1 25468:1 25474:1 25496:2 25497:1 25505:1 25507:1 25508:1 25513:3 25517:2 25518:1 25519:1 25523:1 25525:2 25550:2 25561:1 25567:2 25568:3 25570:1 25572:1 25584:1 25614:1 25619:1 25630:1 25634:1 25650:1 25651:1 25656:2 25672:4 25679:1 25715:2 25731:1 25735:1 25738:2 25742:1 25757:1 25761:1 25774:1 25779:1 25781:1 25782:1 25792:2 25793:1 25796:1 25802:3 25804:1 25805:2 25806:1 25817:1 25820:2 25822:1 25824:1 25826:2 25827:4 25834:1 25837:2 25839:2 25861:1 25870:1 25871:2 25872:1 25900:4 25915:1 25925:1 25927:7 25928:1 25930:1 25957:1 25959:1 25988:2 25994:1 25997:1 26007:1 26019:1 26021:1 26032:1 26072:1 26095:1 26099:1 26100:1 26107:1 26115:1 26123:1 26171:2 26204:1 26211:1 26260:1 26268:1 26283:1 26289:2 26317:1 26319:1 26335:1 26346:1 26349:1 26365:1 26368:1 26406:2 26413:1 26417:1 26439:2 26446:1 26448:1 26454:1 26484:1 26485:2 26490:1 26508:19 26513:3 26530:1 26539:1 26542:1 26547:3 26562:1 26564:1 26567:1 26576:1 26591:1 26610:3 26619:1 26622:1 26634:1 26645:3 26655:3 26662:1 26692:11 26733:1 26759:1 26764:2 26777:1 26782:1 26787:1 26800:1 26807:1 26813:1 26834:2 26852:2 26864:2 26867:1 26869:2 26882:2 26886:1 26904:1 26921:1 26944:1 26946:2 26948:1 26952:1 26953:2 26965:1 26966:2 26975:1 26977:1 26982:1 27005:2 27012:1 27016:2 27019:2 27020:5 27062:1 27063:1 27073:1 27074:1 27078:2 27096:3 27150:4 27154:1 27160:1 27179:1 27197:1 27202:1 27227:1 27236:1 27241:1 27247:3 27248:1 27309:3 27333:1 27379:1 27390:2 27394:1 27396:1 27402:2 27407:1 27433:1 27434:2 27440:1 27447:3 27477:1 27491:1 27492:1 27506:1 27521:1 27530:1 27534:1 27547:2 27553:2 27564:1 27569:1 27572:1 27590:1 27598:1 27609:2 27619:1 27635:1 27637:1 27638:1 27643:3 27652:1 27667:1 27669:1 27672:1 27683:4 27689:1 27706:1 27715:3 27716:4 27723:3 27730:1 27732:1 27734:1 27739:7 27765:1 27775:5 27778:1 27784:3 27792:1 27797:1 27812:1 27820:1
8 1:4 8:1 21:1 40:1 43:1 46:1 47:2 83:2 88:1 102:1 121:1 125:1 132:1 148:1 158:1 160:1 162:1 163:1 181:1 190:1 194:4 214:2 222:1 234:1 240:4 250:1 263:1 279:1 303:1 327:3 328:1 329:1 354:1 369:2 416:2 431:1 432:2 441:2 451:1 477:1 486:1 494:1 502:1 567:1 575:1 587:2 594:2 605:4 627:8 656:1 659:1 667:5 683:1 686:1 688:1 749:1 771:2 784:1 796:1 843:5 850:2 856:1 869:1 870:1 876:5 891:1 906:1 920:1 925:1 930:4 934:2 969:1 970:1 973:3 984:1 991:1 1011:1 1045:1 1050:1 1052:1 1068:2 1074:1 1086:1 1093:1 1105:1 1129:4 1138:1 1147:1 1156:1 1157:2 1170:1 1172:2 1176:1 1182:1 1187:1 1190:1 1191:1 1201:1 1202:1 1205:1 1210:1 1221:1 1222:1 1233:1 1235:1 1238:1 1241:1 1243:3 1244:1 1250:1 1251:1 1253:1 1255:1 1265:1 1270:1 1278:1 1296:1 1311:1 1323:1 1324:1 1332:1 1348:1 1362:1 1371:1 1374:1 1379:1 1380:1 1386:1 1389:2 1393:5 1395:5 1399:1 1411:2 1422:1 1424:3 1432:4 1446:3 1468:1 1472:1 1475:3 1496:1 1509:4 1513:1 1523:2 1525:1 1527:1 1542:1 1553:1 1565:2 1576:1 1578:2 1580:2 1588:1 1607:1 1612:1 1626:2 1628:1 1636:1 1640:1 1644:1 1659:1 1663:2 1669:1 1670:2 1681:1 1682:1 1688:1 1692:1 1696:1 1697:2 1717:1 1720:1 1732:1 1738:1 1740:1 1744:1 1753:2 1762:1 1769:1 1774:1 1776:2 1779:1 1787:4 1791:1 1796:1 1797:1 1801:2 1815:1 1818:2 1824:1 1833:1 1835:1 1844:2 1849:1 1856:1 1858:2 1859:1 1871:1 1883:1 1887:1 1926:1 1928:6 1943:1 1956:1 1957:1 1958:1 1962:2 1996:1 1997:1 2006:1 2012:1 2023:1 2057:5 2072:1 2090:1 2110:1 2124:1 2136:1 2145:1 2155:1 2174:1 2175:1 2176:1 2177:8 2179:1 2181:1 2185:3 2188:1 2193:2 2194:1 2196:2 2201:7 2203:3 2208:3 2209:1 2211:3 2214:1 2216:1 2248:1 2252:1 2260:3 2270:1 2274:2 2285:1 2288:1 2293:1 2295:1 2334:1 2378:1 2380:1 2408:1 2418:1 2430:1 2437:1 2487:1 2499:1 2510:1 2547:1 2557:1 2563:1 2565:1 2566:1 2569:1 2582:1 2583:1 2597:1 2598:1 2599:1 2601:1 2602:3 2618:1 2621:1 2631:1 2646:2 2649:1 2650:1 2662:1 2676:3 2687:1 2701:1 2703:1 2705:1 2713:2 2725:1 2731:1 2732:1 2755:1 2760:1 2766:2 2774:8 2786:1 2793:3 2801:2 2803:2 2811:1 2818:1 2827:1 2831:4 2840:1 2854:1 2869:1 2880:1 2883:1 2885:1 2886:1 2897:1 2908:2 2948:1 2958:1 2983:1 2989:1 2995:2 2996:1 3002:1 3010:1 3017:1 3055:1 3062:2 3072:1 3090:1 3092:1 3122:1 3127:1 3131:3 3134:3 3137:4 3138:2 3148:1 3158:6 3164:1 3174:1 3195:1 3216:1 3227:1 3233:1 3258:1 3313:2 3324:1 3325:1 3339:1 3362:1 3383:1 3406:1 3423:1 3434:1 3442:1 3443:2 3456:1 3464:1 3481:1 3491:1 3496:1 3506:1 3516:1 3518:3 3520:1 3530:2 3537:1 3538:1 3550:1 3555:1 3574:1 3584:1 3585:1 3614:1 3616:1 3621:2 3625:2 3630:1 3642:1 3646:1 3647:1 3650:1 3680:1 3682:1 3688:1 3692:1 3699:1 3709:2 3715:1 3718:1 3724:2 3728:2 3732:1 3738:1 3751:1 3757:2 3758:1 3764:1 3778:1 3795:1 3803:1 3807:1 3810:1 3815:1 3818:3 3826:1 3836:2 3842:1 3857:2 3858:5 3916:2 3923:1 3928:1 3929:1 3934:1 3940:1 3970:1 3983:1 3986:1 3988:1 3998:1 4002:1 4003:1 4011:2 4020:2 4030:3 4031:1 4035:5 4042:1 4043:1 4052:1 4068:1 4094:3 4109:1 4115:1 4126:1 4129:6 4131:1 4152:2 4169:1 4174:1 4196:1 4224:1 4230:3 4234:1 4235:1 4249:1 4250:1 4251:1 4281:2 4290:1 4307:1 4315:1 4321:2 4342:2 4351:1 4384:1 4388:1 4400:2 4407:1 4426:3 4433:2 4459:1 4462:3 4471:1 4474:1 4489:1 4497:3 4498:1 4500:1 4503:1 4510:1 4533:1 4536:1 4542:1 4546:1 4565:1 4567:1 4645:1 4648:16 4649:1 4658:1 4669:1 4670:1 4673:1 4677:1 4706:1 4713:1 4747:1 4767:4 4787:7 4789:6 4792:1 4795:1 4796:1 4797:2 4800:2 4802:2 4808:1 4810:1 4813:1 4814:7 4840:1 4871:2 4903:1 4906:1 4944:1 4947:4 4972:1 4994:1 4997:1 5002:2 5005:1 5010:1 5013:1 5020:1 5023:1 5044:4 5047:1 5074:1 5084:1 5092:1 5102:1 5104:2 5123:1 5126:2 5136:2 5170:1 5171:1 5182:1 5201:1 5212:1 5222:2 5224:1 5248:1 5253:1 5269:1 5275:1 5286:1 5296:1 5299:2 5301:1 5304:1 5309:2 5311:1 5313:1 5315:2 5319:1 5320:1 5322:1 5353:1 5357:2 5379:3 5386:1 5413:1 5422:1 5423:1 5436:1 5437:1 5446:1 5448:1 5486:1 5504:1 5574:2 5585:1 5587:4 5593:1 5609:2 5636:1 5643:3 5671:1 5689:2 5708:3 5710:2 5739:4 5755:2 5760:1 5773:1 5795:1 5804:2 5808:2 5828:2 5832:2 5862:1 5867:1 5896:1 5910:1 5913:3 5916:1 5935:1 5942:7 5945:1 5950:1 5961:1 5982:1 5993:8 6027:1 6034:5 6037:2 6041:1 6044:1 6045:4 6046:3 6047:2 6048:2 6052:2 6053:1 6056:1 6058:3 6060:4 6063:1 6074:1 6089:1 6100:1 6101:1 6121:1 6140:1 6147:2 6168:1 6174:1 6187:3 6191:2 6203:1 6206:1 6216:1 6221:1 6256:1 6257:1 6259:1 6265:1 6268:1 6286:1 6288:1 6295:1 6304:1 6327:1 6330:1 6338:1 6340:1 6353:1 6373:1 6375:1 6399:1 6416:1 6418:1 6425:1 6431:1 6433:1 6437:2 6457:3 6462:2 6465:1 6475:1 6486:1 6489:4 6493:7 6497:2 6507:1 6508:1 6512:2 6519:5 6520:1 6521:2 6522:1 6529:3 6579:2 6580:1 6588:1 6591:1 6592:1 6596:1 6597:1 6612:1 6620:1 6625:2 6645:1 6657:1 6675:1 6681:1 6683:1 6687:1 6696:1 6702:1 6703:1 6707:1 6716:1 6721:1 6722:1 6732:1 6735:1 6737:1 6739:1 6748:2 6767:1 6768:1 6771:1 6779:1 6792:1 6794:1 6816:3 6818:1 6826:1 6838:1 6839:2 6852:1 6860:1 6890:1 6898:1 6903:2 6904:1 6914:2 6934:2 6941:3 6943:1 6948:1 6954:1 6956:3 6960:4 6994:1 6999:1 7011:1 7017:1 7038:1 7048:5 7073:5 7077:2 7088:1 7106:1 7123:1 7137:1 7144:2 7186:1 7187:1 7231:3 7249:10 7250:5 7273:1 7274:3 7286:2 7307:1 7311:1 7323:37 7344:8 7345:6 7369:1 7370:1 7381:2 7384:1 7403:1 7409:1 7414:1 7434:3 7488:2 7513:2 7525:1 7539:5 7550:1 7563:1 7566:1 7571:1 7590:1 7600:1 7603:1 7646:2 7650:2 7675:1 7677:1 7684:2 7696:1 7698:1 7701:1 7706:1 7715:3 7771:1 7789:1 7791:12 7812:1 7815:1 7817:2 7826:1 7843:1 7879:3 7884:1 7891:1 7898:1 7914:1 7922:1 7929:1 7936:2 7947:1 7949:2 7957:7 7958:1 7964:2 7990:1 7994:1 8013:1 8026:1 8031:1 8034:1 8035:1 8054:1 8061:1 8064:1 8116:1 8117:1 8122:1 8123:2 8124:1 8125:4 8126:1 8128:2 8130:2 8135:2 8136:1 8140:1 8155:1 8159:2 8161:3 8166:1 8169:1 8176:1 8180:1 8182:1 8191:1 8221:1 8229:5 8268:1 8280:4 8282:2 8293:2 8322:1 8326:1 8328:1 8340:1 8351:1 8362:1 8397:1 8404:1 8406:1 8413:1 8423:1 8437:2 8439:1 8441:1 8467:1 8484:2 8485:2 8493:1 8503:1 8505:1 8515:1 8531:1 8539:1 8556:4 8558:4 8575:1 8613:1 8620:1 8621:1 8670:2 8682:2 8694:1 8697:1 8698:1 8705:2 8716:1 8719:3 8721:1 8747:1 8748:2 8752:2 8788:1 8796:1 8801:1 8803:1 8813:1 8816:1 8817:1 8828:1 8853:1 8858:1 8876:1 8878:1 8898:1 8907:1 8926:1 8930:2 8942:2 8944:2 8954:1 8962:1 8971:1 8979:1 8991:1 8996:1 8997:1 9000:2 9007:1 9010:2 9016:1 9023:1 9028:1 9030:2 9034:1 9045:1 9048:1 9062:1 9063:2 9068:2 9073:1 9080:1 9087:1 9118:1 9179:2 9180:1 9215:1 9236:3 9242:2 9244:1 9249:2 9257:2 9267:1 9279:1 9317:1 9325:2 9372:1 9385:1 9398:1 9405:2 9418:1 9420:2 9430:1 9432:1 9442:1 9451:1 9460:1 9473:4 9484:2 9486:1 9495:1 9507:1 9522:1 9533:2 9534:2 9544:1 9569:1 9571:2 9594:1 9597:1 9605:1 9621:1 9683:1 9687:1 9696:1 9697:1 9701:1 9707:2 9712:1 9741:1 9757:1 9762:1 9770:1 9773:1 9778:1 9783:1 9788:1 9793:1 9799:4 9802:1 9803:1 9822:1 9823:3 9844:1 9858:1 9870:1 9877:5 9882:4 9883:1 9917:5 9925:2 9935:1 9947:1 9955:2 9961:1 9963:1 9974:1 9981:1 9996:1 10013:1 10046:2 10052:1 10053:1 10054:1 10066:1 10070:3 10073:1 10075:2 10076:5 10083:1 10085:1 10121:1 10124:1 10126:1 10132:1 10136:2 10144:1 10153:2 10167:4 10174:1 10177:1 10183:1 10187:1 10199:1 10254:3 10259:1 10276:1 10281:1 10287:3 10289:3 10296:3 10299:3 10300:5 10304:2 10307:3 10308:2 10312:1 10315:1 10322:1 10345:1 10346:1 10347:1 10371:2 10398:1 10404:1 10406:1 10410:1 10417:1 10427:2 10429:1 10438:1 10477:1 10497:1 10498:1 10515:1 10526:1 10564:1 10573:1 10574:1 10580:1 10585:2 10595:2 10607:1 10633:1 10637:4 10646:1 10652:2 10653:1 10654:1 10664:2 10679:1 10683:1 10684:2 10698:1 10717:2 10720:1 10724:3 10750:1 10754:2 10778:1 10781:1 10784:1 10786:1 10799:2 10804:1 10821:3 10832:1 10833:1 10834:1 10850:1 10855:1 10872:2 10907:1 10932:1 10933:4 10940:2 10965:2 10967:1 10973:2 10977:1 10982:1 10989:1 10994:5 10995:1 11001:3 11046:2 11052:2 11054:1 11056:1 11062:2 11067:1 11071:1 11081:1 11086:1 11092:1 11093:1 11098:1 11107:1 11109:1 11116:1 11140:1 11149:1 11154:1 11170:1 11176:2 11222:1 11229:1 11245:1 11247:1 11252:2 11261:1 11291:1 11304:1 11310:1 11313:1 11354:3 11355:2 11375:1 11387:1 11388:1 11389:2 11393:3 11394:1 11401:1 11410:2 11414:1 11416:1 11421:1 11422:1 11437:1 11440:1 11447:1 11477:1 11492:1 11499:5 11501:2 11515:1 11521:1 11532:1 11536:1 11552:1 11581:2 11606:1 11611:1 11619:1 11639:1 11654:1 11661:2 11662:1 11671:1 11686:1 11688:2 11689:1 11699:1 11704:1 11735:1 11756:1 11759:1 11778:1 11844:1 11860:1 11876:2 11888:2 11889:1 11903:1 11926:1 11933:1 11945:1 11960:1 12007:1 12009:1 12013:1 12018:1 12021:1 12023:1 12024:1 12039:1 12079:1 12152:1 12156:1 12157:1 12167:2 12169:1 12214:2 12234:1 12235:2 12236:1 12241:1 12242:1 12243:1 12250:2 12261:1 12262:2 12265:1 12271:7 12276:1 12300:2 12313:2 12323:1 12324:1 12369:1 12385:1 12396:1 12402:2 12404:5 12409:3 12468:1 12472:14 12475:1 12502:1 12522:1 12526:1 12528:2 12532:1 12539:1 12548:1 12557:1 12565:1 12591:1 12612:1 12640:1 12641:2 12661:1 12687:1 12701:1 12710:3 12733:1 12737:2 12743:3 12748:1 12766:1 12768:1 12775:3 12778:1 12782:1 12790:1 12856:1 12884:1 12885:1 12893:1 12894:2 12896:1 12910:1 12919:2 12932:2 12942:2 12945:1 12951:1 12970:1 12971:1 12974:2 12982:2 12995:1 13001:1 13016:1 13018:1 13033:1 13040:1 13053:1 13067:1 13068:1 13080:1 13086:3 13097:2 13120:2 13126:4 13133:1 13155:1 13160:1 13170:1 13179:1 13186:1 13187:1 13211:1 13247:1 13263:1 13270:1 13276:2 13295:5 13310:1 13316:1 13323:2 13332:1 13366:1 13367:1 13371:1 13379:1 13384:1 13388:1 13401:1 13441:1 13459:1 13464:1 13476:1 13498:1 13501:1 13506:2 13539:1 13557:1 13563:2 13586:1 13597:1 13599:1 13618:1 13628:2 13629:2 13634:1 13662:1 13666:1 13676:1 13691:2 13692:1 13693:1 13701:1 13704:1 13708:1 13723:1 13726:1 13744:1 13751:2 13757:1 13805:1 13806:2 13825:1 13875:1 13882:1 13889:1 13890:1 13894:1 13906:1 13911:1 13945:1 13956:1 13969:2 13973:1 13987:1 13989:1 13991:2 13996:3 14001:2 14036:5 14043:1 14045:1 14049:1 14093:1 14106:1 14107:1 14154:1 14192:1 14193:1 14202:1 14210:1 14211:1 14222:1 14233:2 14235:1 14240:1 14249:2 14259:1 14267:2 14270:1 14297:1 14303:2 14306:1 14320:2 14339:1 14350:1 14361:1 14380:1 14391:1 14403:1 14418:2 14419:1 14422:1 14430:1 14438:1 14439:1 14443:1 14445:2 14451:4 14481:1 14487:3 14492:1 14506:1 14508:2 14557:1 14564:3 14577:2 14583:1 14586:1 14604:1 14612:1 14613:1 14618:1 14622:1 14628:1 14630:1 14634:1 14635:1 14638:4 14643:1 14655:1 14659:1 14667:2 14672:1 14696:2 14705:1 14724:1 14728:1 14769:3 14796:1 14797:1 14801:1 14809:1 14818:1 14824:1 14841:3 14843:1 14851:2 14881:1 14887:1 14901:1 14907:1 14908:1 14918:1 14924:11 14945:2 14951:1 14952:2 14967:1 14973:2 14978:1 14993:2 15002:1 15012:9 15018:1 15033:1 15039:2 15073:1 15080:2 15083:1 15095:1 15097:1 15122:1 15144:1 15145:1 15166:1 15170:4 15173:1 15177:2 15178:1 15187:2 15188:2 15193:1 15195:1 15196:2 15197:2 15207:1 15229:1 15263:1 15266:1 15272:1 15297:1 15301:1 15309:1 15314:2 15332:1 15345:1 15352:1 15372:1 15376:1 15399:2 15402:1 15419:1 15442:1 15470:1 15483:3 15495:2 15504:2 15513:1 15520:2 15538:2 15539:1 15560:1 15567:2 15568:1 15571:1 15578:1 15582:2 15584:1 15629:1 15639:1 15655:2 15657:1 15723:1 15738:1 15762:4 15768:1 15775:3 15778:1 15786:1 15798:1 15807:1 15838:1 15839:4 15842:1 15863:2 15867:1 15872:1 15896:1 15907:1 15915:1 15937:1 15951:1 15962:2 15984:1 16028:2 16055:1 16067:1 16070:1 16083:1 16095:1 16108:1 16117:5 16119:1 16129:2 16139:1 16157:1 16162:1 16221:1 16238:1 16258:1 16312:1 16319:1 16324:1 16329:1 16331:1 16337:2 16347:2 16351:1 16399:4 16419:1 16434:2 16435:3 16457:1 16462:2 16469:1 16477:1 16486:1 16489:4 16505:3 16518:2 16519:1 16525:1 16531:1 16555:1 16570:2 16583:1 16592:2 16612:1 16625:3 16633:1 16664:2 16674:5 16680:1 16729:2 16733:2 16743:3 16756:1 16762:1 16777:5 16781:1 16782:1 16787:1 16788:1 16795:1 16807:1 16808:1 16824:1 16832:1 16837:1 16865:1 16873:1 16892:1 16915:1 16916:1 16925:1 16932:2 16934:1 16962:1 16970:1 16985:1 17009:1 17016:1 17046:2 17094:1 17097:1 17098:2 17110:5 17122:1 17127:1 17132:1 17165:1 17183:1 17205:1 17221:1 17224:1 17230:1 17235:1 17241:1 17262:1 17265:1 17266:2 17276:1 17317:1 17326:2 17335:1 17342:1 17353:1 17376:1 17398:1 17410:1 17415:2152 17425:1 17430:1 17433:1 17473:1 17476:1 17478:1 17486:1 17505:3 17547:1 17589:1 17594:1 17600:1 17601:1 17608:1 17613:1 17639:1 17644:1 17646:1 17650:1 17703:2 17706:2 17744:1 17753:1 17754:1 17782:1 17810:1 17814:1 17820:2 17824:1 17831:1 17845:1 17859:1 17869:1 17871:1 17892:1 17900:3 17911:1 17917:1 17928:1 17931:1 17936:1 17944:2 17946:3 17964:1 17978:1 17980:1 17989:1 18009:1 18015:1 18041:1 18069:1 18074:1 18085:1 18100:1 18109:1 18119:2 18121:1 18142:1 18143:1 18167:1 18172:3 18175:1 18187:1 18194:1 18210:1 18232:5 18275:6 18277:1 18283:1 18303:1 18306:1 18314:1 18319:1 18320:1 18324:1 18326:2 18333:1 18335:1 18355:1 18359:3 18360:1 18364:1 18365:1 18378:1 18384:3 18390:1 18392:1 18404:1 18410:2 18411:1 18412:1 18417:1 18427:1 18432:1 18437:2 18444:1 18457:1 18476:1 18491:1 18495:1 18506:1 18515:1 18539:1 18543:3 18545:2 18587:1 18596:1 18603:1 18608:1 18619:1 18626:2 18632:2 18637:2 18663:1 18687:1 18703:1 18707:1 18723:1 18724:1 18748:1 18753:1 18754:1 18755:2 18757:1 18760:2 18770:1 18786:1 18801:1 18802:1 18805:2 18808:1 18838:1 18845:1 18861:1 18875:3 18876:1 18878:2 18884:1 18886:1 18890:1 18893:1 18901:1 18908:1 18912:3 18928:1 18930:1 18932:1 18936:4 18944:2 18947:1 18948:1 18949:1 18966:1 18979:1 18984:1 18998:1 19004:1 19011:1 19013:1 19014:1 19015:1 19033:3 19037:1 19044:1 19050:1 19064:1 19106:1 19109:1 19137:2 19140:1 19143:1 19148:1 19152:1 19176:1 19177:1 19186:1 19205:4 19213:1 19223:1 19225:1 19229:1 19233:1 19252:2 19268:1 19270:1 19306:1 19309:1 19328:1 19330:2 19358:1 19370:1 19385:1 19395:1 19407:1 19409:1 19413:1 19426:1 19440:1 19441:2 19455:1 19457:1 19470:1 19491:1 19492:2 19500:2 19502:1 19520:1 19522:2 19541:1 19554:1 19556:6 19559:1 19560:2 19563:2 19568:3 19574:1 19577:1 19582:2 19585:1 19590:1 19593:1 19607:1 19609:1 19617:1 19689:1 19695:2 19701:1 19727:1 19731:2 19733:1 19747:1 19751:1 19753:1 19755:1 19769:1 19774:1 19785:2 19796:1 19797:1 19810:2 19813:1 19819:3 19831:1 19852:2 19857:1 19860:1 19877:1 19889:2 19894:1 19905:2 19910:1 19915:3 19918:1 19923:1 19924:1 19933:1 19942:2 19950:1 19956:1 19959:1 19965:1 19990:1 20016:2 20025:2 20031:1 20039:1 20041:3 20047:1 20059:1 20063:1 20065:1 20069:2 20070:1 20073:2 20075:1 20085:1 20089:3 20090:1 20091:1 20143:1 20152:1 20169:2 20171:3 20178:1 20188:1 20190:1 20192:1 20193:1 20233:1 20260:1 20270:1 20274:1 20322:1 20325:3 20327:1 20332:1 20334:1 20343:1 20374:1 20395:2 20398:1 20399:1 20401:1 20411:5 20421:1 20429:2 20443:1 20447:3 20452:2 20454:1 20469:1 20471:1 20490:2 20519:1 20525:2 20526:2 20528:1 20529:1 20531:1 20535:1 20539:1 20541:1 20545:2 20546:1 20548:1 20551:2 20553:1 20554:1 20556:2 20559:6 20563:1 20571:1 20574:1 20590:1 20592:1 20596:2 20602:1 20608:1 20630:1 20680:1 20682:1 20683:1 20684:1 20685:2 20730:1 20731:3 20747:1 20752:4 20755:2 20775:2 20778:1 20803:2 20811:1 20828:2 20832:1 20858:1 20879:1 20893:5 20900:1 20906:1 20915:1 20927:4 20939:2 20960:8 20967:1 20973:1 21002:1 21022:1 21028:1 21029:1 21057:1 21072:1 21080:1 21087:2 21100:2 21103:1 21142:1 21161:1 21167:1 21179:1 21186:1 21189:1 21199:1 21221:1 21225:1 21233:1 21262:1 21284:1 21287:1 21300:1 21304:1 21312:1 21341:1 21342:1 21346:1 21354:2 21363:1 21365:1 21369:1 21375:1 21376:1 21382:1 21397:1 21411:1 21414:1 21420:5 21442:2 21472:1 21480:2 21483:3 21496:1 21513:2 21534:1 21536:1 21543:1 21547:1 21549:1 21550:1 21571:2 21584:2 21608:1 21609:1 21614:1 21633:4 21640:1 21645:3 21657:2 21683:1 21703:2 21705:1 21709:1 21728:1 21735:1 21737:1 21742:1 21747:1 21753:1 21758:1 21784:1 21789:1 21816:3 21817:1 21834:2 21837:1 21838:1 21844:2 21847:1 21857:1 21869:1 21876:1 21879:1 21885:1 21891:1 21928:1 21929:1 21930:1 21933:2 21951:1 21965:1 21966:1 21971:1 21979:1 21984:3 21985:1 22008:3 22015:2 22026:1 22043:1 22054:3 22067:1 22078:1 22080:1 22085:1 22105:1 22125:3 22156:1 22164:1 22165:1 22171:1 22215:1 22230:1 22244:2 22268:1 22288:3 22298:1 22304:1 22336:1 22362:1 22366:1 22374:1 22381:2 22384:1 22386:1 22389:1 22398:1 22400:1 22448:2 22449:1 22450:1 22466:1 22479:1 22491:1 22493:1 22542:2 22545:2 22547:1 22575:1 22598:1 22604:1 22614:1 22626:1 22657:1 22665:1 22666:4 22686:2 22687:2 22696:1 22722:1 22724:1 22742:1 22765:1 22779:1 22784:4 22791:1 22798:1 22810:1 22814:1 22817:1 22843:1 22859:1 22891:3 22904:1 22905:1 22935:1 22941:1 22946:1 22962:2 22965:1 22972:1 22991:2 22996:1 23007:1 23010:1 23013:1 23015:2 23025:1 23038:1 23073:2 23096:3 23100:1 23136:1 23142:1 23144:2 23147:1 23149:2 23151:1 23152:2 23153:1 23158:1 23165:1 23171:1 23189:2 23211:1 23234:1 23252:2 23263:2 23273:3 23277:2 23285:1 23290:1 23291:1 23307:1 23308:4 23310:2 23335:1 23340:1 23360:1 23369:1 23373:1 23403:2 23414:1 23422:2 23456:1 23458:1 23493:4 23496:2 23559:1 23563:1 23594:2 23609:1 23634:1 23646:1 23660:4 23669:1 23681:2 23683:1 23689:1 23692:6 23699:3 23717:2 23718:1 23719:1 23720:1 23721:1 23723:1 23766:2 23777:2 23779:1 23791:1 23800:1 23801:1 23848:3 23853:2 23862:1 23865:1 23871:2 23874:1 23875:1 23882:1 23906:1 23907:2 23911:1 23912:1 23913:2 23919:1 23946:1 23953:1 23955:1 23956:1 23966:1 23970:1 23973:1 23985:1 23994:1 23996:1 23998:1 24017:1 24022:1 24054:1 24066:1 24071:1 24092:2 24093:1 24094:1 24122:1 24143:1 24151:1 24153:5 24160:1 24166:1 24196:1 24271:1 24288:1 24290:1 24310:1 24328:1 24331:1 24334:2 24340:4 24423:1 24428:1 24434:1 24439:1 24456:2 24459:1 24463:2 24470:2 24473:1 24497:1 24507:1 24551:1 24562:1 24567:1 24570:1 24571:1 24585:1 24586:1 24602:1 24603:1 24605:1 24606:1 24612:1 24687:1 24704:1 24723:1 24733:1 24740:1 24758:1 24807:2 24809:1 24871:1 24889:1 24893:1 24896:1 24904:1 24910:1 24936:1 24940:1 24956:1 24965:2 24969:5 24972:1 24982:1 25003:1 25029:1 25033:1 25060:1 25069:1 25096:2 25097:1 25112:1 25114:2 25115:3 25149:1 25159:1 25181:1 25192:1 25221:1 25230:1 25234:1 25240:2 25242:4 25247:1 25249:1 25262:1 25265:1 25267:2 25271:1 25279:2 25282:1 25288:1 25306:1 25309:1 25323:1 25329:1 25333:4 25337:2 25354:1 25363:1 25369:1 25372:1 25381:1 25386:1 25387:1 25392:1 25445:1 25455:1 25460:1 25468:1 25474:1 25496:2 25497:1 25505:1 25507:1 25508:1 25513:3 25517:2 25518:1 25519:1 25523:1 25525:2 25550:2 25561:1 25567:2 25568:3 25570:1 25572:1 25584:1 25614:1 25619:1 25630:1 25634:1 25650:1 25651:1 25656:3 25672:4 25679:1 25715:2 25731:1 25735:1 25738:2 25742:1 25757:1 25761:1 25774:1 25779:1 25781:1 25782:1 25792:2 25793:1 25796:1 25802:3 25804:1 25805:2 25806:1 25817:1 25820:2 25822:1 25824:1 25826:2 25827:5 25834:1 25837:2 25839:2 25861:1 25870:1 25871:2 25872:1 25900:4 25915:1 25925:1 25927:7 25928:1 25930:1 25957:1 25959:1 25988:2 25994:1 25997:1 26007:1 26019:1 26021:1 26032:1 26072:1 26095:1 26099:1 26100:1 26107:1 26115:1 26123:1 26171:2 26204:1 26211:1 26216:1 26260:2 26268:1 26283:1 26289:2 26317:1 26319:1 26335:1 26346:1 26349:1 26365:1 26368:1 26406:2 26413:1 26417:1 26439:2 26446:1 26448:1 26454:1 26484:1 26485:2 26490:1 26508:19 26511:1 26513:3 26530:1 26539:1 26542:1 26547:3 26562:1 26564:1 26567:1 26576:1 26591:1 26610:3 26619:1 26622:1 26634:1 26645:4 26655:3 26662:1 26692:11 26733:1 26759:1 26764:2 26777:1 26782:1 26787:1 26800:1 26807:1 26813:1 26834:2 26852:2 26864:2 26867:1 26869:2 26882:2 26886:1 26904:1 26921:1 26944:1 26946:2 26948:1 26952:1 26953:2 26965:1 26966:2 26975:1 26977:1 26978:1 26982:1 27005:2 27012:1 27016:2 27019:3 27020:5 27062:1 27063:1 27073:1 27074:1 27078:2 27096:3 27150:4 27154:1 27160:1 27179:1 27197:1 27202:1 27227:1 27236:1 27241:1 27247:3 27248:2 27309:3 27333:1 27370:1 27379:1 27390:2 27394:1 27396:1 27402:2 27407:1 27433:1 27434:2 27440:1 27447:3 27477:1 27491:1 27492:1 27506:1 27521:1 27530:1 27534:2 27547:2 27553:2 27564:1 27569:1 27572:1 27590:1 27598:1 27609:2 27613:1 27619:1 27635:1 27637:1 27638:1 27643:3 27652:1 27667:1 27669:1 27672:1 27683:4 27689:1 27706:1 27715:3 27716:4 27723:3 27730:1 27732:1 27734:1 27739:7 27765:1 27775:5 27778:1 27784:3 27792:1 27797:1 27812:1 27820:1
8 1:4 8:1 21:1 40:1 43:1 46:1 47:2 83:3 88:1 102:1 121:1 125:1 132:1 148:1 158:1 160:1 162:1 163:1 181:1 190:1 194:4 214:2 222:1 234:1 240:4 250:1 263:1 279:1 303:1 327:3 328:1 329:1 354:1 369:3 403:1 407:1 416:2 431:1 432:2 441:2 451:1 475:1 477:1 486:1 494:1 502:1 567:1 575:1 586:1 587:2 594:2 605:4 627:8 656:1 659:1 667:5 683:1 686:1 688:1 749:1 771:2 784:1 796:1 843:5 850:2 852:1 856:1 869:1 870:1 876:5 891:1 906:1 920:1 925:1 930:5 934:2 945:1 969:1 970:1 973:3 984:1 991:1 1011:1 1045:1 1050:1 1052:1 1068:2 1074:1 1086:1 1093:1 1105:1 1129:4 1138:1 1147:1 1156:1 1157:2 1170:1 1172:2 1176:1 1182:1 1187:1 1188:1 1190:1 1191:1 1201:1 1202:1 1205:1 1210:1 1221:1 1222:1 1233:1 1235:1 1238:1 1241:1 1243:3 1244:2 1250:1 1251:1 1253:1 1255:1 1265:1 1270:1 1278:1 1296:1 1311:1 1323:1 1324:1 1332:1 1348:1 1362:1 1371:1 1374:1 1379:1 1380:1 1386:1 1389:2 1393:5 1395:5 1399:1 1411:2 1422:1 1424:3 1432:4 1446:3 1468:1 1472:1 1475:3 1496:1 1509:5 1513:1 1523:2 1525:1 1527:1 1542:1 1553:1 1565:2 1576:1 1578:2 1580:2 1588:1 1607:1 1612:1 1626:2 1628:1 1636:1 1640:1 1644:1 1659:1 1663:2 1669:1 1670:2 1681:1 1682:1 1688:1 1692:1 1696:2 1697:2 1717:1 1720:1 1732:1 1738:1 1740:1 1744:1 1753:2 1762:1 1769:1 1774:1 1776:2 1779:1 1787:4 1791:1 1796:1 1797:1 1801:2 1815:1 1818:2 1824:1 1833:1 1835:1 1844:3 1849:1 1850:1 1856:1 1858:2 1859:1 1871:1 1883:1 1887:1 1926:1 1928:6 1943:1 1956:1 1957:1 1958:1 1962:2 1996:1 1997:1 2006:1 2012:1 2023:1 2054:1 2057:5 2072:1 2090:1 2110:1 2124:1 2136:1 2145:1 2155:1 2174:1 2175:1 2176:1 2177:8 2179:1 2181:1 2185:3 2188:1 2193:2 2194:1 2196:2 2201:8 2203:3 2208:3 2209:1 2211:4 2214:1 2216:1 2248:1 2252:1 2260:3 2270:1 2274:2 2285:1 2288:1 2293:1 2295:1 2334:1 2378:1 2380:1 2408:1 2418:1 2430:1 2437:1 2487:1 2499:1 2510:1 2547:1 2557:1 2563:1 2565:1 2566:1 2569:1 2582:1 2583:1 2597:1 2598:1 2599:1 2601:1 2602:3 2618:1 2621:1 2631:1 2646:2 2649:1 2650:1 2662:1 2676:3 2687:1 2701:1 2703:1 2705:1 2713:2 2725:1 2731:1 2732:1 2755:1 2760:1 2766:2 2774:8 2786:1 2793:3 2801:2 2803:2 2811:1 2818:1 2827:1 2831:4 2840:1 2854:1 2869:1 2880:1 2883:1 2885:2 2886:1 2888:1 2897:1 2908:2 2948:1 2958:1 2983:1 2989:1 2995:2 2996:1 3002:1 3010:1 3017:1 3025:1 3055:1 3062:2 3072:1 3090:1 3092:1 3122:1 3127:1 3131:3 3134:3 3137:4 3138:2 3148:1 3158:6 3164:1 3174:1 3195:1 3216:1 3227:1 3233:1 3258:1 3313:2 3324:1 3325:1 3339:1 3362:1 3371:1 3383:1 3406:1 3423:1 3434:1 3442:1 3443:2 3456:1 3464:2 3481:1 3491:1 3496:1 3506:1 3516:1 3518:4 3520:1 3530:2 3537:1 3538:1 3550:1 3555:1 3574:2 3584:1 3585:1 3614:1 3616:1 3621:2 3625:2 3630:1 3642:1 3646:1 3647:1 3650:1 3680:1 3682:1 3688:1 3692:1 3699:1 3709:2 3715:1 3718:1 3724:2 3728:2 3732:1 3738:1 3751:1 3757:2 3758:1 3764:1 3778:1 3795:1 3803:1 3807:1 3810:1 3815:1 3818:3 3826:1 3836:2 3842:1 3845:1 3853:1 3857:2 3858:5 3916:2 3923:1 3928:1 3929:1 3934:1 3940:1 3970:1 3983:1 3986:1 3988:1 3998:1 4002:1 4003:1 4011:2 4020:2 4030:3 4031:1 4035:5 4042:1 4043:1 4052:1 4068:1 4094:3 4109:1 4115:1 4126:1 4129:6 4131:1 4152:2 4169:1 4174:2 4196:1 4224:1 4230:3 4231:1 4234:1 4235:1 4249:1 4250:1 4251:1 4281:2 4290:1 4307:1 4315:1 4321:2 4342:2 4351:1 4384:1 4388:1 4400:2 4407:1 4426:3 4433:2 4459:1 4462:3 4471:1 4474:1 4489:1 4497:3 4498:1 4500:1 4503:1 4510:1 4533:1 4536:1 4542:1 4546:1 4565:1 4567:1 4572:1 4645:1 4648:17 4649:1 4658:1 4669:1 4670:1 4673:1 4677:1 4706:1 4713:1 4747:1 4767:4 4787:7 4789:6 4792:1 4795:1 4796:2 4797:2 4800:2 4802:2 4808:1 4810:1 4812:1 4813:1 4814:7 4817:1 4840:1 4871:2 4903:1 4906:1 4944:1 4947:4 4972:1 4994:1 4997:1 5002:2 5005:1 5010:1 5013:1 5020:1 5023:1 5044:4 5047:1 5074:1 5084:1 5092:1 5102:1 5104:2 5123:1 5126:2 5136:2 5170:1 5171:1 5182:1 5201:1 5212:1 5222:2 5224:1 5248:1 5253:1 5269:1 5275:1 5286:1 5296:1 5299:2 5301:1 5304:1 5309:2 5311:1 5313:1 5315:2 5319:1 5320:1 5322:1 5353:1 5357:2 5379:3 5386:1 5413:1 5422:1 5423:1 5436:1 5437:1 5446:1 5448:1 5486:1 5488:1 5504:1 5574:2 5585:1 5587:4 5593:1 5609:2 5636:1 5643:3 5671:1 5689:2 5708:3 5710:2 5739:4 5755:2 5760:1 5773:1 5795:1 5804:2 5808:2 5828:2 5832:2 5862:1 5867:1 5896:1 5910:1 5913:3 5916:1 5935:1 5942:7 5945:1 5950:1 5961:1 5982:1 5993:8 6027:1 6034:5 6037:2 6041:1 6044:1 6045:4 6046:3 6047:2 6048:2 6052:2 6053:1 6056:1 6058:3 6060:4 6063:1 6074:1 6089:1 6100:1 6101:1 6121:1 6140:1 6147:2 6168:1 6174:1 6187:4 6191:2 6203:2 6206:1 6216:1 6221:1 6256:1 6257:1 6259:1 6265:1 6268:1 6286:1 6288:1 6295:1 6304:1 6327:1 6330:1 6338:1 6340:1 6353:1 6373:1 6375:1 6399:1 6416:1 6418:1 6425:1 6431:1 6433:1 6437:2 6457:3 6462:2 6465:1 6475:1 6486:1 6489:4 6493:7 6495:1 6497:2 6507:1 6508:1 6512:2 6519:5 6520:1 6521:2 6522:1 6529:3 6579:2 6580:1 6588:1 6591:1 6592:1 6596:1 6597:1 6612:1 6620:1 6625:2 6645:1 6657:1 6675:1 6681:1 6683:1 6687:1 6696:1 6702:1 6703:1 6707:1 6716:1 6721:1 6722:2 6723:1 6732:1 6735:1 6737:1 6739:1 6748:2 6767:1 6768:1 6771:1 6779:1 6792:1 6794:1 6816:3 6818:1 6826:1 6838:1 6839:2 6852:1 6860:1 6890:1 6898:1 6903:2 6904:1 6914:2 6934:2 6941:3 6943:1 6948:1 6954:2 6956:3 6960:5 6994:1 6999:1 7011:1 7017:1 7038:1 7048:6 7073:5 7077:2 7088:1 7106:1 7123:1 7137:1 7144:2 7186:1 7187:1 7231:3 7249:10 7250:5 7273:1 7274:3 7286:2 7307:1 7311:1 7323:39 7344:8 7345:6 7369:1 7370:1 7381:2 7384:1 7403:1 7409:1 7414:1 7434:3 7458:1 7488:2 7513:2 7525:1 7539:5 7550:1 7563:1 7566:1 7571:1 7586:1 7590:1 7596:1 7600:1 7603:1 7646:2 7650:2 7675:1 7677:1 7684:2 7696:1 7698:1 7701:1 7706:1 7715:3 7771:1 7789:1 7791:12 7812:1 7815:1 7817:2 7826:1 7843:1 7879:3 7884:1 7891:1 7898:1 7914:1 7922:1 7929:1 7936:2 7947:1 7949:2 7957:7 7958:1 7964:2 7990:1 7994:1 8013:1 8026:1 8031:1 8034:1 8035:1 8054:1 8061:1 8064:1 8116:1 8117:1 8122:1 8123:2 8124:1 8125:4 8126:1 8128:2 8130:2 8135:2 8136:1 8140:1 8155:1 8159:2 8161:3 8166:1 8169:1 8176:1 8180:1 8182:1 8191:1 8221:1 8229:5 8268:1 8280:4 8282:2 8293:2 8322:1 8326:1 8328:1 8340:1 8351:1 8362:1 8397:1 8404:1 8406:1 8413:1 8423:1 8437:2 8439:1 8440:1 8441:1 8467:1 8484:2 8485:2 8493:1 8503:2 8505:1 8515:1 8531:1 8539:1 8556:4 8558:4 8575:2 8613:1 8620:1 8621:1 8670:2 8682:2 8694:1 8697:1 8698:1 8705:2 8716:1 8719:3 8721:1 8747:1 8748:2 8751:1 8752:2 8788:1 8796:1 8801:1 8803:1 8813:1 8816:1 8817:1 8819:1 8828:1 8853:1 8858:1 8876:1 8878:1 8898:1 8907:1 8926:1 8930:2 8942:2 8944:2 8954:1 8962:1 8971:1 8979:1 8991:1 8996:1 8997:1 9000:2 9007:1 9010:2 9016:1 9023:1 9028:1 9030:2 9034:1 9045:1 9048:1 9062:1 9063:2 9068:2 9073:1 9080:1 9087:1 9118:1 9179:2 9180:1 9215:1 9236:3 9242:2 9244:1 9249:2 9257:2 9267:1 9279:1 9317:1 9325:2 9372:1 9385:1 9398:1 9405:2 9418:1 9420:2 9430:1 9432:1 9441:1 9442:1 9451:1 9460:1 9473:4 9484:2 9486:1 9495:1 9507:1 9522:1 9533:2 9534:2 9544:1 9569:2 9571:2 9594:1 9597:1 9605:1 9621:1 9683:1 9687:1 9696:1 9697:1 9701:1 9707:2 9712:1 9741:1 9757:1 9760:1 9762:1 9770:1 9773:1 9778:1 9783:1 9788:1 9793:1 9799:4 9802:1 9803:1 9822:1 9823:3 9844:1 9858:1 9870:1 9877:5 9882:4 9883:1 9917:6 9925:2 9930:1 9935:1 9947:1 9955:2 9961:1 9963:1 9974:1 9981:1 9996:1 10013:1 10046:2 10052:1 10053:1 10054:1 10066:1 10070:3 10073:1 10075:2 10076:5 10083:1 10085:1 10121:1 10124:1 10126:1 10132:1 10136:2 10144:1 10153:2 10167:4 10174:1 10177:1 10183:1 10187:1 10199:1 10254:3 10259:1 10276:1 10281:1 10287:3 10289:3 10296:3 10299:3 10300:5 10304:2 10307:3 10308:2 10312:1 10315:1 10322:1 10345:1 10346:1 10347:1 10371:2 10398:1 10404:1 10406:1 10410:1 10417:1 10427:2 10429:1 10438:1 10476:1 10477:1 10497:1 10498:1 10515:1 10526:1 10564:1 10573:1 10574:1 10580:1 10585:2 10595:2 10607:1 10633:1 10637:4 10642:1 10646:1 10652:2 10653:1 10654:1 10664:2 10679:1 10681:1 10683:1 10684:2 10698:1 10717:2 10720:1 10724:3 10750:1 10754:2 10778:1 10781:1 10784:1 10786:1 10799:2 10804:1 10821:3 10832:1 10833:1 10834:1 10850:1 10855:1 10872:2 10907:1 10932:1 10933:4 10940:2 10965:2 10967:1 10973:2 10977:2 10982:1 10989:1 10994:5 10995:1 11001:3 11046:2 11052:2 11054:1 11056:1 11062:2 11067:1 11071:1 11081:1 11086:1 11092:1 11093:1 11098:1 11107:1 11109:1 11116:1 11140:1 11149:1 11154:1 11170:1 11176:2 11222:1 11229:1 11245:1 11247:1 11252:2 11261:1 11291:1 11304:1 11310:1 11313:1 11354:3 11355:2 11375:1 11387:1 11388:1 11389:2 11393:3 11394:1 11401:1 11410:2 11414:1 11416:1 11421:1 11422:1 11437:1 11440:1 11447:1 11477:1 11492:1 11499:5 11501:2 11515:1 11521:1 11532:1 11536:1 11552:1 11581:2 11606:1 11611:1 11619:1 11639:1 11654:1 11661:2 11662:1 11671:1 11686:1 11688:2 11689:1 11699:1 11704:1 11735:1 11756:1 11759:1 11778:1 11844:1 11860:1 11876:2 11888:2 11889:1 11903:1 11926:1 11933:1 11945:1 11960:1 12007:1 12009:1 12013:1 12018:1 12021:1 12023:1 12024:1 12039:1 12079:1 12152:1 12156:1 12157:1 12167:2 12169:1 12214:2 12234:1 12235:2 12236:1 12241:1 12242:1 12243:1 12250:2 12261:1 12262:2 12265:1 12271:7 12276:1 12300:3 12313:2 12323:1 12324:1 12369:1 12385:1 12396:1 12402:2 12404:5 12409:3 12468:1 12472:14 12475:1 12502:1 12522:1 12526:1 12528:2 12532:1 12539:1 12548:1 12557:1 12565:1 12591:1 12612:1 12640:1 12641:2 12661:1 12687:1 12701:1 12710:3 12733:1 12737:2 12743:3 12748:1 12766:1 12768:1 12775:3 12778:1 12782:1 12790:1 12856:1 12884:1 12885:1 12893:1 12894:2 12896:1 12910:1 12919:2 12932:2 12942:2 12945:1 12951:1 12970:1 12971:1 12974:2 12982:2 12995:1 13001:1 13007:1 13016:1 13018:1 13033:1 13040:1 13053:1 13067:1 13068:1 13080:1 13086:3 13097:2 13120:2 13126:4 13133:1 13155:1 13160:1 13170:1 13179:1 13186:1 13187:1 13211:1 13247:1 13263:1 13270:1 13276:2 13295:5 13310:1 13316:1 13323:2 13332:1 13366:1 13367:1 13371:1 13379:1 13384:1 13388:1 13401:1 13441:1 13459:1 13464:1 13476:1 13498:1 13501:1 13506:2 13539:1 13557:1 13563:2 13586:1 13597:1 13599:1 13618:1 13628:2 13629:2 13634:1 13656:1 13662:1 13666:1 13676:1 13691:2 13692:1 13693:2 13701:1 13704:1 13708:1 13723:1 13726:1 13744:1 13751:2 13757:1 13805:1 13806:2 13825:1 13875:1 13882:1 13889:1 13890:1 13894:1 13906:1 13911:1 13945:1 13956:1 13969:2 13973:1 13987:1 13989:1 13991:2 13996:3 14001:2 14036:5 14043:1 14045:1 14049:1 14057:1 14093:1 14106:1 14107:1 14117:1 14154:1 14181:1 14192:1 14193:1 14197:1 14202:1 14210:1 14211:1 14222:1 14233:2 14235:1 14240:1 14249:2 14259:1 14267:2 14270:1 14292:1 14297:1 14303:2 14306:1 14320:2 14339:1 14342:1 14350:1 14361:1 14380:1 14391:1 14403:1 14418:2 14419:1 14422:1 14430:1 14438:1 14439:1 14443:1 14445:2 14451:4 14481:1 14487:3 14492:1 14506:2 14508:2 14557:1 14563:1 14564:3 14577:2 14583:1 14586:1 14604:1 14612:1 14613:1 14618:1 14622:1 14628:1 14630:1 14634:1 14635:1 14638:4 14643:1 14655:1 14659:1 14667:2 14672:1 14696:2 14705:1 14724:1 14728:1 14769:3 14796:1 14797:1 14801:1 14809:1 14818:1 14824:1 14841:3 14843:1 14851:2 14881:1 14887:1 14901:1 14907:1 14908:1 14918:1 14924:11 14945:2 14951:1 14952:2 14967:1 14973:2 14978:1 14993:2 15002:1 15012:9 15018:1 15033:1 15039:2 15073:1 15080:2 15083:1 15095:1 15097:1 15122:1 15144:1 15145:1 15166:1 15170:4 15173:1 15177:2 15178:1 15187:2 15188:2 15193:1 15195:1 15196:2 15197:2 15207:1 15229:1 15263:1 15266:1 15272:1 15297:1 15301:1 15309:1 15314:2 15332:1 15345:1 15352:1 15372:1 15376:1 15399:2 15402:1 15419:1 15442:1 15470:1 15476:1 15483:3 15495:2 15504:2 15513:1 15520:2 15538:2 15539:1 15560:1 15567:2 15568:1 15571:1 15578:1 15582:3 15584:1 15629:1 15639:1 15655:2 15657:1 15723:1 15738:1 15762:4 15768:1 15775:3 15778:1 15786:1 15798:1 15807:1 15838:1 15839:4 15842:1 15863:2 15867:1 15872:1 15896:1 15907:1 15915:1 15937:1 15951:1 15962:2 15984:1 16028:2 16055:1 16067:1 16070:1 16083:1 16095:1 16108:1 16117:5 16119:1 16129:2 16139:1 16157:1 16162:1 16221:1 16238:1 16258:1 16312:1 16319:1 16324:1 16329:1 16331:1 16337:2 16347:2 16351:1 16371:1 16399:4 16419:1 16434:2 16435:3 16457:1 16462:2 16469:1 16477:1 16486:1 16489:4 16505:3 16518:2 16519:1 16525:1 16531:1 16555:1 16570:2 16583:1 16592:2 16612:1 16625:3 16633:1 16664:2 16674:5 16680:1 16729:2 16733:2 16743:3 16756:1 16762:1 16777:5 16781:1 16782:1 16787:1 16788:1 16795:1 16807:1 16808:1 16824:1 16832:1 16837:1 16865:1 16873:1 16892:1 16915:1 16916:1 16925:1 16932:2 16934:1 16962:1 16970:1 16985:1 17009:1 17016:1 17046:2 17094:1 17097:1 17098:3 17101:1 17110:5 17122:1 17127:1 17132:1 17165:1 17183:1 17205:1 17221:1 17224:1 17230:1 17235:1 17241:1 17262:1 17265:1 17266:2 17276:1 17317:1 17326:2 17335:1 17342:1 17353:1 17376:1 17398:1 17410:1 17415:2248 17425:1 17430:1 17433:1 17473:1 17476:1 17478:1 17486:1 17505:3 17547:1 17589:1 17594:1 17600:1 17601:1 17608:1 17613:1 17639:1 17644:1 17646:1 17650:1 17703:2 17706:2 17744:1 17753:1 17754:1 17782:1 17810:1 17814:1 17820:2 17824:1 17831:1 17845:1 17859:1 17869:1 17871:1 17892:1 17900:3 17911:1 17917:1 17928:1 17931:1 17936:1 17941:1 17944:2 17946:3 17964:1 17978:1 17980:1 17989:1 18009:1 18015:1 18041:1 18069:1 18074:1 18085:1 18100:1 18109:1 18119:2 18121:1 18142:1 18143:1 18167:1 18172:3 18175:1 18187:1 18194:1 18210:1 18232:5 18275:6 18277:1 18283:1 18303:1 18306:1 18314:1 18319:1 18320:1 18324:1 18326:2 18333:1 18335:1 18355:1 18359:3 18360:1 18364:1 18365:1 18378:1 18384:3 18390:1 18392:1 18404:1 18410:2 18411:1 18412:1 18417:1 18427:1 18432:1 18437:2 18444:1 18457:1 18476:1 18491:1 18495:1 18506:1 18515:1 18539:1 18543:3 18545:2 18587:1 18596:1 18603:1 18608:1 18619:1 18626:2 18632:2 18637:2 18663:1 18676:1 18687:1 18703:1 18707:1 18723:1 18724:1 18748:1 18753:1 18754:1 18755:2 18757:1 18760:2 18770:1 18786:1 18801:1 18802:1 18805:2 18808:1 18838:1 18845:1 18861:1 18875:3 18876:1 18878:2 18884:1 18886:1 18890:1 18893:1 18901:1 18908:1 18912:3 18928:1 18930:1 18932:1 18936:4 18944:2 18947:1 18948:1 18949:1 18966:1 18979:1 18984:1 18998:1 19004:1 19011:1 19013:1 19014:1 19015:1 19033:3 19037:1 19044:1 19050:1 19064:1 19106:1 19109:1 19137:2 19140:1 19143:1 19148:1 19152:1 19176:1 19177:1 19186:1 19205:4 19213:1 19223:1 19225:1 19229:1 19233:1 19252:2 19268:1 19270:1 19306:1 19309:1 19328:1 19330:2 19358:1 19370:1 19385:1 19395:1 19407:1 19409:1 19413:1 19426:1 19440:1 19441:2 19455:1 19457:1 19470:1 19491:1 19492:2 19500:2 19502:1 19516:1 19520:1 19522:2 19541:1 19554:1 19556:6 19559:1 19560:2 19563:2 19568:3 19574:2 19577:1 19582:2 19585:1 19590:1 19593:1 19607:1 19609:1 19617:1 19689:1 19695:2 19701:1 19727:1 19731:2 19733:1 19747:1 19751:1 19753:1 19755:1 19769:1 19774:1 19785:2 19796:1 19797:1 19810:2 19813:1 19819:3 19831:1 19852:2 19857:2 19860:1 19877:1 19889:2 19894:1 19905:2 19910:1 19915:3 19918:1 19923:1 19924:1 19933:1 19942:2 19950:1 19956:1 19959:1 19965:1 19990:1 20016:2 20025:2 20031:1 20039:1 20041:3 20047:1 20059:1 20063:1 20065:1 20069:2 20070:1 20073:2 20075:1 20085:1 20089:3 20090:1 20091:1 20143:1 20152:1 20162:1 20169:2 20171:3 20178:1 20188:1 20190:1 20192:1 20193:1 20233:1 20260:1 20270:1 20274:1 20322:1 20325:3 20327:1 20332:1 20334:1 20343:1 20374:1 20395:2 20398:1 20399:1 20401:1 20411:5 20421:1 20429:2 20443:1 20447:3 20452:2 20454:1 20469:1 20471:1 20490:2 20519:1 20525:2 20526:2 20528:1 20529:1 20531:1 20535:1 20539:1 20541:1 20545:2 20546:1 20548:1 20551:2 20553:1 20554:1 20556:2 20559:6 20563:1 20571:1 20574:1 20590:1 20592:1 20596:2 20602:1 20608:1 20630:1 20680:1 20682:1 20683:1 20684:1 20685:2 20690:1 20730:1 20731:3 20747:1 20752:4 20755:2 20775:2 20778:1 20785:1 20803:2 20811:1 20828:2 20832:1 20858:1 20879:1 20893:6 20900:1 20906:2 20915:1 20927:4 20939:2 20960:8 20967:1 20973:1 21002:1 21022:1 21028:1 21029:1 21031:1 21057:1 21072:1 21080:1 21087:2 21100:2 21103:1 21142:1 21161:1 21167:1 21179:1 21186:1 21189:1 21199:1 21221:1 21225:1 21233:1 21262:1 21284:1 21287:1 21300:1 21304:1 21312:1 21341:1 21342:1 21346:1 21349:1 21354:2 21363:1 21365:1 21369:1 21375:1 21376:1 21382:1 21397:1 21411:1 21414:1 21420:5 21442:2 21472:1 21480:2 21483:3 21496:1 21513:2 21534:1 21536:1 21543:1 21547:1 21549:1 21550:1 21571:3 21584:2 21608:1 21609:1 21614:1 21633:4 21640:1 21645:3 21657:2 21683:1 21703:2 21705:1 21709:1 21728:1 21735:1 21737:1 21742:1 21747:1 21753:1 21758:1 21784:1 21789:1 21816:3 21817:1 21834:2 21837:1 21838:1 21844:2 21847:1 21857:1 21869:1 21876:1 21879:1 21885:1 21891:1 21928:1 21929:1 21930:1 21933:2 21951:1 21965:1 21966:1 21971:1 21979:1 21984:3 21985:1 22008:3 22015:2 22026:1 22043:1 22054:3 22067:1 22078:1 22080:1 22085:1 22105:1 22125:3 22156:1 22164:1 22165:1 22171:1 22182:1 22215:1 22230:1 22244:2 22268:1 22288:3 22298:1 22304:1 22336:1 22362:1 22366:1 22374:1 22381:2 22384:1 22386:1 22389:1 22398:1 22400:1 22448:2 22449:1 22450:1 22466:1 22479:1 22491:1 22493:1 22542:2 22545:2 22547:1 22575:1 22598:1 22604:1 22614:1 22626:1 22657:1 22665:1 22666:5 22686:2 22687:2 22696:1 22722:1 22724:1 22742:1 22765:1 22779:1 22784:4 22791:1 22798:1 22810:1 22814:1 22817:1 22820:1 22843:1 22859:1 22891:3 22904:1 22905:1 22935:1 22941:1 22946:1 22962:2 22965:1 22972:1 22991:2 22996:2 23001:1 23007:1 23010:1 23013:1 23015:2 23025:1 23038:1 23073:2 23096:3 23100:2 23136:1 23142:1 23144:2 23147:1 23149:2 23151:1 23152:2 23153:1 23158:1 23159:1 23165:1 23171:1 23189:2 23211:1 23228:1 23234:1 23252:2 23263:2 23273:3 23277:2 23284:1 23285:1 23290:1 23291:1 23307:1 23308:4 23310:2 23335:1 23340:1 23360:1 23369:1 23373:1 23403:3 23414:1 23422:2 23456:1 23458:1 23493:5 23496:2 23559:1 23563:1 23594:2 23609:1 23634:1 23646:1 23660:4 23669:1 23681:2 23683:1 23689:1 23692:6 23699:3 23717:2 23718:1 23719:1 23720:1 23721:1 23723:1 23766:2 23777:3 23779:1 23791:1 23800:1 23801:1 23848:3 23853:2 23862:1 23865:1 23871:2 23874:1 23875:1 23882:1 23906:1 23907:2 23911:1 23912:1 23913:2 23919:1 23946:1 23953:1 23955:1 23956:1 23966:1 23970:1 23973:1 23985:1 23994:1 23996:1 23998:1 24017:2 24022:1 24054:1 24066:1 24071:1 24092:2 24093:1 24094:1 24122:1 24143:1 24151:1 24153:6 24160:1 24166:1 24196:1 24271:1 24288:1 24290:1 24310:1 24328:1 24331:1 24334:2 24340:4 24398:1 24423:1 24428:1 24434:1 24439:1 24456:2 24459:1 24463:2 24470:2 24473:1 24497:1 24507:1 24551:1 24562:1 24567:1 24570:1 24571:1 24585:1 24586:1 24602:1 24603:1 24605:1 24606:1 24612:1 24687:2 24704:1 24723:1 24733:1 24740:1 24758:1 24807:2 24809:1 24871:1 24889:1 24893:1 24896:1 24904:1 24910:1 24936:1 24940:1 24956:1 24965:2 24969:5 24972:1 24982:1 25003:1 25029:1 25033:1 25060:1 25069:1 25096:2 25097:1 25112:1 25114:2 25115:3 25149:1 25159:1 25181:1 25192:1 25221:1 25230:1 25234:1 25240:2 25242:5 25247:1 25249:1 25262:1 25265:1 25267:2 25271:1 25279:2 25282:1 25288:1 25306:1 25309:1 25323:1 25329:1 25333:4 25337:2 25354:1 25363:1 25369:1 25372:1 25381:1 25386:1 25387:1 25392:1 25445:1 25455:2 25460:1 25468:1 25474:1 25496:2 25497:1 25505:1 25507:1 25508:1 25513:3 25517:2 25518:1 25519:1 25523:1 25525:2 25550:2 25561:1 25567:2 25568:3 25570:1 25572:2 25584:1 25614:1 25619:1 25630:1 25634:1 25650:1 25651:1 25656:3 25672:4 25679:1 25715:2 25731:1 25735:1 25738:2 25742:1 25757:1 25760:1 25761:1 25774:1 25779:1 25781:1 25782:1 25792:2 25793:1 25796:1 25802:3 25804:1 25805:2 25806:1 25817:1 25820:2 25822:1 25824:1 25826:2 25827:5 25834:1 25837:2 25839:2 25861:1 25870:1 25871:2 25872:1 25900:4 25915:1 25925:1 25927:7 25928:1 25930:1 25957:1 25959:1 25988:2 25994:1 25997:2 26007:1 26019:1 26021:1 26032:1 26072:1 26095:1 26099:1 26100:2 26107:1 26115:1 26123:1 26171:2 26204:1 26211:1 26216:1 26260:2 26268:1 26282:1 26283:1 26289:2 26317:1 26319:1 26335:1 26346:1 26349:1 26365:1 26368:1 26406:3 26413:1 26417:1 26439:2 26446:1 26448:1 26454:1 26484:1 26485:2 26490:1 26508:19 26511:1 26513:3 26530:1 26539:1 26542:1 26547:3 26562:1 26564:1 26567:1 26576:1 26591:1 26610:3 26619:1 26622:1 26634:1 26645:4 26655:3 26662:1 26692:11 26733:1 26759:1 26764:2 26777:1 26782:1 26787:1 26800:1 26807:1 26813:1 26834:2 26852:2 26864:2 26867:1 26869:2 26882:2 26886:1 26904:1 26921:1 26944:1 26946:2 26948:2 26952:1 26953:2 26965:1 26966:2 26975:1 26977:1 26978:1 26982:1 27005:2 27012:1 27016:2 27019:3 27020:5 27058:1 27062:1 27063:1 27073:1 27074:1 27078:2 27096:3 27150:4 27154:1 27160:1 27179:1 27197:1 27202:1 27227:1 27236:1 27241:1 27247:3 27248:2 27309:3 27333:1 27370:1 27379:1 27390:2 27394:1 27396:1 27402:2 27407:1 27433:1 27434:2 27440:1 27447:3 27459:1 27477:1 27491:1 27492:1 27506:1 27521:1 27530:1 27534:2 27547:2 27553:2 27564:1 27569:1 27572:1 27590:1 27598:1 27609:2 27613:1 27619:1 27635:1 27637:1 27638:1 27643:3 27652:1 27667:1 27669:1 27672:1 27683:4 27689:1 27706:1 27715:3 27716:4 27723:3 27730:1 27732:1 27734:1 27739:7 27765:1 27775:5 27778:1 27784:3 27792:1 27797:1 27812:1 27820:1
8 1:4 8:1 21:1 40:1 43:1 46:1 47:2 83:3 88:1 102:1 121:1 125:1 132:1 148:1 158:1 160:1 162:1 163:1 181:1 190:1 194:4 214:2 222:1 234:1 240:4 250:1 263:1 279:1 303:1 327:3 328:1 329:1 354:1 369:3 403:1 407:1 416:2 431:1 432:2 441:2 451:1 475:1 477:1 486:1 494:1 502:1 567:1 575:1 586:1 587:2 594:2 605:4 627:8 656:1 659:1 667:5 683:1 686:1 688:1 749:1 771:2 784:1 796:1 843:6 850:2 852:1 856:1 869:1 870:1 876:5 891:1 906:1 920:1 925:1 930:5 934:2 945:1 969:1 970:1 973:3 984:1 991:1 1011:1 1045:1 1050:1 1052:1 1068:2 1074:1 1086:1 1093:2 1105:1 1129:5 1138:1 1147:1 1156:1 1157:2 1170:1 1172:2 1176:1 1182:1 1187:1 1188:1 1190:1 1191:1 1201:1 1202:1 1205:1 1210:1 1221:1 1222:1 1233:1 1235:1 1238:1 1241:1 1243:4 1244:2 1250:1 1251:1 1253:1 1255:1 1265:1 1270:1 1278:1 1296:1 1311:1 1323:1 1324:1 1332:1 1348:1 1362:1 1369:1 1371:1 1374:1 1379:1 1380:1 1386:1 1389:2 1393:5 1395:5 1399:1 1411:2 1422:1 1424:3 1432:5 1446:3 1468:1 1472:1 1475:3 1496:1 1509:5 1513:1 1523:2 1525:1 1527:1 1542:1 1553:1 1565:2 1576:1 1578:2 1580:2 1588:1 1607:1 1612:1 1626:3 1628:1 1636:1 1640:1 1644:1 1659:1 1663:2 1669:1 1670:2 1681:1 1682:1 1684:1 1688:1 1692:1 1696:2 1697:2 1717:1 1720:1 1732:1 1738:1 1740:1 1744:1 1753:2 1762:1 1769:1 1774:1 1776:2 1779:1 1787:4 1791:1 1796:1 1797:1 1801:2 1815:1 1818:2 1824:1 1833:1 1835:1 1844:3 1849:1 1850:1 1856:1 1858:2 1859:1 1871:1 1883:1 1887:1 1926:1 1928:6 1943:1 1956:1 1957:1 1958:1 1962:2 1996:1 1997:1 2006:1 2012:1 2023:1 2054:1 2057:6 2072:1 2090:1 2110:1 2124:1 2136:1 2145:1 2155:1 2174:1 2175:1 2176:1 2177:8 2179:1 2181:1 2185:3 2188:1 2193:2 2194:1 2196:2 2201:8 2203:3 2208:3 2209:1 2211:4 2214:1 2216:1 2248:1 2252:1 2260:3 2270:1 2274:2 2278:1 2285:1 2288:1 2293:1 2295:1 2334:1 2378:1 2380:1 2408:1 2418:1 2430:1 2437:1 2487:1 2499:1 2510:1 2547:1 2557:1 2563:1 2565:1 2566:1 2569:1 2582:1 2583:1 2597:1 2598:1 2599:1 2601:1 2602:3 2618:1 2621:1 2631:1 2646:2 2649:1 2650:1 2662:1 2676:3 2687:1 2701:1 2703:1 2705:1 2713:2 2725:1 2731:1 2732:1 2755:1 2760:1 2766:2 2774:8 2786:1 2793:3 2801:2 2803:2 2811:1 2813:1 2818:1 2827:1 2831:4 2840:1 2854:1 2869:1 2880:1 2883:1 2885:2 2886:2 2888:1 2897:1 2908:2 2948:1 2958:1 2983:1 2989:1 2995:2 2996:1 3002:1 3010:1 3017:1 3025:1 3055:1 3062:2 3072:1 3090:1 3092:1 3122:1 3127:1 3131:3 3134:3 3137:4 3138:2 3148:1 3158:6 3164:1 3174:1 3195:1 3216:1 3227:1 3233:1 3258:1 3313:2 3321:1 3324:1 3325:1 3339:1 3362:1 3371:1 3383:1 3406:1 3423:1 3434:1 3442:1 3443:2 3456:1 3464:2 3481:1 3491:1 3496:1 3506:1 3516:1 3518:4 3520:1 3530:2 3537:1 3538:1 3550:1 3555:1 3574:2 3580:1 3584:1 3585:1 3614:1 3616:1 3621:2 3625:2 3630:1 3640:1 3642:1 3646:1 3647:1 3650:1 3680:1 3682:1 3688:1 3692:1 3699:1 3709:2 3715:1 3718:1 3724:2 3728:2 3732:2 3738:1 3751:1 3757:2 3758:1 3764:1 3778:1 3795:1 3803:1 3807:1 3810:1 3815:1 3818:3 3826:1 3836:2 3839:1 3842:1 3845:1 3853:1 3857:2 3858:5 3916:2 3923:1 3928:1 3929:1 3934:1 3940:1 3970:1 3983:1 3986:1 3988:1 3998:1 4002:1 4003:1 4011:2 4020:2 4030:3 4031:1 4035:5 4042:1 4043:1 4052:1 4068:1 4094:3 4109:1 4115:1 4126:1 4129:6 4131:1 4152:2 4169:1 4174:2 4196:1 4224:1 4230:3 4231:1 4234:1 4235:1 4249:1 4250:1 4251:1 4281:2 4290:1 4302:1 4307:1 4315:1 4321:2 4342:2 4351:1 4384:1 4388:1 4400:2 4407:1 4426:3 4433:2 4459:1 4462:3 4471:1 4474:1 4489:1 4497:3 4498:1 4500:1 4503:1 4510:1 4533:1 4536:1 4542:1 4546:2 4565:1 4567:1 4572:1 4645:1 4648:18 4649:1 4658:1 4669:1 4670:1 4673:1 4677:1 4706:1 4713:1 4747:1 4763:1 4767:4 4787:7 4789:6 4790:1 4792:1 4795:1 4796:2 4797:2 4800:3 4802:2 4808:1 4810:1 4812:1 4813:1 4814:7 4817:1 4840:1 4869:1 4871:2 4903:1 4906:1 4944:1 4947:4 4972:1 4994:1 4997:1 5002:2 5005:1 5010:1 5013:1 5020:1 5023:1 5044:4 5047:1 5074:1 5084:1 5092:1 5102:1 5104:2 5123:1 5126:2 5136:2 5170:1 5171:1 5182:1 5201:1 5212:1 5222:2 5224:1 5248:1 5253:1 5269:1 5275:1 5286:1 5296:1 5299:2 5301:1 5304:1 5309:2 5311:1 5313:1 5315:2 5319:1 5320:1 5322:1 5353:1 5357:2 5379:3 5386:1 5413:1 5422:1 5423:1 5425:1 5436:1 5437:1 5446:1 5448:1 5486:1 5488:1 5504:1 5574:2 5585:1 5587:4 5593:1 5609:2 5636:1 5643:3 5671:1 5689:2 5708:4 5710:2 5739:4 5755:2 5760:1 5773:1 5795:1 5804:2 5808:2 5828:2 5832:2 5862:1 5867:1 5892:1 5896:1 5910:1 5913:3 5916:1 5935:1 5942:7 5945:1 5950:1 5961:1 5969:1 5982:1 5993:8 6027:1 6034:5 6037:3 6041:1 6044:1 6045:4 6046:3 6047:2 6048:2 6049:1 6052:2 6053:1 6056:1 6058:3 6060:4 6063:1 6074:1 6089:1 6100:1 6101:1 6121:1 6140:1 6147:3 6168:1 6174:1 6187:4 6191:2 6203:2 6206:1 6216:1 6221:1 6250:1 6256:1 6257:1 6259:1 6265:1 6268:1 6286:1 6288:1 6295:1 6304:1 6327:1 6330:1 6338:1 6340:1 6353:1 6373:1 6375:1 6399:1 6416:1 6418:1 6425:1 6431:1 6433:1 6437:2 6457:3 6462:2 6465:1 6475:1 6486:1 6489:4 6493:7 6495:1 6497:2 6507:1 6508:1 6512:2 6519:5 6520:1 6521:2 6522:1 6523:1 6529:3 6579:2 6580:1 6588:1 6591:1 6592:1 6596:1 6597:1 6612:1 6620:1 6625:2 6645:1 6657:1 6670:1 6675:1 6681:1 6683:1 6687:1 6696:1 6702:1 6703:1 6707:1 6716:2 6721:1 6722:2 6723:1 6732:1 6735:1 6737:1 6739:1 6748:2 6767:1 6768:1 6771:1 6779:1 6792:1 6794:1 6816:3 6818:1 6825:1 6826:1 6838:1 6839:2 6842:1 6852:1 6860:1 6890:1 6898:1 6903:2 6904:1 6914:2 6934:2 6941:3 6943:1 6948:1 6954:2 6956:3 6960:5 6994:1 6999:1 7011:1 7017:1 7038:1 7048:6 7073:5 7077:2 7088:1 7106:1 7123:1 7137:1 7144:2 7186:1 7187:1 7231:3 7249:10 7250:5 7270:1 7273:1 7274:3 7286:2 7307:1 7311:1 7323:39 7344:8 7345:6 7369:1 7370:1 7381:2 7384:1 7403:1 7409:1 7414:2 7434:3 7458:1 7478:1 7488:2 7513:2 7525:1 7539:5 7550:1 7563:1 7566:1 7571:1 7586:1 7590:1 7596:1 7600:1 7603:1 7646:2 7650:2 7675:1 7677:1 7684:2 7696:1 7698:1 7701:1 7706:1 7715:3 7771:1 7789:1 7791:13 7812:1 7815:1 7817:2 7826:1 7843:1 7879:3 7884:1 7891:1 7898:1 7914:1 7922:1 7929:1 7936:2 7947:1 7949:2 7957:7 7958:1 7964:2 7990:1 7994:1 8013:1 8026:1 8031:1 8034:1 8035:1 8045:1 8054:1 8061:1 8064:1 8116:1 8117:1 8122:1 8123:2 8124:1 8125:4 8126:1 8128:2 8130:2 8135:2 8136:1 8140:1 8155:1 8159:2 8161:3 8166:1 8169:1 8176:1 8180:1 8182:1 8191:1 8221:1 8229:5 8268:1 8280:4 8282:2 8293:2 8322:1 8326:1 8328:1 8340:1 8351:1 8362:1 8397:1 8404:1 8406:1 8413:1 8423:1 8437:2 8439:1 8440:1 8441:1 8467:1 8484:2 8485:2 8493:1 8503:2 8505:1 8515:1 8531:1 8539:1 8556:5 8558:4 8575:2 8613:1 8620:1 8621:1 8670:2 8682:2 8694:1 8697:1 8698:1 8705:2 8716:1 8719:3 8721:1 8747:1 8748:2 8751:1 8752:3 8788:1 8796:1 8801:1 8803:1 8804:1 8813:1 8816:1 8817:1 8819:1 8828:1 8853:1 8858:1 8876:1 8878:1 8898:1 8907:1 8926:1 8930:2 8942:2 8944:2 8954:1 8962:1 8971:1 8979:1 8991:1 8996:1 8997:1 9000:2 9007:1 9010:2 9016:1 9023:1 9028:1 9030:2 9034:1 9045:1 9048:1 9062:1 9063:2 9068:2 9073:1 9080:1 9087:1 9118:1 9179:2 9180:1 9215:1 9236:3 9242:2 9244:1 9249:2 9257:2 9267:1 9279:1 9317:1 9325:2 9372:1 9385:1 9398:1 9405:2 9418:1 9420:2 9430:1 9432:1 9441:1 9442:1 9451:2 9460:1 9473:4 9484:2 9486:1 9495:1 9507:1 9522:1 9533:2 9534:2 9544:1 9569:2 9571:2 9594:1 9597:1 9605:1 9621:1 9683:1 9687:1 9696:2 9697:1 9701:1 9707:4 9712:1 9741:1 9757:1 9760:1 9762:1 9770:1 9773:1 9778:1 9783:1 9788:1 9793:1 9797:1 9799:4 9802:1 9803:1 9822:1 9823:3 9844:1 9858:1 9870:1 9877:5 9882:4 9883:1 9917:7 9925:2 9930:1 9935:1 9947:1 9955:2 9961:1 9963:1 9974:1 9981:1 9996:1 10006:1 10013:1 10046:2 10052:1 10053:1 10054:1 10066:1 10070:3 10073:1 10075:2 10076:5 10083:1 10085:1 10121:1 10124:1 10126:1 10132:1 10136:2 10144:1 10153:2 10167:4 10174:1 10177:1 10183:1 10187:1 10199:1 10254:3 10259:1 10276:1 10281:1 10287:3 10289:4 10296:3 10299:3 10300:5 10304:2 10307:3 10308:2 10312:1 10315:1 10322:1 10345:1 10346:1 10347:1 10371:2 10398:1 10404:1 10406:1 10410:1 10417:1 10427:2 10429:1 10438:1 10476:1 10477:1 10497:1 10498:1 10515:1 10526:1 10564:1 10573:1 10574:1 10580:1 10585:2 10595:2 10607:1 10633:1 10637:4 10642:1 10646:1 10652:2 10653:1 10654:1 10664:2 10679:1 10681:1 10683:1 10684:2 10698:1 10717:2 10720:1 10724:3 10750:1 10754:3 10778:1 10781:1 10784:1 10786:1 10799:2 10804:1 10821:3 10832:1 10833:1 10834:1 10850:1 10855:1 10872:2 10907:1 10932:1 10933:4 10940:2 10965:2 10967:1 10973:2 10977:2 10981:1 10982:1 10989:1 10994:5 10995:1 11001:3 11046:3 11052:2 11054:1 11056:1 11062:2 11067:1 11071:1 11081:1 11086:1 11092:1 11093:1 11098:1 11107:1 11109:1 11116:1 11140:1 11149:1 11154:1 11170:1 11175:1 11176:2 11222:1 11229:1 11245:1 11247:1 11252:2 11261:1 11291:1 11304:2 11310:1 11313:1 11354:3 11355:2 11375:1 11387:1 11388:1 11389:2 11393:3 11394:1 11401:1 11410:2 11414:1 11416:1 11421:1 11422:1 11437:1 11440:1 11447:1 11477:1 11492:1 11499:5 11501:2 11515:1 11521:1 11532:1 11536:1 11552:1 11581:2 11606:1 11611:1 11619:1 11639:1 11654:1 11661:2 11662:1 11671:1 11686:1 11688:3 11689:1 11691:1 11699:1 11704:1 11735:1 11756:1 11759:1 11778:1 11844:1 11860:1 11876:2 11888:2 11889:1 11903:1 11926:1 11933:1 11945:1 11960:1 12007:1 12009:1 12013:1 12018:1 12021:1 12023:1 12024:1 12039:1 12079:1 12115:1 12152:1 12156:1 12157:1 12167:2 12169:1 12214:2 12234:1 12235:2 12236:1 12241:1 12242:1 12243:1 12250:2 12261:1 12262:2 12265:1 12271:7 12276:1 12300:3 12313:2 12323:1 12324:1 12369:1 12385:1 12396:1 12402:2 12404:5 12409:3 12468:1 12472:14 12475:1 12502:1 12522:1 12526:1 12528:2 12532:1 12539:1 12548:1 12557:1 12565:1 12591:1 12612:1 12640:1 12641:2 12661:1 12687:1 12701:1 12710:3 12733:1 12737:2 12743:3 12748:1 12766:1 12768:1 12775:3 12778:1 12782:1 12790:1 12801:1 12856:1 12884:1 12885:1 12893:1 12894:2 12896:1 12910:1 12919:2 12932:2 12942:2 12945:1 12951:1 12970:1 12971:2 12974:2 12982:2 12995:1 13001:1 13007:1 13016:1 13018:1 13033:1 13040:1 13053:1 13067:1 13068:1 13080:1 13086:3 13097:3 13120:2 13126:4 13133:1 13155:1 13160:1 13170:1 13179:1 13186:1 13187:1 13211:1 13247:1 13263:1 13270:1 13276:2 13285:1 13295:5 13310:1 13316:1 13323:2 13332:1 13366:1 13367:1 13371:1 13379:1 13384:1 13388:1 13401:1 13441:1 13459:1 13464:1 13476:1 13483:1 13498:1 13500:1 13501:1 13506:2 13539:1 13557:1 13563:2 13586:1 13597:1 13599:1 13618:1 13628:2 13629:2 13634:1 13656:1 13662:1 13666:1 13676:1 13691:2 13692:1 13693:2 13701:1 13704:1 13708:1 13723:1 13726:1 13744:1 13751:3 13757:1 13805:1 13806:2 13825:1 13875:1 13882:1 13889:1 13890:1 13894:1 13906:1 13911:1 13945:1 13956:1 13969:2 13973:1 13987:1 13989:1 13991:2 13996:3 14001:2 14036:5 14043:1 14045:1 14049:1 14057:1 14093:1 14106:1 14107:1 14117:1 14154:1 14178:1 14181:1 14192:1 14193:1 14197:1 14202:1 14210:1 14211:1 14222:1 14233:2 14235:1 14240:1 14249:2 14259:1 14267:2 14270:1 14292:1 14297:1 14303:2 14306:1 14320:2 14339:1 14341:1 14342:1 14350:1 14361:1 14380:1 14391:1 14403:1 14418:2 14419:1 14422:1 14430:1 14438:1 14439:1 14443:1 14445:2 14451:4 14481:1 14487:3 14492:1 14506:2 14508:2 14557:1 14563:1 14564:3 14577:2 14583:1 14586:1 14604:1 14612:1 14613:1 14618:1 14622:1 14628:1 14630:1 14634:1 14635:1 14638:4 14643:1 14650:1 14655:1 14659:1 14667:2 14672:1 14696:2 14705:1 14724:1 14728:1 14769:3 14796:1 14797:1 14801:1 14809:1 14818:1 14824:1 14841:3 14843:1 14851:2 14881:1 14887:1 14901:1 14907:1 14908:1 14918:1 14924:11 14945:2 14951:1 14952:2 14967:1 14973:2 14978:1 14993:2 15002:1 15012:9 15018:1 15033:1 15039:2 15073:1 15080:2 15083:1 15095:1 15097:1 15122:1 15144:1 15145:1 15166:1 15170:4 15173:1 15177:2 15178:1 15187:2 15188:2 15193:1 15195:1 15196:2 15197:2 15207:1 15229:1 15263:1 15266:1 15272:1 15297:1 15301:1 15309:1 15313:1 15314:2 15332:1 15345:1 15352:1 15372:1 15376:1 15399:2 15402:1 15419:1 15442:1 15470:1 15476:1 15483:3 15495:2 15504:2 15513:1 15520:2 15538:2 15539:1 15560:1 15567:2 15568:1 15571:1 15578:1 15582:3 15584:1 15629:1 15639:1 15655:2 15657:1 15723:1 15738:1 15762:4 15768:1 15775:3 15778:1 15786:1 15798:1 15807:1 15838:1 15839:4 15842:1 15863:2 15867:1 15872:1 15896:1 15907:1 15915:1 15937:1 15951:1 15962:2 15983:1 15984:1 16028:2 16055:1 16067:1 16070:1 16083:1 16095:1 16108:1 16117:5 16119:1 16129:2 16139:1 16157:1 16162:1 16221:1 16238:1 16258:1 16312:1 16319:1 16324:1 16329:1 16331:1 16337:2 16347:3 16351:1 16371:1 16399:4 16419:1 16434:2 16435:3 16457:1 16462:2 16469:1 16477:1 16486:1 16489:4 16505:3 16518:2 16519:1 16525:1 16531:1 16555:1 16570:2 16583:1 16592:2 16595:1 16612:1 16625:3 16633:1 16664:2 16674:5 16680:1 16729:2 16733:2 16743:3 16756:1 16762:1 16777:5 16781:1 16782:1 16787:1 16788:1 16795:1 16807:1 16808:1 16824:1 16832:1 16837:1 16865:1 16873:1 16892:1 16915:1 16916:1 16925:1 16932:2 16934:1 16940:1 16962:1 16970:1 16985:1 17009:1 17016:1 17046:2 17094:1 17097:1 17098:3 17101:1 17110:5 17122:1 17127:1 17132:1 17165:1 17183:1 17205:1 17221:1 17224:1 17230:1 17235:1 17241:1 17262:1 17265:1 17266:2 17276:1 17317:1 17326:2 17335:1 17342:1 17353:1 17376:1 17398:1 17410:1 17415:2320 17425:1 17430:1 17433:1 17473:1 17476:1 17478:1 17486:1 17505:3 17547:2 17589:1 17594:1 17600:1 17601:1 17608:1 17613:1 17639:1 17644:1 17646:1 17650:1 17703:2 17706:2 17744:1 17753:1 17754:1 17782:1 17810:1 17814:1 17820:2 17824:1 17831:1 17845:1 17859:1 17869:1 17871:1 17892:1 17900:3 17911:1 17917:1 17920:1 17928:1 17931:1 17936:1 17941:1 17944:2 17946:3 17964:1 17978:1 17980:1 17989:1 18009:1 18015:1 18041:1 18069:1 18074:1 18085:1 18100:1 18109:1 18119:2 18121:1 18142:1 18143:1 18154:1 18167:1 18172:3 18175:1 18187:1 18194:1 18210:1 18232:5 18275:6 18277:1 18278:1 18283:1 18303:2 18306:1 18314:1 18319:1 18320:1 18324:1 18326:2 18333:1 18335:1 18355:1 18359:3 18360:1 18364:1 18365:1 18378:1 18384:3 18390:1 18392:1 18404:1 18410:2 18411:1 18412:1 18417:1 18427:1 18432:1 18437:2 18444:1 18457:1 18476:1 18491:1 18495:1 18506:1 18515:1 18539:2 18543:3 18545:2 18587:1 18596:1 18603:1 18608:1 18619:1 18626:2 18632:2 18637:2 18663:1 18676:1 18687:1 18703:1 18707:1 18723:1 18724:1 18748:1 18753:1 18754:1 18755:2 18757:1 18760:2 18770:1 18786:1 18801:1 18802:1 18805:5 18808:1 18838:1 18845:1 18861:1 18875:3 18876:1 18878:2 18884:1 18886:1 18890:1 18893:1 18901:1 18908:1 18912:3 18928:1 18930:1 18932:1 18936:4 18939:1 18944:2 18947:1 18948:1 18949:1 18966:1 18979:1 18984:1 18998:1 19004:1 19011:1 19013:1 19014:1 19015:1 19033:3 19037:1 19044:1 19050:1 19064:1 19106:1 19109:1 19137:2 19140:1 19143:1 19148:1 19152:1 19176:1 19177:1 19186:1 19205:5 19213:1 19223:1 19225:1 19229:1 19233:1 19252:2 19268:1 19270:1 19306:1 19309:1 19328:1 19330:2 19358:1 19370:1 19385:1 19386:1 19395:1 19407:1 19409:1 19413:1 19426:1 19440:1 19441:2 19455:1 19457:1 19470:1 19491:1 19492:2 19500:2 19502:1 19516:1 19520:1 19522:2 19541:1 19554:1 19556:6 19559:1 19560:2 19563:2 19568:3 19574:2 19577:1 19582:2 19585:1 19590:1 19593:1 19607:1 19609:1 19617:1 19689:1 19695:2 19701:1 19721:1 19727:1 19731:2 19733:1 19747:1 19751:1 19753:1 19755:1 19769:1 19774:1 19785:2 19796:1 19797:1 19810:2 19813:1 19819:3 19831:1 19833:1 19852:2 19857:2 19860:1 19877:1 19889:2 19894:1 19905:2 19910:1 19915:3 19918:1 19923:1 19924:1 19933:1 19942:2 19950:1 19956:1 19959:1 19965:1 19990:1 20016:2 20025:2 20031:1 20039:1 20041:3 20047:1 20059:1 20063:1 20065:1 20069:2 20070:1 20073:2 20075:1 20085:1 20089:3 20090:1 20091:2 20106:1 20143:1 20152:1 20162:1 20169:2 20171:3 20178:1 20188:1 20190:1 20192:1 20193:1 20233:1 20260:1 20270:1 20274:1 20279:1 20319:1 20322:1 20325:3 20327:1 20332:1 20334:1 20343:1 20353:1 20374:1 20395:2 20398:1 20399:1 20401:1 20411:5 20421:1 20429:2 20443:1 20447:3 20452:2 20454:1 20469:1 20471:1 20490:2 20519:1 20525:2 20526:2 20528:1 20529:1 20531:1 20535:1 20539:1 20541:1 20545:2 20546:1 20548:1 20551:2 20553:1 20554:1 20556:2 20559:6 20563:1 20571:1 20574:1 20590:1 20592:1 20596:2 20602:1 20608:1 20630:1 20680:2 20682:1 20683:1 20684:1 20685:3 20690:1 20730:1 20731:3 20747:1 20752:4 20755:2 20775:2 20778:1 20785:1 20803:2 20811:1 20828:2 20832:1 20850:1 20858:1 20879:1 20893:6 20900:1 20906:2 20915:1 20927:4 20934:1 20939:2 20960:8 20962:1 20967:1 20973:1 21002:1 21022:1 21028:1 21029:1 21031:1 21057:1 21072:1 21080:1 21087:2 21100:2 21103:1 21142:1 21161:1 21167:1 21179:1 21186:1 21189:1 21199:1 21221:1 21225:1 21233:1 21262:1 21284:1 21287:1 21300:1 21304:1 21312:1 21341:1 21342:1 21346:1 21349:1 21354:2 21363:1 21365:1 21369:1 21375:1 21376:1 21382:1 21397:1 21411:1 21414:1 21420:5 21442:2 21472:1 21480:2 21483:3 21496:1 21513:2 21534:1 21536:1 21543:1 21547:1 21549:1 21550:1 21571:3 21584:2 21608:1 21609:1 21614:1 21633:4 21640:1 21645:3 21657:2 21683:1 21703:2 21705:1 21709:1 21728:1 21735:1 21737:1 21742:1 21747:1 21753:1 21758:1 21784:1 21789:1 21816:3 21817:1 21834:2 21837:1 21838:1 21844:2 21847:1 21849:1 21857:1 21869:1 21876:1 21879:1 21885:1 21891:1 21928:1 21929:1 21930:1 21933:2 21951:1 21965:1 21966:1 21970:1 21971:1 21979:1 21984:3 21985:1 22008:3 22015:2 22026:1 22043:1 22054:3 22067:1 22078:1 22080:1 22085:1 22105:1 22111:1 22114:1 22125:3 22156:1 22164:1 22165:1 22171:1 22182:1 22215:1 22230:1 22244:2 22268:1 22288:3 22298:1 22304:1 22336:1 22362:1 22366:1 22374:1 22381:2 22384:1 22386:1 22389:1 22398:1 22400:1 22448:2 22449:1 22450:1 22466:1 22479:1 22491:1 22493:1 22542:2 22545:2 22547:1 22575:1 22598:1 22604:1 22614:1 22626:1 22657:1 22665:1 22666:5 22686:2 22687:2 22696:1 22722:1 22724:1 22742:1 22765:1 22779:1 22784:5 22791:1 22798:1 22810:1 22814:1 22817:1 22820:1 22843:1 22859:1 22891:3 22904:1 22905:1 22935:1 22941:1 22946:1 22962:2 22965:1 22972:1 22991:2 22996:2 23001:1 23007:1 23010:1 23013:1 23015:2 23025:1 23038:1 23041:1 23073:2 23096:3 23100:2 23136:1 23142:1 23144:2 23147:1 23149:2 23151:1 23152:2 23153:1 23158:1 23159:1 23165:1 23171:1 23189:2 23211:1 23228:1 23234:1 23252:2 23263:2 23273:3 23277:2 23284:1 23285:1 23290:1 23291:1 23307:1 23308:4 23310:2 23335:1 23340:1 23360:1 23369:1 23373:1 23403:3 23414:1 23419:1 23422:2 23456:1 23458:1 23493:5 23496:2 23554:1 23559:1 23563:1 23594:2 23609:1 23634:1 23646:1 23660:4 23669:1 23681:3 23683:1 23689:1 23692:6 23699:3 23717:2 23718:1 23719:1 23720:1 23721:1 23723:1 23766:2 23777:3 23779:1 23791:1 23800:1 23801:1 23848:3 23853:2 23862:1 23865:1 23871:2 23874:2 23875:1 23882:1 23906:1 23907:2 23911:1 23912:1 23913:2 23919:1 23946:1 23953:1 23955:1 23956:1 23966:1 23970:1 23973:1 23985:1 23994:1 23996:1 23998:1 24017:2 24022:1 24054:1 24066:1 24071:1 24092:2 24093:1 24094:1 24122:1 24143:1 24151:1 24153:6 24160:1 24166:1 24196:1 24271:1 24288:1 24290:1 24310:1 24328:1 24331:1 24334:2 24340:4 24398:1 24423:1 24428:1 24434:1 24439:1 24456:2 24459:1 24463:2 24470:2 24473:1 24497:1 24507:1 24551:1 24562:1 24567:1 24570:1 24571:1 24585:1 24586:1 24602:1 24603:1 24605:1 24606:1 24612:1 24673:1 24687:2 24704:1 24723:1 24733:1 24740:1 24758:1 24807:2 24809:1 24871:1 24889:1 24892:1 24893:1 24896:1 24904:1 24910:1 24936:1 24940:1 24956:1 24965:2 24969:5 24972:2 24982:1 25003:1 25029:1 25033:1 25060:1 25069:1 25096:2 25097:1 25112:1 25114:2 25115:3 25124:1 25149:1 25159:1 25181:1 25192:1 25221:1 25230:1 25234:1 25240:3 25242:5 25247:1 25249:1 25262:1 25265:1 25267:2 25271:1 25279:3 25282:1 25288:1 25306:1 25309:1 25323:1 25329:1 25333:4 25337:3 25354:1 25363:1 25369:1 25372:1 25381:1 25386:1 25387:1 25392:1 25445:1 25455:2 25460:1 25468:1 25474:1 25496:2 25497:1 25505:1 25507:1 25508:1 25513:3 25517:2 25518:1 25519:1 25523:1 25525:3 25550:2 25561:1 25567:2 25568:3 25570:1 25572:2 25584:1 25614:1 25619:1 25630:1 25634:1 25650:1 25651:1 25656:3 25672:4 25679:1 25715:2 25731:1 25735:1 25738:2 25742:1 25757:1 25760:1 25761:1 25774:1 25779:1 25781:2 25782:1 25792:2 25793:1 25796:1 25799:1 25802:3 25804:1 25805:2 25806:1 25817:1 25820:2 25822:1 25824:1 25826:3 25827:6 25834:1 25837:2 25839:2 25861:1 25870:1 25871:2 25872:1 25900:5 25915:1 25925:1 25927:7 25928:1 25930:1 25957:1 25959:1 25988:2 25994:1 25997:2 26007:1 26019:1 26021:1 26025:1 26032:1 26072:1 26095:1 26099:1 26100:2 26107:1 26115:1 26123:1 26171:2 26204:1 26211:1 26216:1 26260:2 26268:1 26282:1 26283:1 26289:2 26317:1 26319:1 26335:1 26346:1 26349:1 26365:1 26368:2 26406:3 26413:1 26417:1 26439:2 26446:1 26448:1 26454:1 26473:1 26482:1 26484:1 26485:2 26490:1 26508:19 26511:1 26513:3 26530:1 26537:1 26539:1 26542:1 26547:3 26562:1 26564:1 26567:1 26576:1 26591:1 26610:3 26619:1 26622:1 26634:1 26645:5 26655:3 26662:1 26692:11 26733:1 26759:1 26764:2 26777:1 26782:1 26787:1 26800:1 26807:1 26813:1 26834:2 26852:2 26864:2 26867:1 26869:2 26882:2 26886:1 26904:1 26921:1 26944:1 26946:2 26948:2 26952:1 26953:2 26965:1 26966:2 26975:1 26977:1 26978:1 26982:1 27005:2 27012:1 27016:2 27019:3 27020:5 27058:1 27062:1 27063:1 27073:1 27074:1 27078:2 27085:1 27096:3 27150:4 27154:1 27160:1 27179:1 27197:1 27202:1 27227:1 27236:1 27241:1 27247:3 27248:2 27309:3 27333:1 27370:1 27379:1 27390:2 27394:1 27396:1 27402:2 27407:1 27433:1 27434:2 27440:1 27447:3 27459:1 27477:1 27491:1 27492:1 27506:1 27521:1 27530:1 27534:2 27547:2 27553:2 27564:1 27569:1 27572:1 27590:1 27598:1 27609:3 27613:1 27619:1 27635:1 27637:1 27638:1 27643:3 27652:1 27667:1 27669:1 27672:1 27683:4 27689:1 27706:1 27715:3 27716:4 27723:3 27730:1 27732:1 27734:1 27739:7 27765:1 27775:5 27778:1 27784:4 27792:1 27797:1 27812:1 27820:1
8 1:4 8:1 21:1 40:1 43:1 46:1 47:2 83:3 88:1 102:1 121:1 125:1 132:1 148:1 158:1 160:1 162:1 163:1 181:1 190:1 194:4 214:2 222:1 234:1 240:4 250:1 263:1 279:1 303:1 327:3 328:1 329:1 354:1 369:3 403:1 407:1 416:2 431:1 432:2 441:2 451:1 475:1 477:1 486:1 494:1 502:1 567:1 575:1 586:1 587:2 594:2 605:4 627:8 656:1 659:1 667:5 683:1 686:1 688:1 749:1 771:2 784:1 796:1 843:6 850:2 852:1 856:1 869:1 870:1 876:5 891:1 906:1 920:1 925:1 930:5 934:2 945:1 969:1 970:1 973:3 984:1 991:1 1011:1 1045:1 1050:1 1052:1 1068:2 1074:1 1086:1 1093:2 1105:1 1129:5 1138:1 1147:1 1156:1 1157:2 1170:1 1172:2 1176:1 1182:1 1187:1 1188:1 1190:1 1191:1 1201:1 1202:1 1205:1 1210:1 1215:1 1221:1 1222:1 1233:1 1235:1 1238:1 1241:1 1243:5 1244:2 1250:1 1251:1 1253:1 1255:1 1265:1 1270:1 1278:1 1296:1 1311:1 1323:1 1324:1 1332:1 1348:1 1349:1 1362:1 1369:1 1371:1 1374:1 1379:1 1380:1 1386:1 1389:2 1393:5 1395:5 1399:1 1411:2 1422:1 1424:3 1432:5 1446:3 1468:1 1472:1 1475:3 1496:1 1509:5 1513:1 1523:2 1525:1 1527:1 1542:1 1553:1 1565:2 1576:1 1578:2 1580:2 1588:1 1607:1 1612:1 1626:3 1628:1 1636:1 1640:1 1644:1 1659:1 1663:2 1669:1 1670:2 1681:1 1682:1 1684:1 1688:1 1692:1 1696:2 1697:2 1717:1 1720:1 1732:1 1738:1 1740:1 1744:1 1753:2 1762:1 1769:1 1774:1 1776:2 1779:1 1787:4 1791:1 1796:1 1797:1 1801:2 1815:1 1818:2 1824:1 1833:1 1835:1 1844:3 1849:1 1850:1 1856:1 1858:2 1859:1 1871:1 1883:1 1887:1 1926:1 1928:6 1943:1 1956:1 1957:1 1958:1 1962:2 1996:1 1997:1 2006:1 2012:1 2023:1 2054:1 2057:7 2072:1 2090:1 2110:1 2124:1 2136:1 2145:1 2155:1 2174:1 2175:1 2176:1 2177:8 2179:1 2181:1 2185:3 2188:1 2193:2 2194:1 2196:2 2201:8 2203:3 2208:3 2209:1 2211:4 2214:1 2216:1 2248:1 2252:1 2260:3 2270:1 2274:2 2278:1 2285:1 2288:1 2293:1 2295:1 2334:1 2378:1 2380:1 2408:1 2418:1 2430:1 2437:1 2487:1 2499:1 2510:1 2547:1 2557:1 2563:1 2565:1 2566:1 2569:1 2582:1 2583:1 2597:1 2598:1 2599:1 2601:1 2602:3 2618:1 2621:1 2631:1 2646:2 2649:1 2650:1 2662:1 2676:3 2687:1 2701:1 2703:1 2705:1 2713:2 2725:1 2731:1 2732:1 2755:1 2760:1 2766:2 2774:8 2786:1 2793:3 2801:2 2803:2 2811:1 2813:1 2818:1 2827:1 2831:4 2840:1 2854:1 2869:1 2880:1 2883:1 2885:2 2886:2 2888:1 2897:1 2908:2 2948:1 2958:1 2983:1 2989:1 2995:2 2996:1 3002:1 3010:1 3017:1 3025:1 3055:1 3062:2 3072:1 3090:1 3092:1 3122:1 3127:1 3131:3 3134:3 3137:4 3138:2 3148:1 3158:6 3164:1 3174:1 3195:1 3216:1 3227:1 3233:1 3258:1 3313:2 3321:1 3324:1 3325:1 3339:1 3362:1 3371:1 3383:1 3406:1 3423:1 3434:1 3442:1 3443:2 3456:1 3464:2 3481:1 3491:1 3496:1 3506:1 3516:1 3518:4 3520:1 3530:2 3537:1 3538:1 3550:2 3555:1 3574:2 3580:1 3584:1 3585:1 3614:1 3616:1 3621:2 3625:2 3630:1 3640:1 3642:1 3646:1 3647:1 3650:1 3680:1 3682:1 3688:1 3692:1 3699:1 3709:2 3715:1 3718:1 3724:2 3728:2 3732:2 3738:1 3751:1 3757:2 3758:1 3764:1 3778:1 3791:1 3795:1 3803:1 3807:1 3810:1 3815:1 3818:3 3826:1 3836:2 3839:1 3842:1 3845:1 3853:1 3857:2 3858:5 3916:2 3923:1 3928:1 3929:1 3934:1 3940:1 3970:1 3983:1 3986:1 3988:1 3998:1 4002:1 4003:1 4011:2 4020:2 4030:3 4031:1 4035:5 4042:1 4043:1 4052:1 4068:1 4094:3 4109:1 4115:1 4126:1 4129:6 4131:1 4152:2 4169:1 4174:2 4196:1 4224:1 4230:3 4231:1 4234:1 4235:1 4249:1 4250:1 4251:1 4281:2 4290:1 4302:1 4307:1 4315:1 4321:2 4342:3 4351:1 4384:1 4388:1 4400:2 4407:1 4426:3 4433:2 4459:1 4462:3 4471:1 4474:1 4489:1 4497:3 4498:1 4500:1 4503:1 4510:1 4533:1 4536:1 4542:1 4546:2 4565:1 4567:1 4572:1 4645:1 4648:18 4649:1 4658:1 4669:1 4670:1 4673:1 4677:1 4706:1 4713:1 4747:1 4763:1 4767:4 4787:7 4789:6 4790:1 4792:1 4795:2 4796:2 4797:2 4800:3 4802:2 4808:1 4810:1 4812:2 4813:1 4814:7 4817:1 4840:1 4869:1 4871:2 4903:1 4906:1 4944:1 4947:4 4972:1 4994:1 4997:1 5002:2 5005:1 5010:1 5013:1 5020:1 5023:1 5044:4 5047:1 5074:1 5084:1 5092:1 5102:1 5104:2 5123:1 5126:2 5136:2 5170:1 5171:1 5182:1 5201:1 5212:1 5222:2 5224:1 5248:1 5253:1 5269:1 5275:1 5286:1 5296:1 5299:2 5301:1 5304:1 5309:2 5311:1 5313:1 5315:2 5319:1 5320:1 5322:1 5353:1 5357:2 5379:3 5386:1 5413:1 5422:1 5423:1 5425:1 5436:1 5437:1 5446:1 5448:1 5486:1 5488:1 5504:1 5574:2 5585:1 5587:4 5593:1 5609:2 5636:1 5643:3 5671:1 5689:2 5708:4 5710:2 5739:4 5755:2 5760:1 5773:1 5795:1 5804:2 5808:2 5828:2 5832:2 5862:1 5867:1 5892:1 5896:1 5910:1 5913:3 5916:1 5935:1 5942:7 5945:1 5950:1 5961:1 5969:1 5982:1 5993:8 6027:1 6034:5 6037:3 6041:1 6044:1 6045:4 6046:3 6047:2 6048:2 6049:1 6052:2 6053:1 6056:1 6058:3 6060:4 6063:1 6074:1 6089:1 6100:1 6101:1 6121:1 6140:1 6147:3 6168:1 6174:1 6187:4 6191:2 6203:2 6206:1 6216:1 6221:1 6250:1 6256:1 6257:1 6259:1 6265:1 6268:2 6286:1 6288:1 6295:1 6304:1 6327:1 6330:1 6338:1 6340:1 6353:1 6373:1 6375:1 6399:1 6416:1 6418:1 6425:1 6431:1 6433:1 6437:2 6457:3 6462:2 6465:1 6475:1 6486:1 6489:4 6493:7 6495:1 6497:2 6507:1 6508:1 6512:2 6519:5 6520:1 6521:2 6522:1 6523:1 6529:3 6579:2 6580:1 6588:1 6591:1 6592:1 6596:1 6597:1 6612:1 6620:1 6625:2 6645:1 6657:1 6670:1 6675:1 6681:1 6683:1 6687:1 6696:1 6702:1 6703:1 6707:1 6716:2 6721:1 6722:2 6723:1 6732:1 6735:1 6737:1 6739:1 6748:2 6767:1 6768:1 6771:1 6779:1 6792:1 6794:1 6816:3 6818:1 6825:1 6826:1 6838:1 6839:2 6842:1 6852:1 6860:1 6890:1 6898:1 6903:2 6904:1 6914:2 6934:2 6941:3 6943:1 6948:1 6954:2 6956:3 6960:5 6994:1 6999:1 7011:1 7017:1 7038:1 7048:7 7073:5 7074:1 7077:2 7088:1 7106:1 7123:1 7137:1 7144:2 7186:1 7187:1 7231:3 7249:10 7250:5 7270:1 7273:1 7274:3 7286:2 7307:1 7311:1 7323:39 7344:8 7345:6 7369:1 7370:1 7381:2 7384:1 7403:1 7409:1 7414:2 7434:3 7458:1 7478:2 7488:2 7496:1 7513:2 7525:1 7539:5 7550:1 7563:1 7566:1 7571:1 7586:1 7590:1 7596:1 7600:1 7603:1 7646:2 7650:2 7675:1 7677:1 7684:2 7696:1 7698:1 7701:1 7706:1 7715:3 7771:1 7789:1 7791:15 7812:1 7815:1 7817:2 7826:1 7843:1 7879:3 7884:1 7891:1 7898:1 7914:1 7922:1 7929:1 7936:2 7947:1 7949:2 7957:7 7958:1 7964:2 7990:1 7994:1 8013:1 8026:1 8031:1 8034:1 8035:1 8045:2 8054:1 8061:1 8064:1 8116:1 8117:1 8122:1 8123:2 8124:1 8125:4 8126:1 8128:2 8130:2 8135:2 8136:1 8140:1 8155:1 8159:2 8161:3 8166:1 8169:1 8176:1 8180:1 8182:1 8191:1 8221:1 8229:5 8268:1 8280:4 8282:2 8293:2 8322:1 8326:1 8328:1 8340:1 8351:1 8362:1 8397:1 8404:1 8406:1 8413:1 8423:1 8437:2 8439:1 8440:1 8441:1 8467:1 8484:2 8485:2 8490:1 8493:1 8503:2 8505:1 8515:1 8531:1 8539:1 8556:5 8558:4 8575:2 8613:1 8620:1 8621:1 8670:2 8682:2 8694:1 8697:1 8698:1 8705:2 8716:1 8719:3 8721:1 8747:1 8748:2 8751:1 8752:3 8753:1 8788:1 8796:1 8801:1 8803:1 8804:1 8813:1 8816:1 8817:1 8819:1 8828:1 8853:1 8858:1 8876:1 8878:1 8898:1 8907:1 8926:1 8930:2 8942:2 8944:2 8954:1 8962:1 8971:1 8979:1 8991:1 8996:1 8997:1 9000:2 9007:1 9010:2 9016:1 9023:1 9028:1 9030:2 9034:1 9045:1 9048:1 9062:1 9063:2 9068:2 9073:1 9080:1 9087:1 9118:1 9179:2 9180:1 9215:1 9236:3 9242:2 9244:1 9249:2 9257:2 9267:1 9279:1 9317:1 9325:2 9372:1 9378:1 9385:1 9398:1 9405:2 9418:1 9420:2 9430:1 9432:1 9441:1 9442:1 9451:2 9460:1 9473:4 9484:2 9486:1 9495:1 9507:1 9522:1 9533:3 9534:2 9544:1 9569:2 9571:2 9594:1 9597:1 9605:1 9621:1 9683:1 9687:1 9696:2 9697:1 9701:1 9707:4 9712:1 9741:1 9757:1 9760:1 9762:1 9770:1 9773:1 9778:1 9783:1 9788:1 9793:1 9797:1 9799:4 9802:1 9803:1 9822:1 9823:3 9844:1 9858:1 9870:1 9877:5 9882:4 9883:1 9917:7 9925:2 9930:1 9935:1 9936:1 9947:1 9955:2 9961:1 9963:1 9974:1 9981:1 9996:1 10006:1 10013:1 10046:2 10052:1 10053:1 10054:1 10066:1 10070:3 10073:1 10075:2 10076:5 10083:1 10085:1 10121:1 10124:1 10126:1 10132:2 10136:2 10144:1 10153:2 10167:4 10174:1 10177:1 10183:1 10187:1 10199:1 10254:3 10259:1 10276:1 10281:1 10287:3 10289:4 10296:4 10299:3 10300:5 10304:2 10307:3 10308:2 10312:1 10315:1 10322:1 10345:1 10346:1 10347:1 10371:2 10398:1 10404:1 10406:1 10410:1 10417:1 10427:2 10429:1 10438:1 10476:1 10477:1 10497:1 10498:1 10515:1 10526:1 10564:1 10573:1 10574:1 10580:1 10585:2 10595:2 10607:1 10633:1 10637:4 10642:1 10646:1 10652:2 10653:1 10654:1 10664:2 10679:1 10681:1 10683:1 10684:2 10698:1 10717:2 10720:1 10724:3 10750:1 10754:3 10778:1 10781:1 10784:1 10786:1 10799:2 10804:1 10821:3 10832:1 10833:1 10834:1 10850:1 10855:1 10872:2 10907:1 10932:1 10933:4 10940:2 10965:2 10967:1 10973:2 10977:2 10981:1 10982:1 10989:1 10994:5 10995:1 11001:3 11046:3 11052:2 11054:1 11056:1 11062:2 11067:1 11071:1 11081:1 11086:1 11092:1 11093:1 11098:1 11107:1 11109:1 11116:1 11140:1 11149:1 11154:1 11170:1 11175:1 11176:2 11222:1 11229:1 11245:1 11247:1 11252:2 11261:1 11291:1 11304:2 11310:1 11313:1 11354:3 11355:2 11375:1 11387:1 11388:1 11389:2 11393:3 11394:1 11401:1 11410:2 11414:1 11416:1 11421:1 11422:1 11432:1 11437:1 11440:1 11447:1 11477:1 11492:1 11499:5 11501:2 11515:1 11521:1 11532:1 11536:1 11552:1 11581:2 11606:1 11611:1 11619:1 11639:1 11654:1 11661:2 11662:1 11671:1 11686:1 11688:3 11689:1 11691:1 11699:1 11704:1 11735:1 11756:1 11759:1 11778:1 11844:1 11860:1 11876:2 11888:2 11889:1 11903:1 11926:1 11933:1 11945:1 11960:1 12007:1 12009:1 12013:1 12018:1 12021:1 12023:1 12024:1 12039:1 12079:1 12115:1 12152:1 12156:1 12157:1 12167:2 12169:1 12214:2 12234:1 12235:2 12236:1 12241:1 12242:1 12243:1 12250:2 12261:1 12262:2 12265:1 12271:7 12276:1 12300:3 12313:2 12323:1 12324:1 12358:1 12369:2 12385:1 12396:1 12402:2 12404:5 12409:3 12468:1 12472:14 12475:1 12502:1 12522:1 12526:1 12528:2 12532:1 12539:1 12548:1 12557:1 12565:1 12591:1 12612:1 12640:1 12641:2 12661:1 12687:1 12701:1 12710:3 12733:1 12737:2 12743:3 12748:1 12766:1 12768:1 12775:3 12778:1 12782:1 12790:1 12801:1 12856:2 12884:1 12885:1 12893:1 12894:2 12896:1 12910:1 12919:2 12932:2 12942:2 12945:1 12951:1 12970:1 12971:2 12974:2 12982:2 12995:1 13001:1 13007:1 13016:1 13018:1 13033:1 13040:1 13053:1 13067:1 13068:1 13080:1 13086:3 13097:3 13120:2 13126:4 13133:1 13155:1 13160:1 13170:1 13179:1 13186:1 13187:1 13211:1 13247:1 13263:1 13270:1 13276:2 13285:1 13295:5 13310:1 13316:1 13323:2 13332:1 13366:1 13367:1 13371:1 13379:1 13384:1 13388:1 13401:1 13441:1 13459:1 13464:1 13476:1 13483:1 13498:1 13500:1 13501:1 13506:2 13539:1 13557:1 13563:2 13586:1 13597:1 13599:1 13618:1 13628:2 13629:2 13634:1 13656:1 13662:1 13666:1 13676:1 13691:2 13692:1 13693:2 13701:1 13704:1 13708:1 13723:1 13726:1 13744:1 13751:3 13757:1 13805:1 13806:2 13825:1 13875:1 13882:1 13889:1 13890:1 13894:1 13906:1 13911:1 13945:1 13956:1 13969:2 13973:1 13987:1 13989:1 13991:2 13996:3 14001:2 14036:5 14043:1 14045:1 14049:1 14057:1 14093:1 14106:1 14107:1 14117:1 14154:1 14171:1 14178:1 14181:1 14192:1 14193:1 14197:1 14202:1 14210:1 14211:1 14222:1 14226:1 14233:2 14235:1 14240:2 14249:2 14259:1 14267:2 14270:1 14292:1 14297:1 14303:2 14306:1 14320:2 14339:1 14341:1 14342:1 14350:1 14361:1 14380:1 14391:1 14403:1 14418:2 14419:1 14422:1 14430:1 14438:1 14439:1 14443:1 14445:2 14451:4 14481:1 14487:3 14492:1 14506:2 14508:2 14557:1 14563:1 14564:3 14577:2 14583:1 14586:1 14589:1 14604:1 14612:1 14613:1 14618:1 14622:1 14628:1 14630:1 14634:1 14635:1 14638:4 14643:1 14650:1 14655:1 14659:1 14667:2 14672:1 14696:2 14705:1 14724:1 14728:1 14769:3 14796:1 14797:1 14801:1 14809:1 14818:1 14824:1 14841:3 14843:1 14851:2 14881:1 14887:1 14901:1 14907:1 14908:1 14918:1 14924:11 14945:2 14951:1 14952:2 14967:1 14973:2 14978:1 14993:2 15002:1 15012:9 15018:1 15033:1 15039:2 15073:1 15080:2 15083:1 15095:1 15097:1 15122:1 15144:1 15145:1 15166:1 15170:4 15173:1 15177:3 15178:2 15187:2 15188:2 15193:1 15195:1 15196:2 15197:2 15207:1 15229:1 15263:1 15266:1 15272:1 15297:1 15301:1 15309:1 15313:1 15314:2 15332:1 15345:1 15352:1 15372:1 15376:1 15399:2 15402:1 15419:1 15442:1 15470:1 15476:1 15483:3 15495:2 15504:2 15513:1 15520:2 15538:2 15539:1 15560:1 15567:2 15568:1 15571:1 15578:1 15582:3 15584:1 15629:1 15639:1 15655:2 15657:1 15723:1 15738:1 15762:4 15768:1 15775:3 15778:1 15786:1 15798:1 15807:1 15838:1 15839:4 15842:1 15863:2 15867:1 15872:1 15896:1 15907:1 15915:1 15937:1 15951:1 15962:2 15983:1 15984:1 16028:2 16055:1 16067:1 16070:1 16083:1 16095:1 16108:1 16117:5 16119:1 16129:2 16139:1 16157:1 16162:1 16221:1 16238:1 16258:1 16312:1 16319:1 16324:1 16329:1 16331:1 16337:2 16347:3 16351:1 16371:1 16399:4 16419:1 16434:2 16435:3 16457:1 16462:2 16469:1 16477:1 16486:1 16489:4 16505:3 16518:2 16519:1 16525:1 16531:1 16555:1 16570:2 16583:1 16592:2 16595:1 16612:1 16625:3 16633:1 16664:2 16674:5 16680:1 16729:2 16733:2 16743:3 16756:1 16762:1 16777:5 16781:1 16782:1 16787:1 16788:1 16795:1 16807:1 16808:1 16824:1 16832:1 16837:1 16865:1 16873:1 16892:1 16915:1 16916:1 16925:1 16932:2 16934:1 16940:1 16962:1 16970:1 16985:1 17009:1 17016:1 17046:2 17094:1 17097:1 17098:3 17101:1 17110:5 17122:1 17127:1 17132:1 17165:1 17183:1 17205:1 17221:1 17224:1 17230:1 17235:1 17241:1 17262:1 17265:1 17266:2 17276:1 17317:1 17326:2 17335:1 17342:1 17353:1 17376:1 17398:1 17410:1 17415:2423 17425:1 17430:1 17433:1 17473:1 17476:1 17478:1 17486:1 17505:3 17547:2 17589:1 17594:1 17600:1 17601:1 17608:1 17613:1 17639:1 17644:1 17646:1 17650:1 17703:2 17706:2 17744:1 17753:1 17754:1 17782:1 17810:1 17814:1 17820:2 17824:1 17831:1 17845:1 17859:1 17869:1 17871:1 17892:1 17900:3 17911:1 17917:1 17920:1 17928:1 17931:1 17936:1 17941:1 17944:2 17946:3 17964:1 17978:1 17980:1 17989:1 18009:1 18015:1 18041:1 18069:1 18074:1 18085:1 18100:1 18109:1 18119:3 18121:1 18142:1 18143:1 18154:1 18167:1 18172:3 18175:1 18187:1 18194:1 18210:1 18232:5 18275:6 18277:1 18278:1 18283:1 18303:2 18306:1 18314:1 18319:1 18320:1 18324:1 18326:2 18333:1 18335:1 18355:1 18359:3 18360:1 18364:1 18365:1 18378:1 18384:3 18390:1 18392:1 18404:1 18410:2 18411:1 18412:1 18417:1 18427:1 18432:1 18437:2 18444:1 18457:1 18476:1 18491:1 18495:1 18506:1 18515:1 18539:2 18543:3 18545:2 18587:1 18596:1 18603:1 18608:1 18619:1 18626:2 18632:2 18637:2 18663:2 18676:1 18687:1 18703:1 18707:1 18723:1 18724:1 18748:1 18753:1 18754:1 18755:2 18757:1 18760:2 18770:1 18786:1 18801:1 18802:1 18805:5 18808:1 18838:1 18845:1 18861:1 18875:3 18876:1 18878:2 18884:1 18886:1 18890:1 18893:1 18901:1 18908:1 18912:3 18928:1 18930:1 18932:1 18936:4 18939:1 18944:2 18947:1 18948:1 18949:1 18966:1 18979:1 18984:1 18998:1 19004:1 19011:1 19013:1 19014:1 19015:1 19033:3 19037:1 19044:1 19050:1 19064:1 19106:1 19109:1 19137:2 19140:1 19143:1 19148:1 19152:1 19176:1 19177:1 19186:1 19205:6 19213:1 19223:1 19225:1 19229:1 19233:1 19252:2 19268:1 19270:1 19306:1 19309:1 19328:1 19330:2 19358:1 19370:1 19385:1 19386:1 19395:1 19407:1 19409:1 19413:1 19426:1 19440:1 19441:2 19455:1 19457:1 19470:1 19491:1 19492:2 19500:2 19502:1 19516:1 19520:1 19522:2 19541:1 19554:1 19556:6 19559:1 19560:2 19563:2 19568:3 19574:2 19577:1 19582:2 19585:1 19590:1 19593:1 19607:1 19609:1 19617:1 19689:1 19695:2 19701:1 19721:1 19727:1 19731:2 19733:1 19747:1 19751:1 19753:1 19755:1 19769:1 19774:1 19785:2 19796:1 19797:1 19810:2 19813:1 19819:3 19831:1 19833:1 19852:2 19857:2 19860:1 19877:1 19889:2 19894:1 19905:2 19910:1 19915:3 19918:1 19923:1 19924:1 19933:1 19942:2 19950:1 19956:1 19959:1 19965:1 19990:1 20016:2 20025:2 20031:1 20039:1 20041:3 20047:1 20059:1 20063:1 20065:1 20069:2 20070:1 20073:2 20075:1 20085:1 20089:3 20090:1 20091:2 20106:1 20143:1 20152:1 20162:1 20169:2 20171:3 20178:1 20188:1 20190:1 20192:1 20193:1 20233:1 20260:1 20270:1 20274:1 20279:1 20319:1 20322:1 20325:3 20327:1 20332:1 20334:1 20343:1 20353:1 20374:1 20395:2 20398:1 20399:1 20401:1 20411:5 20421:1 20429:2 20443:1 20447:3 20452:2 20454:1 20469:1 20471:1 20490:2 20519:1 20525:2 20526:2 20528:1 20529:1 20531:1 20535:1 20539:1 20541:1 20545:2 20546:1 20548:1 20551:2 20553:1 20554:1 20556:2 20559:6 20563:1 20571:1 20574:1 20590:1 20592:1 20596:2 20602:1 20608:1 20630:1 20680:2 20682:1 20683:1 20684:1 20685:3 20690:1 20730:1 20731:3 20747:1 20752:4 20755:2 20775:2 20778:1 20785:1 20803:2 20811:1 20828:2 20832:1 20850:1 20858:1 20879:1 20893:6 20900:1 20906:2 20915:1 20927:4 20934:1 20939:2 20960:8 20962:1 20967:1 20973:1 21002:1 21022:1 21028:1 21029:1 21031:1 21057:1 21072:1 21080:1 21087:2 21100:2 21103:1 21140:1 21142:1 21161:1 21167:1 21179:1 21186:1 21189:1 21199:1 21221:1 21225:1 21233:1 21262:1 21284:1 21287:1 21300:1 21304:1 21312:1 21341:1 21342:1 21346:1 21349:1 21354:2 21363:1 21365:1 21369:1 21375:1 21376:1 21382:1 21397:1 21411:1 21414:1 21420:5 21442:2 21472:1 21480:2 21483:3 21496:1 21513:2 21534:1 21536:1 21543:1 21547:1 21549:1 21550:1 21571:3 21584:2 21608:1 21609:1 21614:1 21633:4 21640:1 21645:3 21657:2 21683:1 21703:2 21705:1 21709:1 21728:1 21735:1 21737:1 21742:1 21747:1 21753:1 21758:1 21784:1 21789:1 21816:3 21817:1 21834:2 21837:1 21838:1 21844:2 21847:1 21849:1 21857:1 21869:1 21876:1 21879:1 21885:1 21891:1 21928:1 21929:1 21930:1 21933:2 21951:1 21965:1 21966:1 21970:1 21971:1 21979:1 21984:3 21985:1 22008:3 22015:2 22026:1 22043:1 22054:3 22067:1 22078:1 22080:1 22085:1 22105:1 22111:1 22114:1 22125:3 22156:1 22164:1 22165:2 22171:1 22182:1 22215:1 22230:1 22244:2 22268:1 22288:3 22298:1 22304:1 22336:1 22362:1 22366:1 22374:1 22381:2 22384:1 22386:1 22389:1 22398:1 22400:1 22448:2 22449:1 22450:1 22466:1 22479:1 22491:1 22493:1 22542:2 22545:2 22547:1 22575:1 22598:1 22604:1 22614:1 22626:1 22657:1 22665:1 22666:5 22686:2 22687:2 22696:1 22722:1 22724:1 22742:1 22765:1 22779:1 22784:5 22791:1 22792:1 22798:1 22810:1 22814:1 22817:1 22820:1 22843:1 22859:1 22891:3 22904:1 22905:1 22935:1 22941:1 22946:1 22962:2 22965:1 22972:1 22991:2 22996:2 23001:1 23007:1 23010:1 23013:1 23015:2 23025:1 23038:1 23041:1 23073:2 23096:3 23100:2 23136:1 23142:1 23144:2 23147:1 23149:2 23151:1 23152:2 23153:1 23158:1 23159:1 23165:1 23171:1 23189:2 23211:1 23228:1 23234:1 23252:2 23263:2 23273:3 23277:2 23284:1 23285:1 23290:1 23291:1 23307:1 23308:4 23310:2 23335:1 23340:1 23360:1 23369:1 23373:1 23403:3 23412:1 23414:1 23419:1 23422:2 23456:1 23458:1 23493:5 23496:2 23554:1 23559:1 23563:1 23594:2 23609:1 23634:1 23646:1 23660:4 23669:1 23681:3 23683:1 23689:1 23692:6 23699:3 23717:2 23718:1 23719:1 23720:1 23721:1 23723:1 23766:2 23777:3 23779:1 23791:1 23800:1 23801:1 23848:3 23853:3 23862:1 23865:1 23871:2 23874:2 23875:1 23882:1 23906:1 23907:2 23911:2 23912:1 23913:2 23919:1 23946:1 23953:1 23955:1 23956:1 23966:1 23970:1 23973:1 23985:1 23994:1 23996:1 23998:1 24017:2 24022:1 24054:1 24066:1 24071:1 24092:2 24093:1 24094:1 24122:1 24143:1 24151:1 24153:6 24160:1 24166:1 24176:1 24196:1 24271:1 24288:1 24290:1 24310:1 24328:1 24331:1 24334:2 24340:4 24398:1 24423:1 24428:1 24434:1 24439:1 24456:2 24459:1 24463:2 24470:2 24473:1 24497:1 24507:1 24551:1 24562:1 24567:1 24570:1 24571:1 24585:1 24586:1 24602:1 24603:1 24605:1 24606:1 24612:1 24673:1 24687:2 24704:1 24723:1 24733:1 24740:1 24758:1 24807:2 24809:1 24871:1 24889:1 24892:1 24893:1 24896:1 24904:1 24910:1 24936:1 24940:1 24956:1 24965:2 24969:5 24972:2 24982:1 25003:1 25029:1 25033:1 25060:1 25069:1 25096:2 25097:1 25112:1 25114:2 25115:3 25124:1 25149:1 25159:1 25181:1 25192:1 25221:1 25230:1 25234:1 25240:3 25242:5 25247:1 25249:1 25262:1 25265:1 25267:2 25271:1 25279:3 25282:1 25288:1 25306:1 25309:1 25323:1 25329:1 25333:4 25337:3 25354:1 25363:1 25369:1 25372:1 25381:1 25386:1 25387:1 25392:1 25445:1 25455:2 25460:1 25468:1 25474:1 25496:2 25497:1 25505:1 25507:1 25508:1 25513:3 25517:2 25518:1 25519:1 25523:1 25525:3 25550:2 25561:1 25567:2 25568:3 25570:1 25572:2 25584:1 25614:1 25619:1 25630:1 25634:1 25650:1 25651:1 25656:3 25672:4 25679:1 25715:2 25731:1 25735:1 25738:2 25742:1 25757:1 25760:1 25761:1 25774:1 25779:1 25781:2 25782:1 25792:2 25793:1 25796:1 25799:1 25802:3 25804:1 25805:2 25806:1 25817:1 25820:2 25822:1 25824:1 25826:3 25827:6 25834:1 25837:2 25839:2 25861:1 25870:1 25871:2 25872:1 25900:5 25915:1 25925:1 25927:7 25928:1 25930:1 25957:1 25959:1 25988:2 25994:1 25997:2 26007:1 26019:1 26021:1 26025:1 26032:1 26072:1 26095:1 26099:1 26100:2 26107:1 26115:1 26123:1 26171:2 26204:1 26211:1 26216:1 26260:2 26268:1 26282:1 26283:1 26289:2 26317:1 26319:1 26335:1 26346:1 26349:1 26365:1 26368:2 26406:3 26413:1 26417:1 26439:2 26446:1 26448:1 26454:1 26473:1 26482:1 26484:1 26485:2 26490:1 26508:19 26511:1 26513:3 26530:1 26537:1 26539:1 26542:1 26547:3 26562:1 26564:1 26567:1 26576:1 26591:1 26610:3 26619:1 26622:1 26634:1 26645:5 26655:3 26662:1 26692:11 26733:1 26759:1 26764:2 26777:1 26782:1 26787:1 26800:1 26807:1 26813:1 26834:2 26852:2 26864:2 26867:1 26869:2 26882:2 26886:1 26904:1 26921:1 26944:1 26946:2 26948:2 26952:1 26953:2 26965:1 26966:2 26975:1 26977:1 26978:1 26982:1 27005:2 27012:1 27016:2 27019:3 27020:5 27058:1 27062:1 27063:1 27073:1 27074:1 27078:2 27085:1 27096:3 27150:4 27154:1 27160:1 27179:1 27197:1 27202:1 27227:1 27236:1 27241:1 27247:3 27248:2 27309:3 27333:1 27370:1 27379:1 27390:2 27394:1 27396:1 27402:2 27407:1 27433:1 27434:2 27440:1 27447:3 27459:1 27477:1 27491:1 27492:1 27506:1 27516:1 27521:1 27530:1 27534:2 27547:3 27553:2 27564:1 27569:1 27572:1 27590:1 27598:1 27609:3 27613:1 27619:1 27635:1 27637:1 27638:1 27643:3 27652:1 27667:1 27669:1 27672:1 27683:4 27689:1 27706:1 27715:3 27716:4 27723:3 27730:1 27732:1 27734:1 27739:7 27765:1 27775:5 27778:1 27784:4 27789:1 27792:1 27797:1 27812:1 27820:1
8 1:4 8:1 21:1 40:1 43:1 46:1 47:2 83:3 88:1 102:1 121:1 125:1 132:1 148:1 158:1 160:1 162:1 163:1 181:1 190:1 194:4 214:2 222:1 234:1 240:4 250:1 263:1 279:1 303:1 327:3 328:1 329:1 354:1 369:3 403:1 407:1 416:2 431:1 432:2 441:2 451:1 475:1 477:1 486:1 494:1 502:1 567:1 575:1 586:1 587:2 594:2 605:4 627:8 656:1 659:1 667:6 683:1 686:1 688:1 749:1 771:2 784:1 796:1 843:6 850:2 852:1 856:1 869:1 870:1 876:5 891:1 906:1 920:1 925:1 930:5 934:2 945:1 969:1 970:1 973:3 984:1 991:1 1011:1 1045:1 1050:1 1052:1 1068:2 1074:1 1086:1 1093:2 1105:1 1129:5 1138:1 1147:1 1156:1 1157:2 1170:1 1172:2 1176:1 1182:1 1187:1 1188:1 1190:1 1191:1 1201:1 1202:1 1205:1 1210:1 1215:1 1221:1 1222:1 1233:1 1235:1 1238:1 1241:1 1243:5 1244:2 1250:1 1251:1 1253:1 1255:1 1265:1 1270:1 1277:1 1278:1 1296:1 1311:1 1323:1 1324:1 1332:1 1348:1 1349:1 1362:1 1369:1 1371:1 1374:1 1379:1 1380:1 1386:1 1389:2 1393:5 1395:5 1399:1 1411:2 1422:1 1424:3 1432:5 1446:3 1468:1 1472:1 1475:3 1496:1 1509:5 1513:1 1523:2 1525:1 1527:1 1542:1 1553:1 1565:2 1576:1 1578:2 1580:2 1588:1 1607:1 1612:1 1626:3 1628:1 1636:1 1640:1 1644:1 1659:1 1663:2 1669:1 1670:2 1681:1 1682:1 1684:1 1688:1 1692:1 1696:2 1697:2 1717:1 1720:1 1732:1 1738:1 1740:1 1744:1 1753:2 1762:1 1769:1 1774:1 1776:2 1779:1 1787:4 1791:1 1796:1 1797:1 1801:2 1815:1 1818:2 1824:1 1833:1 1835:1 1844:3 1849:1 1850:1 1856:1 1858:2 1859:1 1871:1 1883:1 1887:1 1926:1 1928:6 1943:1 1956:1 1957:1 1958:1 1962:2 1996:1 1997:1 2006:1 2012:1 2023:1 2054:1 2057:7 2072:1 2090:1 2110:1 2124:1 2136:1 2145:1 2155:1 2174:1 2175:1 2176:1 2177:8 2179:1 2181:1 2185:3 2188:1 2193:2 2194:1 2196:2 2201:8 2203:3 2208:3 2209:1 2211:4 2214:1 2216:1 2248:1 2252:1 2260:3 2270:1 2274:2 2278:1 2285:1 2288:1 2293:1 2295:1 2334:1 2378:1 2380:1 2408:1 2418:1 2430:1 2437:1 2487:1 2499:1 2510:1 2547:1 2557:1 2563:1 2565:1 2566:1 2569:1 2582:1 2583:1 2597:1 2598:1 2599:1 2601:1 2602:3 2618:1 2621:1 2631:1 2646:2 2649:1 2650:1 2662:1 2676:3 2687:1 2701:1 2703:1 2705:1 2713:2 2725:1 2731:1 2732:1 2755:1 2760:1 2766:2 2774:8 2786:1 2793:3 2801:2 2803:2 2811:1 2813:1 2818:1 2827:1 2831:5 2840:1 2854:1 2869:1 2880:1 2883:1 2885:2 2886:2 2888:1 2897:1 2908:2 2948:1 2958:1 2983:1 2989:1 2995:2 2996:1 3002:1 3010:1 3017:1 3025:1 3055:1 3062:2 3072:1 3090:1 3092:1 3122:1 3127:1 3131:3 3134:3 3137:4 3138:2 3148:1 3158:6 3164:1 3174:1 3195:1 3216:1 3227:1 3233:1 3258:1 3313:2 3321:1 3324:1 3325:1 3339:1 3362:1 3371:1 3383:1 3406:1 3423:1 3434:1 3442:1 3443:2 3456:1 3464:2 3481:1 3491:1 3496:1 3506:1 3516:1 3518:4 3520:1 3530:2 3537:1 3538:1 3550:2 3555:1 3574:2 3580:1 3584:1 3585:1 3614:1 3616:1 3621:2 3625:2 3630:1 3640:1 3642:1 3646:1 3647:1 3650:1 3680:1 3682:1 3688:1 3692:1 3699:1 3709:2 3715:1 3718:1 3724:2 3728:2 3732:2 3738:1 3751:1 3757:2 3758:1 3764:1 3778:1 3791:1 3795:1 3803:1 3807:1 3810:1 3815:1 3818:3 3826:1 3836:2 3839:1 3842:1 3845:1 3853:1 3857:2 3858:5 3916:2 3923:1 3928:1 3929:1 3934:1 3940:1 3970:1 3983:1 3986:1 3988:1 3998:1 4002:1 4003:1 4011:2 4020:2 4030:3 4031:1 4035:5 4042:1 4043:1 4052:1 4068:1 4094:3 4109:1 4115:1 4126:1 4129:6 4131:1 4152:2 4169:1 4174:2 4196:1 4224:1 4230:3 4231:1 4234:1 4235:1 4249:1 4250:1 4251:1 4281:2 4290:1 4302:1 4307:1 4315:1 4321:2 4342:3 4351:1 4384:1 4388:1 4400:2 4407:1 4426:3 4433:2 4459:1 4462:3 4471:1 4474:1 4489:1 4497:3 4498:1 4500:1 4503:1 4510:1 4533:1 4536:1 4542:1 4546:2 4565:1 4567:1 4572:1 4645:1 4648:18 4649:1 4658:1 4669:1 4670:1 4673:1 4677:1 4706:1 4713:1 4747:1 4763:1 4767:4 4787:7 4789:6 4790:1 4792:1 4795:2 4796:2 4797:2 4800:3 4802:2 4808:1 4810:1 4812:2 4813:1 4814:7 4817:1 4840:1 4869:1 4871:2 4903:1 4906:1 4944:1 4947:4 4972:1 4994:1 4997:1 5002:2 5005:1 5010:1 5013:1 5020:1 5023:1 5044:4 5047:1 5074:1 5084:1 5092:1 5102:1 5104:2 5123:1 5126:2 5136:2 5170:1 5171:1 5182:1 5201:1 5212:1 5222:2 5224:1 5248:1 5253:1 5269:1 5275:1 5286:1 5296:1 5299:2 5301:1 5304:1 5309:2 5311:1 5313:1 5315:2 5319:1 5320:1 5322:1 5353:1 5357:2 5379:3 5386:1 5413:1 5422:1 5423:1 5425:1 5436:1 5437:1 5446:1 5448:1 5486:1 5488:1 5504:1 5574:2 5585:1 5587:4 5593:1 5609:2 5636:1 5643:3 5671:1 5689:2 5708:4 5710:2 5739:4 5755:2 5760:1 5773:1 5795:1 5804:2 5808:2 5828:2 5832:2 5862:1 5867:1 5892:1 5896:1 5910:1 5913:3 5916:1 5935:1 5942:7 5945:1 5950:1 5961:1 5969:1 5982:1 5993:8 6027:1 6034:5 6037:3 6041:1 6044:1 6045:4 6046:3 6047:2 6048:2 6049:1 6052:2 6053:1 6056:1 6058:3 6060:4 6063:1 6074:1 6089:1 6100:1 6101:1 6121:1 6140:1 6147:3 6168:1 6174:1 6187:4 6191:2 6203:2 6206:1 6216:1 6221:1 6250:1 6256:1 6257:1 6259:1 6265:1 6268:2 6286:1 6288:1 6295:1 6304:1 6327:1 6330:1 6338:1 6340:1 6353:1 6373:1 6375:1 6399:1 6416:1 6418:1 6425:1 6431:1 6433:1 6437:2 6457:3 6462:2 6465:1 6475:1 6486:1 6489:4 6493:7 6495:1 6497:2 6507:1 6508:1 6512:2 6515:1 6519:5 6520:1 6521:2 6522:1 6523:1 6529:3 6579:2 6580:1 6588:1 6591:1 6592:1 6596:1 6597:1 6612:1 6620:1 6625:2 6645:1 6657:1 6670:1 6675:1 6681:1 6683:1 6687:1 6696:1 6702:1 6703:1 6707:1 6716:2 6721:1 6722:2 6723:1 6732:1 6735:1 6737:1 6739:1 6748:2 6767:1 6768:1 6771:1 6779:1 6792:1 6794:1 6816:3 6818:1 6825:1 6826:1 6838:1 6839:2 6842:1 6843:1 6852:1 6860:1 6890:1 6898:1 6903:2 6904:1 6914:2 6934:2 6941:3 6943:1 6948:1 6954:2 6956:3 6960:5 6994:1 6999:1 7011:1 7017:1 7038:1 7048:7 7073:5 7074:1 7077:2 7088:1 7106:1 7123:1 7137:1 7144:2 7186:1 7187:1 7231:3 7249:10 7250:5 7270:1 7273:1 7274:3 7286:2 7307:1 7311:1 7323:39 7344:8 7345:6 7369:1 7370:1 7381:2 7384:1 7403:1 7409:1 7414:2 7434:3 7458:1 7478:2 7488:2 7496:1 7513:2 7525:1 7539:5 7550:1 7563:1 7566:1 7571:1 7586:1 7590:1 7596:1 7600:1 7603:1 7646:2 7650:2 7675:1 7677:1 7684:2 7696:1 7698:1 7701:1 7706:1 7715:3 7771:1 7789:1 7791:15 7812:1 7815:1 7817:2 7826:1 7843:1 7879:3 7884:1 7891:1 7898:1 7914:1 7922:1 7929:1 7936:2 7947:1 7949:2 7957:7 7958:1 7964:2 7990:1 7994:1 8013:1 8026:1 8031:1 8034:1 8035:1 8045:2 8054:1 8061:1 8064:1 8116:1 8117:1 8122:1 8123:2 8124:1 8125:4 8126:1 8128:2 8130:2 8135:2 8136:1 8140:1 8155:1 8159:2 8161:3 8166:1 8169:1 8176:1 8180:1 8182:1 8191:1 8221:1 8229:5 8268:1 8280:4 8282:2 8293:2 8322:1 8326:1 8328:1 8340:1 8351:1 8362:1 8397:1 8404:1 8406:1 8413:1 8423:1 8437:2 8439:1 8440:1 8441:1 8467:1 8484:2 8485:2 8490:1 8493:1 8503:2 8505:1 8515:1 8531:1 8539:1 8556:5 8558:4 8575:2 8613:1 8620:1 8621:1 8670:2 8682:2 8694:1 8697:1 8698:1 8705:2 8716:1 8719:3 8721:1 8747:1 8748:2 8751:1 8752:3 8753:1 8788:1 8796:1 8801:1 8803:1 8804:1 8813:1 8816:1 8817:1 8819:1 8828:1 8853:1 8858:1 8876:1 8878:1 8898:1 8907:1 8926:1 8930:2 8942:2 8944:2 8954:1 8962:1 8971:1 8979:1 8991:1 8996:1 8997:1 9000:2 9007:1 9010:2 9016:1 9023:1 9028:1 9030:2 9034:1 9045:1 9048:1 9062:1 9063:2 9068:2 9073:1 9080:1 9087:1 9118:1 9179:2 9180:1 9215:2 9236:3 9242:2 9244:1 9249:2 9257:2 9267:1 9279:1 9317:1 9325:2 9372:1 9378:1 9385:1 9398:1 9405:2 9418:1 9420:2 9430:1 9432:1 9441:1 9442:1 9451:2 9460:1 9473:4 9484:2 9486:1 9495:1 9507:1 9522:1 9533:3 9534:2 9544:1 9569:2 9571:2 9594:1 9597:1 9605:1 9621:1 9683:1 9687:1 9696:2 9697:1 9701:1 9707:4 9712:1 9741:1 9757:1 9760:1 9762:1 9770:1 9773:1 9778:1 9783:1 9788:2 9793:1 9797:1 9799:4 9802:1 9803:1 9822:1 9823:3 9844:1 9858:1 9870:1 9877:5 9882:4 9883:1 9917:7 9925:2 9930:1 9935:1 9936:1 9947:1 9955:2 9961:1 9963:1 9974:1 9981:1 9996:1 10006:1 10013:1 10046:2 10052:1 10053:1 10054:1 10066:1 10070:3 10073:1 10075:2 10076:5 10083:1 10085:1 10121:1 10124:1 10126:1 10132:2 10136:2 10144:1 10153:2 10167:4 10174:1 10177:1 10183:1 10187:1 10199:1 10254:3 10259:1 10276:1 10281:1 10287:3 10289:4 10296:4 10299:3 10300:5 10304:2 10307:3 10308:2 10312:1 10315:1 10322:1 10345:1 10346:1 10347:1 10371:2 10398:1 10404:1 10406:1 10410:1 10417:1 10427:2 10429:1 10438:1 10476:1 10477:1 10497:1 10498:1 10515:1 10526:1 10564:1 10573:1 10574:1 10580:1 10585:3 10595:2 10607:1 10633:1 10637:4 10642:1 10646:1 10652:2 10653:1 10654:1 10664:2 10679:1 10681:1 10683:1 10684:2 10698:1 10717:2 10720:1 10724:3 10750:1 10754:3 10778:1 10781:1 10784:1 10786:1 10799:2 10804:1 10821:3 10824:1 10832:1 10833:1 10834:1 10850:1 10855:1 10872:2 10907:1 10932:1 10933:4 10940:2 10965:2 10967:1 10973:2 10977:2 10981:1 10982:1 10989:1 10994:5 10995:1 11001:3 11046:3 11052:2 11054:1 11056:1 11062:2 11067:1 11071:1 11081:1 11086:1 11092:1 11093:1 11098:1 11107:1 11109:1 11116:1 11140:1 11149:1 11154:1 11170:1 11175:1 11176:2 11222:1 11229:1 11245:1 11247:1 11252:2 11261:1 11291:1 11304:2 11310:1 11313:1 11354:3 11355:2 11375:1 11387:1 11388:1 11389:2 11393:3 11394:1 11401:1 11410:2 11414:1 11416:1 11421:1 11422:1 11432:1 11437:1 11440:1 11447:1 11477:1 11492:1 11499:5 11501:2 11515:1 11521:1 11532:1 11536:1 11552:1 11581:2 11606:1 11611:1 11619:1 11639:1 11654:1 11661:2 11662:1 11671:1 11686:1 11688:3 11689:1 11691:1 11699:1 11704:1 11735:1 11756:1 11759:1 11778:1 11844:1 11860:1 11876:2 11888:2 11889:1 11903:1 11926:1 11933:1 11945:1 11960:1 12007:1 12009:1 12013:1 12018:1 12021:1 12023:1 12024:1 12039:1 12079:1 12115:1 12152:1 12156:1 12157:1 12167:2 12169:1 12214:2 12234:1 12235:2 12236:1 12241:1 12242:1 12243:1 12250:2 12261:1 12262:2 12265:1 12271:7 12276:1 12300:3 12313:2 12323:1 12324:1 12358:1 12369:2 12385:1 12396:1 12402:2 12404:5 12409:3 12468:1 12472:14 12475:1 12502:1 12522:1 12526:1 12528:2 12532:1 12539:1 12548:1 12557:1 12565:1 12591:1 12612:1 12640:1 12641:2 12661:1 12687:1 12701:1 12710:3 12733:1 12737:2 12743:3 12748:1 12766:1 12768:1 12775:3 12778:1 12782:1 12790:1 12801:1 12856:2 12884:1 12885:1 12893:1 12894:2 12896:1 12910:1 12919:2 12932:2 12942:2 12945:1 12951:1 12970:1 12971:2 12974:2 12982:2 12995:1 13001:1 13007:1 13016:1 13018:1 13033:1 13040:1 13053:1 13067:1 13068:1 13080:1 13086:3 13097:3 13120:2 13126:4 13133:1 13155:1 13160:1 13170:1 13179:1 13186:1 13187:1 13211:1 13247:1 13263:1 13270:1 13276:2 13285:1 13295:5 13310:1 13316:1 13323:2 13332:1 13366:1 13367:1 13371:1 13379:1 13384:1 13388:1 13401:1 13441:1 13459:1 13464:1 13476:1 13483:1 13498:1 13500:1 13501:1 13506:2 13539:1 13557:1 13563:2 13586:1 13597:1 13599:1 13618:1 13628:2 13629:2 13634:1 13656:1 13662:1 13666:1 13676:1 13689:1 13691:2 13692:1 13693:2 13701:1 13704:1 13708:1 13723:1 13726:1 13744:1 13751:3 13757:1 13805:1 13806:2 13825:1 13875:1 13882:1 13889:1 13890:1 13894:1 13906:1 13911:1 13945:1 13956:1 13969:2 13973:1 13987:1 13989:1 13991:2 13996:3 14001:2 14036:5 14043:1 14045:1 14049:1 14057:1 14093:1 14106:1 14107:1 14117:1 14154:1 14171:1 14178:1 14181:1 14192:1 14193:1 14197:1 14202:1 14210:1 14211:1 14222:1 14226:1 14233:2 14235:1 14240:2 14249:2 14259:1 14267:2 14270:1 14292:1 14297:1 14303:2 14306:1 14320:2 14339:1 14341:1 14342:1 14350:1 14361:1 14380:1 14391:1 14403:1 14418:2 14419:1 14422:1 14430:1 14438:1 14439:1 14443:1 14445:2 14451:4 14481:1 14487:3 14492:2 14506:2 14508:2 14557:1 14563:1 14564:3 14577:2 14583:1 14586:1 14589:1 14604:1 14612:1 14613:1 14618:1 14622:1 14628:1 14630:1 14634:1 14635:1 14638:4 14643:1 14650:1 14655:1 14659:1 14667:2 14672:1 14696:2 14705:1 14724:1 14728:1 14769:3 14796:1 14797:1 14801:1 14809:1 14818:1 14824:1 14841:3 14843:1 14851:2 14881:1 14887:1 14901:1 14907:1 14908:1 14918:1 14924:11 14945:2 14951:1 14952:2 14967:1 14973:2 14978:1 14993:2 15002:1 15005:1 15012:9 15018:1 15033:1 15039:2 15073:1 15080:2 15083:1 15095:1 15097:1 15122:1 15144:1 15145:1 15166:1 15170:4 15173:1 15177:3 15178:2 15187:2 15188:2 15193:1 15195:1 15196:2 15197:2 15207:1 15229:1 15263:1 15266:1 15272:1 15297:1 15301:1 15309:1 15313:1 15314:2 15332:1 15345:1 15352:1 15372:1 15376:1 15399:2 15402:1 15419:1 15442:1 15470:1 15476:1 15483:3 15495:2 15504:2 15513:1 15520:2 15538:2 15539:1 15560:1 15567:2 15568:1 15571:1 15578:1 15582:3 15584:1 15629:1 15639:1 15655:2 15657:1 15723:1 15738:1 15762:4 15768:1 15775:3 15778:1 15786:1 15798:1 15807:1 15838:1 15839:4 15842:1 15863:2 15867:1 15872:1 15896:1 15907:1 15915:1 15937:1 15951:1 15962:2 15983:1 15984:1 16028:2 16055:1 16067:1 16070:1 16083:1 16095:1 16108:1 16117:5 16119:1 16122:1 16129:2 16139:1 16157:1 16162:1 16221:1 16238:1 16258:1 16301:1 16312:1 16319:1 16324:1 16329:1 16331:1 16337:2 16347:3 16351:1 16371:1 16399:4 16419:1 16434:2 16435:3 16457:1 16462:2 16469:1 16477:1 16486:1 16489:4 16505:3 16518:2 16519:1 16525:1 16531:1 16555:1 16570:2 16583:1 16592:2 16595:1 16612:1 16625:3 16633:1 16664:2 16674:5 16680:1 16729:2 16733:2 16743:3 16756:1 16762:1 16777:5 16781:1 16782:1 16787:1 16788:1 16795:1 16807:1 16808:1 16824:1 16832:1 16837:1 16865:1 16873:1 16892:1 16915:1 16916:1 16925:1 16932:2 16934:1 16940:1 16962:1 16970:1 16985:1 17009:1 17016:1 17046:2 17094:1 17097:1 17098:3 17101:1 17110:5 17122:1 17127:1 17132:1 17165:1 17183:1 17205:1 17221:1 17224:1 17230:1 17235:1 17241:1 17262:1 17265:1 17266:2 17276:1 17317:1 17326:2 17335:1 17342:1 17353:1 17376:1 17398:1 17410:1 17415:2444 17425:1 17430:1 17433:1 17473:1 17476:1 17478:1 17486:1 17505:3 17547:2 17589:1 17594:1 17600:1 17601:1 17608:1 17613:1 17639:1 17644:1 17646:1 17650:1 17703:2 17706:2 17744:1 17753:1 17754:1 17782:1 17810:1 17814:1 17820:2 17824:1 17831:1 17845:1 17859:1 17869:1 17871:1 17892:1 17900:3 17911:1 17917:1 17920:1 17928:1 17931:1 17936:1 17941:1 17944:2 17946:3 17964:1 17978:1 17980:1 17989:1 18009:1 18015:1 18041:1 18069:1 18074:1 18085:1 18100:1 18109:1 18119:3 18121:1 18142:1 18143:1 18154:1 18167:1 18172:3 18175:1 18187:1 18194:1 18210:1 18232:5 18275:6 18277:1 18278:1 18283:1 18303:2 18306:1 18314:1 18319:1 18320:1 18324:1 18326:2 18333:1 18335:1 18355:1 18359:3 18360:1 18364:1 18365:1 18378:1 18384:3 18390:1 18392:1 18404:1 18410:2 18411:1 18412:1 18417:1 18427:1 18432:1 18437:2 18444:1 18457:1 18476:1 18491:1 18495:1 18506:1 18515:1 18539:2 18543:3 18545:2 18587:1 18596:1 18603:1 18608:1 18619:1 18626:2 18632:2 18637:2 18663:2 18676:1 18687:1 18703:1 18707:1 18723:1 18724:1 18748:1 18753:1 18754:1 18755:2 18757:1 18760:2 18770:1 18786:1 18801:1 18802:1 18805:5 18808:1 18838:1 18845:1 18861:1 18875:3 18876:1 18878:2 18884:1 18886:1 18890:1 18893:1 18901:1 18908:1 18912:3 18928:1 18930:1 18932:1 18936:4 18939:1 18944:2 18947:1 18948:1 18949:1 18966:1 18979:1 18984:1 18998:1 19004:1 19011:1 19013:1 19014:1 19015:1 19033:4 19037:1 19044:1 19050:1 19064:1 19106:1 19109:1 19118:1 19137:2 19140:1 19143:1 19148:1 19152:1 19176:1 19177:1 19186:1 19205:6 19213:1 19223:1 19225:1 19229:1 19233:1 19252:2 19268:1 19270:1 19306:1 19309:1 19328:1 19330:2 19358:1 19370:1 19385:1 19386:1 19395:1 19407:1 19409:1 19413:1 19426:1 19440:1 19441:2 19455:1 19457:1 19470:1 19491:1 19492:2 19500:2 19502:1 19516:1 19520:1 19522:2 19541:1 19554:1 19556:6 19559:1 19560:2 19563:2 19568:3 19574:2 19577:1 19582:2 19585:1 19590:1 19593:1 19607:1 19609:1 19617:1 19689:1 19695:2 19701:1 19721:1 19727:1 19731:2 19733:1 19747:1 19751:1 19753:1 19755:1 19769:1 19774:1 19785:2 19796:1 19797:1 19810:2 19813:1 19819:3 19831:1 19833:1 19852:2 19857:2 19860:1 19877:1 19889:2 19894:1 19905:2 19910:1 19915:3 19918:1 19923:1 19924:1 19933:1 19942:2 19950:1 19956:1 19959:1 19965:1 19990:1 20016:2 20025:2 20031:1 20039:1 20041:3 20047:1 20059:1 20063:1 20065:1 20069:2 20070:1 20073:2 20075:1 20085:1 20089:3 20090:1 20091:2 20106:1 20143:1 20152:1 20162:1 20169:2 20171:3 20178:1 20188:1 20190:1 20192:1 20193:1 20233:1 20249:1 20260:1 20270:1 20274:1 20279:1 20319:1 20322:1 20325:3 20327:1 20332:1 20334:1 20343:1 20353:1 20374:1 20395:2 20398:1 20399:1 20401:1 20411:5 20421:1 20429:2 20443:1 20447:3 20452:2 20454:1 20469:1 20471:1 20490:2 20519:1 20525:2 20526:2 20528:1 20529:1 20531:1 20535:1 20539:1 20541:1 20545:2 20546:1 20548:1 20551:2 20553:1 20554:1 20556:2 20559:6 20563:1 20571:1 20574:1 20590:1 20592:1 20596:2 20602:1 20608:1 20630:1 20680:2 20682:1 20683:1 20684:1 20685:3 20690:1 20730:1 20731:3 20747:1 20752:4 20755:2 20775:2 20778:1 20785:1 20803:2 20811:1 20828:2 20832:1 20850:1 20858:1 20879:1 20893:6 20900:1 20906:2 20915:1 20927:4 20934:1 20939:2 20960:8 20962:1 20967:1 20973:1 21002:1 21022:1 21028:1 21029:1 21031:1 21057:1 21072:1 21080:1 21087:2 21100:3 21103:1 21140:1 21142:1 21161:1 21167:1 21179:1 21186:1 21189:1 21199:1 21221:1 21225:1 21233:1 21262:1 21284:1 21287:1 21300:1 21304:1 21312:1 21341:1 21342:1 21346:1 21349:1 21354:2 21363:1 21365:1 21369:1 21375:1 21376:1 21382:1 21397:1 21411:1 21414:1 21420:5 21442:2 21472:1 21480:2 21483:3 21496:1 21513:2 21534:1 21536:1 21543:1 21547:1 21549:1 21550:1 21571:3 21584:2 21608:1 21609:1 21614:1 21633:4 21640:1 21645:3 21657:2 21683:1 21703:2 21705:1 21709:1 21728:1 21735:1 21737:1 21742:1 21747:1 21753:1 21758:1 21784:1 21789:1 21816:3 21817:1 21834:2 21837:1 21838:1 21844:2 21847:1 21849:1 21857:1 21869:1 21876:1 21879:1 21885:1 21891:1 21928:1 21929:1 21930:1 21933:2 21951:1 21965:1 21966:1 21970:1 21971:1 21979:1 21984:3 21985:1 22008:3 22015:2 22026:1 22043:1 22054:3 22067:1 22078:1 22080:1 22085:1 22105:1 22111:1 22114:1 22125:3 22156:1 22164:1 22165:2 22171:1 22182:1 22215:1 22230:1 22244:2 22268:1 22288:3 22298:1 22304:1 22336:1 22362:1 22366:1 22374:1 22381:2 22384:1 22386:1 22389:1 22398:1 22400:1 22448:2 22449:1 22450:1 22466:1 22479:1 22491:1 22493:1 22542:2 22545:2 22547:1 22575:1 22598:1 22604:1 22614:1 22626:1 22657:1 22665:1 22666:5 22686:2 22687:2 22696:1 22722:1 22724:1 22742:1 22765:1 22779:1 22784:5 22791:1 22792:1 22798:1 22810:1 22814:1 22817:1 22820:1 22843:1 22859:1 22891:3 22904:1 22905:1 22935:1 22941:1 22946:1 22962:2 22965:1 22972:1 22991:2 22996:2 23001:1 23007:1 23010:1 23013:1 23015:2 23025:1 23038:1 23041:1 23073:2 23096:3 23100:2 23136:1 23141:1 23142:1 23144:2 23147:1 23149:2 23151:1 23152:2 23153:1 23158:1 23159:1 23165:1 23171:1 23189:2 23211:1 23228:1 23234:1 23252:2 23263:2 23273:3 23277:2 23284:1 23285:1 23290:1 23291:1 23307:1 23308:4 23310:2 23335:1 23340:1 23360:1 23369:1 23373:1 23403:3 23412:1 23414:1 23419:1 23422:2 23456:1 23458:1 23493:5 23496:2 23554:1 23559:1 23563:1 23594:2 23609:1 23634:1 23646:1 23660:4 23669:1 23681:3 23683:1 23689:1 23692:6 23699:3 23717:2 23718:1 23719:1 23720:1 23721:1 23723:1 23766:2 23777:3 23779:1 23791:1 23800:1 23801:1 23848:3 23853:3 23862:1 23865:1 23871:2 23874:2 23875:1 23882:1 23906:1 23907:2 23911:2 23912:1 23913:2 23919:1 23946:1 23953:1 23955:1 23956:1 23966:1 23970:1 23973:1 23985:1 23994:1 23996:1 23998:1 24017:2 24022:1 24054:1 24066:1 24071:1 24092:2 24093:1 24094:1 24122:1 24143:1 24151:1 24153:6 24160:1 24166:1 24176:1 24196:1 24271:1 24288:1 24290:1 24310:1 24328:1 24331:1 24334:2 24340:4 24398:1 24423:1 24428:1 24434:1 24439:1 24456:2 24459:1 24463:2 24470:2 24473:1 24497:1 24507:1 24551:1 24562:1 24567:1 24570:1 24571:1 24585:1 24586:1 24602:1 24603:1 24605:1 24606:1 24612:1 24673:1 24687:2 24704:1 24723:1 24733:1 24740:1 24758:1 24807:2 24809:1 24817:1 24871:1 24889:1 24892:1 24893:1 24896:1 24904:1 24910:1 24936:1 24940:1 24956:1 24965:2 24969:5 24972:2 24982:1 25003:1 25029:1 25033:1 25060:1 25069:1 25096:2 25097:1 25112:1 25114:2 25115:3 25124:1 25149:1 25159:1 25181:1 25192:1 25221:1 25230:1 25234:1 25240:3 25242:5 25247:1 25249:1 25262:1 25265:1 25267:2 25271:1 25279:3 25282:1 25288:1 25306:1 25309:1 25323:1 25329:1 25333:4 25337:3 25354:1 25363:1 25369:1 25372:1 25381:1 25386:1 25387:1 25392:1 25445:1 25455:2 25460:1 25468:1 25474:1 25496:2 25497:1 25505:1 25507:1 25508:1 25513:3 25517:2 25518:1 25519:1 25523:1 25525:3 25550:2 25561:1 25567:2 25568:3 25570:1 25572:2 25584:1 25614:1 25619:1 25630:1 25634:1 25650:1 25651:1 25656:3 25672:4 25679:1 25715:2 25731:1 25735:1 25738:2 25742:1 25757:1 25760:1 25761:1 25774:1 25779:1 25781:2 25782:1 25792:2 25793:1 25796:1 25799:1 25802:3 25804:1 25805:2 25806:1 25817:1 25820:2 25822:1 25824:1 25826:3 25827:6 25834:1 25837:2 25839:2 25861:1 25870:1 25871:2 25872:1 25900:5 25915:1 25925:1 25927:7 25928:1 25930:1 25957:1 25959:1 25988:2 25994:1 25997:2 26007:1 26019:1 26021:1 26025:1 26032:1 26072:1 26095:1 26099:1 26100:2 26107:1 26115:1 26123:1 26171:2 26204:1 26211:1 26216:1 26260:2 26268:1 26282:1 26283:1 26289:2 26317:1 26319:1 26335:1 26346:1 26349:1 26365:1 26368:2 26406:3 26413:1 26417:1 26439:2 26446:1 26448:1 26454:1 26473:1 26482:1 26484:1 26485:2 26490:1 26508:19 26511:1 26513:3 26530:1 26537:1 26539:1 26542:1 26547:3 26562:1 26564:1 26567:1 26576:1 26591:1 26610:3 26619:1 26622:1 26634:1 26645:5 26655:3 26662:1 26692:11 26733:1 26759:1 26764:2 26777:1 26782:1 26787:1 26800:1 26807:1 26813:1 26834:2 26852:2 26864:2 26867:1 26869:2 26882:2 26886:1 26904:1 26921:1 26944:1 26946:2 26948:2 26952:1 26953:2 26965:1 26966:2 26975:1 26977:1 26978:1 26982:1 27005:2 27012:1 27016:2 27019:3 27020:5 27058:1 27062:1 27063:1 27073:1 27074:1 27078:2 27085:1 27096:3 27150:4 27154:1 27160:1 27179:1 27197:1 27202:1 27227:1 27236:1 27241:1 27247:3 27248:2 27309:3 27333:1 27370:1 27379:1 27390:2 27394:1 27396:1 27402:2 27407:1 27433:1 27434:2 27440:1 27447:3 27459:1 27477:1 27491:1 27492:1 27506:1 27516:1 27521:1 27530:1 27534:2 27547:3 27553:2 27564:1 27569:1 27572:1 27590:1 27598:1 27609:3 27613:1 27619:1 27635:1 27637:1 27638:1 27643:3 27652:1 27667:1 27669:1 27672:1 27683:4 27689:1 27706:1 27715:3 27716:4 27723:3 27730:1 27732:1 27734:1 27739:7 27765:1 27775:5 27778:1 27784:4 27789:1 27792:1 27797:1 27812:1 27820:1
8 1:4 8:1 21:1 40:1 43:1 46:1 47:2 83:3 88:1 102:1 121:1 125:1 132:1 148:1 158:1 160:1 162:1 163:1 181:1 190:1 194:4 214:2 222:1 234:1 240:4 250:1 263:1 279:1 303:1 327:3 328:1 329:1 354:1 356:1 369:3 403:1 407:1 416:2 431:1 432:2 441:2 451:1 475:1 477:1 486:1 494:1 502:1 567:1 575:1 586:1 587:2 594:2 605:4 627:8 656:1 659:1 667:6 683:1 686:1 687:1 688:1 749:1 771:2 784:1 796:1 843:6 850:2 852:1 856:1 869:1 870:1 876:5 891:1 906:1 920:1 925:1 930:6 934:2 945:1 969:1 970:1 973:4 984:1 991:1 1011:1 1045:1 1050:1 1052:1 1068:2 1074:1 1086:1 1093:2 1105:1 1129:5 1138:1 1147:1 1156:1 1157:2 1170:1 1172:2 1176:1 1182:1 1187:1 1188:1 1190:1 1191:1 1201:1 1202:1 1205:1 1210:1 1215:1 1221:1 1222:1 1233:1 1235:1 1238:1 1241:1 1243:5 1244:2 1250:1 1251:1 1253:1 1255:1 1265:1 1270:1 1277:1 1278:1 1296:1 1311:1 1323:1 1324:1 1332:1 1348:1 1349:1 1362:1 1369:1 1371:1 1374:1 1379:1 1380:1 1386:1 1389:2 1393:5 1395:5 1399:1 1411:2 1422:1 1424:3 1432:5 1446:3 1468:1 1472:1 1475:3 1496:1 1509:5 1513:1 1523:2 1525:1 1527:1 1542:1 1553:1 1565:2 1576:1 1578:3 1580:3 1588:1 1607:1 1612:1 1626:3 1628:1 1636:1 1640:1 1644:1 1659:1 1663:2 1669:1 1670:2 1681:1 1682:1 1684:1 1688:1 1692:1 1696:2 1697:2 1717:1 1720:1 1732:1 1738:1 1740:1 1744:1 1753:2 1762:1 1769:1 1774:1 1776:2 1779:1 1787:4 1791:1 1796:1 1797:1 1801:2 1815:1 1818:2 1824:1 1833:1 1835:1 1844:3 1849:1 1850:1 1856:1 1858:2 1859:1 1871:1 1883:1 1887:1 1926:1 1928:6 1943:1 1951:1 1956:1 1957:1 1958:1 1962:2 1996:1 1997:1 2006:1 2012:1 2023:1 2054:1 2057:7 2072:1 2090:1 2110:1 2124:1 2136:1 2145:1 2155:1 2174:1 2175:1 2176:1 2177:8 2179:2 2181:1 2185:3 2188:1 2193:2 2194:1 2196:2 2201:8 2203:3 2208:3 2209:1 2211:4 2214:1 2216:1 2248:1 2252:1 2260:3 2270:1 2274:2 2278:1 2285:1 2288:1 2293:1 2295:1 2334:1 2378:1 2380:1 2408:1 2418:1 2430:1 2437:1 2487:1 2499:1 2510:1 2547:1 2557:1 2563:1 2565:1 2566:1 2569:1 2582:1 2583:1 2597:1 2598:1 2599:1 2601:1 2602:3 2618:1 2621:1 2631:1 2646:2 2649:1 2650:1 2662:1 2676:3 2687:1 2701:1 2703:1 2705:1 2713:2 2725:1 2731:1 2732:1 2755:1 2760:1 2766:2 2774:8 2786:1 2793:3 2801:2 2803:2 2811:1 2813:1 2818:1 2827:1 2831:5 2840:1 2854:1 2869:1 2880:1 2883:1 2885:2 2886:2 2888:1 2897:1 2908:2 2948:1 2958:1 2968:1 2983:1 2989:1 2995:2 2996:1 3002:1 3010:1 3017:1 3025:1 3055:1 3062:2 3072:1 3090:1 3092:1 3122:1 3127:1 3131:3 3134:3 3137:4 3138:2 3148:1 3158:6 3164:1 3174:1 3195:1 3216:1 3227:1 3233:1 3258:1 3299:1 3313:2 3321:1 3324:1 3325:1 3339:1 3362:1 3371:1 3383:1 3406:1 3423:1 3434:1 3442:1 3443:2 3456:1 3464:2 3481:1 3491:1 3496:1 3506:1 3516:1 3518:4 3520:2 3530:2 3537:1 3538:1 3550:2 3555:1 3574:2 3580:1 3584:1 3585:1 3614:1 3616:1 3621:2 3625:2 3630:1 3640:1 3642:1 3646:1 3647:1 3650:1 3680:1 3682:1 3688:1 3692:1 3699:1 3709:2 3715:1 3718:1 3724:2 3728:2 3732:2 3738:1 3751:2 3757:2 3758:1 3764:1 3778:1 3791:1 3795:1 3803:1 3807:1 3810:1 3815:1 3818:3 3826:1 3836:2 3839:1 3842:1 3845:1 3853:1 3857:2 3858:5 3916:2 3923:1 3928:1 3929:1 3934:1 3940:1 3970:1 3983:1 3986:1 3988:1 3998:1 4002:1 4003:1 4011:2 4020:2 4030:3 4031:1 4035:5 4042:1 4043:1 4052:1 4067:1 4068:1 4094:3 4109:1 4115:1 4126:1 4129:6 4131:1 4152:2 4169:2 4174:2 4196:1 4224:1 4230:3 4231:1 4234:1 4235:1 4249:1 4250:1 4251:1 4281:2 4290:1 4302:1 4307:1 4315:1 4321:2 4342:3 4351:1 4384:1 4388:1 4400:2 4407:1 4426:3 4433:2 4459:1 4462:3 4471:1 4474:1 4489:1 4496:1 4497:3 4498:1 4500:1 4503:1 4510:1 4533:1 4536:1 4542:1 4546:2 4565:1 4567:1 4572:1 4645:1 4648:18 4649:1 4658:1 4669:1 4670:1 4673:1 4677:1 4706:1 4713:1 4747:1 4763:1 4767:4 4787:7 4789:6 4790:1 4792:1 4795:2 4796:2 4797:2 4800:3 4802:2 4808:1 4810:1 4812:2 4813:1 4814:7 4817:1 4840:1 4869:1 4871:2 4903:1 4906:1 4944:1 4947:5 4972:1 4994:1 4997:1 5002:2 5005:1 5010:1 5013:1 5020:1 5023:1 5044:4 5047:1 5074:1 5084:1 5092:1 5102:1 5104:2 5123:1 5126:2 5136:2 5170:1 5171:1 5182:1 5201:1 5212:1 5222:2 5224:1 5248:1 5253:1 5269:1 5275:1 5286:1 5296:1 5299:2 5301:1 5304:1 5309:2 5311:1 5313:1 5315:2 5319:1 5320:1 5322:1 5353:1 5357:2 5379:3 5385:1 5386:1 5413:1 5422:1 5423:1 5425:1 5436:1 5437:1 5446:1 5448:1 5486:1 5488:1 5504:1 5574:2 5585:1 5587:4 5593:1 5609:2 5636:1 5643:3 5671:1 5689:2 5708:4 5710:2 5739:4 5755:2 5760:1 5773:1 5795:1 5804:2 5808:2 5828:2 5832:2 5862:1 5867:1 5892:1 5896:1 5910:1 5913:3 5916:1 5935:1 5942:8 5945:1 5950:1 5961:1 5969:1 5982:1 5993:8 6027:1 6034:5 6037:3 6041:1 6044:1 6045:4 6046:3 6047:2 6048:2 6049:1 6052:2 6053:1 6056:1 6058:3 6060:4 6063:1 6074:1 6089:1 6100:1 6101:1 6121:1 6140:1 6147:3 6168:1 6174:1 6187:4 6191:2 6203:2 6206:1 6216:1 6221:1 6250:1 6256:1 6257:1 6259:1 6265:1 6268:2 6286:1 6288:1 6295:1 6304:1 6327:1 6330:1 6338:1 6340:1 6353:1 6373:1 6375:1 6399:2 6416:1 6418:1 6425:1 6431:1 6433:1 6437:2 6457:3 6462:2 6465:1 6475:1 6482:1 6486:1 6489:4 6493:7 6495:1 6497:2 6507:1 6508:1 6512:2 6515:1 6519:5 6520:1 6521:2 6522:1 6523:1 6529:3 6579:2 6580:1 6588:1 6591:1 6592:1 6596:1 6597:1 6612:1 6620:1 6625:2 6645:1 6657:1 6670:1 6675:1 6681:1 6683:1 6687:1 6696:1 6702:1 6703:1 6707:1 6716:2 6721:1 6722:2 6723:1 6732:1 6735:1 6737:1 6739:1 6748:2 6767:1 6768:1 6771:1 6779:1 6792:1 6794:1 6816:3 6818:1 6825:1 6826:1 6838:1 6839:2 6842:1 6843:1 6852:1 6860:1 6890:1 6898:1 6903:2 6904:1 6914:2 6934:2 6941:3 6943:1 6948:1 6954:2 6956:3 6960:5 6994:1 6999:1 7011:1 7017:1 7038:1 7048:7 7073:5 7074:1 7077:2 7088:1 7106:1 7123:1 7137:1 7144:2 7186:1 7187:1 7231:3 7249:10 7250:5 7255:1 7270:1 7273:1 7274:4 7286:2 7307:1 7311:1 7323:40 7344:8 7345:6 7369:1 7370:1 7381:2 7384:1 7403:1 7409:1 7414:2 7434:3 7458:1 7478:2 7488:2 7496:1 7513:2 7525:1 7539:5 7550:1 7563:1 7566:1 7571:1 7586:1 7590:1 7596:1 7600:1 7603:1 7646:2 7650:2 7675:1 7677:1 7684:2 7696:1 7698:1 7701:1 7706:1 7715:3 7771:1 7789:1 7791:17 7812:1 7815:1 7817:2 7826:1 7843:1 7879:3 7884:1 7891:1 7898:1 7914:1 7922:1 7929:1 7936:2 7947:1 7949:2 7957:7 7958:1 7964:2 7990:1 7994:1 8013:1 8026:1 8031:1 8034:1 8035:1 8045:2 8054:1 8061:1 8064:1 8116:1 8117:1 8122:1 8123:2 8124:1 8125:4 8126:1 8128:2 8130:2 8135:2 8136:1 8140:2 8155:1 8159:2 8161:3 8166:1 8169:1 8176:1 8180:1 8182:1 8191:1 8221:1 8229:5 8268:1 8280:4 8282:2 8293:2 8322:1 8326:1 8328:1 8340:1 8351:1 8362:1 8397:1 8404:1 8406:1 8413:1 8423:1 8437:2 8439:1 8440:2 8441:1 8467:1 8484:2 8485:2 8490:1 8493:1 8503:2 8505:1 8515:1 8531:1 8539:1 8556:5 8558:4 8575:2 8613:1 8620:1 8621:1 8670:2 8682:2 8694:1 8697:1 8698:1 8705:2 8716:1 8719:3 8721:1 8747:1 8748:2 8751:2 8752:3 8753:1 8788:1 8796:1 8801:1 8803:1 8804:1 8813:1 8816:1 8817:1 8819:1 8828:1 8853:1 8858:1 8876:1 8878:1 8898:1 8907:1 8926:1 8930:2 8942:2 8944:2 8954:1 8962:1 8971:1 8979:1 8991:1 8996:1 8997:1 9000:2 9007:1 9010:2 9016:1 9023:1 9028:1 9030:2 9034:1 9045:1 9048:1 9062:1 9063:2 9068:2 9073:1 9080:1 9087:1 9095:1 9118:1 9179:2 9180:1 9215:2 9236:4 9242:2 9244:1 9249:2 9257:3 9267:1 9279:1 9317:1 9325:2 9372:1 9378:1 9385:1 9398:1 9405:2 9418:1 9420:2 9430:1 9432:1 9441:1 9442:1 9451:2 9460:1 9473:4 9484:3 9486:1 9495:1 9507:1 9522:1 9533:3 9534:2 9544:1 9569:2 9571:2 9594:1 9597:1 9605:1 9621:1 9683:1 9687:1 9696:2 9697:1 9701:1 9707:4 9712:1 9741:1 9757:1 9760:1 9762:1 9770:1 9773:1 9778:1 9783:1 9788:2 9793:1 9797:1 9799:4 9802:1 9803:1 9822:1 9823:3 9844:1 9858:1 9870:1 9877:5 9882:4 9883:1 9917:7 9925:2 9930:1 9935:1 9936:1 9947:1 9955:2 9961:1 9963:1 9974:1 9981:1 9996:1 10006:1 10013:1 10046:2 10052:1 10053:1 10054:1 10066:1 10070:3 10073:1 10075:2 10076:5 10083:1 10085:1 10121:1 10124:1 10126:1 10132:2 10136:2 10144:1 10153:2 10167:4 10174:1 10177:1 10183:1 10187:1 10199:1 10254:3 10259:1 10276:1 10281:1 10287:3 10289:4 10296:4 10299:3 10300:5 10304:2 10307:3 10308:2 10312:1 10315:1 10322:1 10345:1 10346:1 10347:1 10371:2 10398:1 10404:1 10406:1 10410:1 10417:1 10425:1 10427:2 10429:1 10438:1 10476:1 10477:1 10497:1 10498:1 10515:1 10526:1 10564:1 10573:1 10574:1 10580:1 10585:3 10595:2 10607:1 10633:1 10637:4 10642:1 10646:1 10652:2 10653:1 10654:1 10664:2 10679:1 10681:1 10683:1 10684:2 10698:1 10717:2 10720:1 10724:3 10750:1 10754:3 10778:1 10781:1 10784:1 10786:1 10799:2 10804:1 10821:3 10824:1 10832:1 10833:1 10834:1 10850:1 10855:1 10872:2 10897:1 10907:1 10932:1 10933:4 10940:2 10957:1 10965:2 10967:1 10968:1 10973:2 10977:2 10981:1 10982:1 10989:1 10994:5 10995:1 11001:3 11046:3 11052:2 11054:1 11056:1 11062:2 11067:1 11071:1 11081:1 11086:1 11092:1 11093:1 11098:1 11107:1 11109:1 11116:1 11140:1 11149:1 11154:1 11170:1 11175:1 11176:2 11222:1 11229:1 11245:1 11247:1 11252:2 11261:1 11291:1 11304:2 11310:1 11313:1 11354:3 11355:2 11375:1 11387:1 11388:1 11389:2 11393:3 11394:1 11401:1 11410:2 11414:1 11416:1 11421:1 11422:1 11432:1 11437:1 11440:1 11447:1 11477:1 11492:1 11499:6 11501:2 11515:1 11521:2 11532:1 11536:1 11552:1 11581:2 11606:1 11611:1 11619:1 11639:1 11654:1 11661:2 11662:1 11671:1 11686:2 11688:3 11689:1 11691:1 11699:1 11704:1 11735:1 11756:1 11759:1 11778:1 11844:1 11860:1 11876:2 11888:2 11889:1 11903:1 11926:1 11933:1 11945:1 11960:1 12007:1 12009:1 12013:1 12018:1 12021:1 12023:1 12024:1 12039:1 12079:1 12115:1 12152:1 12156:1 12157:1 12167:2 12169:1 12214:2 12234:1 12235:2 12236:1 12241:1 12242:1 12243:1 12250:2 12261:1 12262:2 12265:1 12271:7 12276:1 12300:3 12313:2 12323:1 12324:1 12358:1 12369:2 12385:1 12396:1 12402:2 12404:5 12409:3 12468:1 12472:14 12475:1 12502:1 12522:1 12526:1 12528:2 12532:1 12539:1 12548:1 12557:1 12565:1 12591:1 12604:1 12612:1 12640:1 12641:2 12661:1 12687:1 12701:1 12710:3 12733:1 12737:2 12743:3 12748:1 12766:1 12768:1 12775:3 12778:1 12782:1 12790:1 12801:1 12856:2 12884:1 12885:1 12893:1 12894:2 12896:1 12910:1 12919:2 12932:2 12942:2 12945:1 12951:1 12970:1 12971:2 12974:2 12982:2 12995:1 13001:1 13007:1 13016:1 13018:1 13033:1 13040:1 13053:1 13067:1 13068:1 13080:1 13086:3 13097:3 13098:1 13120:2 13126:4 13133:1 13155:1 13160:1 13170:1 13179:1 13186:1 13187:1 13199:1 13211:1 13247:1 13263:1 13270:1 13276:2 13285:1 13295:5 13310:1 13316:1 13323:2 13332:1 13366:1 13367:1 13371:1 13379:1 13384:1 13388:1 13401:1 13441:1 13459:1 13464:1 13476:1 13483:1 13498:1 13500:1 13501:1 13506:2 13539:1 13557:1 13563:2 13586:1 13597:1 13599:1 13618:1 13628:2 13629:2 13634:1 13656:1 13662:1 13666:1 13676:1 13689:1 13691:2 13692:1 13693:2 13701:1 13704:1 13708:1 13723:1 13726:1 13744:1 13751:3 13757:1 13805:1 13806:2 13825:1 13875:1 13882:1 13889:1 13890:1 13894:1 13906:1 13911:1 13945:1 13956:1 13969:2 13973:1 13987:1 13989:1 13991:2 13996:3 14001:2 14009:1 14036:6 14043:1 14045:1 14049:1 14057:1 14093:1 14106:1 14107:1 14117:1 14154:1 14171:1 14178:1 14181:1 14192:1 14193:1 14197:1 14202:1 14210:1 14211:1 14222:1 14226:1 14233:2 14235:1 14240:2 14249:2 14259:1 14267:2 14270:1 14292:1 14297:1 14303:2 14306:1 14320:2 14339:1 14341:1 14342:1 14350:1 14361:1 14380:1 14391:1 14403:1 14418:2 14419:1 14422:1 14430:1 14438:1 14439:1 14443:1 14445:2 14451:4 14481:1 14487:3 14492:2 14506:2 14508:2 14557:1 14563:1 14564:3 14577:2 14583:1 14586:1 14589:1 14604:1 14612:1 14613:1 14618:1 14622:1 14628:1 14630:1 14634:1 14635:1 14638:4 14643:1 14650:1 14655:1 14659:1 14667:2 14672:1 14696:2 14705:1 14724:1 14728:1 14754:1 14769:3 14796:1 14797:1 14801:1 14809:1 14818:1 14824:1 14841:3 14843:1 14851:2 14881:1 14887:1 14901:1 14907:1 14908:1 14918:1 14924:11 14945:2 14951:1 14952:2 14967:1 14973:2 14978:1 14993:2 15002:1 15005:1 15012:9 15018:1 15033:1 15039:2 15073:1 15080:2 15083:1 15095:1 15097:1 15122:1 15144:1 15145:1 15166:1 15170:4 15173:1 15177:3 15178:2 15187:2 15188:3 15193:2 15195:1 15196:2 15197:2 15207:1 15229:1 15263:1 15266:1 15272:1 15297:1 15301:1 15309:1 15313:1 15314:2 15332:1 15345:1 15352:1 15372:1 15376:1 15399:2 15402:1 15419:1 15442:1 15470:1 15476:1 15483:3 15495:2 15504:2 15513:1 15520:2 15538:2 15539:1 15560:1 15567:2 15568:1 15571:1 15578:1 15582:3 15584:1 15629:1 15639:1 15655:2 15657:1 15723:1 15738:1 15762:4 15768:1 15775:3 15778:1 15786:1 15798:1 15807:1 15838:1 15839:4 15842:1 15863:2 15867:1 15872:1 15896:1 15907:1 15915:1 15937:1 15951:1 15962:2 15983:1 15984:1 16028:2 16055:1 16067:1 16070:1 16073:1 16083:1 16095:1 16108:1 16117:5 16119:1 16122:1 16129:2 16139:1 16157:1 16162:1 16221:1 16238:1 16258:1 16301:1 16312:1 16319:1 16324:1 16329:1 16331:1 16337:2 16347:3 16351:1 16371:1 16399:4 16419:1 16428:1 16434:2 16435:3 16457:1 16462:2 16469:1 16477:1 16486:1 16489:4 16505:3 16518:2 16519:1 16525:1 16531:1 16555:1 16570:2 16583:1 16592:2 16595:1 16612:1 16625:3 16633:1 16664:2 16674:5 16680:1 16729:2 16733:2 16743:3 16756:1 16762:1 16777:5 16781:1 16782:1 16787:1 16788:1 16795:1 16807:1 16808:1 16824:1 16832:1 16837:1 16865:1 16873:1 16892:1 16915:1 16916:1 16925:1 16932:2 16934:1 16940:1 16962:1 16970:1 16985:1 17009:1 17016:1 17046:2 17094:1 17097:1 17098:3 17101:1 17110:5 17122:1 17127:1 17132:1 17165:1 17183:1 17205:1 17221:1 17224:1 17230:1 17235:1 17241:1 17262:1 17265:1 17266:2 17276:1 17317:1 17326:2 17335:1 17342:1 17353:1 17376:1 17398:1 17400:1 17410:1 17415:2532 17425:1 17430:1 17433:1 17460:1 17473:1 17476:1 17478:1 17486:1 17505:3 17517:1 17547:2 17589:1 17594:1 17600:1 17601:1 17608:1 17613:1 17639:1 17644:1 17646:1 17650:1 17703:2 17706:2 17714:1 17744:1 17753:1 17754:1 17782:1 17810:1 17814:1 17820:2 17824:1 17831:1 17845:1 17859:1 17869:1 17871:1 17892:1 17900:3 17911:1 17917:1 17920:1 17928:1 17931:1 17936:1 17941:1 17944:2 17946:3 17964:1 17978:1 17980:1 17989:1 18009:1 18015:1 18041:1 18069:1 18074:1 18085:1 18100:1 18109:1 18119:3 18121:1 18142:1 18143:1 18154:1 18167:1 18172:3 18175:1 18187:1 18194:1 18210:1 18232:5 18275:6 18277:1 18278:1 18283:1 18303:2 18306:1 18314:1 18319:1 18320:1 18324:1 18326:2 18333:1 18335:1 18355:1 18359:3 18360:1 18364:1 18365:1 18378:1 18384:3 18390:1 18392:1 18404:1 18410:2 18411:1 18412:1 18417:1 18427:1 18432:1 18437:2 18444:1 18457:1 18476:1 18491:1 18495:1 18506:1 18515:1 18539:2 18543:3 18545:2 18587:1 18596:1 18603:1 18608:1 18619:1 18626:2 18632:2 18637:3 18663:2 18676:1 18687:1 18703:1 18707:1 18723:1 18724:1 18748:1 18753:1 18754:1 18755:2 18757:1 18760:2 18770:1 18786:1 18801:1 18802:1 18805:5 18808:1 18838:1 18845:1 18861:1 18875:3 18876:1 18878:2 18884:1 18886:1 18890:1 18893:1 18901:1 18908:1 18912:3 18928:1 18930:1 18932:1 18936:4 18939:1 18944:2 18947:1 18948:1 18949:1 18966:1 18979:1 18984:1 18998:1 19004:1 19011:1 19013:1 19014:1 19015:1 19033:4 19037:1 19044:1 19050:1 19064:1 19106:1 19109:1 19118:1 19137:2 19140:1 19143:1 19148:1 19152:1 19176:1 19177:1 19186:1 19205:6 19213:1 19223:1 19225:1 19229:1 19233:1 19252:2 19268:1 19270:1 19306:1 19309:1 19328:1 19330:2 19358:1 19370:1 19385:1 19386:1 19395:1 19407:1 19409:1 19413:1 19426:1 19440:1 19441:2 19455:1 19457:1 19470:1 19491:1 19492:2 19500:2 19502:1 19516:1 19520:1 19522:2 19541:1 19554:1 19556:6 19559:1 19560:2 19563:2 19568:3 19574:2 19577:1 19582:2 19585:1 19590:1 19593:1 19607:1 19609:1 19617:1 19689:1 19695:2 19701:1 19721:1 19727:1 19731:2 19733:1 19747:1 19749:1 19751:1 19753:1 19755:1 19769:2 19774:1 19785:2 19796:1 19797:1 19810:2 19813:1 19819:3 19831:1 19833:1 19852:2 19857:2 19860:1 19877:1 19889:2 19894:1 19905:2 19910:1 19915:3 19918:1 19923:1 19924:1 19933:1 19942:2 19950:1 19956:1 19959:1 19965:1 19990:1 20016:2 20025:2 20031:1 20039:1 20041:3 20047:1 20059:1 20063:1 20065:1 20068:1 20069:2 20070:1 20073:2 20075:1 20085:1 20089:3 20090:1 20091:2 20106:1 20143:1 20152:1 20162:1 20169:2 20171:3 20178:1 20188:1 20190:1 20192:1 20193:1 20233:1 20249:1 20260:1 20270:1 20274:1 20279:1 20319:1 20322:1 20325:3 20327:1 20332:1 20334:1 20343:1 20353:1 20374:1 20395:2 20398:1 20399:1 20401:1 20411:5 20421:1 20429:2 20443:1 20447:3 20452:2 20454:1 20469:1 20471:1 20490:2 20519:1 20525:2 20526:2 20528:1 20529:1 20531:1 20535:1 20539:1 20541:1 20545:2 20546:1 20548:1 20551:2 20553:1 20554:1 20556:2 20559:6 20563:1 20571:1 20574:1 20590:1 20592:1 20596:2 20602:1 20608:1 20630:1 20680:2 20682:1 20683:1 20684:1 20685:3 20690:1 20730:1 20731:3 20747:1 20752:4 20755:2 20775:2 20778:1 20785:1 20803:2 20811:1 20828:2 20832:1 20850:1 20858:1 20879:1 20893:6 20900:1 20906:2 20915:1 20927:4 20934:1 20939:2 20960:8 20962:1 20967:1 20973:1 21002:1 21022:1 21028:2 21029:1 21031:1 21057:1 21072:1 21080:1 21087:2 21100:3 21103:1 21140:1 21142:1 21161:1 21167:1 21179:1 21186:1 21189:1 21199:1 21221:1 21225:1 21233:1 21262:1 21272:1 21284:1 21287:1 21300:1 21304:1 21312:1 21325:1 21341:1 21342:1 21346:1 21349:1 21354:2 21363:1 21365:1 21369:1 21375:1 21376:1 21382:1 21397:1 21411:1 21414:1 21420:5 21432:1 21442:2 21472:1 21480:2 21483:3 21496:1 21513:2 21524:1 21533:1 21534:1 21536:1 21543:1 21547:1 21549:1 21550:1 21571:3 21584:2 21608:1 21609:1 21614:1 21633:4 21640:1 21645:3 21657:2 21683:1 21703:2 21705:1 21709:1 21728:1 21735:1 21737:1 21742:1 21747:1 21753:1 21758:1 21784:1 21789:1 21816:3 21817:1 21834:2 21837:1 21838:1 21844:2 21847:1 21849:1 21857:1 21869:1 21876:1 21879:1 21885:1 21891:1 21894:1 21928:1 21929:1 21930:1 21933:2 21938:1 21951:1 21965:1 21966:1 21970:1 21971:1 21979:1 21984:3 21985:1 22008:3 22015:2 22020:1 22026:1 22043:1 22054:3 22067:1 22078:1 22080:1 22085:1 22105:1 22111:1 22114:1 22125:3 22135:1 22153:1 22156:1 22164:1 22165:2 22171:1 22182:1 22215:1 22230:1 22244:2 22268:1 22288:3 22298:1 22304:1 22336:1 22362:1 22366:1 22374:1 22381:2 22384:1 22386:1 22389:1 22398:1 22400:1 22448:2 22449:1 22450:1 22466:1 22479:1 22491:1 22493:1 22542:2 22545:2 22547:1 22575:1 22598:1 22604:1 22614:1 22626:1 22657:1 22665:1 22666:5 22686:2 22687:2 22696:1 22722:1 22724:1 22742:1 22765:1 22779:1 22784:5 22791:1 22792:1 22798:1 22810:1 22814:1 22817:1 22820:1 22843:1 22859:1 22891:3 22904:1 22905:1 22935:1 22941:1 22946:1 22962:2 22965:1 22972:1 22991:2 22996:2 23001:1 23007:1 23010:1 23013:1 23015:2 23025:1 23038:1 23041:1 23073:2 23096:3 23100:2 23136:1 23141:1 23142:1 23144:2 23147:1 23149:2 23151:1 23152:2 23153:1 23158:1 23159:1 23165:1 23171:1 23189:2 23211:1 23228:1 23234:1 23252:2 23263:3 23273:3 23277:2 23284:1 23285:1 23290:1 23291:1 23307:1 23308:4 23310:2 23335:1 23340:1 23360:1 23369:1 23373:1 23403:3 23412:1 23414:1 23419:1 23422:2 23456:1 23458:1 23493:5 23496:2 23554:1 23559:1 23563:1 23594:2 23609:1 23634:1 23646:1 23660:4 23669:1 23681:3 23683:1 23689:1 23692:6 23699:3 23717:2 23718:1 23719:1 23720:1 23721:1 23723:1 23766:2 23777:3 23779:1 23782:1 23791:1 23800:1 23801:1 23848:3 23853:3 23862:1 23865:1 23871:2 23874:2 23875:1 23882:1 23906:1 23907:2 23911:2 23912:1 23913:2 23919:1 23946:1 23953:1 23955:1 23956:1 23966:1 23970:1 23973:1 23985:1 23994:1 23996:1 23998:1 24017:2 24022:1 24054:1 24066:1 24071:1 24092:2 24093:1 24094:1 24122:1 24143:1 24151:2 24153:6 24160:1 24166:1 24176:1 24196:1 24271:1 24288:1 24290:1 24310:1 24328:1 24331:1 24334:2 24340:4 24398:1 24423:1 24428:1 24434:1 24439:1 24456:2 24459:1 24463:2 24470:3 24473:1 24497:1 24507:1 24551:1 24562:1 24567:1 24570:1 24571:1 24585:1 24586:1 24602:1 24603:1 24605:1 24606:1 24612:1 24673:1 24687:2 24704:1 24723:1 24733:1 24740:1 24754:1 24758:1 24807:2 24809:1 24817:1 24871:1 24889:1 24892:1 24893:1 24896:1 24900:1 24904:1 24910:1 24936:1 24940:1 24956:1 24965:2 24969:5 24972:2 24982:1 24992:1 25003:1 25029:1 25033:1 25060:1 25069:1 25096:2 25097:1 25112:1 25114:2 25115:3 25124:1 25149:1 25159:1 25181:1 25192:1 25221:1 25230:1 25234:1 25240:3 25242:5 25247:1 25249:1 25262:1 25265:1 25267:2 25271:1 25279:3 25282:1 25288:1 25306:1 25309:1 25323:1 25329:1 25333:4 25337:3 25354:1 25363:1 25369:1 25372:1 25381:2 25386:1 25387:1 25392:1 25445:1 25455:2 25460:1 25468:1 25474:1 25496:2 25497:1 25505:1 25507:1 25508:1 25513:3 25517:2 25518:1 25519:1 25523:1 25525:3 25550:2 25561:1 25567:2 25568:3 25570:1 25572:2 25584:1 25614:1 25619:1 25630:1 25634:1 25650:1 25651:1 25656:3 25672:4 25679:1 25715:2 25731:1 25735:1 25738:2 25742:1 25757:1 25760:1 25761:1 25774:1 25779:1 25781:2 25782:1 25792:2 25793:1 25796:1 25799:1 25802:3 25804:1 25805:2 25806:1 25817:1 25820:2 25822:1 25824:1 25826:3 25827:6 25834:1 25837:2 25839:2 25861:1 25870:1 25871:2 25872:1 25900:5 25915:1 25925:1 25927:7 25928:1 25930:1 25957:1 25959:1 25988:2 25994:1 25997:2 26007:1 26019:1 26021:1 26025:1 26032:1 26072:1 26095:1 26099:1 26100:2 26107:1 26115:1 26123:1 26171:2 26204:1 26211:1 26216:1 26260:2 26268:1 26282:1 26283:1 26289:2 26317:1 26319:1 26335:1 26346:1 26349:1 26365:1 26368:2 26406:3 26413:1 26417:1 26439:2 26446:1 26448:1 26454:1 26459:1 26473:1 26482:1 26484:1 26485:2 26490:1 26508:20 26511:1 26513:3 26530:1 26537:1 26539:1 26542:1 26547:4 26562:1 26564:1 26567:1 26576:1 26591:1 26610:3 26619:1 26622:1 26634:1 26645:5 26655:3 26662:1 26692:11 26733:1 26759:1 26764:2 26777:1 26782:1 26787:1 26800:1 26807:1 26813:1 26834:2 26852:2 26864:2 26867:1 26869:2 26882:2 26886:1 26904:1 26921:1 26944:1 26946:2 26948:2 26952:1 26953:2 26965:1 26966:2 26975:1 26977:1 26978:1 26982:1 27005:2 27012:1 27016:2 27019:3 27020:5 27058:1 27062:1 27063:1 27073:1 27074:1 27078:2 27085:1 27096:3 27150:4 27154:1 27160:1 27179:1 27197:1 27202:1 27227:1 27236:1 27241:1 27247:3 27248:2 27309:3 27333:1 27370:1 27379:1 27390:2 27394:1 27396:1 27402:2 27407:1 27433:1 27434:2 27440:1 27447:3 27459:1 27477:1 27491:1 27492:1 27506:1 27516:1 27521:1 27530:1 27534:2 27547:3 27553:2 27564:1 27569:1 27572:1 27590:1 27598:1 27609:3 27613:1 27619:1 27635:1 27637:1 27638:1 27643:4 27652:1 27667:1 27669:1 27672:1 27683:4 27689:1 27706:1 27715:3 27716:4 27723:3 27729:1 27730:1 27732:1 27734:1 27739:7 27765:1 27775:5 27778:1 27784:4 27789:1 27792:1 27797:1 27812:1 27820:1
8 1:4 8:1 21:1 40:1 43:1 46:1 47:2 83:3 88:1 102:1 121:1 125:1 132:1 148:1 158:1 160:1 162:1 163:1 181:1 190:1 194:4 214:2 222:1 234:1 240:4 250:1 263:1 279:1 303:1 327:3 328:1 329:1 354:1 356:1 369:3 403:1 407:1 416:2 431:1 432:2 441:2 451:1 475:1 477:1 486:1 494:1 502:1 567:1 575:1 586:1 587:2 594:2 605:4 627:8 646:1 656:1 659:1 667:7 683:1 686:1 687:1 688:1 749:1 771:2 784:1 796:1 843:6 850:2 852:1 856:1 869:1 870:1 876:5 882:1 891:1 906:1 920:1 925:1 930:6 934:2 945:1 969:1 970:1 973:4 984:1 991:1 1011:1 1045:1 1050:1 1052:1 1068:3 1074:1 1086:1 1093:2 1105:1 1129:5 1138:1 1147:1 1156:1 1157:2 1170:1 1172:2 1176:1 1182:1 1187:1 1188:1 1190:1 1191:1 1201:1 1202:1 1205:1 1210:1 1215:1 1221:1 1222:1 1233:1 1235:1 1238:1 1241:1 1243:5 1244:2 1250:1 1251:1 1253:1 1255:1 1265:1 1270:1 1277:1 1278:2 1296:1 1304:1 1311:1 1323:1 1324:1 1332:1 1348:1 1349:1 1362:1 1369:1 1371:1 1374:1 1379:1 1380:1 1386:1 1389:2 1393:5 1395:5 1399:1 1411:2 1422:1 1424:3 1432:5 1446:3 1468:1 1472:1 1475:3 1486:1 1496:1 1509:5 1513:1 1523:2 1525:1 1527:1 1542:1 1553:1 1565:2 1576:1 1578:3 1580:3 1588:1 1607:1 1612:1 1626:3 1628:1 1636:1 1640:1 1644:1 1659:1 1663:2 1669:1 1670:2 1681:1 1682:1 1684:1 1688:1 1692:1 1696:2 1697:2 1717:1 1720:1 1732:1 1738:1 1740:1 1744:1 1753:2 1762:1 1769:1 1774:1 1776:2 1779:1 1787:4 1791:1 1796:1 1797:1 1801:2 1815:1 1818:2 1824:1 1833:1 1835:1 1841:1 1844:3 1849:1 1850:1 1856:1 1858:2 1859:1 1871:1 1883:1 1887:1 1926:1 1928:6 1943:1 1951:1 1956:1 1957:1 1958:1 1962:2 1990:1 1996:1 1997:1 2006:1 2012:1 2019:1 2023:1 2054:1 2057:7 2072:1 2090:1 2110:1 2124:1 2136:1 2145:1 2155:1 2174:2 2175:1 2176:1 2177:8 2179:2 2181:1 2185:3 2188:1 2193:2 2194:1 2196:2 2201:8 2203:3 2208:3 2209:2 2211:5 2214:1 2216:1 2248:1 2252:1 2260:3 2270:1 2274:2 2278:1 2285:1 2288:1 2291:1 2293:1 2295:1 2334:1 2378:1 2380:1 2408:1 2418:1 2430:1 2437:1 2487:1 2499:1 2510:1 2547:1 2557:1 2563:1 2565:1 2566:1 2569:1 2580:1 2582:1 2583:1 2588:1 2597:1 2598:1 2599:1 2601:1 2602:3 2618:1 2621:1 2631:1 2646:2 2649:1 2650:1 2662:1 2676:3 2687:1 2701:1 2703:1 2705:1 2713:2 2725:1 2731:1 2732:1 2755:1 2760:2 2766:2 2774:8 2786:1 2793:3 2801:2 2803:2 2811:1 2813:1 2818:1 2827:1 2831:5 2840:1 2854:1 2869:1 2880:1 2883:1 2885:2 2886:2 2888:1 2897:1 2908:2 2948:1 2958:1 2968:1 2983:1 2989:1 2995:2 2996:1 3002:1 3010:1 3017:1 3025:1 3055:1 3062:2 3072:1 3090:1 3092:1 3122:1 3127:1 3131:3 3134:3 3137:5 3138:2 3148:1 3158:7 3164:1 3174:1 3195:1 3216:1 3227:1 3233:1 3258:1 3299:1 3313:2 3321:1 3324:1 3325:1 3333:1 3339:1 3362:1 3371:1 3383:1 3406:1 3423:1 3434:1 3442:1 3443:2 3456:1 3464:2 3481:1 3491:2 3496:1 3506:1 3516:1 3518:4 3520:2 3530:2 3537:1 3538:1 3550:2 3555:1 3574:2 3580:1 3584:1 3585:1 3614:1 3616:1 3621:2 3625:2 3630:1 3640:1 3642:1 3646:1 3647:1 3650:1 3680:1 3682:1 3688:1 3692:1 3699:1 3709:2 3715:1 3718:1 3724:2 3728:2 3732:2 3738:1 3751:2 3757:2 3758:1 3764:1 3778:1 3791:1 3795:1 3803:1 3807:1 3810:1 3815:1 3818:3 3826:1 3836:2 3839:1 3842:1 3845:1 3853:1 3857:2 3858:6 3916:2 3923:1 3928:1 3929:1 3934:1 3940:1 3970:1 3983:1 3986:1 3988:1 3998:1 4002:1 4003:1 4011:2 4020:2 4030:3 4031:1 4035:5 4042:1 4043:1 4052:1 4067:1 4068:1 4094:4 4109:1 4115:1 4126:1 4129:6 4131:1 4152:2 4169:2 4174:2 4189:1 4196:1 4224:1 4230:4 4231:1 4234:1 4235:1 4249:1 4250:1 4251:1 4281:2 4290:1 4302:1 4307:1 4315:1 4321:2 4342:3 4351:1 4384:1 4388:1 4400:2 4407:1 4426:3 4433:2 4459:1 4462:3 4471:1 4474:1 4489:1 4496:1 4497:4 4498:1 4500:1 4503:1 4510:1 4533:1 4536:1 4542:1 4546:2 4565:1 4567:1 4572:1 4645:1 4648:18 4649:1 4658:1 4669:1 4670:1 4673:1 4677:1 4706:1 4713:1 4747:1 4763:1 4767:4 4787:8 4789:6 4790:1 4792:1 4795:2 4796:2 4797:2 4800:3 4802:2 4808:1 4810:1 4812:3 4813:1 4814:7 4817:2 4833:1 4840:1 4869:1 4871:2 4903:1 4906:1 4944:1 4947:5 4972:1 4994:1 4997:1 5002:2 5005:1 5010:1 5013:1 5020:1 5023:1 5044:4 5047:1 5074:1 5084:1 5092:1 5102:1 5104:2 5123:1 5126:2 5136:2 5170:1 5171:1 5182:1 5201:1 5212:1 5222:2 5224:1 5248:1 5253:1 5269:1 5275:1 5286:1 5293:1 5296:1 5299:2 5301:1 5304:1 5309:2 5311:1 5313:1 5315:2 5319:1 5320:1 5322:1 5351:1 5353:1 5357:2 5379:3 5385:1 5386:1 5413:1 5422:1 5423:1 5425:1 5436:1 5437:1 5446:1 5448:1 5486:1 5488:1 5504:1 5574:2 5585:1 5587:4 5593:1 5609:3 5636:1 5643:3 5671:1 5689:2 5708:4 5710:2 5739:4 5755:2 5760:1 5773:1 5795:1 5804:2 5808:2 5828:2 5832:2 5862:1 5867:1 5892:1 5896:1 5910:1 5913:3 5916:1 5935:1 5942:8 5945:1 5950:1 5961:1 5969:1 5982:1 5993:8 6027:1 6034:6 6037:3 6041:1 6044:1 6045:4 6046:3 6047:2 6048:2 6049:1 6052:3 6053:1 6056:1 6058:3 6060:5 6063:1 6074:1 6089:1 6100:1 6101:1 6121:1 6140:1 6147:3 6168:1 6174:1 6187:4 6191:2 6203:2 6206:1 6216:1 6221:1 6250:1 6256:1 6257:1 6259:1 6265:1 6268:2 6286:1 6288:1 6295:1 6304:1 6327:1 6330:1 6338:1 6340:1 6353:1 6373:1 6375:1 6399:2 6416:1 6418:1 6425:1 6431:1 6433:1 6437:2 6457:3 6462:2 6465:1 6475:1 6482:1 6486:1 6489:4 6493:7 6495:1 6497:2 6507:1 6508:1 6512:2 6515:1 6519:5 6520:1 6521:2 6522:1 6523:1 6529:3 6579:2 6580:1 6588:1 6591:1 6592:1 6596:1 6597:1 6612:1 6620:1 6625:2 6645:1 6657:1 6665:1 6670:1 6675:1 6681:1 6683:1 6687:1 6696:2 6702:1 6703:1 6707:1 6716:2 6721:1 6722:2 6723:1 6732:1 6735:1 6737:1 6739:1 6748:3 6766:1 6767:1 6768:1 6771:1 6779:1 6792:1 6794:1 6816:3 6818:1 6825:1 6826:1 6838:1 6839:2 6842:1 6843:1 6852:1 6860:1 6890:1 6898:1 6903:2 6904:1 6914:2 6934:2 6941:3 6943:1 6948:1 6954:2 6956:3 6960:5 6994:1 6999:1 7011:1 7017:1 7038:1 7048:8 7073:6 7074:1 7077:2 7088:1 7106:1 7123:1 7137:1 7144:2 7186:1 7187:1 7231:3 7249:10 7250:5 7255:1 7270:1 7273:1 7274:4 7286:2 7307:1 7311:1 7323:43 7344:8 7345:6 7369:1 7370:1 7381:2 7384:1 7403:1 7409:1 7414:2 7434:3 7458:1 7478:2 7488:2 7496:1 7513:2 7525:1 7539:5 7550:1 7563:1 7566:1 7571:1 7586:1 7590:1 7596:1 7600:1 7603:2 7646:3 7650:2 7675:1 7677:1 7684:2 7696:1 7698:1 7701:1 7706:1 7715:3 7771:1 7789:1 7791:18 7812:1 7815:1 7817:2 7826:1 7843:1 7879:3 7884:1 7891:1 7898:1 7903:1 7914:1 7922:1 7929:1 7936:2 7947:1 7949:2 7957:7 7958:1 7964:2 7990:1 7994:1 8013:1 8026:1 8031:1 8034:1 8035:1 8045:2 8054:1 8061:1 8064:1 8116:1 8117:1 8122:1 8123:2 8124:1 8125:4 8126:1 8128:2 8130:2 8135:2 8136:1 8140:2 8155:1 8159:2 8161:3 8166:1 8169:1 8176:1 8180:1 8182:1 8191:1 8221:1 8229:6 8268:1 8280:4 8282:2 8293:2 8322:1 8326:1 8328:1 8340:1 8351:1 8362:1 8397:1 8401:1 8404:1 8406:1 8413:1 8423:1 8437:2 8439:1 8440:2 8441:1 8467:1 8484:2 8485:2 8490:1 8493:1 8503:2 8505:1 8515:1 8531:1 8539:1 8556:5 8558:4 8575:2 8613:1 8620:1 8621:1 8670:2 8682:2 8694:1 8697:1 8698:1 8705:2 8716:1 8719:3 8721:1 8725:1 8747:1 8748:2 8751:2 8752:3 8753:1 8788:1 8796:1 8801:1 8803:1 8804:1 8813:1 8816:1 8817:1 8819:1 8828:2 8853:1 8858:1 8876:1 8878:1 8898:1 8907:1 8926:1 8930:2 8942:2 8944:2 8954:1 8962:1 8971:1 8979:1 8991:1 8996:1 8997:1 9000:2 9007:1 9010:2 9016:1 9023:1 9028:1 9030:2 9034:1 9045:1 9048:1 9062:1 9063:3 9068:2 9073:1 9080:1 9087:1 9095:1 9118:1 9144:1 9179:2 9180:1 9215:2 9236:4 9242:3 9244:1 9249:2 9257:3 9267:1 9279:1 9317:1 9325:2 9337:1 9372:1 9378:1 9385:1 9398:1 9405:2 9418:1 9420:2 9430:1 9432:1 9441:1 9442:1 9451:2 9460:1 9473:5 9484:3 9486:1 9495:1 9507:1 9522:1 9533:3 9534:2 9544:1 9569:2 9571:2 9594:1 9597:1 9605:1 9621:1 9683:1 9687:1 9696:2 9697:1 9701:1 9707:4 9712:1 9741:1 9757:1 9760:1 9762:1 9770:1 9773:1 9778:1 9783:1 9788:2 9793:1 9797:1 9799:4 9802:1 9803:1 9822:1 9823:3 9844:1 9858:1 9870:1 9877:5 9882:4 9883:1 9917:8 9925:2 9930:1 9935:1 9936:1 9947:1 9955:2 9961:1 9963:1 9974:1 9981:1 9996:1 10006:1 10013:1 10046:2 10052:1 10053:1 10054:1 10066:1 10070:3 10073:1 10075:2 10076:5 10083:1 10085:1 10121:1 10124:1 10126:1 10132:2 10136:2 10142:1 10144:1 10153:2 10167:4 10174:1 10177:1 10183:1 10187:1 10199:1 10254:3 10259:1 10276:1 10281:1 10287:3 10289:4 10296:4 10299:3 10300:6 10304:2 10307:3 10308:2 10312:1 10313:1 10315:1 10322:1 10345:1 10346:1 10347:1 10371:2 10398:1 10404:1 10406:2 10410:1 10417:1 10425:1 10427:2 10429:1 10438:1 10476:1 10477:1 10497:1 10498:1 10515:1 10526:1 10564:1 10573:1 10574:1 10580:1 10585:4 10595:2 10607:1 10633:1 10637:4 10642:1 10646:1 10652:2 10653:1 10654:1 10664:2 10679:1 10681:1 10683:1 10684:2 10698:1 10717:2 10720:1 10724:3 10750:1 10754:4 10775:1 10778:1 10781:1 10784:1 10786:1 10799:2 10804:1 10821:3 10824:1 10832:1 10833:1 10834:1 10850:1 10855:1 10872:2 10897:1 10907:1 10932:1 10933:4 10940:2 10957:1 10965:2 10967:1 10968:1 10973:2 10977:2 10981:1 10982:1 10989:1 10994:5 10995:1 11001:3 11046:3 11052:2 11054:1 11056:1 11062:2 11067:1 11071:1 11081:1 11086:1 11092:1 11093:1 11098:1 11107:1 11109:1 11116:1 11140:1 11149:1 11154:1 11170:1 11175:1 11176:2 11222:1 11229:1 11245:1 11247:1 11252:2 11261:1 11291:1 11304:2 11310:1 11313:1 11335:1 11354:3 11355:2 11375:1 11387:1 11388:1 11389:2 11393:3 11394:1 11401:1 11410:2 11414:1 11416:1 11421:1 11422:1 11432:1 11437:1 11440:1 11447:1 11477:1 11492:1 11499:6 11501:2 11515:1 11519:1 11521:2 11532:1 11536:1 11552:1 11581:2 11606:1 11611:1 11619:1 11639:1 11654:1 11661:2 11662:1 11671:1 11686:2 11688:3 11689:1 11691:1 11699:1 11704:1 11735:1 11756:1 11759:1 11778:1 11844:1 11860:1 11876:2 11888:2 11889:1 11903:1 11926:1 11933:1 11945:1 11960:1 12007:1 12009:1 12013:1 12018:1 12021:1 12023:1 12024:1 12039:1 12079:1 12115:1 12152:1 12156:1 12157:1 12167:2 12169:1 12214:2 12230:1 12234:1 12235:2 12236:1 12241:1 12242:1 12243:1 12250:2 12261:1 12262:2 12265:1 12271:7 12276:1 12300:3 12313:2 12323:1 12324:1 12358:1 12369:2 12385:1 12396:1 12402:2 12404:5 12409:3 12468:1 12472:14 12475:1 12502:1 12522:1 12526:1 12528:2 12532:1 12539:1 12548:1 12557:2 12565:1 12591:1 12604:1 12612:1 12640:1 12641:2 12661:1 12687:1 12701:1 12710:3 12733:1 12737:2 12743:3 12748:1 12766:1 12768:1 12775:3 12778:1 12782:1 12790:1 12801:2 12856:2 12884:1 12885:1 12893:1 12894:3 12896:1 12910:1 12919:2 12932:2 12942:3 12945:1 12951:1 12970:1 12971:2 12974:2 12982:2 12995:1 13001:1 13007:1 13016:1 13018:1 13033:1 13040:1 13053:1 13067:1 13068:1 13080:1 13086:3 13097:3 13098:1 13120:2 13126:4 13133:1 13155:1 13160:1 13170:1 13179:1 13186:1 13187:1 13199:1 13211:1 13247:1 13263:1 13270:1 13276:2 13285:1 13295:6 13310:1 13316:1 13323:2 13332:1 13366:1 13367:1 13371:1 13379:1 13384:1 13388:1 13401:1 13441:1 13459:1 13464:1 13476:1 13483:1 13498:1 13500:1 13501:1 13506:2 13524:1 13539:1 13557:1 13563:2 13586:1 13597:1 13599:1 13618:1 13628:2 13629:2 13634:1 13656:1 13662:1 13666:1 13673:1 13676:1 13689:1 13691:3 13692:1 13693:2 13701:2 13704:1 13708:1 13723:1 13726:1 13744:1 13751:3 13757:1 13805:1 13806:3 13825:1 13875:1 13882:1 13889:1 13890:1 13894:1 13906:1 13911:1 13914:1 13945:1 13956:1 13969:2 13973:1 13987:1 13989:1 13991:2 13996:3 14001:2 14009:1 14036:6 14043:1 14045:1 14049:1 14057:1 14093:1 14106:2 14107:1 14117:1 14154:1 14171:1 14178:1 14181:1 14192:1 14193:1 14197:1 14202:1 14210:1 14211:1 14222:1 14225:1 14226:1 14233:2 14235:1 14240:2 14244:1 14249:2 14259:1 14267:2 14270:1 14292:1 14297:1 14303:2 14306:1 14312:1 14320:2 14339:1 14341:1 14342:1 14350:1 14361:1 14380:1 14391:1 14403:1 14418:2 14419:1 14422:1 14430:1 14438:1 14439:1 14443:1 14445:2 14451:4 14481:1 14487:3 14492:2 14506:2 14508:2 14557:1 14563:1 14564:3 14577:2 14583:1 14586:1 14589:1 14604:1 14612:1 14613:1 14618:1 14622:1 14628:1 14630:1 14634:1 14635:1 14638:5 14643:1 14650:1 14655:1 14659:1 14667:2 14672:1 14696:3 14705:1 14709:1 14724:1 14728:1 14754:1 14769:3 14796:1 14797:1 14801:1 14809:1 14818:1 14824:1 14841:3 14843:2 14851:2 14881:2 14887:1 14901:1 14907:1 14908:1 14918:1 14924:11 14945:2 14951:1 14952:2 14967:1 14973:2 14978:1 14993:2 15002:1 15005:1 15012:10 15018:1 15033:1 15039:2 15073:1 15080:3 15083:1 15095:1 15097:1 15122:1 15144:1 15145:1 15166:1 15170:4 15173:1 15177:3 15178:2 15187:2 15188:3 15193:2 15195:1 15196:2 15197:3 15207:1 15229:1 15263:1 15266:1 15272:1 15297:1 15301:1 15309:1 15313:1 15314:2 15332:1 15345:1 15349:1 15352:1 15372:1 15376:1 15399:2 15402:2 15419:1 15442:1 15470:1 15476:1 15483:3 15495:2 15504:2 15513:1 15520:2 15538:2 15539:1 15554:1 15560:1 15567:2 15568:1 15571:1 15578:1 15582:3 15584:1 15629:1 15639:1 15655:2 15657:1 15723:1 15738:1 15762:5 15768:1 15775:3 15778:1 15786:1 15798:1 15807:1 15838:1 15839:4 15842:1 15863:2 15867:1 15872:1 15896:1 15907:1 15915:1 15937:1 15951:1 15962:2 15983:1 15984:1 16028:2 16055:1 16067:1 16070:1 16073:1 16083:1 16095:1 16108:1 16117:6 16119:1 16122:1 16129:2 16139:1 16157:1 16162:1 16221:1 16238:1 16258:1 16301:1 16312:1 16319:1 16324:1 16329:1 16331:1 16337:2 16347:3 16351:1 16371:1 16399:4 16419:1 16428:1 16434:2 16435:3 16457:1 16462:2 16469:1 16477:1 16486:1 16489:5 16505:3 16518:2 16519:1 16525:1 16531:1 16555:2 16570:2 16583:1 16592:2 16595:1 16612:1 16625:3 16633:1 16664:2 16674:6 16680:1 16729:2 16733:2 16743:3 16756:1 16762:1 16777:6 16779:1 16781:1 16782:1 16787:1 16788:1 16795:1 16803:1 16807:1 16808:1 16824:1 16832:1 16837:1 16865:1 16873:1 16892:1 16915:1 16916:1 16925:1 16932:2 16934:1 16940:1 16962:1 16970:1 16985:1 17009:1 17016:1 17046:2 17094:1 17097:1 17098:3 17101:1 17110:5 17122:1 17127:1 17132:1 17165:1 17183:2 17205:1 17221:1 17224:1 17230:1 17235:1 17241:1 17262:1 17265:1 17266:2 17276:1 17282:1 17317:1 17326:2 17335:1 17342:1 17353:1 17376:1 17398:1 17400:1 17410:1 17415:2579 17425:1 17430:1 17433:1 17460:1 17473:1 17476:1 17478:1 17486:1 17505:3 17517:1 17547:2 17589:1 17594:1 17600:1 17601:1 17608:1 17613:1 17639:1 17644:1 17646:1 17650:1 17703:2 17706:2 17714:1 17744:1 17753:1 17754:1 17782:1 17810:1 17814:1 17820:2 17824:1 17831:1 17845:1 17859:1 17869:1 17871:1 17892:1 17900:3 17911:1 17917:1 17920:1 17928:1 17931:1 17936:1 17941:1 17944:2 17946:4 17964:1 17978:1 17980:1 17989:1 18009:1 18015:1 18041:1 18069:1 18074:1 18085:1 18100:1 18109:1 18119:3 18121:1 18142:1 18143:1 18154:1 18167:1 18172:3 18175:1 18187:1 18194:1 18206:2 18210:1 18232:5 18275:6 18277:1 18278:1 18283:1 18303:2 18306:1 18314:1 18319:1 18320:1 18324:1 18326:2 18333:1 18335:1 18355:1 18359:3 18360:1 18364:1 18365:1 18378:1 18384:3 18390:1 18392:1 18404:1 18410:2 18411:1 18412:1 18417:1 18427:1 18432:1 18437:2 18444:1 18457:1 18476:1 18491:1 18495:1 18506:1 18515:1 18539:2 18543:3 18545:2 18554:1 18587:1 18596:1 18603:1 18608:1 18619:1 18626:2 18632:2 18637:3 18663:2 18676:1 18687:1 18703:1 18707:1 18723:1 18724:1 18748:1 18753:1 18754:1 18755:2 18757:1 18760:2 18770:1 18786:1 18801:1 18802:1 18805:5 18808:1 18838:1 18845:1 18861:1 18875:3 18876:1 18878:2 18884:1 18886:1 18890:1 18893:1 18901:1 18908:2 18912:3 18928:1 18930:1 18932:1 18936:4 18939:1 18944:2 18947:1 18948:1 18949:1 18966:1 18979:1 18984:1 18998:1 19004:1 19011:1 19013:1 19014:1 19015:1 19033:4 19037:1 19041:1 19044:1 19050:1 19064:1 19106:1 19109:1 19118:1 19137:2 19140:1 19143:1 19148:1 19152:1 19176:1 19177:1 19186:1 19188:1 19205:6 19213:1 19223:1 19225:1 19229:1 19233:1 19252:2 19268:1 19270:1 19306:1 19309:1 19328:1 19330:2 19358:1 19370:1 19385:1 19386:1 19395:1 19407:1 19409:1 19413:1 19426:1 19440:1 19441:2 19455:1 19457:1 19470:1 19491:1 19492:2 19500:2 19502:1 19516:1 19520:1 19522:2 19541:1 19554:1 19556:6 19559:1 19560:2 19563:2 19568:3 19574:2 19577:1 19582:2 19585:1 19590:1 19593:1 19607:1 19609:1 19617:1 19689:1 19695:3 19701:1 19721:1 19727:1 19731:2 19733:1 19747:1 19749:1 19751:1 19753:1 19755:1 19769:2 19774:1 19785:2 19796:1 19797:1 19800:1 19806:1 19810:2 19813:1 19819:3 19831:1 19833:1 19852:2 19857:2 19860:1 19877:1 19889:2 19894:1 19905:2 19910:1 19915:3 19918:1 19923:1 19924:1 19933:1 19942:2 19950:1 19956:1 19959:1 19965:1 19990:1 20016:2 20025:2 20031:1 20039:1 20041:3 20047:1 20059:1 20063:1 20065:1 20068:1 20069:2 20070:1 20073:2 20075:1 20085:1 20089:3 20090:1 20091:2 20106:1 20143:1 20152:1 20162:1 20169:2 20171:3 20175:1 20178:1 20188:1 20190:1 20192:1 20193:1 20233:1 20249:1 20260:1 20270:1 20274:1 20279:1 20319:1 20322:1 20325:3 20327:1 20332:1 20334:1 20343:1 20353:1 20374:1 20395:2 20398:1 20399:1 20401:1 20411:6 20421:1 20429:2 20443:1 20447:3 20452:3 20454:1 20469:1 20471:1 20490:2 20519:1 20525:2 20526:2 20528:1 20529:1 20531:1 20535:1 20539:1 20541:1 20545:2 20546:1 20548:1 20551:2 20553:1 20554:1 20556:2 20559:7 20563:1 20571:1 20574:1 20590:1 20592:1 20596:2 20602:1 20608:1 20630:1 20680:2 20682:1 20683:1 20684:1 20685:3 20690:1 20730:1 20731:3 20747:1 20752:4 20755:2 20775:2 20778:1 20785:2 20803:2 20811:1 20828:2 20832:1 20850:1 20858:1 20879:1 20893:6 20900:1 20906:2 20915:1 20927:4 20934:1 20939:2 20960:9 20962:1 20967:1 20973:1 21002:1 21022:1 21028:2 21029:1 21031:1 21057:1 21072:1 21080:1 21087:2 21100:4 21103:1 21140:1 21142:1 21161:1 21167:1 21178:1 21179:1 21186:1 21189:1 21199:1 21221:1 21225:2 21233:1 21262:1 21272:1 21284:1 21287:1 21300:1 21304:1 21312:1 21325:1 21341:1 21342:1 21346:1 21349:1 21354:2 21363:1 21365:1 21369:1 21375:1 21376:1 21382:1 21397:1 21411:1 21414:1 21420:5 21424:1 21432:1 21442:2 21472:1 21480:2 21483:3 21496:1 21513:2 21524:1 21533:1 21534:1 21536:1 21543:1 21547:1 21549:1 21550:1 21571:3 21584:2 21608:1 21609:1 21614:1 21633:4 21640:1 21645:3 21657:2 21683:1 21703:2 21705:1 21709:1 21728:1 21735:1 21737:1 21742:1 21747:1 21753:1 21758:1 21784:1 21789:1 21816:3 21817:1 21834:3 21837:1 21838:1 21844:2 21847:1 21849:1 21857:1 21869:1 21876:1 21879:1 21885:1 21891:1 21894:1 21928:1 21929:1 21930:1 21933:2 21938:1 21951:1 21965:1 21966:1 21970:1 21971:1 21979:1 21984:3 21985:1 22008:3 22015:2 22020:1 22026:1 22043:1 22054:4 22067:1 22078:1 22080:1 22085:1 22105:1 22111:1 22114:1 22125:3 22135:1 22153:1 22156:1 22164:1 22165:2 22171:1 22177:1 22182:1 22215:1 22230:1 22244:2 22256:1 22268:1 22288:3 22298:1 22304:1 22336:1 22362:1 22366:1 22374:1 22381:2 22384:1 22385:1 22386:1 22389:1 22398:1 22400:1 22448:2 22449:1 22450:1 22466:1 22479:1 22491:1 22493:1 22542:2 22545:2 22547:1 22551:1 22575:1 22598:1 22604:1 22614:1 22626:1 22628:1 22657:1 22665:1 22666:5 22686:2 22687:2 22696:1 22722:1 22724:1 22742:1 22765:1 22779:1 22784:5 22791:1 22792:1 22798:1 22810:1 22814:1 22817:1 22820:1 22843:1 22859:1 22891:3 22904:1 22905:1 22935:1 22941:1 22946:1 22962:2 22965:1 22967:1 22972:1 22991:2 22996:2 23001:1 23007:1 23010:1 23013:1 23015:3 23025:1 23038:1 23041:1 23073:2 23096:3 23100:2 23136:1 23141:1 23142:2 23144:2 23147:1 23149:2 23151:1 23152:2 23153:1 23158:1 23159:1 23165:1 23171:1 23189:2 23211:1 23228:1 23234:1 23252:2 23263:3 23273:3 23277:2 23284:1 23285:1 23290:1 23291:1 23307:1 23308:4 23310:2 23335:1 23340:1 23360:1 23369:1 23373:1 23403:3 23412:1 23414:1 23419:1 23422:2 23456:1 23458:1 23493:5 23496:2 23554:1 23559:1 23563:1 23594:2 23609:1 23634:1 23646:1 23660:4 23669:1 23681:3 23683:1 23689:1 23692:7 23699:3 23717:2 23718:1 23719:1 23720:1 23721:1 23723:1 23766:2 23777:3 23779:1 23782:1 23791:1 23800:1 23801:1 23848:4 23853:3 23862:1 23865:1 23871:2 23874:2 23875:1 23882:1 23906:1 23907:2 23911:2 23912:1 23913:2 23919:1 23946:1 23953:1 23955:1 23956:1 23966:1 23970:1 23973:1 23985:1 23994:1 23996:1 23998:1 24017:2 24022:1 24054:1 24066:1 24071:1 24092:2 24093:1 24094:1 24122:1 24143:1 24151:2 24153:6 24160:1 24166:1 24176:1 24196:1 24271:1 24288:1 24290:1 24310:1 24328:1 24331:1 24334:2 24340:4 24398:1 24423:1 24428:1 24434:1 24439:1 24456:3 24459:1 24463:2 24470:3 24473:1 24497:1 24507:1 24551:1 24562:1 24567:1 24570:1 24571:1 24585:1 24586:1 24602:1 24603:1 24605:1 24606:1 24612:1 24673:1 24687:2 24704:1 24723:1 24733:1 24740:1 24754:1 24758:1 24807:2 24809:1 24817:1 24871:1 24889:1 24892:1 24893:1 24896:1 24900:1 24904:1 24910:1 24936:1 24940:1 24951:1 24956:1 24965:3 24969:5 24972:2 24982:1 24992:1 25003:1 25029:1 25033:1 25060:1 25069:1 25096:3 25097:1 25112:1 25114:2 25115:3 25124:1 25149:1 25159:1 25181:1 25192:1 25221:1 25230:1 25234:1 25240:3 25242:5 25247:1 25249:1 25260:1 25262:1 25265:1 25267:2 25271:1 25279:3 25282:1 25288:1 25306:1 25309:1 25323:1 25329:1 25333:4 25337:3 25354:1 25363:1 25369:1 25372:1 25381:2 25386:1 25387:1 25392:1 25445:1 25455:2 25460:1 25468:1 25474:1 25496:2 25497:1 25505:1 25507:1 25508:1 25513:3 25517:2 25518:1 25519:1 25523:1 25525:3 25550:2 25561:1 25567:2 25568:3 25570:1 25572:2 25584:1 25614:1 25619:1 25630:1 25634:1 25650:1 25651:1 25656:3 25672:4 25679:1 25715:2 25731:1 25735:1 25738:3 25742:1 25752:1 25757:1 25760:1 25761:1 25774:1 25779:1 25781:2 25782:1 25792:2 25793:1 25796:1 25799:1 25802:3 25804:1 25805:2 25806:1 25817:1 25820:2 25822:1 25824:1 25826:3 25827:6 25834:1 25837:2 25839:2 25861:1 25870:1 25871:2 25872:1 25877:1 25900:5 25915:1 25925:1 25927:7 25928:1 25930:1 25957:1 25959:1 25988:2 25994:1 25997:2 26007:1 26019:1 26021:1 26025:1 26032:1 26072:1 26095:1 26099:1 26100:2 26107:1 26115:1 26123:1 26171:2 26204:1 26211:1 26216:1 26229:1 26260:2 26268:1 26282:1 26283:1 26289:2 26317:1 26319:1 26335:1 26346:1 26349:1 26365:1 26368:2 26406:3 26413:1 26417:1 26433:1 26439:2 26446:1 26448:1 26454:1 26459:1 26473:1 26482:1 26484:1 26485:2 26490:1 26508:20 26511:1 26513:3 26530:1 26537:1 26539:1 26542:1 26547:4 26552:1 26562:1 26564:1 26567:1 26576:1 26591:1 26610:3 26619:1 26622:1 26634:1 26645:5 26655:4 26662:1 26692:11 26700:1 26733:1 26745:1 26759:1 26764:2 26777:1 26782:1 26787:1 26800:1 26807:1 26813:1 26834:2 26852:2 26864:2 26867:1 26869:2 26878:1 26882:2 26886:1 26904:1 26921:1 26944:1 26946:2 26948:2 26952:1 26953:2 26961:1 26965:1 26966:2 26975:1 26977:1 26978:1 26982:1 27005:2 27012:1 27016:2 27019:3 27020:5 27058:1 27062:1 27063:1 27073:1 27074:1 27078:2 27085:1 27096:3 27150:4 27154:1 27160:1 27179:1 27197:1 27202:1 27223:1 27227:1 27236:1 27241:1 27247:3 27248:2 27309:3 27333:1 27370:1 27379:1 27390:2 27394:1 27396:1 27402:2 27407:1 27433:2 27434:2 27440:1 27447:3 27459:1 27477:1 27491:2 27492:1 27506:1 27516:1 27521:1 27530:1 27534:2 27547:3 27553:3 27564:1 27569:1 27572:1 27590:1 27598:1 27609:3 27613:1 27619:1 27635:1 27637:1 27638:1 27643:4 27652:1 27667:1 27669:1 27672:1 27683:4 27689:1 27706:1 27715:3 27716:5 27723:3 27729:1 27730:1 27732:1 27734:1 27739:7 27765:1 27775:5 27778:1 27784:4 27789:1 27792:1 27797:1 27812:1 27820:1
8 1:4 8:1 21:1 40:1 43:1 46:1 47:2 83:3 88:1 102:1 121:1 125:1 132:1 146:1 148:1 158:1 160:1 162:1 163:1 181:1 190:1 194:4 214:2 220:1 222:1 234:1 240:4 250:1 263:1 279:1 303:1 327:3 328:1 329:1 354:1 356:1 369:3 403:1 407:1 416:2 431:1 432:2 441:2 451:1 466:1 475:1 477:1 486:1 494:1 502:1 567:1 575:1 586:1 587:2 593:1 594:2 605:4 627:8 646:1 656:1 659:1 667:7 683:1 686:1 687:1 688:1 729:1 749:1 771:2 784:1 796:1 843:6 850:2 852:1 855:1 856:1 869:1 870:1 876:5 882:1 891:1 906:1 920:1 925:1 930:6 934:2 945:1 969:1 970:1 973:4 984:1 991:1 1011:1 1045:1 1050:1 1052:1 1068:3 1074:1 1086:1 1093:2 1105:1 1129:5 1138:1 1147:1 1156:1 1157:2 1170:1 1172:2 1176:1 1182:1 1187:1 1188:1 1190:1 1191:1 1201:1 1202:1 1205:1 1210:1 1215:1 1221:1 1222:1 1231:1 1233:1 1235:1 1238:1 1241:1 1243:5 1244:2 1250:1 1251:1 1253:1 1255:1 1265:1 1270:1 1277:1 1278:2 1289:2 1296:1 1304:1 1311:1 1323:1 1324:1 1332:1 1341:1 1348:1 1349:1 1362:1 1369:1 1371:1 1374:1 1379:1 1380:1 1386:1 1389:2 1393:5 1395:5 1399:1 1411:2 1422:1 1424:3 1432:5 1446:3 1468:1 1472:1 1475:3 1486:1 1496:1 1509:6 1513:1 1523:2 1525:1 1527:1 1542:1 1553:1 1565:2 1576:1 1578:3 1580:3 1588:1 1607:1 1612:1 1626:3 1628:2 1636:1 1640:1 1644:1 1659:1 1663:2 1669:1 1670:2 1681:1 1682:1 1684:1 1688:1 1692:1 1696:2 1697:2 1717:1 1720:1 1732:1 1738:1 1740:1 1744:1 1748:1 1753:2 1762:1 1769:1 1774:1 1776:2 1779:1 1787:5 1791:1 1796:1 1797:1 1801:2 1815:1 1818:3 1824:1 1833:1 1835:1 1841:1 1844:3 1849:1 1850:1 1856:1 1858:2 1859:1 1871:1 1883:1 1887:1 1926:1 1928:6 1943:1 1951:1 1956:1 1957:1 1958:1 1962:2 1990:1 1996:1 1997:1 2006:1 2012:1 2019:1 2023:1 2054:1 2057:7 2072:1 2090:1 2110:1 2124:1 2136:1 2145:1 2155:1 2174:2 2175:1 2176:1 2177:8 2179:2 2181:1 2185:4 2188:1 2193:2 2194:1 2196:2 2200:1 2201:8 2203:3 2208:3 2209:2 2211:5 2214:1 2216:1 2248:1 2252:1 2260:3 2270:1 2274:2 2278:1 2285:1 2288:1 2291:1 2293:1 2295:1 2334:1 2378:1 2380:1 2408:1 2418:1 2430:1 2437:1 2487:1 2499:1 2510:1 2547:1 2557:1 2563:1 2565:1 2566:1 2569:1 2580:1 2582:1 2583:1 2588:1 2597:1 2598:1 2599:1 2601:1 2602:3 2618:1 2621:1 2627:1 2629:1 2631:1 2646:2 2649:1 2650:1 2662:1 2676:3 2687:1 2701:1 2703:1 2705:1 2713:2 2725:1 2731:1 2732:1 2755:1 2760:2 2766:2 2774:10 2786:1 2793:3 2801:2 2803:2 2811:1 2813:1 2818:1 2827:1 2831:5 2840:1 2854:1 2869:1 2880:1 2883:1 2885:2 2886:2 2888:1 2897:1 2908:2 2948:1 2958:1 2968:1 2983:1 2989:1 2995:2 2996:1 3002:1 3010:1 3017:1 3025:1 3055:2 3062:2 3071:1 3072:1 3090:1 3092:1 3122:1 3127:1 3130:1 3131:3 3134:3 3137:5 3138:2 3148:1 3158:7 3164:1 3174:1 3195:1 3216:1 3227:1 3233:1 3258:1 3299:1 3313:2 3321:1 3324:1 3325:1 3333:1 3339:1 3362:1 3371:1 3383:1 3406:1 3423:1 3434:1 3442:1 3443:2 3456:1 3464:2 3481:1 3491:2 3496:1 3506:1 3516:1 3518:4 3520:2 3530:2 3537:1 3538:1 3550:2 3555:1 3574:2 3580:1 3584:1 3585:1 3614:1 3616:1 3621:2 3625:2 3630:1 3640:1 3642:1 3646:1 3647:1 3650:3 3668:1 3680:1 3682:1 3688:1 3692:1 3699:1 3709:2 3715:1 3718:1 3724:2 3728:2 3732:2 3738:1 3751:2 3757:2 3758:1 3764:1 3778:1 3791:1 3795:1 3803:1 3807:1 3810:1 3815:1 3818:3 3826:1 3836:2 3839:1 3842:1 3845:1 3853:2 3857:2 3858:6 3883:1 3907:1 3912:1 3916:2 3923:1 3928:1 3929:1 3934:1 3940:1 3970:1 3983:1 3986:1 3988:1 3998:1 4002:1 4003:1 4004:1 4011:2 4020:2 4030:3 4031:1 4035:5 4042:1 4043:1 4052:1 4067:1 4068:1 4094:4 4109:1 4115:1 4126:1 4129:6 4131:1 4152:2 4169:2 4174:2 4189:1 4196:1 4224:1 4230:4 4231:1 4234:1 4235:1 4249:1 4250:1 4251:1 4281:2 4290:1 4295:1 4302:1 4307:1 4315:1 4321:2 4342:3 4351:1 4384:1 4388:1 4400:2 4407:1 4426:4 4433:2 4459:1 4462:3 4471:1 4474:1 4485:1 4489:1 4496:1 4497:4 4498:1 4500:1 4503:1 4510:1 4533:1 4536:1 4542:1 4546:2 4565:1 4567:1 4572:1 4645:1 4648:18 4649:1 4658:1 4669:1 4670:1 4673:1 4677:1 4706:1 4713:1 4747:1 4763:1 4767:4 4787:8 4789:6 4790:1 4792:1 4795:2 4796:2 4797:2 4800:3 4802:2 4808:1 4810:1 4812:3 4813:1 4814:7 4817:2 4833:1 4840:1 4869:1 4871:2 4903:1 4906:1 4944:1 4947:5 4972:1 4980:1 4994:1 4997:1 5002:2 5005:1 5010:1 5013:1 5020:1 5023:1 5044:4 5047:1 5074:1 5084:1 5092:1 5102:1 5104:2 5108:1 5123:1 5126:2 5136:2 5170:1 5171:1 5182:1 5201:1 5212:1 5222:2 5224:1 5248:1 5253:2 5269:1 5275:1 5286:1 5293:1 5296:1 5299:2 5301:1 5304:1 5309:2 5311:1 5313:1 5315:2 5319:1 5320:1 5322:1 5351:1 5353:1 5357:2 5379:3 5385:1 5386:1 5413:1 5422:1 5423:1 5425:1 5436:1 5437:1 5446:1 5448:1 5473:1 5486:1 5488:1 5504:1 5574:2 5585:1 5587:4 5593:1 5609:3 5636:1 5643:3 5671:1 5689:2 5708:4 5710:2 5714:1 5739:4 5755:2 5760:1 5773:1 5795:1 5804:2 5808:2 5828:2 5832:2 5847:1 5862:1 5867:1 5892:1 5896:1 5910:1 5913:3 5916:1 5935:1 5942:8 5945:1 5950:1 5961:1 5969:1 5982:1 5993:8 6027:1 6034:6 6037:3 6041:1 6044:1 6045:4 6046:3 6047:2 6048:2 6049:1 6052:3 6053:1 6056:1 6058:3 6060:5 6063:1 6074:1 6089:1 6100:1 6101:1 6121:1 6140:1 6147:3 6168:1 6174:1 6187:4 6191:2 6203:2 6206:1 6216:1 6221:1 6250:1 6256:1 6257:1 6259:1 6265:1 6268:2 6286:1 6288:1 6295:1 6304:1 6327:1 6330:1 6338:1 6340:1 6353:1 6373:1 6375:1 6399:2 6416:1 6418:1 6425:1 6431:1 6433:1 6437:2 6457:3 6462:2 6465:1 6475:1 6482:1 6486:1 6489:4 6493:7 6495:1 6497:2 6498:1 6507:1 6508:1 6512:2 6515:1 6519:5 6520:1 6521:2 6522:1 6523:1 6529:3 6579:2 6580:1 6588:1 6591:1 6592:1 6596:1 6597:1 6612:1 6620:1 6625:2 6645:1 6657:1 6665:1 6670:1 6675:1 6681:1 6683:1 6687:1 6696:2 6702:1 6703:1 6707:1 6716:2 6721:1 6722:2 6723:1 6732:1 6735:1 6737:1 6739:1 6748:3 6766:1 6767:1 6768:1 6771:1 6779:1 6792:1 6794:1 6816:3 6818:1 6825:1 6826:1 6838:1 6839:2 6842:1 6843:1 6852:1 6860:1 6890:1 6898:1 6903:2 6904:1 6914:2 6934:2 6941:3 6943:1 6948:1 6954:2 6956:3 6960:5 6994:1 6999:1 7011:1 7017:1 7038:1 7048:8 7073:6 7074:1 7077:2 7088:1 7106:2 7123:1 7137:1 7144:2 7186:1 7187:1 7231:3 7249:10 7250:5 7255:1 7270:1 7273:1 7274:4 7286:2 7307:1 7311:1 7323:44 7344:10 7345:6 7369:1 7370:1 7381:2 7384:1 7403:1 7409:1 7414:2 7434:3 7458:1 7478:4 7488:2 7496:1 7513:2 7525:1 7539:5 7550:1 7563:1 7566:1 7571:1 7586:1 7590:1 7596:1 7600:1 7603:2 7646:3 7650:2 7675:1 7677:1 7684:2 7696:1 7698:1 7701:1 7706:1 7715:3 7771:1 7786:1 7789:1 7791:19 7812:1 7815:1 7817:2 7826:1 7843:1 7879:3 7884:1 7891:1 7898:1 7903:1 7914:1 7922:1 7929:1 7936:2 7947:1 7949:2 7957:7 7958:1 7964:2 7990:1 7994:1 8013:1 8026:1 8031:1 8034:1 8035:1 8045:2 8054:1 8061:1 8064:1 8116:1 8117:1 8122:1 8123:2 8124:1 8125:4 8126:1 8128:2 8130:2 8135:2 8136:1 8140:2 8155:1 8159:2 8161:3 8166:1 8169:1 8176:1 8180:1 8182:1 8191:1 8221:1 8229:6 8268:1 8280:4 8282:2 8293:2 8322:1 8326:1 8328:1 8340:1 8351:1 8362:1 8397:1 8401:1 8404:1 8406:1 8413:1 8423:1 8437:2 8439:1 8440:3 8441:1 8467:1 8484:2 8485:2 8490:1 8493:1 8496:1 8503:2 8505:1 8515:1 8531:1 8539:1 8556:5 8558:4 8575:2 8613:1 8620:1 8621:1 8655:1 8670:2 8682:2 8694:1 8697:1 8698:1 8705:2 8707:1 8716:1 8719:3 8721:1 8725:1 8747:1 8748:2 8751:2 8752:3 8753:1 8788:1 8796:1 8801:1 8803:1 8804:1 8813:1 8816:1 8817:1 8819:1 8828:2 8853:1 8858:1 8876:1 8878:1 8898:1 8907:1 8926:1 8930:2 8942:2 8944:2 8954:1 8962:1 8971:1 8979:1 8991:1 8996:1 8997:1 9000:2 9007:1 9010:2 9016:1 9023:2 9028:1 9030:2 9034:1 9045:1 9048:1 9062:1 9063:3 9068:2 9073:1 9080:1 9087:1 9095:1 9118:1 9144:1 9179:2 9180:1 9215:2 9236:4 9242:3 9244:1 9249:2 9257:3 9267:1 9279:1 9317:1 9325:2 9337:1 9372:1 9378:1 9385:1 9398:1 9405:2 9418:1 9420:2 9430:1 9432:1 9441:1 9442:2 9451:2 9460:1 9464:1 9473:5 9484:3 9486:1 9495:1 9507:1 9522:1 9533:3 9534:2 9544:1 9569:2 9571:2 9594:1 9597:1 9605:1 9607:1 9621:1 9683:1 9687:1 9696:2 9697:1 9701:1 9707:4 9712:1 9721:1 9741:1 9757:1 9760:1 9762:1 9770:1 9773:1 9778:1 9783:1 9788:2 9793:1 9797:1 9799:4 9802:1 9803:1 9822:1 9823:3 9844:1 9858:1 9870:1 9877:5 9882:4 9883:1 9917:8 9925:2 9930:1 9935:1 9936:1 9947:1 9955:2 9961:1 9963:1 9974:1 9981:1 9996:1 10006:1 10013:1 10046:2 10052:1 10053:1 10054:1 10066:1 10070:3 10073:1 10075:2 10076:5 10083:1 10085:1 10121:1 10124:1 10125:1 10126:1 10132:2 10136:2 10142:1 10144:1 10153:2 10167:4 10173:1 10174:1 10177:1 10183:1 10187:1 10199:1 10254:3 10259:1 10276:1 10281:1 10287:3 10289:4 10296:4 10299:3 10300:6 10304:2 10307:3 10308:2 10312:1 10313:1 10315:1 10322:1 10326:1 10345:1 10346:1 10347:1 10371:2 10398:1 10404:1 10406:2 10410:1 10417:1 10425:1 10427:2 10429:1 10438:1 10471:1 10476:1 10477:1 10497:1 10498:1 10515:1 10526:1 10564:1 10573:1 10574:1 10580:1 10585:4 10595:2 10607:1 10633:1 10637:4 10642:1 10646:1 10650:1 10652:2 10653:1 10654:1 10664:2 10679:1 10681:1 10683:1 10684:2 10698:1 10717:2 10720:1 10724:3 10747:1 10750:1 10754:4 10775:1 10778:1 10781:1 10784:1 10786:1 10799:2 10804:1 10821:4 10824:1 10832:1 10833:1 10834:1 10850:1 10855:1 10872:2 10897:1 10907:1 10932:1 10933:4 10940:2 10957:1 10965:2 10967:1 10968:1 10973:2 10977:2 10981:1 10982:1 10989:1 10994:5 10995:1 11001:3 11046:3 11052:2 11054:1 11056:1 11062:2 11067:2 11071:1 11081:1 11086:1 11092:1 11093:1 11098:1 11107:1 11109:1 11116:1 11140:1 11149:1 11154:1 11170:1 11175:1 11176:2 11222:1 11227:1 11229:1 11245:1 11247:1 11252:2 11261:1 11291:1 11304:2 11310:1 11313:1 11335:1 11354:3 11355:2 11375:1 11387:1 11388:1 11389:2 11393:3 11394:1 11401:1 11410:2 11414:1 11416:1 11419:1 11421:2 11422:1 11432:1 11437:1 11440:1 11447:1 11477:1 11492:1 11494:1 11499:6 11501:2 11515:1 11519:1 11521:2 11532:1 11536:1 11552:1 11581:2 11582:1 11606:1 11611:1 11619:1 11639:1 11653:1 11654:1 11661:2 11662:1 11671:1 11686:2 11688:4 11689:1 11691:1 11699:1 11704:1 11735:1 11756:1 11759:1 11778:1 11844:1 11860:1 11876:2 11888:2 11889:1 11903:1 11926:1 11933:1 11945:1 11960:1 12007:1 12009:1 12013:1 12018:1 12021:1 12023:1 12024:1 12039:1 12079:1 12115:1 12152:1 12156:1 12157:1 12167:2 12169:1 12195:1 12214:2 12230:1 12234:1 12235:2 12236:1 12241:1 12242:1 12243:1 12250:2 12261:1 12262:2 12265:1 12271:7 12276:1 12285:1 12300:3 12313:2 12323:1 12324:1 12358:1 12369:2 12385:1 12396:1 12402:2 12404:5 12409:4 12468:1 12472:14 12475:1 12502:1 12522:1 12526:1 12528:2 12532:2 12539:1 12548:1 12557:2 12565:1 12591:1 12604:1 12612:1 12640:1 12641:2 12661:1 12687:1 12701:1 12710:3 12733:1 12737:2 12743:4 12748:1 12766:1 12768:1 12775:3 12778:1 12782:1 12790:1 12801:2 12856:2 12884:1 12885:1 12893:1 12894:3 12896:1 12910:1 12919:2 12932:2 12942:3 12945:1 12951:1 12970:1 12971:2 12974:2 12982:2 12995:1 13001:1 13007:1 13016:2 13018:1 13033:1 13040:1 13053:1 13067:1 13068:1 13080:1 13086:3 13097:3 13098:1 13120:2 13126:4 13133:1 13155:1 13160:1 13170:1 13179:1 13186:1 13187:1 13199:1 13211:1 13247:1 13263:1 13270:1 13276:2 13285:1 13295:6 13310:1 13316:1 13323:2 13332:1 13366:1 13367:1 13371:1 13379:1 13384:1 13388:1 13401:1 13441:1 13459:1 13464:1 13476:1 13483:1 13498:1 13500:1 13501:1 13506:2 13524:1 13539:1 13545:1 13557:1 13563:2 13586:1 13597:1 13599:1 13618:1 13628:2 13629:2 13634:1 13656:1 13662:1 13666:1 13673:1 13676:1 13689:1 13691:3 13692:1 13693:2 13701:2 13704:1 13705:1 13708:1 13723:1 13726:1 13744:1 13751:3 13757:1 13805:1 13806:3 13825:1 13875:1 13882:1 13889:1 13890:1 13894:1 13906:1 13911:1 13914:1 13945:1 13956:1 13969:2 13973:1 13987:1 13989:1 13991:2 13996:3 14001:2 14009:1 14036:6 14043:1 14045:1 14049:1 14057:1 14093:1 14106:2 14107:1 14117:1 14154:1 14171:1 14178:1 14181:1 14192:1 14193:1 14197:1 14202:1 14210:1 14211:1 14222:1 14225:1 14226:1 14233:2 14235:1 14240:2 14244:1 14249:2 14259:1 14267:2 14270:1 14292:1 14297:1 14303:2 14306:1 14312:1 14319:1 14320:2 14339:1 14341:1 14342:1 14350:1 14361:1 14380:1 14391:1 14403:1 14418:2 14419:1 14422:1 14430:1 14438:1 14439:1 14443:1 14445:2 14451:4 14481:1 14487:3 14492:2 14506:2 14508:2 14557:1 14563:1 14564:3 14577:2 14583:1 14586:1 14589:1 14604:1 14612:1 14613:1 14618:1 14622:1 14628:1 14630:1 14634:1 14635:1 14638:5 14643:1 14650:1 14655:1 14659:1 14660:1 14667:2 14672:1 14696:3 14705:1 14709:1 14724:1 14728:1 14754:1 14769:3 14796:1 14797:1 14801:1 14809:1 14818:1 14824:1 14841:3 14843:2 14851:2 14881:2 14887:1 14901:1 14907:1 14908:1 14918:1 14924:11 14945:2 14951:1 14952:2 14964:1 14967:1 14973:2 14978:1 14993:2 15002:1 15005:1 15012:10 15018:1 15033:1 15039:2 15073:1 15080:3 15083:1 15095:1 15097:1 15122:1 15144:1 15145:1 15166:1 15170:4 15173:1 15177:3 15178:2 15187:2 15188:4 15193:2 15195:1 15196:2 15197:3 15207:1 15229:1 15263:1 15266:1 15272:1 15297:1 15301:1 15309:1 15312:1 15313:1 15314:2 15332:1 15345:1 15349:1 15352:1 15372:1 15376:1 15399:2 15402:2 15419:1 15442:1 15470:1 15476:1 15483:3 15495:2 15504:3 15513:1 15520:2 15538:2 15539:1 15554:1 15560:1 15567:2 15568:1 15571:1 15578:1 15582:3 15584:1 15629:1 15639:1 15655:2 15657:1 15723:1 15738:1 15762:5 15768:1 15775:3 15778:1 15786:1 15798:1 15807:1 15838:1 15839:4 15842:1 15863:2 15867:1 15872:1 15896:1 15907:1 15915:1 15937:1 15951:1 15962:2 15983:1 15984:1 16028:2 16055:1 16067:1 16070:1 16073:1 16083:1 16095:1 16108:1 16117:6 16119:1 16122:1 16129:2 16139:1 16157:1 16162:1 16176:1 16209:1 16221:1 16238:1 16258:1 16301:1 16312:1 16319:1 16324:1 16329:1 16331:1 16337:2 16347:3 16351:1 16371:1 16399:4 16419:1 16428:1 16434:2 16435:3 16457:1 16462:2 16469:1 16477:1 16486:1 16489:5 16505:3 16518:2 16519:1 16525:1 16531:1 16555:2 16570:2 16583:1 16592:2 16595:1 16612:1 16625:3 16633:1 16641:1 16664:3 16674:6 16680:1 16729:2 16733:2 16743:3 16756:1 16762:1 16777:6 16779:1 16781:1 16782:1 16787:1 16788:1 16795:1 16803:1 16807:1 16808:1 16809:1 16824:1 16832:1 16837:1 16865:1 16873:1 16892:1 16915:1 16916:1 16925:1 16932:2 16934:1 16940:1 16962:1 16970:1 16985:1 17009:1 17016:1 17040:1 17046:2 17094:1 17097:1 17098:3 17101:1 17110:5 17122:1 17127:1 17132:1 17165:1 17183:2 17205:1 17221:1 17224:1 17230:1 17235:1 17241:1 17262:1 17265:1 17266:2 17276:1 17282:1 17317:1 17326:2 17335:1 17342:1 17353:1 17376:1 17398:1 17400:1 17410:1 17415:2665 17425:1 17430:1 17433:1 17447:1 17460:1 17473:1 17476:1 17478:1 17486:1 17505:3 17517:1 17547:2 17589:1 17594:1 17600:1 17601:1 17608:1 17613:1 17639:1 17644:1 17646:1 17650:1 17703:2 17706:2 17714:1 17744:1 17753:1 17754:1 17782:1 17810:1 17814:1 17820:2 17824:1 17831:1 17845:1 17859:1 17869:1 17871:1 17892:1 17900:3 17911:1 17917:1 17920:1 17928:1 17931:1 17936:1 17941:1 17944:2 17946:4 17964:1 17978:1 17980:1 17989:1 18009:1 18015:1 18041:1 18069:1 18074:1 18085:1 18100:1 18109:1 18119:3 18121:1 18142:1 18143:1 18154:1 18167:1 18172:3 18175:1 18187:1 18194:1 18206:2 18210:1 18232:5 18275:6 18277:1 18278:1 18283:1 18303:2 18306:1 18314:1 18319:1 18320:1 18324:1 18326:2 18333:1 18335:1 18355:1 18359:3 18360:1 18364:1 18365:1 18378:1 18384:3 18390:1 18392:1 18404:1 18410:3 18411:1 18412:1 18417:1 18427:1 18432:1 18437:2 18444:1 18457:1 18476:1 18491:1 18495:1 18506:1 18515:1 18539:2 18543:3 18545:2 18554:1 18587:1 18596:1 18603:1 18608:1 18619:1 18626:2 18632:2 18637:3 18663:2 18676:1 18687:1 18703:1 18707:1 18723:1 18724:1 18748:1 18753:1 18754:1 18755:2 18757:1 18760:2 18770:1 18778:1 18786:1 18801:1 18802:1 18805:5 18808:1 18838:1 18845:1 18861:1 18875:3 18876:1 18878:2 18884:1 18886:1 18890:1 18893:1 18901:1 18908:2 18912:3 18928:1 18930:1 18932:1 18936:4 18939:1 18944:2 18947:1 18948:1 18949:1 18966:1 18979:1 18984:1 18998:1 19004:1 19011:1 19013:1 19014:1 19015:1 19033:4 19037:1 19041:1 19044:1 19050:1 19064:1 19106:1 19109:1 19118:1 19137:2 19140:1 19143:1 19148:1 19152:1 19175:1 19176:1 19177:1 19186:1 19188:1 19205:6 19213:1 19223:1 19225:1 19229:1 19233:1 19252:2 19268:1 19270:1 19306:1 19309:1 19328:1 19330:2 19358:1 19370:1 19385:1 19386:1 19395:1 19396:1 19407:1 19409:1 19410:1 19413:1 19426:1 19440:1 19441:2 19455:1 19457:1 19470:1 19491:1 19492:2 19500:2 19502:1 19516:1 19520:3 19522:2 19541:1 19554:1 19556:6 19559:1 19560:2 19563:2 19568:3 19574:2 19577:1 19582:2 19585:1 19590:1 19593:1 19607:1 19609:1 19617:1 19689:1 19695:3 19700:1 19701:1 19721:1 19727:1 19731:2 19733:1 19747:1 19749:1 19751:1 19753:1 19755:1 19769:2 19774:1 19785:2 19796:1 19797:1 19800:1 19806:1 19810:2 19813:1 19819:3 19831:1 19833:1 19852:2 19857:3 19860:1 19877:1 19889:2 19894:1 19905:2 19910:1 19915:3 19918:2 19923:1 19924:1 19933:1 19942:2 19950:1 19956:1 19959:1 19965:1 19990:1 20016:2 20025:2 20031:1 20039:1 20041:3 20047:1 20059:1 20063:1 20065:1 20068:1 20069:2 20070:1 20073:2 20075:1 20085:1 20089:3 20090:1 20091:2 20106:1 20143:1 20152:1 20162:1 20169:2 20171:3 20175:1 20178:1 20188:1 20190:1 20192:1 20193:1 20233:1 20249:1 20260:1 20270:1 20274:1 20279:1 20319:1 20322:1 20325:3 20327:1 20332:1 20334:1 20343:1 20353:1 20373:1 20374:1 20395:2 20398:1 20399:1 20401:1 20404:1 20411:6 20421:1 20429:2 20443:1 20447:4 20452:3 20454:1 20469:1 20471:1 20490:2 20519:1 20525:2 20526:2 20528:1 20529:1 20531:1 20535:1 20539:1 20541:1 20545:2 20546:2 20548:1 20551:2 20553:1 20554:1 20556:3 20559:7 20563:1 20571:1 20574:1 20590:1 20592:1 20596:2 20602:1 20608:1 20630:1 20680:2 20682:1 20683:1 20684:1 20685:3 20690:1 20730:1 20731:3 20747:1 20752:4 20755:2 20775:2 20778:1 20785:2 20803:2 20811:1 20828:2 20832:1 20850:1 20858:1 20879:1 20893:7 20900:1 20906:2 20915:1 20927:4 20934:1 20939:2 20960:9 20962:1 20967:1 20973:1 21002:1 21022:1 21028:2 21029:1 21031:1 21057:1 21072:1 21080:1 21087:2 21100:6 21103:1 21134:1 21140:1 21142:1 21161:1 21167:1 21178:1 21179:1 21186:1 21189:1 21199:1 21221:1 21225:2 21233:1 21262:1 21272:1 21284:1 21287:1 21300:1 21304:1 21312:1 21325:1 21341:1 21342:1 21346:1 21349:1 21354:2 21363:1 21365:2 21369:1 21375:1 21376:1 21382:1 21397:1 21411:1 21414:1 21420:5 21424:1 21432:1 21442:2 21472:1 21480:2 21483:4 21496:1 21513:2 21524:1 21533:1 21534:1 21536:1 21543:1 21547:1 21549:1 21550:1 21571:3 21584:2 21608:1 21609:1 21614:1 21633:4 21640:1 21645:4 21657:2 21683:1 21703:2 21705:1 21709:1 21728:1 21735:1 21737:1 21742:1 21747:1 21753:1 21758:1 21784:1 21789:1 21816:3 21817:1 21834:3 21837:1 21838:1 21844:2 21847:1 21849:1 21857:1 21869:1 21876:1 21879:1 21885:1 21891:1 21894:1 21928:1 21929:1 21930:1 21933:2 21938:1 21951:1 21965:1 21966:1 21970:1 21971:1 21979:2 21984:3 21985:1 22008:3 22015:2 22020:1 22026:1 22043:1 22054:4 22057:1 22067:1 22078:1 22080:1 22085:1 22105:1 22111:1 22114:1 22125:3 22135:2 22153:1 22156:1 22164:1 22165:2 22171:1 22177:1 22182:1 22215:1 22230:1 22244:2 22256:1 22268:1 22288:3 22298:1 22304:1 22311:1 22336:1 22362:1 22366:1 22374:1 22381:2 22384:1 22385:1 22386:1 22389:1 22398:1 22400:1 22448:2 22449:1 22450:1 22466:1 22479:1 22491:1 22493:1 22542:2 22545:2 22547:2 22551:1 22575:1 22598:1 22604:1 22614:1 22626:1 22628:1 22657:1 22665:1 22666:6 22686:2 22687:2 22693:1 22696:1 22722:1 22724:1 22742:1 22765:1 22779:1 22784:5 22791:1 22792:1 22798:1 22810:1 22814:1 22817:1 22820:1 22843:1 22859:1 22891:3 22904:1 22905:1 22935:1 22941:1 22946:1 22962:2 22965:1 22967:1 22972:1 22991:2 22996:2 23001:1 23007:1 23010:1 23013:1 23015:3 23025:1 23030:1 23038:1 23041:1 23073:2 23096:3 23100:2 23133:1 23136:1 23141:1 23142:2 23144:2 23147:1 23149:2 23151:1 23152:2 23153:1 23158:1 23159:1 23165:1 23171:1 23189:2 23211:1 23228:1 23234:1 23252:2 23263:3 23273:3 23277:2 23284:1 23285:1 23290:1 23291:1 23307:1 23308:4 23310:2 23335:1 23340:1 23360:1 23369:1 23373:1 23403:3 23412:1 23414:1 23419:1 23422:2 23456:1 23458:1 23493:5 23496:2 23554:1 23559:1 23563:1 23594:2 23609:1 23611:1 23634:1 23646:1 23660:4 23669:1 23681:3 23683:1 23689:1 23692:7 23699:3 23717:2 23718:1 23719:1 23720:1 23721:1 23723:1 23766:2 23777:3 23779:1 23782:1 23791:1 23800:1 23801:1 23848:4 23853:3 23862:1 23865:1 23871:2 23874:2 23875:1 23882:1 23906:1 23907:2 23911:2 23912:1 23913:2 23919:1 23946:1 23953:1 23955:1 23956:1 23966:1 23970:1 23973:1 23985:1 23994:1 23996:1 23998:1 24017:2 24022:1 24054:1 24066:1 24071:1 24092:2 24093:1 24094:1 24122:1 24143:1 24151:3 24153:7 24160:1 24166:1 24176:2 24196:1 24271:1 24288:1 24290:1 24310:1 24328:1 24331:1 24334:2 24340:4 24398:1 24423:1 24428:1 24434:1 24439:1 24456:3 24459:1 24463:2 24470:4 24473:1 24497:1 24507:1 24551:1 24553:1 24562:1 24567:1 24570:1 24571:1 24585:1 24586:1 24602:1 24603:1 24605:1 24606:1 24612:1 24665:1 24673:1 24687:2 24704:1 24723:1 24733:1 24740:1 24744:1 24754:1 24758:1 24807:2 24809:1 24817:1 24871:1 24889:1 24892:1 24893:1 24896:1 24900:1 24904:1 24910:1 24936:1 24940:1 24951:1 24956:1 24965:3 24969:5 24972:2 24982:1 24992:1 25003:1 25029:1 25033:1 25060:1 25069:1 25089:1 25096:3 25097:1 25112:1 25114:2 25115:3 25124:1 25149:2 25159:1 25181:1 25192:1 25221:1 25230:1 25234:1 25240:3 25242:5 25247:1 25249:1 25260:1 25262:1 25265:1 25267:2 25271:1 25279:3 25282:1 25288:1 25306:1 25309:1 25323:1 25329:1 25333:4 25337:3 25354:1 25363:1 25369:1 25372:1 25381:2 25386:1 25387:1 25392:1 25445:1 25455:2 25460:1 25468:1 25474:1 25496:2 25497:1 25505:1 25507:1 25508:1 25513:3 25517:2 25518:1 25519:1 25523:1 25525:3 25550:3 25561:1 25567:2 25568:3 25570:1 25572:2 25584:1 25614:1 25619:1 25630:1 25634:1 25650:1 25651:1 25656:3 25672:5 25679:1 25715:2 25731:1 25735:1 25738:3 25742:1 25752:1 25757:1 25759:1 25760:1 25761:1 25774:1 25779:1 25781:2 25782:1 25792:2 25793:1 25796:1 25799:1 25802:3 25804:1 25805:2 25806:1 25817:1 25820:2 25822:1 25824:1 25826:3 25827:6 25834:1 25837:2 25839:2 25861:1 25870:1 25871:2 25872:2 25877:1 25880:1 25898:1 25900:5 25915:1 25925:1 25927:7 25928:1 25930:1 25957:1 25959:1 25988:2 25994:1 25997:2 26007:1 26019:1 26021:1 26025:1 26032:1 26072:1 26095:1 26099:1 26100:2 26107:1 26115:1 26123:1 26171:2 26204:1 26211:1 26216:1 26229:1 26260:2 26268:1 26282:1 26283:1 26289:2 26317:1 26319:1 26335:1 26346:1 26349:1 26365:1 26368:2 26406:3 26413:1 26417:1 26433:1 26439:2 26446:1 26448:1 26454:1 26459:2 26473:1 26482:1 26484:1 26485:2 26490:1 26508:20 26511:1 26513:3 26530:1 26537:1 26539:1 26542:1 26547:4 26552:1 26562:1 26564:1 26567:1 26576:1 26591:1 26610:3 26619:1 26622:1 26634:1 26645:5 26655:4 26662:1 26692:11 26700:1 26733:1 26745:1 26759:1 26764:2 26777:1 26782:1 26787:1 26800:1 26807:1 26813:1 26834:2 26852:2 26864:2 26867:1 26869:2 26878:1 26882:2 26886:1 26904:1 26921:1 26944:1 26946:2 26948:2 26952:1 26953:2 26961:1 26965:1 26966:2 26972:1 26975:1 26977:1 26978:1 26982:1 27005:2 27012:1 27016:2 27019:3 27020:5 27058:1 27062:1 27063:1 27073:1 27074:1 27078:2 27085:1 27096:3 27150:4 27154:1 27160:1 27179:1 27197:1 27202:1 27223:1 27227:1 27236:1 27241:1 27247:3 27248:2 27309:3 27333:1 27370:1 27379:1 27390:2 27394:1 27396:1 27402:2 27407:1 27433:2 27434:2 27440:1 27447:3 27459:1 27477:1 27491:2 27492:1 27506:1 27516:1 27521:1 27530:1 27534:2 27547:3 27553:3 27564:1 27569:1 27572:2 27590:1 27598:1 27609:3 27613:1 27619:1 27635:1 27637:1 27638:1 27643:4 27652:1 27667:1 27669:1 27672:1 27683:4 27689:1 27706:1 27715:3 27716:5 27723:3 27729:1 27730:1 27732:1 27734:1 27739:7 27765:1 27775:5 27778:1 27784:4 27789:1 27792:1 27797:1 27812:1 27820:1 27838:1
|
6089e40461cfeb1eaa7c873ea94bb45f5f582619 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set7/s_Electronic_Instrumentation_And_Measurements_J._B._Gupta_1859.zip/Electronic_Instrumentation_And_Measurements_J._B._Gupta_1859/CH5/EX5.6/exa_5_6.sce | 14a3df51fb4fe52801fb88fb674b00ee2a1b65b8 | [] | 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 | 196 | sce | exa_5_6.sce | errcatch(-1,"stop");mode(2);// Exa 5.6
;
;
// Given data
N=8;// Number of bits
f=1*10^6;// in Hz
T=1/f;
Tc= N*T;// in second
disp(Tc*10^6,"Time of conversion in micro second")
exit();
|
0ad4fd9702ae9cf46b2f57b73652684dce933f4c | 449d555969bfd7befe906877abab098c6e63a0e8 | /22/CH4/EX4.16/ch4ex16.sce | f13e0303e1fd69ed23391b74a0c9d59010eea244 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 225 | sce | ch4ex16.sce | //signals and systems
//Unilateral Laplace Transform: transfer function
//example 4.16
s = %s;
syms t s;
y1 =laplace('24*%e^(-3*t)+48*%e^(-4*t)',t,s);
disp(y1)
y2 =laplace('16*%e^(-3*t)-12*%e^(-4*t)',t,s);
disp(y2)
|
84d808142b4ac92faa70526e5a58bb0c8f20e613 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1760/CH3/EX3.54/EX3_54.sce | 3db51a7f682ece4de9fbe2f57d20125cce867118 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 847 | sce | EX3_54.sce | //EXAMPLE 3-54 PG NO-207-208
Van=161.66+%i*0;
Vbn=-80.83-%i*140;
Vcn=-80.83+%i*140;
Z1=10+%i*0;
Z2=8.66+%i*5;
Z3=8.66-%i*5;
YA=1/Z1;
disp('i) ADMITTANCE (YA) is in rectangular form = '+string (YA) +' siemens ');
YB=1/Z2;
disp('ii) ADMITTANCE (YB) is in rectangular form = '+string (YB) +' siemens ');
YC=1/Z3;
disp('iii) ADMITTANCE (YC) is in rectangular form = '+string (YC) +' siemens ');
Von=-[(Van*YA)+(Vbn*YB)+(Vcn*YC)]/[YA+YB+YC];
disp('iv) VOLTAGE (Von) is in rectangular form = '+string (Von) +' V ');
Vao=Van-Von;
disp('v) VOLTAGE (Vao) is in rectangular form = '+string (Vao) +' V ');
Vbo=Vbn-Von;
disp('vi) VOLTAGE (Vbo) is in rectangular form = '+string (Vbo) +' V ');
Vco=Vcn-Von;
disp('vii) VOLTAGE (Vco) is in rectangular form = '+string (Vco) +' V ');
|
c7ac09185ebf4c8ccbc4f77de9804806eea63517 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3784/CH2/EX2.5/Ex2_5.sce | 62786d27b62324c456d6f35b29db085821e9600a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 318 | sce | Ex2_5.sce | clc
//variable initialisation
V1=450 //terminal voltage in volts
Vd=30 //voltage drop in volts
V2=420 //input supply in volts
f=50 //frequency in Hz
a1=0//Firing Angle of Converter
//solution
Vt=V1+Vd
V0_0=(3*sqrt(2))/(%pi)
V0_a=480
a2=acosd(V0_a/(V0_0*V2))
printf('\n\n The Firing Angle=%0.1f\n\n',a2)
|
a27396e4e2ab189f12994b16fc62e826f58833ab | 449d555969bfd7befe906877abab098c6e63a0e8 | /60/CH2/EX2.1/ex_1.sce | e4fd2619f7adfeda9206362c4b7c7fa5fdf5f779 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 626 | sce | ex_1.sce | //Example 2.1
// Given p(6000)=1/3 , p(6001)=-2/3
// From p(x)=a0+a1*x , by substituting x=6000 & x=6001
// we get equations a0+a1*(6000)=1/3 & a0+a1*(6001)=-2/3
//solving the above equations we get
a0=6000.3
a1=-1
deff('[y]=f(x)','y=6000.3-x')
f(6000)
f(6001)
// y=6000.3-x , equation recovers only only the first digit of the
// given function values,a loss of four decimal digits
// remedy for such loss of significance is the use of SHIFTED POWER FORM
//p(x)=a0 + a1*(x-c) + a2*(x-c)^2 + .......+an*(x-c)^n
//if we choose the center c to be 6000
deff('[y]=p(x)','y=0.33333-(x-6000)')
p(6000)
p(6001) |
3122e2bb49859aab44868ce4c2c5f6e51d4d0aad | 449d555969bfd7befe906877abab098c6e63a0e8 | /1217/CH1/EX1.8/Exa1_8.sce | a7f6c0d234ffd41c26c8d63ac019a6a0117fee71 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,068 | sce | Exa1_8.sce | //Exa 1.8
clc;
clear;
close;
//given data
BETAac=100;//unitless
BETAdc=100;//unitless
VBE3=0.715;//in volts
VD1=0.715;//in Volts
VZ=6.2;//in Volts
VT=25;//in mVolts
IZt=41;//in mA
VCC=10;//in Volts
VEE=-10;//in Volts
RC1=2.7;//in kohm
RC=4.7;//in kohm
//Part (a)
VB3=VEE+VZ+VD1;//in volts
VE3=VB3-VBE3
IE3=(VE3-VEE)/RC1;//in mA
disp("As the differential amplifier is symmetrical, ICQ1=IE1=ICQ2=IE2");
IE2=IE3/2;//in mA
ICQ1=IE2;//in mA
ICQ2=IE2;//in mA
IE1=IE2;//in mA
VCEQ=VCC+VBE3-RC*ICQ1// formula for VCEQ
disp("Hence operating point for Q1 and Q2 are : ")
disp(VCEQ,"VCEQ in volts is :")
disp(ICQ1,"ICQ in mA is :")
disp("and the operating point for Q3 will be : ")
VCE3=-VBE3-VE3;//in Volts
disp(VCE3,"VCE3 in volts is :")
IC3=IE3;//in mA
disp(IE3,"IE3 in mA is :")
//Part (b)
re=(2*VT)/IC3;//in ohm
Ad=(RC*1000)/re;//unitless
disp(Ad,"Differential voltage gain is ")
//Part (c)
Ri=2*BETAac*re;//in ohm
disp(Ri/1000,"Input resistance in kohm is : ")
//Answer in the book is not as much accurate as calculated by Scilab |
471ab6f9abfd14814df81441e7e67e100959893b | 9302f49be6fdfde3637ce743435bd9ce524c165f | /squelette/src/poisson/poisson.sce | 430179ee4e373e887b1c89880c58338d1bf1af4f | [] | no_license | OmarBenchekroun99/simu_ecoulement_fluide | 8eaf0ff7798c929c2eaf5c0c544664f4d80069aa | c5566d4f87428c10f4bf27037b4a28eaed8eb00c | refs/heads/master | 2020-08-07T01:03:10.012702 | 2019-10-06T19:38:54 | 2019-10-06T19:38:54 | 213,231,718 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,974 | sce | poisson.sce |
// Retourne la fréquence d'échantillonage de la transformée de Fourier discrète
function [freqs]=fftfreq(N, L)
if modulo(N,2) == 0 then
k = 0:(N/2 - 1)
k = cat(2, k, -(N/2):(-1))
else
k = 0:((N-1)/2)
k = cat(2, k, -((N - 1)/2):(-1))
end
freqs = (2*complex(0,1)*%pi)/L*k
endfunction
// Résolution de l'équation de Poisson en dimension 2 en utilisant la FFT
// laplacien(psi) = f
// Entrée: f de taille (Ny,Nx) sur une domaine de taille (Ly,Lx)
// Sortie: psi, solution de l'équation
function [psi]=poisson_2d(f, Nx, Ny, Lx, Ly)
kx = fftfreq(Nx, Lx)
ky = fftfreq(Ny, Ly)
psi_hat = zeros(Ny,Nx)
f_hat = fft(f, "nonsymmetric")
for p=1:Ny
for q=1:Nx
if p == 1 & q == 1 then
psi_hat(p,q) = 0
else
psi_hat(p,q) = f_hat(p,q) /(kx(q)^2 + ky(p)^2)
end
end
end
psi = real(ifft(psi_hat, "nonsymmetric"))
endfunction
// Résolution de l'équation de Poisson avec rot en dimension 2 en utilisant la FFT
// laplacien(Ux) = -dW/dy
// laplacien(Uy) = +dW/dx
// Entrée: champs de vorticité W de taille (Ny,Nx) sur un domaine de taille (Ly,Lx)
// Sortie: Ux et Uy, vitesses solution des équations
function [Ux,Uy]=poisson_curl_2d(W, Nx, Ny, Lx, Ly)
// TODO: Calculer Ux et Uy à partir de la vorticité par FFT avec l'option 'nonsymmetric'
kx = fftfreq(Nx, Lx)
ky = fftfreq(Ny, Ly)
ux_hat = zeros(Ny,Nx)
uy_hat = zeros(Ny,Nx)
w_hat = fft(W, "nonsymmetric")
for p=1:Ny
for q=1:Nx
if p == 1 & q == 1 then
ux_hat(p,q) = 0
uy_hat(p,q) = 0
else
ux_hat(p,q) = -ky(p)*w_hat(p,q)/(kx(q)^2 + ky(p)^2)
uy_hat(p,q) = kx(q)*w_hat(p,q)/(kx(q)^2 + ky(p)^2)
end
end
end
Ux = real(ifft(ux_hat, "nonsymmetric"))
Uy = real(ifft(uy_hat, "nonsymmetric"))
endfunction
|
fbd999e98929c0d4091eafaa4cfd22ab80a6db8a | 51635684d03e47ebad12b8872ff469b83f36aa52 | /external/gcc-12.1.0/gcc/testsuite/ada/acats/tests/a/a26007a.tst | d40aa3d13e98d671fa3268682b1e9fb617a67a67 | [
"LGPL-2.1-only",
"FSFAP",
"LGPL-3.0-only",
"GPL-3.0-only",
"GPL-2.0-only",
"GCC-exception-3.1",
"LGPL-2.0-or-later",
"Zlib",
"LicenseRef-scancode-public-domain"
] | permissive | zhmu/ananas | 8fb48ddfe3582f85ff39184fc7a3c58725fe731a | 30850c1639f03bccbfb2f2b03361792cc8fae52e | refs/heads/master | 2022-06-25T10:44:46.256604 | 2022-06-12T17:04:40 | 2022-06-12T17:04:40 | 30,108,381 | 59 | 8 | Zlib | 2021-09-26T17:30:30 | 2015-01-31T09:44:33 | C | UTF-8 | Scilab | false | false | 1,883 | tst | a26007a.tst | -- A26007A.TST
-- Grant of Unlimited Rights
--
-- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
-- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained
-- unlimited rights in the software and documentation contained herein.
-- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making
-- this public release, the Government intends to confer upon all
-- recipients unlimited rights equal to those held by the Government.
-- These rights include rights to use, duplicate, release or disclose the
-- released technical data and computer software in whole or in part, in
-- any manner and for any purpose whatsoever, and to have or permit others
-- to do so.
--
-- DISCLAIMER
--
-- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
-- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED
-- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
-- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE
-- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
-- PARTICULAR PURPOSE OF SAID MATERIAL.
--*
-- CHECK THAT A STRING LITERAL HAVING THE MAXIMUM PERMITTED LINE LENGTH
-- CAN BE GENERATED.
-- TBN 3/5/86
WITH REPORT; USE REPORT;
PROCEDURE A26007A IS
MAX_LEN_STRING_LIT : STRING (1 .. $MAX_IN_LEN - 2);
-- MAX_IN_LEN IS THE MAXIMUM LINE LENGTH PERMITTED.
BEGIN
TEST ("A26007A", "CHECK THAT A STRING LITERAL HAVING THE " &
"MAXIMUM PERMITTED LINE LENGTH CAN BE GENERATED");
MAX_LEN_STRING_LIT :=
$MAX_STRING_LITERAL
;
-- MAX_STRING_LITERAL IS A STRING LITERAL THAT IS MAXIMUM LENGTH.
-- QUOTES ARE COUNTED AS PART OF THE STRING LITERAL.
RESULT;
END A26007A;
|
0ba4d47c45ef32a1d9a3ddd2ea3f0fe9de7af40e | 449d555969bfd7befe906877abab098c6e63a0e8 | /944/CH5/EX5.12/example5_12_TACC.sce | e5c02c41100fa2bce670866f6d85cd8681e4c8aa | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 482 | sce | example5_12_TACC.sce | //example 5.12
clear;
clc;
//Given:
n=1;//no. of moles
T=273;//temperature [K]
Hf=6000;//enthalpy of fusion at 273K [J/mol]
k=1.38*(10^-23);//boltzmann constant[J/K]
//To find the relative number of distinguishable quantum states in 1 mole of water and ice at 273K
p=Hf/(k*T)/2.303;
w=10^(p);//w is the relative no. of distinguishable quantum states
printf("The relative no. of distinguishable quantum states in 1 mole of water and ice at 273K is %f",w);
|
fa679016b12eae4491e03a4239e7ffee918b17c0 | 4a1effb7ec08302914dbd9c5e560c61936c1bb99 | /Project 2/Experiments/Ripper-C/results/Ripper-C.vehicle-10-1tra/result9s0.tst | 25e388cae1128f88cecfb70bdac59877883293f6 | [] | 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 | 1,902 | tst | result9s0.tst | @relation vehicle
@attribute Compactness integer[73,119]
@attribute Circularity integer[33,59]
@attribute Distance_circularity integer[40,112]
@attribute Radius_ratio integer[104,333]
@attribute Praxis_aspect_ratio integer[47,138]
@attribute Max_length_aspect_ratio integer[2,55]
@attribute Scatter_ratio integer[112,265]
@attribute Elongatedness integer[26,61]
@attribute Praxis_rectangular integer[17,29]
@attribute Length_rectangular integer[118,188]
@attribute Major_variance integer[130,320]
@attribute Minor_variance integer[184,1018]
@attribute Gyration_radius integer[109,268]
@attribute Major_skewness integer[59,135]
@attribute Minor_skewness integer[0,22]
@attribute Minor_kurtosis integer[0,41]
@attribute Major_kurtosis integer[176,206]
@attribute Hollows_ratio integer[181,211]
@attribute Class{van,saab,bus,opel}
@inputs Compactness,Circularity,Distance_circularity,Radius_ratio,Praxis_aspect_ratio,Max_length_aspect_ratio,Scatter_ratio,Elongatedness,Praxis_rectangular,Length_rectangular,Major_variance,Minor_variance,Gyration_radius,Major_skewness,Minor_skewness,Minor_kurtosis,Major_kurtosis,Hollows_ratio
@outputs Class
@data
van van
van van
bus opel
saab opel
saab saab
saab opel
opel opel
bus bus
bus bus
van van
opel opel
saab saab
van van
van van
bus bus
van van
opel van
van van
van van
saab van
saab opel
bus bus
saab saab
opel opel
opel saab
bus bus
opel van
saab opel
opel saab
opel opel
van van
bus bus
saab van
saab saab
van van
opel opel
opel opel
van van
saab opel
opel opel
saab saab
bus bus
saab opel
opel opel
bus bus
opel opel
bus bus
bus bus
saab saab
bus bus
van van
van van
opel saab
bus bus
opel opel
opel opel
opel saab
bus opel
van van
van van
saab opel
van van
opel saab
saab saab
saab saab
opel opel
saab saab
bus bus
opel opel
bus bus
bus bus
bus opel
bus bus
opel opel
van van
saab opel
saab bus
saab opel
bus bus
saab opel
van van
van van
bus bus
bus bus
|
dcfafcf17553807b72eecf37be80bbf298673144 | cb3c54411a4f3432c21524a69262b6655ba46ac1 | /Calculo_Numerico/Ajuste_Logaritmico.sci | 2a521a83923d8d8300e8051adff2db6442f7803f | [] | no_license | draetus/faculdade_trabalhos | ae85c0c89888c2ad956c6aa7147a801d0cdf4f9a | e9971b4478112fbe7333ad71d1b4f1620b384eb6 | refs/heads/master | 2022-12-30T19:39:42.191109 | 2020-10-16T13:12:03 | 2020-10-16T13:12:03 | 87,357,566 | 4 | 2 | null | null | null | null | UTF-8 | Scilab | false | false | 369 | sci | Ajuste_Logaritmico.sci | clear
close
clc
valor = 15
x = [1; 2; 3; 4; 5; ;6 ;7; 8; 9; 10; 11]
y = [1.7; 2.5; 3.8; 4.4; 4.9; 5.2; 5.5; 5.6; 5.8; 5.9; 6]
X = [size(x,1) sum(log(x)); sum(log(x)) sum(log(x)^2)]
Y = [sum(y); sum(log(x).*y)]
A = X\Y
a = A(2,1)
b = exp(A(1,1)/A(2,1))
resultado = a*log(b*valor)
disp (resultado, "Resultado: ")
disp (b, "b: ", a, "a: ")
disp ("f(x) = a*log(b*x)")
|
34651501047e424c259ca9716198363c4395c330 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.3.1/macros/optim/pack.sci | c10da14bee1285fcfce8f6cd72debe7d65432018 | [
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain",
"MIT"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 235 | sci | pack.sci | function [M,sel]=pack(M,blck_szs)
//utility function (for use with semidef)
sel=[]
kk=0
blck_szs=matrix(blck_szs,1,size(blck_szs,'*'))
for ni=blck_szs
k=kk
for j=1:ni
sel=[sel,k+(j:ni)]
k=k+ni
end
kk=kk+ni*ni
end
M=M(sel,:)
|
fe0d34284ffb17052f9c202428e3f02f748196d0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /548/CH6/EX6.20/6_20.sce | 6429a643c4e0c5e6bb1a0969d6776214e605c21e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 454 | sce | 6_20.sce | pathname=get_absolute_file_path('6.20.sce')
filename=pathname+filesep()+'6.20data.sci'
exec(filename)
R1_R2=sqrt((n2^2-1)/(n1^2-1));//ratio(R1/R2)
disp(R1_R2,"ratio of turn radius :R1/R2=sqrt((n2^2-1)/(n1^2-1))")
w1_w2=sqrt((n1^2-1)/(n2^2-1));//ratio(w1/w2)
disp(w1_w2,"ratio of turn rate :w1/w2=sqrt((n1^2-1)/(n2^2-1))")
printf("\Answer:\n")
printf("\n\Ratio of turn radius: %f \n\n",R1_R2)
printf("\n\Ratio of turn rate: %f m/s\n\n",w1_w2)
|
edc1a98e42d40b9481c32da1fbb03f2500dff53c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3137/CH3/EX3.9/Ex3_9.sce | 41fb565548dd328a76d6798c25ea718b05bec079 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,074 | sce | Ex3_9.sce | //Initilization of variables
A=80 //N
B=120 //N
C=100 //N
D=50 //N
thetaA=((90*%pi)/180) //radians
thetaB=((150*%pi)/180) //radians
thetaC=((45*%pi)/180) //radians
thetaD=((340*%pi)/180) //radians
//Calculations
Ax=A*cos(thetaA) //N
Ay=A*sin(thetaA) //N
Bx=B*cos(thetaB) //N
By=B*sin(thetaB) //N
Cx=C*cos(thetaC) //N
Cy=C*sin(thetaC) //N
Dx=D*cos(thetaD) //N
Dy=D*sin(thetaD) //N
M_Ax=0 //N-m
M_Ay=0 //N-m
M_Bx=-Bx*5 //N-m
M_By=By*8 //N-m
M_Cx=-Cx*1 //N-m
M_Cy=Cy*1 //N-m
M_Dx=-Dx*-1 //N-m
M_Dy=Dy*8 //N-m
Fx=Ax+Bx+Cx+Dx //N
Fy=Ay+By+Cy+Dy //N
R=sqrt(Fx^2+Fy^2) //N
M_O=M_Dx+M_Dy+M_Cx+M_Cy+M_Bx+M_By+M_Ax+M_Ay //N-m
theta=atan(Fy/Fx) //radians
theta_x=(theta*180)/%pi //degrees
//Appliying Varignons theorem
x=M_O/R //m
//Result
clc
printf('The resultant of the force system is:%f N\n',R) //N
printf('The moment about point O is:%f N\n',M_O) //N
printf('The resultant acts at and angle of %f degrees with respect to X-Axis degrees\n',theta_x) //degrees
printf('The resultant of the force system acts at %f meters from point O',x) //m
|
971b399decc8d2accbfed2325dc4df732207d3e5 | c7c0836420b1440812466e25f2fb15dc41ae6e3c | /macros/SOCKET_open.sci | eaa2cc742e69d702570242ac8d82414dc50cc3bb | [] | no_license | sengupta/scilab-socket | b13ba613a88e334ec1e2a35fed320d8908de1399 | 3da2794dc38caa2593928cac0a734ad3ea9f3b19 | refs/heads/master | 2016-09-03T06:54:50.197439 | 2012-04-03T11:25:22 | 2012-04-03T11:25:22 | 3,917,275 | 2 | 2 | null | null | null | null | UTF-8 | Scilab | false | false | 308 | sci | SOCKET_open.sci | // path=SCI+"/contrib/SOCKET/help/";
// txt = help_skeleton("SOCKET_open",path)
function SOCKET_open(id,adress,port)
SOCKET_close(id);
TCL_EvalStr(["set tclsocket"+string(id)+" [socket "+adress+" "+string(port)+"]";"fconfigure $tclsocket"+string(id)+" -blocking 0 -translation auto"]);
endfunction |
9826a20295e3fc09724732736d95c1ed5296a13c | 449d555969bfd7befe906877abab098c6e63a0e8 | /671/CH9/EX9.8/9_8.sce | b1fed8da4c209f54c6b4f963b8176e7ed1a9aa4e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 229 | sce | 9_8.sce |
betaa=acos(0)*2/5
coilpitch=%pi-betaa
disp(coilpitch/%pi*180)
P=6
S=72
m=S/P
gammaa=%pi/m
cpis=150/180*%pi
betaa=%pi-cpis
Kp1=cos(betaa/2)
Kp3=cos(5*betaa/2)
Kp13=cos(13*betaa/2)
disp(Kp1)
disp(Kp3)
disp(Kp13)
|
0d9dbf4b7d732355ab962691da0b0009cbaaaa62 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1541/CH2/EX2.29/Chapter2_Example29.sce | d598b4b640ef05d5c6edb16099d98a0e97d47323 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 609 | sce | Chapter2_Example29.sce | //Chapter-2, Example 2.29, Page 2.52
//=============================================================================
clc
clear
//INPUT DATA
Resistance=3;//% Resistance drop
Reactance=6;//% Reactance drop
//CALCULATIONS
q=atand(Reactance/Resistance);//Phase angle in degree
cosq=cosd(q);//Power factor
Regulation=((Resistance*cosq)+(Reactance*sind(q)));//% Regulation at the power factor
//OUTPUT
mprintf('Power factor is %3.2f \nPercentage regulation at this power factor is %3.1f percent',cosq,Regulation)
//=================================END OF PROGRAM==============================
|
7568131cbd2b52b358716f7b2beb4aa45d6c675d | 449d555969bfd7befe906877abab098c6e63a0e8 | /3776/CH11/EX11.6/Ex11_6.sce | a2b8da993bb6d547e5dad51ce66081ce17d1c1c2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,919 | sce | Ex11_6.sce | clear
//Given
//
L = 15 //ft - The length of the each rod
A = 46.7 //sq.in - The length of the crossection
r_min = 4 //in - The radius of gyration
stress_yp = 36 //ksi - the yielding point stress
E = 29*(10**3) //ksi - The youngs modulus
C_c = ((2*(%pi**2)*E/stress_yp)**0.5) //Slenderness ratio L/R
C_s1 = L*12/r_min // Slenderness ratio L/R of the present situation
//According to AISC formulas
printf ("a)calculated Le/r ratio is %f",C_s1)
if (C_s1 <C_c) then
printf ("\n a)Since calculated Le/r ratio is less than Cc(126), we can apply the second ASD formula")
else
print ("The calculation is not possible")
end
F_S = 5.0/3 +3*C_s1/(8*C_c) -(C_s1**3)/(8*C_c**3) //Safety factor
Stress_all = (1 - (C_s1**2)/(2*C_c**2))*stress_yp/F_S //The allowable stress
printf("\n a) The allowable stress in this case is %0.2f kips",Stress_all)
printf("\n a) The allowable pressure in this case is %0.2f kips",Stress_all*A)
//Part - B
//Given
L = 40 //ft - The length of the each rod
A = 46.7 //sq.in - The length of the crossection
r_min = 4 //in - The radius of gyration
stress_yp = 36 //ksi - the yielding point stress
E = 29*(10**3) //ksi - The youngs modulus
C_c = ((2*(%pi**2)*E/stress_yp)**0.5) //Slenderness ratio L/R
C_s = L*12/r_min // Slenderness ratio L/R of the present situation
//According to AISC formulas
printf ("\n b)calculated Le/r ratio is %f",C_s)
if C_s <C_c then
printf("\n b)Since calculated Le/r ratio is less than Cc, we can apply the second ASD formula")
else
printf("The calculation is not possible")
end
F_S = 5.0/3 +3*C_s/(8*C_c) -(C_s**3)/(8*C_c**3) //Safety factor
Stress_all = (1 - (C_s**2)/(2*C_c**2))*stress_yp/F_S //The allowable stress
printf("\n b) The allowable stress in this case is %0.2f kips",Stress_all)
printf("\n b) The allowable pressure in this case is %0.2f kips",Stress_all*A)
printf("\n Similarly, for a column fixed at one end")
C_s = L*12/r_min*.8 // Slenderness ratio L/R of the present situation
//According to AISC formulas
printf ("\n b)calculated Le/r ratio is %f",C_s)
if C_s <C_c then
printf("\n b)Since calculated Le/r ratio is less than Cc, we can apply the second ASD formula")
else
printf("The calculation is not possible")
end
F_S = 5.0/3 +3*C_s/(8*C_c) -(C_s**3)/(8*C_c**3) //Safety factor
Stress_all = (1 - (C_s**2)/(2*C_c**2))*stress_yp/F_S //The allowable stress
printf("\n b) The allowable stress in this case is %0.2f kips",Stress_all)
printf("\n b) The allowable pressure in this case is %0.0f kips",Stress_all*A)
|
205ff8302ac247ca0fc2023a56a320428f30eb60 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3733/CH35/EX35.4/Ex35_4.sce | 150bea4d840e70152f541a427c21d77126c4c56d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 945 | sce | Ex35_4.sce | // Example 35_4
clc;funcprot(0);
//Given data
// C_1=100*10^4+ 600 kW+0.1 kWh
// C_2=60*10^4+ 350 kW+0.2 kWh
A_1=600;
A_2=350;
B_1=0.1;
B_2=0.2;
t=8760;// hours
// Calculation
// C=[100*10^4+600x+0.1S_a]+[60*10^4+350*(P-x)+0.2*(S_t-S_a)];
// The required condition is dC/dx=0;
// dS_a=2500dx;....(a)
// From Fig.Prob.35.4(b)
// dS=H.dx;....(b)
H=2500;// hrs
// From similar triangles oab and dcb
ob=50000;// kW
L_b=ob;// kW
db=(H*ob)/t;// Installed capacity for station B in kW
S_b=(1/2)*db*H;// Units generated by station B
oa=t;// hours
S_t=(1/2)*ob*oa;// Total units generated in kWh
S_a=S_t-S_b;// Units generated by station A
L_a=ob-db;// kW
C_a=100*10^4+(A_1*L_a)+(0.1*S_a);// rupees
C_b=60*10^4+(A_2*ob)+(0.1*S_b);// rupees
C=C_a+C_b;// rupees
Gc=(C/S_t)*100;// Overall cost of generation in paise/kWh
printf('\nOverall cost of generation=%0.1f paise/kWh',Gc);
// The answer vary due to round off error
|
e702e89cbe5a5db5cd790152a78e5d96c48d4e3c | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/CONT/QX48DYH/ATWM1_Working_Memory_MEG_QX48DYH_Session2/ATWM1_Working_Memory_MEG_Salient_Cued_Run2.sce | 8eeb6aa75deab0931a8b563f00b003ad5270a5b2 | [] | no_license | atwm1/Presentation | 65c674180f731f050aad33beefffb9ba0caa6688 | 9732a004ca091b184b670c56c55f538ff6600c08 | refs/heads/master | 2020-04-15T14:04:41.900640 | 2020-02-14T16:10:11 | 2020-02-14T16:10:11 | 56,771,016 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 49,383 | sce | ATWM1_Working_Memory_MEG_Salient_Cued_Run2.sce | # ATWM1 MEG Experiment
scenario = "ATWM1_Working_Memory_MEG_salient_cued_run2";
#scenario_type = fMRI; # Fuer Scanner
#scenario_type = fMRI_emulation; # Zum Testen
scenario_type = trials; # for MEG
#scan_period = 2000; # TR
#pulses_per_scan = 1;
#pulse_code = 1;
pulse_width=6;
default_monitor_sounds = false;
active_buttons = 2;
response_matching = simple_matching;
button_codes = 10, 20;
default_font_size = 36;
default_font = "Arial";
default_background_color = 0 ,0 ,0 ;
write_codes=true; # for MEG only
begin;
#Picture definitions
box { height = 382; width = 382; color = 0, 0, 0;} frame1;
box { height = 369; width = 369; color = 255, 255, 255;} frame2;
box { height = 30; width = 4; color = 0, 0, 0;} fix1;
box { height = 4; width = 30; color = 0, 0, 0;} fix2;
box { height = 30; width = 4; color = 255, 0, 0;} fix3;
box { height = 4; width = 30; color = 255, 0, 0;} fix4;
box { height = 369; width = 369; color = 42, 42, 42;} background;
TEMPLATE "StimuliDeclaration.tem" {};
trial {
sound sound_incorrect;
time = 0;
duration = 1;
} wrong;
trial {
sound sound_correct;
time = 0;
duration = 1;
} right;
trial {
sound sound_no_response;
time = 0;
duration = 1;
} miss;
# Start of experiment (MEG only) - sync with CTF software
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
} expStart;
time = 0;
duration = 1000;
code = "ExpStart";
port_code = 80;
};
# baselinePre (at the beginning of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
}default;
time = 0;
duration = 10000;
#mri_pulse = 1;
code = "BaselinePre";
port_code = 91;
};
TEMPLATE "ATWM1_Working_Memory_MEG.tem" {
trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4;
41 61 292 292 399 125 2042 2992 2392 fixation_cross gabor_035 gabor_170 gabor_003 gabor_124 gabor_035_alt gabor_170_alt gabor_003 gabor_124 "2_1_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2400_gabor_patch_orientation_035_170_003_124_target_position_1_2_retrieval_position_1" gabor_081_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_1_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_081_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2192 2992 2092 fixation_cross gabor_109 gabor_049 gabor_165 gabor_075 gabor_109_alt gabor_049_alt gabor_165 gabor_075 "2_2_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2100_gabor_patch_orientation_109_049_165_075_target_position_1_2_retrieval_position_2" gabor_circ gabor_049_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_2_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_049_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2142 2992 1992 fixation_cross gabor_116 gabor_168 gabor_089 gabor_031 gabor_116_alt gabor_168 gabor_089_alt gabor_031 "2_3_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2000_gabor_patch_orientation_116_168_089_031_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_139_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_3_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_139_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1792 2992 1942 fixation_cross gabor_107 gabor_090 gabor_140 gabor_059 gabor_107_alt gabor_090 gabor_140_alt gabor_059 "2_4_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_1950_gabor_patch_orientation_107_090_140_059_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_140_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_4_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_140_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2092 2992 2092 fixation_cross gabor_175 gabor_108 gabor_042 gabor_086 gabor_175_alt gabor_108_alt gabor_042 gabor_086 "2_5_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2100_gabor_patch_orientation_175_108_042_086_target_position_1_2_retrieval_position_1" gabor_128_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_5_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_128_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2242 2992 2492 fixation_cross gabor_098 gabor_008 gabor_046 gabor_083 gabor_098_alt gabor_008 gabor_046 gabor_083_alt "2_6_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2500_gabor_patch_orientation_098_008_046_083_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_083_framed blank blank blank blank fixation_cross_target_position_1_4 "2_6_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_083_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1742 2992 1892 fixation_cross gabor_177 gabor_040 gabor_017 gabor_058 gabor_177_alt gabor_040 gabor_017 gabor_058_alt "2_7_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_1900_gabor_patch_orientation_177_040_017_058_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_103_framed blank blank blank blank fixation_cross_target_position_1_4 "2_7_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_103_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 1942 2992 1892 fixation_cross gabor_001 gabor_075 gabor_155 gabor_019 gabor_001 gabor_075_alt gabor_155 gabor_019_alt "2_8_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_UncuedRetriev_300_300_399_1950_3000_1900_gabor_patch_orientation_001_075_155_019_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_108_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_8_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_108_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1792 2992 1892 fixation_cross gabor_006 gabor_094 gabor_029 gabor_114 gabor_006 gabor_094 gabor_029_alt gabor_114_alt "2_9_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_1900_gabor_patch_orientation_006_094_029_114_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_165_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_9_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_165_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2142 2992 2092 fixation_cross gabor_128 gabor_148 gabor_038 gabor_164 gabor_128 gabor_148_alt gabor_038_alt gabor_164 "2_10_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2100_gabor_patch_orientation_128_148_038_164_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_038_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_10_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_038_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1742 2992 2092 fixation_cross gabor_084 gabor_057 gabor_017 gabor_169 gabor_084_alt gabor_057 gabor_017 gabor_169_alt "2_11_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2100_gabor_patch_orientation_084_057_017_169_target_position_1_4_retrieval_position_1" gabor_132_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_11_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_132_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1892 2992 2242 fixation_cross gabor_015 gabor_140 gabor_124 gabor_180 gabor_015_alt gabor_140 gabor_124_alt gabor_180 "2_12_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2250_gabor_patch_orientation_015_140_124_180_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_074_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_12_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_074_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 1942 2992 2092 fixation_cross gabor_071 gabor_043 gabor_013 gabor_160 gabor_071 gabor_043 gabor_013_alt gabor_160_alt "2_13_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_UncuedRetriev_300_300_399_1950_3000_2100_gabor_patch_orientation_071_043_013_160_target_position_3_4_retrieval_position_1" gabor_119_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_13_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_119_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1842 2992 1942 fixation_cross gabor_004 gabor_157 gabor_081 gabor_028 gabor_004 gabor_157_alt gabor_081 gabor_028_alt "2_14_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_1950_gabor_patch_orientation_004_157_081_028_target_position_2_4_retrieval_position_2" gabor_circ gabor_112_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_14_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_112_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1892 2992 2042 fixation_cross gabor_095 gabor_124 gabor_173 gabor_063 gabor_095 gabor_124 gabor_173_alt gabor_063_alt "2_15_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2050_gabor_patch_orientation_095_124_173_063_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_063_framed blank blank blank blank fixation_cross_target_position_3_4 "2_15_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_063_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 1792 2992 2442 fixation_cross gabor_097 gabor_063 gabor_146 gabor_117 gabor_097_alt gabor_063_alt gabor_146 gabor_117 "2_16_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_UncuedRetriev_300_300_399_1800_3000_2450_gabor_patch_orientation_097_063_146_117_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_146_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_16_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_146_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2092 2992 2592 fixation_cross gabor_104 gabor_036 gabor_073 gabor_153 gabor_104 gabor_036 gabor_073_alt gabor_153_alt "2_17_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2600_gabor_patch_orientation_104_036_073_153_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_017_framed blank blank blank blank fixation_cross_target_position_3_4 "2_17_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_017_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2192 2992 2292 fixation_cross gabor_160 gabor_111 gabor_086 gabor_037 gabor_160_alt gabor_111 gabor_086_alt gabor_037 "2_18_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2300_gabor_patch_orientation_160_111_086_037_target_position_1_3_retrieval_position_1" gabor_021_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_18_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_021_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2242 2992 1942 fixation_cross gabor_090 gabor_123 gabor_008 gabor_035 gabor_090_alt gabor_123 gabor_008 gabor_035_alt "2_19_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_1950_gabor_patch_orientation_090_123_008_035_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_035_framed blank blank blank blank fixation_cross_target_position_1_4 "2_19_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_035_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1892 2992 2192 fixation_cross gabor_033 gabor_172 gabor_090 gabor_015 gabor_033 gabor_172_alt gabor_090_alt gabor_015 "2_20_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2200_gabor_patch_orientation_033_172_090_015_target_position_2_3_retrieval_position_2" gabor_circ gabor_172_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_20_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_172_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1992 2992 2142 fixation_cross gabor_002 gabor_122 gabor_159 gabor_177 gabor_002_alt gabor_122 gabor_159 gabor_177_alt "2_21_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2150_gabor_patch_orientation_002_122_159_177_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_041_framed blank blank blank blank fixation_cross_target_position_1_4 "2_21_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_041_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 1892 2992 2192 fixation_cross gabor_180 gabor_045 gabor_100 gabor_027 gabor_180_alt gabor_045 gabor_100_alt gabor_027 "2_22_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_UncuedRetriev_300_300_399_1900_3000_2200_gabor_patch_orientation_180_045_100_027_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_027_framed blank blank blank blank fixation_cross_target_position_1_3 "2_22_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_027_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1942 2992 2542 fixation_cross gabor_163 gabor_024 gabor_047 gabor_137 gabor_163_alt gabor_024 gabor_047_alt gabor_137 "2_23_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2550_gabor_patch_orientation_163_024_047_137_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_047_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_23_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_047_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2242 2992 1892 fixation_cross gabor_133 gabor_018 gabor_151 gabor_065 gabor_133_alt gabor_018_alt gabor_151 gabor_065 "2_24_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_1900_gabor_patch_orientation_133_018_151_065_target_position_1_2_retrieval_position_1" gabor_133_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_24_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_133_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2142 2992 2442 fixation_cross gabor_114 gabor_053 gabor_077 gabor_097 gabor_114_alt gabor_053 gabor_077_alt gabor_097 "2_25_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2450_gabor_patch_orientation_114_053_077_097_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_032_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_25_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_032_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 1792 2992 2242 fixation_cross gabor_091 gabor_148 gabor_128 gabor_064 gabor_091_alt gabor_148 gabor_128 gabor_064_alt "2_26_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_UncuedRetriev_300_300_399_1800_3000_2250_gabor_patch_orientation_091_148_128_064_target_position_1_4_retrieval_position_2" gabor_circ gabor_008_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_26_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_008_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2042 2992 2192 fixation_cross gabor_052 gabor_005 gabor_034 gabor_122 gabor_052 gabor_005 gabor_034_alt gabor_122_alt "2_27_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2200_gabor_patch_orientation_052_005_034_122_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_034_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_27_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_034_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2042 2992 2542 fixation_cross gabor_065 gabor_002 gabor_021 gabor_130 gabor_065_alt gabor_002 gabor_021 gabor_130_alt "2_28_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2550_gabor_patch_orientation_065_002_021_130_target_position_1_4_retrieval_position_1" gabor_065_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_28_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_065_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1842 2992 1992 fixation_cross gabor_164 gabor_051 gabor_012 gabor_087 gabor_164 gabor_051 gabor_012_alt gabor_087_alt "2_29_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2000_gabor_patch_orientation_164_051_012_087_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_137_framed blank blank blank blank fixation_cross_target_position_3_4 "2_29_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_137_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1742 2992 2392 fixation_cross gabor_038 gabor_021 gabor_063 gabor_002 gabor_038_alt gabor_021 gabor_063 gabor_002_alt "2_30_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2400_gabor_patch_orientation_038_021_063_002_target_position_1_4_retrieval_position_1" gabor_176_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_30_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_176_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 1992 2992 2342 fixation_cross gabor_111 gabor_033 gabor_048 gabor_088 gabor_111_alt gabor_033 gabor_048 gabor_088_alt "2_31_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_UncuedRetriev_300_300_399_2000_3000_2350_gabor_patch_orientation_111_033_048_088_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_048_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_31_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_048_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2192 2992 1942 fixation_cross gabor_033 gabor_104 gabor_149 gabor_123 gabor_033 gabor_104 gabor_149_alt gabor_123_alt "2_32_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_1950_gabor_patch_orientation_033_104_149_123_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_014_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_32_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_014_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1792 2992 2042 fixation_cross gabor_100 gabor_046 gabor_075 gabor_019 gabor_100 gabor_046 gabor_075_alt gabor_019_alt "2_33_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2050_gabor_patch_orientation_100_046_075_019_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_019_framed blank blank blank blank fixation_cross_target_position_3_4 "2_33_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_019_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2142 2992 2142 fixation_cross gabor_066 gabor_018 gabor_153 gabor_037 gabor_066 gabor_018_alt gabor_153_alt gabor_037 "2_34_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2150_gabor_patch_orientation_066_018_153_037_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_153_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_34_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_153_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1992 2992 2342 fixation_cross gabor_015 gabor_128 gabor_099 gabor_038 gabor_015 gabor_128_alt gabor_099_alt gabor_038 "2_35_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2350_gabor_patch_orientation_015_128_099_038_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_149_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_35_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_149_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 1992 2992 2342 fixation_cross gabor_067 gabor_014 gabor_172 gabor_034 gabor_067_alt gabor_014_alt gabor_172 gabor_034 "2_36_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_UncuedRetriev_300_300_399_2000_3000_2350_gabor_patch_orientation_067_014_172_034_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_172_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_36_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_172_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1742 2992 2192 fixation_cross gabor_064 gabor_012 gabor_032 gabor_176 gabor_064 gabor_012_alt gabor_032_alt gabor_176 "2_37_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2200_gabor_patch_orientation_064_012_032_176_target_position_2_3_retrieval_position_2" gabor_circ gabor_012_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_37_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_012_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2092 2992 2142 fixation_cross gabor_054 gabor_166 gabor_122 gabor_095 gabor_054 gabor_166_alt gabor_122 gabor_095_alt "2_38_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2150_gabor_patch_orientation_054_166_122_095_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_095_framed blank blank blank blank fixation_cross_target_position_2_4 "2_38_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_095_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2042 2992 2042 fixation_cross gabor_014 gabor_168 gabor_119 gabor_096 gabor_014_alt gabor_168 gabor_119_alt gabor_096 "2_39_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2050_gabor_patch_orientation_014_168_119_096_target_position_1_3_retrieval_position_1" gabor_014_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_39_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_014_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1942 2992 2592 fixation_cross gabor_094 gabor_005 gabor_167 gabor_115 gabor_094_alt gabor_005 gabor_167_alt gabor_115 "2_40_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2600_gabor_patch_orientation_094_005_167_115_target_position_1_3_retrieval_position_1" gabor_143_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_40_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_143_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 2042 2992 2592 fixation_cross gabor_040 gabor_176 gabor_069 gabor_100 gabor_040_alt gabor_176_alt gabor_069 gabor_100 "2_41_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_UncuedRetriev_300_300_399_2050_3000_2600_gabor_patch_orientation_040_176_069_100_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_147_framed blank blank blank blank fixation_cross_target_position_1_2 "2_41_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_147_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1842 2992 2242 fixation_cross gabor_111 gabor_022 gabor_180 gabor_135 gabor_111_alt gabor_022_alt gabor_180 gabor_135 "2_42_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2250_gabor_patch_orientation_111_022_180_135_target_position_1_2_retrieval_position_2" gabor_circ gabor_022_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_42_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_022_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2042 2992 1992 fixation_cross gabor_072 gabor_030 gabor_004 gabor_089 gabor_072_alt gabor_030_alt gabor_004 gabor_089 "2_43_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2000_gabor_patch_orientation_072_030_004_089_target_position_1_2_retrieval_position_1" gabor_072_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_43_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_072_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 1842 2992 2392 fixation_cross gabor_089 gabor_017 gabor_106 gabor_136 gabor_089_alt gabor_017 gabor_106 gabor_136_alt "2_44_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_UncuedRetriev_300_300_399_1850_3000_2400_gabor_patch_orientation_089_017_106_136_target_position_1_4_retrieval_position_2" gabor_circ gabor_017_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_44_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_017_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2242 2992 2542 fixation_cross gabor_060 gabor_039 gabor_146 gabor_078 gabor_060_alt gabor_039 gabor_146 gabor_078_alt "2_45_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2550_gabor_patch_orientation_060_039_146_078_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_128_framed blank blank blank blank fixation_cross_target_position_1_4 "2_45_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_128_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1992 2992 2342 fixation_cross gabor_149 gabor_022 gabor_066 gabor_171 gabor_149_alt gabor_022 gabor_066_alt gabor_171 "2_46_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2350_gabor_patch_orientation_149_022_066_171_target_position_1_3_retrieval_position_1" gabor_099_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_46_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_099_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1742 2992 2342 fixation_cross gabor_124 gabor_041 gabor_089 gabor_107 gabor_124 gabor_041_alt gabor_089 gabor_107_alt "2_47_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2350_gabor_patch_orientation_124_041_089_107_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_057_framed blank blank blank blank fixation_cross_target_position_2_4 "2_47_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_057_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1842 2992 2042 fixation_cross gabor_059 gabor_033 gabor_122 gabor_140 gabor_059_alt gabor_033 gabor_122 gabor_140_alt "2_48_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2050_gabor_patch_orientation_059_033_122_140_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_002_framed blank blank blank blank fixation_cross_target_position_1_4 "2_48_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_002_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1942 2992 2442 fixation_cross gabor_092 gabor_139 gabor_110 gabor_052 gabor_092_alt gabor_139 gabor_110 gabor_052_alt "2_49_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2450_gabor_patch_orientation_092_139_110_052_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_004_framed blank blank blank blank fixation_cross_target_position_1_4 "2_49_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_004_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 1792 2992 2042 fixation_cross gabor_113 gabor_049 gabor_136 gabor_172 gabor_113_alt gabor_049_alt gabor_136 gabor_172 "2_50_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_UncuedRetriev_300_300_399_1800_3000_2050_gabor_patch_orientation_113_049_136_172_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_087_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_50_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_087_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1842 2992 2292 fixation_cross gabor_046 gabor_074 gabor_025 gabor_089 gabor_046 gabor_074_alt gabor_025_alt gabor_089 "2_51_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2300_gabor_patch_orientation_046_074_025_089_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_025_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_51_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_025_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2192 2992 1942 fixation_cross gabor_130 gabor_160 gabor_101 gabor_048 gabor_130 gabor_160_alt gabor_101 gabor_048_alt "2_52_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_1950_gabor_patch_orientation_130_160_101_048_target_position_2_4_retrieval_position_2" gabor_circ gabor_160_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_52_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_160_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1742 2992 2192 fixation_cross gabor_115 gabor_165 gabor_095 gabor_138 gabor_115 gabor_165_alt gabor_095 gabor_138_alt "2_53_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2200_gabor_patch_orientation_115_165_095_138_target_position_2_4_retrieval_position_2" gabor_circ gabor_165_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_53_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_165_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2242 2992 2292 fixation_cross gabor_179 gabor_061 gabor_149 gabor_121 gabor_179_alt gabor_061 gabor_149_alt gabor_121 "2_54_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2300_gabor_patch_orientation_179_061_149_121_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_102_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_54_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_102_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1942 2992 1992 fixation_cross gabor_127 gabor_041 gabor_002 gabor_089 gabor_127_alt gabor_041 gabor_002 gabor_089_alt "2_55_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2000_gabor_patch_orientation_127_041_002_089_target_position_1_4_retrieval_position_1" gabor_127_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_55_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_127_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1992 2992 2142 fixation_cross gabor_018 gabor_075 gabor_099 gabor_128 gabor_018_alt gabor_075 gabor_099_alt gabor_128 "2_56_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2150_gabor_patch_orientation_018_075_099_128_target_position_1_3_retrieval_position_1" gabor_153_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_56_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_153_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2092 2992 2492 fixation_cross gabor_177 gabor_094 gabor_113 gabor_006 gabor_177 gabor_094 gabor_113_alt gabor_006_alt "2_57_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2500_gabor_patch_orientation_177_094_113_006_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_006_framed blank blank blank blank fixation_cross_target_position_3_4 "2_57_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_006_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 2192 2992 2542 fixation_cross gabor_048 gabor_024 gabor_076 gabor_138 gabor_048 gabor_024_alt gabor_076_alt gabor_138 "2_58_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_UncuedRetriev_300_300_399_2200_3000_2550_gabor_patch_orientation_048_024_076_138_target_position_2_3_retrieval_position_1" gabor_048_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_58_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_048_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2092 2992 2492 fixation_cross gabor_075 gabor_018 gabor_090 gabor_123 gabor_075 gabor_018 gabor_090_alt gabor_123_alt "2_59_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2500_gabor_patch_orientation_075_018_090_123_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_044_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_59_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_044_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1892 2992 2492 fixation_cross gabor_161 gabor_056 gabor_030 gabor_008 gabor_161 gabor_056_alt gabor_030 gabor_008_alt "2_60_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2500_gabor_patch_orientation_161_056_030_008_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_145_framed blank blank blank blank fixation_cross_target_position_2_4 "2_60_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_145_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1792 2992 2592 fixation_cross gabor_015 gabor_148 gabor_036 gabor_105 gabor_015_alt gabor_148 gabor_036_alt gabor_105 "2_61_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2600_gabor_patch_orientation_015_148_036_105_target_position_1_3_retrieval_position_1" gabor_015_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_61_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_015_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 2142 2992 2292 fixation_cross gabor_126 gabor_096 gabor_013 gabor_159 gabor_126 gabor_096 gabor_013_alt gabor_159_alt "2_62_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_UncuedRetriev_300_300_399_2150_3000_2300_gabor_patch_orientation_126_096_013_159_target_position_3_4_retrieval_position_1" gabor_080_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_62_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_080_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1742 2992 2442 fixation_cross gabor_004 gabor_126 gabor_092 gabor_072 gabor_004_alt gabor_126_alt gabor_092 gabor_072 "2_63_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2450_gabor_patch_orientation_004_126_092_072_target_position_1_2_retrieval_position_1" gabor_052_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_63_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_052_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2092 2992 2392 fixation_cross gabor_006 gabor_072 gabor_129 gabor_159 gabor_006 gabor_072 gabor_129_alt gabor_159_alt "2_64_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2400_gabor_patch_orientation_006_072_129_159_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_159_framed blank blank blank blank fixation_cross_target_position_3_4 "2_64_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_159_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1892 2992 2242 fixation_cross gabor_105 gabor_030 gabor_146 gabor_090 gabor_105 gabor_030_alt gabor_146_alt gabor_090 "2_65_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2250_gabor_patch_orientation_105_030_146_090_target_position_2_3_retrieval_position_2" gabor_circ gabor_030_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_65_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_030_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 2142 2992 2142 fixation_cross gabor_142 gabor_009 gabor_177 gabor_070 gabor_142 gabor_009_alt gabor_177_alt gabor_070 "2_66_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_UncuedRetriev_300_300_399_2150_3000_2150_gabor_patch_orientation_142_009_177_070_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_025_framed blank blank blank blank fixation_cross_target_position_2_3 "2_66_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_025_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2242 2992 2292 fixation_cross gabor_161 gabor_096 gabor_127 gabor_055 gabor_161_alt gabor_096 gabor_127_alt gabor_055 "2_67_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2300_gabor_patch_orientation_161_096_127_055_target_position_1_3_retrieval_position_1" gabor_161_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_67_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_161_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1892 2992 2242 fixation_cross gabor_041 gabor_013 gabor_102 gabor_160 gabor_041_alt gabor_013_alt gabor_102 gabor_160 "2_68_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2250_gabor_patch_orientation_041_013_102_160_target_position_1_2_retrieval_position_1" gabor_041_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_68_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_041_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1842 2992 1892 fixation_cross gabor_180 gabor_163 gabor_039 gabor_010 gabor_180 gabor_163 gabor_039_alt gabor_010_alt "2_69_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_1900_gabor_patch_orientation_180_163_039_010_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_145_framed blank blank blank blank fixation_cross_target_position_3_4 "2_69_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_145_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 2192 2992 1992 fixation_cross gabor_088 gabor_071 gabor_133 gabor_045 gabor_088_alt gabor_071_alt gabor_133 gabor_045 "2_70_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_UncuedRetriev_300_300_399_2200_3000_2000_gabor_patch_orientation_088_071_133_045_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_133_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_70_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_133_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
};
# baselinePost (at the end of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
};
time = 0;
duration = 5000;
code = "BaselinePost";
port_code = 92;
}; |
70d094932981964b14f1ca335944ee127217932e | 449d555969bfd7befe906877abab098c6e63a0e8 | /3838/CH3/EX3.28.B/EX3_28_B.sce | 4e21ae86bb8ae5a7aaa6e8c674d9404566c0ec36 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 107 | sce | EX3_28_B.sce | //Example 3.28.B
clc;
syms s t;
x=laplace(exp(-2*t));
y=laplace(exp(-5*t));
z=x*y;
f=ilaplace(z);
disp(f);
|
2d1c5c2cf4c62b85e1cbf79cb50f7ac168fd240e | 4bbc2bd7e905b75d38d36d8eefdf3e34ba805727 | /ee/contrib/dspic/macros/codegen/write_code_odoit.sci | b61999f1b68a902d892179dc6b7443df231d67d4 | [] | no_license | mannychang/erika2_Scicos-FLEX | 397be88001bdef59c0515652a365dbd645d60240 | 12bb5aa162fa6b6fd6601e0dacc972d7b5f508ba | refs/heads/master | 2021-02-08T17:01:20.857172 | 2012-07-10T12:18:28 | 2012-07-10T12:18:28 | 244,174,890 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,663 | sci | write_code_odoit.sci |
//==========================================================================
//write_code_odoit : generate body of the code for
// ordering calls of blocks before
// continuous time integration
//
//input : flag : flag number for block's call
//
//output : txt for flag 0
//
//12/07/07 Alan Layec
//Copyright INRIA
// Modified for RT purposes by Roberto Bucher - RTAI Team
// roberto.bucher@supsi.ch
function [txt]=write_code_odoit(flag)
txt=[];
for j=1:noord
bk=oord(j,1);
pt=oord(j,2);
//** blk
if funtyp(bk)>-1 then
txt2=call_block42(bk,pt,flag);
if txt2<>[] then
txt=[txt;
' '+txt2
''];
end
//** ifthenelse blk
elseif funtyp(bk)==-1 then
ix=-1+inplnk(inpptr(bk));
TYPE=mat2c_typ(outtb(ix+1)); //** scilab index start from 1
thentxt=write_code_ozdoit(clkptr(bk),flag);
elsetxt=write_code_ozdoit(clkptr(bk)+1,flag);
if thentxt<>[] | elsetxt<>[] then
txt=[txt;
' '+get_comment('ifthenelse_blk',list(bk));]
//** C **//
tmp_='*(('+TYPE+' *)'+rdnom+'_block_outtbptr['+string(ix)+'])'
txt=[txt;
' if ((block_'+rdnom+'['+string(bk-1)+'].nmode<0'+...
' && '+tmp_+'>0)'+...
' || \'
' (block_'+rdnom+'['+string(bk-1)+'].nmode>0'+...
' && block_'+rdnom+'['+string(bk-1)+'].mode[0]==1)) {']
//*******//
txt=[txt;
Indent+thentxt]
//** C **//
txt=[txt;
' }'];
//*******//
if elsetxt<>[] then
//** C **//
txt=[txt;
' else if ((block_'+rdnom+'['+string(bk-1)+'].nmode<0'+...
' && '+tmp_+'<=0)'+...
' || \'
' (block_'+rdnom+'['+string(bk-1)+'].nmode>0'+...
' && block_'+rdnom+'['+string(bk-1)+'].mode[0]==2)) {';]
//*******//
txt=[txt;
Indent+elsetxt]
//** C **//
txt=[txt;
' }'];
//*******//
end
end
//** eventselect blk
elseif funtyp(bk)==-2 then
Noutport=clkptr(bk+1)-clkptr(bk);
ix=-1+inplnk(inpptr(bk));
TYPE=mat2c_typ(outtb(ix+1)); //** scilab index start from 1
II=[];
switchtxt=list()
for i=1: Noutport
switchtxt(i)=write_code_ozdoit(clkptr(bk)+i-1,flag);
if switchtxt(i)<>[] then II=[II i];end
end
if II<>[] then
txt=[txt;
' '+get_comment('evtselect_blk',list(bk));]
//** C **//
tmp_='*(('+TYPE+' *)'+rdnom+'_block_outtbptr['+string(ix)+'])'
txt=[txt;
' if (block_'+rdnom+'['+string(bk-1)+'].nmode<0) {';
' i=max(min((int) '+...
tmp_+',block_'+rdnom+'['+string(bk-1)+'].evout),1);'
' }'
' else {'
' i=block_'+rdnom+'['+string(bk-1)+'].mode[0];'
' }']
txt=[txt;
' switch(i)'
' {'];
//*******//
for i=II
//** C **//
txt=[txt;
' case '+string(i)+' :';]
//*******//
txt=[txt;
BigIndent+write_code_ozdoit(clkptr(bk)+i-1,flag);]
//** C **//
txt=[txt;
BigIndent+'break;']
//*******//
end
//** C **//
txt=[txt;
' }'];
//*******//
end
//** Unknown block
else
error('Unknown block type '+string(bk));
end
end
endfunction
|
b3d2f22a8e3e6753ad021f31167660eb1d211502 | 717ddeb7e700373742c617a95e25a2376565112c | /3424/CH5/EX5.14/Ex5_14.sce | e695d19744d17cacb40fec57a4886bbde1faeb66 | [] | 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 | 358 | sce | Ex5_14.sce | clc
// Intialization of variables
d2 = 0.12 //m
A2 = (%pi/4)*(d2)^2
Df = 1000 // Pa
D = 1.23 //Kg/m^3
Kl1 = 0.05
Kl2 = 0.5
// calculations
Q1 = A2*((Df)/(D*(1+Kl1)/2))^0.5
Q2 = A2*((Df)/(D*(1+Kl2)/2))^0.5
//Results
printf(" Volume rate for rounded entrance is %.3f m^3/s",Q1)
printf("\n Volume rate for cylindrical entrance is %.3f m^3/s",Q2)
|
3e015794cd6a9212605492a7b987f5b09fc989a2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1580/CH6/EX6.1/Ch06Ex1.sce | 8c44f35b64d73f3aebbb70a04a6389be1cc0774a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 640 | sce | Ch06Ex1.sce | // Scilab Code Ex6.1 : Page-6.8 (2004)
clc;clear;
M = 107.9; // Molecular weight of silver, kg
d = 10.5e+03; // Density of of silver, kg per metrecube
N = 6.023D+26; // Avogadro's Number., atoms/k-mol
a = 6.8e+07; // conductivity of silver, per ohm per sec
e = 1.6e-19; // charge of electron, C
n = d*N/M; // Density of electron
mu = a/(n*e); // Mobility of electron
printf("\nDensity of electron = %4.2e ", n);
printf("\nMobility of electron = %5.3e metersquare per volt per sec", mu);
// Result
// Density of electron = 5.86e+28
// Mobility of electron = 7.251e-03 metersquare per volt per sec
|
68ec0a6726fe1160c03de49ea10d6dd5e26d0cae | c557cd21994aaa23ea4fe68fa779dd8b3aac0381 | /test/callout.tst | f38413629405012b2c09ea27da7304250c29a0b5 | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | dougsong/reposurgeon | 394001c0da4c3503bc8bae14935808ffd6f45657 | ee63ba2b0786fa1b79dd232bf3d4c2fe9c22104b | refs/heads/master | 2023-03-09T15:22:45.041046 | 2023-02-25T08:33:06 | 2023-02-25T08:33:06 | 280,299,498 | 1 | 0 | NOASSERTION | 2023-02-25T08:33:08 | 2020-07-17T01:45:32 | Go | UTF-8 | Scilab | false | false | 119 | tst | callout.tst | ## Test dumping of partial repo with --noincremental
read <debranch3.fi
/alternate/b write --noincremental --callout -
|
29e20e71eed57ba223b83ea53d70984b49e0d8e4 | 918e8207504f36c7eaf613b62c71e91ad3a33a8a | /2017/educrace_by_lulu/EducRace/DATA/Scenario/Splash.sce | 35c55301736f9d9c0e795daca3f52b304dfc10ce | [] | no_license | lazarusccr/GraphicsContest | b1299eeb74449b8714f126deeb64dc02da285260 | 8dec398588970e958c7f08ab7be32af760acbbd6 | refs/heads/master | 2021-04-29T07:29:46.122593 | 2017-12-28T16:26:51 | 2017-12-28T16:26:51 | 77,950,829 | 4 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 43 | sce | Splash.sce | Wait 3
OpacityChange 0 2 Linear
Wait 2
Kill |
f923f0cafb481b0af685a5acee7dc551a8855239 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1427/CH25/EX25.26/25_26.sce | 86dcecd5be6076741ac72e06a6507779fb0d5c93 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 204 | sce | 25_26.sce | //ques-25.26
//Calculating diameter of oxygen molecules
clc
b=0.0318;//(in L/mol)
r=((b*1000)/(4*6.023*10^23*(4/3)*%pi))^(1/3);
printf("The diameter of oxygen molecule is %.4f*10^-8 cm.",2*r*10^8);
|
ee17cb90af5016103a4723dbf7d058d3199a597a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1823/CH1/EX1.9/SolEx1_9.sce | 2fde04ab5a95c7e84f24c3789c5c1c15bca621d2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 502 | sce | SolEx1_9.sce |
//find the The´venin impedance as the ratio of open-circuit voltage to short-circuit current
//Solved Example 1.9 page no 20
clear
clc
printf("\n find the The´venin impedance as the ratio of open-circuit voltage to short-circuit current")
V1=10//V
V2=15//V
R1=4//ohm
R2=6//ohm
I=(V1-V2)/(R1+R2)
printf("\n The value of I is =%0.2f A",I)
Vth=V1-I*R1
Iab1=V1/R1
Iab2=V2/R2
printf("\n Then by superpostion ")
In=Iab1+Iab2
Zth=Vth/In
printf("\n The value of Zth is =%0.2f ohm",Zth)
|
a8d3f4c744b7425a2c39f894f2f3347dad8047d7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /25/CH11/EX11.9/11_9.sce | 6e8bc98bacf1ce6a649681d3ccef234187789d67 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 230 | sce | 11_9.sce | // example:-11.9,page no.-635.
// program to design a load matching network for a 50 ohm load impedence.
Zo=50;f=6*10^9;taoin=1.25*expm(%i*(40)*%pi/180);
Zin=((1+taoin)/(1-taoin))*Zo;
Zl=-Zin;
disp(Zl,'the load impedence = ') |
de4943d7a5d1cebdc721c0c8598eb1893697ea9a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2231/CH4/EX4.14/Ex_4_14.sce | 9cbea99e897bf374647090cf103cba7e0071cb34 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 456 | sce | Ex_4_14.sce | ////Example 4_14
clc;
clear;close;
//Given data:
V=800;//V
P=300;//HP
Eff=0.9;//Efficiency
R=0.1;//ohm
L=100/1000;//H
alfa=0.2;//duty cycle
N=900;//rpm
f=400;//Hz
//Solution :
Pout=P*735.5/1000;//kW
Pin=Pout/Eff;//kW
I=Pin*1000/V;//A
E=V-I*R;//V(at rated voltage)
Edash=V*alfa-I*R;//V(at 0.2 duty cycle)
Ndash=N*Edash/E;//rpm
disp(Ndash,"Motor speed(rpm)");
T=1/f;//s
d_ia=(V-alfa*V)/L*alfa*T;//A
disp(d_ia,"Current swing(A)");
|
9282f121c6d4012185698c846fcc2f2db23b7957 | 449d555969bfd7befe906877abab098c6e63a0e8 | /991/CH9/EX9.4/Example9_4.sce | 25bb76bef7d451d20997025cdab0da553097b5fb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 963 | sce | Example9_4.sce | //Example 9.4.refer fig.9.14.
clc
hic=1.4*10^3
hfc=-100
hrc=1
hoc=20*10^-6
R1=20*10^3
RS=1*10^3
R2=20*10^3
RE=10*10^3
RL=40*10^3
disp("Current gain, AI = -hfc / 1+hoc*RL''")
RLd=(RE*RL)/(RE+RL)
x1=RLd*10^-3
disp(x1,"where, RL''(k-ohm) = RE || RL =")
format(5)
AI = -hfc / (1+(hoc*RLd))
disp(AI,"Therefore, AI =")
Ri=hic+(hrc*AI*RLd)
x2=Ri*10^-3
disp(x2,"Input resistance, Ri(k-ohm) = hic + hrc*AI*RL'' =")
format(6)
Av=(AI*RLd)/Ri
disp(Av,"Voltage gain, Av = AI*RL'' / Ri =")
disp("Output resistance, Ro = 1 / Yo")
disp(" Yo = hoc - (hfc*hrc)/(hic+RS'')")
format(4)
RSd=(RS*R1*R2)/((R1*R2)+(RS*R2)+(RS*R1))
x3=RSd*10^-3
disp(x3,"where, RS''(k-ohm) = RS || R1 || R2 =")
format(6)
Yo = hoc - ((hfc*hrc)/(hic+RSd))
disp(Yo," Yo =") // answer in textbook is wrong
Ro=1/0.0435
disp(Ro," Ro(ohm) =")
Rod=(Ro*RLd)/(Ro+RLd)
disp(Rod," Ro''(ohm) = Ro || RLdash =") |
d2f73dadd7b8bdde993a86e1e7c9972aeb091120 | 449d555969bfd7befe906877abab098c6e63a0e8 | /165/CH4/EX4.19/ex4_19.sce | c800e523770a30c769471351db4462f86151fe87 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 783 | sce | ex4_19.sce | //Example 4.19
close;
clc;
e=10; //in volts
R1=10000; //In ohms
R2=10000; //In ohms
Ifsd=100*10^-6; //in amperes
Range=10; //in volts
Sdc=1/Ifsd; //Sensitivity
Rs=Sdc*Range; //Multiplier Resistence
//Voltage across R2
R=R2*Rs/(R2+Rs);
ER2=e*R/(R1+R);
printf('\nThe reading obtained by DC voltmeter = %.2f V\n',ER2)
//Reading obtained using half wave rectifier
Shw=0.45*Sdc;
Rs=Shw*Range;
R=R2*Rs/(R2+Rs);
ER2hw=e*R/(R1+R);
printf('\nReading obtained using half wave rectifier = %.2f V\n',ER2hw)
//Reading obtained using full wave rectifier
Sfw=0.90*Sdc;
Rs=Sfw*Range;
R=R2*Rs/(R2+Rs);
ER2fw=e*R/(R1+R);
printf('\nReading obtained using full wave rectifier = %.2f V\n',ER2fw) |
dfb931e6abf783d448e06dadb5053ea558bca023 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1439/CH16/EX16.2/16_2.sce | 2c0a2f50c01668eb523e5920ee2367e649d7bc0c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 343 | sce | 16_2.sce | clc
//initialisation of variables
wl= 4500 //A
c= 3*10^10 //cm/sec
//CALCULATIONS
l= wl*10^-8
l1= wl*10^-1
f= 1/l
f1= c/l
//RESULTS
printf ('wavelength in centimetres = %.1e cm',l)
printf ('\n wavelength in micrometres = %.1e cm',l1)
printf ('\n frequency of bluelight = %.2e sec^-1',f1)
printf ('\n wave number = %.2e cm^-1',f)
|
4ac7733484c291e4a092f394dcdc0618f8486a3f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1427/CH18/EX18.46/18_46.sce | d776715b68925d30fa56663591257dfef69dc5b2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 266 | sce | 18_46.sce | //ques-18.46
//Calculating decrease in chemical potential of benzene
clc
T=298;//temperature (in K)
x_s=0.1;//mole-fraction of solute
x_b=1-x_s;//mole-fraction of benzene
C_P=8.314*T*log(x_b);
printf("The decrease in chemical potential is %.2f J/mol.",C_P);
|
3878e753de64d0caafade76cd301c29a591d5f79 | 449d555969bfd7befe906877abab098c6e63a0e8 | /770/CH2/EX2.9/2_9.sce | d88af6871233242f82402e1798d6ed511bf1fb14 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,403 | sce | 2_9.sce | clear;
clc;
//Example - 2.9
//Page number - 51
printf("Example - 2.9 and Page number - 51\n\n");
//Given
T = 444.3;//[K] - Temperature
R = 8.314;//[J/mol*K] - Universal gas constant
B_11 = -8.1;//[cm^(3)/mol]
B_11 = -8.1*10^(-6);//[m^(3)/mol]
B_22 = -293.4*10^(-6);//[m^(3)/mol]
y1 = 0.5;// mole fraction // equimolar mixture
y2 = 0.5;
// For component 1 (methane)
Tc_1 = 190.6;//[K] - cricitical temperature
Vc_1 = 99.2;//[cm^(3)/mol] - cricitical molar volume
Zc_1 = 0.288;// critical compressibility factor
w_1 = 0.012;// acentric factor
// For component 2 (n-butane)
Tc_2 = 425.2;//[K]
Vc_2 = 255.0;//[cm^(3)/mol]
Zc_2 = 0.274;
w_2 = 0.199;
//Using virial mixing rule,we get
Tc_12 = (Tc_1*Tc_2)^(1/2);//[K]
w_12 = (w_1 + w_2)/2;
Zc_12 = (Zc_1+Zc_2)/2;
Vc_12 = (((Vc_1)^(1/3) + (Vc_2)^(1/3))/2)^(3);//[cm^(3)/mol]
Vc_12 = Vc_12*10^(-6);//[cm^(3)/mol]
Pc_12 = (Zc_12*R*Tc_12)/Vc_12;//[N/m^(2)]
Tr_12 = T/Tc_12;//Reduced temperature
B_0 = 0.083 - (0.422/(Tr_12)^(1.6));
B_1 = 0.139 - (0.172/(Tr_12)^(4.2));
//We know,(B_12*Pc_12)/(R*Tc_12) = B_0 + (w_12*B_1)
B_12 = ((B_0+(w_12*B_1))*(R*Tc_12))/Pc_12;//[m^(3)/mol] - Cross coefficient
B = y1^(2)*B_11+2*y1*y2*B_12+y2^(2)*B_22;//[m^(3)/mol] - Second virial coefficient for mixture
B = B*10^(6);//[cm^(3)/mol]
printf(" The second virial coefficient,(B) for the mixture of gas is %f cm^(3)/mol",B);
|
ac6a0aad5c5031e869d570fe7e92968544fa28b4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2882/CH10/EX10.6/Ex10_6.sce | cde334cd893fd9eb215e1d14210331f216da6a81 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 589 | sce | Ex10_6.sce | //Tested on Windows 7 Ultimate 32-bit
//Chapter 10 Feedback in Amplifiers Pg no. 332
clear;
clc;
//Given
A2=200;//second stage open loop gain
B=0.1;//feedback gain beta
D2=0.02;//second harmonic distortion
//Solution
disp("(a)");
A2_dash=A2/(1+B*A2);//second stage closed loop gain
A1=A2/A2_dash;//gain of the first stage
printf("The gain of the first stage A1 = %d",A1);
disp("(b)");
D2_dash=D2/(1+B*A2);//total second harmonic distortion
printf("The second harmonic distortion D2''= %.1f %%",D2_dash*100);
//calculation error in textbook as A*B=20 and not 2
|
c878e871d6dca32b12a063b7c10e406f400bb07e | f94bca5d28db755e4080ea77d3f7a8f4bf0839c1 | /scripts/TestLemGlenn.sce | a34f8eba327fbd08828ad0ed9c49e18be96f2a8d | [] | no_license | videlec/max_plus | 52ba3ba9b38f1636088e14b827be59fce779f376 | 4c0b651344ba4c731c8d7ab084caab4204483d8c | refs/heads/master | 2020-12-24T06:24:14.469032 | 2019-05-17T06:58:23 | 2019-05-17T06:58:23 | 38,269,615 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,276 | sce | TestLemGlenn.sce | d=5;//taille matrices
st='';
for i=1:d
st=strcat([st,'%i,']);
end
N=factorial(d);//Puissance
//n=10^7;//Nb tests
//K=10^4;//Size of entries
//Mot
u=[0,1,0,1,0,1,1,0,1,0,1,0,0,1,1,0,0,1,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,0,1,1,0,0,1,0,1,1,0,0,1,0,1,0,1,1,0,1,0,1,0,0,1,1,0,0,1,0,1];
l=size(u,'*');
L=zeros(1,l);
Le=zeros(1,l);
Lee=zeros(1,l);
// Let's go
fidw=mopen('wrank.txt','w');
fidt=mopen('addtr.txt','w');
mfprintf(fidt,'u=')
for i=1:size(u,'*')
mfprintf(fidt,'%i',u(i))
end
mfprintf(fidt,'\n')
for j=1:n
A=round(K*rand(d,d));
B0=(-K/2)*#(A);
A=round(K*rand(d,d));
A0=(-K/2)*#(A);
A=A0^N;
B=B0^N;
P=%eye(d,d);
b=%T;
k=0;
D=%ones(d,1);
while k<l & b
k=k+1;
if u(k)==0
C=A;
else
C=B;
end
P=P*C;
for i=1:d
D(i)=D(i)*C(i,i);
end
b=and(D==diag(P));
end
L(k)=L(k)+1;
if k==l&(or(A(1,1)*%ones(d,1)<>diag(A))|or(B(1,1)*%ones(d,1)<>diag(B)))
mfprintf(fidt,st,plustimes(A0))
mfprintf(fidt,';')
mfprintf(fidt,st,plustimes(B0))
mfprintf(fidt,'\n')
end
if (k<l)&size(weakbasis(P),'*')==d*d
A1=A0;
B1=B0;
Le(k)=Le(k)+1;
if size(weakbasis(P'),'*')==d*d
Lee(k)=Lee(k)+1;
mfprintf(fidw,st,plustimes(P))
mfprintf(fidw,'\n')
end
end
end
//L
mclose(fidw);
mclose(fidt);
|
2dfe35d18df6636ccc8a4eac33a671922482add6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3768/CH9/EX9.4/Ex9_4.sce | c97979d2f8e1cfdc9fd74fad2ce845c7daef6570 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 446 | sce | Ex9_4.sce | //Example number 9.4, Page number 204
clc;clear;
close;
//Variable declaration
RH=3.66*10**-4; //hall coefficient(m**3/c)
rho=8.93*10**-3; //resistivity(m)
e=1.6*10**-19; //charge(c)
//Calculation
mew=RH/rho; //mobility(m**2/Vs)
n=1/(RH*e); //density of atoms(per m**3)
//Result
printf("mobility is %.5f m^2/Vs",mew)
printf("\n density of atoms is %.1e per m^3",n)
//answer in the book varies due to rounding off errors
|
bffe0501db392db49649a1825b7710d705671f72 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1760/CH1/EX1.4/EX1_4.sce | 3c796bad8399ace62460ece6352d0dc65ae3db4a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,416 | sce | EX1_4.sce | //EXAMPLE 1-4 PG NO 18-19
R1=2.22; //RESISTANCE
R2=0.6; //RESISTANCE
R3=3; //Resistance
R4=4;
R5=5;
R6=6;
R7=2;
R=R1+R2+R3;
disp('i) Resistance (R) is = '+string ([R]) +' ohm ');
V=12; //VOLTAGE
I=V/R; //Current
disp('ii) CURRENT (I) is = '+string ([I]) +' A ');
I3=I; //CURRENT THROUGH 3 ohm RESISTANCE
disp('iii) CURRENT (I3) is = '+string ([I3]) +' A ');
I5=(I3*R4)/(R4+R5); //CURRENT THROUGH 5 ohm RESISTANCE
disp('iv) CURRENT (I5) is = '+string ([I5]) +' A ');
I4=(I3*R5)/(R4+R5); //CURRENT THROUGH 4 ohm RESISTANCE
disp('v) CURRENT (I4) is = '+string ([I4]) +' A ');
V1=1.236; //VOLTAGE ACROSS THREE PARALLEL RESISTANCE
I2=V1/R7; //current
disp('vi) CURRENT (I2) is = '+string ([I2]) +' A ');
I1=V1; //CURRENT THROUGH 1 ohm RESISTANCE
disp('iv) CURRENT (I1) is = '+string ([I1]) +' A ');
I6=V1/R6; //CURRENT THROUGH 6 ohm RESISTANCE
disp('vii) CURRENT (I6) is = '+string ([I6]) +' A ');
|
0668456b54aece3edf58a4ce38c7e6acfbb99c57 | df924acfdd5b043da9336a2276726dbfb655735a | /test_suite/stobjcst.tst | 8ca7599b167e6e96b005170ab4de8f015a141cdd | [] | no_license | noxdafox/clips | b8fb280223b5aae615e427bf1f31c03cb932b09d | a2c548b69394f0e2cf7c6d583810b6a29a662ae1 | refs/heads/master | 2023-09-01T18:52:07.614807 | 2021-12-14T20:10:21 | 2021-12-14T20:10:21 | 95,596,886 | 11 | 10 | null | null | null | null | UTF-8 | Scilab | false | false | 327 | tst | stobjcst.tst | (unwatch all)
(clear)
(dribble-on "Actual//stobjcst.out")
(batch "stobjcst.bat")
(dribble-off)
(clear)
(open "Results//stobjcst.rsl" stobjcst "w")
(load "compline.clp")
(printout stobjcst "stobjcst.clp differences are as follows:" crlf)
(compare-files "Expected//stobjcst.out" "Actual//stobjcst.out" stobjcst)
(close stobjcst)
|
4f648ef257064e31fda3860fdacc43cdb729feaf | f42e0a9f61003756d40b8c09ebfe5dd926081407 | /TP6/rungeKutta4.sci | a2c0762ff81474a8a76f53334ed01323d3d21dc0 | [] | no_license | BenFradet/MT09 | 04fe085afaef9f8c8d419a3824c633adae0c007a | d37451249f2df09932777e2fd64d43462e3d6931 | refs/heads/master | 2020-04-14T02:47:55.441807 | 2014-12-22T17:34:50 | 2014-12-22T17:34:50 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 599 | sci | rungeKutta4.sci | function[z] = rungeKutta4(a, t0, T, N, f)
if T < t0 | abs(T) < %eps
error('invalid T');
end
if N - floor(N) ~= 0 | N < 0
error('invalid N');
end
[n un] = size(a);
if un ~= 1
error('invalid a');
end
h = T / N;
z = zeros(n, N);
tt = t0;
zz = a;
for i = 1:N
k1 = f(tt, zz);
k2 = f(tt + h / 2, zz + h * k1 / 2);
k3 = f(tt + h / 2, zz + h * k2 / 2);
k4 = f(tt + h, zz + h * k3);
zz = zz + h / 6 * (k1 + 2 * k2 + 2 * k3 + k4);
z(:, i) = zz;
tt = tt + h;
end
endfunction
|
6ec623f43210f648ae4569d3f7b3d83e5a9444f8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1370/CH1/EX1.8/chapter1_8.sce | be6295581cdebab1363a1d7930c71b74fb5f0a3f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 362 | sce | chapter1_8.sce | //example
clc
disp("The given values are, I=50A and R_sh= 10ohm")
disp("For the equivalent voltage source,")
v=10*50
disp(v,"V(in V)=(I*R_sh)=")
disp("R_se=R_sh=10ohm in series.")
disp("The equivalent voltage source is shown in the fig 1.46(a)")
disp("Note the polarities of voltage source, which are such that +ve at top of arrow and -ve at botttom.")
|
0b036cae8e5f3790f2e502c868cbbf80b6491de8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /770/CH18/EX18.5/18_5.sce | e77b33ac8fd5122f6a5f91967732917bb22101b8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,058 | sce | 18_5.sce | clear;
clc;
//Example - 18.5
//Page number - 652
printf("Example - 18.5 and Page number - 652\n\n");
// Given
// N2 + 3H2 - 2NH3
T_1 = 700;//[K] - Reaction temperature
Max_adia_rise = 100;///[K] - Maximum adiabatic rise in temperature
T_2 = T_1 + Max_adia_rise;//[K] -
delta_H_rkn_700 = -94.2;//[kJ] - Standard enthalpy of reaction at 700 K
delta_H_rkn_700 = delta_H_rkn_700*10^(3);//[J]
// The mean standard heat capacity of various components over the temperature range from 700 to 800 K is
Cp_N2 = 30.0;//[cal/mol-K]
Cp_H2 = 28.9;//[cal/mol-K]
Cp_NH3 = 49.2;//[cal/mol-K]
// The energy balance equation is
// X*delta_H_rkn_700 + integrate('(sum_ni_Cpi_exit)*dT','T',T_1,T_2)
//At exit, let moles of NH3 = (1-X), moles of H2 = (3-3X), moles of NH3 = 2X . Therefore we have,
// delta_H_rkn_700*X + {(1-X)*Cp_N2 + (3-3X)*Cp_H2 + (2X)*Cp_NH3}*(T_2 - T_1)
// On simplification we get, 960.3*X = 116.7
X = 116.7/960.3;
printf(" The maximum allowable conversion fraction in the reactor is given by, X = %f \n",X);
|
d05a3ba42081d37bbbd004a6475009d2f5cc11ed | 449d555969bfd7befe906877abab098c6e63a0e8 | /2342/CH3/EX3.20/EX3_20.sce | 29c8153a313cec6e4fe49e32fdafbd70400576cc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 207 | sce | EX3_20.sce | // Exa 3.20
format('v',8)
clc;
clear;
close;
// Given data
n_i = 1.5 * 10^16;// in /m^3
n_n = 5 * 10^20;// in /m^3
p_n = (n_i)^2/n_n;// in /m^3
disp(p_n,"The majority carrier density per m^3 is");
|
84869b71eab7acacbccfb879826d984c4183ed04 | 53938ad1172790849e9fc4c5db5bec8478c91bc7 | /Secante.sci | ef8a0e14c885bde79d0d7029bb333b7051ddf065 | [] | no_license | JonasBarcat/metodos-numericos | ef1a8696d4d699011b44d7c49de2e4885c67797c | cb57c49e426e7d41374a40cb9f93713071c0fe31 | refs/heads/master | 2020-08-09T21:32:27.424462 | 2019-11-29T13:34:32 | 2019-11-29T13:34:32 | 214,179,750 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 608 | sci | Secante.sci | function x=secante(a,b,iteraciones)
i=1;
while i<=iteraciones && abs(b-a)>0.0001
x=b-(miFuncion(b)*(b-a))/(miFuncion(b)-miFuncion(a))
a=b
b=x
i=i+1
end
if i>iteraciones then
disp("No se pudo converger a una solucion")
else
disp("Si se encontró solucion con el error planteado")
end
endfunction
// aqui es donde se carga la funcion a estudiar, el valor numerico f() lo hace esta funcion
function y=miFuncion(variable)
y=2*variable^3+6*variable^2+6*variable-1 // aqui va la funcion a estudiar
endfunction
|
3754deeaa2032483b17ac3c8ad91f04b9e27e978 | 449d555969bfd7befe906877abab098c6e63a0e8 | /68/CH3/EX3.1/ex1.sce | 148152d9e2eab2d8db6a3d4919f8f8481a76a4c3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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.sce | //Example 3.1: Peak value of diode current and maximum reverse voltage
//v_s is sinusoidal input voltage with peak 24V
//battery charges to 12V
I_d=(24-12)/100
max_v_rev=24+12;
disp(I_d,"peak value of diode current (A)", max_v_rev,"maximum reverse voltage acrossthe diode (V)") |
518bcffea4faa3ba328ce6933f1575dccf4d7857 | 449d555969bfd7befe906877abab098c6e63a0e8 | /284/CH3/EX3.9/ex_9.sce | 0dbac7dfe215947d21d8265dfd72145b0f65374c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 428 | sce | ex_9.sce | // Chapter 3_The Semiconductor in Equilibrium
//Caption_Charge Neutrality
//Ex_9//page 112
T=300 //temperature in kelvin
Nd=10^16 //donor concentration per cm cube
Na=0
ni=1.5*(10^10) //intrinsic carrier concentration
no=((Nd-Na)/2)+(((Nd-Na)/2)^2+ni^2)^0.5
po=ni^2/no;
printf('The majority carrier electron concentration is %fd per cm cube while the minority carrier hole concentration is %fd per cm cube',no,po) |
5c740dd64f582b9dc916eb3195e77fb5367d17e0 | adaa1dc1e9781bebdc15cc0c3a4bfbfa059442fa | /cs506/HW2/ConstantOne.tst | 6e1e49e3f4c93cdf7474a931932f8b5e0a717bae | [] | no_license | rodrigo-r-martins/pace_university | e87fbf9d2eb47797f0652af59304bdbe5293f5cc | 7bfc407c2b7ae90e4e9d5cc650c6ae719358b084 | refs/heads/main | 2023-05-27T04:38:33.513928 | 2021-06-17T04:24:22 | 2021-06-17T04:24:22 | 377,698,848 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 162 | tst | ConstantOne.tst |
load ConstantOne.hdl,
output-file ConstantOne.out,
compare-to ConstantOne.cmp,
output-list a%B3.1.3 out%B3.1.3;
set a 0,
eval,
output;
set a 1,
eval,
output;
|
bdb7ea51fcb1d999a41e293a4ff73a46c1321692 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1826/CH18/EX18.24/ex18_24.sce | 28a23fb7cf94d3b57347a62f2af9fb2a18a27c24 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 194 | sce | ex18_24.sce | // Example 18.24, page no-475
clear
clc
A=650*10^-6 //mm^2
d=4 *10^-3//mm
epsr=3.5
eps=8.854*10^-12
q=2*10^-10//C
v=q*d/(eps*epsr*A)
printf("The voltage across capacitor is %.2f V",v)
|
bfaf8952531404fae217fd50b7ac8403f4807c33 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2024/CH4/EX4.2/4_2.sce | 8f1049e51e42a710d4545c2964ab6ef0be6cd553 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 233 | sce | 4_2.sce | clc
//Initialization of variables
T1=100 //F
T2=500 //F
//calculations
function y=cp(t)
y=0.239 + 0.00003*t
endfunction
cpavg= 1/(T2-T1) *(intg(T1,T2,cp))
//results
printf("average value of Cp = %.3f Btu/lbm F",cpavg)
|
eff5b281be01d22e94a4be229b867cb90a7353ee | 1db0a7f58e484c067efa384b541cecee64d190ab | /macros/rc2is.sci | a41a79ec76d82e4443735f7eb4b8137fd3851bb4 | [] | no_license | sonusharma55/Signal-Toolbox | 3eff678d177633ee8aadca7fb9782b8bd7c2f1ce | 89bfeffefc89137fe3c266d3a3e746a749bbc1e9 | refs/heads/master | 2020-03-22T21:37:22.593805 | 2018-07-12T12:35:54 | 2018-07-12T12:35:54 | 140,701,211 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,351 | sci | rc2is.sci | function isin = rc2is(k)
// Convert reflection coefficients to inverse sine parameters
//
// Calling Sequence
// isin = rc2is(K)
//
// Parameters
// k: input reflection coefficients. Needs to be an array of real numbers between -1 and 1
// isin: inverse sine parameters corresponding to the reflection coefficients in input
//
// Description
// This function returns the inverse sine parameters corresponding to the input reflection coefficients K.
// output array has isin(i) = 2/pi*asin(k(i))
//
// Example
// k = [0.3090 0.9801 0.0031 0.0082 -0.0082];
// isin = rc2is(k) //Gives inverse sine parameters
//
// See also
// is2rc
// rc2poly
// rc2ac
// rc2lar
//
// Authors
// Parthe Pandit
//
// Bibliography
// J.R. Deller, J.G. Proakis, J.H.L. Hansen, "Discrete-Time Processing of Speech Signals", Prentice Hall, Section 7.4.5
//modified function to handle char i/p and also changed error statements to match those of MATLAB by Debdeep Dey
//convert char i/p to their respective ascii values
if(type(k)==10) then
w=k;
k=ascii(k);
k=matrix(k,size(w));
end
// errchk1
if (~isreal(k)),
error('Inverse sine parameters not defined for complex reflection coefficients.');
end
if max(abs(k)) >= 1,
error('All reflection coefficients should have magnitude less than unity.');
end
isin = (2/%pi)*asin(k);
endfunction
|
0e52e104c3aa635d69b03ba17f1bdb54413ec6b6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1118/CH8/EX8.6/eg8_6.sce | 7baf6ec7f4efd42831646f94a40f1909f8a12120 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,778 | sce | eg8_6.sce | clear;
//clc();
function [zpu]=puz(z1pu,sb2,sb1,vb1,vb2)
zpu=z1pu*(sb2/sb1)*(vb1/vb2)^2;
endfunction
previousprot = funcprot(0)
funcprot(0)
function [parallel]=para(z1,z2)
parallel=z1*z2/(z1+z2);
endfunction
previousprot = funcprot(0)
funcprot(0)
z1pu=0.20;
sb2=25;
sb1=30;
vb1=11;
vb2=11;
zpu=puz(z1pu,sb2,sb1,vb1,vb2);
printf("\n the per unit reactance of the generator is: %f",zpu);
xg1=zpu;
z1pu=0.25;
sb2=25;
sb1=25;
vb1=11;
vb2=11;
zpu=puz(z1pu,sb2,sb1,vb1,vb2);
xg2=zpu;
printf("\n the per unit reactance of generator 2 is: %f",zpu);
z1pu=0.20;
sb2=60;
sb1=30;
vb1=11;
vb2=11;
zpu=puz(z1pu,sb2,sb1,vb1,vb2);
xg11=zpu;
printf("\n the per unit reactnace of generator 1 is on 60MVA base: %f",zpu);
z1pu=0.25;
sb2=60;
sb1=25;
vb1=11;
vb2=11;
zpu=puz(z1pu,sb2,sb1,vb1,vb2);
xg22=zpu;
printf("\n the per unit reactnace of generator 2 is on 60MVA base: %f",zpu);
//calcultaion of per unit impedance of transformer
z1pu=0.10;
sb2=25;
sb1=60;
vb1=11;
vb2=11;
zpu=puz(z1pu,sb2,sb1,vb1,vb2);
xt1=zpu;
printf("\n the per unit reactnace of generator 1 is on 30MVA base: %.3f",zpu);
z1pu=0.10;
sb2=60;
sb1=60;
vb1=11;
vb2=11;
zpu=puz(z1pu,sb2,sb1,vb1,vb2);
xt2=zpu;
printf("\n the per unit reactnace of generator 1 is on 60MVA base: %.3f",zpu);
//calculation of through impedance
zt=para(xg1,xg2) + xt1;
printf("\n the through impedance at 25MVA base is: j%.3f",zt);
zt1=para(xg11,xg22)+xt2;
printf("\n the through impedance at 60MVA base is: j%.3f",zt1);
//calcultaion in ohms
sb1=25
zb=vb1^2/sb1;
printf("\n actual impedance in ohms on 25MVA base is: j%.3f",zb*zt);
sb2=60;
zb=vb1^2/sb2;
printf("\n actual impedance in ohms on 60MVA base is: j%.3f",zb*zt1);
|
33988a1650a09d900fe60974c5e80ccac53d8c75 | 449d555969bfd7befe906877abab098c6e63a0e8 | /55/CH12/EX12.4/12ex4.sci | 8b834b24ad185aabee3e8a9e3a23949702007a33 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 375 | sci | 12ex4.sci | a=(8-4)-3
b=8-(4-3)
disp('since a and b are not equal so subtraction is non-commutative on Z(set of integers)')
a=[1 2;3 4]
b=[5 6;0 -2]
g= a*b
k= b*a
disp('since g and k are not equal matrix multiplication is non-commutative')
h=(2^2)^3
j=2^(2^3)
disp('since h and j are not equal so exponential operation is non associative on the set of positive integers N') |
a6f7f95bcf551f71fd6fd18b163df6930b57103b | 449d555969bfd7befe906877abab098c6e63a0e8 | /929/CH6/EX6.1.b/Example6_1_b.sce | 354994d8caad4fc9045e79508c88ea084a872f51 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 173 | sce | Example6_1_b.sce | //Example 6.1(b)
clear;
clc;
R1=2*10^3;
R2=18*10^3;
b=0.1;
fb=100*10^3;
efimax=5;
fmax=tan(efimax*%pi/180)*fb;
printf("f<=%.2f kHz",fmax*10^(-3)); |
f1a560a3e47d8c75650c47d629296d8dd119897d | 449d555969bfd7befe906877abab098c6e63a0e8 | /278/CH20/EX20.7/ex_20_7.sce | 332434f8f038a25a366b4f7a317de49c79ebfb0c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 371 | sce | ex_20_7.sce | //find..
clc
//soltuion
//given
n=10
v=25//m/s
P=115*1000//W
q=%pi
B=22.5//deg
u=0.2
m=0.6//kg/m
//let T1 and T2 be tension on tight and slag side
//P=(T1-T2)*v*n//W
//T1-T2=460...eq1
//log(T1/T2)=u*q*cosec(%pi/180*B)=0.714
//T2=T1/5.18//....eq2
//from eq1 and eq2
T1=570//N
T2=110//N
Tc=m*v^2
Tt1=T1+Tc
Tt2=T2+Tc
printf("the value of Tt1 and Tt2 is,%f N\n,%f N",Tt1,Tt2) |
47ddfa9a367bcb8fa3ac221afe9715b01a2ee760 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1322/CH13/EX13.5/92ex4.sce | 9cb215d6d514f4194e01f43429af65edeed34f7c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 90 | sce | 92ex4.sce |
clear;
clc;
close;
x=poly(0,'x');
p1=(3*x-2);
p2=(4*x-7);
p3=p1*p2;
disp(p3,"product=")
|
1d4aba1f089dc5ee842839a8fe26879f73d38011 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2882/CH6/EX6.10/Ex6_10.sce | 872df58d7112205663c16d1d21e1427c291ca19d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,128 | sce | Ex6_10.sce | //Tested on Windows 7 Ultimate 32-bit
//Chapter 6 Single Staje BJT Amplifiers Pg no. 202 and 203
clear;
clc;
//Given Data
//Figure 6.28
VCC=12;//collector supply voltage in volts
RC=1.5D3;//collector resistance in ohms
RE=1.5D3;//emitter resistance in ohms
R1=82D3;//divider network resistance R1 in ohms
R2=18D3;//divider network resistance R2 in ohms
VBE=0.7;//forward voltage drop of emitter diode in volts
VT=25D-3;//voltage equivalent of temperature in volts
RL=15D3;//load resistance in ohms
//Solution
VB=VCC*R2/(R1+R2);//d.c. base to ground voltage in volts
VE=VB-VBE;//d.c. emitter to ground voltage in volts
IE=VE/RE;//d.c. emitter current in amperes
re=VT/IE;//equivalent BJT model emitter resistance in ohms
Rin=re;//total input resistance in ohms
RL_dash=RC*RL/(RC+RL);//equivalent output resistance in ohms
Gv=RL_dash/re;//voltage gain of CC configuration
Gi=1;//current gain for a CB amplifier is almost equal to unity
Gp=Gi*Gv;//a.c. power gain
printf("Voltage gain Gv = %.1f\n Current gain Gi = %d\n Power gain Gp = %.1f\n Total input resistance Rin = %.2f ohms",Gv,Gi,Gp,Rin);
|
ebc4076d012a5d4628be4f777a6956e9f77332c7 | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/impzlength/impzlength8.sce | 84531f521ee2c7e667df2df4b11ff06efd094d88 | [] | 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 | 332 | sce | impzlength8.sce | clear;
clc;
exec('/home/debdeep/Desktop/TEST NOW!!/impzlength.sci');
b = [0 0 0 0 0 0 0];
a=[0 0 0 0 0 0];
len = impzlength(b,a);
disp(len);
//output
//!--error 27
//Division by zero...
//at line 19 of function pdiv called by :
//at line 55 of function impzlength called by :
//len = impzlength(b,a);
//matlab
// 7
|
303b6ed8e38bb9a7b7388089bba12c03effe8ad0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1271/CH15/EX15.1/example15_1.sce | d53f7a3a1a925ce1c92725e22bad1f32b864d754 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 505 | sce | example15_1.sce | clc
// Given that
E = 1000 // energy of electron in eV
delta_x = 1e-10 // error in position in m
e = 1.6e-19 // charge on an electron in C
m = 9.1e-31 // mass of electron in kg
h = 6.62e-34 // Planck constant in J-sec
// Sample Problem 1 on page no. 15.24
printf("\n # PROBLEM 1 # \n")
printf("Standard formula used \n")
printf(" p = (2 * m * E * e)^(1/2) \n")
p = sqrt(2 * m * E * e)
delta_p = h / (4 * %pi * delta_x)
P = (delta_p / p) * 100
printf("\n Percentage of uncertainty in momentum is %f.",P)
|
2765c5b2ecdc1ed4cf095c094ebdaaecdbd77c20 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2855/CH1/EX1.17/Ex1_17.sce | 6c14e84b304d7f23405aabb8bc370cdb528e8887 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 592 | sce | Ex1_17.sce |
//page no. 31
//Example no 1-17
clc;
clear all;
disp('Solution (i) is ');
l=0.045;//wavelength in nm
h=6.63*10^-34; //planks constant in J/s
c=3*10^8; //speed of light in m/s
E=h*c/l/10^-9; //energy of photon in eV
mprintf("\n E = %e J",E);
E1=E/(1.6*10^-19); // energy in joule
mprintf("\n E = %e eV",E1);
e=1.6*10^-19; // charge of electron
disp('Solution (ii) is ');
V=E/e;
printf("\n Required voltage is = %0.2f KV",V/1000);// result
// Value of wavelenght in problem is .45 but in the solution is .045
//the value considered above is .045
|
405daa82178c62a52f44a27c396a1669de1e6301 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3137/CH16/EX16.31/Ex16_31.sce | 418c5d9441c53960f1c133bcb5e4dd8839e2c2e6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex16_31.sce | //Initilization of variables
a=2.5 //m/s^2
mA=3 //kg
mB=7 //kg
g=9.8 //m/s^2
//Calculations
F=(mA+mB)*a //N
//Using equations of motion
Py=mB*g //N
//Solving for Px and H
A=[1,1;-0.0375,0.0375]
B=[mB*a;Py*0.05]
C=inv(A)*B
Px=C(1) //N
H=C(2) //N
//Result
clc
printf('The value of H is %f N',H)
|
fd744180502c942fe76d4b4984f4118b92ddc11f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3673/CH5/EX5.4/Ex5_4.sce | 15ddd6e03a5e82a9aacfc45e74eff86175f951a2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 426 | sce | Ex5_4.sce | //Example 5_4 page no:195
clc
f=500//frequency in Hz
Vrms=10
R=2*10^3
C=0.1*10^-6//capacitance in farad
Xc=1/(2*%pi*f*C)
Z=sqrt(R^2+Xc^2)
disp(Z,"impedence is (in ohm)")
angle=atand(-Xc/R)
disp(angle,"the phase angle is (in degree)")
I=Vrms/Z
disp(I*1000,"the current is (in mA)")//converting to milli ampere
Vc=I*Xc
disp(Vc,"capacitive voltage is (in volt)")
Vr=I*R
disp(Vr,"resistive voltage is (in volt)")
|
e8fee657ab0ee6544dcc2389c02d64cab47e335e | 449d555969bfd7befe906877abab098c6e63a0e8 | /323/CH6/EX6.1/Ex6_1.sci | 241c23456c18832d022b43f476f6317806453e34 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 286 | sci | Ex6_1.sci | //Chapter6,Pg6.6,Ex6.1
clc;
P=6 //Number of poles in armature
phi=0.018 //Flux per pole in Wb
N=600 //Angular velocity in rpm
Z=840 //Number of conductors
A=P //For lap wound armature, number of parallel paths=number of poles
Eg=(phi*Z*N*P)/(60*A)
printf("\n Eg=%.1f V \n",Eg)
|
036d44ef9070936b34961d91717f00c1505e8f0c | 449d555969bfd7befe906877abab098c6e63a0e8 | /858/CH2/EX2.23/example_23.sce | c3ea8b28859a3fa5ca4fcbad900a0b7cf58df7c0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 177 | sce | example_23.sce | clc
clear
printf("example 2.23 page number 79\n\n")
//to find emf of cell
pH=12; //pH of solution
E_H2=0;
E2=-0.059*pH;
E=E_H2-E2;
printf("EMF of cell = %f V",E)
|
c433b5457d113f6727968c7c87a70e59aad69df1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3440/CH12/EX12.3/Ex12_3.sce | 0d7565738c599d0086cc991c3bf17f9561e0c870 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 168 | sce | Ex12_3.sce | clc
row=2.7*10^-6//ohm cm
l=10^-1//cm
tm=0.5*10^-4//cm
sw=0.5*10^-4//cm
epsiloni=8.85*10^-14
RC=(row*l/tm^2)*epsiloni*2.7*(tm*l/sw)
disp(RC,"RC in sec is= ")
|
f1d191f51328afc5348363e488b22188ecbce578 | ed1c05f846a64e6a8308394b3f3a4edbf4801a04 | /raytracer/scenes/rings/rings.sce | 4eeaca7ab338ccd1c16b1123893316a126745794 | [] | no_license | Gorzen/Computer-Graphics-2019 | e56b85314fa7b4782041977480e4d7b01a854a6c | c17a640342414402a6efe8859cfc9e3aa042960b | refs/heads/master | 2020-04-24T09:39:56.561728 | 2019-05-30T11:41:20 | 2019-05-30T11:41:20 | 171,869,278 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 543 | sce | rings.sce | # camera: eye, center, up, fovy, width, height
camera 1.9 -3.5 1.9 0 0 0 0 1 0 45 700 500
# recursion depth
depth 1
# background color
background 0 0 0
# global ambient light
ambience 0.2 0.2 0.2
# light: position and color
light -0.3 0.3 0.1 0.9 0.6 0.6
light 1.5 -4.5 2.34 0.7 0.7 0.7
# mesh: filename, FLAT/SMOOTH, material
mesh ring1.off PHONG 0.5 0.5 0.5 0.89412 0.83137 0.18824 0.8 0.7 0.7 50.0 0.3
mesh ring2.off PHONG 0.5 0.5 0.5 0.80392 0.49804 0.19608 0.6 0.8 0.8 70.0 0.3
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.