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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
515146d67a23ffcfc14ffe4945b09590a0fbd607 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1244/CH1/EX1.9/Example19.sce | be6066e015b460daa9cf6899cb291a5b66b348a2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Example19.sce |
// Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
clc;
disp("Principles of Heat Transfer, 7th Ed. Frank Kreith et. al Chapter - 1 Example # 1.9 ")
//Cross sectional area in m2
A = 1;
//Heat transfer coefficient on hot side in W/m2-K
hchot = 10;
//Heat transfer coefficient on cold side in W/m2-K
hccold = 40;
//Length for heat transfer in m
L = 0.1;
//Thermal conductivity in W/m-K
k = 0.7;
//Resistances in K/w
R1 = 1/(hchot*A);
R2 = L/(k*A);
R3 = 1/(hccold*A);
//Total resistance
Rtotal = R1+R2+R3;
//Temperature on hot side in K
T1 = 330;
//Temperature on cold side in K
T2 = 270;
disp("Rate of heat transfer per unit area in W is")
//Rate of heat transfer per unit area in W
q = (T1-T2)/(R1+R2+R3)
|
e3e96546dd58130df97d5ef36b6eecd6b83e90a3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3131/CH6/EX6.4/6_4.sce | 70342c95312e538e67aad0d46c97bb4329dcac7f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 467 | sce | 6_4.sce | clear all; clc;
disp("Ex 6_4")
// At joint G:
disp("At Joint G:")
F_GC=0// Summing forces along Y axis
printf('\n F_GC = %0.0f \n',F_GC)
// At joint D:
disp("At Joint D:")
F_DF=0// Summing forces along X axis
printf('\n F_DF = %0.0f \n',F_DF)
// At joint F:
disp("At Joint F:")
F_FC=0// Summing forces along Y axis
printf('\n F_GC = %0.0f \n',F_FC)
// At joint B:
disp("At Joint B:")
F_BH=2// Summing forces along Y axis
printf('\n F_BH = %0.0f kN (C)\n',F_BH)
|
2f2dbfea488035a240cd27c92418972c2b99a325 | a5f0fbcba032f945a9ee629716f6487647cafd5f | /Machine_cloud/demos/url.sce | 7a73bf9c65b10df14c8b932802d8193b100bc4d3 | [
"BSD-2-Clause"
] | permissive | SoumitraAgarwal/Scilab-gsoc | 692c00e3fb7a5faf65082e6c23765620f4ecdf35 | 678e8f80c8a03ef0b9f4c1173bdda7f3e16d716f | refs/heads/master | 2021-04-15T17:55:48.334164 | 2018-08-07T13:43:26 | 2018-08-07T13:43:26 | 126,500,126 | 1 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 469 | sce | url.sce | // Demo script
url = 'https://raw.githubusercontent.com/franklinwillemen/Machine_Learning/master/Regression/Simple_Linear_Regression/Salary_Data.csv'
algorithm = 'kmeans_clustering'
preprocessing_script = 'preprocessing.py'
parameters = ''
chdir('..')
toolbox_basedir = pwd()
chdir('tests')
getd(toolbox_basedir + '/macros')
machineLearnURLDownload(url, toolbox_basedir)
machineLearnURL(algorithm, preprocessing_script, toolbox_basedir, parameters); |
f655bff3e202352888efd709b7ca5d77112a410e | 449d555969bfd7befe906877abab098c6e63a0e8 | /689/CH8/EX8.14/14.sce | c2f85347f51b9b3a80b3d11821c925f23029c68b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 14.sce | clc; funcprot(0);
//Example 8.14 Moment Coefficient and center of pressure
// Initialisation of variables
alpha = 2;
V = 120;
b = 42;
c = 7;
rho = 0.002378;
// Calculations
S = b*c;
Cl = 0.295; //From fig 8.13
Cd = 0.0156; //From fig 8.13
CP = .36; //From fig 8.13
CMo = -CP*(Cl*cosd(alpha)+Cd*sind(alpha));
Mo = CMo*C*S*V^2*(rho/2);
//Results
disp(Mo,"Moment about leading edge (ft-lb):");
|
07d80e7bd0596eea11496a5402669c9717295d36 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1370/CH6/EX6.9/exmaple6_9.sce | 71d1b6bacd3aa009297a1a175dfffca63c5e33c0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 248 | sce | exmaple6_9.sce | //example6.9
clc
disp("R_m=5 ohm, I_m=15 mA")
disp("i) I=15A")
r=(15*5*10^-3)/(15-(15*10^-3))
format(9)
disp(r,"R_sh(in ohm)=[(I_m)*(R_m)]/[I-(I_m)]=")
disp("ii) V=15 V")
r=(15/(15*10^-3))-5
format(4)
disp(r,"R_s(in ohm)=V/I_m - R_m =")
|
2271b88c05cd95a4b12dbe01e1c21a09dbaef35e | 449d555969bfd7befe906877abab098c6e63a0e8 | /3482/CH4/EX4.7/Ex4_7.sce | 60de967dee7c5ac84c9b2cc8d18480ef3314b4fc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 412 | sce | Ex4_7.sce | clc;
//page 194
m1=80;//kg mass of man
m2=20;//kg, mass of ladder
m=m1+m2;//kg
g=9.81;//m/s^2 gravitational acceleration
W=-m*g;//N, j
C=-0.6*W/3;//N
Bz=-0.6*C/1.2;//N
By=-0.9*W/1.2;//N
printf(" Reaction At B is B= (%.0f) N j +(%.1f N)k\n",By,Bz);
printf(" Reaction At C is C= (%.2f) N k\n",C);
Ay=-W-By;//N
Az=-C-Bz;//N
printf(" Reaction At A is A= (%.0f) N j +(%.1f N)k \n",Ay,Az);
|
c2f7e452d0070a6c9d773dd0df36f611af1d0f5a | 9d2c9394c6b6997318b9d04556462c9bba639045 | /Replication 2/Dave_RIFData/Dave_RIFData/Sub8/VP8_OneBack.sce | 655e99c4a162dc3aa89690110243c66fee3f1d8d | [] | no_license | rettopnivek/Wimber_et_al_replication_3 | 673b156d8d18d58b92b2f05fedef87976e787089 | 8dbc22329093a61b1e5cb8aac3feca45a5c82d06 | refs/heads/master | 2020-12-31T04:42:39.856717 | 2018-02-01T15:49:15 | 2018-02-01T15:49:15 | 58,006,910 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,885 | sce | VP8_OneBack.sce | array <int> finalSeq[432] = {8,64,64,46,15,42,34,63,63,14,57,17,60,30,13,47,4,4,52,2,53,59,33,12,33,69,69,48,48,13,65,40,46,51,51,46,5,43,42,45,6,58,6,6,51,16,30,21,67,51,50,27,50,25,54,37,71,38,38,5,39,48,60,11,2,28,9,18,20,6,68,40,12,14,38,50,17,66,53,61,43,52,71,8,58,58,4,60,10,3,38,13,16,25,25,48,10,45,58,28,5,6,40,24,49,49,1,55,30,25,25,42,66,68,16,9,15,15,8,64,28,12,26,20,3,63,47,47,9,2,9,9,64,72,45,39,39,34,21,36,54,66,42,20,62,62,37,41,64,29,71,33,33,4,32,51,69,57,24,71,37,37,46,55,55,30,54,10,24,7,28,33,44,56,31,31,3,3,52,60,14,28,19,19,59,49,2,19,57,53,53,50,50,16,1,63,26,44,11,60,36,44,34,62,57,70,18,18,49,41,70,20,40,67,41,59,56,56,70,37,69,69,1,68,34,34,62,19,17,15,12,36,36,65,48,10,8,8,12,22,51,38,32,10,40,45,23,23,35,35,47,36,49,21,21,56,46,71,18,4,10,55,31,72,36,67,2,58,58,2,15,1,14,1,14,14,42,8,31,65,65,53,66,5,5,12,7,7,29,29,65,61,29,24,4,22,22,70,21,30,26,26,68,31,11,11,27,27,17,17,45,1,44,71,62,62,24,38,45,3,72,7,18,61,3,52,48,22,22,47,19,32,23,26,27,39,20,41,67,23,23,16,41,54,61,5,13,33,7,66,66,69,56,15,37,53,6,21,61,26,63,39,47,43,70,70,32,65,7,24,20,31,25,50,41,64,55,27,59,44,44,9,35,35,55,34,52,54,72,54,61,49,30,68,28,23,35,35,29,29,67,67,68,42,27,57,19,57,13,11,39,72,16,18,43,17,56,13,63,52,72,46,11,32,43,43,22,59,59,40,60,32};
array <int> buttons[432] = {0,2,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,2,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,1,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,2,2,1,2,2,2,2,2,2,2,2,2,2,1,2,1,2,2,2,2,2,1,2,2,2,2,2,2,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,1,2,2,2,2,2,2,1,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,2,1,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,1,2,2,2,2,1,2,2,2,1,2,2,1,2,1,2,2,2,2,2,2,1,2,2,2,2,1,2,2,2,1,2,1,2,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,1,2,0,0};
array <int> nullEvents[145] = {9,15,16,26,27,29,33,34,41,43,47,48,52,55,56,58,61,65,67,72,76,83,89,94,99,100,103,107,113,117,119,126,128,131,134,143,145,149,150,155,156,160,171,177,182,184,186,191,196,197,198,200,203,205,218,225,229,231,234,235,245,252,253,254,258,262,263,268,270,272,279,281,298,299,301,306,307,308,312,318,321,333,334,335,341,345,349,352,354,360,367,372,375,376,379,381,385,388,398,400,401,406,408,418,420,423,428,432,434,438,439,444,445,446,447,448,460,462,464,468,485,486,488,492,495,497,509,514,515,516,519,526,531,532,537,540,544,550,554,555,565,566,571,572,577};
array <int> selPic[36] = {1,5,9,13,17,21,25,29,33,37,41,45,49,53,57,61,65,69,4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72};
|
83ebfb6aec4259504fafa455b2e9c263dc180e3f | 449d555969bfd7befe906877abab098c6e63a0e8 | /443/CH17/EX17.24/17_24.sce | 3cd2556d609d665f8840ab73c57532b9b7d2de35 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 768 | sce | 17_24.sce | pathname=get_absolute_file_path('17_24.sce')
filename=pathname+filesep()+'17_24_data.sci'
exec(filename)
//Indicated when 1st cylinder was inoperational(in kW)
ip1=bp1234-bp234
//Indicated when 2nd cylinder was inoperational(in kW)
ip2=bp1234-bp134
//Indicated when 3rd cylinder was inoperational(in kW)
ip3=bp1234-bp124
//Indicated when 4th cylinder was inoperational(in kW)
ip4=bp1234-bp123
//Total indicated power(in kW)
ip1234=ip1+ip2+ip3+ip4
//Mechanical efficiency
nm=bp1234/(ip1234)*100
//Brake mean effective pressure(in bar)
pbm=(bp1234*60000)/(L*0.25*%pi*D^2*0.5*N*K)*10^-5
printf("\n\nRESULTS\n\n")
printf("\nTotal indicated power:%f\n",ip1234)
printf("\nMechanical efficiency:%f\n",nm)
printf("\nBrake mean effective pressure:%f\n",pbm) |
8d3c5b37cec7af1b51457eb0c6e223b975730f90 | 449d555969bfd7befe906877abab098c6e63a0e8 | /896/CH7/EX7.5/5.sce | 31dcdb438fbf476357220747d2a7723a80e74675 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 377 | sce | 5.sce | clc
//Example 7.5
//Calculate the force exerted on the flange when the valve of the nozzle is closed
//Let the gauge pressure be denoted by Pg
Pg=100//lbf/in^2
A=10//in^2
//F_bolts = -F_liq-F_atm
//F_bolts = -(Pg + P_atm)A - (-P_atm.A)
//F_bolts = -Pg.A
F_bolts=-Pg*A
printf("The force exerted on the flange when the valve of the nozzle is closed is %f lbf",F_bolts); |
763f8e6498b3b46bcf7c6c0b0ccc8cb4bcdaff7c | 449d555969bfd7befe906877abab098c6e63a0e8 | /998/CH29/EX29.89/Ex89.sce | 9eba480826d9f8b02d6571360a4793c1d8de9eeb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 509 | sce | Ex89.sce | //Ex:89
clc;
clear;
close;
t_a=60;// antenna noise temp in k
l1=1.075;//loss in waveguide in K
t_o=290;// in K
t_e2=160;// in K;
t_e3=10000;// in k
G2=10^6;// low noise ampr gain
t_s=(t_a/l1)+(l1-1)*(t_o)/l1;// noise temp in k
t_e=t_e2+(t_e3/G2);// Equivalent noise temp in K
t=t_s+t_e;// system noise temp in k
T=10*log(t)/log(10);//system noise temp in db
G=66-0.3;// in db
g_t=G-T;//G/T ratio in db/K
printf("The system noise temperature=%f K", t);
printf("\n The G/T ratio=%f db/K", g_t); |
93f0676db5f0f11c3cf0d53172f09de0c344fa34 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3428/CH2/EX1.2.20/Ex1_2_20.sce | cb58f3fc2afc2283969eae046b9cdf341f10d9a7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 464 | sce | Ex1_2_20.sce | //Section-1,Example-7,Page no.-AC.208
//To calculate the percentage of dry products of combustion by weight.
clc;
C=810
H=50
O=85
N=10
S=10
M_W=(((32/12)*C)+((16/2)*H)+((32/32)*S)-O)*(100/23)
W_CO2=(44/12)*C
W_SO2=(64/32)*S
W_N2=N+((77/100)*M_W)
T_W=W_CO2+W_SO2+W_N2
P_CO2=(W_CO2/T_W)*100
disp(P_CO2,'Percentage composition of CO_2')
P_N2=(W_N2/T_W)*100
disp(P_N2,'Percentage composition of N_2')
P_SO2=(W_SO2/T_W)*100
disp(P_SO2,'Percentage composition of SO_2')
|
ab7927374d3f74f29deb756edc86d2246d9cf773 | 99602a3df67f0bf806ffb5e714bbafcdd7d6ae88 | /tp/tp5/kNN.sci | 280e2088a97c722d5e4687f3990cb9ebb0308a96 | [] | no_license | BenjaminVanRyseghem/RDF | cbe77b76bb18680c03f16360fdad40723de25a68 | e9ed372d66fa4152426b3b1115448323ed0e9b58 | refs/heads/master | 2023-08-31T14:15:37.668811 | 2013-04-11T15:49:58 | 2013-04-11T15:49:58 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,377 | sci | kNN.sci | // calculate the distances between a line and a x_train
function distances = getDistances(line,x_train, x_train_size)
// we put in mat the line reapeated x_train_size times
mat = repmat(line,x_train_size,1);
// then we get the distances of each line
distances = (mat - x_train).^2;
endfunction
// get the k indexes of the k smallest distances
function index_list = getKIndex(distances, k)
// we sort the distances increasingly with their indexes
// in the list distances
[sorted_distances, indexes] = gsort(distances,'g','i');
// we get the k smallest distances
index_list = indexes(1:k);
endfunction
// get the most recurrent index of the list
function index = mostRecurrentIndex(liste)
// store the elements this way :
// index ocurrence
//ex: 1 3
// 3 1
// 4 1
// 5 2
m = tabul(liste,'i');
// we retrieve the index of the max value of ocurrence in m
[val,ind] = max(m(:,2))
// We get the good index in case there is no occurence for one index
// see example of tabul (there is no 2)
index = m(ind,1);
endfunction
// the kNN algorithm
function estim = kNN(x_test, x_train, y_test, y_train, k)
estimation = zeros(size(y_test,1),1);
for i = 1 : size(x_test,1)
print(%io(2),i);
// calculate the distances between a line of x_test and a x_train
distances = getDistances(x_test(i,:),x_train, size(x_train,1));
// get the k indexes of the k smallest distances
indexList = getKIndex(distances,k);
// get the most recurrent index of the list
mostRecurIndex = mostRecurrentIndex(indexList);
// then we put in estim the y_train at the most recurrent index
estimation(i,1) = y_train(mostRecurIndex);
end
estim = estimation;
endfunction
// calculate the error between y_estim and y_test
function err = calculateError(y_estim, y_test)
// y_estim ~= y_test create a matrix made of True and False
// True if elements at the same places are equals
// False otherwise
// bool2s change True in 1 and False in 0
errors = bool2s(y_estim ~= y_test)
// then get the average of the errors
err = mean(errors)
endfunction
// ------------------------------------------------------------------------- //
// ------------------------------------------------------------------------- //
stacksize('max');
loadmatfile('mnist_all.mat');
n=200;//nombre des exemplaires d'entrainement
k=1; //nombre des voisins
x_train = double([ train0(1:n,:);
train1(1:n,:);
train2(1:n,:)]);
y_train = [ones(n, 1); ones(n, 1)*2; ones(n, 1)*3];
x_test = double([test0; test1; test2]);
y_test = [ ones(size(test0,1), 1);
ones(size(test1,1),1)*2;
ones(size(test2,1), 1)*3];
// affiche l'image train0 -> 0
// y = matrix(train0(1,:),28,28)';
// Matplot(y);
// Trouver les k plus proche voisins pour chaque ligne de x_test
// et estimer sa classe
// Sauvegarder les classes dans un vecteur y_estim (de la meme taille que y_test )
y_estim = kNN(x_test, x_train, y_test ,y_train, k);
// Calculer l'erreur en utilisant l'equation (1)
errorCalculated = calculateError(y_estim, y_test)
|
910e1dfc55f2b320edec81d56bb253975a7d4558 | 449d555969bfd7befe906877abab098c6e63a0e8 | /98/CH20/EX20.1/example20_1.sce | b5923222a58335139aac031d08397ba79ecc1155 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 132 | sce | example20_1.sce | //Chapter 20
//Example 20_1
//Page 495
clear;clc;
r1=0.8;
i1=8;
i2=1;
r2=r1*(i2/i1)^(2/3);
printf("Radius = %.1f mm \n\n", r2);
|
e280cb3183030b6b128be5d1c82b96640b979abf | 449d555969bfd7befe906877abab098c6e63a0e8 | /2732/CH9/EX9.10/Ex9_10.sce | b8bda9bbab4e9b2f6b84b716af1591e1cfa7e20d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 881 | sce | Ex9_10.sce | clc
//initialization of variables
clear
b=2 //cm
h=2 //cm
T=2000 //kg-cm
V=250 //kg
M=2000 //kg-cm
// calculations
Mmax=M*6/(b*h*b)
Vmax=3*V/(2*b*h)
Zt=0.208*b^2*h
Tmax=T/(Zt)
sigma=Mmax
printf('points A,B,')
printf('\n sigma=%d kg/cm^2 (tension)',sigma)
printf('\n points C,D,')
printf('\n sigma=%d kg/cm^2 (cmpression)',sigma)
tau=Vmax+Tmax
printf('\n point E')
printf('\n tau=%.2f kg/cm^2 shear',tau)
tau=Vmax-Tmax
printf('\n tau=%.2f kg/cm^2 shear',tau)
// at G
sigma_x=sigma
sigma_y=0
tau_xy=Tmax
sigma_1=(sigma_x+sigma_y)/2+sqrt((1/2*(sigma_x-sigma_y))^2+tau_xy^2)
sigma_2=(sigma_x+sigma_y)/2-sqrt((1/2*(sigma_x-sigma_y))^2+tau_xy^2)
// results
printf('\n at point G')
printf('\n sigma_1 = %d kg/cm^2 (tension)',sigma_1)
printf('\n sigma_2 = %d kg/cm^2 (compression)',sigma_2)
// Question was asked only to find out at A,B,C,D,E,F and G
|
1fc3c896b5729358baec89f22ec1dfd9220caa61 | 5792b184e71a9de7779e0bd21b6833f8ddfdb4b5 | /sysvr3/301/usr/src/cmd/help/tests/helpadm.tst | a97d4a40682c712b8536fbde1f4cd7976396460d | [] | no_license | ryanwoodsmall/oldsysv | 1637a3e62bb1b9426a224e832f44a46f1e1a31d4 | e68293af91e2dc39f5f29c20d7e429f9e0cabc75 | refs/heads/master | 2020-03-30T06:06:30.495611 | 2018-09-29T09:04:59 | 2018-09-29T09:04:59 | 150,839,670 | 7 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,554 | tst | helpadm.tst | #ident "@(#)help:tests/helpadm.tst 1.2"
echo "You must be super user to execute this acceptance test"
echo "and you must have your SCROLL variable set to no and exported."
ROOT=/cmds/cmds/REALHELP
HELPADM=${ROOT}/etc/helpadm
HELP=${ROOT}/usr/bin/help
$HELPADM <<! >> helpadm.$$ 2>&1
1
c
/mkdir
s/mkdir /mkdir junk/
w
q
e
y
!
$HELP <<! >> helpadm.$$ 2>&1
s
c
q
!
$HELPADM <<! >> helpadm.$$ 2>&1
1
c
/junk
s/junk/ /
w
q
e
y
!
$HELP <<! >> helpadm.$$ 2>&1
s
c
q
!
$HELPADM <<! >> helpadm.$$ 2>&1
2
junk
a
This is a junk file for acceptance testing
.
w
q
y
y
!
$HELP <<! >> helpadm.$$ 2>&1
g
junk
q
!
$HELPADM <<! >> helpadm.$$ 2>&1
2
junk
d
y
!
$HELP <<! >> helpadm.$$ 2>&1
g
junk
q
!
$HELPADM <<! >> helpadm.$$ 2>&1
3
junk
a
This is the description for junk for the acceptance test.
.
w
q
y
a
This is the options screen for junk for the acceptance test.
.
w
q
y
a
This is the examples screen for junk for the acceptance test.
.
w
q
y
garbage
.
y
y
!
$HELP <<! >> helpadm.$$ 2>&1
l
k
garbage
c
junk
d
e
o
q
!
$HELPADM <<! >> helpadm.$$ 2>&1
3
junk
y
y
!
$HELP <<! >> helpadm.$$ 2>&1
l
k
garbage
c
junk
q
!
$HELPADM <<! >> helpadm.$$ 2>&1
4
!
ls -l ${ROOT}/usr/lib/help/HELPLOG | sed 's/^\(..........\).*/\1/' >> helpadm.$$ 2>&1
$HELPADM <<! >> helpadm.$$ 2>&1
5
!
ls -l ${ROOT}/usr/lib/help/HELPLOG | sed 's/^\(..........\).*/\1/' >> helpadm.$$ 2>&1
echo "\n" >> helpadm.$$
diff helpadm.$$ admfile > admdiff.$$
if [ -s admdiff.$$ ]
then
echo "Helpadm acceptance test failed!"
else
echo "Helpadm acceptance test passed!"
fi
rm -fr helpadm.$$
|
74873c4e72406947f354a838e5d2adfdc7eef007 | 964a1ce44b6391e555c0e2aeff6c55dda847d718 | /Mini Compiler for LaTeX/test result/projp1_res.tst | 8c161c735aef7390bc8e6e2b72910c20a51ac68e | [] | no_license | kennethwty/mini-compiler-latex | 6c165567298c216d39a806fa7cc05ed67f1babfc | d1b99a4fbbac906bf61242a977886578e1eb3594 | refs/heads/master | 2021-09-28T10:08:02.927880 | 2018-11-16T17:45:46 | 2018-11-16T17:45:46 | 104,703,352 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 832 | tst | projp1_res.tst |
1. Design and develop a contex free grammar CFG for a subset of Latex.
2. Design, implement, and test the common CFG which I will provide to you at a later date using Lex Flex and Yacc Bison .
3. Design, implement, and test a syntax directed translator based on part 2 that automatically generates formatted ASCII text from an input Latex source file.
- Design a CFG for the project that allows Latex programs e.g., text to be formatted to be recognized. This will provide you with important language design experience.
- Calculate FIRST and FOLLOW for the non terminals listed below
T^H_ h^H_ i^H_ s^H_ ^H_ i^H_ s^H_ ^H_ a^H_ ^H_ d^H_ e^H_ s^H_ i^H_ g^H_ n^H_ ^H_ p^H_ r^H_ o^H_ j^H_ e^H_ c^H_ t^H_ !^H_ !^H_ !^H_ ^@^H_
demurjs CSE244 SP94
|
fd51836236f8cc237089ddb558c9ae73070e21ff | 717ddeb7e700373742c617a95e25a2376565112c | /632/CH11/EX11.3/example11_3.sce | 76fcb6dbb011c34dd7e1e0a4d7581ad822d86a54 | [] | 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 | 275 | sce | example11_3.sce | //clc()
d = 100 /1000;//m
m = 50;//kg
P = 1.01325*10^5;//Pa
A = %pi * (d^2)/4;
Fatm = P * A;
Fwt = m * g;
Ftotal = Fatm + Fwt;
P = Ftotal / A;
disp("bar",P/10^5,"(a)Pressure of the gas = ")
z = 500/1000;//m
w = Ftotal * z;
disp("J",w,"(b)Work done by the gas = ") |
96de08d5229553208363124dec0dd0544da1da08 | 15b814fbf5ba965e98871286249c9f382d1eee4c | /adaptive/simulation12/model_reference2.sce | 49323970d0092aac8e88392e86406ab9886ce421 | [] | no_license | oscarkremer/disciplines | b5338f3a97c7a20e4b39618d7da0d4396dc35f07 | b8d1ca9da37f81c99ee08dbee795d2d936597666 | refs/heads/master | 2020-07-22T14:57:42.643799 | 2019-12-07T15:51:40 | 2019-12-07T15:51:40 | 207,239,678 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,046 | sce | model_reference2.sce | clear
close
delta_t=0.01
t = (0:delta_t:100);
t = t'
ifinal=size(t);ifinal=ifinal(1);
uc = sin(t);
s = poly(0, 's');
g = syslin('c', 2/(s + 2))
ym = csim(uc', t', g)';
y0 = [0];
y_plot = zeros(ifinal,1)
y_plot(1) = y0;
a = 1;
b = 0.5;
theta1 = 0;
theta2 = 0;
theta_plot1 = zeros(ifinal,1)
theta_plot2 = zeros(ifinal,1)
theta_plot1(1) = theta1;
theta_plot2(1) = theta2;
gamma1 = 200.539
gamma2 = 200.539
error_plot = zeros(ifinal, 1)
ITAE = 0;
model_error = y0-ym(1)
for i=2:ifinal
theta1 = theta1 + delta_t*(-gamma1*model_error*uc(i-1));
theta2 = theta2 + delta_t*(gamma2*model_error*y0);
u = theta1*uc(i-1)-theta2*y0
y0 = (1-a*delta_t)*y0 + b*delta_t*u
model_error = (y0 - ym(i))
ITAE = ITAE + abs(model_error)*t(i)*delta_t
theta_plot1(i) = theta1;
theta_plot2(i) = theta2;
y_plot(i) = y0
end
figure(1)
plot(t,y_plot,'-k')
plot(t,ym,'-b')
figure(2)
plot(t,theta_plot1)
figure(3)
plot(t,theta_plot2)
figure(4)
plot(t, y_plot - ym)
h = gca(); // get current axes
h.data_bounds = [0, 100 ; 0, 0.6];
|
23fd8f33def3a0c36bc0b849020c742eaf08cc68 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3526/CH6/EX6.2/EX6_2.sce | 79cd35b7d71cd4c47d0cf0207ea1f7977d184aec | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 973 | sce | EX6_2.sce | clc;funcprot(0);//EXAMPLE 6.2
//page 152
// Initialisation of Variables
F=45000;.......//Force applied on an aluminum rod in lb
e=25000;.......//the maximum allowable stress on the rod in psi
l2=150;.......//the minimum length of the rod in in
e1=0.0025;......//The strain appiled on rod
sigma=16670;.........//Stress applied on rod in psi
L=0.25;........//The maximum allowable elastic deformation in in
//CALCULATIONS
Ao1=F/e;........//The required crosssectional area of the rod
d=sqrt((Ao1*4)/%pi);......//Diameter of rod in in
l1=e1*L;...........//The maximum length of the rod in in
e2=L/e1;...........//The minimum strain allowed on rod
Ao2=F/sigma;........//The minimum cross-sectional area in in^2
disp(Ao1,"The required crosssectional area of the rod in in^2:")
disp(d,"Diameter of rod in in:")
disp(l1,"The maximum length of the rod in in:")
disp(e2,"The minimum strain allowed on rod:")
disp(Ao2,"The minimum cross-sectional area in in^2:")
|
8b0711ef8a771bd4dcdb9107e45f760336bc7e67 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2471/CH10/EX10.1/Ex10_1.sce | f074a60307ad173c7dad5dd56609b2dadf819b7b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,481 | sce | Ex10_1.sce | clear ;
clc;
// Example 10.1
printf('Example 10.1\n\n');
printf('Page No. 293\n\n');
// given
m = 1;// mass flow rate of initial air mixture in kg/s
T = 23.5;// Initial temperature in degree celcius
m1 = 0.6;// Percentage of fresh air mixture
T1 = 5;// Dry Bulb Temperature of fresh air in degree celcius
w1 = 0.005;// Humidity of fresh air at temperature T1 in kg/kg
m2 = 0.4;// Percentage of recirculated air mixture
T2 = 25;// Dry Bulb Temperature of recirculated air in degree celcius
w2 = 0.015;// Humidity of recirculated air at temperature T2 in kg/kg
//In air conditioning => m1*w1 + m2*w2 = m*w
w = (m1*w1 + m2*w2)/m;// in kg/kgs
printf('The humidity of the air mixture is %.3f kg/kg \n',w)
//The specific enthalpy in J/kg can be calculated by the formula => h = (1.005*10^3*T) +(w*((2.50*10^6)+(1.86*10^3*T))); where the T is the temperature and w is the humidity at temperature T
h_f = (1.005*10^3*T1) +(w1*((2.50*10^6)+(1.86*10^3*T1)));// Specific enthalpy of fresh air in J/kg
h_r = (1.005*10^3*T2) +(w2*((2.50*10^6)+(1.86*10^3*T2)));// Specific enthalpy of recirculated air in J/kg
h_m = (1.005*10^3*T) +(w*((2.50*10^6)+(1.86*10^3*T)));// Specific enthalpy of final air mixture in J/kg
h_t = (m1*h_f) + (m2*h_r);// Total enthalpy of initial air mixturein J/kg
Q = m*(h_m - h_t);// in Watts
printf('The load on the heater is% .3f W',Q)
// Deviation in answer due to direct substitution and some approximation in answer in book
|
2c75fb4b8c21f3baf792bd16b9b5bc1ce842c9c6 | b29e9715ab76b6f89609c32edd36f81a0dcf6a39 | /ketpicscifiles6/Setobjdecimals.sci | 2ee06cbb9698da7ee9da366f8e2beefe460a0a81 | [] | no_license | ketpic/ketcindy-scilab-support | e1646488aa840f86c198818ea518c24a66b71f81 | 3df21192d25809ce980cd036a5ef9f97b53aa918 | refs/heads/master | 2021-05-11T11:40:49.725978 | 2018-01-16T14:02:21 | 2018-01-16T14:02:21 | 117,643,554 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 137 | sci | Setobjdecimals.sci | // s : 2014.06.22
function Setobjdecimals(n)
global OBJFMT;
s1=string(n);
s2=string(n+3);
OBJFMT="%"+s2+"."+s1+"f";
endfunction
|
1cf725f6e3099bbb51bb1059578482ebaa493f6d | df924acfdd5b043da9336a2276726dbfb655735a | /test_suite/dfrulcmd.tst | 7dccd0a40780880ba125dd95ba5f87a1fa1af76d | [] | 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 | dfrulcmd.tst | (unwatch all)
(clear)
(dribble-on "Actual//dfrulcmd.out")
(batch "dfrulcmd.bat")
(dribble-off)
(clear)
(open "Results//dfrulcmd.rsl" dfrulcmd "w")
(load "compline.clp")
(printout dfrulcmd "dfrulcmd.bat differences are as follows:" crlf)
(compare-files "Expected//dfrulcmd.out" "Actual//dfrulcmd.out" dfrulcmd)
(close dfrulcmd)
|
ee64da5ac2a9c16b43071b6c48059f0fb1ccb8ea | 59032c58dc33016469504099f5205237afdee7c3 | /sexpicpercept.sce | e8b198abdfef0e196007f129212585774faa662f | [] | no_license | s-kline/AffectCueReactivity | 272770274e445ef66b31ec5819dda503ea96f597 | 52b6a9a291b7e1fa5e82b37e2267e69b240fe999 | refs/heads/main | 2022-12-26T03:26:48.224068 | 2020-10-15T14:01:38 | 2020-10-15T14:01:38 | 304,344,106 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 8,904 | sce | sexpicpercept.sce | scenario = "sex";
#scenario_type=fMRI_emulation;
#scenario_type = fMRI;
scan_period=2000;
# pulses_per_scan=1;
# pulse_code=1;
# pulse_width=15; #zuvor 15 - fuer Physio auf 100 geaendert - laut Carlo auch 30 ok
begin;
############################################################
# Default-Picture
picture {text { caption = "+"; font_size = 48; font_color = 200,200,200;};
x=0;
y=0;} default;
# fixation
picture {text { caption = "+"; font_size = 48; font_color = 200,200,200;};
x=0;
y=0;
} fixk;
bitmap {
filename="wfix.bmp";
} scale_bitmap;
############################################################
array {
picture { bitmap { filename = "sex_001.bmp";}; x=0; y=0;};
picture { bitmap { filename = "sex_002.bmp";}; x=0; y=0;};
picture { bitmap { filename = "sex_003.bmp";}; x=0; y=0;};
picture { bitmap { filename = "sex_004.bmp";}; x=0; y=0;};
picture { bitmap { filename = "sex_005.bmp";}; x=0; y=0;};
picture { bitmap { filename = "sex_006.bmp";}; x=0; y=0;};
picture { bitmap { filename = "sex_007.bmp";}; x=0; y=0;};
picture { bitmap { filename = "sex_008.bmp";}; x=0; y=0;};
picture { bitmap { filename = "sex_009.bmp";}; x=0; y=0;};
picture { bitmap { filename = "sex_010.bmp";}; x=0; y=0;};
picture { bitmap { filename = "sex_011.bmp";}; x=0; y=0;};
picture { bitmap { filename = "sex_012.bmp";}; x=0; y=0;};
picture { bitmap { filename = "sex_013.bmp";}; x=0; y=0;};
picture { bitmap { filename = "sex_014.bmp";}; x=0; y=0;};
picture { bitmap { filename = "sex_015.bmp";}; x=0; y=0;};
picture { bitmap { filename = "sex_016.bmp";}; x=0; y=0;};
picture { bitmap { filename = "sex_017.bmp";}; x=0; y=0;};
picture { bitmap { filename = "sex_018.bmp";}; x=0; y=0;};
picture { bitmap { filename = "sex_019.bmp";}; x=0; y=0;};
picture { bitmap { filename = "sex_020.bmp";}; x=0; y=0;};
picture { bitmap { filename = "sex_021.bmp";}; x=0; y=0;};
picture { bitmap { filename = "sex_022.bmp";}; x=0; y=0;};
picture { bitmap { filename = "sex_023.bmp";}; x=0; y=0;};
picture { bitmap { filename = "sex_024.bmp";}; x=0; y=0;};
picture { bitmap { filename = "sex_025.bmp";}; x=0; y=0;};
picture { bitmap { filename = "sex_026.bmp";}; x=0; y=0;};
picture { bitmap { filename = "sex_027.bmp";}; x=0; y=0;};
picture { bitmap { filename = "sex_028.bmp";}; x=0; y=0;};
picture { bitmap { filename = "sex_029.bmp";}; x=0; y=0;};
picture { bitmap { filename = "sex_030.bmp";}; x=0; y=0;};
} sex;
array {
picture { bitmap { filename = "neu_001.bmp";}; x=0; y=0;};
picture { bitmap { filename = "neu_002.bmp";}; x=0; y=0;};
picture { bitmap { filename = "neu_003.bmp";}; x=0; y=0;};
picture { bitmap { filename = "neu_004.bmp";}; x=0; y=0;};
picture { bitmap { filename = "neu_005.bmp";}; x=0; y=0;};
picture { bitmap { filename = "neu_006.bmp";}; x=0; y=0;};
picture { bitmap { filename = "neu_007.bmp";}; x=0; y=0;};
picture { bitmap { filename = "neu_008.bmp";}; x=0; y=0;};
picture { bitmap { filename = "neu_009.bmp";}; x=0; y=0;};
picture { bitmap { filename = "neu_010.bmp";}; x=0; y=0;};
picture { bitmap { filename = "neu_011.bmp";}; x=0; y=0;};
picture { bitmap { filename = "neu_012.bmp";}; x=0; y=0;};
picture { bitmap { filename = "neu_013.bmp";}; x=0; y=0;};
picture { bitmap { filename = "neu_014.bmp";}; x=0; y=0;};
picture { bitmap { filename = "neu_015.bmp";}; x=0; y=0;};
picture { bitmap { filename = "neu_016.bmp";}; x=0; y=0;};
picture { bitmap { filename = "neu_017.bmp";}; x=0; y=0;};
picture { bitmap { filename = "neu_018.bmp";}; x=0; y=0;};
picture { bitmap { filename = "neu_019.bmp";}; x=0; y=0;};
picture { bitmap { filename = "neu_020.bmp";}; x=0; y=0;};
picture { bitmap { filename = "neu_021.bmp";}; x=0; y=0;};
picture { bitmap { filename = "neu_022.bmp";}; x=0; y=0;};
picture { bitmap { filename = "neu_023.bmp";}; x=0; y=0;};
picture { bitmap { filename = "neu_024.bmp";}; x=0; y=0;};
picture { bitmap { filename = "neu_025.bmp";}; x=0; y=0;};
picture { bitmap { filename = "neu_026.bmp";}; x=0; y=0;};
picture { bitmap { filename = "neu_027.bmp";}; x=0; y=0;};
picture { bitmap { filename = "neu_028.bmp";}; x=0; y=0;};
picture { bitmap { filename = "neu_029.bmp";}; x=0; y=0;};
picture { bitmap { filename = "neu_030.bmp";}; x=0; y=0;};
} neu;
# picture presentation
trial {
start_delay = 0;
trial_type = fixed;
trial_duration = stimuli_length; # trial so lange präsentieren, wie das Bild dauert
# trial_duration = 1000; # trial immer für eine sekunde präsentieren
stimulus_event {
picture default;
time = 0;
duration = 1000; # Bild immer für eine Sekunde präsentieren
# duration = 983; # hard gecodet für framerate delay
} stim;
} pictrial;
# fixation
trial {
start_delay = 0;
trial_type = fixed;
trial_duration = 100000; #bis zu 10 sekunden oder stimuli_length
stimulus_event {
picture fixk;
time=0;
duration=next_picture;
} fixstim;
} fixtrial;
######################## PCL ##############################
begin_pcl;
int i;
int x;
int start_time;
int n;
int z;
#int current_pulse;
string steuerfile_name = "Y:\\Klein\\Affect_CueReactivity\\Presentation\\\Steuerfiles\\sexstudie_vp"+logfile.subject()+".txt";
string savefile_name = "0188ok_"+logfile.subject()+"rating_pic.txt";;
#int skip_volumes=2; # =15
int end_volumes = 418; # =15
int max_time = 836000; #überbleibsel vom rating?
int events = 180; #wieviele Bild-events gibt es insgesamt
array<int> pic_numbera[events];
array<string> pic_name[events];
array<string> instruction[24];
array<string> stim_category[events];
array<int> trial_onset[events];
input_file ifile = new input_file;
#output_file out = new output_file;
##########################SUBROUTINEN#############################################################
#sub pulse_pause
#begin
# loop x = 0
# until x > skip_volumes
# begin
# x = pulse_manager.main_pulse_count();
# end;
#end;
################## EINLESEN DER PRESENTATION REIHENFOLGE ##########################################
# hole dir aus dem Steuerfile immer diese 3 Variablen und mache das fuer alle Events #
sub read_presentation_order
begin
loop i = 1
until i > events
begin
stim_category[i] = ifile.get_string(); # read pic category
pic_numbera[i] = ifile.get_int(); # read number of pic
trial_onset[i] = ifile.get_int(); # read onset time (ms)
i = i+1;
end;
end;
######################### SUBROUTINE pictures ####################################################
### wann welches Stimulusbild zeigen und im Logfile mitkodieren#############
sub show_picture (string cat, int a)
begin
if (cat == "sex") then
stim.set_event_code("sex"+string(pic_numbera[a]));
stim.set_stimulus (sex[pic_numbera[a]]);
pic_name[a] = "sex "+string(pic_numbera[a]);
elseif (cat == "neu") then
stim.set_event_code("neu"+string(pic_numbera[a]));
stim.set_stimulus (neu[pic_numbera[a]]);
pic_name[a] = "neu "+string(pic_numbera[a]);
end;
end;
########################## end of subroutines #######################################################
ifile.open(steuerfile_name);
read_presentation_order();
ifile.close();
fixstim.set_event_code("fixation");
#array<string> names_stimuli[events] = compile_block_names(stim_category)#, stim_categoryb, stim_categoryc, stim_categoryd, stim_categorye);
#out.open(out_file);
####### Experiment Loop #######
# fixtrial.present(); # fürs MRT
# pulse_pause();
int t = 1;
start_time = clock.time();
term.print(start_time);
z = trial_onset[t]; # onset of first pic trial - refresh period
term.print(z);
fixtrial.set_duration(z); # show fixation cross until first pic trial starts
fixtrial.present(); # show fixation cross
loop t = 1;
until t > events
begin
show_picture(stim_category[t], t);
pictrial.present(); #is presented as soon as possible
if (t == events) then #when experiment is over
z = end_volumes * 2000 + 2000;
else
z = trial_onset[t+1] - (clock.time() - start_time); #next onset - (current time - start time) - refresh_period = duration of fixation
term.print("\n");
term.print("next fixk dur is: ");
term.print(z);
fixtrial.set_duration(z);
fixtrial.present();
end;
t = t+1; #loop control --> next trial
end;
# loop
# until clock.time() > start_time + max_time
# begin
# end;
|
494f4a32cfd15ca297d7b99259f0f95825267804 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2384/CH1/EX1.20/ex1_20.sce | f95ad68ff4480d2c2c70c43aa4a0339ee5accfe0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 729 | sce | ex1_20.sce | // Exa 1.20
clc;
clear;
close;
format('v',7)
// Given data
R1 = 3;// in ohm
R2 = 8;// in ohm
R3 = 4;// in ohm
R4 = 12;// in ohm
R5 = 14;// in ohm
V1 = 10;// in V
V2 = 3;// in V
V3 = 6;// in V
//Applying KCL at node A: VA*(R1*R2+R2*R3+R3*R1)+VB*-R1*R2 = V1*R2*R3+V2*R1*R2 (i)
//Applying KCL at node B: VA*R4*R5+VB*-(R3*R4+R4*R5+R5*R3) = V2*R4*R5-V3*R3*R4 (ii)
A=[(R1*R2+R2*R3+R3*R1) R4*R5; -R1*R2 -(R3*R4+R4*R5+R5*R3)]
B= [(V1*R2*R3+V2*R1*R2) (V2*R4*R5-V3*R3*R4)];
V= B*A^-1;// Solving eq(i) and (ii) by Matrix method
VA= V(1);// in V
VB= V(2);// in V
I8_ohm= VA/R2;//The current through 8 ohm resistance in A
disp(I8_ohm,"The current through 8 ohm resistance in A is : ")
|
f79e9ca3a3a985d55983bf4d95b6c66162f5698b | 449d555969bfd7befe906877abab098c6e63a0e8 | /32/CH18/EX18.11/18_11.sce | ade70e1fb01a4f344e7fa499eed11b0fce7e3ed8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 547 | sce | 18_11.sce | //pathname=get_absolute_file_path('18.11.sce')
//filename=pathname+filesep()+'18.11-data.sci'
//exec(filename)
//From steam tables:
h1=322.28 //kJ/kg
h2=342.32 //kJ/kg
s2=1.1937 //kJ/kg.K
s1=s2
x1=0.961
h1=312.08 //kJ/kg
h3=144.11 //kJ/kg
h4=115.22 //kJ/kg
h5=h4
//Refrigeration effect(in kW):
m1=2
//Refrigeration effect(in kJ/kg):
r=h1-h5
//Refrigerant flow rate(in kg/s):
m=m1/r
//Compressor work(in kJ/kg):
Wc=h2-h1
//COP:
COP=r/Wc
printf("\n RESULT \n")
printf("\nCOP = %f",COP)
printf("\nMass flow rate = %f kg/s",m) |
2fc2ebaea33913f24fef02e2af58d9b6e33e5f2e | 449d555969bfd7befe906877abab098c6e63a0e8 | /42/CH4/EX4.10/sadiku_4_10.sce | 2c7e2008ac68ddb181e7a1f1adef6ced7b3cd1f0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 275 | sce | sadiku_4_10.sce | clear;
clc;
format('v',6);
Q1=-4;
Q2=5;
R1=[1 0 1]-[2 -1 3];
R2=[1 0 1]-[0 4 -2];
e=10^-9/(36*%pi);
mod_R1=(R1(1,1)^2+R1(1,2)^2+R1(1,3)^2)^.5;
mod_R2=(R2(1,1)^2+R2(1,2)^2+R2(1,3)^2)^.5;
C0=0;
V=10^-6*(([Q1/mod_R1]+[Q2/mod_R2])/(4*%pi*e))+C0;
disp(V*10^-3,'V(1,0,1)(in kV)='); |
e35812ffe5f6b20d701041da5784887f5af326d5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /626/CH5/EX5.1/5_1.sce | 5cecdd020adf208ae48e08cfb23d6511bd8b5ebc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 262 | sce | 5_1.sce | clear;
clc;
close;
disp("Example 5.1")
Md=1.5
//From isentropic table,
gm=1.4 //gamma
A=1.176 //A=A1/Ath=A1/Acr
//for same A, from isentropic table for M<1
My=0.61
//for My=0.61, from normal shock table
Mx=1.8
Mos=Mx
disp(Mos,"Overspeed Mach no.")
|
e0424d0c553325e32b3dac8a458f467832e5b38c | 449d555969bfd7befe906877abab098c6e63a0e8 | /851/CH1/EX1.2/Figure1_2.sce | 30536d844cb8b57ef6dedb2f34a9d60cd51f986a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 744 | sce | Figure1_2.sce | //clear//
//Caption:Digital Representation of Analog signal
//Figure 1.2: Analog to Digital Conversion
clear;
close;
clc;
t = -1:0.01:1;
x = 2*sin((%pi/2)*t);
dig_data = [0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1,0,1]
//
figure
a=gca();
a.x_location ="origin";
a.y_location ="origin";
a.data_bounds =[-2,-3;2,3]
plot(t,x)
plot2d3('gnn',0.5,sqrt(2),-9)
plot2d3('gnn',-0.5,-sqrt(2),-9)
plot2d3('gnn',1,2,-9)
plot2d3('gnn',-1,-2,-9)
xlabel(' Time')
ylabel(' Voltage')
title('Analog Waveform')
//
figure
a = gca();
a.data_bounds = [0,0;21,5];
plot2d2([1:length(dig_data)],dig_data,5)
title('Digital Representation')
|
76dbf7c8df989be903750c3e82f6c68c15b5a81e | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/ngram/5.1_13.tst | 8c6b5e72cabd43329807a1c01f07fe8e32ea5c53 | [] | 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 | 630,772 | tst | 5.1_13.tst | 1 107:1 233:1 466:1 573:1 644:1 663:2 908:2 989:1 1160:1 1229:1 1281:1 1331:1 1402:2 1530:1 1951:1 2128:1 2291:1 2359:1 2441:1 2553:1 2583:1 2595:1 2753:1 2953:1 3179:1 3521:1 3800:1 3925:1 4121:1 4199:1 4279:1 4461:1 4586:1 4910:1 4933:1 5206:1 5508:1 5579:1 5656:140 5682:1 5728:1 5824:1 5997:1 6106:1 6558:1 6708:1 6892:1 6957:1 7119:1 7158:1 7408:1 7421:1 7461:1 7697:1 7898:1 8033:1 8345:1 8450:1 8675:1 8679:1 8852:1 8880:1 9008:1 9027:1 9281:1 9468:1 9844:1 10028:1 10089:1 10166:1 10207:1 10261:1 10395:1 10532:1 10785:1 10812:1 10975:1 11138:1 11180:1 11316:1 11352:1 11755:1 11781:1 11869:1 12061:1 12156:1 12176:1 12426:1 12442:1 12630:1 12685:1 12892:1 13318:1 13337:1 13445:1 13605:1 13745:1 14007:1 14458:1 14678:1 14707:1 14729:1 14951:1 15208:1 15306:1 15456:1 15544:1 16080:1 16262:1 16273:1 16376:1 16585:1 16596:1 16676:1 16731:1 17202:1 17543:1 17591:1 17604:1 17776:1 18264:1 18360:1 18380:1 18525:1 18606:1 18616:1 19025:1 19324:1 19365:1 19621:1 19638:1 19816:1 19896:1 20044:1 20188:1 20267:1 20494:1 20875:1 21080:1 21223:1 21579:1 21667:1 21707:1
1 5:1 107:1 233:1 432:1 466:1 501:1 573:1 635:1 644:1 663:2 667:1 908:2 989:1 1037:2 1160:1 1229:1 1281:1 1320:2 1331:1 1358:1 1402:2 1430:1 1475:2 1476:1 1478:1 1489:1 1530:1 1598:1 1600:2 1644:1 1951:1 2105:1 2128:1 2267:1 2291:1 2359:2 2441:1 2511:1 2522:1 2553:1 2574:1 2583:1 2595:1 2752:1 2753:1 2953:1 3153:2 3179:1 3308:1 3325:1 3340:1 3358:2 3360:2 3521:2 3548:1 3718:1 3755:1 3781:1 3800:1 3916:1 3925:1 3948:1 3965:1 3979:1 3990:1 3997:2 4121:1 4199:1 4230:1 4265:1 4279:1 4426:1 4461:1 4586:1 4680:1 4771:1 4910:1 4933:1 5206:2 5257:3 5508:1 5579:1 5656:279 5682:1 5700:1 5728:2 5784:1 5824:1 5915:1 5997:1 6106:1 6366:1 6373:1 6376:1 6558:1 6567:1 6606:1 6662:1 6708:1 6832:1 6870:1 6892:1 6894:1 6906:1 6957:1 7012:1 7107:1 7117:1 7119:1 7131:1 7132:1 7158:1 7300:2 7405:1 7408:1 7421:1 7426:1 7461:1 7470:1 7575:1 7693:1 7697:1 7699:1 7741:1 7898:1 7994:1 8033:1 8345:2 8359:2 8378:1 8428:1 8450:1 8488:1 8520:1 8590:1 8675:1 8679:1 8765:1 8783:1 8852:2 8867:1 8880:1 9008:1 9027:1 9121:1 9281:1 9468:1 9655:1 9844:1 9849:1 10007:1 10028:1 10089:1 10166:1 10207:1 10216:1 10261:1 10291:1 10330:1 10384:1 10395:1 10439:1 10463:1 10532:1 10721:1 10785:1 10812:1 10881:1 10943:1 10962:1 10975:1 10989:1 10990:1 11043:1 11127:1 11138:1 11180:1 11237:1 11316:1 11331:2 11332:2 11352:1 11436:5 11463:1 11470:1 11525:1 11534:1 11755:1 11781:1 11869:1 12043:1 12061:1 12076:1 12089:1 12156:1 12176:1 12313:1 12390:1 12426:1 12442:2 12501:1 12630:1 12685:1 12738:1 12745:1 12892:1 12931:1 13064:1 13178:1 13316:1 13318:1 13337:1 13445:1 13602:1 13605:1 13745:1 13906:1 13942:1 13952:1 14007:1 14024:2 14036:1 14081:1 14151:1 14199:1 14437:1 14449:1 14458:1 14470:1 14499:1 14625:1 14678:1 14707:1 14729:1 14845:1 14951:1 14959:1 15208:1 15229:2 15301:1 15306:1 15360:1 15456:1 15544:1 15550:1 15573:1 15787:1 16051:1 16080:1 16100:1 16260:1 16262:1 16273:1 16376:1 16473:1 16523:1 16585:1 16596:2 16601:1 16676:1 16731:1 16749:1 16874:1 17062:3 17202:1 17242:1 17543:1 17591:1 17594:1 17604:1 17632:1 17776:1 17989:1 18264:1 18333:1 18360:1 18380:1 18455:1 18465:1 18523:1 18525:1 18606:1 18616:2 19025:1 19051:1 19062:1 19064:1 19324:1 19365:1 19444:1 19551:1 19621:1 19638:1 19664:3 19715:1 19724:1 19816:1 19891:1 19896:1 19929:2 20034:1 20044:1 20188:1 20223:1 20267:1 20482:1 20494:2 20519:1 20822:1 20851:1 20875:1 21034:1 21080:2 21110:1 21223:1 21265:1 21349:1 21386:1 21512:1 21547:1 21579:1 21623:1 21667:1 21707:2 21715:1
1 5:1 99:1 107:1 233:1 260:1 308:1 432:1 439:1 466:1 501:1 547:1 563:2 573:2 635:1 644:1 663:3 667:1 908:2 989:1 1018:1 1037:2 1056:1 1160:1 1205:1 1229:1 1237:1 1281:1 1320:2 1331:1 1358:1 1402:3 1430:1 1475:2 1476:2 1478:1 1489:1 1530:1 1531:1 1598:1 1600:2 1644:1 1789:1 1951:1 2009:1 2105:1 2128:1 2267:1 2291:1 2340:1 2356:1 2359:2 2441:1 2460:1 2472:1 2485:1 2506:1 2511:1 2522:1 2553:1 2562:1 2574:1 2583:1 2595:1 2626:1 2684:1 2691:1 2715:1 2750:1 2752:2 2753:1 2953:1 2989:1 3062:1 3124:1 3153:3 3166:1 3179:1 3275:1 3302:2 3308:1 3325:1 3340:2 3341:1 3358:2 3360:2 3521:2 3548:1 3557:1 3644:1 3718:1 3755:1 3781:1 3788:1 3800:2 3903:1 3916:1 3925:1 3948:1 3965:1 3979:1 3990:1 3997:2 4036:1 4106:1 4121:1 4199:1 4230:1 4265:2 4277:1 4279:1 4318:1 4426:1 4461:1 4513:1 4565:1 4582:1 4586:1 4600:1 4643:1 4680:2 4771:1 4841:1 4855:1 4910:3 4933:1 5199:1 5206:2 5257:3 5317:1 5348:1 5429:1 5453:1 5492:1 5508:1 5528:1 5579:1 5656:440 5678:1 5682:1 5700:1 5726:2 5728:2 5784:1 5824:1 5829:1 5915:1 5997:1 6106:1 6109:1 6189:1 6240:1 6248:1 6366:1 6373:2 6376:1 6558:1 6567:1 6597:1 6606:1 6662:1 6708:2 6713:1 6832:1 6870:1 6892:2 6894:1 6906:1 6957:1 6975:1 7012:1 7098:1 7107:1 7112:1 7117:2 7119:1 7131:1 7132:1 7158:2 7253:1 7300:2 7405:2 7408:1 7421:1 7426:1 7461:1 7470:1 7520:1 7555:1 7575:1 7689:1 7693:1 7697:1 7699:1 7741:1 7744:1 7898:1 7965:1 7991:1 7994:1 8022:1 8033:1 8221:1 8250:1 8312:1 8345:2 8359:2 8378:1 8428:2 8450:1 8488:1 8512:1 8520:1 8533:1 8554:1 8575:1 8590:1 8675:1 8679:1 8693:1 8765:1 8777:1 8783:2 8807:1 8852:2 8867:1 8880:1 8985:1 8997:1 9008:1 9027:1 9121:1 9139:1 9169:1 9176:1 9258:1 9260:1 9281:1 9399:1 9468:1 9604:1 9655:1 9661:1 9776:1 9823:1 9844:1 9849:1 9914:1 9945:1 10007:1 10028:1 10089:1 10166:1 10207:1 10216:1 10261:1 10291:1 10330:1 10384:1 10395:1 10403:1 10439:2 10463:1 10532:1 10676:1 10721:1 10785:1 10812:1 10854:1 10881:1 10941:1 10943:1 10962:1 10973:1 10975:1 10989:1 10990:1 11043:1 11108:1 11127:1 11138:1 11140:1 11143:1 11180:1 11237:1 11253:1 11316:1 11331:2 11332:2 11352:1 11364:1 11436:7 11455:1 11463:1 11470:3 11525:1 11527:1 11534:1 11605:1 11724:1 11755:1 11781:2 11783:1 11869:1 11896:1 12043:1 12061:1 12076:1 12089:1 12156:1 12176:1 12272:1 12286:1 12313:1 12390:1 12402:1 12426:1 12442:2 12501:1 12596:1 12630:1 12685:1 12694:1 12738:1 12745:1 12784:1 12842:1 12892:1 12931:1 12948:1 13005:1 13064:1 13178:1 13206:1 13242:2 13304:1 13316:1 13318:1 13337:1 13391:1 13445:1 13602:1 13605:1 13693:1 13745:1 13807:1 13906:1 13942:1 13952:1 14007:1 14024:2 14032:1 14036:1 14081:1 14151:1 14199:1 14262:1 14314:1 14326:1 14437:1 14449:3 14458:1 14470:1 14482:1 14499:1 14625:1 14633:1 14678:1 14707:1 14717:1 14729:1 14776:1 14845:1 14850:1 14951:1 14959:2 14977:1 15033:1 15136:2 15208:1 15229:2 15301:1 15306:1 15348:1 15360:1 15385:1 15456:1 15490:1 15544:1 15550:1 15573:1 15787:1 16051:1 16080:3 16083:1 16090:1 16100:1 16260:1 16262:1 16273:1 16376:1 16427:1 16473:1 16502:1 16523:1 16585:1 16596:2 16601:1 16650:1 16658:1 16676:1 16708:1 16712:1 16727:1 16731:1 16749:1 16850:1 16874:1 16890:1 16921:1 17062:3 17071:1 17084:1 17089:1 17151:1 17202:1 17242:1 17495:1 17518:1 17543:1 17555:1 17591:1 17594:1 17604:1 17627:1 17632:1 17753:1 17776:1 17809:1 17810:1 17989:1 18264:1 18333:1 18339:1 18360:1 18380:1 18390:1 18455:1 18465:1 18523:2 18525:1 18606:1 18616:2 18644:1 18652:1 18717:1 18881:1 19025:1 19051:1 19062:1 19064:1 19115:1 19228:1 19324:1 19365:1 19444:1 19498:1 19551:1 19558:1 19595:1 19621:1 19638:1 19664:3 19696:1 19715:1 19724:1 19816:2 19891:1 19896:1 19908:1 19929:3 20034:1 20037:1 20044:1 20049:1 20081:1 20132:1 20185:1 20188:1 20223:1 20258:1 20266:1 20267:1 20305:1 20363:1 20482:2 20494:2 20519:1 20636:1 20817:1 20822:1 20851:1 20875:1 20980:1 21034:1 21080:2 21110:1 21223:1 21265:1 21274:1 21349:1 21386:1 21402:1 21451:1 21494:1 21512:1 21547:1 21579:1 21623:1 21667:1 21674:2 21707:2 21715:1
1 5:1 99:1 107:1 123:1 233:1 260:1 280:1 308:1 432:1 439:1 466:1 501:1 510:1 547:1 563:2 564:1 573:2 582:1 635:1 644:1 663:3 667:1 893:1 908:2 989:1 1018:1 1037:2 1056:1 1160:1 1205:1 1229:1 1237:1 1281:1 1320:3 1322:1 1331:1 1358:1 1402:3 1419:2 1430:1 1475:3 1476:2 1478:3 1488:1 1489:1 1530:1 1531:1 1598:1 1600:2 1644:1 1771:1 1789:1 1879:1 1951:1 2009:1 2105:1 2128:1 2267:1 2291:1 2306:1 2340:1 2345:1 2356:1 2359:2 2441:1 2460:1 2472:1 2485:1 2506:1 2511:1 2520:1 2522:1 2553:1 2562:1 2574:1 2583:1 2595:1 2626:1 2656:1 2684:1 2691:1 2704:1 2715:1 2750:1 2752:2 2753:1 2927:1 2953:1 2989:1 3062:1 3124:1 3153:4 3166:1 3179:1 3190:1 3275:1 3302:2 3308:1 3325:1 3331:1 3340:2 3341:1 3358:3 3360:2 3414:1 3521:2 3539:1 3548:1 3557:1 3644:1 3717:1 3718:1 3755:1 3781:1 3788:1 3800:2 3806:2 3903:1 3916:1 3925:1 3948:1 3965:1 3979:1 3990:1 3997:3 4036:1 4065:1 4106:1 4121:2 4199:1 4230:1 4265:2 4277:1 4279:1 4311:2 4318:1 4426:1 4461:1 4513:1 4555:1 4565:1 4582:1 4586:1 4600:1 4643:1 4680:2 4770:1 4771:1 4841:1 4855:1 4910:3 4933:1 5032:1 5199:1 5206:3 5257:5 5290:1 5317:1 5331:1 5348:1 5429:1 5453:1 5492:1 5508:1 5528:1 5579:1 5606:1 5656:541 5670:1 5678:1 5682:1 5700:1 5726:2 5728:2 5772:1 5784:1 5824:1 5829:1 5873:1 5915:1 5983:1 5997:1 6025:1 6067:1 6106:1 6109:1 6171:1 6189:1 6240:1 6248:1 6335:1 6366:1 6373:2 6376:1 6558:1 6567:1 6597:1 6606:1 6614:1 6631:1 6662:1 6674:1 6708:2 6713:1 6793:1 6832:1 6870:1 6892:2 6894:1 6901:1 6906:1 6957:1 6975:1 7012:1 7098:1 7107:1 7112:1 7117:2 7119:1 7131:1 7132:1 7142:1 7158:2 7162:1 7253:1 7300:2 7405:2 7408:1 7421:1 7426:1 7461:1 7470:1 7480:1 7520:1 7555:1 7575:1 7689:1 7693:1 7697:1 7699:1 7741:1 7744:1 7779:1 7898:1 7965:1 7974:1 7991:1 7994:1 8022:1 8033:1 8221:1 8250:1 8312:1 8345:2 8348:1 8359:2 8378:1 8391:1 8428:3 8450:1 8488:1 8512:1 8520:1 8533:1 8554:1 8575:1 8590:1 8675:1 8679:1 8693:1 8755:1 8765:1 8776:1 8777:1 8783:3 8807:1 8828:1 8852:2 8867:1 8880:1 8958:1 8985:1 8997:1 9008:1 9027:2 9068:1 9121:1 9139:1 9169:1 9176:2 9258:1 9260:1 9281:1 9293:1 9399:1 9468:1 9604:1 9655:1 9661:1 9737:1 9772:1 9776:1 9823:1 9844:1 9849:1 9873:1 9914:1 9922:1 9945:1 9966:1 10007:1 10028:1 10065:1 10089:1 10166:1 10207:1 10216:1 10217:1 10261:1 10281:1 10288:1 10291:1 10330:1 10384:1 10395:1 10403:1 10439:2 10463:1 10532:1 10535:1 10612:1 10676:1 10721:1 10785:1 10803:1 10812:1 10817:1 10854:1 10881:1 10885:1 10941:1 10943:1 10962:1 10966:1 10973:1 10975:1 10989:1 10990:1 11043:1 11108:1 11127:1 11138:1 11140:1 11143:1 11180:1 11209:1 11237:1 11253:1 11288:1 11316:2 11331:3 11332:2 11352:1 11364:2 11368:2 11416:1 11436:10 11455:1 11457:1 11463:2 11470:3 11472:2 11525:1 11527:1 11534:1 11590:1 11605:1 11665:1 11724:1 11755:1 11781:2 11783:1 11869:1 11896:1 12043:1 12061:1 12076:1 12089:1 12156:1 12176:1 12190:1 12272:1 12286:1 12313:1 12348:1 12366:1 12390:1 12402:1 12426:2 12442:2 12501:1 12596:1 12630:1 12685:1 12694:1 12738:1 12745:1 12784:1 12842:1 12892:1 12931:1 12948:1 13005:1 13050:1 13064:1 13139:1 13178:1 13206:1 13213:1 13242:2 13304:1 13316:1 13318:1 13337:1 13391:2 13421:1 13445:1 13583:1 13596:1 13602:1 13605:2 13693:1 13745:1 13807:1 13860:1 13906:1 13942:1 13952:1 13967:1 14007:1 14024:2 14032:1 14036:1 14081:1 14144:1 14151:1 14199:1 14262:1 14280:1 14314:1 14326:1 14363:2 14410:1 14437:1 14449:3 14458:1 14470:1 14482:1 14499:1 14559:1 14625:1 14633:1 14668:1 14678:1 14707:1 14717:1 14729:1 14776:1 14845:1 14850:1 14895:1 14951:1 14959:3 14977:1 15003:1 15033:1 15099:2 15136:2 15138:1 15189:1 15208:1 15229:2 15250:1 15301:1 15306:1 15307:1 15348:1 15360:1 15385:1 15456:1 15490:1 15544:1 15548:2 15550:1 15573:1 15754:2 15787:1 15814:1 16051:1 16080:3 16083:1 16090:1 16100:1 16163:1 16260:1 16262:1 16273:1 16278:1 16312:1 16376:1 16427:1 16473:1 16502:1 16519:1 16523:1 16575:1 16580:1 16585:1 16596:2 16601:1 16650:1 16658:1 16676:1 16708:1 16712:1 16727:1 16731:1 16749:1 16758:1 16850:1 16874:1 16890:1 16921:1 16951:1 17008:1 17062:5 17071:1 17084:1 17089:1 17151:2 17202:1 17242:1 17259:1 17279:1 17495:1 17518:1 17543:1 17555:1 17591:1 17594:1 17604:1 17627:1 17632:1 17753:1 17776:1 17809:1 17810:2 17855:1 17893:1 17986:1 17989:1 18264:1 18333:1 18339:1 18360:2 18380:1 18390:1 18399:1 18455:1 18465:1 18523:2 18525:1 18606:1 18616:2 18644:1 18652:1 18703:1 18710:1 18717:1 18810:1 18851:1 18881:1 19025:1 19051:1 19062:1 19064:1 19115:1 19228:1 19311:1 19324:1 19365:1 19444:1 19498:1 19512:1 19536:1 19551:1 19558:1 19582:1 19595:1 19621:1 19630:1 19638:1 19664:3 19696:1 19715:1 19724:1 19816:2 19891:1 19896:1 19908:1 19918:1 19929:3 19999:1 20034:1 20037:1 20044:1 20049:1 20081:1 20132:1 20185:1 20188:1 20223:1 20258:1 20266:1 20267:1 20305:1 20363:1 20366:1 20390:1 20482:3 20494:3 20519:1 20636:1 20670:1 20817:1 20822:1 20851:1 20875:1 20912:1 20980:1 21034:1 21080:2 21083:1 21110:1 21111:1 21142:1 21223:2 21265:1 21274:1 21349:1 21386:1 21402:1 21451:1 21494:1 21512:1 21547:1 21579:1 21623:1 21637:1 21667:1 21674:2 21707:2 21715:1
1 5:1 91:1 99:1 101:1 107:1 123:1 233:1 260:1 280:1 308:1 432:1 439:1 466:1 501:1 510:1 547:1 563:2 564:1 571:1 573:3 582:1 602:1 635:1 644:1 663:4 667:1 685:1 749:1 761:1 806:1 893:1 908:2 989:1 1018:1 1037:2 1056:1 1160:1 1205:1 1229:1 1237:1 1248:1 1281:1 1282:1 1320:3 1322:2 1331:1 1358:1 1402:3 1407:1 1419:2 1430:1 1457:1 1475:3 1476:2 1478:3 1488:1 1489:1 1530:2 1531:2 1536:1 1549:1 1598:1 1600:2 1644:1 1771:1 1781:1 1789:1 1797:2 1877:1 1879:1 1951:1 1953:1 2009:1 2105:1 2128:1 2267:1 2291:1 2306:1 2340:1 2345:1 2356:2 2359:2 2376:1 2427:1 2429:1 2441:1 2460:1 2465:1 2472:1 2485:1 2489:1 2506:3 2507:1 2511:1 2520:1 2522:1 2553:1 2562:1 2574:1 2583:1 2595:1 2626:1 2656:1 2684:1 2691:1 2704:1 2715:1 2718:1 2750:1 2752:2 2753:1 2798:1 2862:1 2907:1 2927:1 2953:1 2989:1 3062:1 3124:1 3153:4 3166:1 3179:1 3184:1 3190:1 3275:1 3302:2 3308:1 3325:1 3331:1 3332:1 3340:2 3341:1 3358:3 3360:2 3414:1 3470:1 3493:1 3521:2 3539:1 3548:1 3557:1 3644:1 3661:1 3692:1 3717:1 3718:1 3755:1 3781:1 3788:1 3793:1 3800:3 3806:2 3856:1 3865:1 3888:1 3900:1 3903:1 3904:1 3916:1 3925:1 3948:1 3965:1 3979:1 3990:1 3997:3 4036:1 4065:1 4106:1 4121:2 4129:1 4199:1 4216:1 4230:1 4246:1 4265:2 4277:1 4279:2 4311:2 4318:1 4426:1 4442:1 4461:1 4513:1 4534:1 4555:1 4565:2 4582:1 4586:1 4600:1 4643:1 4680:2 4717:1 4770:1 4771:1 4841:1 4855:1 4910:3 4933:1 4936:1 5032:1 5182:1 5199:1 5206:3 5244:1 5257:5 5290:1 5308:1 5317:1 5331:1 5348:1 5418:1 5429:1 5453:1 5456:1 5492:1 5495:1 5508:1 5528:1 5579:1 5593:1 5606:1 5651:1 5656:663 5670:1 5678:1 5682:1 5700:1 5726:2 5728:2 5741:1 5765:1 5772:1 5784:1 5787:1 5824:1 5829:1 5873:1 5915:1 5983:1 5993:1 5997:1 6025:1 6067:1 6106:1 6109:1 6171:1 6179:1 6185:1 6189:1 6240:1 6248:2 6335:1 6366:1 6373:2 6376:1 6507:1 6558:1 6567:1 6577:1 6578:1 6597:1 6606:1 6612:1 6614:1 6631:1 6662:1 6673:1 6674:1 6708:2 6713:1 6793:1 6832:1 6870:1 6892:2 6894:1 6901:1 6906:1 6914:1 6957:1 6975:2 7012:1 7098:1 7107:1 7112:1 7117:2 7119:1 7121:1 7131:1 7132:1 7138:1 7142:1 7158:2 7162:1 7211:1 7253:1 7300:2 7405:2 7408:1 7421:1 7426:1 7461:1 7462:1 7470:1 7480:1 7520:1 7555:1 7572:1 7575:1 7589:1 7689:1 7693:1 7697:1 7699:1 7741:1 7744:1 7779:1 7818:1 7898:1 7931:1 7965:1 7974:1 7991:1 7994:1 8022:1 8033:1 8154:1 8213:1 8221:1 8250:1 8312:1 8345:3 8348:1 8359:2 8377:1 8378:1 8391:1 8428:3 8450:1 8488:1 8494:1 8512:1 8520:1 8533:1 8554:1 8575:1 8590:1 8621:1 8675:1 8679:1 8693:1 8755:1 8765:1 8776:1 8777:1 8783:3 8807:1 8828:1 8852:2 8867:1 8880:1 8909:1 8958:1 8985:1 8997:3 9008:1 9027:3 9068:1 9121:1 9139:1 9169:1 9176:2 9258:1 9260:1 9281:1 9293:1 9345:1 9396:1 9399:1 9402:1 9407:1 9442:1 9468:1 9604:1 9630:1 9655:1 9661:1 9688:1 9737:1 9772:1 9776:1 9823:1 9834:1 9844:1 9849:1 9873:1 9914:1 9922:1 9945:1 9966:1 10007:1 10028:1 10065:1 10089:1 10109:1 10166:1 10168:1 10207:1 10208:1 10214:1 10216:1 10217:1 10261:1 10281:1 10288:1 10291:1 10330:1 10384:1 10395:1 10403:1 10411:1 10439:2 10463:1 10532:1 10535:1 10574:1 10612:1 10676:1 10721:1 10785:1 10803:1 10812:1 10817:1 10839:1 10854:1 10881:1 10885:1 10941:1 10943:1 10962:1 10966:1 10973:1 10975:2 10989:1 10990:1 11043:1 11059:1 11101:1 11108:1 11127:1 11138:2 11140:1 11143:1 11180:1 11209:1 11237:1 11253:2 11288:1 11316:2 11329:1 11331:4 11332:2 11349:1 11352:1 11364:2 11368:2 11416:1 11436:11 11455:1 11457:1 11463:2 11470:3 11472:2 11481:1 11525:1 11527:1 11534:1 11575:1 11578:1 11590:1 11605:1 11665:1 11724:1 11743:1 11755:1 11781:3 11783:1 11869:1 11896:1 11989:1 12043:1 12061:1 12076:1 12089:1 12118:1 12156:1 12176:1 12183:1 12190:1 12272:1 12286:1 12313:1 12322:1 12345:1 12348:1 12366:1 12374:1 12390:1 12402:1 12426:2 12442:2 12479:1 12501:1 12516:1 12596:2 12630:1 12685:1 12694:1 12734:1 12738:1 12745:1 12784:1 12842:1 12883:1 12892:1 12926:1 12931:1 12948:1 13000:1 13005:1 13019:1 13050:1 13064:1 13139:1 13178:1 13206:1 13213:1 13242:2 13304:1 13316:1 13318:1 13325:1 13337:1 13347:1 13391:2 13421:1 13445:1 13531:1 13581:1 13583:1 13596:1 13602:1 13605:2 13693:1 13745:1 13766:1 13807:2 13860:1 13906:1 13942:1 13952:1 13967:2 14007:1 14024:2 14032:1 14036:1 14081:1 14144:1 14151:1 14179:1 14189:1 14199:1 14262:1 14280:1 14314:1 14326:1 14363:2 14410:1 14437:1 14449:3 14458:1 14470:1 14482:1 14499:1 14559:1 14564:1 14565:1 14625:1 14631:1 14633:1 14668:1 14678:1 14683:1 14707:1 14717:1 14729:1 14776:1 14845:1 14850:1 14895:1 14951:1 14959:3 14977:1 14979:1 15003:1 15033:1 15099:2 15136:2 15138:1 15189:1 15208:1 15229:2 15250:1 15298:1 15301:1 15306:1 15307:1 15348:1 15359:1 15360:1 15385:1 15456:1 15490:1 15544:1 15548:2 15550:1 15552:1 15573:1 15664:1 15745:1 15754:2 15787:1 15814:1 15881:1 15958:1 16051:1 16080:3 16083:1 16090:1 16100:1 16163:1 16177:1 16240:1 16260:1 16262:1 16273:1 16278:1 16312:1 16376:1 16427:1 16473:1 16502:1 16519:1 16523:1 16552:1 16575:1 16580:1 16585:1 16596:2 16601:1 16628:1 16650:1 16658:1 16676:1 16708:1 16712:1 16727:1 16731:3 16749:1 16758:1 16850:1 16874:1 16890:1 16921:1 16951:1 17008:1 17062:5 17071:1 17084:1 17089:1 17151:2 17202:1 17242:1 17259:1 17263:1 17279:1 17339:1 17463:1 17495:1 17518:1 17543:1 17555:1 17591:1 17594:1 17604:1 17627:1 17632:1 17643:1 17753:1 17776:1 17798:1 17799:1 17809:1 17810:2 17823:1 17855:1 17893:1 17986:1 17989:1 18023:1 18027:1 18099:1 18141:1 18180:1 18198:1 18227:1 18230:1 18258:1 18264:1 18333:1 18339:1 18360:2 18380:1 18390:1 18399:1 18455:1 18465:1 18523:2 18525:1 18564:1 18606:2 18616:2 18634:1 18638:1 18644:1 18652:1 18703:1 18710:1 18717:1 18810:1 18851:1 18881:1 18909:1 19025:1 19051:1 19062:1 19064:1 19115:1 19215:1 19228:1 19270:1 19311:1 19324:1 19365:1 19418:1 19444:1 19498:1 19512:1 19536:1 19538:1 19551:1 19558:1 19582:1 19595:1 19616:1 19621:1 19630:1 19638:1 19655:1 19664:3 19680:1 19696:1 19715:1 19724:1 19816:3 19891:1 19896:1 19908:1 19918:2 19929:3 19975:1 19999:1 20034:1 20037:1 20044:1 20049:1 20081:1 20132:1 20185:1 20188:1 20223:1 20258:1 20266:1 20267:1 20305:1 20363:1 20366:1 20390:1 20482:3 20494:3 20519:1 20598:1 20636:1 20670:1 20817:1 20822:1 20851:1 20875:1 20878:1 20912:1 20980:1 21034:1 21080:2 21083:1 21110:1 21111:1 21142:1 21223:2 21265:1 21274:1 21333:1 21349:1 21386:1 21402:1 21451:1 21470:1 21494:1 21512:1 21547:1 21579:1 21589:1 21623:1 21637:1 21667:1 21674:2 21707:2 21715:1
1 5:1 91:1 99:1 101:1 107:1 123:1 233:1 260:1 280:1 308:1 432:1 439:1 466:1 501:1 510:1 547:1 563:2 564:1 571:1 573:3 582:1 602:1 635:1 644:1 663:4 667:1 685:1 749:1 761:1 806:1 893:1 908:2 989:1 1018:1 1034:1 1037:2 1056:1 1160:1 1205:1 1229:1 1237:1 1248:1 1281:1 1282:1 1320:3 1322:2 1331:1 1358:1 1402:3 1407:1 1419:2 1430:1 1457:1 1475:3 1476:2 1478:3 1488:1 1489:1 1530:2 1531:2 1536:1 1549:1 1598:1 1600:2 1644:1 1659:1 1771:1 1781:1 1789:1 1797:2 1877:1 1879:1 1886:1 1899:1 1951:1 1953:1 2007:1 2009:1 2105:1 2128:1 2180:1 2267:1 2291:1 2306:1 2340:1 2345:1 2356:2 2359:2 2376:1 2427:1 2429:1 2441:1 2460:1 2465:1 2472:1 2485:1 2489:1 2503:1 2506:3 2507:1 2511:1 2520:1 2522:1 2553:1 2562:1 2574:1 2583:1 2595:1 2626:1 2656:1 2684:1 2691:1 2704:1 2715:1 2718:1 2750:1 2752:2 2753:1 2798:1 2862:1 2907:1 2927:1 2953:1 2989:1 3062:1 3066:1 3124:1 3153:4 3166:1 3179:1 3184:1 3190:1 3263:1 3275:1 3302:2 3308:1 3325:1 3331:1 3332:1 3340:2 3341:1 3358:3 3360:2 3414:1 3465:1 3470:1 3493:1 3521:2 3539:1 3548:1 3557:1 3644:1 3661:1 3692:1 3717:1 3718:1 3755:1 3781:1 3788:1 3793:1 3800:3 3806:2 3856:1 3865:1 3888:1 3900:1 3903:1 3904:1 3916:1 3925:1 3948:1 3965:1 3979:1 3990:1 3997:3 4036:1 4065:1 4106:1 4121:2 4129:1 4199:1 4216:1 4230:1 4246:1 4265:2 4277:1 4279:2 4311:2 4318:1 4426:1 4442:1 4461:1 4513:1 4534:1 4555:1 4565:2 4582:1 4586:1 4600:1 4643:1 4680:2 4717:1 4737:1 4770:1 4771:1 4841:1 4855:1 4910:3 4933:1 4936:1 5032:1 5133:1 5182:1 5187:1 5199:1 5206:5 5244:1 5257:5 5290:1 5308:1 5317:1 5331:1 5348:1 5418:1 5429:1 5453:1 5456:1 5492:1 5495:1 5508:1 5528:1 5579:1 5593:1 5606:1 5651:1 5656:697 5670:1 5678:1 5682:1 5700:1 5726:2 5728:2 5741:1 5765:1 5772:1 5784:1 5787:1 5824:1 5829:1 5873:1 5915:1 5983:1 5993:1 5997:1 6025:1 6067:1 6106:1 6109:1 6171:1 6179:1 6185:1 6189:1 6240:1 6248:2 6335:1 6366:1 6373:2 6376:1 6507:1 6558:1 6567:1 6577:1 6578:1 6597:1 6606:1 6612:1 6614:1 6631:1 6662:1 6673:1 6674:1 6708:2 6713:1 6793:1 6832:1 6870:1 6892:2 6894:1 6901:1 6906:1 6914:1 6957:1 6975:2 6986:1 7012:1 7098:1 7107:1 7112:1 7117:3 7119:1 7121:1 7131:1 7132:1 7138:1 7142:1 7158:2 7162:1 7211:1 7253:1 7271:1 7300:2 7405:2 7408:1 7421:1 7426:1 7461:1 7462:1 7470:1 7480:1 7520:1 7530:1 7555:1 7572:1 7575:1 7589:1 7689:1 7693:1 7697:1 7699:1 7741:1 7744:1 7779:1 7818:1 7898:1 7931:1 7965:1 7974:1 7991:1 7994:1 8022:1 8033:1 8154:1 8213:1 8221:1 8250:1 8312:1 8345:4 8348:1 8359:2 8377:1 8378:1 8391:1 8428:3 8450:1 8488:1 8494:1 8512:1 8520:1 8533:1 8554:1 8575:1 8590:1 8621:1 8675:1 8679:1 8688:1 8693:1 8755:1 8765:1 8776:1 8777:1 8783:3 8807:1 8828:1 8852:2 8867:1 8880:1 8899:1 8909:1 8958:1 8985:1 8997:3 9008:1 9027:3 9068:1 9121:1 9139:1 9169:1 9176:2 9258:1 9260:1 9281:2 9293:1 9345:1 9396:1 9399:1 9402:1 9407:1 9442:1 9468:1 9604:1 9630:1 9655:1 9661:1 9688:1 9737:1 9772:1 9776:1 9823:1 9834:1 9844:1 9849:2 9873:1 9914:1 9922:1 9945:1 9966:1 10007:1 10020:1 10028:1 10065:1 10089:1 10109:1 10166:1 10168:1 10207:1 10208:1 10214:1 10216:1 10217:1 10261:1 10281:1 10288:1 10291:1 10330:1 10340:1 10384:1 10395:1 10403:1 10411:1 10439:3 10463:1 10532:1 10535:1 10574:1 10612:1 10676:1 10721:1 10785:1 10803:1 10812:1 10817:1 10839:1 10854:1 10881:1 10885:1 10941:1 10943:1 10962:1 10966:1 10973:1 10975:2 10989:1 10990:1 11043:1 11057:1 11059:1 11101:1 11108:1 11127:1 11138:2 11140:1 11143:1 11160:1 11180:1 11209:1 11237:1 11253:2 11288:1 11316:2 11329:1 11331:5 11332:2 11349:1 11352:2 11364:2 11368:2 11416:1 11436:11 11448:1 11455:1 11457:1 11463:2 11470:3 11472:2 11481:1 11506:1 11525:1 11527:1 11534:1 11575:1 11578:1 11590:1 11605:1 11665:1 11724:1 11743:1 11755:1 11781:3 11783:1 11869:1 11896:1 11989:1 12043:1 12061:1 12076:1 12089:1 12118:1 12144:2 12156:1 12176:1 12183:1 12190:1 12272:1 12286:1 12313:1 12322:1 12345:1 12348:1 12366:1 12374:1 12390:1 12402:1 12426:2 12442:2 12479:1 12501:1 12516:1 12536:1 12596:2 12630:1 12641:1 12685:1 12694:1 12695:1 12734:1 12738:1 12745:1 12784:1 12842:1 12883:1 12892:1 12926:1 12931:1 12948:1 13000:1 13005:1 13019:1 13050:1 13064:1 13139:1 13178:1 13206:1 13213:1 13242:2 13304:1 13316:1 13318:1 13325:1 13337:1 13347:1 13391:2 13421:1 13445:1 13531:1 13581:1 13583:1 13596:1 13602:1 13605:2 13692:1 13693:1 13745:1 13766:1 13807:2 13860:1 13906:1 13942:1 13952:1 13967:2 14007:1 14024:2 14032:1 14036:1 14081:1 14144:1 14151:1 14179:1 14189:1 14199:1 14262:1 14280:1 14314:1 14326:1 14363:2 14410:1 14437:1 14449:3 14458:1 14470:1 14482:1 14499:1 14515:1 14559:1 14564:1 14565:1 14625:1 14631:1 14633:1 14668:2 14678:1 14683:1 14707:1 14717:1 14729:2 14776:1 14845:1 14850:1 14895:1 14951:1 14959:3 14977:1 14979:1 15003:1 15033:1 15037:1 15099:2 15136:2 15138:1 15189:1 15208:1 15229:2 15250:1 15298:1 15301:1 15306:1 15307:1 15315:1 15332:1 15348:1 15359:1 15360:1 15385:1 15456:1 15490:1 15492:1 15544:1 15548:2 15550:1 15552:1 15573:1 15664:1 15745:1 15754:2 15787:1 15814:1 15881:1 15958:1 16051:1 16067:1 16080:3 16083:1 16090:1 16100:1 16101:1 16127:1 16163:1 16177:1 16240:1 16260:1 16262:1 16273:1 16278:1 16312:1 16376:1 16427:1 16473:1 16502:1 16519:1 16523:1 16552:1 16575:1 16580:1 16585:1 16596:2 16601:1 16628:1 16650:1 16658:1 16676:1 16708:1 16712:1 16727:1 16731:3 16749:1 16758:1 16844:1 16850:1 16874:1 16890:1 16921:1 16936:1 16951:1 17008:1 17062:5 17071:1 17084:1 17089:1 17151:2 17202:1 17242:1 17259:1 17263:1 17279:1 17339:1 17463:1 17495:1 17518:1 17543:1 17555:1 17591:1 17594:1 17604:1 17627:1 17632:1 17643:1 17753:1 17776:1 17798:1 17799:1 17809:1 17810:2 17823:1 17855:1 17893:1 17986:1 17989:1 18023:1 18027:1 18045:1 18099:1 18141:1 18180:1 18198:1 18227:1 18230:1 18258:1 18264:1 18333:1 18339:1 18360:2 18380:1 18390:1 18399:1 18455:1 18465:1 18523:2 18525:1 18564:1 18606:2 18616:2 18634:1 18638:1 18644:1 18652:1 18703:1 18710:1 18717:1 18810:1 18851:1 18881:1 18909:1 19025:1 19051:1 19062:1 19064:1 19115:1 19215:1 19228:1 19270:1 19278:1 19311:1 19324:2 19365:1 19388:1 19418:1 19444:1 19498:1 19512:1 19525:1 19536:1 19538:1 19551:1 19558:1 19568:1 19582:1 19595:1 19616:1 19621:1 19630:1 19638:1 19655:1 19664:3 19680:1 19696:1 19715:1 19724:1 19816:3 19891:1 19896:1 19908:1 19918:3 19929:3 19975:1 19999:1 20034:1 20037:1 20044:1 20049:1 20081:1 20132:1 20185:1 20188:1 20223:1 20258:1 20266:1 20267:1 20305:1 20363:1 20366:1 20390:1 20482:3 20494:3 20519:1 20598:1 20636:1 20670:1 20817:1 20822:1 20851:1 20875:1 20878:1 20912:1 20980:1 21034:1 21080:2 21083:1 21110:1 21111:1 21118:1 21142:1 21223:2 21265:1 21274:1 21333:1 21349:1 21386:1 21402:1 21451:1 21470:1 21494:1 21512:1 21547:1 21579:1 21589:1 21623:1 21637:1 21667:1 21674:2 21707:2 21715:1
1 5:1 23:1 91:1 99:1 101:1 107:1 123:1 233:1 260:1 280:1 308:1 432:1 439:1 454:1 466:1 501:1 510:1 547:1 563:2 564:1 571:1 573:3 582:1 602:1 635:1 644:1 663:5 667:1 685:1 749:1 761:1 762:1 806:2 893:1 908:2 989:1 1018:1 1034:1 1037:2 1056:1 1160:1 1205:1 1229:1 1237:1 1248:1 1281:1 1282:1 1320:3 1322:2 1331:1 1358:1 1402:3 1407:1 1419:2 1430:1 1457:2 1475:3 1476:2 1478:3 1488:1 1489:2 1507:1 1530:2 1531:2 1536:1 1549:1 1598:1 1600:2 1644:1 1651:1 1659:1 1771:1 1781:1 1785:1 1789:1 1797:2 1877:2 1879:1 1886:2 1889:1 1895:1 1899:1 1951:1 1953:1 2007:1 2009:1 2105:1 2128:1 2142:1 2180:1 2267:1 2291:1 2306:1 2340:1 2345:1 2356:2 2359:2 2376:1 2427:1 2429:1 2441:1 2456:1 2460:1 2465:1 2472:1 2485:1 2489:1 2503:1 2506:3 2507:1 2511:1 2520:1 2522:1 2552:1 2553:1 2562:1 2574:1 2583:1 2595:1 2613:1 2621:1 2626:1 2656:1 2684:1 2691:1 2695:1 2701:1 2704:1 2715:1 2718:2 2750:1 2752:2 2753:2 2768:1 2798:1 2845:1 2862:1 2907:1 2919:1 2927:1 2953:1 2959:1 2989:1 3032:1 3062:1 3066:1 3124:2 3153:4 3166:1 3179:1 3184:1 3190:1 3263:1 3275:1 3302:2 3308:1 3325:1 3331:1 3332:1 3340:2 3341:1 3355:1 3358:4 3360:2 3414:1 3465:1 3470:1 3477:1 3493:1 3521:2 3539:1 3548:1 3557:1 3576:1 3644:1 3661:1 3672:1 3692:1 3717:1 3718:1 3755:1 3767:1 3775:1 3781:1 3788:1 3793:1 3800:3 3806:2 3856:1 3865:1 3888:1 3900:1 3903:1 3904:1 3916:1 3925:1 3948:1 3965:1 3979:1 3990:1 3997:3 3998:1 4026:1 4036:1 4065:1 4106:1 4121:2 4129:1 4199:1 4216:1 4230:1 4246:1 4265:2 4277:1 4279:2 4311:2 4318:1 4426:1 4442:1 4461:1 4513:1 4534:2 4555:1 4565:2 4582:1 4586:1 4600:1 4643:1 4680:2 4717:1 4737:1 4770:1 4771:1 4792:1 4841:1 4855:1 4910:3 4933:1 4936:1 5032:1 5133:1 5149:1 5182:1 5187:1 5199:1 5206:5 5218:1 5244:1 5257:5 5290:1 5308:1 5317:1 5331:1 5348:1 5418:1 5429:1 5453:1 5456:1 5492:1 5495:1 5508:1 5528:1 5555:1 5577:1 5579:1 5583:1 5593:1 5606:1 5651:1 5656:760 5670:1 5678:1 5682:1 5700:1 5726:2 5728:2 5741:1 5765:1 5772:1 5784:2 5787:1 5824:1 5829:1 5873:1 5915:1 5983:1 5993:1 5997:1 6025:1 6067:1 6106:1 6109:1 6171:1 6179:1 6185:1 6189:1 6201:1 6240:1 6248:2 6335:1 6366:1 6373:2 6376:1 6479:1 6507:1 6558:1 6567:1 6577:1 6578:1 6597:1 6606:1 6612:1 6614:1 6631:1 6662:1 6673:1 6674:1 6708:2 6711:1 6713:1 6793:1 6832:1 6870:1 6892:2 6894:1 6901:1 6906:1 6914:1 6957:1 6975:2 6986:1 7012:1 7066:1 7098:1 7107:1 7112:1 7117:3 7119:1 7121:1 7131:1 7132:1 7138:1 7142:1 7158:2 7162:1 7175:1 7211:1 7253:1 7271:1 7300:2 7405:2 7408:1 7421:1 7426:1 7461:1 7462:1 7470:1 7480:1 7520:1 7530:1 7555:1 7572:1 7575:1 7589:1 7689:1 7693:1 7697:1 7699:1 7741:1 7744:1 7779:1 7792:1 7818:1 7835:1 7891:1 7898:1 7931:1 7953:1 7965:1 7974:1 7991:1 7994:1 8022:1 8033:1 8145:1 8154:1 8213:1 8221:1 8250:1 8312:1 8345:4 8348:1 8359:2 8377:1 8378:1 8391:1 8428:3 8450:1 8488:1 8494:1 8512:1 8520:1 8533:1 8554:1 8575:1 8590:1 8621:1 8675:1 8679:1 8683:1 8688:1 8693:1 8755:1 8765:1 8776:1 8777:1 8783:4 8807:1 8828:1 8852:2 8867:1 8880:1 8899:1 8909:1 8958:1 8985:1 8997:3 9008:1 9027:3 9068:1 9084:1 9121:1 9139:1 9155:1 9162:1 9169:1 9176:2 9258:1 9260:1 9281:2 9293:1 9345:1 9396:1 9399:1 9402:1 9407:1 9442:1 9468:1 9554:1 9604:1 9605:1 9630:1 9655:1 9661:1 9668:1 9688:1 9735:1 9737:1 9751:1 9772:1 9776:1 9782:1 9823:2 9824:1 9834:1 9844:1 9849:2 9873:1 9914:1 9922:1 9945:1 9966:1 9985:1 10007:1 10020:1 10028:1 10065:1 10089:1 10109:1 10129:1 10166:1 10168:1 10207:1 10208:1 10214:1 10216:1 10217:1 10261:1 10281:1 10288:1 10291:1 10330:2 10340:1 10379:1 10384:2 10395:1 10403:1 10411:1 10439:3 10463:1 10512:1 10532:1 10535:1 10574:1 10612:1 10676:1 10721:1 10785:1 10803:1 10812:1 10817:1 10839:1 10854:1 10881:1 10885:1 10941:1 10943:1 10962:1 10966:1 10973:1 10975:2 10989:1 10990:1 11003:1 11021:1 11043:1 11057:2 11059:1 11101:1 11104:1 11108:1 11127:1 11138:2 11140:1 11143:1 11160:1 11180:1 11209:1 11237:1 11253:2 11288:1 11316:2 11329:1 11331:5 11332:2 11349:1 11352:2 11364:2 11368:2 11416:1 11436:12 11448:1 11455:1 11457:1 11463:2 11470:3 11472:2 11481:1 11506:1 11516:1 11525:1 11527:1 11534:1 11575:1 11578:1 11590:1 11605:1 11665:1 11712:1 11724:1 11743:1 11755:2 11781:3 11783:1 11810:1 11838:1 11845:1 11869:1 11896:1 11989:1 12043:1 12061:1 12076:1 12089:1 12118:1 12127:1 12144:3 12156:1 12176:1 12183:1 12190:1 12267:1 12272:1 12286:1 12313:1 12322:1 12345:1 12348:1 12366:1 12374:1 12390:1 12402:1 12426:2 12442:2 12450:1 12479:1 12501:1 12516:1 12520:1 12536:1 12556:1 12596:2 12630:1 12641:1 12685:1 12694:1 12695:1 12734:1 12738:1 12745:1 12784:1 12842:1 12847:1 12883:1 12892:1 12926:1 12931:1 12947:1 12948:1 13000:1 13005:1 13019:1 13050:1 13064:1 13068:1 13139:1 13160:1 13178:1 13206:1 13208:1 13213:1 13242:2 13304:1 13316:1 13318:1 13325:1 13337:1 13347:1 13391:2 13421:1 13445:1 13471:1 13531:1 13581:1 13583:1 13596:1 13602:1 13605:2 13692:2 13693:1 13714:1 13745:1 13766:1 13807:2 13860:1 13867:1 13896:1 13906:1 13942:1 13952:1 13967:2 14007:1 14024:2 14032:2 14036:1 14081:1 14144:1 14151:1 14179:1 14189:1 14193:1 14199:1 14262:1 14280:1 14295:1 14314:1 14326:1 14363:2 14410:1 14437:1 14449:3 14458:1 14470:1 14482:1 14499:1 14515:1 14559:1 14564:1 14565:1 14625:1 14631:1 14633:1 14642:1 14668:2 14678:2 14683:1 14707:1 14717:1 14729:2 14750:1 14776:1 14845:1 14850:1 14879:1 14895:1 14896:1 14951:1 14959:4 14977:1 14979:1 15003:1 15033:1 15037:1 15099:2 15136:2 15138:1 15189:1 15208:1 15229:2 15250:1 15281:1 15298:1 15301:2 15306:1 15307:1 15315:1 15332:1 15348:1 15359:1 15360:1 15385:1 15391:1 15436:1 15456:1 15490:1 15492:1 15544:1 15548:2 15550:1 15552:1 15573:1 15607:1 15664:1 15745:1 15754:2 15787:1 15814:1 15881:1 15958:1 16027:1 16050:1 16051:2 16067:1 16075:1 16080:3 16083:1 16090:1 16093:1 16100:1 16101:1 16127:1 16163:1 16177:1 16207:1 16211:1 16240:1 16260:1 16262:1 16273:1 16278:1 16312:1 16376:1 16395:1 16427:1 16473:1 16502:1 16519:1 16523:1 16552:1 16575:1 16580:1 16585:1 16596:2 16601:1 16628:1 16631:1 16650:1 16658:1 16676:2 16708:1 16712:1 16727:1 16731:3 16749:1 16758:1 16844:1 16850:1 16851:1 16874:2 16890:1 16921:1 16936:1 16951:1 17008:1 17062:5 17071:1 17084:1 17089:1 17151:2 17156:1 17202:1 17230:1 17242:1 17259:1 17263:2 17279:1 17339:1 17345:1 17403:1 17463:1 17495:1 17518:1 17543:1 17555:2 17591:1 17594:1 17604:1 17627:1 17632:1 17643:1 17753:1 17776:1 17798:1 17799:1 17809:1 17810:2 17823:1 17855:1 17893:1 17897:1 17986:1 17989:1 18003:1 18023:1 18027:1 18045:1 18099:1 18141:1 18180:1 18198:1 18227:1 18230:1 18258:1 18264:1 18303:1 18333:1 18339:1 18360:2 18380:1 18386:1 18390:1 18399:1 18455:1 18465:1 18523:2 18525:1 18564:1 18606:2 18616:2 18634:1 18638:1 18644:1 18652:1 18703:1 18710:1 18717:1 18725:1 18810:1 18851:1 18881:1 18909:1 19025:1 19051:1 19062:1 19064:2 19085:1 19115:1 19215:1 19228:1 19270:1 19278:1 19292:1 19311:1 19324:2 19365:1 19388:1 19418:1 19444:1 19498:1 19512:1 19525:1 19536:1 19538:1 19551:1 19556:1 19558:1 19568:1 19582:1 19586:1 19595:1 19616:1 19621:1 19630:1 19638:1 19655:2 19664:3 19680:1 19696:1 19715:1 19721:1 19724:1 19757:1 19816:3 19891:1 19896:1 19908:1 19918:3 19929:3 19975:1 19999:1 20034:1 20037:1 20044:1 20049:2 20081:1 20132:1 20185:1 20188:1 20223:1 20258:1 20266:1 20267:1 20298:1 20305:1 20363:1 20366:1 20383:1 20390:1 20482:4 20494:3 20519:1 20598:1 20636:1 20670:1 20817:1 20822:1 20851:2 20875:1 20878:1 20912:1 20980:1 21034:1 21080:2 21083:1 21110:1 21111:1 21118:1 21142:1 21202:1 21223:2 21265:1 21274:1 21333:1 21349:2 21386:1 21402:1 21446:1 21451:1 21470:1 21494:1 21512:1 21547:1 21579:1 21589:1 21623:1 21637:1 21667:1 21674:2 21707:2 21715:1
1 5:1 23:1 91:1 99:1 101:1 107:1 123:1 163:1 233:1 260:1 280:1 308:1 343:1 432:1 439:1 454:1 466:1 501:1 510:1 523:1 527:1 547:1 563:2 564:1 571:1 573:3 582:1 602:1 635:1 644:1 663:5 667:1 685:1 749:1 761:1 762:1 806:2 893:1 908:2 989:1 1018:1 1034:1 1037:2 1056:1 1152:1 1160:1 1205:1 1229:1 1237:1 1248:1 1270:1 1281:1 1282:1 1320:3 1322:2 1331:1 1358:1 1402:3 1407:1 1419:2 1430:1 1457:2 1475:3 1476:2 1478:3 1486:1 1488:1 1489:2 1507:2 1530:2 1531:2 1536:1 1549:1 1598:1 1600:2 1644:1 1651:2 1659:2 1715:1 1771:1 1781:1 1785:1 1789:1 1797:2 1877:3 1879:1 1886:2 1889:1 1895:1 1899:1 1951:1 1953:1 2007:1 2009:1 2105:1 2128:1 2142:1 2180:1 2267:1 2291:1 2306:1 2340:1 2345:2 2356:2 2359:2 2376:1 2427:1 2429:1 2441:1 2456:1 2460:1 2465:1 2472:1 2485:1 2486:1 2489:1 2503:1 2506:3 2507:1 2511:1 2520:1 2522:1 2552:1 2553:1 2562:1 2574:1 2583:1 2595:1 2613:1 2621:1 2626:1 2656:2 2684:1 2691:1 2695:1 2701:1 2704:1 2715:1 2718:2 2750:1 2752:2 2753:2 2768:1 2798:1 2845:1 2862:2 2907:1 2919:1 2927:1 2953:1 2959:1 2989:1 3032:1 3059:1 3062:1 3066:1 3124:2 3153:4 3166:1 3179:1 3184:1 3190:1 3263:1 3271:1 3275:1 3302:2 3308:1 3325:1 3331:1 3332:1 3340:2 3341:1 3355:1 3358:5 3360:2 3414:1 3465:1 3470:1 3477:1 3493:1 3521:2 3539:1 3548:1 3557:1 3576:1 3644:1 3661:1 3672:1 3692:1 3717:1 3718:1 3732:1 3755:1 3767:1 3775:1 3781:1 3788:1 3793:1 3800:3 3806:2 3856:1 3857:1 3865:1 3888:1 3900:1 3903:1 3904:1 3916:1 3925:1 3948:1 3965:2 3979:1 3990:1 3997:3 3998:2 4026:1 4036:1 4065:1 4106:1 4121:2 4129:1 4199:1 4216:1 4230:1 4246:1 4265:2 4277:1 4279:2 4311:2 4312:1 4317:1 4318:1 4400:1 4426:1 4429:1 4442:1 4461:1 4513:1 4534:2 4555:1 4565:2 4582:1 4586:1 4600:1 4643:1 4680:2 4717:1 4737:1 4770:1 4771:1 4792:1 4841:1 4855:1 4910:4 4933:1 4936:1 4958:1 5032:1 5133:1 5149:1 5182:1 5187:1 5199:1 5206:7 5218:1 5222:1 5244:1 5257:5 5290:1 5308:1 5317:1 5331:1 5348:1 5418:1 5422:1 5429:1 5453:1 5456:1 5492:1 5495:1 5508:1 5528:1 5555:1 5577:1 5579:1 5583:1 5587:1 5593:1 5606:1 5621:1 5651:2 5656:791 5670:1 5678:1 5682:1 5700:1 5726:2 5728:2 5741:1 5765:1 5772:1 5779:1 5784:2 5787:1 5824:1 5829:1 5873:1 5915:1 5983:1 5993:1 5997:1 6025:1 6067:1 6106:4 6109:1 6171:1 6179:1 6185:1 6189:1 6201:1 6240:1 6248:2 6335:1 6366:1 6373:2 6376:1 6417:1 6479:1 6507:1 6558:1 6567:1 6577:1 6578:1 6597:1 6606:1 6612:1 6614:2 6631:1 6662:1 6673:1 6674:1 6708:2 6711:1 6713:1 6793:1 6832:1 6870:1 6892:2 6894:1 6901:1 6906:1 6914:1 6957:1 6975:2 6986:1 6989:1 7012:1 7066:1 7098:1 7107:1 7112:1 7117:3 7119:2 7121:1 7131:1 7132:1 7138:1 7140:1 7142:1 7147:1 7158:2 7162:1 7175:1 7211:1 7253:1 7271:1 7300:2 7405:2 7408:1 7421:1 7426:1 7461:1 7462:1 7470:1 7480:1 7520:1 7530:1 7555:1 7572:1 7575:1 7589:1 7689:1 7693:1 7697:1 7699:1 7741:1 7744:1 7779:1 7792:1 7818:1 7823:1 7835:2 7891:1 7898:1 7931:1 7953:1 7965:1 7974:1 7991:1 7994:1 8022:1 8033:1 8075:1 8145:1 8154:1 8195:1 8213:2 8221:1 8250:1 8257:1 8312:2 8345:4 8348:1 8359:2 8377:1 8378:1 8391:1 8428:3 8450:1 8462:1 8488:1 8494:1 8512:1 8520:1 8533:1 8554:1 8575:1 8590:1 8621:2 8646:1 8675:1 8679:1 8683:1 8688:1 8693:1 8755:1 8765:1 8776:1 8777:1 8783:4 8792:1 8807:1 8828:1 8852:2 8867:1 8880:1 8899:1 8909:1 8958:1 8981:1 8985:1 8997:3 9008:1 9027:3 9068:1 9084:1 9121:1 9139:1 9155:1 9162:1 9169:1 9176:2 9258:1 9260:1 9281:2 9293:1 9345:1 9396:1 9399:1 9402:1 9407:1 9442:1 9468:1 9554:1 9599:1 9604:1 9605:1 9630:1 9655:1 9661:1 9668:1 9688:1 9735:1 9737:1 9751:1 9772:1 9776:1 9782:1 9823:2 9824:1 9834:1 9844:1 9849:2 9873:1 9890:1 9914:1 9922:1 9945:1 9966:1 9985:2 10007:1 10020:1 10028:1 10043:1 10065:1 10070:1 10089:1 10109:1 10121:1 10129:1 10152:1 10166:1 10168:1 10207:1 10208:1 10214:1 10216:1 10217:1 10261:1 10281:1 10288:1 10291:1 10330:3 10340:1 10379:1 10384:3 10393:1 10394:1 10395:1 10403:1 10411:1 10438:1 10439:3 10463:1 10512:1 10532:1 10535:1 10574:1 10612:1 10676:1 10721:1 10785:1 10803:1 10812:1 10817:1 10839:1 10852:1 10854:1 10881:1 10885:1 10941:1 10943:1 10962:1 10966:1 10973:1 10975:2 10989:1 10990:1 11003:1 11021:1 11043:1 11057:4 11059:1 11101:1 11104:1 11108:1 11127:1 11138:2 11140:1 11143:1 11160:1 11180:1 11187:1 11209:1 11237:1 11253:2 11288:1 11316:2 11329:1 11331:5 11332:2 11349:1 11352:2 11364:2 11368:2 11416:1 11436:13 11448:1 11455:1 11457:1 11463:2 11470:3 11472:2 11481:1 11506:1 11516:1 11525:1 11527:1 11534:1 11575:1 11578:1 11590:1 11605:1 11665:1 11712:1 11724:1 11743:1 11755:2 11781:3 11783:1 11794:1 11810:1 11838:1 11845:1 11869:1 11896:1 11989:1 12043:1 12061:1 12076:1 12089:1 12118:1 12127:1 12144:3 12156:1 12176:1 12183:1 12190:1 12267:1 12272:1 12286:1 12313:1 12322:1 12345:1 12348:1 12366:1 12371:1 12374:1 12390:1 12402:1 12426:2 12442:2 12450:1 12474:1 12479:1 12501:1 12516:1 12520:1 12536:1 12556:1 12596:2 12630:1 12641:1 12685:1 12694:1 12695:1 12734:1 12738:1 12745:1 12784:1 12801:1 12824:1 12842:1 12847:1 12883:1 12892:1 12926:1 12931:1 12947:2 12948:1 13000:1 13005:1 13019:1 13050:1 13064:1 13068:1 13139:1 13160:1 13178:1 13206:1 13208:1 13213:1 13242:2 13304:1 13316:1 13318:1 13325:1 13333:1 13337:1 13347:1 13391:2 13421:1 13445:1 13471:2 13531:1 13581:1 13583:1 13596:1 13600:1 13602:1 13605:2 13692:2 13693:1 13714:1 13745:1 13766:1 13807:2 13860:1 13867:1 13896:1 13906:1 13922:1 13942:1 13952:1 13967:2 14004:1 14007:1 14024:2 14032:3 14036:1 14081:1 14144:1 14151:1 14179:1 14189:1 14193:1 14199:1 14262:1 14280:1 14295:1 14314:1 14326:1 14363:2 14410:1 14437:1 14449:3 14458:1 14470:1 14482:1 14499:1 14515:1 14559:1 14564:1 14565:1 14625:1 14631:1 14633:1 14642:1 14668:2 14678:2 14683:1 14707:1 14717:1 14729:2 14750:1 14776:1 14845:1 14850:1 14879:1 14895:1 14896:1 14951:1 14959:4 14977:1 14979:1 15003:1 15033:1 15037:1 15099:2 15136:2 15138:1 15189:1 15208:1 15210:1 15229:2 15250:1 15260:1 15281:1 15285:1 15298:1 15301:3 15306:1 15307:1 15315:1 15332:1 15339:1 15348:1 15359:1 15360:1 15385:1 15391:1 15436:1 15456:1 15490:1 15492:1 15544:1 15548:2 15550:1 15552:2 15573:1 15607:1 15664:1 15712:1 15745:1 15754:2 15787:1 15814:1 15881:1 15958:1 16027:1 16050:1 16051:2 16067:1 16075:1 16080:4 16083:1 16090:1 16093:1 16100:1 16101:1 16127:1 16163:2 16177:1 16206:1 16207:1 16211:1 16240:1 16260:1 16262:1 16273:1 16278:1 16312:1 16376:1 16395:1 16418:1 16427:1 16473:1 16502:1 16519:1 16523:1 16552:1 16575:1 16580:1 16585:1 16596:2 16601:1 16628:2 16631:1 16650:1 16658:1 16676:2 16708:1 16712:1 16727:1 16731:3 16749:1 16758:1 16844:1 16850:1 16851:1 16874:2 16890:1 16921:1 16936:2 16951:1 17008:1 17062:5 17071:1 17084:1 17089:1 17151:2 17156:1 17202:1 17230:1 17242:1 17259:1 17263:3 17279:1 17339:1 17345:1 17403:1 17429:1 17463:1 17495:1 17518:1 17543:1 17555:2 17591:4 17594:1 17604:1 17627:1 17632:1 17643:1 17696:1 17753:1 17776:1 17798:1 17799:1 17809:1 17810:2 17823:1 17855:1 17893:1 17897:1 17929:1 17986:1 17989:1 18003:1 18023:1 18027:1 18045:1 18099:1 18141:1 18180:1 18198:1 18227:1 18230:1 18258:1 18264:1 18303:1 18333:1 18339:1 18360:2 18380:1 18386:1 18390:1 18398:1 18399:1 18455:1 18465:1 18523:2 18525:1 18564:1 18606:2 18616:2 18634:1 18638:1 18644:1 18652:1 18703:1 18710:1 18717:1 18725:1 18742:1 18810:1 18851:1 18881:1 18909:1 19025:1 19051:1 19062:1 19064:2 19085:1 19115:1 19117:1 19215:1 19228:1 19270:1 19278:1 19292:1 19311:1 19324:2 19365:1 19386:1 19388:1 19418:1 19444:1 19498:1 19512:1 19525:1 19536:1 19538:1 19551:1 19556:1 19558:1 19568:1 19582:1 19586:1 19595:1 19616:1 19621:1 19630:1 19638:1 19655:2 19664:3 19680:1 19696:1 19715:1 19718:1 19721:1 19724:1 19757:1 19816:3 19891:1 19896:1 19908:1 19918:3 19929:3 19975:1 19992:1 19995:1 19999:1 20034:1 20037:1 20044:1 20049:3 20081:1 20132:1 20185:1 20188:1 20223:1 20256:1 20258:1 20266:1 20267:1 20298:2 20305:1 20363:1 20366:1 20383:1 20390:1 20413:1 20453:1 20482:5 20494:3 20519:1 20598:1 20636:1 20670:1 20817:1 20822:1 20851:3 20875:1 20878:1 20912:1 20955:1 20980:1 21034:1 21080:2 21083:1 21110:1 21111:1 21118:1 21142:1 21180:1 21202:1 21223:2 21265:1 21274:1 21276:1 21298:1 21333:1 21349:2 21353:1 21386:1 21402:1 21446:1 21451:1 21470:1 21494:1 21512:1 21547:1 21579:1 21589:2 21623:1 21637:1 21667:1 21674:2 21707:2 21715:1
1 5:1 23:1 91:1 99:1 101:1 107:1 123:1 134:1 140:1 163:1 233:1 260:2 280:1 308:1 343:1 370:1 432:1 439:1 454:1 466:1 476:1 490:1 501:1 510:1 523:1 527:1 547:1 563:2 564:1 571:1 573:3 578:1 582:3 602:1 628:1 635:1 644:1 663:5 667:2 685:1 749:1 761:1 762:1 806:2 893:1 894:1 908:2 943:1 989:1 1018:1 1034:1 1037:2 1056:1 1079:1 1152:1 1160:1 1205:1 1229:1 1237:2 1248:1 1270:1 1281:1 1282:1 1320:3 1322:2 1331:1 1358:2 1402:4 1407:1 1419:2 1430:1 1435:1 1441:1 1457:4 1475:3 1476:2 1478:4 1482:1 1486:1 1488:2 1489:2 1507:2 1530:2 1531:2 1536:1 1549:1 1598:1 1600:2 1644:1 1651:2 1659:2 1715:1 1771:1 1781:1 1785:1 1789:1 1797:2 1866:1 1877:3 1879:1 1886:2 1889:1 1895:1 1899:1 1903:1 1921:1 1951:1 1953:1 2007:1 2009:1 2077:1 2105:1 2112:1 2113:1 2128:1 2142:1 2172:1 2179:1 2180:1 2209:1 2267:1 2291:1 2306:1 2340:1 2345:2 2356:2 2359:2 2376:1 2427:1 2429:1 2441:1 2456:1 2460:1 2465:1 2472:1 2485:2 2486:1 2489:1 2503:1 2506:3 2507:1 2511:1 2520:1 2522:1 2527:1 2552:1 2553:1 2562:1 2574:1 2583:1 2595:1 2613:1 2621:1 2626:1 2656:2 2684:1 2691:1 2695:2 2701:1 2704:1 2715:1 2718:3 2750:1 2752:2 2753:3 2768:1 2798:1 2845:1 2847:1 2862:2 2907:1 2919:1 2927:1 2930:1 2953:1 2959:1 2989:1 3032:1 3059:1 3062:1 3066:1 3124:2 3153:5 3156:2 3166:1 3179:1 3184:1 3190:1 3208:2 3263:1 3271:1 3275:1 3302:2 3308:1 3325:1 3331:1 3332:1 3340:2 3341:1 3343:1 3354:2 3355:1 3358:5 3360:2 3414:1 3451:1 3465:1 3470:1 3477:1 3493:1 3521:2 3524:1 3539:1 3548:1 3557:1 3576:1 3622:1 3644:1 3661:1 3672:1 3692:1 3697:1 3712:1 3717:1 3718:1 3732:1 3755:1 3767:1 3775:1 3781:1 3788:1 3793:1 3800:3 3806:2 3856:1 3857:1 3865:1 3888:1 3900:1 3903:1 3904:1 3916:1 3925:1 3928:1 3948:1 3957:2 3965:2 3979:1 3990:1 3997:3 3998:2 4025:1 4026:1 4036:1 4065:1 4106:1 4121:2 4129:1 4150:1 4199:1 4216:1 4230:1 4242:1 4246:1 4265:2 4277:1 4279:2 4311:2 4312:1 4317:1 4318:1 4400:1 4426:1 4429:1 4442:1 4461:1 4513:1 4534:3 4555:1 4565:2 4582:1 4586:1 4600:1 4643:1 4680:2 4698:1 4717:1 4737:1 4770:1 4771:1 4792:1 4797:1 4841:1 4855:1 4910:5 4933:1 4936:1 4958:1 5032:1 5074:1 5089:1 5133:1 5149:1 5182:1 5187:1 5199:1 5206:7 5218:1 5220:1 5222:1 5244:1 5257:5 5274:1 5290:1 5308:1 5317:1 5331:1 5348:1 5418:1 5422:1 5429:1 5438:1 5453:1 5456:1 5492:1 5495:1 5499:1 5506:1 5508:1 5528:1 5555:1 5577:1 5579:1 5583:1 5587:1 5593:1 5606:1 5621:1 5625:2 5651:2 5656:883 5670:1 5678:1 5682:1 5700:1 5726:2 5728:2 5741:1 5765:1 5772:1 5779:1 5784:2 5787:1 5793:1 5824:1 5829:1 5873:1 5894:1 5915:1 5983:1 5993:1 5997:1 6025:1 6067:1 6106:4 6109:1 6171:1 6179:1 6185:1 6189:1 6201:1 6240:1 6248:2 6302:1 6335:2 6366:1 6373:2 6376:1 6397:1 6417:1 6435:1 6479:1 6507:1 6540:1 6558:1 6567:1 6577:1 6578:1 6597:1 6606:1 6612:1 6614:2 6631:1 6642:1 6662:1 6673:1 6674:1 6708:2 6709:1 6711:1 6713:1 6793:1 6822:1 6832:1 6870:2 6892:3 6894:1 6901:1 6906:1 6914:1 6957:1 6975:2 6986:1 6989:1 7012:1 7066:1 7098:1 7107:1 7112:1 7117:3 7119:2 7121:1 7124:1 7131:1 7132:1 7138:1 7140:1 7142:1 7147:1 7158:3 7162:1 7175:1 7206:1 7211:1 7253:1 7271:1 7300:2 7360:1 7388:1 7405:2 7408:1 7421:1 7426:1 7461:1 7462:1 7470:1 7480:1 7506:1 7520:1 7530:1 7555:1 7572:1 7575:1 7589:1 7689:1 7693:1 7697:1 7699:1 7700:1 7732:1 7741:1 7744:1 7768:2 7779:1 7792:1 7818:1 7823:1 7835:2 7873:1 7891:1 7898:1 7905:1 7931:1 7938:1 7953:1 7965:1 7974:1 7991:1 7994:1 8022:1 8033:1 8075:1 8108:1 8145:1 8154:1 8195:1 8213:2 8221:1 8250:1 8254:1 8257:1 8312:2 8342:1 8345:4 8348:1 8359:2 8377:1 8378:1 8391:1 8428:4 8450:1 8462:1 8488:1 8494:1 8512:1 8520:1 8533:1 8554:1 8575:1 8590:1 8621:2 8646:1 8675:1 8679:1 8683:1 8688:1 8693:1 8755:1 8765:1 8775:1 8776:1 8777:1 8783:5 8792:1 8807:2 8828:1 8852:2 8867:1 8880:1 8899:1 8909:1 8943:1 8958:1 8981:1 8985:1 8997:3 9008:1 9027:3 9068:1 9084:1 9121:1 9128:1 9139:1 9151:1 9155:1 9162:1 9169:1 9176:2 9258:1 9260:1 9281:2 9293:1 9319:1 9345:1 9396:1 9399:1 9402:1 9407:2 9438:1 9442:1 9445:1 9468:1 9480:1 9554:1 9599:1 9604:1 9605:1 9630:1 9655:1 9661:1 9668:1 9688:1 9735:1 9737:1 9751:1 9772:1 9776:1 9782:1 9823:2 9824:1 9834:1 9844:1 9849:2 9873:1 9890:1 9914:1 9915:1 9922:1 9945:1 9966:1 9985:2 9996:1 10007:1 10020:1 10028:1 10043:1 10065:1 10070:1 10089:1 10109:1 10121:1 10129:2 10152:1 10166:1 10168:1 10207:1 10208:1 10214:1 10216:1 10217:1 10261:1 10281:1 10287:1 10288:1 10291:1 10330:4 10340:1 10379:1 10384:3 10393:1 10394:1 10395:1 10403:1 10411:1 10416:1 10438:1 10439:3 10455:1 10463:1 10512:1 10532:1 10535:1 10574:1 10612:1 10658:1 10674:1 10676:1 10683:1 10721:1 10742:1 10777:1 10785:1 10803:1 10812:1 10817:1 10839:1 10852:1 10854:1 10881:1 10885:1 10941:1 10943:1 10962:1 10966:1 10973:1 10975:2 10984:1 10989:1 10990:1 11003:1 11021:1 11043:1 11057:4 11059:1 11076:1 11101:1 11104:1 11108:2 11127:1 11138:2 11140:1 11143:1 11160:1 11180:1 11187:1 11209:1 11237:1 11253:2 11288:1 11316:2 11329:1 11331:5 11332:3 11349:1 11352:2 11358:1 11364:2 11368:2 11415:1 11416:1 11436:15 11448:1 11455:1 11457:1 11463:2 11470:4 11472:2 11481:1 11506:1 11516:1 11519:1 11525:1 11527:1 11534:1 11574:2 11575:1 11578:1 11590:1 11605:1 11639:1 11665:1 11712:1 11724:1 11743:1 11755:2 11781:3 11783:1 11794:1 11810:1 11838:1 11845:1 11869:1 11896:1 11989:1 12021:1 12043:1 12051:1 12061:1 12076:1 12089:1 12118:1 12127:1 12144:4 12156:1 12176:1 12183:1 12190:1 12267:1 12272:1 12281:1 12286:1 12313:1 12322:1 12345:1 12348:1 12366:1 12371:2 12374:1 12390:1 12402:1 12426:3 12442:2 12450:1 12474:1 12479:1 12501:1 12516:1 12520:1 12536:1 12556:1 12596:2 12630:1 12641:1 12685:1 12694:1 12695:1 12734:1 12738:1 12745:1 12784:1 12801:1 12809:1 12811:1 12824:1 12842:1 12847:1 12866:1 12883:1 12892:1 12926:1 12931:1 12947:2 12948:1 12962:1 13000:1 13005:1 13019:1 13050:1 13064:1 13068:1 13091:1 13139:1 13160:1 13178:1 13179:1 13206:1 13208:1 13213:1 13242:2 13304:1 13316:1 13318:1 13325:1 13333:1 13334:1 13337:1 13347:1 13391:2 13421:1 13445:1 13471:2 13531:1 13549:1 13554:1 13581:1 13583:1 13596:1 13600:1 13602:1 13605:2 13692:2 13693:1 13696:1 13714:1 13745:1 13766:1 13807:2 13860:1 13867:1 13896:1 13906:1 13922:1 13942:1 13952:1 13967:2 14004:1 14007:1 14024:2 14032:5 14036:1 14081:1 14144:1 14151:1 14179:1 14189:1 14193:1 14199:1 14217:1 14262:1 14280:1 14295:1 14314:1 14326:1 14363:2 14410:1 14437:1 14449:3 14458:1 14470:1 14482:1 14499:1 14515:1 14559:1 14564:1 14565:1 14625:1 14631:1 14633:1 14642:1 14668:2 14678:3 14683:1 14707:1 14717:1 14729:2 14750:1 14776:1 14845:1 14850:1 14879:1 14895:2 14896:1 14936:1 14951:1 14959:5 14964:1 14977:1 14979:1 15003:1 15033:1 15037:1 15099:2 15136:2 15138:1 15184:1 15189:1 15202:1 15205:1 15208:1 15210:1 15229:2 15250:1 15260:1 15281:1 15285:1 15287:1 15298:1 15300:1 15301:3 15306:1 15307:1 15315:1 15332:1 15339:1 15348:1 15359:1 15360:1 15385:1 15391:1 15436:1 15448:1 15456:1 15490:1 15492:1 15544:1 15548:2 15550:1 15552:2 15573:2 15589:1 15607:1 15664:1 15674:1 15712:1 15745:1 15754:2 15787:1 15814:1 15881:1 15924:1 15958:1 16027:1 16050:1 16051:2 16067:1 16075:1 16080:5 16083:1 16090:1 16093:2 16100:1 16101:1 16127:1 16163:2 16177:1 16206:1 16207:1 16211:1 16240:1 16260:1 16262:1 16273:1 16278:1 16312:1 16376:1 16395:1 16418:1 16427:1 16473:1 16502:1 16519:1 16523:1 16552:1 16575:1 16580:1 16585:1 16596:2 16601:1 16628:2 16631:1 16650:1 16658:1 16676:2 16708:1 16712:1 16727:1 16731:3 16749:1 16758:1 16844:1 16850:1 16851:1 16874:2 16890:1 16921:1 16936:2 16951:1 17008:1 17052:1 17062:5 17071:1 17084:1 17089:1 17151:2 17156:1 17202:1 17230:1 17242:1 17259:1 17263:3 17266:2 17279:1 17287:3 17339:1 17345:1 17403:1 17429:1 17461:1 17463:1 17495:1 17518:1 17543:1 17553:1 17555:2 17591:4 17594:1 17604:1 17627:1 17632:1 17643:1 17696:1 17753:1 17776:1 17798:1 17799:1 17809:1 17810:2 17818:1 17823:1 17855:1 17893:1 17897:1 17929:1 17986:1 17989:1 18002:1 18003:1 18023:1 18027:1 18045:1 18074:1 18099:1 18141:1 18180:1 18198:1 18227:1 18230:1 18258:1 18264:1 18303:1 18333:1 18339:1 18358:1 18360:2 18380:1 18383:1 18386:1 18390:1 18398:1 18399:1 18455:1 18465:1 18523:3 18525:1 18564:1 18606:2 18616:2 18634:1 18638:1 18644:1 18652:1 18703:1 18710:1 18713:1 18717:1 18725:1 18742:1 18810:1 18851:1 18881:1 18909:1 19014:1 19025:1 19051:1 19062:1 19064:2 19085:1 19115:1 19117:1 19215:1 19228:1 19270:1 19278:1 19292:1 19311:1 19315:1 19324:2 19365:1 19367:1 19386:1 19388:1 19418:1 19444:1 19498:1 19512:1 19525:1 19536:2 19538:1 19549:1 19551:1 19556:1 19558:1 19568:1 19582:1 19586:1 19595:1 19597:1 19598:1 19616:1 19621:1 19630:1 19638:1 19655:4 19664:3 19680:1 19696:1 19715:1 19718:1 19721:1 19724:1 19757:1 19816:3 19891:1 19896:1 19908:1 19918:3 19929:3 19965:1 19975:1 19992:1 19995:1 19999:1 20034:1 20037:1 20044:1 20049:5 20081:1 20132:1 20185:1 20188:1 20223:1 20256:1 20258:1 20266:1 20267:2 20298:2 20305:1 20363:1 20366:1 20382:1 20383:1 20387:2 20390:1 20413:1 20453:1 20482:6 20494:3 20519:2 20598:1 20621:1 20636:1 20670:1 20706:1 20817:1 20822:1 20851:3 20855:1 20875:1 20878:1 20912:1 20955:1 20980:1 21034:1 21080:2 21083:1 21110:1 21111:1 21118:1 21142:1 21180:1 21202:1 21223:2 21265:1 21274:1 21276:1 21298:1 21333:1 21349:2 21353:1 21386:1 21402:1 21446:1 21451:2 21470:1 21494:1 21512:1 21539:1 21547:1 21579:1 21589:2 21623:1 21637:1 21646:1 21667:1 21674:2 21707:2 21715:1 21718:1
1 5:1 23:1 91:1 99:1 101:1 107:1 123:1 134:1 140:1 163:1 233:1 260:2 280:1 308:1 343:2 370:1 432:1 439:1 454:1 466:1 476:1 490:1 501:1 510:1 523:1 527:1 547:1 563:2 564:1 571:1 573:3 578:1 582:3 602:2 628:1 635:1 644:1 663:5 667:2 685:1 749:1 761:1 762:1 806:2 893:1 894:1 908:2 943:1 989:1 1018:1 1034:1 1037:2 1056:1 1079:1 1152:1 1160:1 1205:1 1229:1 1237:2 1248:1 1270:1 1281:1 1282:1 1320:3 1322:2 1331:1 1358:3 1402:4 1407:1 1419:2 1430:1 1435:1 1441:1 1457:4 1475:3 1476:2 1478:4 1482:1 1486:1 1488:2 1489:2 1507:2 1530:2 1531:2 1536:1 1549:1 1598:1 1600:2 1644:1 1651:2 1659:2 1715:1 1771:1 1781:1 1785:1 1789:1 1797:2 1866:1 1877:3 1879:1 1886:2 1889:1 1892:1 1893:1 1895:1 1899:1 1903:1 1921:1 1951:1 1953:1 2007:1 2009:1 2077:1 2105:1 2112:1 2113:1 2128:1 2142:1 2172:1 2179:1 2180:1 2209:1 2267:1 2291:1 2306:1 2340:1 2345:2 2356:2 2359:2 2376:1 2427:1 2429:1 2436:1 2441:1 2456:1 2460:1 2465:1 2472:1 2485:2 2486:1 2489:1 2503:1 2506:3 2507:1 2511:1 2520:1 2522:1 2527:1 2552:1 2553:1 2562:1 2574:1 2583:1 2595:1 2613:1 2621:1 2626:1 2656:2 2684:1 2691:1 2695:2 2701:1 2704:1 2706:1 2715:1 2718:4 2750:1 2752:2 2753:3 2768:1 2798:1 2845:1 2847:1 2862:2 2907:1 2919:1 2927:1 2930:1 2949:1 2953:1 2959:1 2968:1 2989:1 2992:1 3024:1 3032:1 3059:1 3062:1 3066:1 3075:1 3124:2 3153:5 3156:2 3166:1 3179:1 3184:1 3190:1 3208:2 3263:1 3271:1 3275:1 3295:1 3302:2 3308:1 3325:1 3331:2 3332:1 3340:2 3341:1 3343:1 3354:2 3355:1 3358:5 3360:2 3373:1 3414:1 3451:1 3465:1 3470:1 3477:1 3493:1 3521:2 3524:1 3539:1 3548:1 3557:1 3576:1 3622:1 3633:1 3644:1 3661:1 3672:1 3692:1 3697:1 3712:1 3717:1 3718:1 3732:1 3755:1 3767:2 3775:1 3781:1 3788:1 3793:1 3800:3 3806:2 3821:1 3856:1 3857:1 3865:1 3888:1 3900:1 3903:1 3904:1 3916:1 3925:2 3928:1 3948:1 3957:2 3965:2 3979:1 3990:1 3997:3 3998:2 4025:1 4026:1 4036:1 4065:1 4106:1 4121:2 4129:1 4133:1 4150:1 4199:1 4216:1 4230:1 4239:1 4242:1 4246:2 4265:2 4277:1 4279:2 4311:2 4312:1 4317:1 4318:1 4400:1 4426:1 4429:1 4442:1 4461:1 4513:1 4532:1 4534:3 4555:1 4565:2 4582:1 4586:1 4600:1 4643:1 4680:2 4698:1 4717:1 4737:2 4770:1 4771:1 4792:1 4797:1 4841:1 4855:1 4910:6 4933:1 4936:1 4958:1 5032:1 5074:1 5089:1 5133:1 5149:1 5182:2 5187:1 5199:1 5206:7 5218:1 5220:1 5222:1 5244:1 5250:1 5257:5 5274:1 5290:2 5308:1 5317:1 5331:1 5348:1 5418:1 5422:1 5429:1 5438:1 5453:1 5456:1 5492:1 5495:1 5499:1 5506:1 5508:1 5528:1 5555:1 5577:1 5579:1 5583:1 5587:1 5593:1 5606:1 5621:1 5625:2 5651:2 5656:1004 5670:1 5678:1 5682:1 5700:1 5726:2 5728:2 5741:1 5765:1 5772:1 5779:1 5784:2 5787:1 5793:1 5814:1 5824:1 5829:1 5873:1 5894:1 5915:1 5939:1 5983:1 5993:1 5997:1 6025:1 6066:1 6067:1 6106:4 6109:1 6171:1 6179:1 6185:1 6189:1 6201:1 6240:1 6248:2 6268:1 6302:1 6335:2 6366:1 6373:2 6376:1 6397:1 6410:1 6417:1 6435:1 6479:1 6507:1 6540:1 6558:1 6567:1 6577:1 6578:1 6597:1 6606:1 6612:1 6614:2 6631:1 6642:1 6662:1 6673:1 6674:1 6708:2 6709:1 6711:1 6713:1 6728:1 6793:1 6820:1 6822:1 6832:1 6870:2 6892:3 6894:1 6901:1 6906:1 6914:1 6957:1 6975:2 6986:1 6989:1 7012:1 7066:1 7098:1 7107:1 7112:1 7117:3 7119:2 7121:1 7124:1 7131:1 7132:1 7138:1 7140:1 7142:1 7147:1 7158:3 7162:1 7175:1 7206:1 7211:1 7253:1 7271:1 7274:1 7300:2 7360:1 7388:1 7405:2 7408:1 7421:1 7426:1 7461:1 7462:1 7470:1 7480:1 7488:1 7506:1 7520:1 7529:1 7530:1 7555:1 7572:1 7575:1 7589:2 7689:1 7693:1 7697:1 7699:1 7700:1 7732:1 7741:1 7744:1 7768:2 7779:1 7792:1 7818:1 7823:1 7835:2 7853:1 7873:1 7891:1 7898:1 7905:1 7931:1 7938:1 7953:1 7965:1 7974:1 7991:1 7994:1 8022:1 8033:1 8075:1 8108:1 8145:1 8154:1 8195:1 8213:2 8221:1 8250:1 8254:1 8257:1 8312:2 8342:1 8345:4 8348:1 8359:2 8377:1 8378:1 8391:1 8428:4 8450:1 8462:1 8488:1 8494:1 8512:1 8520:1 8532:1 8533:1 8554:1 8575:1 8590:1 8621:2 8646:1 8675:1 8679:1 8683:1 8688:1 8693:1 8755:1 8765:1 8775:1 8776:1 8777:1 8783:5 8792:1 8807:2 8828:1 8852:2 8867:1 8880:1 8899:1 8909:1 8943:1 8958:1 8981:1 8985:1 8997:3 9008:1 9027:3 9068:1 9084:1 9121:1 9128:1 9139:1 9151:1 9155:1 9162:1 9169:1 9176:2 9207:2 9232:2 9258:1 9260:1 9281:2 9293:1 9319:1 9340:1 9345:1 9396:1 9399:1 9402:1 9407:2 9438:1 9442:2 9445:1 9468:1 9480:1 9554:1 9599:1 9604:1 9605:1 9630:1 9655:1 9661:1 9668:1 9688:2 9735:1 9737:1 9751:1 9772:1 9776:1 9778:1 9782:1 9823:2 9824:1 9834:1 9844:1 9849:2 9873:1 9890:1 9914:1 9915:1 9922:1 9945:1 9966:1 9985:3 9996:1 10007:1 10020:1 10028:1 10043:1 10065:1 10070:1 10089:1 10109:1 10121:1 10129:2 10152:1 10166:1 10168:1 10207:1 10208:1 10214:1 10216:1 10217:1 10221:1 10261:1 10281:1 10287:1 10288:1 10291:1 10314:1 10330:4 10340:1 10379:1 10384:3 10393:1 10394:1 10395:1 10403:1 10411:1 10416:1 10438:1 10439:3 10455:2 10463:1 10512:1 10532:1 10535:1 10574:1 10612:1 10658:1 10674:1 10676:1 10683:1 10721:1 10742:1 10777:1 10785:1 10803:1 10812:1 10817:1 10839:1 10852:1 10854:1 10881:1 10885:1 10941:1 10943:1 10962:1 10966:1 10973:1 10975:2 10984:1 10989:1 10990:1 10999:1 11003:1 11021:1 11043:1 11057:4 11059:1 11076:1 11101:1 11104:1 11108:2 11127:1 11138:2 11140:1 11143:1 11160:1 11180:1 11187:1 11209:1 11237:1 11253:2 11288:1 11316:2 11329:1 11331:5 11332:3 11349:1 11352:3 11358:1 11364:2 11368:2 11384:1 11415:1 11416:1 11436:17 11448:1 11455:1 11457:1 11463:2 11470:4 11472:2 11473:1 11481:2 11506:1 11516:1 11519:1 11525:1 11527:1 11534:1 11574:2 11575:2 11578:1 11590:1 11605:1 11639:1 11665:1 11691:1 11712:1 11724:1 11743:1 11755:2 11781:3 11783:1 11784:1 11794:1 11810:1 11838:1 11845:1 11869:1 11896:1 11989:1 12021:1 12043:1 12051:1 12061:1 12076:1 12089:1 12118:1 12127:1 12144:5 12156:1 12176:1 12183:1 12190:1 12267:1 12272:1 12281:1 12286:1 12313:1 12322:1 12345:1 12348:1 12365:1 12366:1 12371:2 12374:1 12381:1 12390:1 12402:1 12408:1 12426:3 12442:2 12450:1 12474:1 12479:1 12501:1 12516:1 12520:1 12536:1 12556:1 12596:2 12630:1 12641:1 12685:1 12694:1 12695:1 12734:1 12738:1 12745:1 12758:1 12784:1 12801:1 12804:1 12809:1 12811:1 12824:1 12830:1 12842:1 12847:1 12866:1 12883:1 12892:1 12926:2 12931:1 12947:2 12948:1 12962:1 13000:1 13005:1 13019:1 13050:1 13064:1 13068:1 13091:1 13139:1 13160:1 13178:1 13179:1 13206:1 13208:1 13213:1 13242:2 13256:1 13304:1 13316:1 13318:1 13325:1 13333:1 13334:1 13337:1 13347:1 13391:2 13421:1 13445:1 13471:2 13531:1 13549:1 13554:1 13581:1 13583:1 13596:1 13600:1 13602:1 13605:2 13692:2 13693:1 13696:1 13714:2 13745:1 13752:1 13766:2 13807:2 13860:1 13867:1 13896:1 13906:1 13912:1 13922:1 13942:1 13952:1 13967:2 14004:1 14007:1 14024:2 14032:5 14036:1 14081:1 14130:1 14144:1 14151:1 14179:1 14181:1 14189:1 14193:1 14199:1 14204:1 14217:1 14262:1 14280:1 14282:1 14295:1 14304:1 14314:1 14326:1 14363:2 14410:1 14437:1 14449:3 14458:1 14470:1 14482:1 14499:1 14515:1 14559:1 14564:1 14565:1 14625:1 14631:1 14633:1 14642:1 14662:1 14668:2 14678:3 14683:1 14707:1 14717:1 14729:2 14750:1 14776:1 14845:1 14850:1 14879:1 14895:2 14896:1 14900:1 14936:1 14951:1 14959:5 14964:1 14977:1 14979:1 15003:1 15033:1 15037:1 15099:2 15136:2 15138:1 15155:1 15184:1 15189:1 15202:1 15205:1 15208:1 15210:1 15229:2 15250:1 15260:1 15281:2 15285:1 15287:1 15298:1 15300:1 15301:3 15306:1 15307:1 15315:1 15332:1 15339:1 15348:1 15359:2 15360:1 15385:1 15391:1 15436:1 15448:1 15456:1 15490:1 15492:1 15544:1 15548:3 15550:1 15552:2 15573:2 15584:1 15589:1 15607:1 15633:1 15664:1 15674:1 15712:1 15745:1 15754:2 15787:1 15814:1 15875:1 15881:1 15924:1 15958:1 16027:1 16050:1 16051:2 16059:2 16067:1 16074:1 16075:1 16080:5 16083:1 16090:1 16093:2 16100:1 16101:1 16105:1 16127:1 16163:2 16177:1 16206:1 16207:1 16211:1 16225:1 16240:1 16260:1 16262:1 16273:1 16278:1 16312:1 16376:1 16391:1 16395:1 16418:1 16427:1 16473:1 16502:1 16519:1 16523:1 16531:1 16552:1 16575:1 16580:1 16585:1 16596:2 16601:1 16628:2 16631:1 16650:1 16658:1 16676:3 16708:1 16712:1 16727:1 16731:3 16749:1 16758:1 16844:1 16850:1 16851:1 16874:2 16890:1 16921:1 16936:2 16951:1 16999:1 17008:1 17052:1 17062:5 17068:1 17071:1 17084:1 17089:1 17092:1 17151:2 17156:1 17202:1 17230:1 17242:1 17259:1 17263:3 17266:2 17268:1 17279:2 17287:3 17339:1 17345:1 17403:1 17429:1 17461:1 17463:1 17495:1 17518:1 17533:2 17543:1 17553:1 17555:2 17591:4 17594:1 17604:1 17627:1 17632:1 17634:1 17643:1 17670:1 17696:1 17753:1 17776:1 17798:1 17799:1 17809:1 17810:2 17818:1 17823:1 17855:1 17893:1 17897:1 17929:1 17986:1 17989:1 18002:1 18003:1 18022:1 18023:1 18027:1 18045:1 18074:1 18099:1 18141:1 18180:1 18198:1 18227:1 18230:1 18258:1 18264:1 18303:1 18333:1 18339:1 18358:1 18360:2 18380:1 18383:1 18386:1 18390:1 18398:1 18399:1 18434:1 18455:1 18459:1 18465:1 18523:3 18525:1 18535:1 18545:1 18564:1 18606:2 18616:2 18634:1 18638:1 18644:1 18652:1 18703:1 18710:1 18711:1 18713:1 18717:1 18725:2 18742:1 18810:1 18851:1 18881:1 18909:1 19014:1 19025:1 19051:1 19062:1 19064:2 19085:1 19115:1 19117:1 19215:1 19228:1 19270:1 19278:1 19292:1 19311:1 19315:1 19324:4 19339:1 19365:1 19367:1 19386:1 19388:1 19418:1 19444:1 19498:1 19512:1 19525:1 19536:2 19538:1 19549:1 19551:1 19556:1 19558:1 19568:1 19582:1 19586:1 19595:1 19597:1 19598:1 19616:1 19621:1 19630:1 19638:1 19649:2 19655:4 19664:3 19680:1 19696:1 19715:1 19718:1 19721:1 19724:1 19757:1 19816:3 19891:1 19896:1 19908:1 19918:3 19929:3 19936:1 19965:1 19975:2 19992:1 19995:1 19999:1 20034:1 20037:1 20044:1 20049:5 20081:1 20132:1 20185:1 20188:1 20223:1 20256:1 20258:1 20266:1 20267:2 20276:1 20298:2 20305:1 20363:1 20366:1 20382:1 20383:1 20387:2 20390:2 20413:1 20453:1 20482:6 20494:3 20519:2 20598:1 20621:1 20636:1 20670:1 20706:1 20817:1 20822:1 20851:3 20855:1 20875:1 20878:1 20880:1 20912:1 20955:1 20980:1 21034:1 21080:2 21083:1 21110:1 21111:1 21118:1 21142:1 21180:1 21188:1 21202:1 21223:2 21265:1 21274:1 21276:1 21298:1 21333:1 21349:2 21353:1 21374:1 21386:1 21402:1 21446:1 21451:2 21470:1 21494:1 21512:1 21538:1 21539:1 21540:1 21547:1 21579:1 21586:1 21589:2 21623:1 21637:1 21640:1 21646:1 21667:1 21674:2 21707:2 21715:1 21718:1
1 5:1 23:1 91:1 99:1 101:1 107:1 123:1 134:1 140:1 163:1 181:1 233:1 260:2 280:1 308:1 343:2 370:1 432:1 439:2 454:1 461:2 466:1 476:1 490:1 501:1 510:1 523:1 527:1 547:1 563:2 564:1 571:1 573:3 578:1 582:3 602:2 626:1 628:1 635:1 644:1 663:5 667:2 685:1 749:1 761:1 762:1 790:1 806:2 893:1 894:1 908:2 943:1 964:1 989:1 1018:1 1034:1 1037:2 1056:1 1079:1 1124:1 1152:1 1160:1 1205:1 1229:1 1237:2 1248:1 1270:1 1278:1 1281:1 1282:1 1320:3 1322:2 1331:1 1358:3 1375:1 1402:5 1407:1 1419:3 1430:1 1435:1 1441:1 1457:4 1475:3 1476:2 1478:5 1482:1 1486:1 1488:2 1489:3 1507:2 1530:2 1531:3 1536:1 1549:1 1598:1 1600:2 1624:1 1644:1 1651:2 1659:2 1683:1 1689:1 1715:1 1771:1 1781:1 1785:1 1789:1 1797:2 1866:1 1875:1 1877:3 1879:1 1884:1 1885:1 1886:2 1889:1 1892:1 1893:1 1895:1 1898:1 1899:1 1903:1 1912:1 1921:1 1951:1 1953:1 1973:1 2007:1 2009:1 2057:1 2077:1 2079:1 2105:1 2112:1 2113:1 2128:1 2142:1 2172:1 2179:1 2180:1 2209:1 2233:1 2267:1 2291:1 2306:1 2340:1 2345:2 2356:2 2359:2 2376:1 2427:1 2429:1 2436:1 2441:1 2456:1 2460:1 2465:1 2472:2 2485:2 2486:1 2489:1 2503:1 2506:3 2507:1 2511:1 2520:1 2522:1 2527:1 2552:1 2553:1 2562:1 2574:1 2583:1 2595:1 2613:1 2619:1 2621:1 2626:1 2656:2 2684:1 2691:1 2695:2 2701:1 2704:1 2706:1 2715:1 2718:5 2750:1 2752:2 2753:3 2768:1 2798:1 2845:1 2847:1 2862:2 2907:1 2919:1 2927:1 2930:1 2949:1 2953:1 2959:1 2968:1 2989:1 2992:1 3024:1 3032:1 3043:1 3059:1 3062:1 3066:1 3075:1 3124:2 3153:5 3156:2 3166:1 3179:1 3184:1 3190:1 3208:2 3263:1 3271:1 3275:1 3295:1 3302:2 3308:1 3325:1 3331:2 3332:1 3340:2 3341:1 3343:1 3354:2 3355:1 3358:5 3360:2 3373:1 3414:1 3450:1 3451:1 3465:1 3470:1 3477:1 3493:1 3521:2 3524:1 3539:1 3548:1 3552:1 3557:1 3576:1 3622:1 3633:1 3644:1 3661:1 3672:1 3692:1 3697:1 3712:1 3717:1 3718:1 3722:1 3732:1 3755:1 3767:2 3775:1 3781:1 3788:1 3793:1 3800:3 3806:2 3819:1 3821:1 3856:1 3857:1 3865:1 3888:1 3900:1 3903:1 3904:1 3916:1 3925:2 3928:1 3948:1 3957:2 3965:2 3979:1 3990:1 3997:3 3998:2 4025:1 4026:1 4036:1 4065:1 4106:1 4121:2 4129:1 4133:1 4150:1 4158:1 4198:1 4199:1 4216:1 4230:1 4239:1 4242:1 4246:2 4265:2 4277:1 4279:3 4311:2 4312:1 4316:1 4317:1 4318:1 4358:1 4400:1 4426:1 4429:1 4442:1 4461:1 4513:1 4532:1 4534:4 4555:1 4565:2 4582:1 4586:1 4600:1 4643:1 4680:2 4698:1 4717:1 4737:2 4770:1 4771:1 4792:1 4797:1 4841:1 4855:1 4910:6 4933:1 4936:1 4958:1 5032:1 5074:1 5089:1 5133:1 5149:1 5182:2 5187:1 5199:1 5206:8 5218:1 5220:1 5222:1 5244:1 5250:1 5257:5 5274:1 5290:2 5308:1 5310:1 5317:1 5331:1 5338:1 5348:1 5418:1 5422:1 5429:1 5438:1 5453:1 5456:1 5492:1 5495:1 5499:1 5506:1 5508:1 5528:1 5555:2 5577:1 5579:1 5583:1 5587:1 5592:1 5593:1 5606:2 5621:1 5625:2 5651:2 5656:1046 5670:1 5678:1 5682:1 5700:1 5726:2 5728:3 5741:1 5765:1 5772:1 5779:1 5784:2 5787:1 5793:1 5814:1 5824:1 5829:1 5862:1 5873:1 5894:1 5915:1 5939:1 5947:1 5952:1 5983:1 5992:1 5993:1 5997:1 6025:1 6033:1 6066:1 6067:1 6106:4 6109:1 6171:1 6179:1 6185:1 6189:1 6201:1 6240:1 6248:2 6268:1 6302:1 6335:2 6366:1 6367:1 6373:2 6376:1 6397:1 6403:1 6410:1 6417:1 6435:1 6479:1 6507:1 6540:1 6558:1 6567:1 6577:1 6578:1 6597:1 6603:1 6606:1 6612:1 6614:2 6631:1 6642:1 6655:1 6662:1 6673:1 6674:1 6700:1 6708:2 6709:1 6711:1 6713:1 6728:1 6746:1 6793:1 6820:1 6822:1 6832:1 6870:2 6892:3 6894:1 6901:1 6906:1 6914:1 6957:1 6975:2 6986:1 6989:1 7012:2 7066:1 7098:1 7107:1 7112:1 7117:3 7119:2 7121:1 7124:1 7131:1 7132:1 7138:1 7140:1 7142:1 7147:2 7158:3 7162:1 7175:1 7206:1 7211:1 7253:1 7271:1 7274:1 7300:2 7360:1 7388:1 7405:2 7408:1 7421:1 7426:1 7458:1 7461:1 7462:1 7470:1 7480:1 7488:1 7506:1 7520:1 7529:1 7530:1 7555:1 7572:1 7575:1 7589:2 7665:1 7689:1 7693:1 7697:1 7699:1 7700:1 7720:1 7732:1 7741:1 7744:1 7768:3 7779:1 7792:1 7818:1 7823:1 7835:2 7853:1 7873:1 7891:1 7898:1 7905:1 7931:1 7938:1 7953:2 7965:1 7974:2 7975:1 7991:1 7994:1 8022:1 8033:1 8075:1 8108:1 8145:1 8154:1 8195:1 8213:2 8221:1 8250:1 8251:1 8254:1 8257:1 8261:1 8312:2 8342:1 8345:4 8348:1 8359:2 8377:1 8378:1 8391:1 8428:4 8450:1 8462:1 8488:1 8494:1 8512:1 8520:1 8532:1 8533:1 8554:1 8575:1 8590:1 8621:2 8646:1 8675:1 8679:2 8683:1 8688:1 8693:1 8755:1 8765:1 8775:1 8776:1 8777:1 8783:5 8792:1 8807:2 8828:1 8852:2 8867:1 8880:1 8899:1 8909:1 8943:1 8958:1 8981:1 8985:1 8997:4 9008:1 9027:3 9068:1 9084:1 9121:1 9128:1 9139:1 9151:1 9155:1 9162:1 9169:1 9176:2 9203:1 9207:2 9232:2 9258:1 9260:1 9281:2 9293:1 9319:1 9340:1 9345:1 9396:1 9399:1 9402:1 9407:2 9438:1 9442:2 9445:1 9468:1 9480:1 9554:1 9599:1 9604:1 9605:1 9630:1 9655:1 9661:1 9668:1 9688:2 9735:1 9737:1 9751:1 9772:1 9776:1 9778:2 9782:1 9823:2 9824:1 9834:1 9844:1 9849:2 9873:1 9890:1 9914:1 9915:1 9922:1 9945:1 9966:1 9985:3 9996:1 10007:1 10020:1 10028:1 10043:1 10065:1 10070:1 10089:1 10109:1 10121:1 10129:2 10152:1 10166:1 10168:1 10193:1 10207:1 10208:1 10214:1 10216:1 10217:1 10221:1 10261:1 10281:1 10287:1 10288:1 10291:1 10314:1 10330:5 10340:2 10379:1 10384:3 10390:1 10393:1 10394:1 10395:1 10403:1 10411:1 10416:1 10438:1 10439:3 10455:2 10463:1 10512:1 10532:1 10535:1 10574:1 10583:1 10595:1 10612:1 10658:1 10674:1 10676:1 10683:1 10721:1 10742:1 10777:1 10785:1 10803:1 10812:1 10817:1 10839:1 10852:1 10854:1 10881:1 10885:1 10941:1 10943:2 10962:1 10966:1 10973:1 10975:2 10984:1 10989:1 10990:1 10999:1 11003:1 11021:1 11043:2 11057:5 11059:1 11076:1 11101:1 11104:1 11108:2 11127:1 11138:2 11140:1 11143:1 11160:2 11166:1 11180:1 11187:1 11209:1 11237:1 11253:2 11288:1 11316:2 11329:1 11331:6 11332:3 11349:1 11352:3 11358:1 11364:3 11368:2 11384:1 11415:2 11416:1 11417:1 11436:17 11448:1 11455:1 11457:1 11463:2 11470:4 11472:2 11473:1 11481:2 11506:1 11516:1 11519:1 11525:1 11527:1 11534:1 11574:2 11575:2 11578:1 11590:1 11605:1 11639:1 11665:1 11691:1 11712:1 11724:1 11743:1 11755:2 11781:3 11783:1 11784:1 11794:1 11810:1 11838:1 11845:1 11867:1 11869:1 11896:1 11989:1 12021:1 12043:1 12051:1 12061:1 12076:1 12089:1 12118:1 12127:2 12144:8 12156:1 12176:2 12183:1 12190:1 12267:1 12272:1 12281:1 12286:1 12313:2 12314:1 12322:1 12345:1 12348:1 12365:1 12366:1 12371:2 12374:1 12381:1 12390:1 12402:1 12408:1 12419:1 12426:3 12442:2 12450:1 12474:1 12479:1 12501:1 12516:1 12520:1 12536:1 12556:1 12596:2 12630:1 12637:1 12641:1 12685:1 12694:1 12695:1 12734:1 12738:1 12745:1 12758:1 12784:1 12801:1 12804:1 12809:1 12811:1 12824:1 12830:1 12842:1 12847:1 12866:1 12883:1 12892:1 12926:2 12931:1 12947:2 12948:1 12949:1 12962:1 13000:1 13005:1 13019:1 13050:1 13064:1 13068:1 13091:1 13139:1 13160:1 13178:1 13179:1 13206:1 13208:1 13213:2 13242:2 13256:1 13278:1 13304:1 13316:1 13318:1 13325:1 13333:1 13334:1 13337:1 13347:1 13358:1 13391:2 13421:1 13443:1 13445:1 13471:2 13531:1 13549:1 13554:1 13581:1 13583:1 13590:1 13596:1 13600:1 13602:1 13605:2 13680:1 13692:2 13693:1 13696:1 13714:2 13745:1 13752:1 13766:2 13807:2 13860:1 13867:1 13873:1 13887:1 13896:2 13906:1 13912:1 13922:1 13942:1 13952:1 13967:3 14004:1 14007:1 14024:2 14032:5 14036:1 14081:1 14130:1 14140:1 14144:1 14151:1 14179:1 14181:1 14189:1 14193:1 14199:2 14204:1 14209:1 14217:1 14262:1 14280:1 14282:1 14295:1 14304:1 14314:1 14326:1 14363:3 14410:1 14437:1 14443:1 14449:3 14458:1 14470:1 14482:1 14499:1 14515:1 14559:1 14564:1 14565:1 14625:1 14631:1 14633:1 14642:1 14662:1 14668:2 14678:3 14683:1 14707:1 14717:1 14729:2 14750:1 14776:1 14845:1 14850:1 14879:1 14895:2 14896:1 14900:1 14936:1 14951:1 14959:5 14964:1 14977:1 14979:1 15003:1 15033:1 15037:1 15099:3 15136:2 15138:1 15155:1 15184:1 15189:1 15202:1 15205:1 15208:1 15210:1 15224:1 15229:2 15250:1 15260:1 15281:2 15285:1 15287:1 15298:1 15300:1 15301:4 15306:1 15307:1 15315:1 15332:1 15339:1 15346:1 15348:1 15359:2 15360:1 15385:1 15391:1 15436:1 15441:1 15448:1 15456:1 15479:1 15490:1 15492:1 15539:1 15544:1 15548:3 15550:1 15552:2 15573:2 15584:1 15589:1 15607:1 15633:1 15663:1 15664:1 15674:1 15712:1 15745:1 15754:3 15787:1 15814:2 15860:1 15875:1 15881:1 15896:1 15924:1 15958:1 15992:1 16018:1 16027:1 16030:1 16050:1 16051:2 16059:2 16067:1 16074:1 16075:1 16080:5 16083:1 16090:1 16093:2 16100:1 16101:1 16105:1 16114:1 16127:1 16163:2 16177:1 16206:1 16207:1 16211:1 16225:1 16240:1 16260:1 16262:1 16273:1 16278:1 16305:1 16312:1 16376:1 16391:1 16395:1 16418:1 16427:1 16431:1 16473:1 16502:1 16519:1 16523:1 16531:1 16552:1 16575:1 16580:1 16585:1 16596:2 16601:1 16628:2 16631:1 16650:1 16658:1 16676:3 16678:1 16708:1 16712:1 16727:1 16731:3 16749:1 16758:1 16844:1 16850:1 16851:1 16874:2 16890:1 16921:1 16936:2 16951:1 16999:1 17005:1 17008:1 17052:1 17062:5 17068:1 17071:1 17084:1 17089:1 17092:1 17151:2 17156:2 17202:1 17230:1 17242:1 17259:1 17263:3 17266:2 17268:1 17279:2 17287:3 17339:1 17345:1 17403:1 17429:1 17461:1 17463:1 17495:1 17518:1 17533:2 17543:1 17553:1 17555:2 17591:4 17594:1 17604:1 17627:1 17632:1 17634:1 17643:1 17670:1 17696:1 17753:1 17776:1 17798:1 17799:1 17809:1 17810:2 17818:1 17823:1 17855:1 17893:1 17897:1 17929:1 17935:1 17986:1 17989:1 18002:1 18003:1 18022:1 18023:1 18027:1 18045:1 18074:1 18077:1 18099:1 18141:1 18180:1 18198:1 18227:1 18230:1 18258:1 18264:1 18303:1 18310:1 18333:1 18339:1 18358:1 18360:2 18380:1 18383:1 18386:1 18390:1 18398:1 18399:1 18434:1 18455:1 18459:1 18465:1 18523:3 18525:1 18535:1 18545:1 18564:1 18606:3 18616:2 18634:1 18638:1 18644:1 18652:1 18703:1 18707:1 18709:1 18710:1 18711:1 18713:1 18717:1 18725:2 18742:1 18765:1 18791:1 18810:1 18851:1 18881:1 18909:1 18973:1 19013:1 19014:1 19025:1 19051:1 19062:1 19064:2 19085:1 19115:1 19117:1 19168:1 19215:1 19228:1 19270:1 19278:1 19292:1 19311:1 19315:1 19324:4 19339:1 19365:1 19367:1 19386:1 19388:1 19418:1 19444:1 19498:1 19506:1 19512:1 19524:1 19525:1 19536:2 19538:1 19549:1 19551:1 19556:1 19558:1 19568:1 19582:1 19586:1 19595:1 19597:1 19598:1 19616:1 19621:1 19630:1 19638:1 19649:2 19655:4 19664:3 19680:1 19696:1 19715:1 19718:1 19721:1 19724:1 19757:1 19816:3 19833:1 19857:1 19891:1 19896:1 19908:1 19918:4 19929:3 19936:1 19965:1 19975:2 19992:1 19995:1 19999:1 20015:1 20034:2 20037:1 20041:1 20044:1 20049:5 20075:1 20081:1 20132:1 20185:1 20188:1 20223:1 20251:1 20256:1 20258:1 20266:1 20267:2 20276:1 20298:2 20305:1 20363:1 20366:1 20382:1 20383:1 20387:2 20390:2 20413:1 20453:1 20482:6 20494:3 20519:2 20598:1 20621:1 20636:1 20669:1 20670:1 20706:1 20758:1 20817:1 20822:1 20851:3 20855:1 20875:1 20878:1 20880:1 20912:1 20955:1 20980:1 21034:2 21080:2 21083:1 21110:1 21111:1 21118:1 21142:1 21180:1 21188:1 21202:1 21223:2 21265:1 21274:1 21276:1 21298:1 21333:1 21349:2 21353:1 21374:1 21386:1 21402:1 21446:1 21451:2 21470:1 21494:1 21510:1 21512:1 21538:1 21539:1 21540:1 21547:1 21579:1 21586:1 21589:2 21623:1 21637:1 21639:1 21640:1 21646:1 21667:1 21674:2 21707:2 21715:1 21718:1
1 5:2 23:1 91:1 99:1 101:1 107:1 123:1 134:1 140:1 163:1 181:1 233:1 260:2 280:1 308:1 343:2 370:1 432:1 439:2 454:1 461:2 466:1 476:1 490:1 501:1 510:1 523:1 527:1 547:1 563:2 564:1 571:1 573:3 578:1 582:3 602:2 605:1 626:1 628:1 635:1 644:1 663:5 667:2 685:1 749:1 761:1 762:1 790:1 806:2 889:1 893:1 894:1 908:2 943:1 964:1 989:1 1018:1 1034:1 1037:2 1056:1 1079:1 1124:1 1152:1 1160:1 1205:1 1229:1 1237:2 1248:1 1261:1 1270:1 1278:1 1281:1 1282:2 1320:3 1322:2 1331:1 1358:3 1375:1 1402:6 1407:1 1419:3 1430:1 1435:1 1441:1 1457:5 1475:3 1476:2 1478:5 1482:1 1486:1 1488:2 1489:3 1507:2 1530:2 1531:3 1536:1 1549:1 1598:1 1600:2 1624:1 1644:1 1651:2 1659:2 1683:1 1689:1 1715:1 1771:1 1781:1 1785:1 1789:1 1797:2 1866:1 1875:1 1877:3 1879:1 1884:1 1885:1 1886:2 1888:1 1889:1 1892:1 1893:1 1895:1 1898:1 1899:1 1903:1 1912:1 1921:1 1951:1 1953:1 1973:1 2007:1 2009:1 2057:1 2077:1 2079:1 2105:1 2112:1 2113:1 2128:1 2142:1 2172:1 2179:1 2180:1 2209:1 2233:1 2267:1 2291:1 2306:1 2340:1 2345:2 2356:2 2359:2 2376:1 2427:1 2429:1 2436:1 2441:1 2456:1 2460:1 2465:1 2472:2 2485:2 2486:1 2489:1 2503:1 2506:3 2507:1 2511:1 2520:1 2522:1 2527:1 2552:1 2553:1 2562:1 2574:1 2580:1 2583:1 2595:1 2613:1 2619:1 2621:1 2626:1 2656:2 2684:1 2691:1 2695:2 2701:1 2704:2 2706:1 2715:1 2718:5 2750:1 2752:2 2753:3 2768:1 2798:1 2845:1 2847:1 2862:2 2907:1 2919:1 2927:1 2930:2 2949:1 2953:1 2959:1 2968:1 2989:1 2992:1 3024:1 3032:1 3043:1 3059:1 3062:1 3066:1 3075:1 3124:2 3153:5 3156:2 3166:1 3179:1 3184:1 3190:1 3208:2 3263:1 3271:2 3275:1 3295:1 3302:2 3308:1 3325:1 3331:2 3332:1 3340:2 3341:1 3343:1 3354:2 3355:1 3358:5 3360:2 3373:1 3414:1 3450:1 3451:3 3465:1 3470:1 3477:1 3493:1 3521:2 3524:1 3539:1 3548:1 3552:1 3557:1 3576:1 3622:1 3633:1 3644:1 3661:1 3672:1 3692:1 3697:1 3712:1 3717:1 3718:1 3722:1 3732:1 3755:1 3767:2 3775:1 3781:1 3788:1 3790:1 3793:1 3800:3 3806:2 3819:1 3821:1 3828:1 3856:2 3857:1 3865:1 3888:1 3899:1 3900:1 3903:1 3904:1 3916:1 3925:2 3928:1 3948:1 3957:3 3965:3 3979:1 3990:1 3997:3 3998:2 4025:1 4026:1 4036:1 4065:1 4106:1 4121:2 4129:1 4133:2 4150:1 4158:1 4198:1 4199:1 4216:1 4230:1 4239:1 4242:1 4246:2 4265:2 4277:1 4279:4 4311:2 4312:1 4316:1 4317:1 4318:1 4358:2 4400:1 4426:1 4429:1 4442:1 4461:1 4513:1 4532:1 4534:4 4555:1 4565:2 4582:1 4586:1 4600:1 4643:1 4680:2 4698:1 4717:1 4737:2 4770:1 4771:1 4792:1 4797:1 4841:1 4855:1 4910:6 4933:1 4936:1 4958:1 5032:2 5074:1 5089:1 5133:1 5149:1 5182:2 5187:1 5199:1 5206:8 5218:1 5220:2 5222:1 5244:1 5250:1 5257:6 5274:1 5290:2 5308:1 5310:1 5317:1 5331:1 5338:1 5348:1 5418:1 5422:1 5429:1 5438:1 5453:1 5456:1 5492:1 5495:1 5499:1 5506:1 5508:1 5528:1 5555:2 5577:1 5579:1 5583:1 5587:1 5592:1 5593:1 5606:2 5621:1 5625:2 5651:2 5656:1089 5670:1 5678:1 5682:2 5700:1 5726:2 5728:3 5741:1 5765:1 5772:1 5779:1 5784:2 5787:1 5793:1 5814:1 5824:1 5829:1 5862:1 5873:1 5894:1 5915:1 5939:1 5945:1 5947:1 5952:1 5983:1 5992:1 5993:1 5997:1 6004:1 6025:1 6033:1 6050:1 6066:1 6067:1 6106:4 6109:1 6171:1 6179:2 6185:1 6189:1 6201:1 6240:1 6248:2 6268:1 6302:1 6335:2 6359:1 6366:1 6367:1 6373:2 6376:1 6378:1 6397:1 6403:1 6410:1 6417:1 6435:1 6468:1 6479:1 6507:1 6540:1 6558:1 6567:1 6570:1 6577:1 6578:1 6590:1 6597:1 6603:1 6606:1 6612:1 6614:2 6631:1 6642:2 6655:1 6662:1 6673:1 6674:1 6700:1 6708:2 6709:1 6711:1 6713:1 6728:1 6733:1 6746:1 6756:1 6793:1 6820:1 6822:1 6832:1 6870:2 6892:3 6894:1 6901:1 6906:1 6914:1 6957:1 6975:2 6986:1 6989:1 7012:3 7066:1 7098:1 7107:1 7112:1 7117:3 7119:2 7121:1 7124:1 7131:1 7132:1 7138:1 7140:2 7142:1 7146:1 7147:2 7158:3 7162:1 7175:1 7206:1 7211:1 7213:1 7253:1 7271:1 7274:1 7283:1 7300:2 7360:1 7388:1 7405:2 7408:1 7421:1 7426:1 7458:1 7461:1 7462:1 7470:1 7480:1 7488:1 7506:1 7520:1 7529:1 7530:1 7555:1 7572:1 7575:1 7589:2 7665:1 7689:1 7693:1 7697:1 7699:1 7700:1 7720:1 7732:1 7741:1 7744:1 7768:3 7779:1 7792:1 7818:1 7823:1 7835:2 7853:1 7873:1 7891:1 7898:1 7905:1 7931:1 7938:1 7953:2 7965:1 7974:2 7975:2 7991:1 7994:1 8022:1 8033:1 8075:1 8108:1 8145:1 8154:1 8195:1 8213:2 8221:1 8250:1 8251:1 8254:1 8257:1 8261:1 8312:2 8342:2 8345:4 8348:1 8359:2 8377:1 8378:1 8391:1 8428:4 8450:1 8462:1 8488:1 8494:1 8512:1 8520:1 8532:1 8533:1 8554:1 8575:1 8590:1 8621:2 8646:1 8647:1 8675:1 8679:2 8683:1 8687:1 8688:1 8693:1 8755:1 8765:1 8775:1 8776:1 8777:1 8783:7 8792:1 8807:2 8828:1 8852:2 8867:1 8880:1 8899:1 8909:1 8943:1 8958:1 8981:2 8985:1 8997:4 9008:1 9027:3 9068:1 9084:1 9121:1 9128:1 9139:1 9151:1 9155:1 9162:1 9169:1 9176:2 9203:1 9207:2 9232:2 9258:1 9260:1 9281:2 9293:1 9319:1 9340:1 9345:1 9396:1 9399:1 9402:1 9407:2 9438:1 9442:2 9445:2 9468:1 9480:1 9547:1 9554:1 9599:1 9604:1 9605:1 9630:1 9655:1 9661:1 9668:1 9688:2 9735:1 9737:1 9751:1 9772:1 9776:1 9778:2 9782:1 9823:2 9824:1 9834:1 9844:1 9849:2 9873:2 9890:1 9914:1 9915:1 9922:1 9945:1 9966:1 9985:3 9996:1 10007:1 10020:1 10028:1 10043:1 10065:1 10070:1 10089:1 10109:1 10121:2 10129:2 10152:1 10166:1 10168:1 10193:1 10207:1 10208:1 10214:1 10216:1 10217:1 10221:1 10261:1 10281:1 10287:1 10288:1 10291:1 10314:1 10330:6 10340:2 10379:1 10384:3 10390:1 10393:1 10394:1 10395:1 10403:1 10411:1 10416:1 10417:1 10438:2 10439:3 10455:3 10463:1 10512:1 10524:1 10532:1 10535:1 10541:1 10574:1 10583:1 10595:1 10612:1 10658:1 10674:1 10676:1 10683:1 10721:1 10742:1 10777:1 10785:1 10803:1 10812:1 10817:1 10839:1 10852:2 10854:1 10881:1 10885:1 10941:1 10943:3 10962:1 10966:1 10973:1 10975:2 10980:1 10984:1 10989:1 10990:1 10999:1 11003:1 11021:1 11043:2 11057:5 11059:1 11076:1 11101:1 11104:1 11108:2 11127:1 11138:2 11140:1 11143:1 11153:1 11160:2 11166:1 11180:1 11187:1 11194:1 11209:1 11237:1 11253:2 11288:1 11316:2 11329:1 11331:6 11332:3 11334:1 11349:1 11352:3 11358:1 11364:3 11368:2 11384:1 11390:1 11415:2 11416:1 11417:1 11436:17 11438:1 11448:1 11455:1 11457:1 11463:2 11470:4 11472:2 11473:1 11481:2 11506:1 11516:1 11519:1 11525:1 11527:1 11534:1 11574:2 11575:2 11578:1 11590:1 11605:1 11639:1 11665:1 11691:1 11712:1 11713:1 11724:1 11743:1 11755:2 11781:3 11783:1 11784:1 11794:1 11810:1 11838:1 11845:1 11867:1 11869:1 11896:1 11989:1 12021:2 12043:1 12051:1 12061:1 12076:1 12089:1 12118:1 12127:2 12144:9 12156:1 12176:2 12183:2 12190:1 12267:1 12272:1 12281:1 12286:1 12313:2 12314:1 12322:2 12345:1 12348:1 12365:1 12366:1 12371:2 12374:1 12381:1 12390:1 12402:1 12408:1 12419:1 12426:3 12442:2 12450:1 12474:1 12479:1 12501:1 12516:1 12520:1 12536:1 12556:1 12580:1 12583:1 12596:2 12630:1 12637:1 12641:1 12664:1 12685:1 12694:1 12695:1 12734:1 12738:1 12745:1 12758:1 12784:1 12801:1 12804:1 12809:1 12811:2 12824:1 12830:1 12840:1 12842:1 12847:1 12866:1 12883:1 12892:1 12919:1 12925:1 12926:2 12931:1 12947:2 12948:1 12949:1 12962:1 13000:1 13005:1 13019:1 13050:1 13064:1 13068:1 13091:1 13139:1 13160:1 13178:1 13179:1 13206:1 13208:1 13213:2 13242:2 13256:1 13278:1 13304:1 13316:1 13318:1 13325:1 13333:1 13334:1 13337:1 13347:1 13358:1 13391:2 13421:1 13441:1 13443:1 13445:1 13471:2 13531:1 13549:1 13554:2 13581:1 13583:1 13590:1 13596:1 13600:1 13602:1 13605:2 13663:1 13680:1 13692:2 13693:1 13696:1 13714:2 13745:1 13752:1 13766:2 13803:1 13807:2 13860:1 13867:1 13873:1 13887:1 13896:2 13906:1 13912:1 13915:1 13922:1 13942:1 13952:1 13967:3 14004:1 14007:1 14024:2 14032:5 14036:1 14043:1 14081:1 14130:1 14140:1 14144:1 14151:1 14179:1 14181:1 14186:1 14189:1 14193:1 14199:2 14204:1 14209:1 14217:1 14262:1 14280:1 14282:1 14295:1 14304:1 14314:1 14319:1 14326:1 14363:5 14404:1 14410:1 14433:1 14437:1 14443:1 14449:3 14458:1 14470:1 14482:1 14499:1 14515:1 14559:1 14564:1 14565:1 14625:1 14631:1 14633:1 14642:1 14662:1 14668:2 14678:3 14683:1 14707:1 14717:1 14729:2 14750:1 14769:1 14776:1 14845:1 14850:1 14879:1 14895:2 14896:1 14900:1 14936:1 14951:1 14959:7 14964:1 14977:1 14979:1 15003:2 15033:1 15037:1 15099:5 15136:2 15138:1 15155:1 15165:1 15184:1 15189:1 15202:1 15205:1 15208:1 15210:1 15222:1 15224:1 15229:2 15250:1 15260:1 15281:2 15285:1 15287:1 15298:1 15300:1 15301:4 15306:1 15307:1 15315:1 15332:1 15339:1 15346:1 15348:1 15359:2 15360:1 15385:1 15391:1 15436:1 15441:1 15448:1 15456:2 15479:1 15490:1 15492:1 15519:1 15539:1 15544:1 15548:3 15550:1 15552:2 15573:3 15584:1 15589:1 15607:1 15633:2 15663:1 15664:1 15674:1 15712:1 15723:1 15745:1 15754:3 15756:1 15787:1 15799:1 15814:2 15860:1 15875:1 15881:1 15896:1 15924:1 15958:1 15992:1 16018:1 16027:1 16030:1 16050:1 16051:2 16059:2 16067:1 16074:1 16075:1 16080:5 16083:1 16090:1 16093:2 16100:1 16101:1 16105:1 16114:1 16127:1 16163:2 16177:1 16206:1 16207:1 16211:1 16225:2 16240:1 16260:1 16262:1 16273:1 16278:1 16305:1 16312:1 16376:1 16391:1 16395:1 16418:1 16427:1 16431:1 16473:1 16502:1 16519:1 16523:1 16531:1 16552:1 16575:1 16580:1 16585:1 16596:2 16601:1 16628:2 16631:1 16650:1 16658:1 16676:3 16678:1 16708:1 16712:1 16727:1 16731:3 16749:1 16758:1 16844:1 16850:1 16851:1 16867:1 16874:2 16890:1 16921:1 16936:2 16951:1 16987:1 16999:1 17005:1 17008:1 17029:1 17052:1 17062:6 17063:1 17068:1 17071:1 17084:1 17089:1 17092:1 17151:2 17156:2 17189:1 17202:1 17230:1 17242:1 17259:2 17263:3 17266:2 17268:1 17279:2 17287:3 17339:1 17345:1 17379:1 17403:1 17429:1 17461:1 17463:1 17495:1 17518:1 17533:2 17543:1 17553:1 17555:2 17591:4 17594:1 17604:1 17627:1 17632:1 17634:1 17643:1 17660:1 17670:1 17696:1 17753:1 17776:1 17798:1 17799:1 17809:1 17810:2 17818:1 17823:1 17855:1 17893:1 17897:1 17929:1 17935:1 17986:1 17989:1 18002:1 18003:1 18022:1 18023:1 18027:1 18045:1 18074:1 18077:1 18099:2 18141:1 18180:2 18198:1 18227:1 18230:1 18258:1 18264:2 18274:1 18303:1 18310:1 18333:1 18339:1 18358:1 18360:2 18380:1 18383:1 18386:1 18390:1 18398:1 18399:1 18434:1 18455:1 18459:1 18465:1 18523:3 18525:1 18535:1 18545:1 18564:1 18606:4 18616:2 18629:1 18634:1 18638:1 18644:1 18652:1 18665:1 18689:1 18703:1 18707:1 18709:1 18710:1 18711:1 18713:1 18717:1 18725:2 18742:1 18765:1 18791:1 18810:1 18851:1 18881:1 18909:1 18973:1 19013:1 19014:1 19025:1 19051:1 19062:1 19064:2 19085:1 19115:1 19117:2 19168:1 19215:1 19228:1 19270:1 19278:1 19292:1 19311:1 19315:1 19324:4 19339:1 19365:1 19367:1 19386:1 19388:1 19407:1 19418:1 19444:1 19498:1 19506:1 19512:1 19524:1 19525:1 19535:1 19536:3 19538:1 19549:1 19551:1 19556:1 19558:1 19568:1 19582:1 19586:1 19595:1 19597:1 19598:1 19616:1 19621:1 19630:1 19638:1 19649:2 19655:5 19664:3 19680:1 19696:1 19715:1 19718:1 19721:1 19724:1 19757:1 19816:3 19829:1 19833:1 19857:2 19891:1 19896:1 19908:1 19918:4 19929:3 19936:1 19965:1 19975:2 19992:1 19995:1 19999:1 20015:1 20034:2 20037:1 20041:1 20044:1 20049:5 20075:1 20081:1 20132:1 20170:1 20185:1 20188:1 20223:1 20251:1 20256:1 20258:1 20266:1 20267:2 20276:1 20298:2 20305:1 20363:1 20366:1 20382:1 20383:1 20387:2 20390:3 20413:1 20453:1 20482:6 20494:3 20519:2 20529:1 20598:1 20621:1 20636:1 20669:1 20670:1 20706:1 20758:1 20817:1 20822:1 20844:1 20846:1 20851:3 20855:2 20875:1 20878:1 20880:1 20912:1 20955:1 20980:1 21034:2 21080:2 21083:1 21099:1 21110:2 21111:1 21118:1 21142:1 21180:1 21188:1 21202:1 21223:2 21265:1 21274:1 21276:1 21298:1 21333:1 21349:2 21353:1 21374:2 21386:1 21402:1 21446:1 21451:2 21470:2 21494:1 21510:1 21512:1 21538:1 21539:1 21540:1 21547:1 21579:1 21586:1 21589:2 21619:1 21623:1 21637:1 21639:1 21640:1 21646:1 21667:1 21674:2 21707:2 21715:1 21718:1
1 5:2 23:1 91:1 99:1 101:1 103:1 107:1 123:1 134:1 140:1 163:1 181:1 233:1 260:3 280:1 308:1 343:2 370:1 432:1 439:2 454:1 461:2 466:1 476:1 490:1 501:1 510:1 523:1 527:1 547:1 563:2 564:1 571:1 573:3 578:1 582:3 602:2 605:1 626:1 628:1 635:1 644:1 663:5 667:2 685:1 749:1 761:1 762:1 790:1 806:2 889:1 893:1 894:1 908:2 943:1 964:1 989:1 1018:1 1034:1 1037:2 1056:1 1079:1 1124:1 1152:1 1160:1 1205:1 1229:1 1237:2 1248:1 1261:1 1270:1 1278:1 1281:1 1282:2 1320:3 1322:2 1331:1 1358:3 1375:1 1402:7 1407:2 1419:3 1430:1 1435:1 1441:1 1457:6 1475:4 1476:2 1478:5 1482:1 1486:1 1488:2 1489:3 1507:2 1530:2 1531:3 1536:1 1549:1 1598:1 1600:2 1624:1 1644:1 1651:2 1659:2 1683:1 1689:1 1715:1 1771:1 1781:1 1785:1 1789:1 1797:2 1866:1 1875:1 1877:3 1879:2 1884:1 1885:1 1886:2 1888:1 1889:1 1892:1 1893:1 1895:1 1898:1 1899:2 1903:1 1912:1 1921:1 1951:1 1953:1 1973:1 2007:1 2009:1 2025:1 2057:1 2077:1 2079:1 2105:1 2112:1 2113:1 2114:1 2128:1 2142:1 2161:1 2172:1 2179:1 2180:1 2209:1 2233:1 2267:1 2291:1 2306:1 2340:1 2345:3 2356:2 2359:2 2376:1 2427:1 2429:1 2436:1 2441:1 2456:1 2460:1 2465:1 2472:2 2485:2 2486:1 2489:1 2499:1 2503:1 2506:3 2507:1 2511:1 2520:2 2522:1 2527:1 2552:1 2553:1 2562:1 2574:1 2580:1 2583:1 2595:1 2613:1 2619:1 2621:1 2626:1 2656:3 2684:1 2691:1 2695:2 2701:1 2704:3 2706:1 2715:1 2718:5 2750:1 2752:2 2753:3 2768:1 2798:1 2845:1 2847:1 2862:2 2907:1 2919:1 2927:1 2930:2 2949:1 2953:1 2959:1 2965:1 2968:1 2989:1 2992:1 3024:1 3032:1 3043:1 3059:1 3062:1 3066:1 3075:1 3124:2 3153:6 3156:2 3166:1 3179:1 3184:1 3190:1 3208:2 3263:1 3271:2 3275:1 3295:1 3302:2 3308:1 3325:1 3331:2 3332:1 3340:2 3341:1 3343:1 3346:1 3354:2 3355:2 3358:5 3360:2 3373:1 3414:1 3417:1 3450:1 3451:3 3465:1 3470:1 3477:1 3493:1 3509:1 3521:2 3523:1 3524:1 3539:1 3548:1 3552:1 3557:1 3576:1 3613:1 3622:1 3631:1 3633:1 3644:1 3661:1 3672:1 3692:1 3697:1 3712:1 3717:1 3718:1 3722:1 3732:1 3747:1 3755:1 3767:2 3775:1 3781:1 3788:1 3790:1 3793:1 3800:3 3806:2 3819:1 3821:1 3828:1 3856:3 3857:1 3865:1 3888:1 3899:1 3900:1 3903:1 3904:1 3916:1 3925:2 3927:1 3928:1 3948:1 3957:3 3965:3 3979:1 3990:1 3997:3 3998:2 4025:1 4026:2 4036:1 4065:1 4106:1 4121:2 4129:1 4133:2 4150:1 4158:1 4198:1 4199:1 4200:1 4216:1 4227:1 4230:1 4239:1 4242:1 4246:2 4265:2 4277:1 4279:6 4311:2 4312:1 4316:1 4317:1 4318:1 4358:2 4400:2 4426:1 4429:1 4442:1 4461:1 4513:1 4532:1 4534:4 4555:1 4565:2 4582:1 4586:1 4600:1 4643:1 4661:1 4680:2 4698:1 4717:2 4737:2 4770:1 4771:1 4792:1 4797:1 4841:1 4855:1 4866:1 4910:6 4933:1 4936:1 4958:1 5032:3 5074:1 5089:1 5133:1 5149:1 5182:2 5187:1 5199:1 5206:9 5218:1 5220:2 5222:1 5244:1 5250:1 5257:6 5274:1 5290:2 5308:1 5310:1 5317:1 5321:1 5331:1 5338:1 5348:1 5418:1 5422:1 5429:1 5438:1 5453:1 5456:3 5492:1 5495:1 5499:1 5506:1 5508:1 5528:1 5555:2 5574:1 5577:1 5579:2 5583:1 5587:1 5592:1 5593:1 5606:2 5621:1 5624:1 5625:2 5651:2 5656:1142 5670:1 5678:1 5682:2 5700:1 5726:2 5728:3 5741:1 5765:1 5772:1 5779:1 5784:2 5787:1 5793:1 5814:1 5824:1 5829:1 5862:1 5873:1 5894:1 5915:1 5939:1 5945:1 5947:1 5952:1 5983:1 5992:1 5993:2 5997:1 6004:1 6025:1 6033:1 6050:1 6066:1 6067:1 6106:4 6109:1 6171:1 6179:2 6185:1 6189:1 6201:1 6240:1 6248:2 6268:1 6302:1 6308:1 6335:2 6359:1 6366:1 6367:1 6373:2 6376:1 6378:2 6397:1 6403:1 6410:1 6417:1 6435:1 6468:1 6479:1 6507:1 6540:1 6558:1 6567:1 6570:1 6577:1 6578:1 6590:1 6597:1 6603:1 6606:1 6612:2 6614:2 6631:1 6642:2 6655:1 6662:1 6673:2 6674:1 6700:1 6708:2 6709:1 6711:1 6713:1 6728:1 6733:1 6746:2 6756:1 6793:1 6820:1 6822:1 6832:1 6870:2 6892:3 6894:1 6901:1 6906:1 6914:1 6957:1 6961:1 6975:2 6986:1 6989:1 7012:4 7066:1 7098:1 7107:1 7112:1 7117:3 7119:2 7121:2 7124:1 7129:1 7131:1 7132:1 7138:1 7140:2 7142:1 7146:2 7147:2 7158:3 7162:1 7171:1 7175:1 7206:1 7211:1 7213:1 7253:1 7271:1 7274:1 7283:1 7300:2 7360:1 7388:1 7405:2 7408:1 7421:1 7426:1 7458:1 7461:1 7462:1 7470:1 7480:1 7488:1 7506:1 7520:1 7529:1 7530:1 7555:1 7572:1 7575:1 7589:2 7636:1 7665:1 7689:1 7693:1 7697:1 7699:1 7700:1 7720:1 7732:1 7741:1 7744:1 7768:3 7779:1 7792:1 7818:1 7823:1 7835:2 7853:1 7872:1 7873:1 7891:1 7898:1 7905:1 7931:1 7938:1 7953:2 7965:1 7974:2 7975:2 7991:1 7994:2 8022:1 8033:1 8075:1 8087:1 8108:1 8140:1 8145:1 8154:1 8195:1 8213:2 8221:1 8250:1 8251:1 8254:1 8257:1 8261:1 8312:2 8342:2 8345:4 8348:1 8359:2 8377:1 8378:1 8391:1 8428:5 8450:1 8462:1 8488:1 8494:1 8512:1 8520:1 8532:1 8533:1 8554:1 8575:1 8590:1 8621:2 8646:1 8647:1 8675:1 8679:3 8682:1 8683:1 8687:1 8688:1 8693:1 8755:1 8765:1 8775:1 8776:1 8777:2 8783:7 8792:1 8807:2 8828:1 8852:2 8867:1 8880:1 8899:1 8909:1 8943:1 8958:1 8981:2 8985:1 8997:4 9008:1 9027:3 9068:1 9084:1 9095:1 9121:1 9128:1 9139:1 9151:1 9155:1 9162:1 9168:1 9169:1 9176:2 9181:1 9203:1 9207:2 9232:2 9258:1 9260:1 9281:2 9293:1 9319:1 9340:1 9345:1 9370:1 9396:1 9399:1 9402:1 9407:2 9438:1 9442:3 9445:2 9468:1 9480:1 9547:1 9554:1 9599:1 9604:1 9605:1 9630:1 9655:1 9661:1 9668:1 9688:2 9735:1 9737:1 9751:1 9772:1 9776:1 9778:2 9782:1 9823:2 9824:1 9834:1 9844:1 9849:2 9873:3 9890:1 9914:1 9915:1 9922:1 9932:1 9945:1 9966:1 9985:3 9996:1 10007:1 10020:1 10028:1 10043:1 10065:1 10070:1 10089:1 10109:1 10121:2 10125:1 10129:2 10152:1 10166:1 10168:1 10193:1 10207:1 10208:1 10209:1 10214:1 10216:2 10217:1 10221:1 10261:1 10281:1 10287:1 10288:1 10291:1 10314:1 10330:6 10340:2 10379:1 10384:3 10390:1 10393:1 10394:1 10395:1 10403:1 10407:1 10411:1 10416:1 10417:1 10438:2 10439:3 10455:3 10463:1 10512:1 10524:2 10532:1 10535:1 10541:1 10574:1 10583:1 10595:1 10612:1 10658:1 10674:1 10676:1 10683:1 10721:1 10742:1 10777:1 10785:1 10803:1 10812:1 10817:1 10839:1 10852:2 10854:1 10881:1 10885:1 10907:1 10932:1 10941:1 10943:4 10962:1 10966:1 10973:1 10975:2 10980:1 10984:1 10989:1 10990:1 10999:2 11003:1 11004:1 11021:1 11043:2 11051:1 11057:5 11059:1 11076:1 11101:1 11104:1 11108:2 11127:1 11138:2 11140:1 11143:1 11153:1 11160:2 11166:1 11180:1 11187:1 11194:1 11209:1 11237:1 11253:2 11288:1 11316:2 11329:2 11331:6 11332:3 11334:1 11349:1 11352:3 11358:1 11364:3 11368:2 11384:1 11390:1 11415:2 11416:2 11417:1 11436:18 11438:1 11448:1 11455:1 11457:1 11463:2 11470:4 11472:2 11473:1 11481:2 11506:1 11516:1 11519:1 11525:1 11527:1 11534:1 11574:2 11575:2 11578:1 11590:1 11605:1 11639:1 11665:1 11691:1 11694:1 11712:1 11713:1 11724:1 11743:1 11755:2 11781:3 11783:1 11784:2 11794:1 11810:1 11838:1 11845:1 11867:1 11869:1 11896:1 11989:1 12021:2 12043:1 12051:1 12061:1 12076:1 12089:1 12118:1 12127:2 12144:10 12156:1 12176:2 12183:2 12190:1 12267:1 12272:1 12281:1 12286:1 12313:2 12314:1 12322:4 12345:1 12348:1 12365:1 12366:1 12371:2 12374:1 12381:1 12390:1 12402:1 12408:1 12419:1 12426:3 12442:2 12450:1 12474:1 12479:1 12501:1 12516:1 12520:1 12536:1 12556:1 12580:1 12583:1 12596:2 12630:1 12637:1 12641:1 12664:1 12685:1 12694:1 12695:1 12731:1 12734:1 12738:1 12745:1 12758:1 12784:1 12801:1 12804:1 12809:1 12811:3 12824:1 12830:1 12840:1 12842:1 12847:1 12866:1 12883:1 12892:1 12919:1 12925:1 12926:3 12929:1 12931:1 12947:2 12948:1 12949:1 12962:1 13000:1 13005:1 13019:1 13050:1 13064:1 13068:1 13091:1 13139:1 13160:1 13178:1 13179:1 13206:1 13208:1 13213:2 13242:2 13256:1 13278:1 13302:1 13304:1 13316:1 13318:1 13325:1 13333:1 13334:1 13337:1 13347:1 13358:1 13391:2 13421:1 13441:1 13443:1 13445:1 13471:2 13531:1 13549:1 13554:2 13581:1 13583:1 13590:1 13596:1 13600:1 13602:1 13605:2 13663:1 13680:1 13692:2 13693:1 13696:1 13711:1 13714:2 13745:1 13752:1 13766:3 13803:1 13807:2 13860:1 13867:1 13873:1 13887:1 13896:2 13906:1 13912:1 13915:1 13922:1 13942:1 13952:1 13967:3 14004:1 14007:1 14024:2 14032:5 14036:1 14043:1 14081:1 14120:1 14130:1 14140:1 14144:1 14151:1 14179:1 14181:1 14186:1 14189:1 14193:1 14199:2 14204:1 14209:1 14217:1 14258:1 14262:1 14280:1 14282:1 14295:1 14304:1 14314:1 14319:1 14326:1 14363:6 14400:1 14404:1 14410:1 14433:1 14437:1 14443:1 14449:3 14458:1 14470:1 14482:1 14499:1 14515:1 14559:1 14564:1 14565:1 14625:1 14631:1 14633:1 14642:2 14662:1 14668:2 14678:3 14683:1 14707:1 14717:1 14729:2 14750:2 14756:1 14769:1 14776:1 14845:1 14850:1 14879:1 14895:2 14896:1 14900:1 14936:1 14951:1 14959:7 14964:1 14977:1 14979:2 15003:2 15033:1 15037:1 15099:6 15136:2 15138:1 15155:1 15165:1 15184:1 15189:1 15198:1 15201:1 15202:1 15205:1 15208:1 15210:1 15222:1 15224:1 15229:2 15250:1 15260:1 15281:2 15285:1 15287:1 15298:1 15300:1 15301:4 15306:1 15307:1 15309:1 15315:1 15332:1 15339:1 15346:1 15348:1 15359:3 15360:1 15384:1 15385:1 15391:1 15436:1 15441:1 15448:1 15456:2 15479:1 15490:1 15492:1 15519:1 15539:1 15544:1 15548:3 15550:1 15552:2 15573:3 15584:1 15589:1 15607:1 15633:2 15663:1 15664:1 15674:1 15703:1 15712:1 15723:1 15745:1 15753:1 15754:3 15756:1 15787:1 15799:1 15814:2 15860:1 15875:1 15879:1 15881:1 15896:1 15924:1 15958:1 15992:1 16018:1 16027:1 16030:1 16031:1 16050:1 16051:2 16059:2 16067:1 16074:1 16075:2 16080:5 16083:1 16090:1 16093:2 16100:1 16101:1 16105:1 16114:1 16117:1 16127:1 16163:2 16177:1 16206:1 16207:1 16211:1 16225:2 16240:1 16260:1 16262:1 16273:1 16278:1 16305:1 16312:1 16376:1 16391:1 16395:1 16418:1 16427:1 16431:1 16473:1 16502:1 16519:1 16523:1 16531:1 16552:1 16575:1 16580:1 16585:1 16596:2 16601:1 16628:2 16631:1 16650:1 16658:1 16676:5 16678:1 16708:1 16712:1 16727:1 16731:3 16749:2 16758:1 16844:1 16850:1 16851:1 16867:1 16874:2 16890:1 16893:1 16921:1 16936:2 16951:1 16987:1 16999:1 17005:1 17008:1 17029:1 17052:1 17062:6 17063:1 17068:1 17071:1 17084:1 17089:1 17092:1 17151:2 17156:2 17183:1 17189:1 17202:1 17230:1 17242:1 17259:2 17263:3 17266:2 17268:2 17279:2 17287:3 17339:1 17345:1 17379:1 17403:1 17429:1 17461:1 17463:1 17495:1 17518:1 17533:2 17543:1 17553:1 17555:2 17591:4 17594:1 17604:1 17627:1 17632:1 17634:1 17643:1 17660:1 17670:1 17696:1 17753:1 17776:1 17798:1 17799:1 17809:1 17810:2 17818:1 17823:1 17855:1 17893:1 17897:1 17922:1 17929:1 17935:1 17986:1 17989:1 18002:1 18003:1 18022:1 18023:1 18027:1 18045:1 18053:1 18074:1 18077:2 18099:2 18126:1 18141:1 18180:2 18198:1 18227:1 18230:1 18258:1 18264:2 18274:1 18303:1 18310:1 18333:1 18339:1 18358:1 18360:2 18380:1 18383:1 18386:1 18390:1 18398:1 18399:1 18432:1 18434:1 18455:1 18459:1 18465:1 18523:3 18525:1 18535:1 18545:1 18564:1 18606:5 18613:1 18616:2 18629:1 18634:1 18638:1 18644:1 18652:1 18665:1 18689:1 18697:1 18703:1 18707:1 18709:1 18710:1 18711:1 18713:1 18717:1 18725:2 18742:1 18763:1 18765:1 18791:1 18807:1 18810:1 18851:1 18881:1 18909:1 18973:1 19013:1 19014:1 19025:1 19051:1 19053:1 19062:1 19064:2 19085:1 19115:1 19117:2 19168:1 19215:1 19228:1 19270:1 19278:1 19292:1 19311:1 19315:1 19324:4 19339:1 19365:1 19367:1 19386:1 19388:1 19407:1 19418:1 19444:1 19498:1 19506:1 19509:1 19512:1 19524:1 19525:1 19535:1 19536:3 19538:1 19549:1 19551:1 19556:1 19558:1 19568:1 19582:1 19586:1 19595:1 19597:1 19598:1 19616:1 19621:1 19630:1 19638:1 19649:2 19655:6 19664:3 19680:1 19696:2 19715:1 19718:1 19721:1 19724:1 19757:1 19816:3 19829:1 19833:1 19857:3 19891:1 19896:1 19908:1 19918:4 19929:3 19936:1 19965:1 19975:3 19977:1 19992:1 19995:1 19999:1 20015:1 20034:2 20037:1 20041:1 20044:1 20049:5 20075:1 20081:1 20132:1 20170:1 20185:1 20188:1 20223:1 20251:1 20256:1 20258:1 20266:1 20267:2 20276:1 20298:2 20305:2 20363:1 20366:1 20382:1 20383:1 20387:2 20390:4 20413:1 20440:1 20453:1 20482:6 20494:3 20519:2 20529:1 20598:1 20621:1 20636:1 20669:1 20670:1 20706:1 20758:1 20817:1 20822:1 20844:1 20846:1 20851:3 20855:2 20875:1 20878:1 20880:1 20912:1 20955:1 20956:1 20980:1 21034:2 21080:2 21083:1 21099:1 21110:2 21111:1 21118:1 21142:1 21180:1 21188:1 21202:1 21213:1 21223:2 21265:1 21274:1 21276:1 21298:1 21333:1 21349:2 21353:1 21374:3 21379:1 21386:1 21402:1 21446:1 21451:3 21470:2 21494:1 21510:1 21512:1 21538:1 21539:1 21540:1 21547:1 21579:1 21586:1 21589:2 21619:1 21623:1 21637:1 21639:1 21640:2 21646:1 21667:1 21674:2 21707:2 21715:1 21718:1
1 5:2 23:1 91:1 99:1 101:1 103:1 107:1 123:1 134:1 140:1 163:1 181:1 233:1 260:3 261:1 280:1 308:1 319:1 324:1 343:2 370:1 411:1 419:1 432:1 439:2 454:1 461:2 466:1 476:1 490:1 501:1 510:1 523:1 527:1 547:1 563:3 564:2 571:1 573:3 578:1 582:3 602:2 605:1 626:1 628:1 635:1 644:1 663:5 667:2 685:1 749:1 761:1 762:1 790:1 806:2 861:1 889:1 893:1 894:1 908:2 943:1 954:1 964:1 989:1 1004:1 1018:1 1034:1 1037:2 1040:1 1056:1 1074:1 1079:1 1124:1 1152:1 1160:1 1205:1 1229:1 1237:2 1248:1 1261:1 1270:1 1278:1 1281:1 1282:2 1320:3 1322:2 1331:1 1358:3 1375:1 1402:7 1407:2 1419:3 1430:1 1435:1 1441:1 1453:1 1457:6 1475:4 1476:2 1478:6 1482:1 1486:1 1488:2 1489:3 1507:2 1530:2 1531:3 1536:1 1549:1 1598:1 1600:2 1624:1 1644:1 1651:2 1653:1 1659:2 1683:1 1689:1 1715:1 1771:1 1781:1 1785:1 1789:1 1797:2 1866:1 1875:1 1877:3 1879:2 1884:1 1885:1 1886:2 1888:2 1889:1 1892:1 1893:2 1895:1 1898:1 1899:2 1903:1 1904:1 1912:1 1921:1 1951:1 1953:1 1973:1 2007:1 2009:1 2025:1 2057:1 2077:1 2079:1 2105:1 2107:1 2112:1 2113:1 2114:1 2128:1 2142:1 2161:1 2172:1 2179:1 2180:1 2209:1 2233:1 2240:1 2267:1 2271:1 2288:1 2291:1 2306:1 2340:1 2345:3 2356:3 2359:2 2376:1 2412:1 2427:1 2429:1 2436:1 2441:1 2456:1 2460:1 2465:1 2472:2 2485:2 2486:1 2489:1 2499:1 2503:1 2506:3 2507:1 2511:1 2520:2 2522:1 2527:1 2552:1 2553:1 2562:1 2574:1 2580:1 2583:1 2595:1 2613:1 2619:1 2621:1 2626:1 2656:3 2684:1 2691:1 2695:2 2701:1 2704:3 2706:1 2715:2 2718:5 2750:2 2752:2 2753:3 2768:1 2798:1 2845:1 2847:1 2862:2 2907:1 2919:1 2927:1 2930:2 2949:1 2953:1 2959:1 2965:1 2968:1 2989:1 2992:1 3024:1 3032:1 3043:1 3059:1 3062:1 3066:1 3075:1 3124:3 3153:7 3156:2 3161:1 3166:1 3179:1 3184:1 3190:1 3208:2 3263:1 3271:2 3274:1 3275:1 3295:1 3299:1 3302:2 3308:1 3325:1 3331:2 3332:1 3340:2 3341:2 3343:1 3346:1 3354:2 3355:2 3358:5 3360:2 3373:1 3414:1 3417:1 3450:1 3451:3 3465:1 3470:1 3477:1 3493:1 3509:1 3521:2 3523:1 3524:1 3539:1 3548:1 3552:1 3557:1 3576:1 3613:1 3622:1 3631:1 3633:1 3644:1 3661:1 3672:1 3692:1 3697:1 3712:1 3717:1 3718:1 3722:1 3732:1 3747:1 3755:1 3767:2 3772:1 3775:3 3781:1 3788:1 3790:1 3793:1 3800:3 3806:2 3819:1 3821:1 3828:1 3856:3 3857:1 3865:1 3887:1 3888:2 3899:1 3900:1 3903:1 3904:1 3916:1 3925:2 3927:1 3928:1 3939:1 3948:1 3957:3 3965:3 3979:1 3990:1 3997:3 3998:2 4025:1 4026:2 4036:1 4065:2 4097:1 4101:1 4104:1 4106:1 4121:2 4129:1 4133:2 4150:1 4158:1 4198:1 4199:1 4200:1 4216:1 4227:1 4230:1 4239:1 4242:1 4246:2 4265:2 4277:1 4279:7 4311:2 4312:1 4316:1 4317:1 4318:1 4358:3 4400:2 4426:1 4429:1 4442:1 4461:1 4513:1 4532:1 4534:4 4555:1 4565:2 4582:1 4586:1 4600:1 4643:2 4661:1 4680:2 4698:1 4717:2 4737:2 4770:2 4771:1 4792:1 4797:1 4841:1 4855:1 4866:1 4910:6 4933:1 4936:1 4958:1 5032:3 5074:1 5089:1 5133:1 5149:1 5182:2 5187:1 5199:1 5206:9 5218:1 5220:2 5222:1 5244:1 5250:1 5257:6 5274:1 5290:3 5308:1 5310:1 5317:1 5321:1 5331:1 5338:1 5348:1 5369:1 5418:1 5422:1 5429:1 5434:1 5438:1 5453:1 5456:3 5492:1 5495:1 5499:2 5506:1 5508:1 5528:2 5533:1 5555:2 5574:1 5577:1 5579:2 5583:1 5587:1 5592:1 5593:2 5606:2 5621:1 5624:1 5625:2 5651:2 5656:1305 5670:1 5678:1 5682:2 5700:1 5726:2 5728:3 5741:1 5765:1 5772:1 5779:1 5784:2 5787:1 5793:1 5814:1 5824:1 5829:2 5862:1 5873:1 5894:1 5915:1 5939:1 5945:1 5947:1 5952:1 5955:1 5983:1 5992:1 5993:2 5997:1 6004:1 6025:1 6033:1 6050:1 6066:1 6067:1 6106:4 6109:1 6142:1 6156:1 6171:1 6179:2 6185:1 6189:1 6201:1 6210:2 6240:1 6248:2 6268:1 6296:1 6302:1 6308:1 6335:2 6359:1 6366:1 6367:1 6373:2 6376:1 6378:2 6397:1 6403:1 6410:1 6417:1 6435:1 6468:1 6479:1 6507:1 6540:1 6558:1 6567:1 6570:1 6577:2 6578:1 6590:1 6593:1 6597:1 6603:1 6606:1 6612:2 6614:2 6631:1 6642:2 6655:1 6662:1 6673:2 6674:1 6700:1 6708:2 6709:1 6711:1 6713:1 6728:1 6733:1 6746:2 6756:1 6793:1 6820:1 6822:1 6832:1 6870:2 6892:5 6894:1 6901:1 6906:1 6914:1 6957:1 6961:1 6975:3 6986:1 6989:1 6998:1 7012:4 7038:1 7066:1 7098:1 7107:1 7112:1 7117:3 7119:2 7121:2 7124:1 7129:1 7131:1 7132:1 7138:1 7140:3 7142:1 7146:2 7147:2 7158:3 7162:1 7171:1 7175:1 7206:1 7211:1 7213:1 7253:1 7271:1 7274:1 7283:1 7300:2 7360:1 7388:1 7405:2 7408:1 7419:1 7421:1 7426:1 7458:1 7461:1 7462:1 7470:1 7480:1 7488:1 7506:1 7520:1 7529:1 7530:1 7555:1 7572:1 7575:1 7589:2 7636:1 7665:1 7682:1 7689:1 7693:1 7697:1 7699:1 7700:1 7702:1 7712:1 7720:1 7732:1 7741:1 7744:1 7768:3 7779:1 7792:1 7797:1 7818:1 7821:1 7823:1 7835:2 7853:1 7860:1 7872:1 7873:1 7891:1 7898:1 7905:1 7931:1 7938:1 7944:1 7953:2 7965:1 7974:2 7975:3 7991:1 7994:2 8003:1 8022:1 8033:1 8075:1 8087:1 8093:1 8104:1 8108:1 8140:1 8145:1 8154:1 8195:1 8202:1 8208:1 8213:2 8221:1 8250:1 8251:1 8254:2 8257:1 8261:1 8312:2 8342:2 8345:4 8348:1 8359:2 8377:1 8378:1 8391:1 8428:6 8450:1 8462:1 8488:1 8494:1 8497:1 8512:1 8520:1 8532:1 8533:1 8554:1 8575:1 8590:1 8619:1 8621:2 8646:1 8647:1 8653:1 8668:1 8675:1 8679:3 8682:1 8683:1 8687:1 8688:1 8693:1 8755:1 8756:1 8765:1 8775:1 8776:1 8777:2 8783:7 8788:1 8792:1 8807:2 8828:1 8852:2 8862:2 8867:1 8880:1 8899:1 8909:1 8943:2 8958:2 8981:3 8985:1 8997:4 9008:1 9015:1 9027:3 9068:1 9084:1 9095:1 9111:1 9121:1 9128:1 9139:1 9148:1 9151:1 9155:1 9162:1 9168:1 9169:1 9176:2 9181:1 9203:1 9207:2 9232:2 9258:1 9260:1 9281:2 9293:1 9319:1 9330:1 9340:1 9345:1 9370:1 9396:1 9399:1 9402:2 9407:2 9438:1 9442:3 9445:2 9468:1 9480:1 9547:1 9554:1 9568:1 9589:1 9599:1 9604:1 9605:1 9630:1 9655:1 9661:1 9668:1 9688:2 9735:1 9737:1 9751:1 9772:1 9776:1 9778:2 9782:1 9823:2 9824:1 9834:1 9844:1 9849:2 9873:3 9890:1 9914:1 9915:1 9922:1 9932:1 9945:1 9946:1 9966:1 9974:1 9985:3 9996:1 10007:1 10020:1 10028:1 10043:1 10065:1 10070:1 10089:1 10109:1 10121:2 10125:1 10129:2 10152:1 10166:1 10168:1 10193:1 10207:1 10208:1 10209:1 10214:1 10216:2 10217:1 10221:1 10261:1 10281:1 10287:1 10288:1 10291:1 10314:1 10330:6 10340:2 10379:1 10384:3 10390:1 10393:1 10394:1 10395:1 10403:1 10407:1 10411:1 10416:1 10417:1 10438:2 10439:3 10445:1 10455:4 10463:1 10485:1 10512:1 10524:2 10532:1 10535:1 10541:1 10574:1 10583:1 10595:1 10612:1 10658:1 10674:1 10676:1 10683:1 10721:1 10742:1 10777:1 10785:1 10803:1 10812:1 10817:1 10839:1 10852:3 10854:1 10881:1 10885:1 10907:1 10932:2 10941:1 10943:4 10962:1 10966:1 10973:1 10975:2 10980:1 10984:1 10989:1 10990:1 10999:3 11003:1 11004:1 11021:1 11043:2 11051:1 11057:5 11059:1 11076:1 11101:1 11104:1 11108:2 11127:1 11138:2 11140:1 11143:1 11153:1 11160:2 11166:1 11180:1 11187:1 11194:1 11209:1 11237:1 11253:2 11288:1 11316:2 11329:3 11331:6 11332:3 11334:1 11349:1 11352:3 11358:2 11364:3 11368:2 11384:1 11390:1 11415:2 11416:2 11417:1 11419:1 11436:19 11438:1 11448:1 11455:1 11457:1 11463:2 11470:4 11472:3 11473:1 11481:2 11506:1 11516:1 11519:1 11525:1 11527:1 11534:1 11565:1 11574:2 11575:2 11578:1 11590:1 11605:1 11639:1 11665:1 11691:1 11694:1 11712:1 11713:1 11724:1 11743:1 11755:2 11781:3 11783:1 11784:3 11794:1 11810:1 11838:1 11845:1 11867:1 11869:1 11896:1 11989:1 12021:2 12043:1 12051:1 12061:1 12076:1 12089:1 12118:1 12127:3 12144:11 12156:1 12176:2 12183:2 12190:1 12267:1 12269:1 12272:1 12281:1 12286:1 12313:2 12314:1 12322:4 12345:1 12348:1 12360:1 12365:1 12366:1 12371:2 12374:1 12381:1 12390:1 12402:1 12408:1 12419:1 12426:3 12442:2 12450:1 12474:1 12479:1 12501:1 12516:1 12520:1 12536:1 12556:1 12580:1 12583:1 12588:1 12596:2 12630:1 12637:1 12641:1 12664:1 12685:1 12694:1 12695:1 12731:1 12734:1 12738:1 12745:1 12758:1 12772:1 12784:1 12801:1 12804:1 12809:1 12811:3 12824:1 12830:1 12840:1 12842:1 12847:1 12866:1 12883:1 12892:1 12919:1 12925:1 12926:3 12929:1 12931:1 12947:2 12948:1 12949:1 12962:1 13000:1 13005:1 13019:1 13050:1 13064:1 13068:1 13091:1 13136:1 13139:1 13160:1 13178:1 13179:1 13206:1 13208:1 13209:1 13213:2 13242:2 13256:1 13278:1 13302:1 13304:1 13313:1 13316:1 13318:1 13325:1 13333:1 13334:1 13337:1 13347:1 13358:1 13391:3 13421:1 13441:1 13443:1 13445:1 13471:2 13531:1 13549:1 13554:2 13581:1 13583:1 13590:1 13596:1 13600:1 13602:1 13605:2 13663:1 13680:1 13692:2 13693:1 13696:1 13708:1 13711:1 13714:3 13745:1 13752:1 13766:3 13803:1 13807:3 13860:1 13867:1 13873:1 13887:1 13896:2 13906:1 13912:1 13915:1 13922:1 13942:1 13952:1 13967:3 14004:1 14007:1 14024:2 14028:1 14032:5 14036:1 14043:1 14081:1 14120:1 14130:1 14140:1 14144:1 14151:1 14179:1 14181:1 14186:1 14189:1 14193:1 14199:2 14204:2 14209:1 14217:1 14258:1 14262:1 14280:1 14282:1 14295:1 14304:1 14314:1 14319:1 14326:1 14363:6 14400:1 14404:1 14410:1 14433:1 14437:1 14443:1 14449:3 14458:1 14470:1 14482:1 14498:1 14499:1 14515:1 14559:1 14564:1 14565:1 14625:1 14631:1 14633:1 14642:2 14662:1 14668:2 14678:3 14683:1 14700:1 14707:1 14717:1 14729:2 14750:2 14756:1 14759:1 14769:1 14776:1 14832:1 14845:1 14850:1 14879:1 14889:1 14895:2 14896:1 14900:1 14936:1 14945:1 14951:1 14959:7 14964:1 14977:1 14979:2 14985:1 15003:2 15033:1 15037:1 15052:1 15099:6 15136:2 15138:1 15155:1 15165:1 15166:1 15184:1 15189:1 15198:1 15201:1 15202:1 15205:1 15208:1 15210:1 15222:1 15224:1 15229:2 15250:1 15260:1 15281:2 15285:1 15287:1 15298:1 15300:1 15301:4 15306:1 15307:1 15309:1 15315:1 15332:1 15339:1 15346:1 15348:1 15359:3 15360:1 15384:1 15385:1 15391:1 15416:1 15436:1 15441:1 15448:1 15456:2 15479:1 15490:1 15492:1 15519:1 15539:1 15544:1 15548:3 15550:1 15552:2 15573:3 15584:1 15589:1 15607:1 15633:2 15663:1 15664:1 15674:1 15703:1 15712:1 15723:1 15745:1 15753:1 15754:3 15756:1 15787:1 15799:1 15814:2 15860:1 15875:1 15879:2 15881:1 15896:1 15924:1 15958:1 15992:1 16018:1 16027:1 16030:1 16031:1 16050:1 16051:2 16059:2 16067:1 16074:1 16075:2 16078:1 16080:5 16083:1 16090:1 16093:2 16100:1 16101:1 16105:1 16114:1 16117:1 16127:1 16140:1 16163:2 16172:1 16177:1 16206:1 16207:1 16211:1 16225:2 16240:1 16260:1 16262:1 16273:1 16278:1 16305:1 16312:1 16374:1 16376:1 16391:1 16395:1 16418:1 16427:1 16431:1 16473:1 16502:1 16519:1 16523:1 16531:1 16552:1 16553:1 16575:1 16580:2 16585:1 16596:2 16601:1 16628:2 16631:1 16650:1 16658:1 16676:6 16678:1 16708:1 16712:1 16727:1 16731:3 16745:1 16749:2 16758:1 16828:1 16844:1 16850:1 16851:1 16867:1 16874:2 16890:1 16893:1 16921:1 16936:2 16949:1 16951:1 16981:1 16987:1 16999:1 17005:1 17008:1 17029:1 17052:3 17062:6 17063:1 17068:1 17071:1 17084:1 17089:1 17092:1 17099:1 17151:3 17156:2 17183:1 17189:1 17201:1 17202:1 17230:1 17242:1 17259:2 17263:3 17266:2 17268:3 17279:2 17287:4 17339:1 17345:1 17379:1 17403:3 17429:1 17461:1 17463:1 17495:1 17504:1 17518:1 17533:2 17543:1 17549:1 17553:1 17555:2 17591:4 17594:1 17604:1 17627:1 17632:1 17634:1 17643:1 17660:1 17670:1 17672:1 17696:1 17753:1 17769:1 17774:2 17776:1 17798:1 17799:1 17809:1 17810:2 17818:1 17823:1 17826:1 17855:1 17893:1 17897:3 17922:1 17925:1 17929:1 17935:1 17986:1 17989:1 17996:1 18002:1 18003:1 18022:1 18023:1 18027:1 18045:1 18053:1 18074:1 18077:2 18099:2 18126:1 18141:1 18180:2 18198:1 18227:1 18230:1 18258:1 18264:2 18274:1 18303:1 18310:1 18333:1 18339:1 18357:1 18358:1 18360:2 18380:1 18383:1 18386:1 18390:1 18398:1 18399:1 18432:1 18434:1 18455:1 18459:1 18465:1 18523:3 18525:1 18535:1 18545:1 18564:1 18606:5 18613:1 18616:2 18629:1 18634:1 18638:1 18644:1 18652:1 18656:1 18665:1 18689:1 18697:1 18703:1 18707:1 18709:1 18710:1 18711:1 18713:1 18717:1 18725:2 18742:1 18763:1 18765:1 18791:2 18807:1 18810:1 18851:1 18881:1 18897:1 18909:1 18973:1 19013:1 19014:1 19025:1 19051:1 19053:1 19062:1 19064:2 19085:1 19115:1 19117:2 19168:1 19215:1 19228:1 19270:1 19278:1 19292:1 19311:1 19315:2 19324:4 19339:1 19365:1 19367:1 19386:1 19388:1 19407:1 19418:1 19444:1 19452:1 19498:2 19503:1 19506:1 19509:1 19512:1 19524:1 19525:1 19535:1 19536:3 19538:2 19549:1 19551:1 19556:1 19558:1 19568:1 19582:1 19586:1 19595:1 19597:1 19598:1 19600:2 19616:1 19621:1 19630:1 19638:1 19649:2 19655:6 19664:3 19667:1 19680:1 19696:2 19715:1 19718:1 19721:1 19724:1 19757:1 19816:3 19829:1 19833:1 19857:3 19891:1 19896:1 19908:2 19918:4 19929:3 19936:1 19965:1 19974:1 19975:4 19977:1 19992:1 19995:1 19999:1 20015:1 20034:2 20037:1 20041:1 20044:1 20049:5 20075:1 20081:1 20132:1 20170:1 20185:1 20188:1 20223:1 20251:1 20256:1 20258:1 20266:1 20267:2 20276:1 20298:2 20305:2 20363:1 20366:1 20379:1 20382:1 20383:1 20387:2 20390:5 20413:1 20440:1 20453:1 20482:6 20494:3 20519:2 20529:1 20552:1 20598:1 20614:1 20621:1 20636:1 20669:1 20670:1 20706:1 20758:1 20817:1 20822:1 20844:1 20846:1 20851:3 20855:2 20875:1 20878:1 20880:1 20912:1 20955:1 20956:1 20980:1 21034:2 21080:2 21083:1 21096:1 21099:1 21110:2 21111:1 21118:1 21142:1 21180:1 21188:1 21202:1 21213:1 21223:2 21265:1 21274:1 21276:1 21298:1 21333:1 21349:2 21353:1 21374:3 21379:1 21386:1 21402:1 21446:1 21451:3 21470:2 21494:1 21510:1 21512:1 21538:1 21539:1 21540:1 21547:1 21579:1 21586:1 21589:2 21619:1 21623:1 21626:1 21635:1 21637:1 21639:1 21640:2 21646:1 21667:1 21674:2 21707:2 21715:1 21718:1
1 5:2 23:1 91:1 99:1 101:1 103:1 107:1 123:1 134:1 140:1 163:1 181:1 233:1 260:3 261:1 280:1 308:1 319:1 324:1 343:2 370:1 411:1 419:1 432:1 439:4 454:1 461:2 466:1 467:1 476:1 490:1 501:1 510:1 523:1 527:1 547:1 563:3 564:2 571:1 573:3 578:1 582:3 602:2 605:1 626:1 628:1 635:1 644:1 663:5 667:2 677:1 685:1 749:1 761:1 762:1 790:1 806:2 827:1 861:1 889:1 893:1 894:1 908:2 943:1 954:1 964:1 989:1 1004:1 1018:1 1034:1 1037:2 1040:1 1056:1 1074:1 1079:1 1124:1 1152:1 1160:1 1205:1 1229:1 1237:2 1248:1 1261:1 1270:1 1278:1 1281:1 1282:2 1320:3 1322:2 1331:1 1358:3 1375:1 1392:1 1402:7 1407:2 1419:3 1430:1 1435:1 1441:1 1453:1 1457:6 1475:4 1476:2 1478:6 1482:1 1486:1 1488:2 1489:3 1507:2 1530:2 1531:3 1536:1 1549:1 1598:1 1600:2 1624:1 1644:1 1651:2 1653:1 1659:2 1683:2 1689:1 1698:1 1715:1 1771:1 1781:1 1785:1 1789:1 1797:2 1866:1 1875:1 1877:3 1879:2 1884:1 1885:2 1886:2 1888:2 1889:1 1892:1 1893:2 1895:1 1898:1 1899:2 1903:1 1904:1 1912:1 1921:1 1951:1 1953:1 1973:2 2007:1 2009:1 2025:1 2057:1 2077:1 2079:1 2105:1 2107:1 2112:1 2113:1 2114:1 2128:1 2142:1 2161:1 2172:1 2179:1 2180:1 2209:1 2233:1 2240:1 2267:1 2271:1 2288:1 2291:1 2306:1 2340:1 2345:3 2356:4 2359:2 2376:1 2412:1 2427:1 2429:1 2436:1 2441:1 2456:1 2460:1 2465:1 2472:2 2485:2 2486:1 2489:1 2499:1 2503:1 2506:3 2507:1 2511:1 2520:2 2522:1 2527:1 2552:1 2553:1 2562:1 2572:1 2574:1 2580:1 2583:1 2595:1 2613:1 2619:2 2621:1 2626:1 2656:3 2684:1 2691:1 2695:2 2701:1 2704:3 2706:1 2715:2 2718:5 2750:2 2752:2 2753:3 2768:1 2775:1 2798:2 2845:1 2847:1 2862:2 2907:1 2919:1 2927:1 2930:2 2949:2 2953:1 2959:1 2965:1 2968:1 2971:1 2989:1 2992:1 3024:1 3027:1 3032:1 3043:1 3059:1 3062:1 3066:1 3071:1 3075:1 3124:3 3153:7 3156:2 3161:1 3166:1 3179:1 3184:1 3190:1 3208:2 3263:1 3271:2 3274:1 3275:1 3295:1 3299:1 3302:2 3308:1 3322:1 3325:1 3331:2 3332:1 3340:2 3341:2 3343:1 3346:1 3354:3 3355:2 3358:5 3360:2 3362:1 3373:1 3414:1 3417:1 3439:1 3445:1 3450:1 3451:3 3465:1 3470:1 3477:1 3493:1 3509:1 3521:2 3523:1 3524:1 3539:1 3548:1 3552:1 3557:1 3576:1 3613:1 3622:1 3631:1 3633:1 3644:1 3661:1 3672:1 3679:1 3692:1 3697:1 3712:1 3717:1 3718:1 3722:1 3732:1 3747:1 3755:1 3760:1 3767:2 3772:1 3775:3 3781:1 3788:1 3790:1 3793:1 3800:3 3806:2 3815:1 3819:1 3821:1 3828:1 3856:3 3857:1 3865:1 3887:1 3888:2 3899:1 3900:1 3903:1 3904:1 3916:1 3925:2 3927:1 3928:1 3939:1 3948:1 3957:3 3965:3 3979:1 3990:1 3997:3 3998:2 4025:1 4026:2 4036:1 4038:1 4065:2 4097:1 4101:1 4103:1 4104:1 4106:1 4118:1 4121:2 4129:1 4131:1 4133:3 4150:1 4158:1 4198:1 4199:1 4200:1 4216:1 4227:1 4230:1 4239:1 4242:1 4246:2 4265:2 4277:1 4279:7 4311:2 4312:1 4316:1 4317:1 4318:1 4326:1 4358:4 4398:2 4400:2 4426:1 4429:1 4442:1 4461:1 4513:1 4532:1 4534:4 4555:1 4565:2 4582:1 4584:1 4586:1 4600:1 4643:2 4661:1 4680:2 4698:1 4717:2 4737:2 4757:1 4770:2 4771:1 4792:1 4797:1 4841:1 4855:1 4866:1 4910:6 4933:1 4936:1 4958:1 5032:3 5074:1 5083:1 5089:1 5133:1 5149:1 5182:2 5187:1 5199:1 5206:10 5218:1 5220:2 5222:1 5223:1 5244:1 5250:1 5257:7 5274:1 5277:1 5290:3 5308:1 5310:1 5317:1 5321:2 5331:1 5338:1 5348:1 5369:1 5395:1 5418:1 5422:1 5429:1 5434:1 5438:1 5453:1 5456:3 5492:1 5495:1 5499:2 5506:1 5508:1 5528:2 5533:1 5555:2 5574:1 5577:1 5579:2 5583:1 5587:1 5592:1 5593:2 5606:2 5621:1 5624:1 5625:2 5651:2 5656:1398 5670:1 5678:1 5682:2 5700:1 5726:2 5728:3 5741:1 5765:1 5772:1 5779:1 5784:2 5787:1 5793:1 5814:1 5824:1 5829:2 5862:1 5873:1 5894:1 5915:1 5939:2 5945:1 5947:1 5952:1 5955:1 5983:1 5992:1 5993:2 5997:1 6004:1 6025:1 6033:1 6050:1 6066:1 6067:1 6106:4 6109:1 6142:1 6156:1 6171:1 6179:2 6185:1 6189:1 6201:1 6210:2 6240:1 6248:2 6268:2 6296:1 6302:1 6308:1 6335:2 6359:1 6366:1 6367:1 6373:2 6376:1 6378:2 6397:1 6399:1 6403:1 6410:1 6417:1 6435:1 6468:1 6479:1 6507:1 6513:1 6540:1 6558:1 6567:1 6570:1 6577:2 6578:1 6590:1 6593:1 6597:1 6603:1 6606:1 6612:2 6614:2 6631:1 6642:2 6655:1 6662:1 6673:2 6674:1 6700:1 6708:2 6709:1 6711:1 6713:1 6728:1 6733:1 6746:2 6756:1 6793:1 6820:1 6822:1 6832:1 6870:2 6892:6 6894:1 6901:1 6906:1 6914:1 6957:1 6961:1 6975:3 6976:1 6986:1 6989:1 6998:1 7000:1 7012:4 7038:1 7066:1 7095:1 7098:1 7107:1 7112:1 7117:3 7119:2 7121:2 7124:1 7129:1 7131:1 7132:1 7138:1 7140:3 7142:2 7146:2 7147:2 7158:3 7162:1 7171:1 7175:1 7206:1 7211:1 7213:1 7253:1 7271:1 7274:1 7283:1 7300:2 7360:1 7388:1 7405:2 7408:1 7419:1 7421:1 7426:1 7458:1 7461:1 7462:1 7470:1 7480:1 7488:1 7506:1 7520:1 7529:1 7530:1 7555:1 7572:1 7575:1 7589:2 7636:1 7665:1 7682:1 7689:1 7693:1 7697:1 7699:1 7700:1 7702:1 7712:1 7720:1 7732:1 7740:1 7741:1 7744:1 7768:3 7779:1 7792:1 7797:1 7818:1 7821:1 7823:1 7835:2 7853:1 7860:1 7872:1 7873:1 7878:1 7891:1 7898:1 7905:1 7931:1 7938:1 7944:1 7953:2 7965:1 7974:2 7975:4 7991:1 7994:2 8003:1 8022:1 8033:1 8075:1 8087:1 8093:1 8104:1 8108:1 8140:1 8145:1 8154:1 8195:1 8202:1 8208:1 8213:2 8221:1 8250:2 8251:1 8254:2 8257:1 8261:2 8278:1 8312:2 8342:2 8345:4 8348:1 8359:2 8364:1 8377:1 8378:1 8391:1 8428:6 8450:1 8462:1 8488:1 8494:1 8497:1 8512:1 8520:1 8532:1 8533:1 8554:1 8575:1 8590:1 8608:1 8619:1 8621:2 8646:2 8647:1 8653:1 8668:1 8675:1 8679:3 8682:1 8683:1 8687:1 8688:1 8693:1 8755:1 8756:1 8765:1 8775:1 8776:1 8777:3 8783:7 8788:2 8792:1 8807:2 8828:1 8852:2 8862:2 8867:1 8880:1 8899:1 8909:1 8943:2 8958:2 8981:3 8985:1 8997:4 9008:2 9015:1 9027:3 9068:1 9084:1 9095:1 9111:1 9121:1 9128:1 9139:1 9148:1 9151:1 9152:1 9155:1 9162:1 9168:1 9169:1 9176:2 9181:2 9184:1 9203:1 9207:2 9232:2 9258:1 9260:1 9262:1 9281:2 9293:1 9319:1 9330:1 9340:1 9345:1 9370:1 9396:1 9399:1 9402:2 9407:2 9438:1 9442:3 9445:2 9468:1 9480:1 9547:1 9554:1 9568:1 9589:1 9599:1 9604:1 9605:1 9618:1 9630:1 9634:1 9655:2 9657:1 9661:1 9668:1 9688:2 9703:1 9735:1 9737:1 9751:1 9772:1 9776:1 9778:2 9782:1 9823:2 9824:1 9834:1 9835:1 9844:1 9849:2 9873:3 9890:1 9914:1 9915:1 9922:1 9932:1 9945:1 9946:1 9966:1 9974:1 9985:3 9996:1 10007:1 10020:1 10028:1 10043:1 10065:1 10070:1 10089:1 10102:1 10109:1 10121:2 10125:1 10129:2 10146:1 10152:1 10166:1 10168:1 10193:1 10207:1 10208:1 10209:1 10214:1 10216:2 10217:1 10221:1 10261:1 10281:1 10287:1 10288:1 10291:1 10314:1 10330:6 10340:2 10379:1 10384:3 10390:1 10393:1 10394:1 10395:1 10403:1 10407:1 10411:1 10416:1 10417:1 10438:2 10439:3 10445:1 10455:4 10463:1 10470:1 10485:1 10512:1 10524:2 10532:1 10535:1 10541:1 10574:1 10583:1 10595:2 10612:1 10658:1 10674:1 10676:1 10683:1 10721:1 10742:1 10777:1 10785:1 10803:1 10812:1 10817:1 10839:1 10852:3 10854:1 10881:1 10885:1 10907:1 10932:2 10941:1 10943:4 10953:1 10962:1 10966:1 10973:1 10975:2 10980:1 10984:1 10989:1 10990:1 10999:3 11003:1 11004:1 11021:1 11043:2 11051:2 11057:6 11059:1 11076:1 11101:1 11104:1 11108:2 11127:1 11138:2 11140:1 11143:1 11153:1 11160:2 11166:1 11180:1 11187:1 11194:1 11209:1 11237:1 11248:1 11253:2 11288:1 11316:2 11329:3 11331:6 11332:3 11334:1 11349:1 11352:3 11358:2 11364:3 11368:2 11371:1 11384:1 11390:1 11415:2 11416:2 11417:1 11419:1 11424:1 11436:22 11438:1 11448:1 11455:1 11457:1 11463:2 11470:4 11472:3 11473:1 11481:2 11506:1 11516:1 11519:1 11525:1 11527:1 11534:1 11549:1 11565:1 11574:2 11575:2 11578:1 11590:1 11605:1 11639:1 11665:1 11687:1 11691:1 11694:1 11712:1 11713:1 11724:1 11743:1 11755:2 11760:1 11781:3 11783:1 11784:3 11794:1 11810:1 11838:1 11845:1 11867:2 11869:1 11896:1 11989:1 12021:2 12043:1 12051:1 12061:1 12076:1 12089:1 12118:1 12127:3 12144:12 12156:1 12176:2 12183:2 12190:1 12267:1 12269:1 12272:1 12281:1 12286:1 12313:3 12314:1 12322:4 12345:1 12348:1 12360:1 12365:2 12366:1 12371:2 12374:1 12381:1 12389:1 12390:1 12402:1 12408:1 12419:2 12426:4 12442:2 12450:1 12474:2 12479:1 12501:1 12516:1 12520:1 12536:1 12556:1 12568:1 12580:1 12583:1 12588:1 12596:2 12630:1 12637:1 12641:1 12664:1 12685:1 12694:1 12695:1 12731:1 12734:1 12738:1 12745:1 12758:1 12772:1 12784:1 12801:1 12804:1 12809:1 12811:3 12824:1 12830:1 12840:1 12842:1 12847:1 12866:1 12883:1 12892:1 12919:1 12925:1 12926:3 12929:1 12931:1 12934:1 12947:2 12948:1 12949:1 12962:1 13000:1 13005:1 13019:1 13050:1 13064:1 13068:1 13091:1 13136:1 13139:1 13160:1 13178:1 13179:1 13206:1 13208:1 13209:1 13213:2 13242:2 13256:1 13278:1 13302:1 13304:1 13313:1 13316:1 13318:1 13325:1 13326:1 13333:1 13334:1 13337:1 13347:1 13358:1 13391:3 13421:1 13441:1 13443:2 13445:1 13471:2 13531:1 13549:1 13554:2 13581:1 13583:1 13590:1 13596:1 13600:1 13602:1 13605:2 13663:1 13680:1 13692:2 13693:1 13696:1 13708:1 13711:1 13714:3 13745:1 13752:1 13766:3 13803:1 13807:4 13860:1 13867:1 13873:1 13882:1 13887:1 13896:2 13906:1 13912:1 13915:1 13922:1 13942:1 13952:1 13967:3 14004:1 14007:1 14024:2 14028:1 14032:6 14036:1 14043:1 14081:1 14120:1 14130:1 14140:1 14144:1 14151:1 14179:1 14181:1 14186:1 14189:1 14193:1 14199:3 14204:2 14209:1 14217:1 14258:1 14262:2 14280:1 14282:1 14295:1 14304:1 14314:1 14319:1 14326:1 14363:6 14400:1 14404:1 14410:1 14433:1 14437:1 14443:1 14449:3 14458:1 14470:1 14482:1 14498:1 14499:1 14515:1 14559:1 14564:1 14565:1 14625:1 14631:1 14633:1 14642:2 14662:1 14668:2 14678:3 14683:1 14700:1 14707:1 14717:1 14729:2 14750:2 14756:1 14759:1 14769:1 14776:1 14832:1 14844:1 14845:1 14850:1 14857:1 14879:1 14889:1 14895:3 14896:1 14900:1 14936:1 14945:1 14951:1 14959:7 14964:1 14977:1 14979:2 14985:1 15003:2 15033:1 15037:1 15052:1 15054:1 15099:6 15133:1 15136:2 15138:1 15155:1 15165:1 15166:1 15184:1 15189:1 15198:1 15201:1 15202:1 15205:1 15208:1 15210:1 15222:1 15224:1 15229:2 15250:1 15260:1 15281:2 15285:1 15287:1 15298:1 15300:1 15301:4 15306:1 15307:1 15309:1 15315:1 15320:1 15332:1 15339:1 15346:1 15348:1 15359:3 15360:1 15384:1 15385:1 15391:1 15416:1 15436:1 15441:1 15448:1 15456:2 15479:1 15490:1 15492:1 15519:1 15539:1 15544:1 15548:3 15550:1 15552:2 15554:1 15569:1 15573:3 15584:1 15589:1 15597:1 15607:1 15633:3 15634:1 15663:1 15664:1 15674:1 15703:1 15712:1 15723:1 15745:1 15753:2 15754:3 15756:1 15774:1 15787:1 15799:1 15814:2 15860:1 15875:1 15879:2 15881:1 15896:1 15924:1 15958:1 15992:1 16018:1 16027:1 16030:1 16031:1 16050:1 16051:2 16059:2 16067:1 16074:1 16075:2 16078:1 16080:5 16083:1 16090:1 16093:2 16100:1 16101:1 16105:1 16114:2 16117:1 16127:1 16140:1 16142:1 16163:2 16172:1 16177:1 16206:1 16207:1 16211:1 16225:3 16240:1 16260:1 16262:1 16273:1 16278:1 16305:1 16312:1 16374:1 16376:1 16391:1 16395:1 16418:1 16427:1 16431:1 16473:1 16502:1 16519:1 16523:1 16531:1 16552:1 16553:1 16575:1 16580:2 16585:1 16596:2 16601:1 16602:1 16628:2 16631:1 16650:1 16658:1 16676:6 16678:1 16708:1 16712:1 16727:1 16731:3 16745:1 16749:2 16758:1 16810:1 16828:1 16844:1 16850:1 16851:1 16867:1 16874:2 16890:1 16893:1 16921:1 16936:2 16949:1 16951:1 16981:1 16987:1 16999:1 17005:1 17008:1 17029:1 17052:3 17056:1 17062:7 17063:1 17068:1 17071:1 17084:1 17089:1 17092:1 17099:1 17111:1 17151:3 17156:2 17183:2 17189:1 17201:1 17202:1 17230:1 17242:1 17259:2 17263:3 17266:2 17268:3 17279:2 17287:4 17339:1 17345:1 17379:1 17403:3 17429:1 17461:1 17463:1 17495:1 17504:1 17518:1 17533:2 17543:1 17549:1 17553:1 17555:2 17591:4 17594:1 17604:1 17627:1 17632:1 17634:1 17643:1 17660:1 17670:1 17672:1 17696:1 17753:1 17759:1 17769:1 17774:3 17776:1 17798:1 17799:1 17809:1 17810:2 17818:1 17823:1 17826:1 17855:1 17893:1 17897:3 17922:1 17925:1 17929:1 17935:1 17986:1 17989:1 17996:1 18002:1 18003:1 18022:1 18023:1 18027:1 18045:1 18053:1 18074:1 18077:2 18099:2 18126:1 18141:1 18180:2 18198:1 18227:1 18230:1 18258:1 18264:2 18274:1 18303:1 18310:2 18333:1 18339:1 18357:1 18358:1 18360:2 18362:1 18380:1 18383:1 18386:1 18390:1 18398:1 18399:1 18432:1 18434:1 18455:1 18459:1 18465:1 18523:3 18525:1 18534:1 18535:1 18545:1 18564:1 18606:5 18613:1 18616:2 18629:1 18634:1 18638:1 18644:1 18652:1 18656:1 18665:1 18689:1 18697:1 18703:1 18707:1 18709:1 18710:1 18711:2 18713:1 18717:1 18725:2 18742:1 18752:1 18763:1 18765:1 18769:1 18791:2 18807:1 18810:1 18851:1 18881:1 18897:1 18909:1 18973:1 19013:1 19014:1 19015:1 19025:1 19051:1 19053:1 19062:1 19064:2 19085:1 19115:1 19117:2 19168:1 19215:1 19228:1 19270:1 19278:1 19292:1 19311:1 19315:2 19324:4 19339:1 19365:1 19367:1 19386:1 19388:1 19391:1 19407:1 19418:1 19444:1 19450:1 19452:1 19498:2 19503:1 19506:1 19509:1 19512:1 19524:2 19525:1 19535:1 19536:3 19538:2 19549:1 19551:1 19556:1 19558:1 19568:1 19582:1 19586:1 19595:1 19597:1 19598:1 19600:3 19616:1 19621:1 19630:1 19638:1 19645:1 19649:2 19655:6 19664:3 19667:1 19680:1 19696:3 19715:1 19718:1 19720:1 19721:1 19724:1 19757:1 19816:3 19829:1 19833:1 19857:4 19891:1 19896:1 19908:2 19910:1 19918:4 19929:3 19936:2 19965:1 19974:1 19975:4 19977:1 19992:1 19995:1 19999:1 20015:1 20034:2 20037:1 20041:1 20044:1 20049:6 20050:1 20075:1 20081:1 20101:1 20132:1 20170:1 20185:1 20188:1 20223:1 20251:1 20256:1 20258:1 20266:1 20267:2 20276:1 20298:2 20305:3 20363:1 20366:1 20379:1 20382:1 20383:1 20387:2 20390:5 20413:1 20440:1 20453:1 20482:7 20494:3 20519:2 20529:1 20552:1 20598:1 20614:1 20621:1 20636:1 20669:1 20670:1 20706:1 20758:1 20817:1 20822:1 20828:1 20844:1 20846:1 20851:3 20855:2 20875:1 20878:1 20880:1 20912:1 20955:1 20956:1 20980:1 21034:3 21080:2 21083:1 21096:1 21099:1 21110:2 21111:1 21118:1 21142:1 21180:1 21188:1 21202:1 21213:1 21223:2 21265:1 21271:1 21274:1 21276:2 21298:1 21333:1 21349:2 21353:1 21362:1 21374:3 21379:2 21386:1 21402:1 21446:1 21451:3 21463:1 21470:2 21494:1 21510:1 21512:1 21538:1 21539:1 21540:1 21547:1 21579:1 21586:1 21589:2 21619:1 21623:1 21626:1 21635:1 21637:1 21639:1 21640:2 21646:1 21667:1 21674:2 21707:2 21715:1 21718:1
1 5:2 23:1 35:1 91:1 99:1 101:1 103:1 107:1 123:1 134:1 140:1 163:1 181:1 233:1 260:3 261:1 280:1 308:1 319:1 324:1 343:3 369:1 370:1 411:1 419:1 432:1 439:4 454:1 461:2 466:1 467:1 476:1 490:1 501:1 510:1 523:1 527:1 547:1 563:3 564:2 571:1 573:3 578:1 582:3 602:2 605:1 626:1 628:1 635:1 644:1 663:5 667:2 677:1 685:1 749:1 761:1 762:1 790:1 806:2 827:1 861:1 889:1 893:1 894:1 908:2 943:1 954:1 964:1 989:1 1004:1 1018:2 1034:1 1037:2 1040:1 1056:1 1074:1 1079:1 1081:1 1124:1 1152:1 1160:1 1200:1 1205:1 1229:1 1237:2 1248:1 1261:1 1270:1 1278:1 1281:1 1282:2 1320:3 1322:2 1331:1 1349:1 1358:3 1375:1 1392:1 1402:7 1407:2 1419:3 1430:1 1435:1 1441:1 1453:1 1457:7 1475:4 1476:2 1478:6 1482:1 1486:1 1488:2 1489:3 1507:2 1530:3 1531:3 1536:1 1549:1 1598:1 1600:2 1624:1 1644:1 1651:2 1653:1 1659:2 1683:2 1689:1 1698:1 1715:1 1743:1 1771:1 1781:1 1785:1 1789:1 1797:2 1866:1 1875:1 1877:3 1879:2 1884:1 1885:2 1886:2 1888:2 1889:1 1892:1 1893:2 1895:1 1898:1 1899:2 1903:1 1904:1 1912:1 1913:1 1921:1 1951:1 1953:1 1973:2 2007:1 2009:1 2025:1 2057:1 2077:1 2079:1 2105:1 2107:1 2112:1 2113:1 2114:1 2128:1 2142:1 2161:1 2172:1 2179:1 2180:2 2209:1 2233:1 2240:1 2267:1 2271:1 2288:1 2291:1 2306:1 2340:1 2345:3 2356:4 2359:2 2375:1 2376:1 2412:1 2427:1 2429:1 2436:1 2441:1 2456:1 2458:1 2460:1 2465:1 2472:2 2485:2 2486:1 2489:1 2499:1 2503:1 2506:3 2507:1 2511:1 2520:2 2522:1 2527:1 2552:1 2553:1 2562:1 2567:1 2572:1 2574:1 2580:1 2583:1 2595:1 2613:1 2619:2 2621:1 2626:1 2656:3 2684:1 2691:1 2695:2 2701:1 2704:3 2706:1 2715:2 2718:5 2750:2 2752:2 2753:3 2768:1 2775:1 2798:2 2804:1 2840:1 2845:1 2847:1 2862:2 2907:1 2919:1 2927:1 2930:2 2949:2 2953:1 2959:1 2965:1 2968:1 2971:2 2989:1 2992:1 3024:1 3027:2 3032:1 3043:1 3059:1 3062:1 3066:1 3071:1 3075:1 3093:1 3124:3 3153:7 3156:2 3161:1 3166:1 3179:1 3184:1 3190:1 3208:2 3263:2 3271:2 3274:1 3275:1 3276:1 3290:1 3295:1 3299:1 3302:2 3308:1 3322:1 3325:1 3331:2 3332:1 3337:1 3340:2 3341:2 3343:1 3346:1 3354:3 3355:2 3358:5 3360:2 3362:1 3373:1 3414:1 3417:1 3439:1 3445:1 3450:1 3451:3 3465:1 3470:1 3477:1 3493:1 3509:1 3521:2 3523:1 3524:1 3539:1 3548:1 3552:1 3557:1 3576:1 3613:1 3622:1 3631:1 3633:1 3644:1 3661:1 3672:1 3679:1 3692:1 3697:1 3712:1 3717:1 3718:1 3722:1 3732:1 3747:1 3755:1 3760:1 3767:2 3772:1 3775:4 3781:1 3788:1 3790:1 3793:1 3800:3 3806:2 3815:1 3819:1 3821:1 3828:1 3856:4 3857:1 3865:1 3887:1 3888:2 3899:1 3900:1 3903:1 3904:1 3916:1 3925:2 3927:1 3928:1 3939:1 3948:1 3957:4 3965:3 3979:1 3990:1 3997:3 3998:2 4009:1 4025:1 4026:2 4036:1 4038:1 4065:2 4097:1 4101:1 4103:1 4104:1 4106:2 4118:1 4121:2 4129:1 4131:1 4133:3 4150:1 4158:1 4198:1 4199:1 4200:1 4216:1 4227:1 4230:1 4239:1 4242:1 4246:2 4265:2 4277:1 4279:9 4311:2 4312:1 4316:1 4317:1 4318:1 4326:1 4333:1 4358:5 4398:2 4400:2 4426:1 4429:1 4442:1 4461:1 4513:1 4532:1 4534:4 4555:1 4565:2 4573:1 4582:1 4584:1 4586:1 4600:1 4643:2 4661:1 4680:2 4698:1 4717:2 4737:2 4757:1 4770:2 4771:1 4792:1 4797:1 4811:1 4841:1 4855:1 4866:1 4868:1 4910:6 4933:1 4936:1 4958:1 4969:1 5032:3 5074:1 5083:1 5089:1 5133:1 5149:1 5182:2 5187:1 5199:1 5206:10 5218:1 5220:2 5222:1 5223:1 5244:1 5249:1 5250:1 5257:7 5274:1 5277:1 5290:3 5293:1 5308:1 5310:1 5317:1 5321:2 5331:1 5338:1 5348:1 5369:1 5395:1 5396:1 5418:1 5422:1 5429:1 5434:1 5438:1 5453:1 5456:4 5492:1 5495:1 5499:2 5506:1 5508:1 5528:2 5533:1 5555:2 5574:1 5577:1 5579:2 5583:1 5587:1 5592:1 5593:2 5606:2 5621:1 5624:1 5625:2 5651:2 5656:1488 5670:1 5678:1 5682:2 5700:1 5726:3 5728:3 5741:1 5765:1 5772:1 5779:1 5784:2 5787:1 5793:1 5814:2 5824:1 5829:2 5862:1 5873:1 5894:1 5915:1 5939:2 5945:1 5947:1 5952:1 5955:1 5981:1 5983:1 5987:1 5992:1 5993:2 5997:1 6004:1 6025:1 6033:1 6050:1 6066:1 6067:1 6106:6 6109:1 6142:1 6156:1 6171:1 6179:2 6185:1 6189:1 6201:1 6210:2 6240:1 6248:2 6268:2 6296:1 6302:1 6308:1 6335:2 6359:1 6366:1 6367:1 6373:2 6376:1 6378:2 6397:1 6399:1 6403:1 6410:2 6417:1 6435:1 6460:1 6468:1 6479:1 6507:1 6513:1 6540:1 6550:2 6558:1 6567:2 6570:1 6577:2 6578:1 6590:1 6593:1 6597:1 6603:1 6606:1 6612:2 6614:2 6631:1 6642:2 6655:1 6662:1 6673:2 6674:1 6700:1 6708:2 6709:1 6711:1 6713:1 6728:1 6733:2 6746:2 6747:1 6756:1 6793:1 6820:1 6822:1 6832:1 6833:1 6870:2 6892:7 6894:1 6901:1 6906:1 6914:1 6916:1 6957:1 6961:1 6975:3 6976:1 6986:1 6989:1 6998:1 7000:1 7012:4 7038:1 7066:1 7095:2 7098:1 7107:1 7112:1 7117:3 7119:2 7121:2 7124:1 7129:1 7131:1 7132:1 7138:1 7140:3 7142:2 7146:2 7147:2 7158:3 7162:1 7171:1 7175:1 7203:1 7206:1 7211:1 7213:1 7253:1 7271:1 7274:1 7283:1 7300:2 7340:1 7360:1 7388:1 7405:2 7408:1 7419:1 7421:1 7426:1 7458:1 7461:1 7462:1 7470:1 7480:1 7488:1 7506:1 7520:1 7529:1 7530:1 7555:1 7572:1 7575:1 7589:2 7636:1 7665:1 7682:1 7689:1 7691:1 7693:1 7697:1 7699:1 7700:1 7702:1 7712:1 7720:1 7732:1 7740:1 7741:1 7744:1 7768:3 7779:1 7792:1 7797:1 7818:1 7821:1 7823:1 7835:2 7853:1 7860:1 7872:1 7873:1 7878:1 7891:1 7898:1 7905:1 7931:1 7938:1 7944:1 7953:2 7965:1 7969:1 7974:2 7975:5 7985:1 7991:1 7994:2 8003:1 8022:1 8033:1 8075:1 8087:1 8093:1 8104:1 8108:1 8140:1 8145:1 8154:1 8195:1 8202:1 8208:1 8213:2 8221:1 8250:2 8251:1 8254:2 8257:1 8259:1 8261:2 8278:1 8312:2 8342:2 8345:4 8348:1 8359:2 8364:1 8377:1 8378:1 8391:1 8428:6 8450:1 8462:1 8488:1 8494:1 8497:1 8512:1 8520:1 8532:1 8533:1 8554:1 8575:1 8590:1 8608:1 8619:1 8621:2 8646:2 8647:1 8653:1 8668:1 8673:1 8675:1 8679:3 8682:1 8683:1 8687:1 8688:1 8693:1 8755:1 8756:1 8765:1 8775:1 8776:1 8777:3 8783:8 8788:2 8792:1 8807:2 8828:1 8852:2 8862:2 8867:1 8880:1 8899:1 8909:1 8943:2 8958:2 8981:3 8985:1 8997:5 9008:2 9015:1 9027:3 9068:1 9084:1 9089:1 9095:1 9111:1 9121:1 9128:1 9139:1 9148:1 9151:1 9152:1 9155:1 9160:1 9162:1 9168:1 9169:1 9171:1 9176:2 9181:2 9184:1 9203:1 9207:2 9232:2 9258:1 9260:1 9262:1 9263:1 9281:2 9293:1 9299:1 9319:1 9330:1 9340:1 9345:1 9370:1 9396:1 9399:1 9402:2 9407:2 9438:1 9442:3 9445:2 9468:1 9480:1 9547:1 9554:1 9568:1 9585:1 9589:1 9599:1 9604:1 9605:1 9618:1 9630:1 9634:1 9655:2 9657:1 9661:1 9668:1 9688:2 9703:1 9731:1 9735:1 9737:1 9751:1 9768:1 9772:1 9776:1 9778:2 9782:1 9823:2 9824:1 9834:1 9835:1 9844:1 9849:2 9871:1 9873:3 9890:2 9914:1 9915:1 9922:1 9932:1 9945:1 9946:1 9963:1 9966:1 9974:1 9985:4 9996:1 10007:1 10020:1 10028:1 10043:1 10065:1 10070:1 10089:1 10102:1 10109:1 10121:2 10125:1 10129:2 10146:1 10152:1 10166:1 10168:1 10193:1 10207:1 10208:1 10209:1 10214:1 10216:2 10217:1 10221:2 10261:1 10281:1 10287:1 10288:1 10291:1 10314:1 10330:6 10340:2 10379:1 10384:3 10390:1 10393:1 10394:1 10395:1 10403:1 10407:1 10411:1 10415:1 10416:1 10417:1 10438:2 10439:3 10445:1 10455:4 10463:1 10470:1 10485:1 10512:1 10514:1 10524:2 10532:1 10535:1 10541:1 10574:1 10583:1 10595:2 10612:1 10658:1 10674:1 10676:1 10683:1 10721:1 10742:1 10777:1 10785:1 10803:1 10812:1 10817:1 10839:1 10852:3 10854:1 10861:1 10881:2 10885:1 10907:1 10920:1 10932:2 10941:1 10943:4 10953:1 10962:1 10966:1 10973:1 10975:3 10980:1 10984:1 10989:1 10990:1 10999:3 11003:1 11004:1 11021:1 11043:4 11051:2 11057:6 11059:1 11076:1 11101:1 11104:1 11108:2 11127:1 11138:3 11140:1 11143:1 11153:1 11160:2 11166:1 11180:1 11187:1 11194:1 11209:1 11237:1 11248:1 11253:2 11288:1 11316:2 11329:3 11331:6 11332:3 11334:1 11349:1 11352:3 11358:2 11364:3 11368:2 11371:1 11384:1 11390:1 11415:2 11416:2 11417:1 11419:1 11424:1 11436:24 11438:1 11448:1 11455:1 11457:1 11463:2 11470:5 11472:3 11473:1 11481:2 11506:1 11516:1 11519:1 11525:1 11527:1 11534:1 11549:1 11565:1 11574:2 11575:2 11578:1 11590:1 11605:1 11639:1 11665:1 11687:1 11691:1 11694:1 11712:1 11713:1 11724:1 11743:1 11755:2 11760:1 11781:3 11783:1 11784:3 11794:1 11810:1 11838:1 11845:1 11867:2 11869:1 11896:1 11898:1 11949:1 11989:1 12015:1 12021:2 12043:1 12051:1 12055:1 12061:1 12076:1 12089:1 12118:1 12127:3 12144:12 12156:1 12176:2 12183:2 12190:1 12267:1 12269:1 12272:1 12281:1 12286:1 12313:3 12314:1 12322:5 12345:1 12348:1 12360:1 12365:2 12366:1 12371:2 12374:1 12381:1 12389:1 12390:1 12402:1 12408:1 12419:2 12426:4 12442:2 12450:1 12474:2 12479:1 12501:1 12516:1 12520:1 12536:1 12556:1 12568:1 12580:1 12583:1 12588:1 12596:2 12630:1 12637:1 12641:1 12664:1 12685:1 12694:1 12695:1 12731:1 12734:1 12736:1 12738:1 12745:1 12758:1 12772:1 12784:1 12801:1 12804:1 12809:1 12811:3 12824:1 12830:1 12840:1 12842:1 12847:1 12866:1 12883:1 12892:1 12919:1 12925:1 12926:3 12929:1 12931:1 12934:1 12947:2 12948:1 12949:1 12962:1 13000:1 13005:1 13019:1 13050:1 13064:1 13068:1 13082:1 13091:1 13136:1 13139:1 13160:1 13178:1 13179:1 13206:1 13208:1 13209:1 13213:2 13242:2 13245:1 13256:2 13278:1 13302:1 13304:1 13313:1 13316:1 13318:1 13325:1 13326:2 13333:1 13334:1 13337:1 13347:1 13358:1 13391:3 13421:1 13441:1 13443:3 13445:1 13471:2 13531:1 13545:1 13549:1 13554:2 13581:1 13583:2 13590:1 13596:1 13600:1 13602:1 13605:2 13663:1 13680:1 13692:2 13693:1 13696:1 13708:1 13711:1 13714:3 13741:1 13745:1 13752:1 13766:3 13803:1 13807:4 13836:1 13860:1 13867:1 13873:1 13875:1 13882:1 13887:1 13896:2 13906:1 13912:1 13915:1 13922:1 13942:1 13952:1 13967:3 13990:1 14004:1 14007:1 14024:2 14028:1 14032:6 14036:1 14043:1 14081:1 14109:1 14120:1 14130:1 14140:1 14144:1 14151:1 14179:1 14181:1 14186:1 14189:1 14193:1 14198:1 14199:3 14204:2 14209:1 14217:2 14258:1 14262:3 14280:1 14282:1 14295:1 14304:1 14307:1 14314:1 14319:1 14326:1 14363:6 14368:1 14400:1 14404:1 14410:1 14412:1 14433:2 14437:1 14443:1 14449:3 14458:1 14470:1 14482:1 14498:1 14499:1 14513:1 14515:1 14559:1 14564:1 14565:1 14625:1 14631:1 14633:1 14642:2 14662:1 14668:2 14678:3 14683:1 14700:1 14707:1 14717:1 14725:1 14729:2 14750:2 14756:1 14759:1 14769:1 14776:1 14832:1 14844:1 14845:1 14850:1 14857:1 14879:1 14889:1 14895:3 14896:1 14900:1 14936:1 14945:1 14951:1 14959:8 14964:1 14977:1 14979:2 14985:1 15003:2 15033:1 15037:1 15052:1 15054:1 15099:6 15100:1 15133:1 15136:2 15138:1 15155:1 15165:1 15166:1 15184:1 15189:1 15198:1 15201:1 15202:1 15205:1 15208:1 15210:1 15222:1 15224:1 15229:2 15250:1 15260:1 15281:2 15285:1 15287:1 15298:1 15300:1 15301:4 15306:1 15307:1 15309:1 15315:1 15320:1 15332:1 15339:1 15341:1 15346:1 15348:1 15359:3 15360:1 15384:1 15385:1 15391:1 15416:1 15436:1 15441:1 15448:1 15456:2 15479:1 15490:1 15492:1 15519:1 15539:1 15544:1 15548:3 15550:1 15552:2 15554:2 15569:1 15573:3 15584:1 15589:1 15597:1 15607:1 15633:3 15634:1 15663:1 15664:1 15674:1 15703:1 15712:1 15715:1 15723:1 15732:1 15745:1 15753:2 15754:3 15756:1 15774:1 15787:1 15799:1 15814:2 15860:1 15875:1 15879:2 15881:1 15896:1 15918:1 15924:1 15958:1 15992:1 16018:1 16027:1 16030:1 16031:1 16050:1 16051:2 16054:1 16059:2 16067:1 16074:1 16075:2 16078:1 16080:5 16083:1 16090:1 16093:2 16100:1 16101:2 16105:1 16114:3 16117:1 16127:2 16140:1 16142:1 16163:2 16172:1 16177:1 16206:1 16207:1 16211:1 16225:3 16240:1 16246:1 16260:1 16262:1 16273:2 16278:1 16305:1 16312:1 16374:1 16376:1 16391:1 16395:1 16418:1 16427:1 16431:1 16446:1 16473:1 16502:1 16519:1 16523:1 16531:2 16552:1 16553:1 16575:1 16580:2 16584:1 16585:1 16596:2 16601:1 16602:1 16628:2 16631:1 16650:1 16658:1 16676:7 16678:1 16708:1 16712:1 16727:1 16731:3 16745:1 16749:2 16758:1 16810:2 16828:1 16844:2 16850:1 16851:1 16852:1 16867:1 16874:2 16890:1 16893:1 16921:1 16936:2 16949:1 16951:1 16955:1 16981:1 16987:1 16999:1 17005:1 17008:1 17029:1 17052:3 17056:1 17062:7 17063:2 17068:1 17071:1 17078:1 17084:1 17089:1 17092:1 17099:1 17111:1 17151:3 17156:2 17183:2 17189:1 17201:1 17202:1 17230:1 17231:1 17237:1 17242:1 17259:2 17263:3 17266:2 17268:3 17273:1 17279:2 17287:4 17339:1 17345:1 17379:1 17403:4 17417:1 17429:1 17461:1 17463:1 17495:1 17504:1 17518:1 17533:2 17543:1 17549:1 17553:1 17554:1 17555:2 17591:5 17594:1 17604:1 17627:1 17632:1 17634:1 17643:1 17660:1 17670:1 17672:1 17696:1 17753:1 17759:1 17769:1 17774:4 17776:1 17798:1 17799:1 17809:1 17810:2 17818:1 17823:1 17826:1 17855:1 17893:1 17894:1 17897:4 17922:1 17925:1 17929:1 17935:1 17936:1 17986:1 17989:1 17996:1 18002:1 18003:1 18022:1 18023:1 18027:1 18045:1 18053:1 18074:1 18077:2 18099:2 18126:1 18141:1 18175:1 18180:2 18198:1 18227:1 18230:1 18258:1 18264:3 18274:1 18303:1 18310:2 18319:1 18333:1 18339:1 18357:2 18358:1 18360:2 18362:1 18380:2 18383:1 18386:1 18390:1 18398:1 18399:1 18432:1 18434:1 18455:1 18459:2 18465:1 18523:3 18525:1 18534:1 18535:1 18545:1 18564:1 18606:6 18613:1 18616:2 18629:1 18634:1 18638:1 18644:1 18652:1 18656:1 18665:1 18689:1 18697:1 18703:1 18707:1 18709:1 18710:1 18711:2 18713:1 18717:1 18725:2 18742:1 18752:1 18763:1 18765:1 18769:1 18791:2 18807:1 18810:1 18851:1 18865:1 18881:1 18897:1 18909:1 18973:1 19013:1 19014:1 19015:1 19025:1 19051:1 19053:1 19062:1 19064:2 19085:1 19115:1 19117:2 19121:1 19168:1 19215:1 19228:1 19270:1 19278:1 19292:1 19311:1 19315:2 19324:4 19339:1 19365:1 19367:1 19386:1 19388:1 19391:1 19407:1 19418:2 19444:1 19450:1 19452:1 19498:2 19503:1 19506:1 19509:1 19512:1 19524:2 19525:1 19535:1 19536:3 19538:2 19549:1 19551:2 19556:1 19558:1 19568:1 19582:1 19586:1 19595:1 19597:1 19598:1 19600:4 19616:1 19621:1 19630:1 19638:1 19645:2 19649:2 19655:7 19664:4 19667:1 19680:1 19696:3 19715:2 19718:1 19720:1 19721:1 19724:1 19757:1 19786:1 19816:3 19829:1 19833:1 19851:1 19857:4 19891:1 19896:1 19908:2 19910:1 19918:4 19929:3 19936:2 19965:1 19974:1 19975:4 19977:1 19991:1 19992:1 19995:1 19999:1 20015:1 20022:1 20034:3 20037:1 20041:1 20044:1 20049:6 20050:1 20075:1 20078:1 20081:1 20101:1 20132:1 20170:1 20185:1 20188:1 20223:1 20251:1 20256:1 20258:1 20266:1 20267:2 20276:1 20298:2 20305:3 20363:1 20366:1 20379:1 20382:1 20383:1 20387:2 20390:5 20413:1 20440:1 20453:1 20482:7 20494:3 20519:2 20529:1 20552:1 20598:1 20614:1 20621:1 20636:1 20669:1 20670:1 20706:1 20758:1 20817:1 20822:1 20828:1 20844:1 20846:1 20851:3 20855:2 20875:1 20878:1 20880:1 20912:1 20955:1 20956:1 20980:1 21034:3 21072:1 21080:2 21083:1 21096:1 21099:1 21110:2 21111:1 21118:1 21142:1 21180:1 21188:2 21202:1 21213:1 21223:2 21265:1 21271:1 21274:1 21276:2 21298:1 21333:1 21349:2 21353:1 21362:1 21374:3 21379:2 21386:1 21402:1 21446:1 21451:3 21459:1 21463:1 21470:2 21494:1 21510:1 21512:1 21538:1 21539:1 21540:1 21547:1 21579:1 21586:1 21589:2 21619:1 21623:1 21626:1 21635:1 21637:1 21639:1 21640:2 21646:1 21667:1 21674:2 21707:3 21715:1 21718:1
1 5:2 23:1 35:1 66:1 91:1 99:1 101:1 103:1 107:1 123:1 134:1 140:1 163:1 181:1 233:1 260:3 261:1 270:1 280:1 308:1 319:1 324:1 343:4 369:1 370:1 411:1 419:1 432:1 439:4 454:1 461:2 466:1 467:1 476:1 490:1 501:1 510:1 523:1 527:1 547:1 563:3 564:2 571:1 573:3 578:1 582:3 593:1 602:2 605:1 626:1 628:1 635:1 644:1 663:5 667:2 677:1 685:1 749:1 761:1 762:1 790:1 806:2 827:1 861:1 889:1 893:1 894:1 908:2 943:1 954:1 964:1 989:1 1004:1 1018:2 1034:1 1037:2 1040:1 1056:1 1074:1 1079:1 1081:1 1124:1 1152:1 1160:1 1200:1 1205:1 1229:1 1237:2 1248:1 1261:1 1270:1 1278:1 1281:1 1282:2 1320:4 1322:2 1331:1 1349:1 1358:3 1375:1 1392:1 1402:7 1407:2 1419:3 1430:1 1435:1 1441:1 1453:1 1457:7 1475:4 1476:2 1478:6 1481:1 1482:1 1486:1 1488:2 1489:3 1507:2 1530:3 1531:3 1536:1 1549:1 1598:1 1600:2 1624:1 1644:1 1651:2 1653:1 1659:2 1683:2 1689:1 1698:1 1712:1 1715:1 1743:1 1771:1 1781:1 1785:1 1789:1 1797:2 1866:1 1875:1 1877:3 1879:2 1884:2 1885:2 1886:2 1888:2 1889:1 1892:1 1893:2 1895:1 1898:1 1899:2 1903:1 1904:1 1908:1 1912:1 1913:1 1921:1 1927:1 1951:1 1953:1 1973:2 2007:2 2009:1 2025:1 2057:1 2077:1 2079:1 2105:1 2107:1 2112:1 2113:1 2114:1 2128:1 2142:1 2161:1 2172:1 2179:1 2180:2 2181:1 2209:1 2233:1 2240:1 2267:1 2271:1 2274:1 2288:1 2291:1 2306:1 2340:1 2345:4 2356:5 2359:2 2375:1 2376:1 2412:1 2427:1 2429:1 2436:1 2441:1 2456:1 2458:1 2460:1 2465:1 2472:2 2485:2 2486:1 2489:1 2499:1 2503:1 2506:3 2507:1 2511:1 2520:2 2522:1 2527:1 2545:1 2552:1 2553:1 2562:1 2567:1 2572:1 2574:1 2580:1 2583:1 2595:1 2613:1 2619:2 2621:1 2626:1 2656:4 2684:1 2691:1 2695:2 2701:1 2704:3 2706:1 2715:2 2718:5 2750:2 2752:2 2753:3 2768:1 2775:1 2795:1 2798:2 2804:1 2840:1 2845:1 2847:1 2862:2 2907:1 2913:1 2919:1 2927:1 2930:2 2949:2 2953:1 2959:1 2965:1 2968:1 2971:2 2989:1 2992:1 3024:1 3027:2 3032:1 3043:1 3059:1 3062:1 3066:1 3071:1 3075:1 3093:2 3124:3 3153:7 3156:2 3161:1 3166:1 3179:1 3184:1 3190:1 3208:2 3263:2 3271:2 3274:1 3275:1 3276:1 3290:1 3295:1 3299:1 3302:2 3308:1 3322:1 3325:1 3331:2 3332:1 3337:1 3340:2 3341:2 3343:1 3346:1 3354:3 3355:2 3358:5 3360:2 3362:1 3373:1 3391:1 3414:1 3417:1 3439:1 3445:1 3450:1 3451:3 3465:1 3470:1 3477:1 3493:1 3509:1 3521:2 3523:1 3524:1 3538:1 3539:1 3548:1 3552:1 3557:1 3576:1 3613:1 3622:1 3631:1 3633:1 3644:1 3661:1 3672:1 3679:1 3692:1 3697:1 3712:1 3717:1 3718:1 3722:1 3732:1 3747:1 3755:1 3760:1 3767:2 3772:1 3775:5 3781:1 3788:1 3790:1 3793:1 3800:3 3806:2 3808:2 3815:1 3819:1 3821:1 3828:1 3856:4 3857:1 3865:1 3887:1 3888:2 3896:1 3899:1 3900:1 3903:1 3904:1 3916:1 3925:3 3927:1 3928:1 3939:1 3948:1 3957:4 3965:3 3979:1 3990:1 3997:3 3998:2 4009:1 4025:1 4026:2 4036:1 4038:1 4065:2 4090:1 4097:1 4101:1 4103:1 4104:1 4106:2 4118:1 4121:2 4129:1 4131:1 4133:3 4143:1 4150:1 4158:1 4198:1 4199:1 4200:1 4216:1 4227:1 4230:1 4239:1 4242:1 4246:2 4265:2 4277:1 4279:9 4311:2 4312:1 4316:1 4317:1 4318:1 4326:1 4333:1 4358:6 4398:2 4400:2 4426:1 4429:1 4442:1 4461:1 4482:1 4513:1 4532:1 4534:4 4555:1 4565:2 4573:1 4582:1 4584:1 4586:1 4600:1 4643:2 4661:1 4663:1 4667:1 4680:2 4698:1 4717:2 4737:2 4757:1 4770:2 4771:1 4792:1 4794:1 4797:1 4811:1 4841:1 4855:1 4866:1 4868:1 4884:1 4910:6 4933:1 4936:1 4958:1 4969:1 5032:3 5074:1 5083:1 5089:1 5133:1 5149:1 5182:2 5187:1 5199:1 5206:10 5218:1 5220:2 5222:1 5223:1 5244:1 5249:1 5250:1 5257:9 5274:2 5277:1 5290:3 5293:1 5308:1 5310:1 5317:1 5321:2 5331:1 5338:1 5348:1 5369:1 5395:1 5396:1 5418:1 5422:1 5429:1 5434:1 5438:1 5453:1 5456:4 5492:1 5495:1 5499:2 5506:1 5508:1 5528:2 5533:1 5555:2 5574:1 5577:1 5579:2 5583:1 5587:1 5592:1 5593:2 5606:2 5621:1 5624:1 5625:2 5651:2 5656:1554 5670:1 5678:1 5682:2 5700:1 5726:3 5728:3 5741:1 5765:1 5772:1 5779:1 5784:2 5787:1 5793:1 5814:2 5824:1 5829:2 5862:1 5873:1 5894:1 5915:1 5939:2 5945:1 5947:1 5952:1 5955:1 5981:1 5983:1 5987:1 5992:1 5993:2 5997:1 6004:1 6025:1 6033:1 6050:1 6066:1 6067:1 6106:7 6109:1 6142:2 6156:1 6165:1 6171:1 6179:2 6185:1 6189:1 6201:1 6210:2 6240:1 6248:2 6268:2 6296:1 6302:1 6308:1 6335:2 6359:1 6366:1 6367:1 6373:2 6376:1 6378:2 6397:1 6399:1 6403:1 6410:2 6417:1 6435:1 6460:1 6468:1 6479:1 6507:1 6513:1 6518:1 6540:1 6550:2 6558:1 6567:2 6570:1 6577:2 6578:1 6590:1 6593:1 6597:1 6603:2 6606:1 6612:2 6614:2 6631:1 6642:2 6655:1 6662:1 6673:2 6674:1 6700:1 6708:2 6709:2 6711:1 6713:1 6728:2 6733:2 6746:2 6747:1 6756:1 6793:1 6820:1 6822:1 6832:1 6833:1 6870:2 6892:7 6894:1 6901:1 6906:1 6914:1 6916:1 6957:1 6961:1 6975:3 6976:1 6986:1 6989:1 6998:1 7000:1 7012:4 7028:1 7038:1 7066:1 7095:2 7098:1 7107:1 7112:1 7117:3 7119:2 7121:2 7124:1 7129:1 7131:1 7132:1 7138:1 7140:3 7142:3 7146:2 7147:2 7158:3 7162:1 7171:1 7175:1 7203:1 7206:1 7211:1 7213:1 7253:1 7271:1 7272:1 7274:1 7283:1 7300:2 7340:1 7345:1 7360:1 7388:1 7405:2 7408:1 7419:1 7421:1 7426:1 7458:1 7461:1 7462:1 7470:1 7480:1 7488:1 7506:1 7520:1 7529:1 7530:1 7555:1 7572:1 7575:1 7589:2 7636:1 7665:1 7682:1 7689:1 7691:1 7693:1 7697:1 7699:1 7700:1 7702:1 7712:1 7720:1 7732:1 7740:2 7741:1 7744:1 7768:4 7779:2 7792:1 7797:1 7818:1 7821:1 7823:1 7835:2 7853:1 7860:1 7872:1 7873:1 7878:1 7891:1 7898:1 7905:1 7931:1 7938:1 7944:1 7953:2 7965:1 7969:1 7974:2 7975:6 7977:1 7985:1 7991:1 7994:2 8003:1 8022:1 8033:1 8075:1 8087:1 8093:1 8104:1 8108:1 8140:1 8145:1 8154:1 8179:1 8195:1 8202:1 8208:1 8213:2 8221:1 8250:2 8251:1 8254:2 8257:1 8259:1 8261:2 8278:1 8299:1 8312:2 8327:1 8342:2 8345:4 8348:1 8359:2 8364:1 8377:1 8378:1 8391:1 8428:6 8450:1 8462:1 8488:1 8494:1 8497:1 8512:1 8520:1 8532:1 8533:1 8554:1 8575:1 8590:1 8608:1 8619:1 8621:3 8646:2 8647:1 8653:1 8663:1 8668:1 8673:1 8675:1 8679:3 8682:1 8683:1 8687:1 8688:1 8693:1 8755:1 8756:1 8765:1 8775:1 8776:1 8777:3 8783:9 8788:2 8792:1 8807:2 8828:2 8852:2 8862:2 8867:1 8880:1 8899:1 8909:1 8931:1 8943:2 8958:2 8969:1 8981:3 8985:1 8997:5 9008:2 9015:1 9027:3 9059:1 9068:1 9084:1 9089:1 9095:1 9111:1 9121:1 9128:1 9139:1 9143:1 9148:1 9151:1 9152:1 9155:1 9160:1 9162:1 9168:1 9169:1 9171:1 9176:2 9181:3 9184:1 9203:1 9207:2 9232:2 9245:1 9246:1 9258:1 9260:1 9262:1 9263:1 9281:2 9293:1 9299:1 9319:1 9330:1 9340:1 9345:1 9370:1 9396:1 9399:1 9402:2 9407:2 9438:1 9442:3 9445:2 9468:1 9480:1 9547:1 9554:1 9568:1 9585:1 9589:1 9599:1 9604:1 9605:1 9618:1 9630:1 9634:1 9655:2 9657:1 9661:1 9668:1 9688:2 9703:1 9731:1 9735:1 9737:1 9751:1 9768:1 9772:1 9776:1 9778:2 9782:1 9814:1 9823:2 9824:1 9834:1 9835:1 9844:1 9849:2 9871:1 9873:3 9890:2 9914:1 9915:1 9922:1 9932:1 9945:1 9946:1 9963:1 9966:1 9974:1 9985:6 9996:1 10007:1 10020:1 10028:1 10043:1 10065:1 10070:1 10089:1 10102:1 10109:1 10121:2 10125:1 10129:2 10146:2 10152:1 10166:1 10168:1 10193:1 10207:1 10208:1 10209:1 10214:1 10216:2 10217:1 10221:2 10261:1 10281:1 10287:1 10288:1 10291:1 10314:1 10330:6 10340:2 10379:1 10384:3 10390:1 10393:1 10394:1 10395:1 10403:1 10407:1 10411:1 10415:2 10416:1 10417:1 10438:2 10439:3 10441:1 10445:1 10455:4 10462:1 10463:1 10470:1 10485:1 10512:1 10514:1 10524:2 10532:1 10533:1 10535:1 10541:1 10574:1 10583:1 10595:2 10612:1 10658:1 10674:1 10676:1 10683:1 10721:1 10727:1 10742:1 10777:1 10785:1 10803:1 10812:1 10817:1 10839:1 10852:3 10854:1 10861:1 10879:1 10881:2 10885:2 10907:1 10920:1 10932:2 10941:1 10943:4 10953:1 10962:1 10966:1 10973:1 10975:3 10980:1 10984:1 10989:1 10990:1 10999:3 11003:1 11004:1 11021:1 11043:4 11051:2 11057:6 11059:1 11076:1 11101:1 11104:1 11108:2 11127:1 11138:3 11140:1 11143:1 11153:1 11160:2 11166:1 11180:1 11187:1 11194:1 11209:1 11237:1 11248:1 11253:2 11288:1 11316:2 11329:3 11331:6 11332:3 11334:1 11349:1 11352:3 11358:2 11364:3 11368:2 11371:1 11384:1 11390:1 11415:2 11416:2 11417:1 11419:1 11424:1 11436:24 11438:1 11448:1 11455:1 11457:1 11463:2 11470:5 11472:3 11473:1 11481:2 11506:1 11516:1 11519:1 11525:1 11527:1 11534:1 11549:1 11565:1 11574:2 11575:2 11578:1 11590:1 11605:1 11639:1 11665:1 11687:1 11691:1 11694:1 11712:1 11713:1 11724:1 11743:1 11755:2 11760:1 11781:3 11783:1 11784:3 11794:1 11810:1 11838:1 11845:1 11867:2 11869:1 11896:1 11898:1 11948:1 11949:1 11989:1 12015:1 12021:2 12028:1 12043:1 12051:1 12055:1 12061:1 12076:1 12089:1 12118:1 12127:3 12144:14 12156:1 12176:2 12183:2 12190:1 12267:1 12269:1 12272:1 12281:1 12286:1 12313:3 12314:1 12322:5 12345:1 12348:1 12360:1 12365:2 12366:2 12371:2 12374:1 12381:1 12389:1 12390:1 12402:1 12408:1 12419:2 12426:4 12442:2 12450:1 12474:2 12479:1 12486:1 12501:1 12516:1 12520:1 12536:1 12556:1 12568:1 12580:1 12583:1 12588:1 12596:2 12630:1 12637:1 12641:1 12664:1 12685:1 12694:1 12695:1 12731:1 12734:2 12736:1 12738:1 12745:1 12758:1 12772:1 12784:1 12801:2 12804:1 12809:1 12811:3 12824:1 12830:2 12840:1 12842:1 12847:1 12866:1 12883:1 12892:1 12919:1 12925:1 12926:3 12929:1 12931:1 12934:1 12947:2 12948:1 12949:1 12962:1 13000:1 13005:1 13019:1 13050:1 13064:1 13068:1 13082:1 13091:1 13136:1 13139:1 13160:1 13178:1 13179:1 13206:1 13208:1 13209:1 13213:2 13242:2 13245:1 13256:2 13278:1 13302:1 13304:1 13313:1 13316:1 13318:1 13325:1 13326:3 13333:1 13334:1 13337:1 13347:1 13358:1 13391:3 13421:1 13441:1 13443:4 13445:1 13471:2 13531:1 13545:1 13549:1 13554:2 13581:1 13583:2 13590:1 13596:1 13600:1 13602:1 13605:2 13663:1 13680:1 13692:2 13693:1 13696:1 13708:1 13711:1 13714:3 13741:1 13745:2 13752:1 13766:3 13803:1 13807:5 13836:1 13860:1 13867:1 13873:1 13875:1 13882:1 13887:2 13896:2 13906:1 13912:1 13915:1 13922:1 13942:1 13952:1 13967:3 13990:1 14004:1 14007:1 14016:1 14024:2 14028:1 14032:6 14036:1 14043:1 14081:2 14109:1 14120:1 14130:1 14140:1 14144:1 14151:1 14179:1 14181:1 14186:1 14189:1 14193:1 14198:1 14199:3 14204:2 14209:1 14217:2 14258:1 14262:3 14280:1 14282:1 14295:1 14304:1 14307:1 14314:1 14319:1 14326:1 14363:6 14368:2 14400:1 14404:1 14410:1 14412:1 14433:2 14437:1 14443:1 14449:3 14458:1 14470:1 14482:1 14498:1 14499:1 14513:1 14515:1 14559:1 14564:1 14565:1 14625:1 14631:1 14633:1 14642:4 14662:1 14668:2 14678:3 14683:1 14700:1 14707:1 14717:1 14725:1 14729:2 14750:2 14756:1 14759:1 14763:1 14769:1 14776:1 14832:1 14844:2 14845:1 14850:1 14857:1 14879:1 14889:1 14895:3 14896:1 14900:1 14936:1 14945:1 14951:1 14959:9 14964:1 14977:1 14979:2 14985:1 15003:2 15033:1 15037:1 15052:1 15054:1 15099:6 15100:1 15133:1 15136:2 15138:1 15155:1 15165:1 15166:1 15184:1 15189:1 15198:1 15201:1 15202:1 15205:1 15208:1 15210:1 15222:1 15224:1 15229:2 15250:1 15260:1 15265:1 15281:2 15285:1 15287:1 15298:1 15300:1 15301:4 15306:1 15307:1 15309:1 15315:1 15320:1 15332:1 15339:1 15341:1 15346:1 15348:1 15359:3 15360:1 15384:1 15385:1 15391:1 15416:1 15436:1 15441:1 15448:1 15456:2 15479:1 15490:1 15492:1 15519:1 15539:1 15544:1 15548:3 15550:1 15552:2 15554:2 15569:1 15573:3 15584:1 15589:1 15597:1 15607:1 15618:1 15633:3 15634:1 15663:1 15664:1 15674:3 15703:1 15712:2 15715:1 15723:1 15732:2 15745:1 15753:2 15754:3 15756:1 15774:1 15787:1 15799:1 15814:2 15860:1 15875:1 15879:2 15881:1 15896:1 15918:1 15924:1 15958:1 15992:1 16018:1 16027:1 16030:1 16031:1 16050:1 16051:2 16054:1 16059:2 16067:1 16074:1 16075:4 16078:1 16080:5 16083:1 16090:1 16093:2 16100:2 16101:2 16105:2 16114:3 16117:1 16127:2 16140:1 16142:1 16163:2 16172:1 16177:1 16206:1 16207:1 16211:1 16225:3 16240:1 16246:1 16260:1 16262:1 16273:2 16278:1 16305:1 16312:1 16374:1 16376:1 16391:1 16395:1 16418:1 16427:1 16431:1 16446:1 16473:1 16502:1 16519:1 16523:1 16531:2 16552:1 16553:1 16575:1 16580:2 16584:1 16585:1 16596:2 16601:1 16602:1 16628:2 16631:1 16650:1 16658:1 16676:8 16678:1 16679:1 16708:1 16712:1 16727:1 16731:3 16745:1 16749:2 16758:1 16810:2 16816:1 16828:1 16844:2 16850:1 16851:1 16852:1 16867:1 16874:2 16890:1 16893:1 16921:1 16936:2 16949:1 16951:1 16955:1 16981:1 16987:1 16999:1 17005:1 17008:1 17029:1 17052:3 17056:1 17062:9 17063:2 17068:1 17071:1 17078:1 17079:1 17084:1 17089:1 17092:1 17099:1 17111:1 17132:1 17151:3 17156:2 17183:2 17189:1 17201:1 17202:1 17230:1 17231:1 17237:1 17242:1 17259:3 17263:3 17266:2 17268:3 17273:1 17279:2 17287:4 17339:1 17345:1 17379:1 17403:5 17417:1 17429:1 17461:1 17463:1 17468:1 17495:1 17504:1 17518:1 17533:2 17543:1 17549:1 17553:1 17554:1 17555:2 17566:1 17591:6 17594:1 17604:1 17627:1 17632:1 17634:1 17643:1 17660:1 17670:1 17672:1 17696:1 17753:1 17759:1 17769:1 17774:4 17776:1 17798:1 17799:1 17809:1 17810:2 17818:1 17823:1 17826:1 17855:1 17893:1 17894:1 17897:5 17922:1 17925:1 17929:1 17935:1 17936:1 17986:1 17989:1 17996:1 18002:1 18003:1 18022:1 18023:1 18027:1 18032:1 18045:1 18053:1 18074:1 18077:2 18099:2 18126:1 18141:1 18153:1 18175:1 18180:2 18198:1 18227:1 18230:1 18245:1 18258:1 18264:3 18269:1 18272:1 18274:1 18303:1 18310:2 18319:1 18333:1 18339:1 18357:2 18358:1 18360:2 18362:1 18380:2 18383:1 18386:1 18390:1 18398:1 18399:1 18432:1 18434:1 18455:1 18459:2 18465:1 18523:3 18525:1 18531:1 18534:1 18535:1 18545:1 18564:1 18606:6 18613:1 18616:2 18627:1 18629:1 18634:1 18638:1 18644:1 18652:1 18656:1 18665:1 18689:1 18697:1 18703:1 18707:1 18709:1 18710:1 18711:2 18713:1 18717:1 18725:2 18742:1 18752:1 18763:1 18765:1 18769:1 18791:2 18807:1 18810:1 18851:1 18865:1 18881:1 18897:1 18909:1 18973:1 19013:1 19014:1 19015:1 19025:1 19051:1 19053:1 19062:1 19064:2 19085:1 19115:1 19117:2 19121:1 19168:1 19215:1 19228:1 19270:1 19278:1 19292:1 19311:1 19315:2 19324:4 19339:1 19365:1 19367:1 19386:2 19388:2 19391:1 19407:1 19418:2 19444:1 19450:1 19452:1 19495:1 19498:2 19503:1 19506:1 19509:1 19512:1 19524:3 19525:1 19535:1 19536:3 19538:2 19549:1 19551:2 19555:1 19556:1 19558:1 19568:1 19582:1 19586:1 19595:1 19597:1 19598:1 19600:4 19616:1 19621:1 19630:1 19638:1 19645:2 19649:2 19655:7 19659:1 19664:4 19667:1 19680:1 19696:3 19715:3 19718:1 19720:1 19721:1 19724:1 19727:1 19757:1 19777:1 19786:1 19816:3 19829:1 19833:1 19851:1 19857:4 19891:1 19896:1 19908:2 19910:1 19918:4 19929:3 19936:2 19965:1 19974:1 19975:4 19977:1 19991:1 19992:1 19995:1 19999:1 20015:1 20022:1 20034:3 20037:1 20041:1 20044:1 20049:6 20050:1 20075:1 20078:1 20081:1 20101:1 20132:1 20170:1 20185:1 20188:1 20210:1 20223:1 20251:1 20256:1 20258:1 20266:1 20267:2 20276:1 20284:1 20298:2 20305:3 20363:1 20366:1 20379:1 20382:1 20383:1 20387:2 20390:5 20396:1 20402:1 20413:1 20440:1 20453:1 20482:7 20494:3 20519:2 20529:1 20552:1 20598:1 20614:1 20621:1 20636:1 20669:1 20670:1 20706:1 20758:1 20817:1 20822:1 20828:1 20844:1 20846:1 20851:3 20855:2 20875:1 20878:1 20880:1 20912:1 20955:1 20956:1 20980:1 21034:3 21072:1 21080:2 21083:1 21096:1 21099:2 21110:2 21111:1 21118:1 21142:1 21180:1 21188:2 21202:1 21213:1 21223:2 21265:1 21271:1 21274:1 21276:2 21298:1 21318:1 21333:1 21349:2 21353:1 21362:1 21374:3 21379:2 21386:1 21402:1 21446:1 21451:3 21459:1 21463:1 21470:2 21494:1 21510:1 21512:1 21538:1 21539:1 21540:1 21547:1 21568:1 21579:1 21586:1 21589:2 21619:1 21623:1 21626:2 21635:1 21637:1 21639:1 21640:2 21646:1 21667:1 21674:2 21707:3 21715:1 21718:1
1 5:2 23:1 35:1 66:1 91:1 99:1 101:1 103:1 107:1 123:1 124:1 134:1 140:1 163:1 181:1 233:1 255:1 260:3 261:1 270:1 280:1 308:1 309:1 319:1 324:2 343:4 369:1 370:1 411:1 419:1 432:1 439:5 454:1 461:2 466:1 467:1 476:1 490:1 501:1 510:1 523:2 527:1 547:1 563:3 564:2 571:1 573:3 578:1 582:3 593:1 602:2 605:1 626:1 628:1 635:1 644:1 663:5 667:2 677:1 685:1 749:1 761:1 762:2 778:1 790:1 806:2 827:1 849:1 861:1 889:1 893:1 894:1 908:2 918:1 943:1 954:1 956:1 964:1 989:1 1004:1 1018:2 1034:1 1037:2 1040:1 1056:1 1074:1 1079:1 1081:1 1124:1 1152:2 1160:1 1200:1 1205:1 1229:1 1237:2 1248:1 1261:2 1270:1 1278:1 1281:1 1282:2 1308:1 1320:4 1322:2 1331:1 1349:1 1358:3 1375:1 1392:1 1402:7 1407:2 1419:3 1430:1 1435:1 1441:1 1453:1 1457:7 1475:4 1476:2 1478:6 1481:1 1482:1 1486:1 1488:2 1489:3 1507:2 1530:3 1531:3 1536:1 1549:1 1598:1 1600:2 1624:1 1644:1 1651:2 1653:1 1659:2 1683:2 1689:1 1698:1 1712:1 1715:1 1743:1 1771:1 1781:1 1785:1 1789:1 1797:2 1866:1 1875:1 1877:3 1879:2 1884:3 1885:2 1886:2 1888:3 1889:1 1892:1 1893:2 1895:1 1898:1 1899:2 1903:1 1904:1 1908:1 1912:1 1913:1 1921:1 1927:1 1951:1 1953:1 1973:2 2007:2 2009:1 2025:1 2057:1 2077:1 2079:1 2105:1 2107:1 2112:1 2113:1 2114:1 2128:1 2142:1 2161:1 2172:1 2179:1 2180:2 2181:1 2209:1 2233:1 2240:1 2267:1 2271:1 2274:1 2281:1 2288:1 2291:1 2306:1 2340:1 2345:4 2356:5 2359:2 2375:1 2376:1 2412:1 2427:1 2429:1 2436:1 2441:1 2456:1 2458:1 2460:1 2465:1 2472:2 2485:2 2486:1 2489:1 2499:1 2503:1 2506:3 2507:1 2511:1 2520:2 2522:1 2527:1 2532:1 2545:1 2552:2 2553:1 2562:1 2567:1 2572:1 2574:1 2580:1 2583:1 2595:2 2613:1 2619:2 2621:1 2626:1 2656:4 2684:1 2691:1 2695:2 2701:1 2704:4 2706:1 2715:2 2718:5 2750:3 2752:2 2753:3 2768:1 2775:1 2795:1 2798:3 2804:1 2840:1 2845:1 2847:1 2862:2 2907:1 2913:1 2919:1 2927:1 2930:2 2949:2 2953:1 2959:1 2965:1 2968:2 2971:2 2989:1 2992:1 3024:1 3027:2 3032:1 3043:1 3059:1 3062:1 3066:1 3071:2 3075:1 3093:2 3124:4 3153:7 3156:2 3161:1 3166:1 3179:1 3184:1 3190:1 3208:2 3263:2 3271:3 3274:1 3275:1 3276:1 3290:1 3295:1 3299:1 3302:2 3308:1 3322:2 3325:1 3331:3 3332:1 3337:1 3340:2 3341:2 3343:1 3346:1 3354:3 3355:2 3358:5 3360:2 3362:1 3373:1 3391:1 3414:1 3417:1 3439:1 3445:1 3450:1 3451:3 3465:2 3470:1 3477:1 3493:1 3509:1 3521:2 3523:1 3524:1 3538:1 3539:1 3548:1 3552:1 3557:1 3576:1 3613:1 3622:1 3631:1 3633:1 3644:1 3661:1 3672:1 3679:1 3692:1 3697:1 3712:1 3717:1 3718:1 3722:1 3732:1 3747:1 3755:1 3760:2 3767:2 3772:1 3775:5 3781:1 3788:1 3790:1 3793:1 3800:3 3806:2 3808:2 3815:1 3819:1 3821:1 3828:2 3856:4 3857:1 3865:1 3887:1 3888:2 3896:1 3899:1 3900:1 3903:1 3904:1 3916:1 3925:3 3927:1 3928:1 3939:1 3948:1 3957:5 3965:4 3979:1 3990:1 3997:3 3998:2 4009:1 4025:1 4026:2 4036:1 4038:1 4065:2 4090:1 4097:1 4101:1 4103:1 4104:1 4106:2 4118:1 4121:2 4129:1 4131:1 4133:3 4143:1 4150:1 4158:1 4198:1 4199:1 4200:1 4216:1 4227:1 4230:1 4239:1 4242:1 4246:2 4265:2 4277:1 4279:9 4311:2 4312:1 4315:1 4316:1 4317:1 4318:1 4326:1 4333:2 4358:7 4398:2 4400:2 4426:1 4429:2 4442:1 4461:1 4482:1 4513:1 4532:1 4534:4 4555:1 4565:2 4573:1 4582:1 4584:1 4586:1 4600:1 4643:2 4661:1 4663:1 4667:1 4680:2 4698:1 4717:2 4737:2 4757:1 4770:2 4771:1 4792:1 4794:1 4797:1 4811:1 4841:1 4855:1 4866:1 4868:1 4884:1 4895:1 4910:6 4933:1 4936:1 4958:1 4969:1 5032:4 5058:1 5074:1 5083:1 5089:1 5133:1 5149:1 5182:2 5187:1 5199:1 5206:10 5218:1 5220:2 5222:1 5223:1 5244:1 5249:1 5250:1 5257:9 5274:2 5277:1 5290:3 5293:1 5308:1 5310:1 5317:1 5321:2 5331:1 5338:1 5348:1 5369:1 5395:1 5396:1 5418:1 5422:1 5429:1 5434:1 5438:1 5453:1 5456:4 5461:1 5492:1 5495:1 5499:2 5506:1 5508:1 5528:2 5533:1 5555:2 5574:1 5577:1 5579:2 5583:1 5587:1 5592:1 5593:2 5606:2 5621:1 5624:1 5625:2 5651:2 5656:1647 5670:1 5678:1 5682:2 5700:1 5714:1 5716:1 5726:3 5728:3 5741:1 5765:1 5772:1 5779:1 5784:2 5787:1 5793:1 5814:2 5824:1 5829:2 5862:1 5873:1 5894:1 5915:1 5927:1 5939:2 5945:1 5947:1 5952:1 5955:1 5981:1 5983:1 5987:1 5992:1 5993:2 5997:1 6004:1 6025:1 6033:1 6050:1 6066:1 6067:1 6106:7 6109:1 6142:2 6156:1 6165:1 6171:1 6176:1 6179:2 6185:1 6189:1 6201:1 6210:2 6240:1 6248:2 6268:2 6296:1 6302:1 6308:1 6335:2 6359:1 6366:1 6367:1 6373:2 6376:1 6378:2 6397:1 6399:1 6403:1 6410:2 6417:1 6435:1 6460:1 6468:1 6479:2 6507:1 6513:1 6518:1 6540:1 6550:2 6558:1 6567:2 6570:1 6577:2 6578:1 6590:1 6593:1 6597:1 6603:2 6606:1 6612:2 6614:2 6631:1 6642:2 6655:1 6662:1 6673:2 6674:1 6700:1 6702:1 6708:2 6709:2 6711:1 6713:1 6728:2 6733:2 6746:2 6747:1 6756:1 6793:1 6820:1 6822:1 6832:1 6833:1 6870:2 6892:8 6894:1 6901:1 6906:1 6914:1 6916:1 6957:1 6961:1 6975:3 6976:1 6986:1 6989:2 6998:1 7000:1 7012:4 7028:1 7038:1 7066:1 7075:1 7095:2 7098:1 7107:1 7112:1 7117:3 7119:4 7121:2 7124:1 7129:1 7131:1 7132:1 7138:1 7140:3 7142:3 7146:2 7147:2 7158:3 7162:1 7171:1 7175:1 7203:1 7206:1 7211:1 7213:1 7253:1 7271:1 7272:1 7274:1 7283:1 7300:2 7340:1 7345:1 7360:1 7388:1 7405:2 7408:1 7419:1 7421:1 7426:1 7458:1 7461:1 7462:1 7470:1 7480:1 7488:1 7506:1 7520:1 7529:1 7530:1 7555:1 7572:1 7575:1 7589:2 7636:1 7665:1 7682:1 7689:1 7691:1 7693:1 7697:1 7699:1 7700:1 7702:1 7712:1 7720:1 7732:1 7740:2 7741:1 7744:1 7768:4 7779:2 7792:1 7797:1 7818:1 7821:1 7823:3 7835:2 7853:1 7860:1 7872:1 7873:1 7878:1 7891:1 7898:1 7905:1 7931:1 7938:1 7944:1 7953:2 7965:1 7969:1 7974:2 7975:7 7977:1 7985:1 7991:1 7994:2 8003:1 8022:1 8033:1 8075:1 8087:1 8093:1 8104:1 8108:1 8140:1 8145:1 8154:1 8179:1 8195:1 8202:1 8208:1 8213:2 8221:1 8250:3 8251:1 8254:2 8257:1 8259:1 8261:3 8278:1 8299:1 8312:3 8327:1 8342:2 8345:5 8348:1 8359:2 8364:1 8377:1 8378:1 8391:1 8428:6 8450:1 8462:1 8488:1 8494:1 8497:1 8512:1 8520:1 8532:1 8533:1 8554:1 8575:1 8590:1 8608:1 8619:2 8621:3 8646:2 8647:1 8653:1 8663:1 8668:1 8673:1 8675:1 8679:3 8682:1 8683:1 8687:1 8688:1 8693:1 8755:1 8756:1 8765:1 8772:1 8775:1 8776:1 8777:3 8783:9 8788:2 8792:2 8807:2 8828:2 8852:2 8862:3 8867:1 8880:1 8899:1 8909:2 8913:1 8923:1 8931:1 8943:2 8958:2 8969:1 8981:3 8985:1 8997:5 9008:2 9015:1 9027:3 9059:1 9068:1 9084:1 9089:1 9095:1 9111:1 9121:1 9128:1 9139:1 9143:1 9148:1 9151:1 9152:1 9155:1 9160:1 9162:1 9168:1 9169:1 9171:1 9176:2 9181:3 9184:2 9203:1 9207:2 9232:2 9245:1 9246:1 9258:1 9260:1 9262:2 9263:1 9281:2 9293:1 9299:1 9319:1 9330:1 9340:1 9345:1 9370:1 9387:1 9396:1 9399:1 9402:2 9407:2 9438:1 9442:3 9445:2 9468:1 9480:1 9547:1 9554:1 9568:1 9585:1 9589:1 9599:2 9604:1 9605:1 9618:1 9630:1 9634:1 9655:2 9657:1 9661:1 9668:1 9688:2 9703:1 9731:1 9735:1 9737:1 9751:1 9768:1 9772:1 9776:1 9778:2 9782:1 9814:1 9823:2 9824:1 9834:1 9835:1 9844:1 9849:2 9871:1 9873:4 9890:2 9914:1 9915:1 9922:1 9932:1 9945:1 9946:1 9963:1 9966:1 9974:1 9985:6 9996:1 10007:1 10020:1 10028:1 10043:2 10065:1 10070:1 10089:1 10102:2 10109:1 10121:3 10125:1 10129:2 10146:2 10152:1 10166:1 10168:1 10193:1 10207:1 10208:1 10209:1 10214:1 10216:2 10217:1 10221:2 10261:1 10281:1 10287:1 10288:1 10291:1 10304:1 10314:1 10330:6 10340:2 10379:1 10384:3 10390:1 10393:1 10394:2 10395:1 10403:1 10407:1 10411:1 10415:2 10416:1 10417:2 10438:3 10439:3 10441:1 10445:1 10455:4 10462:1 10463:1 10470:1 10485:1 10512:1 10514:1 10524:2 10532:1 10533:1 10535:1 10541:1 10574:1 10583:1 10595:2 10612:1 10658:1 10674:1 10676:1 10683:1 10721:1 10727:1 10742:1 10777:1 10785:1 10803:1 10812:1 10817:1 10839:1 10852:3 10854:1 10861:1 10879:1 10881:2 10885:2 10907:1 10920:1 10932:2 10941:1 10943:4 10953:1 10962:1 10966:1 10973:1 10975:4 10980:1 10984:1 10989:1 10990:1 10999:3 11003:1 11004:1 11021:1 11022:1 11043:4 11051:2 11057:7 11059:1 11076:1 11101:1 11104:1 11108:2 11127:1 11138:3 11140:1 11143:1 11153:1 11160:2 11166:1 11180:1 11187:1 11194:1 11209:1 11237:1 11248:1 11253:2 11288:1 11316:2 11329:3 11331:6 11332:3 11334:1 11349:1 11352:3 11358:2 11364:3 11368:2 11371:2 11384:1 11390:1 11415:2 11416:2 11417:1 11419:1 11424:2 11436:26 11438:1 11448:1 11455:1 11457:1 11463:2 11470:5 11472:3 11473:1 11481:2 11506:1 11516:1 11519:1 11525:1 11527:1 11534:1 11549:1 11565:1 11574:2 11575:2 11578:1 11590:1 11605:1 11635:1 11639:1 11655:1 11665:1 11687:1 11691:1 11694:1 11712:1 11713:2 11724:1 11743:1 11755:2 11760:2 11776:1 11781:3 11783:1 11784:3 11794:2 11810:1 11838:1 11845:1 11867:2 11869:1 11878:1 11896:1 11898:1 11948:1 11949:1 11989:1 12015:1 12021:2 12028:1 12033:1 12043:1 12051:1 12055:1 12061:1 12076:1 12089:1 12118:1 12127:3 12144:16 12156:1 12176:2 12183:2 12190:1 12267:2 12269:1 12272:1 12281:1 12286:1 12313:3 12314:1 12322:5 12345:1 12348:1 12360:1 12365:2 12366:2 12371:2 12374:1 12381:1 12389:1 12390:1 12402:1 12408:1 12419:3 12426:4 12442:2 12450:1 12474:2 12479:1 12486:1 12501:1 12516:1 12520:1 12536:1 12556:1 12568:1 12580:1 12583:1 12588:1 12596:2 12630:1 12637:1 12641:1 12664:2 12685:1 12694:1 12695:1 12718:1 12731:1 12734:2 12736:1 12738:1 12745:1 12758:1 12772:1 12784:1 12801:3 12804:1 12809:1 12811:3 12824:1 12830:2 12840:1 12842:1 12847:1 12866:1 12883:1 12892:1 12919:1 12925:1 12926:3 12929:1 12931:1 12934:1 12946:1 12947:2 12948:1 12949:1 12962:1 13000:1 13005:1 13019:1 13050:1 13064:1 13068:1 13082:1 13091:1 13121:1 13136:1 13139:1 13160:1 13178:1 13179:1 13206:1 13208:1 13209:1 13213:2 13242:2 13245:1 13256:2 13278:1 13302:1 13304:1 13313:1 13316:1 13318:1 13325:1 13326:3 13333:1 13334:1 13337:1 13347:1 13358:1 13391:3 13421:1 13441:2 13443:4 13445:1 13471:2 13502:1 13524:1 13531:1 13545:1 13549:1 13554:2 13581:1 13583:2 13590:1 13596:1 13600:1 13602:1 13605:2 13663:1 13680:1 13692:2 13693:1 13696:1 13708:2 13711:1 13714:4 13741:1 13745:2 13752:1 13766:3 13803:1 13807:5 13836:1 13860:1 13867:1 13873:1 13875:1 13882:1 13887:2 13896:2 13906:1 13912:1 13915:1 13922:1 13942:1 13952:1 13967:3 13990:1 14004:1 14007:1 14016:1 14024:2 14028:1 14032:6 14036:1 14037:1 14043:1 14081:2 14109:1 14120:1 14130:1 14140:1 14144:1 14151:1 14179:1 14181:1 14186:1 14189:1 14193:1 14198:1 14199:3 14204:2 14209:1 14217:2 14258:1 14262:4 14280:1 14282:1 14295:1 14304:1 14307:1 14314:1 14319:1 14326:1 14363:7 14368:2 14400:1 14404:1 14410:1 14412:1 14433:2 14437:1 14443:1 14449:3 14458:1 14470:1 14482:1 14498:1 14499:1 14513:1 14515:1 14559:1 14564:1 14565:1 14625:1 14631:1 14633:1 14642:4 14662:1 14668:2 14678:3 14683:1 14700:1 14707:1 14717:1 14725:1 14729:2 14750:2 14756:1 14759:1 14763:1 14769:1 14776:1 14832:1 14844:2 14845:1 14850:1 14857:1 14879:1 14889:1 14895:3 14896:1 14900:1 14936:1 14945:1 14951:1 14959:9 14964:1 14977:1 14979:2 14985:1 15003:2 15032:1 15033:1 15037:1 15052:1 15054:1 15099:7 15100:1 15133:1 15136:2 15138:1 15155:1 15165:1 15166:1 15184:1 15189:1 15198:1 15201:1 15202:1 15205:1 15208:1 15210:3 15222:1 15224:1 15229:2 15250:1 15260:1 15265:1 15281:2 15285:1 15287:1 15298:1 15300:1 15301:4 15306:1 15307:1 15309:1 15315:1 15320:1 15332:1 15339:1 15341:1 15346:1 15348:1 15359:3 15360:1 15384:1 15385:1 15391:1 15416:1 15436:1 15441:1 15448:1 15456:2 15479:1 15490:1 15492:1 15519:2 15539:1 15544:1 15548:3 15550:1 15552:3 15554:2 15569:1 15573:3 15578:1 15584:1 15589:1 15597:1 15607:1 15618:1 15633:3 15634:1 15663:1 15664:1 15674:3 15699:1 15703:1 15712:3 15715:1 15723:1 15732:2 15745:1 15753:2 15754:3 15756:1 15774:1 15787:1 15795:1 15799:1 15806:1 15814:2 15860:1 15875:1 15879:2 15881:1 15896:1 15918:1 15924:1 15958:1 15992:1 16018:1 16027:1 16030:1 16031:1 16050:1 16051:2 16054:1 16059:2 16067:1 16074:1 16075:4 16078:1 16080:5 16083:1 16090:1 16093:2 16100:2 16101:2 16105:2 16114:3 16117:1 16127:2 16140:1 16142:1 16163:2 16172:1 16177:1 16206:1 16207:1 16211:1 16225:3 16240:1 16246:1 16260:1 16262:1 16273:3 16278:1 16305:1 16312:1 16374:1 16376:1 16391:1 16395:1 16418:1 16427:1 16431:1 16446:1 16473:1 16502:1 16519:1 16523:1 16531:2 16552:1 16553:1 16560:1 16575:1 16580:2 16581:1 16584:1 16585:1 16596:2 16601:1 16602:2 16621:1 16628:2 16631:1 16650:1 16658:1 16676:9 16678:1 16679:1 16708:1 16712:1 16727:1 16731:3 16745:1 16749:2 16758:1 16810:2 16816:1 16828:1 16844:2 16850:1 16851:1 16852:1 16867:1 16874:2 16890:1 16893:1 16921:1 16936:2 16949:1 16951:1 16955:1 16981:1 16987:1 16999:1 17005:1 17008:1 17029:1 17052:3 17056:1 17062:9 17063:2 17068:1 17071:2 17078:1 17079:1 17083:1 17084:1 17089:1 17092:1 17099:1 17111:1 17132:1 17133:1 17151:3 17156:2 17183:2 17189:1 17201:1 17202:1 17230:1 17231:1 17237:1 17242:1 17259:3 17263:3 17266:2 17268:3 17273:1 17279:2 17287:4 17339:1 17345:1 17379:1 17403:5 17417:1 17429:1 17461:1 17463:1 17468:1 17495:1 17504:1 17518:1 17533:2 17543:1 17549:1 17553:1 17554:1 17555:2 17566:1 17591:6 17594:1 17604:1 17627:1 17632:1 17634:1 17643:1 17660:1 17670:1 17672:1 17675:1 17696:1 17753:1 17759:1 17769:1 17774:4 17776:1 17798:1 17799:1 17801:1 17809:1 17810:2 17818:1 17823:1 17826:1 17855:1 17893:1 17894:1 17897:5 17922:1 17925:1 17929:1 17935:1 17936:1 17986:1 17989:1 17996:1 18002:1 18003:1 18022:1 18023:1 18027:1 18032:1 18045:1 18053:1 18074:1 18077:2 18099:2 18126:1 18141:1 18150:1 18153:1 18175:1 18179:1 18180:2 18198:1 18227:1 18230:1 18245:1 18258:1 18264:3 18269:1 18272:1 18274:1 18303:1 18310:2 18319:1 18333:1 18339:1 18357:2 18358:1 18360:2 18362:1 18380:2 18383:1 18386:1 18390:1 18398:2 18399:1 18415:1 18432:1 18434:1 18455:1 18459:2 18465:1 18499:1 18523:3 18525:1 18531:1 18534:1 18535:1 18545:1 18564:1 18606:6 18613:1 18616:2 18627:1 18629:1 18634:1 18638:1 18644:1 18652:1 18656:1 18665:1 18689:1 18697:1 18703:1 18707:1 18709:1 18710:1 18711:2 18713:1 18717:1 18725:2 18742:1 18752:1 18763:1 18765:1 18769:1 18791:2 18807:1 18810:1 18815:1 18851:1 18865:1 18881:1 18897:1 18909:1 18973:1 19013:1 19014:1 19015:1 19025:1 19051:1 19053:1 19062:1 19064:2 19085:1 19115:1 19117:3 19121:1 19168:1 19215:1 19228:1 19270:1 19278:1 19292:1 19311:1 19315:2 19324:4 19339:1 19365:1 19367:1 19386:3 19388:2 19391:1 19407:1 19418:2 19444:1 19450:2 19452:1 19495:1 19498:2 19503:1 19506:1 19509:1 19512:1 19524:4 19525:1 19535:1 19536:3 19538:2 19549:1 19551:2 19555:1 19556:1 19558:1 19568:1 19582:1 19586:1 19595:1 19597:1 19598:1 19600:4 19616:1 19621:1 19630:1 19638:1 19645:2 19649:2 19655:8 19659:1 19664:4 19667:1 19680:1 19696:3 19715:3 19718:2 19720:1 19721:1 19724:1 19727:1 19757:1 19777:1 19786:1 19816:3 19829:1 19833:1 19851:1 19857:5 19891:1 19896:1 19908:2 19910:1 19918:4 19929:3 19936:2 19965:1 19974:1 19975:4 19977:1 19991:1 19992:1 19995:1 19999:1 20015:1 20022:1 20034:3 20037:1 20041:1 20044:1 20049:6 20050:1 20075:1 20078:1 20081:1 20101:1 20132:1 20170:1 20185:1 20188:1 20210:1 20223:1 20251:1 20256:1 20258:1 20266:1 20267:2 20276:1 20284:1 20298:2 20305:3 20363:1 20366:1 20368:1 20379:1 20382:1 20383:1 20387:2 20390:5 20396:1 20402:1 20413:1 20440:1 20451:1 20453:1 20482:7 20494:3 20519:2 20529:1 20552:1 20598:1 20614:1 20621:1 20636:1 20669:1 20670:1 20706:1 20758:1 20817:1 20822:1 20828:1 20844:1 20846:1 20851:3 20855:2 20875:1 20878:1 20880:1 20892:1 20912:1 20955:1 20956:1 20980:1 21034:3 21072:1 21080:2 21083:1 21096:1 21099:2 21110:2 21111:1 21118:1 21142:1 21180:1 21188:2 21202:1 21213:1 21216:1 21223:2 21265:1 21271:2 21274:1 21276:2 21298:2 21318:1 21333:1 21341:1 21349:2 21353:1 21362:1 21374:3 21379:2 21386:1 21402:1 21446:1 21451:3 21459:1 21463:1 21470:2 21494:1 21510:1 21512:1 21538:1 21539:1 21540:1 21547:1 21568:1 21579:1 21586:1 21589:2 21619:1 21623:1 21626:2 21635:2 21637:1 21639:1 21640:2 21646:1 21667:1 21674:2 21707:3 21715:1 21718:1
1 5:2 23:1 35:1 53:1 66:1 91:1 99:1 101:1 103:1 107:1 123:1 124:1 134:1 140:1 163:1 181:1 233:1 255:1 260:3 261:1 270:1 280:1 308:1 309:1 319:1 324:2 343:5 369:1 370:1 411:1 419:1 432:1 439:5 454:1 461:2 466:1 467:1 476:1 490:1 501:1 510:1 523:2 527:1 547:1 563:3 564:2 571:1 573:3 578:1 582:3 593:1 602:2 605:1 626:1 628:1 635:1 644:1 663:5 667:2 677:1 685:1 749:1 761:1 762:2 778:1 790:1 806:2 827:1 849:1 854:1 861:1 889:1 893:1 894:1 908:2 918:1 943:1 954:1 956:1 964:1 989:1 1004:1 1018:2 1034:1 1037:2 1040:1 1056:1 1073:1 1074:1 1079:1 1081:1 1124:1 1152:2 1160:1 1200:1 1205:1 1229:1 1237:2 1248:1 1261:2 1270:1 1278:1 1281:1 1282:2 1308:1 1320:4 1322:2 1331:1 1349:1 1358:3 1375:1 1392:1 1402:7 1407:3 1419:3 1430:1 1435:1 1441:2 1453:1 1457:7 1475:4 1476:2 1478:6 1481:1 1482:1 1486:1 1488:2 1489:3 1507:2 1530:3 1531:3 1536:1 1549:1 1598:1 1600:2 1624:1 1644:1 1651:2 1653:1 1659:2 1683:2 1689:1 1698:1 1712:1 1715:1 1743:1 1771:1 1781:1 1785:1 1789:1 1797:2 1866:1 1875:1 1877:3 1879:2 1884:3 1885:2 1886:2 1888:3 1889:1 1892:1 1893:2 1895:1 1898:1 1899:2 1903:1 1904:1 1908:1 1912:1 1913:1 1921:1 1927:1 1951:1 1953:1 1973:2 2007:2 2009:1 2025:1 2057:1 2077:1 2079:1 2105:1 2107:1 2112:1 2113:1 2114:1 2128:1 2142:1 2161:1 2172:1 2179:1 2180:2 2181:2 2209:1 2215:1 2233:1 2240:1 2267:1 2271:1 2274:1 2281:1 2288:1 2291:1 2306:1 2340:1 2345:4 2356:5 2359:2 2375:1 2376:1 2412:1 2427:1 2429:1 2434:1 2436:1 2441:1 2456:1 2458:1 2460:2 2465:1 2472:2 2485:2 2486:1 2489:1 2499:1 2503:1 2506:3 2507:1 2511:1 2520:2 2522:1 2527:1 2532:1 2545:1 2552:2 2553:1 2562:1 2567:1 2572:1 2574:1 2580:1 2583:1 2595:2 2613:1 2619:2 2621:1 2623:1 2626:1 2656:4 2684:1 2691:1 2695:2 2701:1 2704:4 2706:1 2715:2 2718:5 2750:3 2752:2 2753:3 2768:1 2775:1 2795:1 2798:3 2804:1 2835:1 2840:1 2845:1 2847:1 2862:2 2907:1 2913:1 2919:1 2927:1 2930:2 2941:1 2949:2 2953:1 2959:1 2965:1 2968:2 2971:2 2989:1 2992:1 3024:1 3027:2 3032:1 3043:1 3059:1 3062:1 3066:1 3071:2 3075:1 3093:2 3124:4 3153:7 3156:2 3161:1 3166:1 3179:1 3184:1 3190:1 3208:2 3263:2 3271:3 3274:1 3275:1 3276:1 3290:1 3295:1 3299:1 3302:2 3308:1 3322:2 3325:1 3329:1 3331:3 3332:1 3337:1 3340:2 3341:2 3343:1 3346:1 3354:4 3355:2 3358:5 3360:3 3362:1 3373:1 3391:1 3414:1 3417:1 3439:1 3445:1 3450:1 3451:3 3465:2 3470:1 3477:1 3493:1 3509:1 3521:2 3523:1 3524:1 3538:1 3539:1 3548:1 3552:1 3557:1 3576:1 3613:1 3622:1 3631:1 3633:1 3644:1 3661:1 3672:1 3679:2 3684:1 3692:1 3697:1 3712:1 3717:1 3718:1 3722:1 3732:1 3747:1 3755:1 3760:2 3767:2 3772:1 3775:5 3781:1 3788:1 3790:1 3793:1 3800:3 3806:2 3808:2 3815:1 3819:1 3821:1 3828:2 3856:4 3857:1 3865:1 3887:1 3888:2 3896:1 3899:1 3900:1 3903:1 3904:1 3916:1 3925:3 3927:1 3928:1 3939:1 3948:1 3957:5 3965:4 3979:1 3981:1 3990:1 3997:3 3998:2 4009:1 4025:1 4026:2 4032:1 4036:1 4038:1 4065:2 4090:1 4097:1 4101:1 4103:1 4104:2 4106:2 4118:1 4121:2 4129:1 4131:1 4133:3 4143:1 4150:1 4158:1 4198:1 4199:1 4200:1 4216:1 4227:1 4230:1 4239:1 4242:1 4246:2 4265:2 4277:1 4279:9 4311:2 4312:1 4315:1 4316:1 4317:1 4318:1 4326:1 4333:2 4358:8 4398:2 4400:2 4426:1 4429:2 4442:1 4461:1 4482:1 4513:1 4532:1 4534:4 4555:1 4565:2 4573:1 4582:1 4584:1 4586:1 4600:1 4643:2 4661:1 4663:1 4667:1 4680:2 4698:1 4717:2 4737:2 4757:1 4770:2 4771:1 4786:1 4792:1 4794:1 4797:1 4811:1 4841:1 4855:1 4866:1 4868:1 4884:1 4895:1 4910:6 4933:1 4936:1 4958:1 4969:1 5032:4 5058:1 5074:1 5083:1 5089:1 5133:1 5149:1 5182:2 5187:1 5199:1 5206:10 5218:1 5220:2 5222:1 5223:1 5244:1 5249:1 5250:1 5257:9 5274:2 5277:1 5290:3 5293:1 5308:1 5310:1 5317:1 5321:2 5331:1 5338:1 5348:1 5369:1 5395:1 5396:1 5418:1 5422:1 5429:1 5434:1 5438:1 5453:1 5456:4 5461:1 5492:1 5495:1 5499:2 5506:1 5508:1 5528:2 5533:1 5555:2 5572:1 5574:1 5577:1 5579:2 5583:1 5587:1 5592:1 5593:2 5606:2 5621:1 5624:2 5625:2 5651:2 5656:1736 5670:1 5678:1 5682:2 5700:1 5714:1 5716:1 5726:3 5728:3 5741:1 5761:1 5765:1 5772:1 5779:1 5784:2 5787:1 5793:1 5814:2 5824:1 5829:2 5862:1 5873:1 5894:1 5904:1 5915:1 5927:1 5939:2 5945:1 5947:1 5952:1 5955:1 5981:1 5983:1 5987:1 5992:1 5993:2 5997:1 6004:1 6025:1 6033:1 6050:1 6066:1 6067:1 6106:7 6109:1 6142:2 6156:1 6165:1 6171:1 6176:1 6179:2 6185:1 6189:1 6201:2 6210:2 6240:1 6248:2 6268:2 6296:1 6302:1 6308:1 6335:2 6359:1 6366:1 6367:1 6373:2 6376:1 6378:2 6397:1 6399:1 6403:1 6410:2 6417:1 6435:1 6460:1 6468:1 6479:2 6507:1 6513:1 6518:1 6540:1 6550:2 6558:1 6567:3 6570:1 6577:2 6578:1 6590:1 6593:1 6597:1 6603:2 6606:1 6612:2 6614:2 6631:2 6642:2 6655:1 6662:1 6673:2 6674:1 6700:1 6702:1 6708:2 6709:2 6711:1 6713:1 6728:2 6733:2 6746:2 6747:1 6756:1 6793:1 6820:1 6822:1 6832:1 6833:1 6870:2 6892:8 6894:1 6901:1 6906:1 6914:1 6916:1 6957:1 6961:1 6975:3 6976:1 6986:1 6989:2 6998:1 7000:1 7012:4 7028:1 7038:1 7066:1 7075:1 7095:2 7098:1 7107:1 7112:1 7117:3 7119:4 7121:2 7124:1 7129:1 7131:1 7132:1 7138:1 7140:3 7142:3 7146:2 7147:2 7158:3 7162:1 7171:1 7175:1 7203:1 7206:1 7211:1 7213:1 7253:1 7271:1 7272:1 7274:1 7283:1 7300:2 7315:1 7340:1 7345:1 7360:1 7388:1 7405:2 7408:1 7419:1 7421:1 7426:1 7458:1 7461:1 7462:1 7470:1 7480:1 7488:1 7506:1 7519:1 7520:1 7529:1 7530:1 7555:1 7572:1 7575:2 7589:2 7636:1 7665:1 7682:1 7689:2 7691:1 7693:1 7697:1 7699:1 7700:1 7702:1 7712:1 7720:1 7732:1 7740:2 7741:1 7744:1 7768:4 7779:2 7792:1 7797:1 7818:1 7821:1 7823:3 7835:2 7853:1 7860:1 7872:1 7873:1 7878:1 7891:1 7898:1 7905:1 7931:1 7938:1 7944:1 7953:2 7965:1 7969:1 7974:3 7975:8 7977:2 7985:1 7991:1 7994:2 8003:1 8006:1 8022:1 8033:1 8075:1 8087:1 8093:1 8104:1 8108:1 8136:1 8140:1 8145:1 8154:1 8179:1 8195:1 8202:1 8208:1 8213:2 8221:1 8250:3 8251:1 8254:2 8257:1 8259:1 8261:3 8278:1 8299:1 8312:3 8327:1 8342:2 8345:5 8348:1 8359:2 8364:1 8377:1 8378:1 8391:1 8428:6 8450:1 8462:1 8488:1 8494:1 8497:1 8512:1 8520:1 8532:1 8533:1 8554:1 8575:1 8590:1 8601:1 8608:1 8619:2 8621:3 8646:2 8647:1 8653:1 8663:1 8668:1 8673:1 8675:1 8679:3 8682:1 8683:1 8687:1 8688:1 8693:1 8755:1 8756:1 8765:1 8772:1 8775:1 8776:1 8777:3 8783:9 8788:2 8792:2 8807:2 8828:2 8852:2 8862:3 8867:1 8880:1 8899:1 8909:2 8913:1 8923:1 8931:1 8943:2 8958:2 8969:1 8981:3 8985:1 8997:5 9001:1 9003:1 9008:2 9015:1 9027:3 9059:2 9068:1 9084:1 9089:1 9095:1 9111:1 9121:1 9128:1 9139:1 9143:2 9148:1 9151:1 9152:1 9155:1 9160:1 9162:1 9168:1 9169:1 9171:1 9176:2 9181:3 9184:2 9203:1 9207:2 9232:2 9245:1 9246:1 9258:1 9260:1 9262:2 9263:1 9281:2 9293:1 9299:1 9319:1 9330:1 9340:1 9345:1 9370:1 9387:1 9396:1 9399:1 9402:2 9407:2 9438:1 9440:1 9442:4 9445:2 9468:1 9480:1 9547:1 9554:1 9568:1 9585:1 9589:1 9598:1 9599:2 9604:1 9605:1 9618:1 9630:1 9634:1 9655:2 9657:1 9661:1 9668:1 9688:2 9703:1 9731:1 9735:1 9737:1 9751:1 9768:1 9772:1 9776:1 9778:2 9782:1 9814:1 9823:2 9824:1 9834:1 9835:1 9844:1 9849:2 9871:1 9873:4 9890:2 9914:1 9915:1 9922:1 9932:1 9945:1 9946:1 9963:1 9966:1 9974:1 9985:7 9996:1 10007:1 10011:1 10020:1 10028:1 10043:2 10065:1 10070:1 10089:1 10102:2 10109:1 10121:3 10125:1 10128:1 10129:2 10130:1 10146:2 10152:1 10166:1 10168:1 10193:1 10207:1 10208:1 10209:1 10214:1 10216:2 10217:1 10221:2 10261:1 10281:1 10287:1 10288:1 10291:1 10304:1 10314:1 10330:6 10340:2 10379:1 10384:3 10390:1 10393:1 10394:2 10395:1 10403:1 10407:1 10411:1 10415:2 10416:1 10417:2 10438:3 10439:3 10441:1 10445:1 10455:4 10462:1 10463:1 10470:1 10485:1 10512:1 10514:1 10524:2 10532:1 10533:1 10535:1 10541:1 10574:1 10583:2 10595:2 10612:1 10658:1 10674:1 10676:1 10683:1 10706:1 10721:1 10727:1 10742:1 10743:1 10777:1 10785:1 10803:1 10812:1 10817:1 10839:1 10848:1 10852:3 10854:1 10861:1 10879:1 10881:2 10885:2 10907:1 10920:1 10932:2 10935:1 10941:1 10943:4 10953:1 10962:1 10966:1 10973:1 10975:4 10980:1 10984:1 10989:1 10990:1 10999:3 11003:1 11004:1 11021:1 11022:1 11043:4 11051:2 11057:7 11059:1 11076:1 11101:1 11104:1 11108:2 11127:1 11138:3 11140:1 11143:1 11153:1 11160:2 11166:1 11180:1 11187:1 11194:1 11209:1 11237:1 11248:1 11253:2 11288:1 11316:2 11329:3 11331:6 11332:3 11334:1 11349:1 11352:3 11358:2 11364:3 11368:2 11371:2 11384:1 11390:1 11415:2 11416:2 11417:1 11419:1 11424:2 11436:29 11438:1 11448:1 11455:1 11457:1 11463:2 11470:5 11472:3 11473:1 11481:2 11506:1 11516:1 11519:1 11525:1 11527:1 11534:1 11549:1 11565:1 11574:2 11575:2 11578:1 11590:1 11605:1 11635:1 11639:1 11655:1 11665:1 11687:1 11691:1 11694:1 11712:1 11713:2 11724:1 11743:1 11755:2 11760:2 11776:1 11781:3 11783:1 11784:3 11794:2 11810:1 11838:1 11845:1 11847:1 11867:2 11869:1 11878:1 11896:1 11898:1 11948:1 11949:1 11989:1 12015:1 12021:2 12028:1 12033:1 12043:1 12051:1 12055:1 12061:1 12076:1 12089:1 12118:1 12127:3 12144:16 12156:1 12176:2 12183:2 12190:1 12267:2 12269:1 12272:1 12281:1 12286:1 12313:3 12314:1 12322:5 12345:1 12348:1 12360:1 12365:2 12366:3 12371:2 12374:1 12381:1 12384:1 12389:1 12390:1 12402:1 12408:1 12419:3 12424:1 12426:4 12442:2 12450:1 12474:2 12479:1 12486:1 12501:1 12516:1 12520:1 12536:1 12556:1 12568:1 12575:1 12580:1 12583:1 12588:1 12596:2 12630:1 12637:1 12641:1 12664:2 12685:1 12694:1 12695:1 12718:1 12731:1 12734:2 12736:1 12738:1 12745:1 12758:1 12772:1 12784:1 12801:3 12804:1 12809:1 12811:3 12824:1 12830:2 12840:1 12842:1 12847:1 12861:1 12866:1 12871:1 12883:1 12892:1 12919:1 12925:1 12926:4 12929:1 12931:1 12934:1 12946:1 12947:2 12948:1 12949:1 12962:1 13000:1 13005:1 13019:1 13050:1 13064:1 13068:1 13082:1 13091:1 13121:1 13136:1 13139:1 13160:1 13178:1 13179:1 13206:1 13208:1 13209:1 13213:3 13242:2 13245:1 13256:2 13278:1 13280:2 13302:1 13304:1 13313:1 13316:1 13318:1 13325:1 13326:3 13333:1 13334:1 13337:1 13347:1 13358:1 13391:3 13413:1 13421:1 13441:2 13443:4 13445:1 13471:2 13502:1 13524:1 13531:1 13545:1 13549:1 13554:2 13572:1 13581:1 13583:2 13590:1 13596:1 13600:1 13602:1 13604:1 13605:2 13663:1 13680:1 13692:2 13693:1 13696:1 13708:2 13711:1 13714:4 13741:1 13745:2 13752:1 13766:4 13803:1 13807:5 13836:1 13843:1 13860:1 13867:1 13873:1 13875:1 13882:1 13887:2 13896:2 13905:1 13906:1 13912:1 13915:1 13922:1 13942:1 13952:1 13967:3 13990:1 14004:1 14007:1 14016:1 14024:2 14028:1 14032:6 14036:1 14037:1 14043:1 14081:2 14109:1 14120:1 14130:1 14140:1 14144:1 14151:1 14179:1 14181:1 14186:1 14189:1 14193:1 14198:1 14199:3 14204:2 14209:1 14212:1 14217:2 14258:1 14262:4 14280:1 14282:1 14285:1 14295:1 14304:1 14307:1 14314:1 14315:1 14319:1 14326:1 14363:7 14368:2 14400:1 14404:1 14410:1 14412:1 14414:1 14433:2 14437:1 14443:1 14449:3 14458:1 14470:1 14482:1 14498:1 14499:1 14513:1 14515:1 14559:1 14564:1 14565:1 14625:1 14631:1 14633:1 14642:5 14662:1 14668:2 14678:3 14683:1 14700:1 14707:1 14717:1 14725:1 14729:2 14750:2 14756:1 14759:1 14763:1 14769:1 14771:1 14776:1 14832:1 14844:2 14845:1 14850:1 14857:1 14879:1 14889:1 14895:3 14896:2 14900:1 14931:1 14936:1 14945:1 14951:1 14959:9 14964:1 14977:2 14979:2 14985:1 15003:2 15032:1 15033:1 15037:1 15052:1 15054:1 15099:7 15100:1 15133:1 15136:2 15138:1 15155:1 15165:1 15166:1 15184:1 15189:1 15198:1 15201:1 15202:1 15205:1 15208:1 15210:3 15222:1 15224:1 15229:2 15250:1 15260:1 15265:1 15281:2 15285:1 15287:1 15298:1 15300:1 15301:4 15306:1 15307:1 15309:1 15315:1 15320:1 15332:1 15339:1 15341:1 15346:1 15348:1 15359:4 15360:1 15384:1 15385:1 15391:1 15416:1 15436:1 15441:1 15448:1 15456:2 15479:1 15490:1 15492:1 15519:2 15539:1 15544:1 15548:5 15550:1 15552:3 15554:2 15569:1 15573:3 15578:1 15584:1 15589:1 15597:1 15607:1 15618:2 15633:3 15634:1 15663:1 15664:1 15674:3 15699:1 15703:1 15712:3 15715:1 15723:1 15732:3 15745:1 15753:2 15754:4 15756:1 15774:1 15787:1 15795:1 15799:1 15806:1 15814:2 15860:1 15875:1 15879:2 15881:1 15896:2 15918:1 15924:1 15958:1 15992:1 16018:1 16027:1 16030:1 16031:1 16045:1 16050:1 16051:2 16054:1 16059:2 16067:1 16074:1 16075:5 16078:1 16080:5 16083:1 16090:1 16093:2 16100:2 16101:2 16105:2 16114:3 16117:1 16127:2 16140:1 16142:1 16163:2 16172:1 16177:1 16206:1 16207:1 16211:1 16225:3 16240:1 16246:1 16260:1 16262:1 16273:3 16278:1 16305:1 16312:1 16374:1 16376:1 16391:1 16395:1 16418:1 16427:1 16431:1 16446:1 16473:1 16502:1 16519:1 16523:1 16531:2 16552:1 16553:1 16560:1 16575:1 16580:2 16581:1 16584:1 16585:1 16596:2 16601:1 16602:2 16621:1 16628:2 16631:1 16650:1 16658:1 16676:9 16678:1 16679:1 16708:1 16712:1 16727:1 16731:3 16745:1 16749:2 16758:1 16810:2 16816:2 16828:1 16844:2 16850:1 16851:1 16852:1 16867:1 16874:2 16890:1 16893:1 16921:1 16936:2 16949:1 16951:1 16955:1 16981:1 16987:1 16999:1 17005:1 17008:1 17029:1 17052:3 17056:1 17062:9 17063:2 17068:1 17071:2 17078:1 17079:1 17083:1 17084:1 17089:1 17092:1 17099:1 17111:1 17131:1 17132:1 17133:1 17151:3 17156:2 17183:2 17189:1 17201:1 17202:1 17230:1 17231:1 17237:1 17242:1 17259:3 17263:3 17266:2 17268:3 17273:1 17279:2 17287:4 17339:1 17345:1 17379:1 17403:5 17417:1 17429:1 17453:1 17461:1 17463:1 17468:1 17495:1 17501:1 17504:1 17518:1 17533:2 17543:1 17549:1 17553:1 17554:1 17555:2 17566:1 17591:6 17594:1 17604:1 17627:1 17632:1 17634:1 17643:1 17652:1 17660:1 17670:1 17672:1 17675:1 17696:1 17753:1 17759:1 17769:1 17774:4 17776:1 17798:1 17799:1 17801:1 17809:1 17810:2 17818:1 17823:1 17826:1 17855:1 17893:1 17894:1 17897:5 17922:1 17925:1 17929:1 17935:1 17936:1 17986:1 17989:1 17996:1 18002:1 18003:1 18022:1 18023:1 18027:1 18032:1 18045:1 18053:1 18074:1 18077:2 18099:2 18126:1 18141:1 18150:1 18153:2 18175:1 18179:1 18180:2 18198:1 18227:1 18230:1 18245:1 18258:1 18264:3 18269:1 18272:1 18274:1 18303:1 18310:2 18319:1 18333:1 18339:1 18357:2 18358:1 18360:2 18362:1 18380:2 18383:1 18386:1 18390:1 18398:2 18399:1 18415:1 18432:1 18434:1 18453:1 18455:1 18459:2 18465:1 18499:1 18523:3 18525:1 18531:1 18534:1 18535:1 18545:1 18564:1 18606:6 18613:1 18616:2 18627:1 18629:1 18634:1 18638:1 18644:1 18652:1 18656:1 18665:1 18687:1 18689:1 18697:1 18703:1 18707:1 18709:1 18710:1 18711:2 18713:1 18717:1 18725:2 18742:1 18752:1 18763:1 18765:1 18769:1 18791:2 18807:1 18810:1 18815:1 18851:1 18865:1 18881:1 18897:1 18909:1 18973:1 19013:1 19014:1 19015:1 19025:1 19051:1 19053:1 19062:1 19064:2 19085:1 19115:1 19117:3 19121:1 19152:1 19168:1 19215:1 19228:1 19270:1 19278:1 19292:1 19311:1 19315:2 19324:4 19339:1 19344:1 19365:1 19367:2 19386:3 19388:2 19391:1 19407:1 19418:2 19444:1 19450:2 19452:1 19495:1 19498:2 19503:1 19506:1 19509:1 19512:1 19524:4 19525:1 19535:1 19536:3 19538:2 19549:1 19551:2 19555:1 19556:1 19558:1 19568:1 19582:1 19586:1 19595:1 19597:1 19598:1 19600:4 19616:1 19621:1 19630:1 19638:1 19645:2 19649:2 19655:8 19659:1 19664:4 19667:1 19680:1 19696:3 19715:3 19718:2 19720:1 19721:1 19724:1 19727:1 19757:1 19777:1 19786:1 19816:3 19829:1 19833:1 19851:1 19857:5 19891:1 19896:1 19908:2 19910:1 19918:4 19929:3 19936:2 19965:1 19974:1 19975:4 19977:1 19991:1 19992:1 19995:1 19999:1 20015:1 20022:1 20034:3 20037:1 20039:1 20041:1 20044:1 20049:6 20050:1 20075:1 20078:1 20081:1 20101:1 20132:1 20170:1 20185:1 20188:1 20210:1 20223:1 20251:1 20256:1 20258:1 20266:1 20267:2 20276:1 20284:1 20298:2 20305:3 20363:1 20366:1 20368:1 20379:1 20382:1 20383:1 20387:2 20390:5 20396:1 20402:1 20413:1 20440:1 20451:1 20453:1 20482:7 20494:3 20519:2 20529:1 20552:1 20598:1 20614:1 20621:1 20636:1 20669:1 20670:1 20706:1 20746:1 20758:1 20817:1 20822:1 20828:2 20844:1 20846:1 20851:3 20855:2 20874:1 20875:1 20878:1 20880:1 20892:1 20912:1 20933:1 20955:1 20956:1 20980:1 21034:3 21072:1 21080:2 21083:1 21096:1 21099:2 21110:2 21111:1 21118:1 21142:1 21180:1 21188:2 21202:1 21213:1 21216:1 21223:2 21265:1 21271:2 21274:1 21276:2 21298:2 21318:1 21333:1 21341:1 21349:2 21353:1 21362:1 21374:3 21378:1 21379:2 21386:1 21402:1 21446:1 21451:3 21459:1 21463:1 21470:2 21494:1 21510:1 21512:1 21538:1 21539:1 21540:1 21547:1 21568:1 21579:1 21586:1 21589:2 21619:1 21623:1 21626:2 21635:2 21637:2 21639:1 21640:3 21646:1 21667:1 21674:2 21707:4 21715:1 21718:1
1 5:2 10:1 23:1 35:1 53:1 66:1 77:1 91:1 99:1 101:1 103:1 107:1 123:1 124:1 134:1 140:1 163:1 181:1 233:1 255:1 260:3 261:1 270:1 280:1 308:1 309:1 319:1 324:2 343:5 369:1 370:1 411:1 419:1 432:1 439:5 454:1 461:3 466:1 467:1 468:1 476:1 490:1 501:1 510:1 523:2 527:1 547:1 563:3 564:2 571:1 573:3 578:1 582:3 593:1 602:2 605:2 626:1 628:1 635:1 644:1 663:5 667:2 677:1 685:1 717:1 749:1 761:1 762:2 778:1 790:1 806:2 827:1 849:1 854:1 861:1 889:1 893:1 894:1 908:2 918:1 943:1 954:1 956:2 964:1 989:1 1004:1 1005:1 1018:2 1034:1 1037:3 1040:1 1045:1 1056:1 1073:1 1074:1 1079:1 1081:1 1124:1 1152:2 1160:1 1200:1 1205:2 1229:1 1237:2 1248:1 1261:2 1270:1 1278:1 1281:1 1282:3 1308:1 1320:4 1322:2 1331:1 1349:1 1356:1 1358:3 1375:1 1392:1 1402:9 1407:4 1419:3 1430:1 1435:1 1441:2 1453:1 1457:9 1475:4 1476:2 1478:6 1481:1 1482:1 1486:1 1488:2 1489:3 1507:2 1530:3 1531:3 1536:1 1549:1 1598:1 1600:2 1624:1 1644:1 1651:2 1653:1 1659:2 1683:2 1689:1 1698:1 1712:1 1715:1 1743:1 1771:1 1781:1 1785:1 1789:1 1797:2 1866:1 1875:1 1877:3 1879:2 1884:3 1885:2 1886:2 1888:3 1889:1 1892:1 1893:2 1895:1 1898:1 1899:3 1903:1 1904:1 1908:1 1912:1 1913:1 1921:1 1927:1 1951:1 1953:1 1973:2 2007:2 2009:1 2025:1 2057:1 2077:1 2079:1 2105:1 2107:1 2112:1 2113:1 2114:1 2128:1 2142:1 2161:1 2172:1 2179:1 2180:2 2181:2 2209:1 2215:1 2233:1 2240:1 2267:1 2271:1 2274:1 2281:1 2288:1 2291:1 2306:1 2340:1 2345:4 2356:5 2359:2 2375:1 2376:1 2412:1 2427:1 2429:1 2434:1 2436:1 2441:1 2456:1 2458:1 2460:2 2465:1 2472:2 2485:2 2486:1 2489:1 2499:1 2503:1 2506:3 2507:1 2511:1 2520:2 2522:1 2527:1 2532:1 2545:1 2552:2 2553:1 2562:1 2567:1 2572:1 2574:1 2580:1 2583:1 2595:2 2613:1 2619:2 2621:1 2623:1 2626:1 2656:4 2684:1 2691:1 2695:2 2701:1 2704:5 2706:1 2715:2 2718:5 2750:3 2752:2 2753:3 2768:1 2775:1 2795:1 2798:3 2804:1 2835:1 2840:1 2845:1 2847:1 2862:2 2907:1 2913:1 2919:1 2927:2 2930:2 2932:1 2941:1 2949:2 2953:1 2959:1 2965:1 2968:2 2971:2 2988:1 2989:1 2992:1 3024:1 3027:2 3032:1 3043:1 3059:1 3062:1 3066:1 3071:2 3075:1 3093:2 3124:4 3153:7 3156:2 3161:1 3166:1 3179:1 3184:1 3190:1 3208:2 3228:1 3263:2 3271:3 3274:1 3275:1 3276:1 3290:1 3295:1 3299:1 3302:2 3308:1 3322:2 3325:1 3329:2 3331:3 3332:1 3337:1 3340:2 3341:2 3343:1 3346:2 3354:4 3355:3 3358:5 3360:4 3362:1 3373:1 3391:1 3414:1 3417:1 3439:1 3445:1 3450:1 3451:3 3455:1 3465:2 3470:1 3477:1 3493:1 3509:1 3521:2 3523:1 3524:1 3538:1 3539:1 3548:1 3552:1 3557:1 3576:1 3613:1 3622:1 3631:1 3633:1 3644:1 3661:1 3672:1 3679:3 3684:1 3692:1 3697:1 3712:1 3717:1 3718:1 3722:1 3732:1 3747:1 3755:1 3760:2 3767:2 3772:1 3775:5 3781:1 3788:1 3789:1 3790:1 3793:1 3800:3 3806:2 3808:2 3815:1 3819:1 3821:1 3828:3 3856:4 3857:1 3865:1 3887:1 3888:2 3896:1 3899:1 3900:1 3903:1 3904:1 3910:1 3916:1 3925:4 3927:1 3928:1 3939:1 3948:1 3957:5 3965:4 3966:1 3979:1 3981:1 3988:1 3990:1 3997:3 3998:2 4009:1 4025:1 4026:2 4032:1 4036:1 4038:1 4065:2 4090:1 4097:1 4101:2 4103:1 4104:2 4106:2 4118:1 4121:2 4129:1 4131:1 4133:3 4136:1 4143:1 4150:1 4158:1 4198:1 4199:1 4200:1 4216:1 4227:1 4230:1 4239:1 4242:1 4246:2 4265:2 4272:1 4277:1 4279:9 4311:2 4312:1 4315:1 4316:1 4317:1 4318:1 4326:1 4333:2 4358:9 4398:2 4400:2 4426:1 4429:2 4442:1 4461:1 4482:1 4513:1 4532:1 4534:4 4555:1 4565:2 4573:1 4582:1 4584:1 4586:1 4600:1 4643:2 4661:1 4663:1 4667:1 4680:2 4698:1 4717:2 4737:2 4757:1 4770:2 4771:1 4786:1 4792:1 4794:1 4797:1 4811:1 4841:1 4855:1 4866:1 4868:1 4884:1 4895:1 4910:6 4933:1 4936:1 4958:1 4969:1 5032:5 5058:1 5074:1 5083:1 5089:1 5133:1 5149:1 5182:2 5187:1 5199:1 5206:10 5218:1 5220:2 5222:1 5223:1 5244:1 5249:1 5250:1 5257:9 5274:2 5277:1 5290:3 5293:1 5308:1 5310:1 5317:1 5321:2 5331:1 5338:1 5348:1 5369:1 5395:1 5396:1 5418:1 5422:1 5429:2 5434:1 5438:1 5453:1 5456:4 5461:1 5492:1 5495:1 5499:2 5506:1 5508:1 5528:2 5530:1 5533:1 5555:2 5572:1 5574:1 5577:1 5579:2 5583:1 5587:1 5592:2 5593:2 5606:2 5621:1 5624:2 5625:2 5651:2 5656:1834 5670:1 5678:1 5682:2 5700:1 5714:1 5716:1 5726:3 5728:3 5741:1 5761:1 5765:1 5772:1 5779:1 5784:2 5787:1 5793:1 5814:2 5824:1 5829:2 5862:1 5873:1 5894:1 5904:1 5915:1 5927:1 5939:2 5945:1 5947:1 5952:1 5955:2 5981:1 5983:1 5987:1 5992:2 5993:2 5997:1 6004:1 6025:1 6033:1 6050:1 6066:1 6067:1 6106:7 6108:1 6109:1 6142:2 6156:1 6165:1 6171:1 6176:1 6179:2 6185:1 6189:1 6201:2 6210:2 6240:1 6244:1 6248:2 6268:2 6296:1 6302:1 6308:1 6335:2 6359:1 6366:1 6367:1 6373:2 6376:1 6378:2 6397:1 6399:1 6403:1 6410:2 6417:1 6435:1 6460:1 6468:1 6479:2 6507:1 6513:1 6518:1 6540:1 6550:2 6558:1 6567:3 6570:1 6577:2 6578:1 6590:1 6593:1 6597:1 6603:2 6606:1 6612:2 6614:2 6631:2 6642:2 6655:1 6662:1 6673:2 6674:1 6700:1 6702:1 6708:2 6709:2 6711:1 6713:1 6728:3 6732:1 6733:2 6746:3 6747:1 6756:1 6793:1 6820:1 6822:1 6832:1 6833:1 6870:2 6892:8 6894:1 6901:1 6906:1 6914:1 6916:1 6957:1 6961:1 6975:3 6976:1 6986:1 6989:2 6998:1 7000:1 7012:4 7028:1 7038:1 7066:1 7075:1 7095:2 7098:1 7107:1 7112:1 7117:4 7119:4 7121:2 7124:1 7129:1 7131:1 7132:1 7138:1 7140:4 7142:3 7146:2 7147:3 7158:3 7162:1 7171:1 7175:1 7199:1 7203:1 7206:1 7211:1 7213:1 7253:1 7271:1 7272:1 7274:1 7283:1 7300:2 7315:1 7340:1 7345:1 7360:1 7388:1 7404:1 7405:2 7408:1 7419:1 7421:1 7426:1 7458:1 7461:1 7462:1 7470:1 7480:1 7488:1 7506:1 7519:1 7520:1 7529:1 7530:1 7555:1 7572:1 7575:2 7588:1 7589:2 7636:1 7665:1 7682:1 7689:2 7691:1 7693:1 7697:1 7699:1 7700:1 7702:1 7712:1 7720:1 7722:1 7732:2 7740:2 7741:1 7744:1 7768:4 7779:2 7792:1 7797:1 7818:1 7821:1 7823:3 7835:2 7853:1 7860:1 7872:1 7873:1 7878:1 7891:1 7898:1 7905:1 7931:1 7938:1 7944:1 7953:2 7965:1 7969:1 7974:3 7975:9 7977:2 7985:1 7991:1 7994:3 8003:1 8006:1 8022:1 8033:1 8070:1 8075:1 8087:1 8093:1 8104:1 8108:1 8136:1 8140:1 8145:1 8154:1 8179:1 8195:1 8202:1 8208:1 8213:2 8221:1 8250:3 8251:1 8254:2 8257:1 8259:1 8261:3 8278:1 8280:1 8299:1 8312:3 8327:1 8342:2 8345:5 8348:1 8359:2 8364:1 8377:1 8378:1 8391:1 8428:6 8450:1 8462:1 8488:1 8494:1 8497:1 8512:1 8520:1 8532:1 8533:1 8554:1 8575:1 8590:2 8601:1 8608:1 8619:2 8621:3 8646:2 8647:1 8653:1 8663:1 8668:1 8673:1 8675:1 8679:3 8682:1 8683:1 8687:1 8688:1 8693:1 8707:1 8755:1 8756:1 8765:1 8766:1 8772:1 8775:1 8776:1 8777:3 8783:9 8788:2 8792:2 8807:2 8828:2 8852:2 8862:3 8867:1 8880:1 8899:1 8909:2 8913:1 8923:1 8931:1 8943:2 8958:2 8969:1 8981:3 8985:1 8997:5 9001:1 9003:1 9008:2 9015:1 9027:3 9059:2 9068:1 9084:1 9089:1 9095:1 9111:1 9113:1 9121:1 9128:1 9139:2 9143:2 9148:1 9151:1 9152:1 9155:1 9160:1 9162:1 9168:1 9169:1 9171:1 9176:2 9181:3 9184:2 9203:1 9207:2 9232:2 9245:1 9246:1 9258:1 9260:1 9262:2 9263:1 9281:2 9293:1 9299:1 9311:1 9319:1 9330:1 9340:1 9345:1 9370:1 9387:1 9396:1 9399:1 9402:2 9407:2 9438:1 9440:1 9442:4 9445:2 9468:1 9480:1 9547:1 9554:1 9568:1 9585:1 9587:1 9589:1 9598:1 9599:2 9604:1 9605:1 9618:1 9630:1 9634:1 9655:2 9657:1 9661:1 9668:1 9688:2 9703:2 9721:1 9726:1 9731:1 9735:1 9737:1 9751:1 9768:1 9772:1 9776:1 9778:2 9782:1 9784:1 9814:1 9823:2 9824:1 9834:1 9835:1 9844:1 9849:2 9871:1 9873:5 9890:2 9914:1 9915:1 9922:1 9932:1 9945:1 9946:1 9963:1 9966:1 9974:1 9985:7 9996:1 10007:1 10011:1 10020:1 10028:1 10043:2 10065:1 10070:1 10089:1 10102:2 10109:1 10121:3 10125:1 10128:1 10129:2 10130:1 10146:2 10152:1 10166:1 10168:1 10193:1 10207:1 10208:1 10209:1 10214:1 10216:2 10217:1 10221:2 10261:1 10281:1 10287:1 10288:1 10291:1 10304:1 10314:1 10330:6 10340:2 10379:1 10384:3 10389:1 10390:1 10393:2 10394:2 10395:1 10403:1 10407:1 10411:1 10415:2 10416:1 10417:2 10438:3 10439:4 10441:1 10445:1 10455:4 10460:1 10462:1 10463:1 10470:1 10485:1 10512:1 10514:1 10524:2 10532:1 10533:1 10535:1 10541:1 10574:1 10583:2 10595:2 10612:1 10658:1 10662:1 10674:1 10676:1 10683:1 10706:1 10721:1 10727:1 10742:1 10743:1 10777:1 10785:1 10803:1 10812:1 10817:1 10839:1 10843:1 10848:1 10852:3 10854:1 10861:1 10879:1 10881:2 10885:2 10907:1 10920:1 10932:2 10935:1 10941:1 10943:4 10953:2 10962:1 10966:1 10970:1 10973:1 10975:4 10980:1 10984:1 10989:1 10990:1 10999:3 11003:1 11004:1 11021:1 11022:1 11043:4 11051:2 11057:7 11059:1 11076:1 11101:1 11104:1 11108:2 11127:1 11138:3 11140:1 11143:1 11153:1 11160:2 11166:1 11180:1 11187:1 11194:1 11209:1 11215:1 11237:1 11248:1 11253:2 11288:1 11316:2 11329:3 11331:6 11332:3 11334:1 11349:1 11352:3 11358:2 11364:3 11368:2 11371:2 11374:1 11384:1 11390:1 11415:2 11416:2 11417:1 11419:1 11424:2 11436:32 11438:1 11442:1 11448:1 11455:1 11457:1 11463:2 11470:5 11472:3 11473:1 11481:2 11506:1 11516:1 11519:1 11525:1 11527:1 11534:1 11549:1 11565:1 11574:2 11575:2 11578:1 11590:1 11605:1 11635:1 11639:1 11655:1 11656:1 11665:1 11687:1 11691:1 11694:1 11712:1 11713:3 11724:1 11743:1 11755:2 11760:2 11776:1 11781:3 11783:1 11784:3 11794:2 11810:1 11838:1 11845:1 11847:1 11862:1 11863:1 11867:2 11869:1 11878:1 11896:1 11898:1 11948:1 11949:1 11983:1 11989:1 12015:1 12021:2 12028:1 12030:1 12033:1 12043:1 12051:1 12055:1 12061:1 12076:1 12089:1 12100:1 12118:1 12127:3 12144:17 12156:1 12176:3 12183:3 12190:1 12267:2 12269:1 12272:1 12281:1 12286:1 12313:3 12314:1 12322:5 12345:1 12348:1 12360:1 12365:2 12366:3 12371:2 12374:1 12381:1 12384:2 12389:1 12390:1 12402:1 12408:1 12419:3 12424:1 12426:4 12442:2 12450:1 12474:2 12479:1 12486:1 12501:1 12516:1 12520:1 12536:1 12556:1 12568:1 12575:1 12580:1 12583:1 12588:1 12596:2 12630:1 12637:1 12641:1 12664:2 12676:1 12685:1 12694:1 12695:1 12703:1 12718:1 12731:2 12734:2 12736:1 12738:1 12745:1 12758:1 12772:1 12784:1 12801:3 12804:1 12809:1 12811:4 12824:1 12830:3 12840:1 12842:1 12847:1 12861:1 12866:1 12871:1 12883:1 12892:1 12919:1 12925:1 12926:4 12929:1 12931:1 12934:1 12946:1 12947:2 12948:1 12949:1 12962:1 12992:1 13000:1 13005:1 13019:1 13050:1 13064:1 13068:1 13082:1 13091:1 13121:1 13136:1 13139:1 13160:1 13178:1 13179:1 13206:1 13208:1 13209:1 13213:3 13242:2 13245:1 13256:2 13278:1 13280:2 13302:1 13304:1 13313:1 13316:1 13318:1 13325:1 13326:3 13333:1 13334:1 13337:1 13347:1 13358:1 13391:3 13413:1 13421:1 13441:3 13443:4 13445:1 13471:2 13502:1 13524:1 13531:1 13545:1 13549:1 13554:2 13572:1 13581:1 13583:2 13590:1 13596:1 13600:1 13602:1 13604:1 13605:2 13663:1 13680:1 13692:2 13693:2 13696:1 13708:2 13711:1 13714:4 13741:1 13745:2 13752:1 13766:4 13803:1 13807:5 13836:1 13843:1 13860:1 13867:1 13873:1 13875:1 13882:1 13887:2 13896:2 13905:1 13906:1 13912:1 13915:1 13922:1 13937:1 13942:1 13952:1 13967:3 13990:1 14004:1 14007:1 14016:1 14024:2 14028:1 14032:6 14036:1 14037:1 14043:1 14081:2 14109:1 14120:1 14130:1 14140:1 14144:1 14151:1 14179:1 14181:1 14186:1 14189:1 14193:1 14198:1 14199:3 14204:2 14209:1 14212:1 14217:2 14258:1 14262:4 14280:1 14282:1 14285:1 14295:1 14304:1 14307:1 14314:1 14315:1 14319:1 14326:1 14363:8 14368:2 14400:1 14404:1 14410:1 14412:1 14414:1 14433:2 14437:1 14443:1 14449:3 14458:1 14470:1 14482:1 14498:1 14499:1 14513:1 14515:1 14559:1 14564:1 14565:1 14586:1 14625:1 14631:1 14633:1 14642:5 14662:1 14668:3 14678:3 14683:1 14700:1 14707:1 14717:1 14725:1 14729:2 14750:2 14756:1 14759:1 14763:1 14769:1 14771:1 14776:1 14832:1 14844:2 14845:1 14850:1 14857:1 14879:1 14889:1 14895:3 14896:2 14900:1 14931:2 14936:1 14945:1 14951:1 14959:9 14964:1 14977:2 14979:2 14985:1 15003:2 15032:1 15033:1 15037:1 15052:1 15054:1 15099:8 15100:1 15133:1 15136:2 15138:1 15155:1 15165:1 15166:1 15184:1 15189:1 15198:1 15201:1 15202:1 15205:1 15208:1 15210:3 15222:1 15224:1 15229:2 15250:1 15260:1 15265:1 15281:2 15285:1 15287:1 15298:1 15300:1 15301:4 15306:1 15307:1 15309:1 15315:1 15320:1 15332:1 15339:1 15341:1 15346:1 15348:1 15359:4 15360:1 15369:1 15384:1 15385:1 15391:1 15416:1 15436:1 15441:1 15448:1 15456:2 15479:1 15490:1 15492:1 15519:2 15539:1 15544:1 15548:5 15550:1 15552:4 15554:2 15569:1 15573:3 15578:1 15584:1 15589:1 15597:1 15607:1 15618:2 15633:3 15634:1 15663:1 15664:1 15674:3 15699:1 15703:1 15712:3 15715:1 15723:1 15732:3 15745:1 15753:2 15754:4 15756:1 15774:1 15787:1 15795:1 15796:1 15799:1 15806:1 15814:2 15860:1 15875:1 15879:2 15881:1 15896:2 15918:1 15924:1 15958:1 15992:1 16018:1 16027:1 16030:1 16031:1 16045:1 16050:1 16051:2 16054:1 16059:2 16067:1 16074:1 16075:5 16078:1 16080:5 16083:1 16090:1 16093:2 16100:2 16101:2 16105:3 16110:1 16114:3 16117:1 16127:2 16140:1 16142:1 16163:2 16172:1 16177:1 16206:1 16207:1 16211:1 16225:3 16240:1 16246:1 16260:1 16262:1 16273:3 16278:1 16305:1 16312:1 16374:1 16376:1 16391:1 16395:1 16418:1 16427:1 16431:1 16446:1 16473:1 16502:1 16519:1 16523:1 16531:2 16552:1 16553:1 16560:1 16575:1 16580:2 16581:1 16584:1 16585:1 16596:2 16601:1 16602:2 16621:1 16628:2 16631:1 16650:1 16658:1 16676:9 16678:1 16679:1 16708:1 16712:1 16727:1 16731:3 16745:1 16749:2 16758:1 16810:2 16816:2 16828:1 16844:2 16850:1 16851:1 16852:1 16867:1 16874:2 16890:1 16893:1 16921:1 16936:2 16949:1 16951:1 16955:1 16981:1 16987:1 16999:2 17005:1 17008:1 17029:1 17052:3 17056:1 17062:9 17063:2 17068:1 17071:2 17078:1 17079:1 17083:1 17084:1 17089:1 17092:1 17099:1 17111:1 17131:1 17132:1 17133:1 17151:3 17156:2 17183:2 17189:1 17201:1 17202:1 17230:1 17231:1 17237:1 17242:1 17259:3 17263:3 17266:2 17268:3 17273:1 17279:2 17287:4 17339:1 17345:1 17379:1 17403:5 17414:1 17417:1 17429:1 17453:1 17461:1 17463:1 17468:1 17495:1 17501:2 17504:1 17518:1 17533:2 17543:1 17549:1 17553:1 17554:1 17555:2 17566:1 17591:6 17594:1 17604:1 17627:1 17632:1 17634:1 17643:1 17652:1 17660:1 17670:1 17672:1 17675:1 17696:1 17753:1 17759:1 17769:1 17774:4 17776:1 17798:1 17799:1 17801:1 17809:1 17810:2 17818:1 17823:1 17826:1 17855:1 17893:1 17894:1 17897:5 17922:1 17925:1 17929:1 17935:1 17936:1 17986:1 17989:1 17996:1 18002:1 18003:1 18022:1 18023:1 18027:1 18032:1 18045:1 18053:1 18074:1 18077:2 18099:3 18126:1 18141:1 18150:1 18153:2 18175:1 18179:1 18180:3 18198:1 18227:1 18230:1 18245:1 18258:1 18264:3 18269:1 18272:1 18274:1 18303:1 18310:2 18319:1 18333:1 18339:1 18357:2 18358:1 18360:2 18362:1 18380:2 18383:1 18386:1 18390:1 18393:1 18398:2 18399:1 18415:1 18432:1 18434:1 18453:1 18455:1 18459:2 18465:1 18499:1 18523:3 18525:1 18531:1 18534:1 18535:2 18545:1 18556:1 18564:1 18606:7 18613:1 18616:2 18627:1 18629:1 18634:1 18638:1 18644:1 18652:1 18656:1 18665:2 18687:1 18689:1 18697:1 18703:1 18707:1 18709:1 18710:1 18711:2 18713:1 18717:1 18725:2 18742:1 18752:1 18763:1 18765:1 18769:1 18791:2 18807:1 18810:1 18815:1 18851:1 18865:1 18881:1 18897:1 18909:1 18973:1 19013:1 19014:1 19015:1 19025:1 19051:1 19053:1 19062:1 19064:2 19085:1 19115:1 19117:3 19121:1 19152:1 19168:1 19215:2 19228:1 19270:1 19278:1 19292:1 19311:1 19315:2 19324:4 19339:1 19344:1 19365:1 19367:2 19386:3 19388:2 19391:1 19407:1 19418:2 19444:1 19450:2 19452:1 19495:1 19498:2 19503:1 19506:1 19509:1 19512:1 19524:4 19525:1 19535:1 19536:3 19538:2 19549:1 19551:2 19555:1 19556:1 19558:1 19568:1 19582:1 19586:1 19595:1 19597:1 19598:1 19600:4 19616:1 19621:1 19630:1 19638:1 19645:2 19649:2 19655:10 19659:1 19664:4 19667:1 19680:1 19696:3 19715:3 19718:2 19720:1 19721:1 19724:1 19727:1 19757:1 19777:1 19786:1 19816:3 19829:1 19833:1 19851:1 19857:5 19891:1 19896:1 19908:2 19910:1 19918:4 19929:3 19936:2 19965:1 19974:1 19975:4 19977:1 19991:1 19992:1 19995:1 19999:1 20015:1 20022:1 20034:3 20035:1 20037:1 20039:1 20040:1 20041:1 20044:1 20049:6 20050:1 20075:1 20078:1 20081:1 20101:1 20102:1 20132:1 20170:1 20171:1 20185:1 20188:1 20210:1 20223:1 20251:1 20256:1 20258:1 20266:1 20267:2 20276:1 20284:1 20298:2 20305:3 20363:1 20366:1 20368:1 20379:1 20382:1 20383:1 20387:2 20390:5 20396:1 20402:1 20413:1 20440:1 20451:1 20453:1 20482:7 20494:3 20519:2 20529:1 20552:1 20598:1 20614:1 20621:1 20636:1 20669:1 20670:1 20706:1 20735:1 20746:1 20758:1 20817:1 20822:1 20828:2 20844:1 20846:1 20851:3 20855:2 20874:1 20875:1 20878:1 20880:1 20892:1 20912:1 20933:1 20955:1 20956:1 20980:1 21034:3 21072:1 21080:2 21083:2 21096:1 21099:2 21110:2 21111:1 21113:1 21118:2 21142:1 21180:1 21188:2 21202:1 21213:2 21216:1 21223:2 21265:1 21271:2 21274:1 21276:2 21298:2 21315:1 21318:1 21333:1 21341:1 21349:2 21353:1 21362:1 21374:3 21378:1 21379:2 21386:1 21402:1 21446:1 21451:3 21459:1 21463:1 21470:2 21494:1 21510:1 21512:1 21538:1 21539:1 21540:1 21547:1 21568:1 21579:1 21586:1 21589:2 21619:1 21623:1 21626:2 21635:2 21637:2 21639:1 21640:3 21646:1 21667:1 21674:2 21707:4 21715:1 21718:1
1 5:2 10:1 23:1 35:1 53:1 66:1 77:1 91:1 99:1 101:1 103:2 107:1 123:1 124:1 134:1 140:1 163:1 181:1 233:1 255:1 260:3 261:1 270:1 280:1 308:1 309:1 319:1 324:2 343:5 369:1 370:1 411:1 419:1 432:1 439:6 454:1 461:3 466:1 467:1 468:1 476:1 490:1 501:1 510:1 523:2 527:1 547:1 563:3 564:2 571:1 573:3 578:1 582:3 593:1 602:2 605:2 626:1 628:1 635:1 644:1 660:1 663:5 667:2 677:1 685:1 706:1 717:1 749:1 761:1 762:2 778:1 790:1 806:2 827:1 835:1 849:1 854:1 861:1 869:1 889:1 893:1 894:1 901:1 908:2 918:1 943:1 954:1 956:2 964:1 989:1 1004:1 1005:1 1018:2 1034:1 1037:3 1040:1 1045:1 1056:1 1073:2 1074:1 1079:1 1081:1 1124:1 1142:1 1152:2 1160:1 1200:1 1205:2 1229:1 1237:3 1248:1 1261:2 1270:1 1278:1 1281:1 1282:3 1308:1 1320:5 1322:2 1331:1 1349:1 1351:1 1356:1 1358:3 1375:1 1392:1 1402:9 1407:4 1419:3 1430:1 1435:1 1441:2 1453:1 1457:9 1474:1 1475:4 1476:2 1478:6 1481:1 1482:1 1486:1 1488:2 1489:3 1507:2 1530:3 1531:3 1536:2 1549:1 1598:1 1600:2 1622:1 1624:1 1644:1 1651:2 1653:1 1659:2 1683:2 1689:1 1698:1 1712:1 1715:1 1743:1 1771:1 1774:1 1779:1 1781:1 1785:1 1789:1 1797:2 1866:1 1875:1 1877:3 1879:2 1884:3 1885:2 1886:2 1888:4 1889:1 1892:1 1893:2 1895:1 1898:1 1899:3 1903:1 1904:1 1908:1 1912:1 1913:1 1921:1 1927:1 1951:1 1953:2 1973:2 2007:2 2009:1 2025:1 2057:1 2077:1 2079:1 2105:1 2107:1 2112:1 2113:1 2114:1 2128:1 2142:1 2161:1 2171:1 2172:1 2179:1 2180:2 2181:2 2209:1 2215:1 2233:1 2240:2 2267:1 2271:1 2274:1 2281:1 2288:1 2291:2 2306:1 2340:1 2345:4 2356:5 2359:2 2375:1 2376:1 2412:2 2427:1 2429:1 2434:1 2436:1 2441:1 2456:1 2458:1 2460:2 2465:1 2472:2 2485:2 2486:1 2489:1 2499:1 2503:1 2506:4 2507:1 2511:1 2520:2 2522:1 2527:1 2532:1 2545:1 2552:2 2553:1 2562:1 2567:1 2572:1 2574:1 2580:1 2583:1 2595:3 2613:1 2619:2 2621:1 2623:1 2626:1 2656:4 2684:1 2691:1 2695:2 2701:1 2704:6 2706:1 2715:2 2718:5 2749:1 2750:3 2752:2 2753:3 2768:1 2775:1 2795:1 2798:3 2804:1 2835:1 2840:1 2845:1 2847:1 2862:2 2907:1 2913:1 2919:1 2927:2 2930:2 2932:1 2941:1 2949:2 2953:1 2959:1 2965:1 2968:2 2971:2 2988:1 2989:1 2992:1 3024:1 3027:2 3032:1 3043:1 3059:1 3062:1 3066:1 3071:2 3075:1 3093:2 3124:4 3153:8 3156:2 3161:1 3166:1 3179:1 3184:1 3190:1 3194:1 3208:2 3228:1 3263:2 3271:3 3274:1 3275:1 3276:2 3290:1 3295:1 3299:1 3302:2 3308:1 3322:2 3325:1 3329:2 3331:3 3332:1 3337:1 3340:2 3341:2 3343:1 3346:2 3354:4 3355:3 3358:5 3360:4 3362:1 3373:1 3391:1 3414:1 3417:1 3439:1 3445:1 3450:1 3451:3 3455:1 3465:2 3470:1 3477:1 3493:1 3509:1 3521:2 3523:1 3524:1 3538:1 3539:1 3548:1 3552:1 3557:1 3576:1 3613:1 3622:1 3631:1 3633:1 3644:1 3661:1 3672:1 3679:3 3684:1 3692:1 3697:1 3712:1 3717:1 3718:1 3722:1 3732:1 3747:1 3749:2 3755:1 3760:2 3767:2 3772:1 3775:5 3777:2 3781:1 3788:1 3789:1 3790:1 3793:1 3800:3 3806:2 3808:2 3815:1 3819:1 3821:1 3828:3 3856:4 3857:1 3865:1 3887:1 3888:2 3896:1 3899:1 3900:1 3903:1 3904:1 3910:1 3916:1 3925:6 3927:1 3928:1 3939:1 3948:1 3957:5 3965:4 3966:1 3979:1 3981:1 3988:1 3990:1 3997:3 3998:2 4009:1 4025:1 4026:2 4032:1 4036:1 4038:1 4065:2 4090:1 4097:1 4101:2 4103:1 4104:2 4106:2 4118:1 4121:2 4129:1 4131:1 4133:3 4136:1 4143:2 4150:1 4158:1 4198:1 4199:1 4200:1 4216:1 4227:1 4230:1 4239:1 4242:1 4246:2 4265:2 4272:1 4277:1 4279:10 4311:2 4312:1 4315:1 4316:1 4317:1 4318:1 4326:1 4333:2 4358:9 4361:1 4387:1 4398:2 4400:2 4426:1 4429:2 4442:1 4447:1 4461:1 4482:1 4489:1 4498:1 4513:1 4532:1 4534:4 4555:1 4565:3 4573:1 4582:1 4584:1 4586:1 4600:1 4627:1 4643:2 4661:1 4663:1 4667:1 4680:2 4698:1 4717:2 4737:2 4757:1 4770:2 4771:1 4786:1 4792:1 4794:1 4797:1 4811:1 4841:1 4855:1 4866:1 4868:2 4884:1 4895:1 4910:6 4933:1 4936:2 4958:1 4969:1 5018:2 5032:6 5058:1 5074:1 5083:1 5089:1 5133:1 5149:1 5156:1 5182:2 5187:1 5199:1 5205:1 5206:10 5218:1 5220:2 5222:1 5223:1 5244:1 5249:1 5250:1 5257:11 5274:2 5277:1 5290:3 5293:1 5307:1 5308:1 5310:1 5317:1 5321:3 5331:1 5338:1 5348:1 5369:1 5395:1 5396:1 5418:1 5422:1 5429:2 5434:1 5438:1 5453:1 5456:4 5461:1 5492:1 5495:1 5499:2 5506:1 5508:1 5528:2 5530:1 5533:1 5555:2 5572:1 5574:1 5577:1 5579:4 5583:1 5587:1 5592:2 5593:2 5606:2 5621:1 5624:2 5625:2 5647:1 5651:2 5656:1929 5670:1 5678:1 5679:1 5682:2 5687:1 5700:1 5714:1 5716:1 5726:3 5728:3 5741:2 5761:1 5765:1 5772:1 5779:1 5784:2 5787:1 5793:1 5814:2 5824:1 5829:2 5862:2 5873:1 5894:1 5901:1 5904:1 5915:1 5927:1 5939:2 5941:1 5945:1 5947:1 5952:1 5955:2 5981:1 5983:1 5987:2 5992:2 5993:2 5997:1 6004:1 6025:1 6033:1 6050:1 6066:1 6067:1 6106:7 6108:1 6109:1 6142:3 6156:1 6165:1 6171:1 6176:1 6179:2 6185:1 6189:1 6192:1 6201:2 6210:2 6240:1 6244:1 6248:2 6268:2 6296:1 6302:1 6308:1 6335:2 6359:1 6366:1 6367:1 6373:2 6376:1 6378:2 6397:1 6399:1 6403:1 6410:2 6417:1 6435:1 6460:1 6468:1 6479:2 6488:1 6507:1 6513:1 6518:1 6540:1 6550:2 6558:1 6567:3 6570:1 6577:2 6578:1 6590:1 6593:1 6597:1 6603:2 6606:1 6612:2 6614:2 6631:2 6642:2 6655:1 6662:1 6673:2 6674:1 6700:1 6702:2 6708:2 6709:2 6711:1 6713:1 6728:3 6732:1 6733:2 6746:3 6747:1 6756:1 6793:1 6820:1 6822:1 6832:2 6833:1 6870:2 6871:1 6892:8 6894:1 6899:1 6901:1 6906:1 6914:1 6916:1 6957:1 6961:1 6975:4 6976:1 6986:1 6989:2 6998:1 7000:1 7012:4 7028:1 7038:1 7066:1 7075:1 7084:1 7095:2 7098:1 7107:1 7112:1 7117:4 7119:4 7121:2 7124:1 7129:1 7131:1 7132:1 7136:1 7138:1 7140:4 7142:3 7146:2 7147:4 7158:3 7162:1 7171:1 7175:1 7199:1 7203:1 7206:1 7211:1 7213:1 7215:1 7253:1 7271:1 7272:1 7274:1 7283:1 7300:2 7315:1 7340:1 7345:1 7360:1 7388:1 7404:1 7405:2 7408:1 7419:1 7421:1 7426:1 7458:1 7461:1 7462:1 7466:1 7470:1 7480:1 7488:1 7504:1 7506:1 7519:1 7520:1 7529:1 7530:1 7555:1 7572:1 7575:3 7588:1 7589:2 7636:1 7665:1 7682:1 7689:2 7691:1 7693:1 7697:2 7699:1 7700:2 7702:1 7712:1 7720:1 7722:1 7732:2 7740:2 7741:1 7744:1 7768:4 7779:2 7792:1 7797:1 7818:1 7821:1 7823:3 7835:3 7853:1 7860:1 7872:1 7873:1 7878:1 7891:1 7898:1 7905:1 7931:1 7938:1 7940:1 7944:1 7953:2 7965:1 7969:1 7974:3 7975:9 7977:2 7985:1 7991:1 7994:3 8003:1 8006:1 8022:1 8033:1 8059:1 8070:1 8075:1 8087:1 8093:1 8095:1 8104:1 8108:1 8136:1 8140:1 8145:1 8154:1 8179:1 8188:1 8195:1 8202:1 8208:1 8213:2 8221:1 8250:4 8251:1 8254:2 8257:1 8259:1 8261:4 8278:1 8280:1 8299:1 8312:3 8327:1 8330:1 8342:2 8345:5 8348:1 8359:2 8364:1 8377:1 8378:1 8391:2 8428:6 8450:1 8462:1 8488:1 8494:1 8497:1 8512:1 8520:1 8532:1 8533:1 8554:1 8575:1 8590:2 8601:1 8608:1 8619:2 8621:3 8646:2 8647:1 8653:1 8663:1 8668:1 8673:1 8675:1 8679:5 8682:1 8683:1 8687:1 8688:1 8693:1 8697:1 8707:1 8752:1 8755:1 8756:1 8765:1 8766:2 8772:1 8775:1 8776:1 8777:3 8783:9 8788:2 8792:2 8807:2 8828:2 8852:2 8862:3 8867:1 8880:2 8899:1 8909:2 8913:1 8923:1 8931:1 8943:2 8952:1 8958:2 8969:1 8981:3 8985:1 8997:5 9001:1 9003:1 9008:2 9015:1 9027:3 9059:2 9068:1 9084:1 9089:1 9095:1 9111:1 9113:1 9121:1 9128:1 9139:2 9143:2 9148:1 9151:1 9152:1 9155:1 9160:2 9162:2 9168:1 9169:1 9171:1 9176:2 9179:2 9181:3 9184:2 9203:1 9207:2 9232:2 9245:1 9246:1 9258:1 9260:1 9262:3 9263:1 9281:2 9293:1 9299:1 9311:1 9319:1 9330:1 9340:1 9345:1 9347:1 9370:1 9387:1 9396:1 9399:1 9402:2 9407:2 9438:1 9440:1 9442:4 9445:2 9468:1 9480:1 9547:1 9554:1 9568:1 9585:2 9587:1 9589:1 9598:1 9599:2 9604:1 9605:1 9612:1 9618:1 9630:1 9634:1 9655:2 9657:1 9661:1 9668:1 9688:2 9703:2 9714:1 9721:1 9726:1 9731:1 9735:1 9737:1 9751:1 9768:1 9772:1 9773:1 9776:1 9778:2 9782:1 9784:1 9814:1 9823:2 9824:1 9834:1 9835:1 9844:1 9849:2 9871:1 9873:6 9883:1 9890:2 9914:1 9915:1 9922:1 9932:1 9945:1 9946:1 9963:1 9966:1 9974:1 9985:7 9996:2 10007:1 10011:1 10020:1 10028:1 10043:2 10065:1 10070:1 10089:1 10102:2 10109:1 10116:1 10121:3 10125:1 10128:1 10129:2 10130:1 10146:2 10152:1 10166:1 10168:1 10193:1 10207:1 10208:1 10209:1 10214:1 10216:2 10217:2 10221:2 10261:1 10281:1 10287:1 10288:1 10291:1 10304:1 10314:1 10330:6 10340:2 10379:1 10384:3 10389:1 10390:2 10393:2 10394:2 10395:1 10403:1 10407:1 10411:1 10415:2 10416:1 10417:2 10438:3 10439:4 10441:1 10445:1 10455:4 10460:1 10462:1 10463:1 10470:1 10485:1 10512:1 10514:1 10524:2 10532:2 10533:1 10535:1 10541:1 10574:1 10583:2 10595:2 10612:1 10650:1 10658:1 10662:1 10674:1 10676:1 10683:1 10706:1 10721:1 10727:1 10742:1 10743:1 10777:1 10785:1 10803:1 10812:1 10817:1 10839:1 10843:1 10848:1 10852:3 10854:1 10861:1 10879:1 10881:2 10885:2 10896:1 10907:1 10920:1 10932:2 10935:1 10941:1 10943:4 10953:2 10962:1 10966:1 10970:1 10973:1 10975:5 10980:1 10984:1 10989:1 10990:1 10999:3 11003:1 11004:1 11021:1 11022:1 11043:4 11051:2 11057:7 11059:1 11076:1 11101:1 11104:1 11108:2 11127:1 11138:3 11140:1 11143:1 11153:1 11160:2 11166:1 11180:1 11187:1 11194:1 11209:1 11215:1 11237:1 11248:1 11253:2 11288:1 11316:2 11329:3 11331:6 11332:3 11334:1 11349:1 11352:3 11358:2 11364:3 11368:2 11371:2 11374:1 11384:1 11390:1 11415:2 11416:2 11417:1 11419:1 11424:2 11436:33 11438:1 11442:1 11448:1 11455:1 11457:1 11463:3 11470:5 11472:3 11473:1 11481:2 11506:1 11516:1 11519:1 11525:1 11527:1 11534:1 11549:1 11565:1 11574:2 11575:2 11578:1 11590:1 11605:1 11635:1 11639:1 11655:1 11656:1 11665:1 11687:1 11691:1 11694:2 11712:2 11713:3 11724:1 11743:1 11755:2 11760:3 11776:1 11781:3 11783:1 11784:3 11794:2 11810:1 11838:1 11845:1 11847:1 11862:1 11863:1 11867:2 11869:1 11878:2 11896:1 11898:1 11948:1 11949:1 11983:1 11989:1 12015:1 12021:2 12028:1 12030:1 12033:1 12043:1 12051:1 12055:1 12061:1 12070:1 12076:1 12089:1 12100:1 12118:1 12127:3 12144:18 12156:1 12176:3 12183:3 12190:1 12267:2 12269:1 12272:1 12281:1 12286:1 12313:3 12314:1 12322:5 12345:1 12348:1 12360:1 12365:2 12366:3 12371:2 12374:1 12381:1 12384:2 12389:1 12390:1 12402:1 12408:1 12419:4 12424:1 12426:4 12442:2 12450:1 12474:2 12479:1 12486:1 12488:1 12501:1 12516:1 12520:1 12536:1 12556:1 12568:1 12575:1 12580:1 12583:1 12588:1 12596:2 12630:1 12637:1 12641:1 12664:2 12676:1 12685:1 12694:1 12695:1 12703:1 12718:1 12731:2 12734:2 12736:1 12738:1 12745:1 12758:1 12772:1 12784:1 12801:3 12804:1 12809:2 12811:4 12824:1 12830:3 12840:1 12842:1 12847:1 12861:1 12866:1 12871:1 12883:1 12892:2 12899:1 12919:1 12925:1 12926:4 12929:1 12931:1 12934:1 12946:1 12947:2 12948:1 12949:1 12951:1 12962:2 12992:1 13000:1 13005:1 13019:1 13050:1 13064:1 13068:1 13082:1 13091:1 13121:1 13136:1 13139:1 13160:1 13178:1 13179:1 13206:1 13208:1 13209:1 13213:3 13242:2 13245:1 13256:2 13278:1 13280:2 13302:1 13304:1 13313:1 13316:1 13318:1 13325:1 13326:3 13333:1 13334:1 13337:1 13347:1 13358:1 13391:4 13413:1 13421:1 13441:3 13443:4 13445:1 13471:2 13502:1 13524:1 13531:1 13545:1 13549:1 13554:2 13572:1 13581:1 13583:2 13590:1 13596:1 13600:1 13602:1 13604:1 13605:2 13659:1 13663:1 13680:1 13692:2 13693:2 13696:1 13708:2 13711:1 13714:4 13741:2 13745:2 13752:1 13766:4 13803:1 13807:5 13836:1 13843:1 13860:1 13867:1 13873:1 13875:1 13882:1 13887:2 13896:2 13905:1 13906:1 13912:1 13915:1 13922:1 13937:1 13942:1 13952:1 13967:3 13990:1 14004:1 14007:1 14016:1 14024:2 14028:1 14032:6 14036:1 14037:1 14043:1 14081:2 14109:1 14120:1 14130:1 14140:1 14144:1 14151:1 14179:1 14181:1 14186:1 14189:1 14193:1 14198:1 14199:3 14201:1 14204:2 14206:1 14209:2 14212:1 14217:2 14219:1 14258:1 14262:4 14280:1 14282:1 14285:1 14295:1 14304:1 14307:1 14314:1 14315:1 14319:1 14321:1 14326:1 14363:8 14368:2 14369:1 14400:1 14404:1 14410:1 14412:1 14414:1 14432:1 14433:2 14437:1 14443:1 14449:3 14458:1 14470:1 14482:1 14498:1 14499:1 14513:1 14515:1 14559:1 14564:1 14565:1 14581:1 14586:1 14625:1 14631:1 14633:1 14642:5 14662:1 14668:3 14678:3 14683:1 14700:1 14707:1 14717:1 14725:2 14729:2 14750:2 14756:1 14759:1 14763:1 14769:2 14771:1 14776:1 14832:1 14844:2 14845:1 14850:1 14857:1 14871:1 14879:1 14889:1 14895:3 14896:2 14900:1 14931:2 14936:1 14945:1 14951:1 14959:9 14964:1 14977:2 14979:2 14985:1 14988:1 15003:2 15032:1 15033:1 15037:1 15048:1 15052:1 15054:1 15099:9 15100:1 15133:1 15136:2 15138:1 15155:1 15165:1 15166:1 15184:1 15189:1 15198:1 15201:1 15202:1 15205:1 15208:1 15210:3 15222:1 15224:1 15229:2 15250:1 15260:1 15265:1 15281:2 15285:1 15287:1 15298:1 15300:1 15301:4 15306:1 15307:1 15309:1 15315:1 15320:1 15332:1 15339:1 15341:1 15346:1 15348:1 15359:4 15360:1 15369:1 15384:1 15385:1 15391:1 15416:1 15436:1 15441:1 15447:1 15448:1 15456:2 15479:2 15490:1 15492:1 15519:2 15539:1 15544:1 15548:6 15550:1 15552:4 15554:2 15569:1 15573:3 15578:1 15584:1 15589:1 15597:1 15607:1 15618:2 15633:3 15634:1 15663:1 15664:1 15674:3 15699:1 15703:1 15712:3 15715:1 15723:1 15732:3 15745:1 15753:2 15754:4 15756:1 15774:1 15787:1 15795:2 15796:1 15799:1 15806:1 15814:2 15860:1 15875:1 15879:2 15881:1 15896:2 15918:1 15924:1 15958:1 15992:1 16018:1 16027:1 16030:1 16031:1 16045:1 16050:1 16051:2 16054:1 16058:1 16059:2 16067:1 16074:1 16075:5 16078:1 16080:5 16083:1 16090:1 16093:2 16100:2 16101:2 16105:3 16110:1 16114:3 16117:1 16127:2 16140:1 16142:1 16163:2 16172:1 16177:1 16206:1 16207:1 16211:1 16225:3 16240:1 16246:1 16260:1 16262:1 16273:4 16278:1 16305:1 16312:1 16374:1 16376:1 16391:1 16395:1 16418:1 16427:1 16431:1 16446:1 16473:1 16502:1 16519:1 16523:1 16531:2 16535:1 16552:2 16553:1 16560:1 16575:1 16580:2 16581:1 16584:1 16585:1 16596:2 16601:1 16602:2 16621:1 16628:2 16631:1 16650:1 16658:1 16676:10 16678:1 16679:1 16708:1 16712:1 16727:1 16731:3 16745:1 16749:2 16750:1 16758:1 16810:2 16816:2 16828:1 16844:2 16850:1 16851:1 16852:1 16867:2 16874:2 16890:1 16893:1 16921:1 16936:3 16949:1 16951:1 16955:1 16981:1 16987:1 16999:2 17005:1 17008:1 17029:1 17052:3 17056:1 17062:11 17063:2 17068:1 17071:2 17078:1 17079:1 17083:1 17084:1 17089:1 17092:1 17099:1 17111:1 17131:1 17132:1 17133:1 17151:3 17156:2 17183:2 17189:1 17201:1 17202:1 17230:1 17231:1 17237:1 17242:1 17259:3 17263:3 17266:2 17268:3 17273:1 17279:2 17287:4 17314:1 17339:1 17345:1 17379:1 17403:5 17414:1 17417:1 17429:1 17432:1 17453:1 17461:1 17463:1 17468:1 17495:1 17501:2 17504:1 17518:1 17533:2 17543:1 17549:1 17553:1 17554:1 17555:2 17566:1 17591:6 17594:1 17604:1 17627:1 17632:1 17634:1 17643:1 17652:1 17660:1 17670:1 17672:1 17675:1 17696:1 17753:1 17759:1 17769:1 17774:5 17776:1 17798:1 17799:1 17801:1 17809:1 17810:2 17818:1 17823:1 17826:1 17855:1 17893:1 17894:1 17897:5 17922:1 17925:1 17929:1 17935:1 17936:1 17986:1 17989:1 17996:1 18002:1 18003:1 18022:1 18023:1 18027:1 18032:1 18045:1 18053:1 18074:1 18077:2 18099:3 18126:1 18141:1 18150:1 18153:2 18175:1 18179:1 18180:3 18198:1 18200:1 18227:1 18230:1 18245:1 18258:1 18264:3 18269:1 18272:1 18274:1 18290:1 18303:1 18310:2 18319:1 18333:1 18339:1 18357:2 18358:1 18360:2 18362:1 18380:2 18383:1 18386:1 18390:1 18393:1 18398:2 18399:1 18415:1 18432:1 18434:1 18451:1 18453:1 18455:1 18459:2 18465:1 18499:1 18523:3 18525:1 18531:1 18534:1 18535:2 18542:1 18545:1 18556:1 18564:1 18606:8 18613:1 18616:2 18627:1 18629:1 18634:1 18638:1 18644:2 18652:1 18656:1 18665:2 18685:1 18687:1 18689:1 18697:1 18703:1 18707:1 18709:1 18710:1 18711:2 18713:1 18717:1 18725:2 18742:1 18752:2 18760:1 18763:1 18765:1 18769:1 18791:2 18796:1 18807:1 18810:1 18815:1 18851:2 18865:1 18881:1 18897:1 18909:1 18918:1 18973:1 19013:1 19014:1 19015:1 19025:1 19051:1 19053:1 19055:1 19062:1 19064:2 19085:1 19115:1 19117:3 19121:1 19126:1 19152:1 19168:1 19215:2 19228:1 19270:1 19278:1 19292:1 19311:1 19315:2 19324:4 19339:1 19344:1 19365:1 19367:2 19386:3 19388:2 19391:1 19407:1 19418:2 19444:1 19450:3 19452:1 19495:1 19498:2 19503:1 19506:1 19508:1 19509:1 19512:1 19524:4 19525:1 19535:1 19536:3 19538:2 19549:1 19551:2 19555:1 19556:1 19558:1 19568:1 19582:1 19586:1 19595:1 19597:1 19598:1 19600:5 19616:1 19621:1 19630:1 19638:1 19645:2 19649:2 19652:1 19655:10 19659:1 19664:4 19667:1 19680:1 19696:3 19715:3 19718:2 19720:1 19721:1 19724:1 19727:1 19757:1 19777:1 19786:1 19792:1 19816:3 19829:1 19833:1 19851:1 19857:6 19863:1 19891:1 19896:1 19908:2 19910:1 19913:1 19918:4 19929:3 19936:2 19965:1 19974:1 19975:4 19977:1 19991:1 19992:1 19995:1 19999:1 20015:1 20022:1 20034:4 20035:1 20037:1 20039:1 20040:2 20041:1 20044:1 20047:1 20049:6 20050:1 20075:1 20078:1 20081:1 20101:1 20102:1 20132:1 20170:1 20171:1 20185:1 20188:1 20210:1 20223:1 20251:1 20256:1 20258:1 20266:1 20267:2 20276:1 20284:1 20298:3 20305:3 20363:1 20366:1 20368:1 20379:1 20382:1 20383:1 20387:2 20390:5 20396:1 20402:1 20413:1 20440:2 20451:1 20453:1 20469:1 20482:7 20494:3 20519:2 20529:1 20552:1 20588:1 20598:1 20614:1 20621:1 20636:1 20669:1 20670:1 20706:1 20735:1 20746:1 20758:1 20817:1 20822:1 20828:2 20844:1 20845:1 20846:1 20851:3 20855:2 20874:1 20875:1 20878:1 20880:1 20892:1 20903:1 20912:1 20933:1 20955:1 20956:1 20980:1 21034:3 21072:1 21080:2 21083:2 21096:1 21099:2 21110:2 21111:1 21113:1 21118:2 21121:1 21142:1 21180:1 21188:2 21202:1 21213:2 21216:1 21223:2 21244:1 21265:1 21271:3 21274:1 21276:2 21298:2 21315:1 21318:1 21333:1 21341:1 21349:2 21353:1 21362:1 21374:3 21378:1 21379:2 21386:1 21402:1 21446:1 21451:3 21459:1 21463:1 21470:2 21494:1 21510:2 21512:1 21538:1 21539:1 21540:1 21547:1 21568:1 21579:1 21586:1 21589:2 21619:1 21623:1 21626:3 21635:2 21637:2 21639:1 21640:3 21646:1 21667:1 21674:2 21707:4 21713:1 21715:1 21718:1
1 5:2 10:1 23:1 35:1 53:1 66:1 77:1 91:1 99:1 101:1 103:3 107:1 123:1 124:1 134:1 140:1 163:1 181:1 233:1 255:1 260:3 261:1 270:1 280:1 308:1 309:1 319:1 324:2 343:5 369:1 370:1 411:1 419:1 432:1 439:6 454:1 461:3 466:1 467:1 468:1 476:1 490:1 501:1 510:1 523:2 527:1 547:1 563:3 564:2 571:1 573:3 578:1 582:3 593:1 602:2 605:2 626:1 628:1 635:1 644:1 660:1 663:5 667:2 677:1 685:1 706:1 717:1 749:1 761:1 762:2 778:1 790:1 806:2 827:1 835:1 849:1 854:2 861:1 869:1 889:1 893:1 894:1 901:1 908:2 918:1 943:1 954:1 956:2 959:1 964:1 989:1 1004:1 1005:1 1018:2 1034:1 1037:3 1040:1 1045:1 1056:1 1073:2 1074:1 1079:1 1081:1 1111:1 1124:1 1142:1 1152:2 1160:1 1200:1 1205:2 1229:1 1237:3 1248:1 1261:2 1270:1 1278:1 1281:1 1282:3 1308:1 1320:5 1322:2 1331:1 1349:1 1351:1 1356:1 1358:3 1375:1 1392:1 1402:9 1407:4 1419:3 1430:1 1435:1 1441:2 1453:1 1457:10 1463:1 1474:1 1475:4 1476:2 1478:6 1481:1 1482:1 1486:1 1488:2 1489:3 1507:2 1530:3 1531:3 1536:2 1549:1 1598:1 1600:2 1622:1 1624:1 1644:1 1651:2 1653:1 1659:2 1683:2 1689:1 1698:1 1712:1 1715:1 1724:1 1740:1 1743:1 1771:1 1774:1 1779:1 1781:1 1785:1 1789:1 1790:1 1797:2 1866:1 1875:1 1877:3 1879:2 1884:3 1885:2 1886:2 1887:1 1888:4 1889:1 1892:1 1893:2 1895:1 1898:1 1899:3 1903:1 1904:1 1908:1 1912:1 1913:1 1921:1 1927:1 1951:1 1953:2 1973:2 2007:2 2009:1 2025:1 2057:1 2077:1 2079:1 2102:1 2105:1 2107:1 2112:1 2113:1 2114:1 2128:1 2142:1 2161:1 2171:1 2172:1 2179:1 2180:2 2181:2 2209:1 2215:1 2233:1 2235:1 2240:2 2267:1 2271:1 2274:1 2281:1 2288:1 2291:2 2306:1 2333:1 2340:1 2345:4 2356:5 2359:2 2375:1 2376:1 2412:2 2425:1 2427:1 2429:1 2434:1 2436:1 2441:1 2456:1 2458:1 2460:2 2465:1 2472:2 2485:2 2486:1 2489:1 2499:1 2503:1 2506:4 2507:1 2511:1 2520:2 2522:1 2527:1 2532:1 2545:1 2552:2 2553:1 2562:1 2567:1 2572:1 2574:1 2580:1 2583:1 2595:3 2604:1 2613:1 2619:2 2621:1 2623:1 2626:1 2656:4 2684:1 2691:1 2695:2 2701:1 2704:6 2706:1 2715:2 2718:6 2749:1 2750:3 2752:2 2753:3 2768:1 2775:1 2795:1 2798:4 2800:1 2804:1 2835:1 2840:2 2845:1 2847:1 2862:2 2907:1 2913:1 2919:1 2927:3 2930:2 2932:1 2941:1 2945:1 2949:2 2953:1 2959:1 2965:1 2968:2 2971:2 2988:1 2989:1 2992:1 3005:1 3024:1 3027:2 3032:1 3043:1 3059:1 3062:1 3066:1 3071:2 3075:1 3093:2 3124:4 3153:8 3156:2 3161:1 3166:1 3179:1 3184:1 3190:1 3194:1 3208:2 3228:1 3263:2 3271:3 3274:2 3275:1 3276:2 3290:1 3295:1 3299:1 3302:2 3308:1 3322:2 3325:2 3329:2 3331:3 3332:1 3337:2 3340:2 3341:2 3343:1 3346:2 3354:4 3355:3 3358:5 3360:4 3362:1 3373:1 3391:1 3414:1 3417:1 3439:1 3445:1 3450:1 3451:3 3455:1 3465:2 3470:1 3477:1 3493:1 3509:1 3521:2 3523:1 3524:1 3538:1 3539:1 3548:1 3552:1 3557:1 3576:1 3613:1 3622:1 3631:1 3633:1 3644:1 3661:1 3672:1 3679:3 3684:1 3692:1 3697:1 3712:1 3717:1 3718:1 3722:1 3732:1 3747:1 3749:2 3755:1 3760:3 3767:2 3772:1 3775:5 3777:2 3781:1 3788:1 3789:1 3790:1 3793:1 3800:3 3806:2 3808:2 3815:1 3819:1 3821:1 3828:3 3856:4 3857:1 3865:1 3887:1 3888:2 3896:1 3899:1 3900:1 3901:1 3903:1 3904:1 3910:1 3916:1 3925:6 3927:1 3928:1 3939:1 3948:1 3957:5 3965:4 3966:1 3979:1 3981:1 3988:1 3990:1 3997:3 3998:2 4009:1 4025:1 4026:2 4032:2 4036:1 4038:1 4065:2 4090:1 4097:1 4101:2 4103:1 4104:2 4106:2 4118:1 4121:2 4129:1 4131:1 4133:3 4136:1 4143:2 4150:1 4158:1 4198:1 4199:1 4200:1 4216:1 4227:1 4230:1 4239:1 4242:1 4246:2 4265:2 4272:1 4277:1 4279:11 4311:2 4312:1 4315:1 4316:1 4317:1 4318:1 4326:2 4333:2 4358:10 4361:1 4387:1 4398:2 4400:2 4426:1 4429:2 4442:1 4447:1 4461:1 4482:1 4489:1 4498:1 4505:1 4513:1 4532:1 4534:5 4555:1 4565:3 4573:1 4582:1 4584:1 4586:1 4600:1 4627:1 4643:2 4661:1 4663:1 4667:1 4680:2 4698:1 4717:2 4737:2 4757:1 4770:2 4771:1 4786:1 4792:1 4794:1 4797:1 4811:1 4841:1 4855:1 4866:1 4868:2 4869:1 4884:1 4895:1 4910:6 4933:1 4936:2 4958:1 4969:1 5018:2 5032:6 5058:1 5059:1 5074:1 5083:1 5089:1 5133:1 5149:1 5156:1 5182:2 5187:1 5199:1 5205:1 5206:10 5218:1 5220:2 5222:1 5223:1 5244:1 5249:1 5250:1 5257:11 5274:2 5277:1 5290:3 5293:1 5307:1 5308:1 5310:1 5317:1 5321:3 5331:1 5338:1 5348:1 5369:1 5395:1 5396:1 5418:1 5422:1 5429:2 5434:1 5438:1 5453:1 5456:4 5461:1 5492:1 5495:1 5499:2 5506:2 5508:1 5528:2 5530:1 5533:1 5555:2 5572:1 5574:1 5577:1 5579:4 5583:1 5587:1 5592:2 5593:2 5606:2 5621:1 5624:2 5625:2 5647:1 5651:2 5656:1992 5670:1 5678:1 5679:1 5682:2 5687:1 5700:1 5714:1 5716:1 5726:4 5728:3 5741:2 5761:1 5765:1 5772:1 5779:1 5784:2 5787:1 5793:1 5814:2 5824:1 5829:2 5846:1 5862:2 5873:1 5894:1 5901:1 5904:1 5915:1 5927:1 5939:3 5941:1 5944:1 5945:1 5947:2 5952:1 5955:2 5981:1 5983:1 5987:2 5992:2 5993:2 5997:1 6004:1 6025:1 6033:1 6050:1 6066:1 6067:1 6106:7 6108:1 6109:1 6142:3 6156:1 6165:1 6171:1 6176:1 6179:2 6185:1 6189:1 6192:1 6201:2 6210:2 6240:1 6244:1 6248:2 6268:3 6296:1 6302:1 6308:2 6335:2 6359:1 6366:1 6367:1 6373:2 6376:1 6378:2 6397:1 6399:1 6403:1 6410:2 6417:1 6435:1 6460:1 6468:1 6479:2 6488:1 6507:1 6513:1 6518:1 6540:1 6550:2 6558:1 6567:3 6570:1 6577:2 6578:1 6590:1 6593:1 6597:1 6603:2 6606:1 6612:2 6614:2 6631:3 6642:2 6655:1 6662:1 6673:2 6674:2 6700:1 6702:2 6708:2 6709:2 6711:1 6713:1 6728:3 6732:1 6733:2 6746:3 6747:1 6756:1 6793:1 6820:1 6822:1 6832:2 6833:1 6870:2 6871:1 6892:9 6894:1 6899:1 6901:1 6906:1 6914:1 6916:1 6957:1 6961:1 6975:4 6976:1 6986:1 6989:2 6998:1 7000:1 7012:4 7028:1 7038:1 7066:1 7075:1 7084:1 7095:2 7098:1 7107:1 7112:1 7117:4 7119:4 7121:2 7124:1 7129:1 7131:1 7132:1 7136:1 7138:1 7140:4 7142:3 7146:2 7147:4 7158:3 7162:1 7171:1 7175:1 7199:1 7203:1 7206:2 7211:1 7213:1 7215:1 7253:1 7271:1 7272:1 7274:1 7283:1 7300:2 7315:1 7340:1 7345:1 7360:1 7388:1 7404:1 7405:2 7406:1 7408:1 7419:1 7421:1 7426:1 7458:1 7461:1 7462:1 7466:1 7470:1 7480:1 7488:1 7504:1 7506:1 7519:1 7520:1 7529:1 7530:1 7545:1 7555:1 7572:1 7575:3 7588:1 7589:3 7636:1 7665:1 7682:1 7689:2 7691:1 7693:1 7697:2 7699:1 7700:2 7702:1 7712:1 7720:1 7722:1 7732:2 7739:1 7740:2 7741:2 7744:1 7768:4 7779:2 7792:1 7797:1 7818:1 7821:1 7823:3 7835:3 7853:1 7859:1 7860:1 7872:1 7873:1 7878:1 7891:1 7898:1 7905:1 7931:1 7938:1 7940:1 7944:1 7953:2 7965:1 7969:1 7974:3 7975:10 7977:2 7985:1 7991:1 7994:3 8003:1 8006:1 8022:1 8033:1 8059:1 8070:1 8075:1 8087:1 8093:1 8095:1 8104:1 8108:1 8136:1 8140:1 8141:1 8145:1 8154:1 8179:1 8188:1 8195:1 8202:1 8208:1 8213:2 8221:1 8250:4 8251:1 8254:2 8257:1 8259:2 8261:4 8278:1 8280:1 8299:1 8312:3 8327:1 8330:1 8342:2 8345:5 8348:1 8359:2 8364:1 8377:1 8378:1 8391:2 8428:6 8450:1 8462:1 8488:1 8494:1 8497:1 8512:1 8520:1 8521:1 8532:1 8533:1 8554:1 8575:1 8590:2 8601:1 8608:1 8619:2 8621:3 8646:2 8647:1 8653:1 8663:1 8668:1 8673:1 8675:1 8679:5 8682:1 8683:1 8687:1 8688:1 8693:2 8697:1 8707:1 8709:1 8752:1 8755:1 8756:1 8765:1 8766:2 8772:1 8775:1 8776:1 8777:3 8783:9 8788:2 8792:2 8807:2 8828:2 8852:2 8862:3 8867:1 8880:2 8899:1 8909:2 8913:1 8923:1 8931:1 8943:2 8952:1 8958:2 8969:1 8981:3 8985:1 8997:5 9001:1 9003:1 9008:2 9015:1 9027:3 9059:2 9068:1 9084:1 9089:1 9095:1 9111:1 9113:1 9121:1 9128:1 9139:2 9143:2 9148:1 9151:1 9152:1 9154:1 9155:1 9157:1 9160:2 9162:3 9168:1 9169:1 9171:1 9176:2 9179:2 9181:3 9184:2 9203:1 9207:2 9232:2 9245:1 9246:1 9258:1 9260:1 9262:3 9263:1 9281:2 9293:1 9299:1 9311:1 9319:1 9330:1 9340:1 9345:1 9347:1 9370:1 9387:1 9396:1 9399:1 9402:2 9407:2 9438:1 9440:1 9442:4 9445:2 9468:1 9480:1 9547:1 9554:1 9568:1 9585:2 9587:1 9589:1 9598:2 9599:2 9604:1 9605:1 9612:1 9615:1 9618:1 9630:1 9634:1 9655:2 9657:1 9661:1 9668:1 9688:2 9694:1 9703:2 9714:1 9721:1 9726:1 9731:1 9735:1 9737:1 9751:1 9768:1 9772:1 9773:1 9776:1 9778:2 9782:1 9784:1 9814:1 9823:2 9824:1 9831:1 9834:1 9835:1 9844:1 9849:2 9871:1 9873:6 9883:1 9890:2 9914:1 9915:1 9922:1 9932:1 9945:1 9946:1 9963:1 9966:1 9974:1 9985:7 9996:2 10007:1 10011:1 10020:1 10028:1 10043:2 10065:1 10070:1 10089:1 10102:2 10109:1 10116:1 10121:3 10125:1 10128:1 10129:3 10130:1 10144:1 10146:2 10152:1 10161:2 10166:1 10168:1 10175:1 10193:1 10197:1 10207:1 10208:1 10209:1 10214:1 10216:2 10217:3 10221:2 10261:1 10281:1 10287:1 10288:1 10291:1 10304:1 10314:1 10330:6 10340:2 10379:1 10384:3 10389:1 10390:2 10393:2 10394:2 10395:1 10403:1 10407:1 10411:1 10415:2 10416:1 10417:2 10438:3 10439:4 10441:1 10445:1 10455:5 10460:1 10462:1 10463:1 10470:1 10485:1 10512:1 10514:1 10524:2 10532:2 10533:1 10535:1 10541:1 10574:1 10583:3 10595:2 10612:1 10650:1 10656:2 10658:1 10662:1 10674:1 10676:1 10683:1 10706:1 10721:1 10727:1 10742:1 10743:1 10777:1 10785:1 10792:1 10803:1 10812:1 10817:1 10839:1 10843:1 10848:1 10852:3 10854:1 10861:1 10865:1 10879:1 10881:3 10885:2 10896:1 10907:1 10920:1 10932:2 10935:1 10941:1 10943:4 10953:2 10962:1 10966:1 10969:1 10970:1 10973:1 10975:5 10980:1 10984:1 10989:1 10990:1 10999:3 11003:1 11004:1 11021:1 11022:1 11043:4 11051:2 11057:7 11059:1 11076:1 11101:1 11104:1 11108:2 11127:1 11138:3 11140:1 11143:1 11153:1 11160:2 11166:1 11180:1 11187:1 11194:1 11209:1 11215:1 11237:1 11248:1 11253:2 11288:1 11316:2 11329:3 11331:6 11332:3 11334:1 11349:1 11352:3 11358:3 11364:3 11368:2 11371:3 11374:1 11384:1 11390:1 11415:2 11416:2 11417:1 11419:1 11424:3 11436:34 11438:1 11442:1 11448:1 11455:1 11457:1 11463:3 11470:5 11472:3 11473:1 11481:2 11506:1 11516:1 11519:1 11525:1 11527:1 11534:1 11549:1 11565:1 11574:3 11575:2 11578:1 11590:1 11594:1 11605:1 11635:1 11639:1 11655:1 11656:1 11665:1 11687:1 11691:1 11694:2 11712:2 11713:3 11724:1 11743:1 11755:2 11760:3 11776:1 11781:3 11783:1 11784:3 11794:2 11810:1 11838:1 11845:1 11846:1 11847:1 11862:1 11863:1 11867:2 11869:1 11878:2 11896:1 11898:1 11948:1 11949:1 11963:1 11983:1 11989:1 11994:1 12015:1 12021:2 12028:1 12030:1 12033:1 12043:2 12051:1 12055:1 12061:1 12070:1 12076:1 12077:1 12089:1 12100:1 12118:1 12127:3 12144:18 12156:1 12176:3 12183:3 12190:1 12267:2 12269:1 12272:1 12281:1 12286:1 12313:3 12314:1 12322:5 12345:1 12348:1 12360:1 12365:2 12366:3 12371:2 12374:1 12381:1 12384:2 12389:1 12390:1 12402:1 12408:1 12419:4 12424:1 12426:4 12442:2 12450:1 12474:2 12479:1 12486:1 12488:1 12501:1 12516:1 12520:1 12536:1 12544:1 12545:1 12556:1 12568:1 12575:1 12580:1 12583:1 12588:1 12596:2 12630:1 12637:1 12641:1 12664:2 12676:1 12685:1 12694:1 12695:1 12703:1 12718:1 12731:2 12734:2 12736:1 12738:1 12745:1 12750:1 12757:1 12758:1 12772:1 12784:1 12789:1 12801:3 12804:1 12809:2 12811:4 12824:1 12830:3 12840:1 12842:1 12847:1 12861:1 12866:1 12871:1 12883:1 12892:2 12899:1 12919:1 12925:1 12926:4 12929:1 12931:1 12934:1 12946:1 12947:2 12948:1 12949:1 12951:1 12962:2 12992:1 13000:1 13005:1 13016:1 13019:1 13050:1 13064:1 13068:1 13082:1 13091:1 13121:2 13136:1 13139:1 13160:1 13178:2 13179:1 13206:1 13208:1 13209:1 13213:3 13242:2 13245:1 13256:2 13278:1 13280:2 13302:1 13304:1 13313:1 13316:1 13318:1 13325:1 13326:3 13333:1 13334:1 13337:1 13347:1 13358:1 13391:4 13413:1 13421:1 13441:3 13443:5 13445:1 13456:1 13471:2 13502:1 13524:1 13531:1 13545:1 13549:1 13554:2 13572:1 13581:1 13583:2 13590:1 13596:1 13600:1 13602:1 13604:2 13605:2 13659:1 13663:1 13680:1 13692:2 13693:2 13696:1 13708:2 13711:1 13714:4 13741:2 13745:2 13752:1 13766:4 13803:1 13807:5 13836:1 13843:2 13860:1 13867:1 13873:1 13875:1 13882:1 13887:2 13896:2 13905:1 13906:1 13912:1 13915:2 13922:1 13937:1 13942:1 13952:1 13967:3 13990:1 14004:1 14007:1 14016:1 14024:2 14028:1 14032:6 14036:1 14037:1 14043:2 14081:2 14089:1 14109:2 14120:1 14130:1 14140:1 14144:1 14151:1 14179:1 14181:1 14186:1 14189:1 14193:1 14198:2 14199:3 14201:1 14204:2 14206:1 14209:2 14212:1 14217:2 14219:1 14221:1 14258:1 14262:5 14280:1 14282:1 14285:1 14295:1 14304:1 14307:1 14314:1 14315:1 14319:1 14321:1 14326:1 14363:8 14368:2 14369:1 14400:1 14404:2 14410:1 14412:1 14414:1 14432:1 14433:2 14437:1 14443:1 14449:3 14458:1 14470:1 14482:1 14498:1 14499:1 14513:1 14515:1 14559:1 14564:1 14565:1 14581:1 14586:1 14625:1 14631:1 14633:1 14642:5 14662:1 14668:3 14678:3 14683:1 14700:1 14707:1 14709:1 14717:1 14725:2 14729:2 14750:2 14756:1 14759:1 14763:1 14769:2 14771:1 14776:1 14832:1 14844:2 14845:1 14850:1 14857:1 14871:1 14879:1 14889:1 14895:3 14896:2 14900:1 14931:2 14936:1 14945:1 14951:1 14959:9 14964:1 14977:2 14979:2 14985:1 14988:1 15003:2 15032:1 15033:1 15037:1 15048:1 15052:1 15054:1 15099:9 15100:2 15133:1 15136:2 15138:1 15155:1 15165:1 15166:1 15184:1 15189:1 15198:1 15201:1 15202:1 15205:1 15208:1 15210:3 15222:1 15224:1 15229:2 15250:1 15260:1 15265:1 15281:2 15285:1 15287:1 15298:1 15300:1 15301:4 15306:1 15307:1 15309:1 15315:1 15320:1 15332:1 15339:1 15341:1 15346:1 15348:1 15359:4 15360:1 15369:1 15384:1 15385:1 15391:1 15416:1 15436:1 15441:1 15447:1 15448:1 15456:2 15479:2 15490:1 15492:1 15519:2 15539:1 15544:1 15548:7 15550:1 15552:4 15554:2 15569:1 15573:3 15578:1 15584:1 15589:2 15597:1 15607:1 15618:2 15633:3 15634:1 15663:1 15664:1 15670:1 15674:3 15699:1 15703:1 15712:3 15715:1 15723:1 15732:3 15745:1 15753:2 15754:4 15756:1 15774:1 15787:1 15795:2 15796:1 15799:1 15806:1 15814:2 15860:1 15875:1 15879:2 15881:1 15896:2 15918:1 15924:1 15958:1 15992:1 16018:1 16027:1 16030:1 16031:1 16040:1 16045:1 16050:1 16051:2 16054:1 16058:1 16059:2 16067:1 16074:1 16075:5 16078:1 16080:5 16083:1 16090:1 16093:2 16100:2 16101:2 16105:3 16110:1 16114:3 16117:1 16127:3 16140:1 16142:1 16163:2 16172:1 16177:1 16206:1 16207:1 16211:1 16225:3 16240:1 16246:1 16260:1 16262:1 16273:4 16278:1 16297:1 16305:1 16312:1 16374:1 16376:1 16391:1 16395:1 16418:1 16427:1 16431:1 16446:2 16473:1 16502:1 16519:1 16523:1 16531:2 16535:1 16552:2 16553:1 16560:1 16575:1 16580:2 16581:1 16584:1 16585:1 16596:2 16601:1 16602:2 16621:1 16628:2 16631:1 16650:1 16658:1 16676:10 16678:1 16679:1 16708:1 16712:1 16727:1 16731:3 16745:1 16749:2 16750:2 16758:1 16810:2 16816:2 16828:1 16844:2 16850:1 16851:1 16852:1 16867:2 16874:2 16890:1 16893:1 16921:1 16936:3 16949:1 16951:1 16955:1 16981:1 16987:1 16999:2 17005:1 17008:1 17029:1 17052:3 17056:1 17062:11 17063:2 17068:1 17071:2 17078:2 17079:1 17083:1 17084:1 17089:1 17092:1 17099:1 17111:1 17126:1 17131:1 17132:1 17133:1 17151:3 17156:2 17183:2 17189:1 17201:1 17202:1 17230:1 17231:1 17237:1 17242:1 17259:3 17263:3 17266:2 17268:3 17273:1 17279:2 17287:4 17301:1 17314:1 17339:1 17345:1 17379:1 17403:5 17414:1 17417:1 17429:1 17432:1 17453:1 17461:1 17463:1 17468:1 17495:1 17501:2 17504:1 17518:1 17533:2 17543:1 17549:1 17553:1 17554:1 17555:2 17566:1 17591:6 17594:1 17604:1 17627:1 17632:1 17634:1 17643:1 17652:1 17660:1 17670:1 17672:1 17675:1 17696:1 17753:1 17759:1 17769:1 17774:5 17776:1 17798:1 17799:1 17801:1 17809:1 17810:2 17818:1 17823:1 17826:1 17855:1 17893:1 17894:1 17897:5 17922:1 17925:1 17929:1 17935:1 17936:1 17986:1 17989:1 17996:1 18002:1 18003:1 18022:1 18023:1 18027:1 18032:1 18045:1 18053:1 18074:2 18077:2 18099:3 18126:1 18141:1 18150:1 18153:2 18175:1 18179:1 18180:3 18198:1 18200:1 18227:1 18230:1 18245:1 18258:1 18264:3 18269:1 18272:1 18274:1 18290:1 18302:1 18303:1 18310:2 18319:1 18333:1 18339:1 18357:2 18358:1 18360:2 18362:1 18380:2 18383:1 18386:1 18390:1 18393:1 18398:2 18399:1 18415:1 18432:1 18434:1 18451:1 18453:1 18455:1 18459:2 18465:1 18499:1 18523:3 18525:1 18531:1 18534:1 18535:2 18542:1 18545:1 18546:1 18556:1 18564:1 18603:1 18606:8 18613:2 18616:2 18627:2 18629:1 18634:1 18638:1 18644:2 18652:1 18656:1 18665:2 18685:1 18687:1 18689:1 18697:1 18703:1 18707:1 18709:1 18710:1 18711:2 18713:1 18717:1 18725:2 18742:2 18752:2 18760:1 18763:1 18765:1 18769:1 18791:2 18796:1 18807:1 18810:1 18815:1 18851:2 18865:1 18881:1 18897:1 18909:1 18918:1 18973:1 19013:1 19014:1 19015:1 19025:1 19051:1 19053:1 19055:1 19062:1 19064:2 19085:1 19093:1 19115:1 19117:3 19121:1 19126:1 19152:1 19168:1 19215:2 19228:1 19270:1 19278:1 19292:1 19311:1 19315:2 19324:4 19339:1 19344:2 19353:1 19365:1 19367:2 19386:3 19388:2 19391:1 19407:1 19418:2 19444:1 19450:3 19452:1 19454:1 19495:1 19498:2 19503:1 19506:1 19508:1 19509:1 19512:1 19524:4 19525:1 19535:1 19536:3 19538:2 19549:1 19551:2 19555:1 19556:1 19558:1 19568:1 19578:1 19582:1 19586:1 19595:1 19597:1 19598:1 19600:5 19616:1 19621:1 19630:1 19638:1 19645:2 19649:2 19652:1 19655:11 19659:1 19664:5 19667:1 19680:1 19696:3 19700:1 19715:3 19718:2 19720:1 19721:1 19724:1 19727:1 19757:1 19777:1 19786:1 19792:1 19816:3 19829:1 19833:1 19851:1 19857:6 19863:1 19865:1 19891:1 19896:1 19908:2 19910:1 19913:1 19918:4 19929:4 19936:2 19965:1 19974:1 19975:4 19977:1 19991:2 19992:1 19995:1 19999:1 20015:1 20022:1 20030:1 20034:5 20035:1 20037:1 20039:1 20040:2 20041:1 20044:1 20047:1 20049:6 20050:1 20075:1 20078:1 20081:1 20101:1 20102:1 20132:1 20170:1 20171:1 20185:1 20188:1 20210:1 20223:1 20251:1 20256:1 20258:1 20266:1 20267:2 20276:1 20284:1 20298:3 20305:3 20363:1 20366:1 20368:1 20379:1 20382:1 20383:1 20387:2 20390:5 20396:1 20402:1 20413:1 20430:2 20440:2 20451:1 20453:1 20469:1 20482:7 20494:3 20519:2 20529:1 20552:1 20588:1 20598:1 20614:1 20621:1 20636:1 20669:1 20670:1 20706:1 20724:1 20735:1 20746:1 20758:1 20817:1 20822:1 20828:2 20844:1 20845:1 20846:1 20851:3 20855:2 20874:1 20875:1 20878:1 20880:1 20892:1 20903:1 20912:1 20933:1 20955:1 20956:1 20980:1 21034:3 21072:1 21080:2 21083:2 21096:1 21099:2 21110:2 21111:1 21113:1 21118:2 21121:1 21142:1 21180:1 21188:2 21202:1 21213:2 21216:1 21223:2 21244:1 21265:1 21271:3 21274:1 21276:2 21298:2 21315:1 21318:1 21333:1 21341:1 21349:2 21353:1 21362:1 21374:3 21378:1 21379:2 21386:1 21402:1 21446:1 21451:3 21459:1 21463:1 21464:1 21470:2 21494:1 21510:2 21512:1 21538:1 21539:1 21540:1 21547:1 21568:1 21579:1 21586:1 21589:2 21619:1 21623:1 21626:3 21635:2 21637:2 21639:1 21640:3 21646:1 21667:1 21674:2 21707:4 21713:1 21715:1 21718:1
1 5:2 10:1 23:1 35:1 53:1 66:1 77:1 91:1 99:1 101:1 103:3 107:1 123:1 124:1 134:1 140:1 163:1 181:1 233:1 255:1 260:3 261:1 270:2 280:1 296:1 308:1 309:1 319:1 324:2 343:5 369:1 370:1 411:1 419:1 432:1 439:6 454:1 461:3 466:1 467:1 468:1 476:1 490:1 501:1 510:1 523:2 527:1 547:1 563:3 564:3 571:1 573:3 578:1 582:3 593:1 602:2 605:2 626:1 628:2 635:1 644:1 660:1 663:5 667:3 677:1 685:1 706:1 717:1 749:1 761:1 762:3 778:1 790:1 797:1 806:2 827:1 835:1 849:1 854:2 861:1 869:1 889:1 893:1 894:1 901:2 908:3 918:1 943:1 954:1 956:2 959:1 964:1 989:2 1004:1 1005:1 1018:2 1034:1 1037:3 1040:1 1045:1 1056:1 1073:3 1074:1 1079:1 1081:1 1099:1 1111:1 1124:1 1142:1 1152:2 1159:1 1160:1 1200:1 1205:2 1216:1 1229:1 1237:3 1248:1 1261:2 1270:1 1278:1 1281:1 1282:3 1308:1 1320:5 1322:2 1331:1 1349:1 1351:1 1356:1 1358:3 1375:1 1392:1 1402:9 1407:4 1419:3 1430:1 1435:1 1441:2 1453:1 1457:10 1463:1 1474:1 1475:4 1476:2 1478:6 1481:1 1482:1 1486:1 1488:2 1489:3 1507:2 1530:3 1531:3 1536:2 1549:1 1598:1 1600:2 1622:1 1624:1 1642:1 1644:1 1651:2 1653:1 1659:2 1683:2 1689:1 1698:1 1712:1 1715:1 1724:1 1740:1 1743:1 1771:1 1774:2 1779:1 1781:1 1785:1 1789:1 1790:1 1797:2 1834:1 1866:1 1875:1 1877:3 1879:2 1884:3 1885:2 1886:2 1887:1 1888:4 1889:1 1892:1 1893:2 1895:1 1898:1 1899:3 1903:1 1904:1 1908:1 1912:1 1913:1 1921:1 1927:1 1940:1 1951:1 1953:2 1973:2 2007:2 2009:1 2025:1 2057:1 2077:1 2079:1 2102:1 2105:1 2107:1 2112:1 2113:1 2114:1 2128:1 2142:1 2161:1 2171:1 2172:1 2179:1 2180:2 2181:2 2209:1 2215:1 2233:1 2235:1 2240:2 2267:1 2271:1 2274:1 2281:1 2288:1 2291:2 2306:1 2333:1 2340:1 2345:4 2356:7 2359:2 2375:1 2376:1 2412:2 2425:1 2427:1 2429:1 2434:1 2436:1 2441:2 2456:1 2458:1 2460:2 2465:1 2472:2 2485:2 2486:1 2489:1 2499:1 2503:1 2506:5 2507:1 2511:1 2515:1 2520:2 2522:1 2527:1 2532:1 2545:1 2552:2 2553:1 2562:1 2563:1 2567:1 2572:1 2574:1 2580:1 2583:1 2595:3 2604:2 2613:1 2619:2 2621:1 2623:1 2626:1 2654:1 2656:5 2664:1 2684:1 2691:1 2695:2 2701:1 2704:7 2706:1 2715:2 2718:6 2749:1 2750:3 2752:2 2753:3 2768:1 2775:1 2795:1 2798:4 2800:1 2804:1 2835:1 2840:2 2845:1 2847:1 2862:2 2907:1 2913:1 2919:1 2927:4 2930:2 2932:1 2941:1 2945:1 2949:2 2953:1 2959:1 2965:1 2968:2 2971:2 2988:1 2989:1 2992:1 2997:1 3005:1 3024:1 3027:2 3032:1 3043:1 3059:1 3062:1 3066:1 3071:2 3075:1 3093:2 3124:4 3138:1 3153:8 3156:2 3161:1 3166:1 3179:1 3184:1 3190:1 3194:1 3208:2 3228:1 3263:2 3271:3 3274:2 3275:1 3276:2 3290:1 3295:1 3299:1 3302:2 3308:1 3322:2 3325:2 3329:2 3331:4 3332:1 3337:2 3340:2 3341:2 3343:1 3344:1 3346:2 3354:4 3355:3 3358:5 3360:4 3362:1 3373:1 3391:1 3414:1 3417:1 3439:1 3445:1 3450:1 3451:3 3455:1 3465:2 3470:1 3477:1 3488:1 3493:1 3509:1 3521:2 3523:1 3524:1 3538:1 3539:1 3548:1 3552:1 3557:1 3576:1 3613:1 3622:1 3631:1 3633:1 3644:1 3661:1 3672:1 3679:3 3684:1 3692:1 3697:1 3712:1 3717:1 3718:1 3722:1 3732:1 3747:1 3749:2 3755:1 3760:3 3767:2 3772:1 3775:5 3777:2 3781:1 3788:1 3789:1 3790:1 3793:1 3800:3 3806:2 3808:2 3815:1 3819:1 3821:1 3828:4 3856:4 3857:1 3865:1 3887:1 3888:2 3893:1 3896:1 3899:1 3900:1 3901:1 3903:1 3904:1 3910:1 3916:1 3925:6 3927:1 3928:1 3939:1 3948:1 3957:5 3965:4 3966:1 3979:1 3981:1 3988:1 3990:1 3997:3 3998:2 4009:1 4025:1 4026:2 4032:2 4036:1 4038:1 4041:1 4065:3 4071:1 4090:1 4097:1 4101:2 4103:1 4104:2 4106:2 4118:1 4121:2 4129:1 4131:1 4133:3 4136:1 4143:2 4150:1 4158:1 4198:1 4199:1 4200:1 4216:1 4227:1 4230:1 4239:1 4242:1 4246:2 4265:2 4272:1 4277:1 4279:12 4311:2 4312:1 4315:1 4316:1 4317:1 4318:1 4326:2 4333:2 4358:12 4361:1 4387:1 4398:2 4400:2 4426:1 4429:2 4442:1 4447:1 4461:1 4482:1 4489:1 4498:1 4505:1 4513:1 4532:1 4534:5 4555:1 4565:3 4573:1 4582:1 4584:1 4586:1 4600:1 4627:1 4643:2 4661:1 4663:1 4667:1 4680:2 4698:1 4717:2 4737:2 4757:1 4770:2 4771:1 4786:1 4792:1 4794:1 4797:1 4811:1 4841:1 4855:1 4866:1 4868:2 4869:1 4884:1 4895:1 4910:6 4933:1 4936:2 4958:1 4969:1 5018:2 5032:7 5058:1 5059:1 5074:1 5082:1 5083:1 5087:1 5089:1 5103:1 5133:1 5149:1 5156:1 5182:2 5187:1 5199:1 5205:1 5206:10 5218:1 5220:2 5222:1 5223:1 5226:1 5244:1 5249:1 5250:1 5257:11 5274:2 5277:1 5290:3 5293:1 5307:1 5308:1 5310:1 5317:1 5321:3 5331:1 5338:1 5348:1 5369:1 5395:1 5396:1 5418:1 5422:1 5429:2 5434:1 5438:1 5453:1 5456:4 5461:1 5492:1 5495:1 5499:2 5506:2 5508:1 5528:2 5530:1 5533:1 5555:2 5572:1 5574:1 5577:1 5579:4 5583:1 5587:2 5592:2 5593:2 5606:2 5621:2 5624:2 5625:2 5647:1 5651:2 5656:2148 5670:1 5678:1 5679:1 5682:2 5687:1 5696:1 5700:1 5714:1 5716:1 5726:6 5728:3 5741:2 5761:1 5765:1 5772:1 5779:1 5784:2 5787:1 5793:1 5814:2 5824:1 5829:2 5846:1 5862:2 5873:1 5894:1 5901:1 5904:1 5915:1 5927:1 5939:3 5941:1 5944:1 5945:1 5947:2 5952:1 5955:2 5981:1 5983:1 5987:2 5992:2 5993:2 5997:1 6004:1 6025:1 6033:1 6050:1 6066:1 6067:1 6106:7 6108:1 6109:1 6142:3 6156:1 6165:1 6171:1 6176:1 6179:2 6185:1 6189:1 6192:1 6201:2 6210:2 6240:1 6244:1 6248:2 6268:3 6296:1 6302:1 6308:3 6312:1 6335:2 6359:1 6366:1 6367:1 6373:2 6376:1 6378:2 6397:1 6399:1 6403:1 6410:2 6417:1 6435:1 6460:1 6468:1 6479:2 6488:2 6507:1 6513:1 6518:1 6540:1 6550:2 6558:1 6567:4 6570:1 6577:2 6578:1 6590:1 6593:1 6597:1 6603:2 6606:1 6612:2 6614:2 6631:4 6642:2 6655:1 6662:1 6673:2 6674:2 6700:1 6702:2 6708:3 6709:2 6711:1 6713:1 6728:3 6732:1 6733:2 6746:3 6747:1 6756:1 6776:1 6793:1 6820:1 6822:1 6832:2 6833:1 6846:1 6870:2 6871:1 6892:10 6894:1 6899:1 6901:1 6906:1 6914:1 6916:1 6957:1 6961:1 6975:4 6976:1 6986:1 6989:2 6998:1 7000:1 7012:4 7028:1 7038:1 7066:1 7075:2 7084:2 7095:2 7098:1 7107:1 7112:1 7117:4 7119:5 7121:2 7124:1 7129:1 7131:1 7132:1 7136:1 7138:1 7140:4 7142:3 7146:2 7147:4 7158:3 7162:1 7171:1 7175:1 7199:1 7203:1 7206:2 7211:1 7213:1 7215:1 7253:1 7271:1 7272:1 7274:1 7283:1 7300:2 7315:1 7340:1 7345:1 7360:1 7388:2 7404:1 7405:2 7406:1 7408:1 7419:1 7421:1 7426:1 7458:1 7461:1 7462:1 7466:1 7470:1 7480:1 7488:1 7504:1 7506:1 7516:1 7519:1 7520:1 7529:1 7530:1 7545:1 7555:1 7572:1 7575:4 7588:1 7589:3 7636:1 7665:1 7682:1 7689:2 7691:1 7693:1 7697:2 7699:1 7700:2 7702:1 7712:1 7720:1 7722:1 7732:2 7739:1 7740:2 7741:2 7744:1 7768:4 7779:2 7792:1 7797:1 7818:1 7821:1 7823:3 7835:3 7853:1 7859:1 7860:1 7872:1 7873:1 7878:1 7891:1 7898:1 7905:1 7930:1 7931:1 7938:1 7940:1 7944:1 7953:2 7965:1 7969:1 7974:3 7975:12 7977:2 7985:1 7991:1 7994:3 8003:1 8006:1 8022:1 8033:1 8059:1 8070:1 8075:1 8087:1 8093:1 8095:1 8104:1 8108:1 8136:1 8140:1 8141:1 8145:1 8154:1 8179:1 8188:1 8195:1 8202:1 8208:1 8213:2 8221:1 8250:4 8251:1 8254:2 8257:1 8259:2 8261:4 8278:1 8280:1 8299:1 8312:3 8327:1 8330:1 8342:2 8345:6 8348:1 8359:2 8364:1 8377:1 8378:1 8391:2 8428:6 8450:1 8462:1 8488:1 8494:1 8497:1 8512:1 8520:1 8521:1 8532:2 8533:1 8554:1 8575:1 8590:2 8601:1 8608:1 8619:2 8621:3 8646:2 8647:1 8653:1 8663:1 8668:1 8673:1 8675:1 8679:5 8682:1 8683:1 8687:1 8688:1 8693:2 8697:1 8705:1 8707:1 8709:1 8752:1 8755:1 8756:1 8762:1 8765:1 8766:2 8772:1 8775:1 8776:1 8777:3 8783:10 8788:2 8792:2 8807:2 8814:1 8828:2 8852:2 8862:3 8863:1 8867:1 8880:2 8899:1 8909:2 8913:1 8923:1 8931:1 8943:2 8952:1 8958:3 8969:1 8981:3 8985:1 8997:5 9001:1 9003:1 9008:2 9015:1 9027:3 9059:2 9068:1 9084:1 9089:1 9095:1 9111:1 9113:1 9121:1 9128:1 9139:2 9143:2 9148:1 9151:1 9152:1 9154:1 9155:1 9157:1 9160:2 9162:3 9168:1 9169:1 9171:2 9176:2 9179:2 9181:3 9184:2 9203:1 9207:2 9232:2 9245:1 9246:1 9258:1 9260:1 9262:3 9263:1 9281:2 9293:1 9299:1 9311:1 9319:1 9330:1 9333:1 9340:1 9345:1 9347:1 9370:1 9387:1 9396:1 9399:1 9402:2 9407:2 9424:1 9438:1 9440:1 9442:4 9445:2 9468:1 9480:1 9547:1 9554:1 9568:1 9585:2 9587:1 9589:1 9598:2 9599:2 9604:1 9605:1 9612:1 9615:1 9618:1 9630:1 9634:1 9655:2 9657:1 9661:1 9668:1 9688:2 9694:1 9703:2 9714:1 9721:1 9726:1 9731:1 9735:1 9737:1 9751:1 9753:1 9768:1 9772:1 9773:1 9776:1 9778:2 9782:1 9784:1 9806:1 9814:1 9823:2 9824:1 9831:1 9834:1 9835:1 9844:1 9849:2 9871:1 9873:7 9883:1 9890:2 9914:1 9915:1 9922:1 9932:1 9945:1 9946:1 9963:1 9966:1 9974:1 9985:7 9996:2 10007:1 10011:1 10020:1 10028:1 10043:2 10065:1 10070:2 10078:1 10080:1 10089:1 10102:2 10109:1 10116:1 10121:3 10125:1 10128:1 10129:3 10130:1 10144:1 10146:2 10152:1 10161:2 10166:1 10168:1 10175:1 10193:1 10197:1 10207:1 10208:1 10209:1 10214:1 10216:2 10217:3 10221:2 10261:1 10281:1 10287:1 10288:1 10291:1 10304:1 10314:1 10330:6 10340:2 10379:1 10384:3 10389:1 10390:2 10393:2 10394:2 10395:1 10396:1 10403:1 10407:1 10411:1 10415:2 10416:1 10417:2 10438:3 10439:4 10441:1 10445:1 10455:5 10460:1 10462:1 10463:1 10470:1 10485:1 10512:1 10514:1 10524:2 10532:2 10533:1 10535:1 10541:1 10574:1 10583:3 10595:2 10612:1 10650:1 10656:2 10658:2 10662:1 10664:1 10674:1 10676:1 10683:1 10696:1 10706:1 10716:1 10721:1 10727:1 10742:1 10743:1 10777:1 10783:1 10785:1 10792:1 10803:1 10812:1 10817:1 10839:1 10843:1 10848:1 10852:3 10854:1 10861:1 10865:1 10879:1 10881:3 10885:2 10896:1 10907:1 10920:1 10932:2 10935:1 10941:1 10943:4 10953:2 10962:1 10966:1 10969:2 10970:1 10973:1 10975:5 10980:1 10984:1 10989:1 10990:1 10999:3 11003:1 11004:1 11021:1 11022:1 11043:4 11051:2 11057:7 11059:1 11076:1 11101:1 11104:1 11108:2 11127:1 11138:3 11140:1 11143:1 11153:1 11160:2 11166:1 11180:1 11187:1 11194:1 11209:1 11215:1 11216:1 11225:1 11237:1 11248:1 11253:2 11288:1 11316:2 11329:3 11331:6 11332:4 11334:1 11349:1 11352:3 11358:3 11364:3 11368:2 11371:3 11374:1 11384:1 11390:1 11415:2 11416:2 11417:1 11419:1 11424:3 11436:36 11438:1 11442:1 11448:1 11455:2 11457:1 11463:3 11470:5 11472:3 11473:1 11481:2 11506:1 11516:1 11519:1 11525:1 11527:1 11534:1 11549:1 11565:1 11574:3 11575:2 11578:1 11590:1 11594:1 11605:1 11618:1 11635:1 11639:1 11653:1 11655:1 11656:1 11665:1 11687:1 11691:1 11694:2 11712:2 11713:4 11724:1 11743:1 11755:2 11760:3 11776:1 11781:3 11783:1 11784:3 11794:2 11810:1 11838:1 11844:1 11845:1 11846:1 11847:1 11862:1 11863:1 11867:2 11869:1 11878:2 11896:1 11898:1 11941:1 11948:1 11949:1 11963:1 11983:1 11989:1 11994:1 12012:1 12015:1 12016:1 12021:2 12028:1 12030:1 12033:1 12043:2 12051:1 12055:1 12061:1 12070:1 12076:1 12077:2 12089:1 12100:1 12118:1 12127:3 12144:18 12156:1 12176:3 12183:3 12190:1 12194:1 12267:3 12269:1 12272:1 12281:1 12286:1 12313:3 12314:1 12322:5 12345:1 12348:1 12360:1 12365:2 12366:3 12371:2 12374:1 12381:1 12384:2 12389:1 12390:1 12402:1 12408:1 12419:4 12424:1 12426:4 12442:2 12450:1 12474:2 12479:1 12486:1 12488:1 12493:1 12501:1 12516:1 12520:1 12536:1 12544:1 12545:1 12556:1 12568:1 12575:1 12580:1 12583:1 12588:1 12596:2 12630:1 12637:1 12641:1 12664:2 12676:1 12685:2 12694:1 12695:1 12703:1 12718:1 12731:2 12734:3 12736:1 12738:1 12745:1 12750:1 12757:1 12758:1 12772:1 12784:1 12789:1 12801:3 12804:1 12809:2 12811:4 12824:2 12830:3 12840:1 12842:1 12847:1 12861:1 12866:1 12871:1 12883:1 12892:2 12899:1 12919:1 12925:1 12926:4 12929:1 12931:1 12934:1 12946:1 12947:2 12948:1 12949:1 12951:1 12962:2 12992:1 13000:1 13005:1 13016:1 13019:1 13050:1 13064:1 13068:1 13082:1 13091:1 13121:2 13136:1 13139:1 13160:1 13178:2 13179:1 13206:1 13208:1 13209:1 13213:3 13242:2 13245:1 13256:2 13276:1 13278:1 13280:2 13302:1 13304:1 13313:1 13316:1 13318:1 13325:1 13326:3 13333:1 13334:1 13337:1 13347:1 13358:1 13378:1 13391:4 13413:1 13421:1 13437:1 13441:5 13443:5 13445:1 13456:1 13471:2 13502:1 13524:1 13531:1 13545:1 13549:1 13554:2 13572:1 13581:1 13583:2 13590:1 13596:1 13600:1 13602:1 13604:2 13605:2 13640:1 13659:1 13663:1 13680:1 13692:2 13693:2 13696:1 13708:2 13711:1 13714:4 13720:1 13741:2 13745:2 13752:1 13766:4 13803:1 13807:7 13836:1 13843:2 13860:1 13867:1 13873:1 13875:1 13882:1 13887:2 13896:2 13905:1 13906:1 13912:1 13915:2 13922:1 13924:1 13937:1 13942:1 13952:1 13967:3 13990:1 14004:1 14007:1 14016:1 14024:2 14028:1 14032:7 14036:1 14037:1 14043:2 14081:3 14089:1 14109:3 14120:1 14130:1 14140:1 14144:1 14151:1 14179:1 14181:1 14186:1 14189:1 14193:1 14198:3 14199:3 14201:1 14204:2 14206:1 14209:2 14212:1 14217:2 14219:1 14221:1 14258:1 14262:5 14280:1 14282:1 14285:1 14295:1 14304:1 14307:1 14314:1 14315:1 14319:1 14321:1 14326:1 14363:8 14368:2 14369:2 14400:1 14404:2 14410:1 14412:1 14414:1 14432:1 14433:2 14436:1 14437:1 14443:1 14449:3 14458:2 14470:1 14482:1 14485:1 14498:1 14499:1 14513:1 14515:1 14559:1 14564:1 14565:1 14581:1 14586:1 14625:1 14631:1 14633:1 14637:1 14642:5 14662:1 14668:3 14678:3 14683:2 14697:1 14700:1 14707:1 14709:1 14717:1 14725:2 14729:2 14750:2 14756:1 14758:1 14759:1 14763:1 14769:2 14771:2 14776:1 14821:1 14832:1 14844:2 14845:1 14850:1 14857:1 14871:1 14879:1 14889:1 14895:3 14896:2 14900:1 14931:2 14936:1 14945:1 14951:1 14959:10 14964:1 14977:2 14979:2 14985:1 14988:1 15003:2 15032:1 15033:1 15037:1 15048:1 15052:1 15054:1 15099:10 15100:2 15108:1 15133:1 15136:2 15138:1 15155:1 15165:1 15166:1 15184:1 15189:1 15198:1 15201:1 15202:1 15205:1 15208:1 15210:3 15222:1 15224:1 15229:2 15250:1 15260:1 15265:1 15281:2 15285:1 15287:1 15298:1 15300:1 15301:4 15306:1 15307:1 15309:1 15315:1 15320:1 15332:1 15339:1 15341:1 15346:1 15348:1 15359:4 15360:1 15369:1 15384:1 15385:1 15391:1 15416:1 15436:1 15441:1 15447:1 15448:1 15456:2 15458:1 15479:2 15490:1 15492:1 15519:2 15539:1 15542:1 15544:1 15548:9 15550:1 15552:5 15554:2 15569:1 15573:3 15577:1 15578:1 15584:1 15589:2 15597:1 15607:1 15618:2 15633:3 15634:1 15663:1 15664:1 15670:1 15674:3 15699:1 15703:1 15712:5 15715:1 15723:1 15727:1 15732:3 15745:1 15753:2 15754:4 15756:1 15774:1 15787:1 15795:2 15796:1 15799:1 15806:1 15814:2 15860:1 15875:1 15879:2 15881:1 15896:2 15918:1 15924:1 15931:1 15958:1 15992:1 16018:1 16027:1 16030:1 16031:1 16040:1 16045:1 16050:1 16051:2 16054:1 16058:1 16059:2 16067:1 16074:1 16075:5 16078:1 16080:5 16083:1 16090:1 16093:2 16100:2 16101:2 16105:3 16106:1 16110:1 16114:3 16117:1 16127:3 16131:1 16134:1 16140:1 16142:1 16163:2 16172:1 16177:1 16206:1 16207:1 16211:2 16225:3 16240:1 16246:1 16260:1 16262:1 16273:4 16278:1 16285:1 16297:1 16305:1 16312:1 16374:1 16376:1 16391:1 16393:1 16395:1 16418:1 16427:1 16431:1 16446:2 16473:1 16498:1 16502:1 16519:1 16523:1 16531:2 16535:1 16552:2 16553:1 16560:1 16575:1 16580:2 16581:1 16584:1 16585:1 16596:2 16600:1 16601:1 16602:2 16621:1 16628:2 16631:1 16650:1 16658:1 16676:11 16678:1 16679:1 16708:1 16712:1 16727:1 16731:3 16745:1 16749:2 16750:2 16758:1 16810:2 16816:2 16828:1 16844:2 16850:1 16851:1 16852:1 16867:2 16874:2 16890:1 16893:1 16921:1 16936:3 16949:1 16951:1 16955:1 16981:1 16987:1 16999:2 17005:1 17008:1 17029:1 17045:1 17052:3 17056:1 17062:11 17063:2 17068:1 17071:2 17078:2 17079:1 17083:1 17084:1 17089:1 17092:1 17099:1 17111:1 17126:1 17131:1 17132:1 17133:1 17137:1 17151:3 17156:2 17183:2 17189:1 17201:1 17202:1 17230:1 17231:1 17235:1 17237:1 17242:1 17259:3 17263:3 17266:2 17268:3 17273:1 17279:2 17287:4 17301:1 17314:1 17339:1 17345:1 17351:1 17379:1 17403:5 17414:1 17417:1 17429:1 17432:1 17453:1 17461:1 17463:1 17468:1 17495:1 17501:2 17504:1 17518:1 17533:2 17543:1 17549:1 17553:1 17554:1 17555:2 17565:1 17566:1 17591:6 17594:1 17604:1 17627:1 17632:1 17634:1 17643:1 17652:1 17660:1 17670:1 17672:1 17675:1 17695:1 17696:1 17753:1 17759:1 17769:1 17774:5 17776:1 17798:1 17799:1 17801:1 17809:2 17810:2 17818:1 17823:1 17826:1 17855:1 17881:1 17893:1 17894:1 17897:5 17922:1 17925:1 17929:1 17930:1 17935:1 17936:1 17971:1 17986:1 17989:1 17996:1 18002:1 18003:1 18022:1 18023:1 18027:1 18032:1 18045:1 18053:1 18074:2 18077:2 18099:3 18126:1 18141:1 18150:1 18153:2 18175:1 18179:1 18180:3 18198:1 18200:1 18227:2 18230:1 18245:1 18258:1 18263:1 18264:3 18269:1 18272:1 18274:1 18290:1 18302:1 18303:1 18310:2 18319:1 18333:1 18339:1 18357:2 18358:1 18360:2 18362:1 18380:2 18383:2 18386:1 18390:1 18393:1 18398:2 18399:1 18415:1 18432:1 18434:1 18451:1 18453:1 18455:1 18459:2 18465:1 18499:1 18523:4 18525:1 18531:1 18534:1 18535:2 18542:1 18545:1 18546:2 18556:1 18564:1 18603:1 18606:8 18613:3 18616:2 18627:2 18629:1 18634:1 18638:1 18644:2 18652:1 18656:1 18665:2 18666:1 18685:1 18687:1 18689:1 18697:1 18703:1 18707:1 18709:1 18710:1 18711:2 18713:1 18717:1 18725:2 18742:2 18751:1 18752:2 18760:1 18763:1 18765:1 18769:1 18791:2 18796:1 18807:1 18810:1 18815:1 18835:1 18851:2 18865:1 18881:1 18897:1 18904:1 18909:1 18918:1 18973:1 19013:1 19014:1 19015:1 19025:1 19026:1 19051:1 19053:1 19055:1 19062:1 19064:2 19085:1 19093:2 19115:1 19117:3 19121:1 19126:2 19152:1 19168:1 19215:2 19228:1 19270:1 19278:1 19292:1 19311:1 19315:2 19324:4 19339:1 19344:2 19353:2 19365:1 19367:2 19386:5 19388:2 19391:1 19407:1 19418:2 19444:1 19450:3 19452:1 19454:1 19495:1 19498:2 19503:1 19506:1 19508:1 19509:1 19512:1 19524:4 19525:1 19535:1 19536:3 19538:2 19549:1 19551:2 19555:1 19556:1 19558:2 19568:1 19578:1 19582:1 19586:1 19595:1 19597:1 19598:1 19600:5 19616:1 19621:1 19630:1 19638:1 19645:2 19649:2 19652:1 19655:11 19659:1 19664:5 19667:1 19680:1 19696:3 19700:1 19715:3 19718:2 19720:1 19721:1 19724:1 19727:1 19757:1 19777:1 19786:1 19792:1 19816:3 19829:1 19833:1 19851:1 19857:6 19863:1 19865:1 19891:1 19896:1 19908:2 19910:1 19913:1 19918:4 19929:4 19936:2 19965:1 19974:1 19975:4 19977:1 19991:2 19992:1 19995:1 19998:1 19999:1 20015:1 20020:1 20022:1 20030:1 20034:6 20035:1 20037:1 20039:1 20040:2 20041:1 20044:1 20047:1 20049:7 20050:1 20075:1 20076:1 20078:1 20081:1 20101:1 20102:2 20132:1 20170:1 20171:1 20185:1 20188:1 20210:1 20223:1 20251:1 20256:1 20258:1 20266:1 20267:2 20276:1 20284:1 20298:3 20305:3 20363:1 20366:1 20368:1 20379:1 20382:1 20383:1 20387:2 20390:6 20396:1 20402:1 20413:1 20430:2 20440:2 20451:1 20453:1 20469:1 20482:7 20494:3 20519:2 20529:1 20552:1 20580:1 20588:1 20589:1 20598:1 20614:1 20621:1 20633:1 20636:1 20669:1 20670:1 20706:1 20724:1 20735:1 20746:1 20758:1 20817:1 20822:1 20828:2 20844:1 20845:1 20846:1 20851:3 20855:2 20874:1 20875:1 20878:1 20880:1 20892:1 20903:1 20912:1 20933:1 20955:1 20956:1 20980:1 21034:3 21072:1 21080:2 21083:3 21096:1 21099:2 21110:2 21111:1 21113:1 21118:2 21121:1 21142:1 21180:1 21188:2 21202:1 21213:2 21216:1 21223:2 21244:1 21262:1 21265:1 21271:3 21274:1 21276:2 21298:2 21315:1 21318:1 21333:1 21341:1 21349:2 21353:1 21362:1 21374:3 21378:1 21379:2 21386:1 21402:1 21446:1 21451:3 21459:1 21463:1 21464:1 21470:2 21494:1 21510:2 21512:1 21538:1 21539:1 21540:1 21547:1 21568:1 21579:1 21586:1 21589:2 21619:1 21623:1 21626:3 21635:2 21637:3 21639:1 21640:3 21646:1 21667:1 21674:2 21707:5 21713:1 21715:1 21718:1
1 5:2 10:1 23:1 35:1 53:1 66:1 77:1 91:1 99:1 101:1 103:3 107:1 123:1 124:1 131:1 134:1 140:1 163:1 181:1 233:1 255:1 260:3 261:1 270:2 280:1 296:1 308:1 309:1 319:1 324:3 343:5 369:1 370:1 401:1 411:1 419:1 432:1 439:6 454:1 461:3 466:1 467:1 468:1 476:1 490:1 501:1 510:1 523:2 527:1 547:1 563:3 564:3 571:1 573:3 578:1 582:3 593:1 602:2 605:2 626:2 628:2 635:1 644:1 660:1 663:5 667:3 677:1 685:2 706:1 717:1 742:1 749:1 761:1 762:3 778:1 790:1 797:1 806:2 827:1 835:1 849:1 854:2 861:1 869:1 883:1 889:1 893:1 894:1 901:2 908:3 918:1 943:1 954:1 956:2 959:1 964:1 989:2 1004:1 1005:1 1018:2 1034:1 1037:3 1040:1 1045:1 1056:1 1073:3 1074:1 1079:1 1081:1 1099:1 1111:1 1124:1 1142:1 1152:2 1159:1 1160:2 1200:1 1205:2 1209:1 1216:1 1229:1 1237:3 1248:1 1261:2 1270:1 1278:1 1281:1 1282:3 1308:1 1320:5 1322:2 1331:1 1349:1 1351:1 1356:1 1358:4 1375:1 1392:1 1402:10 1407:4 1418:1 1419:3 1430:1 1435:1 1441:2 1453:1 1457:10 1463:1 1474:1 1475:4 1476:2 1478:6 1481:1 1482:1 1486:1 1488:2 1489:3 1507:2 1530:3 1531:4 1536:2 1549:1 1598:1 1600:2 1622:1 1624:1 1642:1 1644:1 1651:2 1653:1 1659:2 1683:2 1689:1 1698:1 1712:1 1715:1 1724:1 1740:1 1743:1 1771:1 1774:2 1779:1 1781:1 1785:1 1789:1 1790:1 1797:2 1834:1 1866:1 1875:1 1877:3 1879:2 1884:3 1885:2 1886:2 1887:1 1888:5 1889:1 1892:1 1893:2 1895:1 1898:1 1899:3 1903:1 1904:1 1908:1 1912:1 1913:1 1921:1 1927:1 1940:1 1951:1 1953:2 1967:1 1973:2 2007:2 2009:1 2025:1 2057:1 2077:1 2079:1 2102:1 2105:1 2107:1 2112:1 2113:1 2114:1 2128:1 2142:1 2161:1 2171:1 2172:1 2179:1 2180:2 2181:2 2208:1 2209:2 2215:1 2233:1 2235:1 2240:2 2267:1 2271:1 2274:1 2281:1 2288:1 2291:2 2306:1 2333:1 2340:1 2345:4 2356:7 2359:2 2375:1 2376:1 2412:2 2425:1 2427:1 2429:1 2434:1 2436:1 2441:2 2456:1 2458:1 2460:2 2465:1 2472:2 2485:2 2486:1 2489:1 2499:1 2503:1 2506:5 2507:1 2511:1 2515:1 2520:2 2522:1 2527:2 2532:1 2545:1 2552:2 2553:1 2562:1 2563:1 2567:1 2572:2 2574:1 2580:1 2583:1 2595:3 2604:2 2613:1 2619:2 2621:1 2623:1 2626:1 2654:1 2656:5 2664:1 2684:1 2691:1 2695:2 2701:1 2704:8 2706:1 2715:2 2718:6 2749:1 2750:4 2752:2 2753:3 2768:1 2775:1 2795:2 2798:4 2800:1 2804:1 2835:1 2840:2 2844:2 2845:1 2847:1 2862:2 2907:1 2913:1 2919:1 2927:4 2930:2 2932:1 2941:1 2945:1 2949:2 2953:1 2959:1 2965:1 2968:2 2971:2 2988:1 2989:1 2992:1 2997:1 3005:1 3024:1 3027:2 3032:1 3043:1 3059:2 3062:1 3065:1 3066:1 3071:2 3075:1 3093:2 3124:5 3138:1 3153:9 3156:2 3161:1 3166:1 3179:1 3184:1 3190:1 3194:1 3208:2 3228:1 3263:2 3271:3 3274:2 3275:1 3276:2 3290:1 3295:1 3299:1 3302:2 3308:1 3322:2 3325:2 3329:2 3331:4 3332:1 3337:2 3340:2 3341:2 3343:1 3344:1 3346:3 3354:4 3355:3 3358:5 3360:5 3362:1 3373:1 3391:1 3414:1 3417:1 3439:1 3445:1 3450:1 3451:3 3455:1 3465:2 3470:1 3477:1 3488:1 3493:1 3509:1 3521:2 3523:1 3524:1 3538:1 3539:1 3548:1 3552:1 3557:1 3576:1 3613:1 3622:1 3631:1 3633:1 3644:1 3661:1 3672:1 3679:3 3684:1 3692:1 3697:1 3712:1 3717:1 3718:1 3722:1 3732:1 3747:1 3749:2 3755:1 3760:3 3767:2 3772:1 3775:5 3777:2 3781:1 3788:1 3789:1 3790:1 3793:1 3800:3 3806:2 3808:2 3815:2 3819:1 3821:1 3828:5 3856:4 3857:1 3865:1 3887:1 3888:2 3893:1 3896:1 3899:1 3900:1 3901:1 3903:1 3904:1 3910:1 3916:1 3925:6 3927:1 3928:1 3939:1 3948:1 3957:5 3965:4 3966:1 3979:1 3981:1 3988:2 3990:1 3997:3 3998:2 4009:1 4025:1 4026:2 4032:2 4036:1 4038:1 4041:1 4065:3 4071:1 4090:1 4097:1 4101:2 4103:1 4104:2 4106:2 4118:1 4121:2 4129:1 4131:1 4133:3 4136:1 4143:2 4150:1 4158:1 4182:1 4198:1 4199:1 4200:1 4216:1 4227:1 4230:1 4239:1 4242:1 4246:2 4265:3 4272:1 4277:1 4279:13 4311:2 4312:1 4315:1 4316:1 4317:1 4318:1 4326:2 4333:2 4358:13 4361:1 4387:1 4398:2 4400:2 4426:1 4429:2 4442:1 4447:1 4461:1 4482:1 4489:1 4498:1 4505:1 4513:1 4524:1 4532:1 4534:5 4555:1 4565:3 4573:1 4582:1 4584:1 4586:1 4600:1 4627:1 4641:1 4643:2 4661:1 4663:1 4667:1 4680:2 4698:1 4717:2 4737:3 4757:1 4770:2 4771:1 4786:1 4792:1 4794:1 4797:1 4803:1 4811:1 4841:1 4855:1 4866:1 4868:2 4869:1 4884:1 4895:1 4910:6 4933:1 4936:2 4958:1 4969:1 5018:2 5032:8 5058:1 5059:1 5074:1 5082:1 5083:1 5087:1 5089:1 5103:1 5133:1 5149:1 5156:1 5182:2 5187:1 5199:1 5205:1 5206:11 5218:1 5220:2 5222:1 5223:2 5226:1 5244:1 5249:1 5250:1 5257:12 5274:2 5277:1 5290:5 5293:1 5307:1 5308:1 5310:1 5317:1 5321:3 5331:1 5338:2 5348:1 5369:1 5386:1 5395:1 5396:1 5418:1 5422:1 5429:2 5434:1 5438:1 5453:1 5456:4 5461:1 5492:1 5495:1 5499:2 5506:2 5508:1 5528:2 5530:1 5533:1 5547:1 5555:2 5572:1 5574:1 5577:1 5579:4 5583:1 5587:2 5592:2 5593:2 5606:2 5621:2 5624:2 5625:2 5647:1 5651:2 5656:2306 5670:1 5678:1 5679:1 5682:2 5687:1 5696:1 5700:1 5714:1 5716:1 5726:6 5728:3 5741:2 5761:1 5765:1 5772:1 5779:1 5784:2 5787:1 5793:1 5814:2 5824:1 5829:2 5846:1 5862:2 5873:1 5894:2 5901:1 5904:1 5915:1 5927:1 5939:3 5941:1 5944:1 5945:1 5947:2 5952:1 5955:2 5981:1 5983:1 5987:2 5992:3 5993:2 5997:1 6004:1 6025:1 6033:1 6050:1 6066:1 6067:1 6106:7 6108:1 6109:1 6142:3 6156:1 6165:1 6171:1 6176:1 6179:2 6185:1 6189:1 6192:1 6201:2 6210:2 6240:1 6244:1 6248:2 6268:3 6296:1 6302:1 6308:3 6312:1 6335:2 6359:1 6366:1 6367:1 6373:2 6376:1 6378:2 6397:1 6399:1 6403:1 6410:2 6414:1 6417:1 6435:1 6449:1 6460:1 6468:1 6479:2 6488:3 6507:1 6513:1 6518:1 6540:1 6550:2 6558:1 6567:4 6570:1 6577:2 6578:1 6590:1 6593:1 6597:1 6603:2 6606:1 6612:2 6614:2 6631:4 6642:2 6655:1 6662:1 6673:2 6674:2 6700:1 6702:2 6708:3 6709:2 6711:1 6713:1 6728:3 6732:1 6733:2 6746:4 6747:1 6756:1 6776:1 6793:1 6820:1 6822:1 6832:2 6833:1 6846:1 6870:3 6871:1 6892:11 6894:1 6899:1 6901:1 6906:1 6914:1 6916:1 6957:1 6961:1 6975:4 6976:1 6986:1 6989:2 6998:2 7000:1 7012:4 7028:1 7038:1 7066:1 7075:2 7084:2 7095:2 7098:1 7107:1 7112:1 7117:4 7119:5 7121:2 7124:1 7129:1 7131:1 7132:1 7136:1 7138:1 7140:5 7142:4 7146:2 7147:5 7154:1 7158:3 7162:1 7171:1 7175:1 7199:1 7203:1 7206:2 7211:1 7213:1 7215:1 7253:1 7271:1 7272:1 7274:1 7283:1 7300:2 7315:1 7340:1 7345:1 7360:1 7388:2 7404:1 7405:2 7406:1 7408:1 7419:1 7421:1 7426:1 7458:1 7461:1 7462:1 7466:1 7470:1 7480:1 7488:1 7504:1 7506:1 7516:1 7519:1 7520:1 7529:1 7530:1 7545:1 7555:1 7569:1 7572:1 7575:4 7580:2 7588:1 7589:3 7636:1 7665:1 7682:1 7689:2 7691:1 7693:1 7697:2 7699:1 7700:2 7702:2 7712:1 7720:1 7722:1 7732:2 7739:1 7740:2 7741:2 7744:1 7768:4 7779:2 7792:1 7797:1 7812:1 7818:1 7821:1 7823:4 7835:3 7853:1 7859:1 7860:1 7872:1 7873:1 7878:1 7891:1 7898:1 7905:2 7930:1 7931:1 7938:1 7940:1 7944:1 7953:2 7965:1 7969:1 7974:3 7975:13 7977:2 7985:1 7991:1 7994:3 8003:1 8006:1 8022:1 8033:1 8059:1 8070:1 8075:1 8087:1 8093:1 8095:1 8104:1 8108:1 8136:1 8140:1 8141:1 8145:1 8154:1 8179:1 8188:1 8195:2 8202:1 8208:1 8213:2 8221:1 8250:4 8251:1 8254:2 8257:1 8259:2 8261:4 8278:1 8280:1 8299:2 8312:3 8327:2 8330:1 8342:2 8345:6 8348:1 8359:2 8364:2 8377:1 8378:1 8391:2 8428:6 8444:1 8450:1 8462:1 8488:1 8494:1 8497:1 8512:1 8518:1 8520:1 8521:1 8532:2 8533:1 8554:1 8570:1 8575:1 8576:1 8590:2 8601:1 8608:2 8619:2 8621:3 8646:2 8647:1 8653:1 8663:1 8668:1 8673:1 8675:1 8679:5 8682:1 8683:1 8687:1 8688:1 8693:2 8697:2 8705:1 8707:1 8709:1 8752:1 8755:1 8756:1 8762:1 8765:1 8766:2 8772:1 8775:1 8776:1 8777:3 8783:10 8788:2 8792:2 8807:2 8814:1 8828:2 8852:2 8862:4 8863:1 8867:2 8880:2 8899:1 8909:2 8913:1 8923:1 8931:1 8943:2 8952:1 8958:3 8967:2 8969:1 8981:4 8985:1 8997:6 9001:1 9003:1 9008:2 9015:1 9027:3 9059:2 9068:1 9084:1 9089:1 9095:1 9111:1 9113:1 9121:1 9128:1 9135:1 9139:2 9143:2 9148:1 9151:1 9152:1 9154:1 9155:1 9157:1 9160:2 9162:3 9168:1 9169:1 9171:2 9176:2 9179:2 9181:3 9184:2 9203:1 9207:2 9232:2 9245:1 9246:1 9258:1 9260:1 9262:3 9263:1 9281:2 9293:1 9299:1 9300:1 9311:2 9319:1 9330:1 9333:1 9340:1 9345:1 9347:1 9370:1 9387:1 9396:1 9399:1 9402:2 9407:2 9424:1 9438:1 9440:1 9442:4 9445:2 9468:1 9480:1 9547:1 9554:1 9568:1 9585:2 9587:1 9589:1 9598:2 9599:2 9604:1 9605:1 9612:1 9615:1 9618:1 9630:1 9634:1 9655:3 9657:1 9661:1 9668:1 9688:2 9694:1 9703:2 9714:1 9721:1 9726:1 9731:1 9735:1 9737:1 9751:1 9753:1 9768:1 9772:1 9773:1 9776:1 9778:2 9782:1 9784:1 9806:1 9814:1 9823:2 9824:1 9831:2 9834:1 9835:1 9844:1 9849:2 9871:1 9873:8 9883:1 9885:2 9890:2 9914:1 9915:1 9922:1 9932:1 9945:1 9946:1 9963:1 9966:1 9974:1 9985:7 9996:2 10007:2 10011:1 10020:1 10028:1 10043:2 10065:1 10070:2 10078:1 10080:1 10089:1 10102:2 10109:1 10116:1 10121:3 10125:1 10128:1 10129:3 10130:1 10144:1 10146:2 10152:1 10161:2 10166:1 10168:1 10175:1 10193:1 10197:1 10207:1 10208:1 10209:1 10214:1 10216:2 10217:3 10221:2 10261:1 10281:1 10285:1 10287:1 10288:1 10291:1 10304:1 10314:1 10330:6 10340:2 10379:1 10384:3 10389:1 10390:3 10393:2 10394:2 10395:1 10396:1 10403:1 10407:1 10411:1 10412:1 10415:2 10416:1 10417:2 10433:1 10438:3 10439:4 10441:1 10445:1 10455:5 10460:1 10462:1 10463:1 10470:1 10485:1 10512:1 10514:1 10524:2 10532:2 10533:2 10535:1 10541:1 10574:1 10583:3 10595:3 10612:1 10650:2 10656:2 10658:2 10662:1 10664:1 10674:1 10676:1 10683:1 10696:1 10706:1 10716:1 10721:1 10727:1 10742:1 10743:1 10775:1 10777:1 10783:1 10785:1 10792:1 10803:1 10812:1 10817:1 10839:1 10843:1 10845:1 10848:1 10852:4 10854:1 10861:1 10865:1 10879:1 10881:3 10885:3 10896:1 10907:1 10920:1 10932:2 10935:1 10941:1 10943:4 10953:2 10962:1 10966:1 10969:2 10970:1 10973:1 10975:6 10980:1 10984:1 10989:1 10990:1 10993:1 10999:3 11003:1 11004:1 11021:1 11022:1 11043:4 11045:1 11051:2 11057:7 11059:1 11076:1 11101:1 11104:1 11108:2 11127:1 11138:3 11140:1 11143:1 11153:1 11160:2 11163:1 11166:1 11180:1 11187:1 11194:1 11209:1 11210:1 11215:1 11216:1 11225:1 11237:1 11248:1 11253:2 11274:1 11288:1 11316:2 11329:3 11331:6 11332:4 11334:1 11349:2 11352:3 11358:3 11364:4 11368:2 11371:3 11374:1 11384:1 11390:1 11415:2 11416:2 11417:1 11419:1 11424:3 11436:37 11438:1 11442:1 11448:1 11455:2 11457:1 11463:3 11470:6 11472:3 11473:1 11481:2 11486:1 11506:1 11516:1 11519:1 11525:1 11527:1 11534:1 11549:1 11565:1 11574:3 11575:2 11578:1 11590:1 11594:1 11605:1 11618:1 11635:1 11639:1 11653:1 11655:1 11656:1 11665:1 11687:1 11691:1 11694:2 11712:2 11713:5 11724:1 11743:1 11755:2 11760:3 11776:1 11781:3 11783:1 11784:3 11794:2 11810:1 11838:1 11844:1 11845:1 11846:1 11847:1 11862:1 11863:1 11867:2 11869:1 11878:2 11896:1 11898:1 11941:1 11948:1 11949:1 11963:1 11983:1 11989:1 11994:1 12012:1 12015:1 12016:1 12021:2 12028:1 12030:1 12033:1 12043:2 12051:1 12055:1 12061:1 12070:1 12076:1 12077:2 12089:1 12100:1 12118:1 12127:3 12144:19 12156:1 12176:3 12183:3 12190:1 12194:1 12267:3 12269:1 12272:1 12281:1 12286:1 12313:3 12314:2 12322:5 12345:1 12348:1 12360:1 12365:2 12366:3 12371:2 12374:1 12381:1 12384:2 12389:1 12390:1 12402:1 12408:1 12419:4 12424:1 12426:4 12442:2 12450:1 12474:2 12479:1 12486:1 12488:1 12493:1 12501:1 12516:1 12520:1 12536:1 12544:1 12545:1 12549:1 12556:1 12568:1 12575:1 12580:1 12583:1 12588:1 12596:2 12630:1 12637:1 12641:1 12664:2 12676:1 12685:2 12694:1 12695:1 12703:1 12718:1 12727:1 12731:2 12734:3 12736:1 12738:1 12745:1 12750:1 12757:1 12758:1 12772:1 12784:1 12789:1 12801:3 12804:2 12809:2 12811:4 12824:2 12830:3 12840:1 12842:1 12847:1 12861:1 12866:1 12871:1 12883:1 12892:2 12899:1 12919:1 12925:1 12926:4 12929:1 12931:1 12934:1 12938:1 12946:1 12947:2 12948:1 12949:1 12951:1 12962:2 12992:1 13000:1 13005:1 13016:1 13019:1 13050:1 13064:1 13068:1 13082:1 13091:1 13121:2 13136:1 13139:1 13160:1 13178:2 13179:1 13206:1 13208:1 13209:1 13213:3 13242:2 13245:1 13256:2 13276:1 13278:1 13280:2 13302:1 13304:1 13313:1 13316:1 13318:1 13325:1 13326:3 13333:1 13334:1 13337:1 13347:1 13358:1 13371:1 13378:1 13391:4 13413:1 13421:1 13437:1 13441:6 13443:5 13445:1 13456:1 13471:2 13502:1 13524:1 13531:1 13545:1 13549:1 13554:2 13572:1 13581:1 13583:2 13590:1 13596:1 13600:1 13602:1 13604:2 13605:2 13625:1 13640:1 13659:2 13663:1 13680:1 13692:2 13693:2 13696:1 13708:3 13711:1 13714:5 13720:1 13741:2 13745:2 13750:1 13752:1 13766:4 13803:1 13807:7 13836:1 13843:2 13860:1 13867:1 13873:1 13875:1 13882:1 13887:2 13896:2 13905:1 13906:1 13912:1 13915:2 13922:1 13924:1 13937:1 13942:1 13952:1 13967:3 13990:1 14004:1 14007:1 14016:1 14024:2 14028:1 14032:7 14036:1 14037:1 14043:2 14081:3 14089:1 14096:1 14109:3 14120:1 14130:1 14140:1 14144:1 14151:1 14179:1 14181:1 14186:1 14189:1 14193:1 14198:3 14199:3 14201:1 14204:3 14206:1 14209:2 14212:1 14217:2 14219:1 14221:1 14258:1 14262:5 14280:1 14282:1 14285:1 14295:1 14304:1 14307:1 14314:1 14315:1 14319:1 14321:1 14326:1 14363:8 14368:2 14369:3 14400:1 14404:2 14410:1 14412:1 14414:1 14432:1 14433:2 14436:1 14437:1 14443:1 14449:3 14458:2 14470:1 14482:1 14485:1 14498:1 14499:1 14513:1 14515:1 14559:1 14564:1 14565:1 14581:1 14586:1 14625:1 14631:1 14633:1 14637:1 14642:5 14662:1 14668:3 14678:3 14683:2 14697:1 14700:1 14707:1 14709:1 14717:1 14720:1 14725:2 14729:2 14750:2 14756:1 14758:1 14759:1 14763:1 14769:2 14771:2 14776:1 14821:1 14832:1 14844:2 14845:1 14850:1 14857:1 14871:1 14879:1 14889:1 14895:3 14896:2 14900:1 14931:2 14936:1 14945:1 14951:1 14959:10 14964:2 14977:2 14979:2 14985:1 14988:1 15003:2 15032:1 15033:1 15037:1 15048:1 15052:1 15054:1 15099:11 15100:2 15108:1 15133:1 15136:2 15138:1 15155:1 15165:1 15166:1 15184:1 15189:1 15198:1 15201:1 15202:1 15205:1 15208:1 15210:4 15222:1 15224:1 15229:2 15250:1 15256:2 15260:1 15265:1 15281:2 15285:1 15287:1 15298:1 15300:1 15301:4 15306:1 15307:1 15309:1 15315:1 15320:1 15332:1 15339:1 15340:1 15341:1 15346:1 15348:1 15359:4 15360:1 15369:1 15384:1 15385:1 15391:1 15416:1 15436:1 15441:1 15447:1 15448:1 15456:2 15458:1 15479:2 15490:1 15492:1 15519:2 15539:1 15542:1 15544:1 15548:9 15550:1 15552:5 15554:2 15569:1 15573:3 15577:1 15578:1 15584:1 15589:2 15597:1 15607:1 15618:2 15621:1 15633:3 15634:2 15663:1 15664:1 15670:1 15674:3 15699:1 15703:1 15712:5 15715:1 15723:1 15727:1 15732:3 15745:1 15753:2 15754:4 15756:1 15774:1 15787:1 15795:2 15796:1 15799:1 15806:1 15814:2 15860:1 15875:1 15879:2 15881:1 15896:2 15918:1 15924:1 15931:1 15958:1 15992:1 16018:1 16020:1 16027:1 16030:1 16031:1 16040:1 16045:1 16050:1 16051:2 16054:1 16058:1 16059:2 16067:1 16074:1 16075:5 16078:1 16080:5 16083:1 16090:1 16093:2 16100:2 16101:2 16105:3 16106:1 16110:1 16114:3 16117:1 16127:3 16131:1 16134:1 16140:1 16142:1 16163:2 16172:1 16176:1 16177:1 16206:1 16207:1 16211:2 16225:3 16240:1 16246:1 16249:1 16260:1 16262:1 16273:4 16278:1 16285:1 16297:1 16305:1 16312:1 16339:1 16374:1 16376:1 16391:1 16393:1 16395:1 16418:1 16427:1 16431:1 16443:1 16446:2 16473:1 16498:1 16502:1 16519:1 16523:1 16527:1 16531:2 16535:2 16552:2 16553:1 16560:1 16575:1 16580:2 16581:1 16584:1 16585:2 16596:3 16600:1 16601:1 16602:2 16621:1 16628:2 16631:1 16650:1 16658:1 16676:13 16678:1 16679:1 16708:1 16712:1 16725:1 16727:1 16731:3 16745:1 16749:2 16750:2 16758:1 16810:2 16816:2 16828:1 16844:2 16850:1 16851:1 16852:1 16867:2 16874:2 16890:1 16893:1 16921:1 16936:3 16949:1 16951:1 16955:1 16981:1 16987:1 16999:2 17005:1 17008:1 17029:1 17045:1 17052:3 17053:1 17056:1 17062:12 17063:2 17068:1 17071:2 17078:2 17079:1 17083:1 17084:1 17089:1 17092:1 17099:1 17111:1 17126:1 17131:1 17132:1 17133:1 17137:1 17144:2 17151:3 17156:2 17183:2 17189:1 17201:1 17202:1 17230:1 17231:1 17235:1 17237:1 17242:1 17259:3 17263:3 17266:2 17268:3 17273:1 17279:2 17287:4 17301:1 17314:1 17339:1 17345:1 17351:1 17379:1 17403:5 17414:1 17417:1 17429:1 17432:1 17438:1 17453:1 17461:1 17463:1 17468:1 17495:2 17501:2 17504:1 17518:2 17533:2 17543:1 17549:1 17553:1 17554:1 17555:2 17565:1 17566:1 17591:6 17594:1 17604:1 17627:1 17632:1 17634:2 17643:1 17652:1 17660:1 17670:1 17672:1 17675:1 17695:1 17696:1 17753:1 17759:1 17769:1 17774:5 17776:1 17798:1 17799:1 17801:1 17809:2 17810:2 17818:1 17823:1 17826:1 17855:1 17881:1 17893:1 17894:1 17897:5 17922:1 17925:1 17929:1 17930:1 17935:1 17936:1 17971:1 17986:1 17989:1 17996:1 18002:1 18003:1 18012:1 18022:1 18023:1 18027:1 18032:1 18045:1 18053:1 18074:2 18077:2 18099:3 18126:1 18141:1 18150:1 18153:2 18175:1 18179:1 18180:3 18198:1 18200:1 18227:2 18230:1 18245:2 18258:1 18263:1 18264:3 18269:1 18272:1 18274:1 18290:1 18302:1 18303:1 18310:2 18319:1 18333:1 18339:1 18357:2 18358:1 18360:2 18362:1 18380:3 18383:2 18386:1 18390:1 18393:1 18398:2 18399:1 18415:1 18432:1 18434:1 18451:1 18453:1 18455:1 18459:2 18465:1 18499:1 18523:5 18525:1 18531:1 18534:1 18535:2 18542:1 18545:1 18546:2 18556:1 18564:1 18566:1 18575:1 18603:1 18606:9 18613:3 18616:2 18627:2 18629:1 18634:1 18638:1 18644:2 18652:1 18656:1 18665:2 18666:1 18677:1 18685:1 18687:1 18689:1 18697:1 18703:1 18707:1 18709:1 18710:1 18711:2 18713:1 18717:1 18725:2 18742:2 18751:1 18752:2 18760:1 18763:1 18765:1 18769:1 18791:2 18796:1 18807:1 18810:1 18815:1 18835:1 18851:2 18865:1 18881:1 18897:1 18904:1 18909:1 18918:1 18948:1 18973:1 19013:1 19014:2 19015:1 19025:1 19026:1 19051:1 19053:1 19055:1 19062:1 19064:2 19085:1 19093:2 19115:1 19117:3 19121:1 19126:3 19152:1 19168:1 19215:2 19228:1 19270:1 19278:1 19292:1 19311:1 19315:2 19324:4 19339:1 19344:2 19353:2 19365:1 19367:2 19386:5 19388:2 19391:1 19407:1 19418:2 19444:1 19450:3 19452:1 19454:1 19495:1 19498:2 19503:1 19506:1 19508:1 19509:1 19512:1 19524:4 19525:1 19535:1 19536:3 19538:2 19549:1 19551:2 19555:1 19556:1 19558:2 19568:1 19578:1 19582:1 19586:1 19595:1 19597:1 19598:1 19600:5 19616:1 19621:1 19630:1 19638:1 19645:2 19649:2 19652:1 19655:11 19659:1 19664:5 19667:1 19680:1 19696:3 19700:1 19715:3 19718:2 19720:1 19721:1 19724:1 19727:2 19757:1 19777:1 19786:1 19792:1 19816:3 19829:1 19833:1 19851:1 19857:6 19863:1 19865:1 19891:1 19896:1 19908:2 19910:1 19913:1 19918:4 19929:4 19936:2 19965:1 19974:1 19975:4 19977:1 19991:2 19992:1 19995:1 19998:1 19999:1 20015:1 20020:1 20022:1 20030:1 20034:6 20035:1 20037:1 20039:1 20040:2 20041:1 20044:1 20047:1 20049:7 20050:2 20075:1 20076:1 20078:1 20081:1 20101:1 20102:2 20132:1 20170:1 20171:1 20185:1 20188:1 20210:1 20223:1 20251:1 20256:1 20258:1 20262:1 20266:1 20267:2 20276:1 20284:1 20298:3 20305:3 20363:1 20366:1 20368:1 20379:1 20382:1 20383:1 20387:2 20390:6 20396:1 20402:1 20413:1 20430:2 20440:2 20451:1 20453:1 20469:1 20482:7 20494:4 20519:2 20529:1 20552:1 20580:1 20588:1 20589:1 20598:1 20614:1 20621:1 20633:1 20636:1 20669:1 20670:1 20706:1 20724:1 20735:1 20746:1 20758:1 20817:1 20822:1 20828:2 20844:1 20845:1 20846:1 20848:1 20851:4 20855:2 20874:1 20875:1 20878:1 20880:1 20892:1 20903:1 20912:1 20933:1 20955:1 20956:1 20980:1 21034:3 21072:1 21080:3 21083:3 21096:1 21099:2 21110:2 21111:1 21113:1 21118:2 21121:1 21142:1 21180:1 21188:2 21202:1 21213:2 21216:1 21223:2 21244:1 21262:1 21265:1 21271:3 21274:1 21276:2 21298:2 21308:1 21315:1 21318:1 21333:1 21341:1 21349:2 21353:1 21361:1 21362:1 21374:3 21378:1 21379:2 21386:1 21402:1 21446:1 21451:3 21459:1 21463:1 21464:1 21470:2 21494:1 21510:2 21512:1 21538:1 21539:1 21540:1 21547:1 21568:1 21579:1 21581:1 21586:2 21589:2 21619:1 21623:1 21626:3 21635:3 21637:3 21639:1 21640:3 21646:1 21667:1 21674:2 21707:5 21713:1 21715:1 21718:1
1 5:2 10:1 23:1 35:1 53:1 66:1 77:1 91:1 99:1 101:1 103:3 107:1 123:1 124:1 131:1 134:1 140:1 163:1 181:1 217:1 233:1 255:1 260:3 261:1 270:2 280:1 296:2 308:1 309:1 319:1 324:3 343:5 369:1 370:1 401:1 411:1 419:1 432:1 439:7 454:1 461:3 466:1 467:1 468:2 476:1 490:1 501:2 510:2 523:2 527:1 547:1 563:3 564:3 571:1 573:3 578:1 582:3 593:1 602:2 605:2 626:2 628:2 635:1 644:1 660:1 663:5 667:3 677:1 685:2 706:1 717:1 742:1 749:1 761:1 762:3 778:1 790:1 797:2 806:2 827:1 835:1 849:1 854:2 858:1 861:1 869:1 883:1 889:1 893:1 894:1 901:2 908:3 918:1 943:1 954:1 956:2 959:1 964:1 989:2 1004:1 1005:1 1018:2 1034:1 1037:3 1040:1 1045:1 1056:1 1073:3 1074:1 1079:1 1081:1 1099:1 1111:1 1124:1 1142:1 1152:2 1159:1 1160:2 1200:1 1205:2 1209:1 1216:1 1229:2 1237:3 1248:1 1258:1 1261:2 1270:1 1278:1 1281:1 1282:3 1308:1 1320:5 1322:2 1331:1 1349:1 1351:1 1356:1 1358:4 1375:1 1392:1 1402:10 1407:4 1418:1 1419:3 1430:1 1435:1 1441:2 1453:1 1457:11 1463:1 1474:1 1475:4 1476:2 1478:6 1481:1 1482:1 1486:1 1488:2 1489:3 1492:1 1507:2 1530:3 1531:4 1536:2 1549:1 1598:1 1600:2 1622:1 1624:1 1642:1 1644:1 1651:2 1653:1 1659:2 1683:2 1689:1 1698:1 1712:1 1715:1 1724:1 1740:1 1743:1 1771:1 1774:2 1779:1 1781:1 1784:1 1785:1 1789:1 1790:1 1797:2 1800:1 1834:1 1866:1 1875:1 1877:3 1879:2 1884:4 1885:2 1886:2 1887:1 1888:5 1889:1 1890:1 1892:1 1893:2 1895:1 1898:2 1899:3 1903:1 1904:1 1908:1 1912:2 1913:1 1920:1 1921:1 1927:1 1940:1 1951:1 1953:2 1967:1 1973:2 2007:2 2009:1 2025:1 2036:1 2055:1 2057:1 2077:1 2079:1 2102:1 2105:1 2107:1 2112:1 2113:1 2114:1 2128:1 2142:1 2161:1 2171:1 2172:1 2179:1 2180:2 2181:2 2208:1 2209:2 2215:1 2233:1 2235:1 2240:2 2267:1 2271:1 2274:1 2281:1 2288:1 2291:2 2306:1 2333:1 2340:1 2345:4 2356:7 2359:2 2375:1 2376:1 2412:2 2425:1 2427:1 2429:1 2434:1 2436:1 2441:2 2456:1 2458:1 2460:2 2465:1 2472:2 2485:2 2486:2 2489:1 2498:1 2499:1 2503:1 2506:5 2507:1 2511:1 2515:1 2520:2 2522:1 2527:2 2532:1 2545:1 2552:2 2553:1 2562:1 2563:1 2567:1 2572:2 2574:1 2580:1 2583:1 2595:3 2604:2 2613:2 2619:2 2621:1 2623:1 2626:1 2635:1 2654:1 2656:5 2664:1 2684:1 2691:1 2695:2 2701:2 2704:9 2706:1 2715:2 2718:6 2749:1 2750:4 2752:2 2753:3 2768:1 2775:1 2791:1 2795:2 2798:4 2800:1 2804:1 2829:1 2835:1 2840:2 2844:2 2845:1 2847:1 2862:2 2907:1 2913:1 2919:1 2927:5 2930:2 2932:1 2941:1 2945:1 2949:2 2953:1 2959:1 2965:1 2968:2 2971:3 2978:1 2988:1 2989:1 2992:1 2997:1 3005:1 3024:1 3027:2 3032:1 3043:1 3059:2 3062:1 3065:1 3066:1 3071:2 3075:1 3093:2 3124:5 3138:1 3153:9 3156:2 3161:1 3166:1 3179:1 3184:1 3190:1 3194:1 3208:2 3228:1 3263:2 3271:3 3274:2 3275:1 3276:3 3290:1 3295:1 3299:1 3302:2 3308:1 3322:2 3325:2 3329:2 3331:4 3332:1 3337:2 3340:2 3341:2 3343:1 3344:1 3346:4 3354:4 3355:3 3358:5 3360:6 3362:1 3373:1 3391:1 3414:1 3417:1 3429:1 3439:1 3445:1 3450:1 3451:3 3455:1 3465:2 3470:1 3477:1 3488:1 3493:1 3509:1 3521:2 3523:1 3524:1 3538:1 3539:1 3541:1 3548:1 3552:1 3557:1 3576:1 3613:1 3622:1 3631:1 3633:1 3644:1 3661:1 3672:1 3674:1 3679:3 3684:1 3692:1 3697:1 3712:1 3717:1 3718:1 3722:1 3732:1 3747:1 3749:2 3755:1 3759:1 3760:3 3767:2 3772:1 3775:5 3777:3 3781:1 3788:1 3789:1 3790:1 3793:1 3800:3 3806:2 3808:2 3815:2 3819:1 3821:1 3828:6 3856:4 3857:1 3865:1 3887:1 3888:2 3893:1 3896:1 3899:1 3900:1 3901:1 3903:1 3904:1 3910:1 3916:1 3925:6 3927:1 3928:1 3939:1 3948:2 3957:5 3965:4 3966:1 3979:2 3981:1 3988:2 3990:1 3997:3 3998:2 4009:2 4025:1 4026:2 4032:3 4036:1 4038:1 4041:1 4065:3 4071:1 4090:1 4097:1 4101:2 4103:1 4104:2 4106:2 4118:1 4121:3 4129:1 4131:1 4133:4 4136:1 4143:2 4150:1 4158:1 4182:1 4198:1 4199:1 4200:1 4216:1 4227:1 4230:1 4239:1 4242:1 4246:2 4265:3 4272:1 4277:1 4279:13 4311:2 4312:1 4315:1 4316:1 4317:1 4318:1 4326:2 4333:2 4358:14 4361:1 4382:1 4387:1 4398:2 4400:3 4426:1 4429:2 4440:1 4442:1 4447:1 4459:1 4461:1 4482:1 4489:1 4498:1 4505:1 4513:1 4524:1 4532:1 4534:5 4555:1 4565:3 4573:1 4582:1 4584:1 4586:1 4600:1 4627:1 4641:1 4643:2 4661:1 4663:1 4667:1 4680:2 4698:1 4717:2 4737:3 4757:1 4770:2 4771:1 4786:1 4792:1 4794:1 4797:1 4803:1 4811:1 4841:1 4855:1 4863:1 4866:1 4868:2 4869:1 4884:1 4895:1 4910:6 4933:1 4936:2 4958:1 4969:1 5004:1 5018:2 5032:9 5058:1 5059:1 5074:1 5082:1 5083:1 5087:1 5089:1 5103:1 5133:1 5149:1 5156:1 5182:2 5187:1 5199:1 5205:1 5206:12 5218:1 5220:2 5222:2 5223:2 5226:1 5244:1 5249:1 5250:1 5251:1 5257:13 5274:2 5277:1 5290:5 5293:1 5307:1 5308:1 5310:1 5317:1 5321:3 5331:1 5338:2 5348:1 5369:1 5386:1 5395:1 5396:1 5418:1 5422:1 5429:2 5434:1 5438:1 5453:1 5456:4 5461:1 5492:1 5495:1 5499:2 5506:2 5508:1 5528:2 5530:1 5533:1 5534:1 5547:1 5555:2 5572:1 5574:1 5577:1 5579:4 5583:1 5587:2 5592:2 5593:2 5606:2 5608:1 5621:2 5624:2 5625:2 5647:1 5651:2 5656:2402 5670:1 5678:1 5679:1 5682:2 5687:1 5696:1 5700:1 5714:1 5716:1 5726:6 5728:3 5741:2 5761:1 5765:1 5772:1 5779:1 5784:2 5787:1 5793:1 5814:2 5824:1 5829:2 5846:1 5862:2 5866:1 5873:1 5894:2 5901:1 5904:1 5905:1 5915:2 5927:1 5939:3 5941:1 5944:1 5945:1 5947:2 5952:1 5955:2 5981:1 5983:1 5987:2 5992:3 5993:2 5997:1 6004:1 6023:1 6025:1 6033:1 6050:1 6057:1 6066:1 6067:1 6088:1 6106:7 6108:1 6109:1 6142:3 6156:1 6165:1 6171:1 6176:1 6179:2 6185:1 6189:1 6192:1 6201:2 6210:2 6240:1 6244:1 6248:2 6268:3 6296:1 6302:1 6308:3 6312:1 6335:2 6359:1 6366:1 6367:1 6373:2 6376:1 6378:3 6381:1 6397:1 6399:1 6403:1 6410:2 6414:1 6417:1 6435:1 6449:1 6460:1 6468:1 6479:2 6488:4 6507:1 6513:1 6518:1 6521:1 6540:1 6550:2 6558:2 6567:4 6570:1 6577:2 6578:1 6590:1 6593:1 6597:1 6603:3 6606:1 6612:2 6614:2 6631:4 6642:2 6655:1 6662:1 6673:2 6674:2 6700:1 6702:2 6708:3 6709:2 6711:1 6713:1 6728:3 6732:1 6733:2 6746:4 6747:1 6756:1 6776:2 6793:1 6804:1 6820:1 6822:1 6832:2 6833:1 6846:1 6870:5 6871:1 6892:11 6894:1 6899:1 6901:1 6906:1 6914:1 6916:1 6957:1 6961:1 6975:4 6976:1 6986:1 6989:2 6998:2 7000:1 7012:4 7028:1 7038:1 7066:1 7075:3 7084:2 7095:2 7098:1 7107:1 7112:1 7117:4 7119:5 7121:2 7124:1 7129:1 7131:1 7132:1 7136:1 7138:1 7140:5 7142:4 7146:2 7147:6 7154:1 7158:3 7162:1 7171:1 7175:1 7199:1 7201:1 7203:1 7206:2 7211:1 7213:1 7215:1 7253:1 7271:1 7272:1 7274:1 7283:1 7300:2 7315:1 7340:1 7345:1 7360:1 7387:1 7388:2 7404:1 7405:2 7406:1 7408:1 7419:1 7421:1 7426:1 7458:1 7461:1 7462:1 7466:1 7470:1 7480:1 7488:1 7504:1 7506:1 7516:1 7519:1 7520:1 7529:1 7530:1 7545:1 7555:1 7569:1 7572:1 7575:4 7580:2 7588:1 7589:3 7636:1 7665:1 7682:1 7689:2 7691:1 7693:1 7697:2 7699:1 7700:2 7702:2 7712:1 7720:1 7722:1 7732:2 7739:1 7740:2 7741:2 7744:1 7768:4 7779:2 7792:1 7797:1 7812:1 7818:1 7821:1 7823:4 7835:3 7853:1 7859:1 7860:1 7872:1 7873:1 7878:1 7891:1 7898:1 7905:2 7930:1 7931:1 7938:1 7940:1 7944:1 7953:2 7965:1 7969:1 7974:3 7975:14 7977:2 7985:1 7991:1 7994:3 8003:1 8006:1 8022:1 8033:1 8059:1 8070:1 8075:1 8087:1 8093:1 8095:1 8104:1 8108:1 8136:1 8140:1 8141:1 8145:1 8154:1 8179:1 8188:1 8195:2 8202:1 8208:1 8213:2 8221:1 8250:5 8251:1 8254:2 8257:1 8259:2 8261:4 8278:1 8280:1 8299:2 8312:3 8327:2 8330:1 8333:1 8342:2 8345:6 8348:1 8359:2 8364:2 8377:1 8378:1 8391:2 8428:6 8433:2 8444:1 8450:1 8462:1 8488:1 8494:1 8497:1 8512:1 8518:1 8520:1 8521:1 8532:2 8533:1 8554:1 8570:1 8575:1 8576:1 8590:3 8601:1 8608:2 8619:2 8621:3 8646:2 8647:1 8653:1 8663:1 8668:1 8673:1 8675:1 8679:5 8682:1 8683:1 8687:1 8688:1 8693:2 8697:2 8705:1 8707:1 8709:1 8752:1 8755:1 8756:1 8762:1 8765:1 8766:2 8767:1 8772:1 8775:1 8776:1 8777:3 8783:12 8788:2 8792:2 8807:2 8814:1 8828:2 8852:3 8862:4 8863:1 8867:2 8880:2 8899:1 8909:2 8913:1 8923:1 8931:1 8943:2 8952:1 8958:3 8967:2 8969:1 8981:4 8985:1 8997:6 9001:1 9003:1 9008:2 9015:1 9027:3 9059:2 9068:1 9084:1 9089:1 9095:1 9111:1 9113:1 9121:1 9128:1 9135:1 9139:2 9143:2 9148:1 9151:1 9152:2 9154:1 9155:1 9157:1 9160:2 9162:3 9168:1 9169:1 9171:2 9176:2 9179:2 9181:3 9184:2 9203:1 9207:2 9232:2 9245:1 9246:1 9258:1 9260:1 9262:4 9263:1 9281:2 9293:1 9299:1 9300:1 9311:2 9319:1 9330:1 9333:1 9340:1 9345:1 9347:1 9370:1 9387:1 9396:1 9399:1 9402:2 9407:2 9424:1 9438:1 9440:1 9442:4 9445:2 9468:1 9480:1 9547:1 9554:1 9568:1 9585:2 9587:1 9589:1 9598:2 9599:2 9604:1 9605:1 9612:1 9615:1 9618:1 9630:1 9634:1 9655:3 9657:1 9661:1 9668:1 9679:1 9688:2 9694:1 9703:2 9714:1 9721:1 9726:1 9731:1 9735:1 9737:1 9751:1 9753:1 9768:1 9772:1 9773:1 9776:1 9778:2 9782:1 9784:1 9806:1 9814:1 9823:2 9824:1 9831:2 9834:1 9835:1 9844:1 9849:2 9871:1 9873:9 9883:1 9885:2 9890:2 9914:1 9915:1 9922:1 9932:1 9945:1 9946:1 9963:1 9966:1 9974:1 9985:7 9996:2 10007:2 10011:1 10020:1 10028:1 10043:2 10065:1 10070:2 10078:1 10080:1 10089:1 10102:2 10109:1 10116:1 10121:3 10125:2 10128:1 10129:3 10130:1 10144:2 10146:2 10152:1 10161:2 10166:1 10168:1 10175:1 10193:1 10197:1 10207:1 10208:1 10209:1 10214:1 10216:2 10217:3 10221:2 10261:1 10281:1 10285:1 10287:1 10288:1 10291:1 10304:1 10314:1 10330:6 10340:2 10364:1 10379:1 10384:3 10389:1 10390:3 10393:3 10394:2 10395:1 10396:1 10403:1 10407:1 10411:1 10412:1 10415:2 10416:2 10417:2 10433:1 10438:3 10439:4 10441:1 10445:1 10455:5 10460:1 10462:1 10463:1 10470:1 10485:1 10512:1 10514:1 10520:1 10524:2 10532:2 10533:2 10535:1 10541:1 10574:1 10583:4 10595:3 10612:1 10630:1 10650:2 10656:2 10658:2 10662:1 10664:1 10674:1 10676:1 10683:1 10696:1 10706:1 10716:1 10721:1 10727:1 10742:1 10743:1 10775:1 10777:1 10783:1 10785:1 10792:1 10801:1 10803:1 10812:1 10817:1 10839:1 10843:1 10845:1 10848:1 10852:4 10854:1 10861:1 10865:1 10879:1 10881:3 10885:3 10896:1 10907:1 10920:1 10932:2 10935:1 10941:1 10943:4 10953:2 10962:1 10966:1 10969:2 10970:2 10973:1 10975:7 10980:2 10984:1 10989:1 10990:1 10993:1 10999:3 11003:1 11004:1 11021:1 11022:1 11043:4 11045:1 11051:2 11057:7 11059:1 11076:1 11101:1 11104:1 11108:3 11127:1 11138:3 11140:1 11143:1 11153:1 11160:2 11163:1 11166:1 11180:1 11187:1 11194:1 11209:1 11210:1 11215:1 11216:1 11225:1 11237:1 11248:1 11253:2 11274:1 11288:1 11316:3 11329:3 11331:6 11332:4 11334:1 11349:2 11352:3 11358:3 11364:4 11368:2 11371:3 11374:1 11384:1 11390:1 11404:1 11415:4 11416:2 11417:1 11419:1 11424:3 11436:38 11438:2 11442:1 11448:1 11455:2 11457:1 11463:3 11470:6 11472:4 11473:1 11481:2 11486:1 11506:1 11516:1 11519:1 11525:1 11527:1 11534:1 11549:1 11565:1 11574:3 11575:2 11578:1 11590:1 11594:1 11605:2 11618:1 11635:1 11639:1 11643:1 11653:1 11655:1 11656:1 11665:1 11687:1 11691:1 11694:2 11712:2 11713:6 11724:1 11743:2 11755:2 11760:4 11776:1 11781:3 11783:1 11784:3 11794:2 11810:1 11838:1 11844:1 11845:1 11846:1 11847:1 11862:1 11863:1 11867:2 11869:2 11878:2 11896:1 11898:1 11940:1 11941:1 11948:1 11949:1 11963:1 11983:1 11989:1 11994:1 12012:1 12015:1 12016:1 12021:2 12028:1 12030:1 12033:1 12043:2 12051:1 12055:1 12061:1 12070:1 12076:1 12077:2 12089:1 12100:1 12118:1 12119:1 12127:3 12144:20 12156:1 12176:3 12183:3 12190:1 12194:1 12267:3 12269:1 12272:1 12281:1 12286:1 12313:3 12314:2 12322:5 12345:1 12348:1 12360:1 12365:2 12366:3 12371:2 12374:1 12381:1 12384:2 12389:2 12390:1 12402:1 12408:1 12419:4 12424:1 12426:4 12442:3 12450:1 12474:2 12479:1 12486:1 12488:1 12493:1 12501:1 12516:1 12520:1 12536:1 12544:1 12545:1 12549:1 12556:1 12568:1 12575:1 12580:2 12582:1 12583:1 12588:1 12596:2 12630:1 12637:1 12641:1 12664:2 12676:1 12685:2 12694:1 12695:1 12703:1 12711:1 12718:1 12725:1 12727:1 12731:2 12734:3 12736:1 12738:1 12745:1 12750:1 12757:1 12758:1 12772:1 12784:1 12789:1 12801:3 12804:2 12809:2 12811:5 12824:2 12830:3 12840:1 12842:1 12847:1 12861:1 12866:1 12871:1 12883:1 12892:2 12899:1 12902:1 12919:1 12925:1 12926:4 12929:1 12931:1 12934:1 12938:1 12946:1 12947:2 12948:1 12949:1 12951:1 12962:2 12992:1 13000:1 13005:1 13016:1 13019:1 13050:1 13064:1 13068:1 13082:1 13091:1 13121:2 13136:1 13139:1 13160:1 13178:2 13179:1 13206:1 13208:1 13209:1 13213:3 13242:2 13245:1 13256:2 13276:1 13278:1 13280:2 13302:1 13304:1 13313:1 13316:1 13318:1 13325:1 13326:3 13333:1 13334:1 13337:1 13347:1 13358:1 13371:1 13378:1 13391:4 13408:1 13413:1 13421:1 13425:1 13437:1 13441:7 13443:5 13445:1 13456:1 13471:2 13502:1 13524:1 13531:1 13545:1 13549:1 13554:2 13572:1 13581:1 13583:2 13590:1 13596:1 13600:2 13602:2 13604:3 13605:2 13625:1 13640:1 13659:2 13663:1 13680:1 13692:2 13693:2 13696:1 13708:3 13711:1 13714:5 13720:1 13741:3 13745:2 13750:1 13752:1 13766:4 13803:1 13807:7 13836:1 13843:3 13860:1 13867:1 13873:1 13875:1 13882:1 13887:3 13896:2 13905:1 13906:1 13912:1 13915:3 13922:1 13924:1 13937:1 13942:1 13952:1 13967:3 13990:1 14004:1 14007:1 14016:1 14024:2 14028:1 14032:7 14036:1 14037:1 14043:2 14081:3 14089:1 14094:1 14096:1 14109:3 14120:1 14130:1 14140:1 14144:1 14151:1 14179:1 14181:1 14186:1 14189:1 14193:1 14198:3 14199:3 14201:1 14204:3 14206:1 14209:2 14212:1 14217:2 14219:1 14220:1 14221:1 14242:1 14258:1 14262:5 14280:1 14282:1 14285:1 14295:1 14304:1 14307:1 14314:1 14315:1 14319:1 14321:1 14326:1 14363:8 14368:2 14369:4 14400:1 14404:2 14410:1 14412:1 14414:1 14432:1 14433:2 14436:1 14437:1 14443:1 14449:3 14458:2 14470:1 14482:1 14485:1 14498:1 14499:1 14513:1 14515:1 14559:1 14564:1 14565:1 14581:1 14586:1 14625:1 14631:1 14633:1 14637:1 14642:5 14662:1 14668:3 14678:3 14683:2 14697:1 14700:1 14707:1 14709:1 14717:1 14720:1 14725:2 14729:2 14750:2 14756:2 14758:1 14759:1 14763:1 14769:2 14771:2 14776:1 14821:1 14825:1 14832:1 14844:2 14845:2 14850:1 14852:1 14857:1 14871:1 14879:1 14889:1 14895:3 14896:3 14900:1 14931:2 14936:1 14945:1 14951:1 14959:12 14964:2 14977:2 14979:2 14985:1 14988:1 15003:2 15032:1 15033:1 15037:1 15048:1 15052:1 15054:1 15099:12 15100:2 15108:1 15133:1 15136:2 15138:1 15155:1 15165:1 15166:1 15184:1 15189:1 15198:1 15201:1 15202:1 15205:1 15208:1 15210:4 15222:1 15224:1 15229:2 15250:1 15256:2 15260:1 15265:1 15281:2 15285:1 15287:1 15298:1 15300:1 15301:4 15306:1 15307:1 15309:1 15315:1 15320:2 15332:1 15339:1 15340:1 15341:1 15346:1 15348:1 15359:4 15360:1 15369:1 15384:1 15385:1 15391:1 15416:1 15435:1 15436:1 15441:1 15447:1 15448:1 15456:2 15458:1 15479:2 15490:1 15492:1 15519:2 15539:1 15542:1 15544:1 15548:10 15550:1 15552:5 15554:2 15569:1 15573:3 15577:1 15578:1 15584:1 15589:2 15591:1 15597:1 15607:1 15618:2 15621:1 15633:4 15634:2 15659:1 15663:1 15664:1 15670:1 15674:3 15699:1 15703:1 15712:6 15715:1 15723:1 15727:1 15732:3 15745:1 15753:2 15754:5 15756:1 15774:1 15787:1 15795:2 15796:1 15799:1 15806:1 15814:2 15860:1 15875:1 15879:2 15881:1 15896:2 15918:1 15924:1 15931:1 15958:1 15992:1 16018:1 16020:1 16027:1 16030:1 16031:1 16040:1 16045:1 16050:1 16051:2 16054:2 16058:1 16059:2 16067:1 16071:1 16074:1 16075:5 16078:1 16080:5 16083:1 16090:1 16093:2 16100:2 16101:2 16105:3 16106:1 16110:1 16114:3 16117:1 16127:3 16131:1 16134:1 16140:1 16142:1 16163:2 16172:1 16176:1 16177:1 16206:1 16207:1 16211:2 16225:4 16240:1 16246:1 16249:1 16260:1 16262:1 16269:1 16273:5 16278:1 16285:1 16297:1 16305:1 16312:1 16339:1 16374:1 16376:1 16391:1 16393:1 16395:1 16399:1 16418:1 16427:1 16431:1 16443:1 16446:2 16473:1 16498:1 16502:1 16519:1 16523:1 16527:1 16531:2 16535:2 16552:2 16553:2 16560:1 16575:1 16580:2 16581:1 16584:1 16585:2 16596:3 16600:1 16601:1 16602:2 16621:1 16628:3 16631:2 16650:1 16658:1 16676:13 16678:1 16679:1 16708:1 16712:1 16725:1 16727:1 16731:3 16745:1 16749:2 16750:2 16758:1 16810:2 16816:2 16828:1 16844:2 16850:1 16851:1 16852:1 16867:2 16869:1 16874:2 16890:1 16893:1 16921:1 16936:3 16949:1 16951:1 16955:1 16981:1 16987:1 16999:2 17005:1 17008:1 17029:1 17045:1 17052:3 17053:1 17056:1 17062:13 17063:2 17068:1 17071:2 17078:2 17079:1 17083:1 17084:1 17089:1 17092:1 17099:1 17111:1 17126:1 17131:1 17132:1 17133:1 17137:1 17144:2 17151:3 17156:2 17183:2 17189:1 17201:1 17202:1 17230:1 17231:1 17235:1 17237:1 17242:1 17259:3 17263:3 17266:2 17268:3 17273:1 17279:2 17287:4 17301:1 17314:1 17332:1 17339:1 17345:1 17351:1 17379:1 17397:1 17403:5 17414:1 17417:1 17429:2 17432:1 17438:1 17453:1 17461:1 17463:1 17468:2 17495:2 17501:2 17504:1 17518:2 17533:2 17543:1 17549:1 17553:1 17554:1 17555:2 17565:1 17566:1 17591:6 17594:1 17604:1 17608:1 17616:1 17627:1 17632:1 17634:2 17643:1 17652:1 17660:1 17670:2 17672:1 17675:1 17695:1 17696:1 17753:1 17759:1 17769:1 17774:5 17776:2 17798:1 17799:1 17801:1 17809:2 17810:2 17818:1 17823:1 17826:1 17855:1 17881:1 17893:1 17894:1 17897:5 17922:1 17925:1 17929:2 17930:1 17935:1 17936:1 17971:1 17986:1 17989:1 17996:1 18002:1 18003:1 18012:1 18022:1 18023:1 18027:1 18032:1 18045:1 18053:1 18070:1 18074:2 18077:2 18099:3 18104:1 18126:1 18141:1 18150:1 18153:2 18175:1 18179:1 18180:3 18198:1 18200:1 18227:2 18230:1 18245:2 18258:1 18263:1 18264:3 18269:1 18272:1 18274:1 18290:1 18302:1 18303:1 18310:2 18319:1 18333:1 18339:1 18347:1 18357:2 18358:1 18360:2 18362:1 18380:3 18383:2 18386:1 18390:1 18393:1 18398:2 18399:1 18415:1 18432:1 18434:1 18451:1 18453:1 18455:1 18459:2 18465:1 18499:1 18523:5 18525:1 18531:1 18534:1 18535:2 18542:1 18545:1 18546:2 18556:1 18564:1 18566:1 18575:1 18603:1 18606:10 18613:3 18616:2 18627:2 18629:1 18634:1 18638:1 18644:2 18652:1 18656:1 18665:2 18666:1 18677:1 18685:1 18687:1 18689:2 18697:1 18703:1 18707:1 18709:1 18710:1 18711:2 18713:1 18717:1 18725:2 18729:1 18742:2 18751:1 18752:2 18760:1 18763:1 18765:1 18769:1 18791:2 18796:1 18807:1 18810:1 18815:1 18835:1 18851:2 18865:1 18881:1 18897:1 18904:1 18909:1 18918:1 18948:1 18973:1 19013:1 19014:2 19015:1 19025:2 19026:1 19051:1 19053:1 19055:1 19062:1 19064:2 19085:1 19093:2 19115:1 19117:3 19119:1 19121:1 19126:4 19152:1 19168:1 19215:3 19228:1 19270:1 19278:1 19292:1 19311:1 19315:2 19324:4 19339:1 19344:2 19353:2 19365:1 19367:2 19386:6 19388:2 19391:1 19407:1 19413:1 19418:2 19444:1 19450:4 19452:1 19454:1 19495:1 19498:2 19503:1 19506:1 19508:1 19509:1 19512:1 19524:5 19525:1 19535:2 19536:3 19537:1 19538:2 19549:1 19551:2 19555:1 19556:1 19558:2 19568:1 19578:1 19582:1 19586:1 19595:1 19597:1 19598:1 19600:5 19616:1 19621:1 19630:1 19633:1 19638:2 19645:2 19649:2 19652:1 19655:12 19659:1 19664:5 19667:1 19680:1 19696:3 19700:1 19715:3 19718:2 19720:1 19721:1 19724:1 19727:2 19747:1 19757:1 19777:1 19786:1 19792:1 19816:3 19829:1 19833:1 19851:1 19857:6 19863:1 19865:1 19891:1 19896:1 19908:2 19910:1 19913:1 19918:4 19929:4 19936:2 19965:1 19974:1 19975:4 19977:1 19991:2 19992:1 19995:1 19998:1 19999:1 20015:1 20020:1 20022:1 20030:1 20034:6 20035:1 20037:1 20039:1 20040:2 20041:1 20044:1 20047:1 20049:7 20050:2 20075:1 20076:1 20078:1 20081:1 20101:1 20102:2 20132:1 20170:1 20171:1 20185:1 20188:1 20210:1 20223:1 20251:1 20256:1 20258:1 20262:1 20266:1 20267:2 20276:1 20284:1 20298:3 20305:3 20363:1 20366:1 20368:1 20378:1 20379:1 20382:1 20383:1 20387:2 20390:6 20396:1 20402:1 20409:1 20413:1 20430:2 20440:2 20451:1 20453:1 20469:1 20482:7 20494:5 20519:2 20529:1 20552:1 20580:1 20588:1 20589:1 20598:1 20603:1 20614:1 20621:1 20628:1 20633:1 20636:1 20669:1 20670:1 20706:1 20724:1 20735:1 20746:1 20758:1 20792:1 20817:1 20822:2 20828:2 20844:1 20845:1 20846:1 20848:1 20851:4 20855:2 20874:1 20875:1 20878:1 20880:1 20892:1 20903:1 20912:1 20933:1 20955:1 20956:1 20966:1 20980:1 21034:3 21072:1 21080:3 21083:3 21096:1 21099:2 21110:2 21111:1 21113:1 21118:2 21121:1 21142:1 21153:1 21180:1 21188:2 21202:1 21213:3 21216:1 21223:2 21244:1 21262:1 21265:1 21271:4 21274:1 21276:2 21298:2 21304:1 21308:1 21315:1 21318:1 21333:1 21341:1 21349:2 21353:1 21361:1 21362:1 21374:3 21378:1 21379:2 21386:1 21402:1 21446:1 21451:3 21459:1 21463:1 21464:1 21470:2 21494:1 21510:2 21512:1 21538:2 21539:1 21540:1 21547:1 21568:1 21579:1 21581:1 21586:2 21589:2 21619:1 21623:1 21626:3 21635:3 21637:3 21639:1 21640:3 21646:1 21667:1 21674:2 21707:5 21713:1 21715:1 21718:1
1 5:2 10:1 23:1 35:1 53:1 66:1 77:1 91:1 99:1 101:1 103:3 107:1 123:1 124:1 131:1 134:1 140:1 163:1 181:1 217:1 233:1 255:1 260:3 261:1 266:1 270:2 280:1 296:2 308:1 309:1 319:1 324:3 343:5 369:1 370:1 401:2 411:1 419:1 432:1 439:7 454:1 461:3 466:1 467:1 468:2 476:1 490:1 501:2 510:2 523:2 527:1 547:1 563:4 564:3 571:1 573:3 578:1 582:3 593:1 602:2 605:2 626:2 628:2 635:1 644:1 660:1 663:5 667:3 677:1 685:2 706:1 717:1 742:1 749:1 761:1 762:3 778:3 790:1 797:2 806:2 827:2 835:1 849:1 854:2 858:1 861:1 869:1 883:1 889:1 893:1 894:1 901:2 908:3 918:1 943:1 954:1 956:2 959:1 964:1 989:2 1004:1 1005:1 1018:2 1034:1 1037:4 1040:1 1045:1 1056:1 1073:3 1074:1 1079:1 1081:1 1099:1 1111:1 1124:1 1142:1 1152:2 1159:1 1160:2 1200:1 1205:2 1209:1 1216:1 1229:2 1237:3 1248:1 1258:1 1261:2 1270:1 1278:1 1281:1 1282:3 1308:1 1320:5 1322:2 1331:1 1349:1 1351:1 1356:1 1358:4 1375:1 1389:1 1392:1 1402:13 1407:4 1418:1 1419:3 1430:1 1435:1 1441:3 1453:1 1457:13 1459:1 1463:1 1474:1 1475:4 1476:2 1478:7 1481:1 1482:1 1486:1 1488:2 1489:3 1492:1 1507:2 1530:3 1531:4 1536:3 1549:1 1598:1 1600:2 1622:1 1624:1 1642:1 1644:1 1651:2 1653:1 1659:2 1683:2 1689:1 1698:1 1712:2 1715:1 1724:1 1740:1 1743:1 1771:1 1774:2 1779:1 1781:1 1784:1 1785:1 1789:1 1790:1 1797:2 1800:1 1834:1 1866:1 1875:1 1877:3 1879:2 1884:4 1885:2 1886:2 1887:1 1888:5 1889:1 1890:1 1892:1 1893:2 1895:1 1898:2 1899:3 1903:1 1904:1 1908:1 1912:2 1913:1 1920:1 1921:1 1927:1 1940:1 1947:1 1951:1 1953:2 1967:1 1973:2 2007:2 2009:1 2025:1 2036:1 2055:1 2057:1 2077:1 2079:1 2102:1 2105:1 2107:1 2112:1 2113:1 2114:1 2128:1 2142:1 2161:2 2167:1 2171:1 2172:1 2179:1 2180:2 2181:2 2208:1 2209:2 2215:1 2233:1 2235:1 2240:2 2267:1 2271:1 2274:1 2281:1 2288:1 2291:2 2306:1 2333:1 2337:1 2340:1 2345:4 2356:7 2359:2 2375:1 2376:1 2412:2 2425:1 2427:1 2429:1 2434:1 2436:1 2441:2 2456:1 2458:1 2460:2 2465:1 2472:2 2485:2 2486:2 2489:1 2498:1 2499:1 2503:1 2506:5 2507:1 2511:1 2515:1 2520:2 2522:1 2527:2 2532:1 2545:1 2552:2 2553:1 2562:1 2563:1 2567:1 2572:2 2574:1 2580:1 2583:1 2595:3 2604:2 2613:2 2619:2 2621:1 2623:1 2626:1 2635:1 2654:1 2656:5 2664:1 2684:1 2691:1 2695:2 2701:2 2704:10 2706:1 2715:2 2718:6 2733:1 2739:1 2749:1 2750:4 2752:2 2753:4 2768:1 2775:1 2791:1 2795:2 2798:4 2800:1 2801:1 2804:1 2829:1 2835:1 2840:2 2844:2 2845:1 2847:1 2862:2 2907:1 2913:1 2919:1 2927:6 2930:2 2932:1 2941:1 2945:1 2949:2 2953:1 2959:1 2965:1 2968:2 2971:3 2978:1 2988:1 2989:1 2992:1 2997:1 3005:1 3024:1 3027:2 3032:1 3043:1 3059:2 3062:1 3065:1 3066:1 3071:2 3075:1 3093:2 3115:1 3124:5 3138:1 3153:9 3156:2 3161:1 3166:1 3179:1 3184:1 3190:1 3194:1 3208:2 3216:1 3228:1 3263:2 3271:3 3274:2 3275:1 3276:3 3290:1 3295:1 3299:1 3302:2 3308:1 3322:2 3325:2 3329:2 3331:4 3332:1 3335:1 3337:2 3340:2 3341:2 3343:1 3344:1 3346:4 3353:1 3354:4 3355:3 3358:5 3360:7 3362:1 3373:1 3391:1 3414:1 3417:1 3429:1 3439:1 3445:1 3450:1 3451:3 3455:1 3465:2 3470:1 3475:1 3477:1 3488:1 3493:1 3509:1 3521:2 3523:1 3524:1 3538:1 3539:1 3541:1 3548:1 3552:1 3557:1 3576:1 3613:1 3622:1 3631:1 3633:1 3644:1 3661:1 3672:1 3674:1 3679:3 3684:1 3692:1 3697:1 3712:1 3717:1 3718:1 3722:1 3732:1 3747:1 3749:2 3755:1 3759:1 3760:3 3767:2 3772:1 3775:6 3777:3 3781:1 3788:1 3789:1 3790:1 3793:1 3800:3 3806:2 3808:2 3815:2 3819:1 3821:1 3828:7 3856:4 3857:1 3865:1 3887:1 3888:2 3893:1 3896:1 3899:1 3900:1 3901:1 3903:1 3904:1 3910:1 3916:1 3925:6 3927:1 3928:1 3939:1 3948:2 3957:5 3965:4 3966:1 3979:2 3981:1 3986:1 3988:2 3990:1 3997:3 3998:2 4009:2 4025:1 4026:2 4032:3 4036:1 4038:1 4041:1 4065:3 4071:1 4090:1 4097:1 4101:2 4103:1 4104:2 4106:2 4118:1 4121:3 4129:1 4131:1 4133:4 4136:1 4143:2 4150:1 4158:1 4182:1 4198:1 4199:1 4200:1 4216:1 4227:1 4230:1 4239:1 4242:2 4246:2 4265:3 4272:1 4277:1 4279:13 4311:2 4312:1 4315:1 4316:1 4317:1 4318:1 4326:2 4333:2 4358:15 4361:1 4382:1 4387:1 4398:2 4400:3 4426:1 4429:2 4438:1 4440:1 4442:1 4447:1 4459:1 4461:1 4482:1 4489:1 4498:1 4505:1 4513:1 4524:1 4532:1 4534:5 4555:1 4565:3 4573:1 4582:1 4584:1 4586:1 4600:1 4627:1 4641:1 4643:2 4661:1 4663:1 4667:1 4680:2 4698:1 4717:2 4737:3 4757:1 4770:2 4771:1 4786:1 4792:1 4794:2 4797:1 4803:1 4811:1 4841:1 4855:1 4863:1 4866:1 4868:2 4869:1 4884:1 4895:1 4910:6 4933:1 4936:3 4944:1 4958:1 4969:1 5004:1 5018:2 5032:10 5058:1 5059:1 5074:1 5082:1 5083:1 5087:1 5089:1 5103:1 5133:1 5149:1 5156:1 5182:2 5187:1 5199:1 5205:1 5206:12 5218:1 5220:2 5222:2 5223:2 5226:1 5244:1 5249:1 5250:1 5251:1 5257:13 5274:3 5277:1 5290:5 5293:1 5307:1 5308:1 5310:1 5317:1 5321:3 5331:2 5338:2 5348:1 5369:1 5386:1 5395:1 5396:1 5418:1 5422:1 5429:2 5434:1 5438:2 5453:1 5456:4 5461:1 5492:1 5495:1 5499:2 5506:2 5508:1 5528:2 5530:1 5533:1 5534:1 5547:1 5555:3 5572:1 5574:1 5577:1 5579:4 5583:1 5587:2 5592:2 5593:2 5606:2 5608:1 5621:2 5624:2 5625:2 5647:1 5651:2 5656:2429 5670:1 5673:1 5678:1 5679:1 5682:2 5687:1 5696:1 5700:1 5714:1 5716:1 5726:6 5728:3 5741:2 5761:1 5765:1 5772:1 5779:1 5784:2 5787:1 5793:1 5814:2 5816:1 5824:1 5829:2 5846:1 5862:2 5866:1 5873:1 5894:2 5901:1 5904:1 5905:1 5915:2 5927:1 5939:3 5941:1 5944:1 5945:1 5947:2 5952:1 5955:2 5981:1 5983:1 5987:2 5992:4 5993:2 5997:1 6004:1 6023:1 6025:1 6033:1 6050:1 6057:1 6066:1 6067:1 6088:1 6106:7 6108:1 6109:1 6142:3 6156:1 6165:1 6171:1 6176:1 6179:2 6185:1 6189:2 6192:1 6201:2 6210:2 6240:1 6244:1 6248:2 6268:3 6296:1 6302:1 6308:3 6312:1 6335:2 6359:1 6366:1 6367:1 6373:2 6376:1 6378:3 6381:1 6397:1 6399:1 6403:1 6410:2 6414:1 6417:1 6435:1 6449:1 6460:1 6468:1 6479:2 6488:5 6507:1 6513:1 6518:1 6521:1 6540:1 6550:2 6558:2 6567:4 6570:1 6577:2 6578:1 6590:1 6593:1 6597:1 6603:3 6606:1 6612:2 6614:2 6631:4 6642:2 6655:1 6662:1 6673:2 6674:2 6700:1 6702:2 6708:3 6709:2 6711:1 6713:1 6728:3 6732:1 6733:2 6746:7 6747:1 6756:1 6776:2 6792:1 6793:1 6804:1 6820:1 6822:1 6832:2 6833:1 6846:1 6870:5 6871:1 6892:12 6894:1 6899:1 6901:1 6906:1 6914:1 6916:1 6957:1 6961:1 6975:4 6976:1 6986:1 6989:2 6997:1 6998:2 7000:1 7012:4 7028:1 7038:1 7066:1 7075:3 7084:2 7095:2 7098:1 7107:2 7112:1 7117:4 7119:5 7121:3 7124:1 7129:1 7131:2 7132:1 7136:1 7138:1 7140:6 7142:4 7146:2 7147:6 7154:2 7158:3 7162:1 7171:3 7175:1 7199:1 7201:1 7203:1 7206:2 7211:1 7213:1 7215:1 7253:1 7271:1 7272:1 7274:1 7283:1 7300:2 7315:1 7340:1 7345:1 7360:1 7387:1 7388:2 7404:1 7405:2 7406:1 7408:1 7419:1 7421:1 7426:1 7458:1 7461:1 7462:1 7466:1 7470:1 7480:1 7488:1 7504:1 7506:1 7516:1 7519:1 7520:1 7529:1 7530:1 7545:1 7555:1 7569:1 7572:1 7575:4 7580:2 7588:1 7589:3 7636:1 7665:1 7682:1 7689:2 7691:1 7693:1 7697:2 7699:1 7700:2 7702:2 7712:1 7720:1 7722:1 7732:2 7739:1 7740:2 7741:2 7744:1 7768:4 7779:2 7792:1 7797:1 7812:1 7818:1 7821:1 7823:4 7835:3 7853:1 7859:1 7860:1 7872:1 7873:1 7878:1 7891:1 7898:1 7905:2 7930:1 7931:1 7938:1 7940:1 7944:1 7953:2 7965:1 7969:1 7974:3 7975:15 7977:2 7985:1 7991:1 7994:4 8003:1 8006:1 8022:1 8033:1 8059:1 8070:1 8075:1 8087:1 8093:1 8095:1 8104:1 8108:1 8136:1 8140:1 8141:1 8145:1 8154:1 8179:1 8188:1 8195:2 8202:1 8208:1 8213:2 8221:1 8250:5 8251:1 8254:2 8257:1 8259:2 8261:4 8278:1 8280:1 8299:2 8312:3 8327:2 8330:1 8333:1 8342:2 8345:6 8348:1 8359:2 8364:2 8377:1 8378:1 8391:2 8428:6 8433:2 8444:1 8450:1 8462:1 8488:1 8494:1 8497:1 8512:1 8514:1 8518:1 8520:1 8521:1 8532:2 8533:1 8534:1 8554:1 8570:1 8575:1 8576:1 8590:3 8601:1 8608:2 8619:2 8621:3 8646:2 8647:1 8653:1 8663:1 8668:1 8673:1 8675:1 8679:6 8682:1 8683:1 8687:1 8688:1 8693:2 8697:2 8705:1 8707:1 8709:1 8752:1 8755:1 8756:1 8762:1 8765:1 8766:2 8767:1 8772:1 8775:1 8776:1 8777:3 8783:12 8788:2 8792:2 8807:2 8814:1 8828:2 8852:3 8862:4 8863:1 8867:2 8880:2 8899:1 8909:2 8913:1 8923:1 8931:1 8943:2 8952:1 8958:3 8967:2 8969:1 8981:5 8985:1 8997:6 9001:1 9003:1 9008:2 9015:1 9027:3 9059:2 9068:1 9084:1 9089:1 9095:1 9111:1 9113:1 9121:1 9128:1 9135:2 9139:2 9143:2 9148:1 9151:1 9152:2 9154:1 9155:1 9157:1 9160:2 9162:3 9168:1 9169:1 9171:2 9176:2 9179:2 9181:3 9184:2 9203:1 9207:2 9232:2 9245:1 9246:1 9258:1 9260:1 9262:4 9263:1 9281:2 9293:1 9299:1 9300:1 9311:2 9319:1 9330:1 9333:1 9340:1 9345:1 9347:1 9370:1 9387:1 9396:1 9399:1 9402:2 9407:2 9424:1 9438:1 9440:1 9442:4 9445:2 9468:1 9480:1 9547:1 9554:1 9568:1 9585:2 9587:1 9589:1 9598:2 9599:2 9604:1 9605:1 9612:1 9615:1 9618:1 9630:1 9634:1 9655:3 9657:1 9661:1 9668:1 9679:1 9688:2 9694:1 9703:2 9714:1 9721:1 9726:1 9731:1 9735:1 9737:1 9751:1 9753:1 9768:2 9772:1 9773:1 9776:1 9778:2 9782:1 9784:1 9806:1 9814:1 9823:2 9824:1 9831:2 9834:1 9835:1 9844:1 9849:2 9871:1 9873:10 9883:1 9885:2 9890:2 9912:2 9914:1 9915:1 9922:1 9932:1 9945:1 9946:1 9963:1 9966:1 9974:1 9985:7 9996:2 10007:2 10011:1 10020:1 10028:1 10043:2 10065:1 10070:2 10078:1 10080:1 10089:1 10102:2 10109:1 10116:1 10121:3 10125:2 10128:1 10129:3 10130:1 10144:2 10146:2 10152:1 10161:2 10166:1 10168:1 10175:1 10193:1 10197:1 10207:1 10208:1 10209:1 10214:1 10216:2 10217:3 10221:2 10261:1 10281:1 10285:1 10287:1 10288:1 10291:1 10304:1 10314:1 10330:6 10340:2 10364:1 10379:1 10384:3 10389:1 10390:3 10393:3 10394:2 10395:1 10396:1 10403:1 10407:2 10411:1 10412:1 10415:2 10416:2 10417:2 10433:1 10438:3 10439:5 10441:1 10445:1 10455:5 10460:1 10462:1 10463:1 10470:1 10485:1 10512:1 10514:1 10520:1 10524:2 10532:2 10533:2 10535:1 10541:1 10574:1 10583:4 10595:3 10612:1 10630:1 10650:2 10656:2 10658:2 10662:1 10664:1 10674:1 10676:1 10683:1 10684:1 10696:1 10699:1 10706:1 10716:1 10721:1 10727:1 10742:1 10743:1 10775:1 10777:1 10783:1 10785:1 10792:1 10801:1 10803:1 10812:1 10817:1 10839:1 10843:1 10845:1 10848:1 10852:5 10854:1 10861:2 10865:1 10879:1 10881:3 10885:3 10896:1 10907:1 10920:1 10932:2 10935:1 10940:1 10941:1 10943:4 10953:2 10962:1 10966:1 10969:2 10970:3 10973:2 10975:8 10980:2 10984:1 10989:1 10990:1 10993:1 10999:3 11003:1 11004:1 11021:1 11022:1 11043:4 11045:1 11051:2 11057:7 11059:1 11076:1 11101:1 11104:1 11108:3 11127:1 11138:3 11140:1 11143:1 11153:1 11160:2 11163:1 11166:1 11176:1 11180:1 11183:1 11187:1 11194:1 11209:1 11210:1 11215:1 11216:1 11225:1 11237:1 11248:1 11253:2 11274:1 11288:1 11316:3 11329:3 11331:6 11332:4 11334:1 11349:2 11352:3 11358:3 11364:4 11368:2 11371:3 11374:1 11384:1 11390:1 11393:1 11404:1 11415:4 11416:2 11417:1 11419:1 11424:3 11436:40 11438:2 11442:1 11448:1 11455:2 11457:1 11463:3 11470:7 11472:4 11473:1 11481:2 11486:1 11506:1 11516:1 11519:1 11525:1 11527:1 11534:1 11549:1 11565:1 11574:3 11575:2 11578:1 11590:1 11594:1 11605:2 11618:1 11635:1 11639:1 11643:1 11653:1 11655:1 11656:1 11665:1 11687:1 11691:1 11694:2 11712:2 11713:7 11724:1 11743:2 11755:2 11760:4 11776:1 11781:3 11783:1 11784:3 11794:2 11810:1 11838:1 11844:1 11845:1 11846:1 11847:1 11862:1 11863:1 11867:2 11869:2 11878:2 11896:1 11898:1 11940:1 11941:1 11948:1 11949:1 11963:1 11983:1 11989:1 11994:1 12012:1 12015:1 12016:1 12021:2 12028:1 12030:1 12033:1 12043:2 12051:1 12055:1 12061:1 12070:1 12076:1 12077:2 12089:1 12100:1 12118:1 12119:1 12127:3 12144:20 12156:1 12176:3 12183:3 12190:1 12194:1 12267:3 12269:1 12272:1 12281:1 12286:1 12313:3 12314:2 12322:5 12345:1 12348:1 12360:1 12365:2 12366:3 12371:2 12374:1 12381:1 12384:2 12389:2 12390:2 12402:1 12408:1 12419:4 12424:1 12426:4 12442:3 12450:1 12474:2 12479:1 12486:1 12488:1 12493:1 12501:1 12516:1 12520:1 12536:1 12544:1 12545:1 12549:1 12556:1 12568:1 12575:1 12580:2 12582:1 12583:1 12588:1 12596:2 12630:1 12637:1 12641:2 12664:2 12676:1 12685:2 12694:1 12695:1 12703:1 12711:1 12718:1 12725:1 12727:2 12731:2 12734:3 12736:1 12738:1 12745:1 12750:1 12757:1 12758:1 12772:1 12784:1 12789:1 12801:3 12804:2 12809:2 12811:5 12824:2 12830:3 12840:1 12842:1 12847:1 12861:1 12866:1 12871:1 12883:1 12892:2 12899:1 12902:1 12919:1 12925:1 12926:4 12929:1 12931:1 12934:1 12938:1 12946:1 12947:2 12948:1 12949:1 12951:1 12962:2 12992:1 13000:1 13005:1 13016:1 13019:1 13050:1 13064:1 13068:1 13082:1 13091:1 13121:2 13136:1 13139:1 13160:1 13178:2 13179:1 13206:1 13208:1 13209:1 13213:3 13242:2 13245:1 13256:2 13276:1 13278:1 13280:2 13302:1 13304:1 13313:1 13316:1 13318:1 13325:1 13326:3 13333:1 13334:1 13337:1 13347:1 13358:1 13371:1 13374:1 13378:1 13391:4 13408:1 13413:1 13421:1 13425:1 13437:1 13441:8 13443:5 13445:1 13456:1 13471:2 13502:1 13524:1 13531:1 13545:1 13549:1 13554:2 13572:1 13581:1 13583:2 13590:1 13596:1 13600:2 13602:2 13604:3 13605:2 13616:1 13625:1 13640:1 13659:2 13663:1 13680:1 13692:2 13693:2 13696:1 13708:3 13711:1 13714:5 13720:1 13741:3 13745:2 13750:1 13752:1 13766:4 13803:1 13807:7 13836:1 13843:3 13860:1 13867:1 13873:1 13875:1 13882:1 13887:3 13896:3 13905:1 13906:1 13912:1 13915:3 13922:1 13924:1 13937:1 13942:1 13952:1 13967:3 13990:1 14004:1 14007:1 14016:1 14024:2 14028:1 14032:7 14036:1 14037:1 14043:2 14081:3 14089:1 14094:1 14096:1 14109:3 14120:1 14130:1 14140:1 14144:1 14151:1 14179:1 14181:1 14186:1 14189:1 14193:1 14198:3 14199:3 14201:2 14204:3 14206:1 14209:2 14212:1 14217:2 14219:1 14220:1 14221:1 14242:1 14254:1 14258:1 14262:5 14280:1 14282:1 14285:1 14295:1 14304:1 14307:1 14314:1 14315:1 14319:1 14321:1 14326:1 14328:1 14363:8 14368:2 14369:5 14400:1 14404:2 14410:1 14412:1 14414:1 14415:1 14432:1 14433:2 14436:1 14437:1 14443:1 14449:3 14458:2 14470:1 14482:1 14485:1 14498:1 14499:1 14513:1 14515:1 14559:1 14564:1 14565:1 14581:1 14586:1 14625:1 14631:1 14633:1 14637:1 14642:5 14662:1 14668:3 14678:4 14683:2 14697:1 14700:1 14707:1 14709:1 14717:1 14720:1 14725:2 14729:2 14750:2 14756:2 14758:1 14759:1 14763:1 14769:2 14771:2 14776:1 14821:1 14825:1 14832:1 14834:1 14844:2 14845:2 14850:1 14852:1 14857:1 14871:1 14879:1 14889:1 14895:3 14896:3 14900:1 14931:2 14936:1 14945:1 14951:1 14959:12 14964:2 14977:2 14979:2 14985:1 14988:1 15003:2 15032:2 15033:1 15037:1 15048:1 15052:1 15054:1 15073:1 15099:13 15100:2 15108:1 15133:1 15136:2 15138:1 15155:1 15165:1 15166:1 15184:1 15189:1 15198:1 15201:1 15202:1 15205:1 15208:1 15210:4 15222:1 15224:1 15229:2 15250:1 15256:2 15260:1 15265:1 15281:2 15285:1 15287:1 15298:1 15300:1 15301:4 15306:1 15307:1 15309:1 15315:1 15320:2 15332:1 15339:1 15340:1 15341:1 15346:1 15348:1 15359:4 15360:1 15369:1 15384:1 15385:1 15391:1 15416:1 15427:1 15435:1 15436:1 15441:1 15447:1 15448:1 15456:2 15458:1 15479:2 15490:1 15492:1 15519:2 15539:1 15542:1 15544:1 15548:10 15550:1 15552:5 15554:2 15569:2 15573:3 15577:1 15578:1 15584:1 15589:2 15591:1 15597:1 15607:1 15618:2 15621:1 15633:4 15634:2 15659:1 15663:1 15664:1 15670:1 15674:3 15699:1 15703:1 15712:6 15715:1 15723:1 15727:1 15732:3 15745:1 15753:2 15754:5 15756:1 15774:1 15787:1 15795:2 15796:1 15799:1 15806:1 15814:2 15860:1 15875:1 15879:2 15881:1 15896:2 15918:1 15924:1 15931:1 15958:1 15992:1 16018:1 16020:1 16027:1 16030:1 16031:1 16040:1 16045:1 16050:1 16051:2 16054:2 16058:1 16059:2 16067:1 16071:1 16074:1 16075:5 16078:1 16080:5 16083:1 16090:1 16093:2 16100:2 16101:2 16105:3 16106:1 16110:1 16114:3 16117:1 16127:3 16131:1 16134:1 16140:1 16142:1 16163:2 16172:1 16176:1 16177:1 16206:1 16207:1 16211:2 16225:4 16240:1 16246:1 16249:1 16260:1 16262:1 16269:1 16273:6 16278:1 16285:1 16297:1 16305:1 16312:1 16339:1 16357:1 16374:2 16376:1 16391:1 16393:1 16395:1 16399:1 16418:1 16427:1 16431:1 16443:1 16446:2 16473:1 16498:1 16502:1 16519:1 16523:1 16527:1 16531:2 16535:2 16552:3 16553:2 16560:1 16575:1 16580:2 16581:1 16584:1 16585:2 16596:3 16600:1 16601:1 16602:2 16621:1 16628:3 16631:2 16650:1 16658:1 16676:14 16678:1 16679:1 16708:1 16712:1 16725:1 16727:1 16731:4 16745:1 16749:2 16750:2 16758:1 16805:1 16810:2 16816:2 16828:2 16844:2 16850:1 16851:1 16852:1 16867:2 16869:1 16874:2 16890:1 16893:2 16921:1 16936:4 16949:1 16951:1 16955:1 16981:1 16987:1 16999:2 17005:1 17008:1 17028:1 17029:1 17045:1 17052:3 17053:1 17056:1 17062:13 17063:2 17068:1 17071:2 17076:1 17078:2 17079:1 17083:1 17084:1 17089:1 17092:1 17099:1 17111:1 17126:1 17131:1 17132:1 17133:1 17137:1 17144:2 17151:3 17156:2 17183:2 17189:1 17201:1 17202:1 17230:1 17231:1 17235:1 17237:1 17242:1 17259:4 17263:3 17266:2 17268:3 17273:1 17279:2 17287:4 17301:1 17314:1 17332:1 17339:1 17345:1 17351:1 17379:1 17396:1 17397:1 17403:5 17414:1 17417:1 17429:2 17432:1 17438:1 17453:1 17461:1 17463:1 17468:2 17495:2 17501:2 17504:1 17518:2 17533:2 17543:1 17549:1 17553:1 17554:1 17555:2 17565:1 17566:1 17591:6 17594:1 17604:1 17608:1 17616:1 17627:1 17632:1 17634:2 17643:1 17652:1 17660:1 17670:2 17672:1 17675:1 17676:1 17695:1 17696:1 17753:1 17759:1 17769:1 17774:5 17776:2 17798:1 17799:1 17801:1 17809:2 17810:2 17818:1 17823:1 17826:1 17855:1 17881:1 17893:1 17894:1 17897:5 17922:1 17925:1 17929:2 17930:1 17935:1 17936:1 17971:1 17986:1 17989:1 17996:1 18002:1 18003:1 18012:1 18022:1 18023:1 18027:1 18032:2 18045:1 18053:1 18070:1 18074:2 18077:2 18099:3 18104:1 18126:1 18141:1 18150:1 18153:2 18175:1 18179:1 18180:3 18198:1 18200:1 18227:2 18230:1 18245:2 18258:1 18263:1 18264:3 18269:1 18272:1 18274:1 18290:1 18302:1 18303:1 18310:2 18319:1 18333:1 18339:1 18347:1 18357:2 18358:1 18360:2 18362:1 18380:3 18383:2 18386:1 18390:1 18393:1 18398:2 18399:1 18415:1 18432:1 18434:1 18451:1 18453:1 18455:1 18459:2 18465:1 18499:1 18523:5 18525:1 18531:1 18534:1 18535:2 18542:1 18545:1 18546:2 18556:1 18564:1 18566:1 18575:1 18603:1 18606:11 18613:3 18616:2 18627:2 18629:1 18634:1 18638:1 18644:2 18652:1 18656:1 18665:2 18666:1 18677:1 18685:1 18687:1 18689:2 18697:1 18703:1 18707:1 18709:1 18710:1 18711:2 18713:1 18717:1 18725:2 18729:1 18742:2 18751:1 18752:2 18760:1 18763:1 18765:1 18769:1 18770:1 18780:1 18791:2 18796:1 18807:1 18810:1 18815:1 18835:1 18851:2 18865:1 18881:1 18897:1 18904:1 18909:1 18918:1 18948:1 18973:1 19013:1 19014:2 19015:1 19025:2 19026:1 19051:1 19053:1 19055:1 19062:1 19064:2 19085:1 19093:2 19115:1 19117:3 19119:1 19121:1 19126:5 19152:1 19168:1 19215:4 19228:1 19270:1 19278:1 19292:1 19311:1 19315:2 19324:4 19339:1 19344:2 19353:2 19365:1 19367:2 19386:6 19388:2 19391:1 19407:1 19413:1 19418:2 19444:1 19450:4 19452:1 19454:1 19495:1 19498:2 19503:1 19506:1 19508:1 19509:1 19512:1 19524:5 19525:1 19535:2 19536:3 19537:1 19538:2 19549:1 19551:2 19555:1 19556:1 19558:2 19568:1 19578:1 19582:1 19586:1 19595:1 19597:1 19598:1 19600:5 19616:1 19621:1 19630:1 19633:1 19638:2 19645:2 19649:2 19652:1 19655:14 19659:1 19664:5 19667:1 19680:1 19696:3 19700:1 19715:3 19718:2 19720:1 19721:1 19724:2 19727:2 19747:1 19757:1 19777:1 19786:1 19792:1 19816:3 19829:1 19833:1 19851:1 19857:6 19863:1 19865:1 19891:1 19896:1 19908:2 19910:1 19913:1 19918:4 19929:4 19936:2 19965:1 19974:1 19975:4 19977:1 19991:2 19992:1 19995:1 19998:1 19999:1 20015:1 20020:1 20022:1 20030:1 20034:6 20035:1 20037:1 20038:1 20039:1 20040:2 20041:1 20044:1 20047:1 20049:7 20050:2 20075:1 20076:1 20078:1 20081:1 20101:1 20102:2 20117:1 20132:1 20170:1 20171:1 20185:1 20188:1 20210:1 20223:1 20227:1 20251:1 20256:1 20258:1 20262:1 20266:1 20267:2 20276:1 20284:1 20298:3 20305:3 20363:1 20366:1 20368:1 20378:1 20379:1 20382:1 20383:1 20387:2 20390:7 20396:1 20402:1 20409:1 20413:1 20430:2 20440:2 20451:1 20453:1 20469:1 20482:7 20494:5 20519:2 20529:1 20552:1 20580:1 20588:1 20589:1 20598:1 20603:1 20614:1 20621:1 20628:1 20633:1 20636:1 20669:1 20670:1 20706:1 20724:1 20735:1 20746:1 20758:1 20792:1 20817:1 20822:2 20828:2 20844:1 20845:2 20846:1 20848:1 20851:4 20855:2 20874:1 20875:1 20878:1 20880:1 20892:1 20903:1 20912:1 20933:1 20955:1 20956:1 20966:1 20980:1 21034:3 21072:1 21080:3 21083:3 21096:1 21099:2 21110:2 21111:2 21113:1 21118:2 21121:1 21142:1 21153:1 21163:1 21180:1 21188:2 21202:1 21213:3 21216:1 21223:2 21244:1 21262:1 21265:1 21271:4 21274:1 21276:2 21298:2 21304:1 21308:1 21315:1 21318:1 21333:1 21341:1 21349:2 21353:1 21361:1 21362:1 21374:3 21378:1 21379:2 21386:1 21402:1 21446:1 21451:3 21459:1 21463:1 21464:1 21470:2 21494:1 21510:2 21512:1 21538:2 21539:1 21540:1 21547:1 21568:1 21579:1 21581:1 21586:2 21589:2 21619:1 21623:1 21626:3 21635:3 21637:3 21639:1 21640:3 21646:1 21667:1 21674:2 21707:5 21713:1 21715:1 21718:1 21820:1
1 5:2 10:1 23:1 35:1 53:1 66:1 77:1 91:1 99:1 101:1 103:3 107:1 123:1 124:1 131:1 134:1 140:1 163:1 181:1 217:1 233:1 255:1 260:3 261:1 266:1 270:2 280:1 296:2 308:1 309:1 319:1 324:3 343:5 369:1 370:1 401:2 411:1 419:1 432:1 439:7 454:1 461:3 466:1 467:1 468:2 476:1 490:1 501:2 510:2 523:3 527:1 547:1 563:4 564:3 571:1 573:3 578:1 582:3 583:1 593:1 602:2 605:2 626:2 628:2 635:1 644:1 660:1 663:5 667:5 677:1 685:2 706:1 717:1 742:1 749:1 761:1 762:4 778:3 790:1 797:2 806:2 827:2 835:1 849:1 854:2 858:1 861:1 869:1 883:1 889:1 893:1 894:1 901:2 908:3 918:1 943:1 954:1 956:2 959:1 964:1 989:2 1004:1 1005:1 1018:2 1030:1 1034:1 1037:4 1040:1 1045:1 1056:1 1073:3 1074:1 1079:1 1081:1 1099:1 1111:1 1124:1 1142:1 1152:2 1159:1 1160:2 1200:1 1205:2 1209:1 1216:1 1229:2 1237:3 1248:1 1258:1 1261:2 1270:1 1278:1 1281:1 1282:3 1308:1 1320:5 1322:2 1331:1 1349:1 1351:1 1356:1 1358:4 1375:1 1389:1 1392:1 1402:14 1407:4 1418:1 1419:3 1430:1 1435:1 1441:3 1453:1 1457:14 1459:1 1463:1 1474:1 1475:4 1476:2 1478:7 1481:1 1482:1 1486:2 1488:2 1489:3 1492:1 1507:2 1530:4 1531:4 1536:3 1549:1 1598:1 1600:2 1622:1 1624:1 1642:1 1644:1 1651:2 1653:1 1659:2 1683:2 1689:1 1698:1 1712:2 1715:1 1724:1 1740:1 1743:1 1757:1 1771:1 1774:2 1779:1 1781:1 1784:1 1785:1 1789:1 1790:1 1797:2 1800:1 1834:3 1866:1 1875:1 1877:3 1879:2 1884:5 1885:2 1886:2 1887:1 1888:5 1889:1 1890:1 1892:1 1893:2 1895:1 1898:2 1899:3 1903:1 1904:1 1908:1 1912:2 1913:1 1920:1 1921:1 1927:1 1940:1 1947:1 1950:1 1951:1 1953:2 1967:1 1973:2 2007:2 2009:1 2025:1 2036:1 2055:1 2057:1 2077:1 2079:1 2102:1 2105:1 2107:1 2112:1 2113:1 2114:1 2128:1 2142:1 2161:2 2167:1 2171:1 2172:1 2179:1 2180:2 2181:2 2208:1 2209:2 2215:1 2233:1 2235:1 2240:3 2267:1 2271:1 2274:1 2276:1 2281:1 2288:1 2291:2 2306:1 2314:1 2333:1 2337:1 2340:1 2345:4 2356:7 2359:2 2375:1 2376:1 2412:2 2425:1 2427:1 2429:1 2434:1 2436:1 2441:2 2456:1 2458:1 2460:2 2465:1 2472:2 2485:2 2486:2 2489:1 2498:1 2499:1 2503:1 2506:5 2507:1 2511:1 2515:1 2520:2 2522:1 2527:2 2532:1 2545:1 2552:2 2553:1 2562:1 2563:2 2567:1 2572:2 2574:1 2580:1 2583:1 2595:3 2604:2 2613:2 2619:2 2621:1 2623:1 2626:1 2635:1 2654:1 2656:5 2664:1 2684:1 2691:1 2695:2 2701:2 2704:11 2706:1 2715:2 2718:6 2733:1 2739:1 2749:1 2750:4 2752:2 2753:4 2768:1 2775:1 2791:1 2795:2 2798:4 2800:1 2801:1 2804:1 2829:1 2835:1 2840:2 2844:2 2845:1 2847:1 2862:2 2865:1 2907:1 2913:1 2919:1 2927:7 2930:2 2932:1 2941:1 2945:1 2949:2 2953:1 2959:1 2965:1 2968:2 2971:3 2978:1 2988:1 2989:1 2992:1 2997:1 3005:1 3024:1 3027:2 3032:1 3043:1 3059:2 3062:1 3065:1 3066:1 3071:2 3075:1 3093:2 3115:1 3124:5 3138:1 3153:10 3156:2 3161:1 3166:1 3179:1 3184:1 3190:1 3194:1 3208:2 3216:1 3228:1 3263:2 3271:3 3274:2 3275:1 3276:3 3290:1 3295:1 3299:1 3302:2 3308:1 3322:2 3325:2 3329:2 3331:5 3332:1 3335:1 3337:2 3340:2 3341:2 3343:1 3344:1 3346:4 3353:1 3354:4 3355:3 3358:5 3360:7 3362:1 3373:1 3391:1 3414:1 3417:1 3429:1 3439:1 3441:1 3445:1 3450:1 3451:3 3455:1 3465:2 3470:1 3475:1 3477:1 3488:1 3493:1 3509:2 3521:2 3523:1 3524:1 3538:1 3539:1 3541:1 3548:1 3552:1 3557:1 3576:1 3613:1 3622:1 3631:1 3633:1 3644:1 3661:1 3672:1 3674:1 3679:3 3684:1 3692:1 3697:1 3712:1 3717:1 3718:1 3722:1 3732:1 3747:1 3749:2 3755:1 3759:1 3760:3 3767:2 3772:1 3775:6 3777:3 3781:1 3788:1 3789:1 3790:1 3793:1 3800:3 3806:2 3808:2 3815:2 3819:1 3821:1 3828:8 3856:4 3857:1 3865:1 3887:1 3888:2 3893:2 3896:1 3899:1 3900:1 3901:1 3903:1 3904:1 3910:1 3916:1 3921:1 3925:6 3927:1 3928:1 3939:1 3948:2 3957:7 3965:4 3966:1 3979:2 3981:1 3986:1 3988:2 3990:1 3997:3 3998:2 4009:2 4025:1 4026:2 4032:3 4036:1 4038:1 4041:1 4065:3 4071:1 4090:1 4097:1 4101:2 4103:1 4104:2 4106:2 4118:1 4121:3 4129:1 4131:1 4133:4 4136:1 4143:2 4147:1 4150:1 4158:1 4182:1 4198:1 4199:1 4200:1 4216:1 4227:1 4230:1 4239:1 4242:2 4246:2 4265:3 4272:1 4277:1 4279:14 4311:2 4312:1 4315:1 4316:1 4317:1 4318:1 4326:2 4333:2 4358:16 4361:1 4382:1 4387:1 4398:2 4400:3 4426:1 4429:2 4438:1 4440:1 4442:1 4447:1 4459:1 4461:1 4482:1 4489:1 4498:1 4505:1 4513:1 4524:1 4532:1 4534:5 4555:1 4565:3 4573:1 4582:1 4584:1 4586:1 4600:2 4627:1 4641:1 4643:2 4661:1 4663:1 4667:1 4680:2 4698:1 4717:2 4737:3 4757:1 4770:2 4771:1 4786:1 4792:1 4794:2 4797:1 4803:1 4811:1 4841:1 4855:1 4863:1 4866:1 4868:2 4869:1 4884:1 4895:1 4910:6 4933:1 4936:3 4944:1 4958:1 4969:1 5004:1 5009:1 5018:2 5032:11 5058:1 5059:1 5074:1 5082:1 5083:1 5087:1 5089:1 5103:1 5133:1 5149:1 5156:1 5182:2 5187:1 5199:1 5205:1 5206:12 5218:1 5220:2 5222:2 5223:2 5226:1 5244:1 5249:1 5250:1 5251:1 5257:13 5274:3 5275:1 5277:1 5288:1 5290:5 5293:1 5307:1 5308:1 5310:1 5317:1 5321:3 5331:2 5338:2 5348:1 5369:1 5386:1 5395:1 5396:2 5418:1 5422:1 5429:2 5434:1 5438:2 5453:1 5456:4 5461:1 5492:1 5495:1 5499:2 5506:2 5508:1 5528:2 5530:1 5533:1 5534:1 5547:1 5555:3 5572:1 5574:1 5577:1 5579:4 5583:1 5587:2 5592:2 5593:2 5606:2 5608:1 5621:2 5624:2 5625:2 5647:1 5651:2 5656:2480 5670:1 5673:1 5678:1 5679:1 5682:2 5687:1 5696:1 5700:1 5714:1 5716:1 5726:6 5728:3 5741:2 5761:1 5765:1 5772:1 5779:1 5784:2 5787:1 5793:1 5814:2 5816:1 5824:1 5829:2 5846:1 5862:2 5866:1 5873:1 5894:2 5901:1 5904:1 5905:1 5915:2 5927:1 5939:3 5941:1 5944:1 5945:1 5947:2 5952:1 5955:2 5981:1 5983:1 5987:2 5992:5 5993:2 5997:1 6004:1 6023:1 6025:1 6033:1 6050:1 6057:1 6066:1 6067:1 6088:1 6106:7 6108:1 6109:1 6142:3 6156:1 6165:1 6171:1 6176:3 6179:2 6185:1 6189:2 6192:1 6201:2 6210:2 6240:1 6244:1 6248:2 6268:3 6296:1 6302:1 6308:3 6312:1 6335:2 6359:1 6366:1 6367:1 6373:2 6376:1 6378:3 6381:1 6397:1 6399:1 6403:1 6410:2 6414:1 6417:1 6435:1 6449:3 6460:1 6468:1 6479:2 6488:5 6507:1 6513:1 6518:1 6521:1 6540:1 6550:2 6558:2 6567:4 6570:1 6577:2 6578:1 6590:1 6593:1 6596:1 6597:1 6603:3 6606:1 6612:2 6614:2 6631:4 6642:2 6655:1 6662:1 6673:2 6674:2 6700:1 6702:2 6708:3 6709:2 6711:1 6713:1 6728:3 6732:1 6733:2 6746:8 6747:1 6756:1 6776:2 6792:1 6793:1 6804:1 6820:1 6822:1 6832:2 6833:1 6846:1 6870:5 6871:1 6892:13 6894:1 6899:1 6901:1 6906:1 6914:1 6916:1 6948:1 6957:1 6961:1 6975:4 6976:1 6986:1 6989:2 6997:1 6998:2 7000:1 7012:4 7028:1 7038:1 7066:1 7075:3 7084:2 7095:2 7098:1 7107:2 7112:1 7117:4 7119:6 7121:3 7124:1 7129:2 7131:2 7132:1 7136:1 7138:1 7140:6 7142:4 7146:2 7147:7 7154:2 7158:4 7162:1 7171:3 7175:1 7199:1 7201:1 7203:2 7206:2 7211:1 7213:1 7215:1 7253:1 7271:1 7272:1 7274:1 7283:1 7300:2 7315:1 7340:1 7345:1 7360:1 7387:1 7388:2 7404:1 7405:2 7406:1 7408:1 7419:1 7421:1 7426:1 7458:1 7461:1 7462:1 7466:1 7470:1 7480:1 7488:1 7504:1 7506:1 7516:1 7519:1 7520:1 7529:1 7530:1 7545:1 7555:1 7569:1 7572:2 7575:4 7580:2 7588:1 7589:3 7636:1 7665:1 7668:1 7682:1 7689:2 7691:1 7693:1 7697:2 7699:1 7700:2 7702:2 7712:1 7720:1 7722:1 7724:2 7732:2 7739:1 7740:2 7741:2 7744:1 7768:4 7779:2 7792:1 7797:1 7812:1 7818:1 7821:1 7823:4 7835:3 7853:1 7859:1 7860:1 7872:1 7873:1 7878:1 7891:1 7898:1 7905:2 7930:1 7931:1 7938:1 7940:1 7944:1 7953:2 7965:1 7969:1 7974:3 7975:16 7977:2 7985:1 7991:1 7994:4 8003:1 8006:1 8022:1 8033:1 8035:1 8059:1 8070:1 8075:1 8087:1 8093:1 8095:1 8104:1 8108:1 8136:1 8140:1 8141:1 8145:1 8154:1 8179:1 8188:1 8195:2 8202:1 8208:1 8213:2 8221:1 8227:1 8250:5 8251:1 8254:2 8257:1 8259:2 8261:4 8278:1 8280:1 8299:2 8312:3 8327:2 8330:1 8333:1 8342:2 8345:6 8348:1 8359:2 8364:2 8377:1 8378:1 8391:2 8428:7 8433:2 8439:1 8444:1 8450:1 8462:1 8488:1 8494:1 8497:1 8512:1 8514:1 8518:1 8520:1 8521:1 8532:2 8533:1 8534:1 8554:1 8570:1 8575:1 8576:1 8590:3 8601:1 8608:2 8619:2 8621:3 8646:2 8647:1 8653:1 8663:1 8668:1 8673:1 8675:1 8679:6 8682:1 8683:1 8687:1 8688:1 8693:2 8697:2 8705:1 8707:1 8709:1 8752:1 8755:1 8756:1 8762:1 8765:1 8766:2 8767:1 8772:1 8775:1 8776:1 8777:3 8783:12 8788:2 8792:2 8807:2 8814:1 8828:2 8852:3 8862:4 8863:1 8867:2 8880:2 8899:1 8909:2 8913:1 8923:1 8931:1 8943:2 8952:1 8958:3 8967:2 8969:1 8981:5 8985:1 8997:6 9001:1 9003:1 9008:2 9015:1 9027:3 9059:2 9068:1 9084:1 9089:1 9095:1 9111:1 9113:1 9121:1 9128:1 9135:2 9139:2 9143:2 9148:1 9151:1 9152:2 9154:1 9155:1 9157:1 9160:2 9162:3 9168:1 9169:1 9171:2 9176:2 9179:2 9181:4 9184:3 9203:1 9207:2 9232:2 9245:1 9246:1 9258:1 9260:1 9262:4 9263:1 9281:2 9285:1 9293:1 9299:1 9300:1 9311:2 9319:1 9330:1 9333:1 9340:1 9345:1 9347:1 9370:1 9387:1 9396:1 9399:1 9402:2 9407:2 9424:1 9438:1 9440:1 9442:4 9445:2 9468:1 9480:1 9547:1 9554:1 9568:1 9572:1 9585:2 9587:1 9589:1 9598:2 9599:2 9604:1 9605:1 9612:1 9615:1 9618:1 9630:1 9634:1 9655:3 9657:1 9661:1 9668:1 9679:1 9688:2 9694:1 9703:2 9714:1 9721:1 9726:1 9731:1 9735:1 9737:1 9751:1 9753:1 9768:2 9772:1 9773:1 9776:1 9778:2 9782:1 9784:1 9806:2 9814:2 9823:2 9824:1 9831:2 9834:1 9835:1 9844:1 9849:2 9871:1 9873:11 9883:1 9885:2 9890:2 9912:2 9914:1 9915:1 9922:1 9932:1 9945:1 9946:1 9963:1 9966:1 9974:1 9985:7 9996:2 10007:2 10011:1 10020:1 10028:1 10043:2 10065:1 10070:2 10078:1 10080:1 10089:1 10102:2 10109:1 10116:1 10121:4 10125:3 10128:1 10129:3 10130:1 10144:2 10146:2 10152:1 10161:2 10166:1 10168:1 10175:1 10177:1 10193:1 10197:1 10207:1 10208:1 10209:1 10214:1 10216:2 10217:3 10221:2 10261:1 10281:1 10285:1 10287:1 10288:1 10291:1 10304:1 10314:1 10330:6 10340:2 10364:1 10379:1 10384:3 10389:1 10390:4 10393:3 10394:3 10395:1 10396:1 10403:1 10407:2 10411:1 10412:1 10415:2 10416:2 10417:2 10433:1 10438:4 10439:5 10441:1 10445:1 10455:5 10460:1 10462:1 10463:1 10470:1 10485:1 10512:1 10514:1 10520:1 10524:2 10532:2 10533:2 10535:1 10541:1 10574:1 10583:4 10595:3 10612:1 10630:1 10650:2 10656:2 10658:2 10662:1 10664:1 10674:1 10676:1 10683:1 10684:1 10696:1 10699:1 10706:1 10716:1 10721:1 10727:1 10742:1 10743:1 10775:1 10777:1 10783:1 10785:1 10790:1 10792:1 10801:1 10803:1 10812:1 10817:1 10839:1 10843:1 10845:1 10848:1 10852:5 10854:1 10861:2 10865:1 10879:1 10881:3 10885:3 10896:1 10907:1 10918:1 10920:1 10932:2 10935:1 10940:1 10941:1 10943:4 10953:2 10962:1 10966:1 10969:2 10970:4 10973:2 10975:8 10978:1 10980:2 10984:1 10989:1 10990:1 10993:1 10999:3 11000:1 11003:1 11004:1 11021:1 11022:1 11043:4 11045:1 11051:2 11057:7 11059:1 11076:1 11101:1 11104:1 11108:3 11127:1 11138:4 11140:1 11143:1 11153:1 11160:2 11163:1 11166:1 11176:1 11180:1 11183:1 11187:1 11194:1 11209:1 11210:1 11215:1 11216:1 11225:1 11237:1 11248:1 11253:2 11274:1 11288:1 11316:3 11329:3 11331:6 11332:6 11334:1 11349:2 11352:3 11358:3 11364:4 11368:2 11371:3 11374:1 11384:1 11390:1 11393:1 11404:1 11415:4 11416:2 11417:1 11419:1 11424:3 11436:41 11438:2 11442:1 11448:1 11455:2 11457:1 11463:3 11470:7 11472:4 11473:1 11481:2 11486:1 11506:1 11516:1 11519:1 11525:1 11527:1 11534:1 11549:1 11565:1 11574:3 11575:2 11578:1 11590:1 11594:1 11605:2 11618:3 11635:1 11639:1 11643:1 11653:1 11655:1 11656:1 11665:1 11687:1 11691:1 11694:2 11712:2 11713:8 11724:2 11743:2 11755:2 11760:4 11776:1 11781:3 11783:1 11784:3 11794:2 11810:1 11838:1 11844:1 11845:1 11846:1 11847:1 11862:1 11863:1 11867:2 11869:2 11878:2 11896:1 11898:1 11940:1 11941:1 11947:1 11948:1 11949:1 11963:1 11983:1 11989:1 11994:1 12012:1 12015:1 12016:1 12021:2 12028:1 12030:1 12033:1 12043:2 12051:1 12055:1 12061:1 12070:1 12076:1 12077:2 12089:1 12100:1 12118:1 12119:1 12127:3 12144:21 12156:1 12176:3 12183:3 12190:1 12194:1 12254:1 12267:4 12269:1 12272:1 12281:1 12286:1 12313:3 12314:2 12322:5 12345:1 12348:1 12360:1 12365:2 12366:3 12371:2 12374:1 12381:1 12384:2 12389:2 12390:2 12402:1 12408:1 12419:4 12424:1 12426:4 12442:3 12450:1 12474:2 12479:1 12486:1 12488:1 12493:1 12501:1 12516:1 12520:1 12536:1 12544:1 12545:1 12549:1 12556:1 12568:1 12575:1 12580:2 12582:1 12583:1 12588:1 12596:2 12630:1 12637:1 12641:2 12664:2 12676:1 12685:2 12694:1 12695:1 12703:1 12711:1 12718:1 12725:1 12727:2 12731:2 12734:3 12736:1 12738:1 12745:1 12750:1 12757:1 12758:1 12772:1 12784:1 12789:1 12801:3 12804:2 12809:2 12811:5 12824:2 12830:3 12840:1 12842:1 12847:1 12861:1 12866:1 12871:1 12883:1 12892:2 12899:1 12902:1 12919:1 12925:1 12926:4 12929:1 12931:1 12934:1 12938:1 12944:1 12946:1 12947:2 12948:1 12949:1 12951:1 12962:2 12992:1 13000:1 13005:1 13016:1 13019:1 13050:1 13064:1 13068:1 13082:1 13091:1 13121:2 13136:1 13139:1 13160:1 13178:2 13179:1 13206:1 13208:1 13209:1 13213:3 13242:2 13245:1 13256:2 13276:1 13278:1 13280:2 13302:1 13304:1 13313:1 13316:1 13318:1 13325:1 13326:5 13333:1 13334:1 13337:1 13347:1 13358:1 13371:1 13374:1 13378:1 13391:5 13408:1 13413:1 13421:1 13425:1 13437:1 13441:9 13443:5 13445:1 13456:1 13471:2 13502:1 13521:1 13524:3 13531:1 13545:1 13549:1 13554:2 13572:1 13581:1 13583:2 13590:1 13596:1 13600:2 13602:2 13604:3 13605:2 13616:1 13625:1 13640:1 13659:2 13663:1 13680:1 13692:2 13693:2 13696:1 13708:3 13711:1 13714:5 13720:1 13741:3 13745:2 13750:1 13752:1 13766:4 13803:1 13806:1 13807:7 13819:1 13836:1 13843:3 13860:1 13867:1 13873:1 13875:1 13882:1 13887:4 13896:3 13905:1 13906:1 13912:1 13915:3 13922:1 13924:1 13937:1 13942:1 13952:1 13967:3 13990:1 14004:1 14007:1 14016:1 14024:2 14028:1 14032:7 14036:1 14037:1 14043:2 14081:3 14089:1 14094:1 14096:1 14109:3 14120:1 14130:1 14140:1 14144:1 14151:1 14179:1 14181:1 14186:1 14189:1 14193:1 14198:3 14199:3 14201:2 14204:3 14206:1 14208:1 14209:2 14212:1 14217:2 14219:1 14220:1 14221:1 14242:1 14252:1 14254:1 14258:1 14262:5 14280:1 14282:1 14285:1 14295:1 14304:1 14307:1 14314:1 14315:1 14319:1 14321:1 14326:1 14328:1 14363:9 14368:2 14369:5 14400:1 14404:2 14410:1 14412:1 14414:1 14415:1 14432:1 14433:2 14436:1 14437:1 14443:1 14449:3 14458:2 14470:1 14482:1 14485:1 14498:1 14499:1 14513:1 14515:1 14559:1 14564:1 14565:1 14581:1 14586:1 14625:1 14631:1 14633:1 14637:1 14642:5 14662:1 14668:3 14678:4 14683:2 14697:2 14700:1 14707:1 14709:1 14717:1 14720:1 14725:2 14729:2 14750:2 14756:3 14758:1 14759:1 14763:1 14769:2 14771:2 14776:1 14821:1 14825:1 14832:1 14834:1 14843:1 14844:2 14845:2 14850:1 14852:1 14857:1 14871:1 14879:1 14889:1 14895:3 14896:3 14900:1 14931:2 14936:1 14945:1 14951:1 14959:12 14964:2 14977:2 14979:2 14985:1 14988:1 15003:2 15032:2 15033:1 15037:1 15048:1 15052:1 15054:1 15073:1 15099:14 15100:2 15108:1 15133:1 15136:2 15138:1 15155:1 15165:1 15166:1 15170:1 15184:1 15189:1 15198:1 15201:1 15202:1 15205:1 15208:1 15210:4 15222:1 15224:1 15226:1 15229:2 15250:1 15256:2 15260:1 15265:1 15281:2 15285:1 15287:1 15298:1 15300:1 15301:4 15306:1 15307:1 15309:1 15315:1 15320:2 15332:1 15339:1 15340:1 15341:1 15346:1 15348:1 15359:4 15360:1 15369:1 15384:1 15385:1 15391:1 15416:1 15427:1 15435:1 15436:1 15441:1 15447:1 15448:1 15456:2 15458:1 15479:2 15490:1 15492:1 15519:2 15539:1 15542:1 15544:1 15548:10 15550:1 15552:7 15554:4 15569:2 15573:3 15577:1 15578:1 15584:1 15589:2 15591:1 15597:2 15607:1 15618:2 15621:1 15633:4 15634:2 15659:1 15663:1 15664:1 15670:1 15674:3 15699:1 15703:1 15712:6 15715:1 15722:1 15723:1 15727:1 15732:3 15745:1 15753:2 15754:5 15756:1 15774:1 15787:1 15795:2 15796:1 15799:1 15806:1 15814:2 15860:1 15875:1 15879:2 15881:1 15896:2 15918:1 15924:1 15931:1 15958:1 15992:1 16018:1 16020:1 16027:1 16030:1 16031:1 16040:1 16045:1 16050:1 16051:2 16054:2 16058:1 16059:2 16067:1 16071:1 16074:1 16075:5 16078:1 16080:5 16083:1 16090:1 16093:2 16100:2 16101:2 16105:3 16106:1 16110:1 16114:3 16117:1 16127:3 16131:1 16134:1 16137:1 16140:1 16142:1 16163:2 16172:1 16176:1 16177:1 16206:1 16207:1 16211:2 16225:4 16240:1 16246:1 16249:1 16260:1 16262:1 16269:1 16273:6 16278:1 16285:1 16297:1 16305:1 16312:1 16339:1 16357:1 16374:2 16376:1 16391:1 16393:1 16395:1 16399:1 16418:1 16427:1 16431:1 16443:1 16446:2 16473:1 16498:1 16502:1 16519:1 16523:1 16527:1 16531:2 16535:2 16552:3 16553:2 16560:1 16575:1 16580:2 16581:1 16584:1 16585:2 16596:3 16600:1 16601:1 16602:2 16621:1 16628:3 16631:2 16650:1 16658:1 16676:14 16678:1 16679:1 16708:1 16712:1 16725:1 16727:1 16731:4 16745:1 16749:2 16750:2 16758:1 16765:1 16805:1 16810:2 16816:2 16828:2 16843:1 16844:2 16850:1 16851:1 16852:1 16867:2 16869:1 16874:2 16890:1 16893:3 16921:1 16936:4 16949:1 16951:1 16955:1 16981:1 16987:1 16999:2 17005:1 17008:1 17028:1 17029:1 17045:1 17052:3 17053:1 17056:1 17062:14 17063:2 17068:1 17071:3 17076:1 17078:2 17079:1 17083:1 17084:1 17089:1 17092:1 17099:2 17111:1 17126:1 17131:1 17132:1 17133:1 17137:1 17144:2 17151:4 17156:2 17183:2 17189:1 17201:1 17202:1 17230:1 17231:1 17235:1 17237:1 17242:1 17259:4 17263:3 17266:2 17268:3 17273:1 17279:2 17287:4 17301:1 17314:1 17332:1 17339:1 17345:1 17351:1 17379:1 17396:1 17397:1 17403:5 17414:1 17417:1 17429:2 17432:1 17438:1 17453:1 17461:1 17463:1 17468:2 17495:2 17501:2 17504:1 17518:2 17533:2 17543:1 17549:1 17553:1 17554:1 17555:2 17565:1 17566:1 17591:6 17594:1 17604:1 17608:1 17616:1 17627:1 17632:1 17634:2 17643:1 17652:1 17660:1 17670:2 17672:1 17675:1 17676:2 17695:1 17696:1 17753:1 17759:1 17769:1 17774:5 17776:2 17798:1 17799:1 17801:1 17809:2 17810:2 17818:1 17823:1 17826:1 17855:1 17881:1 17893:1 17894:1 17897:5 17922:1 17925:1 17929:2 17930:1 17935:1 17936:1 17971:1 17986:1 17989:1 17996:1 18002:1 18003:1 18012:1 18022:1 18023:1 18027:1 18032:2 18045:1 18053:1 18070:1 18074:2 18077:2 18099:3 18104:1 18126:1 18141:1 18150:1 18153:2 18175:1 18179:1 18180:3 18198:1 18200:1 18227:2 18230:1 18245:2 18258:1 18263:1 18264:3 18269:1 18272:1 18274:1 18290:1 18302:1 18303:1 18310:2 18319:1 18333:1 18339:1 18347:1 18357:2 18358:1 18360:2 18362:1 18380:3 18383:2 18386:1 18390:1 18393:1 18398:2 18399:1 18415:1 18432:1 18434:1 18438:1 18441:1 18451:1 18453:1 18455:1 18459:2 18465:1 18499:1 18523:5 18525:1 18531:1 18534:1 18535:2 18542:1 18545:1 18546:2 18556:1 18564:1 18566:1 18575:1 18603:1 18606:12 18613:3 18616:2 18627:2 18629:1 18634:1 18638:2 18644:2 18652:1 18656:1 18665:2 18666:1 18677:1 18685:1 18687:1 18689:2 18692:1 18697:1 18703:1 18707:1 18709:1 18710:1 18711:2 18713:1 18717:1 18725:2 18729:1 18742:2 18751:1 18752:2 18760:1 18763:1 18765:1 18769:1 18770:1 18780:1 18791:2 18796:1 18807:1 18810:1 18815:1 18835:1 18851:3 18865:1 18881:2 18893:1 18897:1 18904:1 18909:2 18918:1 18948:1 18973:1 19013:1 19014:2 19015:1 19025:2 19026:1 19051:1 19053:1 19055:1 19062:1 19064:2 19085:1 19093:2 19115:1 19117:3 19119:1 19121:2 19126:5 19152:1 19155:1 19168:1 19215:5 19228:1 19235:1 19270:1 19278:1 19292:1 19311:1 19315:2 19324:4 19339:1 19344:2 19353:2 19365:1 19367:2 19386:6 19388:2 19391:1 19407:1 19413:1 19418:2 19444:1 19450:4 19452:1 19454:1 19471:1 19495:1 19498:2 19503:1 19506:1 19508:1 19509:1 19512:1 19524:5 19525:1 19535:2 19536:3 19537:1 19538:2 19549:1 19551:2 19555:1 19556:1 19558:2 19568:1 19578:1 19582:1 19586:1 19595:1 19597:1 19598:1 19600:5 19602:2 19615:1 19616:1 19621:1 19630:1 19633:1 19638:2 19645:2 19649:2 19652:1 19655:15 19659:1 19664:5 19667:1 19680:1 19696:3 19700:1 19715:3 19718:2 19720:1 19721:1 19724:2 19727:2 19747:1 19757:1 19777:1 19785:1 19786:1 19792:2 19816:3 19829:1 19833:1 19851:1 19857:6 19863:1 19865:1 19891:1 19896:1 19908:3 19910:1 19913:1 19918:4 19929:4 19936:2 19965:1 19974:1 19975:4 19977:1 19991:2 19992:1 19995:1 19998:1 19999:1 20015:1 20020:1 20022:1 20030:1 20034:6 20035:1 20037:1 20038:1 20039:1 20040:2 20041:1 20044:1 20047:1 20049:7 20050:2 20052:1 20075:1 20076:1 20078:1 20081:1 20101:1 20102:3 20109:1 20117:2 20132:1 20170:1 20171:1 20185:1 20188:1 20210:1 20223:1 20227:1 20251:1 20256:1 20258:1 20262:1 20266:1 20267:2 20276:1 20284:1 20298:3 20305:3 20363:1 20366:1 20368:1 20378:1 20379:1 20382:1 20383:1 20387:2 20390:7 20396:1 20402:1 20409:1 20413:1 20430:2 20440:2 20451:1 20453:1 20469:1 20482:7 20494:5 20519:2 20529:1 20552:1 20580:1 20588:1 20589:1 20598:1 20603:1 20614:1 20621:1 20628:1 20633:1 20636:1 20669:1 20670:1 20706:1 20718:1 20724:1 20735:1 20746:1 20758:1 20792:1 20817:1 20822:2 20828:2 20844:1 20845:2 20846:1 20848:1 20851:4 20855:2 20874:1 20875:1 20878:1 20880:1 20892:1 20903:1 20912:1 20933:1 20955:1 20956:1 20966:1 20980:1 21034:3 21072:1 21080:3 21083:3 21096:1 21099:2 21110:2 21111:2 21113:1 21118:2 21121:1 21142:1 21145:1 21153:1 21163:1 21180:1 21188:2 21202:1 21213:3 21216:1 21223:2 21244:1 21262:1 21265:1 21271:4 21274:1 21276:2 21298:2 21304:1 21308:1 21315:1 21318:1 21333:1 21339:1 21341:1 21349:2 21353:1 21361:1 21362:1 21374:3 21378:1 21379:2 21386:1 21402:1 21443:1 21446:1 21451:3 21459:1 21463:1 21464:1 21470:2 21494:1 21510:2 21512:1 21538:2 21539:1 21540:1 21547:1 21568:1 21579:1 21581:1 21586:2 21589:2 21619:1 21623:1 21626:3 21635:3 21637:3 21639:1 21640:3 21646:1 21667:1 21674:2 21707:5 21713:1 21715:1 21718:1 21820:2
1 5:2 10:1 23:1 35:1 53:1 66:1 77:1 91:1 99:1 101:1 103:3 107:1 123:1 124:1 128:1 131:1 134:1 140:1 163:1 181:1 217:1 233:1 251:1 255:1 260:3 261:1 266:1 270:2 280:1 296:2 308:1 309:1 319:1 324:3 343:5 369:1 370:1 401:2 411:1 419:1 432:1 439:7 454:1 461:3 466:1 467:1 468:2 476:1 490:1 501:2 510:2 523:3 527:1 547:1 563:4 564:3 571:1 573:3 578:1 582:3 583:1 593:1 602:2 605:2 626:2 628:2 635:1 644:1 660:1 663:5 667:5 677:1 685:2 706:1 717:1 742:1 747:1 749:1 753:1 761:1 762:5 778:3 790:1 797:2 806:3 827:3 835:1 849:1 854:2 858:1 861:1 869:1 883:1 889:1 893:1 894:1 901:2 908:3 918:1 943:1 954:1 956:2 959:1 964:1 989:2 1004:1 1005:1 1018:2 1030:1 1034:1 1037:4 1040:1 1045:1 1056:1 1073:4 1074:1 1079:1 1081:1 1099:1 1111:1 1124:1 1142:1 1152:2 1159:1 1160:2 1200:1 1205:2 1209:1 1216:1 1229:2 1237:3 1248:1 1258:1 1261:2 1270:1 1273:1 1278:1 1281:1 1282:3 1308:1 1320:5 1322:2 1331:1 1349:1 1351:1 1356:1 1358:4 1375:1 1389:1 1392:1 1402:14 1407:4 1418:1 1419:3 1430:1 1435:1 1441:3 1453:1 1457:14 1459:1 1463:1 1474:1 1475:4 1476:2 1478:7 1481:1 1482:1 1486:2 1488:3 1489:3 1492:1 1507:2 1530:5 1531:4 1536:3 1549:1 1598:1 1600:2 1622:1 1624:1 1642:1 1644:1 1651:2 1653:1 1659:2 1683:2 1689:1 1698:1 1712:2 1715:1 1724:1 1740:1 1743:1 1757:1 1771:1 1774:2 1779:1 1781:1 1784:1 1785:1 1789:1 1790:1 1797:2 1800:1 1834:3 1866:1 1875:1 1877:3 1879:2 1884:5 1885:2 1886:2 1887:1 1888:5 1889:1 1890:1 1892:1 1893:2 1894:1 1895:1 1898:2 1899:3 1903:1 1904:1 1908:1 1911:1 1912:2 1913:1 1920:1 1921:1 1927:1 1940:1 1947:1 1950:1 1951:1 1953:2 1967:1 1973:2 2007:2 2009:1 2025:1 2036:1 2055:1 2057:1 2077:1 2079:1 2102:1 2105:1 2107:1 2112:1 2113:1 2114:1 2128:1 2142:1 2161:2 2167:1 2171:1 2172:1 2179:1 2180:2 2181:2 2199:1 2208:1 2209:2 2215:1 2233:1 2235:1 2240:3 2267:1 2271:1 2274:1 2276:1 2281:1 2288:1 2291:2 2306:1 2314:1 2333:1 2337:1 2340:1 2345:4 2356:7 2359:2 2375:1 2376:1 2412:2 2425:1 2427:1 2429:1 2434:1 2436:1 2441:2 2456:1 2458:1 2460:2 2465:1 2472:2 2485:2 2486:2 2489:1 2498:1 2499:1 2503:1 2506:5 2507:1 2511:1 2515:1 2520:2 2522:1 2527:2 2532:1 2545:1 2552:2 2553:1 2562:1 2563:3 2567:1 2572:2 2574:1 2580:1 2583:1 2595:3 2603:1 2604:2 2613:2 2619:2 2621:1 2623:1 2626:1 2635:1 2654:1 2656:5 2664:1 2684:1 2691:1 2695:3 2701:2 2704:12 2706:1 2715:2 2718:6 2733:1 2739:1 2749:1 2750:4 2752:2 2753:4 2768:1 2775:1 2791:1 2795:2 2798:4 2800:1 2801:1 2804:1 2829:1 2835:1 2840:2 2844:2 2845:1 2847:1 2862:2 2865:1 2907:1 2913:1 2919:1 2927:8 2930:2 2932:1 2941:1 2945:1 2949:2 2953:1 2959:1 2965:1 2968:2 2971:4 2978:1 2988:1 2989:1 2992:1 2997:1 3005:1 3024:1 3027:2 3032:1 3043:1 3059:2 3062:1 3065:1 3066:1 3071:2 3075:1 3093:2 3115:1 3124:5 3138:1 3153:11 3156:2 3161:1 3166:1 3179:1 3184:1 3190:1 3194:1 3208:2 3216:1 3228:1 3263:2 3271:3 3274:2 3275:1 3276:3 3290:1 3295:1 3299:1 3302:2 3308:1 3322:2 3325:2 3329:2 3331:5 3332:1 3335:1 3337:2 3340:2 3341:2 3343:1 3344:1 3346:4 3353:1 3354:4 3355:3 3358:5 3360:7 3362:1 3373:1 3391:1 3414:1 3417:1 3429:1 3439:1 3441:1 3445:1 3450:1 3451:3 3455:1 3465:2 3470:1 3475:2 3477:1 3488:1 3493:1 3509:2 3521:2 3523:1 3524:1 3538:1 3539:1 3541:1 3548:1 3552:1 3557:1 3576:1 3599:1 3613:1 3622:1 3631:1 3633:1 3644:1 3661:1 3672:1 3674:1 3679:3 3684:2 3692:1 3697:1 3711:1 3712:1 3717:1 3718:1 3722:1 3732:1 3747:1 3749:2 3755:1 3759:1 3760:3 3767:2 3772:1 3775:6 3777:3 3781:1 3788:1 3789:1 3790:1 3793:1 3800:3 3806:2 3808:2 3815:2 3819:1 3821:1 3828:9 3856:4 3857:1 3858:1 3865:1 3887:1 3888:2 3893:2 3896:1 3899:1 3900:1 3901:1 3903:1 3904:1 3910:1 3916:1 3921:1 3925:6 3927:1 3928:1 3939:1 3948:2 3957:8 3965:4 3966:1 3979:2 3981:1 3986:1 3988:2 3990:1 3997:3 3998:2 4009:2 4025:1 4026:2 4032:3 4036:1 4038:1 4041:1 4065:3 4071:1 4090:1 4097:1 4101:2 4103:1 4104:2 4106:2 4118:1 4121:3 4122:1 4129:1 4131:1 4133:4 4136:1 4143:2 4147:1 4150:1 4158:1 4176:1 4182:1 4198:1 4199:1 4200:1 4216:1 4227:1 4230:1 4239:1 4242:2 4246:2 4247:1 4265:3 4272:1 4277:1 4279:14 4311:3 4312:1 4315:1 4316:1 4317:1 4318:1 4326:2 4333:2 4338:1 4358:17 4361:1 4382:1 4387:1 4398:2 4400:3 4426:1 4427:1 4429:2 4438:1 4440:1 4442:1 4447:1 4459:1 4461:1 4482:1 4489:1 4498:1 4505:1 4513:1 4524:1 4532:1 4534:5 4555:1 4565:3 4573:1 4582:1 4584:1 4586:1 4591:1 4600:2 4627:1 4641:1 4643:2 4661:1 4663:1 4667:1 4680:2 4698:1 4717:2 4737:3 4757:1 4770:2 4771:1 4786:1 4792:1 4794:2 4797:1 4803:1 4811:1 4841:1 4855:1 4863:1 4866:1 4868:2 4869:1 4884:1 4895:1 4910:6 4933:1 4936:3 4944:1 4958:1 4969:1 5004:1 5009:1 5018:2 5028:1 5032:12 5051:1 5058:1 5059:1 5074:1 5082:1 5083:1 5087:1 5089:1 5103:1 5133:1 5149:1 5156:1 5182:2 5187:1 5199:1 5205:1 5206:12 5218:1 5220:2 5222:2 5223:2 5226:1 5244:1 5249:1 5250:1 5251:1 5257:13 5274:3 5275:1 5277:1 5288:1 5290:5 5293:1 5307:1 5308:1 5310:1 5317:1 5321:3 5331:2 5338:2 5348:1 5369:1 5386:1 5395:1 5396:2 5418:1 5422:1 5429:2 5434:1 5438:2 5453:1 5456:4 5461:1 5492:1 5495:1 5499:2 5506:2 5508:1 5528:2 5530:1 5533:1 5534:1 5547:1 5555:3 5572:1 5574:1 5577:2 5579:4 5583:1 5587:2 5592:2 5593:2 5606:3 5608:1 5621:2 5624:2 5625:2 5647:1 5651:2 5656:2525 5670:1 5673:1 5678:1 5679:2 5682:2 5687:1 5696:1 5700:1 5714:1 5716:1 5726:6 5728:4 5741:2 5761:1 5765:1 5772:1 5779:1 5784:2 5787:1 5793:1 5814:2 5816:1 5824:1 5829:2 5846:1 5862:2 5866:1 5870:1 5873:1 5894:2 5901:1 5904:1 5905:1 5915:2 5927:1 5939:3 5941:1 5944:1 5945:1 5947:2 5949:1 5952:1 5955:2 5981:1 5983:1 5987:2 5992:5 5993:3 5997:1 6004:1 6015:1 6023:1 6025:1 6033:1 6050:1 6057:1 6066:1 6067:1 6088:1 6095:1 6106:7 6108:1 6109:1 6142:3 6156:1 6165:1 6171:1 6176:3 6179:2 6185:1 6189:2 6192:1 6201:2 6210:2 6240:1 6244:1 6248:2 6268:3 6296:1 6302:1 6304:1 6308:3 6312:1 6335:2 6359:1 6366:1 6367:1 6373:2 6376:1 6378:3 6381:1 6397:1 6399:1 6403:1 6410:2 6414:1 6417:1 6435:1 6449:3 6460:1 6468:1 6479:2 6488:5 6507:1 6513:1 6518:1 6521:1 6540:1 6550:2 6558:2 6567:4 6570:1 6577:2 6578:1 6590:1 6593:1 6596:1 6597:1 6603:3 6606:1 6612:2 6614:2 6631:4 6642:2 6655:1 6662:1 6673:2 6674:2 6700:1 6702:2 6708:3 6709:2 6711:1 6713:1 6716:1 6728:3 6732:1 6733:2 6746:8 6747:1 6756:1 6769:1 6776:2 6792:1 6793:1 6804:1 6820:1 6822:1 6832:2 6833:1 6842:1 6846:1 6870:5 6871:1 6892:13 6894:1 6899:1 6901:1 6906:1 6914:1 6916:1 6948:1 6957:1 6961:1 6975:4 6976:1 6986:1 6989:2 6997:1 6998:2 7000:1 7012:4 7013:1 7023:1 7028:1 7038:1 7066:1 7075:3 7084:2 7095:2 7098:1 7107:2 7112:1 7117:4 7119:7 7121:3 7124:1 7129:2 7131:2 7132:1 7136:1 7138:1 7140:6 7142:4 7146:2 7147:7 7154:2 7158:4 7159:1 7162:1 7171:3 7175:1 7199:1 7201:1 7203:2 7206:2 7211:1 7213:1 7215:1 7248:1 7253:1 7271:1 7272:1 7274:1 7283:1 7300:2 7315:1 7340:1 7345:1 7360:1 7387:1 7388:2 7404:1 7405:2 7406:1 7408:1 7419:1 7421:1 7426:1 7458:1 7461:1 7462:1 7466:1 7470:1 7480:1 7488:1 7504:1 7506:1 7516:1 7519:1 7520:1 7529:1 7530:1 7545:1 7555:1 7563:1 7569:1 7572:2 7575:4 7580:2 7588:1 7589:3 7636:1 7665:1 7668:1 7682:2 7689:3 7691:1 7693:1 7697:2 7699:1 7700:2 7702:2 7712:1 7720:1 7722:1 7724:3 7732:2 7739:1 7740:2 7741:2 7744:1 7768:5 7779:2 7792:1 7797:1 7812:1 7818:1 7821:1 7823:4 7835:3 7853:1 7859:1 7860:1 7872:2 7873:1 7878:1 7891:1 7898:1 7905:2 7930:1 7931:1 7938:1 7940:1 7944:2 7953:2 7965:1 7969:1 7974:3 7975:17 7977:2 7985:1 7991:1 7994:4 8003:1 8006:1 8022:1 8033:1 8035:1 8059:1 8070:1 8075:1 8087:1 8093:1 8095:1 8104:1 8108:1 8136:1 8140:1 8141:1 8145:1 8154:1 8179:1 8188:1 8195:2 8202:1 8208:1 8213:2 8221:1 8227:1 8250:5 8251:1 8254:2 8257:1 8259:2 8261:4 8278:1 8280:1 8299:2 8312:3 8327:2 8330:1 8333:1 8342:2 8345:6 8348:1 8359:2 8364:2 8377:1 8378:1 8391:2 8428:8 8433:2 8439:1 8444:1 8450:1 8462:1 8488:1 8494:1 8497:1 8512:1 8514:1 8518:1 8520:1 8521:1 8532:2 8533:1 8534:1 8554:1 8570:1 8575:1 8576:1 8590:4 8601:1 8608:2 8619:2 8621:3 8646:2 8647:1 8653:1 8663:1 8668:1 8673:1 8675:1 8679:6 8682:1 8683:1 8687:1 8688:1 8693:2 8697:2 8700:1 8705:1 8707:1 8708:1 8709:1 8752:1 8755:1 8756:1 8762:1 8765:1 8766:2 8767:1 8772:1 8775:1 8776:1 8777:3 8783:12 8788:2 8792:2 8807:2 8814:1 8828:2 8852:3 8862:4 8863:1 8867:2 8880:2 8899:1 8909:2 8913:1 8923:1 8931:1 8943:2 8952:1 8958:3 8967:2 8969:1 8970:1 8981:5 8985:1 8997:6 9001:1 9003:1 9008:2 9015:1 9027:3 9059:2 9068:1 9084:1 9089:1 9095:1 9111:1 9113:1 9121:1 9128:1 9135:2 9139:2 9143:2 9148:1 9151:1 9152:2 9154:1 9155:1 9157:1 9160:2 9162:3 9163:1 9168:1 9169:1 9171:2 9176:2 9179:2 9181:4 9184:3 9203:1 9207:2 9232:2 9245:1 9246:1 9258:1 9260:1 9262:4 9263:1 9281:2 9285:1 9293:1 9299:1 9300:1 9311:2 9319:1 9330:1 9333:1 9340:1 9345:1 9347:1 9370:1 9387:1 9396:1 9399:1 9402:2 9407:2 9424:1 9438:1 9440:1 9442:4 9445:2 9468:1 9480:1 9489:1 9547:1 9554:1 9568:1 9572:1 9585:2 9587:1 9589:1 9598:2 9599:2 9604:1 9605:1 9612:1 9615:1 9618:1 9630:1 9634:1 9655:3 9657:1 9661:1 9668:1 9679:1 9688:2 9694:1 9703:2 9714:1 9721:1 9726:1 9731:1 9735:1 9737:1 9751:1 9753:1 9768:2 9772:1 9773:1 9776:1 9778:2 9782:1 9784:1 9806:2 9814:2 9823:2 9824:1 9831:2 9834:1 9835:1 9844:1 9849:2 9871:1 9873:12 9883:2 9885:2 9890:2 9912:2 9914:1 9915:1 9922:1 9932:1 9945:1 9946:1 9948:1 9963:1 9966:1 9968:1 9974:1 9985:7 9996:2 10007:2 10011:1 10020:1 10028:1 10043:2 10065:1 10066:1 10070:2 10078:1 10080:1 10089:1 10102:2 10109:1 10116:1 10121:4 10125:3 10128:1 10129:3 10130:1 10144:2 10146:2 10152:1 10161:2 10166:1 10168:1 10175:1 10177:1 10193:1 10197:1 10207:1 10208:1 10209:1 10214:1 10216:2 10217:4 10221:2 10261:1 10281:2 10285:1 10287:1 10288:1 10291:1 10304:1 10314:1 10330:6 10340:2 10364:1 10379:1 10384:3 10389:1 10390:4 10393:3 10394:3 10395:1 10396:1 10403:1 10407:2 10411:1 10412:1 10415:2 10416:3 10417:2 10433:1 10438:4 10439:5 10441:1 10445:1 10455:5 10458:1 10460:1 10462:1 10463:1 10470:1 10485:1 10512:1 10514:1 10520:1 10524:2 10532:2 10533:2 10535:1 10541:1 10573:1 10574:1 10583:4 10595:3 10612:1 10630:1 10650:2 10656:2 10658:2 10662:1 10664:1 10674:1 10676:1 10683:1 10684:1 10696:1 10699:1 10706:1 10716:1 10721:1 10727:1 10742:1 10743:1 10755:1 10775:1 10777:1 10783:1 10785:1 10790:1 10792:1 10801:1 10803:1 10812:1 10817:1 10839:1 10843:1 10845:1 10848:1 10852:5 10854:1 10861:2 10865:1 10879:1 10881:3 10885:3 10896:1 10907:1 10918:1 10920:1 10932:2 10935:1 10940:1 10941:1 10943:4 10953:2 10962:1 10966:1 10969:2 10970:5 10973:2 10975:8 10978:1 10980:2 10984:1 10988:1 10989:1 10990:1 10993:1 10999:3 11000:1 11003:1 11004:1 11021:1 11022:1 11043:4 11045:1 11051:2 11057:7 11059:1 11076:1 11101:1 11104:1 11108:3 11127:1 11138:5 11140:1 11143:1 11153:1 11160:2 11163:1 11166:1 11176:1 11180:1 11183:1 11187:1 11194:1 11209:1 11210:1 11215:1 11216:1 11223:1 11225:1 11237:1 11248:1 11249:1 11253:2 11257:1 11274:1 11288:1 11316:3 11323:1 11329:3 11331:6 11332:6 11334:1 11349:2 11352:3 11354:1 11358:3 11364:4 11368:2 11371:3 11374:1 11384:1 11390:1 11393:1 11404:1 11415:4 11416:2 11417:1 11419:1 11424:3 11436:41 11438:2 11442:1 11448:1 11455:2 11457:1 11463:3 11470:7 11472:5 11473:1 11481:2 11486:1 11506:1 11516:1 11519:1 11525:1 11527:1 11534:1 11549:1 11565:1 11574:3 11575:2 11578:1 11590:1 11594:1 11605:2 11618:3 11635:1 11639:1 11643:1 11653:1 11655:1 11656:1 11665:1 11687:1 11691:1 11694:2 11712:2 11713:9 11724:2 11743:2 11755:2 11760:4 11775:1 11776:1 11781:3 11783:1 11784:3 11794:2 11810:1 11838:1 11844:1 11845:1 11846:1 11847:1 11862:1 11863:1 11867:2 11869:2 11878:2 11896:1 11898:1 11940:1 11941:1 11947:1 11948:1 11949:1 11963:1 11983:1 11989:1 11994:1 12012:1 12015:1 12016:1 12021:2 12028:1 12030:1 12033:1 12043:2 12051:1 12055:1 12061:1 12070:1 12076:1 12077:2 12089:1 12100:1 12118:1 12119:1 12127:3 12144:22 12156:1 12176:3 12183:3 12190:1 12194:1 12254:1 12267:5 12269:1 12272:1 12281:1 12286:1 12313:3 12314:2 12322:5 12345:1 12348:1 12360:1 12365:2 12366:3 12371:2 12374:1 12381:1 12384:2 12389:2 12390:2 12402:1 12408:1 12419:4 12424:1 12426:4 12442:3 12450:1 12474:2 12479:1 12486:1 12488:1 12493:1 12494:1 12501:1 12516:1 12520:1 12536:1 12544:1 12545:1 12549:1 12556:1 12568:1 12575:1 12580:2 12582:1 12583:1 12588:1 12596:2 12630:1 12637:1 12641:2 12664:2 12676:1 12685:2 12694:1 12695:1 12703:1 12711:1 12718:1 12725:1 12727:2 12731:2 12734:3 12736:1 12738:1 12745:1 12750:1 12757:1 12758:1 12772:1 12775:1 12784:1 12789:2 12801:3 12804:2 12809:2 12811:5 12824:2 12830:3 12840:1 12842:1 12847:1 12861:1 12866:1 12871:1 12883:1 12892:2 12899:1 12902:1 12919:1 12925:1 12926:4 12929:1 12931:1 12934:1 12938:1 12944:1 12946:1 12947:2 12948:1 12949:1 12951:1 12962:2 12982:1 12992:1 13000:1 13005:1 13016:1 13019:1 13050:1 13064:1 13068:1 13082:1 13091:1 13106:1 13121:2 13136:1 13139:1 13160:2 13178:2 13179:1 13206:1 13208:1 13209:1 13213:3 13242:3 13245:1 13256:2 13276:1 13278:1 13280:2 13302:1 13304:1 13313:1 13316:1 13318:1 13325:1 13326:6 13333:1 13334:1 13337:1 13347:1 13358:1 13371:1 13374:1 13378:1 13391:6 13393:1 13408:1 13413:1 13421:1 13425:1 13437:1 13441:10 13443:5 13445:1 13456:1 13471:2 13502:1 13521:1 13524:3 13531:1 13545:1 13549:1 13554:2 13559:1 13572:1 13581:1 13583:2 13590:1 13596:1 13600:2 13602:2 13604:3 13605:2 13616:1 13625:1 13640:1 13659:2 13663:1 13680:1 13692:2 13693:2 13696:1 13708:3 13711:1 13714:5 13720:1 13741:3 13745:2 13750:1 13752:1 13766:4 13803:1 13806:1 13807:7 13819:1 13836:1 13843:3 13860:1 13867:1 13873:1 13875:1 13882:1 13887:4 13896:3 13905:1 13906:1 13912:1 13915:3 13922:1 13924:1 13937:1 13942:1 13952:1 13967:3 13990:1 14004:1 14007:1 14016:1 14024:2 14028:1 14032:7 14036:1 14037:1 14043:2 14081:3 14089:1 14094:1 14096:1 14109:3 14120:1 14130:1 14140:1 14144:1 14151:1 14179:1 14181:1 14186:1 14189:1 14193:1 14198:3 14199:3 14201:2 14204:3 14206:1 14208:1 14209:2 14212:1 14217:2 14219:1 14220:1 14221:1 14242:1 14243:1 14252:1 14254:1 14258:1 14262:6 14280:1 14282:1 14285:1 14295:1 14304:1 14307:1 14314:1 14315:1 14319:1 14321:1 14326:1 14328:1 14363:9 14368:2 14369:6 14400:1 14404:2 14410:1 14412:1 14414:1 14415:1 14432:1 14433:2 14436:1 14437:1 14443:1 14449:3 14458:2 14470:1 14482:1 14485:1 14498:1 14499:1 14513:1 14515:1 14559:1 14564:1 14565:1 14581:1 14586:1 14625:1 14631:1 14633:1 14637:1 14642:5 14662:1 14668:4 14678:4 14683:2 14697:2 14700:1 14707:1 14709:1 14717:1 14720:1 14725:2 14729:2 14750:2 14756:3 14758:1 14759:1 14763:1 14769:2 14771:2 14776:1 14821:1 14825:1 14832:1 14834:1 14843:1 14844:2 14845:2 14850:1 14852:1 14857:1 14871:1 14879:1 14889:1 14895:3 14896:3 14900:1 14931:2 14936:1 14945:1 14951:1 14959:12 14964:2 14977:2 14979:2 14985:1 14988:1 14997:1 15003:2 15032:2 15033:1 15037:1 15048:1 15052:1 15054:1 15055:1 15073:1 15099:15 15100:2 15108:1 15133:1 15136:2 15138:1 15155:1 15165:1 15166:1 15170:1 15184:1 15189:1 15198:1 15201:1 15202:1 15205:1 15208:1 15210:4 15222:1 15224:1 15226:1 15229:2 15250:1 15256:2 15260:1 15265:1 15281:2 15285:1 15287:1 15298:1 15300:1 15301:4 15306:1 15307:1 15309:1 15315:1 15320:2 15332:1 15339:1 15340:1 15341:1 15346:1 15348:1 15359:4 15360:1 15369:1 15384:1 15385:1 15391:1 15416:1 15427:1 15435:1 15436:1 15441:1 15447:1 15448:1 15456:2 15458:1 15479:2 15490:1 15492:1 15504:1 15514:1 15519:2 15529:1 15539:1 15542:1 15544:1 15548:10 15550:1 15552:7 15554:4 15569:2 15573:3 15577:1 15578:1 15584:1 15589:2 15591:1 15595:1 15597:2 15607:1 15618:2 15621:1 15633:4 15634:2 15659:2 15663:1 15664:1 15670:1 15674:3 15699:1 15703:1 15712:6 15715:1 15722:1 15723:1 15727:1 15732:3 15742:1 15745:1 15753:2 15754:5 15756:1 15774:1 15787:1 15795:2 15796:1 15799:1 15806:1 15814:3 15821:1 15860:1 15875:1 15879:2 15881:1 15894:1 15896:2 15918:1 15924:1 15931:1 15958:1 15992:1 16018:1 16020:2 16027:1 16030:1 16031:1 16040:1 16045:1 16050:1 16051:2 16054:2 16058:1 16059:2 16067:1 16071:1 16074:1 16075:5 16078:1 16080:5 16083:1 16090:1 16093:2 16100:2 16101:2 16105:5 16106:1 16110:1 16114:3 16117:1 16127:3 16131:1 16134:1 16137:1 16140:1 16142:1 16163:2 16172:1 16176:1 16177:1 16206:1 16207:1 16211:3 16225:4 16240:1 16246:1 16249:1 16260:1 16262:1 16269:1 16273:6 16278:1 16285:1 16297:1 16305:1 16312:1 16339:1 16357:1 16364:1 16374:2 16376:1 16391:1 16393:1 16395:1 16399:1 16414:1 16418:1 16427:1 16431:1 16443:1 16446:2 16473:1 16498:1 16502:1 16519:1 16523:1 16527:1 16531:2 16535:2 16551:1 16552:3 16553:2 16560:1 16575:1 16580:2 16581:1 16584:1 16585:2 16596:3 16600:1 16601:1 16602:2 16621:1 16628:3 16631:2 16650:1 16658:1 16676:14 16678:1 16679:1 16708:1 16712:1 16725:1 16727:1 16731:4 16745:1 16749:2 16750:2 16758:2 16765:1 16780:1 16805:1 16810:2 16816:2 16828:2 16843:1 16844:2 16850:1 16851:1 16852:1 16867:2 16869:1 16874:2 16890:1 16893:3 16898:1 16921:1 16936:4 16949:1 16951:1 16955:1 16981:1 16987:1 16999:2 17005:1 17008:1 17028:1 17029:1 17045:1 17052:3 17053:1 17056:1 17062:14 17063:2 17068:1 17071:3 17076:1 17078:2 17079:1 17083:1 17084:1 17089:1 17092:1 17099:2 17111:1 17126:1 17131:1 17132:1 17133:1 17137:1 17144:2 17151:5 17156:2 17183:2 17189:1 17201:1 17202:1 17230:1 17231:1 17235:1 17237:2 17242:1 17259:4 17263:3 17266:2 17268:3 17273:1 17279:2 17287:4 17301:1 17314:1 17332:1 17339:1 17345:1 17351:1 17379:1 17396:1 17397:1 17403:5 17414:1 17417:1 17429:2 17432:1 17438:1 17453:1 17461:1 17463:1 17468:2 17495:2 17501:2 17504:1 17518:2 17533:2 17543:1 17547:2 17549:1 17553:1 17554:1 17555:2 17565:1 17566:2 17591:6 17594:1 17604:1 17608:1 17616:1 17627:1 17632:1 17634:2 17640:1 17643:1 17652:1 17660:1 17670:2 17672:1 17675:1 17676:2 17695:1 17696:1 17753:1 17759:1 17769:1 17774:5 17776:2 17798:1 17799:1 17801:1 17809:2 17810:2 17818:1 17823:1 17826:1 17855:1 17881:1 17893:1 17894:1 17897:5 17922:1 17925:1 17929:2 17930:1 17935:1 17936:1 17971:1 17986:1 17989:1 17996:1 18002:1 18003:1 18012:1 18022:1 18023:1 18027:1 18032:2 18045:1 18053:1 18070:1 18074:2 18077:2 18099:3 18104:1 18126:1 18141:1 18150:1 18153:2 18175:1 18179:1 18180:3 18198:1 18200:1 18227:2 18230:1 18245:2 18258:1 18263:1 18264:3 18269:1 18272:1 18274:1 18290:1 18302:1 18303:1 18310:2 18319:1 18333:1 18339:1 18347:1 18357:2 18358:1 18360:2 18362:1 18380:3 18383:2 18386:1 18390:1 18393:1 18398:2 18399:1 18415:1 18432:1 18434:1 18438:1 18441:1 18451:1 18453:1 18455:1 18459:2 18465:1 18499:1 18523:5 18525:1 18531:3 18534:1 18535:2 18542:1 18545:1 18546:2 18556:1 18564:1 18566:1 18575:1 18603:1 18606:13 18613:3 18616:2 18627:2 18629:1 18634:1 18638:2 18644:2 18652:1 18656:1 18665:2 18666:1 18677:1 18685:1 18687:1 18689:2 18692:1 18697:1 18703:1 18707:1 18709:1 18710:1 18711:2 18713:1 18717:1 18719:1 18725:2 18729:1 18742:2 18751:1 18752:2 18760:1 18763:1 18765:1 18769:1 18770:1 18780:1 18791:2 18796:1 18807:1 18810:1 18815:1 18835:1 18851:4 18865:1 18872:1 18881:2 18893:1 18897:1 18904:1 18909:2 18918:1 18947:1 18948:1 18973:1 19013:1 19014:2 19015:1 19025:2 19026:1 19051:1 19053:1 19055:1 19062:1 19064:2 19085:1 19093:2 19114:1 19115:1 19117:3 19119:1 19121:3 19126:5 19152:1 19155:1 19168:1 19215:6 19228:1 19235:1 19270:1 19278:1 19292:1 19311:1 19315:2 19324:4 19339:1 19344:2 19353:2 19365:1 19367:2 19386:6 19388:2 19391:1 19407:1 19413:1 19418:2 19444:1 19450:4 19452:1 19454:1 19471:1 19495:1 19498:2 19503:1 19506:1 19508:1 19509:1 19512:1 19524:5 19525:1 19535:2 19536:3 19537:1 19538:2 19549:1 19551:2 19555:1 19556:1 19558:2 19568:1 19578:1 19582:1 19586:1 19595:1 19597:1 19598:1 19600:5 19602:2 19615:1 19616:1 19621:1 19630:1 19633:1 19638:2 19645:2 19649:2 19652:1 19655:15 19659:1 19664:5 19667:1 19680:1 19696:3 19700:1 19715:3 19718:2 19720:1 19721:1 19724:2 19727:2 19747:1 19757:1 19777:1 19785:1 19786:1 19792:3 19816:3 19829:1 19833:1 19851:1 19857:6 19863:1 19865:1 19891:1 19896:1 19908:3 19910:1 19913:1 19918:4 19929:5 19936:2 19965:1 19974:1 19975:4 19977:1 19991:2 19992:1 19995:1 19998:1 19999:1 20015:1 20020:1 20022:1 20030:1 20034:6 20035:1 20037:1 20038:1 20039:1 20040:2 20041:1 20044:1 20047:1 20049:7 20050:2 20052:1 20075:1 20076:1 20078:1 20081:1 20101:1 20102:4 20109:1 20117:2 20132:1 20170:1 20171:1 20185:1 20188:1 20210:1 20223:1 20227:1 20251:1 20256:1 20258:1 20262:1 20266:1 20267:2 20276:1 20277:1 20284:1 20298:3 20305:3 20363:1 20366:1 20368:1 20378:1 20379:1 20380:1 20382:1 20383:1 20387:2 20390:7 20396:1 20402:1 20409:1 20413:1 20430:2 20440:2 20451:1 20453:1 20464:1 20469:1 20482:7 20494:5 20519:2 20529:1 20552:1 20580:1 20588:1 20589:1 20598:1 20603:1 20614:1 20621:1 20628:1 20633:1 20636:1 20669:1 20670:1 20706:1 20718:1 20724:1 20735:1 20746:1 20758:1 20792:1 20817:1 20822:2 20828:2 20844:1 20845:2 20846:1 20848:1 20851:4 20855:2 20874:1 20875:1 20878:1 20880:1 20892:1 20903:1 20912:1 20933:1 20955:1 20956:1 20966:1 20980:1 21034:3 21072:1 21080:3 21083:4 21096:1 21099:2 21110:2 21111:2 21113:1 21118:2 21121:1 21142:1 21145:1 21151:1 21153:1 21163:1 21180:1 21188:2 21202:1 21213:3 21216:1 21223:2 21244:1 21262:1 21265:1 21271:4 21274:1 21276:2 21298:2 21304:1 21308:1 21315:1 21318:1 21333:1 21339:1 21341:1 21349:2 21353:1 21361:1 21362:1 21374:3 21378:1 21379:2 21386:1 21402:1 21443:1 21446:1 21451:3 21459:1 21463:1 21464:1 21470:2 21494:1 21510:2 21512:1 21538:2 21539:1 21540:1 21547:1 21568:1 21579:1 21581:1 21586:2 21589:2 21619:1 21623:1 21626:3 21635:3 21637:3 21639:1 21640:3 21646:1 21667:1 21674:2 21707:5 21713:1 21715:1 21718:1 21820:2
1 5:2 10:1 23:1 35:1 53:1 66:1 77:1 91:1 99:1 101:1 103:3 107:1 123:1 124:1 128:1 131:1 134:1 140:1 163:1 181:1 217:1 233:1 251:1 255:1 260:3 261:1 266:1 270:2 280:1 296:2 308:1 309:1 319:1 324:3 343:5 369:1 370:1 401:2 411:1 419:1 432:1 439:7 454:1 461:3 466:1 467:1 468:2 476:1 490:1 501:2 510:2 523:3 527:1 547:1 563:4 564:3 571:1 573:3 578:1 582:3 583:1 593:1 602:2 605:2 626:2 628:2 635:1 644:2 660:1 663:5 667:5 677:1 685:2 706:1 717:1 742:1 744:1 747:1 749:1 753:1 761:1 762:6 778:3 790:1 797:2 806:3 827:3 835:1 849:1 854:2 858:1 861:1 869:1 883:1 889:1 893:1 894:1 901:2 908:3 918:1 943:1 954:1 956:3 959:1 964:1 989:2 1003:1 1004:2 1005:1 1018:2 1030:1 1034:1 1037:4 1040:1 1045:1 1056:1 1073:4 1074:1 1079:1 1081:1 1099:1 1111:1 1124:1 1142:1 1152:2 1159:1 1160:2 1200:1 1205:2 1209:1 1216:1 1229:2 1237:3 1248:1 1258:1 1261:2 1270:1 1273:1 1278:1 1281:1 1282:3 1308:1 1320:5 1322:2 1331:1 1349:1 1351:1 1356:1 1358:4 1375:1 1389:1 1392:1 1402:14 1407:4 1418:1 1419:3 1430:1 1435:1 1441:3 1453:1 1457:14 1459:1 1463:1 1474:1 1475:4 1476:2 1478:7 1481:1 1482:1 1486:2 1488:3 1489:3 1492:1 1507:2 1530:5 1531:4 1536:3 1549:1 1598:1 1600:2 1622:1 1624:1 1642:1 1644:1 1651:2 1653:1 1659:2 1683:2 1689:1 1698:1 1712:2 1715:1 1724:1 1740:1 1743:1 1757:1 1771:1 1774:2 1779:1 1781:1 1784:1 1785:1 1789:1 1790:1 1797:2 1800:1 1834:3 1866:1 1875:1 1877:3 1879:2 1884:5 1885:2 1886:2 1887:1 1888:5 1889:1 1890:1 1892:1 1893:2 1894:1 1895:1 1898:2 1899:3 1903:1 1904:1 1908:1 1911:1 1912:2 1913:1 1920:1 1921:1 1927:1 1940:1 1947:1 1950:1 1951:1 1953:2 1967:1 1973:2 1985:1 2007:2 2009:1 2024:1 2025:1 2036:1 2055:1 2057:1 2077:1 2079:1 2102:1 2105:1 2107:1 2112:1 2113:1 2114:1 2128:1 2142:1 2161:2 2167:1 2171:1 2172:1 2179:1 2180:2 2181:2 2199:1 2208:1 2209:2 2215:1 2233:1 2235:1 2240:3 2267:1 2271:1 2274:1 2276:1 2281:1 2288:1 2290:1 2291:2 2293:1 2306:1 2314:1 2333:1 2337:1 2340:1 2345:4 2356:7 2359:2 2375:1 2376:1 2412:2 2425:1 2427:1 2429:1 2434:1 2436:1 2441:2 2456:1 2458:1 2460:2 2465:1 2472:2 2485:2 2486:2 2489:1 2498:1 2499:1 2503:1 2506:5 2507:1 2511:1 2515:1 2520:2 2522:1 2527:2 2532:1 2545:1 2552:2 2553:1 2562:1 2563:4 2567:1 2572:2 2574:1 2580:1 2583:1 2595:3 2603:1 2604:2 2613:2 2619:2 2621:1 2623:1 2626:1 2635:1 2654:1 2656:5 2664:1 2684:1 2691:1 2695:3 2701:2 2704:13 2706:1 2715:2 2718:6 2733:1 2739:1 2749:1 2750:4 2752:2 2753:4 2768:1 2775:1 2791:1 2795:2 2798:4 2800:1 2801:1 2804:1 2829:1 2835:1 2840:2 2844:2 2845:1 2847:1 2862:2 2865:1 2907:1 2913:1 2919:1 2927:8 2930:2 2932:1 2941:1 2945:1 2949:3 2953:1 2959:1 2965:1 2968:2 2971:4 2978:1 2988:1 2989:1 2992:1 2997:1 3005:1 3024:1 3027:2 3032:1 3043:1 3059:2 3062:1 3065:1 3066:1 3071:2 3075:1 3093:2 3098:1 3115:1 3124:5 3138:1 3153:11 3156:2 3161:1 3166:1 3179:1 3184:1 3190:1 3194:1 3208:2 3216:1 3228:1 3242:1 3263:2 3271:3 3274:2 3275:1 3276:3 3290:1 3295:1 3299:1 3302:2 3308:1 3322:2 3325:2 3329:2 3331:5 3332:1 3335:1 3337:2 3340:2 3341:2 3343:1 3344:1 3346:4 3353:1 3354:4 3355:3 3358:5 3360:7 3362:1 3373:1 3391:1 3412:1 3414:1 3417:1 3429:1 3439:1 3441:1 3445:1 3450:1 3451:3 3455:1 3465:2 3470:1 3475:2 3477:1 3488:1 3493:1 3500:1 3509:2 3521:2 3523:1 3524:1 3538:1 3539:1 3541:2 3548:1 3549:1 3552:1 3557:1 3576:1 3599:1 3613:1 3622:1 3631:1 3633:1 3644:2 3661:1 3672:1 3674:1 3679:3 3684:2 3692:1 3697:1 3711:1 3712:1 3717:1 3718:1 3722:1 3732:1 3747:1 3749:2 3755:1 3759:1 3760:3 3767:2 3772:1 3775:6 3777:3 3781:1 3788:1 3789:1 3790:1 3793:1 3800:3 3806:2 3808:2 3815:2 3819:1 3821:1 3828:10 3856:4 3857:1 3858:1 3865:1 3887:1 3888:2 3893:2 3896:1 3899:1 3900:1 3901:1 3903:2 3904:1 3910:1 3916:1 3921:1 3925:6 3927:1 3928:1 3939:2 3948:2 3957:8 3965:4 3966:1 3979:2 3981:1 3986:1 3988:2 3990:1 3997:3 3998:2 4009:2 4025:1 4026:2 4032:3 4036:1 4038:1 4041:1 4065:3 4071:1 4090:1 4097:1 4101:2 4103:1 4104:2 4106:2 4118:1 4121:3 4122:1 4129:1 4131:1 4133:4 4136:1 4143:2 4147:1 4150:1 4158:1 4176:1 4182:1 4198:1 4199:1 4200:1 4216:1 4227:1 4230:1 4239:1 4242:2 4246:2 4247:1 4265:4 4272:1 4277:1 4279:14 4311:3 4312:1 4315:1 4316:1 4317:1 4318:1 4326:2 4333:2 4338:1 4358:18 4361:1 4381:1 4382:1 4387:1 4398:2 4400:3 4426:1 4427:1 4429:2 4438:1 4440:1 4442:1 4447:1 4459:1 4461:1 4482:1 4489:1 4498:1 4505:1 4513:1 4524:1 4532:1 4534:5 4555:1 4565:3 4573:1 4582:1 4584:1 4586:1 4591:1 4600:2 4627:1 4641:1 4643:2 4661:1 4663:1 4667:1 4680:2 4698:1 4717:2 4737:3 4757:1 4770:2 4771:1 4786:1 4792:1 4794:2 4797:1 4803:1 4811:1 4841:1 4855:1 4863:1 4866:1 4868:2 4869:1 4884:1 4895:1 4910:6 4933:1 4936:3 4944:1 4958:1 4969:1 5004:1 5009:1 5018:2 5028:1 5032:14 5051:1 5058:1 5059:1 5074:1 5082:1 5083:1 5087:1 5089:1 5103:1 5133:1 5149:1 5156:1 5182:2 5187:1 5199:1 5205:1 5206:12 5218:1 5220:2 5222:2 5223:2 5226:1 5244:1 5249:1 5250:1 5251:1 5257:13 5274:3 5275:1 5277:1 5288:1 5290:5 5293:1 5307:1 5308:2 5310:1 5317:1 5321:3 5331:2 5338:2 5348:1 5369:1 5386:1 5395:1 5396:2 5418:1 5422:1 5429:2 5434:1 5438:2 5453:2 5456:4 5461:1 5492:1 5495:1 5499:2 5506:2 5508:1 5528:2 5530:1 5533:1 5534:1 5547:1 5555:3 5572:1 5574:1 5577:3 5579:4 5583:1 5587:2 5591:1 5592:2 5593:2 5606:3 5608:1 5618:1 5621:2 5624:2 5625:2 5647:1 5651:2 5656:2571 5670:1 5673:1 5678:1 5679:2 5682:2 5687:1 5696:1 5700:1 5714:1 5716:1 5726:6 5728:4 5741:2 5761:1 5765:1 5772:1 5779:1 5784:2 5787:1 5793:1 5814:2 5816:1 5824:1 5829:2 5846:1 5855:1 5862:2 5866:1 5870:1 5873:1 5894:2 5901:1 5904:1 5905:1 5915:2 5927:1 5939:3 5941:1 5944:1 5945:1 5947:2 5949:1 5952:1 5955:2 5981:1 5983:1 5987:2 5992:5 5993:3 5997:1 6004:1 6015:1 6023:1 6025:1 6033:1 6050:1 6057:1 6066:1 6067:1 6088:1 6095:1 6106:7 6108:1 6109:1 6142:3 6156:1 6165:1 6171:1 6176:3 6179:2 6184:1 6185:1 6189:2 6192:1 6201:2 6210:2 6240:1 6244:1 6248:2 6268:3 6296:1 6302:1 6304:1 6308:3 6312:1 6335:2 6359:1 6366:1 6367:1 6373:2 6376:1 6378:3 6381:1 6397:1 6399:1 6403:1 6410:2 6414:1 6417:1 6435:1 6449:3 6452:1 6460:1 6468:1 6479:2 6488:5 6507:1 6513:1 6518:1 6521:1 6540:1 6550:2 6558:2 6567:4 6570:1 6577:2 6578:1 6590:1 6593:1 6596:1 6597:1 6603:3 6606:1 6612:2 6614:2 6631:4 6642:2 6655:1 6662:1 6673:2 6674:2 6700:1 6702:2 6708:3 6709:2 6711:1 6713:1 6716:1 6728:3 6732:1 6733:2 6746:8 6747:1 6756:1 6769:1 6776:2 6792:1 6793:1 6804:1 6820:1 6822:1 6832:2 6833:1 6842:1 6846:2 6870:5 6871:1 6892:13 6894:1 6899:1 6901:1 6906:1 6914:1 6916:1 6948:1 6957:1 6961:1 6975:4 6976:1 6986:1 6989:2 6997:1 6998:2 7000:1 7012:4 7013:1 7023:1 7028:1 7038:1 7066:1 7075:3 7084:3 7095:2 7098:1 7107:3 7112:1 7117:4 7119:7 7121:3 7124:1 7129:2 7131:2 7132:1 7136:1 7138:2 7140:6 7142:4 7146:2 7147:7 7154:2 7158:4 7159:1 7162:1 7171:3 7175:1 7199:1 7201:1 7203:2 7206:2 7211:1 7213:1 7215:1 7248:1 7253:1 7271:1 7272:1 7274:1 7283:1 7300:2 7315:1 7340:1 7345:1 7360:1 7387:1 7388:2 7404:1 7405:2 7406:1 7408:1 7419:1 7421:1 7426:1 7458:1 7461:1 7462:1 7466:1 7470:1 7480:1 7488:1 7504:1 7506:1 7516:1 7519:1 7520:1 7529:1 7530:1 7545:1 7555:1 7563:1 7569:1 7572:2 7575:4 7580:2 7588:1 7589:3 7636:1 7665:1 7668:1 7682:2 7689:3 7691:1 7693:1 7697:2 7699:1 7700:2 7702:2 7712:1 7720:1 7722:1 7724:3 7732:2 7739:1 7740:2 7741:2 7744:1 7768:5 7779:2 7792:1 7797:1 7812:1 7818:1 7821:2 7823:4 7835:3 7853:1 7859:1 7860:1 7872:2 7873:1 7878:1 7891:1 7898:1 7905:2 7930:1 7931:1 7938:1 7940:1 7944:2 7953:2 7965:1 7969:1 7974:3 7975:18 7977:2 7985:1 7991:1 7994:5 8003:1 8006:1 8022:1 8033:1 8035:1 8059:1 8070:1 8071:1 8075:1 8087:1 8093:1 8095:1 8104:1 8108:1 8136:1 8140:1 8141:1 8145:1 8154:1 8159:1 8179:1 8188:1 8195:2 8202:1 8208:1 8213:2 8221:1 8227:1 8250:5 8251:1 8254:2 8257:1 8259:2 8261:4 8278:1 8280:1 8299:2 8312:3 8327:2 8330:1 8333:1 8342:2 8345:6 8348:1 8359:2 8364:2 8377:1 8378:1 8391:2 8428:8 8433:2 8439:1 8444:1 8450:1 8462:1 8488:1 8494:1 8497:1 8512:1 8514:1 8518:1 8520:1 8521:1 8532:2 8533:1 8534:1 8554:1 8570:1 8572:1 8575:1 8576:1 8590:4 8601:1 8608:2 8619:2 8621:3 8646:2 8647:1 8653:1 8663:1 8668:1 8673:1 8675:1 8679:6 8682:1 8683:1 8687:1 8688:1 8693:2 8697:2 8700:1 8705:1 8707:1 8708:1 8709:1 8752:1 8755:1 8756:1 8762:1 8765:2 8766:2 8767:1 8772:1 8775:1 8776:1 8777:3 8783:12 8788:2 8792:2 8807:2 8814:1 8828:2 8834:1 8852:3 8862:4 8863:1 8867:2 8880:2 8899:1 8909:2 8913:1 8923:1 8931:1 8943:2 8952:1 8958:3 8967:2 8969:1 8970:1 8981:5 8985:1 8994:2 8997:6 9001:1 9003:1 9008:2 9015:1 9027:3 9059:2 9068:1 9084:1 9089:1 9095:1 9111:1 9113:1 9121:2 9128:1 9135:2 9139:2 9143:2 9148:2 9151:1 9152:2 9154:1 9155:1 9157:1 9160:2 9162:3 9163:1 9168:1 9169:1 9171:2 9173:1 9176:2 9179:2 9181:4 9184:3 9203:1 9207:2 9232:2 9245:1 9246:2 9258:1 9260:1 9262:4 9263:1 9281:2 9285:1 9293:1 9299:1 9300:1 9311:2 9319:1 9330:1 9333:1 9340:1 9345:1 9347:1 9370:1 9387:1 9396:1 9399:1 9402:2 9407:2 9424:1 9438:1 9440:1 9442:4 9445:2 9468:1 9480:1 9489:1 9547:1 9554:1 9568:1 9572:1 9585:2 9587:1 9589:1 9598:2 9599:2 9604:1 9605:1 9612:1 9615:1 9618:1 9630:1 9634:1 9655:3 9657:1 9661:1 9668:1 9679:1 9688:2 9694:1 9703:2 9714:1 9721:1 9726:1 9731:1 9735:1 9737:1 9751:1 9753:1 9768:2 9772:1 9773:1 9776:1 9778:2 9782:1 9784:1 9801:1 9806:2 9814:2 9823:2 9824:1 9831:2 9834:1 9835:1 9844:1 9849:2 9871:1 9873:13 9883:2 9885:2 9890:2 9912:2 9914:1 9915:1 9922:1 9932:1 9945:1 9946:1 9948:1 9963:1 9966:1 9968:1 9974:1 9985:7 9996:2 10007:3 10011:1 10020:1 10028:1 10043:2 10065:1 10066:1 10070:2 10078:1 10080:1 10089:1 10102:2 10109:1 10116:1 10121:4 10125:3 10128:1 10129:3 10130:1 10144:2 10146:2 10152:1 10161:2 10166:1 10168:1 10175:1 10177:1 10193:1 10197:1 10207:1 10208:1 10209:1 10214:1 10216:2 10217:4 10221:2 10261:1 10281:2 10285:1 10287:1 10288:1 10291:1 10304:1 10314:1 10330:6 10340:2 10364:1 10379:1 10384:3 10389:1 10390:4 10393:3 10394:3 10395:1 10396:1 10403:1 10407:2 10411:1 10412:1 10415:2 10416:3 10417:2 10433:1 10438:4 10439:5 10440:1 10441:1 10445:1 10455:5 10458:1 10460:1 10462:1 10463:1 10470:1 10485:1 10512:1 10514:1 10520:1 10524:2 10532:2 10533:2 10535:1 10541:1 10573:1 10574:1 10583:4 10595:3 10612:1 10630:1 10650:2 10656:2 10658:2 10662:1 10664:1 10674:1 10676:1 10683:1 10684:1 10696:1 10699:1 10706:1 10716:1 10721:1 10727:1 10742:1 10743:1 10755:1 10775:1 10777:1 10783:1 10785:1 10790:1 10792:1 10801:1 10803:1 10808:1 10812:1 10817:1 10839:2 10843:1 10845:1 10848:1 10852:5 10854:1 10861:2 10865:1 10879:1 10881:3 10885:3 10896:1 10907:1 10918:1 10920:1 10932:2 10935:1 10940:1 10941:1 10943:4 10953:2 10962:1 10966:1 10969:2 10970:5 10973:2 10975:9 10978:1 10980:3 10984:1 10988:1 10989:1 10990:1 10993:1 10999:3 11000:1 11003:1 11004:1 11021:1 11022:1 11043:4 11045:1 11051:2 11057:7 11059:1 11076:1 11101:1 11104:1 11108:3 11127:1 11138:5 11140:1 11143:1 11153:1 11160:2 11163:1 11166:1 11176:1 11180:1 11183:1 11187:1 11194:1 11209:1 11210:1 11215:1 11216:1 11223:1 11225:1 11237:1 11248:1 11249:1 11253:2 11257:1 11266:1 11274:1 11288:1 11316:3 11323:1 11329:3 11331:6 11332:6 11334:1 11349:2 11352:3 11354:1 11358:3 11364:4 11368:2 11371:3 11374:1 11384:1 11390:1 11393:1 11404:1 11415:4 11416:2 11417:1 11419:1 11424:3 11436:41 11438:2 11442:1 11448:1 11455:2 11457:1 11463:3 11470:8 11472:5 11473:1 11481:2 11486:1 11506:1 11516:1 11519:1 11525:1 11527:1 11534:1 11549:1 11565:1 11574:3 11575:2 11578:1 11590:1 11594:1 11605:2 11618:3 11635:1 11639:1 11643:1 11653:1 11655:1 11656:1 11665:1 11687:1 11691:1 11694:2 11712:3 11713:10 11724:2 11743:2 11755:2 11760:4 11775:1 11776:1 11781:3 11783:1 11784:3 11794:2 11810:1 11838:1 11844:1 11845:1 11846:1 11847:1 11862:1 11863:1 11867:2 11869:2 11878:2 11896:1 11898:1 11940:1 11941:1 11947:1 11948:1 11949:1 11963:1 11983:1 11989:1 11994:1 12012:1 12015:1 12016:1 12021:2 12028:1 12030:1 12033:1 12043:2 12051:1 12055:1 12061:1 12070:1 12076:1 12077:2 12089:1 12100:1 12118:1 12119:1 12127:3 12144:22 12156:1 12176:3 12183:3 12190:1 12194:1 12242:1 12254:1 12267:6 12269:1 12272:1 12281:1 12286:1 12313:3 12314:2 12322:5 12345:1 12348:1 12360:1 12365:3 12366:3 12371:2 12374:1 12381:1 12384:2 12389:2 12390:3 12402:1 12408:1 12419:4 12424:1 12426:4 12442:3 12450:1 12459:1 12474:2 12479:1 12486:1 12488:1 12493:1 12494:1 12501:1 12516:1 12520:1 12536:1 12544:1 12545:1 12549:1 12556:1 12568:1 12575:1 12580:2 12582:1 12583:1 12588:1 12596:2 12630:1 12637:1 12641:2 12664:2 12676:1 12685:2 12694:1 12695:1 12703:1 12711:1 12718:1 12725:1 12727:2 12731:2 12734:3 12736:1 12738:1 12745:1 12750:1 12757:1 12758:1 12772:1 12775:1 12784:1 12789:2 12801:3 12804:2 12809:2 12811:5 12814:1 12824:2 12830:3 12840:1 12842:1 12847:1 12861:1 12866:1 12871:1 12883:1 12892:2 12899:1 12902:1 12919:1 12925:1 12926:4 12929:1 12931:1 12934:1 12938:1 12944:1 12946:1 12947:2 12948:1 12949:1 12951:1 12962:2 12982:1 12992:1 13000:1 13005:1 13016:1 13019:1 13048:1 13050:1 13064:1 13068:1 13082:1 13091:1 13106:1 13121:2 13136:1 13139:1 13160:3 13178:2 13179:1 13206:1 13208:1 13209:1 13213:3 13242:3 13245:1 13256:2 13276:1 13278:1 13280:2 13302:1 13304:1 13313:1 13316:1 13318:1 13325:1 13326:6 13333:1 13334:1 13337:1 13347:1 13358:1 13371:1 13374:1 13378:1 13391:6 13393:1 13405:1 13408:1 13413:1 13421:1 13425:1 13437:1 13441:11 13443:5 13445:1 13456:1 13471:2 13502:1 13521:1 13524:3 13531:1 13536:1 13545:1 13549:1 13554:2 13559:1 13572:1 13581:1 13583:2 13590:1 13596:1 13600:2 13602:2 13604:3 13605:2 13616:1 13625:1 13640:1 13659:2 13663:1 13680:1 13692:2 13693:2 13696:1 13708:3 13711:1 13714:5 13720:1 13741:3 13745:2 13750:1 13752:1 13766:4 13803:1 13806:1 13807:7 13819:1 13836:1 13843:3 13860:1 13867:1 13873:1 13875:1 13882:1 13887:4 13896:3 13904:1 13905:1 13906:1 13912:1 13915:3 13922:1 13924:1 13937:1 13942:1 13952:1 13967:3 13990:1 14004:1 14007:1 14016:1 14024:2 14028:1 14032:7 14036:1 14037:1 14043:2 14081:3 14089:1 14094:1 14096:1 14109:3 14120:1 14130:1 14140:1 14144:1 14151:1 14179:1 14181:1 14186:1 14189:1 14193:1 14198:3 14199:3 14201:2 14204:3 14206:1 14208:1 14209:2 14212:1 14217:2 14219:1 14220:1 14221:1 14242:1 14243:1 14252:1 14254:1 14258:1 14262:6 14280:1 14282:1 14285:1 14295:1 14304:1 14307:1 14314:1 14315:1 14319:1 14321:1 14326:1 14328:1 14363:11 14368:2 14369:6 14400:1 14404:2 14410:1 14412:1 14414:1 14415:1 14432:1 14433:2 14436:1 14437:1 14443:1 14449:3 14458:2 14470:1 14482:1 14485:1 14498:1 14499:1 14513:1 14515:1 14559:1 14564:1 14565:1 14581:1 14586:1 14617:1 14625:1 14631:1 14633:1 14637:1 14642:5 14662:1 14668:4 14678:4 14683:2 14697:2 14700:1 14707:1 14709:1 14717:1 14720:1 14725:2 14729:2 14750:2 14756:3 14758:1 14759:1 14763:1 14769:2 14771:2 14776:1 14821:1 14825:1 14832:2 14834:1 14843:1 14844:2 14845:2 14850:1 14852:1 14857:1 14871:1 14879:1 14889:1 14895:4 14896:3 14900:1 14931:2 14936:1 14945:1 14951:1 14959:12 14964:2 14977:2 14979:2 14985:1 14988:1 14997:1 15003:2 15032:2 15033:1 15037:1 15048:1 15052:1 15054:1 15055:1 15073:1 15099:17 15100:2 15108:1 15133:1 15136:2 15138:1 15155:1 15165:1 15166:1 15170:1 15184:1 15189:1 15198:1 15201:1 15202:1 15205:1 15208:1 15210:4 15222:1 15224:1 15226:1 15229:2 15250:1 15256:2 15260:1 15265:1 15281:2 15285:1 15287:1 15298:1 15300:1 15301:4 15306:1 15307:1 15309:1 15315:1 15320:2 15332:1 15339:1 15340:1 15341:1 15346:1 15348:1 15359:4 15360:1 15369:1 15384:1 15385:1 15391:1 15416:1 15427:1 15435:1 15436:1 15441:1 15447:1 15448:2 15456:2 15458:1 15479:2 15490:1 15492:1 15504:1 15514:1 15519:2 15529:1 15539:2 15542:1 15544:1 15548:10 15550:1 15552:7 15554:4 15569:2 15573:3 15577:1 15578:1 15584:1 15589:2 15591:1 15595:1 15597:2 15607:1 15618:2 15621:1 15633:4 15634:2 15659:2 15663:1 15664:1 15670:1 15674:3 15699:1 15703:1 15712:6 15715:1 15722:1 15723:1 15727:1 15732:3 15742:1 15745:1 15751:1 15753:2 15754:5 15756:1 15774:1 15787:1 15795:2 15796:1 15799:1 15806:1 15814:3 15821:1 15835:1 15860:1 15875:1 15879:2 15881:1 15894:1 15896:2 15913:1 15918:1 15924:1 15931:1 15958:1 15992:1 16018:1 16020:2 16027:1 16030:1 16031:1 16040:1 16045:1 16050:1 16051:2 16054:2 16058:1 16059:2 16067:1 16071:1 16074:1 16075:5 16078:1 16080:5 16083:1 16090:1 16093:2 16100:2 16101:2 16105:5 16106:1 16110:1 16114:4 16117:1 16127:3 16131:3 16134:1 16137:1 16140:1 16142:1 16163:2 16172:1 16176:1 16177:1 16206:1 16207:1 16211:3 16225:4 16240:1 16246:1 16249:1 16260:1 16262:1 16269:1 16273:7 16278:1 16285:1 16297:1 16305:1 16312:1 16339:1 16357:1 16364:1 16374:2 16376:1 16391:1 16393:1 16395:1 16399:1 16414:1 16418:1 16427:1 16431:1 16443:1 16446:2 16473:1 16498:1 16502:1 16519:1 16523:1 16527:1 16531:2 16535:2 16551:1 16552:3 16553:2 16560:1 16575:2 16580:2 16581:1 16584:1 16585:2 16596:3 16600:1 16601:1 16602:2 16621:1 16628:3 16631:2 16650:1 16658:1 16676:14 16678:1 16679:1 16708:1 16712:1 16725:1 16727:1 16731:4 16745:1 16749:2 16750:2 16758:2 16765:1 16780:1 16805:1 16810:2 16816:2 16828:2 16843:1 16844:2 16850:1 16851:1 16852:1 16867:2 16869:1 16874:2 16890:1 16893:3 16898:1 16921:1 16936:4 16949:1 16951:1 16955:1 16981:1 16987:1 16999:2 17005:1 17008:1 17028:1 17029:1 17045:1 17052:3 17053:1 17056:1 17062:14 17063:2 17068:1 17071:3 17076:1 17078:2 17079:1 17083:1 17084:1 17089:1 17092:1 17099:2 17111:1 17126:1 17131:1 17132:1 17133:1 17137:1 17144:2 17151:5 17156:2 17183:2 17189:1 17201:1 17202:1 17230:1 17231:1 17235:2 17237:2 17242:1 17259:4 17263:3 17266:2 17268:3 17273:1 17279:2 17287:4 17301:1 17314:1 17332:1 17339:1 17345:1 17351:1 17379:1 17396:1 17397:1 17403:5 17414:1 17417:1 17429:2 17432:1 17438:1 17453:1 17461:1 17463:1 17468:2 17495:2 17501:2 17504:1 17518:2 17533:2 17543:1 17547:2 17549:2 17553:1 17554:1 17555:2 17565:1 17566:2 17591:6 17594:1 17604:1 17608:1 17616:1 17627:1 17632:1 17634:2 17640:1 17643:1 17652:1 17660:1 17670:2 17672:1 17675:1 17676:2 17695:1 17696:1 17753:1 17759:1 17769:1 17774:5 17776:2 17798:1 17799:1 17801:1 17809:2 17810:2 17818:1 17823:1 17826:1 17855:1 17881:1 17893:1 17894:1 17897:5 17922:1 17925:1 17929:2 17930:1 17935:1 17936:1 17971:1 17986:1 17989:1 17996:1 18002:1 18003:1 18012:1 18022:1 18023:1 18027:1 18032:2 18045:1 18053:1 18070:1 18074:2 18077:2 18099:3 18104:1 18126:1 18141:1 18150:1 18153:2 18175:1 18179:1 18180:3 18198:1 18200:1 18227:2 18230:1 18245:2 18258:1 18263:1 18264:3 18269:1 18272:1 18274:1 18290:1 18302:1 18303:1 18310:2 18319:1 18333:1 18339:1 18347:1 18357:2 18358:1 18360:2 18362:1 18380:3 18383:2 18386:1 18390:1 18393:1 18398:2 18399:1 18415:1 18432:1 18434:1 18438:1 18441:1 18451:1 18453:1 18455:1 18459:2 18465:1 18499:1 18523:5 18525:1 18531:3 18534:1 18535:2 18542:1 18545:1 18546:2 18556:1 18564:1 18566:1 18575:1 18586:1 18603:1 18606:13 18613:3 18616:2 18627:2 18629:1 18634:1 18638:2 18644:2 18652:1 18656:1 18665:2 18666:1 18677:1 18685:1 18687:1 18689:2 18692:1 18693:1 18697:1 18703:1 18707:1 18709:1 18710:1 18711:2 18713:1 18717:2 18719:1 18725:2 18729:1 18742:2 18751:1 18752:2 18760:1 18763:1 18765:1 18769:1 18770:1 18780:1 18791:2 18796:1 18807:1 18810:1 18815:1 18835:1 18851:4 18865:1 18872:1 18881:2 18893:1 18897:1 18904:1 18909:2 18918:1 18947:1 18948:1 18973:1 19008:1 19013:1 19014:2 19015:1 19025:2 19026:1 19051:1 19053:1 19055:1 19062:1 19064:2 19085:1 19093:2 19114:1 19115:1 19117:3 19119:1 19121:3 19126:5 19152:1 19155:1 19168:1 19215:6 19228:1 19235:1 19270:1 19278:1 19280:1 19292:1 19311:1 19315:2 19324:4 19339:1 19344:2 19353:2 19364:1 19365:1 19367:2 19386:6 19388:2 19391:1 19407:1 19413:1 19418:2 19444:1 19450:4 19452:1 19454:1 19471:1 19484:1 19495:1 19498:2 19503:1 19506:1 19508:1 19509:1 19512:1 19524:7 19525:1 19535:2 19536:3 19537:1 19538:2 19549:1 19551:2 19555:1 19556:1 19558:2 19568:1 19578:1 19582:1 19586:1 19595:1 19597:1 19598:1 19600:5 19602:2 19615:1 19616:1 19621:1 19630:1 19633:1 19638:2 19645:2 19649:2 19652:1 19655:15 19659:1 19664:5 19667:1 19680:1 19692:1 19696:3 19700:1 19715:3 19718:2 19720:1 19721:1 19724:3 19727:3 19747:1 19757:1 19777:1 19785:1 19786:1 19792:3 19816:3 19829:1 19833:1 19851:1 19857:6 19863:1 19865:1 19891:1 19896:1 19903:1 19908:3 19910:1 19913:1 19918:4 19929:5 19936:3 19965:1 19974:1 19975:4 19977:1 19984:1 19991:2 19992:1 19995:1 19998:1 19999:1 20015:1 20020:1 20022:1 20030:1 20034:6 20035:1 20037:1 20038:1 20039:1 20040:2 20041:1 20044:1 20047:1 20049:7 20050:2 20052:1 20075:1 20076:1 20078:1 20081:1 20101:1 20102:5 20109:1 20117:2 20132:1 20160:1 20170:1 20171:1 20185:1 20188:1 20210:2 20223:1 20227:1 20251:1 20256:1 20258:1 20262:1 20266:1 20267:2 20276:1 20277:1 20284:1 20298:3 20305:3 20363:1 20366:1 20368:1 20378:1 20379:1 20380:1 20382:1 20383:1 20387:2 20390:7 20396:1 20402:1 20409:1 20413:1 20430:2 20440:2 20451:1 20453:1 20464:1 20469:1 20482:7 20494:5 20519:2 20529:1 20552:1 20580:1 20588:1 20589:2 20598:1 20603:1 20614:1 20621:1 20628:1 20633:1 20636:1 20669:1 20670:1 20706:1 20718:1 20724:1 20735:1 20746:1 20758:1 20792:1 20817:1 20822:2 20828:2 20844:1 20845:2 20846:1 20848:1 20851:4 20855:2 20874:1 20875:1 20878:1 20880:1 20892:1 20903:1 20912:1 20933:1 20955:1 20956:1 20966:1 20980:1 21034:3 21072:1 21080:3 21083:4 21096:1 21099:2 21110:2 21111:2 21113:1 21118:2 21121:1 21142:1 21145:1 21151:1 21153:1 21163:1 21180:1 21188:2 21202:1 21213:3 21216:1 21223:2 21244:1 21262:1 21265:1 21271:4 21274:1 21276:2 21284:1 21298:2 21304:1 21308:1 21315:1 21318:1 21333:1 21339:1 21341:1 21349:2 21353:1 21361:1 21362:1 21374:3 21378:1 21379:2 21386:1 21402:1 21404:1 21443:1 21446:1 21451:3 21459:1 21463:1 21464:1 21470:2 21494:1 21510:2 21512:1 21538:2 21539:1 21540:1 21547:1 21568:1 21579:1 21581:1 21586:2 21589:2 21619:1 21623:1 21626:3 21635:3 21637:3 21639:1 21640:3 21646:1 21667:1 21674:2 21677:1 21707:5 21713:1 21715:1 21718:1 21777:1 21820:2
1 5:2 10:1 17:1 23:1 35:1 53:1 66:1 77:1 91:1 99:1 101:1 103:3 107:1 123:1 124:1 128:2 131:1 134:1 140:1 163:1 181:1 217:1 233:1 251:1 255:1 260:3 261:1 266:1 270:2 280:1 296:2 308:1 309:1 319:1 324:3 343:5 369:1 370:1 401:2 411:1 419:1 432:1 439:7 454:1 461:3 466:1 467:1 468:2 476:1 490:1 501:2 510:2 523:3 527:1 547:1 563:4 564:3 571:1 573:3 578:1 582:3 583:1 593:1 600:1 602:2 605:2 626:2 628:3 635:1 644:2 660:1 663:5 664:1 667:5 677:1 685:2 698:1 706:1 717:2 742:1 744:1 747:1 749:1 753:1 761:1 762:6 778:3 790:1 797:2 806:3 827:3 835:1 849:1 854:2 858:1 861:1 869:1 883:1 889:1 893:1 894:1 901:2 908:3 918:1 943:1 954:1 956:4 959:1 964:1 989:2 1003:1 1004:2 1005:1 1018:2 1030:1 1034:1 1037:4 1040:1 1045:1 1056:1 1073:4 1074:1 1079:1 1081:1 1099:1 1111:1 1124:1 1142:1 1152:2 1159:1 1160:2 1200:1 1205:2 1209:1 1216:1 1229:2 1230:1 1237:3 1248:1 1258:1 1261:2 1270:1 1273:1 1278:1 1281:1 1282:3 1308:1 1320:5 1322:3 1331:1 1343:1 1349:1 1351:1 1356:1 1358:4 1375:1 1389:1 1392:1 1402:14 1407:4 1418:1 1419:3 1430:1 1435:1 1441:3 1453:1 1457:14 1459:1 1463:1 1474:1 1475:4 1476:2 1478:8 1481:1 1482:1 1486:2 1488:4 1489:3 1492:1 1507:2 1530:5 1531:4 1536:3 1549:1 1550:1 1598:1 1600:2 1622:1 1624:1 1642:1 1644:1 1651:2 1653:1 1659:2 1683:2 1689:1 1698:1 1712:2 1715:1 1724:1 1740:1 1743:1 1757:1 1771:1 1774:2 1779:1 1781:1 1784:1 1785:1 1789:1 1790:1 1797:2 1800:1 1834:3 1866:1 1875:1 1877:3 1879:2 1884:5 1885:2 1886:2 1887:1 1888:5 1889:1 1890:1 1892:2 1893:2 1894:1 1895:1 1898:2 1899:3 1903:1 1904:1 1908:1 1911:1 1912:2 1913:1 1920:1 1921:1 1927:1 1940:1 1947:1 1950:1 1951:1 1953:2 1967:2 1973:2 1985:1 2007:2 2009:1 2024:1 2025:1 2036:1 2055:1 2057:1 2077:1 2079:1 2090:1 2102:1 2105:1 2107:1 2112:2 2113:1 2114:1 2128:1 2142:1 2161:2 2167:1 2171:1 2172:1 2179:1 2180:2 2181:2 2199:1 2208:1 2209:2 2215:1 2233:1 2235:1 2240:3 2267:1 2271:1 2274:1 2276:1 2281:1 2288:1 2290:1 2291:2 2293:1 2306:1 2314:1 2333:1 2337:1 2340:1 2345:4 2356:7 2359:2 2375:1 2376:1 2412:2 2425:1 2427:1 2429:1 2434:1 2436:1 2441:2 2456:1 2458:1 2460:2 2465:1 2469:1 2472:2 2485:2 2486:2 2489:1 2498:1 2499:1 2503:1 2506:5 2507:1 2510:1 2511:2 2515:1 2520:2 2522:1 2527:2 2532:1 2545:1 2552:2 2553:1 2562:1 2563:4 2567:1 2572:2 2574:1 2580:1 2583:1 2595:3 2603:1 2604:2 2613:3 2619:2 2621:1 2623:1 2626:1 2635:1 2654:1 2656:5 2664:1 2684:1 2691:1 2695:3 2701:2 2704:13 2706:1 2715:2 2718:6 2733:1 2739:1 2749:1 2750:4 2752:2 2753:4 2768:1 2775:1 2791:1 2795:2 2798:4 2800:1 2801:1 2804:1 2829:2 2834:1 2835:1 2840:2 2844:2 2845:1 2847:1 2862:2 2865:1 2907:1 2913:1 2919:1 2927:8 2930:2 2932:1 2941:1 2945:1 2949:4 2953:1 2958:1 2959:1 2965:1 2968:2 2971:4 2978:1 2988:1 2989:1 2992:1 2997:1 3005:1 3024:1 3025:1 3027:2 3032:1 3043:1 3059:2 3062:1 3065:1 3066:1 3071:2 3075:1 3093:2 3098:1 3115:1 3124:5 3138:1 3153:11 3156:2 3161:1 3166:1 3179:1 3184:1 3190:1 3194:1 3208:2 3216:1 3228:1 3242:1 3263:2 3271:3 3274:2 3275:1 3276:3 3290:1 3295:1 3299:1 3302:2 3308:1 3322:2 3325:2 3326:1 3329:3 3331:5 3332:1 3335:1 3337:2 3340:2 3341:2 3343:1 3344:2 3346:4 3353:1 3354:5 3355:3 3358:5 3360:7 3362:1 3373:1 3391:1 3412:1 3414:1 3417:1 3429:1 3439:1 3441:1 3445:1 3450:2 3451:3 3455:1 3465:2 3470:1 3475:2 3477:1 3488:1 3493:1 3500:1 3509:2 3521:2 3523:1 3524:1 3538:1 3539:1 3541:2 3548:1 3549:1 3552:1 3557:1 3576:1 3599:1 3613:1 3622:1 3631:1 3633:1 3644:3 3661:1 3672:1 3674:1 3679:3 3684:2 3692:1 3697:1 3711:1 3712:1 3717:1 3718:1 3722:1 3732:1 3747:1 3749:2 3755:1 3759:1 3760:3 3767:2 3772:1 3775:6 3777:3 3781:1 3788:1 3789:1 3790:1 3793:1 3800:3 3806:2 3808:2 3815:2 3819:1 3821:1 3825:1 3828:10 3856:4 3857:1 3858:1 3865:1 3887:1 3888:2 3893:2 3896:1 3899:1 3900:1 3901:1 3903:2 3904:1 3910:1 3916:1 3921:1 3924:1 3925:6 3927:1 3928:1 3939:2 3948:2 3957:8 3965:4 3966:1 3979:2 3981:1 3986:1 3988:2 3990:1 3997:3 3998:2 4009:2 4025:1 4026:2 4032:3 4036:1 4038:1 4041:1 4048:1 4065:3 4071:1 4090:1 4097:1 4101:2 4103:1 4104:2 4106:2 4118:1 4121:3 4122:1 4129:1 4131:1 4133:5 4136:1 4143:2 4147:1 4150:1 4158:1 4176:1 4182:1 4198:1 4199:1 4200:1 4216:1 4227:1 4230:1 4237:1 4239:1 4242:2 4246:2 4247:1 4264:1 4265:4 4272:1 4277:1 4279:14 4311:3 4312:1 4315:1 4316:1 4317:1 4318:1 4326:2 4333:2 4338:1 4358:18 4361:1 4381:1 4382:1 4387:1 4398:2 4400:3 4426:1 4427:1 4429:2 4438:1 4440:1 4442:1 4447:1 4459:1 4461:1 4482:1 4489:1 4498:1 4505:1 4513:1 4524:1 4532:1 4534:5 4555:1 4565:3 4573:1 4582:1 4584:1 4586:1 4591:1 4600:2 4627:1 4641:1 4643:2 4661:1 4663:1 4667:1 4680:2 4698:1 4717:2 4731:1 4737:3 4757:1 4770:2 4771:1 4786:1 4792:1 4794:2 4797:1 4803:1 4811:1 4841:1 4854:1 4855:1 4863:1 4866:1 4868:2 4869:1 4884:1 4895:1 4910:6 4933:1 4936:3 4944:1 4958:1 4969:1 5004:1 5009:1 5018:2 5028:1 5032:14 5051:1 5058:1 5059:1 5074:1 5082:1 5083:1 5087:1 5089:1 5103:1 5107:1 5133:1 5149:1 5156:1 5182:2 5187:1 5199:1 5205:1 5206:13 5218:1 5220:2 5222:2 5223:2 5226:1 5244:1 5249:1 5250:1 5251:1 5257:13 5274:3 5275:1 5277:1 5288:1 5290:5 5293:1 5307:1 5308:2 5310:1 5317:1 5321:3 5331:2 5338:2 5348:1 5369:1 5386:1 5395:1 5396:2 5418:1 5422:1 5429:2 5434:1 5438:2 5453:3 5456:4 5461:1 5492:1 5495:1 5499:2 5506:2 5508:1 5528:2 5530:1 5533:2 5534:1 5547:1 5555:3 5557:1 5572:1 5574:1 5577:3 5579:4 5583:1 5587:2 5591:1 5592:2 5593:2 5606:4 5608:1 5618:1 5621:2 5624:2 5625:2 5647:1 5651:2 5656:2625 5670:1 5673:1 5678:1 5679:2 5682:2 5687:1 5696:1 5700:1 5714:2 5716:1 5726:6 5728:4 5741:2 5761:1 5765:1 5772:1 5779:1 5784:2 5787:1 5793:1 5814:2 5816:1 5824:1 5829:2 5846:1 5855:1 5862:2 5866:1 5870:1 5873:1 5894:2 5901:1 5904:1 5905:1 5915:2 5927:1 5939:4 5940:1 5941:1 5944:1 5945:1 5947:2 5949:1 5952:1 5955:2 5981:1 5983:1 5987:2 5992:5 5993:3 5997:1 6004:1 6015:1 6023:1 6025:1 6033:1 6050:1 6057:1 6066:1 6067:1 6088:1 6095:1 6101:1 6106:7 6108:1 6109:1 6142:3 6156:1 6165:1 6171:1 6176:3 6179:2 6184:1 6185:1 6189:2 6192:1 6201:2 6210:2 6240:1 6244:1 6248:2 6268:4 6296:1 6302:1 6304:1 6308:3 6312:1 6335:2 6359:1 6366:1 6367:1 6373:2 6376:1 6378:3 6381:1 6397:1 6399:1 6403:1 6410:2 6414:1 6417:1 6435:1 6445:1 6449:3 6452:1 6460:1 6468:1 6479:2 6488:5 6507:1 6513:1 6518:1 6521:1 6540:1 6550:2 6558:2 6567:4 6570:1 6577:2 6578:1 6590:1 6593:1 6596:1 6597:1 6603:3 6606:1 6612:2 6614:2 6631:4 6642:2 6655:1 6662:1 6673:2 6674:2 6700:1 6702:2 6708:3 6709:2 6711:1 6713:1 6716:1 6728:3 6732:1 6733:2 6746:8 6747:1 6756:1 6769:1 6776:2 6792:1 6793:1 6800:1 6804:1 6820:1 6822:1 6823:1 6832:2 6833:1 6842:1 6846:2 6870:5 6871:1 6892:14 6894:2 6899:1 6901:1 6906:1 6914:1 6916:1 6927:1 6936:1 6948:1 6957:1 6961:1 6975:4 6976:1 6986:1 6989:2 6997:1 6998:2 7000:1 7012:4 7013:1 7023:1 7028:1 7038:2 7066:1 7075:4 7084:3 7095:2 7098:1 7107:3 7112:1 7117:4 7119:7 7121:3 7124:1 7129:2 7131:2 7132:1 7136:1 7138:2 7140:6 7142:4 7146:2 7147:7 7154:2 7158:4 7159:1 7162:1 7171:3 7175:1 7199:1 7201:1 7203:2 7206:2 7211:1 7213:1 7215:1 7229:1 7248:1 7253:1 7271:1 7272:1 7274:1 7283:1 7300:2 7315:1 7340:1 7345:1 7360:1 7387:1 7388:3 7404:1 7405:2 7406:1 7408:1 7419:1 7421:2 7426:1 7458:1 7461:1 7462:1 7466:1 7470:1 7480:1 7488:1 7504:1 7506:1 7516:1 7519:1 7520:1 7529:1 7530:1 7545:1 7555:1 7563:1 7569:1 7572:2 7575:4 7580:2 7588:1 7589:3 7636:1 7665:1 7668:1 7682:2 7689:3 7691:1 7693:1 7697:2 7699:2 7700:2 7702:2 7712:1 7720:1 7722:1 7724:3 7732:2 7739:1 7740:2 7741:2 7744:1 7768:5 7778:1 7779:2 7792:1 7797:1 7812:1 7818:1 7821:2 7823:4 7835:3 7853:1 7859:1 7860:1 7872:2 7873:1 7878:1 7891:1 7898:1 7905:2 7930:1 7931:1 7938:1 7940:1 7944:2 7953:2 7965:1 7969:1 7974:3 7975:18 7977:2 7985:1 7991:1 7994:5 8003:1 8006:1 8022:1 8033:1 8035:1 8059:1 8070:1 8071:1 8075:1 8087:1 8093:1 8095:1 8104:1 8108:1 8136:1 8140:1 8141:1 8145:1 8154:1 8159:1 8179:1 8188:1 8195:2 8202:1 8208:1 8213:2 8221:1 8227:1 8250:5 8251:1 8254:2 8257:1 8259:2 8261:4 8278:1 8280:1 8299:2 8312:3 8327:2 8330:1 8333:1 8342:2 8345:6 8348:1 8359:2 8364:2 8377:1 8378:1 8391:2 8428:8 8433:2 8439:1 8444:1 8450:1 8462:1 8488:1 8494:1 8497:1 8512:1 8514:1 8518:1 8520:1 8521:1 8532:2 8533:1 8534:1 8554:1 8570:1 8572:1 8575:1 8576:1 8590:4 8601:1 8608:2 8619:2 8621:3 8646:2 8647:1 8651:1 8653:1 8663:1 8668:1 8673:1 8674:1 8675:1 8679:6 8682:1 8683:1 8687:1 8688:1 8693:2 8697:2 8700:1 8705:1 8707:1 8708:1 8709:1 8752:1 8755:1 8756:1 8762:1 8765:2 8766:2 8767:1 8772:1 8775:1 8776:2 8777:3 8783:12 8788:2 8792:2 8807:2 8814:1 8828:2 8834:1 8852:3 8862:4 8863:1 8867:2 8880:2 8899:1 8909:2 8913:1 8923:1 8931:1 8943:2 8952:1 8958:3 8967:2 8969:2 8970:1 8981:5 8985:1 8994:2 8997:6 9001:1 9003:1 9008:2 9015:1 9027:3 9059:2 9068:1 9084:1 9089:1 9095:1 9111:1 9113:1 9121:2 9128:1 9135:2 9139:2 9143:2 9148:2 9151:1 9152:2 9154:1 9155:1 9157:1 9160:2 9162:3 9163:1 9168:1 9169:1 9171:2 9173:1 9176:2 9179:2 9181:4 9184:3 9203:1 9207:2 9232:2 9245:1 9246:2 9258:1 9260:1 9262:4 9263:1 9281:2 9285:1 9293:1 9299:1 9300:1 9311:2 9319:1 9330:1 9333:1 9340:1 9345:1 9347:1 9370:1 9387:1 9396:1 9399:1 9402:2 9407:2 9424:1 9438:1 9440:1 9442:4 9445:2 9468:1 9480:1 9489:1 9547:1 9554:1 9568:1 9572:1 9585:2 9587:1 9589:1 9598:2 9599:2 9604:1 9605:1 9612:1 9615:1 9618:1 9630:1 9634:2 9655:3 9657:1 9661:1 9668:1 9679:1 9688:2 9694:1 9703:2 9714:1 9721:1 9726:1 9731:1 9735:1 9737:1 9751:1 9753:1 9768:2 9772:1 9773:1 9776:1 9778:2 9782:1 9784:1 9801:1 9806:2 9814:2 9823:2 9824:1 9831:2 9834:1 9835:1 9844:1 9849:2 9871:1 9873:13 9883:2 9885:2 9890:2 9912:2 9914:1 9915:1 9922:1 9932:1 9945:1 9946:1 9948:1 9963:1 9966:1 9968:1 9974:1 9985:7 9996:2 10007:3 10011:1 10020:1 10028:1 10043:2 10065:1 10066:1 10070:2 10078:1 10080:1 10089:1 10102:2 10109:1 10116:1 10121:4 10125:3 10128:1 10129:3 10130:1 10144:2 10146:2 10152:1 10161:2 10165:1 10166:1 10168:1 10175:1 10177:1 10193:1 10197:1 10207:1 10208:1 10209:1 10214:1 10216:3 10217:4 10221:2 10222:1 10261:1 10281:2 10285:1 10287:1 10288:1 10291:1 10304:1 10314:1 10330:6 10340:2 10364:1 10379:1 10384:3 10389:1 10390:4 10393:3 10394:3 10395:1 10396:1 10403:1 10407:2 10411:1 10412:1 10415:2 10416:3 10417:2 10433:1 10438:4 10439:5 10440:1 10441:1 10445:1 10455:5 10458:1 10460:1 10462:1 10463:1 10470:1 10485:1 10512:1 10514:1 10520:1 10524:2 10532:2 10533:2 10535:1 10541:1 10573:1 10574:1 10583:4 10595:4 10612:1 10617:1 10630:1 10650:2 10656:2 10658:3 10662:1 10664:1 10670:1 10674:1 10676:1 10683:1 10684:1 10689:1 10696:1 10699:1 10706:1 10716:1 10721:1 10727:1 10742:1 10743:1 10755:1 10775:1 10777:1 10783:1 10785:1 10790:1 10792:1 10801:1 10803:1 10808:1 10812:1 10817:1 10839:2 10843:1 10845:1 10848:1 10852:5 10854:1 10861:2 10865:1 10879:1 10881:3 10885:3 10896:1 10907:1 10918:1 10920:1 10932:2 10935:1 10940:1 10941:1 10943:4 10953:2 10962:1 10966:1 10969:2 10970:5 10973:2 10975:9 10978:1 10980:3 10984:1 10988:1 10989:1 10990:1 10993:1 10999:3 11000:1 11003:1 11004:1 11021:1 11022:1 11043:6 11045:1 11051:2 11057:7 11059:1 11076:1 11101:1 11104:1 11108:3 11127:1 11138:5 11140:1 11143:1 11153:1 11160:2 11163:1 11166:1 11176:1 11180:1 11183:1 11185:1 11187:1 11194:1 11209:1 11210:1 11215:1 11216:1 11223:1 11225:2 11237:1 11248:1 11249:1 11253:2 11257:1 11266:1 11272:1 11274:1 11288:1 11316:3 11323:1 11329:4 11331:6 11332:6 11334:2 11349:2 11352:3 11354:1 11358:3 11364:4 11368:2 11371:3 11373:1 11374:1 11384:1 11390:1 11393:1 11404:1 11415:4 11416:2 11417:1 11419:1 11424:3 11436:45 11438:2 11442:1 11448:1 11455:3 11457:1 11463:3 11470:9 11472:5 11473:1 11481:2 11486:1 11506:1 11516:1 11519:1 11522:1 11525:1 11527:1 11534:1 11549:1 11565:1 11574:3 11575:2 11578:1 11590:1 11594:1 11605:2 11618:3 11635:1 11639:1 11643:1 11653:1 11655:1 11656:1 11665:1 11687:1 11691:1 11694:2 11712:3 11713:10 11724:2 11743:2 11755:2 11760:4 11775:1 11776:1 11781:3 11783:1 11784:3 11794:2 11810:1 11838:1 11844:1 11845:1 11846:1 11847:1 11862:1 11863:1 11867:2 11869:2 11878:2 11896:1 11898:1 11900:1 11940:1 11941:1 11947:1 11948:1 11949:1 11963:1 11983:1 11989:1 11994:1 11998:1 12012:1 12015:1 12016:1 12021:2 12028:1 12030:1 12033:1 12043:2 12051:1 12055:1 12061:1 12070:1 12076:1 12077:2 12089:1 12100:1 12107:1 12118:1 12119:1 12127:3 12144:22 12156:1 12176:3 12183:3 12190:1 12194:1 12234:1 12242:1 12254:1 12267:6 12269:1 12272:1 12281:1 12286:1 12313:3 12314:2 12322:5 12345:1 12348:1 12360:1 12365:3 12366:3 12370:1 12371:2 12374:1 12381:1 12384:2 12389:2 12390:3 12402:1 12408:1 12419:4 12424:1 12426:4 12442:3 12450:1 12459:1 12474:2 12479:1 12486:1 12488:1 12493:1 12494:1 12501:1 12516:1 12520:1 12536:1 12544:1 12545:1 12549:1 12556:1 12568:1 12575:1 12580:2 12582:1 12583:1 12588:1 12596:2 12630:1 12637:1 12641:2 12664:2 12676:1 12685:2 12694:1 12695:1 12703:1 12711:1 12718:1 12725:1 12727:2 12731:2 12734:3 12736:1 12738:1 12745:1 12750:1 12757:1 12758:1 12772:1 12775:1 12784:1 12789:2 12801:3 12804:2 12809:2 12811:5 12814:1 12824:2 12830:3 12840:1 12842:1 12847:1 12861:1 12866:1 12871:1 12883:1 12892:2 12899:1 12902:1 12919:1 12925:1 12926:4 12929:1 12931:1 12934:1 12938:1 12944:1 12946:1 12947:2 12948:1 12949:1 12951:1 12956:1 12962:2 12982:1 12992:1 13000:1 13005:1 13016:1 13019:1 13048:1 13050:1 13064:1 13068:1 13082:1 13091:1 13106:2 13121:2 13136:1 13139:1 13160:3 13178:2 13179:1 13206:1 13208:1 13209:1 13213:3 13242:3 13245:1 13256:2 13276:1 13278:1 13280:2 13302:1 13304:1 13313:1 13316:1 13318:1 13325:1 13326:6 13333:1 13334:1 13337:1 13347:1 13358:1 13371:1 13374:1 13378:1 13391:6 13393:1 13405:1 13408:1 13413:1 13421:1 13425:1 13437:1 13441:11 13443:5 13445:2 13456:1 13471:2 13502:1 13521:1 13524:3 13531:1 13536:1 13545:1 13549:1 13554:2 13559:1 13572:1 13581:1 13583:2 13590:1 13596:1 13600:2 13602:2 13604:3 13605:2 13616:1 13625:1 13640:1 13659:2 13663:1 13680:1 13692:2 13693:2 13696:1 13708:3 13711:1 13714:5 13720:1 13735:1 13741:3 13745:2 13750:1 13751:1 13752:1 13766:4 13803:1 13806:1 13807:7 13819:1 13836:1 13843:3 13860:1 13867:1 13873:1 13875:1 13882:1 13887:4 13896:3 13904:1 13905:1 13906:1 13912:1 13915:3 13922:1 13924:1 13937:1 13942:1 13952:1 13967:3 13990:1 14004:1 14007:1 14016:1 14024:2 14028:1 14032:7 14036:1 14037:2 14043:2 14081:3 14089:1 14094:1 14096:1 14109:3 14120:1 14130:1 14140:1 14144:1 14151:1 14179:1 14181:1 14186:1 14189:1 14193:1 14195:1 14198:3 14199:3 14201:2 14204:3 14206:1 14208:1 14209:2 14212:1 14217:2 14219:1 14220:1 14221:1 14242:1 14243:1 14252:1 14254:1 14258:1 14262:6 14280:1 14282:1 14285:1 14295:1 14304:2 14307:1 14314:1 14315:1 14319:1 14321:1 14326:1 14328:1 14363:11 14368:2 14369:6 14400:1 14401:1 14404:2 14410:1 14412:1 14414:1 14415:1 14432:1 14433:2 14436:1 14437:1 14443:1 14449:3 14458:2 14470:1 14482:1 14485:1 14498:1 14499:1 14513:1 14515:1 14559:1 14564:1 14565:1 14581:1 14586:1 14617:1 14625:1 14629:1 14631:1 14633:1 14637:1 14642:5 14662:1 14668:4 14678:4 14679:1 14683:2 14697:2 14700:1 14707:1 14709:1 14717:1 14720:1 14725:2 14729:2 14750:2 14756:3 14758:1 14759:1 14763:1 14769:2 14771:2 14776:1 14821:1 14825:1 14832:2 14834:1 14843:1 14844:2 14845:2 14850:1 14852:1 14857:1 14871:1 14879:1 14889:1 14895:4 14896:4 14900:1 14931:2 14936:1 14945:2 14951:1 14954:1 14959:12 14964:2 14977:2 14979:2 14985:2 14988:1 14997:1 15003:2 15032:2 15033:1 15037:1 15048:1 15052:1 15054:1 15055:1 15073:1 15099:17 15100:2 15108:1 15133:1 15136:2 15138:1 15155:1 15165:1 15166:1 15170:1 15184:1 15189:1 15198:1 15201:1 15202:1 15205:1 15208:1 15210:4 15222:1 15224:1 15226:1 15229:2 15250:1 15256:2 15260:1 15265:1 15281:2 15285:1 15287:1 15298:1 15300:1 15301:4 15306:1 15307:1 15309:1 15315:1 15320:3 15332:1 15339:1 15340:1 15341:1 15346:1 15348:1 15359:4 15360:1 15369:1 15384:1 15385:1 15391:1 15416:1 15427:1 15435:1 15436:1 15441:1 15447:1 15448:2 15456:2 15458:1 15479:2 15490:1 15492:1 15504:1 15514:1 15519:2 15529:1 15539:2 15542:1 15544:1 15548:10 15550:1 15552:7 15554:4 15569:2 15573:3 15577:1 15578:1 15584:1 15589:2 15591:1 15595:1 15597:2 15607:1 15618:2 15621:1 15633:5 15634:2 15654:1 15659:2 15663:1 15664:1 15670:1 15674:3 15699:1 15703:1 15712:6 15715:1 15722:1 15723:1 15727:1 15732:3 15742:1 15745:2 15751:1 15753:2 15754:6 15756:1 15774:1 15787:1 15795:2 15796:1 15799:1 15806:1 15814:3 15821:1 15835:1 15860:1 15875:2 15879:2 15881:1 15894:1 15896:2 15913:1 15918:1 15924:1 15931:1 15958:1 15992:1 16018:1 16020:2 16027:1 16030:1 16031:1 16040:1 16045:1 16050:1 16051:2 16054:2 16058:1 16059:2 16067:1 16071:1 16074:1 16075:5 16078:1 16080:5 16083:1 16090:1 16093:2 16100:2 16101:2 16105:5 16106:1 16110:1 16114:4 16117:1 16119:1 16127:3 16131:3 16134:1 16137:1 16140:1 16142:1 16163:2 16172:1 16176:1 16177:1 16206:1 16207:1 16211:3 16225:5 16240:1 16246:1 16249:1 16260:1 16262:1 16269:1 16273:7 16278:1 16285:1 16297:1 16305:1 16312:1 16339:1 16357:1 16364:1 16374:3 16376:1 16391:1 16393:1 16395:1 16399:1 16411:1 16414:1 16418:1 16427:1 16431:1 16443:1 16446:2 16473:1 16498:1 16502:1 16519:1 16523:1 16527:1 16531:2 16535:2 16551:1 16552:3 16553:2 16560:1 16575:2 16580:2 16581:1 16584:1 16585:2 16586:1 16596:3 16600:1 16601:1 16602:2 16621:1 16628:3 16631:2 16650:1 16658:1 16676:15 16678:1 16679:1 16708:1 16712:1 16725:1 16727:1 16731:4 16745:1 16749:2 16750:2 16758:2 16765:1 16780:1 16805:1 16810:2 16816:2 16828:2 16843:1 16844:2 16850:1 16851:1 16852:1 16867:2 16869:1 16874:2 16890:1 16893:3 16898:1 16921:1 16936:4 16949:1 16951:1 16955:1 16981:1 16987:1 16999:2 17005:1 17008:1 17028:1 17029:1 17045:1 17052:3 17053:1 17056:1 17062:14 17063:2 17068:1 17071:4 17076:1 17078:2 17079:1 17083:1 17084:1 17089:1 17092:1 17099:2 17111:1 17126:1 17131:1 17132:1 17133:1 17137:1 17144:2 17151:5 17156:2 17183:2 17189:1 17201:1 17202:1 17209:1 17230:1 17231:1 17235:2 17237:2 17242:1 17259:4 17263:3 17266:2 17268:3 17273:1 17279:2 17287:4 17301:1 17314:1 17332:1 17339:1 17345:1 17351:1 17379:1 17390:1 17396:1 17397:1 17403:5 17406:1 17414:1 17417:1 17429:2 17432:1 17438:1 17453:1 17461:1 17463:1 17468:2 17495:2 17501:2 17504:2 17518:2 17533:2 17543:1 17547:2 17549:2 17553:1 17554:1 17555:2 17565:1 17566:2 17591:6 17594:1 17604:1 17608:1 17616:1 17627:1 17632:1 17634:2 17640:1 17643:1 17652:1 17660:1 17670:2 17672:1 17675:2 17676:2 17695:1 17696:1 17753:1 17759:1 17769:1 17774:5 17776:2 17798:1 17799:1 17801:1 17809:3 17810:2 17818:1 17823:1 17826:1 17855:1 17881:1 17893:1 17894:1 17897:5 17922:1 17925:1 17929:2 17930:1 17935:1 17936:1 17971:1 17986:1 17989:1 17996:1 18002:1 18003:1 18012:1 18022:1 18023:1 18027:1 18032:2 18038:1 18045:1 18053:1 18070:1 18074:2 18077:2 18080:1 18099:3 18104:1 18126:1 18129:1 18141:1 18150:1 18153:2 18175:1 18179:1 18180:3 18198:1 18200:1 18227:2 18230:1 18245:2 18258:1 18263:1 18264:3 18269:1 18272:1 18274:1 18290:1 18302:1 18303:1 18310:2 18319:1 18333:1 18339:1 18347:1 18357:2 18358:1 18360:2 18362:1 18380:3 18383:2 18386:1 18390:1 18393:1 18395:1 18398:2 18399:1 18415:1 18432:1 18434:1 18438:1 18441:1 18451:1 18453:1 18455:1 18459:2 18465:1 18499:1 18523:5 18525:1 18531:3 18534:1 18535:2 18542:1 18545:1 18546:2 18556:1 18564:1 18566:1 18575:1 18586:1 18603:1 18606:13 18613:3 18616:2 18627:2 18629:1 18634:1 18638:2 18644:2 18652:1 18656:1 18665:2 18666:1 18677:1 18685:1 18687:1 18689:3 18692:1 18693:1 18697:1 18703:1 18707:1 18709:2 18710:1 18711:2 18713:1 18717:3 18719:1 18725:2 18729:1 18742:2 18751:1 18752:2 18760:1 18763:1 18765:1 18769:1 18770:1 18780:1 18791:2 18796:1 18807:1 18810:1 18815:1 18835:1 18851:4 18865:1 18872:1 18881:2 18893:1 18897:1 18904:2 18909:2 18918:1 18947:1 18948:1 18973:1 19008:1 19013:1 19014:2 19015:1 19025:2 19026:1 19051:1 19053:1 19055:1 19062:1 19064:2 19085:1 19093:2 19114:1 19115:1 19117:3 19119:1 19121:3 19126:5 19152:2 19155:1 19168:1 19215:6 19228:1 19235:1 19270:1 19278:1 19280:1 19292:1 19311:1 19314:1 19315:2 19324:4 19339:1 19344:2 19353:2 19364:1 19365:1 19367:2 19386:6 19388:2 19391:1 19407:1 19413:1 19418:2 19444:1 19450:4 19452:1 19454:1 19471:1 19484:1 19495:1 19498:2 19503:1 19506:1 19508:1 19509:1 19512:1 19524:7 19525:1 19535:2 19536:3 19537:1 19538:2 19549:1 19551:2 19555:1 19556:1 19558:2 19568:1 19578:1 19582:1 19586:1 19595:1 19597:1 19598:1 19600:5 19602:2 19615:1 19616:1 19621:1 19630:1 19633:1 19638:2 19645:2 19649:2 19652:1 19655:15 19659:1 19664:5 19667:1 19680:1 19692:1 19696:3 19700:1 19715:3 19718:2 19720:1 19721:1 19724:3 19727:3 19747:1 19757:2 19777:2 19785:1 19786:1 19792:3 19816:3 19829:1 19833:1 19851:1 19857:6 19863:1 19865:1 19891:1 19896:1 19903:1 19908:3 19910:1 19913:1 19918:4 19929:5 19936:3 19965:1 19974:1 19975:5 19977:1 19984:1 19991:2 19992:1 19995:1 19998:1 19999:1 20015:1 20020:1 20022:1 20030:1 20034:6 20035:1 20037:1 20038:1 20039:1 20040:2 20041:1 20044:1 20047:1 20049:7 20050:2 20052:1 20075:1 20076:1 20078:1 20081:1 20101:1 20102:5 20109:1 20117:2 20132:1 20160:1 20170:1 20171:1 20185:1 20188:1 20210:2 20223:1 20227:1 20251:1 20256:1 20258:1 20262:1 20266:1 20267:2 20276:1 20277:1 20284:1 20298:3 20305:3 20363:1 20366:1 20368:1 20378:1 20379:1 20380:1 20382:1 20383:1 20387:2 20390:7 20393:1 20396:1 20402:1 20409:1 20413:1 20430:2 20440:2 20451:1 20453:1 20464:1 20466:1 20469:1 20482:7 20494:5 20519:3 20529:1 20552:1 20580:1 20588:1 20589:2 20598:1 20603:1 20614:1 20621:1 20628:1 20633:1 20636:1 20669:1 20670:1 20706:1 20713:1 20718:1 20724:1 20735:1 20746:1 20758:1 20792:1 20817:1 20822:2 20828:2 20844:1 20845:2 20846:1 20848:1 20851:4 20855:2 20874:1 20875:1 20878:1 20880:1 20892:1 20903:1 20912:1 20933:1 20940:1 20955:1 20956:1 20966:1 20980:1 21034:3 21072:1 21080:3 21083:4 21096:1 21099:2 21107:1 21110:2 21111:2 21113:1 21118:2 21121:1 21142:1 21145:1 21151:1 21153:1 21163:1 21180:1 21188:2 21190:1 21202:1 21213:3 21216:1 21223:2 21228:1 21244:1 21262:1 21265:1 21271:4 21274:1 21276:2 21284:1 21298:2 21304:1 21308:1 21315:1 21318:1 21333:1 21339:1 21341:1 21349:2 21353:1 21361:1 21362:1 21374:3 21378:1 21379:2 21386:1 21402:1 21404:1 21443:1 21446:1 21451:3 21459:1 21463:1 21464:1 21470:2 21494:1 21510:3 21512:1 21538:2 21539:1 21540:1 21547:1 21551:1 21568:1 21579:1 21581:1 21586:2 21589:2 21619:1 21623:1 21626:3 21635:3 21637:3 21639:1 21640:3 21646:1 21667:1 21674:2 21677:1 21707:5 21713:1 21715:1 21718:1 21777:1 21820:2
1 5:2 10:1 17:1 23:1 35:1 44:1 53:1 66:1 77:1 83:1 91:1 99:1 101:1 103:3 107:1 123:1 124:1 128:2 131:1 134:1 140:1 163:1 181:1 217:1 233:1 251:1 255:1 260:3 261:1 266:1 270:2 280:1 296:2 308:1 309:1 319:2 320:1 324:3 343:6 369:1 370:1 401:2 411:1 419:1 432:1 439:7 454:1 461:3 466:1 467:1 468:2 476:1 490:1 501:2 510:2 523:3 527:1 547:1 563:4 564:3 571:1 573:3 578:1 582:3 583:1 593:1 600:1 602:2 605:2 626:2 628:3 635:1 644:2 660:1 663:5 664:1 667:5 677:1 685:2 698:1 706:1 717:2 742:1 744:1 747:1 749:1 753:1 761:1 762:6 778:3 790:1 797:2 806:3 827:3 835:1 849:1 854:2 858:1 861:1 869:1 883:1 889:1 893:1 894:1 901:2 908:3 918:1 943:1 954:1 956:4 959:2 964:1 989:2 1003:1 1004:2 1005:1 1018:2 1030:1 1034:1 1037:4 1040:1 1045:1 1056:1 1073:4 1074:1 1079:1 1081:1 1099:1 1111:1 1124:1 1142:1 1152:2 1159:1 1160:2 1200:1 1205:2 1209:1 1216:1 1229:2 1230:1 1237:3 1248:2 1258:1 1261:2 1270:1 1273:1 1278:1 1281:1 1282:3 1308:1 1320:6 1322:3 1331:1 1343:1 1349:1 1351:1 1356:1 1358:4 1367:1 1375:1 1389:1 1392:1 1402:15 1407:4 1418:1 1419:3 1430:1 1435:1 1441:4 1453:1 1457:15 1459:1 1463:1 1474:1 1475:4 1476:2 1478:8 1481:1 1482:1 1484:1 1486:2 1488:4 1489:3 1492:1 1507:2 1530:5 1531:4 1536:3 1549:1 1550:1 1598:1 1600:2 1622:1 1624:1 1642:1 1644:1 1651:2 1653:1 1659:2 1683:2 1689:1 1698:1 1712:2 1715:1 1724:1 1740:1 1743:1 1757:1 1771:1 1774:2 1779:1 1781:1 1784:1 1785:1 1789:1 1790:1 1797:2 1800:1 1834:3 1866:1 1875:1 1877:3 1879:2 1884:5 1885:2 1886:2 1887:1 1888:6 1889:1 1890:1 1892:2 1893:2 1894:1 1895:1 1898:2 1899:3 1903:1 1904:1 1908:1 1911:1 1912:2 1913:1 1920:1 1921:1 1927:1 1940:1 1947:1 1950:1 1951:1 1953:2 1962:1 1967:2 1973:2 1985:1 1999:1 2007:2 2009:1 2024:1 2025:1 2036:1 2055:1 2057:1 2077:1 2079:1 2090:1 2102:1 2105:1 2107:1 2112:2 2113:1 2114:1 2128:1 2142:1 2161:2 2167:1 2171:1 2172:1 2179:1 2180:2 2181:2 2199:1 2208:1 2209:2 2215:1 2233:1 2235:1 2240:3 2267:1 2271:1 2274:1 2276:1 2281:1 2288:1 2290:1 2291:2 2293:1 2306:1 2314:1 2333:1 2337:1 2340:1 2345:4 2356:7 2359:2 2375:1 2376:1 2412:2 2425:1 2427:1 2429:1 2434:1 2436:1 2441:2 2456:1 2458:1 2460:2 2465:1 2469:1 2472:2 2485:2 2486:2 2489:1 2498:1 2499:1 2503:1 2506:5 2507:1 2510:1 2511:2 2515:1 2520:2 2522:1 2527:2 2532:1 2545:1 2552:2 2553:1 2562:1 2563:4 2567:1 2572:2 2574:1 2575:1 2580:1 2583:1 2595:3 2603:1 2604:2 2613:3 2619:2 2621:1 2623:1 2626:1 2635:1 2654:1 2656:5 2664:1 2684:1 2691:1 2695:3 2701:2 2704:13 2706:1 2715:2 2718:6 2733:1 2739:1 2749:1 2750:4 2752:2 2753:4 2768:1 2775:1 2791:1 2795:2 2798:4 2800:1 2801:1 2804:1 2821:1 2829:2 2834:1 2835:1 2840:3 2844:2 2845:1 2847:1 2862:2 2865:1 2907:1 2913:1 2919:1 2927:8 2930:2 2932:1 2941:1 2945:1 2949:4 2953:1 2958:1 2959:1 2965:1 2968:2 2971:4 2978:1 2988:1 2989:1 2992:1 2997:1 3005:1 3024:1 3025:1 3027:2 3032:1 3043:1 3057:1 3059:2 3062:1 3065:1 3066:1 3071:2 3075:1 3093:2 3098:1 3115:1 3124:5 3138:1 3153:11 3156:2 3161:1 3166:1 3179:1 3184:1 3190:1 3194:1 3208:2 3216:1 3228:1 3242:1 3263:2 3271:3 3274:2 3275:1 3276:3 3290:1 3295:1 3299:1 3302:2 3308:1 3322:2 3325:2 3326:1 3329:3 3331:5 3332:1 3335:1 3337:2 3340:2 3341:2 3343:1 3344:2 3346:4 3353:1 3354:5 3355:3 3358:5 3360:7 3362:1 3373:1 3391:1 3412:1 3414:1 3417:1 3429:1 3439:1 3441:1 3445:1 3450:2 3451:3 3455:1 3465:2 3470:1 3475:2 3477:1 3488:1 3493:1 3500:1 3509:2 3521:2 3523:1 3524:1 3538:1 3539:1 3541:2 3548:1 3549:1 3552:1 3557:1 3576:1 3599:1 3613:1 3622:1 3631:1 3633:1 3644:3 3661:1 3672:1 3674:1 3679:3 3684:2 3692:1 3697:1 3711:1 3712:1 3717:1 3718:1 3722:1 3732:1 3747:1 3749:2 3755:1 3759:1 3760:3 3767:2 3772:1 3775:6 3777:3 3781:1 3787:1 3788:1 3789:1 3790:1 3793:1 3800:3 3806:2 3808:2 3815:2 3819:1 3821:1 3825:1 3828:10 3856:4 3857:1 3858:1 3865:1 3887:1 3888:2 3893:2 3896:1 3899:1 3900:1 3901:2 3903:2 3904:1 3910:1 3916:1 3921:1 3924:1 3925:6 3927:1 3928:1 3939:2 3948:2 3957:9 3965:4 3966:1 3979:2 3981:1 3986:1 3988:2 3990:1 3997:3 3998:2 4009:2 4025:1 4026:2 4032:3 4036:1 4038:1 4041:1 4048:1 4065:3 4071:1 4090:1 4097:1 4101:2 4103:1 4104:2 4106:2 4118:1 4121:3 4122:1 4129:1 4131:1 4133:6 4136:1 4143:2 4147:1 4150:1 4158:1 4176:1 4182:1 4198:1 4199:1 4200:1 4216:1 4227:1 4230:1 4237:1 4239:1 4242:2 4246:2 4247:1 4264:1 4265:4 4272:1 4277:1 4279:14 4311:3 4312:1 4315:1 4316:1 4317:1 4318:1 4326:2 4333:2 4338:1 4358:18 4361:1 4381:1 4382:1 4387:1 4398:2 4400:3 4426:1 4427:1 4429:2 4438:1 4440:1 4442:1 4447:1 4459:1 4461:1 4482:1 4489:1 4498:1 4505:1 4513:1 4524:1 4532:1 4534:5 4555:1 4565:3 4573:1 4582:1 4584:1 4586:1 4591:1 4600:2 4627:1 4641:1 4643:2 4661:1 4663:1 4667:1 4680:2 4698:1 4717:2 4731:1 4737:3 4757:1 4770:2 4771:1 4786:1 4792:1 4794:2 4797:1 4803:1 4811:1 4841:1 4854:1 4855:1 4863:1 4866:1 4868:2 4869:1 4884:1 4895:1 4910:6 4912:1 4933:1 4936:3 4944:1 4958:1 4969:1 5004:1 5009:1 5018:2 5028:1 5032:14 5051:1 5058:1 5059:1 5074:1 5082:1 5083:1 5087:1 5089:1 5096:1 5103:1 5107:1 5133:1 5149:1 5156:1 5182:2 5187:1 5199:1 5205:1 5206:13 5218:1 5220:2 5222:2 5223:2 5226:1 5244:1 5249:1 5250:1 5251:1 5257:14 5274:4 5275:1 5277:1 5288:1 5290:5 5293:1 5307:1 5308:2 5310:1 5317:1 5321:3 5331:2 5338:2 5348:1 5369:1 5386:1 5395:1 5396:2 5418:1 5422:1 5429:2 5434:1 5438:2 5453:3 5456:4 5461:1 5492:1 5495:1 5499:2 5506:2 5508:1 5528:2 5530:1 5533:2 5534:1 5547:1 5555:3 5557:1 5572:1 5574:1 5577:3 5579:4 5583:1 5587:2 5591:1 5592:2 5593:2 5606:4 5608:1 5618:1 5621:2 5624:2 5625:2 5647:1 5651:2 5656:2682 5670:1 5673:1 5678:1 5679:2 5682:2 5687:1 5696:1 5700:1 5714:2 5716:1 5726:6 5728:4 5741:2 5761:1 5765:1 5772:1 5779:1 5784:2 5787:1 5793:1 5814:2 5816:1 5824:1 5829:2 5846:1 5855:1 5862:2 5866:1 5870:1 5873:1 5894:2 5901:1 5904:1 5905:1 5915:2 5927:1 5939:4 5940:1 5941:1 5944:1 5945:1 5947:2 5949:1 5952:1 5955:2 5981:1 5983:1 5987:2 5992:5 5993:4 5997:1 6004:1 6015:1 6023:1 6025:1 6033:1 6050:1 6057:1 6066:1 6067:1 6088:1 6095:1 6101:1 6106:7 6108:1 6109:1 6142:3 6156:1 6165:2 6171:1 6176:3 6179:2 6184:1 6185:1 6189:2 6192:1 6201:2 6210:2 6240:1 6244:1 6247:1 6248:3 6268:4 6296:1 6302:1 6304:1 6308:3 6312:1 6335:2 6343:1 6359:1 6366:1 6367:1 6373:2 6376:1 6378:3 6381:1 6397:1 6399:1 6403:1 6410:2 6414:1 6417:1 6435:1 6445:1 6449:3 6452:1 6460:1 6468:1 6479:2 6488:5 6507:1 6513:1 6518:1 6521:1 6540:1 6550:2 6558:2 6567:4 6570:1 6577:2 6578:1 6590:2 6593:1 6596:1 6597:1 6603:3 6606:1 6612:2 6614:2 6631:4 6642:3 6655:1 6662:1 6673:3 6674:2 6700:1 6702:2 6708:3 6709:3 6711:1 6713:1 6716:1 6728:3 6732:1 6733:2 6746:8 6747:1 6756:1 6769:1 6776:2 6792:1 6793:1 6800:1 6804:1 6820:1 6822:1 6823:1 6832:2 6833:1 6842:1 6846:2 6870:5 6871:1 6892:14 6894:2 6899:1 6901:1 6906:1 6914:1 6916:1 6927:1 6936:1 6948:1 6957:1 6961:1 6975:4 6976:1 6986:1 6989:2 6997:1 6998:2 7000:1 7012:4 7013:1 7023:1 7028:1 7038:2 7066:1 7075:4 7084:3 7095:2 7098:1 7107:3 7112:1 7117:4 7119:7 7121:3 7124:1 7129:2 7131:2 7132:1 7136:1 7138:2 7140:6 7142:4 7146:2 7147:7 7154:2 7158:5 7159:1 7162:1 7171:3 7175:1 7199:1 7201:1 7203:2 7206:2 7211:1 7213:2 7215:1 7229:1 7248:1 7253:1 7264:1 7271:1 7272:1 7274:1 7283:1 7300:2 7315:1 7340:1 7345:1 7360:1 7387:1 7388:3 7404:1 7405:2 7406:1 7408:1 7419:1 7421:3 7426:1 7458:1 7461:1 7462:1 7466:1 7470:1 7480:1 7488:1 7504:1 7506:1 7516:1 7519:1 7520:1 7529:1 7530:2 7545:1 7555:1 7563:1 7569:1 7572:2 7575:4 7580:2 7588:1 7589:4 7636:1 7665:1 7668:1 7682:2 7689:3 7691:1 7693:1 7697:2 7699:2 7700:2 7702:2 7712:1 7720:1 7722:2 7724:3 7732:3 7739:1 7740:2 7741:2 7744:1 7768:5 7778:1 7779:2 7792:1 7797:1 7812:1 7818:1 7821:2 7823:4 7835:4 7853:1 7859:1 7860:1 7872:2 7873:1 7878:1 7891:1 7898:1 7905:3 7930:1 7931:1 7938:1 7940:1 7944:2 7953:2 7965:1 7969:1 7974:3 7975:18 7977:2 7985:1 7991:1 7994:5 8003:1 8006:1 8022:1 8033:1 8035:1 8059:1 8070:1 8071:1 8075:1 8087:1 8093:1 8095:1 8104:1 8108:1 8136:1 8140:1 8141:1 8145:1 8154:1 8159:1 8179:1 8188:1 8195:2 8202:1 8208:1 8213:2 8221:1 8227:1 8250:5 8251:1 8254:2 8257:1 8259:3 8261:4 8278:1 8280:1 8299:2 8312:3 8327:2 8330:1 8333:1 8342:2 8345:6 8348:1 8359:2 8364:2 8377:1 8378:1 8391:2 8428:8 8433:2 8439:1 8444:1 8450:1 8462:1 8488:1 8489:1 8494:1 8497:1 8512:1 8514:1 8518:1 8520:1 8521:1 8532:2 8533:1 8534:1 8554:1 8570:1 8572:1 8575:1 8576:1 8590:4 8601:1 8608:2 8619:2 8621:3 8646:2 8647:2 8651:2 8653:1 8663:1 8668:1 8673:1 8674:1 8675:1 8679:6 8682:1 8683:1 8687:1 8688:1 8693:2 8697:2 8700:1 8705:1 8707:1 8708:1 8709:1 8752:1 8754:1 8755:1 8756:1 8762:1 8765:2 8766:2 8767:1 8772:1 8775:1 8776:2 8777:3 8783:12 8788:2 8792:2 8807:2 8814:1 8828:2 8834:1 8852:3 8862:5 8863:1 8867:2 8880:2 8885:1 8894:1 8899:1 8909:2 8913:1 8923:1 8931:1 8943:2 8952:1 8958:3 8967:2 8969:2 8970:1 8981:5 8985:1 8994:2 8997:6 9001:1 9003:1 9008:2 9015:1 9027:3 9059:2 9068:1 9084:1 9089:1 9095:1 9111:1 9113:1 9121:2 9128:1 9135:2 9139:2 9143:2 9148:2 9151:1 9152:2 9154:1 9155:1 9157:1 9160:2 9162:3 9163:1 9168:1 9169:1 9171:2 9173:1 9176:2 9179:2 9181:4 9184:3 9203:1 9207:2 9232:2 9245:1 9246:3 9258:1 9260:1 9262:4 9263:1 9281:2 9285:1 9293:1 9299:1 9300:1 9311:2 9319:1 9330:1 9333:1 9340:1 9345:1 9347:1 9370:1 9387:1 9396:1 9399:1 9402:2 9407:2 9424:1 9438:1 9440:1 9442:4 9445:2 9468:1 9480:1 9489:1 9547:1 9554:1 9568:1 9572:1 9580:1 9585:2 9587:1 9589:1 9598:2 9599:2 9604:1 9605:1 9612:1 9615:1 9618:1 9630:1 9634:2 9655:3 9657:1 9661:1 9668:1 9679:1 9688:2 9694:1 9703:2 9714:1 9721:1 9726:1 9731:1 9735:1 9737:1 9751:1 9753:1 9768:2 9772:1 9773:1 9776:1 9778:2 9782:1 9784:1 9801:1 9806:2 9814:2 9823:2 9824:1 9831:2 9834:1 9835:1 9844:1 9849:2 9871:1 9873:13 9883:2 9885:2 9890:2 9912:2 9914:1 9915:1 9922:1 9932:1 9945:1 9946:1 9948:1 9963:1 9966:1 9968:1 9974:1 9985:8 9996:2 10007:3 10011:1 10020:1 10028:1 10043:2 10065:1 10066:1 10070:2 10078:1 10080:1 10089:1 10102:2 10109:1 10116:1 10121:4 10125:3 10128:1 10129:3 10130:1 10144:2 10146:2 10152:1 10161:2 10165:1 10166:1 10168:1 10175:1 10177:1 10193:1 10197:1 10207:1 10208:1 10209:1 10214:1 10216:3 10217:4 10221:2 10222:1 10261:1 10281:2 10285:1 10287:1 10288:1 10291:1 10304:1 10314:1 10330:6 10340:2 10364:1 10379:1 10384:4 10389:1 10390:4 10393:3 10394:3 10395:1 10396:1 10403:1 10407:2 10411:1 10412:1 10415:2 10416:3 10417:2 10433:1 10438:4 10439:5 10440:1 10441:1 10445:1 10455:5 10458:1 10460:1 10462:1 10463:1 10470:1 10485:1 10512:1 10514:1 10520:1 10524:2 10532:2 10533:2 10535:1 10541:1 10573:1 10574:1 10583:4 10595:4 10612:1 10617:1 10630:1 10650:2 10656:2 10658:3 10662:1 10664:1 10670:1 10674:1 10676:1 10683:1 10684:1 10689:1 10696:1 10699:1 10706:1 10716:1 10721:1 10727:1 10742:1 10743:1 10755:1 10775:1 10777:1 10783:1 10785:1 10790:2 10792:1 10801:1 10803:1 10808:1 10812:1 10817:1 10839:2 10843:1 10845:1 10848:1 10852:5 10854:1 10861:2 10865:1 10879:1 10881:4 10885:3 10896:1 10907:1 10918:1 10920:1 10932:2 10935:1 10940:1 10941:1 10943:4 10953:2 10962:1 10966:1 10969:2 10970:5 10973:2 10975:9 10978:1 10980:3 10984:1 10988:1 10989:1 10990:1 10993:1 10999:3 11000:1 11003:1 11004:1 11021:1 11022:1 11043:6 11045:1 11051:2 11057:7 11059:1 11076:1 11101:1 11104:1 11108:3 11127:1 11138:5 11140:1 11143:1 11150:1 11153:1 11160:2 11163:1 11166:1 11176:1 11180:1 11183:1 11185:1 11187:1 11194:1 11209:1 11210:1 11215:1 11216:1 11223:1 11225:2 11237:1 11248:1 11249:1 11253:3 11257:1 11266:1 11272:1 11274:1 11288:1 11316:3 11323:1 11329:4 11331:6 11332:6 11334:2 11349:2 11352:3 11354:1 11358:3 11364:4 11368:2 11371:3 11373:1 11374:1 11384:1 11390:1 11393:1 11404:1 11415:4 11416:2 11417:1 11419:1 11424:4 11436:45 11438:2 11442:1 11448:1 11455:3 11457:1 11463:3 11470:9 11472:5 11473:1 11481:2 11486:1 11506:1 11516:1 11519:1 11522:1 11525:1 11527:1 11534:1 11549:1 11565:1 11574:3 11575:2 11578:1 11590:1 11594:2 11605:2 11618:3 11635:1 11639:1 11643:1 11653:1 11655:1 11656:1 11665:1 11687:1 11691:1 11694:2 11712:3 11713:10 11724:2 11743:2 11755:2 11760:4 11775:1 11776:1 11781:3 11783:1 11784:3 11794:2 11810:1 11838:1 11844:1 11845:1 11846:1 11847:1 11862:1 11863:1 11867:2 11869:2 11878:2 11896:1 11898:1 11900:1 11940:1 11941:1 11947:1 11948:1 11949:1 11963:1 11983:1 11989:1 11994:1 11998:1 12012:1 12015:1 12016:1 12021:2 12028:1 12030:1 12033:1 12043:2 12051:1 12055:1 12061:1 12070:1 12076:1 12077:2 12089:1 12100:1 12107:1 12118:1 12119:1 12127:3 12144:23 12156:1 12176:3 12183:3 12190:1 12194:1 12234:1 12242:1 12254:2 12267:6 12269:1 12272:1 12281:1 12286:1 12313:3 12314:2 12322:5 12345:1 12348:1 12360:1 12365:3 12366:3 12370:1 12371:2 12374:1 12381:1 12384:2 12389:2 12390:3 12402:1 12408:1 12419:4 12424:1 12426:4 12442:3 12450:1 12459:1 12474:2 12479:1 12486:1 12488:1 12493:1 12494:1 12501:1 12516:1 12520:1 12536:1 12544:1 12545:1 12549:1 12556:1 12568:2 12575:1 12580:2 12582:1 12583:1 12588:1 12596:3 12630:1 12637:1 12641:2 12664:2 12676:1 12685:2 12694:1 12695:1 12703:1 12711:1 12718:1 12725:1 12727:2 12731:2 12734:3 12736:1 12738:1 12745:1 12750:1 12757:1 12758:1 12772:1 12775:1 12784:1 12789:2 12801:3 12804:2 12809:2 12811:6 12814:1 12824:2 12830:3 12840:1 12842:1 12847:1 12861:1 12866:1 12871:1 12872:1 12883:1 12892:2 12899:1 12902:1 12911:1 12919:1 12925:1 12926:4 12929:1 12931:1 12934:1 12938:1 12944:1 12946:1 12947:3 12948:1 12949:1 12951:1 12956:1 12962:2 12982:1 12992:1 13000:1 13005:1 13016:2 13019:1 13048:1 13050:1 13064:1 13068:1 13082:1 13091:1 13106:2 13121:2 13136:1 13139:1 13160:3 13178:2 13179:1 13206:1 13208:1 13209:1 13213:3 13242:3 13245:1 13256:2 13276:1 13278:1 13280:2 13302:1 13304:1 13311:1 13313:2 13316:1 13318:1 13325:1 13326:6 13333:1 13334:1 13337:1 13347:1 13358:1 13371:1 13374:2 13378:1 13391:6 13393:1 13405:1 13408:1 13413:1 13421:1 13425:1 13437:1 13441:11 13443:5 13445:2 13456:1 13471:2 13474:1 13502:1 13521:1 13524:3 13531:1 13536:1 13545:1 13549:1 13554:3 13559:1 13572:1 13581:1 13583:2 13590:1 13596:1 13600:2 13602:2 13604:3 13605:2 13616:1 13625:1 13640:1 13659:2 13663:1 13680:1 13692:2 13693:2 13696:1 13708:4 13711:1 13714:5 13720:1 13735:1 13741:3 13745:2 13750:1 13751:1 13752:1 13766:4 13803:1 13806:1 13807:7 13819:1 13836:1 13843:3 13860:1 13867:1 13873:1 13875:1 13882:1 13887:4 13896:3 13904:1 13905:1 13906:1 13912:1 13915:3 13922:1 13924:1 13937:1 13942:1 13952:1 13967:3 13990:1 14004:1 14007:1 14016:1 14024:2 14028:1 14032:7 14036:1 14037:2 14043:2 14081:3 14089:1 14094:1 14096:1 14109:3 14120:1 14130:1 14140:1 14144:1 14151:1 14175:1 14179:1 14181:1 14186:1 14189:1 14193:1 14195:1 14198:3 14199:3 14201:2 14204:3 14206:1 14208:1 14209:2 14212:1 14217:2 14219:1 14220:1 14221:1 14229:1 14242:1 14243:1 14252:1 14254:2 14258:1 14262:6 14280:1 14282:1 14285:1 14295:1 14304:2 14307:1 14314:1 14315:1 14319:1 14321:1 14326:1 14328:1 14363:11 14368:2 14369:6 14400:1 14401:1 14404:2 14410:1 14412:1 14414:1 14415:1 14432:1 14433:2 14436:1 14437:1 14443:1 14449:3 14458:2 14470:1 14482:1 14485:1 14498:1 14499:1 14513:1 14515:1 14559:1 14564:1 14565:1 14581:1 14586:1 14617:1 14625:1 14629:1 14631:1 14633:1 14637:1 14642:5 14662:1 14668:4 14678:4 14679:1 14683:2 14697:2 14700:1 14707:1 14709:1 14717:1 14720:1 14725:2 14729:2 14750:2 14756:3 14758:1 14759:1 14763:1 14769:2 14771:2 14776:1 14821:1 14825:1 14832:2 14834:1 14843:1 14844:2 14845:2 14850:1 14852:1 14857:1 14871:1 14879:1 14889:1 14895:4 14896:4 14900:1 14931:2 14936:1 14945:2 14951:1 14954:1 14959:12 14964:2 14977:2 14979:2 14985:2 14988:1 14997:1 15003:2 15032:2 15033:1 15037:1 15048:1 15052:1 15054:1 15055:1 15073:1 15099:17 15100:2 15108:1 15133:1 15136:2 15138:1 15155:1 15165:1 15166:1 15170:1 15184:1 15189:1 15198:1 15201:1 15202:1 15205:1 15208:1 15210:4 15222:1 15224:1 15226:1 15229:2 15250:1 15256:2 15260:1 15265:1 15281:2 15285:1 15287:1 15298:1 15300:1 15301:4 15306:1 15307:1 15309:1 15315:1 15320:3 15332:1 15339:1 15340:1 15341:1 15346:1 15348:1 15359:4 15360:1 15369:1 15384:1 15385:1 15391:1 15416:1 15427:1 15435:1 15436:1 15441:1 15447:1 15448:2 15456:2 15458:1 15479:2 15490:1 15492:1 15504:1 15514:1 15519:3 15529:1 15539:2 15542:1 15544:1 15548:10 15550:1 15552:7 15554:4 15569:2 15573:3 15577:1 15578:1 15584:1 15589:2 15591:1 15595:1 15597:2 15607:1 15618:2 15621:1 15633:6 15634:2 15654:1 15659:2 15663:1 15664:1 15670:1 15674:3 15699:1 15703:1 15712:6 15715:1 15722:1 15723:1 15727:1 15732:3 15742:1 15745:2 15751:1 15753:2 15754:6 15756:1 15774:1 15787:1 15795:2 15796:1 15799:1 15806:1 15814:3 15821:1 15835:1 15860:1 15875:2 15879:2 15881:1 15894:1 15896:2 15913:1 15918:1 15924:1 15931:1 15958:1 15992:1 16018:1 16020:2 16027:1 16030:1 16031:1 16040:1 16045:1 16050:1 16051:2 16054:2 16058:1 16059:2 16067:1 16071:1 16074:1 16075:5 16078:1 16080:5 16083:1 16090:1 16093:2 16100:2 16101:2 16105:5 16106:1 16110:1 16114:4 16117:1 16119:1 16127:3 16130:1 16131:3 16134:1 16137:1 16140:1 16142:1 16163:2 16172:1 16176:1 16177:1 16206:1 16207:1 16211:3 16225:6 16240:1 16246:1 16249:1 16260:1 16262:1 16269:1 16273:7 16278:1 16285:1 16297:2 16305:1 16312:1 16339:1 16357:1 16364:1 16374:3 16376:1 16391:1 16393:1 16395:1 16399:1 16411:1 16414:1 16418:1 16427:1 16430:1 16431:1 16443:1 16446:3 16473:1 16498:1 16502:1 16519:1 16523:1 16527:1 16531:2 16535:2 16551:1 16552:3 16553:2 16560:1 16575:2 16580:2 16581:1 16584:1 16585:2 16586:1 16596:3 16600:1 16601:1 16602:2 16621:1 16628:3 16631:2 16650:1 16658:1 16676:15 16678:1 16679:1 16708:1 16712:1 16725:1 16727:1 16731:4 16745:1 16749:2 16750:2 16758:2 16765:1 16780:1 16805:1 16810:2 16816:2 16828:2 16843:1 16844:2 16850:1 16851:1 16852:1 16867:2 16869:1 16874:2 16890:1 16893:3 16898:1 16921:1 16936:4 16949:1 16951:1 16955:1 16981:1 16987:1 16999:2 17005:1 17008:1 17028:1 17029:1 17033:1 17045:1 17052:3 17053:1 17056:1 17062:15 17063:2 17068:1 17071:4 17076:1 17078:2 17079:1 17083:1 17084:1 17089:1 17092:1 17099:2 17111:1 17126:1 17131:1 17132:1 17133:1 17137:1 17144:2 17151:5 17156:2 17168:1 17183:2 17189:1 17201:1 17202:1 17209:1 17230:1 17231:1 17235:2 17237:2 17242:1 17259:4 17263:3 17266:2 17268:3 17273:1 17279:2 17287:4 17301:1 17314:1 17332:1 17339:1 17345:1 17351:1 17379:1 17390:1 17396:1 17397:1 17403:5 17406:1 17414:1 17417:1 17429:2 17432:1 17438:1 17453:1 17461:1 17463:1 17468:2 17495:2 17501:2 17504:2 17518:2 17533:2 17543:1 17547:2 17549:2 17553:1 17554:1 17555:2 17565:1 17566:2 17572:1 17591:6 17594:1 17604:1 17608:1 17609:1 17616:1 17627:1 17632:1 17634:2 17640:1 17643:1 17652:1 17656:1 17660:1 17670:2 17672:1 17675:2 17676:2 17695:1 17696:1 17753:1 17759:1 17769:1 17774:5 17776:2 17798:1 17799:1 17801:1 17809:3 17810:2 17818:1 17823:1 17826:1 17855:1 17881:1 17893:1 17894:1 17897:5 17922:1 17925:1 17929:2 17930:1 17935:1 17936:1 17971:1 17986:1 17989:1 17996:1 18002:1 18003:1 18012:1 18022:1 18023:1 18027:1 18032:3 18038:1 18045:1 18053:1 18070:1 18074:2 18077:2 18080:1 18099:3 18104:1 18126:1 18129:1 18141:1 18150:1 18153:2 18175:1 18179:1 18180:3 18198:1 18200:1 18227:2 18230:1 18245:2 18258:1 18263:1 18264:3 18269:1 18272:1 18274:2 18290:1 18302:1 18303:1 18310:2 18319:1 18333:1 18339:1 18347:1 18357:2 18358:1 18360:2 18362:1 18380:3 18383:2 18386:1 18390:1 18393:1 18395:1 18398:2 18399:1 18415:1 18432:1 18434:1 18438:1 18441:1 18451:1 18453:1 18455:1 18459:2 18465:1 18499:1 18523:5 18525:1 18531:3 18534:1 18535:2 18542:1 18545:1 18546:2 18556:1 18564:1 18566:1 18575:1 18586:1 18603:1 18606:14 18613:3 18616:2 18627:2 18629:1 18634:1 18638:2 18644:2 18652:1 18656:1 18665:2 18666:1 18677:1 18685:1 18687:1 18689:3 18692:1 18693:1 18697:1 18703:1 18707:1 18709:2 18710:1 18711:3 18713:1 18717:3 18719:1 18725:2 18729:1 18742:2 18751:1 18752:2 18760:1 18763:1 18765:1 18769:1 18770:1 18780:1 18791:2 18796:1 18807:1 18810:1 18815:1 18835:1 18851:4 18865:1 18872:1 18881:2 18893:1 18897:1 18904:2 18909:2 18918:1 18947:1 18948:1 18973:1 19008:1 19013:1 19014:2 19015:1 19025:2 19026:1 19051:1 19053:1 19055:1 19062:1 19064:2 19085:1 19093:2 19114:1 19115:1 19117:3 19119:1 19121:3 19126:5 19152:2 19155:1 19168:1 19215:6 19228:1 19235:1 19270:1 19278:1 19280:1 19292:1 19296:1 19311:1 19314:1 19315:2 19324:4 19339:1 19344:2 19353:2 19364:1 19365:1 19367:2 19386:6 19388:2 19391:1 19407:1 19413:1 19418:2 19444:1 19450:4 19452:1 19454:1 19471:1 19484:1 19495:1 19496:1 19498:2 19503:1 19506:1 19508:1 19509:1 19512:1 19524:8 19525:1 19535:2 19536:3 19537:1 19538:2 19549:1 19551:2 19555:1 19556:1 19558:2 19568:1 19578:1 19582:1 19586:1 19595:1 19597:1 19598:1 19600:5 19602:2 19615:1 19616:1 19621:1 19630:1 19633:1 19638:2 19645:2 19649:2 19652:1 19655:16 19659:1 19664:5 19667:1 19680:1 19692:1 19696:3 19700:1 19715:3 19718:2 19720:1 19721:1 19724:3 19727:3 19733:1 19747:1 19757:2 19777:2 19785:1 19786:1 19792:3 19816:3 19829:1 19833:1 19851:1 19857:6 19863:1 19865:1 19891:1 19896:1 19903:2 19908:3 19910:1 19913:1 19918:4 19929:5 19936:3 19965:1 19974:1 19975:5 19977:1 19984:1 19991:3 19992:1 19995:1 19998:1 19999:1 20015:1 20020:1 20022:1 20030:1 20034:6 20035:1 20037:1 20038:2 20039:1 20040:2 20041:1 20044:1 20047:1 20049:7 20050:2 20052:1 20075:1 20076:1 20078:1 20081:1 20101:1 20102:6 20109:1 20117:2 20132:1 20160:1 20170:1 20171:1 20185:1 20188:1 20210:2 20216:1 20223:1 20227:1 20251:1 20256:1 20258:1 20262:1 20266:1 20267:2 20276:1 20277:1 20284:1 20298:4 20305:3 20363:1 20366:1 20368:1 20378:1 20379:1 20380:1 20382:1 20383:1 20387:2 20390:7 20393:1 20396:1 20402:1 20409:1 20413:1 20430:2 20440:2 20451:1 20453:1 20464:1 20466:1 20469:1 20482:7 20494:5 20519:3 20529:1 20552:1 20580:1 20588:1 20589:2 20598:1 20603:1 20607:1 20614:1 20621:1 20628:1 20633:1 20636:1 20669:1 20670:1 20697:1 20706:1 20713:1 20718:1 20724:1 20734:1 20735:1 20746:1 20758:1 20792:1 20817:1 20822:2 20828:2 20844:1 20845:2 20846:1 20848:1 20851:5 20855:2 20874:1 20875:1 20878:1 20880:1 20892:1 20903:1 20912:1 20933:1 20940:1 20955:1 20956:1 20966:1 20980:1 21034:3 21072:1 21080:3 21083:4 21096:1 21099:2 21107:1 21110:2 21111:2 21113:1 21118:2 21121:1 21142:1 21145:1 21151:1 21153:1 21163:1 21180:1 21186:1 21188:2 21190:1 21202:1 21213:3 21216:1 21223:2 21228:1 21244:1 21262:1 21265:1 21271:4 21274:1 21276:2 21284:1 21298:2 21304:1 21308:1 21315:1 21318:1 21333:1 21339:1 21341:1 21349:2 21353:1 21361:1 21362:1 21374:3 21378:1 21379:2 21386:1 21402:1 21404:1 21443:1 21446:1 21451:3 21459:1 21463:1 21464:1 21470:2 21494:1 21510:3 21512:1 21538:2 21539:1 21540:1 21547:1 21551:1 21568:1 21579:1 21581:1 21586:2 21589:2 21619:1 21623:1 21626:3 21635:3 21637:3 21639:1 21640:3 21646:1 21667:1 21674:2 21677:1 21707:5 21713:1 21715:1 21718:1 21777:1 21820:2
1 5:2 10:1 17:1 23:1 35:1 44:1 53:1 66:1 77:1 83:1 91:1 99:1 101:1 103:3 107:1 123:1 124:1 128:2 131:1 134:1 140:1 163:1 181:1 217:1 233:1 251:1 255:1 260:3 261:1 266:1 270:2 280:1 296:2 308:1 309:1 319:2 320:1 324:3 337:1 343:6 369:1 370:1 401:2 411:1 419:1 432:1 439:7 454:1 461:3 466:1 467:1 468:2 476:1 490:1 501:2 510:2 523:3 527:1 547:1 563:4 564:3 571:1 573:3 578:1 582:3 583:1 593:1 600:1 602:2 605:2 626:2 628:3 635:1 644:2 660:1 663:5 664:1 667:5 677:1 685:2 698:1 706:1 717:2 742:1 744:1 747:1 749:1 753:1 761:1 762:6 778:3 790:1 797:2 806:3 827:3 835:1 849:1 854:2 858:1 861:1 869:1 883:1 889:1 893:1 894:1 901:2 908:3 918:1 943:1 954:1 956:4 959:2 964:1 989:2 1003:1 1004:2 1005:1 1018:2 1030:1 1034:1 1037:4 1040:1 1045:1 1056:1 1073:4 1074:1 1079:1 1081:1 1099:1 1111:1 1124:1 1142:1 1152:2 1159:1 1160:2 1200:1 1205:2 1209:1 1216:1 1229:2 1230:1 1237:3 1248:2 1258:1 1261:2 1270:1 1273:1 1278:1 1281:1 1282:3 1308:1 1320:6 1322:3 1331:1 1343:1 1349:1 1351:1 1356:1 1358:4 1367:1 1375:1 1389:1 1392:1 1402:15 1407:4 1418:1 1419:3 1430:1 1435:1 1441:4 1453:1 1457:15 1459:1 1463:1 1474:1 1475:4 1476:2 1478:8 1481:1 1482:1 1484:1 1486:2 1488:4 1489:3 1492:1 1507:2 1530:5 1531:4 1536:3 1549:1 1550:1 1598:1 1600:2 1622:1 1624:1 1642:1 1644:1 1651:2 1653:1 1659:3 1683:2 1689:1 1698:1 1712:2 1715:1 1724:1 1740:1 1743:1 1757:1 1771:1 1774:2 1779:1 1781:1 1784:1 1785:1 1789:1 1790:1 1797:2 1800:1 1834:3 1866:1 1875:1 1877:3 1879:2 1884:6 1885:2 1886:2 1887:1 1888:6 1889:1 1890:1 1892:2 1893:2 1894:1 1895:1 1898:2 1899:3 1903:1 1904:1 1908:1 1911:1 1912:2 1913:1 1920:1 1921:1 1927:1 1940:1 1947:1 1950:1 1951:1 1953:2 1962:1 1967:2 1973:2 1985:1 1999:1 2007:2 2009:1 2024:1 2025:1 2036:1 2055:1 2057:1 2077:1 2079:1 2090:1 2102:1 2105:1 2107:1 2112:2 2113:1 2114:1 2128:1 2142:1 2161:2 2167:1 2171:1 2172:1 2179:1 2180:2 2181:2 2199:1 2208:1 2209:2 2215:1 2233:1 2235:1 2240:3 2267:1 2271:1 2274:1 2276:1 2281:1 2288:1 2290:1 2291:2 2293:1 2306:1 2314:1 2333:1 2337:1 2340:1 2345:4 2356:7 2359:2 2375:1 2376:1 2412:2 2425:1 2427:1 2429:1 2434:1 2436:1 2441:2 2456:1 2458:1 2460:2 2465:1 2469:1 2472:2 2485:2 2486:2 2489:1 2498:1 2499:1 2503:1 2506:5 2507:1 2510:1 2511:2 2515:1 2520:2 2522:1 2527:2 2532:1 2545:1 2552:2 2553:1 2562:1 2563:4 2567:1 2572:2 2574:1 2575:1 2580:1 2583:1 2595:3 2603:1 2604:2 2613:3 2619:2 2621:1 2623:1 2626:1 2635:1 2654:1 2656:5 2664:1 2684:1 2691:1 2695:3 2701:2 2704:14 2706:1 2715:2 2718:6 2733:1 2739:1 2749:1 2750:4 2752:3 2753:4 2755:1 2768:1 2775:1 2791:1 2795:2 2798:4 2800:1 2801:1 2804:1 2821:1 2829:2 2834:1 2835:1 2840:3 2844:2 2845:1 2847:1 2862:2 2865:1 2907:1 2913:1 2919:1 2927:8 2930:2 2932:1 2941:1 2945:2 2949:4 2953:1 2958:1 2959:1 2965:1 2968:2 2971:4 2978:1 2988:1 2989:1 2992:1 2997:1 3005:1 3024:1 3025:1 3027:2 3032:1 3043:1 3057:1 3059:2 3062:1 3065:1 3066:1 3071:2 3075:1 3093:2 3098:1 3115:1 3124:5 3138:1 3153:11 3156:2 3161:1 3166:1 3179:1 3184:1 3190:1 3194:1 3208:2 3216:1 3228:1 3242:1 3263:2 3271:3 3274:2 3275:1 3276:3 3290:1 3295:1 3299:1 3302:2 3308:1 3322:2 3325:2 3326:1 3329:3 3331:5 3332:1 3335:1 3337:2 3340:2 3341:2 3343:1 3344:2 3346:4 3353:1 3354:5 3355:3 3358:5 3360:7 3362:1 3373:1 3391:1 3412:1 3414:1 3417:1 3429:1 3439:1 3441:1 3445:1 3450:3 3451:3 3455:1 3465:2 3470:1 3475:2 3477:1 3488:1 3493:1 3500:1 3509:2 3521:2 3523:1 3524:1 3538:1 3539:1 3541:2 3548:1 3549:1 3552:1 3557:1 3576:1 3599:1 3613:1 3622:1 3631:1 3633:1 3644:3 3661:1 3672:1 3674:1 3679:3 3684:2 3692:1 3697:1 3711:1 3712:1 3717:1 3718:1 3722:1 3732:1 3747:1 3749:2 3755:1 3759:1 3760:3 3767:2 3772:1 3775:6 3777:3 3781:1 3787:1 3788:1 3789:1 3790:1 3793:1 3800:3 3806:2 3808:2 3815:2 3819:1 3821:1 3825:1 3828:10 3856:4 3857:1 3858:1 3865:1 3887:1 3888:2 3893:2 3896:1 3899:1 3900:1 3901:2 3903:2 3904:1 3910:1 3916:1 3921:1 3924:1 3925:6 3927:1 3928:1 3939:2 3948:2 3957:9 3965:4 3966:1 3979:2 3981:1 3986:1 3988:2 3990:1 3997:3 3998:2 4009:2 4025:1 4026:2 4032:3 4036:1 4038:1 4041:1 4048:1 4065:3 4071:1 4090:1 4097:1 4101:2 4103:1 4104:2 4106:2 4118:1 4121:3 4122:1 4129:1 4131:1 4133:7 4136:1 4143:2 4147:1 4150:1 4158:1 4176:1 4182:1 4198:1 4199:1 4200:1 4216:1 4227:1 4230:1 4237:1 4239:1 4242:3 4246:2 4247:1 4264:1 4265:4 4272:1 4277:1 4279:15 4311:3 4312:1 4315:1 4316:1 4317:1 4318:1 4326:2 4333:3 4338:1 4358:19 4361:2 4381:1 4382:1 4387:1 4398:2 4400:3 4426:1 4427:1 4429:2 4438:1 4440:1 4442:1 4447:1 4459:1 4461:1 4482:1 4489:1 4498:1 4505:1 4513:1 4524:1 4532:1 4534:5 4555:1 4565:3 4573:1 4582:1 4584:1 4586:1 4591:1 4600:2 4627:1 4641:1 4643:2 4661:1 4663:1 4667:1 4680:2 4698:1 4717:2 4731:1 4737:3 4757:1 4770:2 4771:1 4786:1 4792:1 4794:2 4797:1 4803:1 4811:1 4841:1 4854:1 4855:1 4863:1 4866:1 4868:2 4869:1 4884:1 4895:1 4910:6 4912:1 4933:1 4936:3 4944:1 4958:1 4969:1 5004:1 5009:1 5018:2 5028:1 5032:15 5051:1 5058:1 5059:1 5074:1 5082:1 5083:1 5087:1 5089:1 5096:1 5103:1 5107:1 5133:1 5149:1 5156:1 5182:2 5187:1 5199:1 5205:1 5206:13 5218:1 5220:2 5222:2 5223:2 5226:1 5244:1 5249:1 5250:1 5251:1 5257:14 5274:4 5275:1 5277:1 5288:1 5290:5 5293:1 5307:1 5308:2 5310:1 5317:1 5321:3 5331:2 5338:2 5348:1 5369:1 5386:1 5395:1 5396:2 5418:1 5422:1 5429:2 5434:1 5438:2 5453:3 5456:4 5461:1 5492:1 5495:1 5499:2 5506:2 5508:1 5528:2 5530:1 5533:2 5534:1 5547:1 5555:3 5557:1 5572:2 5574:1 5577:3 5579:4 5583:1 5587:2 5591:1 5592:2 5593:2 5606:4 5608:1 5618:1 5621:2 5624:2 5625:2 5647:1 5651:2 5656:2701 5670:1 5673:1 5678:1 5679:2 5682:2 5687:1 5696:1 5700:1 5714:2 5716:1 5726:6 5728:4 5741:2 5761:1 5765:1 5772:1 5779:1 5784:2 5787:1 5793:1 5814:2 5816:1 5824:1 5829:2 5846:1 5855:1 5862:2 5866:1 5870:1 5873:1 5894:2 5901:1 5904:1 5905:1 5915:2 5927:1 5939:4 5940:1 5941:1 5944:1 5945:1 5947:2 5949:1 5952:1 5955:2 5981:1 5983:1 5987:2 5992:5 5993:4 5997:1 6004:1 6015:1 6023:1 6025:1 6033:1 6050:1 6057:1 6066:1 6067:1 6088:1 6095:1 6101:1 6106:7 6108:1 6109:1 6142:3 6156:1 6165:2 6171:1 6176:3 6179:2 6184:1 6185:1 6189:2 6192:1 6201:2 6210:2 6240:1 6244:1 6247:2 6248:3 6268:4 6295:1 6296:1 6302:1 6304:1 6308:3 6312:1 6335:2 6343:2 6350:1 6359:1 6366:1 6367:1 6373:2 6376:1 6378:3 6381:1 6397:1 6399:1 6403:1 6410:2 6414:1 6417:1 6435:1 6445:1 6449:3 6452:1 6460:1 6468:1 6479:2 6488:5 6507:1 6513:1 6518:1 6521:1 6540:1 6550:2 6558:2 6567:4 6570:1 6577:2 6578:1 6590:2 6593:1 6596:1 6597:1 6603:4 6606:1 6612:2 6614:2 6631:4 6642:3 6655:1 6662:1 6673:3 6674:2 6700:1 6702:2 6708:3 6709:3 6711:1 6713:1 6716:1 6728:3 6732:1 6733:2 6746:8 6747:1 6756:1 6769:1 6776:2 6792:1 6793:1 6800:1 6804:1 6820:1 6822:1 6823:1 6832:2 6833:1 6842:1 6846:2 6870:5 6871:1 6892:14 6894:2 6899:1 6901:1 6906:1 6914:1 6916:1 6927:1 6936:1 6948:1 6957:1 6961:1 6975:4 6976:1 6986:1 6989:2 6997:1 6998:2 7000:1 7012:4 7013:1 7023:1 7028:1 7038:2 7066:1 7075:4 7084:3 7095:2 7098:1 7107:3 7112:1 7117:4 7119:7 7121:3 7124:1 7129:2 7131:2 7132:1 7136:1 7138:2 7140:6 7142:4 7146:2 7147:7 7154:2 7158:5 7159:1 7162:1 7171:3 7175:1 7199:1 7201:1 7203:2 7206:2 7211:1 7213:2 7215:1 7229:1 7248:1 7253:1 7264:1 7271:1 7272:1 7274:1 7283:1 7300:2 7315:1 7340:1 7345:1 7360:1 7387:1 7388:3 7404:1 7405:2 7406:1 7408:1 7419:1 7421:3 7426:1 7458:1 7461:1 7462:1 7466:1 7470:1 7480:1 7488:2 7497:1 7504:1 7506:1 7516:1 7519:1 7520:1 7529:1 7530:2 7545:1 7555:1 7563:1 7569:1 7572:2 7575:4 7580:2 7588:1 7589:4 7636:1 7665:1 7668:1 7682:2 7689:3 7691:1 7693:1 7697:2 7699:2 7700:2 7702:2 7712:1 7720:1 7722:2 7724:3 7732:3 7739:1 7740:2 7741:2 7744:1 7768:5 7778:1 7779:2 7792:1 7797:1 7812:1 7818:1 7821:2 7823:4 7835:5 7853:1 7859:1 7860:1 7872:2 7873:1 7878:1 7891:1 7898:1 7905:3 7930:1 7931:1 7938:1 7940:1 7944:2 7953:2 7965:1 7969:1 7974:3 7975:19 7977:2 7985:1 7991:1 7994:5 8003:1 8006:1 8022:1 8033:1 8035:1 8040:1 8059:2 8070:1 8071:1 8075:1 8087:1 8093:1 8095:1 8104:1 8108:1 8136:1 8140:1 8141:1 8145:1 8154:1 8159:1 8179:1 8188:1 8195:2 8202:1 8208:1 8213:2 8221:1 8227:1 8250:5 8251:1 8254:2 8257:1 8259:3 8261:4 8278:1 8280:1 8299:2 8312:3 8327:2 8330:1 8333:1 8342:2 8345:6 8348:1 8359:2 8364:2 8377:1 8378:1 8391:2 8428:8 8433:2 8439:1 8444:1 8450:1 8462:1 8488:1 8489:1 8494:1 8497:1 8512:1 8514:1 8518:1 8520:1 8521:1 8532:2 8533:1 8534:1 8554:1 8570:1 8572:1 8575:1 8576:1 8590:4 8601:1 8608:2 8619:2 8621:3 8646:2 8647:2 8651:2 8653:1 8663:1 8668:1 8673:1 8674:1 8675:1 8679:6 8682:1 8683:1 8687:1 8688:1 8693:2 8697:2 8700:1 8705:1 8707:1 8708:1 8709:1 8752:1 8754:1 8755:1 8756:1 8762:1 8765:2 8766:2 8767:1 8772:1 8775:1 8776:2 8777:3 8783:12 8788:2 8792:2 8807:2 8814:1 8828:2 8834:1 8852:3 8862:5 8863:1 8867:2 8880:2 8885:1 8894:1 8899:1 8909:2 8913:1 8923:1 8931:1 8943:2 8952:1 8958:3 8967:2 8969:2 8970:1 8981:5 8985:1 8994:2 8997:6 8999:1 9001:1 9003:1 9008:2 9015:1 9027:3 9059:2 9068:1 9084:1 9089:1 9095:1 9111:1 9113:1 9121:2 9128:1 9135:2 9139:2 9143:2 9148:2 9151:1 9152:2 9154:1 9155:1 9157:1 9160:2 9162:3 9163:1 9168:1 9169:1 9171:2 9173:1 9176:2 9179:2 9181:4 9184:3 9203:1 9207:2 9232:2 9245:1 9246:4 9258:1 9260:1 9262:4 9263:1 9281:2 9285:1 9293:1 9299:1 9300:1 9311:2 9319:1 9330:1 9333:1 9340:1 9345:1 9347:1 9370:1 9387:1 9396:1 9399:1 9402:2 9407:2 9422:1 9424:1 9438:1 9440:1 9442:4 9445:2 9468:1 9480:1 9489:1 9547:1 9554:1 9568:1 9572:1 9580:1 9585:2 9587:1 9589:1 9598:2 9599:2 9604:1 9605:1 9612:1 9615:1 9618:1 9630:1 9634:2 9655:3 9657:1 9661:1 9668:1 9679:1 9688:2 9694:1 9703:2 9714:1 9721:1 9726:1 9731:1 9735:1 9737:1 9751:1 9753:1 9768:2 9772:1 9773:1 9776:1 9778:2 9782:1 9784:1 9801:1 9806:2 9814:2 9823:2 9824:1 9826:1 9831:2 9834:1 9835:1 9844:1 9849:2 9871:1 9873:14 9883:2 9885:2 9890:2 9912:2 9914:1 9915:1 9922:1 9932:1 9945:1 9946:1 9948:1 9963:1 9966:1 9968:1 9974:1 9985:8 9993:1 9996:2 10007:3 10011:1 10020:1 10028:1 10043:2 10065:1 10066:1 10070:2 10078:1 10080:1 10089:1 10102:2 10109:1 10116:1 10121:4 10125:3 10128:1 10129:3 10130:1 10144:2 10146:2 10152:1 10161:2 10165:1 10166:1 10168:1 10175:1 10177:1 10193:1 10197:1 10207:1 10208:1 10209:1 10214:1 10216:3 10217:4 10221:2 10222:1 10261:1 10281:2 10285:1 10287:1 10288:1 10291:1 10304:1 10314:1 10330:6 10340:2 10364:1 10379:1 10384:4 10389:1 10390:4 10393:3 10394:3 10395:1 10396:1 10403:1 10407:2 10411:1 10412:1 10415:2 10416:3 10417:2 10433:1 10436:1 10438:4 10439:5 10440:1 10441:1 10445:1 10455:5 10458:1 10460:1 10462:1 10463:1 10470:1 10485:1 10512:1 10514:1 10520:1 10524:2 10532:2 10533:2 10535:1 10541:1 10573:1 10574:1 10583:4 10595:4 10612:1 10617:1 10630:1 10650:2 10656:2 10658:3 10662:1 10664:1 10670:1 10674:1 10676:1 10677:1 10683:1 10684:1 10689:1 10696:1 10699:1 10706:1 10716:1 10721:1 10727:1 10742:1 10743:1 10755:1 10775:1 10777:1 10783:1 10785:1 10790:2 10792:1 10801:1 10803:1 10808:1 10812:1 10817:1 10839:2 10843:1 10845:1 10848:1 10852:5 10854:1 10861:2 10865:1 10879:1 10881:4 10885:3 10896:1 10907:1 10918:1 10920:1 10932:2 10935:1 10940:1 10941:1 10943:4 10953:2 10962:1 10966:1 10969:2 10970:5 10973:2 10975:9 10978:1 10980:3 10984:1 10988:1 10989:1 10990:1 10993:1 10999:3 11000:1 11003:1 11004:1 11021:1 11022:1 11043:6 11045:2 11051:2 11057:8 11059:1 11076:1 11101:1 11104:1 11108:3 11127:1 11138:5 11140:1 11143:1 11150:1 11153:1 11160:2 11163:1 11166:1 11176:1 11180:1 11183:1 11185:1 11187:1 11194:1 11209:1 11210:2 11215:1 11216:1 11223:1 11225:2 11237:1 11248:1 11249:1 11253:3 11257:1 11266:1 11272:1 11274:1 11288:1 11316:3 11323:1 11329:4 11331:6 11332:6 11334:2 11349:2 11352:3 11354:1 11358:3 11364:4 11368:2 11371:3 11373:1 11374:1 11384:1 11390:1 11393:1 11404:1 11415:4 11416:2 11417:1 11419:1 11424:4 11436:45 11438:2 11442:1 11448:1 11455:3 11457:1 11463:3 11470:10 11472:6 11473:1 11481:2 11486:1 11506:1 11516:1 11519:1 11522:1 11525:1 11527:1 11534:1 11549:1 11565:1 11574:3 11575:2 11578:1 11590:1 11594:2 11605:2 11618:3 11635:1 11639:1 11643:1 11653:1 11655:1 11656:1 11665:1 11687:1 11691:1 11694:2 11712:3 11713:10 11724:2 11743:2 11755:2 11760:4 11775:1 11776:1 11781:3 11783:1 11784:3 11787:1 11794:2 11810:1 11838:1 11844:1 11845:1 11846:1 11847:1 11862:1 11863:1 11867:2 11869:2 11878:2 11896:1 11898:1 11900:1 11940:1 11941:1 11947:1 11948:1 11949:1 11963:1 11983:1 11989:1 11994:1 11998:1 12012:1 12015:1 12016:1 12021:2 12028:1 12030:1 12033:1 12043:2 12051:1 12055:1 12061:1 12070:1 12076:1 12077:2 12089:1 12100:1 12107:1 12118:1 12119:1 12127:3 12144:24 12156:1 12176:3 12183:3 12190:1 12194:1 12234:1 12242:1 12254:2 12267:6 12269:1 12272:1 12281:1 12286:1 12313:3 12314:2 12322:5 12345:1 12348:1 12360:1 12365:3 12366:3 12370:1 12371:2 12374:1 12381:1 12384:2 12389:2 12390:3 12402:1 12408:1 12419:4 12424:2 12426:4 12442:3 12450:1 12459:1 12474:2 12479:1 12486:1 12488:1 12493:1 12494:1 12501:1 12516:1 12520:1 12536:1 12544:1 12545:1 12549:1 12556:1 12568:2 12575:1 12580:2 12582:1 12583:1 12588:1 12596:3 12630:1 12637:1 12641:2 12664:2 12676:1 12685:2 12694:1 12695:1 12703:1 12711:1 12718:1 12725:1 12727:2 12731:2 12734:3 12736:1 12738:1 12745:1 12750:1 12757:1 12758:1 12772:1 12775:1 12784:1 12789:2 12801:3 12804:2 12805:1 12809:2 12811:6 12814:1 12824:2 12830:3 12840:1 12842:1 12847:1 12861:1 12866:1 12871:1 12872:1 12883:1 12892:2 12899:1 12902:1 12911:1 12919:1 12925:1 12926:4 12929:1 12931:1 12934:1 12938:1 12944:1 12946:1 12947:4 12948:1 12949:1 12951:1 12956:1 12962:2 12982:1 12992:1 13000:1 13005:1 13016:2 13019:1 13048:1 13050:1 13064:1 13068:1 13082:1 13091:1 13106:2 13121:2 13136:1 13139:1 13160:3 13178:2 13179:1 13206:1 13208:1 13209:1 13213:3 13242:3 13245:1 13256:2 13276:1 13278:1 13280:2 13302:1 13304:1 13311:1 13313:2 13316:1 13318:1 13325:1 13326:6 13333:1 13334:1 13337:1 13347:1 13358:1 13371:1 13374:2 13378:1 13391:6 13393:1 13405:1 13408:1 13413:1 13421:1 13425:1 13437:1 13441:11 13443:6 13445:2 13456:1 13471:2 13474:2 13502:1 13521:1 13524:3 13531:1 13536:1 13545:1 13549:1 13554:3 13559:1 13572:1 13581:1 13583:2 13590:1 13596:1 13600:2 13602:2 13604:3 13605:2 13616:1 13625:1 13640:1 13659:2 13663:1 13680:1 13692:2 13693:2 13696:1 13708:4 13711:1 13714:5 13720:1 13735:1 13741:3 13745:2 13750:1 13751:1 13752:1 13766:4 13803:1 13806:1 13807:7 13819:1 13836:1 13843:3 13860:1 13867:1 13873:1 13875:1 13882:1 13887:5 13896:3 13904:1 13905:1 13906:1 13912:1 13915:3 13922:1 13924:1 13937:1 13942:1 13952:1 13967:3 13990:1 14004:1 14007:1 14016:1 14024:2 14028:1 14032:7 14036:1 14037:2 14043:2 14081:3 14089:1 14094:1 14096:1 14109:3 14120:1 14130:1 14140:1 14144:1 14151:1 14175:1 14179:1 14181:1 14186:1 14189:1 14193:1 14195:1 14198:3 14199:3 14201:3 14204:3 14206:1 14208:1 14209:2 14212:1 14217:2 14219:1 14220:1 14221:1 14229:1 14242:1 14243:1 14252:1 14254:2 14258:1 14262:6 14280:1 14282:1 14285:1 14295:1 14304:2 14307:1 14314:1 14315:1 14319:1 14321:1 14326:1 14328:1 14363:12 14368:2 14369:6 14400:1 14401:1 14404:2 14410:1 14412:1 14414:1 14415:1 14432:1 14433:2 14436:1 14437:1 14443:1 14449:3 14458:2 14470:1 14482:1 14485:1 14498:1 14499:1 14513:1 14515:1 14559:1 14564:1 14565:1 14581:1 14586:1 14617:1 14625:1 14629:1 14631:1 14633:1 14637:1 14642:5 14662:1 14668:4 14678:4 14679:1 14683:2 14697:2 14700:1 14707:1 14709:1 14717:1 14720:1 14725:2 14729:2 14738:1 14750:2 14756:3 14758:1 14759:1 14763:1 14769:2 14771:2 14776:1 14821:1 14825:1 14832:2 14834:1 14843:1 14844:2 14845:2 14850:1 14852:1 14857:1 14871:1 14876:1 14879:1 14889:1 14895:4 14896:4 14900:1 14931:2 14936:1 14945:2 14951:1 14954:1 14959:12 14964:2 14977:2 14979:2 14985:2 14988:1 14997:1 15003:2 15032:2 15033:1 15037:1 15048:1 15052:1 15054:1 15055:1 15073:1 15099:18 15100:2 15108:1 15133:1 15136:2 15138:1 15155:1 15165:1 15166:1 15170:1 15184:1 15189:1 15198:1 15201:1 15202:1 15205:1 15208:1 15210:4 15222:1 15224:1 15226:1 15229:2 15250:1 15256:2 15260:1 15265:1 15281:2 15285:1 15287:1 15298:1 15300:1 15301:4 15306:1 15307:1 15309:1 15315:1 15320:3 15332:1 15339:1 15340:1 15341:1 15346:1 15348:1 15359:4 15360:1 15369:1 15384:1 15385:1 15391:1 15416:1 15427:1 15435:1 15436:1 15441:1 15447:1 15448:2 15456:2 15458:1 15479:2 15488:1 15490:1 15492:1 15504:1 15514:1 15519:3 15529:1 15539:2 15542:1 15544:1 15548:10 15550:1 15552:7 15554:4 15569:2 15573:3 15577:1 15578:1 15584:1 15589:2 15591:1 15595:1 15597:2 15607:1 15618:2 15621:1 15633:7 15634:2 15654:1 15659:2 15663:1 15664:1 15670:1 15674:4 15699:1 15703:1 15712:6 15715:1 15722:1 15723:1 15727:1 15732:3 15742:1 15745:2 15751:1 15753:2 15754:6 15756:1 15774:1 15787:1 15795:2 15796:1 15799:1 15806:1 15814:3 15821:1 15835:1 15860:1 15875:2 15879:2 15881:1 15894:1 15896:2 15913:1 15918:1 15924:1 15931:1 15958:1 15992:1 16018:1 16020:2 16027:1 16030:1 16031:1 16040:1 16045:1 16050:1 16051:2 16054:2 16058:1 16059:2 16067:1 16071:1 16074:1 16075:5 16078:1 16080:5 16083:1 16090:1 16093:2 16100:2 16101:2 16105:5 16106:1 16110:1 16114:4 16117:1 16119:1 16127:3 16130:1 16131:3 16134:1 16137:1 16140:1 16142:1 16163:2 16172:1 16176:1 16177:1 16206:1 16207:1 16211:3 16225:7 16240:1 16246:1 16249:1 16260:1 16262:1 16269:1 16273:7 16278:1 16285:1 16297:2 16305:1 16312:1 16339:1 16357:1 16364:1 16374:3 16376:1 16391:1 16393:1 16395:1 16399:1 16411:1 16414:1 16418:1 16427:1 16430:1 16431:1 16443:1 16446:3 16473:1 16498:1 16502:1 16519:1 16523:1 16527:1 16531:2 16535:2 16551:1 16552:3 16553:2 16560:1 16575:2 16580:2 16581:1 16584:1 16585:2 16586:1 16596:3 16600:1 16601:1 16602:2 16621:1 16628:3 16631:2 16650:1 16658:1 16676:15 16678:1 16679:1 16708:1 16712:1 16725:1 16727:1 16731:4 16745:1 16749:2 16750:2 16758:2 16765:1 16780:1 16805:1 16810:2 16816:2 16823:1 16828:2 16843:1 16844:2 16850:1 16851:1 16852:1 16867:2 16869:1 16874:2 16890:1 16893:3 16898:1 16921:1 16936:4 16949:1 16951:1 16955:1 16981:1 16987:1 16997:1 16999:2 17005:1 17008:1 17028:1 17029:1 17033:1 17045:1 17052:3 17053:1 17056:1 17062:15 17063:2 17068:1 17071:4 17076:1 17078:2 17079:1 17083:1 17084:1 17089:1 17092:1 17099:2 17111:1 17126:1 17131:1 17132:1 17133:1 17137:1 17144:2 17151:5 17156:3 17168:1 17183:2 17189:1 17201:1 17202:1 17209:1 17230:1 17231:1 17235:2 17237:2 17242:1 17259:4 17263:3 17266:2 17268:3 17273:1 17279:2 17287:4 17301:1 17314:1 17332:1 17339:1 17345:1 17351:1 17379:1 17390:1 17396:1 17397:1 17403:5 17406:1 17414:1 17417:1 17429:2 17432:1 17438:1 17453:1 17461:1 17463:1 17468:2 17495:2 17501:2 17504:2 17518:2 17533:2 17543:1 17547:2 17549:2 17553:1 17554:1 17555:2 17565:1 17566:2 17572:1 17591:6 17594:1 17604:1 17608:1 17609:1 17616:1 17627:1 17632:1 17634:2 17640:1 17643:1 17652:1 17656:1 17660:1 17670:2 17672:1 17675:2 17676:2 17695:1 17696:1 17753:1 17759:1 17769:1 17774:5 17776:2 17798:1 17799:1 17801:1 17809:3 17810:2 17818:1 17823:1 17826:1 17855:1 17881:1 17893:1 17894:1 17897:5 17922:1 17925:1 17929:2 17930:1 17935:1 17936:1 17971:1 17986:1 17989:1 17996:1 18002:1 18003:1 18012:1 18022:1 18023:1 18027:1 18032:3 18038:1 18045:1 18053:1 18070:1 18074:2 18077:2 18080:1 18099:3 18104:1 18126:1 18129:1 18141:1 18143:1 18150:1 18153:2 18175:1 18179:1 18180:3 18198:1 18200:1 18211:1 18227:2 18230:1 18245:2 18258:1 18263:1 18264:3 18269:1 18272:1 18274:2 18290:1 18302:1 18303:1 18310:2 18319:1 18333:1 18339:1 18347:1 18357:2 18358:1 18360:2 18362:1 18380:3 18383:2 18386:1 18390:1 18393:1 18395:1 18398:2 18399:1 18415:1 18432:1 18434:1 18438:1 18441:1 18451:1 18453:1 18455:1 18459:2 18465:1 18499:1 18523:5 18525:1 18531:3 18534:1 18535:2 18542:1 18545:1 18546:2 18556:1 18564:1 18566:1 18575:1 18586:1 18603:1 18606:14 18613:4 18616:2 18627:2 18629:1 18634:1 18638:2 18644:2 18652:1 18656:1 18665:2 18666:1 18677:1 18685:1 18687:2 18689:3 18692:1 18693:1 18697:1 18703:1 18707:1 18709:3 18710:1 18711:4 18713:1 18717:3 18719:1 18725:2 18729:1 18735:1 18742:2 18751:1 18752:2 18760:1 18763:1 18765:1 18769:1 18770:1 18780:1 18791:2 18796:1 18807:1 18810:1 18815:1 18835:1 18851:4 18865:1 18872:1 18881:2 18893:1 18897:1 18904:2 18909:2 18918:1 18947:1 18948:1 18973:1 19008:1 19013:1 19014:2 19015:1 19025:2 19026:1 19051:1 19053:1 19055:1 19062:1 19064:2 19085:1 19093:2 19114:1 19115:1 19117:3 19119:1 19121:3 19126:5 19152:2 19155:1 19168:1 19186:1 19215:6 19228:1 19235:1 19270:1 19278:1 19280:1 19292:1 19296:1 19311:1 19314:1 19315:2 19324:4 19339:1 19344:2 19353:2 19364:1 19365:1 19367:2 19386:6 19388:2 19391:1 19407:1 19413:1 19418:2 19444:1 19450:4 19452:1 19454:1 19471:1 19484:1 19495:1 19496:1 19498:2 19503:1 19506:1 19508:1 19509:1 19512:1 19524:9 19525:1 19535:2 19536:3 19537:1 19538:2 19549:1 19551:2 19555:1 19556:1 19558:2 19568:1 19578:1 19582:1 19586:1 19595:1 19597:1 19598:1 19600:5 19602:2 19615:1 19616:1 19621:1 19630:1 19633:1 19638:2 19645:2 19649:2 19652:1 19655:16 19659:1 19664:5 19667:1 19680:1 19692:1 19696:3 19700:1 19715:3 19718:2 19720:1 19721:1 19724:3 19727:3 19733:1 19747:1 19757:2 19777:2 19785:1 19786:1 19792:3 19816:3 19829:1 19833:1 19851:1 19857:6 19863:1 19865:1 19891:1 19896:1 19903:2 19908:3 19910:1 19913:1 19918:4 19929:5 19936:3 19965:1 19974:1 19975:5 19977:1 19984:1 19991:3 19992:1 19995:1 19998:1 19999:1 20015:1 20020:1 20022:1 20030:1 20034:6 20035:1 20037:1 20038:2 20039:1 20040:2 20041:1 20044:1 20047:1 20049:7 20050:2 20052:1 20075:1 20076:1 20078:1 20081:1 20101:1 20102:6 20109:1 20117:2 20132:1 20160:1 20170:1 20171:1 20185:1 20188:1 20209:1 20210:2 20216:2 20223:1 20227:1 20243:1 20251:1 20256:1 20258:1 20262:1 20266:1 20267:2 20276:1 20277:1 20284:1 20298:4 20305:3 20363:1 20366:1 20368:1 20378:1 20379:1 20380:1 20382:1 20383:1 20387:2 20390:7 20393:1 20396:1 20402:1 20409:1 20413:1 20430:2 20440:2 20451:1 20453:1 20464:1 20466:1 20469:1 20482:7 20494:5 20519:3 20529:1 20552:1 20580:1 20588:1 20589:2 20598:1 20603:1 20607:1 20614:1 20621:1 20628:1 20633:1 20636:1 20669:1 20670:1 20697:1 20706:1 20713:1 20718:1 20724:1 20734:1 20735:1 20746:1 20758:1 20792:1 20817:1 20822:2 20828:2 20844:1 20845:2 20846:1 20848:2 20851:5 20855:2 20874:1 20875:1 20878:1 20880:1 20892:1 20903:1 20912:1 20933:1 20940:1 20955:1 20956:1 20966:1 20980:1 21034:3 21072:1 21080:3 21083:4 21096:1 21099:2 21107:1 21110:2 21111:2 21113:1 21118:2 21121:1 21142:1 21145:1 21151:1 21153:1 21163:1 21180:1 21186:1 21188:2 21190:1 21202:1 21213:3 21216:1 21223:2 21228:1 21244:1 21262:1 21265:1 21271:4 21274:1 21276:2 21284:1 21298:2 21304:1 21308:1 21315:1 21318:1 21333:1 21339:1 21341:1 21349:2 21353:1 21361:1 21362:1 21374:3 21378:1 21379:2 21386:1 21402:1 21404:1 21443:1 21446:1 21451:3 21459:1 21463:1 21464:1 21470:2 21494:1 21510:3 21512:1 21538:2 21539:1 21540:1 21547:1 21551:1 21568:1 21579:1 21581:1 21586:2 21589:2 21613:1 21619:1 21623:1 21626:3 21635:3 21637:3 21639:1 21640:3 21646:1 21667:1 21674:2 21677:1 21707:5 21713:1 21715:1 21718:1 21777:1 21820:2
1 5:2 10:1 17:1 23:1 35:1 44:1 53:1 66:1 77:1 83:1 91:1 99:1 101:1 103:3 107:1 123:1 124:1 128:2 131:1 134:1 140:1 163:1 181:1 217:1 233:1 251:1 255:1 260:3 261:1 266:1 270:2 280:1 296:2 308:1 309:1 319:2 320:1 324:3 337:1 343:6 369:1 370:1 401:2 411:1 419:1 432:1 439:7 454:1 461:3 466:1 467:1 468:2 476:1 490:1 501:2 510:2 523:3 527:1 547:1 563:4 564:3 571:1 573:3 578:1 582:3 583:1 593:1 600:1 602:2 605:2 626:3 628:3 635:1 644:2 660:1 663:5 664:1 667:5 677:1 685:2 698:1 706:1 717:2 742:1 744:1 747:1 749:1 753:1 761:1 762:6 778:3 790:1 797:2 806:3 827:3 835:1 849:1 854:2 858:1 861:1 869:1 883:1 889:1 893:1 894:1 901:2 908:3 918:1 943:1 954:1 956:4 959:2 964:1 989:2 1003:1 1004:2 1005:1 1018:2 1030:1 1034:1 1037:4 1040:1 1045:1 1056:1 1073:4 1074:1 1079:1 1081:1 1099:1 1111:1 1124:1 1142:1 1152:2 1159:1 1160:2 1200:1 1205:2 1209:1 1216:1 1229:2 1230:1 1237:3 1248:2 1258:1 1261:2 1270:1 1273:1 1278:1 1281:1 1282:3 1308:1 1320:6 1322:3 1331:1 1343:1 1349:1 1351:1 1356:1 1358:4 1367:1 1375:1 1389:1 1392:1 1402:16 1407:4 1418:1 1419:3 1430:1 1435:1 1441:4 1453:1 1457:15 1459:1 1463:1 1474:1 1475:4 1476:2 1478:8 1481:1 1482:1 1484:1 1486:2 1488:4 1489:3 1492:1 1507:2 1530:5 1531:4 1536:3 1549:1 1550:1 1598:1 1600:2 1622:1 1624:1 1642:1 1644:1 1651:2 1653:1 1659:3 1683:2 1689:1 1698:1 1712:2 1715:1 1724:1 1740:1 1743:1 1757:1 1771:1 1774:2 1779:1 1781:1 1784:1 1785:1 1789:1 1790:1 1797:2 1800:1 1834:3 1866:1 1875:1 1877:3 1879:2 1884:6 1885:2 1886:2 1887:1 1888:6 1889:1 1890:1 1892:2 1893:2 1894:1 1895:1 1898:2 1899:4 1903:1 1904:1 1908:1 1911:1 1912:2 1913:1 1920:1 1921:1 1927:1 1940:1 1947:1 1950:1 1951:1 1953:2 1962:1 1967:2 1973:2 1985:1 1999:2 2007:2 2009:1 2024:1 2025:1 2036:1 2055:1 2057:1 2077:1 2079:1 2090:1 2102:1 2105:1 2107:1 2112:2 2113:1 2114:1 2128:1 2142:1 2161:2 2167:1 2171:1 2172:1 2179:1 2180:2 2181:2 2199:1 2208:1 2209:2 2215:1 2233:1 2235:1 2240:3 2267:1 2271:1 2274:1 2276:1 2281:1 2288:1 2290:1 2291:2 2293:1 2306:1 2314:1 2333:1 2337:1 2340:1 2345:4 2356:7 2359:2 2375:1 2376:1 2412:2 2425:1 2427:1 2429:1 2434:1 2436:2 2441:2 2456:1 2458:1 2460:2 2465:1 2469:1 2472:2 2485:2 2486:2 2489:1 2498:1 2499:1 2503:1 2506:5 2507:1 2510:1 2511:2 2515:1 2520:2 2522:1 2527:2 2532:1 2545:1 2552:2 2553:1 2562:1 2563:4 2567:2 2572:2 2574:1 2575:1 2580:1 2583:1 2595:3 2603:1 2604:2 2613:3 2619:2 2621:1 2623:1 2626:1 2635:1 2654:1 2656:5 2664:1 2684:1 2691:1 2695:3 2701:2 2704:14 2706:1 2715:2 2718:6 2733:1 2739:1 2749:1 2750:4 2752:3 2753:4 2755:1 2768:1 2775:1 2791:1 2795:2 2798:4 2800:1 2801:1 2804:1 2821:1 2829:2 2834:1 2835:1 2840:3 2844:2 2845:1 2847:1 2862:2 2865:1 2907:1 2913:1 2919:1 2927:9 2930:2 2932:1 2941:1 2945:2 2949:4 2953:1 2958:1 2959:1 2965:1 2968:2 2971:4 2978:1 2988:1 2989:1 2992:1 2997:1 3005:1 3024:2 3025:1 3027:2 3032:1 3043:1 3057:1 3059:2 3062:1 3065:1 3066:1 3071:2 3075:1 3093:2 3098:1 3115:1 3124:5 3138:1 3153:11 3156:2 3161:1 3166:1 3179:1 3184:1 3190:1 3194:1 3208:2 3216:1 3228:1 3242:1 3263:2 3271:3 3274:2 3275:1 3276:3 3290:1 3295:1 3299:1 3302:2 3308:1 3322:2 3325:2 3326:1 3329:3 3331:5 3332:1 3335:1 3337:2 3340:2 3341:2 3343:1 3344:3 3346:5 3353:1 3354:5 3355:3 3358:5 3360:7 3362:1 3373:1 3391:1 3412:1 3414:1 3417:1 3429:1 3439:1 3441:1 3445:1 3450:3 3451:3 3455:1 3465:2 3470:1 3475:2 3477:1 3488:1 3493:1 3500:1 3509:2 3521:2 3523:1 3524:1 3538:1 3539:1 3541:2 3548:1 3549:1 3552:1 3557:1 3576:1 3599:1 3613:1 3622:1 3631:1 3633:1 3644:3 3661:1 3672:1 3674:1 3679:3 3684:2 3692:1 3697:1 3711:1 3712:1 3717:1 3718:1 3722:1 3732:1 3747:1 3749:2 3755:1 3759:1 3760:3 3767:2 3772:1 3775:6 3777:3 3781:1 3787:1 3788:1 3789:1 3790:1 3793:1 3800:3 3806:2 3808:2 3815:2 3819:1 3821:1 3825:1 3828:10 3856:4 3857:1 3858:1 3865:1 3887:1 3888:2 3893:2 3896:1 3899:1 3900:1 3901:2 3903:2 3904:1 3910:1 3916:1 3921:1 3924:2 3925:6 3927:1 3928:1 3939:2 3948:2 3957:9 3965:4 3966:1 3979:2 3981:1 3986:1 3988:2 3990:1 3997:3 3998:2 4009:2 4025:1 4026:2 4032:3 4036:1 4038:1 4041:1 4048:1 4060:1 4065:3 4071:1 4090:1 4097:1 4101:2 4103:1 4104:2 4106:2 4118:1 4121:3 4122:1 4129:1 4131:1 4133:7 4136:1 4143:2 4147:1 4150:1 4158:1 4176:1 4182:1 4198:1 4199:1 4200:1 4216:1 4227:1 4230:1 4237:1 4239:1 4242:3 4246:2 4247:1 4264:1 4265:4 4272:1 4277:1 4279:16 4311:3 4312:1 4315:1 4316:1 4317:1 4318:1 4326:2 4333:3 4338:1 4358:20 4361:2 4381:1 4382:1 4387:1 4398:2 4400:3 4426:2 4427:1 4429:2 4438:1 4440:1 4442:1 4447:1 4459:1 4461:1 4482:1 4489:1 4498:1 4505:1 4513:1 4524:1 4532:1 4534:5 4555:1 4565:3 4573:1 4582:1 4584:1 4586:1 4591:1 4600:2 4627:1 4641:1 4643:2 4661:1 4663:1 4667:1 4680:2 4698:1 4717:2 4731:1 4737:3 4757:1 4770:2 4771:1 4786:1 4792:1 4794:2 4797:1 4803:1 4811:1 4841:1 4854:1 4855:1 4863:1 4866:1 4868:2 4869:1 4884:1 4895:1 4910:6 4912:1 4933:1 4936:3 4944:1 4958:1 4969:1 5004:1 5009:1 5018:2 5028:1 5032:15 5051:1 5058:1 5059:1 5074:1 5082:1 5083:1 5087:1 5089:1 5096:1 5103:1 5107:1 5133:1 5149:1 5156:1 5182:2 5187:1 5199:1 5205:1 5206:13 5218:1 5220:2 5222:2 5223:2 5226:1 5244:1 5249:1 5250:1 5251:1 5257:14 5274:4 5275:1 5277:1 5288:1 5290:5 5293:1 5307:1 5308:2 5310:1 5317:1 5321:3 5331:2 5338:3 5348:1 5369:1 5386:1 5395:1 5396:2 5418:1 5422:1 5429:2 5434:1 5438:2 5453:3 5456:4 5461:1 5492:1 5495:1 5499:2 5506:2 5508:1 5528:2 5530:1 5533:2 5534:1 5547:1 5555:3 5557:1 5572:2 5574:1 5577:3 5579:4 5583:1 5587:2 5591:1 5592:2 5593:2 5606:4 5608:1 5618:1 5621:2 5624:2 5625:2 5647:1 5651:2 5656:2730 5670:1 5673:1 5678:1 5679:2 5682:3 5687:1 5696:1 5700:1 5714:2 5716:1 5726:6 5728:4 5741:2 5761:1 5765:1 5772:1 5779:1 5784:2 5787:1 5793:1 5814:2 5816:1 5824:1 5829:2 5846:1 5855:1 5862:2 5866:1 5870:1 5873:1 5894:2 5901:1 5904:1 5905:1 5915:2 5927:1 5939:4 5940:1 5941:1 5944:1 5945:1 5947:2 5949:1 5952:1 5955:2 5981:1 5983:1 5987:2 5992:6 5993:4 5997:1 6004:1 6015:1 6023:1 6025:1 6033:1 6050:1 6057:1 6066:1 6067:1 6088:1 6095:1 6101:1 6106:7 6108:1 6109:1 6142:3 6156:1 6165:2 6171:1 6176:3 6179:2 6184:1 6185:1 6189:2 6192:1 6201:2 6210:2 6240:1 6244:1 6247:2 6248:4 6268:4 6295:1 6296:1 6302:1 6304:1 6308:3 6312:1 6335:2 6343:2 6350:1 6359:1 6366:1 6367:1 6373:2 6376:1 6378:3 6381:1 6397:1 6398:1 6399:1 6403:1 6410:2 6414:1 6417:1 6435:1 6445:1 6449:3 6452:1 6460:1 6468:1 6479:2 6488:5 6507:1 6513:1 6518:1 6521:1 6540:1 6550:2 6558:2 6567:4 6570:1 6577:2 6578:1 6590:2 6593:1 6596:1 6597:1 6603:4 6606:1 6612:2 6614:2 6631:4 6642:3 6655:1 6662:1 6673:3 6674:2 6700:1 6702:2 6708:3 6709:3 6711:1 6713:1 6716:1 6728:3 6732:1 6733:2 6746:9 6747:1 6756:1 6769:1 6776:2 6792:1 6793:1 6800:1 6804:1 6820:1 6822:1 6823:1 6832:2 6833:1 6842:1 6846:2 6870:5 6871:1 6892:15 6894:2 6899:1 6901:1 6906:1 6914:1 6916:1 6927:1 6936:1 6948:1 6957:1 6961:1 6975:4 6976:1 6986:1 6989:2 6997:1 6998:2 7000:1 7012:4 7013:1 7023:1 7028:1 7038:2 7066:1 7075:4 7084:3 7095:2 7098:1 7107:3 7112:1 7117:4 7119:7 7121:3 7124:1 7129:2 7131:2 7132:1 7136:1 7138:2 7140:6 7142:4 7146:2 7147:8 7154:2 7158:5 7159:1 7162:1 7171:3 7175:1 7199:1 7201:1 7203:2 7206:2 7211:1 7213:2 7215:1 7229:1 7248:1 7253:1 7264:1 7271:1 7272:1 7274:1 7283:1 7300:2 7315:1 7340:1 7345:1 7360:1 7387:1 7388:3 7404:1 7405:2 7406:1 7408:1 7419:1 7421:3 7426:1 7458:1 7461:1 7462:1 7466:1 7470:1 7480:1 7488:2 7497:1 7504:1 7506:1 7516:1 7519:1 7520:1 7529:1 7530:2 7545:1 7555:1 7563:1 7569:1 7572:2 7575:4 7580:2 7588:1 7589:4 7636:1 7665:1 7668:1 7682:2 7689:3 7691:1 7693:1 7697:2 7699:2 7700:2 7702:2 7712:1 7720:1 7722:2 7724:3 7732:3 7739:1 7740:2 7741:2 7744:1 7768:5 7778:1 7779:2 7792:1 7797:1 7812:1 7818:1 7821:2 7823:4 7835:5 7853:1 7859:1 7860:1 7872:2 7873:1 7878:1 7891:1 7898:1 7905:3 7930:1 7931:1 7938:1 7940:1 7944:2 7953:2 7965:1 7969:1 7974:3 7975:20 7977:2 7985:1 7991:1 7994:5 8003:1 8006:1 8022:1 8033:1 8035:1 8040:1 8059:2 8070:1 8071:1 8075:1 8087:1 8093:1 8095:1 8104:1 8108:1 8136:1 8140:1 8141:1 8145:1 8154:1 8159:1 8179:1 8188:1 8195:2 8202:1 8208:1 8213:2 8221:1 8227:1 8250:5 8251:1 8254:2 8257:1 8259:3 8261:4 8278:1 8280:1 8299:2 8312:3 8327:2 8330:1 8333:1 8342:2 8345:6 8348:1 8359:2 8364:2 8377:1 8378:1 8391:2 8428:8 8433:2 8439:1 8444:1 8450:1 8455:1 8462:1 8488:1 8489:1 8494:1 8497:1 8512:1 8514:1 8518:1 8520:1 8521:1 8532:2 8533:1 8534:1 8554:1 8570:1 8572:1 8575:1 8576:1 8590:4 8601:1 8608:2 8619:2 8621:3 8646:2 8647:2 8651:2 8653:1 8663:1 8668:1 8673:1 8674:1 8675:1 8679:6 8682:1 8683:1 8687:1 8688:1 8693:2 8697:2 8700:1 8705:1 8707:1 8708:1 8709:1 8752:1 8754:1 8755:1 8756:1 8762:1 8765:2 8766:2 8767:1 8772:1 8775:1 8776:2 8777:3 8783:12 8788:2 8792:2 8807:2 8814:1 8828:2 8834:1 8852:3 8862:5 8863:1 8867:2 8880:2 8885:1 8894:1 8899:1 8905:1 8909:2 8913:1 8923:1 8931:1 8943:2 8952:1 8958:3 8967:2 8969:2 8970:1 8981:5 8985:1 8994:2 8997:6 8999:1 9001:1 9003:1 9008:2 9015:1 9027:3 9059:2 9068:1 9084:1 9089:1 9095:1 9111:1 9113:1 9121:2 9128:1 9135:2 9139:2 9143:2 9148:2 9151:1 9152:2 9154:1 9155:1 9157:1 9160:2 9162:3 9163:1 9168:1 9169:1 9171:2 9173:1 9176:2 9179:2 9181:4 9184:3 9203:1 9207:2 9232:2 9245:1 9246:4 9258:1 9260:1 9262:4 9263:1 9281:2 9285:1 9293:1 9299:1 9300:1 9311:2 9319:1 9330:1 9333:1 9340:1 9345:1 9347:1 9370:1 9387:1 9396:1 9399:1 9402:2 9407:2 9422:1 9424:1 9438:1 9440:1 9442:4 9445:2 9468:1 9480:1 9489:1 9547:1 9554:1 9568:1 9572:2 9580:2 9585:2 9587:1 9589:1 9598:2 9599:2 9604:1 9605:1 9612:1 9615:1 9618:1 9630:1 9634:2 9655:3 9657:1 9661:1 9668:1 9679:1 9688:2 9694:1 9703:2 9714:1 9721:1 9726:1 9731:1 9735:1 9737:1 9751:1 9753:1 9768:2 9772:1 9773:1 9776:1 9778:2 9782:1 9784:1 9801:1 9806:2 9814:2 9823:2 9824:1 9826:1 9830:1 9831:2 9834:1 9835:1 9844:1 9849:2 9871:1 9873:14 9883:2 9885:2 9890:2 9912:2 9914:1 9915:1 9922:1 9932:1 9945:1 9946:1 9948:1 9963:1 9966:1 9968:1 9974:1 9985:8 9993:1 9996:2 10007:3 10011:1 10020:1 10028:1 10043:2 10065:1 10066:1 10070:2 10078:1 10080:1 10089:1 10102:2 10109:1 10116:1 10121:4 10125:3 10128:1 10129:3 10130:1 10144:2 10146:2 10152:1 10161:2 10165:1 10166:1 10168:1 10175:1 10177:1 10193:1 10197:1 10207:1 10208:1 10209:1 10214:1 10216:3 10217:4 10221:2 10222:1 10261:1 10281:2 10285:1 10287:1 10288:1 10291:1 10304:1 10314:1 10330:6 10340:2 10364:1 10379:1 10384:4 10389:1 10390:5 10393:3 10394:3 10395:1 10396:1 10403:1 10407:2 10411:1 10412:1 10415:2 10416:3 10417:2 10433:1 10436:1 10438:4 10439:5 10440:1 10441:1 10445:1 10455:5 10458:1 10460:1 10462:1 10463:1 10470:1 10485:1 10512:1 10514:1 10520:1 10524:2 10532:2 10533:2 10535:1 10541:1 10573:1 10574:1 10583:4 10595:4 10612:1 10617:1 10630:1 10650:2 10656:2 10658:3 10662:1 10664:1 10670:1 10674:1 10676:1 10677:1 10683:1 10684:1 10689:1 10694:1 10696:1 10699:1 10706:1 10716:1 10721:1 10727:1 10742:1 10743:1 10755:1 10775:1 10777:1 10783:1 10785:1 10790:2 10792:1 10801:1 10803:1 10808:1 10812:1 10817:1 10839:2 10843:1 10845:1 10848:1 10852:5 10854:1 10861:2 10865:1 10879:1 10881:4 10885:3 10896:1 10907:1 10918:1 10920:1 10932:2 10935:1 10940:1 10941:1 10943:4 10953:2 10962:1 10966:1 10969:2 10970:6 10973:2 10975:9 10978:1 10980:3 10984:1 10988:1 10989:1 10990:1 10993:1 10999:3 11000:1 11003:1 11004:1 11021:1 11022:1 11043:6 11045:2 11051:2 11057:8 11059:1 11076:1 11101:1 11104:1 11108:3 11127:1 11138:6 11140:1 11143:1 11150:1 11153:1 11160:2 11163:1 11166:1 11176:1 11180:1 11183:1 11185:1 11187:1 11194:1 11209:1 11210:3 11215:1 11216:1 11223:1 11225:2 11237:1 11248:1 11249:1 11253:4 11257:1 11266:1 11272:1 11274:1 11288:1 11316:3 11323:1 11329:4 11331:6 11332:6 11334:2 11349:2 11352:3 11354:1 11358:3 11364:4 11368:2 11369:1 11371:3 11373:1 11374:1 11384:1 11390:1 11393:1 11404:1 11415:4 11416:2 11417:1 11419:1 11424:4 11436:46 11438:2 11442:1 11448:1 11455:3 11457:1 11463:3 11470:10 11472:6 11473:1 11481:2 11484:1 11486:1 11506:1 11516:1 11519:1 11522:1 11525:1 11527:1 11534:1 11549:1 11565:1 11574:3 11575:2 11578:1 11590:1 11594:2 11605:2 11618:3 11635:1 11639:1 11643:1 11653:1 11655:1 11656:1 11665:1 11687:1 11691:1 11694:2 11712:3 11713:10 11724:2 11743:2 11755:2 11760:4 11775:1 11776:1 11781:3 11783:1 11784:3 11787:1 11794:2 11810:1 11838:1 11844:1 11845:1 11846:1 11847:1 11862:1 11863:1 11867:2 11869:2 11878:2 11896:1 11898:1 11900:1 11940:1 11941:1 11947:1 11948:1 11949:1 11963:1 11983:1 11989:1 11994:1 11998:1 12012:1 12015:1 12016:1 12021:2 12028:1 12030:1 12033:1 12043:2 12045:1 12051:1 12055:1 12061:1 12070:1 12076:1 12077:2 12089:1 12100:1 12107:1 12118:1 12119:1 12127:3 12144:25 12156:1 12176:3 12183:3 12190:1 12194:1 12234:1 12242:1 12254:2 12267:6 12269:1 12272:1 12281:1 12286:1 12313:3 12314:3 12322:5 12345:1 12348:1 12360:1 12365:3 12366:3 12370:1 12371:2 12374:1 12381:1 12384:2 12389:2 12390:3 12402:1 12408:1 12419:4 12424:2 12426:4 12442:3 12450:1 12459:1 12474:2 12479:1 12486:1 12488:1 12493:1 12494:1 12501:1 12516:1 12520:1 12536:1 12544:1 12545:1 12549:1 12556:1 12568:2 12575:1 12580:2 12582:1 12583:1 12588:1 12596:4 12630:1 12637:1 12641:2 12664:2 12676:1 12685:2 12694:1 12695:1 12703:1 12711:1 12718:1 12725:1 12727:2 12731:3 12734:3 12736:1 12738:1 12745:1 12750:1 12757:1 12758:1 12770:1 12772:1 12775:1 12784:1 12789:2 12801:3 12804:2 12805:1 12809:2 12811:6 12814:1 12824:2 12830:3 12840:1 12842:1 12847:1 12861:1 12866:1 12871:1 12872:1 12883:1 12892:2 12899:1 12902:1 12911:1 12919:1 12925:1 12926:4 12929:1 12931:1 12934:1 12938:1 12944:1 12946:1 12947:4 12948:1 12949:1 12951:1 12956:1 12962:2 12982:1 12992:1 13000:1 13005:1 13016:3 13019:1 13048:1 13050:1 13064:1 13068:1 13082:1 13091:1 13106:2 13121:2 13136:1 13139:1 13160:3 13178:2 13179:1 13206:1 13208:1 13209:1 13213:3 13242:3 13245:1 13256:2 13260:1 13276:1 13278:1 13280:2 13302:1 13304:1 13311:1 13313:2 13316:1 13318:2 13325:1 13326:6 13333:1 13334:1 13337:1 13347:1 13358:1 13371:1 13374:2 13378:1 13391:6 13393:1 13405:1 13408:1 13413:1 13421:1 13425:1 13437:1 13441:11 13443:6 13445:2 13456:1 13471:2 13474:2 13502:1 13521:1 13524:3 13531:1 13536:1 13545:1 13549:1 13554:3 13559:1 13572:1 13581:1 13583:2 13590:1 13596:1 13600:2 13602:2 13604:3 13605:2 13616:1 13625:1 13640:1 13659:2 13663:1 13680:1 13692:2 13693:2 13696:1 13708:4 13711:1 13714:5 13720:1 13735:1 13741:3 13745:2 13750:1 13751:1 13752:1 13766:4 13803:1 13806:1 13807:7 13819:1 13836:1 13843:3 13860:1 13867:1 13873:1 13875:1 13882:1 13887:5 13896:3 13904:1 13905:1 13906:1 13912:1 13915:3 13922:1 13924:1 13937:1 13942:1 13952:1 13967:3 13990:1 14004:1 14007:1 14016:1 14024:2 14028:1 14032:7 14036:1 14037:2 14043:2 14081:3 14089:1 14094:1 14096:1 14109:3 14120:1 14130:1 14140:1 14144:1 14151:1 14175:1 14179:1 14181:1 14186:1 14189:1 14193:1 14195:1 14198:3 14199:3 14201:4 14204:3 14206:1 14208:1 14209:2 14212:1 14217:2 14219:1 14220:1 14221:1 14229:1 14242:1 14243:1 14252:1 14254:2 14258:2 14262:6 14280:1 14282:1 14285:1 14295:1 14304:2 14307:1 14314:1 14315:1 14319:1 14321:1 14326:1 14328:1 14363:12 14368:2 14369:6 14400:1 14401:1 14404:2 14410:1 14412:1 14414:1 14415:1 14432:1 14433:2 14436:1 14437:1 14443:1 14449:3 14458:2 14470:2 14482:1 14485:1 14498:1 14499:1 14513:1 14515:1 14559:1 14564:1 14565:1 14581:1 14586:1 14617:1 14625:1 14629:1 14631:1 14633:1 14637:1 14642:5 14662:1 14668:4 14678:4 14679:1 14683:2 14697:2 14700:1 14707:1 14709:1 14717:1 14720:1 14725:2 14729:2 14738:1 14750:2 14756:3 14758:1 14759:1 14763:1 14769:2 14771:2 14776:1 14821:1 14825:1 14832:2 14834:1 14843:1 14844:2 14845:2 14850:1 14852:1 14857:1 14871:1 14876:1 14879:1 14889:1 14895:4 14896:4 14900:1 14931:2 14936:1 14945:2 14951:1 14954:1 14959:12 14964:2 14977:2 14979:2 14985:2 14988:1 14997:1 15003:2 15032:2 15033:1 15037:1 15048:1 15052:1 15054:1 15055:1 15073:1 15099:18 15100:2 15108:1 15133:1 15136:2 15138:1 15152:1 15155:1 15165:1 15166:1 15170:1 15184:1 15189:1 15198:1 15201:1 15202:1 15205:1 15208:1 15210:4 15222:1 15224:1 15226:1 15229:2 15250:1 15256:2 15260:1 15265:1 15281:2 15285:1 15287:1 15298:1 15300:1 15301:4 15306:1 15307:1 15309:1 15315:1 15320:3 15332:1 15339:1 15340:1 15341:1 15346:1 15348:1 15359:4 15360:1 15369:1 15384:1 15385:1 15391:1 15416:1 15427:1 15435:1 15436:1 15441:1 15447:1 15448:2 15456:2 15458:1 15479:2 15488:1 15490:1 15492:1 15504:1 15514:1 15519:3 15529:1 15539:2 15542:1 15544:1 15548:10 15550:1 15552:7 15554:4 15569:2 15573:3 15577:1 15578:1 15584:1 15589:2 15591:1 15595:1 15597:2 15607:1 15618:2 15621:1 15633:7 15634:2 15654:2 15659:2 15663:1 15664:1 15670:1 15674:4 15699:1 15703:1 15712:6 15715:1 15722:1 15723:1 15727:1 15732:3 15742:1 15745:2 15751:1 15753:2 15754:6 15756:1 15774:1 15787:1 15795:2 15796:1 15799:1 15806:1 15814:3 15821:1 15835:1 15860:1 15875:2 15879:2 15881:1 15894:1 15896:2 15913:1 15918:1 15924:1 15931:1 15958:1 15992:1 16018:1 16020:2 16027:1 16030:1 16031:1 16040:1 16045:1 16050:1 16051:2 16054:2 16058:1 16059:2 16067:1 16071:1 16074:1 16075:5 16078:1 16080:5 16083:1 16090:1 16093:2 16100:2 16101:2 16105:5 16106:1 16110:1 16114:4 16117:1 16119:1 16127:3 16130:1 16131:3 16134:1 16137:1 16140:1 16142:1 16163:2 16172:1 16176:1 16177:1 16206:1 16207:1 16211:3 16225:7 16240:1 16246:1 16249:1 16260:1 16262:1 16269:1 16273:7 16278:1 16285:1 16297:2 16305:1 16312:1 16339:1 16341:1 16357:1 16364:1 16374:3 16376:1 16391:1 16393:1 16395:1 16399:1 16411:1 16414:1 16418:1 16427:1 16430:1 16431:1 16443:1 16446:3 16473:1 16498:1 16502:1 16519:1 16523:1 16527:1 16531:2 16535:2 16538:1 16551:1 16552:3 16553:2 16560:1 16575:2 16580:2 16581:1 16584:1 16585:2 16586:1 16596:3 16600:1 16601:1 16602:2 16621:1 16628:3 16631:2 16650:1 16658:1 16676:15 16678:1 16679:1 16708:1 16712:1 16725:1 16727:1 16731:4 16745:1 16749:2 16750:2 16758:2 16765:1 16780:1 16800:1 16805:1 16810:2 16816:2 16823:1 16828:2 16843:1 16844:2 16850:1 16851:1 16852:1 16867:2 16869:1 16874:2 16890:1 16893:3 16898:1 16921:1 16936:4 16949:1 16951:1 16955:1 16981:1 16987:1 16997:1 16999:2 17005:1 17008:1 17028:1 17029:1 17033:1 17045:1 17052:3 17053:1 17055:1 17056:1 17062:15 17063:2 17068:1 17071:4 17076:1 17078:2 17079:1 17083:1 17084:1 17089:1 17092:1 17099:2 17111:1 17126:1 17131:1 17132:1 17133:1 17137:1 17144:2 17151:5 17156:3 17168:1 17183:2 17189:1 17201:1 17202:1 17209:1 17230:1 17231:1 17235:2 17237:2 17242:1 17259:4 17263:3 17266:2 17268:3 17273:1 17279:2 17287:4 17295:1 17301:1 17314:1 17332:1 17339:1 17345:1 17351:1 17379:1 17390:1 17396:1 17397:1 17403:5 17406:1 17414:1 17417:1 17429:2 17432:1 17438:1 17453:1 17461:1 17463:1 17468:2 17495:2 17501:2 17504:2 17518:2 17533:2 17543:1 17547:2 17549:2 17553:1 17554:1 17555:2 17565:1 17566:2 17572:1 17591:6 17594:1 17604:1 17608:1 17609:1 17616:1 17627:1 17632:1 17634:2 17640:1 17643:1 17652:1 17656:1 17660:1 17670:2 17672:1 17675:2 17676:2 17695:1 17696:1 17753:1 17759:1 17769:1 17774:5 17776:2 17798:1 17799:1 17801:1 17809:3 17810:2 17818:1 17823:1 17826:1 17855:1 17881:1 17893:1 17894:1 17897:5 17922:1 17925:1 17929:2 17930:1 17935:1 17936:1 17971:1 17986:1 17989:1 17996:1 18002:1 18003:1 18012:1 18022:1 18023:1 18027:1 18032:3 18038:1 18045:1 18053:1 18070:1 18074:2 18077:2 18080:1 18099:3 18104:1 18126:1 18129:1 18141:1 18143:1 18150:1 18153:2 18175:1 18179:1 18180:3 18198:1 18200:1 18211:1 18227:2 18230:1 18245:2 18258:1 18263:1 18264:4 18269:1 18272:1 18274:2 18290:1 18302:1 18303:1 18310:2 18319:1 18333:1 18339:1 18347:1 18357:2 18358:1 18360:2 18362:1 18380:3 18383:2 18386:1 18390:1 18393:1 18395:1 18398:2 18399:1 18415:1 18432:1 18434:1 18438:1 18441:1 18451:1 18453:1 18455:1 18459:2 18465:1 18499:1 18523:5 18525:1 18531:3 18534:1 18535:2 18542:1 18545:1 18546:2 18556:1 18564:1 18566:1 18575:1 18586:1 18603:1 18606:15 18613:5 18616:2 18627:2 18629:1 18634:1 18638:2 18644:2 18652:1 18656:1 18665:2 18666:1 18677:1 18685:1 18687:2 18689:3 18692:1 18693:1 18697:1 18703:1 18707:1 18709:3 18710:1 18711:4 18713:1 18717:3 18719:1 18725:2 18729:1 18735:1 18742:2 18751:1 18752:2 18760:1 18763:1 18765:1 18769:1 18770:1 18780:1 18791:2 18796:1 18807:1 18810:1 18815:1 18835:1 18851:4 18865:1 18872:1 18881:2 18893:1 18897:1 18904:2 18909:2 18918:1 18947:1 18948:1 18973:1 19008:1 19013:1 19014:2 19015:1 19025:2 19026:1 19051:1 19053:1 19055:1 19062:1 19064:2 19085:1 19093:2 19114:1 19115:1 19117:3 19119:1 19121:3 19126:5 19152:2 19155:1 19168:1 19186:1 19215:7 19228:1 19235:1 19270:1 19278:1 19280:1 19292:1 19296:1 19311:1 19314:1 19315:3 19324:4 19339:1 19342:1 19344:2 19353:2 19364:1 19365:1 19367:2 19386:6 19388:2 19391:1 19407:1 19413:1 19418:2 19444:1 19450:4 19452:1 19454:1 19471:1 19484:1 19495:1 19496:1 19498:2 19503:1 19506:1 19508:1 19509:1 19512:1 19524:9 19525:1 19535:2 19536:3 19537:1 19538:2 19549:1 19551:2 19555:1 19556:1 19558:2 19568:1 19578:1 19582:1 19586:1 19595:1 19597:1 19598:1 19600:5 19602:2 19615:1 19616:1 19621:1 19630:1 19633:1 19638:2 19645:2 19649:2 19652:1 19655:16 19659:1 19664:5 19667:1 19680:1 19692:1 19696:3 19700:1 19715:3 19718:2 19720:1 19721:1 19724:3 19727:3 19733:1 19747:1 19757:2 19777:2 19785:1 19786:1 19792:3 19816:3 19829:1 19833:1 19851:1 19857:6 19863:1 19865:1 19891:1 19896:1 19903:2 19908:3 19910:1 19913:1 19918:4 19929:5 19936:3 19965:1 19974:1 19975:5 19977:1 19984:1 19991:3 19992:1 19995:1 19998:1 19999:1 20015:1 20020:1 20022:1 20030:1 20034:6 20035:1 20037:1 20038:2 20039:1 20040:2 20041:1 20044:1 20047:1 20049:7 20050:2 20052:1 20075:1 20076:1 20078:1 20081:1 20101:1 20102:6 20109:1 20117:2 20132:1 20160:1 20170:1 20171:1 20185:1 20188:1 20209:1 20210:2 20216:2 20223:1 20227:1 20243:1 20251:1 20256:1 20258:1 20262:1 20266:1 20267:2 20276:1 20277:1 20284:1 20298:4 20305:3 20363:1 20366:1 20368:1 20378:1 20379:1 20380:1 20382:1 20383:1 20387:2 20390:7 20393:1 20396:1 20402:1 20409:1 20413:1 20430:2 20440:2 20451:1 20453:1 20464:1 20466:1 20469:1 20482:7 20494:5 20519:3 20529:1 20552:1 20580:1 20588:1 20589:2 20598:1 20603:1 20607:1 20614:1 20621:1 20628:1 20633:1 20636:1 20669:1 20670:1 20697:1 20702:1 20706:1 20713:1 20718:1 20724:1 20734:1 20735:1 20746:1 20758:1 20792:1 20817:1 20822:2 20828:2 20844:1 20845:2 20846:1 20848:3 20851:5 20855:2 20874:1 20875:1 20878:1 20880:1 20892:1 20903:1 20912:1 20933:1 20940:1 20955:1 20956:1 20966:1 20980:1 21034:3 21072:1 21080:3 21083:4 21096:1 21099:2 21107:1 21110:2 21111:2 21113:1 21118:2 21121:1 21142:1 21145:1 21151:1 21153:1 21163:1 21180:1 21186:1 21188:2 21190:1 21202:1 21213:3 21216:1 21223:2 21228:1 21244:1 21262:1 21265:1 21271:4 21274:1 21276:2 21284:1 21298:2 21304:1 21308:1 21315:1 21318:1 21333:1 21339:1 21341:1 21349:2 21353:1 21361:1 21362:1 21374:3 21378:1 21379:2 21386:1 21402:1 21404:1 21443:1 21446:1 21451:3 21459:1 21463:1 21464:1 21470:2 21494:1 21509:2 21510:3 21512:1 21538:2 21539:1 21540:1 21547:1 21551:1 21568:1 21579:1 21581:1 21586:2 21589:2 21613:1 21619:1 21623:1 21626:3 21635:3 21637:3 21639:1 21640:3 21646:1 21667:1 21674:2 21677:1 21707:5 21713:1 21715:1 21718:1 21777:1 21820:2
1 5:2 10:1 17:1 23:1 35:1 44:1 53:1 66:1 77:1 83:1 91:1 99:1 101:1 103:3 107:1 123:1 124:1 128:2 131:1 132:1 134:1 140:1 163:1 181:1 217:1 233:1 251:1 255:1 260:3 261:1 266:1 270:2 280:1 296:2 308:1 309:1 319:2 320:1 324:3 337:1 343:6 369:1 370:1 401:2 411:1 419:1 432:1 439:7 454:1 461:3 466:1 467:1 468:2 476:1 490:1 501:2 510:2 523:3 527:1 547:1 563:4 564:3 571:1 573:3 575:1 578:1 582:3 583:1 593:1 600:1 602:2 605:2 626:3 628:3 635:1 644:2 660:1 663:5 664:1 667:5 677:1 685:2 698:1 706:1 717:2 742:1 744:1 747:1 749:1 753:1 761:1 762:6 778:3 790:1 797:2 806:4 827:3 835:1 849:1 854:2 858:1 861:1 869:1 883:1 889:1 893:1 894:1 901:2 908:3 918:1 943:1 954:1 956:4 959:2 964:1 989:2 1003:1 1004:2 1005:1 1018:2 1030:1 1034:1 1037:4 1040:1 1045:1 1056:1 1073:4 1074:1 1079:1 1081:1 1099:1 1111:1 1124:1 1142:1 1152:2 1159:1 1160:2 1200:1 1205:2 1209:1 1216:1 1229:2 1230:1 1237:3 1248:2 1258:1 1261:2 1270:2 1273:1 1278:1 1281:1 1282:3 1308:1 1320:6 1322:3 1331:1 1343:1 1349:1 1351:1 1356:1 1358:4 1367:1 1375:1 1389:1 1392:1 1402:16 1407:4 1418:1 1419:3 1430:1 1435:1 1441:4 1453:1 1456:1 1457:15 1459:1 1463:1 1474:1 1475:4 1476:2 1478:8 1481:1 1482:1 1484:1 1486:2 1488:4 1489:3 1492:1 1507:2 1530:5 1531:4 1536:3 1549:1 1550:1 1598:1 1600:2 1622:1 1624:2 1642:1 1644:1 1651:2 1653:1 1659:3 1683:2 1689:1 1698:1 1712:2 1715:1 1724:1 1740:1 1743:1 1757:1 1771:1 1774:2 1779:1 1781:1 1784:1 1785:1 1789:1 1790:1 1797:2 1800:1 1834:3 1866:1 1875:1 1877:3 1879:3 1884:6 1885:2 1886:2 1887:1 1888:6 1889:1 1890:1 1892:2 1893:2 1894:1 1895:1 1898:2 1899:5 1903:1 1904:1 1908:1 1911:1 1912:2 1913:2 1920:1 1921:1 1927:1 1940:1 1947:1 1950:1 1951:1 1953:2 1962:1 1967:2 1973:2 1985:1 1999:2 2007:2 2009:1 2024:1 2025:1 2029:1 2036:1 2051:1 2055:1 2057:1 2077:1 2079:1 2090:1 2102:1 2105:1 2107:1 2112:2 2113:1 2114:1 2128:1 2142:1 2161:2 2167:1 2171:1 2172:1 2179:1 2180:2 2181:2 2199:1 2208:1 2209:2 2215:1 2233:1 2235:1 2239:1 2240:3 2267:1 2271:1 2274:1 2276:1 2281:1 2288:1 2290:1 2291:2 2293:1 2306:1 2314:1 2333:1 2337:1 2340:1 2345:4 2356:7 2359:2 2375:1 2376:1 2412:2 2425:1 2427:1 2429:1 2434:1 2436:2 2441:2 2456:1 2458:1 2460:2 2465:1 2469:1 2472:2 2485:2 2486:2 2489:1 2498:1 2499:1 2503:1 2506:5 2507:1 2510:1 2511:2 2515:1 2520:2 2522:1 2527:3 2532:1 2545:1 2552:2 2553:1 2562:1 2563:4 2567:2 2572:2 2574:1 2575:1 2580:1 2583:1 2584:1 2595:3 2603:1 2604:2 2613:3 2619:2 2621:1 2623:1 2626:1 2635:1 2649:1 2654:1 2656:5 2664:1 2684:1 2691:1 2695:3 2701:2 2704:14 2706:1 2715:2 2718:6 2733:1 2739:1 2749:2 2750:4 2752:3 2753:4 2755:1 2768:1 2775:1 2791:1 2795:2 2798:4 2800:1 2801:1 2804:1 2821:1 2829:2 2834:1 2835:1 2840:3 2844:2 2845:1 2847:1 2862:2 2865:1 2907:1 2913:1 2919:1 2927:9 2930:2 2932:1 2941:1 2945:2 2949:5 2953:1 2958:1 2959:1 2965:1 2968:2 2971:4 2978:1 2988:1 2989:1 2992:1 2997:1 3005:1 3024:2 3025:1 3027:2 3032:1 3043:1 3057:1 3059:2 3062:1 3065:1 3066:1 3071:2 3075:1 3093:2 3098:1 3115:1 3124:5 3138:1 3153:11 3156:2 3161:1 3166:1 3179:1 3184:1 3190:1 3194:1 3208:2 3216:1 3228:1 3242:1 3263:2 3271:5 3274:2 3275:1 3276:3 3290:1 3295:1 3299:1 3302:2 3308:1 3322:2 3325:2 3326:1 3329:3 3331:5 3332:1 3335:1 3337:2 3340:2 3341:2 3343:1 3344:3 3346:5 3350:1 3353:1 3354:5 3355:3 3358:5 3360:7 3362:1 3373:1 3388:1 3391:1 3412:1 3414:1 3417:1 3429:1 3439:1 3441:1 3445:1 3450:3 3451:3 3455:1 3465:2 3470:1 3475:2 3477:1 3488:1 3493:1 3500:1 3509:2 3518:1 3521:2 3523:1 3524:1 3538:1 3539:1 3541:2 3548:1 3549:1 3552:1 3557:1 3576:1 3599:1 3612:1 3613:1 3622:1 3631:1 3633:1 3644:3 3661:1 3672:1 3674:1 3679:3 3684:2 3692:1 3697:1 3711:1 3712:1 3717:1 3718:1 3722:1 3732:1 3747:1 3749:2 3755:1 3759:1 3760:3 3767:2 3772:1 3775:7 3777:3 3781:1 3787:1 3788:1 3789:1 3790:1 3793:1 3800:3 3806:2 3808:2 3815:2 3819:1 3821:1 3825:1 3828:10 3856:4 3857:1 3858:1 3865:1 3887:1 3888:2 3893:2 3896:1 3899:2 3900:1 3901:2 3903:2 3904:1 3910:1 3916:1 3921:1 3924:2 3925:7 3927:1 3928:1 3939:2 3948:2 3957:9 3965:6 3966:1 3979:2 3981:1 3986:1 3988:2 3990:1 3997:3 3998:2 4009:2 4025:1 4026:2 4032:3 4036:1 4038:1 4041:1 4048:1 4060:1 4065:4 4071:1 4090:1 4097:1 4101:2 4103:1 4104:2 4106:2 4118:1 4121:3 4122:1 4129:1 4131:1 4133:7 4136:1 4143:2 4147:1 4150:1 4158:1 4176:1 4182:1 4198:1 4199:1 4200:1 4216:1 4227:1 4230:1 4237:1 4239:1 4242:3 4246:2 4247:1 4264:1 4265:4 4272:1 4277:1 4279:16 4311:3 4312:1 4315:1 4316:1 4317:1 4318:1 4326:2 4333:3 4335:1 4338:1 4358:20 4361:3 4381:1 4382:1 4387:1 4398:2 4400:3 4412:1 4426:2 4427:1 4429:2 4438:1 4440:1 4442:1 4447:1 4459:1 4461:1 4482:1 4489:1 4498:1 4505:1 4513:1 4524:1 4532:1 4534:5 4555:2 4565:3 4573:1 4582:1 4584:1 4586:1 4591:1 4600:2 4627:1 4641:1 4643:2 4661:1 4663:1 4667:1 4680:2 4698:1 4700:1 4717:2 4731:1 4737:3 4757:1 4770:2 4771:1 4786:1 4792:1 4794:2 4797:1 4803:1 4811:1 4841:1 4854:1 4855:1 4863:1 4866:1 4868:2 4869:1 4877:1 4884:1 4889:1 4895:1 4910:6 4912:1 4933:1 4936:3 4944:1 4958:1 4969:1 5004:1 5009:1 5018:2 5023:1 5028:1 5032:15 5051:1 5053:1 5058:1 5059:1 5068:1 5074:1 5082:1 5083:1 5087:1 5089:1 5096:1 5103:1 5107:1 5133:1 5149:1 5156:1 5182:2 5187:1 5199:1 5205:1 5206:14 5218:1 5220:2 5222:2 5223:2 5226:1 5244:1 5249:1 5250:1 5251:1 5257:14 5274:4 5275:1 5277:1 5288:1 5290:5 5293:1 5307:1 5308:2 5310:1 5317:1 5321:3 5331:2 5338:3 5348:1 5369:1 5386:1 5395:1 5396:2 5418:1 5422:1 5429:2 5434:1 5438:2 5453:3 5456:6 5460:1 5461:1 5492:1 5495:1 5499:2 5506:2 5508:1 5528:2 5530:1 5533:2 5534:1 5547:1 5555:3 5557:1 5572:2 5574:1 5577:3 5579:4 5583:1 5587:2 5591:1 5592:2 5593:2 5606:4 5608:1 5618:1 5621:2 5624:2 5625:2 5647:1 5651:2 5656:2786 5670:1 5673:1 5678:1 5679:2 5682:3 5687:1 5694:1 5696:1 5700:1 5714:2 5716:1 5726:6 5728:4 5741:2 5761:1 5765:1 5772:1 5779:1 5784:2 5787:1 5793:1 5814:2 5816:1 5824:1 5829:2 5846:1 5855:1 5862:2 5866:1 5870:1 5873:1 5894:2 5901:1 5904:1 5905:1 5915:2 5927:1 5939:4 5940:1 5941:1 5944:2 5945:1 5947:2 5949:1 5952:1 5955:2 5981:1 5983:1 5987:2 5992:6 5993:4 5997:1 6004:1 6015:1 6023:1 6025:1 6033:1 6050:1 6057:1 6066:1 6067:1 6088:1 6095:1 6101:1 6106:7 6108:1 6109:1 6142:3 6156:1 6165:2 6171:1 6176:3 6179:2 6184:1 6185:1 6189:2 6192:1 6201:2 6202:1 6210:2 6240:1 6244:1 6247:2 6248:4 6268:4 6295:1 6296:1 6302:1 6304:1 6308:3 6312:1 6320:1 6335:2 6343:2 6350:1 6359:1 6366:1 6367:1 6373:2 6376:1 6378:3 6381:1 6397:1 6398:1 6399:1 6403:1 6410:2 6414:1 6417:1 6435:1 6445:1 6449:3 6452:1 6460:1 6468:1 6479:2 6488:5 6507:1 6513:1 6518:1 6520:1 6521:1 6540:1 6550:2 6558:2 6567:4 6570:1 6577:2 6578:1 6590:2 6593:1 6596:1 6597:1 6603:4 6606:1 6612:2 6614:2 6631:4 6642:3 6655:1 6662:1 6673:3 6674:2 6700:1 6702:2 6708:3 6709:3 6711:1 6713:1 6716:1 6728:3 6732:1 6733:2 6746:9 6747:1 6756:1 6769:1 6776:2 6792:1 6793:1 6800:1 6804:1 6820:1 6822:1 6823:1 6832:2 6833:1 6842:1 6846:2 6870:5 6871:1 6892:15 6894:2 6899:1 6901:2 6906:1 6914:1 6916:1 6927:1 6936:1 6948:1 6957:1 6961:1 6975:4 6976:1 6986:1 6989:2 6997:1 6998:2 7000:1 7012:4 7013:1 7023:1 7028:1 7038:2 7066:1 7075:4 7084:3 7095:2 7098:1 7107:3 7112:1 7117:4 7119:7 7121:3 7124:1 7129:2 7131:2 7132:1 7136:1 7138:2 7140:6 7142:4 7146:2 7147:8 7154:2 7158:5 7159:1 7162:1 7171:3 7175:1 7199:1 7201:1 7203:2 7206:2 7211:1 7213:2 7215:1 7229:1 7248:1 7253:1 7264:1 7271:1 7272:1 7274:1 7283:1 7300:2 7315:1 7340:1 7345:1 7360:1 7387:1 7388:3 7404:1 7405:2 7406:1 7408:1 7419:1 7421:3 7426:1 7450:1 7458:1 7461:1 7462:1 7466:1 7470:1 7480:1 7488:2 7497:1 7504:2 7506:1 7516:1 7519:1 7520:2 7529:1 7530:2 7545:1 7555:1 7562:1 7563:1 7569:1 7572:2 7575:4 7580:2 7588:1 7589:4 7636:1 7665:1 7668:1 7682:2 7689:3 7691:1 7693:1 7697:2 7699:2 7700:2 7702:2 7712:1 7720:1 7722:2 7724:3 7732:3 7739:1 7740:2 7741:2 7744:1 7768:5 7778:1 7779:2 7792:1 7797:1 7812:1 7818:1 7821:2 7823:4 7835:5 7853:1 7859:1 7860:2 7872:2 7873:1 7878:1 7891:1 7898:1 7905:3 7930:1 7931:1 7938:2 7940:1 7944:2 7953:2 7964:1 7965:1 7969:1 7974:3 7975:20 7977:2 7985:1 7991:1 7994:5 8003:1 8006:1 8022:1 8033:2 8035:1 8040:1 8059:3 8070:1 8071:1 8075:1 8087:1 8093:1 8095:1 8104:1 8108:1 8120:1 8136:1 8140:1 8141:1 8145:1 8152:1 8154:1 8159:1 8179:1 8188:1 8195:2 8202:1 8208:1 8213:2 8221:1 8227:1 8250:5 8251:1 8254:2 8257:1 8259:3 8261:4 8278:1 8280:1 8299:2 8312:3 8327:2 8330:1 8333:1 8342:2 8345:6 8348:1 8359:2 8364:2 8377:1 8378:1 8391:2 8428:8 8433:2 8439:1 8444:1 8450:1 8455:1 8462:1 8488:1 8489:1 8494:1 8497:1 8512:1 8514:1 8518:1 8520:1 8521:1 8524:1 8532:2 8533:1 8534:1 8554:1 8570:1 8572:1 8575:1 8576:1 8590:4 8601:1 8608:2 8619:2 8621:3 8638:1 8646:2 8647:2 8651:3 8653:1 8663:1 8668:1 8673:1 8674:1 8675:1 8679:6 8682:1 8683:1 8687:1 8688:1 8693:2 8697:2 8700:2 8705:1 8707:1 8708:1 8709:1 8721:1 8752:1 8754:1 8755:1 8756:1 8762:1 8765:2 8766:2 8767:1 8772:1 8775:1 8776:2 8777:3 8783:12 8788:2 8792:2 8807:2 8814:1 8828:2 8834:1 8852:3 8862:5 8863:1 8867:2 8880:2 8885:1 8894:1 8899:1 8905:1 8909:2 8913:1 8923:1 8931:1 8939:1 8943:2 8952:1 8958:4 8967:2 8969:2 8970:1 8981:5 8985:1 8994:2 8997:6 8999:1 9001:1 9003:1 9008:2 9015:1 9027:3 9059:2 9068:1 9076:1 9084:1 9089:1 9095:1 9111:1 9113:1 9121:2 9128:1 9135:2 9139:2 9143:2 9148:2 9151:1 9152:2 9154:1 9155:1 9157:1 9160:2 9162:3 9163:1 9168:1 9169:1 9171:2 9173:1 9176:2 9179:2 9181:4 9184:3 9203:1 9207:2 9232:2 9245:1 9246:4 9258:1 9260:1 9262:4 9263:1 9281:2 9285:1 9293:1 9299:1 9300:1 9311:2 9319:1 9330:1 9333:1 9340:1 9345:1 9347:1 9370:1 9387:1 9396:1 9399:1 9402:2 9407:2 9418:1 9422:1 9424:1 9438:1 9440:1 9442:4 9445:2 9468:1 9480:1 9489:1 9547:1 9554:1 9568:2 9572:2 9580:2 9585:2 9587:1 9589:1 9598:2 9599:2 9604:1 9605:1 9606:1 9612:1 9615:1 9618:1 9630:1 9634:2 9655:3 9657:1 9661:1 9668:1 9679:1 9688:2 9694:1 9703:2 9714:1 9721:1 9726:1 9731:1 9735:1 9737:1 9751:1 9753:1 9768:2 9772:1 9773:1 9776:1 9778:2 9782:1 9784:1 9801:1 9806:2 9814:2 9823:2 9824:1 9826:1 9830:1 9831:2 9834:1 9835:1 9844:1 9846:1 9849:2 9871:1 9873:14 9883:2 9885:2 9890:2 9912:2 9914:1 9915:1 9922:1 9932:1 9945:1 9946:1 9948:1 9963:1 9966:2 9968:1 9974:1 9985:8 9993:1 9996:2 10001:1 10007:3 10011:1 10020:1 10028:1 10043:2 10065:1 10066:1 10070:2 10078:1 10080:1 10089:1 10102:2 10109:1 10116:1 10121:6 10125:3 10128:1 10129:3 10130:1 10144:2 10146:2 10152:1 10161:2 10165:1 10166:1 10168:1 10175:1 10177:1 10193:1 10197:1 10206:1 10207:1 10208:1 10209:1 10214:1 10216:3 10217:4 10221:2 10222:1 10261:1 10281:2 10285:1 10287:1 10288:1 10291:1 10304:1 10314:1 10330:6 10340:2 10364:1 10379:1 10384:4 10389:1 10390:5 10393:3 10394:3 10395:1 10396:1 10403:1 10407:2 10411:1 10412:1 10415:2 10416:3 10417:2 10433:1 10436:1 10438:6 10439:5 10440:1 10441:1 10445:1 10455:5 10458:1 10460:1 10462:1 10463:1 10469:1 10470:1 10485:1 10512:1 10514:1 10520:1 10524:2 10532:2 10533:2 10535:1 10541:1 10573:1 10574:1 10583:4 10595:4 10612:1 10617:1 10630:1 10650:2 10656:2 10658:3 10662:1 10664:1 10670:1 10674:1 10676:1 10677:1 10683:1 10684:1 10689:1 10694:1 10696:1 10699:1 10706:1 10716:1 10721:1 10727:1 10742:1 10743:1 10755:1 10775:1 10777:1 10783:1 10785:1 10790:2 10792:1 10801:1 10803:1 10808:1 10812:1 10817:1 10839:2 10843:1 10845:1 10848:1 10852:5 10854:1 10861:2 10865:1 10879:1 10881:4 10885:3 10896:1 10907:1 10918:1 10920:1 10932:2 10935:1 10940:1 10941:1 10943:4 10953:2 10962:1 10966:1 10969:2 10970:6 10973:2 10975:9 10978:1 10980:3 10984:1 10988:1 10989:1 10990:1 10993:1 10999:3 11000:1 11003:1 11004:1 11021:1 11022:1 11043:6 11045:2 11051:2 11057:8 11059:1 11076:1 11101:1 11104:1 11108:3 11127:1 11138:6 11140:1 11143:1 11150:1 11153:1 11158:1 11160:2 11163:1 11166:1 11176:1 11180:1 11183:1 11185:1 11187:1 11194:1 11209:1 11210:3 11215:1 11216:1 11223:1 11225:2 11234:1 11237:1 11248:1 11249:1 11253:4 11257:1 11266:1 11272:1 11274:1 11288:1 11300:1 11316:3 11323:1 11329:4 11331:6 11332:6 11334:2 11349:2 11352:3 11354:1 11358:4 11364:4 11368:2 11369:1 11371:3 11373:1 11374:1 11384:1 11390:1 11393:1 11404:1 11415:4 11416:3 11417:1 11419:1 11424:4 11436:46 11438:2 11442:1 11448:1 11453:1 11455:3 11457:1 11463:3 11470:10 11472:7 11473:1 11481:2 11484:1 11486:1 11506:1 11516:1 11519:1 11522:1 11525:1 11527:1 11534:1 11549:1 11552:1 11565:1 11574:3 11575:2 11578:1 11590:1 11594:2 11605:2 11618:3 11635:1 11639:1 11643:1 11645:1 11653:1 11655:1 11656:1 11660:1 11665:1 11687:1 11691:1 11694:2 11708:1 11712:3 11713:10 11724:2 11743:2 11755:2 11760:4 11775:1 11776:1 11781:3 11783:1 11784:3 11787:1 11794:2 11810:1 11838:1 11844:1 11845:1 11846:1 11847:1 11862:1 11863:1 11867:2 11869:2 11878:2 11896:1 11898:1 11900:1 11940:1 11941:1 11947:1 11948:1 11949:1 11963:1 11983:1 11986:1 11989:1 11994:1 11998:1 12012:1 12015:1 12016:1 12021:2 12028:1 12030:1 12033:1 12043:2 12045:1 12051:1 12055:1 12061:1 12070:1 12076:1 12077:2 12089:1 12100:1 12107:1 12118:1 12119:1 12127:3 12144:26 12156:1 12176:3 12183:3 12190:1 12194:1 12234:1 12242:1 12254:2 12267:6 12269:1 12272:1 12281:1 12286:1 12313:3 12314:3 12322:7 12345:1 12348:1 12360:1 12365:4 12366:3 12370:1 12371:2 12374:1 12380:1 12381:1 12384:2 12389:2 12390:3 12402:1 12408:1 12419:4 12424:2 12426:4 12442:3 12450:1 12459:1 12474:2 12479:1 12486:1 12488:1 12493:1 12494:1 12501:1 12516:1 12520:1 12536:1 12544:1 12545:1 12549:1 12555:1 12556:1 12568:2 12575:1 12580:2 12582:1 12583:1 12588:1 12596:4 12630:1 12637:1 12641:2 12664:2 12676:1 12685:2 12694:1 12695:1 12703:1 12711:1 12718:1 12725:1 12727:2 12731:4 12734:3 12736:1 12738:1 12745:1 12750:1 12757:1 12758:1 12770:1 12772:1 12775:1 12784:2 12789:2 12801:3 12804:2 12805:1 12809:2 12811:6 12814:1 12824:2 12830:3 12840:1 12842:1 12847:1 12861:1 12866:1 12871:1 12872:1 12883:1 12892:2 12899:1 12902:1 12911:1 12919:1 12925:1 12926:4 12929:1 12931:1 12934:1 12938:1 12944:1 12946:1 12947:4 12948:1 12949:1 12951:1 12956:1 12962:2 12982:1 12992:1 13000:1 13005:1 13016:3 13019:1 13048:1 13050:1 13064:1 13068:1 13082:1 13091:1 13106:2 13121:2 13136:1 13139:1 13160:3 13178:2 13179:1 13206:1 13208:1 13209:2 13213:3 13242:3 13245:1 13256:2 13260:1 13276:1 13278:1 13280:2 13302:1 13303:1 13304:1 13311:1 13313:2 13316:1 13318:2 13325:1 13326:6 13333:1 13334:1 13337:1 13347:1 13358:1 13371:1 13374:2 13378:1 13391:7 13393:1 13405:1 13408:1 13413:1 13421:1 13425:1 13437:1 13441:11 13443:6 13445:2 13456:1 13471:2 13474:2 13502:1 13521:1 13524:3 13531:1 13536:1 13545:1 13549:1 13554:3 13559:1 13572:1 13581:1 13583:2 13590:1 13596:1 13600:2 13602:2 13604:3 13605:2 13616:1 13625:1 13640:1 13659:2 13663:1 13680:1 13692:2 13693:2 13696:1 13708:4 13711:1 13714:5 13720:1 13721:1 13735:1 13740:1 13741:3 13745:2 13750:1 13751:1 13752:1 13766:4 13803:1 13806:1 13807:7 13819:1 13836:1 13838:1 13843:3 13849:1 13860:1 13867:1 13873:1 13875:1 13882:1 13887:5 13896:3 13904:1 13905:1 13906:1 13912:1 13915:3 13922:1 13924:1 13937:1 13942:1 13952:1 13967:3 13987:1 13990:1 14004:1 14007:1 14016:1 14024:2 14028:1 14032:7 14036:1 14037:2 14043:3 14081:3 14089:1 14094:1 14096:1 14109:3 14120:1 14130:1 14140:1 14144:1 14151:1 14175:1 14179:1 14181:1 14186:1 14189:1 14193:1 14195:1 14198:3 14199:3 14201:4 14204:3 14206:1 14208:1 14209:2 14212:1 14217:2 14219:1 14220:1 14221:1 14229:1 14242:1 14243:1 14252:1 14254:2 14258:2 14262:6 14280:1 14282:1 14285:1 14295:1 14304:2 14307:1 14314:1 14315:1 14319:1 14321:1 14326:1 14328:1 14363:12 14368:2 14369:6 14400:1 14401:1 14404:2 14406:1 14410:1 14412:1 14414:1 14415:1 14432:1 14433:2 14436:1 14437:1 14443:2 14447:1 14449:3 14458:2 14470:2 14482:1 14485:1 14498:1 14499:1 14513:1 14515:1 14559:1 14564:1 14565:1 14581:1 14586:1 14617:1 14625:1 14629:1 14631:1 14633:1 14637:1 14642:5 14662:1 14668:4 14678:4 14679:1 14683:2 14697:2 14700:1 14707:1 14709:1 14717:1 14720:1 14725:2 14729:2 14738:1 14750:2 14756:3 14758:1 14759:1 14763:1 14769:2 14771:2 14776:1 14821:1 14825:1 14832:2 14834:1 14843:1 14844:2 14845:2 14850:1 14852:1 14857:1 14871:1 14876:1 14877:1 14879:1 14889:1 14895:4 14896:4 14900:1 14931:2 14936:1 14945:2 14951:1 14954:1 14959:12 14964:2 14977:2 14979:2 14985:2 14988:1 14997:1 15003:2 15004:1 15032:2 15033:1 15037:1 15048:1 15052:1 15054:1 15055:1 15073:1 15099:18 15100:2 15108:1 15133:1 15136:2 15138:1 15152:1 15155:1 15165:1 15166:1 15170:1 15184:1 15189:1 15198:1 15201:1 15202:1 15205:1 15208:1 15210:4 15222:1 15224:1 15226:1 15229:2 15250:1 15256:2 15260:1 15265:1 15281:2 15285:1 15287:1 15298:1 15300:1 15301:4 15306:1 15307:1 15309:1 15315:1 15320:3 15332:1 15339:1 15340:2 15341:1 15346:1 15348:1 15359:4 15360:1 15369:1 15384:1 15385:1 15391:1 15416:1 15427:1 15435:1 15436:1 15441:1 15447:1 15448:2 15456:2 15458:1 15479:2 15486:1 15488:1 15490:1 15492:1 15504:1 15514:1 15519:3 15529:1 15539:2 15542:1 15544:1 15548:10 15550:1 15552:7 15554:4 15569:2 15573:3 15577:1 15578:1 15584:1 15589:2 15591:1 15595:1 15597:2 15607:1 15618:2 15621:1 15633:7 15634:2 15654:2 15659:2 15663:1 15664:1 15670:1 15674:4 15699:1 15703:1 15712:6 15715:1 15722:1 15723:1 15727:1 15732:3 15742:1 15745:2 15751:1 15753:2 15754:6 15756:1 15774:1 15787:1 15795:2 15796:1 15799:1 15806:1 15814:3 15821:1 15835:1 15860:1 15875:2 15879:2 15881:1 15894:1 15896:2 15913:1 15918:1 15924:1 15931:1 15958:1 15975:1 15992:1 16018:1 16020:2 16027:1 16030:1 16031:1 16040:1 16045:1 16050:1 16051:2 16054:2 16058:1 16059:2 16063:1 16067:1 16071:1 16074:1 16075:5 16078:1 16080:5 16083:1 16090:1 16093:2 16100:2 16101:2 16105:5 16106:1 16110:1 16114:4 16117:1 16119:1 16127:3 16128:1 16130:1 16131:3 16134:1 16137:1 16140:1 16142:1 16163:2 16172:1 16176:1 16177:1 16206:1 16207:1 16211:4 16225:7 16240:1 16246:1 16249:1 16260:1 16262:1 16269:1 16273:7 16278:1 16285:1 16297:2 16305:1 16312:1 16339:1 16341:1 16357:1 16364:1 16374:3 16376:1 16391:1 16393:1 16395:1 16399:1 16411:1 16414:1 16418:1 16427:1 16430:1 16431:1 16443:1 16446:3 16473:1 16498:1 16502:1 16519:1 16523:1 16527:1 16531:2 16535:2 16538:1 16551:1 16552:3 16553:2 16560:1 16575:2 16580:2 16581:1 16584:1 16585:2 16586:1 16596:3 16600:1 16601:1 16602:2 16610:1 16621:1 16628:3 16631:2 16650:1 16658:1 16667:1 16676:17 16678:1 16679:1 16708:1 16712:1 16725:1 16727:1 16731:4 16745:1 16749:2 16750:2 16758:2 16765:1 16780:1 16800:1 16801:1 16805:1 16810:2 16816:2 16823:1 16828:2 16843:1 16844:2 16850:1 16851:1 16852:1 16867:2 16869:1 16874:2 16890:1 16893:3 16898:1 16921:1 16936:4 16949:1 16951:1 16955:1 16964:1 16981:1 16987:1 16997:1 16999:2 17005:1 17008:1 17028:1 17029:1 17033:1 17045:1 17052:3 17053:1 17055:1 17056:1 17062:15 17063:2 17068:1 17071:4 17076:1 17078:2 17079:1 17083:2 17084:1 17089:1 17092:1 17099:2 17111:1 17126:1 17131:1 17132:1 17133:1 17137:1 17144:2 17151:5 17156:4 17168:1 17183:2 17189:1 17201:1 17202:1 17209:1 17230:1 17231:1 17235:2 17237:2 17242:1 17259:4 17263:3 17266:2 17268:3 17273:1 17279:2 17287:4 17295:1 17301:1 17314:1 17332:1 17339:1 17345:1 17351:1 17379:1 17390:1 17394:1 17396:1 17397:1 17403:6 17406:1 17414:1 17417:1 17418:1 17429:2 17431:1 17432:1 17438:1 17453:1 17461:1 17463:1 17468:2 17495:2 17501:2 17504:2 17518:2 17533:2 17536:1 17543:1 17547:2 17549:2 17553:1 17554:1 17555:2 17565:1 17566:2 17572:1 17591:6 17594:1 17604:1 17608:1 17609:1 17612:1 17616:1 17627:1 17632:1 17634:2 17640:1 17643:1 17652:1 17656:1 17660:1 17670:2 17672:1 17675:2 17676:2 17695:1 17696:1 17753:1 17759:1 17767:1 17769:1 17774:5 17776:3 17798:1 17799:1 17801:1 17809:3 17810:2 17818:1 17823:1 17826:1 17855:1 17881:1 17893:1 17894:1 17897:6 17922:1 17925:1 17929:2 17930:1 17935:1 17936:1 17971:1 17986:1 17989:1 17996:1 18002:1 18003:1 18012:1 18022:1 18023:1 18027:1 18032:3 18038:1 18045:1 18053:1 18070:1 18074:2 18077:2 18080:1 18099:3 18104:1 18126:1 18129:1 18141:1 18143:1 18150:1 18153:2 18175:1 18179:1 18180:3 18191:1 18198:1 18200:1 18211:1 18227:2 18230:1 18245:2 18258:1 18263:1 18264:4 18269:1 18272:1 18274:2 18290:1 18297:1 18302:1 18303:1 18310:2 18319:1 18333:1 18339:1 18347:1 18357:2 18358:1 18360:2 18362:1 18380:3 18383:2 18386:1 18390:1 18393:1 18395:1 18398:2 18399:1 18415:1 18432:1 18434:1 18438:1 18441:1 18451:1 18453:1 18455:1 18459:2 18465:1 18499:1 18523:6 18525:1 18531:3 18534:1 18535:2 18542:1 18545:1 18546:2 18556:1 18564:1 18566:1 18575:1 18586:1 18603:1 18606:15 18613:5 18616:2 18627:2 18629:1 18634:1 18638:2 18644:2 18652:1 18656:1 18665:2 18666:1 18677:1 18685:1 18687:2 18689:3 18692:1 18693:1 18697:1 18703:1 18707:1 18709:3 18710:1 18711:4 18713:1 18714:1 18717:3 18719:1 18725:2 18729:1 18735:1 18742:2 18751:1 18752:2 18760:1 18763:1 18765:1 18769:1 18770:1 18780:1 18791:2 18796:1 18807:1 18810:1 18815:1 18835:1 18851:5 18865:1 18872:1 18881:2 18893:1 18897:1 18904:2 18909:2 18918:1 18947:1 18948:1 18973:1 19008:1 19013:1 19014:2 19015:1 19025:2 19026:1 19051:1 19053:1 19055:1 19062:1 19064:2 19085:1 19093:2 19114:1 19115:1 19117:5 19119:1 19121:3 19126:5 19152:2 19155:1 19168:1 19186:1 19215:7 19228:1 19235:1 19270:1 19278:1 19280:1 19292:1 19296:1 19311:1 19314:1 19315:4 19324:4 19335:1 19339:1 19342:1 19344:2 19353:2 19364:1 19365:1 19367:2 19386:6 19388:2 19391:1 19407:1 19413:1 19418:2 19444:1 19450:4 19452:1 19454:1 19471:1 19484:1 19495:1 19496:1 19498:2 19503:2 19506:1 19508:1 19509:1 19512:1 19524:9 19525:1 19535:2 19536:3 19537:1 19538:2 19545:1 19549:1 19551:2 19555:1 19556:1 19558:2 19568:1 19578:1 19582:1 19586:1 19595:1 19597:1 19598:1 19600:5 19602:2 19615:1 19616:1 19621:1 19630:1 19633:1 19638:3 19645:2 19649:2 19652:1 19655:16 19659:1 19664:5 19667:1 19680:1 19692:1 19696:3 19700:1 19715:3 19718:2 19720:1 19721:1 19724:3 19727:3 19733:1 19747:1 19757:2 19777:2 19785:1 19786:1 19792:3 19816:3 19829:1 19833:1 19851:1 19857:6 19863:1 19865:1 19891:1 19896:1 19903:2 19908:3 19910:1 19913:1 19918:4 19929:5 19936:4 19965:1 19974:1 19975:5 19977:1 19984:1 19991:3 19992:1 19995:1 19998:1 19999:1 20015:1 20020:1 20022:1 20030:1 20034:6 20035:1 20037:1 20038:2 20039:1 20040:2 20041:1 20044:1 20047:1 20049:7 20050:3 20052:1 20069:1 20075:1 20076:1 20078:1 20081:1 20101:1 20102:6 20109:1 20117:2 20132:1 20160:1 20170:1 20171:1 20185:1 20188:1 20209:1 20210:2 20216:2 20223:1 20227:1 20243:1 20251:1 20256:1 20258:1 20262:1 20266:1 20267:2 20276:1 20277:1 20284:1 20298:5 20305:3 20363:1 20366:1 20368:1 20378:1 20379:1 20380:1 20382:1 20383:1 20387:2 20390:7 20393:1 20396:1 20402:1 20409:1 20413:1 20430:2 20440:2 20451:1 20452:1 20453:1 20464:1 20466:1 20469:1 20482:7 20494:6 20519:3 20529:1 20552:1 20580:1 20588:1 20589:2 20598:1 20603:1 20607:1 20614:1 20621:1 20628:1 20633:1 20636:1 20669:1 20670:2 20697:1 20702:1 20706:1 20713:1 20718:1 20724:1 20734:1 20735:1 20746:1 20758:1 20792:1 20795:1 20817:1 20822:2 20828:2 20844:1 20845:2 20846:1 20848:3 20851:5 20855:2 20874:1 20875:1 20878:1 20880:1 20892:1 20903:1 20912:1 20933:1 20940:1 20955:1 20956:1 20966:1 20980:1 21034:3 21072:1 21080:3 21083:4 21096:1 21099:2 21107:1 21110:2 21111:2 21113:1 21118:2 21121:1 21142:1 21145:1 21151:1 21153:1 21163:1 21180:1 21186:1 21188:2 21190:1 21202:1 21207:1 21213:3 21216:1 21223:2 21228:1 21244:2 21262:1 21265:1 21271:4 21274:1 21276:2 21284:1 21298:2 21304:1 21308:1 21315:1 21318:1 21333:1 21339:1 21341:1 21349:2 21353:1 21361:1 21362:1 21374:3 21378:1 21379:2 21386:1 21402:1 21404:1 21443:1 21446:1 21451:3 21459:1 21463:1 21464:1 21470:2 21494:1 21509:2 21510:3 21512:1 21538:2 21539:1 21540:1 21547:1 21551:1 21568:1 21579:1 21581:1 21586:2 21589:2 21613:1 21619:1 21623:1 21626:3 21635:3 21637:3 21639:1 21640:3 21646:1 21667:1 21674:2 21677:1 21703:1 21707:5 21713:1 21715:1 21718:1 21777:1 21820:2
1 5:2 10:1 17:1 23:2 35:1 44:2 53:1 66:1 69:1 77:1 83:1 91:1 99:1 101:1 103:3 107:1 123:1 124:1 128:2 130:1 131:1 132:1 134:1 140:1 163:1 181:1 217:1 233:1 251:1 255:1 260:3 261:1 266:1 270:2 275:1 280:1 296:2 308:1 309:1 319:2 320:1 324:3 337:1 343:6 346:1 369:1 370:1 382:1 401:2 411:1 419:1 432:1 439:7 454:1 461:3 466:1 467:1 468:2 476:1 490:1 501:2 510:2 523:3 527:1 547:1 563:4 564:3 571:1 573:3 575:1 578:1 582:3 583:1 593:1 600:1 602:2 605:2 626:3 628:3 635:1 644:2 660:1 663:6 664:1 667:5 677:1 685:2 698:2 706:1 717:2 742:1 744:1 747:1 749:1 753:1 761:1 762:6 778:3 790:1 797:2 806:4 827:3 835:1 849:1 854:2 858:1 861:1 869:1 879:1 883:1 889:1 893:1 894:1 901:2 904:1 908:3 918:1 943:1 954:1 956:4 959:2 964:1 989:2 1003:1 1004:2 1005:1 1018:2 1030:1 1034:1 1037:4 1040:1 1045:1 1056:1 1071:2 1073:4 1074:1 1079:1 1081:1 1099:1 1111:1 1124:1 1142:1 1152:2 1159:1 1160:2 1200:1 1205:2 1209:1 1216:1 1229:2 1230:1 1237:3 1248:2 1258:1 1261:2 1270:2 1273:1 1278:1 1281:1 1282:3 1308:1 1320:6 1322:3 1331:1 1343:1 1349:1 1351:1 1356:1 1358:4 1367:1 1375:1 1389:1 1392:1 1402:16 1407:4 1418:1 1419:3 1430:1 1435:1 1441:4 1450:1 1453:1 1456:1 1457:15 1459:1 1463:1 1474:1 1475:4 1476:2 1478:8 1481:1 1482:1 1484:1 1486:3 1488:4 1489:3 1492:1 1507:2 1530:5 1531:4 1536:3 1549:1 1550:1 1598:1 1600:2 1622:1 1624:2 1642:1 1644:1 1651:2 1653:1 1659:3 1683:2 1689:1 1698:1 1712:2 1715:1 1724:1 1740:1 1743:1 1757:1 1771:1 1774:2 1779:1 1781:1 1784:1 1785:1 1789:1 1790:1 1797:2 1800:1 1834:3 1866:1 1875:1 1877:3 1879:3 1884:6 1885:2 1886:2 1887:1 1888:6 1889:2 1890:1 1892:2 1893:2 1894:1 1895:1 1898:2 1899:5 1903:1 1904:1 1908:1 1911:1 1912:2 1913:2 1920:1 1921:1 1927:1 1940:1 1947:1 1950:1 1951:1 1953:2 1962:1 1967:2 1973:2 1975:1 1985:1 1999:2 2007:2 2009:1 2024:1 2025:1 2029:1 2036:1 2051:1 2055:1 2057:1 2077:1 2079:1 2090:1 2102:1 2105:1 2107:1 2112:2 2113:1 2114:1 2128:1 2142:1 2161:2 2167:1 2170:1 2171:1 2172:1 2179:1 2180:2 2181:2 2199:1 2208:1 2209:2 2215:2 2233:1 2235:1 2239:1 2240:3 2267:1 2271:1 2274:1 2276:1 2281:1 2288:1 2290:1 2291:2 2293:1 2306:1 2314:1 2333:1 2337:1 2340:1 2345:4 2356:8 2359:2 2375:1 2376:1 2412:2 2425:1 2427:1 2429:1 2434:1 2436:3 2441:2 2456:1 2458:1 2460:2 2465:1 2469:1 2472:2 2485:2 2486:2 2489:1 2498:1 2499:1 2503:1 2506:5 2507:1 2510:1 2511:2 2515:1 2520:2 2522:1 2527:3 2532:1 2545:1 2552:2 2553:1 2562:1 2563:4 2567:2 2572:2 2574:1 2575:1 2580:1 2583:1 2584:1 2595:3 2603:1 2604:2 2613:3 2617:1 2619:2 2621:1 2623:1 2626:1 2635:1 2649:1 2654:1 2656:5 2664:1 2684:1 2691:1 2695:3 2701:2 2704:14 2706:1 2715:2 2718:6 2733:1 2739:1 2749:2 2750:4 2752:3 2753:4 2755:1 2768:1 2775:1 2791:1 2795:2 2798:4 2800:1 2801:1 2804:1 2821:2 2828:1 2829:2 2834:1 2835:1 2840:3 2844:2 2845:1 2847:1 2862:2 2865:1 2907:1 2913:1 2919:1 2927:9 2930:2 2932:1 2941:1 2945:2 2949:6 2953:1 2958:1 2959:1 2965:1 2968:2 2971:4 2978:1 2988:1 2989:1 2992:2 2997:1 3005:1 3021:1 3024:3 3025:1 3027:2 3032:1 3043:1 3057:1 3059:2 3062:1 3065:2 3066:1 3071:2 3075:1 3093:2 3098:1 3115:1 3124:5 3138:1 3153:11 3156:2 3161:1 3166:2 3179:1 3184:1 3190:1 3194:1 3208:2 3216:1 3228:1 3242:1 3263:2 3271:5 3274:2 3275:1 3276:3 3290:1 3295:1 3299:1 3302:2 3308:1 3322:3 3325:2 3326:1 3329:3 3331:5 3332:1 3335:1 3337:2 3340:2 3341:2 3343:1 3344:4 3346:5 3350:1 3353:1 3354:5 3355:3 3358:5 3360:7 3362:1 3373:1 3388:1 3391:1 3412:1 3414:1 3417:1 3429:1 3439:2 3441:1 3445:1 3450:3 3451:3 3455:1 3465:2 3470:1 3475:2 3477:1 3488:1 3493:1 3500:1 3509:2 3518:1 3521:2 3523:1 3524:1 3538:1 3539:1 3541:2 3548:1 3549:1 3552:1 3557:1 3576:1 3577:1 3599:1 3612:1 3613:1 3622:1 3631:1 3633:1 3644:3 3661:1 3672:1 3674:1 3677:1 3679:3 3684:2 3692:1 3697:1 3703:1 3711:1 3712:1 3717:1 3718:1 3722:1 3726:1 3732:1 3747:1 3749:3 3755:1 3759:1 3760:3 3767:2 3772:1 3775:7 3777:3 3781:1 3787:1 3788:1 3789:1 3790:1 3793:1 3800:3 3806:2 3808:2 3815:2 3819:1 3821:1 3825:1 3828:10 3856:4 3857:1 3858:1 3865:1 3887:1 3888:2 3893:2 3896:1 3899:2 3900:1 3901:2 3903:2 3904:1 3910:1 3916:1 3921:1 3924:2 3925:7 3927:1 3928:1 3939:2 3948:2 3957:9 3965:6 3966:1 3979:2 3981:1 3986:1 3988:2 3990:1 3997:3 3998:2 4009:2 4025:1 4026:2 4032:3 4036:1 4038:1 4041:1 4048:2 4060:1 4065:4 4071:1 4090:1 4097:1 4101:2 4103:1 4104:2 4106:2 4118:1 4121:3 4122:1 4129:1 4131:1 4133:7 4136:1 4143:2 4147:1 4150:1 4158:1 4176:1 4182:1 4198:1 4199:1 4200:1 4216:1 4227:1 4230:1 4237:1 4239:1 4242:3 4246:2 4247:1 4264:1 4265:4 4272:1 4277:1 4279:16 4292:1 4311:3 4312:1 4315:1 4316:1 4317:1 4318:1 4326:2 4333:3 4335:1 4338:1 4358:20 4361:3 4381:1 4382:1 4387:1 4398:2 4400:3 4412:1 4426:2 4427:1 4429:3 4438:1 4440:1 4442:1 4447:1 4452:1 4459:1 4461:1 4482:1 4489:1 4498:1 4505:1 4513:1 4524:1 4532:1 4534:5 4555:2 4565:3 4573:1 4582:1 4584:1 4586:1 4591:1 4600:2 4627:1 4641:1 4643:2 4661:1 4663:1 4667:1 4680:2 4698:1 4700:1 4717:2 4731:1 4737:3 4757:1 4770:2 4771:1 4786:1 4792:1 4794:2 4797:1 4803:1 4811:1 4841:1 4854:1 4855:1 4863:1 4866:1 4868:2 4869:1 4877:1 4884:1 4889:2 4895:1 4910:7 4912:1 4933:1 4936:3 4944:1 4958:1 4969:1 5004:1 5009:1 5018:3 5023:1 5028:1 5032:15 5051:1 5053:1 5058:1 5059:1 5068:1 5074:1 5082:1 5083:2 5087:1 5089:1 5096:1 5103:1 5107:1 5133:1 5149:1 5156:1 5182:2 5187:1 5199:1 5205:1 5206:16 5218:1 5220:2 5222:2 5223:2 5226:1 5244:1 5249:1 5250:1 5251:1 5257:14 5274:4 5275:1 5277:2 5288:1 5290:6 5293:1 5307:1 5308:2 5310:1 5317:1 5321:3 5331:2 5338:3 5348:1 5369:1 5386:1 5395:1 5396:2 5418:1 5422:1 5429:2 5434:1 5438:2 5453:3 5456:6 5460:1 5461:1 5492:1 5495:1 5499:2 5506:2 5508:1 5528:2 5530:1 5533:2 5534:1 5547:2 5555:3 5557:1 5572:2 5574:1 5577:3 5579:4 5583:1 5587:2 5591:1 5592:2 5593:2 5606:4 5608:1 5618:1 5621:2 5624:2 5625:2 5647:1 5651:2 5656:2878 5670:1 5673:1 5678:1 5679:2 5682:3 5687:1 5694:1 5696:1 5700:1 5714:2 5716:1 5726:6 5728:4 5741:2 5761:1 5765:1 5772:1 5775:1 5779:1 5784:2 5787:1 5793:1 5814:2 5816:1 5824:1 5829:2 5846:1 5855:1 5862:2 5866:1 5870:1 5873:1 5891:2 5894:2 5901:1 5904:1 5905:1 5915:2 5927:1 5939:4 5940:1 5941:1 5944:2 5945:1 5947:2 5949:1 5952:1 5955:2 5981:1 5983:1 5987:2 5992:6 5993:4 5997:1 6004:1 6015:1 6023:1 6025:1 6033:1 6050:1 6057:1 6066:1 6067:1 6088:1 6095:1 6101:1 6106:7 6108:1 6109:1 6142:3 6156:1 6165:2 6171:1 6176:3 6179:2 6184:1 6185:1 6189:2 6192:1 6201:2 6202:1 6210:2 6240:1 6244:1 6247:2 6248:4 6268:4 6295:1 6296:1 6302:1 6304:1 6308:3 6312:1 6320:2 6327:1 6335:2 6343:2 6350:1 6359:1 6366:1 6367:1 6373:2 6376:1 6378:3 6381:1 6397:1 6398:1 6399:2 6403:1 6410:2 6414:1 6417:1 6435:1 6445:1 6449:3 6452:1 6460:1 6468:1 6479:2 6488:5 6507:1 6513:1 6518:1 6520:1 6521:1 6540:1 6543:1 6550:2 6558:2 6567:4 6570:1 6577:2 6578:1 6590:2 6593:1 6596:1 6597:1 6603:4 6606:2 6612:2 6614:2 6631:5 6642:3 6655:1 6662:1 6669:1 6673:3 6674:2 6700:1 6702:2 6708:3 6709:3 6711:1 6713:1 6716:1 6728:3 6732:1 6733:2 6746:9 6747:1 6756:1 6769:1 6776:2 6792:1 6793:1 6800:1 6804:1 6820:1 6822:1 6823:1 6832:2 6833:1 6842:1 6846:2 6870:5 6871:1 6892:15 6894:2 6899:1 6901:2 6906:1 6914:1 6916:1 6927:1 6936:1 6948:1 6957:1 6961:1 6975:4 6976:1 6986:1 6989:2 6997:1 6998:2 7000:1 7012:4 7013:1 7023:1 7028:1 7038:2 7051:1 7066:1 7074:1 7075:4 7084:3 7090:1 7095:2 7098:1 7107:3 7112:1 7117:4 7119:7 7121:3 7124:1 7129:2 7131:2 7132:2 7136:1 7138:2 7140:6 7142:4 7146:2 7147:8 7154:2 7158:5 7159:1 7162:1 7171:3 7175:1 7177:1 7199:1 7201:1 7203:2 7206:2 7211:1 7213:2 7215:1 7229:1 7248:1 7253:1 7264:1 7271:1 7272:1 7274:1 7283:1 7300:2 7315:1 7340:1 7345:1 7360:1 7387:1 7388:3 7404:1 7405:2 7406:1 7408:1 7419:1 7421:3 7426:1 7450:1 7458:1 7461:1 7462:1 7466:1 7470:1 7480:1 7488:2 7497:1 7504:2 7506:1 7516:1 7519:1 7520:2 7529:1 7530:2 7537:1 7545:1 7555:1 7562:1 7563:1 7569:1 7572:2 7575:4 7580:2 7588:1 7589:4 7636:1 7665:1 7668:1 7682:2 7689:3 7691:1 7693:1 7697:2 7699:2 7700:2 7702:2 7712:1 7720:1 7722:2 7724:3 7732:3 7739:1 7740:2 7741:2 7744:1 7768:5 7778:1 7779:2 7792:1 7797:1 7812:1 7818:1 7821:2 7823:4 7835:5 7853:1 7859:1 7860:2 7867:1 7872:2 7873:1 7878:1 7891:1 7898:1 7905:3 7930:1 7931:1 7938:2 7940:1 7944:2 7953:2 7964:1 7965:1 7969:1 7974:3 7975:20 7977:2 7985:1 7991:1 7994:5 8003:1 8006:1 8022:1 8033:2 8035:1 8040:1 8059:3 8070:1 8071:1 8075:1 8087:1 8093:1 8095:1 8104:1 8108:1 8120:1 8136:1 8140:1 8141:1 8145:1 8152:1 8154:1 8159:1 8179:1 8188:1 8195:2 8202:1 8206:1 8208:1 8213:2 8221:1 8227:1 8235:1 8250:5 8251:1 8254:2 8257:1 8259:3 8261:4 8278:1 8280:1 8299:2 8301:1 8312:3 8327:2 8330:1 8333:1 8342:2 8345:6 8348:1 8359:2 8364:2 8377:1 8378:1 8391:2 8428:8 8433:2 8439:1 8444:1 8450:1 8455:1 8462:1 8488:1 8489:1 8494:1 8497:1 8512:1 8514:1 8518:1 8520:1 8521:1 8524:1 8532:3 8533:1 8534:1 8554:1 8570:1 8572:1 8575:1 8576:1 8590:4 8601:1 8608:2 8619:2 8621:3 8638:1 8646:2 8647:2 8651:4 8653:1 8663:1 8668:1 8673:1 8674:1 8675:1 8679:6 8682:1 8683:1 8687:1 8688:1 8693:2 8697:2 8700:2 8705:1 8707:1 8708:1 8709:1 8721:1 8752:1 8754:1 8755:1 8756:1 8762:1 8765:2 8766:2 8767:1 8772:1 8775:1 8776:2 8777:3 8783:12 8788:2 8792:2 8807:2 8814:1 8828:2 8834:1 8852:3 8862:5 8863:1 8867:2 8880:2 8885:1 8894:1 8899:1 8905:1 8909:2 8913:1 8923:1 8931:1 8939:1 8943:2 8952:1 8958:4 8967:2 8969:2 8970:1 8981:5 8985:1 8994:2 8997:6 8999:1 9001:1 9003:1 9008:2 9015:1 9027:3 9059:2 9068:1 9076:1 9084:2 9089:1 9095:1 9111:1 9113:1 9121:2 9128:1 9135:2 9139:2 9143:2 9148:2 9151:1 9152:2 9154:1 9155:1 9157:1 9160:2 9162:3 9163:1 9168:1 9169:1 9171:2 9173:1 9176:2 9179:2 9181:4 9184:3 9203:1 9207:2 9232:2 9245:1 9246:4 9258:1 9260:1 9262:4 9263:1 9281:2 9285:1 9293:1 9299:1 9300:1 9311:2 9319:1 9330:1 9333:1 9340:1 9345:1 9347:1 9370:1 9387:1 9396:1 9399:1 9402:2 9407:2 9418:1 9422:1 9424:1 9438:1 9440:1 9442:4 9445:2 9468:1 9480:1 9489:1 9547:1 9554:1 9568:2 9572:2 9580:2 9585:2 9587:1 9589:1 9598:2 9599:2 9604:1 9605:1 9606:1 9612:1 9615:1 9618:1 9630:1 9634:2 9655:3 9657:1 9661:1 9668:1 9679:1 9688:2 9694:1 9703:2 9714:1 9721:1 9726:1 9731:1 9735:1 9737:1 9751:1 9753:1 9768:2 9772:1 9773:1 9776:1 9778:2 9782:1 9784:1 9801:1 9806:2 9814:2 9823:2 9824:1 9826:1 9830:1 9831:2 9834:1 9835:1 9836:1 9844:1 9846:1 9849:2 9871:1 9873:14 9883:2 9885:2 9890:2 9912:2 9914:1 9915:1 9922:1 9932:1 9942:1 9945:1 9946:1 9948:1 9963:1 9966:2 9968:1 9974:1 9985:8 9987:1 9993:1 9996:2 10001:1 10007:3 10011:1 10020:1 10028:1 10037:1 10043:2 10060:1 10065:1 10066:1 10070:2 10078:1 10080:1 10089:1 10102:2 10109:1 10116:1 10121:6 10125:3 10128:1 10129:3 10130:1 10144:2 10146:2 10152:1 10161:2 10165:1 10166:1 10168:1 10169:1 10175:1 10177:1 10193:1 10197:1 10206:1 10207:1 10208:1 10209:1 10214:1 10216:3 10217:4 10221:2 10222:1 10229:1 10261:1 10281:2 10285:1 10287:1 10288:1 10291:1 10304:1 10314:1 10330:6 10340:2 10364:1 10379:1 10384:4 10389:1 10390:5 10393:3 10394:3 10395:1 10396:1 10403:1 10407:2 10411:1 10412:1 10415:2 10416:3 10417:2 10433:1 10436:1 10438:6 10439:5 10440:1 10441:1 10445:1 10455:5 10458:1 10460:1 10462:1 10463:1 10469:1 10470:1 10485:1 10512:1 10514:1 10520:1 10524:2 10532:2 10533:2 10535:1 10541:1 10573:1 10574:1 10583:4 10595:4 10612:1 10617:1 10630:1 10650:2 10656:2 10658:3 10662:1 10664:1 10670:1 10674:1 10676:1 10677:1 10683:1 10684:1 10689:1 10694:1 10696:1 10699:1 10706:1 10716:1 10721:1 10727:1 10742:1 10743:1 10755:1 10775:1 10777:1 10783:1 10785:1 10790:2 10792:1 10801:1 10803:1 10808:1 10812:1 10817:1 10839:2 10843:1 10845:1 10848:1 10852:5 10854:1 10861:2 10865:1 10879:1 10881:4 10885:3 10896:1 10907:1 10918:1 10920:1 10924:1 10932:2 10935:1 10940:1 10941:1 10943:4 10953:2 10962:1 10966:1 10969:2 10970:6 10973:2 10975:9 10978:1 10980:3 10984:1 10987:1 10988:1 10989:1 10990:1 10993:1 10999:3 11000:1 11003:1 11004:1 11021:1 11022:1 11043:6 11045:2 11051:2 11057:8 11059:1 11076:1 11101:1 11104:1 11108:3 11127:1 11138:6 11140:1 11143:1 11150:1 11153:1 11158:1 11160:2 11163:2 11166:1 11176:1 11180:1 11183:1 11185:1 11187:1 11194:1 11209:1 11210:3 11215:1 11216:1 11223:1 11225:2 11234:1 11237:1 11248:1 11249:2 11253:4 11257:1 11266:1 11272:1 11274:1 11288:1 11300:1 11316:3 11323:1 11329:4 11331:6 11332:6 11334:2 11349:2 11352:3 11354:1 11358:4 11364:4 11368:2 11369:1 11371:3 11373:1 11374:1 11384:1 11390:1 11393:1 11404:1 11415:4 11416:3 11417:1 11419:1 11424:4 11436:48 11438:2 11442:1 11448:1 11453:1 11455:3 11457:1 11463:3 11470:10 11472:7 11473:1 11481:2 11484:1 11486:1 11506:1 11516:1 11519:1 11522:1 11525:1 11527:1 11534:1 11549:1 11552:2 11565:1 11574:3 11575:2 11578:1 11590:1 11594:2 11605:2 11618:3 11635:1 11639:1 11643:1 11645:1 11653:1 11655:1 11656:1 11660:1 11665:1 11687:1 11691:2 11694:2 11708:1 11712:3 11713:10 11724:2 11743:2 11755:3 11760:4 11775:1 11776:1 11781:3 11783:1 11784:3 11787:1 11794:2 11810:1 11838:1 11844:1 11845:1 11846:1 11847:1 11862:1 11863:1 11867:2 11869:2 11878:2 11896:1 11898:1 11900:1 11940:1 11941:1 11947:1 11948:1 11949:1 11963:1 11983:1 11986:1 11989:1 11994:1 11996:1 11998:1 12012:1 12015:1 12016:1 12021:2 12028:1 12030:1 12033:1 12043:2 12045:1 12051:1 12055:1 12061:1 12070:1 12076:1 12077:2 12089:1 12100:1 12107:1 12118:1 12119:1 12127:3 12144:27 12156:1 12176:3 12183:3 12190:1 12194:1 12234:1 12242:1 12254:2 12267:6 12269:1 12272:1 12281:1 12286:1 12313:3 12314:3 12322:7 12345:1 12348:1 12360:1 12365:4 12366:3 12370:2 12371:2 12374:1 12380:1 12381:1 12384:2 12389:2 12390:3 12402:1 12408:1 12419:4 12424:2 12426:4 12442:3 12450:1 12459:1 12474:2 12479:1 12486:1 12488:1 12493:1 12494:1 12501:1 12516:1 12520:1 12536:1 12544:1 12545:1 12549:1 12555:1 12556:1 12557:1 12568:2 12575:1 12580:2 12582:1 12583:1 12588:1 12596:4 12630:1 12637:1 12641:3 12664:2 12670:1 12676:1 12685:2 12694:1 12695:1 12703:1 12711:1 12718:1 12725:1 12727:2 12731:4 12734:3 12736:1 12738:1 12745:1 12750:1 12757:1 12758:1 12770:1 12772:1 12775:1 12784:2 12789:2 12801:3 12804:2 12805:1 12809:2 12811:6 12814:1 12824:2 12830:3 12840:1 12842:1 12847:1 12861:1 12866:1 12871:1 12872:1 12883:1 12892:2 12899:1 12902:1 12911:1 12919:1 12925:1 12926:4 12928:1 12929:1 12931:1 12934:1 12938:1 12944:1 12946:1 12947:4 12948:1 12949:1 12951:1 12956:1 12962:2 12982:1 12992:1 13000:1 13005:1 13016:3 13019:1 13048:1 13050:2 13064:1 13068:1 13082:1 13091:1 13106:2 13115:1 13121:2 13136:1 13139:1 13160:3 13178:2 13179:1 13191:1 13206:1 13208:1 13209:2 13213:3 13242:3 13245:1 13256:2 13260:1 13276:1 13278:1 13280:2 13302:1 13303:1 13304:1 13311:1 13313:2 13316:1 13318:2 13325:1 13326:7 13333:1 13334:1 13337:1 13347:1 13358:1 13371:1 13374:2 13378:1 13391:7 13393:1 13405:1 13408:1 13413:1 13421:1 13425:1 13437:1 13441:11 13443:6 13445:2 13456:1 13471:3 13474:2 13481:1 13502:1 13521:1 13524:3 13531:1 13536:1 13545:1 13549:1 13554:3 13559:1 13572:1 13581:1 13583:2 13590:1 13596:1 13600:2 13602:2 13604:3 13605:2 13616:1 13625:1 13640:1 13659:2 13663:1 13680:1 13692:2 13693:2 13696:1 13708:4 13711:1 13714:5 13720:1 13721:1 13735:1 13740:1 13741:3 13745:2 13750:1 13751:1 13752:1 13766:4 13803:1 13806:1 13807:8 13819:1 13821:1 13836:1 13838:1 13843:3 13849:1 13860:1 13867:1 13873:1 13875:1 13882:1 13887:5 13896:3 13904:1 13905:1 13906:1 13912:1 13915:3 13922:1 13924:1 13937:1 13939:1 13942:1 13947:1 13952:1 13967:3 13987:1 13990:1 14004:1 14007:1 14016:1 14024:2 14028:1 14032:7 14036:1 14037:2 14043:3 14081:3 14089:1 14094:1 14096:1 14109:3 14120:1 14130:1 14140:1 14144:1 14147:1 14151:1 14175:1 14179:1 14181:1 14184:1 14186:1 14189:1 14193:1 14195:2 14198:3 14199:3 14201:4 14203:1 14204:3 14206:2 14208:1 14209:2 14212:1 14217:2 14219:1 14220:1 14221:1 14229:1 14242:1 14243:1 14252:1 14254:2 14258:2 14262:6 14280:1 14282:2 14285:1 14295:1 14304:2 14307:1 14314:1 14315:1 14319:1 14321:1 14326:1 14328:1 14363:12 14368:2 14369:6 14400:1 14401:1 14404:2 14406:1 14410:1 14412:1 14414:1 14415:1 14432:1 14433:2 14436:1 14437:1 14443:2 14447:1 14449:3 14458:2 14470:2 14482:1 14485:1 14498:1 14499:1 14513:1 14515:1 14559:1 14564:1 14565:1 14581:1 14586:1 14617:1 14625:1 14629:1 14631:1 14633:1 14637:1 14642:5 14662:1 14668:4 14678:4 14679:1 14683:2 14697:2 14700:1 14707:1 14709:1 14717:1 14720:1 14725:2 14729:2 14738:1 14750:2 14756:3 14758:1 14759:1 14763:1 14769:2 14771:2 14776:1 14802:1 14821:1 14825:1 14832:2 14834:1 14843:1 14844:2 14845:2 14846:1 14850:1 14852:1 14855:1 14857:1 14871:1 14876:1 14877:1 14879:1 14889:1 14895:4 14896:4 14900:1 14931:2 14936:1 14945:2 14951:1 14954:1 14959:12 14964:2 14977:2 14979:2 14985:2 14988:1 14997:1 15003:2 15004:1 15032:2 15033:1 15037:1 15048:1 15052:1 15054:1 15055:1 15073:1 15099:18 15100:2 15108:1 15133:1 15136:2 15138:1 15152:1 15155:1 15165:1 15166:1 15170:1 15184:1 15189:1 15198:1 15201:1 15202:1 15205:1 15208:1 15210:4 15222:1 15224:1 15226:1 15229:2 15250:1 15256:2 15260:1 15265:1 15281:2 15285:1 15287:1 15291:1 15298:1 15299:1 15300:1 15301:4 15306:1 15307:1 15309:1 15315:1 15320:3 15331:1 15332:1 15339:1 15340:2 15341:1 15346:1 15348:1 15359:4 15360:1 15369:1 15384:1 15385:1 15391:1 15416:1 15427:1 15435:1 15436:1 15441:1 15447:1 15448:2 15456:2 15458:1 15479:2 15486:1 15488:1 15490:1 15492:1 15504:1 15514:1 15519:3 15529:1 15539:2 15542:1 15544:1 15548:11 15550:1 15551:1 15552:7 15554:4 15569:2 15573:3 15577:1 15578:1 15584:1 15589:2 15591:1 15595:1 15597:2 15607:1 15618:2 15621:1 15633:7 15634:2 15654:2 15659:2 15663:1 15664:1 15670:1 15674:4 15699:1 15703:1 15712:6 15715:1 15722:1 15723:1 15727:1 15732:3 15742:1 15745:2 15751:1 15753:2 15754:7 15756:1 15774:2 15787:1 15795:2 15796:1 15799:1 15806:1 15814:3 15821:1 15835:1 15860:1 15875:2 15879:2 15881:1 15894:1 15896:2 15913:1 15918:1 15924:1 15931:1 15958:1 15975:1 15976:1 15992:1 16018:1 16020:2 16027:1 16030:1 16031:1 16040:1 16045:1 16050:1 16051:2 16054:2 16058:1 16059:2 16063:1 16067:1 16071:1 16074:1 16075:5 16078:1 16080:5 16083:1 16088:1 16090:1 16093:2 16100:2 16101:2 16105:5 16106:1 16110:1 16114:4 16117:1 16119:1 16127:3 16128:1 16130:1 16131:3 16134:1 16137:1 16140:1 16142:2 16163:2 16172:1 16176:1 16177:1 16206:1 16207:1 16211:4 16214:1 16225:7 16240:1 16246:1 16249:1 16260:1 16262:1 16269:1 16273:7 16278:1 16285:1 16297:2 16305:1 16312:1 16339:1 16341:1 16357:1 16364:1 16374:3 16376:1 16391:1 16393:1 16395:1 16399:1 16411:1 16413:1 16414:1 16418:1 16427:1 16430:1 16431:1 16443:1 16446:3 16473:1 16498:1 16502:1 16508:1 16519:1 16523:1 16527:1 16531:2 16535:2 16538:1 16551:1 16552:3 16553:2 16560:1 16575:2 16580:2 16581:1 16584:1 16585:2 16586:1 16596:3 16600:1 16601:1 16602:2 16610:1 16621:1 16628:3 16631:2 16650:1 16658:1 16667:2 16676:17 16678:1 16679:1 16708:1 16712:1 16725:1 16727:1 16731:4 16745:1 16749:2 16750:2 16758:2 16765:1 16780:1 16800:1 16801:1 16805:1 16810:2 16816:2 16823:1 16828:3 16843:1 16844:2 16850:1 16851:1 16852:1 16867:2 16869:1 16874:2 16882:1 16890:1 16893:3 16898:1 16921:1 16936:5 16949:1 16951:1 16955:1 16964:1 16981:1 16987:1 16997:1 16999:2 17005:1 17008:1 17028:1 17029:1 17033:1 17045:1 17052:3 17053:1 17055:1 17056:1 17062:15 17063:2 17068:1 17071:4 17076:1 17078:2 17079:1 17083:2 17084:1 17089:1 17092:1 17099:2 17111:1 17126:1 17131:1 17132:1 17133:1 17137:1 17144:2 17151:5 17156:4 17168:1 17183:2 17189:1 17201:1 17202:1 17209:2 17230:1 17231:1 17235:2 17237:2 17242:1 17251:1 17259:4 17263:3 17266:2 17268:3 17273:1 17279:3 17287:4 17295:1 17301:1 17314:1 17332:1 17333:1 17339:1 17345:1 17351:1 17379:1 17390:1 17394:1 17396:1 17397:1 17403:6 17406:1 17414:1 17417:1 17418:1 17429:2 17431:2 17432:1 17438:1 17453:1 17461:1 17463:1 17468:2 17484:1 17495:2 17501:2 17504:2 17518:2 17533:2 17536:1 17543:1 17547:2 17549:2 17553:1 17554:1 17555:2 17565:1 17566:2 17572:2 17591:6 17594:1 17604:1 17608:1 17609:1 17612:1 17616:1 17627:1 17632:1 17634:2 17640:1 17643:1 17652:1 17656:2 17660:1 17670:2 17672:1 17675:2 17676:2 17695:1 17696:1 17753:1 17759:1 17767:1 17769:1 17774:5 17776:3 17798:1 17799:1 17801:1 17809:3 17810:2 17818:1 17823:1 17826:1 17855:1 17881:1 17893:1 17894:1 17897:6 17922:1 17925:1 17929:2 17930:1 17935:1 17936:1 17971:1 17986:1 17989:1 17996:1 18002:1 18003:1 18012:1 18022:1 18023:1 18027:1 18032:3 18038:1 18045:1 18053:1 18070:1 18074:2 18077:2 18080:1 18099:3 18104:1 18126:1 18129:1 18141:1 18143:1 18150:1 18153:2 18175:1 18179:1 18180:3 18191:1 18198:1 18200:1 18211:1 18227:2 18230:1 18245:2 18258:1 18263:1 18264:4 18269:1 18272:1 18274:2 18290:1 18297:1 18302:1 18303:1 18310:2 18319:1 18333:1 18339:1 18347:1 18357:3 18358:1 18360:2 18362:1 18380:3 18383:2 18386:1 18390:1 18393:1 18395:1 18398:2 18399:1 18415:1 18432:1 18434:1 18438:1 18441:1 18451:1 18453:1 18455:1 18459:2 18465:1 18499:1 18523:6 18525:1 18531:3 18534:1 18535:2 18542:1 18545:1 18546:2 18556:1 18564:1 18566:1 18575:1 18586:1 18603:1 18606:15 18613:5 18616:2 18627:2 18629:1 18634:1 18638:2 18640:1 18644:2 18652:1 18656:1 18665:2 18666:1 18677:1 18685:1 18687:2 18689:3 18692:1 18693:1 18697:1 18703:1 18707:1 18709:3 18710:1 18711:4 18713:1 18714:1 18717:3 18719:1 18725:2 18729:1 18735:1 18742:2 18751:1 18752:2 18760:1 18763:1 18765:1 18769:2 18770:1 18780:1 18791:2 18796:1 18807:1 18810:1 18815:1 18835:1 18851:5 18865:1 18872:1 18881:2 18893:1 18897:1 18904:2 18909:2 18918:1 18947:1 18948:1 18973:1 19008:1 19013:1 19014:2 19015:1 19025:2 19026:1 19048:1 19051:1 19053:1 19055:1 19062:1 19064:2 19085:1 19093:2 19114:1 19115:1 19117:5 19119:1 19121:3 19126:5 19145:1 19152:2 19155:1 19168:1 19186:1 19215:7 19228:1 19235:1 19270:1 19278:1 19280:1 19292:1 19296:2 19311:1 19314:1 19315:4 19324:4 19335:1 19339:2 19342:1 19344:2 19353:2 19364:1 19365:1 19367:2 19386:6 19388:2 19391:1 19407:1 19413:1 19418:2 19444:1 19450:4 19452:1 19454:1 19471:1 19484:1 19495:1 19496:1 19498:2 19503:2 19506:1 19508:1 19509:1 19512:2 19519:2 19524:9 19525:1 19535:2 19536:3 19537:1 19538:2 19545:1 19549:1 19551:2 19555:1 19556:1 19558:2 19568:1 19578:1 19582:1 19586:1 19595:1 19597:1 19598:1 19600:5 19602:2 19615:1 19616:1 19621:1 19630:1 19633:1 19638:3 19645:2 19649:2 19652:1 19655:16 19659:1 19664:5 19667:1 19680:1 19692:1 19696:3 19700:1 19715:3 19718:2 19720:2 19721:1 19724:3 19727:3 19733:1 19747:1 19757:2 19758:1 19777:2 19785:1 19786:1 19792:3 19816:3 19829:1 19833:1 19851:1 19857:6 19863:1 19865:1 19891:1 19896:1 19903:2 19908:3 19910:1 19913:1 19918:4 19929:5 19936:4 19965:1 19974:1 19975:5 19977:1 19984:1 19991:3 19992:1 19995:1 19998:1 19999:1 20015:1 20020:1 20022:1 20030:1 20034:6 20035:1 20037:1 20038:2 20039:1 20040:2 20041:1 20044:1 20047:1 20049:7 20050:3 20052:1 20069:1 20075:1 20076:1 20078:1 20080:1 20081:1 20089:1 20101:1 20102:6 20109:1 20117:2 20132:1 20160:1 20170:1 20171:1 20185:1 20188:1 20209:1 20210:2 20216:2 20223:1 20227:1 20243:1 20251:1 20256:1 20258:1 20262:1 20266:1 20267:2 20276:2 20277:1 20284:1 20298:6 20305:3 20363:1 20366:1 20368:1 20378:1 20379:1 20380:1 20382:1 20383:1 20387:2 20390:7 20393:2 20396:1 20402:1 20409:2 20413:1 20430:2 20440:2 20451:1 20452:1 20453:1 20464:1 20466:1 20469:1 20482:7 20494:6 20519:3 20529:1 20552:1 20580:1 20588:1 20589:2 20598:1 20603:1 20607:1 20614:1 20621:1 20628:1 20633:1 20636:1 20669:1 20670:2 20697:1 20702:1 20706:1 20713:1 20718:1 20724:1 20734:1 20735:1 20746:1 20758:1 20792:1 20795:1 20817:1 20822:2 20828:2 20844:1 20845:2 20846:1 20848:3 20851:5 20855:2 20874:1 20875:1 20878:1 20880:1 20892:1 20903:1 20912:1 20933:1 20940:1 20955:1 20956:1 20966:1 20980:1 21002:1 21034:3 21072:1 21080:3 21083:4 21096:1 21099:2 21107:2 21110:2 21111:2 21113:1 21118:2 21121:1 21142:1 21145:1 21151:1 21153:1 21163:1 21168:1 21180:1 21186:1 21188:2 21190:1 21202:1 21207:1 21213:3 21216:1 21223:2 21228:1 21244:2 21262:1 21265:1 21271:4 21274:1 21276:2 21284:1 21298:2 21304:1 21308:1 21315:1 21318:1 21333:1 21339:1 21341:1 21349:2 21353:1 21361:1 21362:1 21374:3 21378:1 21379:2 21386:1 21402:1 21404:1 21443:1 21446:1 21451:3 21459:1 21463:1 21464:1 21470:2 21494:1 21509:2 21510:3 21512:1 21538:2 21539:1 21540:1 21547:1 21551:2 21568:1 21579:1 21581:1 21586:2 21589:2 21613:1 21619:1 21623:1 21626:3 21635:3 21637:4 21639:1 21640:3 21646:1 21667:1 21674:2 21677:1 21703:1 21707:5 21713:1 21715:1 21718:1 21777:1 21820:2
1 5:2 10:1 17:1 23:2 35:1 44:2 53:1 66:1 69:1 77:1 83:1 91:1 99:1 101:1 103:3 107:1 123:1 124:1 128:2 130:1 131:1 132:1 134:1 140:1 163:1 181:1 217:1 233:1 251:1 255:1 260:3 261:1 266:1 270:2 275:1 280:1 296:2 308:1 309:1 319:2 320:1 324:3 337:1 343:6 346:1 369:1 370:1 382:1 401:2 411:1 419:1 432:1 439:7 454:1 461:3 466:1 467:1 468:2 476:1 490:1 501:2 510:2 523:3 527:1 547:1 563:4 564:3 571:1 573:3 575:1 578:1 582:3 583:1 593:1 600:1 602:2 605:2 626:3 628:3 635:1 644:2 660:1 663:6 664:1 667:5 677:1 685:2 698:2 706:1 717:2 742:1 744:1 747:1 749:1 753:1 761:1 762:6 770:1 778:3 790:1 797:2 806:4 827:3 835:1 849:1 854:2 858:1 861:1 869:1 879:1 883:1 889:1 893:1 894:1 901:2 904:1 908:3 918:1 943:1 954:1 956:4 959:2 964:1 989:3 1003:1 1004:2 1005:1 1018:2 1030:1 1034:1 1037:4 1040:1 1045:1 1056:1 1071:2 1073:4 1074:1 1079:1 1081:1 1099:1 1111:1 1124:1 1142:1 1152:2 1159:1 1160:2 1187:1 1200:1 1205:2 1209:1 1216:1 1229:2 1230:1 1237:3 1248:2 1258:1 1261:2 1270:2 1273:1 1278:1 1281:1 1282:3 1308:1 1320:6 1322:3 1331:1 1343:1 1349:1 1351:1 1356:1 1358:4 1367:1 1375:1 1389:1 1392:1 1402:16 1407:4 1418:1 1419:5 1428:1 1430:1 1435:1 1441:4 1450:1 1453:1 1456:1 1457:16 1459:1 1463:1 1474:1 1475:4 1476:2 1478:9 1481:1 1482:1 1484:1 1486:3 1488:4 1489:3 1492:1 1507:2 1530:5 1531:4 1536:3 1543:1 1549:1 1550:1 1598:1 1600:2 1622:1 1624:2 1642:1 1644:1 1651:2 1653:1 1659:4 1683:2 1689:1 1698:1 1712:2 1715:1 1724:1 1740:1 1743:1 1757:1 1771:1 1774:2 1779:1 1781:1 1784:1 1785:1 1789:1 1790:1 1797:2 1800:1 1809:1 1834:3 1866:1 1875:1 1877:3 1879:3 1884:6 1885:2 1886:2 1887:1 1888:6 1889:2 1890:1 1892:2 1893:2 1894:1 1895:1 1898:2 1899:5 1903:1 1904:1 1908:1 1911:1 1912:2 1913:2 1920:2 1921:1 1927:1 1940:1 1947:1 1950:1 1951:1 1953:2 1962:1 1967:2 1973:2 1975:1 1985:1 1999:2 2007:2 2009:1 2024:1 2025:1 2029:1 2036:1 2051:1 2055:1 2057:1 2077:1 2079:1 2090:1 2102:1 2105:1 2107:1 2112:2 2113:1 2114:1 2122:1 2128:1 2142:1 2161:2 2167:1 2170:1 2171:1 2172:1 2179:1 2180:2 2181:2 2199:1 2208:1 2209:2 2215:2 2233:1 2235:1 2239:1 2240:3 2267:1 2271:1 2274:1 2276:1 2281:1 2288:1 2290:1 2291:2 2293:1 2306:1 2314:1 2333:1 2337:1 2340:1 2345:4 2356:8 2359:2 2375:1 2376:1 2412:2 2425:1 2427:1 2429:1 2434:1 2436:3 2441:3 2456:1 2458:1 2460:2 2465:1 2469:1 2472:2 2485:2 2486:2 2489:1 2498:1 2499:1 2503:1 2506:5 2507:1 2510:1 2511:2 2515:1 2520:2 2522:1 2527:3 2532:1 2545:1 2552:2 2553:1 2562:1 2563:4 2567:2 2572:2 2574:1 2575:1 2580:1 2583:1 2584:1 2595:3 2603:1 2604:2 2613:4 2617:1 2619:2 2621:1 2623:1 2626:1 2635:1 2649:1 2654:1 2656:5 2664:1 2669:1 2684:1 2691:1 2695:3 2701:2 2704:14 2706:1 2715:2 2718:6 2733:1 2739:1 2749:2 2750:4 2752:3 2753:4 2755:1 2768:1 2775:1 2786:1 2791:1 2795:2 2798:4 2800:1 2801:1 2804:1 2821:2 2828:1 2829:3 2834:1 2835:1 2840:3 2844:2 2845:1 2847:1 2862:2 2865:1 2907:1 2913:1 2919:1 2927:9 2930:2 2932:1 2941:1 2945:2 2949:6 2953:1 2958:1 2959:2 2965:1 2968:2 2971:4 2978:1 2988:1 2989:1 2992:2 2997:1 3005:1 3021:1 3024:3 3025:1 3027:2 3032:1 3043:1 3057:1 3059:2 3062:1 3065:2 3066:1 3071:2 3075:2 3093:2 3098:1 3115:1 3124:5 3138:1 3153:11 3156:2 3161:1 3166:2 3179:1 3184:1 3190:1 3194:1 3208:2 3216:1 3228:1 3242:1 3263:3 3271:5 3274:2 3275:1 3276:3 3290:1 3295:1 3299:1 3302:2 3308:1 3322:3 3325:2 3326:1 3329:3 3331:5 3332:1 3335:2 3337:2 3340:2 3341:2 3343:1 3344:4 3346:5 3350:1 3353:1 3354:5 3355:4 3358:5 3360:7 3362:1 3373:1 3388:1 3391:1 3412:1 3414:1 3417:1 3429:1 3439:2 3441:1 3445:1 3450:3 3451:3 3455:1 3465:2 3470:1 3475:2 3477:1 3488:1 3493:1 3500:1 3509:2 3518:1 3521:2 3523:1 3524:1 3538:1 3539:1 3541:2 3548:1 3549:1 3552:1 3557:1 3576:1 3577:1 3599:1 3612:1 3613:1 3622:1 3631:1 3633:1 3644:3 3661:1 3672:1 3674:1 3677:1 3679:3 3684:2 3692:1 3697:1 3703:1 3711:1 3712:1 3717:1 3718:1 3722:1 3726:1 3732:1 3747:1 3749:3 3755:1 3759:1 3760:3 3767:2 3772:1 3775:7 3777:3 3781:1 3787:1 3788:1 3789:1 3790:1 3793:1 3800:3 3806:2 3808:2 3815:2 3819:1 3821:1 3825:1 3828:10 3856:4 3857:1 3858:1 3865:2 3887:1 3888:2 3893:2 3896:1 3899:2 3900:1 3901:2 3903:2 3904:1 3910:1 3916:1 3921:1 3924:2 3925:7 3927:1 3928:1 3939:2 3948:2 3957:9 3965:6 3966:1 3979:2 3981:1 3986:1 3988:2 3990:1 3997:3 3998:2 4009:3 4025:1 4026:3 4032:3 4036:1 4038:1 4041:1 4048:2 4060:1 4065:4 4071:1 4090:1 4097:1 4101:2 4103:1 4104:2 4106:2 4118:1 4121:3 4122:1 4129:1 4131:1 4133:7 4136:1 4143:2 4147:1 4150:1 4158:1 4176:1 4182:1 4198:1 4199:1 4200:1 4216:1 4224:1 4227:1 4230:1 4237:1 4239:1 4242:3 4246:2 4247:1 4264:1 4265:4 4272:1 4277:1 4279:16 4292:1 4311:3 4312:1 4315:1 4316:1 4317:1 4318:1 4326:2 4333:3 4335:1 4338:1 4358:21 4361:3 4381:1 4382:1 4387:1 4398:2 4400:3 4412:1 4426:2 4427:1 4429:3 4438:1 4440:1 4442:1 4447:1 4452:1 4459:1 4461:1 4470:1 4482:1 4489:1 4498:1 4505:1 4513:1 4524:1 4532:1 4534:5 4555:2 4565:3 4573:1 4582:1 4584:1 4586:1 4591:1 4600:2 4627:1 4641:1 4643:2 4661:1 4663:1 4667:1 4680:2 4698:1 4700:1 4717:2 4731:1 4737:3 4757:1 4770:2 4771:1 4786:1 4792:1 4794:2 4797:1 4803:1 4811:1 4841:1 4854:1 4855:1 4863:1 4866:1 4868:2 4869:1 4877:1 4884:1 4889:2 4895:1 4910:7 4912:1 4933:1 4936:3 4944:1 4958:1 4969:1 5004:1 5009:1 5018:3 5023:1 5028:1 5032:15 5051:1 5053:1 5058:1 5059:1 5068:1 5074:1 5082:1 5083:2 5087:1 5089:1 5096:1 5103:1 5107:1 5133:1 5149:1 5156:1 5182:2 5187:1 5199:1 5205:1 5206:16 5218:1 5220:2 5222:2 5223:2 5226:1 5244:1 5249:1 5250:1 5251:1 5257:14 5274:4 5275:1 5277:2 5288:1 5290:6 5293:1 5307:1 5308:2 5310:1 5317:1 5321:3 5331:2 5338:3 5348:1 5369:1 5386:1 5395:1 5396:2 5418:1 5422:1 5429:2 5434:1 5438:2 5453:3 5456:6 5460:1 5461:1 5492:1 5495:1 5499:2 5506:2 5508:1 5528:2 5530:1 5533:2 5534:1 5547:2 5555:3 5557:1 5572:2 5574:1 5577:3 5579:4 5583:2 5587:2 5591:1 5592:2 5593:2 5606:4 5608:1 5618:1 5621:2 5624:2 5625:2 5647:1 5651:2 5656:2975 5670:1 5673:1 5678:1 5679:2 5682:3 5687:1 5694:1 5696:1 5700:1 5701:1 5714:2 5716:1 5726:7 5728:5 5741:2 5761:1 5765:1 5772:1 5775:1 5779:1 5784:2 5787:1 5793:1 5804:1 5814:2 5816:1 5824:1 5829:2 5846:1 5855:1 5862:2 5866:1 5870:1 5873:1 5891:2 5894:2 5901:1 5904:1 5905:1 5915:2 5927:1 5939:4 5940:1 5941:1 5944:2 5945:1 5947:2 5949:1 5952:1 5955:2 5981:1 5983:1 5987:2 5992:6 5993:4 5997:1 6004:1 6015:1 6023:1 6025:1 6033:1 6046:1 6050:1 6057:1 6066:1 6067:1 6078:1 6088:1 6095:1 6101:1 6106:7 6108:1 6109:1 6142:3 6156:1 6165:2 6171:1 6176:3 6179:2 6184:1 6185:1 6189:3 6192:1 6201:2 6202:1 6210:2 6228:1 6240:1 6244:1 6247:2 6248:4 6268:4 6295:1 6296:1 6302:1 6304:1 6308:3 6312:1 6320:2 6327:1 6335:2 6343:2 6350:1 6359:1 6366:1 6367:1 6373:2 6376:1 6378:3 6381:1 6397:1 6398:1 6399:2 6403:1 6410:2 6414:1 6417:1 6435:1 6445:1 6449:3 6452:1 6460:1 6468:1 6479:2 6488:5 6507:1 6513:1 6518:1 6520:1 6521:1 6540:1 6543:1 6550:2 6555:1 6558:2 6567:4 6570:1 6577:2 6578:1 6590:2 6593:1 6596:1 6597:1 6603:4 6606:2 6612:2 6614:2 6631:5 6642:3 6655:1 6662:1 6669:1 6673:3 6674:2 6700:1 6702:2 6708:3 6709:3 6711:1 6713:1 6716:1 6728:3 6732:1 6733:2 6738:1 6746:9 6747:1 6756:1 6769:1 6776:2 6792:1 6793:1 6800:1 6804:1 6820:1 6822:1 6823:1 6832:2 6833:1 6842:1 6846:2 6870:5 6871:1 6892:15 6894:2 6899:1 6901:2 6906:1 6914:1 6916:1 6927:1 6936:1 6948:1 6957:1 6961:1 6975:4 6976:1 6986:1 6989:2 6997:1 6998:2 7000:1 7012:4 7013:1 7023:1 7028:1 7038:2 7051:1 7066:1 7074:1 7075:4 7084:3 7090:1 7095:2 7098:1 7107:3 7112:1 7117:4 7119:7 7121:3 7124:1 7129:2 7131:2 7132:2 7136:1 7138:2 7140:6 7142:4 7146:2 7147:8 7154:2 7158:5 7159:1 7162:1 7171:4 7175:1 7177:1 7199:1 7201:1 7203:2 7206:2 7211:1 7213:2 7215:1 7229:1 7248:1 7253:1 7264:1 7271:1 7272:1 7274:1 7283:1 7293:1 7300:3 7315:1 7340:1 7345:1 7360:1 7387:1 7388:3 7404:1 7405:2 7406:1 7408:1 7419:1 7421:3 7426:1 7450:1 7458:1 7461:1 7462:1 7466:1 7470:1 7480:1 7488:2 7497:1 7504:2 7506:1 7516:1 7519:1 7520:2 7529:1 7530:2 7537:1 7545:1 7555:1 7557:1 7562:1 7563:1 7569:1 7572:2 7575:4 7580:2 7588:1 7589:4 7636:1 7665:1 7668:1 7682:3 7689:3 7691:1 7693:1 7697:2 7699:2 7700:2 7702:2 7712:1 7720:1 7722:2 7724:3 7732:3 7739:1 7740:2 7741:2 7744:1 7768:5 7778:1 7779:2 7792:1 7797:1 7812:1 7818:1 7821:2 7823:4 7835:6 7853:1 7859:1 7860:2 7867:1 7872:2 7873:1 7878:1 7891:1 7898:1 7905:3 7930:1 7931:1 7938:2 7940:1 7944:3 7953:2 7964:1 7965:1 7969:1 7974:3 7975:21 7977:2 7985:1 7991:1 7994:5 8003:1 8006:1 8022:1 8033:2 8035:1 8040:1 8059:3 8070:1 8071:1 8075:1 8087:1 8093:1 8095:1 8104:1 8108:1 8120:1 8136:1 8140:1 8141:1 8145:1 8152:1 8154:1 8159:1 8179:1 8188:1 8195:2 8202:1 8206:1 8208:1 8213:2 8214:1 8221:1 8227:1 8235:1 8250:5 8251:1 8254:2 8257:1 8259:3 8261:4 8278:1 8280:1 8299:2 8301:1 8312:3 8327:2 8330:1 8333:1 8334:1 8342:2 8345:6 8348:1 8359:2 8364:2 8377:1 8378:1 8391:2 8428:8 8433:2 8439:1 8444:1 8450:1 8455:1 8462:1 8488:1 8489:1 8494:1 8497:1 8512:1 8514:1 8518:1 8520:1 8521:1 8524:1 8532:3 8533:1 8534:1 8554:1 8570:1 8572:1 8575:1 8576:1 8590:4 8601:1 8608:2 8619:2 8621:3 8638:1 8646:2 8647:2 8651:4 8653:1 8663:1 8668:1 8673:1 8674:1 8675:1 8679:6 8682:1 8683:1 8687:1 8688:1 8693:2 8697:2 8700:2 8705:1 8707:1 8708:1 8709:1 8721:1 8752:1 8754:1 8755:1 8756:1 8762:1 8765:2 8766:2 8767:1 8772:1 8775:1 8776:2 8777:3 8783:12 8788:2 8792:3 8807:2 8814:1 8828:2 8834:1 8852:3 8862:5 8863:1 8867:2 8880:2 8885:1 8894:1 8899:1 8905:1 8909:2 8913:1 8923:1 8931:1 8939:1 8943:2 8952:1 8958:4 8967:2 8969:2 8970:1 8981:5 8985:1 8994:2 8997:6 8999:1 9001:1 9003:1 9008:2 9015:1 9027:3 9059:2 9068:1 9076:1 9084:2 9089:1 9095:1 9111:1 9113:1 9121:2 9128:1 9135:2 9139:2 9143:2 9148:2 9151:1 9152:2 9154:1 9155:1 9157:1 9160:2 9162:3 9163:1 9168:1 9169:1 9171:2 9173:1 9176:2 9179:2 9181:4 9184:3 9203:1 9207:2 9232:2 9245:1 9246:4 9258:1 9260:1 9262:4 9263:1 9281:2 9285:1 9293:1 9299:1 9300:1 9311:2 9319:1 9330:1 9333:1 9340:1 9345:1 9347:1 9370:1 9387:1 9396:1 9399:1 9402:2 9407:2 9418:1 9419:1 9422:1 9424:1 9438:1 9440:1 9442:4 9445:2 9468:1 9480:1 9489:1 9547:1 9554:1 9568:2 9572:2 9580:2 9585:2 9587:1 9589:1 9598:2 9599:2 9604:1 9605:1 9606:1 9612:1 9615:1 9618:1 9630:1 9634:2 9655:3 9657:1 9661:1 9668:1 9679:1 9688:2 9694:1 9703:2 9714:1 9721:1 9726:1 9731:1 9735:1 9737:1 9751:1 9753:1 9768:2 9772:1 9773:1 9776:1 9778:2 9782:1 9784:1 9801:1 9806:2 9814:2 9823:2 9824:1 9826:1 9830:1 9831:2 9834:1 9835:1 9836:1 9844:1 9846:1 9849:2 9871:1 9873:14 9883:2 9885:2 9890:2 9912:2 9914:1 9915:1 9922:1 9932:1 9942:1 9945:1 9946:1 9948:1 9962:1 9963:1 9966:2 9968:2 9974:1 9985:8 9987:1 9993:1 9996:2 10001:1 10007:3 10011:1 10020:1 10028:1 10037:1 10043:2 10060:1 10065:1 10066:1 10070:2 10078:1 10080:1 10089:1 10102:2 10109:1 10116:1 10121:6 10125:3 10128:1 10129:3 10130:1 10144:2 10146:2 10152:1 10161:2 10165:1 10166:1 10168:1 10169:1 10175:1 10177:1 10193:1 10197:1 10206:1 10207:1 10208:1 10209:1 10214:1 10216:3 10217:4 10221:2 10222:1 10229:1 10261:1 10281:2 10285:1 10287:1 10288:1 10291:1 10304:1 10314:1 10330:6 10340:2 10364:1 10379:1 10384:4 10389:1 10390:5 10393:3 10394:3 10395:1 10396:1 10403:1 10407:2 10411:1 10412:1 10415:2 10416:3 10417:2 10433:1 10436:1 10438:6 10439:5 10440:1 10441:1 10445:1 10447:1 10455:5 10458:1 10460:1 10462:1 10463:1 10469:1 10470:1 10485:1 10512:1 10514:1 10520:1 10524:2 10532:2 10533:2 10535:1 10541:1 10573:1 10574:1 10583:4 10595:4 10612:1 10617:1 10630:1 10650:2 10656:2 10658:3 10662:1 10664:1 10670:1 10674:1 10676:1 10677:1 10683:1 10684:1 10689:1 10694:1 10696:1 10699:1 10706:1 10716:1 10721:1 10727:1 10742:1 10743:1 10755:1 10775:1 10777:1 10783:1 10785:1 10790:2 10792:1 10801:1 10803:1 10808:1 10812:1 10817:1 10839:2 10843:1 10845:1 10848:1 10852:5 10854:1 10861:2 10865:1 10879:1 10881:4 10885:3 10896:1 10907:1 10918:1 10920:1 10924:1 10932:2 10935:1 10940:1 10941:1 10943:4 10953:2 10962:1 10966:1 10969:2 10970:6 10973:2 10975:9 10978:1 10980:3 10984:2 10987:1 10988:1 10989:1 10990:1 10993:1 10999:3 11000:1 11003:1 11004:1 11021:1 11022:1 11043:6 11045:2 11051:2 11057:9 11059:1 11076:1 11101:1 11104:1 11108:3 11127:1 11138:6 11140:1 11143:1 11150:1 11153:1 11158:1 11160:2 11163:2 11166:1 11176:1 11180:1 11183:1 11185:1 11187:1 11194:1 11209:1 11210:3 11215:1 11216:1 11223:1 11225:2 11234:1 11237:1 11248:1 11249:2 11253:4 11257:1 11266:1 11272:1 11274:1 11288:1 11300:1 11316:3 11323:1 11329:4 11331:8 11332:6 11334:2 11349:2 11352:3 11354:1 11358:4 11364:4 11368:4 11369:1 11371:3 11373:1 11374:1 11384:1 11390:1 11393:1 11404:1 11415:4 11416:3 11417:1 11419:1 11424:4 11436:50 11438:2 11442:1 11448:1 11453:1 11455:3 11457:1 11463:3 11470:10 11472:8 11473:1 11481:2 11484:1 11486:1 11506:1 11516:1 11519:1 11522:1 11525:1 11527:1 11534:1 11549:1 11552:2 11565:1 11574:3 11575:2 11578:1 11590:1 11594:2 11605:2 11618:3 11635:1 11639:1 11643:1 11645:1 11653:1 11655:1 11656:1 11660:1 11665:1 11687:1 11691:2 11694:2 11708:1 11712:3 11713:10 11724:2 11743:2 11755:3 11760:4 11766:1 11775:1 11776:1 11781:3 11783:1 11784:3 11787:1 11794:2 11796:1 11810:1 11838:1 11844:1 11845:1 11846:1 11847:1 11862:1 11863:1 11867:2 11869:2 11878:2 11896:1 11898:1 11900:1 11940:1 11941:1 11947:1 11948:1 11949:1 11963:1 11983:1 11986:1 11989:1 11994:1 11996:1 11998:1 12012:1 12015:1 12016:1 12021:2 12028:1 12030:1 12033:1 12043:2 12045:1 12051:1 12055:1 12061:1 12070:1 12076:1 12077:3 12089:1 12100:1 12107:1 12118:1 12119:1 12127:3 12144:27 12156:1 12176:3 12183:3 12190:1 12194:1 12195:1 12234:1 12242:1 12254:2 12267:6 12269:1 12272:1 12281:1 12286:1 12313:3 12314:3 12322:7 12345:1 12348:1 12360:1 12365:4 12366:3 12370:2 12371:2 12374:1 12380:1 12381:1 12384:2 12389:2 12390:3 12402:1 12408:1 12419:4 12424:2 12426:4 12442:3 12450:1 12459:1 12474:2 12479:1 12486:1 12488:1 12493:1 12494:1 12501:1 12516:1 12520:1 12536:1 12544:1 12545:1 12549:1 12555:1 12556:1 12557:1 12568:2 12575:1 12580:2 12582:1 12583:1 12588:1 12596:4 12630:1 12637:1 12641:3 12664:2 12670:1 12676:1 12685:2 12694:1 12695:1 12703:1 12711:1 12718:1 12725:1 12727:2 12731:4 12734:3 12736:1 12738:1 12745:1 12750:1 12757:1 12758:1 12770:1 12772:1 12775:1 12784:3 12789:2 12801:3 12804:2 12805:1 12809:2 12811:7 12814:1 12824:2 12830:3 12840:1 12842:1 12847:1 12861:2 12866:1 12871:1 12872:1 12883:1 12892:2 12899:1 12902:2 12911:1 12919:1 12925:1 12926:4 12928:1 12929:1 12931:1 12934:1 12938:1 12944:1 12946:1 12947:4 12948:1 12949:1 12951:1 12956:1 12962:2 12976:1 12982:1 12992:1 13000:1 13005:1 13016:3 13019:1 13048:1 13050:2 13064:1 13068:1 13082:1 13091:1 13106:2 13115:1 13121:2 13136:1 13139:1 13160:3 13178:2 13179:1 13191:1 13206:1 13208:1 13209:2 13213:3 13216:1 13237:1 13242:3 13245:1 13256:2 13260:1 13276:1 13278:1 13280:2 13302:1 13303:1 13304:1 13311:1 13313:2 13316:1 13318:2 13325:1 13326:7 13333:1 13334:1 13337:1 13347:1 13358:1 13371:1 13374:2 13378:1 13391:7 13393:1 13405:1 13408:1 13413:1 13421:1 13425:1 13433:1 13437:1 13441:11 13443:6 13445:2 13456:1 13471:3 13474:2 13481:1 13502:1 13521:1 13524:3 13531:1 13536:1 13545:1 13549:1 13554:3 13559:1 13572:1 13581:1 13583:2 13590:1 13596:1 13600:2 13602:2 13604:3 13605:2 13616:2 13625:1 13640:1 13659:2 13663:1 13680:1 13692:2 13693:2 13696:1 13708:4 13711:1 13714:5 13720:2 13721:1 13735:1 13740:1 13741:3 13745:2 13750:1 13751:1 13752:1 13766:4 13803:1 13806:1 13807:8 13819:1 13821:1 13836:1 13838:1 13843:3 13849:1 13860:1 13867:1 13873:1 13875:1 13882:1 13887:5 13896:3 13904:1 13905:1 13906:1 13912:1 13915:3 13922:1 13924:1 13937:1 13939:1 13942:1 13947:1 13952:1 13967:3 13987:1 13990:1 14004:1 14007:1 14016:1 14024:4 14028:2 14032:8 14036:1 14037:2 14043:3 14081:3 14089:1 14094:1 14096:1 14109:3 14120:1 14130:1 14140:1 14144:1 14147:1 14151:1 14174:1 14175:1 14179:1 14181:1 14184:1 14186:1 14189:1 14193:1 14195:2 14198:3 14199:3 14201:4 14203:1 14204:3 14206:2 14208:1 14209:2 14212:1 14217:2 14219:1 14220:1 14221:1 14229:1 14242:1 14243:1 14252:1 14254:2 14258:2 14262:6 14280:1 14282:2 14285:1 14295:1 14304:2 14307:1 14314:1 14315:1 14319:1 14321:1 14326:1 14328:1 14363:12 14368:2 14369:6 14400:1 14401:1 14404:2 14406:1 14410:1 14412:1 14414:1 14415:1 14432:1 14433:2 14436:1 14437:1 14443:2 14447:1 14449:3 14458:3 14470:2 14482:1 14485:1 14490:1 14498:1 14499:1 14513:1 14515:1 14559:1 14564:1 14565:2 14581:1 14586:1 14617:1 14623:1 14625:1 14629:1 14631:1 14633:1 14637:1 14642:5 14662:1 14668:4 14678:4 14679:1 14683:2 14697:2 14700:1 14707:1 14709:1 14717:1 14720:1 14725:2 14729:2 14738:1 14750:2 14756:3 14758:1 14759:1 14763:1 14769:2 14771:2 14776:1 14802:1 14821:1 14825:1 14832:2 14834:1 14843:1 14844:2 14845:2 14846:1 14850:1 14852:1 14855:1 14857:1 14871:1 14876:1 14877:1 14879:1 14889:1 14895:4 14896:5 14900:1 14931:2 14936:1 14945:2 14951:1 14954:1 14959:12 14964:2 14977:2 14979:2 14985:2 14988:1 14997:1 15003:3 15004:1 15032:2 15033:1 15037:1 15048:1 15052:1 15054:1 15055:1 15073:1 15099:18 15100:2 15108:1 15133:1 15136:2 15138:1 15152:1 15155:1 15165:1 15166:1 15170:1 15184:1 15189:1 15198:1 15201:1 15202:1 15205:1 15208:1 15210:4 15222:1 15224:1 15226:1 15229:2 15250:1 15256:2 15260:1 15265:1 15281:2 15285:1 15287:1 15291:1 15298:1 15299:1 15300:1 15301:4 15306:1 15307:1 15309:1 15315:1 15320:3 15331:1 15332:1 15339:1 15340:2 15341:1 15346:1 15348:1 15359:4 15360:1 15369:1 15384:1 15385:1 15391:1 15416:1 15427:1 15434:1 15435:1 15436:1 15441:1 15447:1 15448:2 15456:2 15458:1 15479:2 15486:1 15488:1 15490:1 15492:1 15504:1 15514:1 15519:3 15529:1 15539:2 15542:1 15544:1 15548:12 15550:1 15551:1 15552:7 15554:4 15569:2 15573:3 15577:1 15578:1 15584:1 15589:2 15591:1 15595:1 15597:2 15607:1 15618:2 15621:1 15633:7 15634:2 15654:2 15659:2 15663:1 15664:1 15670:1 15674:4 15699:1 15703:1 15712:7 15715:1 15722:1 15723:1 15727:1 15732:3 15742:1 15745:2 15751:1 15753:2 15754:7 15756:1 15774:2 15787:1 15795:2 15796:1 15799:1 15806:1 15814:3 15821:1 15835:1 15860:1 15875:2 15879:2 15881:1 15894:1 15896:2 15913:1 15918:1 15924:1 15931:1 15958:1 15966:1 15975:1 15976:1 15992:1 16018:1 16020:2 16027:1 16030:1 16031:1 16040:1 16045:1 16050:1 16051:2 16054:2 16058:1 16059:2 16063:1 16067:1 16071:1 16074:1 16075:5 16078:1 16080:5 16083:1 16088:1 16090:1 16093:2 16099:1 16100:2 16101:3 16105:5 16106:1 16110:1 16114:4 16117:1 16119:1 16127:3 16128:1 16130:1 16131:3 16134:1 16137:1 16140:1 16142:2 16163:2 16172:1 16176:1 16177:1 16206:1 16207:1 16211:4 16214:1 16225:7 16240:1 16246:1 16249:1 16260:1 16262:1 16269:1 16273:7 16278:1 16285:1 16297:2 16305:1 16312:2 16331:1 16339:1 16341:1 16357:1 16364:1 16374:3 16376:1 16391:1 16393:1 16395:1 16399:1 16411:1 16413:1 16414:1 16415:1 16418:1 16427:1 16430:1 16431:1 16440:1 16443:1 16446:3 16473:1 16498:1 16502:1 16508:1 16519:1 16523:1 16527:1 16531:2 16535:2 16538:1 16551:1 16552:3 16553:2 16560:1 16575:2 16580:2 16581:1 16584:1 16585:2 16586:1 16593:1 16596:3 16600:1 16601:1 16602:2 16610:1 16618:1 16621:1 16628:3 16631:2 16650:1 16651:1 16658:1 16667:3 16676:19 16678:1 16679:1 16708:1 16712:1 16725:1 16727:1 16731:4 16745:1 16749:2 16750:2 16758:2 16765:1 16780:1 16800:1 16801:1 16805:1 16810:2 16816:2 16823:1 16828:3 16843:1 16844:3 16850:1 16851:1 16852:1 16867:2 16869:1 16874:2 16882:1 16890:1 16893:3 16898:1 16921:1 16936:5 16949:1 16951:1 16955:1 16964:1 16981:1 16987:1 16997:1 16999:2 17005:1 17008:1 17028:1 17029:1 17033:1 17045:1 17046:1 17052:3 17053:1 17055:1 17056:1 17062:15 17063:2 17068:1 17071:4 17076:1 17078:2 17079:1 17083:2 17084:1 17089:1 17092:1 17099:2 17111:1 17126:1 17131:1 17132:1 17133:1 17137:1 17144:2 17151:5 17156:4 17168:2 17183:2 17189:1 17201:1 17202:1 17209:2 17230:1 17231:1 17235:2 17237:2 17242:1 17251:1 17259:4 17263:3 17266:2 17268:3 17273:1 17279:3 17287:4 17295:1 17301:1 17314:1 17319:1 17332:1 17333:1 17339:1 17345:1 17351:1 17379:1 17390:1 17394:1 17396:1 17397:1 17403:6 17406:1 17414:1 17417:1 17418:1 17429:2 17431:2 17432:1 17438:1 17453:1 17461:1 17463:1 17468:2 17484:1 17495:2 17501:2 17504:2 17518:2 17533:2 17536:1 17543:1 17547:2 17549:2 17553:1 17554:1 17555:2 17565:1 17566:2 17572:2 17591:6 17594:1 17604:1 17608:1 17609:1 17612:1 17616:1 17627:1 17632:1 17634:2 17640:1 17643:1 17652:1 17656:2 17660:1 17670:2 17672:1 17675:2 17676:2 17695:1 17696:1 17753:1 17759:1 17767:1 17769:1 17774:5 17776:4 17798:1 17799:1 17801:1 17809:3 17810:2 17818:1 17823:1 17826:1 17855:1 17881:1 17893:1 17894:1 17897:6 17922:1 17925:1 17929:2 17930:1 17935:1 17936:1 17971:1 17986:1 17989:1 17996:1 18002:1 18003:1 18012:1 18022:1 18023:1 18027:1 18032:3 18038:1 18045:1 18053:1 18070:1 18074:2 18077:2 18080:1 18099:3 18104:1 18126:1 18129:1 18141:1 18143:1 18150:1 18153:2 18175:1 18179:1 18180:3 18191:1 18198:1 18200:1 18211:1 18227:2 18230:1 18245:2 18258:1 18263:1 18264:4 18269:1 18272:1 18274:2 18290:1 18297:1 18302:1 18303:1 18310:2 18319:1 18333:1 18339:1 18347:1 18357:3 18358:1 18360:2 18362:1 18380:3 18383:2 18386:1 18390:1 18393:1 18395:1 18398:2 18399:2 18415:1 18432:1 18434:1 18438:1 18441:1 18451:1 18453:1 18455:1 18459:2 18465:1 18499:1 18523:6 18525:1 18531:3 18534:1 18535:2 18542:1 18545:1 18546:3 18556:1 18564:1 18566:1 18575:1 18586:1 18603:1 18606:15 18613:5 18616:2 18627:2 18629:1 18634:1 18638:2 18640:1 18644:2 18652:1 18656:1 18665:2 18666:1 18677:1 18685:1 18687:2 18689:3 18692:1 18693:1 18697:1 18703:1 18707:1 18709:3 18710:1 18711:4 18713:1 18714:1 18717:3 18719:1 18725:2 18729:1 18735:1 18742:2 18751:1 18752:2 18760:1 18763:1 18765:1 18769:2 18770:1 18780:1 18791:2 18796:1 18807:1 18810:1 18815:1 18835:1 18851:5 18865:1 18872:1 18881:2 18893:1 18897:1 18898:1 18904:2 18909:2 18918:1 18939:1 18947:1 18948:1 18973:1 19008:1 19013:1 19014:2 19015:1 19025:2 19026:1 19037:1 19048:1 19051:1 19053:1 19055:1 19062:1 19064:2 19085:1 19093:2 19108:1 19114:1 19115:1 19117:5 19119:1 19121:3 19126:5 19145:1 19152:2 19155:1 19168:1 19186:1 19215:7 19228:1 19235:1 19270:1 19278:1 19280:1 19292:1 19296:2 19311:1 19314:1 19315:4 19322:1 19324:4 19335:1 19339:2 19342:1 19344:2 19353:3 19364:1 19365:1 19367:2 19386:7 19388:2 19391:1 19407:1 19413:1 19418:2 19444:1 19450:4 19452:1 19454:1 19471:1 19484:1 19491:1 19495:1 19496:1 19498:2 19503:2 19506:1 19508:1 19509:1 19512:2 19519:2 19524:9 19525:1 19535:2 19536:3 19537:1 19538:2 19545:1 19549:1 19551:2 19555:1 19556:1 19558:2 19568:1 19578:1 19582:1 19586:2 19595:1 19597:1 19598:1 19600:5 19602:2 19615:1 19616:1 19621:1 19630:1 19633:1 19638:3 19645:2 19649:2 19652:1 19655:17 19659:1 19664:5 19667:1 19680:2 19692:1 19696:3 19700:1 19715:3 19718:2 19720:2 19721:1 19724:3 19727:3 19733:1 19747:1 19757:2 19758:1 19777:2 19785:1 19786:1 19792:3 19816:3 19829:1 19833:1 19851:1 19857:6 19863:1 19865:1 19891:1 19896:1 19903:2 19908:3 19910:1 19913:1 19918:4 19929:7 19936:4 19965:1 19974:1 19975:5 19977:1 19984:1 19991:3 19992:1 19995:1 19998:1 19999:2 20015:1 20020:1 20022:1 20030:1 20034:6 20035:1 20037:1 20038:2 20039:1 20040:2 20041:1 20044:1 20047:1 20049:8 20050:3 20052:1 20069:1 20072:1 20075:1 20076:1 20078:1 20080:1 20081:1 20089:1 20101:1 20102:6 20109:1 20117:2 20132:1 20160:1 20170:1 20171:1 20185:1 20188:1 20209:1 20210:2 20216:2 20223:1 20227:1 20243:1 20251:1 20256:1 20258:1 20262:1 20266:1 20267:2 20276:2 20277:1 20284:1 20298:7 20305:3 20363:1 20366:1 20368:1 20378:1 20379:1 20380:1 20382:1 20383:1 20387:2 20390:7 20393:2 20396:1 20402:1 20409:2 20413:1 20430:2 20440:2 20451:1 20452:1 20453:1 20464:1 20466:1 20469:1 20482:8 20494:6 20519:3 20529:1 20552:1 20580:1 20588:1 20589:2 20598:1 20603:1 20607:1 20614:1 20621:1 20628:1 20633:1 20636:1 20669:1 20670:2 20696:1 20697:1 20702:1 20706:1 20713:1 20718:1 20724:1 20734:1 20735:1 20746:1 20758:1 20792:1 20795:1 20817:1 20822:2 20828:2 20844:1 20845:2 20846:1 20848:3 20851:5 20855:2 20874:1 20875:1 20878:1 20880:1 20892:1 20903:1 20912:1 20933:1 20940:1 20955:1 20956:1 20966:1 20980:1 21002:1 21034:3 21072:1 21080:3 21083:4 21096:1 21099:2 21107:2 21110:2 21111:2 21113:1 21118:2 21121:1 21142:1 21145:1 21151:1 21153:1 21163:1 21168:1 21180:1 21186:1 21188:2 21190:1 21202:1 21207:1 21213:4 21216:1 21223:2 21228:1 21238:1 21244:2 21262:1 21265:1 21271:4 21274:1 21276:2 21284:1 21298:2 21304:1 21308:1 21315:1 21318:1 21333:1 21339:1 21341:1 21349:2 21353:1 21361:1 21362:1 21374:3 21378:1 21379:2 21386:1 21402:1 21404:1 21443:1 21446:1 21451:3 21459:1 21463:1 21464:1 21470:2 21494:1 21509:2 21510:3 21512:1 21538:2 21539:1 21540:1 21547:1 21551:2 21568:1 21579:1 21581:1 21586:2 21589:2 21610:1 21613:1 21619:1 21623:1 21626:3 21635:3 21637:4 21639:1 21640:3 21646:1 21667:1 21674:2 21677:1 21703:1 21707:5 21713:1 21715:1 21718:1 21777:1 21820:2
1 5:2 10:1 17:1 23:2 35:1 44:2 53:1 66:1 69:1 77:1 83:1 91:1 99:1 101:1 103:3 107:1 123:1 124:1 128:2 130:1 131:1 132:1 133:1 134:1 140:1 163:1 181:1 217:1 233:1 251:1 255:1 260:3 261:1 266:1 270:2 275:1 280:1 296:2 308:1 309:1 319:2 320:1 324:3 337:1 343:6 346:1 369:1 370:1 382:1 401:2 411:1 419:1 432:1 439:7 454:1 461:3 466:1 467:1 468:2 476:1 490:1 501:2 510:2 523:3 527:1 547:1 563:4 564:3 571:1 573:3 575:1 578:1 582:3 583:1 593:1 600:1 602:2 605:2 626:3 628:3 635:1 644:2 660:1 663:6 664:1 667:5 677:1 685:2 698:2 706:1 717:2 742:1 744:1 747:1 749:1 753:1 761:1 762:6 770:1 778:4 790:1 796:1 797:2 806:4 827:3 835:1 849:1 854:2 858:1 861:1 869:1 879:1 883:1 889:1 893:1 894:1 901:2 904:1 908:3 918:1 943:1 954:1 956:4 959:2 964:1 989:3 1003:1 1004:2 1005:1 1018:2 1030:1 1034:1 1037:4 1040:1 1045:1 1056:1 1071:2 1073:4 1074:1 1079:1 1081:1 1099:1 1111:1 1124:1 1142:1 1152:2 1159:1 1160:2 1187:1 1200:1 1205:2 1209:1 1216:1 1229:2 1230:1 1237:3 1248:2 1258:1 1261:2 1270:2 1273:1 1278:1 1281:1 1282:3 1308:1 1320:6 1322:3 1328:1 1331:1 1343:1 1349:1 1351:1 1356:2 1358:4 1367:1 1375:1 1389:1 1392:1 1402:16 1407:4 1418:1 1419:5 1428:1 1430:1 1435:1 1441:4 1450:1 1453:1 1456:1 1457:17 1459:1 1463:1 1474:1 1475:4 1476:2 1478:9 1481:1 1482:1 1484:1 1486:3 1488:4 1489:3 1492:1 1507:2 1530:5 1531:4 1536:3 1543:1 1549:1 1550:1 1598:1 1600:2 1622:1 1624:2 1642:1 1644:1 1651:2 1653:1 1659:4 1683:2 1689:1 1698:1 1712:2 1715:1 1724:1 1740:1 1743:1 1757:1 1771:1 1774:2 1779:1 1781:1 1784:1 1785:1 1789:1 1790:1 1797:2 1800:1 1809:1 1834:3 1866:1 1875:1 1877:3 1879:3 1884:6 1885:2 1886:2 1887:1 1888:6 1889:2 1890:1 1892:2 1893:2 1894:1 1895:1 1898:2 1899:5 1903:1 1904:1 1908:1 1911:1 1912:2 1913:2 1920:2 1921:1 1927:1 1940:1 1947:1 1950:1 1951:1 1953:2 1962:1 1967:2 1973:2 1975:1 1985:1 1999:2 2007:2 2009:1 2024:1 2025:1 2029:1 2036:1 2051:1 2055:1 2057:1 2077:1 2079:1 2090:1 2102:1 2105:1 2107:1 2112:2 2113:1 2114:1 2122:1 2128:1 2142:1 2161:2 2167:1 2170:1 2171:1 2172:1 2179:1 2180:2 2181:2 2199:1 2208:1 2209:2 2215:2 2231:1 2233:1 2235:1 2239:1 2240:3 2267:1 2271:1 2274:1 2276:1 2281:1 2288:1 2290:1 2291:2 2293:1 2306:1 2314:1 2333:1 2337:1 2340:1 2345:4 2356:8 2359:2 2375:1 2376:1 2400:1 2412:2 2425:1 2427:1 2429:1 2434:1 2436:3 2441:3 2456:1 2458:1 2460:2 2465:1 2469:1 2472:2 2485:2 2486:2 2489:1 2498:1 2499:1 2503:1 2506:5 2507:1 2510:1 2511:2 2515:1 2520:2 2522:1 2527:3 2532:1 2545:1 2552:2 2553:1 2562:1 2563:4 2567:2 2572:2 2574:1 2575:1 2580:1 2583:1 2584:1 2595:3 2603:1 2604:2 2613:4 2617:1 2619:2 2621:1 2623:1 2626:1 2635:1 2649:1 2654:1 2656:5 2664:1 2669:1 2684:1 2691:1 2695:3 2701:2 2704:14 2706:1 2715:2 2718:6 2733:1 2739:1 2749:2 2750:5 2752:3 2753:4 2755:1 2768:1 2775:1 2786:1 2791:1 2795:2 2798:4 2800:1 2801:1 2804:1 2821:2 2828:1 2829:3 2834:1 2835:1 2840:3 2844:2 2845:1 2847:1 2862:2 2865:1 2891:1 2907:1 2913:1 2919:2 2927:9 2930:2 2932:1 2941:1 2945:2 2949:7 2953:1 2958:1 2959:2 2965:1 2968:2 2971:4 2978:1 2988:1 2989:1 2992:2 2997:1 3005:1 3021:1 3024:3 3025:1 3027:2 3032:1 3043:1 3057:1 3059:2 3062:1 3065:2 3066:1 3071:2 3075:2 3093:2 3098:1 3115:1 3124:5 3138:1 3153:11 3156:2 3161:1 3166:2 3179:1 3184:1 3190:1 3194:1 3208:2 3216:1 3228:1 3242:1 3263:3 3271:5 3273:1 3274:2 3275:1 3276:3 3290:1 3295:1 3299:1 3302:2 3308:1 3322:3 3325:2 3326:1 3329:3 3331:5 3332:1 3335:2 3337:2 3340:2 3341:2 3343:1 3344:4 3346:5 3350:1 3353:1 3354:5 3355:4 3358:5 3360:7 3362:1 3373:1 3388:1 3391:1 3412:1 3414:1 3417:1 3429:1 3439:2 3441:1 3445:1 3450:3 3451:3 3455:1 3465:2 3470:1 3475:2 3477:1 3488:1 3493:1 3500:1 3509:2 3518:1 3521:2 3523:1 3524:1 3538:1 3539:1 3541:2 3548:1 3549:1 3552:1 3557:1 3576:1 3577:1 3599:1 3612:1 3613:1 3622:1 3631:1 3633:1 3644:3 3661:1 3672:1 3674:1 3677:1 3679:3 3684:2 3692:1 3697:1 3703:1 3711:1 3712:1 3717:1 3718:1 3722:1 3726:1 3732:1 3747:1 3749:3 3755:1 3759:1 3760:3 3767:2 3772:1 3775:7 3777:3 3781:1 3787:1 3788:1 3789:1 3790:1 3793:1 3800:3 3806:2 3808:2 3815:2 3819:1 3821:1 3825:1 3828:10 3856:4 3857:1 3858:1 3865:2 3887:1 3888:2 3893:2 3896:1 3899:2 3900:1 3901:2 3903:3 3904:1 3910:1 3916:1 3921:1 3924:2 3925:7 3927:1 3928:1 3939:2 3948:2 3957:9 3965:6 3966:1 3979:2 3981:1 3986:1 3988:2 3990:1 3997:3 3998:2 4009:3 4025:1 4026:3 4032:3 4036:1 4038:1 4041:1 4048:2 4060:1 4065:4 4071:1 4090:1 4097:1 4101:2 4103:1 4104:2 4106:2 4118:1 4121:4 4122:1 4129:1 4131:1 4133:7 4136:1 4143:2 4147:1 4150:1 4158:1 4176:1 4182:1 4198:1 4199:1 4200:1 4216:1 4224:1 4227:1 4230:1 4237:1 4239:1 4242:3 4246:2 4247:1 4264:1 4265:4 4272:1 4277:1 4279:16 4292:1 4311:3 4312:1 4315:1 4316:1 4317:1 4318:1 4326:2 4333:3 4335:1 4338:1 4358:21 4361:3 4381:1 4382:1 4387:1 4398:2 4400:3 4412:1 4426:2 4427:1 4429:3 4438:1 4440:1 4442:1 4447:1 4452:1 4459:1 4461:1 4470:1 4482:1 4489:1 4498:1 4505:1 4513:1 4524:1 4532:1 4534:5 4555:2 4565:3 4573:1 4582:1 4584:1 4586:1 4591:1 4600:2 4627:1 4641:1 4643:2 4657:1 4661:1 4663:1 4667:1 4680:2 4698:1 4700:1 4717:2 4731:1 4737:3 4757:1 4770:2 4771:1 4786:1 4792:1 4794:2 4797:1 4803:1 4811:1 4841:1 4854:1 4855:1 4863:1 4866:1 4868:2 4869:1 4877:1 4880:1 4884:1 4889:2 4895:1 4910:8 4912:1 4933:1 4936:3 4944:1 4958:1 4969:1 5004:1 5009:1 5018:3 5023:1 5028:1 5032:15 5051:1 5053:1 5058:1 5059:1 5068:1 5074:1 5082:1 5083:2 5087:1 5089:1 5096:1 5103:1 5107:1 5133:1 5149:1 5156:1 5182:2 5187:1 5197:1 5199:1 5205:1 5206:17 5218:1 5220:2 5222:2 5223:2 5226:1 5244:1 5249:1 5250:1 5251:1 5257:14 5274:4 5275:1 5277:2 5288:1 5290:6 5293:1 5307:1 5308:2 5310:1 5317:1 5321:3 5331:2 5338:3 5348:1 5369:1 5386:1 5395:1 5396:2 5418:1 5422:1 5429:2 5434:1 5438:2 5453:3 5456:6 5460:1 5461:1 5492:1 5495:1 5499:2 5506:2 5508:1 5528:2 5530:1 5533:2 5534:1 5547:2 5555:3 5557:1 5572:2 5574:1 5577:3 5579:5 5583:2 5587:2 5591:1 5592:2 5593:2 5596:1 5606:4 5608:1 5618:1 5621:2 5624:2 5625:2 5647:1 5651:2 5656:3016 5670:1 5673:1 5678:1 5679:2 5682:3 5687:1 5694:1 5696:1 5700:1 5701:1 5714:2 5716:1 5726:7 5728:5 5741:2 5761:1 5765:1 5772:1 5775:1 5779:1 5784:2 5787:1 5793:1 5804:1 5814:2 5816:1 5824:1 5829:2 5846:1 5855:1 5862:2 5866:1 5870:1 5873:1 5878:1 5891:2 5894:2 5901:1 5904:1 5905:1 5915:2 5927:1 5939:4 5940:1 5941:1 5944:3 5945:1 5947:2 5949:1 5952:1 5955:2 5981:1 5983:1 5987:2 5992:6 5993:4 5997:1 6004:1 6015:1 6023:1 6025:1 6033:1 6046:1 6050:1 6057:1 6066:1 6067:1 6078:1 6088:1 6095:1 6101:1 6106:7 6108:1 6109:1 6142:3 6156:1 6165:2 6171:1 6176:3 6179:2 6184:1 6185:1 6189:3 6192:1 6201:2 6202:1 6210:2 6228:1 6240:1 6242:1 6244:1 6247:2 6248:4 6268:4 6295:1 6296:1 6302:1 6304:1 6308:3 6312:1 6320:2 6327:1 6335:2 6343:2 6350:1 6359:1 6366:1 6367:1 6373:2 6376:1 6378:3 6380:1 6381:1 6397:1 6398:1 6399:2 6403:1 6410:2 6414:1 6417:1 6435:1 6445:1 6449:3 6452:1 6460:1 6468:1 6479:2 6488:5 6507:1 6513:1 6518:1 6520:1 6521:2 6540:1 6543:1 6550:2 6555:1 6558:2 6567:4 6570:1 6577:3 6578:1 6590:2 6593:1 6596:1 6597:1 6603:4 6606:2 6612:2 6614:2 6631:5 6642:3 6655:1 6662:1 6669:1 6673:3 6674:2 6700:1 6702:2 6708:3 6709:3 6711:1 6713:1 6716:1 6728:3 6732:1 6733:2 6738:1 6746:9 6747:1 6756:1 6769:1 6776:2 6792:1 6793:1 6800:1 6804:1 6820:1 6822:1 6823:1 6832:2 6833:1 6842:1 6846:2 6870:5 6871:1 6892:16 6894:2 6899:1 6901:2 6905:1 6906:1 6914:1 6916:1 6927:1 6936:1 6948:1 6957:1 6961:1 6975:4 6976:1 6986:1 6989:2 6997:1 6998:2 7000:1 7012:4 7013:1 7023:1 7028:1 7038:2 7051:1 7066:1 7074:1 7075:4 7084:3 7090:1 7095:2 7098:1 7107:3 7112:1 7117:4 7119:7 7121:3 7124:1 7129:2 7131:2 7132:2 7136:1 7138:2 7140:6 7142:4 7146:2 7147:8 7154:2 7158:5 7159:1 7162:1 7171:4 7175:1 7177:1 7199:1 7201:2 7203:2 7206:2 7211:1 7213:2 7215:1 7229:1 7248:2 7253:1 7264:1 7271:1 7272:1 7274:1 7283:1 7293:1 7300:3 7315:1 7340:1 7345:1 7360:1 7387:1 7388:3 7404:1 7405:2 7406:1 7408:1 7419:1 7421:3 7426:1 7450:1 7458:1 7461:1 7462:1 7466:1 7470:1 7480:1 7488:2 7497:1 7504:2 7506:1 7516:1 7519:1 7520:2 7529:1 7530:2 7537:1 7545:1 7555:1 7557:1 7562:1 7563:1 7569:1 7572:2 7575:4 7580:2 7588:1 7589:4 7636:1 7665:1 7668:1 7682:3 7689:3 7691:1 7693:1 7697:2 7699:2 7700:2 7702:2 7712:1 7720:1 7722:2 7724:3 7732:3 7739:1 7740:2 7741:2 7744:1 7768:5 7778:1 7779:2 7792:1 7797:1 7812:1 7818:1 7821:2 7823:4 7835:6 7853:1 7859:1 7860:2 7867:1 7872:2 7873:1 7878:1 7891:1 7898:1 7905:3 7930:1 7931:1 7938:2 7940:1 7944:3 7953:2 7964:1 7965:1 7969:1 7974:3 7975:21 7977:2 7985:1 7991:1 7994:5 8003:1 8006:1 8022:1 8033:2 8035:1 8040:1 8059:3 8070:1 8071:1 8075:1 8087:1 8093:1 8095:1 8104:1 8108:1 8120:1 8136:1 8140:1 8141:1 8145:1 8152:1 8154:1 8159:1 8179:1 8188:1 8195:2 8202:1 8206:1 8208:1 8213:2 8214:1 8221:1 8227:1 8235:1 8250:5 8251:1 8254:2 8257:1 8259:4 8261:4 8278:1 8280:1 8288:1 8299:2 8301:1 8312:3 8327:2 8330:1 8333:1 8334:1 8342:2 8345:6 8348:1 8359:2 8364:2 8377:1 8378:1 8391:2 8428:8 8433:2 8439:1 8444:1 8450:1 8455:1 8462:1 8488:1 8489:1 8494:1 8497:1 8503:1 8512:1 8514:1 8518:1 8520:1 8521:1 8524:1 8532:3 8533:1 8534:1 8554:1 8570:1 8572:1 8575:1 8576:1 8590:4 8601:1 8608:2 8619:2 8621:4 8638:1 8646:2 8647:2 8651:4 8653:1 8663:1 8668:1 8673:1 8674:1 8675:1 8679:6 8682:1 8683:1 8687:1 8688:1 8693:2 8697:2 8700:2 8705:1 8707:1 8708:1 8709:1 8721:1 8752:1 8754:1 8755:1 8756:1 8762:1 8765:2 8766:2 8767:1 8772:1 8775:1 8776:2 8777:3 8783:12 8788:2 8792:3 8807:2 8814:1 8828:2 8834:1 8852:3 8862:5 8863:1 8867:2 8880:2 8885:1 8894:1 8899:1 8905:1 8909:2 8913:2 8923:1 8931:1 8939:1 8943:2 8952:1 8958:4 8967:2 8969:2 8970:1 8981:5 8985:1 8994:2 8997:6 8999:1 9001:1 9003:1 9008:2 9015:1 9027:3 9059:2 9068:1 9076:1 9084:2 9089:1 9095:1 9111:1 9113:1 9121:2 9128:1 9135:2 9139:2 9143:2 9148:2 9151:1 9152:2 9154:1 9155:1 9157:1 9160:2 9162:3 9163:1 9168:1 9169:1 9171:2 9173:1 9176:2 9179:2 9181:4 9184:3 9203:1 9207:2 9232:2 9245:1 9246:4 9258:1 9260:1 9262:4 9263:1 9281:2 9285:1 9293:1 9299:1 9300:1 9311:2 9319:1 9330:1 9333:1 9340:1 9345:1 9347:1 9370:1 9387:1 9396:1 9399:1 9402:2 9407:2 9418:1 9419:1 9422:1 9424:1 9438:2 9440:1 9442:4 9445:2 9468:1 9480:1 9489:1 9547:1 9554:1 9568:2 9572:2 9580:2 9585:2 9587:1 9589:1 9598:2 9599:2 9604:1 9605:1 9606:1 9612:1 9615:1 9618:1 9630:1 9634:2 9655:3 9657:1 9661:1 9668:1 9679:1 9688:2 9694:1 9703:2 9714:1 9721:1 9726:1 9731:1 9735:1 9737:1 9751:1 9753:1 9768:2 9772:1 9773:1 9776:1 9778:2 9782:1 9784:1 9801:1 9806:2 9814:2 9823:2 9824:1 9826:1 9830:1 9831:2 9834:1 9835:1 9836:1 9844:1 9846:1 9849:2 9871:1 9873:14 9883:2 9885:2 9890:2 9912:2 9914:1 9915:1 9922:1 9932:1 9942:1 9945:1 9946:1 9948:1 9962:1 9963:1 9966:2 9968:2 9974:1 9983:1 9985:8 9987:1 9993:1 9996:2 10001:1 10007:3 10011:1 10020:1 10028:1 10037:1 10043:2 10060:1 10065:1 10066:1 10070:2 10078:1 10080:1 10089:1 10102:2 10109:1 10116:1 10121:6 10125:3 10128:1 10129:3 10130:1 10144:2 10146:2 10152:1 10161:2 10165:1 10166:1 10168:1 10169:1 10175:1 10177:1 10193:1 10197:1 10206:1 10207:1 10208:1 10209:1 10214:1 10216:3 10217:4 10221:2 10222:1 10229:1 10261:1 10281:2 10285:1 10287:1 10288:1 10291:1 10304:2 10314:1 10330:6 10340:2 10364:1 10379:1 10384:4 10389:1 10390:5 10393:3 10394:3 10395:1 10396:1 10403:1 10407:2 10411:1 10412:1 10415:2 10416:3 10417:2 10433:1 10436:1 10438:6 10439:5 10440:1 10441:1 10445:1 10447:1 10455:5 10458:1 10460:1 10462:1 10463:1 10469:1 10470:1 10485:1 10502:1 10512:1 10514:1 10520:1 10524:2 10532:2 10533:2 10535:1 10541:1 10573:1 10574:1 10583:4 10595:5 10612:1 10617:1 10630:1 10650:2 10656:2 10658:3 10662:1 10664:1 10670:1 10674:1 10676:1 10677:1 10683:1 10684:1 10689:1 10694:1 10696:1 10699:1 10706:1 10716:1 10721:1 10727:1 10742:1 10743:1 10755:1 10775:1 10777:1 10783:1 10785:1 10790:2 10792:1 10801:2 10803:1 10808:1 10812:1 10817:1 10839:2 10843:1 10845:1 10848:1 10852:5 10854:1 10861:2 10865:1 10879:1 10881:4 10885:3 10896:1 10907:1 10918:1 10920:1 10924:1 10932:2 10935:1 10940:1 10941:1 10943:4 10953:2 10962:1 10966:1 10969:2 10970:6 10973:2 10975:9 10978:1 10980:3 10984:2 10987:1 10988:1 10989:1 10990:1 10993:1 10999:3 11000:1 11003:1 11004:1 11021:1 11022:1 11043:6 11045:2 11051:2 11057:9 11059:1 11076:1 11101:1 11104:1 11108:3 11127:1 11138:6 11140:1 11143:1 11150:1 11153:1 11158:1 11160:2 11163:2 11166:1 11176:1 11180:1 11183:1 11185:1 11187:1 11194:1 11209:1 11210:3 11215:1 11216:1 11223:1 11225:2 11228:1 11234:1 11237:1 11248:1 11249:2 11253:4 11257:1 11266:1 11272:1 11274:1 11288:1 11300:1 11316:4 11323:2 11329:4 11331:8 11332:6 11334:2 11349:2 11352:3 11354:1 11358:4 11364:4 11368:4 11369:1 11371:3 11373:1 11374:1 11384:1 11390:1 11393:1 11404:1 11415:4 11416:3 11417:1 11419:1 11424:4 11436:50 11438:2 11442:1 11448:1 11453:1 11455:3 11457:1 11463:3 11470:10 11472:8 11473:1 11481:2 11484:1 11486:1 11506:1 11516:1 11517:1 11519:1 11522:1 11525:1 11527:1 11534:1 11549:1 11552:2 11565:1 11574:3 11575:2 11578:1 11590:1 11594:2 11605:2 11618:3 11635:1 11639:1 11643:1 11645:1 11653:1 11655:1 11656:1 11660:1 11665:1 11687:1 11691:2 11694:2 11708:1 11712:3 11713:10 11724:2 11743:2 11755:3 11760:4 11766:1 11775:1 11776:2 11781:3 11783:1 11784:3 11787:1 11794:2 11796:1 11810:1 11838:1 11844:1 11845:1 11846:1 11847:1 11862:1 11863:1 11867:2 11869:2 11878:2 11896:1 11898:1 11900:1 11940:1 11941:1 11947:1 11948:1 11949:1 11963:1 11983:1 11986:1 11989:2 11994:2 11996:1 11998:1 12012:1 12015:1 12016:1 12021:2 12028:1 12030:1 12033:1 12043:2 12045:1 12051:1 12055:1 12061:1 12070:1 12076:1 12077:3 12089:1 12100:1 12107:1 12118:1 12119:2 12127:3 12144:27 12156:1 12176:3 12183:3 12190:1 12194:1 12195:1 12234:1 12242:1 12254:2 12267:6 12269:1 12272:1 12281:1 12286:1 12313:3 12314:3 12322:7 12345:1 12348:1 12360:1 12365:5 12366:3 12370:2 12371:2 12374:1 12380:1 12381:1 12384:2 12389:2 12390:3 12402:1 12408:1 12419:4 12424:2 12426:4 12442:3 12450:1 12459:1 12474:2 12479:1 12486:1 12488:1 12493:1 12494:1 12501:1 12516:1 12520:1 12536:1 12544:1 12545:2 12549:1 12555:1 12556:1 12557:1 12568:2 12575:1 12580:2 12582:2 12583:1 12588:1 12596:4 12601:1 12630:1 12637:1 12641:3 12664:2 12670:1 12676:1 12685:2 12694:1 12695:1 12703:1 12711:1 12718:1 12725:1 12727:2 12731:4 12734:3 12736:1 12738:1 12745:1 12750:1 12757:1 12758:1 12770:1 12772:1 12775:1 12784:3 12789:2 12801:3 12804:2 12805:1 12809:2 12811:7 12814:1 12824:2 12830:3 12840:1 12842:1 12847:1 12861:2 12866:1 12871:1 12872:1 12883:1 12892:2 12899:1 12902:2 12911:1 12919:1 12925:1 12926:4 12928:1 12929:1 12931:1 12934:1 12938:1 12944:1 12946:1 12947:4 12948:1 12949:1 12951:1 12956:1 12962:2 12976:1 12982:1 12992:1 13000:1 13005:1 13016:3 13019:1 13048:1 13050:2 13064:1 13068:1 13082:1 13091:1 13106:2 13115:1 13121:2 13136:1 13139:1 13160:3 13178:2 13179:1 13191:1 13206:1 13208:1 13209:2 13213:3 13216:1 13237:1 13242:3 13245:1 13256:2 13260:1 13276:1 13278:1 13280:2 13302:1 13303:1 13304:1 13307:1 13311:1 13313:2 13316:1 13318:2 13325:1 13326:8 13333:1 13334:1 13337:1 13347:1 13358:1 13371:1 13374:2 13378:1 13391:7 13393:1 13405:1 13408:1 13413:1 13421:1 13425:1 13433:1 13437:1 13441:11 13443:6 13445:2 13456:1 13471:3 13474:2 13481:1 13502:1 13521:1 13524:3 13531:1 13536:1 13545:1 13549:1 13554:3 13559:1 13572:1 13581:1 13583:2 13590:1 13596:1 13600:2 13602:2 13604:3 13605:2 13616:2 13625:1 13640:1 13659:2 13663:1 13680:1 13692:2 13693:2 13696:1 13708:4 13711:1 13714:5 13720:2 13721:1 13735:1 13740:1 13741:3 13745:2 13750:1 13751:1 13752:1 13766:4 13803:1 13806:1 13807:8 13819:1 13821:1 13836:1 13838:1 13843:3 13849:1 13860:1 13867:1 13873:1 13875:1 13882:1 13887:5 13896:3 13904:1 13905:1 13906:1 13912:1 13915:3 13922:1 13924:1 13937:1 13939:1 13942:1 13947:1 13952:1 13967:3 13987:1 13990:1 14004:1 14007:1 14016:1 14024:4 14028:2 14032:8 14036:1 14037:2 14043:3 14081:3 14089:1 14094:1 14096:1 14109:3 14120:1 14130:1 14140:1 14144:1 14147:1 14151:1 14174:1 14175:1 14179:1 14181:1 14184:1 14186:1 14189:1 14193:1 14195:2 14198:3 14199:3 14201:4 14203:1 14204:3 14206:2 14208:1 14209:2 14212:1 14217:2 14219:1 14220:1 14221:1 14229:1 14242:1 14243:1 14252:1 14254:2 14258:2 14262:6 14280:1 14282:2 14285:1 14295:1 14304:2 14307:1 14314:1 14315:1 14319:1 14321:1 14326:1 14328:1 14363:12 14368:2 14369:6 14400:1 14401:1 14404:2 14406:1 14410:1 14412:1 14414:1 14415:1 14432:1 14433:2 14436:1 14437:1 14443:2 14447:1 14449:3 14458:3 14470:2 14482:1 14485:1 14490:1 14498:1 14499:1 14513:1 14515:1 14559:1 14564:1 14565:2 14581:1 14586:1 14617:1 14623:1 14625:1 14629:1 14631:1 14633:1 14637:1 14642:5 14662:1 14668:4 14678:4 14679:1 14683:2 14697:2 14700:1 14707:1 14709:1 14717:1 14720:1 14725:2 14729:2 14738:1 14750:2 14756:3 14758:1 14759:1 14763:1 14769:2 14771:2 14776:1 14802:1 14821:1 14825:1 14832:2 14834:1 14843:1 14844:2 14845:2 14846:1 14850:1 14852:1 14855:1 14857:1 14871:1 14876:1 14877:1 14879:1 14889:1 14895:4 14896:5 14900:1 14931:2 14936:1 14945:2 14951:1 14954:1 14959:12 14964:2 14977:2 14979:2 14985:2 14988:1 14997:1 15003:3 15004:1 15032:2 15033:2 15037:1 15048:1 15052:1 15054:1 15055:1 15073:1 15096:1 15099:18 15100:2 15108:1 15133:1 15136:2 15138:1 15152:1 15155:1 15165:1 15166:1 15170:1 15184:1 15189:1 15198:1 15201:1 15202:1 15205:1 15208:1 15210:4 15222:1 15224:1 15226:1 15229:2 15250:1 15256:2 15260:1 15265:1 15281:2 15285:1 15287:1 15291:1 15298:1 15299:1 15300:1 15301:4 15303:1 15306:1 15307:1 15309:1 15315:1 15320:3 15331:1 15332:1 15339:1 15340:2 15341:1 15346:1 15348:1 15359:4 15360:1 15369:1 15384:1 15385:1 15391:1 15416:1 15427:1 15434:1 15435:1 15436:1 15441:1 15447:1 15448:2 15456:2 15458:1 15479:2 15486:1 15488:1 15490:1 15492:1 15504:1 15514:1 15519:3 15524:1 15529:1 15539:2 15542:1 15544:1 15548:12 15550:1 15551:1 15552:7 15554:4 15569:2 15573:3 15577:1 15578:1 15584:1 15589:2 15591:1 15595:1 15597:2 15607:1 15618:2 15621:1 15633:7 15634:2 15654:2 15659:2 15663:1 15664:1 15670:1 15674:4 15699:1 15703:1 15712:7 15715:1 15722:1 15723:1 15727:1 15732:3 15742:1 15745:2 15751:1 15753:2 15754:7 15756:1 15774:2 15787:1 15795:2 15796:1 15799:1 15806:1 15814:3 15821:1 15835:1 15860:1 15875:2 15879:2 15881:1 15894:1 15896:2 15913:1 15918:1 15924:1 15931:1 15958:1 15966:2 15975:1 15976:1 15978:1 15992:1 16018:1 16020:2 16027:1 16030:1 16031:1 16040:1 16045:1 16050:1 16051:2 16054:2 16058:1 16059:2 16063:1 16067:1 16071:2 16074:1 16075:5 16078:1 16080:6 16083:1 16088:1 16090:1 16093:2 16099:1 16100:2 16101:3 16105:5 16106:1 16110:1 16114:4 16117:1 16119:1 16127:3 16128:1 16130:1 16131:3 16134:1 16137:1 16140:1 16142:2 16163:2 16172:1 16176:1 16177:2 16206:1 16207:1 16211:4 16214:1 16225:7 16240:1 16246:1 16249:1 16260:1 16262:1 16269:1 16273:7 16278:1 16285:1 16297:2 16305:1 16312:2 16331:1 16335:1 16339:1 16341:1 16357:1 16364:1 16374:3 16376:1 16391:1 16393:1 16395:1 16399:1 16411:1 16413:1 16414:1 16415:1 16418:1 16427:1 16430:1 16431:1 16440:1 16443:1 16446:3 16473:1 16498:1 16502:1 16508:1 16519:1 16523:1 16527:1 16531:2 16535:2 16538:1 16551:1 16552:3 16553:2 16560:1 16575:2 16580:2 16581:1 16584:1 16585:2 16586:1 16593:1 16596:3 16600:1 16601:1 16602:2 16610:1 16618:1 16621:1 16628:3 16631:2 16650:1 16651:1 16658:1 16667:3 16676:19 16678:1 16679:1 16708:1 16712:1 16725:1 16727:1 16731:4 16745:1 16749:2 16750:2 16753:1 16758:2 16765:1 16780:1 16800:1 16801:1 16805:1 16810:2 16816:2 16823:1 16828:3 16843:1 16844:3 16850:1 16851:1 16852:1 16867:2 16869:1 16874:2 16882:1 16890:1 16893:3 16898:1 16921:1 16936:5 16949:1 16951:1 16955:1 16964:1 16981:1 16987:1 16997:1 16999:2 17005:1 17008:1 17028:1 17029:1 17033:1 17045:1 17046:1 17052:3 17053:1 17055:1 17056:1 17062:15 17063:2 17068:1 17071:5 17076:1 17078:2 17079:1 17083:2 17084:1 17089:1 17092:1 17099:2 17111:1 17126:1 17131:1 17132:1 17133:1 17137:1 17144:2 17151:5 17156:4 17168:2 17183:2 17189:1 17201:1 17202:1 17209:2 17230:1 17231:1 17235:2 17237:2 17242:1 17251:1 17259:4 17263:3 17266:2 17268:3 17273:1 17279:3 17287:4 17295:1 17301:1 17314:1 17319:1 17332:1 17333:1 17339:1 17345:1 17351:1 17379:1 17390:1 17394:1 17396:1 17397:1 17403:6 17406:1 17414:1 17417:1 17418:1 17429:2 17431:2 17432:1 17438:1 17453:1 17461:1 17463:1 17468:2 17484:1 17495:2 17501:2 17504:2 17518:2 17533:2 17536:1 17543:1 17547:2 17549:2 17553:1 17554:1 17555:2 17565:1 17566:2 17572:2 17591:6 17594:1 17604:1 17608:1 17609:1 17612:1 17616:2 17627:1 17632:1 17634:2 17640:1 17643:1 17652:1 17656:2 17660:1 17670:2 17672:1 17675:2 17676:2 17695:1 17696:1 17753:1 17759:1 17767:1 17769:1 17774:5 17776:4 17798:1 17799:1 17801:1 17809:3 17810:2 17818:1 17823:1 17826:1 17855:1 17881:1 17893:1 17894:1 17897:6 17922:1 17925:1 17929:2 17930:1 17935:1 17936:1 17971:1 17986:1 17989:1 17996:1 18002:1 18003:1 18012:1 18022:1 18023:1 18027:1 18032:3 18038:1 18045:1 18053:1 18070:1 18074:2 18077:2 18080:1 18099:3 18104:1 18126:1 18129:1 18141:1 18143:1 18150:1 18153:2 18175:1 18179:1 18180:3 18191:1 18198:1 18200:1 18211:1 18227:2 18230:1 18245:2 18258:2 18263:1 18264:4 18269:1 18272:1 18274:2 18290:1 18297:1 18302:1 18303:1 18310:2 18312:1 18319:1 18333:1 18339:1 18347:1 18357:3 18358:1 18360:2 18362:1 18380:3 18383:2 18386:1 18390:1 18393:1 18395:1 18398:2 18399:2 18415:1 18432:1 18434:1 18438:1 18441:1 18451:1 18453:1 18455:1 18459:2 18465:1 18499:1 18523:6 18525:1 18531:3 18534:1 18535:2 18542:1 18545:1 18546:3 18556:1 18564:1 18566:1 18575:1 18586:1 18603:1 18606:15 18613:5 18616:2 18627:2 18629:1 18634:2 18638:2 18640:1 18644:2 18652:1 18656:1 18665:2 18666:1 18677:1 18685:1 18687:2 18689:3 18692:1 18693:1 18697:1 18703:1 18707:1 18709:3 18710:1 18711:4 18713:1 18714:1 18717:3 18719:1 18725:2 18729:1 18735:1 18742:2 18751:1 18752:2 18760:1 18763:1 18765:1 18769:2 18770:1 18780:1 18791:2 18796:1 18807:1 18810:1 18815:1 18835:1 18851:5 18865:1 18872:1 18881:2 18893:1 18897:1 18898:1 18904:2 18909:2 18918:1 18939:1 18947:1 18948:1 18973:1 19008:1 19013:1 19014:2 19015:1 19025:2 19026:1 19037:1 19048:1 19051:1 19053:1 19055:1 19062:1 19064:2 19085:1 19093:2 19108:1 19114:1 19115:1 19117:5 19119:1 19121:3 19126:5 19145:1 19152:2 19155:1 19168:1 19186:1 19215:7 19228:1 19235:1 19270:1 19278:2 19280:1 19292:1 19296:2 19311:1 19314:1 19315:4 19322:1 19324:4 19335:1 19339:2 19342:1 19344:2 19353:3 19364:1 19365:1 19367:2 19386:7 19388:2 19391:1 19407:1 19413:1 19418:2 19444:1 19450:4 19452:1 19454:1 19471:1 19484:1 19491:1 19495:1 19496:1 19498:2 19503:2 19506:1 19508:1 19509:1 19512:2 19519:2 19524:9 19525:1 19535:2 19536:3 19537:1 19538:3 19545:1 19549:1 19551:2 19555:1 19556:1 19558:2 19568:1 19578:1 19582:1 19586:2 19595:1 19597:1 19598:1 19600:5 19602:2 19615:1 19616:1 19620:1 19621:1 19630:1 19633:1 19638:3 19645:2 19649:2 19652:1 19655:18 19659:1 19664:5 19667:1 19680:3 19692:1 19696:3 19700:1 19715:3 19718:2 19720:2 19721:1 19724:3 19727:3 19733:1 19747:1 19757:2 19758:1 19777:2 19785:1 19786:1 19792:3 19816:3 19829:1 19833:1 19851:1 19857:6 19863:1 19865:1 19891:1 19896:1 19903:2 19908:3 19910:1 19913:1 19918:4 19929:7 19936:5 19965:1 19974:1 19975:5 19977:1 19984:1 19991:3 19992:1 19995:1 19998:1 19999:2 20015:1 20020:1 20022:1 20030:1 20034:6 20035:1 20037:1 20038:2 20039:1 20040:2 20041:1 20044:1 20047:1 20049:8 20050:3 20052:1 20069:1 20072:1 20075:1 20076:1 20078:1 20080:1 20081:1 20089:1 20101:1 20102:6 20109:1 20117:2 20132:1 20160:1 20170:1 20171:1 20185:1 20188:1 20209:1 20210:2 20216:2 20223:1 20227:1 20243:1 20251:1 20256:1 20258:1 20262:1 20264:1 20266:1 20267:2 20276:2 20277:1 20284:1 20298:7 20305:3 20363:1 20366:1 20368:1 20378:1 20379:1 20380:1 20382:1 20383:1 20387:2 20390:7 20393:2 20396:1 20402:1 20409:2 20413:1 20430:2 20440:2 20451:1 20452:1 20453:1 20464:1 20466:1 20469:1 20482:8 20494:6 20519:3 20529:1 20552:1 20580:1 20588:1 20589:2 20598:1 20603:1 20607:1 20614:1 20618:1 20621:1 20628:1 20633:1 20636:1 20669:1 20670:2 20696:1 20697:1 20702:1 20706:1 20713:1 20718:1 20724:1 20734:1 20735:1 20746:1 20758:1 20792:1 20795:1 20817:1 20822:2 20828:2 20844:1 20845:2 20846:1 20848:3 20851:5 20855:2 20874:1 20875:1 20878:1 20880:1 20892:1 20903:1 20912:1 20933:1 20940:1 20955:1 20956:1 20966:1 20980:1 21002:1 21034:3 21072:1 21080:3 21083:4 21096:1 21099:2 21107:2 21110:2 21111:2 21113:1 21118:2 21121:1 21142:1 21145:1 21151:1 21153:1 21163:1 21168:1 21180:1 21186:1 21188:2 21190:1 21202:1 21207:1 21213:4 21216:1 21223:2 21228:1 21238:1 21244:2 21262:1 21265:1 21271:4 21274:1 21276:2 21284:1 21298:2 21304:1 21308:1 21315:1 21318:1 21333:1 21339:1 21341:1 21349:2 21353:1 21361:1 21362:1 21374:3 21378:1 21379:2 21386:1 21402:1 21404:1 21443:1 21446:1 21451:3 21459:1 21463:1 21464:1 21470:2 21494:1 21509:2 21510:3 21512:1 21538:2 21539:1 21540:1 21547:1 21551:2 21568:1 21579:1 21581:1 21586:2 21589:2 21610:1 21613:1 21619:1 21623:1 21626:3 21635:3 21637:4 21639:1 21640:3 21646:1 21667:1 21674:2 21677:1 21703:1 21707:5 21713:1 21715:1 21718:1 21777:1 21820:2
1 5:2 10:1 14:1 17:1 23:2 35:1 44:2 53:1 66:1 69:1 77:1 83:1 91:1 99:1 101:1 103:3 107:1 123:1 124:1 128:2 130:1 131:1 132:1 133:1 134:1 140:1 163:2 181:1 217:1 233:1 251:1 255:1 260:4 261:1 266:1 270:2 275:1 280:1 296:2 308:1 309:1 319:2 320:1 324:3 337:1 343:6 346:1 369:1 370:1 382:1 401:2 411:1 419:1 432:1 439:7 454:1 461:3 466:1 467:1 468:2 476:1 490:1 501:2 510:2 523:3 527:1 547:1 563:5 564:3 571:1 573:3 575:1 578:1 582:3 583:1 593:1 600:1 602:2 605:2 626:3 628:3 635:1 644:2 660:1 663:6 664:1 667:6 677:1 685:2 698:2 706:1 717:2 742:1 744:1 747:1 749:2 753:1 761:1 762:6 770:1 778:4 790:1 796:1 797:2 806:5 827:3 835:1 849:1 854:2 858:1 861:1 869:1 879:1 883:1 889:2 893:1 894:1 901:2 904:1 908:3 918:1 943:1 954:1 956:4 959:2 964:1 989:3 1003:1 1004:2 1005:1 1018:2 1030:1 1034:1 1037:4 1040:2 1045:1 1051:1 1056:1 1071:2 1073:4 1074:1 1079:1 1081:1 1099:2 1111:1 1124:1 1142:1 1152:2 1159:1 1160:2 1187:1 1200:1 1205:2 1209:1 1216:1 1229:3 1230:1 1233:1 1237:3 1248:2 1258:1 1261:2 1270:2 1273:1 1278:1 1281:1 1282:3 1308:1 1320:7 1322:3 1328:1 1331:1 1343:1 1349:1 1351:1 1356:2 1358:4 1367:2 1375:1 1389:1 1392:1 1402:16 1407:4 1418:1 1419:5 1428:1 1430:1 1435:1 1441:4 1450:1 1453:1 1456:1 1457:18 1459:1 1463:1 1474:1 1475:4 1476:2 1478:9 1479:1 1481:1 1482:1 1484:1 1486:3 1488:4 1489:3 1492:1 1507:2 1530:5 1531:4 1536:3 1543:1 1549:1 1550:1 1598:1 1600:2 1622:1 1624:2 1642:1 1644:1 1651:2 1653:1 1659:4 1683:2 1689:1 1698:1 1712:2 1715:1 1724:1 1740:1 1743:1 1757:1 1771:1 1774:3 1779:1 1781:1 1784:1 1785:1 1789:1 1790:2 1797:2 1800:1 1809:1 1834:3 1866:1 1875:1 1877:3 1879:3 1884:6 1885:2 1886:2 1887:1 1888:6 1889:2 1890:1 1892:2 1893:2 1894:1 1895:1 1898:2 1899:5 1903:1 1904:1 1908:1 1911:1 1912:2 1913:2 1920:2 1921:1 1927:1 1940:1 1947:1 1950:1 1951:1 1953:2 1962:1 1967:2 1973:2 1975:1 1985:1 1999:2 2007:2 2009:1 2024:1 2025:1 2029:1 2036:1 2051:1 2055:1 2057:1 2077:1 2079:1 2088:1 2090:1 2102:1 2105:1 2107:1 2112:2 2113:1 2114:1 2116:1 2122:1 2128:1 2142:1 2161:2 2167:1 2170:1 2171:1 2172:1 2179:1 2180:2 2181:2 2199:1 2208:1 2209:2 2215:2 2231:1 2233:1 2235:1 2239:1 2240:3 2267:1 2271:1 2274:1 2276:1 2281:1 2288:1 2290:1 2291:2 2293:1 2306:1 2314:1 2333:1 2337:1 2340:1 2345:4 2350:1 2356:8 2359:2 2370:1 2375:1 2376:1 2400:1 2412:2 2425:1 2427:1 2429:1 2434:1 2436:4 2441:3 2456:1 2458:1 2460:2 2465:1 2469:1 2472:2 2485:3 2486:2 2489:1 2498:1 2499:1 2503:1 2506:5 2507:1 2510:1 2511:2 2515:1 2520:2 2522:2 2527:3 2532:1 2545:1 2552:2 2553:1 2555:1 2562:1 2563:4 2567:2 2572:2 2574:1 2575:1 2580:1 2583:1 2584:1 2595:4 2603:1 2604:2 2613:4 2617:1 2619:2 2621:1 2623:1 2626:1 2635:1 2649:2 2654:1 2656:5 2664:1 2669:1 2684:1 2691:1 2695:3 2701:2 2704:14 2706:1 2715:2 2718:6 2733:1 2739:1 2749:2 2750:5 2752:3 2753:4 2755:2 2768:1 2775:1 2786:1 2791:1 2795:2 2798:4 2800:1 2801:1 2804:1 2821:2 2828:1 2829:3 2834:1 2835:1 2840:3 2844:2 2845:1 2847:1 2862:3 2865:1 2891:1 2907:1 2913:1 2919:2 2927:9 2930:2 2932:1 2941:1 2945:2 2949:7 2953:1 2958:1 2959:2 2965:1 2968:2 2971:4 2978:1 2988:1 2989:1 2992:2 2997:1 3005:1 3021:1 3024:4 3025:1 3027:2 3032:1 3043:1 3057:1 3059:2 3062:1 3065:2 3066:1 3071:2 3075:2 3091:1 3093:2 3098:1 3115:1 3124:5 3138:1 3142:1 3153:11 3156:2 3161:1 3166:2 3179:1 3184:1 3190:1 3194:1 3208:2 3216:1 3228:1 3242:1 3263:3 3271:5 3273:1 3274:2 3275:1 3276:4 3290:1 3295:1 3299:1 3302:2 3308:1 3322:3 3325:2 3326:1 3329:3 3331:5 3332:1 3335:2 3337:2 3340:2 3341:2 3343:1 3344:4 3346:5 3350:1 3353:1 3354:5 3355:4 3358:5 3360:7 3362:1 3373:1 3388:1 3391:1 3412:1 3414:1 3417:1 3429:1 3439:2 3441:1 3445:1 3450:3 3451:3 3455:1 3464:1 3465:2 3470:1 3475:2 3477:1 3488:1 3493:1 3500:1 3509:2 3518:1 3521:2 3523:1 3524:1 3538:1 3539:1 3541:2 3548:1 3549:1 3552:1 3557:1 3576:1 3577:1 3599:1 3612:1 3613:1 3622:1 3631:1 3633:1 3644:3 3661:1 3672:1 3674:1 3677:1 3679:3 3684:2 3692:1 3697:1 3703:1 3711:1 3712:1 3717:1 3718:1 3722:1 3726:1 3732:1 3747:1 3749:3 3755:1 3759:1 3760:3 3767:2 3772:1 3775:7 3777:3 3781:1 3787:1 3788:1 3789:1 3790:1 3793:1 3800:3 3806:2 3808:2 3815:2 3819:1 3821:1 3825:1 3828:10 3856:4 3857:2 3858:1 3865:2 3887:1 3888:2 3893:2 3896:1 3899:2 3900:1 3901:2 3903:3 3904:1 3910:1 3916:3 3921:1 3924:2 3925:7 3927:1 3928:1 3939:2 3948:2 3957:9 3965:6 3966:1 3979:2 3981:1 3986:1 3988:2 3990:1 3997:3 3998:2 4009:4 4025:1 4026:3 4032:3 4036:1 4038:1 4041:1 4048:2 4060:1 4065:4 4071:1 4090:1 4097:1 4101:2 4103:1 4104:2 4106:2 4118:1 4121:4 4122:1 4129:1 4131:1 4133:7 4136:1 4143:2 4145:1 4147:1 4150:1 4158:1 4176:1 4182:1 4198:1 4199:1 4200:1 4216:1 4224:1 4227:1 4230:1 4237:1 4239:1 4242:3 4246:2 4247:1 4264:1 4265:5 4272:1 4277:1 4279:17 4292:1 4311:3 4312:1 4315:1 4316:1 4317:1 4318:1 4326:2 4333:3 4335:1 4338:1 4358:22 4361:3 4381:1 4382:1 4387:1 4398:2 4400:3 4412:1 4426:2 4427:1 4429:3 4438:1 4440:1 4442:1 4447:1 4452:2 4459:1 4461:1 4470:1 4482:1 4489:1 4492:1 4498:1 4505:1 4513:1 4524:1 4532:1 4534:5 4555:2 4565:3 4573:1 4582:1 4584:1 4586:1 4591:1 4600:2 4627:1 4641:1 4643:2 4657:1 4658:1 4661:1 4663:1 4667:1 4680:2 4698:1 4700:1 4717:2 4731:1 4737:3 4757:1 4770:2 4771:1 4786:1 4792:1 4794:2 4797:1 4803:1 4811:1 4841:1 4854:1 4855:1 4863:1 4866:1 4868:2 4869:1 4877:1 4880:1 4881:1 4884:1 4889:2 4895:1 4910:8 4912:1 4933:1 4936:3 4944:1 4958:1 4969:1 5004:1 5009:1 5018:3 5023:1 5028:1 5032:15 5051:1 5053:1 5058:1 5059:1 5068:1 5074:1 5082:1 5083:2 5087:1 5089:1 5096:1 5103:1 5107:1 5133:1 5149:1 5156:1 5182:2 5187:1 5197:1 5199:1 5205:1 5206:17 5218:1 5220:2 5222:2 5223:2 5226:1 5244:1 5249:1 5250:1 5251:1 5257:14 5274:4 5275:1 5277:2 5288:1 5290:6 5293:1 5307:1 5308:2 5310:1 5317:1 5321:3 5331:2 5338:3 5348:1 5369:1 5386:1 5395:1 5396:2 5418:1 5422:1 5429:2 5434:1 5438:2 5453:3 5456:6 5460:1 5461:1 5492:1 5495:1 5499:2 5506:2 5508:1 5528:2 5529:1 5530:2 5533:2 5534:1 5547:2 5555:3 5557:1 5572:2 5574:1 5577:3 5579:5 5583:2 5587:2 5591:1 5592:2 5593:2 5596:1 5606:4 5608:1 5618:1 5621:2 5624:2 5625:2 5647:1 5651:2 5656:3070 5670:1 5673:1 5678:1 5679:2 5682:4 5687:1 5694:1 5696:1 5700:1 5701:1 5703:1 5714:2 5716:1 5726:7 5728:5 5741:2 5761:1 5765:1 5772:1 5775:1 5779:1 5784:2 5787:1 5793:1 5804:1 5814:2 5816:1 5824:1 5829:2 5846:1 5855:1 5858:1 5862:2 5866:1 5870:1 5873:1 5878:1 5891:2 5894:2 5901:1 5904:1 5905:1 5915:2 5927:2 5939:4 5940:1 5941:1 5944:3 5945:1 5947:2 5949:1 5952:1 5955:2 5981:1 5983:1 5987:2 5992:6 5993:4 5997:1 6004:1 6015:1 6023:1 6025:1 6033:1 6046:1 6050:1 6054:1 6057:1 6066:1 6067:1 6078:1 6088:1 6095:1 6101:1 6106:7 6108:1 6109:1 6142:3 6156:1 6165:2 6171:1 6176:3 6179:2 6184:1 6185:1 6189:3 6192:1 6201:2 6202:1 6210:2 6228:1 6240:1 6242:1 6244:1 6247:2 6248:4 6262:1 6268:4 6295:2 6296:1 6302:1 6304:1 6308:3 6312:1 6320:2 6327:1 6335:2 6343:2 6350:1 6359:1 6366:1 6367:2 6373:2 6376:1 6378:3 6380:1 6381:1 6397:1 6398:1 6399:2 6403:1 6410:2 6414:1 6417:1 6435:1 6445:1 6449:3 6452:1 6460:1 6468:1 6479:2 6488:5 6507:1 6513:1 6518:1 6520:1 6521:2 6531:1 6540:1 6543:1 6550:2 6555:2 6558:2 6567:5 6570:1 6577:3 6578:1 6590:2 6593:1 6596:1 6597:1 6603:4 6606:2 6612:2 6614:3 6630:1 6631:5 6642:3 6655:1 6662:1 6669:1 6673:3 6674:2 6700:1 6702:3 6708:3 6709:3 6711:1 6713:1 6716:1 6728:3 6732:1 6733:2 6738:1 6746:9 6747:1 6756:1 6769:1 6776:2 6792:1 6793:1 6800:1 6804:1 6820:1 6822:1 6823:1 6832:2 6833:1 6842:1 6846:2 6870:5 6871:1 6892:16 6894:2 6899:1 6901:2 6905:1 6906:1 6914:1 6916:1 6927:1 6936:1 6948:1 6957:1 6961:1 6975:4 6976:1 6986:1 6989:2 6997:1 6998:2 7000:1 7012:4 7013:1 7023:1 7028:1 7038:2 7051:1 7066:1 7074:1 7075:4 7084:3 7090:1 7095:2 7098:1 7107:3 7112:1 7117:4 7119:7 7121:3 7124:1 7129:2 7131:2 7132:2 7136:1 7138:2 7140:6 7142:4 7146:2 7147:8 7154:2 7158:6 7159:1 7162:1 7171:4 7175:1 7177:1 7199:1 7201:2 7203:2 7206:2 7210:1 7211:1 7213:2 7215:1 7229:1 7248:2 7253:1 7264:1 7271:1 7272:1 7274:1 7283:1 7293:1 7300:3 7315:1 7340:1 7345:1 7360:1 7387:1 7388:3 7404:1 7405:2 7406:1 7408:1 7412:1 7419:1 7421:3 7426:1 7450:1 7458:1 7461:1 7462:1 7466:1 7470:1 7480:1 7488:2 7497:1 7504:2 7506:1 7516:1 7519:1 7520:2 7529:1 7530:2 7537:1 7545:1 7555:1 7557:1 7562:1 7563:1 7569:1 7572:2 7575:4 7580:2 7588:1 7589:4 7636:1 7665:1 7668:1 7682:3 7689:3 7691:1 7693:1 7697:2 7699:2 7700:2 7702:2 7712:1 7720:2 7722:3 7724:3 7732:3 7739:1 7740:3 7741:2 7744:1 7768:5 7778:1 7779:3 7792:1 7797:1 7812:1 7818:1 7821:2 7823:4 7835:6 7838:1 7853:1 7859:1 7860:2 7867:1 7872:2 7873:1 7878:1 7891:1 7898:2 7905:3 7930:1 7931:1 7938:2 7940:1 7944:3 7953:2 7964:1 7965:1 7969:1 7974:3 7975:22 7977:2 7985:1 7991:1 7994:5 8003:1 8006:1 8022:1 8033:2 8035:1 8040:1 8059:3 8070:1 8071:1 8075:1 8087:1 8093:1 8095:1 8104:1 8108:1 8120:1 8136:1 8140:1 8141:1 8145:1 8152:1 8154:1 8159:1 8179:1 8188:1 8195:2 8202:1 8206:1 8208:1 8213:2 8214:1 8221:1 8227:1 8235:1 8250:5 8251:1 8254:2 8257:1 8259:4 8261:4 8278:2 8280:1 8288:1 8299:2 8301:1 8312:3 8327:2 8330:1 8333:1 8334:1 8342:2 8345:6 8348:1 8359:2 8364:2 8377:1 8378:1 8383:1 8391:2 8428:8 8433:2 8439:1 8444:1 8450:1 8455:1 8462:1 8488:1 8489:1 8494:1 8497:1 8503:1 8512:1 8514:1 8518:1 8520:1 8521:1 8524:1 8532:3 8533:1 8534:1 8554:1 8570:1 8572:1 8575:1 8576:1 8590:4 8601:1 8608:2 8619:2 8621:4 8638:1 8646:2 8647:2 8651:4 8653:1 8663:1 8668:1 8673:1 8674:1 8675:1 8679:6 8682:1 8683:1 8687:1 8688:1 8693:2 8697:2 8700:2 8705:1 8707:1 8708:1 8709:1 8721:1 8752:1 8754:1 8755:1 8756:1 8762:2 8765:2 8766:2 8767:1 8772:1 8775:1 8776:2 8777:3 8783:13 8788:2 8792:3 8807:3 8814:1 8828:2 8834:1 8852:3 8862:5 8863:1 8867:2 8880:2 8885:1 8894:1 8899:1 8905:1 8909:2 8913:3 8923:2 8931:1 8939:1 8943:2 8952:1 8958:4 8967:2 8969:2 8970:1 8981:5 8985:1 8994:2 8997:6 8999:1 9001:1 9003:1 9008:2 9015:1 9027:3 9059:2 9068:1 9076:1 9084:2 9089:1 9095:1 9111:1 9113:1 9121:2 9128:1 9135:2 9139:2 9143:2 9148:2 9151:1 9152:2 9154:1 9155:1 9157:1 9160:2 9162:3 9163:1 9168:1 9169:1 9171:2 9173:1 9176:2 9179:2 9181:4 9184:3 9203:1 9207:2 9232:2 9245:1 9246:4 9258:1 9260:1 9262:4 9263:1 9281:2 9285:1 9293:1 9299:1 9300:1 9311:2 9319:1 9330:1 9333:1 9340:1 9345:1 9347:1 9370:1 9387:2 9396:1 9399:1 9402:2 9407:3 9416:1 9418:1 9419:1 9422:1 9424:1 9438:2 9440:1 9442:4 9445:2 9468:1 9480:1 9489:1 9547:1 9554:1 9568:2 9572:2 9580:2 9585:2 9587:1 9589:1 9598:2 9599:2 9604:1 9605:1 9606:1 9612:1 9615:1 9618:1 9630:1 9634:2 9655:3 9657:1 9661:1 9668:1 9679:1 9688:2 9694:1 9703:2 9714:1 9721:1 9726:1 9731:1 9735:1 9737:1 9751:1 9753:1 9768:2 9772:1 9773:1 9776:1 9778:2 9782:1 9784:1 9801:1 9806:2 9814:2 9823:2 9824:1 9826:1 9830:1 9831:2 9834:1 9835:1 9836:1 9844:1 9846:1 9849:2 9871:1 9873:14 9883:2 9885:2 9890:2 9912:2 9914:1 9915:1 9922:1 9932:1 9942:1 9945:1 9946:1 9948:1 9962:1 9963:1 9966:2 9968:2 9974:1 9983:1 9985:9 9987:1 9993:1 9996:2 10001:1 10007:3 10011:1 10020:1 10028:1 10037:1 10043:2 10060:1 10065:1 10066:1 10070:2 10078:1 10080:1 10084:1 10089:1 10102:2 10109:1 10116:1 10121:6 10125:3 10128:1 10129:3 10130:1 10144:2 10146:2 10152:1 10161:2 10165:1 10166:1 10168:1 10169:1 10175:1 10177:1 10193:1 10197:1 10206:1 10207:1 10208:1 10209:1 10214:1 10216:3 10217:4 10221:2 10222:1 10229:1 10261:2 10281:2 10285:1 10287:1 10288:1 10291:1 10304:2 10314:1 10330:7 10340:2 10364:1 10379:1 10384:4 10389:1 10390:5 10393:3 10394:3 10395:1 10396:1 10403:1 10407:2 10411:1 10412:1 10415:2 10416:3 10417:2 10433:1 10436:1 10438:6 10439:5 10440:1 10441:1 10445:1 10447:1 10455:5 10458:1 10460:1 10462:1 10463:1 10469:1 10470:1 10471:1 10485:1 10502:1 10512:1 10514:1 10520:1 10524:2 10532:2 10533:2 10535:1 10541:1 10573:1 10574:1 10583:4 10595:5 10612:1 10617:1 10630:1 10650:2 10656:2 10658:3 10662:1 10664:1 10670:1 10674:1 10676:1 10677:1 10683:1 10684:1 10689:1 10694:1 10696:1 10699:1 10706:1 10716:1 10721:1 10727:1 10742:1 10743:1 10755:1 10775:1 10777:1 10783:1 10785:1 10790:3 10792:2 10801:2 10803:1 10808:1 10812:1 10817:1 10839:2 10843:1 10845:1 10848:1 10852:5 10854:1 10861:2 10865:1 10879:1 10881:4 10885:3 10896:1 10907:1 10918:1 10920:1 10924:1 10932:2 10935:1 10940:1 10941:1 10943:4 10953:2 10962:1 10966:1 10969:2 10970:6 10973:2 10975:10 10978:1 10980:4 10984:2 10987:1 10988:1 10989:1 10990:1 10993:1 10999:3 11000:1 11003:1 11004:1 11021:1 11022:1 11043:6 11045:2 11051:2 11057:9 11059:1 11076:1 11101:1 11104:1 11108:3 11127:1 11138:6 11140:1 11143:1 11150:1 11153:1 11158:1 11160:2 11162:1 11163:2 11166:1 11176:1 11180:1 11183:1 11185:1 11187:1 11194:1 11209:1 11210:3 11215:1 11216:1 11223:1 11225:2 11228:1 11234:1 11237:1 11248:1 11249:2 11253:4 11257:1 11266:1 11272:1 11274:1 11288:1 11300:1 11316:4 11323:2 11329:4 11331:9 11332:7 11334:2 11349:2 11352:3 11354:1 11358:4 11364:4 11368:4 11369:1 11371:3 11373:1 11374:1 11384:1 11390:1 11393:1 11404:1 11415:4 11416:3 11417:1 11419:1 11424:5 11436:50 11438:2 11442:1 11448:1 11453:1 11455:3 11457:1 11463:3 11470:11 11472:9 11473:1 11481:2 11484:1 11486:1 11506:1 11516:1 11517:1 11519:1 11522:1 11525:1 11527:1 11534:1 11549:1 11552:2 11565:1 11574:3 11575:2 11578:1 11590:1 11594:2 11605:2 11618:3 11635:1 11639:1 11643:1 11645:1 11653:1 11655:1 11656:1 11660:1 11665:1 11687:1 11691:2 11694:2 11708:1 11712:3 11713:10 11724:2 11743:2 11755:3 11760:4 11766:1 11775:1 11776:2 11781:3 11783:1 11784:3 11787:1 11794:2 11796:1 11810:1 11838:1 11844:1 11845:1 11846:1 11847:1 11862:1 11863:1 11867:2 11869:2 11878:3 11896:1 11898:1 11900:1 11940:1 11941:1 11947:1 11948:1 11949:2 11963:1 11983:1 11986:1 11989:2 11994:2 11996:1 11998:1 12004:1 12012:1 12015:1 12016:1 12019:1 12021:2 12028:1 12030:1 12033:1 12043:2 12045:2 12051:1 12055:1 12061:1 12070:1 12076:1 12077:3 12089:1 12100:1 12107:1 12118:1 12119:2 12127:3 12144:27 12156:1 12176:3 12183:3 12190:1 12194:1 12195:1 12234:1 12242:1 12254:3 12267:6 12269:1 12272:1 12281:1 12286:1 12313:3 12314:3 12322:7 12345:1 12348:1 12360:1 12365:5 12366:3 12370:2 12371:2 12374:1 12380:1 12381:1 12384:2 12389:2 12390:3 12402:1 12408:1 12419:4 12424:2 12426:4 12442:3 12450:1 12459:1 12474:2 12479:1 12486:1 12488:1 12493:1 12494:1 12500:1 12501:1 12516:1 12520:1 12536:1 12544:1 12545:2 12549:1 12552:1 12555:1 12556:1 12557:1 12568:2 12575:1 12580:2 12582:2 12583:1 12588:1 12596:4 12601:1 12630:1 12637:1 12641:3 12664:2 12670:1 12676:1 12685:2 12694:1 12695:1 12703:1 12711:1 12718:1 12725:1 12727:2 12731:4 12734:3 12736:1 12738:1 12745:1 12750:1 12757:1 12758:1 12770:1 12772:1 12775:1 12784:3 12789:2 12801:3 12804:2 12805:1 12809:2 12811:7 12814:1 12824:2 12829:1 12830:3 12840:1 12842:1 12847:1 12861:2 12866:1 12871:1 12872:1 12883:1 12892:2 12899:1 12902:2 12911:1 12919:1 12921:1 12925:1 12926:4 12928:1 12929:1 12931:1 12934:1 12938:1 12944:1 12946:1 12947:4 12948:1 12949:1 12951:1 12956:1 12962:2 12976:1 12982:1 12992:1 13000:2 13005:1 13016:3 13019:1 13048:1 13050:2 13064:1 13068:1 13082:1 13091:1 13106:3 13115:1 13121:2 13136:1 13139:1 13160:3 13178:2 13179:1 13191:1 13206:1 13208:1 13209:2 13213:3 13216:1 13237:1 13242:3 13245:1 13256:2 13260:1 13276:1 13278:1 13280:2 13302:1 13303:1 13304:1 13307:1 13311:1 13313:2 13316:1 13318:2 13325:1 13326:8 13333:1 13334:1 13337:2 13347:1 13358:1 13371:1 13374:2 13378:1 13391:7 13393:1 13405:1 13408:1 13413:1 13421:1 13425:1 13433:2 13437:1 13441:11 13443:6 13445:2 13456:1 13471:3 13474:2 13481:1 13502:1 13521:1 13524:3 13531:1 13536:1 13545:1 13549:1 13554:3 13559:1 13572:1 13581:1 13583:2 13590:1 13596:1 13600:2 13602:2 13604:3 13605:2 13616:2 13625:1 13640:1 13659:2 13663:1 13670:1 13680:1 13692:2 13693:2 13696:1 13708:4 13711:1 13714:5 13720:2 13721:1 13728:1 13735:1 13740:1 13741:4 13745:2 13750:1 13751:1 13752:1 13766:4 13803:1 13806:1 13807:8 13819:1 13821:1 13836:1 13838:1 13843:3 13849:1 13860:1 13867:1 13873:1 13875:1 13882:1 13887:5 13896:3 13904:1 13905:1 13906:1 13912:1 13915:3 13922:1 13924:1 13937:1 13939:1 13942:1 13947:1 13952:1 13967:4 13987:1 13990:1 14004:1 14007:1 14016:1 14024:4 14028:2 14032:8 14036:1 14037:2 14043:3 14081:3 14089:1 14094:1 14096:1 14109:3 14120:1 14130:1 14140:1 14144:1 14147:1 14151:1 14174:1 14175:2 14179:1 14181:1 14184:1 14186:1 14189:1 14193:1 14195:2 14198:3 14199:3 14201:4 14203:1 14204:3 14206:2 14208:1 14209:2 14212:1 14217:2 14219:1 14220:1 14221:1 14229:1 14242:1 14243:1 14252:1 14254:2 14258:2 14262:6 14280:1 14282:2 14285:1 14295:1 14304:2 14307:1 14314:1 14315:1 14319:1 14321:1 14326:1 14328:1 14363:12 14368:2 14369:6 14400:1 14401:1 14404:2 14406:1 14410:1 14412:1 14414:1 14415:1 14432:1 14433:2 14436:1 14437:1 14443:2 14447:1 14449:3 14458:3 14459:1 14470:2 14482:1 14485:1 14490:1 14498:1 14499:1 14513:1 14515:1 14559:1 14564:1 14565:2 14580:1 14581:1 14586:1 14617:1 14623:1 14625:1 14629:1 14631:1 14633:1 14637:1 14642:5 14662:1 14668:4 14678:4 14679:1 14683:2 14697:3 14700:1 14707:1 14709:1 14717:1 14720:1 14725:3 14729:2 14738:1 14750:2 14756:3 14758:1 14759:1 14763:1 14769:3 14771:2 14776:1 14802:2 14821:1 14825:1 14832:2 14834:1 14843:1 14844:2 14845:2 14846:1 14850:1 14852:1 14855:1 14857:1 14871:1 14876:1 14877:1 14879:1 14884:1 14889:1 14895:4 14896:5 14900:1 14931:2 14936:1 14945:2 14951:1 14954:1 14959:13 14964:2 14977:2 14979:2 14985:2 14988:1 14997:1 15003:3 15004:1 15032:2 15033:2 15037:1 15048:1 15052:1 15054:1 15055:1 15073:1 15096:1 15099:18 15100:2 15108:1 15133:1 15136:2 15138:1 15152:1 15155:1 15165:1 15166:1 15170:1 15184:1 15189:1 15198:1 15201:1 15202:1 15203:1 15205:1 15208:1 15210:4 15222:1 15224:1 15226:1 15229:2 15250:1 15256:2 15260:1 15265:1 15281:2 15285:1 15287:1 15291:1 15298:1 15299:1 15300:1 15301:4 15303:1 15306:1 15307:1 15309:1 15315:1 15320:3 15331:1 15332:1 15339:1 15340:2 15341:1 15346:1 15348:1 15359:4 15360:1 15369:1 15384:1 15385:1 15391:1 15416:1 15427:1 15434:1 15435:1 15436:1 15437:1 15441:1 15447:1 15448:2 15449:1 15452:1 15456:2 15458:1 15479:2 15486:1 15488:1 15490:1 15492:1 15504:1 15511:1 15514:1 15519:3 15524:1 15529:1 15539:2 15542:1 15544:1 15548:12 15550:1 15551:1 15552:7 15554:4 15569:2 15573:3 15577:1 15578:1 15584:1 15589:2 15591:1 15595:1 15597:2 15607:1 15618:2 15621:1 15633:7 15634:2 15644:1 15654:3 15659:2 15663:1 15664:1 15670:1 15674:4 15699:1 15703:1 15712:7 15715:1 15722:1 15723:1 15727:1 15732:3 15742:1 15745:2 15751:1 15753:2 15754:7 15756:1 15774:2 15787:1 15795:3 15796:1 15799:1 15806:1 15814:3 15821:1 15835:1 15860:1 15875:2 15879:2 15881:1 15894:1 15896:2 15913:1 15918:1 15924:1 15931:1 15936:1 15958:1 15966:2 15975:1 15976:1 15978:1 15992:1 16018:1 16020:2 16027:1 16030:1 16031:1 16040:1 16045:1 16050:1 16051:2 16054:3 16058:1 16059:2 16063:1 16067:1 16071:2 16074:1 16075:5 16078:1 16080:6 16083:1 16088:1 16090:1 16093:3 16099:1 16100:2 16101:3 16105:5 16106:1 16110:1 16114:4 16117:1 16119:1 16127:3 16128:1 16130:1 16131:3 16134:1 16137:1 16140:1 16142:2 16163:3 16172:1 16174:1 16176:1 16177:2 16206:1 16207:1 16211:4 16214:1 16225:7 16240:1 16246:1 16249:1 16260:1 16262:1 16269:1 16273:8 16278:1 16285:1 16297:2 16305:1 16312:2 16331:1 16335:1 16339:1 16341:1 16357:1 16364:1 16374:4 16376:1 16377:1 16391:1 16393:1 16395:1 16399:1 16411:1 16413:1 16414:1 16415:1 16418:1 16427:1 16430:1 16431:1 16440:1 16443:1 16446:3 16473:1 16498:1 16502:1 16508:1 16519:1 16523:1 16527:1 16531:2 16535:2 16538:1 16551:1 16552:3 16553:2 16560:1 16562:1 16575:2 16580:2 16581:1 16584:1 16585:2 16586:1 16593:1 16596:3 16600:1 16601:1 16602:2 16610:1 16618:1 16621:1 16628:3 16631:2 16650:1 16651:1 16658:1 16667:3 16676:21 16678:1 16679:1 16708:1 16712:1 16725:1 16727:1 16731:5 16745:1 16749:2 16750:2 16753:1 16758:2 16765:1 16771:1 16780:1 16800:1 16801:1 16805:1 16810:2 16816:2 16823:1 16826:1 16828:3 16843:1 16844:3 16850:1 16851:1 16852:1 16854:1 16867:3 16869:1 16874:2 16882:1 16890:1 16893:3 16898:1 16921:1 16936:5 16949:1 16951:1 16955:1 16964:1 16981:1 16987:1 16997:1 16999:2 17005:1 17008:1 17028:1 17029:1 17033:1 17045:1 17046:1 17052:3 17053:1 17055:1 17056:1 17062:16 17063:2 17068:1 17071:5 17076:1 17078:2 17079:1 17083:2 17084:1 17089:1 17092:1 17099:2 17111:1 17126:1 17131:1 17132:1 17133:1 17137:1 17144:2 17151:5 17156:5 17168:4 17182:1 17183:2 17189:1 17201:1 17202:1 17209:2 17230:1 17231:1 17235:2 17237:2 17242:1 17251:1 17259:4 17263:3 17266:2 17268:3 17273:1 17279:3 17287:4 17295:2 17301:1 17314:1 17319:1 17332:1 17333:1 17339:1 17345:1 17351:1 17379:1 17390:1 17394:1 17396:1 17397:1 17403:6 17406:1 17414:1 17417:1 17418:1 17429:2 17431:2 17432:1 17438:1 17453:1 17461:1 17463:1 17468:2 17484:1 17495:2 17501:2 17504:2 17518:2 17533:2 17536:1 17543:1 17547:2 17549:2 17553:1 17554:1 17555:2 17565:1 17566:2 17572:2 17591:6 17594:1 17604:1 17608:1 17609:1 17612:1 17616:2 17627:1 17632:1 17634:2 17640:1 17643:1 17652:1 17656:2 17660:1 17670:2 17672:1 17675:2 17676:2 17695:1 17696:2 17753:1 17759:1 17767:1 17769:1 17774:5 17776:4 17798:2 17799:1 17801:1 17809:3 17810:2 17818:1 17823:1 17826:1 17855:1 17881:1 17893:1 17894:1 17897:6 17922:1 17925:1 17929:2 17930:1 17935:1 17936:1 17955:1 17971:1 17986:1 17989:1 17996:1 18002:1 18003:1 18012:1 18022:1 18023:1 18027:1 18032:3 18038:1 18045:1 18053:1 18070:2 18074:2 18077:2 18080:1 18083:2 18099:3 18104:1 18126:1 18129:1 18141:1 18143:1 18150:1 18153:2 18175:1 18179:2 18180:3 18191:1 18198:1 18200:1 18211:1 18227:2 18230:1 18245:2 18258:2 18263:1 18264:5 18269:1 18272:1 18274:2 18290:1 18292:2 18297:1 18302:1 18303:1 18304:1 18310:2 18312:1 18319:1 18333:1 18339:1 18347:1 18357:3 18358:1 18360:2 18362:1 18380:3 18383:2 18386:1 18390:1 18393:1 18395:1 18398:2 18399:2 18415:1 18432:1 18434:1 18438:1 18441:1 18451:1 18453:1 18455:1 18459:2 18465:1 18499:1 18523:6 18525:1 18531:3 18534:1 18535:2 18542:1 18545:1 18546:3 18556:1 18564:1 18566:1 18575:1 18586:1 18603:1 18606:15 18613:6 18616:2 18627:2 18629:1 18634:2 18638:2 18640:1 18644:2 18652:1 18656:1 18665:2 18666:1 18677:1 18685:1 18687:2 18689:3 18692:1 18693:1 18697:1 18703:1 18707:1 18709:4 18710:1 18711:4 18713:1 18714:1 18717:3 18719:1 18725:2 18729:1 18735:1 18742:3 18751:1 18752:2 18760:1 18763:1 18765:1 18769:2 18770:1 18780:1 18791:2 18796:1 18807:1 18810:1 18815:1 18835:1 18851:5 18865:1 18872:1 18881:2 18893:1 18897:1 18898:1 18904:2 18909:2 18918:1 18927:1 18939:1 18947:1 18948:1 18973:1 19008:1 19013:1 19014:2 19015:1 19023:1 19025:2 19026:1 19037:1 19048:1 19051:1 19053:1 19055:1 19062:1 19064:2 19085:1 19093:2 19108:1 19114:1 19115:1 19117:5 19119:1 19121:3 19126:5 19145:1 19152:2 19155:1 19168:1 19186:1 19215:7 19228:1 19235:1 19270:1 19278:2 19280:1 19292:1 19296:2 19311:1 19314:1 19315:4 19322:1 19324:4 19335:1 19339:2 19342:1 19344:2 19353:3 19364:1 19365:1 19367:2 19386:8 19388:2 19391:1 19407:1 19413:1 19418:2 19444:1 19450:4 19452:1 19454:1 19471:1 19484:1 19491:1 19495:1 19496:1 19498:2 19503:2 19506:1 19508:1 19509:1 19512:2 19519:2 19524:9 19525:1 19535:2 19536:3 19537:1 19538:3 19545:1 19549:1 19551:3 19555:1 19556:1 19558:2 19568:1 19578:1 19582:1 19586:2 19595:1 19597:1 19598:1 19600:5 19602:2 19615:1 19616:1 19620:1 19621:1 19630:1 19633:1 19638:3 19645:2 19649:2 19652:1 19655:20 19659:1 19664:5 19667:1 19680:3 19692:1 19696:3 19700:1 19715:3 19718:2 19720:2 19721:1 19724:3 19727:3 19733:1 19747:1 19757:2 19758:1 19777:2 19785:1 19786:1 19792:3 19816:3 19829:1 19833:1 19851:1 19857:6 19863:1 19865:1 19891:1 19896:1 19903:2 19908:3 19910:1 19913:1 19918:5 19929:7 19936:5 19965:1 19974:1 19975:5 19977:1 19984:1 19991:3 19992:1 19995:1 19998:1 19999:2 20011:1 20015:1 20020:1 20022:1 20030:1 20034:6 20035:1 20037:1 20038:2 20039:1 20040:2 20041:1 20044:1 20047:1 20049:8 20050:3 20052:1 20069:1 20072:1 20075:1 20076:1 20078:1 20080:1 20081:1 20089:1 20101:1 20102:7 20109:1 20117:2 20123:1 20132:1 20160:1 20170:1 20171:1 20185:1 20188:1 20209:1 20210:2 20216:2 20223:1 20227:1 20243:1 20251:1 20256:1 20258:1 20262:1 20264:1 20266:1 20267:2 20276:2 20277:1 20284:1 20298:7 20305:3 20363:1 20366:1 20368:1 20378:1 20379:1 20380:1 20381:1 20382:1 20383:1 20387:2 20390:7 20393:2 20396:1 20402:1 20409:2 20413:1 20430:2 20440:2 20451:1 20452:1 20453:1 20464:1 20466:1 20469:1 20482:8 20494:6 20502:1 20519:3 20529:1 20552:1 20580:1 20588:1 20589:2 20598:2 20603:1 20607:1 20614:1 20618:1 20621:1 20628:1 20633:1 20636:1 20669:1 20670:2 20696:1 20697:1 20702:1 20706:1 20713:1 20718:1 20724:1 20734:1 20735:1 20746:1 20758:1 20792:1 20795:1 20817:1 20822:2 20828:2 20844:1 20845:2 20846:1 20848:3 20851:5 20855:2 20874:1 20875:1 20878:2 20880:1 20892:1 20903:1 20912:1 20933:1 20940:1 20955:1 20956:1 20966:1 20980:1 21002:1 21034:3 21072:1 21080:3 21083:4 21096:1 21099:2 21107:2 21110:2 21111:2 21113:1 21115:1 21118:2 21121:1 21142:1 21145:1 21151:1 21153:1 21163:1 21168:1 21180:1 21186:1 21188:2 21190:1 21202:1 21207:1 21213:4 21216:1 21223:2 21227:1 21228:1 21238:1 21244:2 21262:1 21265:1 21271:4 21274:1 21276:2 21284:1 21298:2 21304:1 21308:1 21315:1 21318:1 21333:1 21339:1 21341:1 21349:2 21353:1 21361:1 21362:1 21374:3 21378:1 21379:2 21386:1 21402:1 21404:1 21443:1 21446:1 21451:3 21459:1 21463:1 21464:1 21470:2 21494:1 21509:2 21510:3 21512:1 21538:2 21539:1 21540:1 21547:1 21551:2 21568:1 21579:1 21581:1 21586:2 21589:2 21610:1 21613:1 21619:1 21623:1 21626:3 21635:3 21637:4 21639:1 21640:3 21646:1 21667:1 21674:2 21677:1 21690:1 21703:1 21707:5 21713:1 21715:1 21718:1 21777:1 21820:2
1 5:2 10:1 14:1 17:1 23:2 35:1 44:2 53:1 66:1 69:1 77:1 83:1 91:1 99:1 101:1 102:1 103:3 107:1 123:1 124:1 128:2 130:1 131:1 132:1 133:1 134:1 140:1 163:2 181:1 217:1 233:1 251:1 255:1 260:4 261:1 266:1 270:2 275:1 280:1 296:2 308:1 309:1 319:2 320:1 324:3 337:1 343:6 346:1 369:1 370:1 382:1 401:2 411:1 417:1 419:1 432:1 439:7 454:1 461:3 466:1 467:1 468:2 476:1 490:1 501:2 510:2 523:3 527:1 547:1 563:5 564:3 571:1 573:3 575:1 578:1 582:3 583:1 593:1 600:1 602:2 605:2 626:3 628:3 635:1 644:2 660:1 663:6 664:1 667:6 677:1 685:2 698:2 706:1 717:2 742:1 744:1 747:1 749:2 753:1 761:1 762:6 770:1 778:4 790:1 796:1 797:2 806:5 827:3 835:1 849:1 854:2 858:1 861:1 869:1 879:1 883:1 889:2 893:1 894:1 901:2 904:1 908:3 918:1 943:1 954:1 956:4 959:2 964:1 989:3 1003:1 1004:2 1005:1 1018:2 1030:1 1034:1 1037:4 1040:2 1045:1 1051:1 1056:1 1071:2 1073:4 1074:1 1079:1 1081:1 1099:2 1111:1 1124:1 1142:1 1152:2 1159:1 1160:2 1187:1 1200:1 1205:2 1209:1 1216:1 1229:3 1230:1 1233:1 1237:3 1248:2 1258:1 1261:2 1270:2 1273:1 1278:1 1281:1 1282:3 1308:1 1320:7 1322:3 1328:1 1331:1 1343:1 1349:1 1351:1 1356:2 1358:4 1367:2 1375:1 1389:1 1392:1 1402:16 1407:4 1418:1 1419:5 1421:1 1428:1 1430:1 1435:1 1441:4 1450:1 1453:1 1456:1 1457:20 1459:1 1463:1 1474:1 1475:4 1476:2 1478:11 1479:1 1481:1 1482:1 1484:1 1486:3 1488:4 1489:3 1492:1 1507:2 1530:5 1531:4 1536:3 1543:1 1549:1 1550:1 1598:1 1600:2 1622:1 1624:2 1642:1 1644:1 1651:2 1653:1 1659:4 1683:2 1689:1 1698:1 1712:2 1715:1 1724:1 1740:1 1743:1 1757:1 1771:1 1774:3 1779:1 1781:1 1784:1 1785:1 1789:1 1790:2 1797:2 1800:1 1809:1 1828:1 1834:3 1866:1 1875:1 1877:3 1879:3 1884:6 1885:2 1886:2 1887:1 1888:6 1889:2 1890:1 1892:2 1893:2 1894:1 1895:1 1898:2 1899:5 1903:1 1904:1 1908:1 1911:1 1912:2 1913:2 1920:2 1921:1 1927:1 1940:1 1947:1 1950:1 1951:1 1953:2 1962:1 1967:2 1973:2 1975:1 1985:1 1999:2 2007:2 2009:1 2024:1 2025:1 2029:1 2036:1 2051:1 2055:1 2057:1 2077:1 2079:1 2088:1 2090:1 2102:1 2105:1 2107:1 2112:2 2113:1 2114:1 2116:1 2122:1 2128:1 2142:1 2161:2 2167:1 2170:1 2171:1 2172:1 2179:1 2180:2 2181:2 2199:1 2208:1 2209:2 2215:2 2231:1 2233:1 2235:2 2239:1 2240:3 2267:1 2271:1 2274:1 2276:1 2281:1 2288:1 2290:1 2291:2 2293:1 2298:1 2306:1 2312:1 2314:1 2333:1 2337:1 2340:1 2345:4 2350:1 2356:8 2359:2 2370:1 2375:1 2376:1 2400:1 2412:2 2425:1 2427:1 2429:1 2434:1 2436:4 2441:3 2456:1 2458:1 2460:2 2465:1 2469:1 2472:2 2485:3 2486:2 2489:1 2498:1 2499:1 2503:1 2506:5 2507:1 2510:1 2511:2 2515:1 2520:2 2522:2 2527:3 2532:1 2545:1 2552:2 2553:1 2555:1 2562:1 2563:4 2567:2 2572:2 2574:1 2575:1 2580:1 2583:1 2584:1 2595:4 2603:1 2604:2 2613:4 2617:1 2619:2 2621:1 2623:1 2626:1 2635:1 2649:2 2654:1 2656:5 2664:1 2669:1 2684:1 2691:1 2695:3 2701:2 2704:14 2706:1 2715:2 2718:6 2733:1 2739:1 2749:2 2750:5 2752:3 2753:4 2755:2 2768:1 2775:1 2786:1 2791:1 2795:2 2798:4 2800:1 2801:1 2804:1 2821:2 2823:1 2828:1 2829:3 2834:1 2835:1 2840:3 2844:2 2845:1 2847:1 2862:3 2865:1 2885:1 2891:1 2907:1 2909:1 2913:1 2919:2 2927:9 2930:2 2932:1 2941:1 2945:2 2949:7 2953:1 2958:1 2959:2 2965:1 2968:2 2971:4 2978:1 2988:1 2989:1 2992:2 2997:1 3005:1 3021:1 3024:4 3025:1 3027:2 3032:1 3043:1 3045:1 3057:1 3059:2 3062:1 3065:2 3066:1 3071:2 3075:2 3091:1 3093:2 3098:1 3115:1 3124:5 3138:1 3142:1 3153:11 3156:2 3161:1 3166:2 3179:1 3184:1 3190:1 3194:1 3208:2 3216:1 3228:1 3242:1 3263:3 3271:5 3273:1 3274:2 3275:1 3276:4 3290:1 3295:1 3299:1 3302:2 3308:1 3322:3 3325:2 3326:1 3329:3 3331:5 3332:2 3335:2 3337:2 3340:2 3341:2 3343:1 3344:4 3346:5 3350:1 3352:1 3353:1 3354:5 3355:4 3358:5 3360:7 3362:1 3373:1 3388:1 3391:1 3412:1 3414:1 3417:1 3429:1 3439:2 3441:1 3445:1 3450:3 3451:3 3455:1 3464:1 3465:2 3470:1 3475:2 3477:1 3488:1 3493:1 3500:1 3509:2 3518:1 3521:2 3523:1 3524:1 3538:1 3539:1 3541:2 3545:1 3548:1 3549:1 3552:1 3557:1 3576:1 3577:1 3599:1 3612:1 3613:1 3622:1 3631:1 3633:1 3644:3 3658:1 3661:1 3668:1 3672:1 3674:1 3677:1 3679:3 3684:2 3692:1 3697:1 3703:1 3711:1 3712:1 3717:1 3718:1 3722:1 3726:1 3732:1 3747:1 3749:3 3755:1 3759:1 3760:3 3767:2 3772:1 3775:7 3777:3 3781:1 3787:1 3788:1 3789:1 3790:1 3793:1 3800:3 3806:2 3808:2 3815:2 3819:1 3821:1 3825:1 3828:10 3856:4 3857:2 3858:1 3865:2 3887:1 3888:2 3893:2 3896:1 3899:2 3900:1 3901:2 3903:3 3904:1 3910:1 3916:3 3921:1 3924:2 3925:7 3927:1 3928:1 3939:2 3948:2 3957:10 3965:6 3966:1 3979:2 3981:1 3986:1 3988:2 3990:1 3997:3 3998:2 4009:4 4022:1 4025:1 4026:3 4032:4 4036:1 4038:1 4041:1 4048:2 4060:1 4065:4 4071:1 4090:1 4097:1 4101:2 4103:1 4104:2 4106:2 4118:1 4121:4 4122:1 4129:1 4131:1 4133:7 4136:1 4143:2 4145:1 4147:1 4150:1 4158:1 4176:1 4182:1 4198:1 4199:1 4200:1 4216:1 4224:1 4227:1 4230:1 4237:1 4239:1 4242:3 4246:2 4247:1 4264:1 4265:5 4272:1 4277:1 4279:17 4292:1 4311:3 4312:1 4315:1 4316:1 4317:1 4318:1 4326:2 4333:3 4335:1 4338:1 4358:23 4361:3 4381:1 4382:1 4383:1 4387:1 4398:2 4400:3 4412:1 4426:2 4427:1 4429:3 4438:1 4440:1 4442:1 4447:1 4452:2 4459:1 4461:1 4470:1 4482:1 4489:1 4492:1 4498:1 4505:1 4513:1 4524:1 4532:1 4534:5 4555:2 4565:3 4573:2 4582:1 4584:1 4586:1 4591:1 4600:2 4627:1 4641:1 4643:2 4657:1 4658:1 4661:1 4663:1 4665:1 4667:1 4680:2 4698:1 4700:1 4717:2 4731:1 4737:3 4757:1 4770:2 4771:1 4786:1 4792:1 4794:2 4797:1 4803:1 4811:1 4841:1 4854:1 4855:1 4863:1 4866:1 4868:3 4869:1 4877:1 4880:1 4881:1 4884:1 4889:2 4895:1 4910:8 4912:1 4933:1 4936:3 4944:1 4958:1 4969:1 5004:1 5009:1 5018:3 5023:1 5028:1 5032:15 5051:1 5053:1 5058:1 5059:1 5068:1 5074:1 5082:1 5083:2 5087:1 5089:1 5096:1 5103:1 5107:1 5133:1 5149:1 5156:1 5182:2 5187:1 5197:1 5199:1 5205:1 5206:17 5218:1 5220:2 5222:2 5223:2 5226:2 5244:1 5249:1 5250:1 5251:1 5257:14 5274:4 5275:1 5277:2 5288:1 5290:7 5293:1 5307:1 5308:2 5310:1 5317:1 5321:3 5331:2 5338:3 5348:1 5369:1 5386:1 5395:1 5396:2 5418:1 5422:1 5429:2 5434:1 5438:2 5453:3 5456:6 5460:1 5461:1 5492:1 5495:1 5499:2 5506:2 5508:1 5528:2 5529:1 5530:2 5533:2 5534:1 5547:2 5555:3 5557:1 5572:2 5574:1 5577:3 5579:5 5583:2 5587:2 5591:1 5592:2 5593:2 5596:1 5606:5 5608:1 5618:1 5621:2 5624:2 5625:2 5647:1 5651:2 5656:3134 5670:1 5673:1 5678:1 5679:2 5682:4 5687:1 5694:1 5696:1 5700:1 5701:1 5703:1 5714:2 5716:1 5726:7 5728:5 5741:2 5761:1 5765:1 5772:1 5775:1 5779:1 5784:2 5787:1 5793:1 5804:1 5814:2 5816:1 5824:1 5829:2 5846:1 5855:1 5858:1 5862:2 5866:1 5870:1 5873:1 5878:1 5891:2 5894:2 5901:1 5904:1 5905:1 5915:2 5927:2 5939:4 5940:1 5941:1 5944:3 5945:1 5947:3 5949:1 5952:1 5955:2 5981:1 5983:1 5987:2 5992:6 5993:4 5997:1 6004:1 6015:1 6023:1 6025:1 6033:1 6046:1 6050:1 6054:1 6057:1 6066:1 6067:1 6078:1 6088:1 6095:1 6101:1 6106:7 6108:1 6109:1 6142:3 6156:1 6165:2 6171:1 6176:3 6179:2 6184:1 6185:1 6189:3 6192:1 6201:2 6202:1 6210:2 6228:1 6240:1 6242:1 6244:1 6247:2 6248:4 6262:1 6268:4 6295:2 6296:1 6302:1 6304:1 6308:3 6312:1 6320:2 6327:1 6335:2 6343:2 6350:1 6359:1 6366:1 6367:2 6373:2 6376:1 6378:3 6380:1 6381:1 6397:1 6398:1 6399:2 6403:1 6410:2 6414:1 6417:1 6435:1 6445:1 6449:3 6452:1 6460:1 6468:1 6479:2 6488:5 6507:1 6513:1 6518:1 6520:1 6521:2 6531:1 6540:1 6543:1 6550:2 6555:2 6558:2 6567:5 6570:1 6577:3 6578:1 6590:2 6593:1 6596:1 6597:1 6603:4 6606:2 6612:2 6614:3 6630:1 6631:5 6642:4 6655:1 6662:1 6669:1 6673:3 6674:2 6700:1 6702:3 6708:4 6709:3 6711:1 6713:1 6716:1 6723:1 6728:3 6732:1 6733:2 6738:2 6746:9 6747:1 6756:1 6769:1 6776:2 6792:1 6793:1 6800:1 6804:1 6820:1 6822:1 6823:1 6832:2 6833:1 6842:1 6846:2 6870:5 6871:1 6892:17 6894:2 6899:1 6901:2 6905:1 6906:1 6914:1 6916:1 6927:1 6936:1 6948:1 6957:1 6961:1 6975:4 6976:1 6986:1 6989:2 6997:1 6998:2 7000:1 7012:4 7013:1 7023:1 7028:1 7038:2 7051:1 7066:1 7074:1 7075:4 7084:4 7090:1 7095:2 7098:1 7107:3 7112:1 7117:4 7119:7 7121:3 7124:1 7129:2 7131:2 7132:2 7136:1 7138:2 7140:6 7142:4 7146:2 7147:8 7154:2 7158:6 7159:1 7162:1 7171:5 7175:2 7177:1 7199:1 7201:2 7203:2 7206:2 7210:1 7211:1 7213:2 7215:1 7229:1 7248:2 7253:1 7264:1 7271:1 7272:1 7274:1 7283:1 7293:1 7300:3 7315:1 7340:1 7345:1 7360:1 7387:1 7388:3 7404:1 7405:2 7406:1 7408:1 7412:1 7419:1 7421:3 7426:1 7450:1 7458:1 7461:1 7462:1 7466:1 7470:1 7480:1 7488:2 7497:1 7504:2 7506:1 7516:1 7519:1 7520:2 7529:1 7530:2 7537:1 7545:1 7555:1 7557:1 7562:1 7563:1 7569:1 7572:2 7575:4 7580:2 7588:1 7589:4 7636:1 7665:1 7668:1 7682:3 7689:3 7691:1 7693:1 7697:2 7699:2 7700:2 7702:2 7712:1 7720:2 7722:3 7724:3 7732:3 7739:1 7740:3 7741:2 7744:1 7768:5 7778:1 7779:3 7792:1 7797:1 7812:1 7818:1 7821:2 7823:4 7835:6 7838:1 7853:1 7859:1 7860:2 7867:1 7872:2 7873:1 7878:1 7891:1 7898:2 7905:3 7930:1 7931:1 7938:2 7940:1 7944:3 7953:2 7964:1 7965:1 7969:1 7974:3 7975:23 7977:2 7985:1 7991:1 7994:5 8003:1 8006:1 8022:1 8030:1 8033:2 8035:1 8040:1 8059:3 8070:1 8071:1 8075:1 8087:1 8093:1 8095:1 8104:1 8108:1 8120:1 8136:1 8140:1 8141:1 8145:1 8152:2 8154:1 8159:1 8179:1 8188:1 8195:2 8202:1 8206:1 8208:1 8213:2 8214:1 8221:1 8227:1 8235:1 8238:1 8250:5 8251:1 8254:2 8257:1 8259:4 8261:4 8278:2 8280:1 8288:1 8299:2 8301:1 8312:3 8327:2 8330:1 8333:1 8334:1 8342:2 8345:6 8348:1 8359:2 8364:2 8377:1 8378:1 8383:1 8391:2 8428:8 8433:2 8439:1 8444:1 8450:1 8455:1 8462:1 8488:1 8489:1 8494:1 8497:1 8503:1 8512:1 8514:1 8518:1 8520:1 8521:1 8524:1 8532:3 8533:1 8534:1 8554:1 8570:1 8572:1 8575:1 8576:1 8590:4 8601:1 8608:2 8619:2 8621:4 8638:1 8646:2 8647:2 8651:5 8653:1 8663:1 8668:1 8673:1 8674:1 8675:1 8679:6 8682:1 8683:1 8687:1 8688:1 8693:2 8697:2 8700:2 8705:1 8707:1 8708:1 8709:1 8721:1 8752:1 8754:1 8755:1 8756:1 8762:2 8765:2 8766:2 8767:1 8772:1 8775:1 8776:2 8777:3 8783:14 8788:2 8792:3 8807:3 8814:1 8828:2 8834:1 8852:3 8862:5 8863:1 8867:2 8880:2 8885:1 8886:1 8894:1 8899:1 8905:1 8909:2 8910:1 8913:3 8923:2 8931:1 8939:1 8943:2 8952:1 8958:4 8967:2 8969:2 8970:1 8981:5 8985:1 8994:2 8997:6 8999:1 9001:1 9003:1 9008:2 9015:1 9027:3 9044:1 9059:2 9068:1 9076:1 9084:2 9089:1 9095:1 9111:1 9113:1 9121:2 9128:1 9135:2 9139:2 9143:2 9148:2 9151:1 9152:2 9154:1 9155:1 9157:1 9160:3 9162:3 9163:1 9168:1 9169:1 9171:2 9173:1 9176:2 9179:2 9181:4 9184:3 9203:1 9207:2 9229:1 9232:2 9245:1 9246:4 9258:1 9260:1 9262:4 9263:1 9281:2 9285:1 9293:1 9299:1 9300:1 9311:2 9319:1 9330:1 9333:1 9340:1 9345:1 9347:1 9370:1 9387:2 9396:1 9399:1 9402:2 9407:3 9416:1 9418:1 9419:1 9422:1 9424:1 9438:2 9440:1 9442:4 9445:2 9468:1 9480:1 9489:1 9547:1 9554:1 9568:2 9572:2 9580:2 9585:3 9587:1 9589:1 9598:3 9599:2 9604:1 9605:1 9606:1 9612:1 9615:1 9618:1 9630:1 9634:2 9655:3 9657:1 9661:1 9668:1 9679:1 9688:2 9694:1 9703:2 9714:1 9721:1 9726:1 9731:1 9735:1 9737:1 9751:1 9753:1 9768:2 9772:1 9773:1 9776:1 9778:2 9782:1 9784:1 9801:1 9806:2 9812:1 9814:2 9823:2 9824:1 9826:1 9830:1 9831:2 9834:1 9835:1 9836:1 9844:1 9846:2 9849:2 9862:1 9871:1 9873:14 9883:2 9885:3 9890:2 9912:2 9914:1 9915:1 9922:1 9932:1 9942:1 9943:1 9945:1 9946:1 9948:1 9949:1 9962:1 9963:1 9966:2 9968:2 9974:1 9983:1 9985:9 9987:1 9993:1 9996:2 10001:1 10007:3 10011:1 10020:1 10028:1 10037:1 10043:2 10060:1 10065:1 10066:1 10070:2 10078:1 10080:1 10084:1 10089:1 10102:2 10109:1 10116:1 10121:6 10125:3 10128:1 10129:3 10130:1 10144:2 10146:2 10152:1 10161:2 10165:1 10166:1 10168:1 10169:1 10175:1 10177:1 10193:1 10197:1 10206:1 10207:1 10208:1 10209:1 10214:1 10216:3 10217:4 10221:2 10222:1 10229:1 10261:2 10281:2 10285:1 10287:1 10288:1 10291:1 10304:2 10314:1 10330:7 10340:2 10364:1 10379:1 10384:4 10389:1 10390:5 10393:3 10394:3 10395:1 10396:1 10403:1 10407:2 10411:1 10412:1 10415:2 10416:3 10417:2 10433:1 10436:1 10438:6 10439:5 10440:1 10441:1 10445:1 10447:1 10455:5 10458:1 10460:1 10462:1 10463:1 10469:1 10470:1 10471:1 10485:1 10502:1 10512:1 10514:1 10520:1 10524:2 10532:2 10533:2 10535:1 10541:1 10548:1 10573:1 10574:1 10583:4 10595:5 10612:1 10617:1 10630:1 10650:2 10656:3 10658:3 10662:1 10664:1 10670:1 10674:1 10676:1 10677:1 10683:1 10684:1 10689:1 10694:1 10696:1 10699:1 10706:1 10716:1 10721:1 10727:1 10742:1 10743:1 10755:1 10775:1 10777:1 10783:1 10785:1 10790:3 10792:2 10801:2 10803:1 10808:1 10812:1 10817:1 10839:2 10843:1 10845:1 10848:1 10852:5 10854:1 10861:2 10865:1 10879:1 10881:4 10885:3 10896:1 10907:1 10918:1 10920:1 10924:1 10932:2 10935:1 10940:1 10941:1 10943:4 10953:2 10962:1 10966:1 10969:2 10970:6 10973:2 10975:10 10978:1 10980:4 10984:2 10987:1 10988:1 10989:1 10990:1 10993:1 10999:3 11000:1 11003:1 11004:1 11021:1 11022:1 11043:6 11045:2 11051:2 11057:9 11059:1 11076:1 11101:1 11104:1 11108:3 11127:1 11138:6 11140:1 11143:1 11150:1 11153:1 11158:1 11160:2 11162:1 11163:2 11166:1 11176:1 11180:1 11183:1 11185:1 11187:1 11194:1 11209:1 11210:3 11215:1 11216:1 11223:1 11225:2 11228:1 11234:1 11237:1 11248:1 11249:2 11253:4 11257:1 11266:1 11272:1 11274:1 11288:1 11300:1 11316:4 11323:2 11329:4 11331:9 11332:7 11334:2 11349:2 11352:3 11354:1 11358:4 11364:4 11368:4 11369:1 11371:3 11373:1 11374:1 11384:1 11390:1 11393:1 11401:1 11404:1 11415:4 11416:3 11417:1 11419:1 11424:5 11436:52 11438:2 11442:1 11448:1 11453:1 11455:3 11457:1 11463:3 11470:11 11472:9 11473:1 11481:2 11484:1 11486:1 11506:1 11516:1 11517:1 11519:1 11522:1 11525:1 11527:1 11534:1 11538:1 11549:1 11552:2 11565:1 11574:3 11575:2 11578:1 11590:1 11594:2 11605:2 11618:3 11635:1 11639:1 11643:1 11645:1 11653:1 11655:1 11656:1 11660:1 11665:1 11687:1 11691:2 11694:2 11708:1 11712:3 11713:10 11724:2 11743:2 11755:3 11760:4 11766:1 11775:1 11776:2 11781:3 11783:1 11784:3 11787:1 11794:2 11796:1 11810:1 11838:1 11844:1 11845:1 11846:1 11847:1 11862:1 11863:1 11867:2 11869:2 11878:3 11896:1 11898:1 11900:1 11940:1 11941:1 11947:1 11948:1 11949:2 11963:1 11983:1 11986:1 11989:2 11994:2 11996:1 11998:1 12004:2 12012:1 12015:1 12016:1 12019:1 12021:2 12028:1 12029:1 12030:1 12033:1 12043:2 12045:2 12051:1 12055:1 12061:1 12070:1 12076:1 12077:3 12089:1 12100:1 12107:1 12114:1 12118:1 12119:2 12127:3 12141:1 12144:27 12156:1 12176:3 12183:3 12190:1 12194:1 12195:1 12234:1 12242:1 12254:3 12267:6 12269:1 12272:1 12281:1 12286:1 12313:3 12314:3 12322:7 12345:1 12348:1 12360:1 12365:5 12366:3 12370:2 12371:2 12374:1 12380:1 12381:1 12384:2 12389:2 12390:3 12402:1 12408:1 12419:4 12424:2 12426:4 12442:3 12450:1 12459:1 12474:2 12479:1 12486:1 12488:1 12493:1 12494:1 12500:1 12501:1 12516:1 12520:1 12536:1 12544:1 12545:2 12549:1 12552:1 12555:1 12556:1 12557:1 12568:2 12575:1 12580:2 12582:2 12583:1 12588:1 12596:4 12601:1 12630:1 12637:1 12641:3 12664:2 12670:1 12676:1 12685:2 12694:1 12695:1 12703:1 12711:1 12718:1 12725:1 12727:2 12731:4 12734:3 12736:1 12738:1 12745:1 12750:1 12757:1 12758:1 12770:1 12772:1 12775:1 12784:3 12789:2 12801:3 12804:2 12805:1 12809:2 12811:7 12814:1 12824:2 12829:1 12830:3 12840:1 12842:1 12847:1 12861:2 12866:1 12871:1 12872:1 12883:1 12892:2 12899:1 12902:2 12911:1 12919:1 12921:1 12925:1 12926:4 12928:1 12929:1 12931:1 12934:1 12938:1 12944:1 12946:1 12947:4 12948:1 12949:1 12951:1 12956:1 12962:2 12976:1 12982:1 12992:1 13000:2 13005:1 13016:3 13019:1 13048:1 13050:2 13051:2 13064:1 13068:1 13082:1 13091:1 13106:3 13115:1 13121:2 13136:1 13139:1 13153:1 13160:3 13178:2 13179:1 13191:1 13206:1 13208:1 13209:2 13213:3 13216:1 13237:1 13242:3 13245:1 13256:2 13260:1 13276:1 13278:1 13280:2 13302:1 13303:1 13304:1 13307:1 13311:2 13313:2 13316:1 13318:2 13325:1 13326:8 13333:1 13334:1 13337:2 13347:1 13358:1 13371:1 13374:2 13378:1 13391:7 13393:1 13405:1 13408:1 13413:1 13421:1 13425:1 13433:2 13437:1 13441:11 13443:7 13445:2 13456:1 13471:3 13474:2 13481:1 13502:1 13521:1 13524:3 13531:1 13536:2 13545:1 13549:1 13554:4 13559:1 13572:1 13581:1 13583:2 13590:1 13596:1 13600:2 13602:2 13604:4 13605:2 13616:2 13625:1 13640:1 13659:2 13663:1 13670:1 13680:1 13692:2 13693:2 13696:1 13708:4 13711:1 13714:5 13720:2 13721:1 13728:1 13735:1 13740:1 13741:4 13745:2 13750:1 13751:1 13752:1 13766:4 13803:1 13806:1 13807:8 13819:1 13821:1 13836:1 13838:1 13843:4 13849:1 13860:1 13867:1 13873:1 13875:1 13882:1 13887:5 13896:3 13904:1 13905:1 13906:1 13912:1 13915:3 13922:1 13924:1 13937:1 13939:1 13942:1 13947:1 13952:1 13967:4 13987:1 13990:1 14004:1 14007:1 14016:1 14024:4 14028:2 14032:8 14036:1 14037:2 14043:3 14081:3 14089:1 14094:1 14096:1 14109:3 14120:1 14130:1 14140:1 14144:1 14147:1 14151:1 14174:1 14175:2 14179:1 14181:1 14184:1 14186:1 14189:1 14193:1 14195:2 14198:3 14199:3 14201:4 14203:1 14204:3 14206:2 14208:1 14209:2 14212:1 14217:2 14219:1 14220:1 14221:2 14229:1 14242:1 14243:1 14252:1 14254:2 14258:2 14262:6 14280:1 14282:2 14285:1 14295:1 14304:2 14307:1 14314:1 14315:1 14319:1 14321:1 14326:1 14328:1 14363:12 14368:2 14369:6 14400:1 14401:1 14404:2 14406:1 14410:1 14412:1 14414:1 14415:1 14432:1 14433:2 14436:1 14437:1 14442:1 14443:2 14447:1 14449:3 14458:3 14459:1 14470:2 14482:1 14485:1 14490:1 14498:1 14499:1 14513:1 14515:1 14559:1 14564:1 14565:2 14580:1 14581:1 14586:1 14617:1 14623:1 14625:1 14629:1 14631:1 14633:1 14637:1 14642:5 14662:1 14668:4 14678:4 14679:1 14683:2 14697:3 14700:2 14707:1 14709:1 14717:1 14720:1 14725:3 14729:2 14738:1 14750:2 14756:3 14758:1 14759:1 14763:1 14769:3 14771:2 14776:1 14802:2 14821:1 14825:1 14832:2 14834:1 14843:1 14844:2 14845:2 14846:1 14850:1 14852:1 14855:1 14857:1 14871:1 14876:1 14877:1 14879:1 14884:1 14889:1 14894:1 14895:4 14896:5 14900:1 14931:2 14936:1 14945:2 14951:1 14954:1 14959:14 14964:2 14977:2 14979:2 14985:2 14988:1 14997:1 15003:3 15004:1 15032:2 15033:2 15037:1 15048:1 15052:1 15054:1 15055:1 15073:1 15096:1 15099:18 15100:2 15108:1 15133:1 15136:2 15138:1 15152:1 15155:1 15165:1 15166:1 15170:1 15184:1 15189:1 15198:1 15201:1 15202:1 15203:1 15205:1 15208:1 15210:4 15222:1 15224:1 15226:1 15229:2 15250:2 15256:2 15260:1 15265:1 15281:2 15285:1 15287:1 15291:1 15298:1 15299:1 15300:1 15301:4 15303:1 15306:1 15307:1 15309:1 15315:1 15320:3 15331:1 15332:1 15339:1 15340:2 15341:1 15346:1 15348:1 15359:4 15360:1 15369:1 15384:1 15385:1 15391:1 15416:1 15427:1 15434:1 15435:1 15436:1 15437:1 15441:1 15447:1 15448:2 15449:1 15452:1 15456:2 15458:1 15479:2 15486:1 15488:1 15490:1 15492:1 15504:1 15511:1 15514:1 15519:3 15524:1 15529:1 15539:2 15542:1 15544:1 15548:12 15550:1 15551:1 15552:7 15554:4 15569:2 15573:3 15577:1 15578:1 15584:1 15589:2 15591:1 15595:1 15597:2 15607:1 15618:2 15621:1 15633:7 15634:2 15644:1 15654:3 15659:2 15663:1 15664:1 15670:1 15674:4 15699:1 15703:1 15712:7 15715:1 15722:1 15723:1 15727:1 15732:3 15742:1 15745:2 15751:1 15753:2 15754:7 15756:1 15774:2 15787:1 15795:3 15796:1 15799:1 15806:1 15814:4 15821:1 15835:1 15845:1 15860:1 15875:2 15879:2 15881:1 15894:1 15896:2 15913:1 15916:1 15918:1 15924:1 15931:1 15936:1 15958:1 15966:2 15975:1 15976:1 15978:1 15992:1 16018:1 16020:2 16027:1 16030:1 16031:1 16040:1 16045:1 16050:1 16051:2 16054:3 16058:1 16059:2 16063:1 16067:1 16071:2 16074:1 16075:5 16078:1 16080:6 16083:1 16088:1 16090:1 16093:3 16099:1 16100:2 16101:3 16105:5 16106:1 16110:1 16114:4 16117:1 16119:1 16127:3 16128:1 16130:1 16131:3 16134:1 16137:1 16140:1 16142:2 16163:3 16172:1 16174:1 16176:1 16177:2 16206:1 16207:1 16211:4 16214:1 16225:7 16240:1 16246:1 16249:1 16260:1 16262:1 16269:1 16273:8 16278:1 16285:1 16297:2 16305:1 16312:2 16331:1 16335:1 16339:1 16341:1 16354:1 16357:1 16364:1 16374:4 16376:1 16377:1 16391:1 16393:1 16395:1 16399:1 16411:1 16413:1 16414:1 16415:1 16418:1 16427:1 16430:1 16431:1 16440:1 16443:1 16446:3 16473:1 16498:1 16502:1 16508:1 16519:1 16523:1 16527:1 16531:2 16535:2 16538:1 16551:1 16552:3 16553:2 16560:1 16562:1 16575:2 16580:2 16581:1 16584:1 16585:2 16586:1 16593:1 16596:3 16600:1 16601:1 16602:2 16610:1 16618:1 16621:1 16628:3 16631:2 16650:1 16651:1 16658:1 16667:3 16676:21 16678:1 16679:1 16708:1 16712:1 16725:1 16727:1 16731:5 16745:1 16749:2 16750:2 16753:1 16758:2 16765:1 16771:1 16780:1 16800:1 16801:1 16805:1 16810:2 16816:2 16823:1 16826:1 16828:3 16843:1 16844:3 16850:1 16851:1 16852:1 16854:1 16867:3 16869:1 16874:2 16882:1 16884:1 16890:1 16893:3 16898:1 16921:1 16936:5 16949:1 16951:1 16955:1 16964:1 16981:1 16987:1 16997:1 16999:2 17005:1 17008:1 17028:1 17029:1 17033:1 17045:2 17046:1 17052:3 17053:1 17055:1 17056:1 17062:16 17063:2 17068:1 17071:5 17076:1 17078:2 17079:1 17083:2 17084:1 17089:1 17092:1 17099:2 17111:1 17126:1 17131:1 17132:1 17133:1 17137:1 17144:2 17151:5 17156:5 17168:4 17182:1 17183:2 17189:1 17201:1 17202:1 17209:2 17230:1 17231:1 17235:2 17237:2 17242:1 17251:1 17259:4 17263:3 17266:2 17268:3 17273:1 17279:3 17287:4 17295:2 17301:1 17314:1 17319:1 17332:1 17333:1 17339:1 17345:1 17351:1 17379:1 17390:1 17394:1 17396:1 17397:1 17403:6 17406:1 17414:1 17417:1 17418:1 17429:2 17431:2 17432:1 17438:1 17453:1 17461:1 17463:1 17468:2 17484:1 17495:2 17501:2 17504:2 17518:2 17533:2 17536:1 17543:1 17547:2 17549:2 17553:1 17554:1 17555:2 17565:1 17566:2 17572:2 17591:6 17594:1 17604:1 17608:1 17609:1 17612:1 17616:2 17627:1 17632:1 17634:2 17640:1 17643:1 17652:1 17656:2 17660:1 17670:2 17672:1 17675:2 17676:2 17695:1 17696:2 17753:1 17759:1 17767:1 17769:1 17774:5 17776:4 17798:2 17799:1 17801:1 17809:3 17810:2 17818:1 17823:1 17826:1 17855:1 17881:1 17893:1 17894:1 17897:6 17899:1 17922:1 17925:1 17929:2 17930:1 17935:1 17936:1 17955:1 17971:1 17986:1 17989:1 17996:1 18002:1 18003:1 18012:1 18022:1 18023:1 18027:1 18032:3 18038:1 18045:1 18053:1 18070:2 18074:2 18077:2 18080:1 18083:2 18099:3 18104:1 18126:1 18129:1 18141:1 18143:1 18150:1 18153:2 18175:1 18179:2 18180:3 18191:1 18198:1 18200:1 18211:1 18227:2 18230:1 18245:2 18258:2 18263:1 18264:5 18269:1 18272:1 18274:2 18290:1 18292:2 18297:1 18302:1 18303:1 18304:1 18310:2 18312:1 18319:1 18333:1 18339:1 18347:1 18357:3 18358:1 18360:2 18362:1 18380:3 18383:2 18386:1 18390:1 18393:1 18395:1 18398:2 18399:2 18415:1 18432:1 18434:1 18438:1 18441:1 18451:1 18453:1 18455:1 18459:2 18465:1 18499:1 18523:6 18525:1 18531:3 18534:1 18535:2 18542:1 18545:1 18546:3 18549:1 18556:1 18564:1 18566:1 18575:1 18586:1 18603:1 18606:15 18613:6 18616:2 18627:2 18629:1 18634:2 18638:2 18640:1 18644:2 18652:1 18656:1 18658:1 18665:2 18666:1 18677:1 18685:1 18687:2 18689:3 18692:1 18693:1 18697:1 18703:1 18707:1 18709:4 18710:1 18711:4 18713:1 18714:1 18717:3 18718:2 18719:1 18725:2 18729:1 18735:1 18742:3 18751:1 18752:2 18760:1 18763:1 18765:1 18769:2 18770:1 18780:1 18791:2 18796:1 18807:1 18810:1 18815:1 18835:1 18851:5 18865:1 18872:1 18881:2 18893:1 18897:1 18898:1 18904:2 18909:2 18918:1 18927:1 18939:1 18947:1 18948:1 18973:1 19008:1 19013:1 19014:2 19015:1 19023:1 19025:2 19026:1 19037:1 19048:1 19051:1 19053:1 19055:1 19062:1 19064:2 19085:1 19093:2 19108:1 19114:1 19115:1 19117:5 19119:1 19121:3 19126:5 19145:1 19152:2 19155:1 19168:1 19186:1 19215:7 19228:1 19235:1 19270:1 19278:2 19280:1 19292:1 19296:2 19311:1 19314:1 19315:4 19322:1 19324:4 19335:2 19339:2 19342:1 19344:2 19353:3 19364:1 19365:1 19367:2 19386:8 19388:2 19391:1 19407:1 19413:1 19418:2 19444:1 19445:1 19450:4 19452:1 19454:1 19471:1 19484:1 19491:1 19495:1 19496:1 19498:2 19503:2 19506:1 19508:1 19509:1 19512:2 19519:2 19524:9 19525:1 19535:2 19536:3 19537:1 19538:3 19545:1 19549:1 19551:3 19555:1 19556:1 19558:3 19560:1 19568:1 19578:1 19582:1 19586:2 19595:1 19597:1 19598:1 19600:5 19602:2 19606:1 19615:1 19616:1 19620:1 19621:1 19630:1 19633:1 19638:3 19645:2 19649:2 19652:1 19655:22 19659:1 19664:5 19667:1 19680:3 19692:1 19696:3 19700:1 19715:3 19718:2 19720:2 19721:1 19724:3 19727:3 19733:1 19747:1 19757:2 19758:1 19777:2 19785:1 19786:1 19792:3 19816:3 19829:1 19833:1 19851:1 19857:6 19863:1 19865:2 19891:1 19896:1 19903:2 19908:3 19910:1 19913:1 19918:5 19929:7 19930:1 19936:5 19965:1 19974:1 19975:5 19977:1 19984:1 19991:3 19992:1 19995:1 19998:1 19999:2 20011:1 20015:1 20020:1 20022:1 20030:2 20034:6 20035:1 20037:1 20038:2 20039:1 20040:2 20041:1 20044:1 20047:1 20049:8 20050:3 20052:1 20069:1 20072:1 20075:1 20076:1 20078:1 20080:1 20081:1 20089:1 20101:1 20102:7 20109:1 20110:1 20117:2 20123:1 20132:1 20160:1 20170:1 20171:1 20185:1 20188:1 20209:1 20210:2 20216:2 20223:1 20227:1 20243:1 20251:1 20256:1 20258:1 20262:1 20264:1 20266:1 20267:2 20276:2 20277:1 20284:1 20298:7 20305:3 20363:1 20366:1 20368:1 20378:1 20379:1 20380:1 20381:1 20382:1 20383:1 20387:2 20390:7 20393:2 20396:1 20402:1 20409:3 20413:1 20430:2 20440:2 20451:1 20452:1 20453:1 20464:1 20466:1 20469:1 20482:8 20494:6 20502:1 20519:3 20529:1 20552:1 20580:1 20588:1 20589:2 20598:2 20603:1 20607:1 20614:1 20618:1 20621:1 20628:1 20633:1 20636:1 20664:1 20669:1 20670:2 20696:1 20697:1 20702:1 20706:1 20713:1 20718:1 20724:1 20734:1 20735:1 20746:1 20758:1 20792:1 20795:1 20817:1 20822:2 20828:2 20844:1 20845:2 20846:1 20848:3 20851:5 20855:2 20874:1 20875:1 20878:2 20880:1 20892:1 20903:1 20912:1 20933:1 20940:1 20955:1 20956:1 20966:1 20980:1 21002:1 21034:3 21072:1 21080:3 21083:4 21096:1 21099:2 21107:2 21110:2 21111:2 21113:1 21115:1 21118:2 21121:1 21142:1 21145:1 21151:1 21153:1 21163:1 21168:1 21180:1 21186:1 21188:2 21190:1 21202:1 21207:1 21213:4 21216:1 21223:2 21227:1 21228:1 21238:1 21244:2 21262:1 21265:1 21271:4 21274:1 21276:2 21284:1 21298:2 21304:1 21308:1 21315:1 21318:1 21333:1 21339:1 21341:1 21349:2 21353:1 21361:1 21362:1 21374:4 21378:1 21379:2 21386:1 21402:1 21404:1 21443:1 21446:1 21451:3 21459:1 21463:1 21464:1 21470:2 21494:1 21509:2 21510:3 21512:1 21538:2 21539:1 21540:1 21545:1 21547:1 21551:2 21568:1 21579:1 21581:1 21586:2 21589:2 21610:1 21613:1 21619:1 21623:1 21626:3 21635:3 21637:4 21639:1 21640:3 21646:1 21667:1 21674:2 21677:1 21690:1 21703:1 21707:5 21713:1 21715:1 21718:1 21777:1 21820:2
1 5:2 10:1 14:1 17:1 23:2 35:1 44:2 53:1 66:1 69:1 77:1 83:1 91:1 99:1 101:1 102:1 103:3 107:1 123:1 124:1 128:2 130:1 131:1 132:1 133:1 134:1 140:1 163:2 181:1 217:1 233:1 251:1 255:1 260:4 261:1 266:1 270:2 275:1 280:1 296:2 308:1 309:1 319:2 320:1 324:3 337:1 343:6 346:1 369:1 370:1 382:1 401:2 411:1 417:1 419:1 432:1 439:7 454:1 461:3 466:1 467:1 468:2 476:1 490:1 501:2 510:2 523:3 527:1 547:1 563:6 564:3 571:1 573:3 575:1 578:1 582:3 583:1 593:1 600:1 602:2 605:2 626:3 628:3 635:1 644:2 660:1 663:6 664:1 667:6 677:1 685:2 698:3 706:1 717:2 742:1 744:1 747:1 749:2 753:1 761:1 762:6 770:1 778:4 790:1 796:1 797:2 806:5 827:3 835:1 849:1 854:2 858:1 861:1 869:1 879:1 883:1 889:2 893:1 894:1 901:2 904:1 908:3 918:1 919:1 943:1 954:1 956:5 959:2 964:1 989:3 1003:1 1004:2 1005:1 1018:2 1030:1 1034:1 1037:4 1040:2 1045:1 1051:1 1056:1 1071:2 1073:5 1074:1 1079:1 1081:1 1099:2 1111:1 1124:1 1142:1 1152:2 1159:1 1160:2 1187:1 1200:1 1205:2 1209:1 1216:1 1229:3 1230:1 1233:1 1237:3 1248:2 1258:1 1261:2 1270:2 1273:1 1278:1 1281:1 1282:3 1308:1 1320:7 1322:3 1328:1 1331:1 1343:1 1349:1 1351:1 1356:2 1358:4 1367:2 1375:1 1389:1 1392:1 1402:16 1407:5 1418:1 1419:5 1421:1 1428:1 1430:1 1435:1 1441:4 1450:1 1453:1 1456:1 1457:21 1459:1 1463:1 1474:1 1475:4 1476:2 1478:11 1479:1 1481:1 1482:1 1484:1 1486:3 1488:4 1489:3 1492:1 1507:2 1530:5 1531:4 1536:3 1543:1 1549:1 1550:1 1598:1 1600:2 1622:1 1624:2 1642:1 1644:1 1651:2 1653:1 1659:4 1683:2 1689:1 1696:1 1698:1 1712:2 1715:1 1724:1 1740:1 1743:1 1757:1 1771:1 1774:3 1779:1 1781:1 1784:1 1785:1 1789:1 1790:2 1797:2 1800:1 1809:1 1828:1 1834:3 1866:1 1875:1 1877:3 1879:4 1884:6 1885:2 1886:2 1887:1 1888:6 1889:2 1890:1 1892:2 1893:2 1894:1 1895:1 1898:2 1899:5 1903:1 1904:1 1908:1 1911:1 1912:2 1913:2 1920:2 1921:1 1927:1 1940:1 1947:1 1950:1 1951:1 1953:2 1962:1 1967:2 1973:2 1975:1 1985:1 1999:2 2007:2 2009:1 2024:1 2025:1 2029:1 2036:1 2051:1 2055:1 2057:1 2077:1 2079:1 2088:1 2090:1 2102:1 2105:1 2107:1 2112:2 2113:1 2114:1 2116:1 2122:1 2128:1 2142:1 2161:2 2167:1 2170:1 2171:1 2172:1 2179:1 2180:2 2181:2 2199:2 2208:1 2209:2 2215:2 2231:1 2233:1 2235:2 2239:1 2240:3 2267:1 2271:1 2274:1 2276:1 2281:1 2288:1 2290:1 2291:2 2293:1 2298:1 2306:1 2312:1 2314:1 2333:1 2337:1 2340:1 2345:5 2350:1 2356:8 2359:2 2370:1 2375:1 2376:1 2400:1 2412:2 2425:1 2427:1 2429:1 2434:1 2436:4 2441:3 2456:1 2458:1 2460:2 2465:1 2469:1 2472:2 2485:3 2486:2 2489:1 2498:1 2499:1 2503:1 2506:5 2507:1 2510:1 2511:2 2515:1 2520:2 2522:2 2527:3 2532:1 2545:1 2552:2 2553:1 2555:1 2562:1 2563:4 2567:2 2569:1 2572:2 2574:1 2575:1 2580:1 2583:1 2584:1 2595:4 2603:1 2604:2 2613:4 2617:1 2619:2 2621:1 2623:1 2626:1 2635:1 2649:2 2654:1 2656:6 2664:1 2669:1 2684:1 2691:1 2695:3 2701:2 2704:14 2706:1 2715:2 2718:7 2733:1 2739:1 2749:2 2750:5 2752:3 2753:4 2755:2 2768:1 2775:1 2786:1 2791:1 2795:2 2798:4 2800:1 2801:1 2804:1 2821:2 2823:1 2828:1 2829:3 2834:1 2835:1 2840:3 2844:2 2845:1 2847:1 2862:3 2865:1 2885:1 2891:1 2907:1 2909:1 2913:1 2919:2 2927:9 2930:2 2932:1 2941:1 2945:2 2949:7 2953:1 2958:1 2959:2 2965:1 2967:1 2968:2 2971:4 2978:1 2988:1 2989:1 2992:2 2997:1 3005:1 3021:1 3024:4 3025:2 3027:2 3032:1 3043:1 3045:1 3057:1 3059:2 3062:1 3065:2 3066:1 3071:2 3075:2 3091:1 3093:2 3098:1 3115:1 3124:5 3138:1 3142:1 3153:11 3156:2 3161:1 3166:2 3179:1 3184:1 3190:1 3194:1 3208:2 3216:1 3228:1 3242:1 3263:3 3271:5 3273:2 3274:2 3275:1 3276:4 3290:1 3295:1 3299:1 3302:2 3308:1 3322:3 3325:2 3326:2 3329:3 3331:5 3332:2 3335:2 3337:2 3340:2 3341:2 3343:1 3344:4 3346:6 3350:1 3352:1 3353:1 3354:5 3355:4 3358:5 3360:7 3362:1 3373:1 3388:1 3391:1 3412:1 3414:1 3417:1 3429:1 3439:2 3441:1 3445:1 3450:3 3451:3 3455:1 3464:1 3465:2 3470:1 3475:2 3477:1 3488:1 3493:1 3500:1 3509:2 3518:1 3521:2 3523:1 3524:1 3538:1 3539:1 3541:2 3545:1 3548:1 3549:1 3552:1 3557:1 3576:1 3577:1 3599:1 3612:1 3613:1 3622:1 3631:1 3633:1 3644:4 3658:1 3661:1 3668:1 3672:1 3674:1 3677:1 3679:3 3684:2 3692:1 3697:1 3703:1 3711:1 3712:1 3717:1 3718:1 3722:1 3726:1 3732:1 3747:1 3749:3 3755:1 3759:1 3760:3 3767:2 3772:1 3775:7 3777:3 3781:1 3787:1 3788:1 3789:1 3790:1 3793:1 3800:3 3806:2 3808:2 3815:3 3819:1 3821:1 3825:1 3828:10 3856:4 3857:2 3858:1 3865:2 3875:1 3887:1 3888:2 3893:2 3896:1 3899:2 3900:1 3901:2 3903:4 3904:1 3910:1 3916:3 3921:1 3924:2 3925:7 3927:1 3928:1 3939:2 3948:2 3957:10 3965:6 3966:1 3979:2 3981:1 3986:1 3988:2 3990:1 3997:3 3998:2 4009:4 4022:1 4025:1 4026:3 4032:5 4036:1 4038:1 4041:1 4048:2 4060:1 4065:4 4071:1 4090:1 4097:1 4101:2 4103:1 4104:2 4106:2 4118:1 4121:4 4122:1 4129:1 4131:1 4133:7 4136:1 4143:2 4145:1 4147:1 4150:1 4158:1 4176:1 4182:1 4198:1 4199:1 4200:1 4216:1 4224:1 4227:1 4230:1 4237:1 4239:1 4242:3 4246:2 4247:1 4264:2 4265:5 4272:1 4277:1 4279:17 4292:1 4311:3 4312:1 4315:1 4316:1 4317:1 4318:1 4326:2 4333:3 4335:1 4338:1 4358:23 4361:3 4381:1 4382:1 4383:1 4387:1 4398:2 4400:4 4412:1 4426:2 4427:1 4429:3 4438:1 4440:1 4442:1 4447:1 4452:2 4459:1 4461:1 4470:1 4482:1 4489:1 4492:1 4498:1 4505:1 4513:1 4524:1 4532:1 4534:6 4555:2 4565:3 4573:2 4582:1 4584:1 4586:1 4591:1 4600:2 4627:1 4641:1 4643:2 4657:1 4658:1 4661:1 4663:1 4665:1 4667:1 4680:2 4698:1 4700:1 4717:2 4731:1 4737:3 4757:1 4770:2 4771:1 4786:1 4792:1 4794:2 4797:1 4803:1 4811:1 4841:1 4854:1 4855:1 4863:1 4866:1 4868:3 4869:1 4877:1 4880:1 4881:1 4884:1 4889:2 4895:1 4910:9 4912:1 4933:1 4936:3 4944:1 4958:1 4969:1 5004:1 5009:1 5018:3 5023:1 5028:1 5032:15 5051:2 5053:1 5058:1 5059:1 5068:1 5074:1 5082:1 5083:2 5087:1 5089:1 5096:1 5103:1 5107:1 5133:1 5149:1 5156:1 5182:2 5187:1 5197:1 5199:1 5205:1 5206:19 5218:1 5220:2 5222:2 5223:3 5226:2 5244:1 5249:1 5250:1 5251:1 5257:15 5274:4 5275:1 5277:2 5288:1 5290:7 5293:1 5307:1 5308:2 5310:1 5317:1 5321:3 5331:2 5338:3 5348:1 5369:1 5386:1 5395:1 5396:2 5418:1 5422:1 5429:2 5434:1 5438:2 5453:4 5456:6 5460:1 5461:1 5492:1 5495:1 5499:2 5506:2 5508:1 5528:2 5529:1 5530:2 5533:2 5534:1 5547:2 5555:3 5557:1 5572:2 5574:1 5577:3 5579:5 5583:2 5587:3 5591:1 5592:2 5593:2 5596:1 5606:5 5608:1 5618:1 5621:3 5624:3 5625:2 5635:1 5647:1 5651:2 5656:3179 5670:1 5673:1 5678:1 5679:2 5682:4 5687:1 5694:1 5696:1 5700:1 5701:1 5703:1 5714:2 5716:1 5726:7 5728:5 5741:2 5761:1 5765:1 5772:1 5775:1 5779:1 5784:2 5787:1 5793:1 5804:1 5814:2 5816:1 5824:1 5829:2 5846:1 5855:1 5858:1 5862:2 5866:1 5870:1 5873:1 5878:1 5891:2 5894:2 5901:1 5904:1 5905:1 5915:2 5927:2 5939:4 5940:1 5941:1 5944:3 5945:1 5947:3 5949:1 5952:1 5955:2 5981:1 5983:1 5987:2 5992:6 5993:4 5997:1 6004:1 6015:1 6023:1 6025:1 6033:1 6046:1 6050:1 6054:1 6057:1 6066:1 6067:1 6078:1 6088:1 6095:1 6101:1 6106:7 6108:1 6109:1 6142:3 6156:1 6165:2 6171:1 6176:3 6179:2 6184:1 6185:1 6189:3 6192:1 6201:2 6202:1 6210:2 6228:1 6240:1 6242:1 6244:1 6247:2 6248:4 6262:1 6268:4 6295:2 6296:1 6302:1 6304:1 6308:3 6312:1 6320:2 6327:1 6335:2 6343:2 6350:1 6359:1 6366:1 6367:2 6373:2 6376:1 6378:3 6380:1 6381:1 6397:1 6398:1 6399:2 6403:1 6410:2 6414:1 6417:1 6435:1 6445:1 6449:3 6452:1 6460:1 6468:1 6472:1 6479:2 6488:5 6507:1 6513:1 6518:1 6520:1 6521:2 6531:1 6540:1 6543:1 6550:2 6555:2 6558:2 6567:5 6570:1 6577:3 6578:1 6590:2 6593:1 6596:1 6597:1 6603:4 6606:2 6612:2 6614:3 6630:1 6631:5 6642:4 6655:1 6662:1 6669:1 6673:3 6674:2 6700:1 6702:3 6708:4 6709:3 6711:1 6713:1 6716:1 6723:1 6728:3 6732:1 6733:2 6738:2 6746:9 6747:1 6756:1 6769:1 6776:2 6792:1 6793:1 6800:1 6804:1 6820:1 6822:1 6823:1 6832:2 6833:1 6842:1 6846:2 6870:5 6871:1 6876:1 6892:17 6894:2 6899:1 6901:2 6905:1 6906:1 6914:1 6916:1 6927:1 6936:1 6948:1 6957:1 6961:1 6975:4 6976:1 6986:1 6989:2 6997:1 6998:2 7000:1 7012:4 7013:2 7023:1 7028:1 7038:2 7051:1 7066:1 7074:1 7075:5 7084:4 7090:1 7095:2 7098:1 7107:3 7112:1 7117:4 7119:7 7121:3 7124:1 7129:2 7131:2 7132:2 7136:1 7138:2 7140:6 7142:4 7146:2 7147:8 7154:2 7158:6 7159:1 7162:1 7171:5 7175:2 7177:1 7199:2 7201:2 7203:2 7206:2 7210:1 7211:1 7213:2 7215:1 7229:2 7248:2 7253:1 7264:1 7271:1 7272:1 7274:1 7283:1 7293:1 7300:3 7315:1 7340:1 7345:1 7360:1 7387:1 7388:3 7404:1 7405:2 7406:1 7408:1 7412:1 7419:1 7421:3 7426:1 7450:1 7458:1 7461:1 7462:1 7466:1 7470:1 7480:1 7488:2 7497:1 7504:2 7506:1 7516:1 7519:1 7520:2 7529:1 7530:2 7537:1 7543:1 7545:1 7555:1 7557:1 7562:1 7563:2 7569:1 7572:2 7575:4 7580:2 7588:1 7589:4 7636:1 7665:1 7668:1 7682:3 7689:3 7691:1 7693:1 7697:2 7699:2 7700:2 7702:2 7712:1 7720:2 7722:3 7724:3 7732:3 7739:1 7740:3 7741:2 7744:1 7768:5 7778:1 7779:3 7792:1 7797:1 7812:1 7818:1 7821:2 7823:4 7835:6 7838:1 7853:1 7859:1 7860:2 7867:1 7872:2 7873:1 7878:1 7891:1 7898:2 7905:3 7930:1 7931:1 7938:2 7940:1 7944:3 7953:2 7964:1 7965:1 7969:1 7974:3 7975:23 7977:2 7985:1 7991:1 7994:5 8003:1 8006:1 8022:1 8030:1 8033:2 8035:1 8040:1 8059:3 8070:1 8071:1 8075:1 8087:1 8093:1 8095:1 8104:1 8108:1 8120:1 8136:2 8140:1 8141:1 8145:1 8152:2 8154:1 8159:1 8179:1 8188:1 8195:2 8202:1 8206:1 8208:1 8213:2 8214:1 8221:1 8227:1 8235:1 8238:1 8250:5 8251:1 8254:2 8257:1 8259:4 8261:4 8278:2 8280:1 8288:2 8292:1 8299:2 8301:1 8312:3 8327:2 8330:1 8333:1 8334:1 8342:2 8345:6 8348:1 8359:2 8364:2 8377:1 8378:1 8383:1 8391:2 8428:8 8433:3 8439:1 8444:1 8450:1 8455:1 8462:1 8488:1 8489:1 8494:1 8497:1 8503:1 8512:1 8514:1 8518:1 8520:1 8521:1 8524:1 8532:3 8533:1 8534:1 8554:1 8570:1 8572:1 8575:1 8576:1 8590:4 8601:1 8608:2 8619:2 8621:4 8638:1 8646:2 8647:2 8651:6 8653:1 8663:1 8668:1 8673:1 8674:1 8675:1 8679:6 8682:1 8683:1 8687:1 8688:1 8693:2 8697:2 8700:2 8705:1 8707:1 8708:1 8709:1 8721:1 8752:1 8754:1 8755:1 8756:1 8762:2 8765:2 8766:2 8767:2 8772:1 8775:1 8776:2 8777:3 8783:14 8788:2 8792:3 8794:1 8807:3 8814:1 8828:2 8834:1 8852:3 8862:5 8863:1 8867:2 8880:2 8885:1 8886:1 8894:1 8899:1 8905:1 8909:2 8910:1 8913:3 8923:2 8931:1 8939:1 8943:2 8952:1 8958:4 8967:2 8969:2 8970:1 8981:5 8985:1 8994:2 8997:6 8999:1 9001:1 9003:1 9008:2 9015:1 9027:3 9044:1 9059:2 9068:1 9076:1 9084:2 9089:1 9095:1 9111:1 9113:1 9121:2 9128:1 9135:2 9139:2 9143:2 9148:2 9151:1 9152:2 9154:1 9155:1 9157:1 9160:3 9162:3 9163:1 9168:1 9169:1 9171:2 9173:1 9176:2 9179:2 9181:4 9184:3 9203:1 9207:2 9229:1 9232:2 9245:1 9246:4 9258:1 9260:1 9262:4 9263:1 9281:2 9285:1 9293:1 9299:1 9300:1 9311:2 9319:1 9330:1 9333:1 9340:1 9345:1 9347:1 9370:1 9387:2 9392:1 9396:1 9399:1 9402:2 9407:3 9416:1 9418:1 9419:1 9422:1 9424:1 9438:2 9440:1 9442:5 9445:2 9468:1 9480:1 9489:1 9547:1 9554:1 9568:2 9572:2 9580:2 9585:3 9587:1 9589:1 9598:4 9599:2 9604:1 9605:1 9606:1 9612:1 9615:1 9618:1 9630:1 9634:2 9655:3 9657:1 9661:1 9668:1 9679:1 9688:2 9694:1 9703:2 9714:1 9721:1 9726:1 9731:1 9735:1 9737:1 9751:1 9753:1 9768:2 9772:1 9773:1 9776:1 9778:2 9782:1 9784:1 9801:1 9806:2 9812:1 9814:2 9823:2 9824:1 9826:1 9830:1 9831:2 9834:1 9835:1 9836:1 9844:1 9846:2 9849:2 9862:1 9871:1 9873:14 9883:2 9885:3 9890:2 9912:2 9914:1 9915:1 9922:1 9932:1 9942:1 9943:1 9945:1 9946:1 9948:1 9949:1 9962:1 9963:1 9966:2 9968:2 9974:1 9983:1 9985:9 9987:1 9993:1 9996:2 10001:1 10007:3 10011:1 10020:1 10028:1 10037:1 10040:1 10043:2 10060:1 10065:1 10066:1 10070:3 10078:1 10080:1 10084:1 10089:1 10102:2 10109:1 10116:1 10121:6 10125:3 10128:2 10129:3 10130:1 10144:2 10146:2 10152:1 10161:2 10165:1 10166:1 10168:1 10169:1 10175:1 10177:1 10193:1 10197:1 10206:1 10207:1 10208:1 10209:1 10211:1 10214:1 10216:3 10217:4 10221:2 10222:1 10229:1 10261:2 10281:2 10285:1 10287:1 10288:1 10291:1 10304:2 10314:1 10330:7 10340:2 10364:1 10379:1 10384:4 10389:1 10390:5 10393:3 10394:3 10395:1 10396:1 10403:1 10407:2 10411:2 10412:1 10415:2 10416:3 10417:2 10433:1 10436:1 10438:6 10439:5 10440:1 10441:1 10445:1 10447:1 10455:5 10458:1 10460:1 10462:1 10463:1 10469:1 10470:1 10471:1 10485:1 10502:1 10512:1 10514:1 10520:2 10524:2 10532:2 10533:2 10535:1 10541:1 10548:1 10573:1 10574:1 10583:4 10595:5 10612:1 10617:1 10630:1 10650:2 10656:3 10658:3 10662:1 10664:1 10670:1 10674:1 10676:1 10677:1 10683:1 10684:1 10689:1 10694:1 10696:1 10699:1 10706:1 10716:1 10721:1 10727:1 10742:1 10743:1 10755:1 10775:1 10777:1 10783:1 10785:1 10790:3 10792:2 10801:2 10803:1 10808:1 10812:1 10817:1 10839:2 10843:1 10845:1 10848:1 10852:5 10854:1 10861:2 10865:1 10879:1 10881:4 10885:3 10896:1 10907:1 10918:1 10920:1 10924:1 10932:2 10935:1 10940:1 10941:1 10943:4 10953:2 10962:1 10966:1 10969:2 10970:6 10973:2 10975:10 10978:1 10980:4 10984:2 10987:1 10988:1 10989:1 10990:1 10993:1 10999:4 11000:1 11003:1 11004:1 11021:1 11022:1 11043:6 11045:2 11051:2 11057:9 11059:1 11076:1 11101:1 11104:1 11108:3 11127:1 11138:6 11140:1 11143:1 11145:1 11150:1 11153:1 11158:1 11160:2 11162:1 11163:2 11166:1 11176:1 11180:1 11183:1 11185:1 11187:1 11194:1 11209:1 11210:3 11215:1 11216:1 11223:1 11225:2 11228:1 11234:1 11237:1 11248:1 11249:2 11253:4 11257:1 11266:1 11272:1 11274:1 11288:1 11300:1 11316:4 11323:2 11329:5 11331:9 11332:7 11334:2 11349:2 11352:3 11354:1 11358:4 11364:4 11368:4 11369:1 11371:3 11373:1 11374:1 11384:1 11390:1 11393:1 11401:1 11404:1 11415:4 11416:3 11417:1 11419:1 11424:5 11436:53 11438:2 11442:1 11448:1 11453:1 11455:4 11457:1 11463:3 11470:11 11472:9 11473:1 11481:2 11484:1 11486:1 11495:1 11506:1 11516:1 11517:1 11519:1 11522:1 11524:1 11525:1 11527:1 11534:1 11538:1 11549:1 11552:2 11565:1 11574:3 11575:2 11578:1 11590:1 11594:2 11605:2 11618:3 11635:1 11639:1 11643:1 11645:1 11653:1 11655:1 11656:1 11660:1 11665:1 11687:1 11691:2 11694:2 11708:1 11712:3 11713:10 11724:2 11743:2 11755:3 11760:4 11766:1 11775:1 11776:2 11781:3 11783:1 11784:4 11787:1 11794:2 11796:1 11810:1 11838:1 11844:1 11845:1 11846:1 11847:1 11862:1 11863:1 11867:2 11869:2 11878:3 11896:1 11898:1 11900:1 11940:1 11941:1 11947:1 11948:1 11949:2 11963:1 11983:1 11986:1 11989:2 11994:2 11996:1 11998:1 12004:2 12012:1 12015:1 12016:1 12019:1 12021:2 12028:1 12029:1 12030:1 12033:1 12043:2 12045:2 12051:1 12055:1 12061:1 12070:1 12076:1 12077:3 12089:1 12100:1 12107:2 12114:1 12118:1 12119:2 12127:3 12141:1 12144:27 12156:1 12176:3 12183:3 12190:1 12194:1 12195:1 12234:1 12242:1 12254:3 12267:6 12269:1 12272:1 12281:1 12286:1 12313:3 12314:3 12322:7 12345:1 12348:1 12360:1 12365:5 12366:3 12370:2 12371:2 12374:1 12380:1 12381:1 12384:3 12389:2 12390:3 12402:1 12408:1 12419:4 12424:2 12426:4 12442:3 12450:1 12459:1 12474:2 12479:1 12486:1 12488:1 12493:1 12494:1 12500:1 12501:2 12516:1 12520:1 12536:1 12544:1 12545:2 12549:2 12552:1 12555:1 12556:1 12557:1 12568:2 12575:1 12580:2 12582:2 12583:1 12588:1 12596:4 12601:1 12630:1 12637:1 12641:3 12664:2 12670:1 12676:1 12685:2 12694:1 12695:1 12703:1 12711:1 12718:1 12725:1 12727:2 12731:4 12734:3 12736:1 12738:1 12745:1 12750:1 12757:1 12758:1 12770:1 12772:1 12775:1 12784:3 12789:2 12801:3 12804:2 12805:1 12809:2 12811:7 12814:1 12824:3 12829:1 12830:3 12840:1 12842:1 12847:1 12861:2 12866:1 12871:1 12872:1 12883:1 12892:2 12899:1 12902:2 12911:1 12919:1 12921:1 12925:1 12926:5 12928:1 12929:1 12931:1 12934:1 12938:1 12944:1 12946:1 12947:4 12948:1 12949:1 12951:1 12956:1 12962:3 12976:1 12982:1 12992:1 13000:2 13005:1 13016:3 13019:1 13048:1 13050:2 13051:2 13064:1 13068:1 13082:1 13091:1 13106:3 13115:1 13121:2 13136:1 13139:1 13153:1 13160:3 13178:2 13179:1 13191:1 13206:1 13208:1 13209:2 13213:3 13216:1 13237:1 13242:3 13245:1 13256:2 13260:1 13276:1 13278:1 13280:2 13302:1 13303:1 13304:1 13307:1 13311:2 13313:2 13316:1 13318:2 13325:1 13326:8 13333:1 13334:1 13337:2 13347:1 13358:1 13366:1 13371:1 13374:3 13378:1 13391:7 13393:1 13405:1 13408:1 13413:1 13421:1 13425:1 13433:2 13437:1 13441:11 13443:7 13445:2 13456:1 13471:3 13474:2 13481:1 13502:1 13521:1 13524:3 13531:1 13536:2 13545:1 13549:1 13554:4 13559:1 13572:1 13581:1 13583:2 13590:1 13596:1 13600:2 13602:2 13604:5 13605:2 13616:2 13625:1 13640:1 13656:1 13659:2 13663:1 13670:1 13680:1 13692:2 13693:2 13696:1 13708:4 13711:1 13714:5 13720:2 13721:1 13728:1 13735:1 13740:1 13741:4 13745:2 13750:1 13751:1 13752:1 13766:5 13803:1 13806:1 13807:8 13819:1 13821:1 13836:1 13838:1 13843:5 13849:1 13860:1 13867:1 13873:1 13875:1 13882:1 13887:5 13896:3 13904:1 13905:1 13906:1 13912:1 13915:3 13922:1 13924:1 13937:1 13939:1 13942:1 13947:1 13952:1 13967:4 13987:1 13990:1 14004:1 14007:1 14016:1 14024:4 14028:2 14032:8 14036:1 14037:2 14043:3 14081:3 14089:1 14094:1 14096:1 14109:3 14120:2 14130:1 14132:1 14140:1 14144:1 14147:1 14151:1 14174:1 14175:2 14179:1 14181:1 14184:1 14186:1 14189:1 14193:1 14195:2 14198:3 14199:3 14201:4 14203:1 14204:3 14206:2 14208:1 14209:2 14212:1 14217:2 14219:1 14220:1 14221:3 14229:1 14242:1 14243:1 14252:1 14254:2 14258:2 14262:6 14280:1 14282:2 14285:1 14295:1 14304:2 14307:1 14314:1 14315:1 14319:1 14321:1 14326:1 14328:1 14363:12 14368:2 14369:6 14400:1 14401:1 14404:2 14406:1 14410:1 14412:1 14414:1 14415:1 14432:1 14433:2 14436:1 14437:1 14442:1 14443:2 14447:1 14449:3 14458:3 14459:1 14470:2 14482:1 14485:1 14490:1 14498:1 14499:1 14513:1 14515:1 14559:1 14564:1 14565:2 14580:1 14581:1 14586:1 14617:1 14623:1 14625:1 14629:1 14631:1 14633:1 14637:1 14642:5 14662:1 14668:4 14678:4 14679:1 14683:2 14697:3 14700:2 14707:1 14709:1 14717:1 14720:1 14725:3 14729:2 14738:1 14747:1 14750:2 14756:3 14758:1 14759:1 14763:1 14769:3 14771:2 14776:1 14802:2 14821:1 14825:1 14832:2 14834:1 14843:1 14844:2 14845:2 14846:1 14850:1 14852:1 14855:1 14857:1 14871:1 14876:1 14877:1 14879:1 14884:1 14889:1 14894:1 14895:4 14896:5 14900:1 14931:3 14936:1 14945:2 14951:1 14954:1 14959:14 14964:2 14977:2 14979:2 14985:2 14988:1 14997:1 15003:3 15004:1 15032:2 15033:2 15037:1 15048:1 15052:1 15054:1 15055:1 15073:1 15096:1 15099:18 15100:2 15108:1 15133:1 15136:2 15138:1 15152:1 15155:1 15165:1 15166:1 15170:1 15184:1 15189:1 15198:1 15201:1 15202:1 15203:1 15205:1 15208:1 15210:4 15222:1 15224:1 15226:1 15229:2 15250:2 15256:2 15260:1 15265:1 15281:2 15285:1 15287:1 15291:1 15298:1 15299:1 15300:1 15301:4 15303:1 15305:1 15306:1 15307:1 15309:1 15311:1 15315:1 15320:3 15331:1 15332:1 15339:1 15340:2 15341:1 15346:1 15348:1 15359:5 15360:1 15369:1 15384:1 15385:1 15391:1 15416:1 15427:1 15434:1 15435:1 15436:1 15437:1 15441:1 15447:1 15448:2 15449:1 15452:1 15456:2 15458:1 15479:2 15486:1 15488:1 15490:1 15492:1 15504:2 15511:1 15514:1 15519:3 15524:1 15529:1 15539:2 15542:1 15544:1 15548:12 15550:1 15551:1 15552:7 15554:4 15569:2 15573:3 15577:1 15578:1 15584:1 15589:2 15591:1 15595:1 15597:2 15607:1 15618:2 15621:1 15633:7 15634:2 15644:1 15654:3 15659:2 15663:1 15664:1 15670:1 15674:4 15699:1 15703:1 15712:7 15715:1 15722:1 15723:1 15727:1 15732:3 15742:1 15745:2 15751:1 15753:2 15754:7 15756:1 15774:2 15787:1 15795:3 15796:1 15799:1 15806:1 15814:4 15821:2 15834:1 15835:1 15845:1 15860:1 15875:2 15879:2 15881:1 15894:1 15896:2 15913:1 15916:1 15918:1 15924:1 15931:1 15936:1 15958:1 15966:2 15975:1 15976:1 15978:2 15992:1 16018:1 16020:2 16027:1 16030:1 16031:1 16040:1 16045:1 16050:1 16051:2 16054:3 16058:1 16059:2 16063:1 16067:1 16071:2 16074:1 16075:5 16078:1 16080:6 16083:1 16088:1 16090:1 16093:3 16099:1 16100:2 16101:3 16105:5 16106:1 16110:1 16114:4 16117:1 16119:1 16127:3 16128:1 16130:1 16131:3 16134:1 16137:1 16140:1 16142:2 16163:3 16172:1 16174:1 16176:1 16177:2 16206:1 16207:1 16211:5 16214:1 16225:7 16226:1 16240:1 16246:1 16249:1 16260:1 16262:1 16269:1 16273:8 16278:1 16285:1 16297:2 16305:1 16312:2 16331:1 16335:1 16339:1 16341:1 16354:1 16357:1 16364:1 16374:4 16376:1 16377:1 16391:1 16393:1 16395:1 16399:1 16411:1 16413:1 16414:1 16415:1 16418:1 16427:1 16430:1 16431:1 16440:1 16443:1 16446:3 16473:1 16498:1 16502:1 16508:1 16519:1 16523:1 16527:1 16531:2 16535:2 16538:1 16551:1 16552:3 16553:2 16560:1 16562:1 16575:2 16580:2 16581:1 16584:1 16585:2 16586:1 16593:1 16596:3 16600:1 16601:1 16602:2 16610:1 16618:1 16621:1 16628:3 16631:2 16650:1 16651:1 16658:1 16667:3 16676:21 16678:1 16679:1 16708:1 16712:1 16725:1 16727:1 16731:5 16745:1 16749:3 16750:2 16753:1 16758:2 16765:1 16771:1 16780:1 16800:1 16801:1 16805:1 16810:2 16816:2 16823:1 16826:2 16828:3 16843:1 16844:3 16850:1 16851:1 16852:1 16854:1 16867:3 16869:1 16874:2 16882:1 16884:1 16890:1 16893:3 16898:1 16921:1 16936:5 16949:1 16951:1 16955:1 16964:1 16981:1 16987:1 16997:1 16999:2 17005:1 17008:1 17028:1 17029:1 17033:1 17045:2 17046:1 17052:3 17053:1 17055:1 17056:1 17062:17 17063:2 17068:1 17071:5 17076:1 17078:2 17079:1 17083:2 17084:1 17089:1 17092:1 17099:2 17111:1 17126:1 17131:2 17132:1 17133:1 17137:1 17144:2 17151:5 17156:5 17168:4 17182:1 17183:2 17189:1 17201:1 17202:1 17209:2 17230:1 17231:1 17235:2 17237:2 17242:1 17251:1 17259:4 17263:3 17266:2 17268:4 17273:1 17279:3 17287:4 17295:2 17301:1 17314:1 17319:1 17332:1 17333:1 17339:1 17345:1 17351:1 17379:1 17390:1 17394:1 17396:1 17397:1 17403:6 17406:1 17414:1 17417:1 17418:1 17429:2 17431:2 17432:1 17438:1 17453:1 17461:1 17463:1 17468:2 17484:1 17495:2 17501:3 17504:2 17518:2 17533:2 17536:1 17543:1 17547:2 17549:2 17553:1 17554:1 17555:2 17565:1 17566:2 17572:2 17591:6 17594:1 17604:1 17608:1 17609:1 17612:1 17616:2 17627:1 17632:1 17634:2 17640:1 17643:1 17652:1 17656:2 17660:1 17670:2 17672:1 17675:2 17676:2 17695:1 17696:2 17753:1 17759:1 17767:1 17769:1 17774:5 17776:4 17798:2 17799:1 17801:1 17809:3 17810:2 17818:1 17823:1 17826:1 17855:1 17881:1 17893:1 17894:1 17897:6 17899:1 17922:1 17925:1 17929:2 17930:1 17935:1 17936:1 17955:1 17971:1 17986:1 17989:1 17996:1 18002:1 18003:1 18012:1 18022:1 18023:1 18027:1 18032:3 18038:1 18045:1 18053:1 18070:2 18074:2 18077:2 18080:1 18083:2 18099:3 18104:1 18126:1 18129:1 18141:1 18143:1 18150:1 18153:2 18175:1 18179:2 18180:3 18191:1 18198:1 18200:1 18211:1 18227:2 18230:1 18245:2 18258:2 18263:1 18264:5 18269:1 18272:1 18274:2 18290:1 18292:2 18297:1 18302:1 18303:1 18304:1 18310:2 18312:2 18319:1 18333:1 18339:1 18347:1 18357:3 18358:1 18360:2 18362:1 18380:3 18383:2 18386:1 18390:1 18393:1 18395:1 18398:2 18399:2 18415:1 18432:1 18434:1 18438:1 18441:1 18451:1 18453:1 18455:1 18459:2 18465:1 18499:1 18523:6 18525:1 18531:3 18534:1 18535:2 18542:1 18545:1 18546:3 18549:1 18556:1 18564:1 18566:1 18575:1 18586:1 18598:1 18603:1 18606:15 18613:6 18616:2 18627:2 18629:1 18634:2 18638:2 18640:1 18644:2 18652:1 18656:1 18658:1 18665:2 18666:1 18677:1 18685:1 18687:2 18689:3 18692:1 18693:1 18697:1 18703:1 18707:1 18709:4 18710:1 18711:4 18713:1 18714:1 18717:4 18718:2 18719:1 18725:2 18729:1 18735:1 18742:3 18751:1 18752:2 18760:1 18763:1 18765:1 18769:2 18770:1 18780:1 18791:2 18796:1 18807:1 18810:1 18815:1 18835:1 18851:5 18865:1 18872:1 18881:2 18893:1 18897:1 18898:1 18904:2 18909:2 18918:1 18927:1 18939:1 18947:1 18948:1 18973:1 19008:1 19013:1 19014:2 19015:1 19023:1 19025:2 19026:1 19037:1 19048:1 19051:1 19053:1 19055:1 19062:1 19064:2 19085:1 19093:2 19108:1 19114:1 19115:1 19117:5 19119:1 19121:3 19126:5 19145:1 19152:2 19155:1 19168:1 19186:1 19215:7 19228:1 19235:1 19270:1 19278:2 19280:1 19292:1 19296:2 19311:1 19314:1 19315:4 19322:1 19324:4 19335:2 19339:2 19340:1 19342:1 19344:2 19353:3 19364:1 19365:1 19367:2 19386:8 19388:2 19391:1 19407:1 19413:2 19418:2 19444:1 19445:1 19450:4 19452:1 19454:1 19471:1 19484:1 19491:1 19495:1 19496:1 19498:2 19503:2 19506:1 19508:1 19509:1 19512:2 19519:2 19524:9 19525:1 19535:2 19536:3 19537:1 19538:3 19545:1 19549:1 19551:3 19555:1 19556:1 19558:3 19560:1 19568:1 19578:1 19582:1 19586:2 19595:1 19597:1 19598:1 19600:5 19602:2 19606:1 19615:1 19616:1 19620:1 19621:1 19630:1 19633:1 19638:3 19645:2 19649:2 19652:1 19655:23 19659:1 19664:5 19667:1 19680:3 19692:1 19696:3 19700:1 19715:3 19718:2 19720:2 19721:1 19724:3 19727:3 19733:1 19747:1 19757:2 19758:1 19777:2 19785:1 19786:1 19792:3 19816:3 19829:1 19833:1 19851:1 19857:6 19863:1 19865:2 19891:1 19896:1 19903:2 19908:3 19910:1 19913:1 19918:5 19929:7 19930:1 19936:5 19965:1 19974:1 19975:6 19977:1 19984:1 19991:3 19992:1 19995:1 19998:1 19999:2 20011:1 20015:1 20020:1 20022:1 20030:3 20034:6 20035:1 20037:1 20038:2 20039:1 20040:2 20041:1 20044:1 20047:1 20049:8 20050:3 20052:1 20069:1 20072:1 20075:1 20076:1 20078:1 20080:1 20081:1 20089:1 20101:1 20102:7 20109:1 20110:1 20117:2 20123:1 20132:1 20160:1 20170:1 20171:1 20185:1 20188:1 20209:1 20210:2 20216:2 20223:1 20227:1 20243:1 20251:1 20256:1 20258:2 20262:1 20264:1 20266:1 20267:3 20276:2 20277:1 20284:1 20298:7 20305:3 20363:1 20366:1 20368:1 20378:1 20379:1 20380:1 20381:1 20382:1 20383:1 20387:2 20390:8 20393:2 20396:1 20402:1 20409:3 20413:1 20430:2 20440:2 20451:1 20452:1 20453:1 20464:1 20466:1 20469:1 20482:8 20494:6 20502:1 20519:3 20529:1 20552:1 20580:1 20588:1 20589:2 20598:2 20603:1 20607:1 20614:1 20618:2 20621:1 20628:1 20633:1 20636:1 20664:1 20669:1 20670:2 20696:1 20697:1 20702:1 20706:1 20713:1 20718:1 20724:1 20734:1 20735:1 20746:1 20758:1 20792:1 20795:1 20817:1 20822:2 20828:2 20844:1 20845:2 20846:1 20848:3 20851:5 20855:2 20874:1 20875:1 20878:2 20880:1 20892:1 20903:1 20912:1 20933:1 20940:1 20955:1 20956:1 20966:1 20980:1 21002:1 21034:3 21072:1 21080:3 21083:4 21096:1 21099:2 21107:2 21110:2 21111:2 21113:1 21115:1 21118:2 21121:1 21142:1 21145:1 21151:1 21153:1 21163:1 21168:1 21180:1 21186:1 21188:2 21190:1 21202:1 21207:1 21213:4 21216:1 21223:2 21227:1 21228:1 21238:1 21244:2 21262:1 21265:2 21271:4 21274:1 21276:2 21284:1 21298:2 21304:1 21308:1 21315:1 21318:1 21333:1 21339:1 21341:1 21349:2 21353:1 21361:1 21362:1 21374:4 21378:1 21379:2 21386:1 21402:1 21404:1 21443:1 21446:1 21451:3 21459:1 21463:1 21464:1 21467:1 21470:2 21494:1 21509:2 21510:4 21512:1 21538:2 21539:1 21540:1 21545:1 21547:1 21551:2 21568:1 21579:1 21581:1 21586:2 21589:2 21610:1 21613:1 21619:1 21623:1 21626:3 21635:3 21637:4 21639:1 21640:4 21646:1 21667:1 21674:2 21677:1 21690:1 21703:1 21707:5 21713:1 21715:1 21718:1 21777:1 21820:2
|
ee492bf24fedb844baeec578de6d5262d1402fad | 449d555969bfd7befe906877abab098c6e63a0e8 | /3472/CH47/EX47.2/Example47_2.sce | 4b81630aec61ccd8537d3b96c3f0d268100ebd48 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 858 | sce | Example47_2.sce | // A Texbook on POWER SYSTEM ENGINEERING
// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
// DHANPAT RAI & Co.
// SECOND EDITION
// PART IV : UTILIZATION AND TRACTION
// CHAPTER 9: ELECTRIC TRACTION SYSTEMS AND POWER SUPPLY
// EXAMPLE : 9.2 :
// Page number 820
clear ; clc ; close ; // Clear the work space and console
// Given data
D = 50.0 // Distance between poles(m)
w = 0.5 // Weight of trolley wire per metre(kg)
T = 520.0 // Maximum tension(kg)
// Calculations
l = D/2 // Half distance b/w poles(m)
d = w*l**2/(2*T) // Sag(m)
wire_length = 2*(l+(2*d**2/(3*l))) // Length of wire required(m)
// Results
disp("PART IV - EXAMPLE : 9.2 : SOLUTION :-")
printf("\nMaximum sag, d = %.4f metres", d)
printf("\nLength of wire required = %.f metres", wire_length)
|
9942f0dc7bef640d19de2f2e7c0b8fde60190bf5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1757/CH5/EX5.3/EX5_3.sce | 4f7c92ad1b3271f0b46b08731fcaef43bc52345c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 403 | sce | EX5_3.sce | //Example5.3 // find the input offset voltage of an op-amp circuit
clc;
clear;
close;
Vo = 90.2 ; //mV // output voltage
R1 = 2 ; //kilo ohm // input resistence
R2 = 150 ; //kilo ohm // feedback resistence
// the input offset voltage (Vos) of an op-amp circuit is defined as
Vos = ((R1)/(R1+R2)*Vo) ;
disp('the input offset voltage (Vos) of an op-amp circuit is = '+string(Vos)+' mV ');
|
34a8b1cc48078e039c265c4965a335945f38131d | 256f0055d000d9c71c41cf0df7a7a750619fbfd0 | /LetraN.sce | 227caa936cdc5670a4df555cab8266217523c8fd | [] | no_license | ItaloOliveiraF/Sistema-de-Transmiss-o-de-Dados | efec24f05af567e24d5450d3e2513865b4ce5117 | dec4f2b2c1f4f9b701de1737a5efe2bbae465811 | refs/heads/master | 2020-04-05T09:29:00.397099 | 2018-12-21T20:36:15 | 2018-12-21T20:36:15 | 156,759,189 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 944 | sce | LetraN.sce | clear
clc
load('C:\Users\italo\OneDrive\Documentos\UFRN\std\projeto2\sinaisAnaDelta.dat', 's_q_ana')
exec('C:\Users\italo\OneDrive\Documentos\UFRN\std\projeto2\auxiliares\modulacoes.sce')
b=(s_q_ana+1)/2
[t1,s1]=bask(b)
[t2,s2]=bpsk(b)
[t3,s3]=bfsk(b)
figure()
plot(t1(1:2000),s1(1:2000),'LineWidth',3)
ax=get('current_axes')
ax.font_size = 5
ax.x_label.text = 'Tempo'
ax.x_label.font_size = 5
ax.y_label.text = 'Amplitude'
ax.y_label.font_size = 5
h1.font_size = 4;
figure()
plot(t2(1:2000),s2(1:2000),'LineWidth',3)
ax=get('current_axes')
ax.font_size = 5
ax.x_label.text = 'Tempo'
ax.x_label.font_size = 5
ax.y_label.text = 'Amplitude'
ax.y_label.font_size = 5
h1.font_size = 4;
figure()
plot(t3(1:2000),s3(1:2000),'LineWidth',3)
ax=get('current_axes')
ax.font_size = 5
ax.x_label.text = 'Tempo'
ax.x_label.font_size = 5
ax.y_label.text = 'Amplitude'
ax.y_label.font_size = 5
h1.font_size = 4;
|
30d954ac48815640fce56fd8e842002adc8221eb | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/bow/bow.11_9.tst | 07299c3b884509a3995515f8494d9e44fae1265d | [] | 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 | 3,703 | tst | bow.11_9.tst | 11 4:0.3333333333333333 36:0.14285714285714285 40:1.0 76:0.25 93:0.07142857142857142 114:1.0 121:1.0 220:1.0 424:0.3333333333333333 683:1.0
11 44:0.5 95:0.3333333333333333 118:1.0 122:1.0 231:1.0 259:1.0 666:1.0
11 76:0.25 93:0.07142857142857142 198:0.1111111111111111 209:0.25 221:1.0 228:1.0 259:1.0 479:0.5 1005:1.0
11 50:1.0 122:1.0 400:0.4 413:1.0
11 93:0.07142857142857142 508:0.5 733:1.0 915:1.0
11 4:0.16666666666666666 17:0.14285714285714285 19:0.5 122:1.0 235:1.0 361:1.0 416:1.0 483:1.0 815:2.0 1165:3.0
11 40:1.0 57:1.0 236:1.0 312:0.5 343:0.06666666666666667
11 36:0.2857142857142857 40:2.0 57:1.0 69:0.25 70:0.5 92:0.3333333333333333 114:1.0 122:1.0 192:0.16666666666666666 243:1.0 343:0.06666666666666667 395:1.0 647:0.5 943:1.0
11 92:0.6666666666666666 93:0.07142857142857142 114:1.0 1052:1.0
11 1:0.025 19:0.3333333333333333 62:0.25 95:0.3333333333333333 209:0.5 221:1.0 370:1.0 431:1.0 1420:1.0
11 4:0.16666666666666666 36:0.14285714285714285 40:2.0 62:0.25 93:0.07142857142857142 114:1.0 228:1.0 253:1.0 267:0.5 283:1.0 470:1.0 1052:1.0
11 4:0.16666666666666666 17:0.8571428571428571 40:2.0 53:0.16666666666666666 55:1.0 92:0.3333333333333333 93:0.14285714285714285 114:1.0 139:1.0 158:0.25 259:1.0 343:0.13333333333333333 647:0.5 815:1.0 979:1.0
11 36:0.2857142857142857 40:2.0 57:1.0 69:0.25 70:0.5 92:0.3333333333333333 114:1.0 122:1.0 192:0.16666666666666666 243:1.0 343:0.06666666666666667 395:1.0 647:0.5 943:1.0
11 92:0.6666666666666666 93:0.07142857142857142 114:1.0 1052:1.0
11 57:1.0
11 117:0.25
11 1046:1.0
11 4:0.16666666666666666 17:0.14285714285714285 19:0.16666666666666666 55:1.0 57:1.0 62:0.25 76:0.25 122:1.0 125:0.5 185:1.0 209:0.5 472:1.0 479:0.5 854:1.0 994:1.0
11 4:0.16666666666666666 19:0.16666666666666666 40:1.0 76:0.5 93:0.07142857142857142 147:1.0 185:1.0 202:0.25 209:0.5 221:1.0 479:0.5 1043:1.0 1122:1.0
11 4:0.16666666666666666 13:1.0 17:0.2857142857142857 55:1.0 68:1.0 69:0.25 93:0.07142857142857142 208:0.2 209:0.5 220:1.0 252:1.0 446:1.0 1081:1.0 1573:1.0
11 17:0.14285714285714285 62:0.25 95:0.3333333333333333 114:1.0 176:1.0 209:0.25 218:1.0 220:1.0 479:0.5 762:1.0 1038:1.0 1039:1.0
11 4:0.3333333333333333 17:0.14285714285714285 40:1.0 51:0.2 55:1.0 83:1.0 93:0.14285714285714285 96:1.0 104:1.0 114:1.0 122:1.0 156:0.5 209:0.25 231:1.0 347:0.5 413:1.0 491:1.0 1553:1.0
11 4:0.16666666666666666 38:0.3333333333333333 62:0.25 114:1.0 209:0.25 221:1.0
11 15:1.0 70:0.25 93:0.07142857142857142 209:0.25 748:1.0 994:1.0 1265:1.0
11 209:0.25 479:0.5
11 4:0.16666666666666666 10:0.125 17:0.14285714285714285 36:0.14285714285714285 38:0.3333333333333333 40:1.0 57:1.0 76:0.25 85:1.0 93:0.07142857142857142 114:1.0 209:0.5 479:1.0 480:1.0 734:0.3333333333333333 997:1.0 998:1.0 1047:1.0 1214:1.0
11 15:1.0 96:1.0 209:0.25 220:1.0 479:0.5 638:0.5 994:1.0 1043:1.0
11 4:0.16666666666666666 10:0.125 93:0.07142857142857142 114:1.0 209:0.25 221:1.0 259:1.0 728:1.0 942:1.0 1650:1.0
11 10:0.125 17:0.14285714285714285 51:0.2 93:0.07142857142857142 263:1.0 279:1.0 298:1.0 479:0.5 946:1.0 1039:1.0
11 36:0.14285714285714285 40:1.0 76:0.25 93:0.07142857142857142 283:1.0 479:0.5 939:1.0 951:1.0 1043:1.0 1167:1.0 1594:1.0
11 4:0.16666666666666666 17:0.14285714285714285 19:0.16666666666666666 40:1.0 51:0.2 114:1.0 123:1.0 139:1.0 158:0.25 209:0.25 347:0.5 950:1.0 1054:0.5 1124:0.5
11 62:0.25 258:0.25 472:1.0 939:1.0 957:1.0
11 4:0.16666666666666666 186:1.0 345:1.0 1214:1.0
11 17:0.14285714285714285 117:0.25 122:1.0 939:1.0 1549:1.0
11 4:0.3333333333333333 10:0.125 36:0.2857142857142857 45:1.0 55:1.0 135:1.0 198:0.1111111111111111 209:0.25 973:1.0
11 4:0.3333333333333333 55:1.0 62:0.25 220:1.0 1036:1.0
11 4:0.16666666666666666 122:1.0 400:0.2 974:1.0
|
a07be16fec42ce2ea58a798890e543d27412b781 | 1603404a66ca1e24f41670ecff65a078e611bf97 | /cron/saltcheck-tests/config/file.tst | 527f10fcb5692ed84c2106043ff25d6b22f7e5ee | [
"Apache-2.0"
] | permissive | saltstack-formulas/cron-formula | 1a97b5ca8e271c813e88314ecc8e30c8481273ba | 2f4c7889412c14dff2040efa3b87a4415d5770ac | refs/heads/master | 2022-07-28T11:11:01.481341 | 2022-07-17T18:42:22 | 2022-07-17T18:42:22 | 98,590,657 | 7 | 30 | Apache-2.0 | 2022-01-14T10:39:30 | 2017-07-28T00:32:16 | Ruby | UTF-8 | Scilab | false | false | 1,849 | tst | file.tst | # -*- coding: utf-8 -*-
# vim: ft=sls
{%- set cron = salt['pillar.get']('cron', {}) %}
{%- for task, task_options in cron.get('tasks', {}).items() %}
{%- set cron_type = task_options.type|d('present') %}
validate_cron.{{ task }}_{{ cron_type }}:
module_and_function: cron.get_entry
args:
- {{ task_options.user|d('root') }}
- {{ task }}
{%- if cron_type == 'absent' %}
assertion: assertFalse
{%- else %}
assertion: assertEqual
assertion_section: identifier
expected-return: {{ task }}
{%- endif %}
{%- if cron_type == 'present' %}
validate_cron.{{ task }}_commented:
module_and_function: cron.get_entry
args:
- {{ task_options.user|d('root') }}
- {{ task }}
assertion: {{ 'assertTrue' if task_options.commented|d(False) else 'assertFalse' }}
assertion_section: commented
{#- Note: `special` is `spec` in the module #}
{%- for section in ['minute', 'hour', 'daymonth', 'month', 'dayweek', 'comment', 'spec'] %}
{%- if section in task_options %}
{%- set expected = task_options[section] %}
validate_cron.{{ task }}_{{ section }}:
module_and_function: cron.get_entry
args:
- {{ task_options.user|d('root') }}
- {{ task }}
assertion: {{ 'assertLessEqual' if expected == 'random' else 'assertEqual' }}
assertion_section: {{ section }}
expected-return: '{{ 0 if expected == 'random' else expected }}'
{%- endif %}
{%- endfor %}
{%- endif %}
{%- endfor %}
{%- for env, env_options in cron.get('env', {}). items() %}
{%- set env_type = env_options.type|d('present') %}
validate_cron.{{ env }}_{{ env_type }}:
module_and_function: cron.raw_cron
args:
- {{ env_options.user|d('root') }}
assertion: {{ 'assertNotIn' if env_type == 'absent' else 'assertIn' }}
expected-return: '{{ env_options.name }}={{ env_options.value }}'
{%- endfor %}
|
7e0728b90120a4d3a4edf71c2e3892c11853866f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3768/CH10/EX10.4/Ex10_4.sce | c16d259c605cdd44dd6f782ac8101dea5b32f635 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 312 | sce | Ex10_4.sce | //Example number 10.4, Page number 225
clc;clear;
close;
//Variable declaration
Hc=2*10**3; //critical magnetic field(A/m)
r=0.02; //radius(m)
//Calculation
Ic=2*%pi*r*Hc; //critical current(amp)
//Result
printf("critical current is %.1f A",Ic)
//answer in the book varies due to rounding off errors
|
3b2d063025501e9d27f1ff0382a13e9b9b237ef0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1928/CH3/EX3.17.13/ex_3_17_13.sce | e2077bdeec57275d12666cf21046025775e555ff | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 687 | sce | ex_3_17_13.sce | //Chapter-3,Example3_17_13,pg 3-40
n1=10 //no of turns per cm
i=2 //current
B=1 //flux density
u0=4*%pi*10^-7 //permeability of free space
n=n1*100 //no turns per m
H=n*i
printf(" 1) magnetic intensity =")
disp(H)
printf("Amp-turn/meter")
//calculation for magnetization
I=B/u0-H
printf(" 2) magnetization =")
disp(I)
printf("Amp-turn/meter")
//relative permeability
ur=B/(u0*H)
printf(" 3) Relative Permeability of the ring =")
disp(int(ur))
|
bc8b6ddbbbab1e90d1d3280515a494df3e632008 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2621/CH8/EX8.10/Ex8_10.sce | 9649bd98d04e81abf626dd2b21769751d75ad053 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 212 | sce | Ex8_10.sce | // Example 8.10
clc;
clear;
close;
// Given data
format('v',9);
V_UT= 5;// in V
V_LT= -5;// in V
// Hysteresis voltage,
Vhy= V_UT-V_LT;// in V
disp(Vhy,"The hysteresis voltage in volts is : ")
|
efe8ae97f8e6f4b3d1df16735744ea6f4f8c637c | 449d555969bfd7befe906877abab098c6e63a0e8 | /821/CH5/EX5.20/5_20.sce | 0bf265fee78091bbb74ec4575ed0d2f4cf539565 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 866 | sce | 5_20.sce | printf('The maximum possible efficiency is obtained only in a reversible carnots cycle according to which ME=dT/T.');
T=300;//initial temperature of steam engine in kelvin//
T1=373;//operating temperature in kelvin//
ME1=(T1-T)/T1;//maximum possible efficiency for temperature range of 300k to 373k//
printf('\nMaximum possible efficiency for operating temperature between 300K and 373K=ME1=%f',ME1);
T2=630;//operating temperature in kelvin//
ME2=(T2-T)/T2;//maximum possible efficiency for temperature range of 300k to 630k//
printf('\nMaximum possible efficiency for operating temperature between 300K and 630K=ME1=%f',ME2);
T3=510;//operating temperature in kelvin//
ME3=(T3-T)/T3;//maximum possible efficiency for temperature range of 300k to 510k//
printf('\nMaximum possible efficiency for operating temperature between 300K and 510K=ME3=%f',ME3);
|
e0ebf81b8122c87b802a9cde694f6bf5208de48c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1268/CH6/EX6.4/6_4.sce | 3d9f8883ba68bfff32d6fc028ff30c842e66f769 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 270 | sce | 6_4.sce | clc;
disp("Example 6.4")
r=0.5 // radius in cm
volume=4*%pi*r*r*r/3
mass=0.05 // in g
density=mass/volume
liquiddensity=0.9 // in g/cc
if(density<liquiddensity)
F=volume*981*(density-liquiddensity)
disp(F,"The drag force is ")
disp(" dynes")
end
|
1a164e8839a2482a5ae5e7248d219055f8561d3f | 717ddeb7e700373742c617a95e25a2376565112c | /1592/CH10/EX10.8/example_10_8.sce | e5f1e553c7088bc7d7529a8df8668f7989fc9bed | [] | 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 | 385 | sce | example_10_8.sce | //Scilab Code for Example 10.8 of Signals and systems by
//P.Ramakrishna Rao
//Auto Correlation
clear;
clc;
clear x n a;
k=1;
a=0.8;
for n=-30:30;
x(k)=a^(n)*u(n);
k=k+1;
end
length(x)
//computation of auto correlation sequence;
r = xcorr(x);
n=-60:60;
a=gca();
a.x_location="origin";
a.y_location="origin";
plot2d3(n,r,-4);
title('rxx_auto-correlation');
|
a9fb123e200663ad0ebba4f9df3a40fce743305b | 3bfc865f2b3d85f6e4f194cd88c4b8be442915ac | /read_log.sce | 460367bc73cff6339e16db5b68e5adcc080ea768 | [] | no_license | mole80/chauffage_log_wpf | 28c15b70be8a1ef4b4408a6cec104cd5ce1b4163 | 271a0be9cceed45623168147e835660f8d15b1d7 | refs/heads/master | 2020-04-03T19:18:27.712329 | 2018-10-31T08:23:24 | 2018-10-31T08:23:24 | 155,518,844 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,210 | sce | read_log.sce | clear
clc
xdel(winsid())
//txt = mgetl("C:\prive\chauffage\log_wpf\chauffage\bin\Debug\log_30_10.csv")
txt = mgetl("C:\prive\chauffage\log_wpf\chauffage\bin\Debug\log_31_10.csv")
//csv = csvRead("C:\prive\chauffage\log_wpf\chauffage\bin\Debug\log_30_10.csv")
disp(size(txt))
function [tick] = GetTime(timeAsString)
time = strsplit( timeAsString , '_')
tick = datenum( [2018, strtod( time([2,1,3,4,5])' ) ] )
endfunction
header = strsplit(txt(1) ,',')'
start_tick = GetTime( strsplit(txt(2) ,',')(1) )
ind = 1
for i = 2:size(txt)(1)
split = strsplit(txt(i) ,',')
tmp = ( GetTime( split(1) ) - start_tick)*24
t(ind) = tmp
val(ind,:) = split'
val(ind,1) = string(tmp)
ind = ind+1
end
val( find(val=="C") ) = "0"
val( find(val=="O") ) = "1"
val = strtod(val)
//disp(t)
//disp(val(1,:))
disp( header )
// Colors
// 1 : noir
// 2 : bleu
// 3 : vert
// 4 : bleu claire
// 5 : rouge
// 6 : violet
// 7 : jaune
// 8 : blanc
// 9 : bleu
//temp_5 = 17
//temp_1 = 5
room_data_size = 7
temp_start = 34
temp_end_0 = 35
open_0 = 36
targ_0 = 32
meas_0 = 33
room = 1
temp_end = temp_end_0 + room_data_size*room
open = open_0 + room_data_size*room
targ = targ_0 + room_data_size*room
meas = meas_0 + room_data_size*room
scf()
title("Room " + string(room))
subplot(2,1,1)
plot(t,val(:,temp_start)); gce().children.foreground = 2; gce().children.thickness = 2
plot(t,val(:,temp_end)); gce().children.foreground = 6; gce().children.thickness = 2
plot(t,val(:,targ)); gce().children.foreground = 3; gce().children.thickness = 2
plot(t,val(:,meas)); gce().children.foreground = 5; gce().children.thickness = 2
ax = gca()
ax.data_bounds=[0,17,0;max(t),22,0]
//ax.y_label.text = "Dout# (LSB)";
ax.x_label.text = "Time [h]";
ax.font_size = 3
ax.x_label.font_size = 4
ax.y_label.font_size = 4
legend( header([temp_start,temp_end,targ,meas]) )
xgrid
subplot(2,1,2)
plot(t,val(:,open)); gce().children.foreground = 2; gce().children.thickness = 2
ax = gca()
ax.data_bounds=[0,-2,0;max(t),2,0]
//ax.y_label.text = "Dout# (LSB)";
//ax.x_label.text = "Time (10ms)";
ax.font_size = 3
ax.x_label.font_size = 4
ax.y_label.font_size = 4
legend( header([open]) )
xgrid
|
fe5f557d80ca2685c25aeb7de54a5f8c2a5178dd | 7b7be9b58f50415293def4aa99ef5795e6394954 | /sim/scripts/setthermo.tst | 8c14981a6f7991ca7b7fce155b117f45f542bfdb | [] | no_license | sabualkaz/sim42 | 80d1174e4bc6ae14122f70c65e259a9a2472ad47 | 27b5afe75723c4e5414904710fa6425d5f27e13c | refs/heads/master | 2022-07-30T06:23:20.119353 | 2020-05-23T16:30:01 | 2020-05-23T16:30:01 | 265,842,394 | 0 | 0 | null | 2020-05-21T12:26:00 | 2020-05-21T12:26:00 | null | UTF-8 | Scilab | false | false | 1,287 | tst | setthermo.tst | #Test the creation of the thermo cases and preserving compounds
$thermo1 = VirtualMaterials.RK
. -> $thermo1
/thermo1 + METHANE ETHANE PROPANE ISOBUTANE
$thermo2 = VirtualMaterials.RK
$thermo2 + ISOBUTANE PROPANE METHANE ETHANE
$thermo3 = VirtualMaterials.Advanced_Peng-Robinson
$thermo3 + PROPANE ISOBUTANE n-BUTANE ISOPENTANE n-PENTANE n-OCTANE
$thermo4 = VirtualMaterials.RK
thermo5 = VirtualMaterials.RK
$thermo5 + NITROGEN CARBON_DIOXIDE HYDROGEN_SULFIDE
/s = Stream.Stream_Material()
/s.In.T = 20
/s.In.P = 101
/s.In.MoleFlow = 10
/s.In.Fraction = 1 2 3 4
/s.In
/sep = Flash.SimpleFlash()
/sep.In -> /s.Out
copy /
paste /
/RootClone -> $thermo2
/RootClone.s.In
/RootClone -> $thermo3
/RootClone.s.In
/RootClone -> $thermo1
/RootClone.s.In
/RootClone -> $thermo5
/RootClone.s.In
/RootClone.s.In.Fraction = 1 2 3
/RootClone.s.In
/RootClone -> $thermo4
/RootClone.s.In
/RootClone -> $thermo2
/RootClone.s.In
/RootClone.s.In.Fraction = 1 2 3 4
/RootClone.s.In
/RootClone ->
/RootClone.s.In
/RootClone -> $thermo2
/RootClone.s.In
copy /s /sep
paste /RootClone
/RootClone.sClone.In
copy /
paste /RootClone
/RootClone.RootClone.s.In
/RootClone.RootClone.RootClone.s.In
|
1315118ceb0fab8c563513d72bcaa357e1ec9da6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3638/CH17/EX17.3/Ex17_3.sce | 1790eb175d8cd55197be489f70598701ef1f22c2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 594 | sce | Ex17_3.sce | //Introduction to Fiber Optics by A. Ghatak and K. Thyagarajan, Cambridge, New Delhi, 1999
//Example 17.3
//OS=Windows XP sp3
//Scilab version 5.5.2
clc;
clear;
//given
lambda0=633e-9;//Wavelength in m
b=62.5e-6;//Outer radius of silica fiber in m
N=1;//Number of loops formed by the fiber
C=0.133;//Value of constant C for a silica fiber at 633 nm
R=8*%pi*C*(b^2)*N/lambda0;//Radius of the circular loop corresponding to a quarter plate formed by the fiber in m
mprintf("\n R= %.2f cm",R/1e-2);//Division by 10^(-2) to convert into cm
//The answers vary due to round off error
|
4c1def4c689299306cd9f9ff467efef3852a54f4 | 8aff21ee3944bdacbff38a386556c89c38377c6a | /zero_mtlbtestcase.sce | adecfdcc8026c1ff850e3c16258311344ac41833 | [] | no_license | rutup1595/control-system | bd4704a4aa437a66260301a22adb5e55b49c5c84 | b30d559d8835cd278cc6d6bb81f821cdfcc9ee55 | refs/heads/master | 2021-01-17T10:17:03.192056 | 2019-10-10T05:28:46 | 2019-10-10T05:28:46 | 59,283,553 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 283 | sce | zero_mtlbtestcase.sce | s=poly(0,'s');
sys=syslin('c',(4.2*s^2 +0.25*s-0.004)/(s^2+9.6*s+17)); //example taken from http://in.mathworks.com/help/control/ref/zero.html
[z1 b1]= zero(sys)
aa=pid(rand(2,2,3),3,4,5);
[z2 b2]=zero(aa,1);
//execute for array(sys,1)
a=ssrand(2,2,3)
[z3 b3]=zero(a)
|
30717d793f43f8a748e4b9a6b32ab8b5c016bc59 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1922/CH4/EX4.13/4_13.sce | 022534886b6d0c4084f1f5d60efae2d400730bff | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,033 | sce | 4_13.sce | clc
clear
//Initialization of variables
R=8314.3
T=700 //K
T2=437.5 //K
T3=350 //K
T4=T3
p2=0.552 //Mpa
p1=2.758 //Mpa
p3=0.345 //Mpa
cp=29.3
R0=8.3143
k=1.4
n=1
P0=0.103 //Mpa
//calculations
cv=cp-R0
p3=p2*T3/T2
p3=0.345
T5=T4*(p1/p3)^((k-1)/k)
G1=n*R*T*log(p2/p1)
V700=R*10^3 *T/(p2*10^9)
Sa= 209
Sb=199.2
Sc=204.7
S2=(T2-T)/6 *(Sa+4*Sc+Sb )
G2=V700*(p3-p2)*10^3 -S2
saa=199.2
sbb=192.6
savg=(saa+sbb)*0.5
G3=-savg*(T3-T2)
pmid=(p3+p2)/2
vmid=2.88
sav=192.7
v4=8.435 //m^3
v5=1.911 //m^3
integ=(p1-p3)*10^3 /6 *(v4+4*vmid+v5)
G4=integ - sav*(T5-T3)
Sav=194.25
G5= -Sav*(T-T5)
Gt=G1/10^3 +G2+G3+G4+G5
//results
printf("in case 1, Change in gibbs free energy = %d kJ",G1/10^3)
printf("\n in case 2, Change in gibbs free energy = %d kJ",G2)
printf("\n in case 3, Change in gibbs free energy = %d kJ",G3)
printf("\n in case 4, Change in gibbs free energy = %d kJ",G4)
printf("\n in case 5, Change in gibbs free energy = %d kJ",G5)
printf("\n Net change in gibbs energy = %d kJ",Gt)
|
3adfa7c82d73de5b9f22efc119a0277332bfc93a | 449d555969bfd7befe906877abab098c6e63a0e8 | /647/CH6/EX6.17/Example6_17.sce | 58e24cee97eae68900078633e7adafebef9f7c51 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 461 | sce | Example6_17.sce | clear;
clc;
// Example: 6.17
// Page: 222
printf("Example: 6.17 - Page: 222\n\n");
// This problem involves proving a relation in which no mathematics and no calculations are involved.
// For prove refer to this example 6.17 on page number 222 of the book.
printf(" This problem involves proving a relation in which no mathematics and no calculations are involved.\n\n");
printf(" For prove refer to this example 6.17 on page 222 of the book."); |
ef5c4a8d3a30b64cac94fa9e6d0cc1d797156c70 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3537/CH5/EX5.23/Ex5_23.sce | e653a892ffc7cdd2377b8bfc2f7d7286ba864ae4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 209 | sce | Ex5_23.sce | //Example 5_23
clc();
clear;
//To find the interplanar spacing
n=2
lamda=0.12 //units in nm
theta=28 //units in degrees
d=(n*lamda)/(2*sin(theta*%pi/180))
printf("Interplanar spacong d=%.2f nm",d)
|
fbc78981adfdd57e61d6f83b39d9b756cc9f7dd3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /62/CH5/EX5.42/ex_5_42.sce | df9cd6333210a83f39ccbfdac018e178768564af | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 522 | sce | ex_5_42.sce | clear;
clc;
close;
a=2;
t=-10:0.1:10;
x=[exp(a*t(1:find(t==0))) exp(-a*t(find(t==0)+1:$))];
d=gca()
plot(t,x);
poly1=d.children.children;
poly1.thickness=3;
poly1.foreground=2;
xtitle('x(t)','t')
disp("1/2*exp(-a*|t|) is even part of 1/2*exp(-a*t)*u(t)");
disp("even(x(t)) <--> real(X(w))=a/(a^2+w^2)");
w=-10:0.01:10;
Xw=2*a*ones(1,length(w))./(a^2+w^2);
figure
d=gca()
plot(w,Xw);
poly1=d.children.children;
poly1.thickness=3;
poly1.foreground=2;
xtitle('X(w)','w')
//not sure if it works properly |
f412152efa2d1671724aace96d08f82a66bcbcd1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3020/CH21/EX21.6/ex21_6.sce | b06e18926dd3cd4a525508dc3d4670d03af61604 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 378 | sce | ex21_6.sce | clc;
clear all;
N = 2.7e25;//no of atoms
e0 = 8.854e-12;//permittivity of vacume
r = 0.384e-9;//radius of Ar atom
xe = 4*%pi*e0*(r^3);//electronic polarisability of Ar
x = (N*xe)/(3*e0);//temporary variable
er = (1+2*x)/(1-x);//dielectric constant of Ar atom
disp('',er,'dielectric constant of Ar atom is:')
//Wrong answer printed in textbook... Checked in calculator
|
460ec65fe06174dbff6e73203ecbf88e03f18314 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2354/CH18/EX18.1/18_1.sce | 1da993fecc92a191e83faadd61625cac1ed37ee5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 18_1.sce | //example 18.1
clc; funcprot(0);
// Initialization of Variable
G1=600;//G1=Glambda
alpha=0.85;
G=G1*(2.5-1)*0.5+G1*0.5*(0.5)+G1*(1.0-0.5);
disp(G,"total radiation in W/m^2");
Gabs=alpha*G;
disp(Gabs,"absorbed radiation in W/m^2");
J=0.15*G+525;
disp(J,"total radiosity");
qrad=525-Gabs;
disp(qrad,"net radiative flux leaving the surface in W/m^2");
clear()
|
831aabd94376d9cb023154d3c652e04d833f5fd1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1529/CH17/EX17.6/17_06.sce | 34e92501a0177d8a9f1f4a51baf8d21f9a3ae2b4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 508 | sce | 17_06.sce | //Chapter 17, Problem 6
clc;
fc=25*10^3; //cut-off frequency
R0=600; //nominal impedance
C=1/(4*%pi*R0*fc); //capacitance in farad
L=R0/(4*%pi*fc); //inductance in henry
printf("Inductance L = %f mH\n\n",L*10^3);
printf("Capacitance C = %f pF\n\n",C*10^12);
printf("A high-pass T-section filter is shownin Fig. 17.19(a),\n\n");
printf("A high-pass pi-section filter is shownin Fig. 17.19(b),\n\n");
|
06486e553d6f0071ee0b2f743f7128178292ce82 | 449d555969bfd7befe906877abab098c6e63a0e8 | /896/CH2/EX2.10/10.sce | 9a9073ab309e909147f9ac02589196421a253cad | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 251 | sce | 10.sce | clc
//calc thickness of a storage tank
p_working=250;//lbf/in^2
//diameter of the cylinder = 10ft = 120in
d=120;//in
sigma_tensile=20000;//lbf/in^2
t=p_working*d/sigma_tensile/2;//in
disp("Thichness of the storage tank is")
disp(t)
disp("in") |
696c0247afd7e1ee43eda866e1e4f790022454cf | 61e39cdb9efce4bc7bc35be444b193c1066f1bf2 | /LUFact.sce | aef92f6e45c156a8dc1060cc9d1e950a5709e0d0 | [] | no_license | nancyanand2807/SCILAB-CODES | 866c1c99754975f9f0deb271d3844c854db1645c | 69bf72606e8cd62aae3d1302c734f425d381a121 | refs/heads/master | 2020-06-02T00:39:27.236873 | 2019-06-09T11:26:55 | 2019-06-09T11:26:55 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 650 | sce | LUFact.sce | A = [8, -3, 2;
4, 11, -1;
6, 3, 12];
b = [20; 33; 36]
for i =1:3
L(i,i) = 1;
end
for i =1:3
for j =1:3
s =0;
if j >= i //for upper triangular
for k = 1:i - 1
s = s + L(i,k) * U(k,j);
end
U(i,j) = A(i,j) - s;
else //for lower triangular
for k = 1:j - 1
s = s + L(i,k ) * U(k,j);
end
L (i,j) = ( A (i,j) - s) / U(j,j) ;
end
end
end
disp("Lower triangular matrix:")
disp(L)
disp("Upper tringular matrix:")
disp(U)
c=L\b;
x=U\c;
disp("Solutin using LU factorisation:")
disp (x)
|
19416a39a26835fdee5d475de522a155c9320352 | 1b969fbb81566edd3ef2887c98b61d98b380afd4 | /Rez/bivariate-lcmsr-post_mi/bfi_c_aspfin/~BivLCM-SR-bfi_c_aspfin-PLin-VLin.tst | 7b7adbae065519411bf9fb1f3d5e909403996940 | [] | no_license | psdlab/life-in-time-values-and-personality | 35fbf5bbe4edd54b429a934caf289fbb0edfefee | 7f6f8e9a6c24f29faa02ee9baffbe8ae556e227e | refs/heads/master | 2020-03-24T22:08:27.964205 | 2019-03-04T17:03:26 | 2019-03-04T17:03:26 | 143,070,821 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 11,974 | tst | ~BivLCM-SR-bfi_c_aspfin-PLin-VLin.tst |
THE OPTIMIZATION ALGORITHM HAS CHANGED TO THE EM ALGORITHM.
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
1 2 3 4 5
________ ________ ________ ________ ________
1 0.303568D+00
2 -0.235282D-02 0.234745D-02
3 0.384973D-01 -0.787531D-03 0.525160D+00
4 0.925797D-04 0.269919D-03 -0.859844D-02 0.404110D-02
5 -0.280126D-03 0.104192D-03 -0.179740D-02 0.594293D-04 0.367656D-02
6 -0.549104D-03 -0.354387D-04 0.155826D-03 0.897548D-04 0.305802D-04
7 -0.844248D-03 -0.112511D-04 -0.208133D-03 0.258098D-03 0.517757D-03
8 0.611672D-03 0.182651D-03 -0.209388D-02 0.617324D-05 -0.393437D-03
9 -0.324314D+00 0.982836D-02 0.257381D-01 -0.854000D-02 0.367248D-01
10 -0.149682D+00 -0.109458D-01 0.260094D+00 -0.167495D-01 0.116727D+00
11 -0.145912D-01 0.248686D-01 -0.124272D+00 0.139218D-01 0.387398D-01
12 0.258989D-01 -0.461906D-02 0.717567D+00 0.152971D-01 0.102392D-03
13 -0.878882D-01 -0.184773D-01 0.127782D+00 -0.862962D-03 -0.382966D-01
14 0.272982D+00 0.319429D-01 0.618851D-01 -0.230649D-01 -0.193679D-01
15 -0.229702D+01 -0.305166D-01 -0.508775D-01 -0.338550D-01 -0.125753D+00
16 -0.605301D-01 -0.242378D-02 0.104052D-01 -0.220458D-02 -0.129660D-02
17 0.908846D-02 -0.491397D-03 -0.564709D-03 0.526456D-03 -0.390764D-03
18 0.362127D+00 0.616733D-02 0.722255D+00 -0.829709D-01 0.451951D-01
19 0.553477D-01 0.109657D-01 -0.869381D-02 -0.452369D-02 0.139408D-01
20 0.912044D+00 -0.684524D-01 0.357439D+01 -0.430252D-01 -0.623557D-01
21 -0.173329D-01 -0.149479D-01 -0.208049D-01 0.121284D-01 -0.104525D-01
22 -0.406358D-02 0.203202D-03 0.150320D-02 0.707161D-03 -0.346454D-03
23 0.125836D-01 0.563516D-03 0.623016D-01 0.631349D-02 -0.122703D-02
24 -0.262219D-02 0.528742D-03 -0.103106D-01 0.904303D-03 0.420173D-03
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
6 7 8 9 10
________ ________ ________ ________ ________
6 0.780110D-03
7 0.999437D-03 0.398799D-02
8 -0.326801D-03 -0.746583D-03 0.338843D-02
9 0.212806D-01 0.627886D-01 -0.348846D-01 0.451030D+02
10 -0.177594D-01 -0.191330D-01 -0.272472D-01 0.379350D+01 0.192485D+02
11 0.193209D-02 0.171568D-01 0.316920D-01 0.361816D+01 0.171703D+01
12 0.453270D-01 0.244539D-01 -0.645081D-01 0.442800D+01 -0.292142D+01
13 0.604099D-01 0.126770D+00 -0.294361D-01 0.376217D+01 -0.284827D+01
14 -0.560143D-01 -0.488875D-01 0.285863D+00 0.112589D+01 0.457258D+01
15 0.176029D-01 0.318070D-02 0.148303D-01 -0.830786D+01 -0.122007D+02
16 0.118674D-02 0.326308D-02 0.671969D-03 0.847159D+00 -0.199580D+00
17 -0.154601D-03 -0.533904D-03 0.373619D-04 -0.160025D+00 0.554797D-02
18 -0.547732D-01 -0.951008D-01 0.856611D-02 -0.420783D+01 0.254790D+01
19 -0.609803D-02 0.207522D-01 0.125565D-02 0.171219D-01 -0.455789D+00
20 0.455722D-01 0.319739D-01 -0.369200D+00 0.519115D+01 0.348174D+01
21 0.376150D-02 -0.206917D-01 0.536387D-03 -0.265873D+00 0.609584D+00
22 -0.180963D-04 -0.386724D-03 0.538666D-04 -0.118931D-01 -0.842305D-02
23 0.166017D-02 0.204325D-02 -0.302951D-02 0.508297D+00 0.171065D+00
24 -0.205619D-03 -0.125138D-04 0.351716D-03 -0.524847D-01 -0.335167D-01
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
11 12 13 14 15
________ ________ ________ ________ ________
11 0.409142D+02
12 0.654674D+01 0.125521D+03
13 -0.629351D+01 0.368907D+01 0.176782D+02
14 0.540611D+01 -0.182495D+02 -0.881666D+01 0.862167D+02
15 0.269202D+01 0.506866D+00 0.270235D+01 -0.793831D+01 0.244674D+03
16 0.705185D-01 0.103446D+00 0.186501D+00 0.210694D+00 0.180012D+01
17 -0.635597D-01 -0.273898D-02 -0.818260D-02 -0.657240D-02 -0.102046D+01
18 0.781745D+00 0.284280D+01 -0.655738D+01 0.239158D+01 0.151947D+02
19 0.164549D+01 -0.113984D+01 -0.358317D+00 0.639314D+00 -0.149695D+01
20 -0.118746D+02 0.141371D+02 0.845036D+01 -0.714872D+02 -0.100343D+02
21 -0.243220D+00 0.232541D+01 0.127726D-03 0.220047D+00 0.167540D+01
22 -0.128244D+00 -0.163368D+00 0.139275D-01 -0.294344D-01 -0.103577D+00
23 0.171788D+00 0.175906D+01 0.724525D-01 -0.343684D+00 -0.156581D+01
24 -0.384667D-01 -0.292124D+00 -0.780756D-02 0.146985D-01 0.153342D+00
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
16 17 18 19 20
________ ________ ________ ________ ________
16 0.443594D+00
17 -0.197838D-01 0.129248D-01
18 -0.604863D+00 -0.723790D-01 0.205025D+03
19 0.207074D+00 -0.194284D-01 0.419998D+01 0.565907D+01
20 -0.689547D+00 0.568028D-01 0.556300D+02 0.208475D+01 0.591919D+03
21 -0.436594D-01 0.520292D-02 -0.286642D+01 -0.517563D+01 -0.440916D+01
22 -0.219616D-02 0.262857D-02 -0.841879D+00 -0.262544D-01 -0.313021D+00
23 -0.201967D-01 0.626091D-02 -0.416112D+00 0.178836D-01 0.544892D+01
24 0.232466D-02 -0.736973D-03 -0.409459D+00 -0.118391D-01 -0.235113D+01
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
21 22 23 24
________ ________ ________ ________
21 0.628021D+01
22 -0.314542D-01 0.104489D-01
23 0.959858D-01 -0.266666D-02 0.114424D+01
24 0.138763D-01 0.521672D-02 -0.897398D-01 0.275553D-01
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
1 2 3 4 5
________ ________ ________ ________ ________
1 1.000
2 -0.088 1.000
3 0.096 -0.022 1.000
4 0.003 0.088 -0.187 1.000
5 -0.008 0.035 -0.041 0.015 1.000
6 -0.036 -0.026 0.008 0.051 0.018
7 -0.024 -0.004 -0.005 0.064 0.135
8 0.019 0.065 -0.050 0.002 -0.111
9 -0.088 0.030 0.005 -0.020 0.090
10 -0.062 -0.051 0.082 -0.060 0.439
11 -0.004 0.080 -0.027 0.034 0.100
12 0.004 -0.009 0.088 0.021 0.000
13 -0.038 -0.091 0.042 -0.003 -0.150
14 0.053 0.071 0.009 -0.039 -0.034
15 -0.267 -0.040 -0.004 -0.034 -0.133
16 -0.165 -0.075 0.022 -0.052 -0.032
17 0.145 -0.089 -0.007 0.073 -0.057
18 0.046 0.009 0.070 -0.091 0.052
19 0.042 0.095 -0.005 -0.030 0.097
20 0.068 -0.058 0.203 -0.028 -0.042
21 -0.013 -0.123 -0.011 0.076 -0.069
22 -0.072 0.041 0.020 0.109 -0.056
23 0.021 0.011 0.080 0.093 -0.019
24 -0.029 0.066 -0.086 0.086 0.042
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
6 7 8 9 10
________ ________ ________ ________ ________
6 1.000
7 0.567 1.000
8 -0.201 -0.203 1.000
9 0.113 0.148 -0.089 1.000
10 -0.145 -0.069 -0.107 0.129 1.000
11 0.011 0.042 0.085 0.084 0.061
12 0.145 0.035 -0.099 0.059 -0.059
13 0.514 0.477 -0.120 0.133 -0.154
14 -0.216 -0.083 0.529 0.018 0.112
15 0.040 0.003 0.016 -0.079 -0.178
16 0.064 0.078 0.017 0.189 -0.068
17 -0.049 -0.074 0.006 -0.210 0.011
18 -0.137 -0.105 0.010 -0.044 0.041
19 -0.092 0.138 0.009 0.001 -0.044
20 0.067 0.021 -0.261 0.032 0.033
21 0.054 -0.131 0.004 -0.016 0.055
22 -0.006 -0.060 0.009 -0.017 -0.019
23 0.056 0.030 -0.049 0.071 0.036
24 -0.044 -0.001 0.036 -0.047 -0.046
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
11 12 13 14 15
________ ________ ________ ________ ________
11 1.000
12 0.091 1.000
13 -0.234 0.078 1.000
14 0.091 -0.175 -0.226 1.000
15 0.027 0.003 0.041 -0.055 1.000
16 0.017 0.014 0.067 0.034 0.173
17 -0.087 -0.002 -0.017 -0.006 -0.574
18 0.009 0.018 -0.109 0.018 0.068
19 0.108 -0.043 -0.036 0.029 -0.040
20 -0.076 0.052 0.083 -0.316 -0.026
21 -0.015 0.083 0.000 0.009 0.043
22 -0.196 -0.143 0.032 -0.031 -0.065
23 0.025 0.147 0.016 -0.035 -0.094
24 -0.036 -0.157 -0.011 0.010 0.059
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
16 17 18 19 20
________ ________ ________ ________ ________
16 1.000
17 -0.261 1.000
18 -0.063 -0.044 1.000
19 0.131 -0.072 0.123 1.000
20 -0.043 0.021 0.160 0.036 1.000
21 -0.026 0.018 -0.080 -0.868 -0.072
22 -0.032 0.226 -0.575 -0.108 -0.126
23 -0.028 0.051 -0.027 0.007 0.209
24 0.021 -0.039 -0.172 -0.030 -0.582
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
21 22 23 24
________ ________ ________ ________
21 1.000
22 -0.123 1.000
23 0.036 -0.024 1.000
24 0.033 0.307 -0.505 1.000
|
b86327515f0673f7bc707d5d2f5b784618359193 | 897ce6a3fd5b682122c396af7e24fa53014c7cb3 | /src_script/scilab/_import/rtsx_10/Link.sci | 2a4c57df168627dcef6c1ddecf13779db697ddd4 | [] | no_license | stub22/glue-ai-v1_friendularity | e66f5ab357eba45de2def6f7900f414e358a4125 | 74949dc3e9b0d08b39857735aad901915e61322d | refs/heads/master | 2022-12-19T18:57:01.336831 | 2017-08-04T12:55:12 | 2017-08-04T12:55:12 | 284,544,364 | 0 | 0 | null | 2020-10-14T00:08:14 | 2020-08-02T21:24:34 | Java | UTF-8 | Scilab | false | false | 8,070 | sci | Link.sci | // Link.sci create robot manipulator link
// www.controlsystemslab.com July 2012
//
// Link function returns a data structrue that holds all information related
// to a robot link such as kinematics parameters, rigid-body inertial
// parameters, motor and transmission parameters.
//
// theta kinematic: joint angle
// d kinematic: link offset
// a kinematic: link length
// alpha kinematic: link twist
// sigma kinematic: 0 if revolute, 1 if prismatic
// RP kinematic: 'R' if revolute, 'P' if prismatic (for easy display)
// mdh kinematic: 0 if standard D&H, else 1
// offset kinematic: joint variable offset
// qlim kinematic: joint variable limits [min max]
//
// m dynamic: link mass
// r dynamic: link COG wrt link coordinate frame 3x1
// I dynamic: link inertia matrix, symmetric 3x3, about link COG.
// B dynamic: link viscous friction (motor referred)
// Tc dynamic: link Coulomb friction
//
// G actuator: gear ratio
// Jm actuator: motor inertia (motor referred)
//
// Usage: L = Link([theta d a alpha],joint_type, options)
//Example:
// L(1)=Link([0 0 1 0],'R');
// L(2)=Link([0 1 0 0],'P');
// This function is a part of Robotic Tools for Scilab/Xcos (RTSX)
//
// inspired by The Robotics Toolbox for Matlab (RTB).Copyright (C) 1993-2011,
// by Peter I. Corke
// Note: There are some differences due to the current version of Scilab
// does not support OOP.
function L=Link(lparam,jtype,varargin)
narg = argn(2); // number of input arguments
if narg==0
error("Usage: L = Link([theta d a alpha <offset>],<joint_type>,<DH_type>,<optional parameter, value>)");
end
if length(lparam) < 4
error('must provide params [theta d a alpha]');
end
L.theta = lparam(1);
L.d = lparam(2);
L.a = lparam(3);
L.alpha = lparam(4);
L.RP = 'R'; // default to revolute
L.sigma = 0; // 0= R , 1=P. This is redundant to RP
L.mdh = 0; // default to standard DH
L.offset = 0;
L.qlim = [-1e6 1e6]; // default to virtually no limit
if length(lparam)>4 then L.offset = lparam(5)
end
if narg>1 then
if jtype==1 | jtype=='P'|jtype=='p' then
L.RP='P';
L.sigma = 1;
else
L.RP='R';
L.sigma = 0;
end
end
// if narg>2 then
// if dhtype == 1 | dhtype =='mdh' | dhtype =='mDH' then
// L.mdh = 1; // modified DH
// else
// L.mdh = 0; // standard DH default
// end
// end
L.m = [];
L.r = [];
L.I = [];
L.Jm = [];
L.G = [];
L.B = 0;
L.Tc = [0 0];
if narg>2 then
varnum=length(varargin); // number of variable arguments
if pmodulo(varnum,2) then // number of arguments is odd. Error!
error("Input argument number is odd. You must miss something!");
else
for iv =1:2:varnum-1 // select only command at odd position
if type(varargin(iv)==10) then // check if string (it should be!)
varargin(iv)=convstr(varargin(iv),'l'); // convert to lower
end
select varargin(iv),
case 'dhtype' then
parm = varargin(iv+1);
if type(parm)==1 // number
if parm == 1 // modified DH
L.mdh = 1;
else
L.mdh = 0; // standard DH
end
elseif type(parm)==10 // string
parm=convstr(parm,'l');
if parm == 'mdh'
L.mdh = 1;
else
L.mdh = 0;
end
end
case 'qlim' then // joint limits
qlim = varargin(iv+1);
if size(qlim)==[1 2]
L.qlim = qlim;
else error("Joint limits must be a 1x2 vector");
end
case 'dynparm' then // dynamic parameters
parm = varargin(iv+1);
if size(parm)==[1 15]
L.r = parm(1,1:3);
v = parm(1,4:9);
L.I = [v(1),v(4),v(6);v(4),v(2),v(5);v(6),v(5),v(3)];
L.m = parm(1,10);
L.Jm = parm(1,11);
L.G = parm(1,12);
L.B = parm(1,13);
L.Tc = parm(1,14:15);
else error("Dynamic parameters must be 1x15 vector");
end
case 'r' then
parm = varargin(iv+1);
if type(parm)== 1 & size(parm)==[1 3] // 1x3 vector
L.r = parm;
else error("r value must be a 1x3 vector");
end case 'i' then
parm = varargin(iv+1);
if type(parm)== 1 & size(parm)==[1 6] // a 1x6 vector
v = parm;
L.I = [v(1),v(4),v(6);v(4),v(2),v(5);v(6),v(5),v(3)];
else error("I value must be a 1x6 vector");
end
case 'm' then
parm = varargin(iv+1);
if type(parm)== 1 & size(parm)==[1 1] // a scalar
L.m = parm;
else error("m value must be a number");
end case 'jm' then
parm = varargin(iv+1);
if type(parm)== 1 & size(parm)==[1 1] // a scalar
L.Jm = parm;
else error("Jm value must be a number");
end case 'g' then
parm = varargin(iv+1);
if type(parm)== 1 & size(parm)==[1 1] // a scalar
L.G = parm;
else error("G value must be a number");
end case 'b' then
parm = varargin(iv+1);
if type(parm)== 1 & size(parm)==[1 1] // a scalar
L.B = parm;
else error("B value must be a number");
end case 'tc' then
parm = varargin(iv+1);
if type(parm)== 1 & size(parm)==[1 2] // a 1x2 vector
L.Tc = parm;
else error("Tc value must be a 1x2 vector");
end
else
emsg= sprintf("Invalid link parameter %s",varargin(iv));
error(emsg);
end // select varargin(iv)
end // for iv=1:varnum
end // if pmodulo(varnum,2)
end // if narg>3
endfunction
|
7e28f175131e11f77c1b12bd0db72573e8a9b812 | 449d555969bfd7befe906877abab098c6e63a0e8 | /45/CH11/EX11.7/example_11_7.sce | e4ac0031c8a1eb0ad3df7f37a2949885239744fb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 822 | sce | example_11_7.sce | //example 11.7
clc;
clear;
disp('Given karnaugh map '); //given kmap
disp(' 00 01 11 10');
disp('00 11 00'' 11 00''');
disp('01 01'' 11 11 01''');
disp('11 10 11 11'' 10');
disp('10 10'' 10'' 11 11');
disp('Yes, the circuit may face problem in its operation. When the circuit is at stable state xyAB = 1111 and input AB changes from 11 --> 10 the circuit oscillates between xyAB = 1110 and xy AB = 1010. Also there can be a criticl race problem if at stable state xyAB = 0001, input AB chnge from 01 to 00. The circuit may settle at xyAB = 0100 or xyAB = 1000 depending on which of x and y changes first at the feedbck path. Non-critical race situatuion occurs if at stable state xyAB = 0010 the input AB change from 10 to 00. '); |
9fa28361c3d895112a4841bffec15266cdc3129e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2360/CH4/EX4.6/ex4_6.sce | dcf25591001e120a1826a138e7f2f0535015c0b2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 256 | sce | ex4_6.sce | // Exa 4.6
format('v',7);clc;clear;close;
// Given data
n = 8;// number of bit
T_C = 9;//conversion time in µs
T_C = T_C * 10^-6;// in s
// The maximum frequency
f_max = 1/(2*%pi*T_C*(2^n));// in Hz
disp(f_max,"The maximum frequency in Hz is");
|
86f3fe17ec89edfbed481655390fe323641e0afd | 449d555969bfd7befe906877abab098c6e63a0e8 | /1271/CH1/EX1.4/example1_4.sce | 0c7b44965f6d63494c867dca6bb7ef26e040b49e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 415 | sce | example1_4.sce | clc
// Given that
lambda_D = 5.5e-13 // Doppler width of orange light in meter
lambda = 6.058e-7 // wavelength of light in meter
// Sample Problem 4 on page no. 1.41
printf("\n # PROBLEM 4 # \n")
printf("\n Standard formula used \n delta_L = lambda^2/delta_lambda. \n")
coherence_length = (lambda ^ 2) / lambda_D// calculation for coherence light
printf("\n Coherence length = %f meter",coherence_length)
|
2c430c6f484da850114b690f71f9183a1d2e5bfd | 449d555969bfd7befe906877abab098c6e63a0e8 | /32/CH16/EX16.08/16_08.sce | 135de52c2b8a0baf28b7893d0f93431026ba486a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,672 | sce | 16_08.sce | //pathname=get_absolute_file_path('16.08.sce')
//filename=pathname+filesep()+'16.08-data.sci'
//exec(filename)
//Speed(in rpm):
N=200
//Mass flow rate(in kg/min):
m=4
//Pressure(in bar):
p1=1
p6=25
//Temperatures(in K):
T1=17+273
T5=T1
//Clearance volumes:
Clp=0.04
Chp=0.05
//Index of compression:
n=1.25
//Gas constant(in kJ/kg.K):
R=0.287
//Specific heat(in kJ/kg.K):
Cp=1.0032
//Pressure ratio:
r=sqrt(p6/p1)
//Temperature at state 2(in K):
T2=T1*r^((n-1)/n)
//Temperature at state 6(in K):
T6=T5*r^((n-1)/n)
//Actual compression work requirement(in kJ/min):
W=2*n/(n-1)*m*R*T1*(r^((n-1)/n)-1)
//Work required if process is isothermal(in kJ/min):
Wi=m*R*T1*log(p6/p1)
//Isothermal efficiency:
ni=Wi/W
//Free air delivered(in m^3/min):
Vf=m*R*T1/(p1*10^2)
//Heat transferred in HP & LP cylinder(in kJ/min):
Q=W/2-m*Cp*(T2-T1)
//Volumetric efficiency of HP cylinder:
nvhp=1+Chp-Chp*r^(1/n)
//Volumetric efficiency of LP cylinder:
nvlp=1+Clp-Clp*r^(1/n)
//Stroke volume of HP cylinder(in m^3):
Vshp=Vf/(r*N*nvhp)
//Clearance volume Of HP cylinder(in m^3):
Vchp=Chp*Vshp
//Total HP cylinder volume(in m^3):
Vthp=Vshp+Vchp
//Stroke volume of LP cylinder(in m^3):
Vslp=Vf/(N*nvlp)
//Clearance volume of LP cylinder(in m^3):
Vclp=Clp*Vslp
//Total LP cylinder volume(in m^3):
Vtlp=Vslp+Vclp
printf("\n RESULT \n")
printf("\nPower required = %f hp",W/(60*0.7457))
printf("\nIsothermal efficiency = %f percent",ni*100)
printf("\nFree air delivered = %f m^3/min",Vf)
printf("\nHeat transferred in HP & LP cylinder = %f kJ/min",Q)
printf("\nHP cylinder volume = %f m^3",Vthp)
printf("\nLP cylinder volume = %f m^3",Vtlp) |
e0c66ae5e8389b17a6c28e78036887a90938c7bc | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/impzlength/impzlength2.sce | 68e09a53b1e4ae61a73570572ab8815c30dff602 | [] | 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 | 267 | sce | impzlength2.sce | clear;
clc;
exec('/home/debdeep/Desktop/TEST NOW!!/impzlength.sci');
sos=[1.0000 1.8116 1.0000 1.0000 -1.0095 0.3954
1.0000 1.1484 1.0000 1.0000 -0.5581 0.7823];
len = impzlength(sos);
disp(len);
//output
// 73
//matlab
//
// 80
|
eba3efb22a2a0aa626a3e047fb1e38053fc28709 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2744/CH9/EX9.4/Ex9_4.sce | 8467f27ab9b11fb8937bcdba3b94212c5e36011a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 535 | sce | Ex9_4.sce | clear;
clc;
l = 16;// feet
F = 30;// tons
n = 8;// factor of safety
k = 0.8;//k = d/D
f_c = 36;// tons/in^2
a = 1/1600;
r = 0.25*%pi*(1-k^2);//r = A/D^2
P = n*F;// tons
D1 = sqrt(P/(f_c*r*2) +sqrt((P/(f_c*r))*((a/4)*(l*12)^2)/((1+k^2)/16) + (P/(f_c*r*2))^2));// inches
D = round(D1);// inches
d = k*D;// inches
t = (D-d)/2;// inches
printf('The internal diameter d = %.1f inches',d);
printf('\n The thickness of the metal will be %.2f inches',t);
// the answer is correct only, but it is approximated in the text book
|
1e6bcee37221608d938c8a14016493054d839f79 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3751/CH5/EX5.12/Ex5_12.sce | 6c78bf6978214f916d569fcb96fbfd76c73f3681 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,399 | sce | Ex5_12.sce | //Fluid Systems- By Shiv Kumar
//Chapter 5- Francis Turbine
//Example 5.12
clc
clear
//Given Data:-
Dp=5; //Diameter at Penstock, m
P=61000; //Output Power, kW
Q=110; //Discharge, m^3/s
N=160; //Speed, rpm
eta_H=94/100; //Hydraulic Efficiency
Do=4; //Diameter of Runner at Inlet, m
bo=1; //Width of Runner at Inlet, m
Ddi=4.2; //Entry Diameter to Draft Tube, m
V2=2.2; //Velocity in Tail Race, m/s
p_by_rho_g=58; //Static Pressure Head (p/(rho*g)) , m
Z=2.8; //Level of Measurement above Tail Race, m
loss=25; //Percentage of loss in Draft Tube (of Velocity Head at its Entry)
Z1=2.2; //Level of Runner Exit above Tail Race, m
//Data Required:-
rho=1000; //Density of Water, Kg/m^3
g=9.81; //Acceleration due to gravity, m/s^2
//Computations:-
Vp=4*Q/(%pi*Dp^2); //Velocity in Penstock, m/s
Vo=4*Q/(%pi*Ddi^2); //Velocity at Entry to the Draft Tube, m/s
Hp=p_by_rho_g+Z+Vp^2/(2*g); //Head just before Entry to Runner, m
H=Hp-V2^2/(2*g); //Working Head, m
//(a)Overall Efficiency
eta_o=P*1000/(rho*Q*g*H)*100; //In Percentage
// (b) The Direction of Flow relative to the Runner at Inlet
ui=%pi*Do*N/60; //m/s
Vwi=eta_H*g*H/ui; //m/s
Vfi=Q/(%pi*Do*bo); //m/s
beta_i=180-atand(Vfi/(ui-Vwi)); //degrees
// (c) The Pressure Head at entry to Draft Tube, p1/(rho*g)
//By Applying Bernoulli's Equation with,
Z2=0;
p2_by_rho_g=0;
hf=(loss/100)*Vo^2/(2*g);
p1_by_rho_g=p2_by_rho_g+(V2^2-Vo^2)/(2*g)+(Z2-Z1)+hf; //m
//Results:-
printf("(a)The Overall Efficiency, eta_o=%.2f Percent\n",eta_o) //The Answer Vary due to Round off Error
printf("(b)The Direction of Flow relative to the Runner at Inlet, beta_i=%.2f Degrees \n",beta_i) //The Answer Vary due to Round off Error
printf("(c) The Pressure Head at entry to Draft Tube, p1/(rho*g)=%.2f m (vaccum)\n",abs(p1_by_rho_g))
|
ae0934ffc5c8b79d8c3488a5ffa98b84595ce674 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1016/CH10/EX10.6/ex10_6.sce | 43b1db0b167d58048144fe7c338777f5dc79d210 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 245 | sce | ex10_6.sce | clc;clear;
//Example in 10.6
//given data
m1=1.00814;//mass of proton in a.m.u
m2=1.00893;//mass of neutron in a.m.u
m3=7.01822;//mass of lithium in a.m.u
//calculations
dm=(3*m1)+(4*m2)-m3;
Q=dm*931;
disp(Q,'Binding energy in MeV') |
b97c6e229fee032e761199b4d17220d2c6b8875e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1319/CH5/EX5.4/5_4.sce | 886ab0e11fff93678cf7fcd18b6774dbb9cf3416 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 526 | sce | 5_4.sce | // Total resitance and total copper loss at full load
clc;
clear;
P=40*(10^3);
E1=2000;
E2=250;
n=E2/E1; //Transformation ratio
R1=1.15;
R2=0.0155;
R1w2=R1*(n^2);
R2w1=R2/(n^2);
Rt=R2+R1w2;
// Full load currents
I1=P/E1;
I2=P/E2;
Pc1=(I1^2)*R1; // Primary Loss
Pc2=(I2^2)*R2; // Secondary Loss
Pc= Pc1+Pc2; // Total Copper loss at full load
printf('a) The total resitance in terms of the secondary winding = %f ohms \n',Rt)
printf('b) Total copper loss on full load = %f watts',Pc)
|
e7cca03595274e0ea72032e4f3da4f28a7920f4a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1640/CH2/EX2.5/2_5.sce | 9043dfcb3c9ae77d0673ef924f44d5250a56882a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 312 | sce | 2_5.sce | clc
//initialisation of variables
d1= 15 //in
d2= 6//in
h= 10 //in of mercury
C= 0.98
sm= 13.6
w= 12
g= 32.2 //ft/sec^2
//CALCULATIONS
a1= %pi*(d1/12)^2/4
a2= %pi*(d2/12)^2/4
h1= h*(sm-1)/w
Q= C*(a1*a2/(sqrt(a1^2-a2^2)))*sqrt(2*g)*sqrt(h1)*6.24*60*60
//RESULTS
printf ('Discharge = %.f gph ',Q)
|
9ad9fbd4ed539aef97fa54e5eb8ae3b2e9bfb7fa | 449d555969bfd7befe906877abab098c6e63a0e8 | /887/CH13/EX13.1/13_1.sce | cb6718e6c195d1fc2118b0f6ae56577c3414767d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 320 | sce | 13_1.sce | clc
//ex13.1
V_CE=4; //It should be high enough so that collector base junction is reverse-biased
i_B=30*10^-6; //base current, a value is selected from the graph
i_C=3*10^-3; //collector current corresponding to values of i_B and V_CE
B=i_C/i_B; //beta value
disp(B,'The value of beta B is')
|
29dcd528d2942fb5179bc5f400f077dec7ca255f | 256f0055d000d9c71c41cf0df7a7a750619fbfd0 | /letraC.sce | 4946162245535701c99b65ca084aac47c75fc3f5 | [] | no_license | ItaloOliveiraF/Sistema-de-Transmiss-o-de-Dados | efec24f05af567e24d5450d3e2513865b4ce5117 | dec4f2b2c1f4f9b701de1737a5efe2bbae465811 | refs/heads/master | 2020-04-05T09:29:00.397099 | 2018-12-21T20:36:15 | 2018-12-21T20:36:15 | 156,759,189 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,382 | sce | letraC.sce | ///////////////////////////////
//Reamostragem Ana Rute
///////////////////////////////
j=1
for i=1:4:length(x_ana)
x4_ana(j)=x_ana(i)
j=j+1
end
f4=linspace(0,0.5*66150,floor(length(x4_ana)/2));
X4_ANA=fft(x4_ana);
for i=1:length(X4_ANA)/2
X4_ANAMetade(i)=X4_ANA(i)
end
figure
plot(f4,X4_ANAMetade)
///////////////////////////////
//Reamostragem Italo
///////////////////////////////
j=1
for i=1:4:length(x_italo)
x4_italo(j)=x_italo(i)
j=j+1
end
f4=linspace(0,0.5*66150,floor(length(x4_italo)/2));
X4_ITALO=fft(x4_italo);
for i=1:length(X4_ITALO)/2
X4_ITALOMetade(i)=X4_ITALO(i)
end
figure
plot(f4,X4_ITALOMetade)
///////////////////////////////
//Reamostragem Lara
///////////////////////////////
j=1
for i=1:4:length(x_lara)
x4_lara(j)=x_lara(i)
j=j+1
end
f4=linspace(0,0.5*66150,floor(length(x4_lara)/2));
X4_LARA=fft(x4_lara);
for i=1:length(X4_LARA)/2
X4_LARAMetade(i)=X4_LARA(i)
end
figure
plot(f4,X4_LARAMetade)
///////////////////////////////
//Reamostragem Luiza
///////////////////////////////
j=1
for i=1:4:length(x_luiza)
x4_luiza(j)=x_luiza(i)
j=j+1
end
f4=linspace(0,0.5*66150,floor(length(x4_luiza)/2));
X4_LUIZA=fft(x4_luiza);
for i=1:length(X4_LUIZA)/2
X4_LUIZAMetade(i)=X4_LUIZA(i)
end
figure
plot(f4,X4_LUIZAMetade)
|
b9b707c2c7c9b682f5f5c9085ceeb5e09a1df55d | f6134e0a162a059c42ec3ef8de2a63941d73936c | /Scilab_code/kdtreebench.sce | bee6f563f12dec53795da43111e98434cfa40b12 | [] | no_license | mxch18/SRL-WRT_pathPlanning | 38a1701934a4a0e919a6c1c7990092b242df72da | 6992febbbe103814d2cef5351a0e8917b183a2b0 | refs/heads/master | 2020-03-23T06:43:54.155192 | 2018-09-26T17:26:56 | 2018-09-26T17:26:56 | 141,226,032 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 449 | sce | kdtreebench.sce | // kd-tree benchmark
clearglobal
clear
clc
close();
getd(".");
getd("./kNN");
rand("seed",25);
nb_pts = [1 10 100 300 500 1000];
global cellIn;
global lcell;
cellIn=cell();
lcell=0;
times = [];
for i = 1:length(nb_pts)
p = rand(nb_pts(i),2)*10;
mprintf("Building kd-tree with %d points\n",nb_pts(i));
cellIn=cell();
lcell=0;
tic();
kd_tree(p,0,0);
t = toc();
times = [times; t];
end
plot2d("ln",nb_pts,times);
|
02db0ba99d7d50ce10084334a21fba084165d50e | 449d555969bfd7befe906877abab098c6e63a0e8 | /61/CH4/EX4.2/ex4_2.sce | c982d1714870b722bc6e9c3aa3de73a39b7fb179 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 380 | sce | ex4_2.sce | //ex4.2
V_BE=0.7;
B_DC=150;
V_BB=5;
V_CC=10;
R_B=10*10^3;
R_C=100;
I_B=(V_BB-V_BE)/R_B;
I_C=B_DC*I_B;
I_E=I_C+I_B;
V_CE=V_CC-I_C*R_C;
V_CB=V_CE-V_BE;
disp(I_B,'base current in amperes')
disp(I_C,'collector current in amperes')
disp(I_E,'emitter current in amperes')
disp(V_CE,'collector to emitter voltage in volts')
disp(V_CB,'collector to base voltage in volts') |
41944f251a53af3d046974ec2e57936562376dbb | 449d555969bfd7befe906877abab098c6e63a0e8 | /1958/CH1/EX1.1/Chapter1_example1.sce | f67e08a7ba69d619d351755dd235a18e1d1f23f2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 450 | sce | Chapter1_example1.sce | clc
clear
//Input data
d=180//Distance of satellite above the surface of earth in km
t=90//Time taken to complete one revolution of the earth in minutes
r=6400//Radius of the earth in kms
//Calculations
R=(r+d)*1000//Total distance in m
T=t*60//Time in seconds
v=(2*3.14*R)/T//Orbital speed in m/s
a=(v^2/R)//Centripetal acceleration in m/s^2
//Output
printf('Orbital speed is %i m/s \n Centripetal acceleration is %3.1f m/s^2',v,a)
|
b370a0d17992fefa5cf8fd1e8d336e3581d1ad78 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1964/CH1/EX1.31/ex1_31.sce | d02e37bbb24289395aa61b462d385640814c4996 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 849 | sce | ex1_31.sce | //Chapter-1, Example 1.31, Page 44
//=============================================================================
clc;
clear;
//INPUT DATA
E=12;//emf of battery in volts
R1=3;//resistance1 in parallel combination in ohms
R2=4;//resistance2 in parallel combination in ohms
R3=6;//resistance3 in parallel combination in ohms
R4=4;//resistance4 in series with parallel combination in ohms
r=6;//internal resistance in ohm
//CALCULATIONS
RP=((R2*R3)+(R3*R1)+(R1*R2))/(R1*R2*R3);
RP=1/RP;//equivalent resistance of parallel combination in ohms
RT=RP+R4+r;//total circuit resistance in ohms
I=E/RT;//total circuit current in A
V=E-(I*r);//terminal voltage of battery in volts
//OUTPUT
mprintf("Thus the terminal voltage of battery is %1.3f volts ",V);
//=================================END OF PROGRAM==============================
|
6cb775f635f707b65bed1bc48a0545d0e814a98d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1592/CH7/EX7.3/Example_7_3.sce | 7716a72d0124f3b0c757df3b7de8b901e1f3c675 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 647 | sce | Example_7_3.sce | //Scilab Code for Example 7.3 of Signals and systems by
//P.Ramakrishna Rao
clc;
clear x y1 y y2 q t n;
clear;
//y(n)=x(n)-x(n-1);
disp('y(n) depends upon past inputs also');
disp('Output at n=2 depends upon value of x at n=1');
disp('Hence the system is Dynamic');
x1=[1,3,5,7,2];
x2=[2,4,6,8,3];
for n=2:5
y1(1,n)=x1(n)-x1(n-1)
y2(1,n)=x2(n)-x2(n-1)
end
b1=2;
b2=3;
x=b1*x1+b2*x2
disp(x,'The input to the system is:');
for n=2:5
q(1,n)=x(n)-x(n-1);
end
y=b1*y1+b2*y2;
disp(q,'This input gives the output:');
disp(y,'For the system to be linear the output should be:');
disp('Hence the system is linear');
|
d89ecd02753eca57f4f1f1b9e640ce650141032e | e9d5f5cf984c905c31f197577d633705e835780a | /data_reconciliation/linear/scilab/P6/P6.sce | 830ec5426ab3166006aaede01da1087a63e008ae | [] | no_license | faiz-hub/dr-ged-benchmarks | 1ad57a69ed90fe7595c006efdc262d703e22d6c0 | 98b250db9e9f09d42b3413551ce7a346dd99400c | refs/heads/master | 2021-05-18T23:12:18.631904 | 2020-03-30T21:12:16 | 2020-03-30T21:12:16 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,529 | sce | P6.sce | // Data Reconciliation Benchmark Problems From Lietrature Review
// Author: Edson Cordeiro do Valle
// Contact - edsoncv@{gmail.com}{vrtech.com.br}
// Skype: edson.cv
//Rosenberg, J, R S H Mah, and C Iordache. 1987.
//“Evaluation of Schemes for Detecting and Identifying Gross Errors in Process Data.”
// Ind. & Eng. Chem. Proc. Des. Dev, Vol. 26: 555-564.
//Bibtex Citation
//@Article{ Rosenberg1987,
//author = "J Rosenberg and R S H Mah and C Iordache",
//journal = "Ind. \& Eng. Chem. Proc. Des. Dev, Vol.",
//pages = "555--564",
//title = "{Evaluation of Schemes for Detecting and Identifying Gross Errors in Process Data}",
//volume = "26",
//year = "1987"
//}
// 7 Streams
// 4 Equipments
clear xm var jac nc nv i1 i2 nnzeros sparse_dg sparse_dh lower upper var_lin_type constr_lin_type constr_lhs constr_rhs
xm =[5.026
14.722
14.721
4.968
10.088
5.131
4.835
];
//the variance
var=[1
1
1
1
1
1
1];
// gross error
gerror = zeros(length(xm),1);
// to setup gross errors, select the stream and magnitude as the line bellow
//gerror(2) = 9*sqrt(var(2));
xm = xm + gerror;
//The jacobian of the constraints
// 1 2 3 4 5 6 7
jac = [ 1 -1 0 1 0 1 0
0 1 -1 0 0 0 0
0 0 1 -1 -1 0 0
0 0 0 0 1 -1 -1];
// 1 2 3 4 5 6 7
//observability/redundancy tests
umeas_P6 = [];
[red_P6, just_measured_P6, observ_P6, non_obs_P6, spec_cand_P6] = qrlinclass(jac,umeas_P6)
// reconcile with all measured. To reconcile with only redundant variables, uncomment the "red" assignments
measured_P6 = setdiff([1:length(xm)], umeas_P6);
red = measured_P6;//
// to reconcile with all variables, comment the line above and uncomment bellow
//red = [1:length(xm)];
// to run robust reconciliation,, one must choose between the folowing objective functions to set up the functions path and function parameters:
//WLS = 0
// Absolute sum of squares = 1
//Cauchy = 2
//Contamined Normal = 3
//Fair = 4
//Hampel = 5
//Logistic = 6
//Lorenztian = 7
//Quasi Weighted = 8
// run the configuration functions with the desired objective function type
obj_function_type = 0;
exec ../functions/setup_DR.sce
// to run robust reconciliation, it is also necessary to choose the function to return the problem structure
if obj_function_type > 0 then
[nc_eq, n_non_lin_eq, nv, nnzjac_ineq, nnzjac_eq, nnz_hess, sparse_dg, sparse_dh, lower, upper, var_lin_type, constr_lin_type, constr_lhs, constr_rhs] = robust_structure(jac, 0, xm, objfun, res_eq, res_ineq);
else
// for WLS, only the line bellow must be choosen and comment the 3 lines above
[nc, nv, i1, i2, nnzeros, sparse_dg, sparse_dh, lower, upper, var_lin_type, constr_lin_type, constr_lhs, constr_rhs] = wls_structure(jac);
end
params = init_param();
// We use the given Hessian
params = add_param(params,"hessian_approximation","exact");
params = add_param(params,"derivative_test","second-order");
params = add_param(params,"tol",1e-8);
params = add_param(params,"acceptable_tol",1e-8);
params = add_param(params,"mu_strategy","adaptive");
params = add_param(params,"journal_level",5);
[x_sol, f_sol, extra] = ipopt(xm, objfun, gradf, confun, dg, sparse_dg, dh, sparse_dh, var_lin_type, constr_lin_type, constr_rhs, constr_lhs, lower, upper, params);
mprintf("\n\nSolution: , x\n");
for i = 1 : nv
mprintf("x[%d] = %e\n", i, x_sol(i));
end
mprintf("\n\nObjective value at optimal point\n");
mprintf("f(x*) = %e\n", f_sol);
|
8ea431e2a9ff2521bf0e751b5d93bf1456a23d24 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1871/CH8/EX8.1/Ch08Ex1.sce | 6313e7f4c6acfa38030457c6acd226e78c1f0919 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 466 | sce | Ch08Ex1.sce | // Scilab code Ex8.1 : Pg:327(2008)
clc;clear;
function [dec]= binary_decimal(n) // Function to convert binary to decimal
dec = 0;
i = 0;
while (n <> 0)
rem = n-fix(n./10).*10;
n = int(n/10);
dec = dec + rem*2.^i;
i = i + 1;
end
endfunction
num = 11001; // Initialize the binary number
printf("%d in binary = %d in decimal", num, binary_decimal(num));
// Result
// 11001 in binary = 25 in decimal
|
be49e239abfa10e49c38085128f8369d97f44781 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set14/s_Material_Science_V._Rajendran_1826.zip/Material_Science_V._Rajendran_1826/CH18/EX18.15/ex18_15.sce | 4e6ea5659cadb39ef1c6a38faefe79bafc846b09 | [] | 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 | 388 | sce | ex18_15.sce | errcatch(-1,"stop");mode(2);// Example 18.15, page no-469
A=6.45*10^-4//m^2
d=2*10^-3//m
epsr=6
v=10//v
eps=8.85*10^-12//F/m
c=eps*epsr*A/d
printf("Capaccitance of Capacitor = %.3f pF",c*10^12)
q=c*v
E=v/d
p=eps*(epsr-1)*E
printf("\ncharge stored on the plate is %.3f *10^-11 C",q*10^11)
printf("\nPolarisation produce in the plate is %.3f *10^-7 Cm^-2",p*10^7)
exit();
|
a083adbfd9cc404a2bbc36a663a472cab7f38820 | 449d555969bfd7befe906877abab098c6e63a0e8 | /167/CH10/EX10.9/ex9.sce | c5825254b0d42933f8ddac552ff781f84dc79297 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | WINDOWS-1258 | Scilab | false | false | 800 | sce | ex9.sce | //example 9
//A Combined Gas–Steam Power Cycle
clear
clc
h4=880.36 //specific enthalpy for state 4 in kJ/kg
T4=853 //temperature for state 4 in K
qin=790.58 //in kJ/kg
wnet=210.41 //in kJ/kg
h5=451.80 //specific enthalpy for state 5 in kJ/kg
h2=144.78 //specific enthalpy for state 2 in kJ/kg
h3=3411.4 //specific enthalpy for state 3 in kJ/kg
wnetgas=210.41 //in kJ/kg
wnetsteam=1331.4 //in kJ/kg
y=(h4-h5)/(h3-h2) //ratio of mass folw rates of the steam and combustion gases
wnet=wnetgas+y*wnetsteam //net work output of the cycle in kJ/kg
n=wnet/qin //thermal efficiency of the combined cycle
printf("\n Hence, the ratio of mass folw rates of the steam and combustion gases is = %.3f . \n",y);
printf("\n Hence, the thermal efficiency of the cobined cycle is = %.3f . \n",n); |
2c51b1da61e8f4517029b16fff244a96aacc0e25 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2409/CH3/EX3.5/Ex3_5.sce | 5561d2d1c95b23e70fbff19d20bf31bf8c879e91 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,274 | sce | Ex3_5.sce |
//Variable Declaration
y=2000 //year
d=223.153 //day
n=1.002716 //mean motion(1/day)
w=272.5299 //rate of regression of nodes(degrees)
e=0.000352 //Eccentricity
W=247.9161 //Rate of regression of line of apsides(degrees)
M=158.0516 //Mean Anomaly at given time
JD00=2451543.5 //Julian days for Jan 0.0 2000
//Calculation
JD=JD00+d //Julian days for given day
JDref=2415020 //Reference Julian days
JC=36525
T=(JD-JDref)/JC //Time in julian Centuries
UT=d-223 //Universal Time, fraction of the day
GST=(99.6910+36000.7689*T+0.004*T**2)*3.142/180 //GST(radians)
UT=2*%pi*UT //Universal time converted to fraction of earth rotation (radians)
GST=(GST+UT)*180/3.1421
GST=(modulo(GST,360))//using fmod multiplr revolutions are removed (degrees)
v=M+2*e*M //True Anomaly(degrees)
Pssmean=W+w+M-GST //longitude for INTELSAT(degrees)
Pssmean=modulo(Pssmean,360) //fmod removes multiple revolutions
Pss=w+W+v-GST//longitude for INTELSAT(degrees)
Pss=modulo(Pss,360)//fmod removes multiple revolutions
//Results
printf("The longitude of INTELSAT 805 is %.3f Degrees",Pss)
printf("The average longitude of INTELSAT 805 is %.3f Degrees",Pssmean)
// Note : Answers may be different because of rounding error. Please check by calculating all variables.
|
e42f618bf1c5eef222d3f806a1c24cd08fe4349d | 449d555969bfd7befe906877abab098c6e63a0e8 | /551/CH10/EX10.12/12.sce | a4f81a497fb0700b5da7eabe49220502508b40fc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 451 | sce | 12.sce | clc
//At 38 0C
p_vs=0.0663; //bar
h_g1=2570.7; //kJ/kg
phi=0.25;
p_t=1.0132;
p_v=phi*p_vs;
cp=1.005;
//At 18 0C
h_g2=2534.4; //kJ/kg
p_vs=0.0206; //bar
W1=0.622*p_v/(p_t-p_v);
t_db1=38; //0C
t_db2=18; //0C
W2=(cp*(t_db1-t_db2) + W1*h_g1)/h_g2;
//amount of water added =amt
amt=W2-W1;
disp("amt=")
disp(amt)
disp("kg/kg of dry air")
p_v2=amt*p_t/(0.622+amt);
RH=p_v2/p_vs;
disp("Final relative humidity")
disp(RH)
|
a857f14f5ae0979f19d660618520fbcecd9e2288 | c36e1bfd38146c66289228951b38aed97a50e7ce | /Projet sur les réseaux de distribution d’eau/Scilab/Visualg.sci | cfcbae05c3acd826016a3f4e901e9f18e5cdbad9 | [
"MIT"
] | permissive | AmineKheldouni/Optimization-Control | 73e4c50c2edbac1863d231036125c405eea1807c | 417336ff19b174668be002c4a5d24bd78c88c39e | refs/heads/master | 2020-04-14T22:30:01.903485 | 2019-01-04T23:35:20 | 2019-01-04T23:35:20 | 164,165,063 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,570 | sci | Visualg.sci | function []=Visualg(logG,logP,Cout)
///////////////////////////////////////////////////////////////
// //
// VISUALISATION DES ITEREES D'UN ALGORITHME //
// //
// Affichage des resultats obtenus durant l'algorithme //
// //
// - logG : tableau contenant le log base 10 de la norme //
// du gradient du critere pour chaque iteration //
// de l'algorithme d'optimisation. //
// - logP : tableau contenant le log base 10 du pas de //
// gradient pour chaque iteration. //
// - Cout : tableau contenant la valeur du critere pour //
// chaque iteration. //
// //
// L'affichage du cout est probablement le moins interessant //
// et peut etre omis. Afficher le log en base 10 de la norme //
// du gradient permet bien representer la convergence vers 0 //
// du gradient. Enfin, afficher le log en base 10 du pas de //
// descente donne par l'algorithme de recherche lineaire est //
// un bon moyen de verifier que cet algorithme de recherche //
// lineaire fonctionne de maniere satisfaisante. //
// //
///////////////////////////////////////////////////////////////
numwin = 10;
typvis = 1;
[nlig,ncol] = size(logG);
absX = [1:nlig]';
if typvis == 0 then
//
// Affichage des 3 graphiques, un par fenetre
//
xset("window",numwin);
clf(numwin);
plot2d(logG);
xtitle('Norme du gradient (echelle logarithmique)','Iter.','log||G||');
numwin = numwin + 1;
xset("window",numwin);
clf(numwin);
plot2d(logP);
xtitle('Pas de gradient (echelle logarithmique)','Iter.','log(alpha)');
numwin = numwin + 1;
xset("window",numwin);
clf(numwin);
plot2d(Cout);
xtitle('Evolution du critere','Iter.','Cout');
else
//
// Affichage de 2 graphiques sur une meme fenetre
//
xset("window",numwin);
xset("wdim",600,650);
clf(numwin);
//xtitle(titrgr);
subplot(211);
plot2d(absX,logG,style=5,...
leg='Norme du gradient (echelle logarithmique) '+...
'en fonction des iterations');
subplot(212);
plot2d(absX,logP,style=2,...
leg='Pas de gradient (echelle logarithmique) '+...
'en fonction des iterations');
end
endfunction
|
4a6143c8cfe925e6c1e6f421fee6b4dd4277ec0b | 9224090b07cb3f466fe72819cf90ca0c4dedc901 | /Exercise 5/Exercise 5.sce | d6f2b91a2fbecb56012c2bfc369010888e61fe0e | [] | no_license | MGYBY/advanced_ocean_modelling | 8c383b09f4077174559bd7964062625012026fa0 | 848f0f4d616d472021c31582b64557f04067ce74 | refs/heads/main | 2023-07-14T14:37:57.714203 | 2021-08-20T20:13:49 | 2021-08-20T20:13:49 | 398,386,684 | 4 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 2,166 | sce | Exercise 5.sce | //===================================
// Exercise 5: Internal waves
//===================================
//Author: Jochen Kaempf, 2015 (update)
f = gcf(); f.color_map = jetcolormap(64); f.figure_size = [700,400]; scf(0);
// read input data
rho1=read("rho.dat",-1,101); u1=read("u.dat",-1,101);
w1=read("w.dat",-1,101); q1=read("q.dat",-1,101);
[ntot nx] = size(q1); x = (0:5:500)'; z = (0:2:100)';
ntot = int(ntot/51); // number of output blocks
for n = 1:60 // animation loop
time = 10*n; // time in seconds
// grab data blocks
itop = (n-1)*51+1; ibot = itop+50;
rho = rho1(itop:ibot,1:101)'; u = u1(itop:ibot,1:101)';
w = w1(itop:ibot,1:101)'; q = q1(itop:ibot,1:101)';
drawlater; clf();
// 2d color plot of the density field
Sgrayplot(x,-z,rho,zminmax=[0.0,max(rho)]);
a = gca(); a.font_size = 3; a.data_bounds = [0,-100;500,0];
// contour plot of density field
xset("fpf"," "); col(1:10) = 80; xset("thickness", 2);
contour2d(x,-z,rho,10,col);
xfpoly([148 148 202],[-100 -56 -100]);
xfpoly([0 0 148],[-100 -56 -56]);
xfpoly([0 148 148],[-100 -56 -100]);
// specify graph & axis properties
a = gca(); a.font_size = 3; a.data_bounds = [0,-100;500,0];
a.auto_ticks = ["off","off","on"]; a.sub_ticks = [4,3];
a.x_ticks = tlist(["ticks", "locations","labels"],..
[0 100 200 300 400 500], ["0" "100" "200" "300" "400" "500"]);
a.y_ticks = tlist(["ticks", "locations","labels"],..
[-100 -80 -60 -40 -20 0], ["-100" "-80" "-60" "-40" "-20" "0"]);
title("Time = "+string(0.1*int(10*time/60))+" min","fontsize",4,'position',[200 -0.5]); // add title
xstring(234, -10,"x (m)"); // add x label
// change font size & set textcolor to white
txt=gce(); txt.font_size = 4; txt.font_foreground = -2;
xstring(10, -74,"z (m)"); // add z label
txt=gce(); txt.font_size = 4; txt.font_foreground = -2;
drawnow;
// save frames as sequential GIF files (optional)
//if n < 10 then
// xs2gif(0,'ex100'+string(n)+'.gif')
//else
// if n < 100 then
// xs2gif(0,'ex10'+string(n)+'.gif')
// else
// xs2gif(0,'ex1'+string(n)+'.gif')
// end
//end
end // end reference for animation loop
|
16861eafce7c6d5baaeca1710c85a17a14b41239 | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/CONT/XG57FZY/ATWM1_Working_Memory_MEG_XG57FZY_Session2/ATWM1_Working_Memory_MEG_Salient_Cued_Run2.sce | 0d482b000c72a9d21f9c7543ea1044f2ab632142 | [] | 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,386 | 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 = 28;
default_font = "Arial";
default_background_color = 0 ,0 ,0 ;
write_codes=true; # for MEG only
begin;
#Picture definitions
box { height = 300; width = 300; color = 0, 0, 0;} frame1;
box { height = 290; width = 290; color = 255, 255, 255;} frame2;
box { height = 30; width = 4; color = 0, 0, 0;} fix1;
box { height = 4; width = 30; color = 0, 0, 0;} fix2;
box { height = 30; width = 4; color = 255, 0, 0;} fix3;
box { height = 4; width = 30; color = 255, 0, 0;} fix4;
box { height = 290; width = 290; color = 128, 128, 128;} background;
TEMPLATE "StimuliDeclaration.tem" {};
trial {
sound sound_incorrect;
time = 0;
duration = 1;
} wrong;
trial {
sound sound_correct;
time = 0;
duration = 1;
} right;
trial {
sound sound_no_response;
time = 0;
duration = 1;
} miss;
# Start of experiment (MEG only) - sync with CTF software
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
} expStart;
time = 0;
duration = 1000;
code = "ExpStart";
port_code = 80;
};
# baselinePre (at the beginning of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
}default;
time = 0;
duration = 10000;
#mri_pulse = 1;
code = "BaselinePre";
port_code = 91;
};
TEMPLATE "ATWM1_Working_Memory_MEG.tem" {
trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4;
41 62 292 292 399 125 1742 2992 2192 fixation_cross gabor_124 gabor_006 gabor_085 gabor_175 gabor_124 gabor_006 gabor_085_alt gabor_175_alt "2_1_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2200_gabor_patch_orientation_124_006_085_175_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_085_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_1_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_085_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1992 2992 2192 fixation_cross gabor_090 gabor_052 gabor_067 gabor_129 gabor_090 gabor_052 gabor_067_alt gabor_129_alt "2_2_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2200_gabor_patch_orientation_090_052_067_129_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_174_framed blank blank blank blank fixation_cross_target_position_3_4 "2_2_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_174_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1742 2992 1942 fixation_cross gabor_060 gabor_172 gabor_035 gabor_094 gabor_060_alt gabor_172 gabor_035 gabor_094_alt "2_3_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_1950_gabor_patch_orientation_060_172_035_094_target_position_1_4_retrieval_position_1" gabor_060_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_3_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_060_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1942 2992 2542 fixation_cross gabor_103 gabor_180 gabor_073 gabor_015 gabor_103 gabor_180_alt gabor_073 gabor_015_alt "2_4_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2550_gabor_patch_orientation_103_180_073_015_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_151_framed blank blank blank blank fixation_cross_target_position_2_4 "2_4_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_151_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 63 292 292 399 125 2042 2992 2442 fixation_cross gabor_101 gabor_012 gabor_065 gabor_081 gabor_101_alt gabor_012 gabor_065_alt gabor_081 "2_5_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_UncuedRetriev_300_300_399_2050_3000_2450_gabor_patch_orientation_101_012_065_081_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_127_framed blank blank blank blank fixation_cross_target_position_1_3 "2_5_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_127_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1942 2992 2292 fixation_cross gabor_107 gabor_047 gabor_136 gabor_161 gabor_107_alt gabor_047 gabor_136_alt gabor_161 "2_6_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2300_gabor_patch_orientation_107_047_136_161_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_087_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_6_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_087_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 2242 2992 2142 fixation_cross gabor_009 gabor_133 gabor_163 gabor_024 gabor_009_alt gabor_133 gabor_163 gabor_024_alt "2_7_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2150_gabor_patch_orientation_009_133_163_024_target_position_1_4_retrieval_position_1" gabor_056_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_7_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_056_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 2042 2992 2242 fixation_cross gabor_060 gabor_121 gabor_035 gabor_004 gabor_060_alt gabor_121 gabor_035_alt gabor_004 "2_8_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2250_gabor_patch_orientation_060_121_035_004_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_170_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_8_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_170_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1742 2992 2042 fixation_cross gabor_151 gabor_082 gabor_036 gabor_067 gabor_151_alt gabor_082 gabor_036 gabor_067_alt "2_9_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2050_gabor_patch_orientation_151_082_036_067_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_067_framed blank blank blank blank fixation_cross_target_position_1_4 "2_9_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_067_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 63 292 292 399 125 1842 2992 1992 fixation_cross gabor_041 gabor_178 gabor_155 gabor_007 gabor_041 gabor_178_alt gabor_155_alt gabor_007 "2_10_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_UncuedRetriev_300_300_399_1850_3000_2000_gabor_patch_orientation_041_178_155_007_target_position_2_3_retrieval_position_1" gabor_088_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_10_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_088_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1792 2992 2592 fixation_cross gabor_101 gabor_062 gabor_174 gabor_041 gabor_101 gabor_062 gabor_174_alt gabor_041_alt "2_11_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2600_gabor_patch_orientation_101_062_174_041_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_174_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_11_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_174_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1892 2992 2142 fixation_cross gabor_074 gabor_129 gabor_056 gabor_099 gabor_074 gabor_129 gabor_056_alt gabor_099_alt "2_12_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2150_gabor_patch_orientation_074_129_056_099_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_12_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_145_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1742 2992 2442 fixation_cross gabor_026 gabor_081 gabor_009 gabor_149 gabor_026_alt gabor_081_alt gabor_009 gabor_149 "2_13_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2450_gabor_patch_orientation_026_081_009_149_target_position_1_2_retrieval_position_1" gabor_026_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_13_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_026_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 2142 2992 2492 fixation_cross gabor_028 gabor_013 gabor_093 gabor_133 gabor_028_alt gabor_013 gabor_093_alt gabor_133 "2_14_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2500_gabor_patch_orientation_028_013_093_133_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_046_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_14_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_046_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 64 292 292 399 125 1842 2992 2342 fixation_cross gabor_174 gabor_115 gabor_059 gabor_100 gabor_174 gabor_115_alt gabor_059 gabor_100_alt "2_15_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_UncuedRetriev_300_300_399_1850_3000_2350_gabor_patch_orientation_174_115_059_100_target_position_2_4_retrieval_position_1" gabor_174_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_15_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_174_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2192 2992 2092 fixation_cross gabor_114 gabor_009 gabor_175 gabor_062 gabor_114 gabor_009_alt gabor_175 gabor_062_alt "2_16_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2100_gabor_patch_orientation_114_009_175_062_target_position_2_4_retrieval_position_2" gabor_circ gabor_009_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_16_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_009_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1792 2992 2092 fixation_cross gabor_061 gabor_045 gabor_179 gabor_113 gabor_061 gabor_045 gabor_179_alt gabor_113_alt "2_17_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2100_gabor_patch_orientation_061_045_179_113_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_179_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_17_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_179_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1892 2992 2442 fixation_cross gabor_051 gabor_141 gabor_030 gabor_075 gabor_051_alt gabor_141 gabor_030 gabor_075_alt "2_18_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2450_gabor_patch_orientation_051_141_030_075_target_position_1_4_retrieval_position_1" gabor_051_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_18_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_051_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 64 292 292 399 125 1892 2992 2342 fixation_cross gabor_131 gabor_098 gabor_152 gabor_017 gabor_131 gabor_098_alt gabor_152_alt gabor_017 "2_19_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_UncuedRetriev_300_300_399_1900_3000_2350_gabor_patch_orientation_131_098_152_017_target_position_2_3_retrieval_position_1" gabor_131_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_19_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_131_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1892 2992 1892 fixation_cross gabor_007 gabor_118 gabor_055 gabor_165 gabor_007 gabor_118 gabor_055_alt gabor_165_alt "2_20_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_1900_gabor_patch_orientation_007_118_055_165_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_165_framed blank blank blank blank fixation_cross_target_position_3_4 "2_20_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_165_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 2092 2992 2392 fixation_cross gabor_064 gabor_041 gabor_131 gabor_004 gabor_064 gabor_041_alt gabor_131 gabor_004_alt "2_21_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2400_gabor_patch_orientation_064_041_131_004_target_position_2_4_retrieval_position_2" gabor_circ gabor_091_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_21_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_091_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 2192 2992 2392 fixation_cross gabor_105 gabor_173 gabor_045 gabor_153 gabor_105 gabor_173_alt gabor_045 gabor_153_alt "2_22_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2400_gabor_patch_orientation_105_173_045_153_target_position_2_4_retrieval_position_2" gabor_circ gabor_124_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_22_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_124_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1892 2992 2242 fixation_cross gabor_018 gabor_146 gabor_058 gabor_174 gabor_018 gabor_146_alt gabor_058_alt gabor_174 "2_23_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2250_gabor_patch_orientation_018_146_058_174_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_103_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_23_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_103_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1892 2992 2592 fixation_cross gabor_049 gabor_019 gabor_158 gabor_003 gabor_049 gabor_019_alt gabor_158_alt gabor_003 "2_24_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2600_gabor_patch_orientation_049_019_158_003_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_158_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_24_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_158_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1942 2992 1892 fixation_cross gabor_128 gabor_094 gabor_004 gabor_071 gabor_128 gabor_094 gabor_004_alt gabor_071_alt "2_25_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_1900_gabor_patch_orientation_128_094_004_071_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_071_framed blank blank blank blank fixation_cross_target_position_3_4 "2_25_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_071_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 63 292 292 399 125 2142 2992 2042 fixation_cross gabor_078 gabor_165 gabor_002 gabor_035 gabor_078 gabor_165 gabor_002_alt gabor_035_alt "2_26_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_UncuedRetriev_300_300_399_2150_3000_2050_gabor_patch_orientation_078_165_002_035_target_position_3_4_retrieval_position_1" gabor_124_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_26_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_124_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1942 2992 2492 fixation_cross gabor_168 gabor_141 gabor_032 gabor_097 gabor_168_alt gabor_141 gabor_032 gabor_097_alt "2_27_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2500_gabor_patch_orientation_168_141_032_097_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_097_framed blank blank blank blank fixation_cross_target_position_1_4 "2_27_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_097_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2142 2992 2392 fixation_cross gabor_105 gabor_034 gabor_171 gabor_056 gabor_105_alt gabor_034 gabor_171_alt gabor_056 "2_28_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2400_gabor_patch_orientation_105_034_171_056_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_171_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_28_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_171_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1842 2992 2492 fixation_cross gabor_083 gabor_044 gabor_065 gabor_014 gabor_083 gabor_044_alt gabor_065 gabor_014_alt "2_29_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2500_gabor_patch_orientation_083_044_065_014_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_150_framed blank blank blank blank fixation_cross_target_position_2_4 "2_29_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_150_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1842 2992 2142 fixation_cross gabor_157 gabor_112 gabor_068 gabor_131 gabor_157 gabor_112 gabor_068_alt gabor_131_alt "2_30_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2150_gabor_patch_orientation_157_112_068_131_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_084_framed blank blank blank blank fixation_cross_target_position_3_4 "2_30_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_084_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1792 2992 1942 fixation_cross gabor_066 gabor_086 gabor_033 gabor_051 gabor_066 gabor_086 gabor_033_alt gabor_051_alt "2_31_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_1950_gabor_patch_orientation_066_086_033_051_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_004_framed blank blank blank blank fixation_cross_target_position_3_4 "2_31_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_004_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 64 292 292 399 125 2242 2992 1992 fixation_cross gabor_058 gabor_137 gabor_179 gabor_018 gabor_058 gabor_137_alt gabor_179 gabor_018_alt "2_32_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_UncuedRetriev_300_300_399_2250_3000_2000_gabor_patch_orientation_058_137_179_018_target_position_2_4_retrieval_position_1" gabor_058_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_32_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_058_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1842 2992 2042 fixation_cross gabor_014 gabor_035 gabor_087 gabor_125 gabor_014_alt gabor_035 gabor_087_alt gabor_125 "2_33_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2050_gabor_patch_orientation_014_035_087_125_target_position_1_3_retrieval_position_1" gabor_063_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_33_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_063_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1992 2992 1992 fixation_cross gabor_125 gabor_152 gabor_174 gabor_013 gabor_125_alt gabor_152 gabor_174_alt gabor_013 "2_34_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2000_gabor_patch_orientation_125_152_174_013_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_174_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_34_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_174_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 2192 2992 2092 fixation_cross gabor_062 gabor_133 gabor_023 gabor_007 gabor_062_alt gabor_133_alt gabor_023 gabor_007 "2_35_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2100_gabor_patch_orientation_062_133_023_007_target_position_1_2_retrieval_position_2" gabor_circ gabor_083_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_35_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_083_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 2092 2992 2242 fixation_cross gabor_069 gabor_023 gabor_129 gabor_085 gabor_069 gabor_023_alt gabor_129_alt gabor_085 "2_36_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2250_gabor_patch_orientation_069_023_129_085_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_175_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_36_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_175_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 2042 2992 1942 fixation_cross gabor_180 gabor_014 gabor_147 gabor_162 gabor_180_alt gabor_014 gabor_147 gabor_162_alt "2_37_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_1950_gabor_patch_orientation_180_014_147_162_target_position_1_4_retrieval_position_1" gabor_040_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_37_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_040_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 63 292 292 399 125 2092 2992 1992 fixation_cross gabor_088 gabor_155 gabor_019 gabor_069 gabor_088 gabor_155_alt gabor_019 gabor_069_alt "2_38_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_UncuedRetriev_300_300_399_2100_3000_2000_gabor_patch_orientation_088_155_019_069_target_position_2_4_retrieval_position_1" gabor_040_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_38_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_040_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1842 2992 2592 fixation_cross gabor_105 gabor_131 gabor_167 gabor_058 gabor_105_alt gabor_131_alt gabor_167 gabor_058 "2_39_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2600_gabor_patch_orientation_105_131_167_058_target_position_1_2_retrieval_position_2" gabor_circ gabor_082_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_39_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_082_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 63 292 292 399 125 1842 2992 2242 fixation_cross gabor_048 gabor_102 gabor_013 gabor_130 gabor_048 gabor_102_alt gabor_013_alt gabor_130 "2_40_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_UncuedRetriev_300_300_399_1850_3000_2250_gabor_patch_orientation_048_102_013_130_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_084_framed blank blank blank blank fixation_cross_target_position_2_3 "2_40_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_084_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1942 2992 2192 fixation_cross gabor_098 gabor_019 gabor_079 gabor_164 gabor_098_alt gabor_019_alt gabor_079 gabor_164 "2_41_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2200_gabor_patch_orientation_098_019_079_164_target_position_1_2_retrieval_position_1" gabor_048_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_41_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_048_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 2042 2992 2442 fixation_cross gabor_028 gabor_157 gabor_043 gabor_172 gabor_028 gabor_157_alt gabor_043_alt gabor_172 "2_42_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2450_gabor_patch_orientation_028_157_043_172_target_position_2_3_retrieval_position_2" gabor_circ gabor_111_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_42_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_111_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1992 2992 2542 fixation_cross gabor_161 gabor_032 gabor_113 gabor_094 gabor_161 gabor_032_alt gabor_113_alt gabor_094 "2_43_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2550_gabor_patch_orientation_161_032_113_094_target_position_2_3_retrieval_position_2" gabor_circ gabor_032_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_43_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_032_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1792 2992 2342 fixation_cross gabor_084 gabor_165 gabor_014 gabor_032 gabor_084 gabor_165 gabor_014_alt gabor_032_alt "2_44_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2350_gabor_patch_orientation_084_165_014_032_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_149_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_44_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_149_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2192 2992 1892 fixation_cross gabor_081 gabor_148 gabor_118 gabor_170 gabor_081_alt gabor_148 gabor_118 gabor_170_alt "2_45_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_1900_gabor_patch_orientation_081_148_118_170_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_170_framed blank blank blank blank fixation_cross_target_position_1_4 "2_45_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_170_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 63 292 292 399 125 2092 2992 2192 fixation_cross gabor_022 gabor_104 gabor_043 gabor_083 gabor_022 gabor_104_alt gabor_043_alt gabor_083 "2_46_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_UncuedRetriev_300_300_399_2100_3000_2200_gabor_patch_orientation_022_104_043_083_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_131_framed blank blank blank blank fixation_cross_target_position_2_3 "2_46_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_131_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2142 2992 2542 fixation_cross gabor_126 gabor_141 gabor_080 gabor_021 gabor_126 gabor_141 gabor_080_alt gabor_021_alt "2_47_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2550_gabor_patch_orientation_126_141_080_021_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_021_framed blank blank blank blank fixation_cross_target_position_3_4 "2_47_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_021_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2042 2992 2542 fixation_cross gabor_168 gabor_009 gabor_042 gabor_125 gabor_168 gabor_009_alt gabor_042_alt gabor_125 "2_48_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2550_gabor_patch_orientation_168_009_042_125_target_position_2_3_retrieval_position_2" gabor_circ gabor_009_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_48_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_009_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1792 2992 2292 fixation_cross gabor_006 gabor_021 gabor_138 gabor_050 gabor_006 gabor_021 gabor_138_alt gabor_050_alt "2_49_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2300_gabor_patch_orientation_006_021_138_050_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_050_framed blank blank blank blank fixation_cross_target_position_3_4 "2_49_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_050_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1992 2992 2192 fixation_cross gabor_085 gabor_131 gabor_023 gabor_041 gabor_085 gabor_131 gabor_023_alt gabor_041_alt "2_50_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2200_gabor_patch_orientation_085_131_023_041_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_161_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_50_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_161_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2192 2992 2492 fixation_cross gabor_031 gabor_079 gabor_152 gabor_096 gabor_031_alt gabor_079_alt gabor_152 gabor_096 "2_51_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2500_gabor_patch_orientation_031_079_152_096_target_position_1_2_retrieval_position_1" gabor_031_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_51_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_031_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1742 2992 2092 fixation_cross gabor_077 gabor_058 gabor_129 gabor_013 gabor_077 gabor_058_alt gabor_129 gabor_013_alt "2_52_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2100_gabor_patch_orientation_077_058_129_013_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_013_framed blank blank blank blank fixation_cross_target_position_2_4 "2_52_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_013_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 64 292 292 399 125 1792 2992 2392 fixation_cross gabor_075 gabor_165 gabor_012 gabor_056 gabor_075_alt gabor_165 gabor_012_alt gabor_056 "2_53_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_UncuedRetriev_300_300_399_1800_3000_2400_gabor_patch_orientation_075_165_012_056_target_position_1_3_retrieval_position_2" gabor_circ gabor_165_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_53_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_165_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 2042 2992 2292 fixation_cross gabor_075 gabor_043 gabor_090 gabor_120 gabor_075 gabor_043 gabor_090_alt gabor_120_alt "2_54_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2300_gabor_patch_orientation_075_043_090_120_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_165_framed blank blank blank blank fixation_cross_target_position_3_4 "2_54_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_165_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1992 2992 2342 fixation_cross gabor_141 gabor_103 gabor_175 gabor_014 gabor_141 gabor_103_alt gabor_175 gabor_014_alt "2_55_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2350_gabor_patch_orientation_141_103_175_014_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_014_framed blank blank blank blank fixation_cross_target_position_2_4 "2_55_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_014_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 2242 2992 1942 fixation_cross gabor_103 gabor_171 gabor_081 gabor_143 gabor_103 gabor_171_alt gabor_081_alt gabor_143 "2_56_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_1950_gabor_patch_orientation_103_171_081_143_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_031_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_56_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_031_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2242 2992 2292 fixation_cross gabor_045 gabor_067 gabor_102 gabor_176 gabor_045_alt gabor_067 gabor_102_alt gabor_176 "2_57_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2300_gabor_patch_orientation_045_067_102_176_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_57_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_102_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 63 292 292 399 125 1742 2992 1892 fixation_cross gabor_031 gabor_002 gabor_151 gabor_071 gabor_031_alt gabor_002 gabor_151_alt gabor_071 "2_58_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_UncuedRetriev_300_300_399_1750_3000_1900_gabor_patch_orientation_031_002_151_071_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_121_framed blank blank blank blank fixation_cross_target_position_1_3 "2_58_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_121_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 2192 2992 2042 fixation_cross gabor_170 gabor_018 gabor_155 gabor_126 gabor_170 gabor_018 gabor_155_alt gabor_126_alt "2_59_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2050_gabor_patch_orientation_170_018_155_126_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_080_framed blank blank blank blank fixation_cross_target_position_3_4 "2_59_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_080_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 2142 2992 2042 fixation_cross gabor_035 gabor_059 gabor_020 gabor_147 gabor_035_alt gabor_059 gabor_020 gabor_147_alt "2_60_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2050_gabor_patch_orientation_035_059_020_147_target_position_1_4_retrieval_position_1" gabor_174_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_60_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_174_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 64 292 292 399 125 2242 2992 2142 fixation_cross gabor_087 gabor_055 gabor_035 gabor_168 gabor_087_alt gabor_055 gabor_035_alt gabor_168 "2_61_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_UncuedRetriev_300_300_399_2250_3000_2150_gabor_patch_orientation_087_055_035_168_target_position_1_3_retrieval_position_2" gabor_circ gabor_055_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_61_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_055_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1892 2992 2142 fixation_cross gabor_120 gabor_040 gabor_099 gabor_015 gabor_120_alt gabor_040_alt gabor_099 gabor_015 "2_62_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2150_gabor_patch_orientation_120_040_099_015_target_position_1_2_retrieval_position_2" gabor_circ gabor_179_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_62_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_179_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2142 2992 2292 fixation_cross gabor_037 gabor_147 gabor_060 gabor_165 gabor_037 gabor_147_alt gabor_060_alt gabor_165 "2_63_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2300_gabor_patch_orientation_037_147_060_165_target_position_2_3_retrieval_position_2" gabor_circ gabor_147_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_63_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_147_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2242 2992 2342 fixation_cross gabor_047 gabor_161 gabor_134 gabor_004 gabor_047_alt gabor_161_alt gabor_134 gabor_004 "2_64_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2350_gabor_patch_orientation_047_161_134_004_target_position_1_2_retrieval_position_2" gabor_circ gabor_161_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_64_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_161_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1792 2992 1992 fixation_cross gabor_146 gabor_178 gabor_131 gabor_017 gabor_146 gabor_178 gabor_131_alt gabor_017_alt "2_65_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2000_gabor_patch_orientation_146_178_131_017_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_062_framed blank blank blank blank fixation_cross_target_position_3_4 "2_65_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_062_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1942 2992 1942 fixation_cross gabor_171 gabor_109 gabor_093 gabor_023 gabor_171 gabor_109_alt gabor_093 gabor_023_alt "2_66_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_1950_gabor_patch_orientation_171_109_093_023_target_position_2_4_retrieval_position_2" gabor_circ gabor_109_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_66_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_109_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 64 292 292 399 125 2092 2992 1892 fixation_cross gabor_010 gabor_145 gabor_078 gabor_123 gabor_010_alt gabor_145 gabor_078_alt gabor_123 "2_67_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_UncuedRetriev_300_300_399_2100_3000_1900_gabor_patch_orientation_010_145_078_123_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_123_framed blank blank blank blank fixation_cross_target_position_1_3 "2_67_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_123_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2092 2992 2592 fixation_cross gabor_012 gabor_092 gabor_057 gabor_172 gabor_012_alt gabor_092 gabor_057_alt gabor_172 "2_68_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2600_gabor_patch_orientation_012_092_057_172_target_position_1_3_retrieval_position_1" gabor_012_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_68_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_012_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1992 2992 2242 fixation_cross gabor_164 gabor_124 gabor_093 gabor_051 gabor_164 gabor_124_alt gabor_093_alt gabor_051 "2_69_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2250_gabor_patch_orientation_164_124_093_051_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_093_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_69_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_093_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 64 292 292 399 125 1742 2992 2092 fixation_cross gabor_146 gabor_169 gabor_116 gabor_040 gabor_146 gabor_169_alt gabor_116_alt gabor_040 "2_70_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_UncuedRetriev_300_300_399_1750_3000_2100_gabor_patch_orientation_146_169_116_040_target_position_2_3_retrieval_position_1" gabor_146_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_70_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_146_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
};
# baselinePost (at the end of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
};
time = 0;
duration = 5000;
code = "BaselinePost";
port_code = 92;
}; |
f1acc2fed953d10d3d5b3dac7439031f63cddd67 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2705/CH5/EX5.15/Ex5_15.sce | e5ae9aa6a0c95cc98976930e6ab3bfc87a5f8fa0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 973 | sce | Ex5_15.sce | clear;
clc;
disp('Example 5.15');
// aim : To determine
// the heat transferred and polytropic specific heat capacity
// Given values
P1 = 1;// initial pressure, [MN/m^2]
V1 = .003;// initial volume, [m^3]
P2 = .1;// final pressure,[MN/m^2]
cv = .718;// [kJ/kg*K]
Gamma=1.4;// heat capacity ratio
// solution
// Given process is polytropic with
n = 1.3;// polytropic index
// hence
V2 = V1*(P1/P2)^(1/n);// final volume,[m^3]
W = (P1*V1-P2*V2)*10^3/(n-1);// work done,[kJ]
// so
Q = (Gamma-n)*W/(Gamma-1);// heat transferred,[kJ]
mprintf('\n The heat received or rejected by the gas during this process is Q = %f kJ',Q);
if(Q>0)
disp('since Q>0, so heat is received by the gas')
else
disp('since Q<0, so heat is rejected by the gas')
end
// now
cn = cv*(Gamma-n)/(n-1);// polytropic specific heat capacity,[kJ/kg K]
mprintf('\n The polytropic specific heat capacity is cn = %f kJ/kg K\n',cn);
// End
|
4dcc84214b239c5aa7db06fb107a6b97457efd4f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3831/CH16/EX16.3/Ex16_3.sce | c18a212f820ab7769e4d3c29819e1d433d93e68b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 718 | sce | Ex16_3.sce | // Example 16_3
clc;funcprot(0);
// Given data
p_1=14.7;// psia
T_1=1000;// °F
V_1=1612;// ft/s
g_c=32.174;// lbm.ft/lbf.s^2
// Calculation
// Station 1
p_1=14.7;// psia
T_1=1000;// °F
h_1=1534.4;// Btu/lbm
s_1=2.1332;// Btu/lbm.R
// Station os
s_os=s_1;// Btu/lbm.R
h_os=h_1+(V_1^2/(2*g_c));// Btu/lbm
//Table C.3a, in Thermodynamic Tables to accompany Modern Engineering Thermodynamics a Mollier diagram for steam
p_os=20.0;// psia
T_os=1100;// °F
v_os=46.4;// ft^3/lbm
rho_os=1/v_os;// lbm/ft^3;
printf("\nThe isentropic stagnation temperature,T_0=%4.0f°F \nThe isentropic stagnation pressure,p_os=%2.1f psia \nThe isentropic stagnation density,rho_os=%0.3f lbm/ft^3",T_os,p_os,rho_os);
|
558c52943594d4959792f701d40bb938eb858597 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1883/CH4/EX4.6.3/Example4_3.sce | 701ba17ae7996987619399305d0e342731e0dbda | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 501 | sce | Example4_3.sce | //Chapter-4,Example4_6_3,pg 4-8
P=100*10^3 //avrage power per pulse
t=20*10^-9 //time duration
h=6.63*10^-34 //Plancks constant
c=3*10^8 //velocity of light in air
N=6.981*10^15 //No. of photons per pulse
wavelength=N*h*c/(P*t)*10^10
printf("\nWavelength of photons = %.f A.\n",wavelength)
|
9a0e918ed1cfae6e067b5c7c2e103969fe787ad2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3487/CH4/EX4.4/Ex4_4.sce | 80341e37d9759252978daacc75c0ca2daa25df97 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 308 | sce | Ex4_4.sce | //Chapter 4,Example 4.4 Page 145
clc
clear
Imin = 2*10^-6 // A
Imax = 35*10^-6 // A
V = 15*10^4 // V
w = 2*%pi*1500/60
Cm = sqrt(2)*Imin/(V*w)
Ipeak = 2*250/15
printf (" Cm = %f pF \n ",Cm*10^13)
printf (" At 250 kV, the current indicated will be = %f μA \n ",Ipeak)
//Answers vary due to round off error
|
4b29ae4d2d6039f354827a609a46e1175929bb82 | 449d555969bfd7befe906877abab098c6e63a0e8 | /331/CH7/EX7.12/Example_7_12.sce | 1884c257b08a10d5ddd05d1d258abe99617fb4dc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 536 | sce | Example_7_12.sce | //Caption: Confidence Interval Estimation (when Sample Size is Small)
//Example7.12
//Page216
clear;
clc;
X = 20;// mean diameter of the shafts in mm
Var = 9;// variance of the safts in mm
Std = sqrt(Var);//standard deviation
n = 16;// number of samples
alpha = 0.05;//confidence level
alpha = alpha/2;
talpha = 2.1311;//students t dstribution
StdErr = Std/sqrt(n);
CI = [X-talpha*StdErr,X+talpha*StdErr]
disp(CI,'The Confidenc Interval u =')
//Result
//The Confidenc Interval u =
//
// 18.401675 21.598325 |
f383aca86ff2fd5ca2f03cbb0ab829668886870d | 449d555969bfd7befe906877abab098c6e63a0e8 | /767/CH7/EX7.7.1/Ch07Exa7_7_1.sci | 559082e5da553a94c9339c509e5e09c7d77ad95b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,129 | sci | Ch07Exa7_7_1.sci | // Scilab code Exa7.7.1 : To calculate the thickness of depletion layer of silicon detector and amplitude of voltage pulse :P.no. 316 (2011)
E_r = 12; // Relative permittivity
E_o = 8.85e-012; // Permittivity of free space
E = E_r*E_o; // Absolute dielectric constant
C = 100e-012; // Capacitance of the dielectric, F
A = 1.6e-04; // Area of the detector, m^2
e = 1.602e-019; // Charge of an electrin, C
E_p = 3.2; // Energy required to create an ion pair, eV
E_s = 12e+06; // Energy required to stopped ion pair, eV
n = E_s/E_p; // Number of ion-pair produced
Q = n*e; // Charge of these ion pair, C
d = A*E/(C*10^-6); // The thickness of the depletion layer, micron
A = Q/C*1000; // The amplitude of voltage pulse, mV
printf("\n The thickness of the depletion layer = %d micron \n The amplitude of voltage pulse: = %6.4f mV ", d, A)
// Result
// The thickness of the depletion layer = 169 micron
// The amplitude of voltage pulse: = 6.0075 mV
|
96957513ea699f5bf7012ccf0bcddd427851080d | 449d555969bfd7befe906877abab098c6e63a0e8 | /27/CH5/EX5.2.7/Example_5_2_7.sce | d7d718050d175edf8551bc076f5b0891f94cc6b4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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_5_2_7.sce | clear;
clc;
close;
A=[2 1;3 4]
t=det(A)
tau=trace(A)
disp("Since t>0 and (tau)^2 - 4*t =16 >0 hence the fixed point is a node.")
disp("It is unstable since tau>0.") |
6e5035c61a2647ea67ff71fc389505853743b9a2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2507/CH5/EX5.10/Ex5_10.sce | 56801bd9644e3fff8b704df6d5185bf78a14f2f5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 619 | sce | Ex5_10.sce | clc
clear
printf("Example 5.10 | Page number 131 \n\n");
//Find the mass of air entering and temperature of air in vessel
//Given Data
m1 = 0.8 //kg //initial mass of air
p1 = 150 //kPa //initial pressure of air
T1 = 300 //K //initial temperature of air
p_p = 600 //kPa //pressure of air in pipe
T_p = 330 //K // temperature of air in pipe
//Solution
m2T2 = (p_p/p1)*T1*m1
m2 = ((0.718*(m2T2/m1-T1))/(331.65)*m1)+m1 //kg //final mass of air
printf("Mass of air entering in vessel = %.4f kg\n",m2-m1)
T2 = m2T2/m2 //K //Temperature of air in vessel
printf("Temperature of air in vessel = %.1f K",T2)
|
af23e71f69f7537ab1049723314841b1a013712c | 9aa95a74bbb2cde53d49cfbeb529fe858781b85c | /function.sce | 3642f07841ca24397cfec81c7d55ecd18faf0b2d | [] | no_license | Killer2499/Scilab | 020807deb4ea75743af080761b65be086d05d491 | 322a592dcccad58dab48bcf52411aa5b26fcb8ff | refs/heads/master | 2020-03-10T09:08:15.979283 | 2018-04-12T19:57:09 | 2018-04-12T19:57:09 | 129,303,189 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 49 | sce | function.sce | function test=test(a,b)
c=a+b;
endfunction
|
948bac41f88d9a541fc8cd672d693b60b04f9504 | 2eac84edf941c64588fef76f10d02309aabcb2fb | /System/Scilab/Scripts/loadLibFunctions.sci | 61f05368b3fb6ed26afe6a1fcf93fd1424bc5d9c | [
"BSD-3-Clause"
] | permissive | AlexisTM/X2C | fdd93bd33b931ea448ba516f5e3f9af6a5149a6a | 31f39b598afe271a7fd46ef1ee9e06c410b1120c | refs/heads/master | 2021-08-07T04:26:24.391617 | 2017-11-07T14:34:33 | 2017-11-07T14:34:33 | 109,844,123 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 6,379 | sci | loadLibFunctions.sci | // Copyright (c) 2017, Linz Center of Mechatronics GmbH (LCM) http://www.lcm.at/
// All rights reserved.
//
// This file is licensed according to the BSD 3-clause license as follows:
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// * Neither the name of the "Linz Center of Mechatronics GmbH" and "LCM" nor
// the names of its contributors may be used to endorse or promote products
// derived from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
// IN NO EVENT SHALL "Linz Center of Mechatronics GmbH" BE LIABLE FOR ANY
// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// This file is part of X2C. http://www.mechatronic-simulation.org/
// $LastChangedRevision: 1111 $
// $LastChangedDate:: 2017-02-28 14:18:07 +0100#$
//
// Several helper functions to get easy access to Scilab Java library functions
funcprot(0)
//mprintf("\n+ Loading X2C Scilab lib\n")
warningmode = warning('query')
warning('off')
function x2c_transformModel_Comm()
// Transforms model and starts Communicator,
jimport("at.lcm.x2c.scilab.xcos.x2cManager.X2cManager");
x2cMng = jinvoke(X2cManager, "getInstance");
jinvoke(x2cMng, "setCurrentDiagram");
jinvoke(x2cMng, "updateModel");
endfunction
function x2c_setCurrentDiagram()
jimport("at.lcm.x2c.scilab.xcos.x2cManager.X2cManager");
x2cMng = jinvoke(X2cManager, "getInstance");
jinvoke(x2cMng, "setCurrentDiagram");
endfunction
function x2c_ModelReset()
jimport("at.lcm.x2c.scilab.xcos.x2cManager.X2cManager");
x2cMng = jinvoke(X2cManager, "getInstance");
jinvoke(x2cMng, "resetModel");
endfunction
function x2c_communicatorConnect()
jimport("at.lcm.x2c.scilab.xcos.x2cManager.X2cManager");
x2cMng = jinvoke(X2cManager, "getInstance");
if isVersionLessThan("5.5.0") then
success = junwrap(jinvoke(x2cMng, "communicatorConnect"));
else
success = jinvoke(x2cMng, "communicatorConnect");
end
if success then
mprintf("Successfully connected to Communicator\n")
else
error("Connecting to Communicator failed")
end
endfunction
function x2c_communicatorDisconnect()
jimport("at.lcm.x2c.scilab.xcos.x2cManager.X2cManager");
x2cMng = jinvoke(X2cManager, "getInstance");
jinvoke(x2cMng, "communicatorDisconnect");
endfunction
function x2c_setCurrentWorkingDir()
jimport("at.lcm.x2c.core.librarymanager.X2cLibraryManager");
x2cLM = jinvoke(X2cLibraryManager,"getInstance");
jinvoke(x2cLM, "setWorkingDirectory", pwd());
endfunction
function cwd = x2c_getCurrentWorkingDir()
jimport("at.lcm.x2c.core.librarymanager.X2cLibraryManager");
x2cLM = jinvoke(X2cLibraryManager,"getInstance");
if isVersionLessThan("5.5.0") then
cwd = junwrap(jinvoke(x2cLM, "getWorkingDirectoryString"));
else
cwd = jinvoke(x2cLM, "getWorkingDirectoryString");
end
endfunction
function [x2cLibs] = x2c_LibManager_addPath(path)
// Set "x2c_rebuild = %t" to rebuild already compiled libraries.
//
// this does not work
//
// @author: martin.hochwallner@lcm.at
currentdir = pwd();
jimport("at.lcm.x2c.core.librarymanager.X2cLibraryManager");
x2cLM = jinvoke(X2cLibraryManager,"getInstance");
if isVersionLessThan("5.5.0") then
x2cLibs = junwrap(jinvoke(x2cLM, "addPath_XcosLibPathStr", path));
else
x2cLibs = jinvoke(x2cLM, "addPath_XcosLibPathStr", path);
end
for l = x2cLibs
mprintf("\n")
mprintf("++ %s \n", l )
chdir(l);
if exists("x2c_rebuild") then
mprintf("rebuilding Library\n")
exec("X2C___builder.sce", -1)
end
warning("This does not work as supposed! Loaded libs are not visible outside this function. FIXME")
exec("X2C___start.sce", -1)
mprintf("--\n")
end
chdir(currentdir)
mprintf("libs added:\n")
disp(x2cLibs')
mprintf("- done\n")
endfunction
function [x2cLibs] = x2c_LibManager_populate()
// x2c_LibManager_populateWithDefault()
// @author: martin.hochwallner@lcm.at
jimport("at.lcm.x2c.core.librarymanager.X2cLibraryManager");
x2cLM = jinvoke(X2cLibraryManager,"getInstance");
if isVersionLessThan("5.5.0") then
x2cLibs = junwrap(jinvoke(x2cLM, "populateWithDefault"));
else
x2cLibs = jinvoke(x2cLM, "populateWithDefault");
end
endfunction
function [x2cLibs] = x2c_LibManager_addPath_woLoad(path)
// @author: martin.hochwallner@lcm.at
jimport("at.lcm.x2c.core.librarymanager.X2cLibraryManager");
x2cLM = jinvoke(X2cLibraryManager,"getInstance");
if isVersionLessThan("5.5.0") then
x2cLibs = junwrap(jinvoke(x2cLM, "addPath_XcosLibPathStr", path));
else
x2cLibs = jinvoke(x2cLM, "addPath_XcosLibPathStr", pat);
end
endfunction
function x2c_setParameterComm(componentName, blockName, parameter, value)
jimport("at.lcm.x2c.scilab.xcos.x2cManager.X2cManager");
x2cMng = jinvoke(X2cManager, "getInstance");
jinvoke(x2cMng, "notifyLocalChange2Romete_BlockMaskParameter", componentName, blockName, parameter, value)
endfunction
warning(warningmode)
//mprintf("- done\n")
//eof
|
8ed27273005792dbc4aab1e6ce84e8bca4955ca8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2409/CH14/EX14.1/Ex14_1.sce | 56016300a6eba6612766f6270e4e6978e4591b40 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 853 | sce | Ex14_1.sce |
//Variable Declaration
Btr=36 //Transponder Bandwidth(MHz)
B=3 //Carrier Bandwidth(MHz)
EIRP=27 //saturated EIRP(dBW)
BO=6 //Back off loss(dB)
LOSSES=196 //Combined losses(dB)
GTR=30 //Earth station G/T ratio(dB)
k=228.6 //Value of k(dB)
//Calculation
Btr1=10*log10(Btr*10**6) //Converting transponder Bandwidth into decibels
B1=10*log10(B*10**6) //Converting carrier Bandwidth into decibels
CNR=EIRP+GTR-LOSSES+k-Btr1 //Carrier to noise ratio for single carrier operation(dB)
CNR=round(CNR)
alpha=-BO
K=alpha+Btr1-B1 //Fraction of Bandwidth actually occupied(dB)
K=10**(K/10) //Converting decibels to ratio
K=round(K)
//Results
printf("The downlink carrier to noise ratio is %.0f dB",CNR)
printf("Fraction of Bandwidth actually occupied is %.0f",K)
printf("No. of carriers that would be accommodated without backoff is %.f",Btr/B)
|
65121872dc629e609ece3d430e4087d0f07f66ac | 4c888070ef0e5ac657898d54a469c6587077d0f9 | /tests/ok/neg_coord.tst | c8e1766049d1ec8565cd1a6e4fb3e76d4af74001 | [] | no_license | Vezyr68/Tests4lemin | 047babbbdd269de9841cfda1f0bd229e9761838f | 426cf85358a1879c039f06d2de595451126d746e | refs/heads/master | 2023-01-06T19:39:28.329496 | 2020-11-10T12:28:17 | 2020-11-10T12:28:17 | 310,910,849 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 183 | tst | neg_coord.tst | 123
#rooms
room0 0 12
##end
end 0 0
room1 1 -11
room2 2 10
#start
start 1 1
room5 10 10
#links
end-start
end-room0
end-room1
end-room2
room2-start
room2-room0
room0-room1
start-room1
|
8a61447bb096f4025570b2e5c08b39885b663f81 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1703/CH13/EX13.13/13_13.sce | 140142d0ecec2341aad5c39c54598005f5e72721 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 461 | sce | 13_13.sce | clear
clc
//initialisation of variables
p= 160 //lb/in^2
d= 1/3 //ft
T= 15 //C
R= 96
V= 120 //ft^3
f= 0.004
a= 60*%pi
l= 10560 //ft
g= 32.2 //ft/sec^2
//CALCULATIONS
p1= p*144
w1= p*144/(R*(273+T))
v1= V*36/a
p2= sqrt(p1^2-((2*4*f*p1*w1*v1^2*l)/(2*g*d)))/144
v2= p*v1/p2
//RESULTS
printf (' pressure = %.1f lb/in^2 ',p2)
printf ('\n velocity = %.1f ft/sec ',v2)
//The answer is a bit different due to rounding off error in textbook
|
ef66fe6cfe8b97d8bf91b43e03e8b18d17e3113e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1199/CH4/EX4.3/4_3.sci | b2eaa161cdf627f3f8d0337c687570a8abc6a5ec | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 89 | sci | 4_3.sci | // 4.3
clc;
Pc=50;
m=0.85;
Pt=Pc*(1+(m^2/2))
printf("Radiation Power =%.2f kW",Pt)
|
4c00442949f51e74ddae357caf97dcb9833586e0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1826/CH6/EX6.2/ex6_2.sce | 586ea9fee3da730462e19d131557ac66e870b124 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 187 | sce | ex6_2.sce | // Example 6.2, page no-144
clear
clc
lam=6715*10^-10//m
h=6.626*10^-34
c=3*10^8//m/s
e=1.6*10^-19//C
Eg=h*c/lam
Eg=Eg/e
printf("The band gap of the given GaAsP is %.2f eV",Eg)
|
5c87340443b1b9bf70e9e262021c500800b0a4f8 | 964a1ce44b6391e555c0e2aeff6c55dda847d718 | /Mini Compiler for LaTeX/test result/projp2_res.tst | b2122325c98cfde5bd01ab13f1f563d545be70ce | [] | no_license | kennethwty/mini-compiler-latex | 6c165567298c216d39a806fa7cc05ed67f1babfc | d1b99a4fbbac906bf61242a977886578e1eb3594 | refs/heads/master | 2021-09-28T10:08:02.927880 | 2018-11-16T17:45:46 | 2018-11-16T17:45:46 | 104,703,352 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,226 | tst | projp2_res.tst |
1. Revising the common grammar to remove the shift or reduce and rule not reduced conflicts. These corrections are made to the yacc or bison file, and the result must be tested extensively for different input latex documents. This task is worth 35 points.
2. Using your result grammar of the first task, redesign the common grammar to support the recognition of verbatim blocks and also nested blocks. That is, recall that the different blocks itemize, enumerate, single, etc. can also be nested to yield different combinations of formatted text. Again, test your result using yacc.bison to demonstrate that the grammar revisions for these two changes work correctly. This task is worth 15 points.
latex.in A sample input file.
latex.l A sample latex lex file.
latexp2.y A yacc specification with fprintf s for debugging.
latexp2clean.y Equivalent specification without the fprintfs.
y2conflicts The shift.reduce conflicts generated by YACC.
b2conflicts The shift.reduce conflicts generated by BISON.
1. The revised yacc.bison specification for task 1. DO NOT HAND IN C files!
2. A log file that documents the changes made to the grammar to eliminate the shift.reduce errors and other problems for task 1. Make sure that you provide both the original and revised grammar segments for each change that you make! Also include any remaining shift.reduce or reduce.reduce errors, but NOT the entire output file.
3. The revised yacc.bison specification for task 2. DO NOT HAND IN C files!
4. A log file that documents the changes made to your grammar of task 1 in support of verbatim and nested blocks. These changes may occur in both the lex flex and yacc bison files! Again, provide original.revised segments for each change, and remaining S.R or R.R errors.
5. Test cases and test results for both tasks, clearly marked and organized.
6. The directory location for your files and detailed compilation instructions.
I^H_ M^H_ P^H_ O^H_ R^H_ T^H_ A^H_ N^H_ T^H_ ^@^H_
|
a3e3036bce74c6151396d045af8e48e8d54410df | 449d555969bfd7befe906877abab098c6e63a0e8 | /2207/CH5/EX5.12.1/ex_5_12_1.sce | e2acf6bc504cb66d02296eafa1856ce14cec2b45 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,435 | sce | ex_5_12_1.sce | //Example 5.12.1: rms output voltage,output power, average and peak currents,peak reverse blocking voltage,THD,DF,harmonic factor and distortion factor of the lowest order harmonic
clc;
clear;
close;
disp("part (a)")
format('v',5)
v=24;//in volts
V=v;//
r=3;//in ohms
v1rms=(2*v)/(sqrt(2)*%pi);//in volts
disp(v1rms,"rms output voltage at fundamental frequency in volts is")
disp("part (b)")
po=((v/2)^2)/r;//in watts
disp(po,"output power in Watt is")
disp("part (c)")
itav=(v/(4*r));//in amperes
itp=((v/2)/r);//in amperes
disp(itav,"average transistor current in amperes is")
disp(itp,"transistor peak current in amperes is")
disp("part (d)")
vbr=2*(v/2);//in volts
disp(vbr,"peak reverse bloacking voltage in volts is")
disp("part (e)")
vo=v/2;//
THD1=((vo)^2-(v1rms)^2)^(1/2);//in volts
THD=THD1/v1rms;//
disp(THD*100,"Total Hramonic distortion in percentage is")
disp("part (f)")
n=[0;0;(1/3);0;(1/5);0;(1/7);0;(1/9);0;(1/11);0;(1/13)];//
for i=[3;5;7;9;11;13]
v(i)=(2*V)*((n(i)))/(%pi*sqrt(2));//
end
x=sqrt((((v(3))/(3^2))^2)+(((v(5))/(5^2))^2)+(((v(7))/(7^2))^2)+(((v(9))/(9^2))^2)+(((v(11))/(11^2))^2)+(((v(13))/(13^2))^2));//
DF=x/v1rms;//
disp(DF*100,"distortion factor in percentage is")
//distortion factor is calculated wrong in the textbook
disp("part (g)")
HF3=v(3)/v1rms;//
DF3=((v(3))/(3^2))/v1rms
disp(HF3*100,"HF for the third harmonic in percentage is")
disp(DF3*100,"DF the third harmonic in percentage is")
|
3f6fd359fddacc0775168f1c23f5f1d0abb27beb | 449d555969bfd7befe906877abab098c6e63a0e8 | /1073/CH2/EX2.8/2_8.sce | ad4ae7e54a39ae85b5ba9f46922dd44bb8bcd21f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 2_8.sce | clear;
clc;
//Example 2.8
printf("Example 2.8 \n")
//Given:
x1=0.02 //[m]
x2=0.01 //[m]
x3=0.02 //[m]
k1=0.105 //W/(m.k)
k3=k1 //W/(m.K)
k2=0.041 //W/(m.K)
T1=303
T2=263
dT=T1-T2 //[K]
Q_by_A=dT/((x1/k1)+(x2/k2)+(x3/k3))
R=0.625 //K/W
Tx=293 //K
Rx=0.9524 //K/W
x=R*(T1-Tx)/(dT*Rx)
x=x*100 //mm
printf("The temperature of 293 K will be reached at point %f mm from the outermost wall surface of the ice-box",x)
|
b3a8b2efb66bd827af3767b10515c891eff17371 | 4533c11d75f955d8350d45606af92ca064d2e319 | /differentialEvolution/scilab-scripts/EstimationVoltageBenchmark1LinearCa,t+K,p+L.sce | c2000fcf9d2fc3f91f626d48c6a83aa46ed51680 | [] | no_license | lois76/ParamEstimationDE | 0066c5a18042637b97bf989e77f2ce04ba283b12 | ab3911174450a4ec9976a108885cf8e7afc62b3d | refs/heads/master | 2022-05-21T04:49:51.662762 | 2022-03-21T13:15:38 | 2022-03-21T13:15:38 | 167,556,538 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 6,489 | sce | EstimationVoltageBenchmark1LinearCa,t+K,p+L.sce | ////////////////////////////////////////////////
//// Définition du benchmark HH de type 1-1 ////
////////////////////////////////////////////////
bc=[0.2
0.4
0.3
104
-18.4
-63.1
-23.8
-37.2
-25.1
18.4
-27.8
16.3
0.6
5
2.3
0.3
0.2
0.1
0.04]
gCa=bc(1); gK=bc(2); gL=bc(3);
ECa=bc(4); EK=bc(5); EL=bc(6);
V12mCa=bc(7); V12hCa=bc(8); V12mK=bc(9);
kmCa=bc(10); khCa=bc(11); kmK=bc(12);
tmCa=bc(13); thCa=bc(14); tmK=bc(15);
mCa0=bc(16); hCa0=bc(17); mK0=bc(18);
C=bc(19);
function y=xinf(V,V12,k)
y=1/(1+exp((V12-V)/k));
endfunction
function [Hdot]=HHbench(t,x,pa)
Hdot=zeros(4,1);
Hdot(1)=(1/C)*(-gCa*x(2)*x(3)*(x(1)-ECa) - gK*x(4)*(x(1)-EK) - gL*(x(1)-EL) + I)
Hdot(2)=(xinf(x(1),V12mCa,kmCa)-x(2))/tmCa
Hdot(3)=(xinf(x(1),V12hCa,khCa)-x(3))/thCa
Hdot(4)=(xinf(x(1),V12mK,kmK)-x(4))/tmK
endfunction
/// Stimulations appliquées au neurone ///
stim=[-15:5:35];
/// Construction des solutions ///
t0=0;
t=linspace(0,50,12500);
t=t';
a=zeros(length(t),12);
a(:,1)=t;
for i=1:11
I=stim(i);
x=ode([-40;mCa0;hCa0;mK0],t0,t,HHbench);
x1=x(1,:);
// plot2d(t,x1,3)
x1=x1';
a(:,i+1)=x1;
end
//write('/home/loisse/Documents/FichierScilab/Article 2/CurrentClampBenchmarkLinear1Ca,t+K,p+L.txt', a)
/////////////////////////////////////////////////////////////////////////////////
/////////////// Paramètres déterminés à partir de HillVallEA //////////////
/////////////////////////////////////////////////////////////////////////////////
par=[0.1884399252
0.3997391869
0.3000432948
111.3463577783
-18.4677751478
-63.1143564258
-23.7160547632
-36.5674442162
-25.1121544013
18.5576322182
-27.4170773985
16.2617936149]
/////////////////////////////////////////////////////////////
/////////////// Fonction coût algorithme //////////////
/////////////////////////////////////////////////////////////
function [Hdot]=HH12(t,x,pa)
Hdot=zeros(4,1);
Hdot(1)=(1/pa(7))*(-par(1)*x(2)*x(3)*(x(1)-par(4)) - par(2)*x(4)*(x(1)-par(5)) - par(3)*(x(1)-par(6)) + I)
Hdot(2)=(xinf(x(1),par(7),par(10))-x(2))/pa(1)
Hdot(3)=(xinf(x(1),par(8),par(11))-x(3))/pa(2)
Hdot(4)=(xinf(x(1),par(9),par(12))-x(4))/pa(3)
endfunction
//Fonction coût
function y=fct(pa)
c=0;
condini = [-40; pa(4); pa(5); pa(6)]
for i=1:11
I=stim(i);
x=ode(condini,t0,t,HH12);
V=x(1,:);
for k=1:length(t)
c=c+(V(k)-a(k,i+1))*(V(k)-a(k,i+1))
end
end
y=c/length(t);
endfunction
//////////////////////////////////////
//// Parameter estimation ////
//////////////////////////////////////
function [bM, valBest]=simulation(NP,itermax,F,CR)
D=7;
pop=zeros(D,NP);
///////////////////////////////////////////////////////
//// Vecteurs de contraintes borne minimum/maximum ////
///////////////////////////////////////////////////////
Xmin=[0.0001 0.0001 0.0001 0.001 0.001 0.001 0.001];
Xmax=[15 15 15 0.999 0.999 0.999 10];
/////////////////////////////////////////
//// Initialisation de ma population ////
/////////////////////////////////////////
for j=1:NP
for i=1:D
pop(i,j)=Xmin(i)+(Xmax(i)-Xmin(i))*rand();
end
end
//////////////////////////////////////////////////////////////
//// Évaluation du meilleur individu après initialisation ////
//////////////////////////////////////////////////////////////
val=zeros(NP,1); // tableau avec le coût de chacun des individus
for j=1:NP
val(j)=fct(pop(:,j))
end
disp(val)
bestIndex=1;
for b=2:NP
if val(b)<val(bestIndex) then bestIndex=b; end
end
costVec(1)=val(bestIndex);
////////////////////////
//// Étape suivante ////
////////////////////////
iter=1; // nombre d'itération
U=zeros(D,NP); // Vecteur intermédiaire perturbé (mutation + crossover)
tempval=0;
while iter<itermax
for j=1:NP
// ======= Construction de la matrice U = variation différentielle + crossover =======
// ========= Tirage aléatoire de 3 entiers distincts r1, r2 et r3 et différents de j ========
r1=j; r2=j; r3=j;
while (r1==r2 | r1==r3 | r2==r3 | r1==j | r2==j | r3==j)
r1=floor(1+NP*rand());
r2=floor(1+NP*rand());
r3=floor(1+NP*rand());
end
// ======== Variation différentielle =======
V=pop(:,r1) + F*(pop(:,r2)-pop(:,r3));
if V(1)<=Xmin(1) then V(1)=Xmin(1);
elseif V(1)>Xmax(1) then V(1)=Xmax(1);
end
if V(2)<=Xmin(2) then V(2)=Xmin(2);
elseif V(2)>Xmax(2) then V(2)=Xmax(2);
end
if V(3)<=Xmin(3) then V(3)=Xmin(3);
elseif V(3)>Xmax(3) then V(3)=Xmax(3);
end
if V(4)<=Xmin(4) then V(4)=Xmin(4);
elseif V(4)>Xmax(4) then V(4)=Xmax(4);
end
if V(5)<=Xmin(5) then V(5)=Xmin(5);
elseif V(5)>Xmax(5) then V(5)=Xmax(5);
end
if V(6)<=Xmin(6) then V(6)=Xmin(6);
elseif V(6)>Xmax(6) then V(6)=Xmax(6);
end
if V(7)<=Xmin(7) then V(7)=Xmin(7);
elseif V(7)>Xmax(7) then V(7)=Xmax(7);
end
// ======== Crossover ========
for i=1:D
if rand()<CR then
U(i,j)=V(i);
else
U(i,j)=pop(i,j);
end
end
end // fin for j=1:NP
// ======== Sélection ========
for j=1:NP
tempval=fct(U(:,j));
if tempval<=val(j) then
pop(:,j) = U(:,j);
val(j) = tempval;
end
end
disp(iter)
iter = iter + 1;
bestIndex=1;
for b=2:NP
if val(b)<val(bestIndex) then bestIndex=b; end
end
// costVec(iter)=val(bestIndex);
end //fin de la boucle while
// Détermination de l'indice du meilleur individu
bestIndex=1;
for b=2:NP
if val(b)<val(bestIndex) then bestIndex=b; end
end
// disp(bestIndex);
// Sauvegarde du meilleur individu
bM = [];
bM = pop(:,bestIndex);
valBest=val(bestIndex);
disp(val);
disp(bM);
disp(val(bestIndex));
endfunction
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.