blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2
values | repo_name stringlengths 6 115 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 21
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 141k 586M ⌀ | star_events_count int64 0 30.4k | fork_events_count int64 0 9.67k | gha_license_id stringclasses 8
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 50
values | src_encoding stringclasses 23
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 1
class | length_bytes int64 5 10.4M | extension stringclasses 29
values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
dc7123d7d72dab161267b2f2f975b7ce2ed18c80 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1049/CH12/EX12.16/ch12_16.sce | e29daf9f3cade983ee770004842627c299e5c843 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 357 | sce | ch12_16.sce | clear;
clc;
I_a=300;
V_s=600;
a=.6;
V_t=a*V_s;
P=V_t*I_a; printf("input power from source=%.0f kW",P/1000);
R_eq=V_s/(a*I_a); printf("\nequivalent input resistance=%.3f ohm",R_eq);
k=.004;
R=.04+.06;
w_m=(a*V_s-I_a*R)/(k*I_a);
N=w_m*60/(2*%pi); printf("\nmotor speed=%.1f rpm",N);
T_e=k*I_a^2; printf("\nmotor torque=%.0f Nm",T_e);
|
9a752bce41ba38a904d008d97bfc5a1e0f5f245b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1820/CH4/EX4.4/Example4_4.sce | 87957ca66c8d43642f5010facb77ad954ca6630a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,672 | sce | Example4_4.sce | // ELECTRIC POWER TRANSMISSION SYSTEM ENGINEERING ANALYSIS AND DESIGN
// TURAN GONEN
// CRC PRESS
// SECOND EDITION
// CHAPTER : 4 : OVERHEAD POWER TRANSMISSION
// EXAMPLE : 4.4 :
clear ; clc ; close ; // Clear the work space and console
// GIVEN DATA
V = 138*10^3 ; // transmission line voltage in V
P = 49*10^6 ; // load power in Watts
pf = 0.85 ; // lagging power factor
Z = 95 * exp(%i*78*%pi/180) ; // line constants in Ω
Y = 0.001 * exp(%i*90*%pi/180) ; // line constants in siemens
// CALCULATIONS
V_RL_N = V/sqrt(3) ;
theta_R = acosd(pf) ;
I_R = P/(sqrt(3)*V*pf)*( cosd(theta_R) - %i*sind(theta_R) ) ; // receiving end current in ampere
// for case (a)
// A,B,C,D constants for nominal-T circuit representation
A = 1 + (1/2)*Y*Z ;
B = Z + (1/4)*Y*Z^2 ;
C = Y ;
D = A ;
// for case (b)
P = [A B ; C D] * [V_RL_N ; I_R] ;
V_SL_N = P(1,1) ; // Line-to-neutral Sending end voltage in V
V_SL_L = sqrt(3) * abs(V_SL_N) * exp(%i* ( atand( imag(V_SL_N),real(V_SL_N) ) + 30 )* %pi/180) ; // Line-to-line voltage in V
// NOTE that an additional 30 degree is added to the angle since line to line voltage is 30 degree ahead of its line to neutral voltage
// for case (c)
I_S = P(2,1); // Sending end current in A
// for case (d)
theta_s = atand( imag(V_SL_N),real(V_SL_N) ) - atand( imag(I_S),real(I_S) ) ;
// for case (e)
n = (sqrt(3) * V * abs(I_R) * cosd(theta_R)/(sqrt(3) * abs(I_S) * abs(V_SL_L) * cosd(theta_s) ))*100 ; // Efficiency
// DISPLAY RESULTS
disp("EXAMPLE : 4.4 : SOLUTION :-") ;
printf("\n (a) A constant of line , A = %.4f<%.1f \n",abs(A),atand( imag(A),real(A) )) ;
printf("\n B constant of line , B = %.2f<%.1f Ω \n",abs(B),atand( imag(B),real(B) )) ;
printf("\n C constant of line , C = %.3f<%.1f S \n",abs(C),atand( imag(C),real(C) )) ;
printf("\n D constant of line , D = %.4f<%.1f \n",abs(D),atand( imag(D),real(D) )) ;
printf("\n (b) Sending end line-to-neutral voltage , V_SL_N = %.1f<%.1f V \n",abs(V_SL_N),atand( imag(V_SL_N),real(V_SL_N) )) ;
printf("\n Sending end line-to-line voltage , V_SL_L = %.1f<%.1f V \n",abs(V_SL_L),atand( imag(V_SL_L),real(V_SL_L) )) ;
printf("\n (c) sending end current , I_S = %.2f<%.1f A \n",abs(I_S),atand( imag(I_S),real(I_S) )) ;
printf("\n (d) sending end power factor , cosθ_s = %.3f \n",cosd(theta_s)) ;
printf("\n (e) Efficiency of transmission , η = %.2f Percentage \n",n) ;
printf("\n NOTE : From A = 0.9536<0.6 , magnitude is 0.9536 & angle is 0.6 degree") ;
printf("\n ERROR : Change in answer because root(3) = 1.73 is considered in Textbook ") ;
printf("\n But here sqrt(3) = 1.7320508 is considered \n") ;
|
878be25a858f4275067abb4a119617fbc284f870 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2339/CH3/EX3.5.1/Ex3_5.sce | f0e0616bac099630d5c9dfadf029303bc92df748 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 459 | sce | Ex3_5.sce | clc
clear
//Inputs
//The Values in the program are as follows:
//Temperature in Celcius converted to Kelvin(by adding 273)
//Pressure in bar converted to kPa (by multiplying 100)
//Volume in m^3
//Value of R,Cp and Cv in kJ/kg K
P1=510;
V1=0.142;
P2=170;
V2=0.275;
H=-65;
Cv=0.718;
X=(P2*V2)-(P1*V1);
U=H-X;
printf('The Change in Internal Energy: %2.2f kJ',U);
printf('\n');
G=H/U;
Cp=G*Cv;
R=Cp-Cv;
printf('The Value of R: %2.3f kJ/kg K',R);
printf('\n');
|
1e08cb416d2c7b9dc3f1b869dbd3b94b7610a8ac | 449d555969bfd7befe906877abab098c6e63a0e8 | /1328/CH6/EX6.3/6_3.sce | cdc6bb37aead4fb806badab241f2f5adcf950f7c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 5,789 | sce | 6_3.sce | printf("\t example 6.3 \n");
printf("\t approximate values are mentioned in the book \n");
T1=450; // inlet hot fluid,F
T2=350; // outlet hot fluid,F
t1=300; // inlet cold fluid,F
t2=310; // outlet cold fluid,F
W=6900; // lb/hr
w=72500; // lb/hr
printf("\t 1.for heat balance \n");
printf("\t for lube oil \n");
c=0.62; // Btu/(lb)*(F)
Q=((W)*(c)*(T1-T2)); // Btu/hr
printf("\t total heat required for lube oil is : %.2e Btu/hr \n",Q);
printf("\t for crude oil \n");
c=0.585; // Btu/(lb)*(F)
Q1=((w)*(c)*(t2-t1)); // Btu/hr
printf("\t total heat required for crude oil is : %.2e Btu/hr \n",Q1); // calculation mistake in book
delt1=T2-t1; //F
delt2=T1-t2; // F
printf("\t delt1 is : %.0f F \n",delt1);
printf("\t delt2 is : %.0f F \n",delt2);
LMTD=((delt2-delt1)/((2.3)*(log10(delt2/delt1))));
printf("\t LMTD is :%.1f F \n",LMTD);
A=((delt1)/(delt2));
printf("\t ratio of two local temperature difference is : %.3f \n",A);
Fc=0.395; // from fig.17
Tc=((T2)+((Fc)*(T1-T2))); // caloric temperature of hot fluid,F
printf("\t caloric temperature of hot fluid is : %.1f F \n",Tc);
tc=((t1)+((Fc)*(t2-t1))); // caloric temperature of cold fluid,F
printf("\t caloric temperature of cold fluid is : %.0f F \n",tc);
printf("\t hot fluid:annulus,lube oil \n");
D1=0.199; // ft
D2=0.256; // ft
aa=((%pi)*(D2^2-D1^2)/4); // flow area,ft^2
printf("\t flow area is : %.4f ft^2 \n",aa);
De=(D2^2-D1^2)/D1; // equiv diameter,ft
printf("\t equiv diameter is : %.2f ft \n",De);
Ga=(W/aa); // mass velocity,lb/(hr)*(ft^2)
printf("\t mass velocity is : %.2e lb/(hr)*(ft^2) \n",Ga);
mu1=3*2.42; // at 389.5F,lb/(ft)*(hr), from fig.14
Rea=((De)*(Ga)/mu1); // reynolds number
printf("\t reynolds number is : %.0e \n",Rea);
jH=20.5; // from fig.24
c=0.615; // Btu/(lb)*(F),at 130F
k=0.067; // Btu/(hr)*(ft^2)*(F/ft), from table 4
Pr=((c)*(mu1)/k)^(1/3); // prandelt number raised to power 1/3
printf("\t Pr is : %.3f \n",Pr);
Ho=((jH)*(k/De)*(Pr)); // H0=(h0/phya),using eq.6.15,Btu/(hr)*(ft^2)*(F)
printf("\t individual heat transfer coefficient is : %.1f Btu/(hr)*(ft^2)*(F) \n",Ho);
printf("\t cold fluid:inner pipe,crude oil \n");
D=0.172; // ft
ap=((%pi)*(D^2)/4); // flow area, ft^2
printf("\t flow area is : %.4f ft^2 \n",ap);
Gp=(w/(2*ap)); // mass velocity,lb/(hr)*(ft^2)
printf("\t mass velocity is : %.2e lb/(hr)*(ft^2) \n",Gp);
mu2=0.83*2.42; // at 304 F,lb/(ft)*(hr)
Rep=((D)*(Gp)/mu2); // reynolds number
printf("\t reynolds number is : %.2e \n",Rep);
jH=320; // from fig.24
c=0.585; // Btu/(lb)*(F),at 304F,from fig.4
k=0.073; // Btu/(hr)*(ft^2)*(F/ft), from fig.1
Pr=((c)*(mu2)/k)^(1/3); // prandelt number raised to power 1/3
printf("\t Pr is : %.3f \n",Pr);
Hi=((jH)*(k/D)*(Pr)*(1^0.14)); //Hi=(hi/phyp),using eq.6.15a,Btu/(hr)*(ft^2)*(F)
printf("\t Hi is : %.0f Btu/(hr)*(ft^2)*(F) \n",Hi);
ID=2.067; // ft
OD=2.38; //ft
Hio=((Hi)*(ID/OD)); //Hio=(hio/phyp), using eq.6.5
printf("\t Correct Hi0 to the surface at the OD is : %.0f Btu/(hr)*(ft^2)*(F) \n",Hio);
muw=0.77*2.42; // lb/(ft)*(hr), from fig.14
phyp=(mu2/muw)^0.14;
printf("\t phyp is : %.0f \n",phyp); // from fig.24
hio=(Hio)*(1); // from eq.6.37
printf("\t Correct hio to the surface at the OD is : %.0f Btu/(hr)*(ft^2)*(F) \n",hio);
tw=(tc)+(((Ho)/(Hio+Ho))*(Tc-tc)); // from eq.5.31
printf("\t tw is : %.0f F \n",tw);
muw=6.6*2.42; // lb/(ft)*(hr), from fig.14
phya=(mu1/muw)^0.14;
printf("\t phya is : %.1f \n",phya); // from fig.24
ho=(Ho)*(phya); // from eq.6.36
printf("\t Correct h0 to the surface at the OD is : %.1f Btu/(hr)*(ft^2)*(F) \n",ho);
Uc=((hio)*(ho)/(hio+ho)); // clean overall coefficient,Btu/(hr)*(ft^2)*(F)
printf("\t clean overall coefficient is : %.0f Btu/(hr)*(ft^2)*(F) \n",Uc);
Rd=0.006; // required by problem,(hr)*(ft^2)*(F)/Btu
UD=((Uc)/((1)+(Uc*Rd))); // design overall coefficient,Btu/(hr)*(ft^2)*(F)
printf("\t design overall coefficient is : %.1f Btu/(hr)*(ft^2)*(F) \n",UD);
A=((Q)/((UD)*(LMTD))); // required surface,ft^2
printf("\t required surface is : %.0f ft^2 \n",A);
A1=0.622; // From Table 11,ft^2
Lr=(A/A1); // required length;lin ft
printf("\t required length is : %.0f lin ft \n",Lr);
printf("\t Since two parallel streams are employed, use eight 20 ft hairpins or 320 lin. feet \n");
L=320;
A2=320*0.622; // actual surface supplied,ft^2
printf("\t actual surface supplied is : %.1f ft^2 \n",A2);
UD=((Q)/((A2)*(LMTD)));
printf("\t actual design overall coefficient is : %.1f Btu/(hr)*(ft^2)*(F) \n",UD);
Rd=((Uc-UD)/((UD)*(Uc))); // (hr)*(ft^2)*(F)/Btu
printf("\t actual Rd is : %.4f (hr)*(ft^2)*(F)/Btu \n",Rd);
printf("\t pressure drop for annulus \n");
De1=.058; //ft
printf("\t De1 is : %.3f ft \n",De1);
Rea1=((De1)*(Ga)/7.25); // reynolds number
printf("\t reynolds number is : %.2e \n",Rea1);
f=(0.0035)+((0.264)/(2680^0.42)); // friction factor, using eq.3.47b
printf("\t friction factor is : %.4f \n",f);
s=0.775;
row=62.5*0.775; // from fig 6
delFa=((4*f*(Ga^2)*L)/(2*4.18*(10^8)*(row^2)*(De1))); // ft
printf("\t delFa is : %.1f ft \n",delFa);
V=((Ga)/(3600*row)); //fps
printf("\t V is : %.1f fps \n",V);
delFl=((8*(V^2))/(2*32.2)); //ft
printf("\t delFl is : %.2f ft \n",delFl);
delPa=((delFa+delFl)*(row)/144); // psi
printf("\t delPa is : %.1f psi \n",delPa);
printf("\t allowable delPa is 10 psi \n");
printf("\t pressure drop for inner pipe \n");
f=(0.0035)+((0.264)/(Rep^0.42)); // friction factor, using eq.3.47b
printf("\t friction factor is : %.5f \n",f);
s=0.76;
row=62.5*0.76; // from table 6
Lp=160;
delFp=((4*f*(Gp^2)*Lp)/(2*4.18*(10^8)*(row^2)*(D))); // ft
printf("\t delFp is : %.1f ft \n",delFp);
delPp=((delFp)*(row)/144); // psi
printf("\t delPp is : %.1f psi \n",delPp);
printf("\t allowable delPp is 10 psi \n");
// end
|
9958f8c5d8a7a888e1ede25b4e6630068bba7912 | 3c47dba28e5d43bda9b77dca3b741855c25d4802 | /microdaq/examples/ai_scan_demo.sce | f0a0ac533b079223d3ea3da485456ffbe43c616c | [
"BSD-3-Clause"
] | permissive | microdaq/Scilab | 78dd3b4a891e39ec20ebc4e9b77572fd12c90947 | ce0baa6e6a1b56347c2fda5583fb1ccdb120afaf | refs/heads/master | 2021-09-29T11:55:21.963637 | 2019-10-18T09:47:29 | 2019-10-18T09:47:29 | 35,049,912 | 6 | 3 | BSD-3-Clause | 2019-10-18T09:47:30 | 2015-05-04T17:48:48 | Scilab | UTF-8 | Scilab | false | false | 302 | sce | ai_scan_demo.sce | aiData = [];
dataCount = 0;
mdaqAIScanInit(1:8, [-10,10], %F, 10000, 1)
for i=1:10
[data result] = mdaqAIScanRead(1000, 1);
aiData = [aiData; data];
dataCount = dataCount + result;
mprintf('Acquired %d scans (total: %d scans)\n', result, dataCount);
end
mdaqAIScanStop();
plot(aiData);
|
9d89717000bc22e00284258fc12b785aa9ba1311 | 3cbee2296fd6b54f80587eead83813d4c878e06a | /sci2blif/rasp_design_added_blocks/comparator_fgota.sce | 2aa97bb46993cf5618668bee7f6c16d34f94002b | [] | no_license | nikhil-soraba/rasp30 | 872afa4ad0820b8ca3ea4f232c4168193acbd854 | 936c6438de595f9ac30d5619a887419c5bae2b0f | refs/heads/master | 2021-01-12T15:19:09.899590 | 2016-10-31T03:23:48 | 2016-10-31T03:23:48 | 71,756,442 | 0 | 0 | null | 2016-10-24T05:58:57 | 2016-10-24T05:58:56 | null | UTF-8 | Scilab | false | false | 215 | sce | comparator_fgota.sce | style.fontSize=16;
style.displayedLabel="<table> <tr> <td align=center><b>+<br><br>-</b></td> <td>Comparator FGota</td> <td><b>Vout</b></td> </tr> </table>"
pal1 = xcosPalAddBlock(pal1,"comparator_fgota",[],style);
|
85dc714cd18577fd48f7e4d8ee1d164b3f7bb76a | 449d555969bfd7befe906877abab098c6e63a0e8 | /374/CH5/EX5.2.a/52a.sci | 1518fabd38b90c311728b367fe474cb2432c61b2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 265 | sci | 52a.sci | //chapter 5 example 2//
clc
clear
//band gap energy=Eg,total efficiency=nT,voltage applied=V,external efficiency=ne//
Eg=1.43;//in ev//
V=2.5;//in volts//
nT=0.20;
ne=((nT*Eg)/V)*100;//external efficiency//
printf("\n external efficiency=%f percent\n",ne)
|
75c2f08f2c9397e78c4624873a9e474c8127e48e | 449d555969bfd7befe906877abab098c6e63a0e8 | /548/DEPENDENCIES/4_01data.sci | dd8aefd98faadde72248de9176f01e54a33c25ee | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 191 | sci | 4_01data.sci | //this example deals with basic of incompressible flow
A1=5;//convergent duct inlet area in m^2
V1=10;//inlet velocity in m/s
V2=30;//outlet velocity in m/s
A2=A1*V1/V2//area of duct exit |
dbb1595da3eb7d394ecb5cc7614961a490d8d34a | dba43ae0c5d0c50780be579f98977a9836292852 | /01/And8/And8.tst | 7845a2b91bd00e9e7442f213a04974b05daaebf7 | [
"MIT"
] | permissive | AbstractXan/ComputerSystemDesignLab | c49458dfcbd2e7ee769cb6044868a33601e42968 | 2851da683e4e894be66463dcc29a9fa6ba0538b6 | refs/heads/master | 2020-07-06T22:44:45.031534 | 2019-11-20T04:42:52 | 2019-11-20T04:42:52 | 203,161,348 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 405 | tst | And8.tst | load And8.hdl,
output-file And8.out,
compare-to And8.cmp,
output-list a%B1.8.1 b%B1.8.1 out%B1.8.1;
set a %B00000000,
set b %B00000000,
eval,
output;
set a %B00000000,
set b %B11111111,
eval,
output;
set a %B11111111,
set b %B11111111,
eval,
output;
set a %B10101010,
set b %B01010101,
eval,
output;
set a %B00111100,
set b %B00001111,
eval,
output;
set a %B00010010,
set b %B10011000,
eval,
output; |
18e325b79124b99086c708ac6405824c8696dc85 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1092/CH4/EX4.12/Example4_12.sce | 34d0126e090a3b25467edff259a6cf6de28978bb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 771 | sce | Example4_12.sce | // Electric Machinery and Transformers
// Irving L kosow
// Prentice Hall of India
// 2nd editiom
// Chapter 4: DC Dynamo Torque Relations-DC Motors
// Example 4-12
clear; clc; close; // Clear the work space and console.
// Given data
V_a = 120 ; // Rated terminal voltage of dc shunt notor in volt
R_a = 0.2 ; // Armature resistance in ohm
BD = 2 ; // Brush drop in volt
I_a = 75 ; // Full load armature current in A
// Calculations
I_st = ( V_a - BD ) / R_a ; // Current @ the instant of starting in A
percentage = I_st / I_a * 100 ; // Percentage at full load
// Display the results
disp(" Example 4-12 Solution : ");
printf(" \n Ist = %d A ( Back EMF is zero )",I_st );
printf(" \n Percentage at full load = %d percent ", percentage );
|
5b664590d60cbe69e9652ad156ff0c73c027c415 | 449d555969bfd7befe906877abab098c6e63a0e8 | /68/CH14/EX14.5/ex5.sce | 8a21b74bf8af8314d41c4da331bece3e24950dac | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,014 | sce | ex5.sce | // Example 14.5 To determine the maximum power dissipated
// Consider a BJT with following specifications
T_Jmax=150; // (degree celcius)
T_A=50; // (degree celcius)
// 14.5a
theta_JA=62.5; // (degree celcius/W)
P_Dmax=(T_Jmax-T_A)/theta_JA;
disp(P_Dmax,"The maximum power (W) that can be dissipated safely by the transistor when operated in free air")
//14.5b
theta_CS=0.5; // (degree celcius/W)
theta_SA=4; // (degree celcius/W)
theta_JC=3.12; // (degree celcius/W)
theta_JA=theta_JC+theta_CS+theta_SA;
P_Dmax=(T_Jmax-T_A)/theta_JA
disp(P_Dmax,"The maximum power (W) that can be dissipated safely by the transistor when operated at an ambient temperature of 50 degree celcius but with a heat sink for which theta_CS= 0.5 (degree celcius/W) and theta_SA = 4 (degree celcius/W) (W)")
// 14.5c
theta_CA=0 // since infinite heat sink
P_Dmax=(T_Jmax-T_A)/theta_JC;
disp(P_Dmax,"The maximum power (W) that can be dissipated safely if an infinite heat sink is used and T_A=50 (degree celcius)") |
443530eabf2295999951439db34c8394dd4a2db2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1826/CH6/EX6.1/ex6_1.sce | 038d80fe0f8f14e0bcfaf0567bf3611d85f3f6f3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 207 | sce | ex6_1.sce | // Example 6.1, page no-143
clear
clc
e=1.609*10^-19//C
eg=1.8 //eV
h=6.626*10^-34
c=3*10^8//m/s
E=e*eg
lamda=h*c/E
printf("The wavelength of light emitted from given LED is %.3f µm",lamda*10^7)
|
18d0b46aedf315169b330059f5616543999e1c71 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3856/CH8/EX8.4/Ex8_4.sce | ad65d9fe7f62105aabcd98753d6f598c02484904 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 785 | sce | Ex8_4.sce | //Calculate the Equivalent Conductance of Chloride ion at infinite dilution ,How long it will take for the ion to travell between two electrodes
//Example 8.4
clc;
clear;
Uneg=7.91*10^-4; //Mobility of Chloride ion in cm^2 s^-1 V^-1
F=96500; //Faraday's constant in C mol^-1
Lemdaneg=F*Uneg; //Equivalent conductance of the ion at infinite dilution in C s^-1 V^-1 mol^-1 cm^2 (ohm^-1 mol^-1 cm^2 or ohm^-1 equiv^-1 cm^2)
printf("(a)Equivalent Conductance = %.1f ohm^-1 equiv^-1 cm^2",Lemdaneg);
E=20; //Electric field in V cm^-1
Vneg=E*Uneg; //Ionic velocity of the ion in cm s^-1
d=4; //Distance between two electrodes in cm
t=(d/Vneg)/60; //Time taken by an ion to travel between two electrode in min
printf("\n(b)Time taken = %.1f min",t);
|
2ea9b88962179bb9ec104f09702ac1ee53d87fbb | 449d555969bfd7befe906877abab098c6e63a0e8 | /2780/CH11/EX11.1/Ex11_1.sce | b6c4b2b87972b884462a60198e22cc5a0de94f16 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 434 | sce | Ex11_1.sce | clc
//to calculate fundemental frequency
Y=7.9*10^10 //Young modulus for quartz in Nm^-2
rho=2.65*10^3 //density of quartz in kg/m^3
//the velocity of longitudinal wave is given by
v=sqrt(Y/rho) //in m/s
//for fundamental mode of vibration ,thickness is given by lambda/2
lambda=2*0.001 //wavelength in m
nu=v/lambda
disp("the fundamental frequency is nu="+string(nu)+"Hz")
//answer is given wrong in the book ,nu=2730 Hz
|
881b4bce6cc51f9f70d5e9ff889d46d3161dd1e7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1736/CH9/EX9.12/Ch09Ex12.sce | 565c9c25dd77e60f193186dc67f0ff48c1045a72 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 578 | sce | Ch09Ex12.sce | // Scilab code Ex9.12 Page:298 (2006)
clc; clear;
Theta_D = 350; // Debye temperature, kelvin
Lambda = 0.828; // Electron-phonon coupling constant
mu_prime = 0.1373; // Reduced mass of a superconductor, amu
T_c = Theta_D/1.45*exp(-1.04*(1+Lambda)/(Lambda-mu_prime*(1+0.62*Lambda))); // Transition temperature of a superconductor using McMillan formula, K
printf("\nThe transition temperature of the superconductor using McMillan formula = %5.2f K", T_c);
// Result
// The transition temperature of the superconductor using McMillan formula = 11.26 K
|
682ecb9799b59cc7ed4839ecbe7bcbeb6f1ffc14 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2084/CH7/EX7.3/7_3.sce | e7f9d756014c8b3ff898048dedf8d63fb3b19f44 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 355 | sce | 7_3.sce | //developed in windows XP operating system 32bit
//platform Scilab 5.4.1
clc;clear;
//example 7.3
//calculation of the magnitude of linear acceleration
//given data
r=10*10^-2//radius(in cm)
t=4//time(in s) taken
//calculation
d=2*%pi*r//distance covered
v=d/t//linear speed
a=(v*v)/r
printf('the linear acceleration is %3.2f m/s^2',a)
|
92d765c819efd3492190a973e34fb6ddfbfa7232 | ffe9e19b244ceec2af7b863d956d8dbdc079103b | /Álgebra Linear e Geometria Analítica/8170312/Scripts/Resolucao_Condensacao_Car.sci | 13619dd33d05b6df86345344512932459eb03959 | [] | no_license | Vmvs007/ESTG-LEI | 25b67be60f3695f8677be57779dccd0670a8e48e | ae99dd7f6cd57a67cfdc6b1d303a03df3e6e5c69 | refs/heads/master | 2020-05-06T12:28:36.560414 | 2019-04-13T17:02:09 | 2019-04-13T17:02:09 | 180,124,885 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 523 | sci | Resolucao_Condensacao_Car.sci | clear()
// Definição da matriz A e do vetor b
// Exercício 58.3
A=[3 5 1 0;1 1 2 1;2 0 1 -1;0 2 3 3;3 1 3 0];
b=[-1;1;4;-2;5];
//Det=det(A); // determinante só de matrizes quadradas
Car=rank(A); // ou característica de A
Car2=rank([A b]); // característica de A aumentada
//disp(Det,'det(A)=')
disp(Car,'r(A)=')
disp(Car2,'r(Ab)=')
//S=rref([A b]) // método da condensação de Gauss
//S_1=inv(A)*b // método da matriz inversa
//[N D]=rat(S) // quando a matriz do sistema tem números fracionários
|
d513dd288310d40fad37e92011bd08f7a9f2fec7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /773/CH9/EX9.05/9_05.sci | 829641fb50f5f28994c9914aee34b2b2d0454066 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 525 | sci | 9_05.sci | //calculates//
s=%s;
sys1=syslin('c',(s+3)/s);
syms u rp k H RL;
num2=u*RL*s*(s+2);
den2=(rp+RL)*(s+3);
sys2=num2/den2;
num3=k;
den3=s+2;
sys3=num3/den3;
sys=sys1*sys2*sys3;
disp(sys,"G(s)=");
RL=10*10^3;
rp=4*10^3;
sys=eval(sys)
sys=float(sys)
disp(sys,"sys=");
disp(H,"H(s)");
M=sys/.H //G(s)/1+G(s)H(S)
M=simple(M)
S=(diff(M,u))*(u/M);
S=simple(S);
disp(S,"system sensitivity due to variation of u=");
H=0.3;
u=12;
S=eval(S) //---------eq 1
S=0.04;
k=((7/S)-7)/18 ; //from eq 1
disp(k,"K=")
|
3541cbcb46b8f5c3e2fbe2d604a1f87cbdc9609c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3731/CH4/EX4.1/Ex4_1.sce | 152d1bea0e1ca079a43cf9cf8dc4639595b3da3e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 670 | sce | Ex4_1.sce | //Chapter 4: Selection of Motor Power Rating
//Example 1
clc;
//Variable Initialization
t_min=40 // Minimum Temperature Rise in degree Celsius
t_ri=15 // Temperature Rise in degree Celsius
t_cl=10 // Clutched Time in sec
t_de=20 // Declutched Time in sec
k= 60 // Heating and Cooling time constant
//Solution
x=exp(-t_de/k)
y=exp(-t_cl/k)
th2= (t_min-t_ri*(1-x))/x //as t_min=t_ri(1-x)+th2*x
th_s=(th2-t_min*y)/(1-y) //as th2=th_s(1-y)+t_min*y
mprintf("Maximum temperature during the duty cycle :%.1f °C",th2)
mprintf("\n Temperature when the load is clutched continuously :%.1f °C",th_s)
|
ec12663d6cc7d1f03c0fe1945f2e1952cc4853cc | 190d7a52f0fed9737c92e627958e4c1b6c7ddb55 | /Num_Methods/dubs.sce | 311b5fef46488dc6d145a14c7c96b1c61f151f27 | [] | no_license | Jsw-4111/SchoolWork | 3389c9179d088b26c98a3410180dc3f2569bfdf3 | a9a6e345fc30bfa79a7e2bb4848655cb301facee | refs/heads/master | 2023-04-12T01:11:02.216417 | 2021-04-25T21:21:06 | 2021-04-25T21:21:06 | 300,689,960 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,103 | sce | dubs.sce | // This is the function, I think, takes in a, x, and d; and outputs y
// a in this case is a vector containing the coefficients for each power
// x is the point at which the poolynomial is to be evaluated
// d is a toggle for whether you evaluate at the point or you derive at the point
// y is the output that you get from running the horner's algorithm on the polynomial given
vector = [3 5 0 -6 0 7 1];
point = 4;
derive = 1;
function y = horner_Wu(a,x,d)
size = size(a, 2); // Here I take the size of the vector so I know how many coefficients I'm dealing with
// For the evaluation method I work from the inside out
// Again, working inside out, I know that Horner's algorithm has a lone number in the
// very middle (the leading coefficient), so I take advantage of this.
// Due to my approach, I utilize order of operations and evaluate the inner parenthesis then multiply by x
// after each run and finally add the next number in the sequence.
if (d == 0) then
y = a(1); // Lone number at a(1)
for (i = 2:size)
y = y * x + a(i); // Iteratively multiply by x then add a(i) per run-through
disp(y)
end
// In the derivative I do the exact opposite of my previous approach. I do this because I observed that
// I cannot derive, multiply, divide again... That's just not how math works. So instead, I start with
// the polynomial's constant (derived to 0) and set it to y. I then add the next coefficient after distributing
// the previous x value and deriving it. In effect, the code does something like this: for (3x^3 - 7x + 10)dx
// (10 + x(-7 + x(0 + x(3))))dx -> (-7x+x^2(0+x(3)))dx -> -7 + 3x^3dx -> -7 + 9x^2
elseif (d == 1) then
y = 0; // Constant derived
j = 1; // Counter for the current power of x
for (i = (size-1):-1:1)
y = y + a(i)*j*x^(j-1); // Here I add to y the value of the next derived number
j = j + 1;
disp(y)
end
end
endfunction
y = horner_Wu(vector, point, derive);
disp(y)
|
00de796b0df29d63437bb3701f3262a6d9abdf2c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1964/CH12/EX12.1/ex12_1.sce | e3fc73931728ce1fc2165956bbb3a62aced0263f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,060 | sce | ex12_1.sce | //Chapter-12, Example 12.1, Page 341
//=============================================================================
clc
clear
//INPUT DATA
Vm=325;//voltage in volts
Rl=1000;//resistive load in ohms
rf=100;//forward resistance in ohms
//CALCULATIONS
//for subdivision (a)
Im=Vm/(rf+Rl);//peak value of current in A
Idc=Im/(%pi);//average current in A
Irms=Im/2;//rms value of current in A
mprintf("Thus peak value of current,average current and rms value of current are %g A ,%g A and %g A respectively\n",Im,Idc,Irms);
//for subdivision (b)
Pdc=(Idc)^2*(Rl);//DC power output
mprintf("Thus DC power is %1.3f W\n",Pdc);
//for subdivision (c)
Pac=(Irms)^2*(rf+Rl);//AC input power
mprintf("Thus AC power is %d W\n",Pac);
//for subdivision (d)
n=(Pdc/Pac);//efficiency of rectification
n=n*100;//efficiency in percentage
mprintf("Thus efficiency in percentage is %2.2f percentage",n);
//=================================END OF PROGRAM======================================================================================================
|
f49757ad5759356f9006e558c451c3c310f4df1b | 449d555969bfd7befe906877abab098c6e63a0e8 | /45/CH10/EX10.2/example_10_2.sce | 6994f56005efba6ef6a2bd5624e3e6c3ee93445e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 389 | sce | example_10_2.sce | //example 10.2
clc;
clc
c=128; // given counters
d=32;
e=64;
fc=log2(c);//making necessar calculations
fd=log2(d);
printf('A mod-128 conter should have %d flipflops\n', fc);
printf(' A mod-32 conter should have %d flipflops\n', fd); //displaying the results
fe=log2(e);
n=2^fe - 1 ;
printf(' The largest decimal no that can be stored in a mod-64 counter is %d',n);
|
6b35291e193b16ca03968d6fd311e547c4a060be | 449d555969bfd7befe906877abab098c6e63a0e8 | /1073/CH3/EX3.50/3_50.sce | 68598ddbd237900c78dbbe117a27664114ed7554 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 784 | sce | 3_50.sce |
clc;
clear;
//Example 3.50
rho=960 //[kg/m^3]
k=0.68 //[W/m.K]
mu=282*10^-6 //[kg/(m.s)]
Tw=371 //Tube wall temperature [K]
Ts=373 //Saturation temperature in [K]
dT=Ts-Tw //[K]
lambda=2256.9 //[kJ/kg]
lambda=lambda*10^3 //[J/kg]
//Fora square array with 100tubes,n=10
Do=0.0125 //[m]
g=9.81 //[m/s^2]
n=10
h=0.725*(((rho^2)*g*lambda*(k^3)/(mu*n*Do*dT))^(1.0/4.0)) //W/(sq m.K)
L=1 //[m]
//n=100
n=100;
A=n*%pi*Do*L //[m^2/m length]
Q=h*A*dT //Heat transfer rate in [W/m]
ms_dot=Q/lambda //[kg/s]
ms_dot=ms_dot*3600 //[kg/h]
printf("\n Mass rate of steam condensation is %d kg/h\n",round(ms_dot));
printf("\n NOTE:ERROR in Solution in book.Do is wrongly taken as 0.012 in lines 17 and 22 of the book,Also A is wrongly calculated\n")
|
3c8210fb55187902b648a9f628d3f7afb25cf3c9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /409/CH12/EX12.5/Example12_5.sce | 6d98f902ac23c5413e2e2eac5f115cc799e55501 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,192 | sce | Example12_5.sce | clear ;
clc;
//Page No.367
// Example 12.5
printf('Example 12.5\n\n');
// Solution fig.E12.5
// Given
F = 100 ;// Overall feed/basis - [kg]
F_n_C5H12 = 0.80 ;// Fraction of n_C5H12 in overall feed
F_i_C5H12 = 0.20 ;// Fraction of i_C5H12in overall feed
S_i_C5H12 = 1 ;// Fraction of i_C5H12 in isopentane stream
P_n_C5H12 = .90 ;// Fraction of n_C5H12 in overall product
P_i_C5H12 = .10 ;// Fraction of i_C5H12 in overall product
// Overall Balances
P = (F*F_n_C5H12)/P_n_C5H12 ;//Product Material Balance of n_C5H12 -[kg]
S = F - P ;// Isopentane stream (S) from overall material balance - [kg]
// Balance around isopentane tower
// Let x be kg of butane free gas going to isopentane tower , y be the n-C5H12 stream leaving the isopentane tower
// Solve following Equations by Matrix method
// x = S + y - By Total materal balance
// x*F_n_C5H12 = y
a = [1 -1;F_n_C5H12 -1] ;// Matrix of coefficients of unknown
b = [S;0] ;// Matrix of constants
x = a\b ;// Matrix of solutions, x(1) = x , x(2) = y
xf = x(1)/F ;// Fraction of butane-free gas going to isopentane tower
printf('Fraction of butane-free gas going to isopentane tower is %.3f .\n',xf); |
f8c6206341a238fe841ae1611467895e50177e8d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2321/CH9/EX9.6.2/EX9_6_2.sce | e4166ce2d1b7f10f095ce5948e7e6e523fccf4bb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,071 | sce | EX9_6_2.sce | //Example No. 9.6.2
clc;
clear;
close;
format('v',7);
aEBYlambda=10;//(Aperture/wavelength)
del_EBYlambda=0.2;//in E-plane
del_HBYlambda=0.375;//in H-plane
LBYlambda=aEBYlambda^2/8/del_EBYlambda;//(Length/wavelength)
disp("Length of the horn is "+string(LBYlambda)+"*lambda");
aHBYlambda=sqrt(LBYlambda*8*del_HBYlambda);//(Aperture/wavelength)
disp("H-plane aperture, aH is "+string(aHBYlambda)+"*lambda");
theta_E=2*atand(aEBYlambda/2/LBYlambda);//degree(Angle)
theta_H=2*atand(aHBYlambda/2/LBYlambda);//degree(Angle)
disp(theta_H,theta_E,"Flare angles theta_E & theta_H(in degree) are : ");
HPBW_E=56/aEBYlambda;//degree(HPBW for E-plane)
disp(HPBW_E,"HPBW(E-plane) in degree : ");
HPBW_H=67/aHBYlambda;//degree(HPBW for H-plane)
disp(HPBW_H,"HPBW(H-plane) in degree : ");
FNBW_E=102/aEBYlambda;//degree(FNBW for E-plane)
disp(FNBW_E,"FNBW(E-plane) in degree : ");
FNBW_H=172/aHBYlambda;//degree(FNBW for F-plane)
disp(FNBW_H,"FNBW(H-plane) in degree : ");
D=10*log10(7.5*aEBYlambda*aHBYlambda);//(Directivity)
disp(D,"Directivity in dB : ");
|
129044315a22c25606d2309dddd36ecb4e33ac1b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2240/CH4/EX3.17/EX3_17.sce | c233ef1084c5cf98fc2006d2037d3e797db05b9d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 620 | sce | EX3_17.sce | // Grob's Basic Electronics 11e
// Chapter No. 03
// Example No. 3_17
clc; clear;
//Determine the required resistance and appropriate wattage rating of a carbonfilm resistor to meet the following requirements: The resistor must have a 225-V IR drop when its current is 150 uA. The resistors available have the following wattage ratings: 1⁄8, 1⁄4, 1⁄2, 1, and 2 W.
// Given data
I = 150*10^-6; // Current=150 uAmps
V = 225; // Voltage Drop=225 Volts
R = V/I;
disp (R,'The Resistor value in Ohms')
disp ('i.e 1.5 MOhms')
P = I*I*R;
disp (P,'The Power in Watts')
disp ('i.e 33.75 mW')
|
fe999e680976b32f3c787108c15484a22679a03f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2915/CH2/EX2.14/Ex2_14.sce | e82ffe5565fa1560ce6d23b06a71c573d6cd3e1d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex2_14.sce | //Example 2.14
//To determine area of triangle when 3 angles and a side is given
clc,clear
A=115 //angle at vertex A
a=12 //side opposite to vertex A
B=25 //angle at vertex B
C=40 //angle at vertex C
area_K = a^2*sind(B)*sind(C)/(2*sind(A))
printf('Area of triangle ABC = %.2f square units',area_K)
|
7409460f81ff30d31f9a175ad522edf0a79db510 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1244/CH1/EX1.11/Example111.sce | 21b5d1c81fabf97aac5cf51a9b89c4a245b290f3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 672 | sce | Example111.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.11 ")
//Hot-gas temperature in K
Tgh = 1300;
//Heat transfer coefficient on hot side in W/m2K
h1 = 200;
//Heat transfer coefficient on cold side in W/m2K
h3 = 400;
//Coolant temperature in K
Tgc = 300;
//Max temp. in C
Tsg = 800;
//Maximum permissible unit thermal resistance per square meter of the metal wall in K/W
R2 = (Tgh-Tgc)/((Tgh-Tsg)/(1/h1))-1/h1-1/h3;
disp("Maximum permissible unit thermal resistance per square meter of the metal wall in m2.K/W is")
R2
|
4a544805901328ebc1b3090f67ba07eb66168e2d | 963bd9c63f26da53378cec5e7d7698e00e31d437 | /solvers/Reduce/packages/foreign/z3/z3.tst | 4fdad7706b386081a02d36d2e8a389c090aef29e | [] | no_license | vananhnt/Vtse-VerificationTool | 0b7590eaba056d9325c8e73d538451ef94ccd48c | fafa76de5efac2409b12f58cb1f45ba3d8388f5f | refs/heads/master | 2022-12-01T02:55:37.765396 | 2020-07-28T13:31:05 | 2020-07-28T13:31:05 | 95,702,486 | 1 | 1 | null | 2020-07-28T13:30:26 | 2017-06-28T19:05:12 | Red | UTF-8 | Scilab | false | false | 2,601 | tst | z3.tst | load_package z3;
lisp;
java.cfg := z3_mk_config()$
ctx := z3_mk_context java.cfg$
slv := z3_mk_simple_solver ctx$
% unsat example
f := z3_parse_smtlib2_string(ctx, "(declare-fun x () Int) (assert (and (and (>= x 0) (= (mod x 4) 0)) (not (= (+ (- (* 88 (div (+ x 2) 44))) (* 88 (div (+ x 1) 44)) (- (mod (+ x 2) 44)) (mod (+ x 1) 44) 1) 0))))");
z3_solver_assert(ctx, slv, f)$
b := z3_check!-sat(ctx, slv);
z3_solver_reset(ctx, slv)$
% sat example
f := z3_parse_smtlib2_string(ctx, "(declare-fun x () Int) (assert (and (and (>= x 0) (= (mod x 4) 0)) (not (= (+ (- (* 90 (div (+ x 3) 45))) (* 90 (div (+ x 2) 45)) (- (mod (+ x 3) 45)) (mod (+ x 2) 45) 1) 0))))")$
z3_solver_assert(ctx, slv, f)$
b := z3_check!-sat(ctx, slv);
% manual test of the protocol for passing argument lists
zwei := z3_mk_int(ctx, 2);
drei := z3_mk_int(ctx, 3);
vier := z3_mk_int(ctx, 4);
z3_init_args(3);
z3_push_to_args zwei;
z3_push_to_args drei;
z3_push_to_args vier;
ast := z3_mk_app(ctx, "plus");
z3_cleanup_args();
z3_prin2_ast(ctx, ast);
% form2ast tests
% arithmetic operations:
ast := z3_form2ast(ctx, '(plus 1 (times 5711 z) (times 2 x) y));
z3_prin2_ast(ctx, ast);
ast := z3_form2ast(ctx, '(plus (minus x) (minus x (* 10 y))));
z3_prin2_ast(ctx, ast);
ast := z3_form2ast(ctx, '(* (minus 5) (difference x (* y z w (plus 1 3 x)))));
z3_prin2_ast(ctx, ast);
% relations:
ast := z3_form2ast(ctx, '(neq 1 2));
z3_prin2_ast(ctx, ast);
ast := z3_form2ast(ctx, '(equal 1 x));
z3_prin2_ast(ctx, ast);
ast := z3_form2ast(ctx, '(geq x y));
z3_prin2_ast(ctx, ast);
ast := z3_form2ast(ctx, '(leq 147 (plus y x)));
z3_prin2_ast(ctx, ast);
ast := z3_form2ast(ctx, '(greaterp 47 (plus y (times x 3))));
z3_prin2_ast(ctx, ast);
ast := z3_form2ast(ctx, '(lessp (minus 10) (minus x y)));
z3_prin2_ast(ctx, ast);
ast := z3_form2ast(ctx, '(equiv (equal 0 (modc a 4)) (cong a 0 4)));
z3_prin2_ast(ctx, ast);
ast := z3_form2ast(ctx, '(equiv (ncong a 0 47) (greaterp (modc a 47) 0)));
z3_prin2_ast(ctx, ast);
% logical connectives:
ast := z3_form2ast(ctx, 'true);
z3_prin2_ast(ctx, ast);
ast := z3_form2ast(ctx, 'false);
z3_prin2_ast(ctx, ast);
ast := z3_form2ast(ctx, '(and (neq 1 2) (equal 1 3)));
z3_prin2_ast(ctx, ast);
ast := z3_form2ast(ctx, '(and true false true true false));
z3_prin2_ast(ctx, ast);
ast := z3_form2ast(ctx, '(and (geq x y) false));
z3_prin2_ast(ctx, ast);
ast := z3_form2ast(ctx, '(equiv (equal 1 0) false));
z3_prin2_ast(ctx, ast);
ast := z3_form2ast(ctx, '(impl false (not (equal (minus x) 0))));
z3_prin2_ast(ctx, ast);
z3_del_context ctx$
z3_del_config java.cfg$
end; % of file
|
bef4e58e8067e2f4e24c041059a1ec6ee5f5c7e4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /278/CH13/EX13.2/ex_13_2.sce | 9e2226d80f0a5e1c946531ed77b1f9b3a891cc3c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 533 | sce | ex_13_2.sce |
clc
//solution
//given
d=45//mm
fyts=400//N/mm^2'//for shaft
w=14//mm
t=9//mm
fytk=340//N/mm^2//for key
Fs=2
pi=3.14
//let l be length of key
tmaxs=fyts/(2*Fs)//N/mm^2
tmaxk=fytk/(2*Fs)//N/mm^2
tmax=(pi/16)*tmaxs*d^3//N-mm
//tmax=l*w*tmaxk*d/2
l1=(tmax*2)/(w*tmaxk*d)//
printf("the length of key(l1) is,%f mm\n",l1)
//tmax=l2*t*fytk*d/4=17213*l2
l2=tmax/17213//mm
printf("te length of key(l2) is,%f mm\n",l2)
printf("since l2 >l1,taking large value l2=l ,length of key\n")
l=103.89//mm
printf("the length of key(l) is,%f mm\n",l) |
cb2ce734789984fe152f9558ba3457c1540e376f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3131/CH6/EX6.14/6_14.sce | 43d891c1e5fc6414157ac5b65065190b9d6b1ce4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 737 | sce | 6_14.sce | clear all; clc;
disp("Ex 6_14")
disp("Figure 6-27b shows the free body diagram")
//Applying equations of equilibrium
//summing moments about C and equating to zero
a1=60
a=a1*%pi/180
F_AB=(2000*2)/(sin(a)*4)
printf('\n F_AB = %0.1f N',F_AB)
//summinf forces in X direction
Cx=F_AB*cos(a)
printf('\n Cx = %0.0f N',Cx)
//summing forces in Y direction
Cy=2000-(F_AB*sin(a))
printf('\n Cy = %0.0f N\n',Cy)
//Alternate method ignoring AB is not a two force member
disp("Alternate method")
A=[3*sin(a),-3*cos(a),0,0;0,-4,0,0;1,0,-1,0;0,1,0,1]
B=[0;-4000;0;2000]
C=inv(A)
D=C*B
Bx=D(1)
By=D(2)
Cx=D(3)
Cy=D(4)
//Result
printf('\n The values are')
printf('\n Bx=%0.0f \n By=%0.0f \n Cx=%0.0f \n Cy=%0.0f \n All values are in N',Bx,By,Cx,Cy)
|
8da763f5b15a5b50d9de51ecac9003cf8132a199 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3169/CH3/EX3.3/Ex3_3.sce | 0d57913d2069e4617339b49e43a132074317fde9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 407 | sce | Ex3_3.sce | //developed in windows XP operating system
//platform Scilab 5.4.1
clc;clear;
//example 3.3
//calculation of the load voltage and the load current
//given data
Vs=10//source voltage(in V)
Rl=1*10^3//value of resistance(in ohm)
//calculation
Vl=Vs
//from the equation of ohm's law.....Il=Vl/Rl
Il=Vl/Rl
printf('the load voltage is %d V',Vl)
printf('\nthe load current is %d mA',Il*10^3)
|
3be6ebd5b1af4ada71d714f3a54b6e4f580a4d0c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3809/CH16/EX16.2/EX16_2.sce | 037742c3b484d0f18c8f6fff2a4da1bbabf5de78 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 656 | sce | EX16_2.sce | //Chapter 16, Example 16.2
clc
//Initialisation
E=5 //voltage
R=1000 //resistance in ohm
Vd=0.7 //barrier voltage
ron=10 //internal resistance in ohm
//Calculation
I=E/R //current in ampere
I1=(E-Vd)/R //current in ampere
I2=(E-Vd)/(R+ron) //current in ampere
//Results
printf("When no voltage drop, I = %d mA\n",I*1000)
printf("When there is conduction voltage of the diode, I = %.1f mA\n",I1*1000)
printf("When there is conduction voltage and internal resistance if the diode, I2 = %.2f mA\n",I2*1000)
|
70b57f9c21961b16208d736a3af9847867087144 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2213/CH1/EX1.2/ex_1_2.sce | 67528e1d1353e12409e62bb700ab1d330b369bfe | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 486 | sce | ex_1_2.sce | //Example 1.2 // diameter and length
clc;
clear;
close;
format('v',6)
P=2.5;//power in kW
V=240;// in volts
K=1;//radiating efficiency
e=0.9;//emissivity
p=42.5*10^-6;// resistivity in ohm-cm
T1=1500;//in dgree celsius
T2=450;//in degree celsius
x=((%pi*V^2)/(4*(p*10^-2)*P*10^3));//
H=((5.72*K*e)*(((T1+273)/100)^4-((T2+273)/100)^4));//
z=((P*10^3)/(%pi*H))^2;//
l=(z*x)^(1/3);//length in meter
d=((sqrt(z))/l)*10^3;//diameter in mm
disp(l,"length in meter")
disp(d,"diameter in mm")
|
a6250a4053b061982c3f544fa621b0808e4185f5 | 3aecc0a856e5ab896077f26d338574613e42a223 | /src/03.MontyHall.sci | 1df33c5cdb713c465e5aa8099f88e317189a3f2a | [] | no_license | wmotti/simulation | 9ebed2818f83a1ba864399ee3dc664e5303e3983 | ec4cce2ce180f947edf0ed9f501799d06b8a0416 | refs/heads/master | 2020-03-28T08:10:23.668854 | 2018-09-08T16:14:42 | 2018-09-08T16:14:42 | 147,949,219 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 396 | sci | 03.MontyHall.sci | clear;
N=10000;
correctWhenStick = 0;
correctWhenChange = 0;
for i=[1:N] do
rightAnswer = grand(1,1,'uin',1,3);
initialGuess = grand(1,1,'uin',1,3);
if (initialGuess<>rightAnswer) then
correctWhenChange = correctWhenChange+1;
else
if (initialGuess==rightAnswer) then
correctWhenStick = correctWhenStick+1;
end;
end;
end
correctWhenStick/N
correctWhenChange/N
|
bcd60435fea2b0aa57d7cce9e4adbfa1712de90d | fa428f297a915e9a041597642bfe29627ab69c42 | /app/views/components/comment.sce | 25e3937bcc19cc035bb0e70cd978aba053c5e87a | [] | no_license | TheBrenny/Web-Dev-and-Security | dff903be92838b14f7126dd1f7092922b86bf2cc | e4abb96dc24e606704b09f5acdd2684d6d5d577d | refs/heads/main | 2023-06-17T08:33:35.176024 | 2021-06-15T05:07:20 | 2021-06-15T05:07:20 | 343,603,444 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 267 | sce | comment.sce | <div class="comment">
<p class="message">[[ comment.comments_comment ]]</p>
<p class="metadata">
<span class="author">[[ comment.users_username ]], </span>
<span class="postDate">[[ comment.comments_comment_date ]]</span>
</p>
</div> |
1e3d2060bf6cd7aee5fc90506688de018df7bc63 | 717ddeb7e700373742c617a95e25a2376565112c | /2825/CH14/EX14.10/Ex14_10.sce | 62b0ff6296f27eefbfbdede4734d365637872981 | [] | 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 | 696 | sce | Ex14_10.sce | //Ex14_10 Pg-698
clc
n1=1.48 //core refracrive index
n2=1.47 //cladding refractive index
lamda=850e-6 //cut-off wavelength
V=2.405 //normalised frequency
//In the book cut off wavelength in the question is 850 um but in
// the calcution part it is taken as 850nm. Here I've taken 850um
d=V*lamda/(%pi*sqrt(n1^2-n2^2)) //diamter of core
a=d/2 //radius of core
printf("Radius of core = %.2f mm \n",a*1e3)//answer in the book is wrong
NA=sqrt(n1^2-n2^2) //numerical apperture
printf(" Numerical apperture = %.4f \n",NA)
AA_rad=asin(NA/n) //maximum Acceptance angle in rad
AA=AA_rad*180/%pi //maximum entrance angle in degree
printf(" Acceptance angle i0 = %.2f degree \n",AA)
|
2d8c90bd36ea657e82ca4c9f5713d3f304d370d4 | f42e0a9f61003756d40b8c09ebfe5dd926081407 | /TP1/suite.sci | aa979d66ceb48d3f05b7a6c9581cd585d749fc9b | [] | no_license | BenFradet/MT09 | 04fe085afaef9f8c8d419a3824c633adae0c007a | d37451249f2df09932777e2fd64d43462e3d6931 | refs/heads/master | 2020-04-14T02:47:55.441807 | 2014-12-22T17:34:50 | 2014-12-22T17:34:50 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 384 | sci | suite.sci | function[x] = suite(N, a, b)
if (N - floor(N) ~= 0) | N < 0
error('erreur dans suite: N non entier positif ou nul');
end
if N == 0
x = a;
elseif N == 1
x = b;
else
x = zeros(N, 1);
x(1) = a;
x(2) = b;
for i = 1:N-2
x(i+2) = 9/4 * x(i + 1) - 1/2 * x(i);
end
end
endfunction
|
b7b9ba28bc300557f02add57386327273edb7602 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1835/CH3/EX3.8/Ex3_8.sce | 93c916b1a5a6273538e9b2f27ee46f62ee7e72fe | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,433 | sce | Ex3_8.sce | //CHAPTER 3 ILLUSRTATION 8 PAGE NO 107
//TITLE:FRICTION
clc
clear
//===========================================================================================
//INPUT DATA
W=50000// WEIGHT OF THE SLUICE GATE IN NEWTON
P=40000// POWER IN WATTS
N=580// MAX MOTOR RUNNING SPEEED IN rpm
d=12.5// DIAMETER OF THE SCREW IN cm
p=2.5// PITCH IN cm
PI=3.147
U1=.08// COEFFICIENT OF FRICTION for SCREW
U2=.1// C.O.F BETWEEN GATES AND SCREW
Np=2000000// NORMAL PRESSURE IN NEWTON
Fl=.15// FRICTION LOSS
n=1-Fl// EFFICIENCY
ng=80// NO OF TEETH ON GEAR
//===========================================================================================
//CALCULATION
TV=W+U2*Np// TOTAL VERTICAL HEAD IN NEWTON
ALPHA=atand(p/(PI*d))//
PY=atand(U1)//
P1=TV*tand(ALPHA+PY)// FORCE IN N
T=P1*d/2/100// TORQUE IN N-m
Ng=60000*n*P*10^-3/(2*PI*T)// SPEED OF GEAR IN rpm
np=Ng*ng/N// NO OF TEETH ON PINION
//=========================================================================================
//OUTPUT
printf('NO OF TEETH ON PINION =%.2f say %d',np,np+1)
|
f589877315c178dc77df4bd5625134e55ed683d7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /683/CH7/EX7.4/SC_4.sce | d5072667301b7f39f3c096d7ab95fb198255b3c4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 375 | sce | SC_4.sce | // sum 7-4
clc;
clear;
Iyy=193.4+(2*1.2*1.5^3/12);
E=200*10^3;
l=500;
Pe=(%pi^2)*E*Iyy*10^5/(l^2);
A=35.53+(2*1.2*15);
sige=Pe/7530;
k=sqrt(Iyy/A);
xc=75;
sig=80;
sigo=20.875;
A=A*100;
P=sigo*A;
P=P*10^-3;
// printing data in scilab o/p window
printf("P is %0.1f kN ",P);
//The difference in the value of P is due to rounding-off the digits. |
c8ba52e57258c206c0750f13aef45203af1442bb | 449d555969bfd7befe906877abab098c6e63a0e8 | /2175/CH6/EX6.12/6_12.sce | 4bcd317d47facf08296e0d5ed0a099f0704eb197 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 166 | sce | 6_12.sce | clc;
ni!n=0.15;
p=1.4;//bar
x=ni!n*p;
//saturation temperature corresponding to 0.21 bar is 61.15 C
t=61.15;//C
disp("Temperature required is:");
disp("C",t)
|
6e30fa0fc301b737793b0ebc12e45755bdc358a9 | 939cf9524c0523729112dee335cc26668ae76018 | /mag2pow.sci | ed72cfeef0353aaac97001a6f80622d5c24a0cb5 | [] | no_license | ishitab/functions-scilab | 919afb6f747fea12bd5c53f1b8e30c866b0eae2a | 5ffc3ccb9ce4185d5f877378af7b70292ccbbd37 | refs/heads/master | 2021-01-10T10:24:41.938399 | 2015-12-28T06:12:50 | 2015-12-28T06:12:50 | 44,682,482 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 534 | sci | mag2pow.sci | function [y] = mag2pow(ydb)
//This function calculates the power value in Watt of the decibel value ydb passed as the parameter
//Calling sequence
//function [y] = mag2pow(ydb)
//Parameters
//ydb : scalar or vector or matrix or N-D array
//Examples
//ydb = 20
//y=mag2pow(ydb)
//Authors
//Ishita Bedi
funcprot(0);
rhs = argn(2)
if(rhs~=1)
error("Wrong number of input arguments.")
end
//This statement calculates the power in Watt of ydb which was in decibel using ydb = 10log (y) -- log base 10
y = 10.^(ydb/10);
endfunction
|
3718084106a85361dc5a24329fa2d053bc90a1e3 | 1a00eb132340e145c8a7d8fd0ef79a02b24605a2 | /macros/buildmacros.sce | 82165a3f92e80cc477d0f723808a4b97792b29ac | [] | no_license | manasdas17/Scilab-Arduino-Toolbox | e848d75dc810cb0700df34b1e5c606802631ada4 | 2a6c9d3f9f2e656e1f201cecccd4adfe737175e7 | refs/heads/master | 2018-12-28T15:51:35.378091 | 2015-08-06T07:22:15 | 2015-08-06T07:22:15 | 37,854,821 | 3 | 2 | null | null | null | null | UTF-8 | Scilab | false | false | 876 | sce | buildmacros.sce | // This file is released under the 3-clause BSD license. See COPYING-BSD.
function buildmacros()
macros_path = get_absolute_file_path("buildmacros.sce");
tbx_build_macros(TOOLBOX_NAME, macros_path);
blocks = [
"ARDUINO_ANALOG_READ" "ARDUINO_ANALOG_WRITE" "ARDUINO_DCMOTOR" ...
"ARDUINO_DIGITAL_READ" "ARDUINO_DIGITAL_WRITE" "ARDUINO_ENCODER" ...
"ARDUINO_SERVO_READ" "ARDUINO_SERVO_WRITE" "ARDUINO_SETUP" ...
"ARDUINO_STEPPER" "ARDUINO_INTERRUPT"...
"TIME_SAMPLE" "ARDUINO_SETUP" ...
"ANALOG_READ_SB" "ANALOG_WRITE_SB" "DCMOTOR_SB" ...
"DIGITAL_READ_SB" "DIGITAL_WRITE_SB" "ENCODER_SB" ...
"SERVO_READ_SB" "SERVO_WRITE_SB" "STEPPER_SB" "INTERRUPT_SB" ...
"ARDUINO_SCOPE"
];
tbx_build_blocks(toolbox_dir, blocks);
endfunction
buildmacros();
clear buildmacros;
|
b06ff6878652ab7e7bd33e20ac13d8b161055805 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2993/CH2/EX2.3/Ex2_3.sce | e9b485d87829a4a74785f0e178463f031d82934e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 375 | sce | Ex2_3.sce |
clc;
close;
Num_of_pixels_in_width = 2400; // Given width of the image in pixels
Num_of_pixels_in_height = 2400;//Given height of the image in pixels
Resolution = 300 // Scanning resoltuion in DPI
//The Physical size of the Image
disp(string(Num_of_pixels_in_width/Resolution)+" inches x "+ string(Num_of_pixels_in_width/Resolution)+" inches","The physical size is = ")
|
e679a1c2262a809e60506a0b06e92d49d159ef3e | d65667bd6da157e725e5083a95c7a5e3c5e50371 | /hdf5/HDF5Examples-0.1.1-Source/C/H5G/testfiles/h5ex_g_phase.tst | 093ad09ec3c0bc28fef9872dabeb92785b28ed01 | [] | no_license | DCC-Lab/Umuco | 4748640ddd5869f193303057445fccbf2e1cc6c5 | 41c38cd6c8e8d771708959eb02c9dee054148cbc | refs/heads/master | 2020-08-07T01:11:31.456247 | 2019-02-24T18:16:16 | 2019-02-24T18:16:16 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 718 | tst | h5ex_g_phase.tst | 1 Group : Storage type is H5G_STORAGE_TYPE_COMPACT
2 Groups: Storage type is H5G_STORAGE_TYPE_COMPACT
3 Groups: Storage type is H5G_STORAGE_TYPE_COMPACT
4 Groups: Storage type is H5G_STORAGE_TYPE_COMPACT
5 Groups: Storage type is H5G_STORAGE_TYPE_COMPACT
6 Groups: Storage type is H5G_STORAGE_TYPE_DENSE
7 Groups: Storage type is H5G_STORAGE_TYPE_DENSE
6 Groups: Storage type is H5G_STORAGE_TYPE_DENSE
5 Groups: Storage type is H5G_STORAGE_TYPE_DENSE
4 Groups: Storage type is H5G_STORAGE_TYPE_DENSE
3 Groups: Storage type is H5G_STORAGE_TYPE_DENSE
2 Groups: Storage type is H5G_STORAGE_TYPE_COMPACT
1 Group : Storage type is H5G_STORAGE_TYPE_COMPACT
0 Groups: Storage type is H5G_STORAGE_TYPE_COMPACT
|
a2482590a3e47784590aadcac64406870d4735a0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /122/CH6/EX6.6.2/exa6_6_2.sce | e065b316d7a4eab6bcc8af6ba49ccd26fab75dd0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 872 | sce | exa6_6_2.sce | // Example 6-6-2
// Step and ramp response of lead compensated systems
clear; clc;
xdel(winsid()); //close all windows
function Gc = leadcomp(Kc,z,p);
Gc = Kc* ((s + z)/(s + p));
endfunction
function plotall(u,t,text)
y = csim(u,t,H );
yc1 = csim(u,t,H1);
yc2 = csim(u,t,H2);
plot(t,y,t,yc1,t,yc2);
xgrid(color('gray'));
xtitle(text + ' Response of compensated and uncompensated systems','t sec','Output');
legend('Uncompensated System','Compensated System Method 1','Compensated System Method 2');
endfunction
s = %s;
G = 10 / ( s*(s+1) ); //open loop system
Gc1 = leadcomp(1.2292,1.9373,4.6458);
Gc2 = leadcomp(0.9,1,3);
H = syslin('c',G /. 1);
H1 = syslin('c', ( G * Gc1) /. 1);
H2 = syslin('c', ( G * Gc2) /. 1);
t = 0:0.05:5;
u = ones(1,length(t));
plotall(u,t,'Step');scf();
t = 0:0.05:9;
plotall(t,t,'Ramp');
plot(t,t,'k');
|
d139ce9f0f6c24c43d1720b4af25abb523eccedc | 449d555969bfd7befe906877abab098c6e63a0e8 | /2606/CH10/EX10.1/ex10_1.sce | b2d84736cfe8298a74d091ee977ae700b51191db | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 444 | sce | ex10_1.sce | //Page Number: 10.18
//Example 10.1
clc;
//Given
Rb=1D+6; //b/s
A=5D-3; //V
N0=0.5D-11; //W/Hz
Tb=1/Rb;
Eb=(A*A*Tb)/2;
//(a) ASK
//Pe=Q(x)
//where
xA=sqrt(Eb/N0);
PeA=(1/2)*erfc(xA/1.414);
disp(PeA,'For ASK:');
//(b) PSK
//Pe=Q(x)
//where
xP=sqrt((2*Eb)/N0);
PeP=(1/2)*erfc(xP/1.414);
disp(PeP,'For PSK:');
//(c) FSK
//Pe=Q(x)
//where
xF=sqrt(Eb/N0);
PeF=(1/2)*erfc(xF/1.414);
disp(PeF,'For FSK:');
|
0511c2279d4d4e7f5fd3c877358eb097b10791ce | 449d555969bfd7befe906877abab098c6e63a0e8 | /1418/CH26/EX26.24.b/EX26_24b.sce | 92c1c2c278d9327d36a80d52afbec74b5cd9edc5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,045 | sce | EX26_24b.sce | //EXAMPLE 26.24(b)
//DC SHUNT MOTOR
clc;
funcprot(0);
//Variable Initialisation
V=500;..............................//Terminal voltage in Volts
Il=5;..............................//Line current in Amperes
Ra=0.15;...........................//Armature resistance in Ohms
Rf=200;.............................//Field resistance in Ohms
I=40;...............................//Load current in Amperes
Ia=Il/2;..........................//Armature current in Amperes
Lame=V*Ia;........................//Armature core loss and no load mechanical loss at rated speed in Watts
Ita=I+Ia;.............................//Total current for armature in Amperes
Lt=((Lame*2)+(Ra*Ita^2));................//Total losses in Watts
Po=V*I*10^-3;................................//Output power in Kilo Watts
y=round(Lt)/1000;...................................//Rounding of decimal places to Kilo Watts
eff=Po*100/(Po+y);....................................//Efficiency in percentage
y1=round(eff*100)/100;
disp(y1,"Efficiency in percentage:");
|
a40e9c478b01a66524db35690535980d6cc2c009 | 449d555969bfd7befe906877abab098c6e63a0e8 | /317/CH5/EX5.15/example15.sce | 5c68588747f1c4fdd376a2ac034b62b85691d32a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 549 | sce | example15.sce | // find average LED current
// Electronic Principles
// By Albert Malvino , David Bates
// Seventh Edition
// The McGraw-Hill Companies
// Example 5-15, page 170
clear;clc; close;
// Given data
f=60;// frequency in hertz
C=0.68*10^-6;// capacitance in faradays
V=170;// voltage in volts
// Calculations
Xc=1/(2*%pi*f*C);// capacitive resistance in ohms
Is1=V/Xc;// peak current in amperes
Is2=Is1/%pi;// average of the half-wave currnt through LED
disp("Amperes",Is2,"average LED current =")
// Result
// Average LED current is 13.9 mAmperes
|
702396307754d95584f11e95ede33e66f12d2a63 | 449d555969bfd7befe906877abab098c6e63a0e8 | /61/CH8/EX8.4/ex8_4.sce | c20278c93e873229c9bf14a75cb4ae48a90e20fa | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 563 | sce | ex8_4.sce | //ex8.4
V_DD=12;
V_in=100*10^-3;
R_D=3.3*10^3;
I_DSS=12*10^-3;
V_GS_off=-3;
R_S=910;
a=(R_S^2)/(V_GS_off^2); //we take V_GS_off positive so that we take current negative
b=(-1)*(((2*R_S)/(V_GS_off))-(1/I_DSS));
c=1;
p1=poly([c b a],'x','c')
A=roots(p1)
I_D=(-1)*A(1); //make the value of current positive
V_D=V_DD-I_D*R_D;
V_GS=-I_D*R_S;
g_m0=(2*I_DSS)/(abs(V_GS_off));
g_m=g_m0*(1-(V_GS/V_GS_off));
V_out=g_m*R_D*V_in; //rms value
v_out=V_out*1.414*2; //peak to peak dc value
disp(v_out,'output dc voltage (peak to peak) in volts') |
edf3006df074c2fa33f20e53bba2b5061a171ba4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /23/CH13/EX13.13/Example_13_13.sce | e9b56293882ea20561750ac42a5987d74971c6fe | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,786 | sce | Example_13_13.sce | clear;
clc;
//To find Approx Value
function[A]=approx(V,n)
A=round(V*10^n)/10^n;//V-Value n-To what place
funcprot(0)
endfunction
//Example 13.13
//Caption : Program to Find the Composition at different Temperatures
n_air=2.381//[mol]
n_O2=0.21*n_air;
n_N2=0.79*n_air;
R=8.314;
P=20;//[bar]
T=[1000 1100 1200 1300 1400 1500];
dG_H2O=[-192420 -187000 -181380 -175720 -170020 -164310];
dG_CO=[-200240 -209110 -217830 -226530 -235130 -243740];
dG_CO2=[-395790 -395960 -396020 -396080 -396130 -396160];
KI='y_H2O/((y_O2)^0.5*y_H2)(P/Po)^-0.5'
KII='y_CO/((y_O2)^0.5)(P/Po)^0.5'
KIII='y_CO2/y_O2'
n='3.38+((e2-e1)/2)'
y_H2='-e1/n'
y_CO='e2/n'
y_O2='((0.5(1-e1-e2))-e3)/n'
y_H2O='(1+e1)/n'
y_CO2='e3/n'
y_N2='1.88/n'
KI='(1+e1)(2n)^0.5*(P/Po)^-0.5'
KII='(e3*(P/Po)^0.5)/(1-e1-e2-2e3)^0.5*(n/2)^0.5'
KIII='2e3/(1-e1-e2-2e3)'
K_I=approx(exp(-dG_H2O./(R.*T)),1)
K_II=approx(exp(-dG_CO./(R.*T)),1)
K_III=approx(exp(-dG_CO2./(R.*T)),1)
//Now since the values of KI KII KIII valyes are so High the mole fraction of O2 must be very small
//Hence We eleminate O2,Hence 2 Eqns are,
//C + CO2 --> 2CO (a)
//H2O + C --> H2 + CO (b)
Ka='(y_CO^2/y_CO2)*(P/Po)'
Kb='((y_H2*y_CO)/y_H2O)*(P/Po)'
n='3.38+(e_a+e_b)'
y_H2='e_b/n'
y_CO='(2e_a+e_b)/n'
y_H2O='(1-e_b)/n'
y_CO2='(0.5-e_a)/n'
y_N2='1.88/n'
Ka='(2e_a+e_b)^2/((0.5-e_a)*n)*(P/Po)'
Kb='e_b(2e_a+e_b)/((1-e_b)*n)*(P/Po)'
dG_new_a=(2*dG_CO)-dG_CO2;
dG_new_b=dG_CO-dG_H2O;
Ka=approx(exp((-dG_new_a./(R.*T))),3);
Kb=approx(exp((-dG_new_b./(R.*T))),3);
//Calculation of e_a and e_b
a=0.1;//Initial Value
b=0.7;//Initial Value
C1=Ka/20;
C2=Kb/20;
for(i=1:6)
c=-1;
while(c==-1)
fa=approx((((a^2)*(4+C1(i)))+(b^2)+((4+C1(i))*(a*b))+(2.88*C1(i)*a)-(0.5*C1(i)*b)-(1.69*C1(i))),4);
dfax=approx(((2*a*(4+C1(i)))+((4+C1(i))*b)+(2.88*C1(i))),4);
dfay=approx((2*b)+((4+C1(i))*a)-(0.5*C1(i)),4);
fb=approx(((b^2*(1+C2(i)))+((2+C2(i))*a*b)-(C2(i)*a)+(2.38*C2(i)*b)-(3.38*C2(i))),4);
dfbx=approx((((2+C2(i))*b)-C2(i)),4);
dfby=approx(((2*b*(1+C2(i)))+((2+C2(i))*a)+(2.38*C2(i))),4);
A=[dfax dfay;dfbx dfby];
B=[-fa;-fb];
Ans=approx(A\B,4);
da=Ans(1);
db=Ans(2);
if(da==0 & db==0)
c=0;
e_a(i)=a;
e_b(i)=b;
break;
end
a=a+da;
b=b+db;
end
end
n=3.38+(e_a+e_b);
y_H2=approx(e_b./n,3);
y_CO=approx(((2*e_a)+e_b)./n,3);
y_H2O=approx((1-e_b)./n,3);
y_CO2=approx((0.5-e_a)./n,3);
y_N2=approx(1.88./n,3);
Ans=[T',Ka',Kb',e_a,e_b];
Ans1=[T',y_H2,y_CO,y_H2O,y_CO2,y_N2];
plot(T',y_H2,'r-')
plot(T',y_CO,'b-')
plot(T',y_H2O,'g-')
plot(T',y_CO2,'m-')
plot(T',y_N2,'y-')
legend('H2','CO','H2O','CO2','N2',)
xtitle('Equllibrium Compositions','T/K','yi')
disp(Ans,' T/K Ka Kb e_a e_b')
disp(Ans1,' T/K y_H2 y_CO y_H2O y_CO2 y_N2')
//End |
bbee3d5651ba8c9a6627114a195d4e9ef8f6223e | 449d555969bfd7befe906877abab098c6e63a0e8 | /944/CH6/EX6.19/example6_19_TACC.sce | 712d4eefff7f5d163d885aff19aedad11c63501b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 426 | sce | example6_19_TACC.sce | //example 6.19
clear;
clc;
//Given:
R=8.314;//Universal gas constant[J.K^-1.mol^-1]
Tb=373.15;//Boiling point temperature[K]
M1=0.018;// mass of water[kg]
Hvap=40.7;//Enthalpy of vaporization[KJ.mol^-1]
//To find the Ebullioscopic constant of water
a=R*0.001*Tb^2*M1;
b=Hvap;
Kb=a/b;//Ebullioscopic constant of water[K.Kg.mol^-1]
printf("The Ebullioscopic constant of water is %f K.Kg.mol-1",Kb);
|
9df07cb86ff002360bd031b6496a8fad821f2f63 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3875/CH11/EX11.1/11_1.sce | a4cdcb55a287851095b97c8ace77c10149b6e763 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 361 | sce | 11_1.sce | clc;
clear;
I=10*10^-3 //current in Ampere
e=1.6*10^-19 //charge in C
h=6.63*10^-34 //Plancks constant in J-s
c=3*10^8 //velocity of light in m/s
V=25*10^3//voltage in V
n=(I/e)
mprintf("The no of electrons striking the target are = %1.2e\n",n)
lambda_min=(h*c)/(e*V)
mprintf("The minimum wavelegth of the emitted Xrays is = %1.2e m",lambda_min)
|
111e48a834e009fdb67576f0e53652047dc9f4c9 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/ngram/5.15_18.tst | 7f3099ace339a5da3e6b202100a18f33d24bfac3 | [] | 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 | 482,248 | tst | 5.15_18.tst | 15 216:1 1247:1 1819:1 2742:1 3367:1 3495:1 3664:1 3866:1 4179:1 4455:1 5664:1 7227:1 8099:1 8193:1 8662:1 8814:1 9622:1 9948:2 10471:1 10536:2 12015:2 12792:1 13532:1 14208:1 14459:1 14590:1 14619:1 14718:1 16434:1 17151:2 18827:1 18868:1 19036:1 19179:1 19328:1 19335:1 19395:1 20212:1 20627:1 20657:1 20852:1 21496:1 22172:1 22193:1 23306:1 23725:85 24281:1 25398:1 25952:1 25977:1 28423:1 29059:1 29156:1 29625:2 29669:1 31216:1 31358:1 32507:1 34323:1 34488:2 34530:1 34833:1 35437:1 35622:1 36351:1
15 216:1 451:1 677:1 1078:1 1081:1 1247:1 1272:1 1535:1 1654:1 1819:1 1901:1 2398:1 2742:1 2780:1 2812:1 2989:1 3367:1 3495:1 3569:1 3664:1 3866:1 3945:1 4179:1 4455:1 4602:1 4624:1 5294:1 5664:1 5928:1 6258:1 6458:1 6822:1 7227:1 7351:1 7591:1 8099:1 8193:1 8212:1 8565:1 8662:1 8814:1 9203:1 9622:1 9677:1 9862:1 9881:2 9904:1 9948:2 10471:2 10536:2 12015:2 12183:1 12386:1 12413:1 12792:1 12921:1 13267:1 13443:1 13532:1 13676:1 14129:1 14208:1 14214:1 14288:2 14459:1 14590:1 14619:1 14718:1 14894:1 14920:1 15071:1 15258:1 15334:1 16434:1 16540:1 17151:2 17469:1 17770:1 17930:1 18827:1 18868:1 19036:1 19179:1 19328:1 19335:1 19394:1 19395:1 20128:1 20212:1 20627:1 20652:1 20657:1 20667:1 20852:1 21108:1 21496:1 21661:1 21870:1 22172:1 22193:1 22915:1 23025:1 23306:1 23401:1 23725:174 23753:1 23856:1 24281:1 24588:1 25055:1 25398:1 25952:1 25977:1 26544:1 26589:1 26729:1 26904:1 27524:1 28423:1 28488:1 29059:1 29105:2 29156:1 29405:1 29625:2 29669:1 29880:1 30467:1 30796:1 31134:1 31216:1 31358:1 32016:1 32199:1 32384:2 32507:1 32779:1 33230:1 33721:1 33889:1 34047:1 34323:1 34488:2 34530:1 34810:1 34833:1 35437:1 35622:1 36351:1 36426:1
15 216:1 404:1 451:1 595:1 677:1 733:1 1078:1 1081:1 1247:1 1272:1 1535:1 1654:1 1819:1 1901:2 2145:1 2398:1 2742:1 2780:1 2811:1 2812:1 2989:1 3367:1 3495:1 3569:1 3664:1 3675:1 3866:1 3945:1 4179:1 4455:1 4498:1 4602:1 4624:1 4821:1 5294:1 5310:1 5357:1 5590:1 5664:1 5689:1 5865:1 5928:1 6258:1 6458:1 6605:1 6822:1 6829:1 6853:1 7061:1 7227:1 7351:1 7591:1 7830:1 7836:1 8099:1 8162:1 8193:1 8212:1 8286:2 8416:1 8425:1 8565:1 8662:1 8814:1 9130:1 9203:1 9289:1 9622:1 9677:1 9862:1 9881:3 9904:1 9948:2 9971:1 10471:2 10536:2 10596:1 10761:1 11158:1 11351:1 11779:1 11789:1 11867:1 12015:2 12183:1 12199:1 12386:1 12413:1 12792:1 12921:1 13086:1 13146:1 13241:1 13267:1 13443:1 13532:1 13676:1 13899:1 13994:1 14107:1 14129:1 14208:1 14214:1 14288:2 14459:1 14590:1 14619:1 14718:1 14894:1 14920:1 15071:1 15110:1 15258:1 15334:1 15425:1 15706:1 16036:1 16434:1 16540:1 16586:1 17051:1 17081:1 17151:2 17156:1 17239:1 17469:1 17770:1 17930:1 18055:1 18340:1 18727:1 18827:1 18868:1 19036:1 19112:1 19179:1 19181:1 19203:1 19328:1 19335:1 19394:1 19395:1 19912:1 20128:1 20212:1 20306:1 20445:1 20627:1 20652:1 20657:1 20667:1 20852:1 21039:1 21108:1 21333:1 21496:1 21661:1 21870:1 21924:1 22172:1 22193:1 22915:1 23025:1 23126:1 23306:1 23401:1 23543:1 23725:257 23753:1 23856:1 24281:1 24284:1 24588:1 24777:1 25055:1 25327:1 25376:1 25398:1 25437:1 25710:1 25892:1 25952:1 25977:1 26314:1 26424:1 26544:1 26589:1 26729:1 26904:1 27073:1 27139:1 27347:1 27524:1 27538:1 28423:1 28488:1 29059:1 29105:2 29156:1 29405:1 29625:2 29669:1 29880:1 30467:1 30563:1 30796:1 31134:1 31214:1 31216:1 31358:1 31612:1 31667:1 31680:1 32016:1 32199:1 32244:1 32384:2 32507:1 32779:1 32853:1 33212:1 33230:1 33356:1 33721:1 33773:1 33844:1 33889:1 34047:1 34323:1 34488:2 34530:1 34810:1 34833:1 35437:1 35565:1 35622:1 36351:1 36426:1
15 129:1 216:1 404:1 451:1 578:1 595:1 677:1 733:1 1078:1 1081:1 1247:1 1272:1 1535:1 1542:1 1654:1 1819:1 1854:1 1901:2 2145:1 2398:1 2742:1 2780:1 2801:1 2811:1 2812:1 2905:1 2989:1 2990:1 3367:1 3370:1 3495:1 3513:1 3569:1 3664:1 3675:1 3866:1 3945:1 4179:1 4455:1 4498:1 4541:1 4602:1 4624:1 4821:1 5294:1 5310:1 5357:1 5590:1 5664:1 5689:1 5743:1 5865:1 5928:1 6097:1 6258:1 6288:1 6315:1 6458:1 6584:1 6605:1 6822:1 6829:1 6853:1 7061:1 7227:1 7351:1 7591:1 7726:1 7778:1 7830:1 7836:1 8099:1 8162:1 8193:1 8212:2 8286:2 8416:1 8425:1 8565:1 8662:1 8814:1 9130:1 9203:1 9289:1 9433:2 9622:1 9677:1 9789:2 9862:1 9881:4 9904:1 9948:2 9971:1 10122:1 10471:2 10523:1 10536:2 10596:1 10761:1 10860:1 11019:1 11158:1 11351:1 11779:1 11789:1 11793:1 11867:1 12015:2 12183:1 12199:1 12386:1 12413:1 12792:1 12921:1 13086:1 13146:1 13241:1 13267:1 13443:1 13490:1 13532:1 13666:1 13676:2 13899:1 13994:1 14107:1 14129:1 14208:1 14214:1 14288:2 14459:1 14590:1 14619:1 14705:1 14718:1 14894:1 14920:1 14978:1 14988:1 15071:2 15110:1 15258:1 15334:1 15425:1 15706:1 16036:1 16184:1 16233:1 16434:1 16540:1 16581:1 16586:1 16993:1 17051:1 17081:1 17151:2 17156:1 17203:1 17239:1 17469:1 17770:1 17930:1 18055:1 18340:1 18407:1 18608:1 18727:1 18827:1 18868:1 19036:1 19112:1 19179:1 19181:1 19203:1 19328:1 19335:1 19394:1 19395:1 19912:1 20128:2 20189:1 20190:1 20212:1 20306:1 20445:1 20627:1 20652:1 20657:1 20667:1 20852:1 20874:1 21039:1 21108:1 21159:1 21309:1 21333:1 21496:1 21505:1 21543:1 21595:25 21661:1 21662:1 21870:1 21924:1 22172:1 22193:1 22429:1 22674:1 22915:1 23025:1 23126:1 23306:1 23401:1 23543:1 23725:301 23753:1 23856:1 24281:1 24284:1 24588:1 24700:1 24777:1 25055:1 25327:1 25356:1 25376:1 25398:1 25437:1 25710:1 25892:1 25952:1 25977:1 26314:1 26326:1 26424:1 26544:1 26589:1 26729:1 26858:1 26904:1 27073:1 27139:1 27347:1 27524:1 27538:1 27592:1 28423:1 28488:1 28741:1 29059:1 29105:2 29156:1 29203:1 29405:1 29625:2 29669:1 29880:1 30438:1 30467:1 30537:1 30563:1 30796:2 31134:1 31214:1 31216:1 31358:1 31449:1 31456:1 31612:1 31667:1 31680:1 31722:1 32016:1 32199:1 32209:1 32244:1 32384:2 32507:2 32779:1 32853:1 33212:1 33230:1 33356:1 33721:1 33773:1 33844:1 33856:1 33889:1 34029:1 34047:1 34323:1 34488:2 34530:1 34739:1 34810:1 34833:1 35004:2 35082:1 35310:1 35437:1 35565:1 35622:1 35978:1 36351:1 36426:1
15 82:1 129:1 216:1 321:3 404:1 451:1 578:1 595:1 677:1 733:1 897:1 1042:1 1078:1 1081:1 1237:1 1247:1 1272:1 1535:1 1542:1 1554:1 1654:1 1809:1 1819:1 1854:1 1901:2 1938:1 2097:1 2145:1 2232:1 2398:1 2633:1 2742:1 2780:1 2801:1 2811:1 2812:1 2860:1 2905:1 2989:1 2990:1 3172:1 3367:1 3370:1 3495:1 3513:1 3559:1 3569:1 3664:1 3675:1 3866:1 3945:1 4179:1 4455:1 4498:1 4536:1 4541:1 4602:1 4608:1 4624:1 4821:1 5294:1 5310:1 5357:1 5590:1 5664:1 5689:1 5697:1 5743:1 5865:1 5928:1 6097:1 6257:1 6258:1 6281:1 6288:1 6315:1 6458:1 6584:1 6605:1 6822:1 6829:1 6853:1 7061:1 7227:1 7257:1 7322:1 7351:1 7591:1 7726:1 7778:1 7830:1 7836:1 7973:1 8092:1 8099:1 8162:1 8193:1 8210:1 8212:2 8286:2 8416:1 8420:1 8425:1 8558:1 8565:1 8662:1 8814:1 8929:1 9130:1 9203:1 9289:1 9433:2 9540:1 9544:1 9557:1 9622:1 9677:1 9678:1 9789:2 9813:1 9862:1 9881:4 9904:1 9948:2 9971:1 10122:1 10471:2 10523:1 10536:2 10596:1 10753:1 10761:1 10860:1 10982:1 11019:1 11115:1 11158:1 11351:1 11396:1 11779:1 11789:1 11793:1 11867:1 11913:1 12015:2 12096:1 12183:1 12199:1 12386:2 12413:1 12479:1 12792:1 12921:1 13086:1 13146:1 13241:1 13267:1 13297:1 13335:1 13378:1 13443:2 13490:1 13532:1 13593:1 13666:1 13676:2 13899:1 13994:1 14107:1 14129:1 14208:1 14214:1 14288:2 14371:1 14459:1 14503:1 14544:1 14590:1 14619:1 14705:1 14718:1 14894:1 14920:1 14978:1 14988:1 15071:2 15110:1 15211:1 15258:1 15334:1 15425:1 15706:1 15907:1 16036:1 16184:1 16233:1 16287:1 16333:1 16434:1 16540:1 16581:1 16586:1 16824:1 16857:1 16982:1 16993:1 17051:1 17081:1 17151:2 17156:1 17203:1 17239:1 17469:1 17770:1 17786:1 17930:1 18055:1 18340:1 18407:1 18536:1 18608:1 18727:1 18750:3 18827:1 18868:1 19036:1 19112:1 19129:1 19179:1 19181:1 19203:1 19328:1 19335:1 19365:1 19394:1 19395:1 19767:1 19812:1 19912:1 20022:3 20128:2 20129:1 20189:1 20190:1 20212:1 20226:3 20306:1 20353:1 20445:1 20627:1 20652:1 20657:1 20667:1 20852:1 20874:1 20877:1 21039:1 21108:1 21115:1 21159:1 21172:1 21226:1 21309:1 21333:1 21496:1 21505:1 21543:1 21595:25 21661:1 21662:1 21870:1 21924:1 22172:1 22188:1 22193:1 22429:1 22674:1 22803:1 22912:1 22915:1 23025:1 23126:1 23215:1 23306:1 23401:1 23543:1 23725:413 23753:1 23856:1 23995:1 24146:1 24281:1 24284:1 24354:1 24441:1 24588:1 24700:1 24777:1 25055:1 25112:1 25327:1 25356:1 25357:1 25376:1 25398:1 25437:1 25710:1 25782:1 25892:1 25919:1 25952:1 25977:2 26279:1 26314:1 26326:1 26424:1 26544:1 26589:1 26729:1 26858:1 26904:1 27073:1 27101:1 27139:1 27333:1 27347:1 27371:1 27524:1 27538:1 27592:1 27750:1 28079:1 28094:1 28227:1 28423:1 28488:1 28741:1 29059:1 29105:2 29156:1 29203:1 29263:1 29304:1 29405:1 29570:1 29625:2 29669:1 29859:1 29871:1 29880:1 30042:1 30128:1 30438:1 30467:1 30521:1 30537:1 30563:1 30796:2 30940:1 31060:1 31134:1 31214:1 31216:1 31358:1 31449:1 31456:1 31584:1 31612:1 31667:1 31680:1 31722:1 31836:1 31904:1 32016:1 32199:1 32209:1 32244:1 32284:1 32384:2 32507:2 32779:1 32792:1 32853:1 33070:1 33203:1 33212:1 33230:1 33356:1 33527:1 33560:1 33721:1 33773:1 33844:1 33856:1 33889:1 34029:1 34047:1 34068:1 34212:1 34219:1 34323:1 34393:1 34488:2 34530:1 34739:1 34773:1 34810:2 34833:1 34963:1 35004:2 35082:1 35310:1 35360:1 35437:1 35565:1 35622:1 35978:1 36327:1 36351:1 36426:1 36433:1 36477:1
15 82:1 129:1 216:1 300:1 321:3 404:1 451:1 578:1 595:1 649:1 677:1 733:1 897:1 1042:1 1078:1 1081:1 1237:1 1247:1 1272:1 1535:1 1542:1 1554:1 1654:1 1757:1 1809:1 1819:1 1854:1 1901:2 1938:1 2097:1 2145:1 2232:1 2398:1 2596:1 2633:1 2742:1 2780:1 2801:1 2811:1 2812:1 2860:1 2905:1 2989:1 2990:1 3041:1 3172:1 3367:1 3370:1 3495:1 3513:1 3559:1 3569:1 3664:1 3675:1 3866:1 3945:1 4179:1 4455:1 4498:1 4536:1 4541:1 4590:1 4602:1 4608:1 4624:1 4741:1 4821:1 5294:1 5310:1 5357:1 5522:1 5590:1 5607:1 5664:1 5689:1 5697:1 5743:1 5865:1 5928:1 6097:1 6257:1 6258:1 6281:1 6288:1 6315:1 6321:1 6458:1 6584:1 6605:1 6822:1 6829:1 6853:1 6921:1 7061:1 7115:1 7136:1 7202:1 7227:1 7257:1 7322:1 7351:1 7444:1 7591:1 7726:1 7778:1 7830:1 7836:1 7973:1 8092:1 8099:1 8147:1 8162:1 8193:1 8210:1 8212:2 8286:2 8416:1 8420:1 8425:1 8558:1 8565:1 8662:1 8814:1 8929:1 9130:1 9203:1 9243:1 9289:1 9433:2 9540:1 9544:1 9557:1 9622:1 9677:1 9678:1 9789:2 9813:1 9862:1 9875:1 9881:4 9904:1 9948:2 9971:1 10122:1 10471:2 10523:1 10536:2 10596:1 10753:1 10761:1 10860:1 10899:1 10982:1 11019:1 11115:1 11158:1 11238:1 11351:1 11396:1 11779:1 11789:1 11793:1 11867:1 11913:1 12015:2 12096:1 12183:1 12199:1 12386:2 12403:1 12413:1 12479:1 12792:1 12921:1 13086:1 13146:1 13241:1 13267:1 13297:1 13335:1 13376:1 13378:1 13443:2 13490:1 13532:1 13540:1 13593:1 13666:1 13676:2 13792:1 13899:1 13994:1 14107:1 14129:1 14208:1 14214:1 14288:2 14371:1 14459:1 14503:1 14544:1 14590:1 14619:1 14705:1 14718:1 14894:1 14920:1 14921:1 14978:1 14988:1 15071:2 15110:1 15211:1 15258:1 15334:1 15425:1 15706:1 15779:1 15907:1 16036:1 16136:1 16145:1 16184:1 16233:1 16287:1 16333:1 16434:1 16540:1 16581:1 16586:1 16824:1 16857:1 16982:1 16993:1 17051:1 17081:1 17151:2 17156:1 17203:1 17239:1 17469:1 17770:1 17786:1 17930:1 18055:1 18340:1 18407:1 18536:1 18608:1 18727:1 18750:3 18827:1 18868:1 19036:1 19112:1 19129:1 19179:1 19181:1 19203:1 19328:1 19335:1 19365:1 19394:1 19395:1 19767:1 19812:1 19912:1 20022:3 20128:2 20129:1 20189:1 20190:1 20212:1 20226:3 20306:1 20353:1 20445:1 20627:1 20652:1 20657:1 20667:1 20852:1 20874:1 20877:1 21039:1 21108:1 21115:1 21159:1 21172:1 21226:1 21309:1 21333:1 21496:1 21505:1 21543:1 21595:25 21661:1 21662:1 21683:1 21724:1 21870:1 21924:1 22172:1 22188:1 22193:1 22429:1 22674:1 22803:1 22912:1 22915:1 23025:1 23126:1 23215:1 23306:1 23401:1 23543:1 23725:442 23753:1 23856:1 23995:1 24000:1 24146:1 24281:1 24284:1 24354:1 24441:1 24588:1 24669:1 24700:1 24777:1 25055:1 25111:1 25112:1 25312:1 25327:1 25356:1 25357:1 25376:1 25398:1 25437:1 25710:1 25782:1 25892:1 25919:1 25952:1 25977:2 26250:1 26279:1 26314:1 26326:1 26424:1 26544:1 26589:1 26729:1 26858:1 26904:1 27073:1 27101:1 27139:1 27333:1 27347:1 27371:1 27475:1 27524:1 27538:1 27560:1 27592:1 27750:1 27772:1 28079:1 28094:1 28227:1 28423:1 28488:1 28741:1 29010:1 29059:1 29105:2 29156:1 29203:1 29263:1 29304:1 29307:1 29405:1 29570:1 29625:2 29669:1 29859:1 29871:1 29880:1 30042:1 30128:1 30438:1 30467:1 30521:1 30537:1 30563:1 30706:1 30796:2 30940:1 31060:1 31134:1 31214:1 31216:1 31358:1 31449:1 31456:1 31584:1 31612:1 31667:1 31680:1 31722:1 31836:1 31904:1 32016:1 32199:1 32209:1 32244:1 32284:1 32384:2 32507:2 32779:1 32792:1 32853:1 32879:1 33070:1 33203:1 33212:1 33230:1 33356:1 33527:1 33560:1 33721:1 33773:1 33825:1 33844:1 33856:1 33889:1 34029:1 34047:1 34060:1 34068:1 34212:1 34219:1 34323:1 34393:1 34488:2 34530:1 34739:1 34773:1 34810:2 34833:1 34963:1 34966:1 35004:2 35082:1 35310:1 35360:1 35437:1 35565:1 35622:1 35684:1 35978:1 36327:1 36351:1 36426:1 36433:1 36438:1 36477:1
15 82:1 129:1 216:1 300:1 321:3 404:1 451:1 578:1 595:1 649:1 677:1 726:1 733:1 776:1 897:1 1042:1 1078:1 1081:1 1135:1 1237:1 1247:1 1272:1 1450:1 1535:1 1542:1 1554:1 1654:1 1757:2 1809:1 1819:1 1854:1 1901:2 1938:1 2097:1 2145:1 2232:1 2398:1 2596:1 2633:1 2742:1 2780:1 2789:1 2801:1 2811:1 2812:1 2860:1 2905:1 2989:1 2990:1 3041:1 3172:1 3367:1 3370:1 3495:1 3513:1 3559:1 3569:1 3576:1 3664:1 3675:1 3866:1 3945:1 4148:1 4179:1 4261:1 4455:1 4498:1 4536:1 4541:1 4590:1 4602:1 4608:1 4624:1 4741:1 4821:1 5177:1 5294:1 5310:1 5357:1 5522:1 5590:1 5607:1 5664:1 5689:2 5697:1 5743:1 5855:1 5865:1 5928:1 6014:1 6097:1 6257:1 6258:1 6273:1 6281:1 6288:1 6315:1 6321:1 6458:1 6584:1 6605:1 6822:1 6829:1 6853:1 6921:1 7061:1 7115:1 7136:1 7202:1 7227:1 7257:1 7319:1 7322:1 7351:1 7444:1 7591:1 7726:1 7778:1 7830:2 7836:1 7973:1 8088:1 8092:1 8099:1 8147:1 8162:1 8193:1 8210:1 8212:2 8269:1 8286:2 8416:1 8420:2 8425:1 8558:1 8565:1 8662:1 8814:1 8929:1 8959:1 9061:1 9130:1 9203:1 9243:1 9289:1 9433:2 9466:1 9540:1 9544:1 9557:1 9622:1 9677:1 9678:1 9789:2 9813:1 9862:1 9875:1 9881:5 9904:1 9948:2 9971:1 10122:1 10471:2 10523:1 10532:1 10536:2 10596:1 10753:1 10761:1 10860:1 10899:1 10982:1 11019:1 11115:1 11158:1 11238:1 11351:1 11396:2 11779:1 11789:1 11793:1 11867:1 11913:1 12015:2 12096:1 12183:1 12199:1 12386:2 12403:1 12413:1 12479:1 12792:1 12921:1 12947:1 13086:1 13146:1 13241:1 13267:1 13297:1 13335:1 13376:1 13378:1 13443:2 13490:1 13532:1 13540:2 13593:1 13666:1 13676:2 13792:1 13899:1 13994:1 14107:1 14129:1 14195:1 14208:1 14214:1 14288:2 14371:1 14459:1 14503:1 14544:1 14590:1 14619:1 14640:1 14705:1 14718:1 14894:1 14920:1 14921:1 14978:1 14988:1 15071:2 15110:1 15211:1 15258:1 15334:1 15425:1 15563:1 15594:1 15706:1 15779:1 15907:1 16036:1 16136:1 16145:1 16184:1 16233:1 16287:2 16333:1 16434:1 16540:1 16581:1 16586:1 16802:1 16824:1 16857:1 16982:2 16993:1 16994:1 17051:1 17081:2 17151:2 17156:1 17203:1 17239:1 17469:1 17561:1 17770:1 17786:1 17930:1 18005:1 18055:1 18340:1 18407:1 18536:1 18608:1 18727:1 18750:3 18827:1 18868:1 19018:1 19036:1 19112:1 19129:1 19179:1 19181:1 19203:1 19328:1 19335:1 19365:1 19394:1 19395:1 19659:1 19767:1 19812:1 19912:1 20022:3 20128:2 20129:1 20189:1 20190:1 20212:1 20226:3 20306:2 20353:1 20445:1 20627:1 20652:1 20657:1 20667:1 20852:1 20874:1 20877:1 21039:1 21108:1 21115:1 21159:1 21172:1 21226:1 21309:1 21333:1 21378:1 21496:1 21505:1 21543:1 21595:25 21661:1 21662:1 21683:1 21724:1 21870:1 21924:1 22172:1 22188:1 22193:1 22429:1 22674:1 22803:1 22912:1 22915:1 23025:1 23126:1 23215:1 23306:1 23401:1 23543:1 23555:1 23725:506 23753:1 23856:1 23995:1 24000:1 24001:1 24146:1 24281:1 24284:1 24354:1 24441:1 24489:1 24588:1 24669:1 24700:1 24777:1 24805:1 25055:1 25111:1 25112:1 25312:1 25327:1 25356:1 25357:2 25376:1 25398:1 25437:1 25552:1 25710:1 25769:1 25782:1 25892:1 25896:1 25919:1 25952:1 25977:2 26250:2 26279:1 26308:1 26314:1 26326:1 26398:1 26424:1 26529:1 26544:1 26560:1 26562:1 26589:1 26729:1 26858:1 26904:1 27073:1 27101:1 27139:1 27333:1 27347:1 27371:1 27475:1 27524:1 27538:1 27560:1 27592:1 27750:1 27772:1 28079:1 28094:2 28227:1 28423:1 28488:1 28741:1 29010:1 29059:1 29105:2 29156:1 29187:1 29203:1 29263:1 29304:1 29307:1 29405:1 29506:1 29570:1 29625:2 29669:1 29762:1 29859:1 29871:1 29880:1 30042:1 30128:1 30426:1 30430:1 30438:1 30467:1 30521:1 30537:1 30563:1 30668:1 30706:1 30796:2 30923:1 30926:1 30940:1 31060:1 31134:1 31201:1 31214:1 31216:1 31358:1 31449:1 31456:1 31584:1 31606:1 31612:1 31667:1 31680:1 31722:1 31836:1 31904:1 32016:1 32178:1 32199:1 32209:1 32244:1 32284:1 32299:1 32384:2 32492:1 32507:2 32779:1 32792:1 32853:1 32879:1 33070:1 33203:1 33212:1 33230:1 33356:1 33406:1 33527:1 33533:1 33560:1 33712:1 33721:1 33773:1 33825:1 33844:1 33856:1 33889:1 34029:1 34047:1 34060:1 34068:1 34212:1 34219:1 34323:1 34393:1 34488:2 34530:1 34739:1 34773:1 34810:2 34833:1 34963:1 34966:1 35001:1 35004:2 35082:1 35310:1 35360:1 35437:1 35565:1 35622:1 35684:1 35978:1 36235:1 36327:1 36340:1 36342:1 36351:1 36426:1 36433:1 36438:1 36477:1
15 82:1 129:1 216:1 300:1 321:3 404:1 451:1 578:1 595:1 649:1 677:1 692:1 726:1 733:1 776:1 897:1 1042:1 1071:1 1078:1 1081:1 1099:1 1135:1 1237:1 1247:1 1272:1 1450:1 1535:1 1542:1 1554:1 1654:1 1737:1 1757:2 1809:1 1819:1 1854:1 1901:2 1919:2 1938:1 2097:1 2145:1 2232:1 2234:2 2398:1 2596:1 2633:1 2742:1 2780:1 2789:1 2801:1 2811:1 2812:1 2860:1 2905:1 2938:1 2989:1 2990:1 3041:1 3049:1 3172:1 3214:1 3367:1 3370:1 3495:1 3513:1 3559:1 3569:1 3576:1 3664:1 3675:1 3866:1 3945:1 4148:1 4179:1 4261:1 4264:1 4455:1 4463:1 4498:1 4536:1 4541:1 4590:1 4602:1 4608:1 4624:1 4741:1 4774:1 4821:1 5177:1 5232:1 5287:1 5294:1 5310:1 5357:1 5519:1 5522:1 5590:1 5607:1 5664:1 5689:2 5697:1 5743:1 5855:1 5865:1 5885:1 5925:1 5928:1 6014:1 6097:1 6140:1 6257:1 6258:1 6273:1 6281:1 6288:1 6315:1 6321:1 6449:1 6458:1 6543:1 6584:1 6605:1 6630:2 6802:1 6822:1 6829:1 6853:1 6921:1 7061:1 7115:1 7136:1 7202:1 7227:1 7257:1 7319:1 7322:1 7351:1 7444:1 7591:1 7726:1 7778:1 7830:2 7836:1 7973:1 8088:1 8092:1 8099:1 8147:1 8162:1 8193:1 8210:1 8212:2 8269:1 8286:2 8371:1 8416:1 8420:2 8425:1 8558:1 8565:1 8615:1 8662:1 8814:1 8929:1 8959:1 8966:1 9021:2 9061:1 9130:1 9203:1 9243:1 9289:1 9433:2 9466:1 9539:1 9540:1 9544:1 9557:1 9622:1 9677:1 9678:1 9680:1 9789:2 9813:1 9862:1 9875:1 9881:5 9904:1 9948:2 9971:1 10122:1 10279:1 10387:1 10419:1 10471:3 10523:1 10532:1 10536:2 10596:1 10753:1 10761:1 10860:1 10899:1 10982:1 10983:1 11019:1 11091:1 11115:1 11158:1 11208:1 11216:1 11238:1 11351:1 11396:2 11779:1 11789:1 11793:1 11867:1 11913:1 12015:2 12096:1 12183:1 12199:1 12216:1 12386:2 12403:1 12413:1 12479:1 12792:1 12921:1 12947:1 13086:1 13115:1 13135:1 13146:1 13241:1 13267:1 13297:1 13335:1 13376:1 13378:1 13443:2 13490:1 13532:1 13540:2 13593:1 13666:1 13676:2 13792:1 13844:1 13899:1 13956:1 13994:1 14107:1 14129:1 14195:1 14208:1 14214:1 14288:2 14371:1 14459:1 14503:1 14544:1 14590:1 14619:1 14621:1 14640:1 14705:1 14718:1 14894:1 14920:1 14921:1 14978:1 14988:1 15071:2 15110:1 15211:1 15258:1 15334:1 15380:1 15425:1 15563:1 15594:1 15646:1 15706:1 15779:1 15907:1 16036:1 16136:1 16145:1 16184:1 16233:1 16287:2 16333:1 16434:1 16540:1 16581:1 16586:1 16802:2 16824:1 16857:1 16879:2 16895:1 16982:2 16993:1 16994:1 17051:1 17081:2 17151:2 17156:1 17203:1 17239:1 17469:1 17561:1 17770:1 17786:1 17790:1 17930:1 18005:1 18055:1 18340:1 18407:1 18536:1 18608:1 18718:1 18727:1 18750:4 18827:1 18868:1 18989:1 19018:1 19036:1 19112:1 19129:1 19156:1 19179:1 19181:1 19203:1 19328:1 19335:1 19365:1 19394:1 19395:1 19659:1 19767:1 19812:1 19912:1 19924:2 20022:3 20128:2 20129:2 20170:1 20189:1 20190:1 20200:1 20212:1 20226:3 20306:2 20353:1 20445:1 20627:1 20652:1 20657:2 20667:1 20686:1 20852:1 20857:2 20874:1 20877:1 21039:1 21108:1 21115:1 21159:1 21172:1 21226:1 21309:1 21311:1 21333:1 21378:1 21496:1 21505:1 21543:1 21595:25 21661:1 21662:1 21683:1 21724:1 21749:1 21870:1 21924:1 22126:1 22170:1 22172:1 22179:1 22188:1 22193:1 22196:1 22282:1 22414:2 22429:1 22497:1 22674:1 22803:1 22912:1 22915:1 23025:1 23126:1 23215:1 23306:1 23401:1 23450:1 23543:1 23555:1 23725:664 23753:1 23856:1 23995:1 24000:1 24001:1 24146:1 24179:1 24281:1 24284:1 24354:1 24441:1 24489:1 24588:1 24669:1 24700:1 24777:1 24805:1 24848:1 25055:1 25111:1 25112:1 25265:1 25312:1 25327:1 25328:1 25356:1 25357:2 25376:1 25398:1 25437:1 25552:1 25710:1 25769:1 25782:1 25844:1 25892:1 25896:1 25919:1 25952:1 25977:2 26124:1 26156:1 26250:2 26279:1 26308:1 26314:1 26326:1 26398:1 26424:1 26529:1 26537:1 26544:1 26560:1 26562:1 26589:1 26681:1 26729:1 26846:1 26858:1 26904:1 27073:1 27101:1 27139:1 27333:1 27347:1 27371:1 27475:1 27524:1 27538:1 27560:1 27592:1 27750:1 27772:1 28002:1 28079:1 28094:3 28226:1 28227:1 28423:1 28488:1 28741:1 28998:1 29010:1 29032:1 29059:1 29091:1 29105:2 29141:1 29156:1 29187:1 29203:1 29263:1 29304:1 29307:1 29405:1 29451:1 29506:1 29555:1 29570:1 29625:2 29669:1 29686:1 29762:1 29832:1 29859:1 29871:1 29880:1 30042:1 30128:1 30266:1 30301:1 30426:1 30430:1 30438:1 30467:1 30521:1 30537:1 30563:1 30668:1 30681:1 30706:1 30796:2 30893:1 30923:1 30926:1 30940:1 31060:1 31134:1 31201:1 31214:1 31216:1 31355:2 31358:1 31449:1 31456:1 31584:1 31606:1 31612:1 31667:1 31680:1 31722:1 31835:1 31836:1 31904:1 32016:1 32178:1 32199:1 32209:1 32230:1 32244:1 32284:1 32299:1 32331:1 32384:2 32414:1 32492:1 32507:2 32779:1 32792:1 32853:1 32879:1 33020:1 33070:1 33203:1 33212:1 33215:1 33230:1 33356:1 33406:1 33527:1 33533:1 33560:1 33712:1 33721:1 33773:1 33825:1 33844:1 33856:1 33889:1 33925:1 34029:1 34047:1 34060:1 34067:1 34068:1 34212:1 34219:1 34323:1 34393:1 34479:1 34488:2 34530:1 34739:1 34773:1 34810:2 34833:1 34963:1 34966:1 35001:1 35004:2 35082:1 35310:1 35360:1 35437:1 35565:1 35622:1 35684:1 35714:1 35978:1 36010:1 36235:1 36327:1 36340:1 36342:1 36351:1 36426:1 36433:1 36438:1 36477:1 36482:1
15 82:1 129:1 193:1 216:1 300:1 321:3 404:1 451:1 551:1 578:1 595:2 649:1 677:1 692:1 707:1 726:1 733:1 745:1 773:2 776:1 897:1 1042:1 1071:1 1078:2 1081:1 1099:1 1135:1 1237:1 1247:1 1272:1 1274:1 1450:1 1535:1 1542:1 1554:1 1606:1 1654:1 1737:1 1746:1 1757:2 1809:1 1819:1 1854:1 1901:2 1919:2 1938:1 2097:1 2145:1 2232:1 2234:2 2301:1 2398:1 2596:1 2633:1 2742:1 2780:1 2789:1 2801:1 2811:1 2812:1 2860:1 2905:1 2938:1 2989:1 2990:1 3041:1 3049:1 3172:1 3214:1 3367:1 3370:1 3495:1 3513:1 3559:1 3569:1 3576:1 3664:1 3675:1 3866:1 3945:1 4148:1 4161:1 4179:1 4261:1 4264:1 4455:1 4463:1 4498:1 4536:1 4541:1 4590:1 4602:1 4608:1 4624:1 4688:1 4741:1 4774:1 4821:1 5177:1 5232:1 5287:1 5294:2 5310:1 5357:1 5366:1 5378:1 5411:1 5519:1 5522:1 5531:1 5590:1 5607:1 5664:1 5689:2 5697:1 5743:1 5855:1 5865:1 5866:2 5885:1 5925:1 5928:2 6014:1 6097:1 6140:1 6257:1 6258:1 6273:1 6281:1 6288:1 6315:1 6321:1 6449:1 6458:2 6543:1 6584:1 6605:1 6630:3 6747:1 6802:1 6822:1 6829:1 6853:1 6921:1 7061:1 7115:1 7136:1 7202:1 7227:1 7257:1 7319:1 7322:1 7351:2 7444:1 7591:1 7627:2 7726:1 7778:1 7830:2 7836:1 7973:1 8065:1 8088:1 8092:1 8099:1 8147:1 8162:1 8193:1 8210:1 8212:2 8223:1 8233:1 8269:1 8286:2 8371:1 8416:1 8420:2 8425:1 8558:1 8565:1 8615:1 8661:1 8662:1 8814:1 8929:1 8959:1 8966:1 9021:2 9061:1 9130:1 9203:1 9243:1 9289:1 9433:2 9466:1 9539:1 9540:1 9544:1 9557:1 9622:1 9677:1 9678:1 9680:1 9789:2 9813:1 9862:1 9875:1 9881:5 9904:1 9927:1 9948:2 9956:1 9971:1 10122:1 10239:1 10279:1 10387:1 10419:1 10471:4 10523:1 10532:1 10536:2 10596:1 10753:1 10761:1 10860:1 10899:1 10982:1 10983:1 11019:1 11091:1 11115:1 11158:1 11166:2 11208:1 11216:1 11238:1 11351:1 11396:2 11611:1 11673:1 11725:1 11779:1 11789:1 11793:1 11867:1 11913:1 12015:2 12078:1 12092:1 12096:1 12183:1 12199:1 12216:1 12386:2 12403:1 12413:1 12479:1 12786:1 12792:1 12921:1 12947:1 13023:1 13086:1 13115:1 13135:1 13146:1 13241:1 13267:1 13297:1 13335:1 13376:1 13378:1 13384:1 13443:2 13490:1 13532:1 13540:2 13593:1 13642:1 13666:1 13676:2 13792:1 13844:1 13899:1 13956:2 13982:1 13994:1 14033:1 14107:1 14129:2 14195:1 14208:1 14210:1 14214:1 14288:2 14371:1 14397:1 14437:1 14459:1 14503:1 14544:1 14590:1 14619:1 14621:1 14640:1 14705:1 14718:1 14894:1 14920:1 14921:1 14978:1 14988:1 15071:2 15110:2 15211:1 15258:1 15334:2 15380:1 15425:1 15563:1 15584:1 15594:1 15646:1 15706:1 15779:1 15907:1 15971:1 16036:1 16136:1 16145:1 16184:1 16213:1 16233:1 16287:3 16333:1 16434:1 16540:1 16581:1 16586:1 16802:2 16824:1 16857:1 16879:2 16895:1 16982:2 16993:1 16994:1 17021:1 17042:1 17051:1 17081:2 17151:2 17156:1 17203:1 17239:1 17278:2 17469:1 17561:1 17770:1 17786:1 17790:1 17930:1 18005:1 18055:1 18340:1 18407:1 18467:1 18536:1 18608:1 18718:1 18727:1 18742:2 18750:4 18827:1 18868:1 18989:1 19018:1 19036:1 19112:1 19129:1 19156:1 19179:1 19181:1 19203:1 19328:1 19335:1 19365:1 19394:1 19395:1 19589:1 19659:1 19767:1 19812:1 19852:1 19912:1 19924:2 20022:3 20128:2 20129:2 20170:1 20189:1 20190:1 20200:1 20212:1 20226:3 20234:1 20303:1 20306:2 20353:1 20434:1 20445:1 20627:1 20652:1 20657:2 20667:1 20672:1 20686:1 20852:1 20857:2 20874:1 20877:1 21039:1 21108:1 21115:1 21139:1 21159:1 21172:1 21226:1 21309:1 21311:1 21333:1 21378:1 21496:1 21505:1 21515:1 21543:1 21595:25 21661:1 21662:1 21683:1 21724:1 21749:1 21870:1 21924:1 22126:1 22170:1 22172:1 22179:1 22188:1 22193:1 22196:1 22281:2 22282:1 22414:3 22429:2 22497:1 22674:1 22803:1 22912:1 22915:1 23025:2 23126:1 23215:1 23297:1 23306:1 23401:2 23450:1 23543:1 23555:1 23725:808 23753:1 23856:1 23978:1 23995:1 24000:1 24001:1 24146:1 24150:1 24179:1 24204:1 24277:1 24281:1 24284:1 24354:1 24441:1 24489:1 24531:1 24588:1 24669:1 24700:1 24777:1 24805:1 24848:1 25055:1 25111:1 25112:1 25265:1 25312:1 25327:1 25328:1 25356:1 25357:2 25376:1 25398:1 25437:1 25552:1 25710:1 25769:1 25782:1 25844:1 25892:1 25896:1 25919:1 25952:1 25977:2 26050:1 26124:1 26156:1 26250:2 26279:1 26308:1 26314:1 26326:1 26398:1 26424:1 26529:1 26537:1 26544:1 26560:1 26562:1 26589:1 26681:1 26729:2 26846:1 26858:1 26904:1 27073:1 27101:1 27139:1 27333:1 27347:1 27371:1 27475:1 27524:1 27538:1 27560:1 27592:1 27750:1 27772:1 28002:1 28045:1 28069:1 28079:1 28094:3 28226:1 28227:1 28423:1 28488:1 28741:1 28884:1 28998:1 29010:1 29032:1 29059:1 29091:1 29105:2 29141:1 29156:1 29187:1 29203:1 29263:1 29304:1 29307:1 29405:1 29451:1 29506:1 29553:1 29555:1 29570:1 29625:2 29669:1 29686:1 29762:1 29832:1 29859:1 29871:1 29880:1 30036:1 30042:1 30128:1 30249:2 30266:2 30301:1 30426:1 30430:1 30438:1 30467:1 30521:1 30537:1 30563:1 30668:1 30681:1 30706:1 30711:2 30796:2 30893:1 30923:1 30926:1 30940:1 31060:1 31134:1 31201:1 31214:1 31216:1 31355:2 31358:1 31396:1 31449:1 31456:1 31584:1 31598:1 31606:1 31612:1 31667:1 31680:1 31722:1 31835:1 31836:1 31904:1 32016:1 32178:1 32199:1 32209:1 32230:1 32244:1 32284:1 32299:1 32331:1 32384:2 32414:1 32492:1 32507:2 32779:1 32792:1 32853:1 32874:1 32879:1 32880:1 33020:1 33070:1 33203:1 33212:1 33215:1 33230:1 33356:1 33399:1 33400:1 33406:1 33527:1 33533:1 33560:1 33620:1 33712:1 33721:1 33773:1 33825:1 33844:1 33856:1 33889:1 33925:1 34029:1 34047:1 34059:1 34060:1 34067:1 34068:1 34200:1 34212:1 34219:1 34323:1 34393:1 34479:1 34488:2 34530:1 34624:2 34739:1 34773:1 34810:2 34833:1 34919:1 34963:1 34966:1 35001:1 35004:2 35082:1 35117:1 35310:1 35360:1 35437:2 35565:1 35622:1 35649:1 35675:1 35684:1 35714:1 35978:1 36010:1 36158:1 36202:1 36235:1 36327:1 36329:1 36340:1 36342:1 36351:1 36426:2 36433:1 36438:1 36477:1 36482:1
15 82:1 129:1 193:1 216:1 300:1 321:3 404:1 451:1 551:1 578:1 595:2 649:1 677:1 690:1 692:1 707:1 726:1 733:1 745:1 773:2 776:1 897:1 1042:1 1071:1 1078:2 1081:1 1099:1 1135:1 1237:1 1247:1 1272:1 1274:1 1450:1 1535:1 1542:1 1554:1 1606:1 1654:1 1737:1 1746:2 1757:2 1809:1 1819:1 1854:1 1901:3 1919:2 1938:1 2097:1 2145:1 2232:1 2234:2 2301:1 2398:1 2596:1 2633:1 2742:1 2780:1 2789:1 2801:1 2811:1 2812:1 2860:1 2905:1 2938:1 2989:1 2990:1 3041:1 3049:1 3172:1 3214:1 3367:1 3370:1 3495:1 3513:1 3559:1 3569:1 3576:1 3664:1 3675:1 3866:1 3945:1 4148:1 4161:1 4179:1 4261:1 4264:1 4455:1 4463:1 4498:1 4536:1 4541:1 4590:1 4602:1 4608:1 4624:1 4688:1 4741:1 4774:1 4821:2 5177:1 5232:1 5287:1 5294:2 5310:1 5357:1 5366:1 5378:2 5411:1 5489:1 5519:1 5522:1 5531:1 5590:1 5607:1 5664:1 5689:2 5697:1 5730:1 5743:1 5855:1 5865:1 5866:2 5885:1 5925:1 5928:2 6014:1 6097:1 6140:1 6257:1 6258:1 6273:1 6281:1 6288:1 6315:1 6321:1 6449:1 6458:2 6543:1 6584:1 6605:1 6630:3 6747:1 6772:1 6802:1 6822:1 6829:1 6853:1 6921:1 7061:1 7115:1 7136:1 7202:1 7227:1 7257:1 7319:1 7322:1 7351:2 7444:1 7591:1 7627:2 7726:1 7778:1 7830:2 7836:1 7973:1 8065:1 8088:1 8092:1 8099:1 8147:1 8162:1 8193:1 8210:1 8212:2 8223:1 8233:2 8269:1 8286:2 8371:1 8416:1 8420:2 8425:1 8527:1 8558:1 8565:1 8615:1 8661:1 8662:1 8762:1 8814:1 8929:1 8959:1 8966:1 9021:2 9061:1 9130:1 9203:1 9243:1 9289:1 9433:2 9466:1 9539:1 9540:1 9544:1 9557:1 9622:1 9677:1 9678:1 9680:1 9789:2 9813:1 9862:1 9875:1 9881:5 9904:1 9927:1 9948:2 9956:1 9971:1 10122:1 10239:1 10279:1 10387:1 10419:1 10471:4 10523:1 10532:1 10536:2 10596:1 10647:1 10753:1 10761:1 10860:1 10899:1 10982:1 10983:1 11019:1 11091:1 11115:1 11158:1 11166:2 11208:1 11216:1 11238:1 11351:1 11396:2 11611:1 11673:1 11685:1 11725:1 11779:1 11789:1 11793:1 11867:1 11913:1 12015:2 12078:1 12092:2 12096:1 12183:1 12199:1 12216:1 12386:2 12403:1 12413:1 12479:1 12786:1 12792:1 12921:1 12947:1 13023:1 13086:1 13115:1 13126:1 13135:1 13146:1 13241:1 13267:1 13297:1 13335:1 13376:1 13378:1 13384:1 13443:2 13490:1 13532:1 13540:2 13593:1 13642:1 13666:1 13676:2 13792:1 13844:1 13899:1 13956:2 13982:1 13994:1 14033:1 14107:1 14129:2 14195:1 14208:1 14210:2 14214:1 14288:2 14371:1 14397:1 14437:1 14459:1 14472:1 14503:1 14544:1 14590:1 14619:1 14621:1 14640:1 14705:1 14718:1 14894:2 14920:1 14921:1 14978:1 14988:1 15071:2 15110:2 15211:1 15258:1 15334:2 15380:1 15425:1 15472:1 15563:1 15584:1 15594:1 15624:1 15646:1 15706:1 15779:1 15823:1 15907:1 15971:1 16036:1 16136:1 16145:1 16184:1 16213:1 16233:1 16253:1 16287:3 16333:1 16434:1 16540:1 16581:1 16586:1 16802:2 16824:1 16857:1 16879:2 16895:1 16982:2 16993:1 16994:1 17021:1 17042:1 17051:1 17081:2 17151:2 17156:1 17203:1 17239:1 17278:2 17469:1 17561:1 17770:1 17786:1 17790:1 17930:1 18005:1 18055:1 18340:1 18407:1 18467:1 18536:1 18608:1 18718:1 18727:1 18742:2 18750:4 18827:1 18868:1 18989:1 19018:1 19036:2 19112:1 19129:1 19156:1 19179:2 19181:1 19203:1 19328:1 19335:1 19365:1 19394:1 19395:1 19589:1 19659:1 19767:1 19812:1 19852:1 19912:1 19924:2 20022:3 20128:2 20129:2 20170:1 20189:1 20190:1 20200:1 20212:1 20226:3 20234:1 20303:1 20306:2 20343:1 20353:1 20434:1 20445:1 20627:1 20652:1 20657:2 20667:1 20672:1 20686:1 20852:1 20857:2 20874:1 20877:1 20973:1 21039:1 21108:1 21115:1 21139:1 21159:1 21172:1 21226:1 21309:1 21311:1 21333:1 21378:1 21496:1 21505:1 21515:1 21543:1 21595:25 21661:1 21662:1 21683:1 21724:1 21749:1 21870:1 21924:1 22126:1 22170:1 22172:1 22179:1 22188:1 22193:1 22196:1 22281:2 22282:1 22414:3 22429:3 22497:1 22674:1 22803:1 22912:1 22915:1 23025:2 23126:1 23215:1 23297:2 23306:1 23401:2 23450:1 23543:1 23555:1 23725:875 23753:1 23856:1 23978:1 23995:1 24000:1 24001:1 24146:1 24150:1 24179:1 24204:1 24277:1 24281:1 24284:1 24354:1 24441:1 24489:1 24531:1 24588:1 24669:1 24700:1 24777:1 24805:1 24848:1 25055:1 25111:1 25112:1 25265:1 25312:1 25327:1 25328:1 25356:1 25357:2 25376:1 25398:1 25437:1 25552:1 25710:2 25769:1 25782:1 25844:1 25892:1 25896:1 25919:1 25952:1 25977:2 26050:1 26124:1 26156:1 26250:2 26279:1 26308:1 26314:1 26326:1 26398:1 26424:1 26529:1 26537:1 26544:1 26560:1 26562:1 26589:1 26681:1 26729:2 26808:1 26846:1 26858:1 26904:1 27073:1 27101:1 27139:1 27333:1 27347:1 27371:1 27396:1 27475:1 27524:1 27538:1 27560:1 27592:1 27750:1 27772:1 28002:1 28045:1 28069:1 28079:1 28094:3 28226:1 28227:1 28423:1 28488:1 28741:1 28884:1 28998:1 29010:1 29032:1 29058:1 29059:1 29091:1 29105:2 29141:1 29156:1 29187:1 29203:1 29263:1 29304:1 29307:1 29322:1 29405:1 29451:1 29506:1 29553:1 29555:1 29570:1 29625:2 29669:1 29686:1 29762:1 29832:1 29859:1 29871:1 29880:1 30036:1 30042:1 30128:1 30249:2 30266:2 30301:1 30426:1 30430:1 30438:1 30467:1 30521:1 30537:1 30563:1 30640:1 30663:1 30668:1 30681:1 30706:1 30711:2 30796:2 30893:1 30923:1 30926:1 30940:1 31060:1 31134:1 31201:1 31214:1 31216:1 31355:2 31358:1 31396:1 31449:1 31456:1 31584:1 31598:1 31606:1 31612:1 31667:1 31680:1 31722:1 31835:1 31836:1 31904:1 32016:1 32178:1 32199:1 32209:1 32230:1 32244:1 32284:1 32299:1 32331:1 32384:2 32414:1 32492:1 32507:2 32779:1 32792:1 32853:1 32874:2 32879:1 32880:1 33020:1 33070:1 33118:1 33203:1 33212:1 33215:1 33230:1 33356:1 33399:1 33400:1 33406:1 33527:1 33533:1 33560:1 33620:1 33712:1 33721:1 33773:1 33825:1 33844:1 33856:1 33889:1 33925:1 34029:1 34047:1 34059:1 34060:1 34067:1 34068:1 34200:1 34212:1 34219:1 34323:1 34393:1 34479:1 34488:2 34530:1 34624:2 34739:1 34773:1 34810:2 34833:1 34919:1 34963:1 34966:1 35001:1 35004:2 35082:1 35117:2 35310:1 35360:1 35382:1 35437:3 35515:1 35565:2 35622:1 35649:1 35675:1 35684:1 35714:1 35864:1 35978:1 36010:1 36158:1 36202:1 36235:1 36327:1 36329:1 36340:1 36342:1 36351:1 36426:2 36433:1 36438:1 36477:1 36482:1
15 82:1 129:1 193:1 216:1 300:1 321:3 371:1 404:1 451:1 456:1 551:1 578:1 595:2 649:1 677:1 690:1 692:1 707:1 726:2 730:1 733:1 745:1 759:1 773:2 776:1 897:1 1042:1 1071:1 1075:1 1078:2 1081:1 1099:1 1135:1 1237:1 1247:1 1272:1 1274:1 1348:1 1396:1 1423:1 1450:1 1473:1 1525:2 1535:1 1542:1 1554:1 1606:1 1634:1 1654:1 1737:1 1746:2 1757:2 1807:2 1809:1 1819:1 1854:1 1901:3 1913:1 1919:2 1938:1 2006:1 2041:1 2097:1 2145:1 2232:1 2234:2 2239:2 2242:1 2301:1 2398:1 2596:1 2633:1 2684:1 2742:1 2780:1 2789:1 2801:1 2805:1 2811:1 2812:1 2840:1 2860:1 2905:1 2938:1 2989:1 2990:1 3041:1 3049:1 3172:1 3214:1 3367:1 3370:1 3495:1 3513:1 3547:1 3559:1 3569:2 3576:1 3615:1 3664:1 3675:1 3866:1 3945:1 4148:1 4161:1 4179:1 4261:1 4264:1 4439:1 4455:1 4463:1 4498:1 4536:1 4541:1 4553:1 4590:1 4602:1 4608:1 4624:1 4688:1 4741:1 4745:1 4774:1 4821:2 5063:1 5177:1 5232:1 5255:2 5287:1 5294:2 5310:1 5357:1 5366:1 5378:2 5411:1 5489:1 5519:1 5522:1 5531:1 5590:1 5607:1 5664:1 5689:2 5697:1 5718:1 5730:1 5743:1 5838:1 5855:1 5865:1 5866:2 5885:1 5925:1 5928:2 6014:1 6097:1 6140:1 6237:1 6257:1 6258:1 6273:1 6281:1 6288:1 6315:1 6321:1 6449:1 6458:2 6529:1 6543:1 6584:1 6605:1 6630:3 6747:1 6772:2 6802:1 6822:1 6829:1 6853:1 6921:1 7061:1 7115:1 7136:1 7202:1 7227:1 7257:1 7319:1 7321:1 7322:1 7351:2 7444:1 7591:1 7627:2 7726:1 7749:1 7778:1 7830:2 7836:1 7973:1 8062:1 8065:1 8086:1 8088:1 8092:1 8099:1 8147:1 8162:1 8193:1 8210:1 8212:2 8223:1 8233:2 8269:1 8286:2 8371:1 8416:1 8420:2 8425:1 8457:1 8477:1 8527:1 8557:1 8558:1 8565:1 8615:1 8661:1 8662:1 8757:1 8762:2 8814:1 8897:1 8929:1 8959:1 8966:1 9021:2 9061:2 9130:1 9203:1 9243:1 9289:1 9433:2 9466:1 9535:2 9539:1 9540:1 9544:1 9557:1 9622:1 9658:1 9677:2 9678:1 9680:1 9754:1 9789:2 9813:1 9850:1 9858:1 9862:1 9875:1 9881:5 9904:2 9927:1 9948:2 9956:1 9971:1 10122:1 10239:1 10279:1 10292:1 10387:1 10402:1 10419:1 10471:5 10523:1 10532:1 10536:2 10547:1 10596:1 10630:1 10647:1 10753:1 10761:1 10860:1 10899:1 10976:1 10982:1 10983:1 11019:1 11091:1 11115:1 11158:1 11166:2 11208:1 11216:1 11238:1 11311:1 11351:1 11396:2 11611:1 11673:1 11685:1 11725:1 11733:1 11779:1 11789:1 11793:1 11824:1 11867:1 11913:2 11999:1 12015:2 12078:1 12092:2 12096:1 12153:1 12183:1 12199:1 12216:1 12386:2 12403:1 12413:1 12479:1 12645:1 12769:1 12786:1 12792:1 12827:1 12847:1 12921:1 12947:1 12974:1 12985:1 13023:1 13086:1 13115:1 13126:1 13135:1 13137:1 13146:1 13241:1 13267:1 13297:1 13335:1 13376:1 13378:1 13384:1 13420:1 13443:2 13490:1 13532:1 13540:2 13593:1 13642:1 13666:1 13676:2 13792:1 13844:1 13899:1 13956:2 13982:1 13994:1 14033:1 14107:1 14129:2 14166:1 14195:1 14208:1 14210:2 14214:1 14288:2 14371:1 14397:1 14437:1 14459:1 14472:2 14503:1 14544:1 14590:1 14619:1 14621:1 14638:1 14640:1 14705:1 14718:1 14841:1 14894:2 14920:1 14921:1 14978:1 14988:1 15071:2 15074:1 15110:2 15211:1 15258:1 15334:2 15344:1 15380:1 15425:1 15472:2 15503:1 15517:1 15563:1 15584:1 15594:1 15624:1 15646:1 15706:1 15779:1 15823:1 15907:1 15971:1 16036:1 16045:1 16136:1 16145:1 16184:1 16213:1 16233:1 16253:1 16287:3 16333:2 16434:1 16540:1 16559:1 16581:1 16586:1 16762:1 16802:2 16824:1 16836:1 16857:1 16879:3 16895:1 16899:1 16910:1 16982:2 16993:1 16994:1 17021:1 17042:1 17051:1 17081:2 17151:2 17156:1 17203:1 17239:1 17278:2 17469:1 17561:1 17585:1 17770:1 17786:1 17790:1 17930:1 17950:1 18005:1 18055:1 18248:1 18314:1 18340:1 18407:1 18467:1 18513:1 18536:1 18608:1 18664:1 18718:1 18727:1 18742:2 18750:6 18827:1 18868:1 18989:1 19018:1 19036:3 19112:1 19129:1 19156:1 19179:3 19181:1 19203:1 19328:1 19335:1 19365:1 19394:1 19395:1 19439:1 19589:1 19641:1 19659:1 19728:1 19767:1 19812:1 19852:1 19912:1 19924:2 19984:1 20022:3 20128:2 20129:2 20170:1 20189:1 20190:1 20200:1 20212:1 20226:4 20234:1 20303:1 20304:1 20306:2 20343:1 20353:1 20382:1 20434:1 20445:1 20608:1 20627:1 20652:1 20657:2 20662:1 20667:1 20672:1 20686:1 20852:1 20857:2 20874:1 20877:1 20973:2 21039:1 21108:1 21115:1 21139:1 21159:1 21172:1 21226:1 21309:1 21311:1 21333:1 21378:1 21496:1 21505:1 21515:1 21543:1 21595:25 21599:1 21661:1 21662:1 21683:1 21724:1 21749:1 21855:1 21870:1 21924:1 21944:1 22126:1 22170:1 22172:1 22179:1 22188:1 22193:1 22196:1 22281:2 22282:1 22400:1 22414:3 22429:3 22497:1 22666:1 22674:1 22679:1 22788:1 22803:1 22912:1 22915:1 23025:2 23126:1 23215:1 23255:1 23297:2 23306:1 23322:1 23401:2 23450:1 23543:1 23555:1 23584:1 23667:1 23725:966 23753:1 23856:1 23978:1 23991:1 23995:1 24000:1 24001:1 24089:1 24146:1 24150:1 24179:1 24204:1 24245:1 24277:1 24281:1 24284:1 24354:1 24441:1 24489:1 24531:1 24588:1 24669:1 24700:1 24777:1 24805:1 24848:1 25055:1 25072:1 25111:1 25112:1 25265:1 25312:1 25327:1 25328:1 25356:1 25357:2 25376:1 25382:1 25398:1 25437:1 25552:1 25710:2 25769:1 25782:1 25844:1 25892:1 25896:1 25919:1 25952:1 25977:2 25981:1 25990:1 26050:1 26119:1 26124:1 26156:1 26200:1 26233:1 26250:2 26279:1 26308:1 26314:1 26326:1 26398:1 26424:1 26529:1 26537:1 26544:1 26560:1 26562:1 26589:1 26608:1 26681:1 26729:3 26757:1 26808:1 26846:1 26858:1 26904:1 27073:1 27101:1 27108:1 27139:1 27303:1 27306:1 27333:1 27347:1 27371:1 27396:1 27475:1 27498:1 27524:1 27538:1 27560:1 27592:1 27750:1 27772:1 27956:1 28002:1 28029:1 28045:1 28069:1 28079:1 28094:3 28226:1 28227:1 28314:1 28404:1 28423:1 28488:1 28741:1 28884:1 28998:1 29010:1 29032:1 29058:1 29059:1 29091:1 29105:2 29141:1 29156:1 29172:1 29187:1 29203:1 29263:1 29304:1 29307:1 29322:1 29405:1 29451:1 29506:1 29553:1 29555:1 29570:1 29625:2 29669:1 29686:1 29762:1 29832:1 29859:1 29871:1 29880:1 30036:1 30042:1 30080:1 30128:1 30249:2 30266:2 30301:1 30386:1 30426:1 30430:1 30438:1 30467:1 30480:1 30521:1 30537:1 30563:1 30640:1 30663:1 30668:1 30671:1 30681:1 30706:1 30711:2 30796:2 30885:1 30893:1 30923:1 30926:1 30940:1 31060:1 31134:1 31201:1 31214:1 31216:1 31355:3 31358:1 31396:1 31449:1 31456:1 31579:1 31584:1 31598:1 31606:1 31612:1 31667:1 31680:1 31696:1 31722:1 31798:1 31835:1 31836:1 31839:1 31857:1 31904:1 32016:2 32178:1 32199:1 32209:1 32230:1 32244:1 32284:1 32299:1 32328:1 32331:1 32384:2 32414:1 32492:1 32507:2 32779:1 32792:1 32853:1 32870:1 32874:2 32879:1 32880:1 32928:1 33020:1 33070:1 33118:1 33203:1 33212:1 33215:1 33230:1 33356:1 33394:1 33399:1 33400:1 33406:1 33527:1 33533:1 33549:1 33560:1 33620:1 33654:1 33712:1 33721:1 33773:1 33825:1 33844:1 33856:1 33889:1 33925:1 34029:1 34040:1 34047:1 34059:1 34060:1 34067:1 34068:1 34200:1 34212:1 34219:1 34323:1 34393:2 34442:1 34479:1 34488:2 34530:1 34624:2 34739:1 34773:2 34810:2 34833:1 34881:1 34919:1 34963:1 34966:1 34981:1 35001:1 35004:2 35028:1 35048:1 35082:1 35117:2 35310:1 35360:1 35382:1 35437:3 35515:1 35565:2 35622:1 35646:1 35649:1 35675:1 35684:1 35689:1 35714:1 35864:1 35882:1 35932:1 35978:1 36010:1 36022:1 36128:1 36158:1 36202:1 36235:1 36327:1 36329:1 36340:1 36342:1 36351:1 36426:2 36433:1 36438:1 36477:1 36482:1
15 82:1 129:1 193:1 216:1 300:1 321:3 371:1 404:1 451:1 456:1 551:1 578:1 595:2 649:1 677:1 690:1 692:1 707:1 726:2 730:1 733:1 745:1 759:1 773:2 776:1 787:1 877:1 897:1 1002:1 1042:1 1071:1 1075:1 1078:2 1081:1 1099:1 1135:1 1237:1 1247:1 1272:1 1274:1 1348:1 1396:1 1423:1 1450:1 1473:1 1482:1 1525:2 1535:1 1541:1 1542:1 1554:2 1606:1 1634:1 1654:1 1737:1 1746:2 1757:2 1807:2 1809:1 1816:1 1819:1 1854:1 1901:3 1913:1 1919:2 1938:1 1997:1 2004:1 2006:1 2041:1 2097:1 2118:1 2145:1 2171:1 2232:1 2234:2 2239:2 2242:1 2301:1 2374:1 2398:1 2596:1 2601:1 2633:1 2684:1 2742:1 2780:1 2789:1 2801:1 2805:1 2811:1 2812:1 2840:1 2860:1 2905:1 2938:1 2989:1 2990:1 3041:1 3049:1 3172:1 3202:1 3214:1 3367:1 3370:1 3495:1 3513:1 3547:1 3559:1 3569:2 3576:1 3615:1 3664:1 3675:1 3775:1 3866:1 3945:1 4148:2 4161:1 4179:1 4261:2 4264:1 4333:1 4413:1 4439:1 4452:1 4455:1 4463:1 4498:1 4536:1 4541:1 4553:1 4590:1 4602:1 4608:1 4624:1 4646:1 4688:1 4708:1 4741:1 4745:1 4774:1 4821:2 4826:1 4894:1 4933:1 5027:1 5063:1 5177:1 5232:1 5255:2 5287:1 5294:2 5310:1 5357:1 5366:1 5378:2 5411:1 5489:1 5506:1 5519:1 5522:1 5531:1 5581:1 5590:1 5607:1 5664:1 5689:2 5697:1 5718:1 5730:2 5743:1 5838:1 5855:1 5865:1 5866:2 5885:1 5925:1 5928:2 6014:1 6097:1 6140:1 6237:1 6257:1 6258:1 6273:1 6281:1 6288:1 6315:1 6321:1 6449:1 6458:2 6529:1 6543:1 6584:1 6605:1 6630:3 6747:1 6772:2 6802:1 6822:1 6829:1 6853:2 6921:1 7061:1 7115:1 7136:1 7202:1 7227:1 7257:1 7319:1 7321:1 7322:1 7351:2 7444:1 7591:1 7627:2 7726:1 7749:1 7778:1 7830:2 7836:1 7936:1 7964:1 7973:1 8062:1 8065:1 8086:1 8088:1 8092:1 8099:1 8147:1 8162:1 8193:1 8210:1 8212:2 8223:1 8233:2 8269:1 8286:2 8371:1 8416:1 8420:2 8425:1 8457:1 8477:1 8527:1 8557:1 8558:1 8565:1 8615:1 8661:1 8662:1 8748:1 8757:1 8762:2 8814:1 8897:1 8929:1 8959:1 8966:1 9021:2 9061:2 9130:1 9203:1 9243:1 9289:1 9390:1 9433:2 9466:1 9505:1 9535:2 9539:1 9540:1 9544:2 9557:1 9608:1 9622:1 9658:1 9677:2 9678:1 9680:1 9754:1 9789:3 9813:1 9850:1 9858:1 9862:1 9875:1 9881:5 9904:2 9927:1 9948:2 9956:1 9971:1 10122:1 10239:1 10279:1 10292:1 10387:1 10395:1 10402:1 10419:1 10471:5 10523:1 10532:1 10536:2 10547:1 10558:1 10596:1 10630:1 10647:1 10753:1 10761:1 10820:1 10860:1 10899:1 10976:1 10982:1 10983:1 11019:1 11037:1 11058:1 11091:1 11115:1 11158:1 11166:2 11207:1 11208:1 11216:1 11231:1 11238:1 11311:1 11351:1 11396:2 11611:1 11673:1 11685:2 11696:1 11725:1 11733:1 11779:1 11789:1 11793:1 11824:1 11867:1 11913:2 11999:1 12015:2 12078:1 12092:2 12096:1 12153:1 12183:1 12199:1 12216:1 12220:1 12324:1 12386:2 12403:1 12413:1 12479:1 12645:1 12769:1 12786:1 12792:1 12827:1 12847:1 12921:1 12947:1 12974:1 12985:1 13023:1 13086:1 13115:1 13126:1 13135:1 13137:1 13146:2 13241:1 13267:1 13297:1 13335:1 13376:1 13377:1 13378:1 13384:1 13420:1 13443:2 13490:1 13532:1 13540:2 13579:1 13593:1 13642:1 13666:1 13676:2 13792:1 13844:1 13899:1 13956:2 13982:1 13994:1 14033:1 14096:1 14107:1 14129:2 14166:1 14180:1 14195:1 14208:1 14210:2 14214:1 14288:2 14371:1 14397:1 14437:1 14459:1 14472:2 14482:1 14503:1 14544:1 14590:1 14619:1 14621:1 14638:1 14640:1 14705:1 14718:1 14841:1 14894:2 14920:1 14921:1 14978:1 14988:1 15071:2 15074:1 15110:2 15211:1 15221:1 15228:1 15258:1 15334:2 15344:1 15380:1 15425:1 15472:2 15503:1 15510:1 15517:1 15534:1 15552:1 15563:2 15584:1 15594:1 15624:1 15646:1 15706:1 15779:1 15823:1 15907:1 15971:1 16036:1 16045:1 16136:1 16145:1 16184:1 16212:1 16213:1 16233:1 16253:1 16287:3 16333:2 16434:1 16469:1 16540:1 16559:1 16581:1 16586:2 16762:1 16802:2 16824:1 16836:1 16857:1 16879:3 16895:1 16899:1 16910:1 16982:2 16993:1 16994:1 17002:1 17021:1 17042:1 17051:1 17081:2 17151:2 17156:1 17203:1 17234:1 17239:1 17278:3 17469:1 17561:1 17585:1 17770:1 17786:1 17790:1 17930:1 17950:1 18005:1 18055:1 18161:1 18220:1 18248:1 18314:1 18340:1 18407:1 18467:1 18513:1 18536:1 18608:1 18664:1 18718:1 18727:1 18742:2 18750:6 18827:1 18868:1 18989:1 19018:1 19036:4 19112:1 19129:1 19156:1 19179:4 19181:1 19202:1 19203:1 19328:1 19335:1 19365:1 19394:1 19395:1 19439:1 19589:1 19641:1 19659:1 19728:1 19757:1 19767:1 19812:1 19852:1 19912:1 19924:2 19984:1 20022:3 20128:2 20129:2 20170:1 20189:1 20190:1 20200:1 20212:1 20226:4 20234:1 20303:1 20304:1 20306:2 20343:1 20353:1 20382:1 20434:1 20445:1 20518:1 20557:1 20608:1 20627:1 20652:1 20657:2 20662:1 20667:1 20672:1 20686:1 20852:1 20857:2 20874:1 20877:1 20973:2 21039:1 21108:1 21115:1 21139:1 21159:1 21172:1 21226:1 21309:1 21311:1 21333:1 21378:2 21496:1 21505:1 21515:1 21543:1 21595:25 21599:1 21631:1 21661:1 21662:1 21683:1 21724:1 21749:1 21855:1 21870:1 21924:1 21944:1 22126:1 22170:1 22172:1 22175:1 22179:1 22188:1 22193:1 22196:1 22281:3 22282:1 22400:1 22414:3 22429:3 22477:1 22497:1 22666:1 22674:1 22679:1 22788:1 22795:1 22803:1 22912:1 22915:1 22991:1 23025:2 23126:1 23197:1 23215:1 23255:1 23297:2 23306:1 23322:1 23401:2 23450:1 23480:1 23527:1 23543:1 23555:1 23584:1 23667:1 23725:1079 23753:1 23856:1 23978:1 23991:1 23995:1 24000:1 24001:1 24089:1 24146:1 24150:1 24179:1 24204:1 24245:1 24277:1 24281:2 24284:1 24354:1 24441:1 24489:1 24531:1 24588:1 24593:1 24669:1 24700:1 24723:1 24777:1 24805:1 24848:1 24874:1 25055:1 25072:1 25111:1 25112:1 25206:1 25265:1 25312:1 25327:1 25328:1 25356:1 25357:2 25376:2 25382:1 25398:1 25437:1 25552:1 25609:1 25710:2 25769:1 25782:1 25844:1 25892:1 25896:1 25919:1 25944:1 25952:1 25977:3 25981:1 25990:1 26001:1 26050:1 26119:1 26124:1 26156:1 26200:1 26233:1 26250:2 26279:1 26308:1 26314:1 26326:1 26372:1 26394:1 26398:1 26404:1 26424:1 26529:1 26537:1 26544:1 26560:1 26562:1 26589:1 26608:1 26681:1 26729:3 26757:1 26808:1 26846:1 26858:1 26904:1 27005:1 27073:1 27095:1 27101:1 27108:1 27139:1 27303:1 27306:1 27333:1 27347:1 27371:1 27396:1 27475:1 27498:1 27524:1 27538:1 27560:1 27592:1 27750:1 27772:1 27810:1 27956:1 28002:1 28029:1 28045:1 28069:1 28079:1 28094:3 28226:1 28227:1 28314:1 28342:1 28354:1 28404:1 28423:1 28488:1 28741:1 28884:1 28998:1 29010:1 29032:1 29058:1 29059:1 29091:1 29105:2 29141:1 29146:1 29156:1 29172:1 29187:1 29203:1 29263:1 29304:1 29307:1 29322:1 29351:1 29405:1 29428:1 29451:1 29506:1 29553:1 29555:1 29570:1 29625:2 29669:1 29686:1 29762:1 29832:1 29859:1 29871:1 29880:1 29954:1 30036:1 30042:1 30080:1 30091:1 30128:1 30249:3 30266:2 30301:1 30386:1 30426:1 30430:2 30438:1 30467:1 30480:1 30521:1 30537:1 30563:1 30640:1 30663:1 30668:1 30671:1 30681:1 30706:1 30711:2 30752:1 30796:2 30885:1 30893:1 30923:1 30926:2 30940:1 31060:1 31134:1 31157:1 31201:1 31214:1 31216:1 31355:3 31358:2 31396:1 31427:1 31449:1 31455:1 31456:1 31479:1 31558:1 31579:1 31584:1 31598:1 31606:1 31612:1 31640:1 31667:1 31680:2 31696:1 31722:1 31746:1 31798:1 31835:1 31836:1 31839:1 31857:1 31904:1 32016:2 32055:1 32178:1 32199:1 32209:1 32230:1 32244:1 32284:1 32299:1 32328:1 32331:1 32346:1 32384:2 32414:1 32492:1 32507:2 32528:1 32711:1 32779:1 32792:1 32853:1 32870:1 32874:2 32879:1 32880:1 32928:1 33020:1 33070:1 33118:2 33203:1 33212:1 33215:1 33230:1 33356:1 33394:1 33399:1 33400:1 33406:1 33527:1 33533:1 33549:1 33560:1 33620:1 33654:1 33712:1 33721:1 33773:1 33825:1 33844:1 33849:1 33856:1 33889:1 33925:1 33938:1 34029:1 34040:1 34047:1 34059:1 34060:1 34067:1 34068:1 34200:1 34212:1 34219:1 34323:1 34393:2 34442:1 34479:1 34488:2 34530:1 34624:2 34739:1 34773:2 34810:2 34833:1 34881:1 34919:1 34963:1 34966:1 34971:1 34981:1 35001:1 35004:3 35028:1 35048:1 35082:1 35117:2 35154:1 35249:1 35310:1 35324:1 35335:1 35360:1 35382:1 35437:3 35515:1 35565:2 35622:1 35646:1 35649:1 35675:1 35684:1 35689:1 35714:1 35864:1 35882:1 35932:1 35978:1 36010:1 36022:1 36128:1 36158:1 36202:1 36235:1 36327:1 36329:1 36334:1 36340:1 36342:1 36351:1 36392:1 36426:2 36433:1 36438:1 36477:1 36482:1
15 82:1 129:1 193:1 216:1 300:1 321:3 371:1 404:1 451:1 456:1 511:1 551:1 578:1 595:2 649:1 677:1 690:1 692:1 707:1 726:2 730:1 733:1 745:1 759:1 772:1 773:2 776:1 787:1 877:1 897:1 1002:1 1042:1 1071:1 1075:1 1078:2 1081:1 1099:1 1135:2 1237:1 1247:1 1272:1 1274:1 1275:1 1348:1 1396:1 1423:1 1450:1 1473:1 1482:1 1525:2 1535:1 1541:1 1542:1 1553:1 1554:2 1577:1 1606:1 1634:1 1654:1 1737:1 1746:2 1757:2 1807:2 1809:1 1816:1 1819:1 1854:1 1901:3 1913:1 1919:2 1938:1 1997:1 2004:2 2006:1 2041:1 2097:1 2118:1 2145:1 2171:2 2232:1 2234:2 2239:2 2242:1 2301:1 2374:2 2398:1 2596:1 2601:1 2633:1 2684:1 2742:1 2780:1 2789:1 2801:1 2805:1 2810:1 2811:1 2812:1 2840:1 2860:1 2905:1 2938:1 2989:1 2990:1 3041:1 3049:1 3172:1 3202:1 3214:1 3367:1 3370:1 3495:1 3513:1 3547:1 3559:1 3569:2 3576:1 3615:1 3635:1 3664:1 3675:1 3775:1 3866:1 3945:1 4033:1 4148:3 4161:1 4179:1 4261:3 4264:1 4307:1 4333:1 4413:1 4439:1 4452:1 4455:1 4463:1 4498:1 4536:1 4541:1 4553:1 4590:1 4602:1 4608:1 4624:1 4646:1 4688:2 4708:1 4741:1 4745:1 4774:1 4821:2 4826:2 4894:1 4898:1 4933:1 5027:2 5063:1 5177:1 5232:1 5255:2 5287:1 5294:2 5310:1 5357:1 5366:1 5378:3 5411:1 5489:1 5506:1 5519:1 5522:1 5531:1 5581:1 5590:1 5607:1 5664:1 5689:2 5697:1 5718:1 5730:2 5743:1 5838:1 5855:1 5865:1 5866:2 5885:1 5925:1 5928:2 6014:1 6021:1 6097:1 6140:1 6237:1 6257:1 6258:1 6273:1 6281:1 6288:1 6291:1 6315:1 6321:1 6449:1 6458:2 6529:1 6543:1 6567:1 6584:1 6605:1 6630:3 6747:1 6772:3 6802:1 6806:1 6822:1 6829:1 6853:2 6921:1 6963:1 7061:1 7115:1 7136:1 7202:1 7227:1 7257:1 7319:1 7321:1 7322:1 7351:2 7444:1 7591:1 7627:2 7726:1 7749:1 7778:1 7785:1 7830:2 7836:1 7936:1 7964:1 7973:1 8062:1 8065:1 8086:1 8088:1 8092:1 8099:1 8147:1 8162:1 8193:1 8210:1 8212:2 8223:1 8226:1 8233:2 8269:1 8286:2 8362:1 8371:1 8389:1 8416:1 8420:2 8425:1 8457:1 8477:1 8527:1 8557:1 8558:1 8565:1 8615:1 8661:1 8662:1 8748:1 8757:1 8762:3 8814:1 8897:1 8929:1 8959:1 8966:1 9021:2 9061:2 9130:1 9203:1 9243:1 9289:1 9390:1 9420:1 9433:2 9466:1 9505:1 9535:2 9539:1 9540:1 9544:2 9557:1 9608:1 9622:1 9658:1 9677:2 9678:1 9680:1 9754:1 9789:3 9813:1 9850:1 9858:1 9862:1 9875:1 9881:5 9904:2 9905:1 9927:1 9948:2 9956:1 9971:1 10019:1 10122:1 10239:1 10270:1 10279:1 10292:1 10387:1 10395:2 10402:1 10419:1 10471:8 10487:1 10523:1 10532:1 10536:2 10547:1 10558:1 10596:1 10630:1 10647:1 10753:1 10761:1 10820:1 10860:1 10899:1 10976:1 10982:1 10983:1 11019:1 11037:1 11058:1 11091:1 11115:1 11158:1 11166:2 11207:1 11208:1 11216:1 11231:1 11238:1 11311:1 11351:1 11396:2 11611:1 11673:1 11685:2 11696:1 11725:1 11733:1 11746:1 11779:1 11789:1 11793:1 11824:1 11867:1 11913:2 11999:1 12015:2 12078:1 12092:2 12096:1 12153:1 12183:1 12199:1 12216:1 12220:1 12240:1 12245:1 12324:1 12386:2 12403:1 12413:1 12451:1 12479:1 12645:2 12769:1 12786:1 12792:1 12827:1 12847:1 12907:1 12921:1 12947:1 12974:1 12985:1 13023:1 13086:1 13115:1 13126:1 13135:1 13137:1 13146:2 13241:1 13248:1 13267:1 13297:1 13335:1 13376:1 13377:1 13378:1 13384:1 13420:1 13443:3 13490:1 13532:1 13540:2 13579:1 13593:1 13599:1 13642:1 13666:1 13676:2 13792:1 13844:1 13899:1 13956:2 13982:2 13994:1 14033:1 14096:1 14107:1 14129:2 14166:1 14180:1 14195:1 14208:1 14210:2 14214:1 14244:1 14288:2 14371:1 14397:1 14437:2 14459:1 14472:3 14482:1 14503:1 14544:1 14552:1 14590:1 14619:1 14621:1 14638:1 14640:1 14705:1 14718:1 14841:1 14894:2 14920:1 14921:1 14978:1 14988:1 15071:2 15074:1 15110:2 15211:1 15221:1 15228:1 15258:1 15334:2 15344:1 15345:1 15380:1 15425:1 15472:3 15503:1 15510:2 15517:1 15534:1 15552:1 15563:3 15584:1 15594:1 15624:1 15646:1 15706:1 15743:1 15768:1 15779:1 15823:1 15865:1 15907:1 15971:1 16036:1 16045:1 16136:1 16145:1 16184:1 16212:1 16213:1 16233:1 16253:1 16287:3 16319:1 16333:2 16434:1 16469:1 16540:1 16557:1 16559:1 16581:1 16586:2 16757:1 16762:1 16802:2 16824:1 16836:1 16857:1 16879:3 16895:1 16899:1 16910:1 16982:2 16993:1 16994:1 17002:1 17021:1 17042:1 17051:1 17081:2 17151:2 17156:1 17203:1 17234:1 17239:1 17278:3 17305:1 17384:1 17469:1 17518:1 17561:1 17585:1 17770:1 17786:1 17790:1 17930:1 17950:1 18005:1 18055:1 18161:1 18220:1 18248:1 18314:1 18340:1 18407:1 18467:1 18513:1 18536:1 18608:1 18662:1 18664:1 18718:1 18727:1 18742:2 18750:6 18827:1 18868:1 18989:1 19018:1 19036:4 19112:1 19129:1 19156:1 19179:4 19181:1 19202:1 19203:1 19328:1 19335:1 19365:1 19394:1 19395:1 19439:1 19589:1 19641:1 19659:1 19728:1 19756:1 19757:1 19767:1 19788:1 19812:1 19852:1 19912:1 19924:2 19984:1 20022:3 20128:2 20129:2 20170:1 20189:1 20190:1 20200:1 20212:1 20226:4 20234:1 20303:1 20304:1 20306:2 20334:1 20343:1 20353:1 20382:1 20434:1 20445:1 20502:1 20518:1 20557:1 20580:1 20608:1 20627:1 20645:1 20652:1 20657:3 20662:2 20667:1 20672:1 20686:1 20852:1 20857:2 20874:1 20877:1 20973:3 21039:1 21108:1 21115:1 21139:1 21159:1 21172:1 21226:1 21309:1 21311:1 21333:1 21378:3 21496:1 21505:1 21515:1 21543:1 21595:25 21599:1 21631:1 21661:1 21662:1 21683:1 21724:1 21749:1 21797:1 21855:1 21870:1 21924:1 21944:1 22126:1 22170:1 22172:1 22175:2 22179:1 22188:1 22193:1 22196:1 22201:1 22281:3 22282:1 22400:1 22414:3 22429:3 22477:1 22497:1 22529:1 22666:1 22674:1 22679:1 22788:1 22795:1 22803:1 22912:1 22915:1 22922:1 22991:1 23025:2 23126:1 23197:1 23215:1 23255:1 23256:1 23297:2 23306:1 23322:1 23401:2 23450:1 23480:1 23527:1 23543:1 23555:1 23584:1 23667:1 23721:1 23725:1117 23753:1 23856:1 23978:1 23991:1 23995:1 24000:1 24001:1 24089:1 24146:1 24150:1 24179:1 24204:1 24245:1 24277:1 24281:2 24284:1 24354:1 24441:1 24489:1 24531:1 24588:1 24593:1 24669:1 24700:1 24723:1 24777:1 24805:1 24848:1 24874:2 25047:1 25055:1 25072:1 25111:1 25112:1 25206:2 25265:1 25312:1 25327:1 25328:1 25356:1 25357:2 25376:2 25382:1 25398:1 25437:1 25552:1 25563:1 25609:1 25710:2 25769:1 25782:1 25844:1 25892:1 25896:1 25919:1 25944:2 25952:1 25977:3 25981:1 25990:1 26001:1 26050:1 26119:1 26124:1 26156:1 26200:1 26233:1 26250:2 26279:1 26308:1 26314:1 26326:1 26372:1 26394:1 26398:1 26404:1 26424:1 26529:1 26537:1 26544:1 26560:1 26562:1 26585:1 26589:1 26608:1 26681:1 26729:3 26757:1 26808:1 26846:1 26858:1 26883:1 26904:1 27005:1 27073:1 27095:1 27101:1 27108:1 27139:1 27303:1 27306:1 27333:1 27347:1 27371:1 27396:1 27475:1 27498:1 27524:1 27538:1 27560:1 27592:1 27624:1 27750:1 27772:1 27810:1 27956:1 28002:1 28029:1 28045:1 28069:1 28079:1 28094:3 28226:1 28227:1 28314:1 28342:1 28354:1 28404:1 28423:1 28488:1 28741:1 28884:1 28998:1 29010:1 29031:1 29032:1 29058:1 29059:1 29091:1 29105:2 29141:1 29146:1 29156:1 29172:2 29187:1 29203:1 29263:1 29304:1 29307:1 29311:1 29322:1 29351:2 29405:1 29428:2 29451:1 29506:1 29529:1 29553:1 29555:1 29570:1 29625:2 29632:1 29669:1 29686:1 29762:1 29832:1 29859:1 29871:1 29880:1 29954:1 30036:1 30042:1 30052:1 30080:1 30091:1 30122:1 30128:1 30249:3 30266:2 30301:1 30386:1 30426:1 30430:3 30438:1 30467:1 30480:1 30489:1 30521:1 30537:1 30563:1 30622:1 30640:1 30663:1 30668:1 30671:1 30681:1 30706:1 30711:2 30752:1 30796:2 30885:1 30893:1 30923:1 30926:3 30940:1 31060:1 31134:1 31157:1 31201:1 31214:1 31216:1 31355:3 31358:2 31396:1 31427:1 31449:1 31455:1 31456:1 31479:1 31558:1 31579:1 31584:1 31598:1 31606:1 31612:1 31640:1 31667:1 31680:2 31696:1 31722:1 31746:2 31753:1 31798:1 31835:1 31836:1 31839:1 31857:1 31904:1 32016:2 32055:1 32178:1 32199:1 32209:1 32230:1 32244:1 32284:1 32299:1 32328:1 32331:1 32346:1 32384:2 32414:1 32492:1 32507:2 32528:1 32653:1 32711:1 32779:1 32787:1 32792:1 32853:1 32862:1 32870:1 32874:3 32879:1 32880:1 32928:1 33020:1 33070:1 33118:2 33203:1 33212:1 33215:1 33230:1 33356:1 33394:1 33399:1 33400:1 33406:1 33527:1 33533:1 33549:1 33560:1 33620:1 33654:1 33712:1 33721:1 33773:1 33825:1 33844:1 33849:1 33856:1 33889:1 33925:1 33938:1 34029:1 34040:1 34047:1 34059:1 34060:1 34067:1 34068:1 34132:1 34200:1 34212:1 34219:1 34263:1 34323:1 34393:2 34442:1 34479:1 34488:2 34530:1 34616:1 34624:2 34668:1 34739:1 34773:2 34797:1 34810:2 34833:1 34881:1 34919:1 34963:1 34966:1 34971:1 34981:1 35001:1 35004:3 35028:1 35048:1 35082:1 35117:2 35141:1 35154:2 35249:2 35302:1 35310:1 35324:1 35335:1 35360:1 35378:1 35382:1 35384:1 35437:3 35515:1 35565:2 35622:1 35646:1 35649:1 35675:1 35684:1 35689:1 35714:1 35864:1 35882:1 35932:1 35978:1 36010:1 36022:1 36128:1 36158:1 36202:1 36235:1 36327:1 36329:1 36334:1 36340:1 36342:1 36351:1 36370:1 36392:1 36396:1 36426:2 36433:1 36438:1 36477:1 36482:1
15 82:2 129:1 193:1 216:1 300:1 321:3 371:1 404:1 451:1 456:1 511:1 551:1 578:1 595:2 649:1 677:1 690:1 692:1 707:1 726:2 730:1 733:1 745:1 759:1 772:1 773:2 776:1 787:1 877:1 897:1 1002:1 1042:2 1071:1 1075:1 1078:2 1081:1 1099:1 1135:2 1167:1 1237:1 1247:1 1272:1 1274:1 1275:1 1348:1 1396:1 1423:1 1450:1 1473:1 1482:1 1525:2 1535:1 1541:1 1542:1 1553:1 1554:2 1577:1 1606:1 1634:1 1654:1 1667:1 1737:1 1746:2 1757:3 1807:2 1809:1 1816:1 1819:1 1854:1 1892:1 1901:3 1913:1 1919:2 1938:1 1997:1 2004:2 2006:1 2041:1 2097:1 2118:1 2145:1 2171:2 2232:1 2234:2 2239:2 2242:1 2301:1 2374:2 2398:1 2596:1 2601:1 2633:1 2684:1 2742:1 2780:1 2789:1 2801:1 2805:1 2810:1 2811:1 2812:1 2840:1 2860:1 2905:2 2938:1 2989:1 2990:1 3041:1 3049:1 3172:1 3202:1 3214:1 3367:1 3370:1 3495:1 3513:1 3547:1 3559:1 3569:2 3576:1 3615:1 3635:1 3653:1 3664:1 3675:1 3775:1 3866:1 3945:1 4033:1 4047:1 4148:3 4161:1 4179:1 4261:3 4264:1 4307:1 4333:1 4413:1 4439:1 4452:1 4455:1 4463:1 4498:1 4536:1 4541:1 4553:1 4590:1 4602:1 4608:1 4624:1 4646:1 4688:2 4708:1 4741:1 4745:1 4774:2 4820:1 4821:3 4826:2 4859:1 4894:1 4898:1 4933:1 5027:2 5054:1 5063:1 5177:1 5232:1 5255:2 5287:1 5294:2 5310:1 5357:1 5366:1 5378:3 5411:1 5421:1 5489:1 5506:1 5519:1 5522:1 5531:1 5581:2 5590:1 5607:1 5664:1 5677:1 5683:2 5689:2 5697:1 5718:1 5730:2 5743:1 5838:1 5855:1 5865:1 5866:2 5885:1 5925:1 5928:2 6014:1 6021:1 6097:1 6140:1 6237:1 6257:1 6258:1 6273:1 6281:1 6283:1 6288:1 6291:1 6315:1 6321:1 6449:1 6458:2 6475:1 6529:1 6543:1 6567:1 6584:1 6605:1 6630:3 6747:1 6772:4 6802:1 6806:1 6822:1 6829:1 6853:3 6896:1 6921:1 6963:1 7061:1 7115:1 7136:1 7202:1 7227:1 7257:1 7272:1 7319:1 7321:1 7322:2 7351:2 7444:1 7591:1 7627:2 7726:1 7747:1 7749:1 7778:1 7785:1 7830:2 7836:1 7936:1 7964:1 7973:1 8062:1 8065:1 8086:1 8088:1 8092:1 8099:1 8147:1 8162:1 8193:1 8210:2 8212:2 8223:1 8226:1 8233:2 8269:1 8286:2 8362:1 8371:1 8389:1 8413:1 8416:1 8420:2 8425:1 8457:1 8464:1 8477:1 8527:2 8557:1 8558:1 8565:1 8615:1 8661:1 8662:1 8743:1 8748:1 8757:1 8762:4 8814:1 8897:1 8929:1 8959:1 8966:1 9021:2 9061:2 9110:1 9130:1 9203:1 9215:1 9243:1 9289:1 9390:2 9420:1 9433:2 9466:1 9505:1 9535:2 9539:1 9540:1 9544:2 9557:1 9608:1 9622:1 9658:1 9677:2 9678:1 9680:1 9754:1 9789:3 9813:1 9850:1 9858:1 9862:1 9875:1 9881:5 9904:2 9905:1 9927:1 9948:2 9956:1 9971:1 10019:1 10122:1 10239:1 10270:1 10279:1 10292:1 10387:1 10395:2 10402:1 10419:1 10471:8 10487:1 10523:1 10532:1 10536:2 10547:1 10548:1 10558:1 10596:1 10630:1 10647:1 10753:1 10761:1 10820:1 10860:1 10899:1 10976:1 10982:1 10983:1 11019:1 11037:1 11058:1 11091:1 11115:1 11158:1 11166:2 11207:1 11208:3 11216:1 11231:1 11238:1 11311:1 11323:1 11342:1 11351:1 11396:3 11611:1 11668:1 11673:1 11685:2 11696:1 11725:1 11733:1 11746:1 11779:1 11789:1 11793:1 11824:1 11867:1 11913:2 11999:1 12015:2 12016:1 12078:1 12092:2 12096:1 12153:1 12183:1 12199:1 12216:1 12220:1 12240:1 12242:1 12243:1 12244:1 12245:1 12324:1 12386:3 12403:1 12413:1 12451:1 12479:1 12645:2 12769:1 12786:1 12792:1 12827:1 12847:1 12907:1 12921:1 12947:1 12974:1 12985:1 13023:1 13072:1 13086:1 13115:1 13126:1 13135:1 13137:1 13146:3 13241:1 13248:1 13267:1 13297:1 13335:1 13376:1 13377:2 13378:1 13384:1 13420:1 13443:3 13490:1 13532:1 13540:3 13579:1 13593:1 13599:1 13642:1 13666:1 13676:2 13792:1 13844:1 13855:1 13899:1 13916:1 13956:2 13982:2 13994:1 14033:1 14096:1 14107:1 14129:2 14150:1 14166:1 14167:1 14180:1 14192:1 14195:1 14208:1 14210:2 14214:1 14244:1 14281:1 14288:2 14371:1 14397:1 14437:2 14459:1 14472:4 14482:1 14493:1 14503:1 14544:1 14552:1 14590:1 14619:1 14621:1 14638:1 14640:1 14705:1 14718:1 14806:1 14841:1 14894:2 14920:1 14921:1 14978:1 14988:1 15071:2 15074:1 15110:3 15211:1 15221:2 15228:1 15258:1 15334:2 15344:1 15345:1 15380:1 15425:1 15472:4 15503:1 15510:2 15517:1 15534:1 15552:1 15563:3 15584:1 15594:1 15624:1 15646:2 15706:1 15743:1 15753:1 15768:1 15779:1 15823:1 15865:1 15907:1 15971:1 16036:1 16045:1 16136:1 16145:1 16184:1 16212:1 16213:1 16233:1 16253:1 16287:3 16319:1 16333:2 16434:1 16469:1 16540:1 16557:1 16559:1 16581:1 16586:2 16757:1 16762:1 16802:3 16824:1 16836:1 16857:1 16879:3 16895:1 16899:1 16910:1 16982:3 16993:1 16994:1 17002:1 17021:1 17042:1 17051:1 17081:4 17151:2 17156:1 17203:1 17234:1 17239:1 17278:3 17305:1 17384:1 17469:1 17518:1 17561:1 17567:1 17585:1 17744:1 17770:1 17786:1 17790:1 17930:1 17950:1 18005:1 18055:1 18161:1 18220:1 18248:1 18314:1 18340:1 18407:1 18467:1 18513:1 18536:1 18608:1 18662:1 18664:1 18718:1 18727:1 18742:2 18750:6 18827:1 18868:1 18989:1 19018:1 19025:1 19036:6 19112:1 19129:1 19156:1 19179:6 19181:1 19202:1 19203:1 19282:1 19328:1 19335:1 19365:1 19394:1 19395:1 19439:1 19589:1 19641:1 19659:1 19728:1 19756:1 19757:1 19767:1 19788:1 19812:1 19852:1 19912:1 19924:2 19984:1 20022:3 20128:2 20129:2 20170:1 20189:1 20190:1 20200:1 20212:1 20226:4 20234:1 20303:1 20304:1 20306:4 20334:1 20343:2 20353:1 20382:1 20434:1 20445:1 20502:1 20518:1 20557:1 20580:1 20608:1 20627:1 20645:1 20652:1 20657:3 20662:2 20667:1 20672:1 20686:1 20852:1 20857:2 20874:1 20877:1 20955:1 20973:4 21029:1 21039:1 21108:1 21115:1 21139:1 21159:1 21172:1 21226:1 21309:1 21311:1 21327:1 21333:1 21378:3 21496:1 21505:1 21515:1 21543:1 21595:25 21599:1 21631:1 21645:1 21661:1 21662:1 21683:1 21724:1 21749:1 21783:1 21797:1 21855:1 21870:1 21924:1 21944:1 22126:1 22170:1 22172:1 22175:2 22179:1 22188:1 22193:1 22196:1 22201:1 22281:3 22282:3 22400:1 22414:3 22429:3 22477:1 22497:1 22529:1 22666:1 22674:1 22679:1 22788:1 22795:1 22803:1 22912:1 22915:1 22922:1 22973:1 22991:1 22997:1 23025:2 23126:1 23197:1 23200:1 23215:1 23255:1 23256:1 23297:2 23306:1 23322:1 23401:2 23450:1 23464:1 23480:1 23527:1 23543:1 23555:3 23568:1 23584:1 23667:1 23721:1 23725:1253 23753:1 23856:1 23903:1 23945:1 23978:1 23991:1 23995:1 24000:1 24001:1 24089:1 24146:1 24150:1 24179:1 24204:1 24245:1 24277:1 24281:3 24284:1 24354:1 24441:1 24489:1 24531:1 24545:1 24588:1 24593:2 24669:1 24700:1 24723:1 24763:1 24777:1 24805:3 24848:1 24874:2 25047:1 25055:1 25072:1 25111:1 25112:1 25170:1 25206:2 25265:1 25286:1 25312:1 25327:1 25328:1 25356:1 25357:3 25376:3 25382:1 25398:1 25437:1 25552:2 25563:1 25609:1 25710:3 25769:1 25782:1 25844:1 25892:1 25896:1 25919:1 25944:2 25952:1 25977:3 25981:1 25990:1 25994:1 26001:1 26050:1 26119:1 26124:1 26156:2 26199:1 26200:1 26233:1 26242:1 26250:3 26262:1 26279:1 26287:1 26308:3 26314:1 26326:1 26372:1 26394:1 26398:1 26404:1 26424:1 26529:1 26537:1 26544:1 26560:1 26562:1 26563:2 26585:1 26589:1 26608:1 26681:1 26698:1 26729:3 26757:1 26808:1 26846:1 26858:1 26883:1 26904:1 27005:1 27073:1 27092:1 27095:1 27101:1 27108:1 27139:1 27303:1 27306:1 27333:1 27347:1 27371:1 27396:1 27475:1 27482:1 27498:1 27524:1 27538:1 27560:1 27592:1 27624:1 27750:1 27772:1 27810:1 27956:1 28002:1 28029:1 28045:1 28069:1 28079:1 28094:4 28226:1 28227:1 28314:1 28342:1 28354:1 28404:1 28423:1 28488:1 28741:1 28759:1 28884:1 28998:1 29007:1 29010:1 29016:1 29031:1 29032:1 29058:1 29059:1 29091:1 29105:2 29141:1 29146:1 29156:1 29172:2 29187:1 29203:1 29263:1 29304:1 29307:1 29311:1 29322:1 29335:1 29351:2 29405:1 29428:2 29451:1 29465:1 29506:1 29529:1 29553:1 29555:1 29570:1 29583:1 29625:2 29632:1 29669:1 29686:1 29762:1 29832:1 29859:1 29871:1 29880:1 29954:1 30036:1 30042:1 30052:1 30080:1 30091:1 30122:1 30128:1 30249:3 30266:4 30301:1 30386:1 30426:1 30430:3 30438:2 30467:1 30480:1 30489:1 30521:1 30537:1 30563:1 30586:1 30622:1 30640:2 30663:2 30668:3 30671:1 30681:1 30706:1 30711:2 30752:1 30796:2 30885:1 30893:1 30923:1 30926:3 30940:1 31060:1 31134:1 31157:1 31201:1 31214:1 31216:1 31355:3 31358:3 31396:1 31427:1 31449:1 31455:1 31456:1 31479:1 31544:1 31558:1 31570:1 31579:1 31584:1 31598:1 31606:1 31612:1 31640:1 31667:2 31680:3 31696:1 31722:1 31746:2 31753:1 31798:1 31835:1 31836:1 31839:1 31857:1 31904:1 31982:1 32016:2 32036:1 32055:1 32178:1 32199:1 32209:1 32230:1 32236:1 32244:1 32252:1 32284:1 32299:1 32328:1 32331:1 32346:1 32384:2 32414:1 32492:1 32507:2 32528:1 32653:1 32711:1 32772:1 32779:1 32787:1 32792:1 32853:1 32862:1 32870:1 32874:3 32879:1 32880:1 32928:1 33020:1 33070:1 33118:2 33144:1 33203:2 33212:1 33215:1 33230:1 33250:1 33356:1 33394:1 33399:1 33400:1 33406:2 33514:1 33527:1 33533:2 33549:1 33560:1 33620:1 33654:1 33712:1 33721:1 33773:1 33825:1 33844:1 33849:2 33856:1 33889:1 33925:1 33938:1 34029:1 34040:1 34047:1 34059:1 34060:1 34067:1 34068:1 34132:1 34172:1 34200:1 34212:2 34219:1 34263:1 34323:1 34393:2 34442:1 34479:1 34488:2 34530:1 34616:1 34624:2 34668:1 34739:1 34773:2 34776:1 34797:1 34810:3 34833:1 34881:1 34919:1 34963:1 34966:1 34971:1 34981:1 35001:1 35004:3 35028:1 35048:1 35058:1 35082:1 35117:2 35141:1 35154:2 35249:2 35302:1 35310:1 35324:1 35335:1 35360:1 35378:1 35382:1 35384:1 35437:3 35515:1 35565:2 35622:1 35646:1 35649:1 35675:1 35684:1 35689:1 35714:1 35741:1 35864:1 35882:1 35932:1 35978:1 36010:1 36022:1 36128:1 36158:1 36202:1 36235:1 36327:1 36329:1 36334:1 36340:1 36342:1 36351:1 36366:1 36370:1 36392:1 36396:1 36426:2 36433:1 36438:1 36477:1 36482:1
15 82:2 114:1 129:1 193:1 216:1 300:1 321:3 371:1 404:1 451:1 456:1 511:1 551:2 578:1 595:2 649:1 677:1 690:1 692:1 707:1 726:2 730:1 733:1 745:1 759:1 772:1 773:2 776:1 787:1 877:1 897:1 1002:1 1042:2 1048:1 1071:1 1075:1 1078:2 1081:1 1099:1 1135:2 1167:1 1237:1 1247:1 1272:1 1274:1 1275:1 1348:1 1396:1 1423:1 1450:1 1473:1 1482:1 1525:2 1535:1 1541:1 1542:1 1553:1 1554:2 1577:1 1606:1 1634:1 1654:1 1667:1 1737:1 1746:2 1757:3 1807:2 1809:1 1816:1 1819:1 1854:1 1892:1 1901:3 1913:1 1919:2 1938:1 1997:1 2004:2 2006:1 2041:1 2097:1 2118:1 2145:1 2171:2 2232:1 2234:2 2239:2 2242:1 2301:1 2371:1 2374:2 2398:1 2596:1 2601:1 2633:1 2684:1 2742:1 2743:1 2780:1 2789:1 2791:1 2801:1 2805:1 2810:1 2811:1 2812:1 2840:1 2860:1 2905:2 2938:1 2989:1 2990:1 3041:1 3049:1 3172:1 3202:1 3214:1 3367:1 3370:1 3423:2 3495:1 3513:1 3547:1 3559:1 3569:2 3576:2 3615:1 3635:3 3653:1 3664:1 3669:1 3675:1 3775:1 3866:1 3945:1 4033:2 4047:1 4148:3 4161:1 4179:1 4219:1 4261:3 4264:1 4307:1 4333:1 4413:1 4439:1 4452:1 4455:1 4463:1 4498:1 4536:1 4541:1 4553:1 4590:1 4602:1 4608:1 4624:1 4646:1 4687:1 4688:2 4708:1 4741:1 4745:1 4774:2 4820:1 4821:3 4826:2 4859:1 4874:1 4894:1 4898:1 4933:1 5027:2 5054:1 5063:1 5177:1 5232:1 5255:2 5287:1 5294:2 5310:1 5357:1 5366:1 5378:4 5411:1 5421:1 5489:1 5506:1 5519:1 5522:1 5531:1 5581:2 5590:1 5607:1 5664:1 5677:1 5683:2 5689:2 5697:1 5718:1 5730:2 5743:1 5838:1 5855:1 5865:1 5866:2 5885:1 5925:1 5928:2 6014:1 6021:1 6097:3 6140:1 6237:2 6257:2 6258:1 6273:1 6281:1 6283:1 6288:1 6291:1 6315:1 6321:1 6449:1 6458:2 6475:1 6529:1 6543:1 6567:1 6584:1 6605:1 6630:3 6747:1 6772:4 6802:1 6806:1 6822:1 6829:1 6853:3 6896:1 6921:1 6963:1 7061:1 7115:1 7136:1 7202:1 7227:1 7257:1 7272:1 7319:1 7321:1 7322:2 7351:2 7444:1 7591:1 7627:2 7726:1 7747:1 7749:1 7778:1 7785:1 7830:2 7836:1 7936:1 7964:1 7973:1 8062:1 8065:1 8086:1 8088:1 8091:1 8092:1 8099:2 8147:1 8162:1 8193:1 8210:2 8212:2 8223:1 8226:1 8233:2 8269:2 8282:1 8286:2 8362:1 8371:1 8389:1 8413:1 8416:1 8420:2 8425:1 8457:1 8464:1 8477:1 8527:2 8557:1 8558:1 8565:1 8615:1 8661:1 8662:1 8743:1 8748:1 8757:1 8762:4 8814:1 8897:1 8917:1 8929:1 8959:1 8966:1 9021:2 9061:2 9110:1 9130:2 9203:1 9215:1 9234:1 9243:1 9289:2 9390:2 9420:1 9433:2 9466:1 9505:1 9535:2 9539:1 9540:1 9544:2 9557:1 9576:1 9608:1 9622:1 9658:1 9677:2 9678:1 9680:1 9754:1 9789:3 9813:1 9850:1 9858:1 9862:1 9875:1 9881:7 9904:2 9905:3 9927:1 9948:2 9949:1 9956:1 9971:1 10019:1 10034:1 10122:2 10125:1 10239:1 10270:1 10279:1 10292:1 10387:1 10395:2 10402:1 10419:1 10471:9 10487:1 10523:1 10532:1 10536:2 10547:1 10548:1 10558:1 10594:1 10596:1 10630:1 10647:1 10705:1 10753:1 10761:1 10820:1 10860:1 10899:1 10973:1 10976:1 10982:1 10983:1 11019:1 11037:1 11058:1 11091:1 11115:1 11158:1 11166:2 11207:1 11208:3 11216:1 11231:1 11238:1 11311:1 11323:1 11342:1 11351:1 11396:3 11611:1 11668:1 11673:1 11685:2 11696:1 11725:1 11733:1 11746:1 11779:1 11789:1 11793:1 11824:1 11867:1 11913:2 11999:1 12015:2 12016:1 12075:1 12078:1 12092:2 12096:1 12153:1 12183:1 12199:1 12216:1 12220:1 12240:1 12242:1 12243:1 12244:1 12245:1 12324:1 12386:4 12403:1 12413:1 12451:1 12479:1 12645:2 12702:1 12769:1 12786:1 12792:1 12827:1 12847:1 12907:1 12921:1 12947:1 12974:1 12985:1 13023:1 13072:1 13086:1 13115:1 13126:1 13135:1 13137:1 13146:3 13241:1 13248:1 13267:1 13297:1 13335:1 13376:1 13377:2 13378:1 13384:1 13420:1 13443:4 13490:1 13532:1 13540:3 13579:1 13593:1 13599:1 13642:1 13666:1 13676:2 13792:1 13844:1 13855:1 13899:1 13916:1 13956:2 13982:2 13994:1 14033:1 14096:1 14107:1 14129:2 14150:1 14166:1 14167:1 14180:1 14192:1 14195:1 14208:1 14210:2 14214:1 14244:1 14281:1 14288:2 14371:1 14397:1 14437:2 14459:1 14472:4 14482:1 14493:1 14503:1 14530:1 14544:1 14552:1 14590:1 14619:1 14621:1 14638:1 14640:1 14705:1 14718:1 14806:1 14841:1 14894:2 14920:1 14921:1 14978:2 14982:1 14985:1 14988:1 15057:1 15071:2 15074:1 15110:3 15211:1 15221:2 15228:1 15258:1 15334:2 15344:1 15345:1 15380:1 15425:1 15472:4 15503:1 15510:2 15517:1 15534:1 15552:1 15563:3 15584:1 15594:2 15624:1 15646:2 15706:1 15743:1 15753:1 15768:1 15779:1 15823:1 15839:1 15865:1 15907:1 15971:1 16036:1 16045:1 16136:1 16145:1 16184:1 16212:1 16213:1 16233:1 16253:1 16285:1 16287:3 16319:1 16333:2 16355:1 16434:1 16469:1 16540:1 16557:1 16559:1 16581:1 16586:2 16757:1 16762:1 16802:4 16824:1 16836:1 16857:1 16879:3 16895:1 16899:1 16910:1 16982:3 16993:1 16994:1 17002:1 17021:1 17042:2 17051:1 17081:4 17086:1 17151:2 17156:1 17203:1 17234:1 17239:1 17269:1 17278:3 17305:1 17345:1 17384:1 17469:1 17518:1 17561:1 17567:1 17585:1 17744:1 17770:1 17786:1 17790:1 17872:1 17918:1 17930:1 17950:1 18005:1 18055:1 18161:1 18220:1 18248:1 18314:1 18340:1 18403:1 18407:1 18467:1 18493:1 18513:1 18536:1 18608:1 18662:1 18664:1 18718:1 18727:1 18742:2 18750:6 18827:1 18868:1 18919:1 18989:1 19018:1 19025:1 19036:6 19089:1 19112:1 19129:1 19156:1 19179:6 19181:1 19202:1 19203:1 19282:1 19328:1 19335:1 19345:1 19365:1 19394:1 19395:1 19439:1 19589:1 19641:1 19659:1 19728:1 19756:1 19757:1 19767:1 19788:1 19812:1 19852:1 19912:1 19924:2 19980:1 19984:1 20022:3 20128:2 20129:2 20170:1 20189:1 20190:1 20200:1 20212:1 20226:4 20234:1 20303:1 20304:1 20306:4 20334:1 20343:2 20353:1 20382:1 20434:1 20445:1 20502:2 20518:1 20557:1 20580:1 20608:1 20619:1 20627:1 20645:1 20652:1 20657:3 20662:2 20667:1 20672:1 20686:1 20852:1 20857:2 20874:1 20877:1 20940:1 20955:1 20973:4 21029:1 21039:1 21108:1 21115:1 21139:1 21159:1 21172:1 21226:1 21257:1 21294:1 21309:1 21311:1 21327:1 21333:2 21378:3 21496:1 21505:1 21515:1 21543:1 21595:25 21599:1 21631:1 21645:1 21661:1 21662:1 21683:1 21690:1 21724:1 21749:1 21783:1 21797:1 21855:1 21870:1 21924:1 21944:1 22126:1 22170:1 22172:1 22175:2 22179:1 22188:1 22193:1 22196:1 22201:1 22248:1 22281:3 22282:3 22400:1 22414:3 22429:3 22477:1 22497:1 22529:1 22666:1 22674:1 22679:1 22788:1 22795:1 22803:1 22912:1 22915:1 22922:1 22973:1 22991:1 22997:1 23025:2 23126:1 23197:1 23200:1 23215:1 23255:1 23256:1 23297:2 23306:1 23322:1 23401:2 23450:1 23464:1 23480:1 23527:1 23543:1 23555:3 23568:1 23584:1 23667:1 23721:1 23725:1366 23753:1 23856:1 23903:1 23935:1 23945:1 23978:1 23991:1 23995:1 24000:1 24001:1 24089:1 24146:1 24150:1 24179:1 24204:1 24245:1 24277:1 24281:3 24284:1 24354:1 24441:1 24489:1 24531:1 24533:1 24545:1 24588:1 24593:2 24669:1 24700:1 24723:1 24763:1 24777:1 24805:3 24848:1 24874:2 24988:1 25042:1 25047:1 25055:1 25072:1 25111:1 25112:1 25170:1 25206:2 25265:1 25286:1 25312:1 25327:1 25328:2 25356:1 25357:3 25376:3 25382:1 25398:1 25437:1 25531:2 25552:2 25563:1 25609:1 25710:3 25769:1 25782:1 25844:1 25892:1 25896:1 25907:1 25919:1 25944:2 25952:1 25977:3 25981:1 25990:1 25994:1 26001:1 26050:1 26090:1 26105:1 26119:1 26124:1 26156:2 26199:1 26200:1 26233:1 26242:1 26250:3 26262:1 26279:1 26287:1 26308:3 26314:1 26326:1 26372:1 26394:1 26398:1 26404:1 26424:1 26529:1 26537:1 26544:1 26560:1 26562:1 26563:2 26585:1 26589:1 26608:1 26681:1 26698:1 26729:3 26757:1 26808:1 26846:1 26856:1 26858:1 26883:1 26904:1 26944:1 27005:1 27073:1 27092:1 27095:1 27101:1 27108:1 27139:1 27303:1 27306:1 27333:2 27347:1 27371:1 27396:1 27475:1 27482:1 27498:1 27524:1 27538:1 27560:1 27592:1 27624:1 27750:1 27772:1 27810:1 27956:1 28002:1 28029:1 28045:1 28069:2 28079:1 28094:5 28102:1 28226:1 28227:1 28314:1 28342:1 28354:1 28404:1 28423:1 28433:1 28488:1 28741:1 28759:1 28884:1 28998:1 29007:1 29010:1 29016:1 29031:1 29032:1 29058:1 29059:1 29091:1 29105:2 29141:1 29146:1 29156:1 29172:2 29187:1 29203:2 29263:1 29304:1 29307:1 29311:1 29322:1 29335:1 29351:2 29405:1 29428:2 29451:1 29465:1 29506:1 29529:1 29553:1 29555:1 29570:1 29583:1 29625:2 29632:1 29669:1 29686:1 29762:1 29832:1 29859:1 29871:1 29880:1 29954:1 30036:1 30042:1 30052:1 30080:1 30091:1 30122:1 30128:1 30152:1 30249:3 30266:4 30301:1 30386:1 30426:1 30430:3 30438:2 30467:1 30480:1 30484:2 30489:1 30521:1 30537:1 30563:1 30586:1 30622:1 30640:2 30663:2 30668:3 30671:1 30681:1 30706:1 30711:2 30752:1 30796:2 30885:1 30893:1 30923:1 30926:3 30940:1 31060:1 31134:1 31157:1 31201:1 31214:1 31216:1 31355:3 31358:3 31396:1 31427:1 31449:1 31455:1 31456:1 31479:1 31544:1 31558:1 31570:1 31579:1 31584:1 31598:1 31606:1 31612:1 31640:1 31667:2 31680:3 31696:1 31722:1 31746:2 31753:1 31798:1 31835:1 31836:1 31839:1 31857:1 31904:1 31982:1 32016:2 32036:1 32055:1 32175:1 32178:1 32199:1 32209:1 32230:1 32236:1 32244:1 32252:1 32284:1 32299:2 32328:1 32331:1 32346:1 32384:2 32414:1 32492:1 32507:2 32528:1 32533:1 32578:1 32653:1 32711:1 32772:1 32779:1 32783:1 32787:1 32792:1 32800:1 32853:1 32862:1 32870:1 32874:4 32879:1 32880:1 32928:1 33020:1 33054:1 33070:1 33118:2 33144:1 33203:2 33212:1 33215:1 33230:1 33250:1 33356:1 33394:1 33399:1 33400:1 33406:2 33514:1 33527:1 33533:2 33549:1 33560:1 33620:1 33654:1 33712:1 33721:1 33773:1 33825:1 33844:1 33849:2 33856:1 33889:1 33896:1 33925:1 33938:1 34029:1 34040:1 34047:1 34059:1 34060:1 34067:1 34068:1 34132:2 34172:1 34200:1 34212:2 34219:1 34263:1 34267:1 34285:1 34323:1 34393:2 34442:1 34479:1 34488:2 34530:1 34616:1 34624:2 34668:1 34739:1 34773:3 34776:1 34797:1 34810:4 34833:1 34881:1 34919:1 34963:1 34966:1 34971:1 34981:1 35001:1 35004:3 35028:1 35048:1 35058:1 35082:1 35102:1 35117:2 35141:1 35154:2 35249:2 35302:1 35305:1 35310:1 35324:1 35335:1 35360:1 35378:1 35382:1 35384:1 35437:3 35515:1 35565:2 35622:1 35646:1 35649:2 35675:1 35684:1 35689:1 35714:1 35741:1 35864:1 35882:1 35932:1 35978:1 36010:1 36022:1 36128:1 36158:1 36170:1 36202:1 36235:1 36292:1 36327:1 36329:1 36334:1 36340:1 36342:1 36351:1 36366:1 36370:1 36392:1 36396:1 36426:2 36433:1 36438:1 36477:1 36482:1
15 82:2 114:1 129:1 193:1 216:1 256:1 300:1 321:3 371:1 404:1 451:1 456:1 511:1 551:2 564:1 578:1 595:2 649:1 677:1 690:1 692:1 707:1 726:2 730:1 733:1 745:1 759:2 772:1 773:2 776:1 787:1 877:1 897:1 1002:1 1042:2 1048:1 1071:1 1075:1 1078:2 1081:1 1099:1 1135:2 1167:1 1237:1 1247:1 1272:1 1274:1 1275:1 1348:1 1396:1 1423:1 1450:1 1473:1 1482:1 1525:2 1535:1 1541:1 1542:1 1553:1 1554:2 1577:1 1606:1 1615:1 1634:1 1654:1 1667:1 1737:1 1746:2 1757:3 1807:2 1809:1 1816:1 1819:1 1854:1 1892:1 1901:3 1913:1 1919:2 1938:1 1997:1 2004:2 2006:1 2041:1 2097:1 2118:1 2145:1 2171:2 2232:1 2234:2 2239:2 2242:1 2301:1 2371:1 2374:2 2398:1 2596:1 2601:1 2633:1 2684:1 2742:1 2743:1 2780:1 2789:2 2791:1 2801:1 2805:1 2810:1 2811:1 2812:1 2821:1 2840:1 2860:1 2905:2 2938:1 2989:1 2990:1 3041:1 3049:1 3167:1 3172:1 3202:1 3214:1 3367:1 3370:1 3421:1 3423:2 3495:1 3513:1 3547:2 3559:1 3569:2 3576:2 3615:2 3635:3 3653:1 3664:1 3669:1 3675:1 3775:1 3866:1 3945:1 4033:2 4047:1 4083:1 4148:3 4161:1 4179:1 4219:1 4261:3 4264:1 4307:1 4319:1 4333:1 4413:1 4439:1 4452:1 4455:1 4463:1 4498:1 4536:1 4541:1 4553:1 4590:1 4602:1 4608:1 4624:1 4646:1 4687:1 4688:2 4708:1 4741:1 4745:1 4774:2 4820:1 4821:3 4826:2 4859:1 4874:1 4888:1 4894:1 4898:1 4933:1 5027:2 5054:1 5063:1 5177:1 5232:1 5255:2 5287:1 5294:2 5310:1 5357:1 5366:1 5378:4 5411:1 5421:1 5489:1 5506:1 5519:1 5522:1 5531:1 5581:2 5590:1 5607:1 5664:1 5677:1 5683:2 5689:2 5697:1 5718:1 5730:2 5743:1 5838:1 5855:1 5865:1 5866:2 5885:1 5925:1 5928:2 6014:1 6021:1 6097:3 6140:1 6237:2 6257:2 6258:1 6273:1 6281:1 6283:1 6287:1 6288:2 6291:1 6315:1 6321:1 6435:1 6449:1 6458:2 6475:1 6529:1 6543:1 6567:1 6584:1 6605:1 6612:1 6630:3 6747:1 6772:4 6802:1 6806:1 6822:1 6829:1 6853:3 6896:1 6921:1 6922:1 6963:1 7037:1 7061:1 7115:1 7136:1 7202:2 7227:1 7257:1 7272:1 7288:1 7319:1 7321:1 7322:2 7351:2 7444:1 7591:1 7627:2 7726:1 7747:1 7749:1 7778:1 7785:1 7830:2 7836:1 7936:1 7964:1 7973:1 8050:1 8062:1 8065:1 8086:1 8088:1 8091:1 8092:1 8099:2 8147:1 8162:1 8193:1 8210:2 8212:2 8223:1 8226:1 8233:2 8269:2 8282:1 8286:2 8362:1 8371:1 8389:1 8413:1 8416:1 8420:2 8425:1 8457:1 8464:1 8477:1 8527:2 8557:1 8558:1 8565:1 8615:1 8661:1 8662:1 8743:1 8748:1 8757:1 8762:4 8814:1 8897:1 8917:1 8929:1 8959:1 8966:1 9021:2 9061:2 9110:1 9130:2 9203:1 9215:1 9234:1 9243:1 9289:2 9390:2 9412:1 9420:1 9433:2 9466:1 9505:1 9535:2 9539:1 9540:1 9544:2 9557:1 9576:1 9608:1 9622:1 9658:1 9677:3 9678:1 9680:1 9754:1 9789:3 9813:1 9850:1 9858:1 9862:1 9875:1 9881:9 9904:2 9905:3 9927:1 9948:2 9949:1 9956:1 9971:1 10019:1 10034:1 10057:1 10122:2 10125:1 10239:1 10270:1 10279:1 10292:1 10387:1 10395:2 10402:1 10419:1 10471:9 10487:1 10523:1 10532:1 10536:2 10547:1 10548:1 10558:1 10594:1 10596:1 10630:1 10647:1 10705:1 10753:1 10761:1 10820:1 10860:1 10899:1 10973:1 10976:1 10982:1 10983:1 11019:1 11037:1 11058:1 11091:1 11115:1 11158:1 11166:2 11207:1 11208:4 11216:1 11231:1 11238:1 11311:1 11323:1 11342:1 11351:1 11396:3 11611:1 11668:1 11673:1 11685:2 11696:1 11725:1 11733:1 11746:1 11779:1 11789:1 11793:1 11824:1 11850:1 11867:1 11913:2 11999:1 12015:2 12016:1 12075:1 12078:1 12092:2 12096:1 12153:1 12183:1 12199:1 12216:1 12220:1 12240:1 12242:1 12243:1 12244:1 12245:1 12324:1 12386:4 12403:1 12413:1 12451:1 12479:1 12645:3 12702:1 12769:1 12786:1 12792:1 12827:1 12847:1 12907:1 12921:1 12947:1 12974:1 12985:1 13020:1 13023:1 13032:1 13072:1 13086:1 13115:1 13126:1 13135:1 13137:2 13146:3 13241:1 13248:1 13267:1 13297:1 13335:1 13376:1 13377:2 13378:1 13384:1 13420:1 13443:6 13490:1 13532:1 13540:3 13579:1 13593:1 13599:1 13642:1 13666:1 13676:2 13792:1 13844:1 13855:1 13899:1 13916:1 13956:2 13982:2 13994:1 14033:1 14096:1 14107:1 14129:2 14150:1 14166:1 14167:1 14180:1 14192:2 14195:1 14208:1 14210:2 14214:1 14244:1 14281:1 14288:2 14371:1 14397:1 14437:2 14459:1 14472:4 14482:1 14493:1 14503:1 14530:1 14544:1 14552:1 14590:1 14619:1 14621:1 14638:1 14640:1 14683:1 14705:1 14718:1 14806:1 14841:1 14894:2 14920:1 14921:1 14978:2 14982:1 14985:1 14988:1 14997:1 14998:1 15057:1 15061:1 15071:2 15074:2 15110:3 15211:1 15221:2 15228:1 15258:1 15334:2 15344:1 15345:1 15380:1 15425:1 15472:4 15497:1 15503:1 15510:2 15517:1 15534:1 15552:1 15563:3 15584:1 15594:2 15609:1 15624:1 15646:2 15706:1 15743:1 15753:1 15768:1 15779:1 15823:1 15839:1 15865:1 15907:1 15971:1 16036:1 16045:1 16136:1 16145:1 16184:1 16212:1 16213:1 16218:1 16233:1 16253:1 16285:1 16287:3 16319:1 16333:2 16355:1 16434:1 16469:1 16540:1 16557:1 16559:1 16581:1 16586:2 16757:1 16762:1 16802:4 16824:1 16836:1 16857:1 16879:3 16895:1 16899:1 16910:1 16982:3 16993:1 16994:1 17002:1 17021:1 17042:2 17051:1 17081:4 17086:1 17151:2 17156:1 17203:1 17234:1 17239:1 17269:1 17278:3 17305:1 17345:1 17384:1 17469:1 17518:1 17561:1 17567:1 17585:1 17679:1 17686:1 17744:1 17770:1 17786:1 17790:1 17872:1 17914:1 17918:1 17930:1 17950:1 17959:1 18005:1 18055:1 18161:1 18220:1 18248:1 18314:1 18340:1 18403:1 18407:1 18429:1 18467:1 18493:1 18513:1 18536:1 18608:1 18662:1 18664:1 18718:1 18727:1 18742:2 18750:6 18827:1 18868:1 18902:1 18919:1 18989:1 19018:1 19025:1 19036:6 19089:1 19112:1 19129:1 19156:1 19179:6 19181:1 19202:1 19203:1 19282:1 19328:2 19335:1 19345:1 19365:1 19394:1 19395:1 19439:1 19589:1 19631:1 19641:1 19659:1 19728:1 19756:1 19757:1 19767:1 19788:1 19812:1 19852:1 19912:1 19924:2 19980:1 19984:1 20022:3 20128:2 20129:2 20130:1 20164:1 20170:1 20189:1 20190:1 20192:1 20200:1 20212:1 20226:4 20234:1 20303:1 20304:2 20306:4 20334:1 20343:2 20353:1 20382:1 20434:1 20445:1 20502:2 20518:1 20557:1 20580:1 20608:1 20619:1 20627:1 20645:1 20652:1 20657:3 20662:2 20667:1 20672:1 20686:1 20852:1 20857:2 20874:1 20877:1 20940:1 20955:1 20973:4 21029:1 21039:1 21108:1 21115:1 21139:1 21159:1 21172:1 21226:1 21257:1 21294:1 21309:1 21311:1 21327:1 21333:2 21378:3 21496:1 21505:1 21510:1 21514:1 21515:1 21543:1 21595:25 21599:1 21631:1 21645:1 21661:1 21662:1 21683:1 21690:1 21724:1 21749:1 21783:1 21797:1 21855:1 21870:1 21924:1 21944:1 22126:1 22170:1 22172:1 22175:2 22179:1 22188:1 22193:1 22196:1 22201:1 22248:1 22281:3 22282:3 22400:1 22414:3 22429:3 22477:1 22497:1 22529:1 22546:1 22666:2 22674:1 22679:1 22698:1 22788:1 22795:1 22803:1 22878:1 22912:1 22915:1 22922:1 22973:1 22991:1 22997:1 23025:2 23126:1 23197:1 23200:1 23215:1 23255:1 23256:1 23297:2 23306:1 23322:1 23401:2 23450:1 23464:1 23480:1 23527:1 23543:1 23549:1 23555:3 23568:1 23584:1 23660:1 23667:1 23721:1 23725:1495 23753:1 23856:1 23903:1 23935:1 23945:1 23978:1 23991:1 23995:1 24000:1 24001:1 24083:1 24089:1 24125:1 24146:1 24150:1 24179:1 24204:1 24245:2 24277:1 24281:3 24284:1 24354:1 24441:1 24489:1 24531:1 24533:1 24545:1 24588:1 24593:2 24631:1 24669:1 24700:1 24723:1 24763:1 24777:1 24805:3 24848:1 24874:2 24875:1 24988:1 25042:1 25047:1 25055:1 25072:1 25111:1 25112:1 25170:1 25206:2 25265:1 25283:1 25286:1 25312:1 25327:1 25328:2 25356:1 25357:3 25376:3 25382:1 25398:1 25437:1 25497:1 25531:2 25552:2 25563:1 25609:1 25710:3 25724:1 25769:1 25774:1 25782:1 25844:1 25892:1 25896:1 25907:1 25919:1 25944:2 25952:1 25977:3 25981:1 25990:1 25994:1 26001:1 26050:1 26090:1 26105:1 26119:1 26124:1 26156:2 26169:1 26199:1 26200:1 26233:1 26242:1 26250:3 26262:1 26279:1 26287:1 26301:1 26305:1 26308:4 26314:1 26326:1 26372:1 26392:1 26394:1 26398:1 26404:1 26424:1 26440:1 26504:1 26529:1 26537:1 26544:1 26560:1 26562:1 26563:2 26585:1 26589:1 26608:1 26681:1 26698:1 26729:3 26757:1 26808:1 26846:1 26856:1 26858:1 26883:1 26904:1 26944:1 27005:1 27073:1 27092:2 27095:1 27101:1 27108:1 27139:1 27303:1 27306:1 27333:2 27347:1 27371:1 27396:1 27475:1 27482:1 27498:1 27524:1 27538:1 27560:1 27592:1 27624:1 27750:1 27772:1 27803:1 27810:1 27956:1 28002:1 28029:1 28045:2 28069:2 28079:1 28094:5 28102:1 28226:1 28227:1 28314:1 28342:1 28354:1 28404:1 28423:1 28433:1 28488:1 28741:1 28759:1 28884:1 28998:1 29007:1 29010:1 29016:1 29031:1 29032:1 29058:1 29059:1 29091:1 29105:2 29141:1 29146:1 29156:1 29168:1 29172:2 29187:1 29203:2 29263:1 29304:1 29307:1 29311:1 29322:1 29335:1 29351:2 29405:1 29428:2 29451:1 29465:1 29506:1 29516:1 29529:1 29553:1 29555:1 29570:1 29583:1 29625:2 29632:1 29669:1 29686:1 29762:1 29832:1 29859:1 29871:1 29880:1 29954:1 30036:2 30042:1 30052:1 30080:1 30091:1 30122:1 30128:1 30152:1 30249:3 30266:5 30281:1 30301:1 30386:1 30426:1 30430:3 30438:2 30467:1 30480:2 30484:2 30489:1 30521:1 30537:1 30563:1 30586:1 30622:1 30640:2 30663:2 30668:3 30671:1 30681:1 30706:1 30711:2 30743:1 30752:1 30796:2 30885:1 30893:1 30923:1 30926:3 30940:1 30960:1 31030:1 31060:1 31134:1 31157:1 31201:1 31214:1 31216:1 31355:3 31358:3 31396:1 31427:1 31449:1 31455:1 31456:1 31479:1 31544:1 31558:1 31570:1 31579:1 31584:1 31598:1 31606:1 31612:1 31640:1 31667:2 31680:3 31696:1 31722:1 31746:2 31753:1 31798:1 31835:1 31836:1 31839:1 31857:1 31904:1 31982:1 32016:2 32036:1 32055:1 32175:1 32178:1 32199:1 32209:1 32230:1 32236:1 32244:1 32252:1 32284:1 32299:2 32328:1 32331:1 32346:1 32384:2 32414:1 32492:1 32507:2 32528:1 32533:1 32578:1 32653:1 32711:1 32772:1 32779:1 32783:1 32787:1 32792:1 32800:1 32853:1 32862:1 32870:1 32874:4 32879:1 32880:1 32908:1 32928:1 33020:1 33054:1 33070:1 33118:2 33144:1 33203:2 33212:1 33215:1 33230:1 33250:1 33356:1 33394:1 33399:1 33400:1 33406:2 33444:1 33514:2 33527:1 33533:2 33549:1 33560:1 33620:1 33654:1 33712:1 33721:1 33773:1 33825:1 33844:1 33849:2 33856:2 33861:1 33889:1 33896:1 33925:1 33938:1 33998:1 34029:1 34040:2 34047:1 34059:1 34060:1 34067:1 34068:1 34132:2 34172:1 34197:1 34200:1 34212:2 34219:1 34263:1 34267:1 34285:1 34323:1 34393:2 34442:1 34479:1 34488:2 34530:1 34616:1 34624:2 34633:1 34668:1 34739:1 34753:1 34757:1 34773:3 34776:1 34797:1 34810:4 34833:1 34844:1 34881:1 34919:1 34963:1 34966:1 34971:1 34981:1 35001:1 35004:3 35015:1 35028:1 35048:1 35058:1 35063:1 35082:1 35102:1 35117:2 35141:1 35154:2 35249:2 35302:1 35305:1 35310:1 35324:1 35335:1 35360:1 35378:1 35382:1 35384:1 35437:3 35515:1 35565:2 35622:1 35646:1 35649:2 35675:1 35684:1 35689:1 35714:1 35741:1 35742:1 35763:1 35864:1 35882:1 35932:1 35978:1 36010:1 36022:1 36128:1 36158:1 36170:1 36202:1 36235:1 36292:1 36326:1 36327:1 36329:1 36334:1 36340:1 36342:1 36351:1 36366:1 36370:1 36392:1 36396:1 36426:2 36433:1 36438:1 36477:1 36482:1
15 82:2 114:1 129:1 193:2 216:1 255:1 256:1 300:1 321:3 371:1 404:1 451:1 456:1 511:1 551:2 564:1 578:1 595:2 649:1 677:1 690:1 692:1 707:1 726:2 730:1 733:1 738:1 745:1 759:2 772:1 773:2 776:1 787:1 877:1 897:1 1002:1 1042:2 1048:1 1071:1 1075:1 1078:2 1081:1 1096:1 1099:1 1135:2 1154:1 1167:1 1237:1 1247:1 1272:1 1274:1 1275:1 1348:1 1396:1 1423:1 1450:1 1473:1 1482:1 1525:2 1535:1 1541:1 1542:1 1553:1 1554:2 1577:1 1606:1 1615:1 1634:1 1654:1 1667:1 1737:1 1746:2 1757:3 1807:2 1809:1 1816:1 1819:1 1854:1 1892:1 1901:3 1913:1 1919:2 1938:1 1997:1 2004:2 2006:1 2041:1 2071:1 2097:1 2118:1 2145:1 2171:2 2223:1 2232:1 2234:2 2239:2 2242:1 2301:1 2371:1 2374:2 2398:1 2596:1 2601:1 2633:1 2684:1 2742:1 2743:1 2780:1 2789:2 2791:1 2801:1 2805:1 2810:1 2811:1 2812:1 2821:1 2840:1 2860:1 2905:2 2938:1 2989:1 2990:1 3041:1 3049:1 3167:1 3172:1 3197:1 3202:1 3214:1 3367:1 3370:1 3421:1 3423:2 3495:1 3513:1 3547:2 3552:1 3559:1 3569:2 3576:2 3615:2 3635:3 3653:1 3664:1 3669:1 3675:1 3775:1 3853:1 3866:1 3945:1 4033:2 4047:1 4083:1 4103:1 4148:3 4161:1 4179:1 4219:1 4261:3 4264:1 4307:1 4319:1 4333:1 4413:1 4439:1 4452:1 4455:1 4463:1 4498:1 4536:1 4541:1 4553:1 4556:1 4590:1 4602:1 4608:1 4624:1 4646:1 4687:1 4688:2 4708:1 4741:1 4745:1 4774:2 4820:1 4821:3 4826:2 4859:1 4873:1 4874:1 4888:1 4894:1 4898:1 4933:1 4974:1 5027:2 5054:1 5063:1 5177:1 5232:1 5255:2 5287:1 5294:2 5310:1 5357:1 5366:1 5378:4 5411:1 5421:1 5489:1 5506:1 5519:1 5522:1 5531:1 5581:2 5590:1 5607:1 5664:1 5677:1 5683:2 5689:2 5697:1 5718:1 5730:2 5743:1 5838:1 5855:1 5865:1 5866:2 5885:1 5920:1 5925:1 5928:2 6014:1 6021:1 6097:5 6140:1 6237:3 6257:2 6258:1 6273:1 6281:1 6283:1 6287:1 6288:2 6289:1 6291:1 6315:1 6321:1 6435:1 6449:1 6458:2 6475:1 6529:1 6543:1 6567:1 6584:1 6605:1 6612:1 6630:3 6695:1 6747:1 6772:4 6802:1 6806:1 6822:1 6829:1 6853:3 6896:1 6921:1 6922:1 6942:1 6963:1 7037:1 7061:1 7115:1 7136:1 7177:1 7202:2 7227:1 7257:1 7272:1 7288:1 7319:1 7321:1 7322:2 7351:2 7439:1 7444:1 7591:1 7627:2 7726:1 7747:1 7749:1 7778:1 7785:1 7830:2 7836:1 7936:1 7950:1 7964:1 7973:1 8050:1 8062:1 8065:1 8084:1 8086:1 8088:1 8091:1 8092:1 8099:2 8135:1 8136:1 8147:1 8162:1 8193:1 8210:2 8212:2 8223:1 8226:1 8233:2 8269:2 8282:1 8286:2 8362:1 8371:1 8389:1 8413:1 8416:1 8420:2 8425:1 8457:1 8464:1 8477:1 8527:2 8557:1 8558:1 8565:1 8615:1 8661:1 8662:1 8743:1 8748:1 8757:1 8762:4 8814:1 8897:1 8917:1 8929:1 8959:1 8966:1 9021:2 9061:2 9110:1 9130:2 9201:1 9203:1 9215:1 9234:1 9243:1 9289:2 9390:2 9412:1 9420:1 9433:2 9466:1 9505:1 9535:2 9539:1 9540:1 9544:2 9557:1 9576:1 9608:1 9622:1 9658:1 9677:3 9678:2 9680:1 9754:1 9789:3 9813:1 9850:1 9858:1 9862:1 9875:1 9881:9 9904:2 9905:3 9927:1 9948:2 9949:1 9956:1 9971:1 10019:1 10034:1 10039:1 10057:1 10122:3 10125:1 10189:1 10239:1 10270:1 10279:1 10292:1 10381:1 10387:1 10395:2 10402:1 10419:1 10445:1 10471:9 10487:1 10523:1 10532:1 10536:2 10547:1 10548:1 10558:1 10594:1 10596:1 10630:1 10647:1 10705:1 10753:1 10761:1 10820:1 10860:1 10899:1 10973:1 10976:1 10982:1 10983:1 11019:1 11037:1 11058:1 11091:1 11115:1 11158:1 11166:2 11207:1 11208:5 11216:1 11227:1 11231:1 11238:1 11311:1 11323:1 11342:1 11351:1 11396:3 11611:1 11638:1 11668:1 11673:1 11685:2 11696:1 11725:1 11733:1 11746:1 11779:1 11789:1 11793:1 11824:1 11850:1 11867:1 11913:2 11999:1 12015:2 12016:1 12051:1 12075:1 12078:1 12092:2 12096:1 12153:1 12183:1 12199:1 12216:1 12220:1 12240:1 12242:1 12243:1 12244:1 12245:1 12324:1 12332:1 12386:4 12403:1 12413:1 12451:1 12479:1 12645:3 12702:1 12769:1 12786:1 12792:1 12811:1 12827:1 12847:1 12907:1 12921:1 12947:1 12974:1 12985:1 13020:2 13023:1 13032:1 13072:1 13086:1 13104:1 13115:1 13126:1 13135:1 13137:2 13146:3 13241:1 13248:1 13267:1 13297:1 13335:1 13376:1 13377:2 13378:1 13384:1 13420:1 13443:6 13490:1 13532:1 13540:3 13579:1 13593:1 13599:1 13642:1 13666:1 13676:2 13743:1 13792:1 13844:1 13855:1 13899:1 13916:1 13956:2 13982:2 13994:1 14033:1 14096:1 14107:1 14129:2 14150:1 14166:1 14167:1 14170:1 14180:1 14192:2 14195:1 14208:1 14210:2 14214:1 14244:1 14281:1 14288:2 14371:1 14397:1 14437:2 14459:1 14472:4 14482:1 14493:1 14503:1 14530:1 14544:1 14552:1 14590:1 14619:1 14621:1 14638:1 14640:1 14683:1 14705:1 14718:1 14750:1 14806:1 14841:1 14894:2 14920:1 14921:1 14969:1 14978:3 14982:1 14985:1 14988:1 14997:1 14998:1 15057:1 15061:1 15071:2 15074:2 15110:3 15211:1 15221:2 15228:1 15258:1 15334:2 15344:1 15345:1 15380:1 15425:1 15472:4 15497:1 15503:1 15510:2 15517:2 15534:1 15552:1 15563:3 15584:1 15594:2 15609:1 15624:1 15646:2 15706:1 15743:1 15753:1 15768:1 15779:1 15823:1 15839:1 15865:1 15907:1 15971:1 16036:1 16045:1 16136:1 16145:1 16184:1 16212:1 16213:1 16218:1 16233:1 16253:1 16285:1 16287:3 16319:1 16333:2 16355:1 16434:1 16469:1 16540:1 16557:1 16559:1 16581:1 16586:2 16757:1 16762:1 16802:4 16824:1 16836:1 16857:1 16879:3 16895:1 16899:1 16910:1 16934:1 16982:3 16993:1 16994:1 17002:1 17021:1 17042:2 17051:1 17081:4 17086:1 17092:1 17151:2 17156:1 17203:1 17234:1 17239:1 17269:1 17278:3 17305:1 17345:1 17384:1 17440:1 17469:1 17518:1 17528:1 17561:1 17567:1 17585:1 17679:1 17686:1 17744:1 17770:1 17786:1 17790:1 17872:1 17914:1 17918:1 17930:1 17950:1 17959:2 18005:1 18055:1 18161:1 18220:2 18248:1 18314:1 18340:1 18403:1 18407:1 18429:1 18467:1 18493:1 18513:1 18536:1 18608:1 18662:1 18664:1 18718:1 18727:1 18742:2 18750:6 18827:1 18868:1 18902:1 18919:1 18989:1 19018:1 19025:1 19036:6 19089:1 19112:1 19129:1 19156:1 19179:6 19181:1 19202:1 19203:1 19282:1 19328:2 19335:1 19345:1 19365:1 19389:1 19394:1 19395:1 19439:1 19589:1 19631:1 19641:1 19659:1 19703:1 19713:1 19728:1 19756:1 19757:1 19767:1 19788:1 19812:1 19852:1 19912:1 19924:2 19980:1 19984:1 20022:3 20128:2 20129:2 20130:1 20164:1 20170:1 20189:1 20190:1 20192:1 20200:1 20212:1 20226:4 20234:1 20303:1 20304:2 20306:4 20334:1 20343:2 20353:1 20382:1 20434:1 20445:1 20502:2 20518:1 20557:1 20580:1 20597:1 20608:1 20619:1 20627:1 20632:1 20645:1 20652:1 20657:3 20662:2 20667:1 20672:1 20686:1 20823:1 20852:1 20857:2 20874:1 20877:1 20940:1 20955:1 20973:4 21029:1 21039:1 21108:1 21115:1 21139:1 21159:1 21172:1 21226:1 21257:1 21294:1 21309:1 21311:1 21327:1 21333:2 21378:3 21496:1 21505:1 21510:2 21514:1 21515:1 21543:1 21595:25 21599:1 21631:1 21645:1 21661:1 21662:1 21668:1 21683:1 21690:1 21724:1 21749:1 21783:1 21797:1 21855:1 21870:1 21924:1 21944:1 22126:1 22170:1 22172:1 22175:2 22179:1 22188:1 22193:1 22196:1 22201:1 22248:1 22281:3 22282:3 22400:1 22414:3 22429:3 22430:1 22477:1 22497:1 22529:1 22546:1 22666:2 22674:1 22679:1 22698:1 22761:1 22788:1 22795:1 22803:1 22878:1 22912:1 22915:1 22922:1 22973:1 22991:1 22997:1 23025:2 23126:1 23197:1 23200:1 23215:1 23255:1 23256:1 23297:2 23306:1 23322:1 23401:2 23450:1 23464:1 23480:1 23527:1 23543:1 23549:1 23555:3 23568:1 23584:1 23660:1 23667:1 23721:1 23725:1587 23753:1 23856:1 23903:1 23935:1 23945:1 23978:1 23991:1 23995:1 24000:1 24001:1 24083:1 24089:1 24125:1 24146:1 24150:1 24179:1 24204:1 24245:2 24277:1 24281:3 24284:1 24354:1 24441:1 24489:1 24531:1 24533:1 24545:1 24588:1 24593:2 24631:1 24669:1 24700:1 24723:1 24763:1 24777:1 24805:3 24848:1 24874:2 24875:1 24988:1 25042:1 25047:1 25055:1 25072:1 25111:1 25112:1 25170:1 25206:2 25265:2 25283:1 25286:1 25308:1 25312:1 25327:1 25328:2 25356:1 25357:3 25376:3 25382:1 25398:1 25437:1 25497:1 25531:2 25552:2 25563:1 25609:1 25710:3 25724:1 25769:1 25774:1 25782:1 25844:1 25890:1 25892:1 25896:1 25907:1 25919:1 25944:2 25952:1 25977:3 25981:1 25990:1 25994:1 25998:1 26001:1 26050:1 26078:1 26090:1 26105:1 26119:1 26124:1 26156:2 26169:2 26199:1 26200:1 26233:1 26242:1 26250:3 26262:1 26279:1 26287:1 26301:1 26305:1 26308:4 26314:1 26326:1 26372:1 26392:1 26394:1 26398:1 26404:1 26424:1 26440:1 26504:1 26529:1 26537:1 26544:1 26560:1 26562:1 26563:2 26585:1 26589:1 26608:1 26681:1 26695:1 26698:1 26700:1 26729:4 26757:1 26808:1 26846:1 26856:1 26858:1 26883:1 26904:1 26944:1 27005:1 27073:1 27091:1 27092:2 27095:1 27101:1 27108:1 27139:1 27178:1 27303:1 27306:1 27333:2 27347:1 27371:1 27396:1 27475:1 27482:1 27498:1 27524:1 27538:1 27560:1 27592:1 27624:1 27750:1 27772:1 27803:1 27810:1 27956:1 28002:1 28029:1 28045:2 28069:2 28079:1 28094:5 28102:1 28115:1 28226:1 28227:1 28314:1 28342:1 28354:1 28404:1 28423:1 28433:1 28488:1 28659:1 28741:1 28759:1 28884:1 28998:1 28999:1 29007:1 29010:1 29016:1 29031:1 29032:1 29058:1 29059:1 29091:1 29105:2 29141:1 29146:1 29156:1 29168:1 29172:2 29187:1 29203:2 29263:1 29304:1 29307:1 29311:1 29322:1 29335:1 29351:2 29405:1 29428:2 29451:1 29465:1 29506:1 29516:1 29529:1 29553:1 29555:1 29570:1 29583:1 29625:2 29632:1 29669:1 29686:1 29762:1 29795:1 29832:1 29859:1 29871:1 29880:1 29954:1 30036:2 30042:1 30052:1 30080:1 30091:1 30122:1 30128:1 30152:1 30157:1 30249:3 30266:6 30281:1 30301:1 30386:1 30426:1 30430:3 30438:2 30467:1 30480:2 30484:2 30489:1 30521:1 30537:1 30563:1 30586:1 30622:1 30640:2 30663:2 30668:3 30671:1 30681:1 30706:1 30711:2 30743:1 30752:1 30796:2 30885:1 30893:1 30923:1 30926:3 30940:1 30960:1 31030:1 31060:1 31134:1 31157:1 31201:1 31214:1 31216:1 31355:3 31358:3 31396:1 31427:1 31449:1 31455:1 31456:1 31479:1 31544:1 31558:1 31570:1 31579:1 31584:1 31598:1 31606:1 31612:1 31640:1 31667:2 31680:3 31696:1 31722:1 31746:2 31753:1 31798:1 31835:1 31836:1 31839:1 31857:1 31904:1 31982:1 32016:2 32036:1 32055:1 32175:1 32178:1 32199:1 32209:1 32230:1 32236:1 32244:1 32252:1 32284:1 32299:2 32328:1 32331:1 32346:1 32384:2 32414:1 32492:1 32507:2 32521:1 32528:1 32533:1 32578:1 32653:1 32711:1 32772:1 32779:1 32783:1 32787:1 32792:1 32800:1 32853:1 32862:1 32870:1 32874:4 32879:1 32880:1 32908:1 32928:1 33020:1 33054:1 33070:2 33118:2 33144:1 33203:2 33212:1 33215:1 33230:1 33250:1 33356:1 33394:1 33399:1 33400:1 33406:2 33444:1 33514:2 33527:1 33533:2 33549:1 33560:1 33620:1 33654:1 33712:1 33721:1 33767:1 33773:1 33825:1 33844:1 33849:2 33856:2 33861:1 33889:1 33896:1 33925:1 33938:1 33998:1 34029:1 34040:2 34047:1 34059:1 34060:1 34067:1 34068:2 34132:2 34172:1 34197:1 34200:1 34212:2 34219:1 34263:1 34267:1 34285:1 34323:1 34393:2 34442:1 34479:1 34488:2 34530:1 34616:1 34624:2 34633:1 34668:1 34739:1 34753:1 34757:1 34773:3 34776:1 34797:1 34810:4 34833:1 34844:1 34881:1 34919:1 34963:1 34966:1 34971:1 34981:1 34982:1 35001:1 35004:3 35015:1 35028:1 35048:1 35058:1 35063:1 35082:1 35102:1 35117:2 35141:1 35154:2 35249:2 35302:1 35305:1 35310:1 35324:1 35335:1 35360:1 35378:1 35382:1 35384:1 35437:3 35515:1 35565:2 35622:1 35646:1 35649:2 35675:1 35684:1 35689:1 35714:1 35741:1 35742:1 35763:1 35864:1 35882:1 35932:1 35978:1 36010:1 36022:1 36128:1 36158:1 36170:1 36202:1 36235:1 36292:1 36326:2 36327:1 36329:1 36334:1 36340:1 36342:1 36351:1 36366:1 36370:1 36392:1 36396:1 36426:2 36433:1 36438:1 36477:1 36482:1
15 82:2 114:1 129:1 193:2 216:1 255:1 256:1 277:1 300:1 321:3 371:1 404:1 451:1 456:2 511:1 551:2 564:1 578:1 595:2 649:1 677:1 690:1 692:1 707:1 726:2 730:1 733:1 738:1 745:1 759:2 772:1 773:2 776:1 787:1 877:1 897:1 1002:1 1042:2 1048:1 1071:1 1075:1 1078:2 1081:1 1096:1 1099:1 1135:2 1154:1 1167:1 1192:1 1237:1 1247:1 1272:2 1274:1 1275:1 1348:2 1396:1 1423:2 1450:1 1473:1 1482:1 1525:2 1535:1 1541:1 1542:1 1553:1 1554:2 1577:1 1606:1 1615:1 1634:1 1654:1 1662:1 1667:1 1737:1 1746:2 1757:3 1807:2 1809:1 1816:1 1819:1 1854:1 1892:1 1901:3 1913:2 1919:2 1938:1 1997:1 2004:2 2006:2 2041:1 2071:1 2097:1 2118:1 2145:1 2171:2 2223:1 2232:1 2234:2 2239:2 2242:1 2301:1 2371:1 2374:2 2398:1 2596:1 2601:1 2633:1 2684:1 2742:1 2743:1 2780:1 2787:1 2789:2 2791:1 2801:1 2805:1 2810:1 2811:1 2812:1 2821:1 2840:1 2860:1 2905:2 2938:1 2989:1 2990:1 3041:1 3049:1 3167:1 3172:1 3197:1 3202:1 3214:1 3367:1 3370:1 3421:1 3423:2 3495:1 3513:1 3547:2 3552:1 3559:1 3569:3 3576:2 3615:2 3635:3 3653:1 3664:1 3669:1 3675:1 3775:1 3820:1 3853:1 3866:1 3904:1 3945:1 4033:2 4047:1 4083:1 4103:1 4148:3 4161:1 4179:1 4219:1 4261:3 4264:1 4307:1 4319:1 4333:1 4380:1 4413:1 4439:1 4452:1 4455:1 4463:1 4465:1 4498:1 4536:1 4541:1 4553:1 4556:1 4590:1 4602:1 4608:1 4624:1 4646:1 4687:1 4688:2 4708:1 4741:1 4745:1 4774:2 4820:1 4821:3 4826:2 4859:1 4873:1 4874:1 4888:1 4894:1 4898:1 4933:1 4974:1 5027:2 5054:1 5063:1 5177:1 5232:1 5255:2 5287:1 5294:2 5310:1 5357:1 5366:1 5378:4 5411:1 5421:1 5489:1 5506:1 5519:1 5522:1 5531:1 5581:2 5590:1 5607:1 5664:1 5677:1 5683:2 5689:2 5697:1 5718:2 5730:2 5743:1 5838:1 5855:1 5865:1 5866:2 5885:1 5920:1 5925:1 5928:2 6014:1 6021:1 6097:5 6140:1 6145:1 6237:4 6257:2 6258:1 6273:1 6277:1 6281:1 6283:1 6287:1 6288:2 6289:1 6291:1 6315:1 6321:1 6435:1 6449:1 6458:2 6475:1 6529:1 6543:1 6567:1 6584:1 6605:1 6612:1 6630:3 6695:1 6747:1 6772:4 6802:1 6806:1 6822:1 6829:1 6853:3 6896:1 6921:1 6922:1 6942:1 6963:1 7037:1 7061:1 7115:1 7136:1 7177:1 7202:2 7227:1 7257:1 7272:1 7288:1 7319:1 7321:1 7322:2 7351:2 7439:1 7444:1 7591:1 7627:2 7726:1 7747:1 7749:1 7778:1 7782:1 7785:1 7830:2 7836:1 7936:1 7950:1 7964:1 7973:1 8050:1 8062:1 8065:1 8084:1 8086:1 8088:1 8091:1 8092:1 8099:2 8101:1 8135:1 8136:1 8147:1 8162:1 8193:1 8210:2 8212:2 8223:1 8226:1 8233:2 8269:2 8282:1 8286:2 8362:1 8371:1 8389:1 8413:1 8416:1 8420:2 8425:1 8457:1 8464:1 8477:1 8527:2 8557:1 8558:1 8565:1 8615:1 8661:1 8662:1 8743:1 8748:1 8757:1 8762:4 8814:1 8897:2 8917:1 8929:1 8959:1 8966:1 9021:2 9061:2 9110:1 9130:2 9201:1 9203:1 9215:1 9234:1 9243:1 9289:2 9390:2 9412:1 9420:1 9433:2 9466:1 9505:1 9535:2 9539:1 9540:1 9544:2 9557:1 9576:1 9608:1 9622:1 9658:1 9677:3 9678:2 9680:1 9754:1 9789:3 9813:1 9850:1 9858:1 9862:1 9875:1 9881:9 9904:2 9905:3 9927:1 9948:2 9949:1 9956:1 9971:1 10019:1 10034:1 10039:1 10057:1 10122:3 10125:1 10147:1 10189:1 10239:1 10270:1 10279:1 10292:1 10381:1 10387:1 10395:2 10402:1 10419:1 10445:1 10471:9 10487:1 10523:1 10532:1 10536:2 10547:1 10548:1 10558:1 10594:1 10596:1 10618:1 10630:1 10647:1 10686:1 10705:1 10753:1 10761:1 10820:1 10860:1 10899:1 10912:1 10973:1 10976:3 10982:1 10983:1 11019:1 11037:1 11058:1 11091:1 11107:1 11115:1 11158:1 11166:2 11207:1 11208:5 11216:1 11227:1 11231:1 11238:1 11311:1 11320:1 11323:1 11342:1 11351:1 11396:3 11611:1 11638:1 11668:1 11673:1 11685:2 11696:1 11725:1 11733:1 11746:1 11779:1 11789:1 11793:1 11818:1 11824:2 11850:1 11867:1 11913:2 11999:1 12015:2 12016:1 12051:1 12075:1 12078:1 12092:2 12096:1 12153:2 12183:1 12199:1 12216:1 12220:1 12240:1 12242:1 12243:1 12244:1 12245:1 12324:1 12332:1 12386:4 12403:1 12413:1 12451:1 12479:1 12480:1 12645:3 12702:1 12769:2 12776:1 12786:1 12792:1 12809:1 12811:1 12827:1 12847:1 12907:1 12921:1 12947:1 12974:2 12985:1 13020:3 13023:1 13032:1 13072:1 13086:1 13104:1 13115:1 13126:1 13135:1 13137:2 13146:3 13241:1 13248:1 13267:1 13297:1 13335:1 13376:1 13377:2 13378:1 13384:1 13420:1 13443:6 13490:1 13532:1 13540:3 13579:1 13593:1 13599:1 13642:1 13666:1 13676:2 13743:1 13777:1 13792:1 13844:1 13855:1 13871:1 13899:1 13916:1 13956:2 13982:2 13994:1 14033:1 14096:1 14107:1 14127:1 14129:2 14150:1 14166:1 14167:1 14170:1 14180:1 14192:2 14195:1 14208:1 14210:2 14214:1 14244:1 14281:1 14288:2 14371:1 14397:1 14437:2 14459:1 14472:4 14482:1 14493:1 14503:1 14530:1 14544:1 14552:1 14590:1 14619:1 14621:1 14638:1 14640:1 14683:1 14705:1 14718:1 14750:1 14806:1 14841:1 14894:2 14920:1 14921:1 14969:1 14978:3 14982:1 14985:1 14988:1 14997:1 14998:1 15057:1 15061:1 15071:2 15074:2 15110:3 15211:1 15221:2 15228:1 15258:1 15334:2 15344:2 15345:1 15368:1 15380:1 15425:1 15472:4 15497:1 15503:1 15510:2 15517:2 15534:1 15552:1 15563:3 15584:1 15594:2 15609:1 15624:1 15646:2 15706:1 15743:1 15753:1 15768:1 15779:1 15823:1 15839:1 15865:1 15907:1 15938:1 15971:1 16036:1 16045:1 16136:1 16145:1 16184:1 16212:1 16213:1 16218:1 16233:1 16253:1 16285:1 16287:3 16319:1 16333:2 16355:1 16434:1 16469:1 16540:1 16557:1 16559:1 16581:1 16586:2 16757:1 16762:1 16788:1 16802:4 16824:1 16836:1 16857:1 16879:4 16895:1 16899:1 16910:1 16934:1 16982:3 16993:1 16994:1 17002:1 17021:1 17042:2 17051:1 17081:4 17086:1 17092:1 17151:2 17156:1 17203:1 17234:1 17239:1 17269:1 17278:3 17305:1 17345:1 17384:1 17440:1 17469:1 17518:1 17528:1 17561:1 17567:1 17585:1 17679:1 17686:1 17744:1 17770:1 17786:1 17790:1 17872:1 17914:1 17918:1 17930:1 17950:1 17959:3 18005:1 18055:1 18058:1 18161:1 18220:2 18235:1 18248:1 18314:1 18340:1 18403:1 18407:1 18429:1 18467:1 18493:1 18513:1 18536:1 18608:1 18662:1 18664:1 18718:1 18727:1 18742:2 18750:6 18827:1 18868:1 18902:1 18919:1 18989:1 19018:1 19025:1 19036:6 19089:1 19112:1 19129:1 19156:1 19179:6 19181:1 19202:1 19203:1 19237:1 19282:1 19328:2 19335:1 19345:1 19365:1 19389:1 19394:1 19395:1 19439:2 19589:1 19631:1 19641:1 19659:1 19703:1 19713:1 19728:2 19756:1 19757:1 19767:1 19788:1 19812:1 19852:1 19912:1 19924:2 19980:1 19984:1 20022:3 20128:2 20129:2 20130:1 20164:1 20170:1 20189:1 20190:1 20192:1 20200:1 20212:1 20226:4 20234:1 20303:1 20304:2 20306:4 20334:1 20343:2 20353:1 20382:1 20434:1 20445:1 20502:2 20518:1 20557:1 20580:1 20597:1 20608:2 20619:1 20627:1 20632:1 20645:1 20652:1 20657:3 20662:2 20667:1 20672:1 20686:1 20823:1 20852:1 20857:2 20874:1 20877:1 20940:1 20955:1 20965:1 20973:4 21029:1 21039:1 21108:1 21115:1 21139:1 21159:1 21172:1 21226:1 21257:1 21274:1 21294:1 21309:1 21311:1 21327:1 21333:2 21378:3 21496:1 21505:1 21510:3 21514:1 21515:1 21543:1 21546:1 21595:25 21599:1 21631:1 21645:1 21661:1 21662:1 21668:1 21683:1 21690:1 21724:1 21749:1 21783:1 21797:1 21855:1 21870:1 21924:1 21944:1 22126:1 22170:1 22172:1 22175:2 22179:1 22188:1 22193:1 22196:1 22201:1 22248:1 22281:3 22282:3 22400:1 22414:3 22429:3 22430:1 22477:1 22497:1 22529:1 22546:1 22666:2 22674:1 22679:1 22698:1 22761:1 22788:1 22795:1 22803:1 22878:1 22912:1 22915:1 22922:1 22973:1 22991:1 22997:1 23025:2 23126:1 23197:1 23200:1 23215:1 23255:1 23256:1 23297:2 23306:1 23322:1 23401:2 23450:1 23464:1 23480:1 23527:1 23543:1 23549:1 23555:3 23568:1 23584:2 23660:1 23667:1 23721:1 23725:1653 23753:1 23856:1 23903:1 23935:1 23945:1 23978:1 23991:1 23995:1 24000:1 24001:1 24083:1 24089:1 24125:1 24146:1 24150:1 24179:1 24204:1 24245:2 24277:1 24281:3 24284:1 24354:1 24441:1 24489:1 24531:1 24533:1 24545:1 24588:1 24593:2 24631:1 24669:1 24700:1 24723:1 24763:1 24777:1 24805:3 24848:1 24874:2 24875:1 24988:1 25042:1 25047:1 25055:1 25072:1 25111:1 25112:1 25170:1 25206:2 25265:2 25283:1 25286:1 25308:1 25312:1 25327:1 25328:2 25356:1 25357:3 25376:3 25382:1 25398:1 25437:1 25497:1 25531:2 25552:2 25563:1 25609:1 25710:3 25724:1 25769:1 25774:1 25782:1 25844:1 25890:1 25892:1 25896:1 25907:1 25919:1 25944:2 25952:1 25977:3 25981:2 25990:1 25994:1 25998:1 26001:1 26050:1 26078:1 26090:1 26105:1 26119:1 26124:1 26156:2 26169:3 26199:1 26200:1 26233:1 26242:1 26250:3 26262:1 26279:1 26287:1 26301:1 26305:1 26308:4 26314:1 26326:1 26372:1 26379:1 26392:1 26394:1 26398:1 26404:1 26422:1 26424:1 26440:1 26504:1 26529:1 26537:1 26544:1 26560:1 26562:1 26563:2 26585:1 26589:1 26608:1 26681:1 26695:1 26698:1 26700:1 26729:4 26757:1 26808:1 26846:1 26856:1 26858:1 26883:1 26904:1 26944:1 27005:1 27073:1 27091:1 27092:2 27095:1 27101:1 27108:2 27139:1 27141:1 27178:1 27303:2 27306:2 27333:2 27347:1 27371:1 27396:1 27415:1 27475:1 27482:1 27498:2 27524:1 27538:1 27560:1 27592:1 27624:1 27750:1 27772:1 27803:1 27810:1 27930:1 27956:1 28002:1 28029:1 28045:2 28069:2 28079:1 28094:5 28102:1 28115:1 28226:1 28227:1 28314:1 28342:1 28354:1 28404:1 28423:1 28433:1 28488:1 28659:1 28741:1 28759:1 28884:1 28998:1 28999:1 29007:1 29010:1 29016:1 29031:1 29032:1 29058:1 29059:1 29091:1 29105:2 29141:1 29146:1 29156:1 29168:1 29172:2 29187:1 29203:2 29263:1 29304:1 29307:1 29311:1 29322:1 29335:1 29351:2 29405:1 29428:2 29451:1 29465:1 29506:1 29516:1 29529:1 29553:1 29555:1 29570:1 29583:1 29625:2 29632:1 29669:1 29686:1 29762:1 29795:1 29832:1 29859:1 29871:1 29880:1 29954:1 30036:2 30042:1 30052:1 30080:1 30091:1 30122:1 30128:1 30152:1 30157:1 30249:3 30266:6 30281:1 30301:1 30386:1 30426:1 30430:3 30438:2 30467:1 30480:2 30484:2 30489:1 30521:1 30537:1 30563:1 30586:1 30591:1 30622:1 30640:2 30663:2 30668:3 30671:1 30681:1 30706:1 30711:2 30743:1 30752:1 30796:2 30885:1 30893:1 30923:1 30926:3 30940:1 30960:1 31030:1 31060:1 31134:1 31157:1 31201:1 31214:1 31216:1 31355:4 31358:3 31396:1 31427:1 31449:1 31455:1 31456:1 31479:1 31544:2 31558:1 31570:1 31579:1 31584:1 31598:1 31606:1 31612:1 31640:1 31667:2 31680:3 31696:1 31722:1 31746:2 31753:1 31798:1 31835:1 31836:1 31839:1 31857:1 31904:1 31982:1 32016:2 32036:1 32055:1 32175:1 32178:1 32199:1 32209:1 32230:1 32236:1 32244:1 32252:1 32284:1 32299:2 32328:2 32331:1 32346:1 32384:2 32414:1 32492:1 32507:2 32521:1 32528:1 32533:1 32578:1 32653:1 32711:1 32772:1 32779:1 32783:1 32787:1 32792:1 32800:1 32853:1 32862:1 32870:1 32874:4 32879:1 32880:1 32908:1 32928:1 33020:1 33054:1 33070:2 33118:2 33144:1 33203:2 33212:1 33215:1 33230:1 33250:1 33356:1 33394:1 33399:1 33400:1 33406:2 33444:1 33514:2 33527:1 33531:1 33533:2 33549:1 33560:2 33620:1 33654:1 33712:1 33721:1 33767:1 33773:1 33825:1 33844:1 33849:2 33856:2 33861:1 33889:1 33896:1 33925:1 33938:1 33998:1 34029:1 34040:2 34047:1 34059:1 34060:1 34067:1 34068:2 34132:2 34172:1 34184:1 34197:1 34200:1 34212:2 34219:1 34263:1 34267:1 34285:1 34323:1 34393:2 34442:2 34479:1 34488:2 34530:1 34616:1 34624:2 34633:1 34668:1 34739:1 34753:1 34757:1 34773:5 34776:1 34797:1 34810:5 34833:1 34844:1 34881:1 34919:1 34963:1 34966:1 34971:1 34981:1 34982:1 35001:1 35004:3 35015:1 35028:1 35048:1 35058:1 35063:1 35082:1 35102:1 35117:2 35141:1 35154:2 35249:2 35302:1 35305:1 35310:1 35324:1 35335:1 35360:1 35378:1 35382:1 35384:1 35437:3 35515:1 35565:2 35622:1 35646:1 35649:2 35675:1 35684:1 35689:1 35714:1 35741:1 35742:1 35763:1 35864:1 35882:1 35932:1 35978:1 36010:1 36022:1 36128:1 36158:1 36170:1 36202:1 36235:1 36292:1 36326:3 36327:1 36329:1 36334:1 36340:1 36342:1 36351:1 36366:1 36370:1 36371:1 36392:1 36396:1 36426:2 36433:1 36438:1 36477:1 36482:1
15 82:2 114:1 129:1 193:2 216:1 255:1 256:1 277:1 300:1 321:3 371:1 404:1 451:1 456:2 511:1 551:2 564:1 578:1 595:2 649:1 677:1 690:1 692:1 707:1 726:2 730:1 733:1 738:1 745:1 759:2 772:1 773:2 776:1 787:1 877:1 897:1 1002:1 1042:2 1048:1 1071:1 1075:1 1078:2 1081:1 1096:1 1099:1 1135:2 1154:1 1167:1 1192:1 1231:1 1237:1 1247:1 1272:2 1274:1 1275:1 1348:2 1396:1 1423:2 1450:1 1473:1 1482:1 1525:2 1535:1 1541:1 1542:1 1553:1 1554:2 1577:1 1606:1 1615:1 1634:1 1654:1 1662:1 1667:1 1737:1 1746:2 1757:3 1807:2 1809:1 1816:1 1819:2 1854:1 1892:1 1901:3 1913:2 1919:2 1938:1 1997:1 2004:2 2006:2 2041:1 2071:1 2097:1 2118:1 2145:1 2154:1 2171:2 2223:1 2232:1 2234:2 2239:2 2242:1 2301:1 2371:1 2374:2 2398:1 2596:1 2601:1 2633:1 2684:1 2742:1 2743:1 2780:1 2787:1 2789:2 2791:2 2801:1 2805:1 2810:1 2811:1 2812:1 2821:1 2840:1 2860:1 2905:2 2938:1 2989:1 2990:1 3041:1 3049:1 3167:1 3172:1 3197:1 3202:1 3214:1 3367:1 3370:1 3421:1 3423:2 3495:1 3513:1 3547:2 3552:1 3559:1 3569:3 3576:2 3615:2 3635:3 3653:1 3664:1 3669:1 3675:1 3775:1 3820:1 3853:1 3866:1 3904:1 3945:1 4033:2 4047:1 4083:1 4103:1 4148:3 4161:1 4179:1 4219:1 4261:3 4264:1 4307:1 4319:1 4333:1 4380:1 4413:1 4439:1 4452:1 4455:1 4463:1 4465:1 4498:1 4536:1 4541:1 4553:1 4556:1 4590:1 4602:1 4608:1 4624:1 4646:1 4687:1 4688:2 4708:1 4741:1 4745:1 4774:2 4820:1 4821:3 4826:2 4859:1 4873:1 4874:1 4888:1 4894:1 4898:1 4933:1 4974:1 5027:2 5054:1 5063:1 5177:1 5232:1 5255:2 5287:1 5294:2 5310:1 5357:1 5366:1 5378:4 5411:1 5421:1 5489:1 5506:1 5519:1 5522:1 5531:1 5581:2 5590:1 5607:1 5664:1 5677:1 5683:2 5689:2 5697:1 5718:2 5730:2 5743:1 5838:1 5855:1 5865:1 5866:2 5885:1 5920:1 5925:1 5928:2 6014:1 6021:1 6097:5 6140:1 6145:1 6237:4 6257:2 6258:1 6273:1 6277:1 6281:1 6283:1 6287:1 6288:2 6289:1 6291:1 6315:1 6321:1 6435:1 6449:1 6458:2 6475:1 6529:1 6543:1 6567:1 6584:1 6605:1 6612:1 6630:3 6695:1 6747:1 6772:4 6802:1 6806:1 6822:1 6829:1 6853:3 6896:1 6921:1 6922:1 6942:1 6963:2 7037:1 7061:1 7115:1 7136:1 7177:1 7202:2 7227:1 7257:1 7272:1 7288:1 7319:1 7321:1 7322:2 7351:2 7439:1 7444:1 7591:1 7627:2 7661:1 7726:1 7747:1 7749:1 7778:1 7782:1 7785:1 7830:2 7836:1 7936:1 7950:1 7964:1 7973:1 8050:1 8062:1 8065:1 8084:1 8086:1 8088:1 8091:1 8092:1 8099:2 8101:2 8135:1 8136:1 8147:1 8162:1 8193:1 8210:2 8212:2 8223:1 8226:1 8233:2 8269:2 8282:1 8286:2 8362:1 8371:1 8389:1 8413:1 8416:1 8420:2 8425:1 8457:1 8464:1 8477:1 8527:2 8557:1 8558:1 8565:1 8615:1 8661:1 8662:1 8743:1 8748:1 8757:1 8762:4 8814:1 8897:2 8917:1 8929:1 8959:1 8966:1 9021:2 9061:2 9110:1 9130:2 9201:1 9203:1 9215:1 9234:1 9243:1 9289:2 9390:2 9412:1 9420:1 9433:2 9466:1 9505:1 9535:2 9539:1 9540:1 9544:2 9557:1 9576:1 9608:1 9622:1 9658:1 9677:3 9678:2 9680:1 9754:1 9789:3 9813:1 9850:1 9858:1 9862:1 9875:1 9881:10 9904:2 9905:3 9927:1 9948:2 9949:1 9956:1 9971:1 10019:1 10034:1 10039:1 10057:1 10122:3 10125:1 10147:1 10189:1 10239:1 10270:1 10279:1 10292:1 10381:1 10387:1 10395:2 10402:1 10419:1 10445:1 10471:9 10487:1 10523:1 10532:1 10536:2 10547:1 10548:1 10558:1 10594:1 10596:1 10618:1 10630:1 10647:1 10686:1 10705:1 10753:1 10761:1 10820:1 10860:1 10899:1 10912:1 10973:1 10976:3 10982:1 10983:1 11019:1 11037:1 11058:1 11091:1 11107:1 11115:1 11158:1 11166:2 11207:1 11208:5 11216:1 11227:1 11231:1 11238:1 11311:1 11320:1 11323:1 11342:1 11351:1 11396:3 11611:1 11638:1 11668:1 11673:1 11685:2 11696:1 11725:1 11733:1 11746:1 11779:1 11789:1 11793:1 11818:1 11824:2 11850:1 11867:1 11913:2 11999:1 12015:2 12016:1 12051:1 12075:1 12078:1 12092:2 12096:1 12153:2 12183:1 12199:1 12216:1 12220:1 12240:1 12242:1 12243:1 12244:1 12245:1 12324:1 12332:1 12386:4 12403:1 12413:1 12451:1 12479:1 12480:1 12645:3 12702:1 12708:1 12769:2 12776:1 12786:1 12792:1 12809:1 12811:1 12827:1 12847:1 12907:1 12921:1 12947:1 12974:2 12985:1 13020:3 13023:1 13032:1 13072:1 13086:1 13104:1 13115:1 13126:1 13135:1 13137:2 13146:3 13241:1 13248:1 13267:1 13297:1 13335:1 13376:1 13377:2 13378:1 13384:1 13420:1 13443:6 13490:1 13532:1 13540:3 13579:1 13593:1 13599:1 13642:1 13648:1 13666:1 13676:2 13743:1 13777:1 13792:1 13844:1 13855:1 13871:1 13899:1 13916:1 13956:2 13982:2 13994:1 14033:1 14096:1 14107:1 14127:1 14129:2 14150:1 14166:1 14167:1 14170:1 14180:1 14192:2 14195:1 14208:1 14210:2 14214:1 14244:1 14281:1 14288:2 14371:1 14397:1 14437:2 14459:1 14472:4 14482:1 14493:1 14503:1 14530:1 14544:1 14552:1 14590:1 14619:1 14621:1 14638:1 14640:1 14683:1 14705:1 14718:1 14750:1 14806:1 14841:1 14894:2 14920:1 14921:1 14954:1 14969:1 14978:3 14982:1 14985:1 14988:1 14997:1 14998:1 15057:1 15061:1 15071:2 15074:2 15110:3 15211:1 15221:2 15228:1 15258:1 15334:2 15344:2 15345:2 15368:1 15380:1 15425:1 15472:4 15497:1 15503:1 15510:2 15517:2 15534:1 15552:1 15563:3 15584:1 15594:2 15609:1 15624:1 15646:2 15706:1 15743:1 15753:1 15768:1 15779:1 15823:1 15839:1 15865:1 15907:1 15938:1 15971:1 16036:1 16045:1 16136:1 16145:1 16184:1 16212:1 16213:1 16218:1 16233:1 16253:1 16285:1 16287:3 16319:1 16333:2 16355:1 16434:1 16469:1 16540:1 16557:1 16559:1 16581:1 16586:2 16757:1 16762:1 16788:1 16802:4 16824:1 16836:1 16857:1 16879:4 16895:1 16899:1 16910:1 16934:1 16982:3 16993:1 16994:2 17002:1 17021:1 17042:2 17051:1 17081:4 17086:1 17092:1 17151:2 17156:1 17203:1 17234:1 17239:1 17269:1 17278:3 17305:1 17345:1 17384:1 17432:1 17440:1 17469:1 17518:1 17528:1 17561:2 17567:1 17585:1 17679:1 17686:1 17744:1 17770:1 17786:1 17790:1 17872:1 17914:1 17918:1 17930:1 17950:1 17959:3 18005:1 18055:1 18058:1 18161:1 18220:2 18235:1 18248:1 18314:1 18340:1 18403:1 18407:1 18429:1 18467:1 18493:1 18513:1 18536:1 18608:1 18662:1 18664:1 18718:1 18727:1 18742:2 18750:6 18827:1 18868:1 18902:1 18919:1 18989:1 19018:1 19025:1 19036:6 19089:1 19112:1 19129:1 19156:1 19179:6 19181:1 19202:1 19203:1 19237:1 19282:1 19328:2 19335:1 19345:1 19365:1 19389:1 19394:1 19395:1 19439:2 19589:1 19631:1 19641:1 19659:1 19695:1 19703:1 19713:1 19728:2 19756:1 19757:1 19767:1 19788:1 19812:1 19852:1 19912:1 19924:2 19980:1 19984:1 20022:3 20128:2 20129:2 20130:1 20164:1 20170:1 20189:1 20190:1 20192:1 20200:1 20212:1 20226:4 20234:1 20303:1 20304:2 20306:4 20334:1 20343:3 20353:1 20382:1 20434:1 20445:1 20502:2 20518:1 20557:1 20580:1 20597:1 20608:2 20619:1 20627:1 20632:1 20645:1 20652:1 20657:3 20662:2 20667:1 20672:1 20686:1 20823:1 20852:1 20857:2 20874:1 20877:1 20940:1 20955:1 20965:1 20973:4 21029:1 21039:1 21108:1 21115:1 21139:1 21159:1 21172:1 21226:1 21257:1 21274:1 21294:1 21309:1 21311:1 21327:1 21333:2 21378:3 21496:1 21505:1 21510:3 21514:1 21515:1 21543:1 21546:1 21595:25 21599:1 21631:1 21645:1 21661:1 21662:1 21668:1 21683:1 21690:1 21724:1 21749:1 21783:1 21797:1 21855:1 21870:1 21924:1 21944:1 21949:1 22126:1 22170:1 22172:1 22175:2 22179:1 22188:1 22193:1 22196:1 22201:1 22248:1 22281:3 22282:3 22400:1 22414:3 22429:3 22430:1 22477:1 22497:1 22529:1 22546:1 22666:2 22674:1 22679:1 22698:1 22761:1 22788:1 22795:1 22803:1 22878:1 22912:1 22915:1 22922:1 22973:1 22991:1 22997:1 23025:2 23126:1 23197:1 23200:1 23215:1 23255:1 23256:1 23297:2 23306:1 23322:1 23401:2 23450:1 23464:1 23480:1 23527:1 23543:1 23549:1 23555:3 23568:1 23584:2 23660:1 23667:1 23721:1 23725:1706 23753:1 23856:1 23903:1 23935:1 23945:1 23978:1 23991:1 23995:1 24000:1 24001:1 24083:1 24089:1 24125:1 24146:1 24150:1 24179:1 24204:1 24245:2 24277:1 24281:3 24284:1 24354:1 24441:1 24489:1 24531:1 24533:1 24545:1 24588:1 24593:2 24631:1 24669:1 24700:1 24723:1 24763:1 24777:1 24805:3 24848:1 24874:2 24875:1 24988:1 25042:1 25047:1 25055:1 25072:1 25111:1 25112:1 25170:1 25206:2 25265:2 25283:1 25286:1 25308:1 25312:1 25327:1 25328:2 25356:1 25357:3 25376:3 25382:1 25398:1 25413:1 25437:1 25497:1 25531:2 25552:2 25563:1 25609:1 25710:3 25724:1 25769:1 25774:1 25782:1 25844:1 25890:1 25892:1 25896:1 25907:1 25919:1 25944:2 25952:1 25977:3 25981:2 25990:1 25994:1 25998:1 26001:1 26050:1 26078:1 26090:1 26105:1 26119:1 26124:1 26156:2 26169:3 26199:1 26200:1 26233:1 26242:1 26250:3 26262:1 26279:1 26287:1 26301:1 26305:1 26308:4 26314:1 26326:1 26372:1 26379:1 26392:1 26394:1 26398:2 26404:1 26422:1 26424:1 26440:1 26504:1 26529:1 26537:1 26544:1 26560:1 26562:1 26563:2 26585:1 26589:1 26608:1 26681:1 26695:1 26698:1 26700:1 26729:4 26757:1 26808:1 26846:1 26856:1 26858:1 26883:1 26904:1 26944:1 27005:1 27073:1 27091:1 27092:2 27095:1 27101:1 27108:2 27127:1 27139:1 27141:1 27178:1 27303:2 27306:2 27333:2 27347:1 27371:1 27396:1 27415:1 27475:1 27482:1 27498:2 27524:1 27538:1 27560:1 27592:1 27624:1 27750:1 27772:1 27803:1 27810:1 27930:1 27956:1 28002:1 28029:1 28045:2 28069:2 28079:1 28094:5 28102:1 28115:1 28226:1 28227:1 28314:1 28342:1 28354:1 28404:1 28423:1 28427:1 28433:1 28488:1 28659:1 28741:1 28759:1 28884:1 28998:1 28999:1 29007:1 29010:1 29016:1 29031:1 29032:1 29058:1 29059:1 29091:1 29105:2 29141:1 29146:1 29156:1 29168:1 29172:2 29187:1 29203:2 29263:1 29304:1 29307:1 29311:1 29322:1 29335:1 29351:2 29405:1 29428:2 29451:1 29465:1 29506:1 29516:1 29529:1 29553:1 29555:1 29570:1 29583:1 29625:2 29632:1 29669:1 29686:1 29762:2 29795:1 29832:1 29859:1 29871:1 29880:1 29954:1 30036:2 30042:1 30052:1 30080:1 30091:1 30122:1 30128:1 30152:1 30157:1 30249:3 30266:6 30281:1 30301:1 30386:1 30426:1 30430:3 30438:2 30467:1 30480:2 30484:2 30489:1 30521:1 30537:1 30563:1 30586:1 30591:1 30622:1 30640:2 30663:3 30668:3 30671:1 30681:1 30706:1 30711:2 30743:1 30752:1 30796:2 30885:1 30893:1 30923:1 30926:3 30940:1 30960:1 31030:1 31060:1 31134:1 31157:1 31201:1 31214:1 31216:1 31355:4 31358:3 31396:1 31427:1 31449:1 31455:1 31456:1 31479:1 31544:2 31558:1 31570:1 31579:1 31584:1 31598:1 31606:1 31612:1 31640:1 31667:2 31680:3 31696:1 31722:1 31746:2 31753:1 31798:1 31835:1 31836:1 31839:1 31857:1 31904:1 31982:1 32016:2 32036:1 32055:1 32150:1 32175:1 32178:1 32199:1 32209:1 32230:1 32236:1 32244:1 32252:1 32284:1 32299:2 32328:2 32331:1 32346:1 32384:2 32414:1 32492:1 32507:2 32521:1 32528:1 32533:1 32578:1 32653:1 32711:1 32772:1 32779:1 32783:1 32787:1 32792:1 32800:1 32853:1 32862:1 32870:1 32874:4 32879:1 32880:1 32908:1 32928:1 32974:1 32986:1 33006:1 33020:1 33054:1 33070:2 33118:2 33144:1 33203:2 33212:1 33215:1 33230:1 33250:1 33356:1 33394:1 33399:1 33400:1 33406:2 33444:1 33514:2 33527:1 33531:1 33533:2 33549:1 33560:2 33620:1 33654:1 33712:1 33721:1 33767:2 33773:1 33825:1 33844:1 33849:2 33856:2 33861:1 33889:1 33896:1 33925:1 33938:1 33998:1 34029:1 34040:2 34047:1 34059:1 34060:1 34067:1 34068:2 34132:2 34172:1 34184:1 34197:1 34200:1 34212:2 34219:1 34263:1 34267:1 34285:1 34323:1 34393:2 34442:2 34479:1 34488:2 34530:1 34616:1 34624:2 34633:1 34668:1 34739:1 34753:1 34757:1 34773:5 34776:1 34797:1 34810:5 34833:1 34844:1 34881:1 34919:1 34963:1 34966:1 34971:1 34981:1 34982:1 35001:1 35004:3 35015:1 35028:1 35048:1 35058:1 35063:1 35082:1 35102:1 35117:2 35141:1 35154:2 35249:2 35302:1 35305:1 35310:1 35324:1 35335:1 35360:1 35378:1 35382:1 35384:1 35437:3 35515:1 35565:2 35622:1 35646:1 35649:2 35675:1 35684:1 35689:1 35714:1 35741:1 35742:1 35763:1 35864:1 35882:1 35932:1 35978:1 36010:1 36022:1 36128:1 36158:1 36170:1 36202:1 36235:1 36292:1 36326:3 36327:1 36329:1 36334:1 36340:1 36342:1 36351:1 36366:1 36370:1 36371:1 36392:1 36396:1 36426:2 36433:1 36438:1 36477:1 36482:1
15 82:2 114:1 129:1 193:2 216:1 255:1 256:1 277:1 300:1 321:3 371:1 404:1 451:1 456:2 511:1 551:2 564:1 578:1 595:2 649:1 677:1 690:1 692:1 707:1 726:2 730:1 733:1 738:1 745:1 759:2 772:1 773:2 776:1 787:1 848:1 877:1 897:1 1002:1 1042:2 1048:1 1071:1 1075:1 1078:2 1081:1 1096:1 1099:1 1135:2 1154:1 1167:1 1192:1 1231:2 1237:1 1247:1 1272:2 1274:1 1275:1 1348:2 1396:1 1423:2 1450:1 1473:1 1482:1 1525:2 1535:1 1541:1 1542:1 1553:1 1554:2 1577:1 1606:1 1615:1 1634:1 1654:1 1662:1 1667:1 1737:1 1746:2 1757:3 1807:2 1809:1 1816:1 1819:2 1854:1 1892:1 1901:3 1913:2 1919:2 1938:1 1954:1 1997:1 2004:2 2006:2 2041:1 2071:1 2097:1 2118:1 2145:1 2148:1 2154:1 2171:2 2223:1 2232:1 2234:2 2239:2 2242:1 2301:1 2371:1 2374:3 2398:1 2596:1 2601:1 2633:1 2684:1 2742:1 2743:1 2780:1 2787:1 2789:2 2791:2 2801:1 2805:1 2810:1 2811:1 2812:1 2821:1 2840:1 2860:1 2905:2 2938:1 2989:1 2990:1 3041:1 3049:1 3167:1 3172:1 3197:1 3202:1 3214:1 3367:1 3370:1 3421:1 3423:2 3495:1 3513:1 3547:2 3552:1 3559:1 3569:3 3576:2 3615:2 3635:3 3653:1 3664:1 3669:1 3675:1 3775:1 3820:1 3853:1 3866:1 3904:1 3945:1 4033:2 4047:1 4083:1 4091:1 4103:1 4148:3 4161:1 4179:1 4219:1 4261:3 4264:1 4307:1 4319:1 4333:1 4380:1 4413:1 4439:1 4452:1 4455:1 4463:1 4465:1 4498:1 4536:1 4541:1 4549:1 4553:1 4556:1 4590:1 4602:1 4608:1 4624:1 4646:1 4687:1 4688:2 4708:1 4741:1 4745:1 4774:2 4820:1 4821:3 4826:2 4859:1 4873:1 4874:1 4888:1 4894:1 4898:1 4933:1 4974:1 5027:2 5054:1 5063:1 5177:1 5232:1 5255:3 5287:1 5294:2 5310:1 5357:1 5366:1 5378:4 5411:1 5421:1 5489:1 5506:1 5519:1 5522:1 5531:1 5581:2 5583:1 5590:1 5607:1 5664:1 5677:1 5683:2 5689:2 5697:1 5718:2 5730:2 5743:1 5838:1 5855:1 5865:1 5866:2 5885:1 5920:1 5925:1 5928:2 6014:1 6021:1 6097:5 6140:1 6145:1 6167:1 6237:4 6257:2 6258:1 6273:1 6277:1 6281:1 6283:1 6287:1 6288:2 6289:1 6291:1 6315:1 6316:1 6321:1 6435:1 6449:1 6458:2 6475:1 6529:1 6543:1 6567:1 6584:1 6605:1 6612:1 6630:3 6695:1 6737:1 6747:1 6772:4 6802:1 6806:1 6822:1 6829:1 6853:3 6896:1 6921:1 6922:1 6942:1 6963:2 7037:1 7061:1 7115:1 7136:1 7177:1 7202:2 7227:1 7257:1 7272:1 7281:1 7288:1 7319:1 7321:1 7322:2 7351:2 7439:1 7444:1 7591:1 7627:2 7661:1 7726:1 7747:1 7749:1 7778:1 7782:1 7785:1 7830:2 7836:1 7936:1 7950:1 7964:1 7973:1 8050:1 8062:1 8065:1 8084:1 8085:1 8086:1 8088:1 8091:1 8092:1 8099:2 8101:2 8135:1 8136:1 8147:1 8151:1 8162:1 8193:1 8210:2 8212:2 8223:1 8226:1 8233:2 8269:2 8282:1 8286:2 8362:1 8371:1 8389:1 8413:1 8416:1 8420:2 8425:1 8457:1 8464:1 8477:1 8527:2 8557:1 8558:1 8565:1 8615:1 8661:1 8662:1 8743:1 8748:1 8757:1 8762:4 8814:1 8897:2 8917:1 8929:1 8959:1 8966:1 9021:2 9061:2 9110:1 9130:2 9201:1 9203:1 9215:1 9234:1 9243:1 9289:2 9390:2 9412:1 9420:1 9433:2 9466:1 9505:1 9535:2 9539:1 9540:1 9544:2 9557:1 9576:1 9608:1 9617:1 9622:1 9658:1 9671:1 9677:3 9678:2 9680:1 9754:1 9789:3 9813:1 9850:1 9858:1 9862:1 9875:1 9881:10 9904:2 9905:3 9927:1 9948:2 9949:1 9956:1 9971:1 10019:1 10034:1 10039:1 10057:1 10122:3 10125:1 10147:1 10189:1 10239:1 10270:1 10279:1 10292:1 10381:1 10387:1 10395:2 10402:1 10419:2 10445:1 10471:9 10487:1 10523:1 10532:1 10536:2 10547:1 10548:1 10558:1 10578:1 10594:1 10596:1 10618:1 10630:1 10647:1 10686:1 10705:1 10753:1 10761:1 10820:1 10860:1 10899:1 10912:1 10973:1 10976:3 10982:1 10983:1 11019:1 11037:1 11058:1 11091:1 11107:1 11115:1 11158:1 11166:2 11207:1 11208:6 11216:1 11227:1 11231:1 11238:1 11311:1 11320:1 11323:1 11342:1 11351:1 11396:3 11611:1 11638:1 11668:1 11673:1 11685:2 11696:2 11725:1 11733:1 11746:1 11779:1 11789:1 11793:1 11818:1 11824:2 11850:1 11867:1 11913:2 11999:1 12015:2 12016:1 12051:1 12075:1 12078:1 12092:2 12096:1 12153:2 12183:1 12199:1 12216:1 12220:1 12240:1 12242:1 12243:1 12244:1 12245:1 12324:1 12332:1 12386:4 12403:1 12413:1 12451:1 12479:1 12480:1 12645:3 12702:1 12708:1 12769:2 12776:1 12786:1 12792:1 12809:1 12811:1 12827:1 12847:1 12855:1 12907:1 12921:1 12947:1 12974:2 12985:1 13020:3 13023:1 13032:1 13072:1 13086:1 13104:1 13115:1 13126:1 13135:1 13137:2 13146:3 13241:1 13248:1 13267:1 13297:1 13335:1 13376:1 13377:2 13378:1 13384:1 13420:1 13443:6 13490:1 13532:1 13540:3 13579:1 13580:1 13593:1 13599:1 13642:1 13648:2 13666:1 13676:2 13743:1 13777:1 13792:1 13844:1 13855:1 13871:1 13899:1 13916:1 13956:2 13982:2 13994:1 14033:1 14096:1 14107:1 14127:1 14129:2 14150:1 14166:1 14167:1 14170:1 14180:1 14192:2 14195:1 14208:1 14210:2 14214:1 14221:1 14244:1 14281:1 14288:2 14371:1 14397:1 14437:2 14459:1 14472:4 14482:1 14493:1 14503:1 14530:1 14544:1 14552:1 14590:1 14619:1 14621:1 14638:1 14640:1 14683:1 14705:1 14718:1 14750:1 14806:1 14841:1 14894:2 14920:1 14921:1 14954:1 14969:1 14978:3 14982:1 14985:1 14988:1 14997:1 14998:1 15008:1 15057:1 15061:1 15071:2 15074:2 15110:3 15211:1 15221:2 15228:1 15258:1 15334:2 15344:2 15345:2 15368:1 15380:1 15425:1 15472:4 15497:1 15503:1 15510:3 15517:2 15534:1 15552:1 15563:3 15584:1 15594:2 15609:1 15624:1 15646:2 15706:1 15743:1 15753:1 15768:1 15779:1 15823:1 15839:1 15865:1 15907:1 15938:1 15971:1 16036:1 16045:1 16136:1 16145:1 16184:1 16212:1 16213:1 16218:1 16233:1 16253:1 16285:1 16287:3 16319:1 16333:2 16355:1 16434:1 16469:1 16540:1 16557:1 16559:1 16581:1 16586:2 16757:1 16762:1 16788:1 16802:4 16824:1 16836:1 16857:1 16879:4 16895:1 16899:1 16910:1 16934:1 16982:3 16993:1 16994:2 17002:1 17021:1 17042:2 17051:1 17081:4 17086:1 17092:3 17151:2 17156:1 17203:1 17234:1 17239:1 17269:1 17278:3 17305:1 17345:1 17384:1 17432:1 17440:1 17469:1 17518:1 17528:1 17561:2 17567:1 17585:1 17679:1 17686:1 17744:1 17770:1 17786:1 17790:1 17872:1 17914:1 17918:1 17930:1 17950:1 17959:3 18005:1 18055:1 18058:1 18161:1 18220:2 18235:1 18248:1 18314:1 18340:1 18403:1 18407:1 18429:1 18467:1 18493:1 18513:1 18536:1 18608:1 18662:1 18664:1 18718:1 18727:1 18742:2 18750:6 18827:1 18868:1 18902:1 18919:1 18989:1 19018:1 19025:1 19036:6 19089:1 19112:1 19129:1 19156:1 19179:6 19181:1 19202:1 19203:1 19237:1 19282:1 19328:2 19335:1 19345:1 19365:1 19389:1 19394:1 19395:1 19439:2 19589:1 19631:1 19641:1 19659:1 19695:1 19703:1 19713:1 19728:2 19756:1 19757:1 19767:1 19788:1 19812:1 19852:1 19912:1 19924:2 19980:1 19984:1 20022:3 20128:2 20129:2 20130:1 20164:1 20170:1 20189:1 20190:1 20192:1 20200:1 20212:1 20226:4 20234:1 20303:1 20304:2 20306:4 20334:1 20343:3 20353:1 20382:1 20434:1 20445:1 20502:2 20518:1 20546:1 20557:1 20580:1 20597:1 20608:2 20619:1 20627:1 20632:1 20645:1 20652:1 20657:3 20662:2 20667:1 20672:1 20686:1 20823:1 20852:1 20857:2 20874:1 20877:1 20940:1 20955:1 20965:1 20973:4 21029:1 21039:1 21108:1 21115:1 21139:1 21159:1 21172:1 21226:1 21257:1 21274:1 21294:1 21309:1 21311:1 21327:1 21333:2 21378:3 21496:1 21505:1 21510:3 21514:1 21515:1 21543:1 21546:1 21595:25 21599:1 21631:1 21645:1 21661:1 21662:1 21668:1 21681:1 21683:1 21690:1 21724:1 21749:1 21783:1 21797:1 21855:1 21870:1 21924:1 21944:1 21949:2 22126:1 22170:1 22172:1 22175:2 22179:1 22188:1 22193:1 22196:1 22201:1 22248:1 22281:3 22282:3 22400:1 22414:3 22429:3 22430:1 22477:1 22497:1 22529:1 22546:1 22574:1 22666:2 22674:1 22679:1 22698:1 22761:1 22788:1 22795:1 22803:1 22878:1 22912:1 22915:1 22922:1 22973:1 22991:1 22997:1 23025:2 23126:1 23197:1 23200:1 23215:1 23255:1 23256:1 23297:2 23306:1 23322:1 23401:2 23450:1 23464:1 23480:1 23527:1 23543:1 23549:1 23555:3 23568:1 23584:2 23660:1 23667:1 23721:1 23725:1741 23753:1 23856:1 23903:1 23935:1 23945:1 23978:1 23991:1 23995:1 24000:1 24001:1 24083:1 24089:1 24125:1 24146:1 24150:1 24179:1 24204:1 24245:2 24277:1 24281:3 24284:1 24354:1 24441:1 24489:1 24531:1 24533:1 24545:1 24588:1 24593:2 24631:1 24669:1 24700:1 24723:1 24763:1 24777:1 24805:3 24848:1 24851:1 24874:2 24875:1 24988:1 25042:1 25047:1 25055:1 25072:1 25111:1 25112:1 25170:1 25206:2 25261:1 25265:2 25283:1 25286:1 25308:1 25312:1 25327:1 25328:2 25356:1 25357:3 25376:3 25382:1 25398:1 25413:1 25437:1 25497:1 25531:2 25552:2 25563:1 25609:1 25710:3 25724:1 25769:1 25774:1 25782:1 25844:1 25890:1 25892:1 25896:1 25907:1 25919:1 25944:2 25952:1 25977:3 25981:2 25990:1 25994:1 25998:1 26001:1 26050:1 26078:1 26090:1 26105:1 26119:1 26124:1 26156:2 26169:3 26199:1 26200:1 26233:1 26242:1 26250:3 26262:1 26279:1 26287:1 26301:1 26305:1 26308:4 26314:1 26326:1 26372:1 26379:1 26392:1 26394:1 26398:2 26404:1 26422:1 26424:1 26440:1 26504:1 26524:1 26529:1 26537:1 26541:2 26544:1 26560:1 26562:1 26563:2 26585:1 26589:1 26608:1 26681:1 26695:1 26698:1 26700:1 26729:4 26757:1 26808:1 26846:1 26855:1 26856:1 26858:1 26883:1 26897:1 26904:1 26944:1 27005:1 27073:1 27091:1 27092:2 27095:1 27101:1 27108:2 27127:1 27139:1 27141:1 27178:1 27303:2 27306:2 27333:2 27347:1 27371:1 27396:1 27415:1 27475:1 27482:1 27498:2 27524:1 27538:1 27560:1 27592:1 27624:1 27677:1 27750:1 27772:1 27803:1 27810:1 27930:1 27956:1 28002:1 28029:1 28045:2 28069:2 28079:1 28094:5 28102:1 28115:1 28189:1 28226:1 28227:1 28314:1 28342:1 28354:1 28404:1 28423:1 28427:1 28433:1 28488:1 28659:1 28741:1 28759:1 28884:1 28991:1 28998:1 28999:1 29007:1 29010:1 29016:1 29031:1 29032:1 29058:1 29059:1 29091:1 29105:2 29141:1 29146:1 29156:1 29168:1 29172:2 29187:1 29203:2 29263:1 29304:1 29307:1 29311:1 29322:1 29335:1 29351:2 29405:1 29428:2 29451:1 29465:1 29506:1 29516:1 29529:1 29553:2 29555:1 29570:1 29583:1 29625:2 29632:1 29669:1 29686:1 29762:2 29795:1 29832:1 29859:1 29871:1 29880:1 29954:1 30036:2 30042:1 30052:1 30080:1 30091:1 30122:1 30128:1 30152:1 30157:1 30249:3 30266:7 30281:1 30301:1 30386:1 30426:1 30430:3 30438:2 30467:1 30480:2 30484:2 30489:1 30490:1 30521:1 30537:1 30563:1 30586:1 30591:1 30622:1 30640:2 30663:3 30668:3 30671:1 30681:1 30706:1 30711:2 30743:1 30752:1 30796:2 30885:1 30893:1 30923:1 30926:3 30940:1 30960:1 31030:1 31060:1 31134:1 31157:1 31201:1 31214:1 31216:1 31355:4 31358:3 31396:1 31415:1 31427:1 31449:1 31455:1 31456:1 31479:1 31544:2 31558:1 31570:1 31579:1 31584:1 31598:1 31606:1 31612:1 31640:1 31667:2 31680:3 31696:1 31722:1 31746:2 31753:1 31798:1 31835:1 31836:1 31839:1 31857:1 31904:1 31982:1 32016:2 32036:1 32055:1 32150:1 32175:1 32178:1 32199:1 32209:1 32230:1 32236:1 32244:1 32252:1 32284:1 32299:2 32328:2 32331:1 32346:1 32384:2 32414:1 32492:3 32507:2 32521:1 32528:2 32533:1 32578:1 32653:1 32711:1 32772:1 32779:1 32783:1 32787:1 32792:1 32800:1 32853:1 32862:1 32870:1 32874:4 32879:1 32880:1 32908:1 32928:1 32974:1 32986:2 33006:1 33020:1 33026:1 33054:1 33070:2 33118:2 33144:1 33203:2 33212:1 33215:1 33230:1 33250:1 33356:1 33394:1 33399:1 33400:1 33406:2 33444:1 33514:2 33527:1 33531:1 33533:2 33549:1 33560:2 33620:1 33654:1 33712:1 33721:1 33767:2 33773:1 33825:1 33844:1 33849:2 33856:2 33861:1 33889:1 33896:1 33925:1 33938:1 33998:1 34029:1 34040:2 34047:1 34059:1 34060:1 34067:1 34068:2 34132:2 34172:1 34184:1 34197:1 34200:1 34212:2 34219:1 34263:1 34267:1 34285:1 34323:1 34372:1 34393:2 34442:2 34479:1 34488:2 34530:1 34616:1 34624:2 34633:1 34668:1 34739:1 34753:1 34757:1 34773:5 34776:1 34797:1 34810:5 34833:1 34844:1 34881:1 34919:1 34963:1 34966:1 34971:1 34981:1 34982:1 35001:1 35004:3 35015:1 35028:1 35048:1 35058:1 35063:1 35082:1 35102:1 35117:2 35141:1 35154:2 35249:2 35302:1 35305:1 35310:1 35324:1 35335:1 35360:1 35378:1 35382:1 35384:1 35437:3 35515:1 35565:2 35622:1 35646:1 35649:2 35675:1 35684:1 35689:1 35714:1 35741:1 35742:1 35763:1 35864:1 35882:1 35932:1 35978:1 36010:1 36022:1 36128:1 36158:1 36170:1 36202:1 36235:1 36292:1 36318:1 36326:3 36327:1 36329:1 36334:1 36340:1 36342:1 36351:1 36366:1 36370:1 36371:1 36392:1 36396:1 36426:2 36433:1 36438:1 36477:1 36482:1
15 82:2 114:1 129:1 193:2 216:1 255:1 256:1 277:1 300:1 321:3 371:1 404:1 451:1 456:2 511:1 551:2 564:1 578:1 595:2 649:1 677:1 680:1 690:1 692:1 707:1 726:2 730:1 733:1 738:1 745:1 759:2 772:1 773:2 776:1 787:1 848:1 877:1 897:1 1002:1 1042:2 1048:1 1071:1 1075:1 1078:2 1081:1 1096:1 1099:1 1135:2 1154:1 1167:1 1192:1 1231:2 1237:1 1247:1 1272:2 1274:1 1275:1 1307:1 1348:2 1396:1 1418:1 1423:2 1450:1 1473:1 1482:1 1525:2 1535:1 1541:1 1542:1 1553:1 1554:2 1577:1 1606:1 1615:1 1634:1 1654:1 1662:1 1667:1 1737:1 1746:2 1757:3 1807:2 1809:1 1816:1 1819:2 1854:1 1892:1 1901:3 1905:1 1913:2 1919:2 1938:1 1954:1 1997:1 2004:2 2006:2 2017:1 2041:1 2071:1 2097:1 2118:1 2145:1 2148:1 2154:1 2171:2 2223:1 2232:1 2234:2 2239:2 2242:1 2301:1 2371:1 2374:3 2398:1 2596:1 2601:1 2633:1 2684:1 2742:1 2743:1 2780:1 2787:1 2789:2 2791:2 2801:1 2805:1 2810:1 2811:1 2812:1 2821:1 2840:1 2860:1 2905:2 2938:1 2989:1 2990:1 3041:1 3049:1 3167:1 3172:1 3197:1 3202:1 3214:1 3367:1 3370:1 3421:1 3423:2 3495:1 3505:1 3513:1 3547:2 3552:1 3559:1 3569:3 3576:2 3615:2 3635:3 3653:1 3660:1 3664:1 3669:1 3675:1 3775:1 3820:1 3853:1 3866:1 3904:1 3945:1 4033:2 4047:1 4083:1 4091:1 4103:1 4148:3 4161:1 4179:1 4219:1 4261:3 4264:1 4307:1 4319:1 4333:1 4380:1 4413:1 4416:1 4439:1 4452:1 4455:1 4463:1 4465:1 4498:1 4536:1 4541:1 4549:1 4553:1 4556:1 4590:1 4602:1 4608:1 4624:1 4646:1 4687:1 4688:2 4708:1 4741:1 4745:1 4771:1 4774:2 4820:1 4821:3 4826:2 4859:1 4873:1 4874:1 4888:1 4894:1 4898:1 4933:1 4974:1 5027:2 5028:1 5054:1 5063:1 5177:1 5232:1 5255:3 5287:1 5294:2 5310:1 5344:1 5357:1 5366:1 5378:4 5411:1 5421:1 5489:1 5506:1 5519:1 5522:1 5531:1 5581:2 5583:1 5590:1 5607:1 5664:1 5677:1 5683:2 5689:2 5697:1 5718:2 5730:2 5743:1 5838:1 5855:1 5865:1 5866:2 5885:1 5920:1 5925:1 5928:2 6014:1 6021:1 6097:5 6140:1 6145:1 6167:1 6237:4 6257:2 6258:1 6273:1 6277:1 6281:1 6283:1 6287:1 6288:2 6289:1 6291:1 6315:1 6316:1 6321:1 6435:1 6449:1 6458:2 6475:1 6529:1 6543:1 6567:1 6584:1 6605:1 6612:1 6630:3 6695:1 6737:1 6747:1 6772:4 6802:1 6806:1 6822:1 6829:1 6853:3 6877:1 6896:1 6921:1 6922:1 6942:1 6963:2 7037:1 7061:1 7115:1 7136:1 7177:1 7202:2 7227:1 7257:1 7272:1 7281:1 7288:1 7319:1 7321:1 7322:2 7351:2 7385:1 7434:1 7439:1 7444:1 7591:1 7627:2 7661:1 7726:1 7743:1 7747:1 7749:1 7778:1 7782:1 7785:1 7830:2 7836:1 7936:1 7950:1 7964:1 7973:1 8050:1 8062:1 8065:1 8084:1 8085:1 8086:1 8088:1 8091:1 8092:1 8099:2 8101:2 8135:1 8136:1 8147:1 8151:1 8162:1 8193:1 8210:2 8212:2 8223:1 8226:1 8233:2 8269:2 8282:1 8286:2 8304:1 8362:1 8371:1 8389:1 8413:1 8416:1 8420:2 8425:1 8457:1 8464:1 8477:1 8527:2 8557:1 8558:1 8565:1 8615:1 8661:1 8662:1 8678:1 8743:1 8748:1 8757:1 8762:4 8814:1 8897:2 8917:1 8929:1 8959:1 8966:1 9021:2 9061:2 9110:1 9130:2 9201:1 9203:1 9215:1 9234:1 9243:1 9289:2 9390:2 9412:1 9420:1 9433:2 9466:1 9505:1 9535:2 9539:1 9540:1 9544:2 9557:1 9561:1 9576:1 9608:1 9617:1 9622:1 9658:1 9671:1 9677:3 9678:2 9680:1 9710:1 9754:1 9789:3 9813:1 9850:1 9858:1 9862:1 9875:1 9881:10 9904:2 9905:3 9927:1 9948:2 9949:1 9956:1 9971:1 10019:1 10034:1 10039:1 10057:1 10090:1 10122:3 10125:1 10147:1 10189:1 10239:1 10270:1 10279:1 10292:1 10326:1 10340:1 10381:1 10387:1 10395:2 10402:1 10419:2 10445:1 10471:9 10487:1 10500:1 10523:1 10532:1 10536:2 10547:1 10548:1 10558:1 10578:1 10594:1 10596:1 10618:1 10630:1 10647:1 10686:1 10705:1 10753:1 10761:1 10779:1 10820:1 10857:1 10860:1 10899:1 10912:1 10973:1 10976:3 10982:1 10983:1 11019:1 11037:1 11058:1 11091:1 11107:1 11115:1 11158:1 11166:2 11207:1 11208:6 11216:1 11227:1 11231:1 11238:1 11284:1 11311:1 11320:1 11323:1 11342:1 11351:2 11396:3 11611:1 11638:1 11668:1 11673:1 11685:2 11696:3 11725:1 11733:1 11746:1 11779:1 11789:1 11793:1 11818:1 11824:2 11850:1 11867:1 11913:2 11999:1 12015:2 12016:1 12051:1 12075:1 12078:1 12086:1 12092:2 12096:1 12153:2 12183:1 12199:1 12216:1 12220:1 12240:1 12242:1 12243:1 12244:1 12245:1 12324:1 12332:1 12386:4 12403:1 12413:1 12451:1 12479:1 12480:1 12645:3 12702:1 12708:1 12769:2 12776:1 12786:1 12792:1 12809:1 12811:1 12827:1 12847:1 12855:1 12907:1 12921:1 12947:1 12974:2 12985:1 13020:3 13023:1 13032:1 13072:1 13086:1 13104:1 13112:1 13115:1 13126:1 13135:1 13137:2 13146:3 13241:1 13248:1 13267:1 13297:1 13307:1 13335:1 13376:1 13377:2 13378:1 13384:1 13420:1 13443:6 13490:1 13532:1 13540:3 13579:1 13580:2 13593:1 13599:1 13627:1 13642:1 13648:2 13666:1 13676:2 13743:1 13745:1 13762:1 13777:1 13792:1 13844:1 13855:1 13871:1 13899:1 13916:1 13956:2 13982:2 13994:1 14033:1 14096:1 14107:1 14127:1 14129:2 14150:1 14151:1 14166:1 14167:1 14170:1 14180:1 14192:2 14195:1 14208:1 14210:2 14214:1 14221:1 14244:1 14281:1 14288:2 14326:1 14371:1 14397:1 14437:2 14459:1 14472:4 14482:1 14493:1 14503:1 14507:1 14530:1 14544:1 14552:1 14590:1 14619:1 14621:1 14638:1 14640:1 14683:1 14705:1 14718:1 14720:1 14750:1 14806:1 14841:1 14894:2 14920:1 14921:1 14954:1 14969:1 14978:3 14982:1 14985:1 14988:1 14997:1 14998:1 15008:1 15057:1 15061:1 15071:2 15074:2 15110:3 15211:1 15221:2 15228:1 15258:1 15334:2 15344:2 15345:2 15368:1 15380:1 15425:1 15472:4 15497:1 15503:1 15510:4 15517:2 15534:1 15552:1 15563:3 15584:1 15594:2 15609:1 15624:1 15646:2 15706:1 15743:1 15753:2 15768:1 15779:1 15823:1 15839:1 15865:1 15907:1 15938:1 15971:1 16036:1 16045:1 16136:1 16145:1 16184:1 16212:1 16213:1 16218:1 16233:1 16253:1 16285:1 16287:3 16319:1 16333:2 16355:1 16434:1 16469:1 16540:1 16557:1 16559:1 16581:1 16586:2 16757:1 16762:1 16773:1 16788:1 16802:4 16824:1 16836:1 16840:1 16857:1 16879:4 16895:1 16899:1 16910:1 16934:1 16982:3 16993:1 16994:2 17002:1 17021:1 17042:2 17051:1 17081:4 17086:1 17092:3 17151:2 17156:1 17203:1 17234:1 17239:1 17269:1 17278:3 17305:1 17345:1 17384:1 17432:1 17440:1 17469:1 17518:1 17528:1 17561:2 17567:1 17585:1 17679:1 17686:1 17744:1 17770:1 17786:1 17790:1 17872:1 17914:1 17918:1 17930:1 17950:1 17959:3 18005:1 18055:1 18058:1 18161:1 18220:2 18235:1 18248:1 18314:1 18340:1 18403:1 18407:1 18429:1 18467:1 18493:1 18513:1 18536:1 18608:1 18662:1 18664:1 18687:1 18718:1 18727:1 18742:2 18750:7 18806:1 18827:1 18868:1 18902:1 18919:1 18989:1 19018:1 19025:1 19036:6 19089:1 19112:1 19129:1 19156:1 19179:6 19181:1 19202:1 19203:1 19237:1 19282:1 19328:2 19335:1 19345:1 19365:1 19389:1 19394:1 19395:1 19439:2 19589:1 19631:1 19641:1 19659:1 19695:1 19703:1 19713:1 19728:2 19756:1 19757:1 19767:1 19788:1 19812:1 19852:1 19912:1 19924:2 19980:1 19984:1 20022:3 20128:2 20129:2 20130:1 20143:1 20164:1 20170:1 20189:1 20190:1 20192:1 20200:1 20212:1 20226:4 20234:1 20299:1 20303:1 20304:2 20306:4 20334:1 20343:3 20353:1 20382:1 20434:1 20445:1 20502:2 20518:1 20546:1 20557:1 20580:1 20597:1 20608:2 20619:1 20627:1 20632:1 20645:1 20652:1 20657:3 20662:2 20667:1 20672:1 20686:1 20730:1 20823:1 20852:1 20857:2 20865:1 20874:1 20877:1 20893:1 20920:1 20940:1 20955:1 20965:1 20973:5 21029:1 21039:1 21087:1 21108:1 21115:1 21139:1 21159:1 21172:1 21185:1 21226:1 21257:1 21274:1 21294:1 21309:1 21311:1 21327:1 21333:2 21378:3 21496:1 21505:1 21510:3 21514:1 21515:1 21543:1 21546:1 21595:25 21599:1 21631:1 21645:1 21661:1 21662:1 21668:1 21681:1 21683:1 21690:1 21724:1 21749:1 21783:1 21797:1 21855:1 21870:1 21924:1 21944:1 21949:2 22126:1 22170:1 22172:1 22175:2 22179:1 22188:1 22193:1 22196:1 22201:1 22248:1 22281:3 22282:3 22400:1 22414:3 22429:3 22430:1 22477:1 22497:1 22529:1 22546:1 22574:1 22575:1 22582:1 22616:1 22666:2 22674:1 22679:1 22698:1 22761:1 22788:1 22795:1 22803:1 22851:1 22864:1 22878:1 22912:1 22915:1 22922:1 22973:1 22991:1 22997:1 23025:2 23126:1 23197:1 23200:1 23215:1 23232:1 23255:1 23256:1 23297:2 23306:1 23322:1 23401:2 23450:1 23464:1 23480:1 23527:1 23543:1 23549:1 23555:3 23568:1 23584:2 23660:1 23667:1 23721:1 23725:1826 23753:1 23856:1 23867:1 23903:1 23935:1 23945:1 23978:1 23991:1 23995:1 24000:1 24001:1 24083:1 24089:1 24125:1 24146:1 24150:1 24179:1 24204:1 24238:1 24245:2 24277:1 24281:3 24284:1 24354:1 24393:1 24409:1 24441:1 24489:1 24531:1 24533:1 24545:2 24588:1 24593:2 24631:1 24669:1 24700:1 24723:1 24763:1 24777:1 24805:3 24848:1 24851:1 24874:2 24875:1 24881:1 24988:1 25042:1 25047:1 25055:1 25072:1 25111:1 25112:1 25170:1 25206:2 25261:1 25265:2 25283:1 25286:1 25308:1 25312:1 25327:1 25328:2 25356:1 25357:3 25376:3 25382:1 25398:1 25413:1 25437:1 25497:1 25531:2 25552:2 25563:1 25609:1 25710:3 25724:1 25769:1 25774:2 25782:1 25844:1 25890:1 25892:1 25896:1 25907:1 25919:1 25944:2 25952:1 25977:3 25981:2 25990:1 25994:1 25998:1 26001:1 26050:1 26078:1 26090:1 26105:1 26119:1 26124:1 26156:2 26169:3 26199:1 26200:1 26233:1 26242:1 26250:3 26262:1 26279:1 26287:1 26301:1 26305:1 26308:4 26314:1 26326:1 26372:1 26379:1 26392:1 26394:1 26398:2 26404:1 26417:1 26422:1 26424:1 26440:1 26456:1 26504:1 26524:1 26529:1 26537:1 26541:2 26544:1 26560:1 26562:1 26563:2 26585:1 26589:1 26608:1 26681:1 26695:1 26697:1 26698:1 26700:1 26729:4 26757:1 26808:1 26846:1 26855:1 26856:1 26858:1 26883:1 26897:1 26904:1 26944:1 27005:1 27073:1 27091:1 27092:2 27095:1 27101:1 27108:2 27127:1 27139:1 27141:1 27178:1 27303:2 27306:2 27333:2 27347:1 27371:1 27396:1 27415:1 27475:1 27482:1 27498:2 27524:1 27538:1 27560:1 27592:1 27624:1 27677:1 27710:1 27750:1 27772:1 27803:1 27810:1 27930:1 27956:1 28002:1 28029:1 28045:2 28069:2 28079:1 28094:5 28102:1 28115:1 28189:1 28226:1 28227:1 28314:1 28342:1 28354:1 28404:1 28423:1 28427:1 28433:1 28488:1 28659:1 28741:1 28759:1 28884:1 28991:1 28998:1 28999:1 29007:1 29010:1 29016:1 29031:1 29032:1 29058:1 29059:1 29091:1 29105:2 29141:1 29146:1 29156:1 29168:1 29172:2 29187:1 29203:2 29263:1 29304:1 29307:1 29311:1 29322:1 29335:1 29351:2 29405:1 29428:2 29451:1 29465:1 29506:1 29516:1 29521:1 29529:1 29553:2 29555:1 29570:1 29583:1 29625:2 29632:1 29669:1 29686:1 29762:2 29795:1 29832:1 29859:1 29871:1 29880:1 29892:1 29954:1 30036:2 30042:1 30052:1 30080:1 30091:1 30122:1 30128:1 30152:1 30157:1 30249:3 30266:7 30281:1 30301:1 30375:1 30386:1 30426:1 30430:3 30438:2 30465:1 30467:1 30480:2 30484:2 30489:1 30490:1 30521:1 30537:1 30563:1 30586:1 30591:1 30622:1 30640:2 30663:3 30668:3 30671:1 30681:1 30706:1 30711:2 30743:1 30752:1 30796:2 30811:1 30885:1 30893:1 30923:2 30926:3 30940:1 30960:1 31030:1 31060:1 31134:1 31148:1 31157:1 31180:1 31201:1 31214:1 31216:1 31355:4 31358:3 31396:1 31415:1 31427:1 31449:1 31455:1 31456:1 31479:1 31544:2 31558:1 31570:1 31579:1 31584:1 31598:1 31606:1 31612:1 31640:1 31667:2 31680:3 31696:1 31722:1 31746:2 31753:1 31798:1 31799:1 31835:1 31836:1 31839:1 31857:1 31904:1 31982:1 32016:2 32017:1 32036:1 32055:1 32150:1 32175:1 32178:1 32199:1 32209:1 32230:1 32236:1 32244:1 32252:1 32284:1 32299:2 32328:2 32331:1 32346:1 32384:2 32414:1 32492:3 32507:2 32521:1 32528:3 32533:1 32578:1 32653:1 32711:1 32772:1 32779:1 32783:1 32787:1 32792:1 32800:1 32835:1 32853:1 32862:1 32870:1 32874:4 32879:1 32880:1 32908:1 32928:1 32974:1 32986:2 33006:1 33020:1 33026:1 33054:1 33070:2 33118:2 33144:1 33203:2 33212:1 33215:1 33216:1 33230:1 33250:1 33356:1 33394:1 33399:1 33400:1 33406:2 33444:1 33507:1 33514:2 33518:1 33527:1 33531:1 33533:2 33534:1 33549:1 33560:2 33620:1 33654:1 33712:1 33721:1 33723:1 33767:2 33773:1 33825:1 33844:1 33849:2 33856:2 33861:1 33889:1 33896:1 33925:1 33936:1 33938:1 33998:1 34029:1 34040:2 34047:1 34059:1 34060:1 34067:1 34068:2 34132:2 34172:1 34184:1 34197:1 34200:1 34212:2 34219:1 34263:1 34267:1 34285:1 34323:1 34372:1 34393:2 34442:2 34479:1 34488:2 34530:1 34616:1 34624:2 34633:1 34668:1 34739:1 34753:1 34757:1 34773:5 34776:1 34797:1 34810:5 34833:1 34844:1 34881:1 34919:1 34932:1 34963:1 34966:1 34971:1 34981:1 34982:1 35001:1 35004:3 35015:1 35028:1 35048:1 35058:1 35063:1 35074:2 35082:1 35102:1 35117:2 35141:1 35154:2 35249:2 35302:1 35305:1 35310:1 35324:1 35335:1 35360:1 35378:1 35382:1 35384:1 35437:3 35515:1 35565:2 35622:1 35646:1 35649:2 35675:1 35684:1 35689:1 35714:1 35741:1 35742:1 35763:1 35864:1 35882:1 35932:1 35978:1 36010:1 36022:1 36104:1 36128:1 36158:1 36170:1 36202:1 36235:1 36292:1 36318:1 36326:3 36327:1 36329:2 36334:1 36340:1 36342:1 36351:1 36366:1 36370:1 36371:1 36392:1 36396:1 36426:2 36433:1 36438:1 36477:1 36482:1
15 82:2 114:1 129:1 193:2 216:1 255:1 256:1 277:1 300:1 321:3 371:1 404:1 451:2 456:2 511:1 551:2 564:1 578:1 595:2 649:1 677:1 680:1 690:1 692:1 707:1 726:2 730:1 733:1 738:1 745:1 759:2 772:1 773:2 776:1 787:1 848:1 877:1 897:1 936:2 1002:1 1042:2 1048:1 1071:1 1075:1 1078:2 1081:1 1096:1 1099:1 1133:1 1135:2 1140:1 1154:1 1167:2 1192:1 1231:2 1237:1 1247:1 1272:2 1274:1 1275:1 1307:1 1348:2 1396:1 1418:1 1423:2 1450:1 1473:2 1482:1 1525:2 1535:1 1541:1 1542:1 1553:1 1554:2 1577:1 1606:1 1615:1 1624:1 1634:1 1654:1 1662:1 1667:1 1737:1 1746:2 1757:4 1807:2 1809:1 1816:1 1819:3 1854:1 1870:1 1892:1 1901:3 1905:1 1913:2 1919:2 1938:1 1954:1 1997:1 2004:2 2006:2 2017:1 2041:1 2071:1 2097:1 2118:1 2145:1 2148:1 2154:1 2171:2 2223:1 2227:1 2232:1 2234:2 2239:2 2242:1 2301:1 2371:1 2374:3 2398:1 2596:1 2601:1 2633:1 2684:1 2742:1 2743:1 2780:1 2787:1 2789:2 2791:2 2801:1 2805:2 2810:1 2811:1 2812:1 2820:1 2821:1 2840:1 2860:1 2905:2 2938:1 2989:1 2990:1 3041:1 3049:1 3063:1 3167:1 3172:1 3197:1 3202:1 3214:1 3314:1 3367:1 3370:1 3421:1 3423:2 3495:1 3505:1 3513:1 3547:2 3552:1 3559:1 3569:3 3576:2 3615:2 3635:4 3653:1 3660:1 3664:1 3669:1 3675:1 3775:1 3820:1 3853:1 3866:1 3904:1 3945:1 4033:2 4047:1 4083:1 4091:1 4103:1 4148:3 4161:1 4179:1 4219:1 4261:3 4264:1 4307:1 4319:1 4333:1 4380:1 4413:1 4416:1 4439:1 4452:1 4455:1 4463:1 4465:1 4498:1 4501:1 4536:1 4541:1 4549:1 4553:1 4556:1 4590:1 4602:1 4608:1 4624:1 4646:1 4687:2 4688:2 4708:1 4741:1 4742:1 4745:1 4771:1 4774:2 4820:1 4821:3 4826:2 4859:1 4873:1 4874:1 4888:1 4894:1 4898:1 4933:1 4974:1 5027:2 5028:1 5054:1 5063:1 5177:1 5201:1 5232:1 5255:3 5287:1 5294:2 5310:1 5344:1 5347:1 5357:1 5366:1 5378:4 5411:1 5421:1 5438:1 5489:1 5506:1 5519:1 5522:1 5531:1 5581:2 5583:1 5590:1 5607:1 5664:1 5677:1 5683:2 5689:2 5697:1 5718:2 5730:2 5743:1 5838:1 5855:1 5865:1 5866:2 5885:1 5920:1 5925:1 5928:2 6014:1 6021:1 6097:5 6140:1 6145:1 6167:1 6237:4 6257:2 6258:1 6273:1 6277:1 6281:1 6283:1 6287:1 6288:2 6289:1 6291:1 6315:1 6316:1 6321:1 6435:1 6449:1 6458:2 6475:1 6529:1 6543:1 6567:1 6584:1 6605:1 6612:1 6630:3 6695:1 6737:1 6747:1 6772:4 6802:1 6806:1 6822:1 6829:1 6853:3 6877:1 6896:1 6921:1 6922:1 6942:1 6963:2 7037:1 7061:1 7115:1 7136:1 7177:1 7202:2 7227:1 7257:1 7272:1 7281:1 7288:1 7319:1 7321:1 7322:2 7351:2 7385:1 7434:1 7439:1 7444:1 7591:1 7627:2 7661:1 7726:1 7743:1 7747:1 7749:1 7778:1 7782:1 7785:1 7830:2 7836:1 7936:1 7950:1 7964:1 7973:1 8050:1 8062:1 8065:1 8084:1 8085:1 8086:1 8088:1 8091:1 8092:1 8099:2 8101:3 8135:1 8136:1 8147:1 8151:1 8162:1 8163:1 8176:1 8193:1 8210:2 8212:2 8223:1 8226:1 8233:2 8269:2 8282:1 8286:2 8304:1 8362:1 8371:1 8389:1 8413:1 8416:1 8420:2 8425:1 8457:1 8464:1 8477:1 8527:2 8557:1 8558:1 8565:1 8615:1 8661:1 8662:1 8678:1 8743:1 8748:1 8757:1 8762:4 8814:1 8846:1 8874:1 8897:2 8917:1 8929:1 8959:1 8966:1 9021:2 9061:2 9068:1 9110:1 9130:3 9140:1 9201:1 9203:1 9215:1 9234:1 9243:1 9282:1 9289:3 9390:2 9412:1 9420:1 9433:2 9466:1 9505:1 9535:2 9539:1 9540:1 9544:2 9557:1 9561:1 9576:1 9608:1 9617:1 9622:1 9658:1 9671:1 9677:3 9678:2 9680:1 9710:1 9754:1 9789:3 9813:1 9850:1 9858:2 9862:1 9875:1 9881:11 9892:1 9904:2 9905:4 9927:1 9948:2 9949:1 9956:1 9971:1 10019:1 10027:1 10034:1 10039:1 10057:2 10090:1 10122:3 10125:1 10147:1 10189:1 10239:1 10270:1 10279:1 10292:1 10326:1 10340:1 10381:1 10387:1 10395:2 10402:1 10419:2 10445:1 10471:10 10487:1 10500:1 10523:1 10532:1 10536:2 10547:1 10548:2 10558:1 10578:1 10594:2 10596:1 10618:1 10630:1 10647:1 10686:1 10705:1 10753:1 10761:1 10779:1 10820:1 10857:1 10860:1 10899:2 10912:1 10973:1 10976:3 10982:1 10983:1 11019:1 11029:1 11037:1 11058:1 11091:1 11107:1 11115:1 11158:1 11166:2 11207:1 11208:6 11216:1 11227:1 11231:1 11238:1 11284:1 11311:1 11320:1 11323:1 11342:1 11351:2 11396:3 11573:1 11611:1 11638:1 11668:1 11673:1 11685:2 11696:3 11725:1 11733:1 11746:1 11779:1 11789:1 11793:1 11818:1 11824:2 11850:1 11867:1 11913:2 11999:1 12015:2 12016:1 12051:1 12075:1 12078:1 12086:1 12092:2 12096:1 12153:2 12183:1 12199:1 12216:1 12220:1 12234:1 12236:1 12240:1 12242:1 12243:1 12244:1 12245:1 12324:1 12332:1 12386:4 12403:1 12413:1 12451:1 12479:1 12480:1 12645:3 12702:2 12708:2 12769:2 12776:1 12786:1 12792:1 12809:1 12811:1 12827:1 12847:1 12855:1 12907:1 12921:1 12947:1 12974:2 12975:1 12985:1 13020:3 13023:1 13032:1 13072:1 13086:1 13104:1 13112:1 13114:1 13115:1 13126:1 13135:1 13137:2 13146:3 13241:1 13248:1 13254:1 13267:1 13297:1 13307:1 13335:1 13376:1 13377:2 13378:1 13384:1 13420:1 13443:6 13490:1 13532:1 13540:4 13579:1 13580:2 13593:1 13599:1 13627:1 13642:1 13648:2 13666:1 13676:2 13743:1 13745:1 13762:1 13777:1 13792:1 13844:1 13855:1 13871:1 13899:1 13916:1 13956:2 13982:2 13994:1 14033:1 14096:1 14107:1 14127:1 14129:2 14150:1 14151:1 14166:1 14167:1 14170:1 14180:1 14192:2 14195:1 14208:1 14210:2 14214:1 14221:1 14244:1 14281:1 14288:2 14326:1 14371:1 14397:1 14437:2 14459:1 14472:4 14482:1 14493:1 14503:1 14507:1 14530:1 14544:1 14552:1 14590:1 14619:1 14621:1 14638:1 14640:1 14683:1 14705:1 14718:1 14720:1 14750:1 14787:1 14806:1 14841:1 14894:2 14920:1 14921:1 14954:1 14969:1 14978:3 14982:1 14985:1 14988:1 14997:1 14998:1 15008:1 15057:1 15061:1 15071:2 15074:2 15110:3 15211:1 15221:2 15228:1 15258:1 15334:2 15344:2 15345:2 15368:1 15380:1 15425:1 15444:1 15472:4 15497:1 15503:1 15510:4 15517:2 15534:1 15552:1 15563:3 15584:1 15594:2 15609:1 15624:1 15641:1 15646:2 15706:1 15721:2 15743:1 15753:2 15768:1 15779:1 15823:1 15839:1 15865:1 15907:1 15938:1 15971:1 16036:1 16045:1 16082:1 16136:1 16145:1 16184:1 16212:1 16213:1 16218:1 16233:1 16253:1 16285:1 16287:3 16319:1 16333:2 16355:1 16434:1 16469:1 16540:1 16557:1 16559:1 16581:1 16586:2 16757:1 16762:1 16773:1 16788:1 16802:4 16824:1 16836:1 16840:1 16857:1 16879:4 16895:1 16899:1 16910:1 16934:1 16982:3 16993:1 16994:2 17002:1 17021:1 17042:2 17051:1 17059:1 17081:4 17086:1 17092:3 17151:2 17156:1 17203:1 17234:1 17239:1 17269:1 17278:3 17305:1 17345:1 17371:1 17384:1 17432:1 17440:1 17469:1 17518:1 17528:1 17561:2 17567:2 17585:1 17679:1 17686:1 17744:1 17757:1 17770:1 17786:1 17790:1 17872:1 17914:1 17918:1 17930:1 17950:1 17959:3 18005:1 18055:1 18058:1 18161:1 18220:2 18230:1 18235:1 18248:1 18314:1 18340:1 18345:2 18384:1 18403:1 18407:1 18429:1 18456:1 18467:1 18493:1 18513:1 18536:1 18608:1 18662:1 18664:1 18687:1 18718:1 18727:1 18742:2 18750:7 18806:1 18827:1 18868:1 18902:1 18919:1 18947:1 18989:1 19018:1 19025:1 19036:6 19084:1 19087:1 19089:1 19112:1 19129:1 19156:1 19179:6 19181:1 19202:1 19203:1 19237:1 19282:1 19328:2 19335:1 19345:1 19365:1 19389:1 19394:1 19395:1 19439:2 19589:1 19631:1 19641:1 19659:1 19695:1 19703:1 19713:1 19728:2 19756:1 19757:1 19767:1 19788:1 19812:1 19852:1 19875:1 19912:1 19924:2 19964:1 19980:1 19984:1 20022:3 20128:2 20129:2 20130:1 20143:1 20164:1 20170:1 20189:1 20190:1 20192:1 20200:1 20212:1 20226:4 20234:1 20297:1 20299:1 20303:1 20304:2 20306:4 20334:1 20343:3 20353:1 20382:1 20391:1 20434:1 20445:1 20502:3 20518:1 20546:1 20557:1 20580:1 20597:1 20608:2 20619:1 20627:1 20632:1 20645:1 20652:1 20657:3 20662:3 20667:1 20672:1 20686:1 20730:1 20823:1 20852:1 20857:2 20865:1 20874:1 20877:1 20893:1 20907:1 20920:1 20940:1 20955:2 20965:1 20973:5 21029:1 21039:1 21087:1 21108:1 21115:1 21139:1 21159:1 21172:1 21185:1 21226:1 21257:1 21274:1 21294:2 21309:1 21311:1 21327:1 21333:3 21378:3 21476:1 21496:1 21505:1 21510:3 21514:1 21515:1 21543:1 21546:1 21595:25 21599:1 21631:1 21645:1 21661:1 21662:1 21668:1 21681:1 21683:1 21690:1 21722:1 21724:1 21749:1 21783:1 21797:1 21855:1 21870:1 21924:1 21944:1 21949:2 22068:1 22126:1 22170:1 22172:1 22175:2 22179:1 22188:1 22193:1 22196:1 22201:1 22248:1 22281:3 22282:3 22400:1 22414:3 22429:3 22430:1 22477:1 22497:1 22520:1 22529:1 22546:1 22574:1 22575:1 22582:1 22616:1 22666:2 22674:1 22679:1 22698:1 22761:1 22788:1 22795:1 22803:1 22851:1 22864:2 22878:1 22912:1 22915:1 22922:1 22969:1 22973:1 22991:1 22997:1 23015:1 23025:2 23126:1 23197:1 23200:1 23215:1 23232:1 23255:1 23256:1 23297:2 23306:1 23307:1 23322:1 23401:2 23450:1 23464:2 23480:1 23527:1 23543:1 23549:1 23555:3 23568:1 23584:2 23660:1 23667:1 23721:1 23725:1923 23753:1 23856:1 23867:1 23903:1 23935:1 23945:1 23978:1 23991:1 23995:1 24000:1 24001:1 24083:1 24089:1 24125:1 24146:1 24150:1 24179:1 24204:1 24237:1 24238:1 24242:1 24245:2 24277:1 24281:3 24284:1 24354:1 24393:1 24409:1 24441:1 24489:1 24515:1 24531:1 24533:1 24545:4 24588:1 24593:4 24597:1 24604:1 24631:1 24669:1 24700:1 24723:1 24763:1 24777:1 24805:3 24848:1 24851:1 24874:2 24875:1 24881:1 24982:1 24988:2 25042:1 25047:1 25055:1 25072:1 25111:1 25112:1 25141:1 25170:1 25206:2 25261:1 25265:2 25275:1 25283:1 25286:1 25308:1 25312:1 25327:1 25328:3 25356:1 25357:3 25376:3 25382:1 25398:1 25408:1 25413:1 25437:1 25497:1 25531:3 25532:1 25552:2 25563:1 25609:1 25710:3 25724:1 25769:1 25774:2 25782:1 25844:1 25890:1 25892:1 25896:1 25907:1 25919:1 25944:2 25952:1 25977:4 25981:2 25990:1 25994:1 25998:1 26001:1 26050:1 26078:1 26090:1 26105:1 26119:1 26124:1 26156:2 26169:3 26199:1 26200:1 26218:1 26233:1 26242:1 26250:4 26262:1 26279:1 26287:1 26301:1 26305:1 26308:4 26314:1 26326:1 26372:1 26379:1 26392:1 26394:1 26398:2 26404:1 26417:1 26422:1 26424:1 26440:1 26456:1 26504:1 26524:1 26529:1 26537:1 26541:2 26544:1 26560:1 26562:1 26563:2 26585:1 26589:1 26608:1 26681:1 26695:1 26697:1 26698:1 26700:1 26729:4 26757:1 26808:1 26846:1 26855:1 26856:1 26858:1 26883:1 26897:1 26904:1 26944:1 27002:1 27005:2 27073:1 27091:1 27092:2 27095:1 27101:1 27108:2 27127:2 27139:1 27141:1 27178:1 27193:1 27303:2 27306:2 27333:2 27347:1 27371:1 27396:1 27415:1 27475:1 27482:1 27498:2 27524:1 27538:1 27560:1 27592:1 27624:1 27677:1 27710:1 27750:1 27772:1 27803:1 27810:1 27841:1 27930:1 27956:1 28002:1 28029:1 28045:3 28069:2 28079:1 28094:5 28102:1 28115:1 28189:1 28192:1 28226:1 28227:1 28314:1 28342:1 28354:1 28404:1 28423:1 28427:1 28433:2 28488:1 28659:1 28741:1 28759:1 28884:1 28991:1 28998:1 28999:1 29007:1 29010:1 29016:1 29031:1 29032:1 29058:1 29059:1 29091:1 29105:2 29141:1 29146:1 29156:1 29168:1 29172:3 29187:1 29203:2 29263:2 29285:1 29304:1 29307:1 29311:1 29322:1 29335:1 29351:2 29405:1 29428:2 29451:1 29465:1 29506:1 29516:1 29521:1 29529:1 29553:2 29555:1 29570:1 29583:1 29625:2 29632:1 29669:1 29686:1 29744:1 29762:2 29795:1 29832:1 29859:1 29871:1 29880:1 29892:1 29954:1 30036:2 30042:1 30052:1 30080:1 30091:1 30122:1 30128:1 30152:1 30157:1 30249:3 30266:7 30281:1 30301:1 30375:1 30386:1 30426:1 30430:3 30438:2 30465:1 30467:1 30480:2 30484:2 30489:1 30490:1 30521:1 30537:1 30557:1 30563:1 30586:1 30591:1 30622:1 30640:2 30663:3 30668:3 30671:1 30681:1 30706:1 30711:2 30743:1 30752:1 30796:2 30811:1 30885:1 30893:1 30923:2 30926:3 30940:1 30960:1 31030:1 31060:1 31064:1 31134:1 31148:1 31157:1 31180:1 31201:1 31214:1 31216:1 31322:1 31355:4 31358:3 31396:1 31415:1 31427:1 31449:1 31455:1 31456:1 31479:1 31544:2 31558:1 31570:1 31579:1 31584:1 31598:1 31606:1 31612:1 31640:1 31667:2 31680:3 31696:1 31722:1 31746:2 31753:1 31798:1 31799:1 31835:1 31836:1 31839:1 31857:1 31904:1 31982:1 32016:2 32017:1 32036:1 32055:1 32150:1 32175:1 32178:1 32199:1 32209:1 32230:1 32236:1 32244:1 32252:1 32256:1 32284:1 32299:2 32328:2 32331:1 32346:1 32384:2 32414:1 32492:3 32507:2 32521:1 32528:3 32533:1 32578:1 32653:1 32711:1 32713:1 32772:1 32779:1 32783:1 32787:1 32792:1 32800:1 32835:1 32853:1 32862:1 32870:1 32874:4 32879:1 32880:1 32908:1 32928:1 32974:1 32986:2 33006:1 33020:1 33026:1 33054:1 33070:2 33118:2 33144:1 33203:2 33212:1 33215:1 33216:1 33230:1 33250:1 33356:1 33394:1 33399:1 33400:1 33406:2 33444:1 33507:1 33514:2 33518:1 33527:1 33531:1 33533:2 33534:1 33549:1 33560:2 33620:1 33654:1 33712:1 33721:1 33723:1 33728:1 33767:2 33773:1 33825:1 33844:1 33849:2 33856:2 33861:1 33889:1 33896:1 33925:1 33936:1 33938:1 33950:1 33998:1 34029:1 34040:2 34047:1 34059:1 34060:1 34067:1 34068:2 34132:2 34172:1 34184:1 34197:1 34200:1 34212:2 34219:1 34263:1 34267:1 34285:1 34323:1 34372:1 34393:2 34442:2 34479:1 34488:2 34530:1 34616:1 34624:2 34633:1 34668:1 34739:1 34753:1 34757:1 34773:5 34774:1 34776:1 34794:1 34797:1 34810:5 34833:1 34844:1 34881:1 34919:1 34932:1 34963:1 34966:1 34971:1 34981:1 34982:1 35001:1 35004:3 35015:1 35028:1 35048:1 35058:1 35063:1 35074:2 35082:1 35102:1 35117:2 35141:1 35154:2 35161:1 35179:1 35223:1 35249:2 35302:1 35305:1 35310:1 35316:1 35324:1 35335:1 35360:1 35378:1 35382:1 35384:1 35437:3 35459:1 35515:1 35565:2 35622:1 35646:1 35649:2 35675:1 35684:1 35689:1 35714:1 35741:1 35742:1 35763:1 35846:1 35864:1 35882:1 35932:1 35978:1 36010:1 36022:1 36053:1 36104:1 36128:1 36158:1 36170:1 36202:1 36235:1 36292:1 36312:1 36318:1 36326:3 36327:1 36329:2 36334:2 36340:1 36342:1 36351:1 36366:1 36370:1 36371:1 36392:1 36396:1 36415:1 36426:2 36433:1 36438:1 36477:1 36482:1
15 82:2 114:1 129:1 193:2 216:1 225:1 255:1 256:1 277:1 300:1 321:3 371:1 404:1 451:2 456:2 511:1 551:2 564:1 578:1 595:2 649:1 677:1 680:1 690:1 692:1 707:1 726:2 730:1 733:1 738:1 745:1 759:2 772:1 773:2 776:1 787:1 848:1 877:1 897:1 936:2 1002:1 1042:2 1048:1 1071:1 1075:1 1078:2 1081:1 1096:1 1099:1 1133:1 1135:2 1140:1 1154:1 1167:2 1192:1 1231:2 1237:1 1247:1 1272:2 1274:1 1275:1 1307:1 1316:1 1348:2 1396:1 1418:1 1423:2 1450:1 1473:2 1482:1 1525:2 1535:1 1541:1 1542:1 1553:1 1554:2 1577:1 1606:1 1615:1 1624:1 1634:1 1635:1 1654:1 1662:1 1667:1 1723:1 1737:1 1746:2 1757:4 1796:1 1807:2 1809:1 1816:1 1819:3 1854:1 1870:1 1892:1 1901:3 1905:2 1913:2 1919:2 1938:1 1954:1 1997:1 2004:2 2006:2 2017:1 2041:1 2071:1 2097:1 2118:1 2145:1 2148:2 2154:1 2171:2 2223:1 2227:1 2232:1 2234:2 2239:2 2242:1 2301:1 2371:1 2374:3 2393:1 2398:1 2596:1 2601:1 2633:1 2684:1 2742:1 2743:1 2780:1 2787:1 2789:2 2791:2 2801:1 2805:2 2810:1 2811:1 2812:1 2820:2 2821:1 2840:1 2860:1 2905:2 2938:1 2989:1 2990:1 3041:1 3049:1 3063:2 3167:1 3172:1 3197:1 3202:1 3214:1 3314:2 3367:1 3370:1 3421:1 3423:2 3495:1 3505:1 3513:1 3547:2 3552:1 3559:1 3569:3 3576:2 3615:2 3635:4 3653:1 3660:1 3664:1 3669:1 3675:1 3758:1 3775:1 3820:1 3853:1 3866:1 3904:1 3945:1 4033:2 4047:1 4083:1 4091:1 4103:1 4148:3 4161:1 4179:1 4219:1 4261:3 4264:1 4307:1 4319:1 4333:1 4380:1 4413:1 4416:1 4439:1 4452:1 4455:1 4463:1 4465:1 4498:1 4501:1 4536:1 4541:1 4549:1 4553:1 4556:1 4590:1 4602:1 4608:1 4624:1 4646:1 4687:2 4688:2 4708:1 4741:1 4742:1 4745:1 4771:1 4774:2 4820:1 4821:3 4826:2 4859:1 4873:1 4874:1 4888:1 4894:1 4898:1 4933:1 4974:1 5027:2 5028:1 5054:1 5063:1 5177:1 5201:1 5232:1 5255:3 5287:1 5294:2 5298:1 5310:1 5314:1 5344:1 5347:1 5357:1 5366:1 5378:4 5411:1 5421:1 5438:1 5489:1 5506:1 5519:1 5522:1 5531:1 5581:2 5583:1 5590:1 5607:1 5664:1 5677:1 5683:2 5689:2 5697:1 5718:2 5730:2 5743:1 5838:1 5855:1 5865:1 5866:2 5885:1 5920:1 5925:1 5928:2 6014:1 6021:1 6097:5 6140:1 6145:1 6167:1 6237:4 6257:2 6258:1 6273:1 6277:1 6281:1 6283:1 6287:1 6288:2 6289:1 6291:1 6315:1 6316:1 6321:1 6435:1 6449:1 6458:2 6475:1 6529:1 6543:1 6564:1 6567:1 6584:2 6605:1 6612:1 6630:3 6695:1 6737:1 6747:1 6772:4 6802:1 6806:1 6822:1 6829:1 6853:3 6877:1 6896:1 6909:1 6921:1 6922:1 6942:1 6963:2 7037:1 7061:1 7115:1 7136:1 7177:1 7202:2 7227:1 7257:1 7272:1 7281:1 7288:1 7319:1 7321:1 7322:2 7351:2 7385:1 7434:1 7439:1 7444:1 7591:1 7627:2 7661:1 7726:1 7743:1 7747:1 7749:1 7778:1 7782:1 7785:1 7830:2 7836:1 7936:1 7950:1 7964:1 7973:1 8045:1 8050:1 8062:1 8065:1 8084:1 8085:1 8086:1 8088:1 8091:1 8092:1 8099:3 8101:3 8135:1 8136:1 8147:1 8151:1 8162:1 8163:1 8176:1 8193:1 8210:2 8212:2 8223:1 8226:1 8233:2 8269:2 8282:1 8286:2 8304:1 8362:1 8371:1 8389:1 8413:1 8416:1 8420:2 8425:1 8457:1 8464:1 8477:1 8527:2 8557:1 8558:1 8565:1 8615:1 8661:1 8662:1 8671:1 8678:1 8743:1 8748:1 8757:1 8762:4 8814:1 8846:1 8874:1 8897:2 8917:1 8929:1 8959:1 8966:1 9021:2 9061:2 9068:1 9110:1 9130:3 9140:1 9201:1 9203:1 9215:1 9234:1 9243:1 9282:1 9289:3 9390:2 9412:1 9420:1 9433:2 9466:1 9505:1 9535:2 9539:1 9540:1 9544:2 9557:1 9561:1 9576:1 9608:1 9617:1 9622:1 9658:1 9671:1 9677:3 9678:2 9680:1 9710:1 9754:1 9789:3 9813:1 9850:1 9858:2 9862:1 9875:1 9881:12 9892:1 9904:2 9905:4 9927:1 9948:2 9949:1 9956:1 9971:1 10019:1 10027:1 10034:1 10039:1 10057:2 10089:1 10090:1 10122:3 10125:1 10133:1 10147:1 10189:1 10228:1 10239:1 10270:1 10279:1 10292:1 10326:1 10340:1 10381:1 10387:1 10395:2 10402:1 10419:2 10445:1 10470:1 10471:10 10487:1 10500:1 10523:1 10532:1 10536:2 10547:1 10548:2 10558:1 10578:2 10594:2 10596:1 10618:1 10630:1 10647:1 10686:1 10705:1 10753:1 10761:1 10779:1 10820:1 10857:1 10860:1 10899:2 10912:1 10973:1 10976:3 10982:1 10983:1 11019:1 11029:1 11037:1 11058:1 11091:1 11107:1 11115:1 11158:1 11166:2 11207:1 11208:6 11216:1 11227:1 11231:1 11238:1 11284:1 11311:1 11320:1 11323:1 11342:1 11351:2 11396:3 11573:1 11611:1 11638:1 11668:1 11673:1 11685:2 11696:3 11725:1 11733:1 11746:1 11779:1 11789:1 11793:1 11818:1 11824:2 11850:1 11867:1 11913:2 11999:1 12015:2 12016:1 12040:1 12051:1 12075:1 12078:1 12086:1 12092:2 12096:1 12153:2 12183:1 12199:1 12216:1 12220:1 12234:1 12236:1 12240:1 12242:1 12243:1 12244:1 12245:1 12324:1 12332:1 12386:4 12403:1 12413:1 12451:1 12479:1 12480:1 12486:1 12645:3 12702:2 12708:2 12769:2 12776:1 12786:1 12792:1 12809:1 12811:1 12827:1 12847:1 12855:1 12907:1 12921:1 12947:1 12974:2 12975:1 12985:1 13020:3 13023:1 13032:1 13072:1 13086:1 13104:1 13112:1 13114:1 13115:1 13126:1 13135:1 13137:2 13146:3 13228:1 13241:1 13248:1 13254:1 13267:1 13297:1 13307:1 13335:1 13337:1 13376:1 13377:2 13378:1 13384:1 13420:1 13443:6 13490:1 13532:1 13540:4 13579:1 13580:2 13593:1 13599:1 13611:1 13627:1 13642:1 13648:2 13666:1 13676:2 13743:1 13745:1 13762:1 13777:1 13792:1 13844:1 13855:1 13871:1 13899:1 13916:1 13956:2 13982:2 13994:1 14033:1 14096:1 14107:1 14127:1 14129:2 14150:1 14151:1 14166:1 14167:1 14170:1 14180:1 14192:2 14195:1 14208:1 14210:2 14214:1 14221:1 14244:1 14281:1 14288:2 14326:1 14371:1 14397:1 14437:2 14459:1 14472:4 14482:1 14493:1 14503:1 14507:1 14530:1 14544:1 14552:1 14590:1 14619:1 14621:1 14638:1 14640:1 14667:1 14683:1 14705:1 14718:1 14720:1 14750:1 14787:1 14806:1 14841:1 14894:2 14920:1 14921:1 14954:1 14969:1 14978:3 14982:1 14985:1 14988:1 14997:1 14998:1 15008:1 15057:1 15061:1 15071:2 15074:2 15110:3 15211:1 15221:2 15228:1 15258:1 15334:2 15344:2 15345:2 15354:1 15368:1 15380:1 15425:1 15444:1 15472:4 15497:1 15503:1 15510:4 15517:2 15534:1 15552:1 15563:3 15584:1 15594:2 15609:1 15624:1 15641:1 15646:2 15706:1 15721:2 15743:1 15753:2 15768:1 15779:1 15823:1 15839:1 15865:1 15907:1 15938:1 15971:1 16036:1 16045:1 16048:1 16082:1 16136:2 16145:1 16184:1 16212:1 16213:1 16218:1 16233:1 16253:1 16285:1 16287:3 16319:1 16333:2 16355:1 16434:1 16469:1 16540:1 16557:1 16559:1 16581:1 16586:2 16757:1 16762:1 16773:1 16788:1 16802:4 16824:1 16836:1 16840:1 16857:1 16879:4 16895:1 16899:1 16910:1 16913:1 16934:1 16982:3 16993:1 16994:2 16997:1 17002:1 17021:1 17031:1 17042:2 17051:1 17059:1 17081:4 17086:1 17092:3 17151:2 17156:1 17177:1 17203:1 17234:1 17239:1 17269:1 17278:3 17305:1 17345:1 17371:1 17384:1 17432:1 17440:1 17449:1 17469:1 17518:1 17528:1 17561:2 17567:2 17585:1 17679:1 17686:1 17744:1 17757:1 17770:1 17786:1 17790:1 17872:1 17909:1 17914:1 17918:2 17930:1 17950:1 17959:3 18005:1 18055:1 18058:1 18161:1 18220:2 18230:1 18235:1 18248:1 18314:1 18340:1 18345:2 18384:1 18403:1 18407:1 18429:1 18456:1 18467:1 18493:1 18513:2 18536:1 18564:1 18608:1 18662:1 18664:1 18687:1 18718:1 18727:1 18742:2 18750:7 18806:1 18827:1 18868:1 18902:1 18919:1 18947:1 18989:1 19018:1 19025:1 19036:6 19084:1 19087:1 19089:1 19112:1 19129:1 19156:1 19179:6 19181:1 19202:1 19203:1 19237:1 19282:1 19328:2 19335:1 19345:1 19365:1 19389:1 19394:1 19395:1 19439:2 19589:1 19631:1 19641:1 19659:1 19695:1 19703:1 19713:1 19728:2 19756:1 19757:1 19767:1 19788:1 19812:1 19852:1 19875:1 19912:1 19924:2 19964:1 19980:1 19984:1 20022:3 20102:1 20106:1 20128:2 20129:2 20130:1 20143:1 20164:1 20170:1 20189:1 20190:1 20192:1 20200:1 20212:1 20226:4 20234:1 20297:1 20299:1 20303:1 20304:2 20306:4 20334:1 20343:3 20353:1 20382:1 20391:1 20434:1 20445:1 20502:3 20518:1 20546:1 20557:1 20580:1 20597:1 20608:2 20619:1 20627:1 20632:1 20645:1 20652:1 20657:3 20662:3 20667:1 20672:1 20686:1 20730:1 20823:1 20852:1 20857:2 20865:1 20874:1 20877:1 20893:1 20907:1 20920:1 20940:1 20955:2 20957:2 20965:1 20973:5 21029:1 21039:1 21087:1 21108:1 21115:1 21139:1 21159:1 21172:1 21185:1 21226:1 21257:1 21274:1 21294:2 21309:1 21311:1 21327:1 21333:3 21378:3 21476:1 21496:1 21505:1 21510:3 21514:1 21515:1 21543:1 21546:1 21595:25 21599:1 21631:1 21645:1 21661:1 21662:1 21668:1 21681:1 21683:1 21690:1 21722:1 21724:1 21749:1 21783:1 21797:1 21855:1 21870:1 21924:1 21944:1 21949:2 22068:1 22115:1 22126:1 22170:1 22172:1 22175:2 22179:1 22188:1 22193:1 22196:1 22201:1 22248:1 22281:3 22282:3 22400:1 22414:4 22429:3 22430:1 22477:1 22484:1 22497:1 22520:1 22529:1 22546:1 22574:1 22575:1 22582:1 22616:1 22666:2 22674:1 22679:1 22698:1 22761:1 22788:1 22795:1 22803:1 22851:1 22864:2 22878:1 22912:1 22915:1 22922:1 22969:1 22973:1 22991:1 22997:1 23015:1 23025:2 23126:1 23197:1 23200:1 23215:1 23232:1 23255:1 23256:1 23297:2 23306:1 23307:1 23322:1 23401:2 23413:2 23450:1 23464:2 23480:1 23527:1 23543:1 23549:1 23555:3 23568:1 23584:2 23660:1 23667:1 23721:1 23725:1991 23753:1 23784:1 23856:1 23867:1 23903:1 23935:1 23945:1 23978:1 23991:1 23995:1 23997:1 24000:1 24001:1 24083:1 24089:1 24125:1 24146:1 24150:1 24179:1 24204:1 24222:1 24237:1 24238:1 24242:1 24245:2 24277:1 24281:3 24284:1 24354:1 24364:1 24393:1 24399:1 24409:1 24441:1 24453:1 24489:1 24515:1 24531:1 24533:1 24545:4 24588:1 24593:5 24597:1 24604:1 24631:1 24669:1 24700:1 24723:1 24763:1 24777:1 24805:3 24848:1 24851:1 24874:2 24875:1 24881:1 24898:1 24982:1 24988:2 25042:1 25047:1 25055:1 25072:1 25111:1 25112:1 25118:1 25141:1 25170:1 25206:2 25261:1 25265:2 25275:1 25283:1 25286:1 25308:1 25312:1 25327:1 25328:3 25356:1 25357:3 25376:3 25382:1 25398:1 25408:1 25413:1 25437:1 25497:1 25531:3 25532:1 25552:2 25563:1 25609:1 25710:3 25724:1 25769:1 25774:2 25782:1 25844:1 25890:1 25892:1 25896:1 25907:1 25919:1 25944:2 25952:1 25977:4 25981:2 25990:1 25994:1 25998:1 26001:1 26050:1 26078:1 26090:1 26105:1 26119:1 26124:1 26156:2 26169:3 26199:1 26200:1 26218:1 26233:1 26242:1 26250:4 26262:1 26279:1 26287:1 26301:1 26305:1 26308:4 26314:1 26326:1 26372:1 26379:1 26392:1 26394:1 26398:2 26404:1 26417:1 26422:1 26424:1 26440:1 26456:1 26504:1 26524:1 26529:1 26537:1 26541:2 26544:1 26560:1 26562:1 26563:2 26585:1 26589:1 26608:1 26681:1 26695:1 26697:1 26698:1 26700:1 26729:4 26757:1 26808:1 26846:1 26855:1 26856:1 26858:1 26883:1 26897:1 26904:1 26944:1 27002:1 27005:3 27073:1 27091:1 27092:2 27095:1 27101:1 27108:2 27116:1 27127:2 27139:1 27141:1 27178:1 27193:1 27303:2 27306:2 27333:2 27347:1 27371:1 27396:1 27415:1 27475:1 27482:1 27498:2 27503:1 27524:1 27538:1 27560:1 27592:1 27609:1 27624:1 27677:1 27710:1 27750:1 27772:1 27803:1 27810:1 27823:1 27841:1 27930:1 27956:1 27981:1 28002:1 28029:1 28045:3 28069:2 28079:1 28094:5 28102:1 28115:1 28189:1 28192:1 28226:1 28227:1 28314:1 28342:1 28354:1 28404:1 28423:1 28427:1 28433:2 28488:1 28632:1 28659:1 28741:1 28759:1 28877:1 28884:1 28976:1 28991:1 28998:1 28999:1 29007:1 29010:1 29016:1 29031:1 29032:1 29058:1 29059:1 29091:1 29105:2 29141:1 29146:1 29156:1 29168:1 29172:3 29187:1 29203:2 29263:2 29285:1 29304:1 29307:1 29311:1 29322:1 29335:1 29351:2 29405:1 29428:2 29451:1 29465:1 29506:1 29516:1 29521:1 29529:1 29553:2 29555:1 29570:1 29583:1 29625:2 29632:1 29669:1 29686:1 29744:1 29762:2 29795:1 29832:1 29859:1 29871:1 29880:1 29892:1 29954:1 30036:2 30042:1 30052:1 30080:1 30091:1 30122:1 30128:1 30152:1 30157:1 30249:3 30266:7 30281:1 30301:1 30329:1 30331:1 30375:1 30386:1 30426:1 30430:3 30438:2 30465:1 30467:1 30480:2 30484:2 30489:1 30490:1 30521:1 30537:1 30557:1 30563:1 30586:1 30591:1 30622:1 30640:2 30663:3 30668:3 30671:1 30681:1 30701:1 30706:1 30711:2 30743:1 30752:1 30796:2 30811:1 30885:1 30893:1 30923:2 30926:3 30940:1 30960:1 31030:1 31060:1 31064:1 31134:1 31148:1 31157:1 31180:1 31201:1 31214:1 31216:1 31322:1 31355:4 31358:3 31396:1 31415:1 31427:1 31449:1 31455:1 31456:1 31479:1 31544:2 31558:1 31565:1 31570:1 31579:1 31584:1 31598:1 31606:1 31612:1 31640:1 31667:2 31680:3 31696:1 31722:1 31746:2 31753:1 31798:1 31799:1 31835:1 31836:1 31839:1 31857:1 31904:1 31982:1 32016:2 32017:1 32036:1 32055:1 32150:1 32175:1 32178:1 32199:1 32209:1 32230:1 32236:1 32244:1 32252:1 32256:1 32284:1 32297:1 32299:2 32328:2 32331:1 32346:1 32384:2 32405:1 32414:1 32492:4 32507:2 32521:1 32528:3 32533:1 32578:1 32653:1 32711:1 32713:1 32772:1 32779:1 32783:1 32787:1 32792:1 32800:1 32835:1 32841:1 32853:1 32862:1 32870:1 32874:4 32879:1 32880:1 32908:1 32928:1 32974:1 32986:2 33006:1 33012:1 33020:1 33026:1 33054:1 33070:2 33118:2 33144:1 33203:2 33212:1 33215:1 33216:1 33230:1 33250:1 33267:1 33356:1 33394:1 33399:1 33400:1 33406:2 33444:1 33452:1 33507:1 33514:2 33518:1 33527:1 33531:1 33533:2 33534:1 33549:1 33560:2 33620:1 33654:1 33712:1 33721:1 33723:1 33728:1 33767:2 33773:1 33825:1 33844:1 33849:2 33856:2 33861:1 33889:1 33896:1 33925:1 33936:1 33938:1 33950:1 33998:1 34023:1 34029:1 34040:2 34047:1 34059:1 34060:1 34067:1 34068:2 34132:2 34172:1 34184:1 34197:1 34200:1 34212:2 34219:1 34263:1 34267:1 34285:1 34323:1 34372:1 34393:2 34442:2 34479:1 34488:2 34530:1 34616:1 34624:2 34633:1 34668:1 34739:1 34753:1 34757:1 34773:5 34774:1 34776:1 34794:1 34797:1 34810:5 34833:1 34844:1 34881:1 34919:1 34932:1 34963:3 34966:1 34971:1 34981:1 34982:1 35001:1 35004:3 35015:1 35028:1 35048:1 35058:1 35063:1 35074:2 35082:1 35102:1 35117:2 35141:1 35154:2 35161:1 35179:1 35203:1 35223:1 35249:2 35302:1 35305:1 35310:1 35316:1 35324:1 35335:1 35360:1 35378:1 35382:1 35384:1 35437:3 35459:1 35515:1 35565:2 35622:1 35646:1 35649:2 35675:1 35684:1 35689:1 35714:1 35741:1 35742:1 35751:1 35763:1 35846:1 35864:1 35882:1 35932:1 35978:1 36010:1 36022:1 36053:1 36104:1 36128:1 36158:1 36170:1 36202:1 36235:1 36292:1 36312:1 36318:1 36326:3 36327:1 36328:1 36329:3 36334:2 36340:1 36342:1 36351:1 36366:1 36370:1 36371:1 36392:1 36396:1 36410:1 36415:1 36426:2 36433:1 36438:1 36477:1 36482:1
15 82:2 114:1 129:2 193:2 216:1 225:1 255:1 256:1 277:1 300:1 321:3 371:1 404:1 451:2 456:2 511:1 551:2 564:1 578:1 595:2 649:1 677:1 680:1 682:1 690:1 692:1 707:1 726:2 730:1 733:1 738:1 745:1 759:2 772:1 773:2 776:1 787:1 848:1 877:1 897:1 916:1 936:2 1002:1 1008:1 1042:2 1048:1 1071:1 1073:1 1075:1 1078:2 1081:1 1096:1 1099:1 1133:1 1135:2 1140:1 1154:1 1167:2 1192:1 1231:2 1237:1 1247:1 1272:2 1274:1 1275:1 1307:1 1316:1 1348:2 1393:1 1396:1 1418:1 1423:2 1450:1 1473:2 1482:1 1525:2 1535:1 1541:1 1542:1 1553:1 1554:2 1577:1 1606:1 1615:1 1624:1 1634:1 1635:1 1654:1 1662:1 1667:1 1723:1 1737:1 1746:2 1757:4 1796:1 1799:1 1803:1 1807:2 1809:1 1815:1 1816:1 1819:4 1854:1 1870:1 1892:1 1901:4 1905:3 1913:2 1919:2 1938:1 1954:1 1997:2 2004:2 2006:2 2017:1 2041:2 2071:1 2097:1 2118:1 2145:1 2148:2 2154:1 2171:2 2194:1 2223:1 2227:1 2232:1 2234:2 2239:2 2242:1 2301:1 2371:1 2374:3 2393:1 2398:1 2596:1 2601:1 2633:1 2684:1 2742:2 2743:1 2780:1 2787:1 2789:2 2791:2 2801:1 2805:2 2810:1 2811:1 2812:1 2817:1 2820:2 2821:1 2840:1 2860:1 2861:1 2905:2 2938:1 2989:1 2990:2 3041:1 3049:1 3063:2 3167:1 3172:1 3197:1 3202:1 3214:1 3314:2 3326:1 3367:1 3370:1 3421:1 3423:2 3495:1 3505:1 3513:1 3547:2 3552:1 3559:1 3569:3 3576:2 3615:2 3635:4 3653:1 3660:1 3664:1 3669:1 3675:1 3705:1 3758:1 3775:1 3820:1 3853:1 3866:1 3904:1 3945:1 4033:2 4047:1 4083:1 4091:1 4103:1 4148:3 4161:1 4179:1 4219:1 4221:1 4224:1 4231:1 4261:3 4264:1 4307:1 4319:1 4333:1 4380:1 4413:1 4416:1 4439:1 4452:1 4455:1 4463:1 4465:1 4498:1 4501:1 4536:1 4541:1 4549:1 4553:1 4556:1 4590:1 4602:1 4608:1 4624:1 4646:1 4687:2 4688:2 4708:1 4730:1 4741:1 4742:1 4745:1 4771:1 4774:2 4820:2 4821:3 4826:2 4859:1 4873:1 4874:1 4888:1 4894:1 4898:1 4933:1 4974:1 5002:1 5027:2 5028:1 5054:1 5063:1 5132:1 5177:1 5201:1 5232:1 5246:1 5255:3 5287:1 5294:2 5298:1 5310:1 5314:1 5344:1 5347:1 5357:1 5366:1 5378:4 5411:1 5421:1 5438:1 5489:1 5506:1 5519:1 5522:1 5531:1 5581:2 5583:1 5590:1 5607:1 5664:1 5677:1 5683:2 5689:2 5697:1 5718:2 5730:2 5743:1 5838:1 5855:1 5865:1 5866:2 5885:1 5920:1 5921:1 5925:1 5928:2 6014:1 6021:1 6097:6 6140:1 6145:1 6167:1 6237:4 6257:2 6258:1 6273:1 6277:1 6281:1 6283:1 6287:1 6288:2 6289:1 6291:1 6315:1 6316:1 6321:1 6435:1 6449:1 6454:1 6458:2 6475:1 6476:1 6529:2 6543:1 6564:1 6567:1 6584:2 6605:2 6612:1 6630:3 6695:1 6737:1 6740:1 6747:1 6772:4 6802:1 6806:1 6822:1 6829:1 6853:3 6877:1 6896:1 6909:1 6921:1 6922:1 6936:1 6942:1 6963:2 7037:1 7061:1 7115:1 7136:1 7177:1 7184:1 7202:2 7227:1 7257:1 7272:1 7281:1 7288:1 7319:1 7321:1 7322:2 7351:2 7385:1 7434:1 7439:1 7444:1 7566:1 7575:1 7591:1 7627:2 7661:1 7726:1 7743:1 7747:1 7749:1 7778:1 7782:1 7785:1 7830:2 7836:2 7936:1 7950:1 7964:1 7973:1 8045:1 8050:1 8062:1 8065:1 8073:1 8084:1 8085:1 8086:1 8088:1 8091:1 8092:1 8099:3 8101:3 8135:1 8136:1 8147:1 8151:1 8162:1 8163:1 8176:1 8193:1 8210:2 8212:2 8223:1 8226:1 8233:2 8269:2 8282:1 8286:2 8304:1 8362:1 8371:1 8389:1 8413:1 8416:1 8420:3 8425:1 8457:1 8464:1 8477:1 8527:2 8557:1 8558:1 8565:1 8615:1 8661:1 8662:1 8671:1 8678:1 8743:2 8748:1 8757:1 8761:1 8762:4 8814:1 8846:1 8874:1 8897:2 8917:1 8929:1 8952:1 8959:1 8966:1 9021:2 9061:2 9068:1 9087:1 9110:1 9130:3 9140:1 9191:1 9201:1 9203:1 9215:1 9234:1 9243:1 9282:1 9289:3 9390:2 9412:1 9420:1 9433:2 9466:1 9505:1 9535:2 9539:1 9540:1 9544:2 9557:1 9560:1 9561:1 9576:1 9608:1 9617:1 9622:1 9658:1 9671:1 9677:3 9678:2 9680:1 9710:1 9754:1 9789:4 9813:1 9850:1 9858:2 9862:1 9875:1 9881:13 9892:1 9904:2 9905:4 9927:1 9937:1 9948:2 9949:1 9956:1 9971:1 10008:1 10019:1 10027:1 10034:1 10039:1 10057:2 10063:1 10089:1 10090:1 10122:3 10125:1 10133:1 10147:1 10189:1 10197:2 10228:1 10239:1 10270:1 10279:1 10292:1 10320:1 10326:1 10328:1 10340:1 10381:1 10387:2 10395:2 10402:1 10419:2 10445:1 10470:1 10471:10 10487:1 10489:1 10500:1 10523:1 10532:1 10536:2 10547:1 10548:2 10558:1 10578:2 10594:2 10596:1 10618:1 10630:1 10647:1 10686:1 10705:1 10753:2 10761:1 10779:1 10820:1 10857:1 10860:1 10887:1 10899:2 10912:1 10961:1 10973:1 10976:3 10982:1 10983:1 11019:1 11029:1 11037:1 11058:1 11091:1 11107:1 11115:1 11158:1 11166:2 11207:1 11208:6 11216:1 11227:1 11231:1 11238:1 11284:1 11311:1 11320:1 11323:1 11342:1 11351:2 11396:4 11573:1 11611:1 11638:1 11668:1 11673:1 11685:2 11696:3 11725:1 11733:1 11746:1 11779:1 11789:1 11793:1 11818:1 11824:2 11850:1 11867:1 11913:2 11984:1 11999:1 12015:2 12016:1 12040:1 12051:1 12075:1 12078:1 12086:1 12092:2 12096:1 12131:1 12153:2 12183:1 12199:1 12216:1 12220:1 12234:1 12236:1 12240:1 12242:1 12243:1 12244:1 12245:1 12324:1 12332:1 12337:1 12386:4 12403:1 12413:1 12451:1 12479:1 12480:1 12486:1 12526:1 12597:1 12624:1 12645:3 12702:2 12708:2 12769:2 12776:1 12786:1 12792:1 12809:1 12811:1 12827:1 12846:1 12847:1 12855:1 12907:1 12921:1 12947:1 12974:2 12975:1 12985:1 13020:3 13023:1 13032:1 13072:1 13086:1 13104:1 13112:1 13114:1 13115:1 13126:1 13135:1 13137:2 13146:3 13228:1 13241:1 13248:1 13254:1 13267:1 13297:1 13307:1 13335:1 13337:1 13376:1 13377:2 13378:1 13384:1 13420:1 13443:6 13476:1 13490:1 13532:1 13540:4 13579:1 13580:2 13593:1 13599:1 13611:1 13627:1 13642:1 13648:2 13666:1 13676:2 13743:1 13745:1 13762:1 13777:1 13792:1 13844:1 13855:1 13871:1 13899:1 13916:1 13956:2 13982:2 13994:1 13998:1 14033:1 14096:1 14107:1 14127:1 14129:2 14150:1 14151:1 14166:1 14167:1 14170:1 14180:1 14192:2 14195:1 14208:1 14210:2 14214:1 14221:1 14244:1 14281:1 14288:2 14326:1 14371:1 14397:1 14437:2 14459:1 14472:4 14482:1 14493:1 14503:1 14507:3 14530:1 14544:1 14552:1 14590:1 14619:1 14621:1 14638:1 14640:1 14667:1 14683:1 14705:1 14718:1 14720:1 14750:1 14787:1 14806:1 14841:1 14894:3 14920:1 14921:1 14954:2 14969:1 14978:3 14982:1 14985:1 14988:1 14997:1 14998:1 15008:1 15046:1 15057:1 15061:1 15071:2 15074:2 15110:3 15211:1 15221:2 15228:1 15258:1 15334:2 15344:2 15345:2 15354:1 15368:1 15380:1 15425:2 15444:1 15472:4 15497:1 15503:1 15510:4 15517:2 15534:1 15552:1 15563:3 15584:1 15594:2 15609:1 15624:1 15641:1 15646:2 15706:1 15721:2 15743:1 15753:2 15768:1 15779:1 15823:1 15839:1 15865:1 15907:1 15938:1 15971:1 15978:1 16036:1 16045:1 16048:1 16082:1 16136:2 16145:1 16184:1 16212:1 16213:1 16218:1 16233:1 16253:1 16285:1 16287:3 16319:1 16333:2 16355:1 16434:1 16469:1 16540:1 16557:1 16559:1 16581:1 16586:2 16757:1 16762:1 16773:1 16788:1 16802:5 16824:1 16836:1 16840:1 16857:1 16879:4 16895:1 16899:1 16910:1 16913:1 16934:1 16982:4 16993:1 16994:2 16997:1 17002:1 17021:1 17031:1 17042:2 17051:1 17059:2 17081:4 17086:1 17092:3 17144:1 17151:2 17156:1 17177:1 17203:1 17234:1 17239:1 17269:1 17278:3 17305:1 17345:1 17371:1 17384:1 17408:1 17432:1 17440:1 17449:1 17469:1 17518:1 17528:1 17561:2 17567:2 17585:1 17679:1 17686:1 17744:1 17757:1 17770:1 17775:1 17777:1 17786:1 17790:1 17872:1 17909:1 17914:1 17918:2 17930:1 17950:1 17959:3 18005:1 18055:1 18058:1 18161:1 18220:2 18230:1 18235:1 18248:1 18314:1 18340:1 18345:2 18384:1 18403:1 18407:1 18429:1 18456:1 18467:1 18493:1 18513:2 18536:1 18564:1 18608:1 18662:1 18664:1 18687:1 18718:1 18727:1 18742:2 18750:8 18806:1 18827:1 18868:1 18902:1 18919:1 18947:1 18989:1 19018:1 19025:1 19036:6 19084:1 19087:1 19089:1 19112:1 19129:1 19156:1 19179:6 19181:1 19202:1 19203:1 19237:1 19282:1 19328:2 19335:1 19345:1 19365:1 19389:1 19394:1 19395:1 19439:2 19589:1 19631:1 19641:1 19659:1 19695:1 19703:1 19713:1 19728:2 19756:1 19757:1 19767:1 19788:1 19812:1 19852:1 19867:1 19875:1 19912:1 19919:1 19924:3 19964:1 19980:1 19984:1 20022:3 20102:1 20106:1 20128:2 20129:2 20130:1 20143:1 20164:1 20170:1 20189:1 20190:1 20192:1 20200:1 20201:1 20212:1 20226:4 20234:1 20297:1 20299:1 20303:1 20304:2 20306:4 20334:1 20343:3 20353:1 20382:1 20391:1 20434:1 20445:1 20502:3 20518:1 20546:1 20557:1 20580:1 20597:1 20608:2 20619:1 20627:1 20632:1 20645:1 20652:1 20657:3 20662:3 20667:1 20672:1 20686:1 20730:1 20823:1 20852:1 20857:2 20865:1 20874:1 20877:1 20893:1 20907:1 20920:1 20940:1 20955:2 20957:2 20965:1 20973:7 21029:1 21032:1 21039:1 21087:1 21096:1 21108:1 21115:1 21139:1 21159:1 21172:1 21185:1 21226:1 21257:1 21274:1 21294:2 21309:1 21311:1 21327:1 21333:3 21378:3 21476:1 21496:1 21505:1 21510:3 21514:1 21515:1 21543:1 21546:1 21595:25 21599:1 21631:1 21645:1 21661:1 21662:1 21668:1 21681:1 21683:1 21690:1 21722:1 21724:1 21749:1 21783:1 21797:1 21855:1 21870:1 21924:1 21929:1 21944:1 21949:2 22068:1 22115:1 22126:1 22170:1 22172:1 22175:2 22179:1 22184:1 22188:1 22193:2 22196:1 22201:1 22248:1 22281:3 22282:3 22400:1 22414:4 22429:3 22430:1 22462:1 22477:1 22484:1 22497:1 22520:1 22529:1 22546:1 22574:1 22575:2 22582:1 22616:1 22666:2 22674:1 22679:1 22698:1 22761:1 22788:1 22795:1 22803:1 22851:1 22864:2 22878:1 22912:1 22915:1 22922:1 22969:1 22973:1 22991:1 22997:1 23015:1 23025:2 23060:1 23126:1 23197:1 23200:1 23215:1 23232:1 23255:1 23256:1 23297:2 23306:1 23307:1 23322:1 23401:2 23413:2 23450:1 23464:2 23480:1 23527:1 23543:1 23549:1 23555:3 23568:1 23584:2 23660:1 23667:1 23721:1 23725:2093 23753:1 23784:1 23856:1 23867:1 23903:1 23935:1 23945:1 23978:1 23991:1 23995:1 23997:1 24000:1 24001:1 24083:1 24089:1 24125:1 24146:1 24150:1 24179:1 24204:1 24222:1 24237:1 24238:1 24242:1 24245:2 24277:1 24281:3 24284:1 24354:1 24357:1 24364:1 24377:1 24393:1 24399:1 24409:1 24441:2 24453:1 24489:1 24515:1 24531:1 24533:1 24545:4 24588:1 24593:6 24597:1 24604:1 24631:1 24669:1 24700:1 24723:1 24763:1 24777:1 24805:3 24848:1 24851:1 24874:2 24875:1 24881:1 24898:1 24982:1 24988:2 25042:1 25047:1 25055:1 25072:1 25111:1 25112:1 25118:1 25141:1 25170:1 25206:2 25261:1 25265:2 25275:1 25283:1 25286:1 25308:1 25312:1 25327:1 25328:3 25356:1 25357:4 25376:3 25380:1 25382:1 25398:1 25408:1 25413:1 25437:1 25497:1 25531:3 25532:1 25552:2 25563:1 25609:1 25710:3 25724:1 25769:1 25774:2 25782:1 25844:1 25890:1 25892:1 25896:1 25907:1 25919:1 25944:2 25952:1 25977:4 25981:2 25990:1 25994:1 25998:1 26001:1 26050:1 26078:1 26090:1 26105:1 26119:1 26124:1 26156:2 26169:3 26199:1 26200:1 26218:1 26233:1 26242:1 26250:4 26262:2 26279:1 26287:1 26301:1 26305:1 26308:4 26314:1 26326:1 26337:1 26372:1 26379:1 26392:1 26394:1 26398:2 26404:1 26417:1 26422:1 26424:1 26440:1 26456:1 26504:1 26524:1 26529:1 26537:1 26541:2 26544:1 26560:1 26562:1 26563:2 26585:1 26589:1 26608:1 26681:1 26695:1 26697:1 26698:1 26700:1 26729:4 26757:1 26808:1 26846:1 26855:1 26856:1 26858:1 26883:1 26889:1 26897:1 26904:1 26914:1 26944:1 27002:2 27005:3 27073:1 27091:1 27092:2 27095:1 27101:1 27108:2 27116:1 27127:2 27139:1 27141:1 27172:1 27178:1 27193:1 27303:2 27306:2 27333:2 27347:1 27371:1 27390:1 27396:1 27415:1 27475:1 27482:1 27498:2 27503:1 27524:1 27538:1 27560:1 27592:1 27609:1 27624:1 27677:1 27710:2 27750:1 27772:1 27803:1 27810:1 27823:1 27841:1 27930:1 27956:1 27981:1 28002:1 28029:1 28045:3 28069:2 28079:1 28091:1 28094:6 28102:1 28109:1 28115:1 28125:1 28155:1 28189:1 28192:1 28226:1 28227:1 28314:1 28342:1 28354:1 28404:1 28423:1 28427:1 28433:2 28488:1 28519:1 28632:1 28659:1 28741:1 28744:1 28759:1 28839:1 28877:1 28884:1 28976:1 28991:1 28998:1 28999:1 29007:1 29010:1 29016:1 29031:1 29032:1 29058:1 29059:1 29091:1 29105:2 29141:1 29146:1 29156:1 29168:1 29172:3 29187:1 29203:2 29263:2 29285:1 29304:1 29307:1 29311:1 29322:1 29335:1 29351:2 29405:1 29426:1 29428:2 29429:1 29451:1 29465:1 29506:1 29516:1 29521:1 29529:1 29553:2 29555:1 29570:1 29583:1 29625:2 29632:2 29669:1 29686:1 29692:1 29744:1 29754:1 29762:2 29795:1 29832:1 29859:1 29871:1 29880:1 29892:1 29954:1 29985:1 30036:2 30042:1 30052:1 30080:1 30091:1 30122:1 30128:1 30152:1 30157:1 30181:1 30249:3 30266:7 30281:1 30301:1 30329:1 30331:1 30375:1 30386:1 30426:1 30430:3 30438:3 30465:1 30467:1 30480:2 30484:2 30489:1 30490:1 30521:1 30537:1 30557:1 30563:1 30586:1 30591:1 30622:1 30640:2 30663:3 30668:3 30671:1 30681:1 30701:1 30706:1 30711:2 30743:1 30752:1 30796:2 30811:1 30885:1 30893:1 30923:2 30926:3 30940:1 30960:1 31004:1 31030:1 31060:1 31064:1 31134:1 31148:1 31157:1 31180:1 31201:1 31214:1 31216:1 31322:1 31355:4 31358:3 31396:1 31415:1 31427:1 31449:1 31455:1 31456:2 31479:1 31544:2 31558:1 31565:1 31570:2 31579:1 31584:1 31586:1 31598:1 31606:1 31612:1 31640:1 31667:2 31680:3 31696:1 31722:1 31746:2 31753:1 31798:1 31799:1 31835:1 31836:1 31839:1 31857:1 31904:1 31982:2 32016:2 32017:1 32036:1 32055:1 32080:1 32150:1 32175:1 32178:1 32199:1 32209:1 32230:1 32236:1 32244:1 32252:1 32256:1 32284:1 32297:1 32299:2 32328:2 32331:1 32346:1 32384:2 32405:1 32414:1 32492:4 32507:2 32521:1 32528:3 32533:1 32578:1 32653:1 32711:1 32713:1 32772:1 32779:1 32783:1 32787:1 32792:1 32800:1 32835:1 32841:1 32853:1 32862:1 32870:1 32874:4 32879:1 32880:1 32908:1 32928:1 32974:1 32986:2 33006:1 33012:2 33020:1 33026:1 33054:1 33070:2 33118:2 33144:1 33203:2 33212:1 33215:1 33216:2 33230:1 33250:1 33267:1 33356:1 33394:1 33399:1 33400:1 33406:2 33444:1 33452:1 33507:1 33514:2 33518:1 33527:1 33531:1 33533:2 33534:1 33549:1 33560:2 33620:1 33654:1 33712:1 33721:1 33723:1 33728:1 33767:2 33773:1 33811:1 33825:1 33844:1 33849:2 33856:2 33861:1 33889:1 33896:1 33925:1 33935:1 33936:1 33938:1 33950:1 33998:1 34018:1 34023:1 34029:1 34040:2 34047:1 34059:1 34060:1 34067:1 34068:2 34132:2 34170:1 34172:1 34182:1 34184:1 34197:1 34200:1 34212:2 34219:1 34263:2 34267:1 34285:1 34323:1 34372:1 34393:2 34442:2 34479:1 34488:2 34530:1 34587:1 34616:1 34624:2 34633:1 34668:1 34739:1 34753:1 34757:1 34773:6 34774:1 34776:1 34794:1 34797:1 34810:5 34833:1 34844:1 34881:1 34919:1 34932:1 34963:3 34966:1 34971:1 34981:1 34982:1 35001:1 35004:4 35015:1 35028:1 35048:1 35058:1 35063:1 35074:2 35082:1 35102:1 35117:2 35141:1 35154:2 35161:1 35179:1 35203:1 35223:1 35249:2 35302:1 35305:1 35310:1 35316:1 35324:1 35335:1 35360:1 35378:1 35382:1 35384:1 35437:3 35459:1 35515:1 35565:2 35622:1 35646:1 35649:2 35675:1 35684:1 35689:1 35714:1 35741:1 35742:1 35751:1 35763:1 35846:1 35864:2 35882:1 35932:2 35978:1 36010:1 36022:1 36053:1 36104:1 36128:1 36158:1 36170:1 36202:1 36203:1 36235:1 36292:1 36312:1 36318:1 36326:3 36327:1 36328:1 36329:3 36334:2 36340:1 36342:1 36343:1 36351:1 36366:1 36370:1 36371:1 36392:1 36396:1 36410:1 36415:1 36426:2 36433:1 36438:1 36477:1 36482:1
15 82:2 114:1 129:2 193:2 216:1 225:1 255:1 256:1 277:1 300:1 321:3 371:1 404:1 451:2 456:2 511:1 551:3 564:1 578:1 595:2 649:1 677:1 680:1 682:1 690:1 692:1 707:1 726:2 730:1 733:2 738:1 745:1 759:2 772:1 773:2 776:1 783:1 787:1 848:1 877:1 897:1 916:1 936:2 1002:1 1008:1 1042:2 1048:1 1071:1 1073:1 1075:1 1078:2 1081:1 1096:1 1099:1 1133:1 1135:2 1140:1 1148:1 1154:1 1167:2 1192:1 1231:2 1237:1 1247:1 1272:2 1274:1 1275:1 1307:1 1316:1 1348:2 1393:1 1396:1 1418:1 1423:2 1450:1 1473:2 1482:1 1525:2 1535:1 1541:1 1542:1 1553:1 1554:2 1577:1 1606:1 1615:1 1624:1 1634:1 1635:1 1654:1 1662:1 1667:1 1723:1 1737:1 1746:2 1757:4 1796:1 1799:1 1803:1 1807:2 1809:2 1815:1 1816:1 1819:4 1854:1 1870:1 1892:1 1901:4 1905:3 1913:2 1919:2 1938:1 1954:1 1955:1 1997:2 2004:2 2006:2 2017:1 2041:2 2071:1 2097:1 2118:1 2145:1 2148:2 2154:1 2171:2 2194:1 2223:1 2224:1 2227:1 2232:1 2234:2 2239:2 2242:1 2301:1 2371:1 2374:3 2393:1 2398:1 2596:1 2601:1 2633:1 2684:1 2742:2 2743:1 2780:1 2787:1 2789:2 2791:2 2801:1 2805:2 2810:1 2811:1 2812:1 2817:1 2820:2 2821:1 2840:1 2860:1 2861:1 2905:2 2938:1 2989:1 2990:2 3041:1 3049:1 3063:2 3167:1 3172:1 3197:1 3202:1 3214:1 3314:2 3326:1 3367:1 3370:1 3421:1 3423:2 3495:1 3505:1 3513:1 3547:2 3552:1 3559:1 3569:3 3576:2 3615:2 3635:4 3653:1 3660:1 3664:1 3669:1 3675:1 3705:1 3758:1 3775:1 3820:1 3853:1 3866:1 3904:1 3945:1 4033:2 4047:1 4083:1 4091:1 4103:1 4148:3 4161:1 4179:1 4219:1 4221:1 4224:1 4231:1 4261:3 4264:1 4307:1 4319:1 4333:1 4380:1 4413:1 4416:1 4439:1 4452:1 4455:1 4463:1 4465:1 4498:1 4501:1 4536:1 4541:1 4549:1 4553:1 4556:1 4590:1 4602:1 4608:1 4624:1 4646:1 4687:2 4688:2 4708:1 4730:1 4741:1 4742:1 4745:1 4771:1 4774:2 4820:2 4821:3 4826:2 4859:1 4873:1 4874:1 4888:1 4894:1 4898:1 4933:1 4974:1 5002:1 5027:2 5028:1 5054:1 5063:1 5132:1 5177:1 5201:1 5232:1 5246:1 5255:3 5287:1 5294:2 5298:1 5310:1 5314:1 5344:1 5347:1 5357:1 5366:1 5378:4 5411:1 5421:1 5438:1 5489:1 5506:1 5519:1 5522:1 5531:1 5581:2 5583:1 5590:1 5607:1 5664:1 5677:1 5683:2 5689:3 5697:1 5718:2 5730:2 5743:1 5838:1 5855:1 5865:1 5866:2 5885:1 5920:1 5921:1 5925:1 5928:2 6014:1 6021:1 6097:6 6140:1 6145:1 6167:1 6237:4 6257:2 6258:1 6263:1 6273:1 6277:1 6281:1 6283:1 6287:1 6288:2 6289:1 6291:1 6315:1 6316:1 6321:1 6435:1 6449:1 6454:1 6458:2 6475:1 6476:1 6529:2 6543:1 6564:1 6567:1 6584:2 6605:2 6612:1 6630:3 6695:1 6737:1 6740:1 6747:1 6772:4 6802:1 6806:1 6822:1 6829:1 6853:3 6877:1 6896:1 6909:1 6921:1 6922:1 6934:1 6936:1 6942:1 6963:2 7037:1 7061:1 7115:1 7136:1 7177:1 7184:1 7202:2 7227:1 7257:1 7272:1 7281:1 7288:1 7319:1 7321:1 7322:2 7351:2 7385:1 7434:1 7439:1 7444:1 7566:1 7575:1 7591:1 7627:2 7637:1 7661:1 7726:1 7743:1 7747:1 7749:1 7778:1 7782:1 7785:1 7830:3 7836:2 7936:1 7950:1 7964:1 7973:1 8045:1 8050:1 8062:1 8065:1 8073:1 8084:1 8085:1 8086:1 8088:1 8091:1 8092:1 8099:3 8101:4 8135:1 8136:1 8147:1 8151:1 8162:1 8163:1 8176:1 8193:1 8210:2 8212:2 8223:1 8226:1 8233:2 8269:2 8282:1 8286:2 8304:1 8362:1 8371:1 8389:1 8413:1 8416:1 8420:3 8425:1 8457:1 8464:1 8477:1 8527:2 8557:1 8558:1 8565:1 8615:1 8661:1 8662:1 8671:1 8678:1 8743:2 8748:1 8757:1 8761:1 8762:4 8814:1 8846:1 8874:1 8897:2 8917:1 8929:1 8952:1 8959:1 8966:1 9021:2 9061:2 9068:1 9087:2 9110:1 9130:3 9140:1 9191:1 9192:1 9201:1 9203:1 9215:1 9234:1 9243:1 9282:1 9289:3 9390:2 9412:1 9420:1 9433:2 9466:1 9505:1 9535:2 9539:1 9540:1 9544:2 9557:1 9560:1 9561:1 9576:1 9608:1 9617:1 9622:1 9658:1 9671:1 9677:3 9678:2 9680:1 9710:1 9754:1 9789:5 9813:1 9817:1 9850:1 9858:2 9862:1 9875:1 9881:13 9892:1 9904:2 9905:4 9927:1 9937:1 9948:2 9949:1 9956:1 9971:1 10008:1 10019:1 10027:1 10034:1 10039:1 10057:2 10063:1 10089:1 10090:1 10122:3 10125:1 10133:1 10147:1 10189:1 10197:2 10228:1 10239:1 10270:1 10279:1 10292:1 10320:1 10326:1 10328:1 10340:1 10381:1 10387:2 10395:2 10402:1 10419:2 10445:1 10470:1 10471:10 10487:1 10489:1 10500:1 10523:1 10532:1 10536:2 10547:1 10548:2 10558:1 10578:2 10594:2 10596:1 10618:1 10630:1 10647:1 10686:1 10705:1 10753:2 10761:1 10779:1 10820:1 10857:1 10860:1 10887:1 10899:2 10912:1 10958:1 10961:1 10967:1 10973:1 10976:3 10982:1 10983:1 11019:1 11029:1 11037:1 11058:1 11084:1 11091:1 11107:1 11115:1 11158:1 11166:2 11207:1 11208:6 11216:1 11227:1 11231:1 11238:1 11284:1 11311:1 11320:1 11323:1 11342:1 11351:2 11396:4 11573:1 11611:1 11638:1 11668:1 11673:1 11685:2 11696:3 11725:1 11733:1 11746:1 11779:2 11789:1 11793:1 11818:1 11824:2 11850:1 11867:2 11913:2 11984:1 11999:1 12015:2 12016:1 12040:1 12050:1 12051:1 12075:1 12078:1 12086:1 12092:2 12096:1 12131:1 12153:2 12183:1 12199:1 12216:1 12220:1 12234:1 12236:1 12240:1 12242:1 12243:1 12244:1 12245:1 12324:1 12332:1 12337:1 12386:4 12403:1 12413:1 12451:1 12479:1 12480:1 12486:1 12526:1 12597:1 12624:1 12645:3 12702:2 12708:2 12769:2 12776:2 12786:1 12792:1 12809:1 12811:1 12827:1 12846:1 12847:1 12855:1 12907:1 12921:1 12947:1 12974:2 12975:1 12985:1 13020:3 13023:1 13032:1 13072:1 13086:1 13104:1 13112:1 13114:1 13115:1 13126:1 13135:1 13137:2 13146:3 13228:1 13241:1 13248:1 13254:1 13267:1 13297:1 13307:1 13335:1 13337:1 13376:1 13377:2 13378:1 13384:1 13420:1 13443:6 13476:1 13490:1 13532:1 13540:4 13579:1 13580:2 13593:1 13599:1 13611:1 13627:1 13642:1 13648:2 13666:1 13676:2 13743:1 13745:1 13762:1 13777:1 13792:1 13844:1 13855:1 13871:1 13899:1 13916:1 13956:2 13982:2 13994:1 13998:1 14033:1 14096:1 14107:1 14127:1 14129:2 14132:1 14150:2 14151:1 14166:1 14167:1 14170:1 14180:1 14192:2 14195:1 14208:1 14210:2 14214:1 14221:1 14244:1 14281:1 14288:2 14297:1 14326:1 14371:1 14397:1 14437:2 14459:1 14472:4 14482:1 14493:1 14503:1 14507:3 14520:1 14530:1 14544:1 14552:1 14590:1 14619:1 14621:1 14638:1 14640:1 14667:1 14683:1 14705:1 14718:1 14720:1 14750:1 14787:1 14806:1 14841:1 14894:3 14920:1 14921:1 14954:2 14969:1 14978:3 14982:1 14985:1 14988:1 14997:1 14998:1 15008:1 15038:1 15046:1 15057:1 15061:1 15071:2 15074:2 15110:3 15211:1 15221:2 15228:1 15258:1 15334:2 15344:2 15345:2 15354:1 15368:1 15380:1 15425:2 15444:1 15472:4 15497:1 15503:1 15510:4 15517:2 15534:1 15547:1 15552:1 15563:3 15584:1 15594:2 15609:1 15624:1 15641:1 15646:2 15706:1 15721:2 15743:1 15753:2 15768:1 15779:1 15823:1 15839:1 15865:1 15907:1 15938:1 15971:1 15978:1 16036:1 16045:1 16048:1 16082:1 16136:2 16145:1 16184:1 16212:1 16213:1 16218:1 16233:1 16253:1 16285:1 16287:3 16319:1 16333:2 16355:1 16434:1 16469:1 16540:1 16557:1 16559:1 16581:1 16586:2 16757:1 16762:1 16773:1 16788:1 16802:5 16824:1 16836:1 16840:1 16857:1 16879:5 16895:1 16899:1 16910:1 16913:1 16934:1 16982:4 16993:1 16994:2 16997:1 17002:1 17021:1 17031:1 17042:2 17051:1 17059:2 17081:4 17086:1 17092:3 17144:1 17151:2 17156:1 17177:1 17203:1 17205:1 17234:1 17239:1 17269:1 17278:3 17305:1 17332:1 17345:1 17371:1 17384:1 17408:1 17432:1 17440:1 17449:1 17469:1 17518:1 17528:1 17561:2 17567:2 17585:1 17679:1 17686:1 17693:1 17744:1 17757:1 17770:1 17775:1 17777:1 17786:1 17790:1 17872:1 17909:1 17914:1 17918:2 17930:1 17950:1 17959:3 18005:2 18055:1 18058:1 18161:1 18220:2 18230:1 18232:1 18235:1 18248:1 18314:1 18340:1 18345:2 18384:2 18403:1 18407:1 18422:1 18429:1 18456:1 18467:1 18493:1 18513:2 18536:1 18564:1 18608:1 18662:1 18664:1 18687:1 18718:1 18727:1 18742:2 18750:8 18806:1 18827:1 18868:1 18902:1 18919:1 18947:1 18989:1 19018:1 19025:1 19036:6 19084:1 19087:1 19089:1 19112:1 19129:1 19156:1 19179:6 19181:1 19202:1 19203:1 19237:1 19282:1 19328:2 19335:1 19345:1 19365:1 19389:1 19394:1 19395:1 19439:2 19589:1 19631:1 19641:1 19659:1 19695:1 19703:1 19713:1 19728:2 19756:1 19757:1 19767:1 19788:2 19812:1 19852:1 19867:1 19875:1 19912:1 19919:1 19924:3 19929:1 19964:1 19980:1 19984:1 20022:3 20102:1 20106:1 20128:2 20129:2 20130:1 20143:1 20164:1 20170:1 20189:1 20190:1 20192:1 20200:1 20201:1 20212:1 20226:4 20234:1 20297:1 20299:1 20303:1 20304:2 20306:4 20334:1 20343:3 20353:1 20382:1 20391:1 20434:1 20445:1 20502:3 20518:1 20546:1 20557:1 20580:1 20597:1 20608:2 20619:1 20627:1 20632:1 20645:1 20652:1 20657:3 20662:3 20667:1 20672:1 20686:1 20730:1 20823:1 20852:1 20857:2 20865:1 20874:1 20877:1 20893:1 20907:1 20920:1 20940:1 20955:2 20957:2 20965:1 20973:7 21029:1 21032:1 21039:1 21087:1 21096:1 21108:1 21115:1 21139:1 21159:1 21172:1 21185:1 21226:1 21257:1 21274:1 21294:2 21309:1 21311:1 21327:1 21333:3 21378:3 21476:1 21496:1 21505:1 21510:3 21514:1 21515:1 21543:1 21546:1 21595:25 21599:1 21631:1 21645:1 21661:1 21662:1 21668:1 21681:1 21683:1 21690:1 21722:1 21724:1 21749:1 21783:1 21797:1 21855:1 21870:1 21924:1 21929:1 21944:1 21949:2 22068:1 22115:1 22126:1 22170:1 22172:1 22175:2 22179:1 22184:1 22188:1 22193:2 22196:1 22201:1 22248:1 22281:3 22282:3 22400:1 22414:4 22429:3 22430:1 22460:1 22462:1 22477:1 22484:1 22497:1 22520:1 22529:1 22546:1 22574:1 22575:2 22582:1 22616:1 22666:2 22674:1 22679:1 22698:1 22761:1 22788:1 22791:1 22795:1 22803:1 22851:1 22864:2 22878:1 22912:1 22915:1 22922:1 22969:1 22973:1 22991:1 22997:1 23015:1 23025:2 23060:1 23126:1 23197:1 23200:1 23215:1 23232:1 23255:1 23256:1 23297:2 23306:1 23307:1 23322:1 23401:2 23413:2 23450:1 23464:2 23480:1 23527:1 23543:1 23549:1 23555:3 23568:1 23584:2 23660:1 23667:1 23721:1 23725:2190 23753:1 23784:1 23856:1 23867:1 23903:1 23935:1 23945:1 23978:1 23991:1 23995:1 23997:1 24000:1 24001:1 24083:1 24089:1 24125:1 24146:1 24150:1 24153:1 24179:1 24204:1 24222:1 24237:1 24238:1 24242:1 24245:2 24277:1 24281:3 24284:1 24354:1 24357:1 24364:1 24377:1 24393:1 24399:1 24409:1 24441:2 24453:1 24489:1 24515:1 24531:1 24533:1 24545:4 24588:1 24593:6 24597:1 24604:1 24631:2 24669:1 24700:1 24723:1 24763:1 24777:1 24805:3 24848:1 24851:1 24874:2 24875:1 24881:1 24898:1 24940:1 24982:1 24988:2 25042:1 25047:1 25055:1 25072:1 25111:1 25112:1 25118:1 25141:1 25170:1 25206:2 25261:1 25265:2 25275:1 25283:1 25286:1 25308:1 25312:1 25327:1 25328:3 25356:1 25357:4 25376:3 25380:1 25382:1 25398:1 25408:1 25413:1 25437:1 25497:1 25531:3 25532:1 25552:2 25563:1 25609:1 25710:3 25724:1 25769:1 25774:2 25782:1 25841:1 25844:1 25890:1 25892:1 25896:1 25907:1 25919:1 25944:2 25952:1 25977:4 25981:2 25990:1 25994:1 25998:1 26001:1 26050:1 26078:1 26090:1 26105:1 26119:1 26124:1 26156:2 26169:3 26199:1 26200:1 26218:1 26233:1 26242:1 26250:4 26262:2 26279:1 26287:1 26301:1 26305:1 26308:4 26314:1 26326:1 26337:1 26372:1 26379:1 26392:1 26394:1 26398:2 26404:1 26417:1 26422:1 26424:1 26440:1 26456:1 26504:1 26524:1 26529:1 26537:1 26541:2 26544:1 26560:1 26562:1 26563:2 26585:1 26589:1 26608:1 26681:1 26695:1 26697:1 26698:1 26700:1 26729:4 26757:1 26808:1 26846:1 26855:1 26856:1 26857:1 26858:1 26883:1 26889:1 26897:1 26904:1 26914:1 26944:1 27002:2 27005:3 27073:1 27091:1 27092:2 27095:1 27101:1 27108:2 27116:1 27127:2 27139:1 27141:2 27172:1 27178:1 27193:1 27303:2 27306:2 27333:2 27347:1 27371:1 27390:1 27396:1 27415:1 27475:1 27482:1 27498:2 27503:1 27516:1 27524:1 27538:1 27560:1 27592:1 27609:1 27624:1 27677:1 27710:2 27750:1 27772:1 27803:1 27806:1 27810:1 27823:1 27838:1 27841:1 27930:1 27956:1 27981:1 27982:1 28002:1 28029:1 28045:3 28069:3 28079:1 28091:1 28094:6 28102:1 28109:1 28115:1 28125:1 28155:1 28189:1 28192:1 28226:1 28227:1 28314:1 28342:1 28354:1 28404:1 28423:2 28427:1 28433:2 28488:1 28519:1 28632:1 28659:1 28741:1 28744:1 28759:1 28839:1 28876:1 28877:1 28884:1 28976:1 28991:1 28998:1 28999:1 29007:1 29010:1 29016:1 29031:1 29032:1 29058:1 29059:1 29091:1 29105:2 29141:1 29146:1 29156:1 29168:1 29172:3 29187:1 29203:2 29263:2 29285:1 29304:1 29307:1 29311:1 29322:1 29335:1 29351:2 29405:1 29426:1 29428:2 29429:1 29451:1 29465:1 29506:1 29516:1 29521:1 29529:1 29553:2 29555:1 29570:1 29583:1 29625:2 29632:2 29669:1 29686:1 29692:1 29744:1 29754:1 29762:2 29795:1 29832:1 29859:1 29871:1 29880:1 29892:1 29954:1 29985:1 30036:2 30042:1 30052:1 30080:1 30091:1 30122:1 30128:1 30145:1 30152:1 30157:1 30181:1 30249:3 30266:7 30281:1 30301:1 30329:1 30331:1 30375:1 30386:1 30426:1 30430:3 30438:3 30465:1 30467:1 30480:2 30484:2 30489:1 30490:1 30521:1 30537:1 30557:1 30563:1 30586:1 30591:1 30622:1 30640:2 30663:3 30668:3 30671:1 30681:1 30701:1 30706:1 30711:2 30743:1 30752:1 30796:2 30811:1 30885:1 30893:1 30923:2 30926:3 30940:1 30960:1 31004:1 31030:1 31060:1 31064:1 31134:1 31148:1 31157:1 31180:1 31201:1 31214:1 31216:1 31322:1 31355:5 31358:3 31396:1 31415:1 31427:1 31449:1 31455:1 31456:2 31478:1 31479:1 31544:2 31558:1 31565:1 31570:2 31579:1 31584:1 31586:1 31598:1 31606:1 31612:1 31640:1 31667:2 31680:3 31696:1 31722:1 31746:2 31753:1 31798:1 31799:1 31835:1 31836:1 31839:1 31857:1 31904:1 31982:2 32016:2 32017:1 32036:1 32055:1 32080:1 32150:1 32175:1 32178:1 32199:1 32209:1 32230:1 32236:1 32244:1 32252:1 32256:1 32284:1 32297:1 32299:2 32328:2 32331:1 32346:1 32384:2 32405:1 32414:1 32492:4 32507:2 32521:1 32528:3 32533:1 32578:1 32653:1 32711:1 32713:1 32772:1 32779:1 32783:1 32787:1 32792:1 32800:1 32835:1 32841:1 32853:1 32862:1 32870:1 32874:4 32879:1 32880:1 32908:1 32928:1 32974:1 32986:2 33006:1 33012:2 33020:1 33026:1 33054:1 33070:2 33118:2 33144:1 33203:2 33212:1 33215:1 33216:2 33230:1 33250:1 33267:1 33356:1 33394:1 33399:1 33400:1 33406:2 33444:1 33452:1 33507:1 33514:2 33518:1 33527:1 33531:1 33533:2 33534:1 33549:1 33560:2 33620:1 33654:1 33712:1 33721:1 33723:1 33728:1 33767:2 33773:1 33811:1 33825:1 33844:1 33849:2 33856:2 33861:1 33889:1 33896:1 33925:1 33935:1 33936:1 33938:1 33950:1 33998:1 34018:1 34023:1 34029:1 34040:2 34047:1 34059:1 34060:1 34067:1 34068:2 34132:2 34170:1 34172:1 34182:1 34184:1 34197:1 34200:1 34212:2 34219:1 34263:2 34267:1 34285:1 34323:1 34372:1 34393:2 34442:2 34479:1 34488:2 34495:1 34530:1 34587:1 34616:1 34624:2 34633:1 34668:1 34739:1 34753:1 34757:1 34773:8 34774:1 34776:1 34794:1 34797:1 34810:5 34833:2 34844:1 34881:1 34917:1 34919:1 34932:1 34963:3 34966:1 34971:1 34981:1 34982:1 35001:1 35004:5 35015:1 35028:1 35048:1 35058:1 35063:1 35074:2 35082:1 35102:1 35117:2 35141:1 35154:2 35161:1 35179:1 35203:1 35223:1 35249:2 35302:1 35305:1 35310:1 35316:1 35324:1 35335:1 35360:1 35378:1 35382:1 35384:1 35437:3 35459:1 35515:1 35565:2 35622:1 35646:1 35649:2 35675:1 35684:1 35689:1 35714:1 35741:1 35742:1 35751:1 35763:1 35846:1 35864:2 35882:1 35932:2 35978:1 36010:1 36022:1 36053:1 36104:1 36128:1 36158:1 36170:1 36202:1 36203:1 36235:1 36292:1 36312:1 36318:1 36326:3 36327:1 36328:1 36329:3 36334:2 36340:1 36342:1 36343:1 36351:1 36366:1 36370:1 36371:1 36392:1 36396:1 36410:1 36415:1 36426:2 36433:1 36438:1 36477:1 36482:1
15 82:2 114:1 129:2 192:1 193:2 216:1 225:1 255:1 256:1 277:1 300:1 321:3 371:1 404:1 451:2 456:2 511:1 551:3 564:1 578:1 595:2 649:1 677:1 680:1 682:1 690:1 692:1 707:1 726:2 730:1 733:2 738:1 745:1 759:2 772:1 773:2 776:1 783:1 787:1 848:1 877:2 897:1 916:1 936:2 1002:1 1008:1 1042:2 1048:1 1071:1 1073:1 1075:1 1078:2 1081:1 1096:1 1099:1 1133:1 1135:2 1140:1 1148:1 1154:1 1167:2 1192:1 1231:2 1237:1 1247:1 1272:2 1274:1 1275:1 1307:1 1316:1 1348:2 1393:1 1396:1 1418:1 1423:2 1450:1 1473:2 1482:1 1525:2 1535:1 1541:1 1542:1 1553:1 1554:2 1577:1 1606:1 1615:1 1624:1 1634:1 1635:1 1654:1 1662:1 1667:1 1723:1 1737:2 1746:2 1757:4 1796:1 1799:1 1803:1 1807:2 1809:2 1815:1 1816:1 1819:4 1854:1 1870:1 1892:1 1901:4 1905:3 1913:2 1919:2 1938:1 1954:1 1955:1 1997:2 2004:2 2006:2 2017:1 2041:2 2071:1 2097:1 2118:1 2145:1 2148:2 2154:1 2171:2 2194:1 2223:1 2224:1 2227:1 2232:1 2234:2 2239:2 2242:1 2301:1 2371:1 2374:4 2393:1 2398:1 2596:1 2601:1 2633:1 2684:1 2742:2 2743:1 2780:1 2787:1 2789:2 2791:3 2801:1 2805:2 2810:1 2811:1 2812:1 2817:1 2820:2 2821:1 2840:1 2860:1 2861:1 2905:2 2938:1 2989:1 2990:2 3041:1 3049:1 3063:2 3167:1 3172:1 3197:1 3202:1 3214:1 3314:2 3326:1 3367:1 3370:1 3421:1 3423:2 3495:1 3505:1 3513:1 3547:2 3552:1 3559:1 3569:3 3576:3 3615:2 3635:4 3653:1 3660:1 3664:1 3669:1 3675:1 3705:1 3758:1 3775:1 3820:1 3853:1 3866:1 3904:1 3945:1 4033:2 4047:1 4083:1 4091:1 4103:1 4148:3 4161:1 4179:1 4219:1 4221:1 4224:1 4231:1 4261:3 4264:1 4307:1 4319:1 4333:1 4380:1 4413:1 4416:1 4439:1 4452:1 4455:1 4463:1 4465:1 4498:1 4501:1 4536:1 4541:1 4549:1 4553:1 4556:1 4590:1 4602:1 4608:1 4624:1 4646:1 4687:2 4688:2 4708:1 4730:1 4741:1 4742:1 4745:1 4771:1 4774:2 4820:2 4821:3 4826:2 4859:1 4873:1 4874:1 4888:1 4894:1 4898:1 4933:1 4974:1 5001:1 5002:1 5027:2 5028:1 5054:1 5063:1 5132:1 5177:1 5201:1 5232:1 5246:1 5255:3 5287:1 5294:2 5298:1 5310:1 5314:1 5344:1 5347:1 5357:1 5366:1 5378:4 5411:1 5421:1 5438:1 5489:1 5506:1 5519:1 5522:1 5531:1 5581:2 5583:1 5590:1 5607:1 5664:1 5677:1 5683:2 5689:3 5697:1 5718:2 5730:2 5743:1 5838:2 5855:1 5865:1 5866:2 5885:1 5920:1 5921:1 5925:1 5928:2 6014:1 6021:1 6097:6 6140:1 6145:1 6167:1 6237:4 6257:2 6258:1 6263:1 6273:1 6277:1 6281:1 6283:1 6287:1 6288:2 6289:1 6291:1 6315:1 6316:1 6321:1 6435:1 6449:1 6454:1 6458:2 6475:1 6476:1 6529:2 6533:1 6543:1 6564:1 6567:1 6584:2 6605:2 6612:1 6630:3 6695:1 6737:1 6740:1 6747:1 6772:4 6802:1 6806:1 6822:1 6829:1 6853:3 6877:1 6896:1 6909:1 6921:1 6922:1 6934:1 6936:1 6942:1 6963:3 7037:1 7061:1 7115:1 7136:1 7177:1 7184:1 7202:2 7227:1 7245:1 7257:1 7272:1 7281:1 7288:1 7319:1 7321:1 7322:2 7351:2 7385:1 7434:1 7439:1 7444:1 7566:1 7575:1 7591:1 7627:2 7637:1 7661:1 7726:1 7743:1 7747:1 7749:1 7778:1 7782:1 7785:1 7830:3 7836:2 7936:1 7950:1 7964:1 7973:1 8045:1 8050:1 8062:1 8065:1 8073:1 8083:1 8084:1 8085:1 8086:1 8088:1 8091:1 8092:1 8099:3 8101:4 8135:1 8136:1 8147:1 8151:1 8162:1 8163:1 8176:1 8193:1 8210:2 8212:2 8213:1 8223:1 8226:1 8233:2 8269:2 8282:1 8286:2 8304:1 8362:1 8371:1 8389:1 8413:1 8416:1 8420:3 8425:1 8457:1 8464:1 8477:1 8527:2 8557:1 8558:1 8565:1 8615:1 8661:1 8662:1 8671:1 8678:1 8743:2 8748:1 8757:1 8761:1 8762:4 8814:1 8846:1 8874:1 8897:2 8917:1 8929:1 8952:1 8959:1 8966:1 9021:2 9024:1 9061:2 9068:1 9087:2 9110:1 9130:3 9140:1 9191:1 9192:1 9201:1 9203:1 9215:1 9234:1 9243:1 9282:1 9289:3 9311:1 9390:2 9412:1 9420:1 9433:2 9466:1 9489:1 9505:1 9535:2 9539:1 9540:1 9544:2 9557:1 9560:1 9561:1 9576:1 9608:1 9617:1 9622:1 9658:1 9671:1 9677:3 9678:2 9680:1 9710:1 9754:1 9789:6 9813:1 9817:1 9850:1 9858:2 9862:1 9875:1 9881:14 9892:1 9904:2 9905:4 9927:1 9937:1 9948:2 9949:1 9956:1 9971:1 10008:1 10019:1 10027:1 10034:1 10039:1 10057:2 10063:1 10089:1 10090:1 10122:3 10125:1 10133:1 10147:1 10189:1 10197:2 10228:1 10239:1 10270:1 10279:1 10292:1 10320:1 10326:1 10328:2 10340:1 10353:1 10381:1 10387:2 10395:2 10402:1 10419:2 10445:1 10470:3 10471:10 10487:1 10489:1 10500:1 10523:1 10532:1 10536:2 10547:1 10548:2 10558:1 10578:2 10594:2 10596:1 10618:1 10630:1 10647:1 10686:1 10701:1 10705:1 10753:2 10761:1 10779:1 10820:1 10857:1 10860:1 10887:1 10899:2 10912:1 10958:1 10961:1 10967:1 10973:1 10976:3 10982:1 10983:1 11019:1 11029:1 11037:1 11058:1 11084:1 11091:1 11107:1 11115:1 11138:1 11158:1 11166:2 11207:1 11208:6 11216:1 11227:1 11231:1 11238:1 11264:1 11284:1 11311:1 11320:1 11323:1 11342:1 11351:2 11396:4 11573:1 11586:1 11611:1 11638:1 11668:1 11673:1 11685:2 11696:4 11725:1 11733:1 11746:1 11779:2 11789:1 11793:1 11807:1 11818:1 11824:2 11850:1 11867:2 11913:2 11960:1 11984:1 11999:1 12015:2 12016:1 12040:1 12050:1 12051:1 12075:1 12078:1 12086:1 12092:2 12096:1 12131:1 12153:2 12183:1 12199:1 12216:1 12220:1 12224:1 12234:1 12236:1 12240:1 12242:1 12243:1 12244:1 12245:1 12324:1 12332:1 12337:1 12386:4 12403:1 12413:1 12442:1 12451:1 12479:1 12480:1 12486:1 12526:1 12567:1 12597:1 12624:1 12645:3 12702:2 12708:2 12769:2 12776:2 12786:1 12792:1 12809:1 12810:1 12811:1 12827:1 12846:1 12847:1 12855:1 12907:1 12921:1 12947:1 12974:2 12975:1 12985:1 13020:3 13023:1 13032:1 13072:1 13086:1 13104:1 13112:1 13114:1 13115:1 13126:1 13135:1 13137:2 13146:3 13228:1 13241:1 13248:1 13254:1 13259:1 13267:1 13297:1 13307:1 13335:1 13337:1 13376:1 13377:2 13378:1 13384:1 13420:1 13443:6 13476:1 13490:1 13532:1 13540:5 13579:2 13580:2 13593:1 13599:1 13611:1 13627:1 13642:1 13648:2 13666:1 13676:2 13743:1 13745:1 13762:1 13777:1 13792:1 13844:1 13855:1 13871:1 13899:1 13916:1 13956:2 13982:2 13994:1 13998:1 14033:1 14096:1 14107:1 14127:1 14129:2 14132:1 14150:2 14151:1 14166:1 14167:1 14170:1 14180:1 14192:2 14195:1 14208:1 14210:2 14214:1 14221:1 14244:1 14281:1 14288:2 14297:1 14326:1 14371:1 14397:1 14437:2 14459:1 14472:4 14482:1 14493:1 14503:1 14507:3 14520:1 14530:1 14544:1 14552:1 14590:1 14592:1 14619:1 14621:1 14638:1 14640:1 14667:1 14683:1 14705:1 14718:1 14720:1 14750:1 14787:1 14806:1 14841:1 14894:3 14920:1 14921:1 14954:2 14969:1 14978:3 14982:1 14985:1 14988:1 14997:1 14998:1 15008:1 15038:1 15046:1 15057:1 15061:1 15071:2 15074:2 15110:3 15211:1 15221:2 15228:1 15258:1 15334:2 15344:2 15345:3 15354:1 15368:1 15380:1 15425:2 15444:1 15472:4 15497:1 15503:1 15510:5 15517:2 15534:1 15547:1 15552:1 15563:3 15584:1 15594:2 15609:1 15624:1 15641:1 15646:2 15706:1 15721:2 15743:1 15753:2 15768:1 15779:1 15823:1 15839:1 15865:1 15907:1 15938:1 15971:1 15978:1 16036:1 16045:1 16048:1 16082:1 16136:2 16145:1 16184:1 16212:1 16213:1 16218:1 16233:1 16253:1 16285:1 16287:4 16319:1 16333:2 16355:1 16434:1 16469:1 16540:1 16557:1 16559:1 16581:1 16586:2 16757:1 16762:1 16773:1 16788:1 16802:5 16824:1 16836:1 16838:1 16840:1 16857:1 16879:5 16895:1 16899:1 16910:1 16913:1 16934:1 16982:4 16993:1 16994:2 16997:1 17002:1 17021:1 17031:1 17042:2 17051:1 17059:2 17081:4 17086:1 17092:3 17144:1 17151:2 17156:1 17177:1 17203:1 17205:1 17234:1 17239:1 17269:1 17278:3 17305:1 17332:1 17345:1 17371:1 17384:1 17408:1 17432:1 17440:1 17449:1 17469:1 17518:1 17528:1 17552:1 17561:3 17567:2 17585:1 17679:1 17686:1 17693:1 17744:1 17757:1 17770:1 17775:1 17777:1 17786:1 17790:1 17872:1 17909:1 17914:1 17918:2 17930:1 17950:1 17959:3 18005:2 18055:1 18058:1 18161:1 18220:2 18230:1 18232:1 18235:1 18248:1 18314:1 18340:1 18345:2 18384:2 18403:1 18407:1 18422:1 18429:1 18456:1 18467:1 18493:1 18513:2 18536:1 18561:1 18564:1 18608:1 18662:1 18664:1 18687:1 18718:1 18727:1 18742:2 18750:8 18806:1 18827:1 18868:1 18902:1 18919:1 18947:1 18989:1 19018:2 19025:1 19036:6 19084:1 19087:1 19089:1 19112:1 19129:1 19156:1 19179:6 19181:1 19202:1 19203:1 19237:1 19282:1 19328:2 19335:1 19345:1 19365:1 19389:1 19394:1 19395:1 19439:2 19589:1 19631:1 19641:1 19659:1 19695:1 19703:1 19713:2 19728:2 19756:1 19757:1 19767:1 19788:2 19812:1 19852:1 19867:1 19875:1 19912:1 19919:1 19924:3 19929:1 19964:1 19980:1 19984:1 20022:3 20102:1 20106:1 20128:2 20129:2 20130:1 20143:1 20164:1 20170:1 20189:1 20190:1 20192:1 20200:1 20201:1 20212:1 20226:4 20234:1 20297:1 20299:1 20303:1 20304:2 20306:4 20334:1 20343:4 20353:1 20382:1 20391:1 20434:1 20445:1 20502:3 20518:1 20546:1 20557:1 20580:1 20594:1 20597:1 20608:2 20619:1 20627:1 20632:1 20645:1 20652:1 20657:3 20662:3 20667:1 20672:1 20686:1 20730:1 20823:1 20852:1 20857:2 20865:1 20874:1 20877:1 20893:1 20907:1 20920:1 20940:1 20955:2 20957:2 20965:1 20973:7 21029:1 21032:1 21039:1 21087:1 21096:1 21108:1 21115:1 21139:1 21159:1 21172:1 21185:1 21193:1 21225:1 21226:1 21257:1 21274:1 21294:2 21309:1 21311:1 21327:1 21333:3 21378:3 21476:1 21496:1 21505:1 21510:3 21514:1 21515:1 21543:1 21546:1 21595:25 21599:1 21631:1 21645:1 21661:1 21662:1 21668:1 21681:1 21683:1 21690:1 21691:1 21722:1 21724:1 21749:1 21783:1 21797:1 21855:1 21870:1 21924:1 21929:1 21944:1 21949:2 22068:1 22115:1 22126:1 22170:1 22172:1 22175:2 22179:1 22184:1 22188:1 22193:2 22196:1 22201:1 22248:1 22281:3 22282:3 22400:1 22406:1 22414:4 22429:3 22430:1 22460:1 22462:1 22477:1 22484:1 22497:1 22520:1 22529:1 22546:1 22574:1 22575:2 22582:1 22616:1 22666:2 22674:1 22679:1 22698:1 22761:1 22788:1 22791:1 22795:1 22803:1 22851:1 22864:2 22878:1 22912:1 22915:1 22922:1 22969:1 22973:1 22991:1 22997:1 23015:1 23025:2 23060:1 23126:1 23197:1 23200:1 23215:1 23232:1 23255:1 23256:1 23297:2 23306:1 23307:1 23322:1 23401:2 23413:2 23450:1 23464:2 23480:1 23527:1 23543:1 23549:1 23555:3 23568:1 23584:2 23660:1 23667:1 23721:1 23725:2297 23753:1 23784:1 23856:1 23867:1 23903:1 23935:1 23945:1 23978:1 23991:1 23994:1 23995:1 23997:1 24000:1 24001:1 24083:1 24089:1 24125:1 24134:1 24146:1 24150:1 24153:1 24166:1 24179:1 24204:1 24222:1 24237:1 24238:1 24242:1 24245:2 24277:1 24281:3 24284:1 24354:1 24357:1 24364:1 24377:1 24393:1 24399:1 24409:1 24441:2 24453:1 24489:1 24515:1 24531:1 24533:1 24545:4 24588:1 24593:6 24597:1 24604:1 24631:2 24641:1 24669:1 24700:1 24723:1 24763:1 24777:1 24805:3 24848:1 24851:1 24874:2 24875:1 24881:1 24898:1 24940:1 24982:1 24988:2 25042:1 25047:1 25055:1 25072:1 25111:1 25112:1 25118:1 25141:1 25170:1 25206:2 25261:1 25265:2 25275:1 25283:1 25286:1 25308:1 25312:1 25327:1 25328:3 25356:1 25357:4 25376:3 25380:1 25382:1 25398:1 25408:1 25413:1 25437:1 25497:1 25531:3 25532:1 25552:2 25563:1 25609:1 25710:3 25724:1 25769:1 25774:2 25782:1 25841:1 25844:1 25890:2 25892:1 25896:1 25907:1 25919:1 25944:2 25952:1 25977:4 25981:2 25990:1 25994:1 25998:1 26001:1 26050:1 26078:1 26090:1 26105:1 26119:1 26124:1 26156:2 26169:3 26199:1 26200:1 26218:1 26233:1 26242:1 26250:4 26262:2 26279:1 26287:1 26301:1 26305:1 26308:4 26314:1 26326:1 26337:1 26372:1 26379:1 26392:1 26394:1 26398:3 26404:1 26417:1 26422:1 26424:1 26440:1 26456:1 26475:1 26504:1 26524:1 26529:1 26537:1 26541:2 26544:1 26560:1 26562:1 26563:2 26585:1 26589:1 26608:1 26665:1 26681:1 26695:1 26697:1 26698:1 26700:1 26729:4 26757:1 26808:1 26846:1 26855:1 26856:1 26857:1 26858:1 26883:1 26889:1 26897:1 26904:1 26914:1 26944:1 27002:2 27005:3 27073:1 27091:1 27092:2 27095:1 27101:1 27108:2 27116:1 27127:2 27139:1 27141:2 27172:1 27178:1 27193:1 27303:2 27306:2 27333:2 27347:1 27371:1 27390:1 27396:1 27415:1 27475:1 27482:1 27498:2 27503:3 27516:1 27524:1 27538:1 27560:1 27592:1 27609:1 27624:1 27660:1 27677:1 27710:2 27750:1 27772:1 27803:1 27806:1 27810:1 27823:1 27838:1 27841:1 27864:1 27930:1 27956:1 27981:1 27982:1 28002:1 28029:1 28038:1 28045:3 28069:3 28079:1 28091:1 28094:6 28102:1 28109:1 28115:1 28125:1 28155:1 28189:1 28192:1 28226:1 28227:1 28314:1 28342:1 28354:1 28404:1 28423:2 28427:1 28433:2 28488:1 28519:1 28632:1 28659:1 28741:1 28744:1 28759:1 28839:1 28863:1 28876:1 28877:1 28884:1 28976:1 28991:1 28998:1 28999:1 29007:1 29010:1 29016:1 29031:1 29032:1 29058:1 29059:1 29091:1 29105:2 29141:1 29146:1 29156:1 29168:1 29172:3 29187:1 29203:2 29217:1 29263:2 29285:1 29304:1 29307:1 29311:1 29322:1 29335:1 29351:2 29375:2 29405:1 29426:1 29428:2 29429:1 29451:1 29465:1 29506:1 29516:1 29521:1 29529:1 29553:2 29555:1 29570:1 29583:1 29625:2 29632:2 29669:1 29686:1 29689:1 29692:2 29693:1 29744:1 29754:1 29762:2 29795:1 29832:1 29859:1 29871:1 29880:1 29892:1 29954:1 29985:1 30036:2 30042:1 30052:1 30080:1 30091:1 30122:1 30128:1 30145:1 30152:1 30157:1 30181:1 30249:3 30266:7 30273:1 30281:1 30301:1 30329:1 30331:1 30375:1 30378:1 30386:1 30426:1 30430:3 30438:3 30465:1 30467:1 30480:2 30484:2 30489:1 30490:1 30521:1 30537:1 30557:1 30563:1 30586:1 30591:1 30622:1 30640:2 30663:3 30668:3 30671:1 30681:1 30701:1 30706:1 30711:2 30743:1 30752:1 30796:2 30811:1 30885:1 30893:1 30923:2 30926:3 30940:1 30949:1 30960:1 31004:1 31030:1 31060:2 31064:1 31134:1 31148:1 31157:1 31180:1 31201:1 31214:1 31216:1 31280:1 31322:1 31355:5 31358:3 31396:1 31415:1 31427:1 31449:1 31450:1 31455:1 31456:2 31478:1 31479:1 31544:2 31558:1 31565:1 31569:1 31570:2 31579:1 31584:1 31586:1 31598:1 31606:1 31612:1 31640:1 31667:2 31680:3 31696:2 31722:1 31746:2 31753:1 31798:1 31799:1 31835:1 31836:1 31839:1 31857:1 31864:1 31904:1 31982:2 32016:2 32017:1 32036:1 32055:1 32080:1 32150:1 32175:1 32178:1 32199:1 32209:1 32230:1 32236:1 32244:1 32252:1 32256:1 32284:1 32297:1 32299:2 32328:2 32331:1 32346:1 32384:2 32405:1 32414:1 32492:4 32507:2 32521:1 32528:4 32533:1 32578:1 32653:1 32711:1 32713:1 32772:1 32779:1 32783:1 32787:1 32792:1 32800:1 32835:1 32841:1 32853:1 32862:1 32870:1 32874:4 32879:1 32880:1 32908:1 32928:1 32974:1 32986:2 33006:2 33012:2 33020:1 33026:1 33054:1 33070:2 33118:2 33144:1 33203:2 33212:1 33215:1 33216:2 33230:1 33250:1 33267:1 33356:1 33394:1 33399:1 33400:1 33406:2 33444:1 33452:2 33507:1 33514:2 33518:1 33527:1 33531:1 33533:2 33534:1 33549:1 33553:1 33560:2 33620:1 33654:1 33712:1 33721:1 33723:1 33728:1 33767:2 33773:1 33811:1 33825:1 33844:1 33849:2 33856:2 33861:1 33889:1 33896:1 33925:1 33935:1 33936:1 33938:1 33950:1 33998:1 34015:1 34018:1 34023:2 34029:1 34040:2 34047:1 34059:1 34060:1 34067:1 34068:2 34116:1 34132:2 34139:1 34170:1 34172:1 34182:1 34184:1 34197:1 34200:1 34212:2 34219:1 34263:2 34267:1 34285:1 34323:1 34372:1 34393:2 34442:2 34479:1 34488:2 34495:1 34530:1 34587:1 34616:1 34624:2 34633:1 34668:1 34739:1 34753:1 34757:1 34773:8 34774:1 34776:1 34794:1 34797:1 34810:5 34833:2 34844:1 34881:1 34917:1 34919:1 34932:1 34963:3 34966:1 34971:1 34981:1 34982:1 35001:1 35004:6 35015:1 35028:1 35048:1 35058:1 35063:1 35074:2 35082:1 35102:1 35117:2 35141:1 35154:2 35161:1 35179:1 35203:1 35223:1 35249:2 35302:1 35305:1 35310:1 35316:1 35324:1 35335:1 35360:1 35378:1 35382:1 35384:1 35437:3 35459:1 35464:1 35515:1 35565:2 35622:1 35646:2 35649:2 35675:1 35684:1 35689:1 35714:1 35741:1 35742:1 35751:1 35763:1 35846:1 35864:2 35882:1 35932:2 35978:1 35985:1 36010:1 36022:1 36053:1 36104:1 36128:1 36158:1 36170:1 36202:1 36203:1 36235:1 36292:1 36312:1 36318:1 36326:3 36327:1 36328:1 36329:3 36334:2 36340:1 36342:1 36343:1 36351:1 36366:1 36370:1 36371:1 36392:1 36396:1 36410:1 36415:1 36426:2 36433:1 36438:1 36477:1 36482:1
15 48:1 82:3 114:1 129:2 192:1 193:2 216:2 225:1 255:1 256:1 277:1 300:1 321:3 371:1 404:1 451:2 456:2 511:1 551:3 564:1 578:1 595:2 649:1 677:1 680:1 682:1 690:1 692:1 707:1 726:2 730:1 733:2 738:1 745:1 759:2 772:1 773:2 776:1 783:1 787:1 848:1 877:3 897:1 916:1 936:3 952:1 1002:1 1008:1 1042:2 1048:1 1068:1 1071:1 1073:1 1075:1 1078:2 1081:1 1096:1 1099:1 1103:1 1133:1 1135:2 1140:1 1148:1 1154:1 1167:2 1192:1 1222:1 1231:2 1237:1 1247:1 1272:2 1274:1 1275:1 1307:1 1316:1 1348:2 1393:1 1396:1 1418:1 1423:2 1450:1 1473:3 1482:1 1525:2 1535:1 1541:1 1542:1 1553:1 1554:2 1577:1 1606:1 1615:1 1624:1 1634:1 1635:1 1654:1 1662:1 1667:1 1723:1 1737:2 1746:2 1757:4 1796:1 1799:1 1803:1 1807:2 1809:2 1815:1 1816:1 1819:4 1854:1 1870:1 1892:1 1901:4 1905:3 1913:2 1919:2 1938:1 1954:1 1955:1 1997:2 2004:2 2006:2 2017:1 2041:2 2071:1 2097:1 2118:1 2145:1 2148:2 2154:1 2171:2 2194:1 2223:1 2224:1 2227:1 2232:1 2234:2 2237:1 2239:2 2242:1 2301:1 2371:1 2374:4 2393:2 2398:1 2411:1 2596:1 2601:1 2633:1 2684:1 2742:2 2743:1 2780:1 2787:1 2789:2 2791:3 2801:1 2805:2 2810:1 2811:1 2812:2 2813:2 2817:1 2820:2 2821:1 2840:1 2860:1 2861:1 2905:2 2938:1 2989:1 2990:2 3041:1 3049:1 3063:2 3167:1 3172:1 3197:1 3202:1 3214:1 3314:2 3326:1 3356:1 3359:1 3367:1 3370:1 3421:1 3423:2 3495:1 3505:2 3513:1 3547:2 3552:1 3559:1 3569:3 3576:3 3577:1 3589:1 3615:2 3635:4 3653:1 3660:1 3664:1 3666:1 3669:1 3675:1 3705:1 3711:1 3758:1 3775:1 3820:1 3853:1 3866:1 3904:1 3945:1 4033:2 4047:1 4083:1 4091:1 4103:1 4148:3 4161:1 4179:1 4219:1 4221:1 4224:1 4231:1 4261:3 4264:1 4307:1 4319:1 4333:1 4380:1 4413:1 4416:1 4439:1 4452:1 4455:1 4463:1 4465:1 4498:1 4501:1 4536:1 4541:1 4549:1 4553:1 4556:1 4590:1 4602:1 4608:1 4624:1 4646:1 4687:2 4688:2 4708:1 4730:1 4741:1 4742:1 4745:1 4771:1 4774:2 4820:2 4821:3 4826:2 4859:1 4873:1 4874:1 4888:1 4894:1 4898:1 4933:1 4959:1 4974:1 5001:1 5002:1 5027:2 5028:1 5054:1 5063:1 5132:1 5177:1 5201:1 5232:1 5246:1 5255:3 5287:1 5294:2 5298:1 5310:1 5314:1 5344:1 5347:1 5357:1 5366:1 5378:4 5411:1 5421:1 5438:1 5489:1 5506:1 5519:1 5522:1 5531:1 5581:2 5583:1 5590:1 5607:1 5623:1 5664:1 5677:1 5683:2 5689:3 5697:1 5718:2 5730:2 5743:1 5838:2 5855:1 5865:1 5866:2 5885:1 5920:1 5921:1 5925:1 5928:2 6014:1 6021:1 6097:6 6140:1 6145:1 6167:1 6172:1 6237:4 6257:2 6258:1 6263:1 6273:1 6277:1 6281:1 6283:1 6287:1 6288:2 6289:1 6291:1 6315:1 6316:1 6321:1 6435:1 6449:1 6454:1 6458:2 6475:1 6476:1 6529:2 6533:1 6543:1 6564:1 6567:1 6584:2 6605:2 6612:1 6630:3 6695:1 6737:1 6740:1 6747:1 6772:4 6802:1 6806:1 6822:1 6829:1 6853:3 6877:1 6896:1 6909:1 6921:1 6922:1 6934:1 6936:1 6942:1 6963:3 7037:1 7061:1 7115:1 7136:1 7177:1 7184:1 7202:3 7227:1 7245:1 7257:1 7272:1 7281:1 7288:1 7319:1 7321:1 7322:2 7323:1 7351:2 7368:1 7385:1 7434:1 7439:1 7444:1 7517:1 7536:1 7566:1 7575:1 7591:1 7627:2 7637:1 7661:1 7726:1 7743:1 7747:1 7749:1 7778:1 7782:1 7785:1 7830:3 7836:2 7936:1 7950:1 7964:1 7973:1 8045:1 8050:1 8056:1 8062:1 8065:1 8073:1 8083:1 8084:1 8085:1 8086:1 8088:1 8091:2 8092:1 8099:3 8101:4 8135:1 8136:1 8147:1 8151:1 8162:1 8163:1 8176:1 8193:1 8210:2 8212:2 8213:1 8223:1 8226:1 8233:2 8269:2 8282:1 8286:2 8304:1 8362:1 8371:1 8389:1 8413:1 8416:1 8420:3 8425:1 8457:1 8464:1 8477:1 8527:2 8557:1 8558:1 8565:1 8615:1 8661:1 8662:1 8671:1 8678:1 8743:2 8748:1 8757:1 8761:1 8762:4 8814:1 8846:1 8874:1 8897:2 8917:1 8929:1 8952:1 8959:1 8966:1 9021:2 9024:1 9061:2 9068:1 9087:2 9110:1 9130:3 9140:1 9191:1 9192:1 9201:1 9203:1 9215:1 9234:1 9243:1 9282:1 9289:3 9311:1 9352:1 9390:2 9412:1 9420:1 9433:2 9466:1 9489:1 9505:1 9535:2 9539:1 9540:1 9544:2 9557:1 9560:1 9561:1 9576:1 9608:1 9617:1 9622:1 9633:1 9658:1 9671:1 9677:3 9678:2 9680:1 9710:1 9754:1 9789:6 9813:1 9817:1 9850:1 9858:2 9862:1 9875:1 9881:16 9892:1 9904:2 9905:4 9927:1 9937:1 9948:2 9949:1 9956:1 9971:1 10008:1 10019:1 10027:1 10034:1 10039:1 10057:2 10063:1 10089:1 10090:1 10122:3 10125:1 10133:1 10147:1 10189:1 10197:2 10228:1 10239:1 10270:1 10279:1 10292:1 10320:1 10326:1 10328:2 10340:1 10353:1 10381:1 10387:2 10395:2 10402:1 10419:3 10445:1 10470:3 10471:10 10487:1 10489:1 10500:1 10523:1 10532:1 10536:2 10547:1 10548:2 10558:1 10572:1 10578:2 10594:2 10596:1 10618:1 10630:1 10647:1 10686:1 10701:1 10705:1 10753:2 10758:1 10761:1 10779:1 10820:1 10857:1 10860:1 10887:1 10899:2 10912:1 10958:1 10961:1 10967:1 10973:1 10976:3 10982:1 10983:1 11006:1 11019:1 11029:1 11037:1 11058:1 11084:1 11091:1 11107:1 11115:1 11138:1 11158:1 11166:2 11190:1 11207:1 11208:6 11216:1 11227:1 11231:1 11238:1 11264:1 11284:1 11311:1 11320:1 11323:1 11342:1 11351:2 11396:4 11573:1 11586:1 11594:1 11611:1 11638:1 11668:1 11673:1 11685:2 11696:4 11725:1 11733:1 11746:1 11779:2 11789:1 11793:1 11807:1 11818:1 11824:2 11850:1 11867:2 11913:2 11960:1 11984:1 11999:1 12015:2 12016:1 12040:1 12050:1 12051:1 12075:1 12078:1 12086:1 12092:2 12095:1 12096:1 12131:1 12153:2 12183:1 12199:1 12216:1 12220:1 12224:1 12234:1 12236:1 12240:1 12242:1 12243:1 12244:1 12245:1 12285:1 12324:1 12332:1 12337:1 12386:4 12403:1 12413:2 12442:1 12451:1 12479:1 12480:1 12486:1 12526:1 12567:1 12597:1 12624:1 12645:3 12682:1 12702:2 12708:2 12769:2 12776:2 12786:1 12792:1 12809:1 12810:1 12811:1 12827:1 12846:1 12847:1 12855:1 12907:1 12921:1 12947:1 12974:2 12975:1 12985:1 13020:3 13023:1 13032:1 13072:1 13086:1 13104:1 13112:1 13114:1 13115:1 13126:1 13135:1 13137:2 13146:3 13228:1 13229:1 13241:1 13248:1 13254:1 13259:1 13267:1 13297:1 13307:1 13335:1 13337:1 13376:1 13377:2 13378:1 13384:1 13420:1 13443:6 13476:1 13490:1 13532:1 13540:5 13579:2 13580:2 13593:1 13599:1 13611:1 13627:1 13642:1 13648:2 13666:1 13676:2 13742:1 13743:1 13745:1 13762:1 13777:1 13792:1 13844:1 13855:1 13871:1 13899:1 13916:1 13956:2 13982:2 13994:1 13998:1 14033:1 14096:1 14107:1 14127:1 14129:2 14132:1 14150:2 14151:1 14166:1 14167:1 14170:1 14180:1 14192:2 14195:1 14208:1 14210:2 14214:1 14221:1 14244:1 14281:1 14288:2 14297:1 14326:1 14371:1 14397:1 14437:2 14459:1 14472:4 14482:1 14493:1 14503:1 14507:3 14520:1 14530:1 14544:1 14552:1 14590:1 14592:1 14619:1 14621:1 14638:1 14640:1 14667:1 14683:1 14702:1 14705:1 14718:1 14720:1 14750:1 14787:1 14806:1 14841:1 14894:3 14920:1 14921:1 14954:2 14969:1 14978:3 14982:1 14985:2 14988:1 14997:1 14998:1 15008:1 15038:1 15046:1 15057:1 15061:1 15071:3 15074:2 15110:3 15211:1 15221:2 15228:1 15258:1 15334:2 15344:2 15345:3 15354:1 15368:1 15380:1 15397:1 15425:2 15444:1 15472:4 15497:1 15503:1 15510:5 15517:2 15534:1 15547:1 15552:1 15563:3 15584:1 15594:2 15609:1 15624:1 15631:1 15641:1 15646:2 15706:1 15721:3 15743:1 15753:2 15768:1 15779:1 15823:1 15839:1 15865:1 15907:1 15936:1 15938:1 15971:1 15978:1 16036:1 16045:1 16048:1 16082:1 16136:2 16145:1 16184:1 16212:1 16213:1 16218:1 16233:1 16253:1 16285:1 16287:4 16319:1 16333:2 16355:1 16434:1 16469:1 16483:1 16540:1 16557:1 16559:1 16581:1 16586:2 16757:1 16762:1 16773:1 16788:1 16802:5 16824:1 16836:1 16838:1 16840:1 16857:1 16879:6 16895:1 16899:1 16910:1 16913:1 16934:1 16982:4 16993:1 16994:2 16997:1 17002:1 17021:1 17031:1 17042:2 17051:1 17059:2 17081:4 17086:1 17092:3 17144:1 17151:2 17156:1 17177:1 17203:1 17205:1 17234:1 17239:1 17269:1 17278:3 17305:1 17332:1 17345:1 17371:1 17384:1 17408:1 17432:1 17436:1 17440:1 17449:1 17469:1 17481:1 17518:1 17528:1 17552:1 17561:3 17567:2 17585:1 17679:1 17686:1 17693:1 17744:1 17757:1 17770:1 17775:1 17777:1 17786:2 17790:1 17872:1 17909:1 17914:1 17918:2 17930:2 17950:1 17959:3 18005:2 18055:1 18058:1 18161:1 18220:2 18230:1 18232:1 18235:1 18245:1 18248:1 18263:1 18314:1 18340:1 18345:3 18384:2 18385:1 18389:1 18403:1 18407:1 18422:1 18429:1 18456:1 18467:1 18493:1 18513:2 18536:1 18561:1 18564:1 18608:1 18662:1 18664:1 18687:1 18718:1 18727:1 18742:2 18750:8 18757:1 18806:1 18827:1 18868:1 18902:1 18919:1 18947:1 18989:1 19018:2 19025:1 19036:6 19084:1 19087:2 19089:1 19112:1 19129:2 19156:1 19179:6 19181:1 19202:1 19203:1 19237:1 19282:1 19328:2 19335:2 19345:1 19365:1 19389:1 19394:1 19395:1 19439:2 19589:1 19631:1 19641:1 19659:1 19695:1 19703:1 19713:2 19728:2 19756:1 19757:1 19767:1 19788:2 19812:1 19852:1 19867:1 19875:1 19912:1 19919:1 19924:3 19929:1 19964:1 19980:1 19984:1 20022:3 20102:1 20106:1 20128:2 20129:2 20130:1 20143:1 20164:1 20170:1 20189:1 20190:1 20192:1 20200:1 20201:1 20212:1 20226:4 20234:1 20297:1 20299:1 20303:1 20304:2 20306:4 20334:1 20343:4 20353:1 20382:1 20391:1 20434:1 20445:1 20484:1 20502:3 20518:1 20546:2 20557:1 20580:1 20594:1 20597:1 20608:2 20619:1 20627:1 20632:1 20645:1 20652:1 20657:3 20662:3 20667:1 20672:1 20686:1 20730:1 20823:1 20852:1 20857:2 20865:1 20874:1 20877:1 20893:1 20899:1 20907:1 20920:1 20940:1 20955:2 20957:2 20965:1 20973:7 20983:1 21029:1 21032:1 21039:1 21087:1 21096:1 21108:1 21115:1 21139:1 21159:1 21172:1 21185:1 21193:1 21225:1 21226:1 21257:1 21274:1 21294:2 21309:1 21311:1 21327:1 21333:3 21378:3 21476:1 21496:1 21505:1 21510:3 21514:1 21515:1 21543:1 21546:1 21595:25 21599:1 21631:1 21645:1 21661:1 21662:1 21668:1 21681:1 21683:1 21690:1 21691:1 21722:1 21724:1 21749:1 21783:1 21797:1 21855:1 21870:1 21923:2 21924:1 21929:1 21944:1 21949:2 22068:1 22115:1 22126:1 22170:1 22172:1 22175:2 22179:1 22184:1 22188:1 22193:2 22196:1 22201:1 22248:1 22281:3 22282:3 22400:1 22406:1 22414:4 22429:3 22430:1 22460:1 22462:1 22477:1 22484:1 22497:1 22520:1 22529:1 22546:1 22574:1 22575:2 22582:1 22616:1 22666:2 22674:1 22679:1 22698:1 22761:1 22788:1 22791:1 22795:1 22803:1 22851:1 22864:2 22878:1 22912:1 22915:1 22922:1 22969:1 22973:1 22991:1 22997:1 23015:1 23025:2 23060:1 23126:1 23197:1 23200:1 23215:1 23232:1 23255:1 23256:1 23297:2 23306:1 23307:1 23322:1 23401:2 23413:2 23450:1 23464:2 23480:1 23527:1 23543:1 23549:1 23555:3 23568:1 23584:2 23619:1 23660:1 23667:1 23721:1 23725:2417 23753:1 23784:1 23811:1 23856:2 23867:1 23903:1 23935:1 23945:1 23978:1 23991:1 23994:1 23995:1 23997:1 24000:1 24001:1 24053:1 24083:1 24089:1 24125:1 24134:1 24146:1 24150:1 24153:1 24166:1 24179:1 24204:1 24222:1 24237:1 24238:1 24242:1 24245:2 24277:1 24281:3 24284:1 24354:1 24357:1 24364:1 24377:1 24393:1 24399:1 24409:1 24441:2 24453:1 24489:1 24515:1 24531:1 24533:1 24545:5 24588:1 24593:6 24597:1 24604:1 24631:2 24641:1 24669:1 24700:1 24723:1 24763:1 24777:1 24805:3 24848:1 24851:1 24874:2 24875:1 24881:1 24898:1 24913:1 24940:1 24982:1 24988:2 25031:1 25042:1 25047:1 25055:1 25072:1 25111:1 25112:1 25118:1 25141:1 25170:1 25206:2 25261:1 25265:2 25275:1 25283:1 25286:1 25308:1 25312:1 25327:1 25328:3 25356:1 25357:4 25376:3 25380:1 25382:1 25398:1 25408:1 25413:1 25437:1 25451:1 25497:1 25531:3 25532:1 25541:1 25552:2 25563:1 25609:1 25710:3 25724:1 25769:1 25774:2 25782:1 25841:1 25844:1 25890:2 25892:1 25896:1 25907:1 25919:1 25944:2 25952:1 25977:4 25981:2 25990:1 25994:1 25998:1 26001:1 26050:1 26070:1 26078:1 26090:1 26105:1 26119:1 26124:1 26156:2 26169:3 26199:1 26200:1 26218:1 26233:1 26242:1 26250:4 26262:2 26279:1 26287:1 26301:1 26305:1 26308:4 26314:1 26326:1 26337:1 26372:1 26379:1 26392:1 26394:2 26398:4 26404:1 26417:1 26422:1 26424:1 26440:1 26456:1 26468:1 26475:1 26504:1 26524:1 26529:1 26537:1 26541:2 26544:1 26560:1 26562:1 26563:2 26585:1 26589:2 26608:1 26665:1 26681:1 26695:1 26697:1 26698:1 26700:1 26729:4 26757:1 26808:1 26846:1 26855:1 26856:1 26857:1 26858:1 26876:1 26883:1 26889:1 26897:2 26904:1 26914:1 26944:1 27002:2 27005:3 27073:1 27091:1 27092:2 27095:1 27101:1 27108:2 27116:1 27127:2 27139:1 27141:2 27172:1 27178:1 27193:1 27303:2 27306:2 27333:2 27347:1 27371:1 27390:1 27396:1 27415:1 27475:1 27482:1 27498:2 27503:3 27516:1 27524:2 27538:1 27560:1 27592:1 27609:1 27624:1 27660:1 27677:1 27710:2 27750:1 27772:1 27803:1 27806:1 27810:1 27823:1 27838:1 27841:1 27864:1 27930:1 27956:1 27981:1 27982:1 28002:1 28029:1 28038:1 28045:3 28069:3 28079:1 28091:1 28094:6 28102:1 28109:1 28115:1 28125:1 28155:1 28189:1 28192:1 28226:1 28227:1 28314:1 28342:1 28354:1 28404:1 28423:2 28427:1 28433:2 28488:1 28519:1 28632:1 28659:1 28741:1 28744:1 28759:1 28839:1 28863:1 28876:1 28877:1 28884:1 28976:1 28991:1 28998:1 28999:1 29007:1 29010:1 29016:1 29031:1 29032:1 29058:1 29059:1 29091:1 29105:2 29141:1 29146:1 29156:1 29168:1 29172:3 29187:1 29203:2 29217:1 29263:2 29279:1 29285:1 29304:1 29307:1 29311:1 29322:1 29335:1 29351:2 29375:2 29405:1 29426:1 29428:2 29429:1 29451:1 29465:1 29506:1 29516:1 29521:1 29529:1 29553:2 29555:1 29570:1 29583:1 29625:2 29632:2 29669:1 29686:1 29689:1 29692:2 29693:1 29744:1 29754:1 29762:2 29795:1 29832:1 29859:1 29871:1 29880:2 29892:1 29954:1 29985:1 30036:2 30042:1 30052:1 30080:1 30091:1 30122:1 30128:1 30145:1 30152:1 30157:1 30181:1 30249:3 30258:1 30266:7 30273:1 30281:1 30301:1 30329:1 30331:1 30375:1 30378:1 30386:1 30426:1 30430:3 30438:3 30447:1 30465:1 30467:1 30480:2 30484:2 30489:1 30490:1 30521:1 30537:1 30557:1 30563:1 30586:1 30591:1 30622:1 30640:2 30663:3 30668:3 30671:1 30681:1 30701:1 30706:1 30711:2 30743:1 30752:1 30796:2 30811:1 30885:1 30893:1 30923:2 30926:3 30940:1 30949:1 30960:1 31004:1 31030:1 31060:2 31064:1 31092:1 31134:1 31148:1 31157:1 31180:1 31201:1 31214:1 31216:1 31280:1 31322:1 31355:5 31358:3 31396:1 31415:1 31427:1 31449:1 31450:1 31455:1 31456:2 31478:1 31479:1 31544:2 31558:1 31565:1 31569:1 31570:2 31579:1 31584:1 31586:1 31598:1 31606:1 31612:1 31640:1 31667:2 31680:3 31696:2 31722:1 31746:2 31753:1 31798:1 31799:1 31835:1 31836:1 31839:1 31857:1 31864:1 31904:1 31982:2 32016:2 32017:1 32036:1 32055:1 32080:1 32150:2 32175:1 32178:1 32182:1 32199:1 32209:1 32230:1 32236:1 32244:1 32252:1 32256:1 32284:1 32297:1 32299:2 32328:2 32331:1 32346:1 32384:2 32405:1 32414:1 32492:4 32507:2 32521:1 32528:4 32533:1 32578:1 32653:1 32711:1 32713:1 32772:1 32779:1 32783:1 32787:1 32792:1 32800:1 32835:1 32841:1 32853:1 32862:1 32870:1 32874:4 32879:1 32880:1 32908:1 32928:1 32974:1 32986:2 33006:2 33012:2 33020:1 33026:1 33054:1 33070:2 33118:2 33144:1 33203:2 33211:1 33212:1 33215:1 33216:2 33230:1 33250:1 33267:1 33356:1 33394:1 33399:1 33400:1 33406:2 33444:1 33452:2 33507:1 33514:2 33518:1 33527:1 33531:1 33533:2 33534:1 33549:1 33553:1 33560:2 33620:1 33654:1 33712:1 33721:2 33723:1 33728:1 33767:2 33773:1 33811:1 33825:1 33844:1 33849:2 33856:2 33861:1 33889:1 33896:1 33897:1 33925:1 33935:1 33936:1 33938:1 33950:1 33998:1 34015:1 34018:1 34023:2 34029:1 34040:2 34047:1 34059:1 34060:1 34067:1 34068:2 34116:1 34132:2 34139:1 34170:1 34172:1 34182:1 34184:1 34197:1 34200:1 34212:2 34219:1 34263:2 34267:1 34285:1 34323:1 34372:1 34393:2 34442:2 34479:1 34488:2 34495:1 34530:1 34587:1 34616:1 34624:2 34633:1 34668:1 34674:1 34739:1 34753:1 34757:1 34773:8 34774:1 34776:1 34794:1 34797:1 34810:5 34833:2 34844:1 34881:1 34917:1 34919:1 34932:1 34963:3 34966:1 34971:1 34981:1 34982:1 35001:1 35004:6 35015:1 35028:1 35048:1 35058:1 35063:1 35074:2 35082:1 35102:1 35117:2 35141:1 35154:2 35161:1 35179:1 35203:1 35223:1 35249:2 35302:1 35305:1 35310:1 35316:1 35324:1 35335:1 35360:1 35378:1 35382:1 35384:1 35437:3 35442:1 35459:1 35464:1 35515:1 35565:2 35622:1 35646:2 35649:2 35675:1 35684:1 35689:1 35714:1 35741:1 35742:1 35751:1 35763:1 35846:1 35864:2 35882:1 35932:2 35959:1 35978:1 35985:1 36010:1 36022:1 36053:1 36104:1 36128:1 36158:1 36170:1 36202:1 36203:1 36235:1 36292:1 36312:1 36318:1 36326:3 36327:1 36328:1 36329:3 36334:2 36340:1 36342:1 36343:1 36351:1 36366:1 36370:1 36371:1 36392:1 36396:1 36410:1 36415:1 36426:2 36433:1 36438:1 36477:1 36482:1
15 48:1 82:3 114:1 129:2 192:1 193:2 216:2 225:1 255:1 256:1 277:1 300:1 321:3 371:2 392:1 404:1 451:2 456:2 493:1 511:1 551:3 564:1 578:1 595:2 649:1 677:1 680:1 682:1 690:1 692:1 707:1 712:1 726:2 730:1 733:2 738:1 745:1 759:2 772:1 773:2 776:1 783:1 787:1 848:1 877:3 897:1 911:1 916:1 936:3 941:1 952:1 1002:1 1008:1 1042:2 1048:1 1068:1 1071:1 1073:1 1075:1 1078:2 1081:1 1096:1 1099:1 1103:1 1133:1 1135:2 1140:1 1148:1 1154:1 1167:2 1192:1 1222:1 1231:2 1237:1 1247:1 1272:2 1274:1 1275:1 1307:1 1316:1 1348:2 1393:1 1396:1 1418:1 1423:2 1450:1 1473:3 1482:1 1525:2 1535:1 1541:1 1542:1 1553:1 1554:2 1577:1 1606:1 1615:1 1624:1 1634:1 1635:1 1654:1 1662:1 1667:1 1723:1 1737:2 1746:2 1757:4 1796:1 1799:1 1803:1 1807:2 1809:2 1815:1 1816:1 1819:4 1854:1 1870:1 1892:1 1901:4 1905:3 1913:2 1919:2 1938:1 1954:1 1955:1 1997:2 2004:2 2006:2 2017:1 2041:2 2071:1 2097:1 2118:1 2145:2 2148:2 2154:1 2171:2 2194:1 2196:1 2223:1 2224:1 2227:1 2232:1 2234:2 2237:1 2239:2 2242:1 2301:1 2371:1 2374:4 2393:2 2398:1 2411:1 2564:1 2596:1 2601:1 2633:2 2684:1 2742:2 2743:1 2780:1 2787:1 2789:2 2791:3 2801:2 2805:2 2810:1 2811:1 2812:2 2813:2 2817:1 2820:2 2821:1 2840:1 2860:1 2861:1 2905:2 2938:1 2989:1 2990:2 3041:1 3049:1 3063:2 3167:1 3172:1 3197:1 3202:1 3214:1 3314:2 3326:1 3356:1 3359:1 3363:1 3367:1 3370:1 3421:1 3423:2 3432:1 3495:1 3505:2 3513:1 3547:2 3552:1 3559:1 3569:3 3576:3 3577:1 3589:1 3615:2 3635:4 3653:1 3660:1 3664:1 3666:1 3669:1 3675:1 3705:1 3711:1 3758:1 3775:1 3820:1 3853:1 3866:1 3904:1 3945:1 4033:2 4047:1 4083:1 4091:1 4103:1 4148:3 4161:1 4179:1 4219:1 4221:1 4224:1 4231:1 4261:3 4264:1 4307:1 4319:1 4333:1 4380:1 4413:1 4416:1 4439:1 4452:1 4455:1 4463:1 4465:1 4498:1 4501:1 4536:1 4541:1 4549:1 4553:1 4556:1 4590:1 4602:1 4608:1 4624:1 4646:1 4687:2 4688:2 4708:1 4730:1 4741:1 4742:1 4745:1 4771:1 4774:2 4820:2 4821:3 4826:2 4859:1 4873:1 4874:1 4888:1 4894:1 4898:1 4933:1 4959:1 4974:1 5001:1 5002:1 5027:2 5028:1 5054:1 5063:1 5132:1 5177:1 5201:1 5232:1 5246:1 5255:3 5287:1 5294:2 5298:1 5310:1 5314:1 5344:1 5347:1 5357:1 5366:1 5378:4 5411:1 5421:1 5438:1 5489:1 5506:1 5519:1 5522:1 5531:1 5581:2 5583:1 5590:1 5607:1 5623:1 5625:1 5664:1 5677:1 5683:2 5689:3 5697:1 5718:2 5730:2 5743:1 5838:2 5855:1 5865:1 5866:2 5885:1 5920:1 5921:1 5925:2 5928:2 6004:1 6007:1 6014:1 6021:1 6097:6 6140:1 6145:1 6167:1 6172:1 6237:4 6257:2 6258:1 6263:1 6264:1 6273:1 6277:1 6281:1 6283:1 6287:1 6288:2 6289:1 6291:1 6315:1 6316:1 6321:1 6401:1 6435:1 6449:1 6454:1 6458:2 6475:1 6476:1 6529:2 6533:1 6543:1 6564:1 6567:1 6584:2 6605:2 6612:1 6630:3 6695:1 6737:1 6740:1 6747:1 6772:4 6802:1 6806:1 6822:1 6829:1 6853:3 6877:1 6896:1 6909:1 6921:1 6922:1 6934:1 6936:1 6942:1 6963:3 7037:1 7061:1 7115:1 7136:1 7177:1 7184:1 7202:3 7209:1 7227:1 7245:1 7257:1 7272:1 7281:1 7288:1 7319:1 7321:1 7322:2 7323:1 7351:2 7368:1 7385:1 7434:1 7439:1 7444:1 7517:1 7536:1 7566:1 7575:1 7591:1 7627:2 7637:1 7661:1 7726:1 7743:1 7747:1 7749:1 7778:1 7782:1 7785:1 7830:3 7836:2 7936:1 7950:1 7964:1 7973:1 8045:1 8050:1 8056:1 8062:1 8065:1 8073:1 8083:1 8084:1 8085:1 8086:1 8088:1 8091:2 8092:1 8099:3 8101:4 8135:1 8136:1 8147:1 8151:1 8162:1 8163:1 8176:1 8193:1 8210:2 8212:2 8213:1 8223:1 8226:1 8233:2 8269:2 8282:1 8286:2 8304:1 8362:1 8371:1 8389:1 8413:1 8416:1 8420:3 8425:1 8457:1 8464:1 8477:1 8527:2 8557:1 8558:1 8565:1 8574:1 8615:1 8661:1 8662:1 8671:1 8678:1 8743:2 8748:1 8757:1 8761:1 8762:4 8814:1 8846:1 8874:1 8897:2 8917:1 8929:1 8952:1 8959:1 8966:1 8992:1 9016:4 9021:2 9024:1 9061:2 9068:1 9087:2 9110:1 9130:3 9140:1 9191:1 9192:1 9201:1 9203:1 9215:1 9234:1 9243:1 9252:1 9282:1 9289:3 9311:1 9352:1 9390:2 9412:1 9420:1 9433:2 9466:1 9489:1 9505:1 9535:2 9539:1 9540:1 9544:2 9557:1 9560:1 9561:1 9576:1 9608:1 9617:1 9622:1 9633:1 9658:1 9671:1 9677:3 9678:2 9680:1 9710:1 9754:1 9789:6 9813:1 9817:1 9850:1 9858:2 9862:1 9875:1 9881:17 9892:1 9904:2 9905:4 9927:1 9937:1 9948:2 9949:1 9956:1 9971:1 10008:1 10019:1 10027:1 10034:1 10039:1 10057:2 10063:1 10089:1 10090:1 10122:3 10125:1 10133:1 10147:1 10189:1 10197:2 10228:1 10239:1 10270:1 10279:1 10292:1 10320:1 10326:1 10328:2 10340:1 10353:1 10381:1 10387:2 10395:2 10402:1 10419:3 10445:1 10470:3 10471:10 10487:1 10489:1 10500:1 10523:1 10532:1 10536:2 10547:1 10548:2 10558:1 10572:1 10578:2 10594:2 10596:1 10618:1 10630:1 10647:1 10686:1 10701:1 10705:1 10753:2 10758:1 10761:1 10779:1 10820:1 10857:1 10860:1 10887:1 10899:2 10912:1 10958:1 10961:1 10967:1 10973:1 10976:3 10982:1 10983:1 11006:1 11019:1 11029:1 11037:1 11058:1 11084:1 11091:1 11107:1 11115:1 11138:1 11158:1 11166:2 11190:1 11207:1 11208:6 11216:1 11227:1 11231:1 11238:1 11264:1 11284:1 11311:1 11320:1 11323:1 11342:1 11351:2 11396:4 11573:1 11586:1 11594:1 11611:1 11638:1 11668:1 11672:1 11673:1 11685:2 11696:4 11725:1 11733:1 11746:1 11779:2 11789:1 11793:1 11807:1 11818:1 11824:2 11850:1 11867:2 11913:2 11960:1 11984:1 11999:1 12015:2 12016:1 12040:1 12050:1 12051:1 12075:1 12078:1 12086:1 12092:2 12095:1 12096:1 12131:1 12153:2 12183:1 12199:1 12216:1 12220:1 12224:1 12234:1 12236:1 12240:1 12242:1 12243:1 12244:1 12245:1 12285:1 12324:1 12332:1 12337:1 12386:4 12403:1 12413:2 12442:1 12451:1 12479:1 12480:1 12486:1 12526:1 12567:1 12588:1 12597:1 12624:1 12645:3 12682:1 12702:2 12708:2 12769:2 12776:2 12786:1 12792:1 12809:1 12810:1 12811:1 12827:1 12846:1 12847:1 12855:1 12888:7 12907:1 12921:2 12947:1 12974:2 12975:1 12985:1 13020:3 13021:1 13023:1 13032:1 13072:1 13086:1 13104:1 13112:1 13114:1 13115:1 13126:1 13135:1 13137:2 13146:3 13228:1 13229:1 13241:1 13248:1 13254:1 13259:1 13267:1 13297:1 13307:1 13335:1 13337:1 13376:1 13377:2 13378:1 13384:1 13420:1 13443:6 13476:1 13490:1 13532:1 13540:5 13579:2 13580:2 13593:1 13599:1 13611:1 13627:1 13642:1 13648:2 13666:1 13676:2 13742:1 13743:1 13745:1 13762:1 13773:1 13777:1 13792:1 13844:1 13855:1 13871:1 13899:1 13916:1 13956:2 13982:2 13994:1 13998:1 14031:1 14033:1 14096:1 14107:1 14127:1 14129:2 14132:1 14150:2 14151:1 14166:1 14167:1 14170:1 14180:1 14192:2 14195:1 14208:1 14210:2 14214:1 14221:1 14244:1 14278:1 14281:1 14288:2 14297:1 14326:1 14371:1 14397:1 14437:2 14459:1 14472:4 14482:1 14493:1 14503:1 14507:3 14520:1 14530:1 14544:1 14552:1 14590:1 14592:1 14619:1 14621:1 14638:1 14640:1 14667:1 14683:1 14702:1 14705:1 14718:1 14720:1 14750:1 14787:1 14806:1 14841:1 14894:3 14920:1 14921:1 14954:2 14969:1 14978:3 14982:1 14985:2 14988:1 14997:1 14998:1 15008:1 15038:1 15046:1 15057:1 15061:1 15071:3 15074:2 15110:3 15211:1 15221:2 15228:1 15258:1 15334:2 15344:2 15345:3 15354:1 15368:1 15380:1 15397:1 15425:2 15444:1 15472:4 15497:1 15503:1 15510:5 15517:2 15534:1 15547:1 15552:1 15563:3 15584:1 15594:2 15609:1 15624:1 15631:1 15641:1 15646:2 15706:1 15721:3 15743:1 15753:2 15768:1 15779:1 15823:1 15839:1 15865:1 15907:1 15936:1 15938:1 15971:1 15978:1 16036:1 16045:1 16048:1 16082:1 16136:2 16145:1 16184:1 16212:1 16213:1 16218:1 16233:1 16253:1 16285:1 16287:4 16316:1 16319:1 16333:2 16355:1 16434:1 16469:1 16483:1 16540:1 16557:1 16559:1 16581:1 16586:2 16738:1 16757:1 16762:1 16773:1 16788:1 16802:5 16824:1 16836:1 16838:1 16840:1 16857:1 16879:6 16895:1 16899:1 16910:1 16913:1 16934:1 16982:4 16993:1 16994:2 16997:1 17002:1 17021:1 17031:1 17042:2 17051:1 17059:2 17081:4 17086:1 17092:3 17144:1 17151:2 17156:1 17177:1 17203:1 17205:1 17234:1 17239:1 17269:1 17278:3 17305:1 17332:1 17345:1 17371:1 17384:1 17408:1 17432:1 17436:1 17440:1 17449:1 17469:1 17481:1 17518:1 17528:1 17552:1 17561:3 17567:2 17585:1 17674:1 17679:1 17686:1 17693:1 17744:1 17757:1 17770:1 17775:1 17777:1 17786:2 17790:1 17872:1 17909:1 17914:1 17918:2 17930:2 17950:1 17959:3 18005:2 18055:1 18058:1 18161:1 18220:2 18230:1 18232:1 18235:1 18245:1 18248:1 18263:1 18314:1 18340:1 18345:3 18384:2 18385:1 18389:1 18403:1 18407:1 18422:1 18429:1 18456:1 18467:1 18493:1 18513:2 18536:1 18561:1 18564:1 18608:1 18662:1 18664:1 18687:1 18718:1 18727:1 18742:2 18750:8 18757:1 18806:1 18827:1 18868:1 18902:1 18919:1 18921:1 18947:1 18989:1 19018:2 19025:1 19036:6 19084:1 19087:2 19089:1 19112:1 19129:2 19156:1 19179:6 19181:1 19202:1 19203:1 19237:1 19282:1 19328:2 19335:2 19345:1 19365:1 19389:1 19394:1 19395:1 19439:2 19589:1 19631:1 19641:1 19659:1 19695:1 19703:1 19713:2 19728:2 19756:1 19757:1 19767:1 19788:2 19812:1 19852:1 19867:1 19875:1 19912:1 19919:1 19924:3 19929:1 19946:1 19964:1 19980:1 19984:1 20022:3 20102:1 20106:1 20128:2 20129:2 20130:1 20143:1 20164:1 20170:1 20189:1 20190:1 20192:1 20200:1 20201:1 20212:1 20226:4 20234:1 20297:1 20299:1 20303:1 20304:2 20306:4 20334:1 20343:4 20353:1 20382:1 20391:1 20434:1 20445:1 20484:1 20502:3 20518:1 20546:2 20557:1 20580:1 20594:1 20597:1 20608:2 20619:1 20627:1 20632:1 20645:1 20652:1 20657:3 20662:3 20667:1 20672:1 20686:1 20730:1 20733:1 20823:1 20852:1 20857:2 20865:1 20874:1 20877:1 20893:1 20899:1 20907:1 20920:1 20940:1 20955:2 20957:2 20965:1 20973:7 20983:1 21029:1 21032:1 21039:1 21087:1 21096:1 21108:1 21115:1 21139:1 21159:1 21172:1 21185:1 21193:1 21225:1 21226:1 21257:1 21274:1 21294:2 21309:1 21311:1 21327:1 21333:3 21378:3 21476:1 21496:1 21505:1 21510:3 21514:1 21515:1 21543:1 21546:1 21595:25 21599:2 21631:1 21645:1 21661:1 21662:1 21668:1 21681:1 21683:1 21690:1 21691:1 21722:1 21724:1 21749:1 21783:1 21797:1 21855:1 21870:1 21923:2 21924:1 21929:1 21944:1 21949:2 22068:1 22115:1 22126:1 22170:1 22172:1 22175:2 22179:1 22184:1 22188:1 22193:2 22196:1 22201:1 22248:1 22281:3 22282:3 22400:1 22406:1 22414:4 22429:3 22430:1 22451:1 22460:1 22462:1 22477:1 22484:1 22486:1 22497:1 22520:1 22529:1 22546:1 22574:1 22575:2 22582:1 22616:1 22666:2 22674:1 22679:1 22698:1 22761:1 22788:1 22791:1 22795:1 22803:1 22851:1 22864:2 22878:1 22912:1 22915:1 22922:1 22969:1 22973:1 22991:1 22997:1 23015:1 23025:2 23060:1 23091:1 23126:1 23197:1 23200:1 23215:1 23232:1 23242:1 23251:1 23255:1 23256:1 23297:2 23306:1 23307:1 23322:1 23401:2 23413:2 23450:1 23464:2 23480:1 23527:1 23543:1 23549:1 23555:3 23568:1 23584:2 23619:1 23660:1 23667:1 23721:1 23725:2501 23753:1 23784:1 23811:1 23856:2 23867:1 23903:1 23935:1 23945:1 23978:1 23991:1 23994:1 23995:1 23997:1 24000:1 24001:1 24053:1 24083:1 24089:1 24125:1 24134:1 24146:1 24150:1 24153:1 24166:1 24179:1 24204:1 24222:1 24237:1 24238:1 24242:1 24245:2 24277:1 24281:3 24284:1 24354:1 24357:1 24364:1 24377:1 24393:1 24399:1 24409:1 24441:2 24453:1 24489:1 24515:1 24531:1 24533:1 24545:5 24588:1 24593:6 24597:1 24604:1 24631:2 24641:1 24669:1 24700:1 24723:1 24763:1 24777:1 24805:3 24848:1 24851:1 24874:2 24875:1 24881:1 24898:1 24913:1 24940:1 24982:1 24988:2 25031:1 25042:1 25047:1 25055:1 25072:1 25111:1 25112:1 25118:1 25141:1 25170:1 25206:2 25261:1 25265:2 25267:1 25275:1 25283:1 25286:1 25308:1 25312:1 25327:1 25328:3 25346:1 25356:1 25357:4 25376:3 25380:1 25382:1 25398:1 25408:1 25413:1 25437:1 25451:1 25492:1 25497:1 25531:3 25532:1 25541:1 25552:2 25563:1 25609:1 25710:3 25724:1 25769:1 25774:2 25782:1 25841:1 25844:1 25890:2 25892:1 25896:1 25907:1 25919:1 25944:2 25952:1 25977:4 25981:2 25990:1 25994:1 25998:1 26001:1 26046:1 26050:1 26070:1 26078:1 26090:1 26102:1 26105:1 26119:1 26124:1 26156:2 26169:3 26199:1 26200:1 26218:1 26233:1 26242:1 26250:4 26262:2 26276:1 26279:1 26287:1 26301:1 26305:1 26308:4 26314:1 26326:1 26337:1 26372:1 26379:1 26392:1 26394:2 26398:4 26404:1 26417:1 26422:1 26424:1 26440:1 26456:1 26468:1 26475:1 26504:1 26524:1 26529:1 26537:1 26541:2 26544:1 26560:1 26562:1 26563:2 26585:1 26589:2 26608:1 26665:1 26681:1 26695:1 26697:1 26698:1 26700:1 26729:4 26757:1 26808:1 26846:1 26855:1 26856:1 26857:1 26858:1 26876:1 26883:1 26889:1 26897:2 26904:1 26914:1 26944:1 27002:2 27005:3 27073:1 27091:1 27092:2 27095:1 27101:1 27108:2 27116:1 27127:2 27139:1 27141:2 27172:1 27178:1 27193:1 27303:2 27306:2 27333:2 27347:1 27371:1 27390:1 27396:1 27415:1 27475:1 27482:1 27498:2 27503:3 27516:1 27524:2 27538:1 27560:1 27592:1 27609:1 27624:1 27660:1 27677:1 27710:2 27750:1 27772:1 27773:1 27803:1 27806:1 27810:1 27823:1 27838:1 27841:1 27864:1 27886:1 27928:1 27930:1 27956:1 27981:1 27982:1 28002:1 28029:1 28038:1 28045:3 28069:3 28079:1 28091:1 28094:6 28102:1 28109:1 28115:1 28125:1 28155:1 28189:1 28192:1 28226:1 28227:1 28314:1 28342:1 28354:1 28404:1 28423:2 28427:1 28433:2 28486:1 28488:1 28519:1 28529:1 28632:1 28659:1 28730:1 28741:1 28744:1 28759:1 28839:1 28863:1 28876:1 28877:1 28884:1 28976:1 28991:1 28998:1 28999:1 29007:1 29010:1 29016:1 29031:1 29032:1 29058:1 29059:1 29091:1 29105:2 29141:1 29146:1 29156:1 29168:1 29172:3 29187:1 29203:2 29217:1 29263:2 29279:1 29285:1 29304:1 29307:1 29311:1 29322:1 29335:1 29351:2 29353:1 29375:2 29405:1 29426:1 29428:2 29429:1 29451:1 29465:1 29506:1 29516:1 29521:1 29529:1 29553:2 29555:1 29570:1 29583:1 29625:2 29632:2 29669:1 29686:1 29689:1 29692:2 29693:1 29744:1 29754:1 29762:2 29795:1 29832:1 29859:1 29871:1 29880:2 29892:1 29954:1 29985:1 30036:2 30042:1 30052:1 30080:1 30091:1 30102:1 30122:1 30128:1 30145:1 30152:1 30157:1 30181:1 30249:3 30258:1 30266:7 30273:1 30281:1 30301:1 30329:1 30331:1 30339:1 30375:1 30378:1 30386:1 30402:1 30426:1 30430:3 30438:3 30447:1 30465:1 30467:1 30480:2 30484:2 30489:1 30490:1 30521:1 30537:1 30557:1 30563:1 30586:1 30591:1 30622:1 30640:2 30662:1 30663:3 30668:3 30671:1 30681:1 30701:1 30706:1 30711:2 30743:1 30752:1 30796:2 30811:1 30885:1 30893:2 30923:3 30926:3 30940:1 30949:1 30960:1 31004:1 31030:1 31060:2 31064:1 31092:1 31134:1 31148:1 31157:1 31180:1 31201:1 31214:1 31216:1 31280:1 31322:1 31355:5 31358:3 31396:1 31415:1 31427:1 31449:1 31450:1 31455:1 31456:2 31478:1 31479:1 31544:2 31553:1 31558:1 31565:1 31569:1 31570:2 31579:1 31584:1 31586:1 31598:1 31606:1 31612:1 31640:1 31667:2 31680:3 31696:2 31722:1 31746:2 31753:1 31798:1 31799:1 31835:1 31836:1 31839:1 31857:1 31864:1 31904:1 31982:2 32016:2 32017:1 32036:1 32055:1 32068:1 32080:1 32150:2 32175:1 32178:1 32182:1 32199:1 32209:1 32230:1 32236:1 32244:1 32252:1 32256:1 32284:1 32297:1 32299:2 32328:2 32331:1 32346:1 32384:3 32405:1 32414:1 32492:4 32507:2 32521:1 32528:4 32533:1 32578:1 32653:1 32711:1 32713:1 32772:1 32779:1 32783:1 32787:1 32792:1 32800:1 32835:1 32841:1 32853:1 32862:1 32870:1 32874:4 32879:1 32880:1 32881:1 32908:1 32928:1 32974:1 32986:2 33006:2 33012:2 33020:1 33026:1 33054:1 33070:2 33118:2 33144:1 33203:2 33211:1 33212:1 33215:1 33216:2 33230:1 33250:1 33267:1 33356:1 33394:1 33399:1 33400:1 33406:2 33444:1 33452:2 33507:1 33514:2 33518:1 33527:1 33531:1 33533:2 33534:1 33549:1 33553:1 33560:2 33620:1 33654:1 33712:1 33721:2 33723:1 33728:1 33767:2 33773:1 33811:1 33825:1 33844:1 33849:2 33856:2 33861:1 33889:1 33896:1 33897:1 33925:1 33935:1 33936:1 33938:1 33950:1 33998:1 34015:1 34018:1 34023:2 34029:1 34040:2 34047:1 34059:1 34060:1 34067:1 34068:2 34116:1 34132:2 34139:1 34170:1 34172:1 34182:1 34184:1 34197:1 34200:1 34212:2 34219:1 34263:2 34267:1 34285:1 34323:1 34372:1 34393:2 34410:1 34442:2 34479:1 34488:2 34495:1 34530:1 34574:1 34587:1 34616:1 34624:2 34633:1 34668:1 34674:1 34739:1 34753:1 34757:1 34773:8 34774:1 34776:1 34794:1 34797:1 34810:5 34833:2 34844:1 34857:1 34881:1 34917:1 34919:1 34932:1 34963:3 34966:1 34971:1 34981:1 34982:1 35001:1 35004:6 35015:1 35024:1 35028:1 35048:1 35058:1 35063:1 35074:2 35082:1 35102:1 35117:2 35141:1 35154:2 35161:1 35179:1 35203:1 35223:1 35249:2 35253:1 35302:1 35305:1 35310:1 35316:1 35324:1 35335:1 35360:1 35378:1 35382:1 35384:1 35437:3 35442:1 35459:1 35464:1 35515:1 35565:2 35593:1 35622:1 35646:2 35649:2 35675:1 35684:1 35689:1 35714:1 35741:1 35742:1 35751:1 35763:1 35846:1 35864:2 35882:1 35932:2 35943:1 35959:1 35978:1 35985:1 36010:1 36022:1 36053:1 36104:1 36128:1 36158:1 36170:1 36202:1 36203:1 36235:1 36292:1 36312:1 36318:1 36326:3 36327:1 36328:1 36329:3 36332:1 36334:2 36340:1 36342:1 36343:1 36351:1 36366:1 36370:1 36371:1 36392:1 36396:1 36410:1 36415:1 36426:2 36433:1 36438:1 36477:1 36482:1
15 48:1 82:3 114:1 129:2 151:1 192:1 193:2 212:1 216:2 225:1 255:1 256:1 275:1 277:1 300:1 321:3 371:2 392:1 404:1 426:1 451:2 456:2 493:1 511:1 515:1 551:3 564:1 578:1 595:2 649:1 677:1 680:1 682:1 690:1 692:1 707:1 712:1 726:2 730:1 733:2 738:1 745:1 759:2 772:1 773:2 776:2 783:1 787:1 848:1 877:3 897:1 911:1 916:1 917:1 936:3 941:1 952:1 1002:1 1008:1 1042:2 1048:1 1068:1 1071:1 1073:1 1075:1 1078:2 1081:1 1085:2 1095:1 1096:1 1099:1 1103:1 1133:1 1135:2 1140:1 1148:1 1154:1 1167:2 1177:1 1183:1 1192:1 1222:1 1231:2 1237:1 1247:1 1272:2 1274:1 1275:1 1307:1 1316:1 1348:2 1393:1 1396:2 1418:1 1423:2 1450:1 1473:3 1482:1 1525:2 1535:1 1541:1 1542:1 1553:1 1554:2 1577:1 1606:1 1615:1 1624:1 1634:1 1635:1 1654:1 1662:1 1667:1 1723:1 1737:2 1746:2 1750:1 1757:4 1796:1 1799:1 1803:1 1807:2 1809:2 1815:1 1816:1 1819:4 1854:1 1870:1 1892:1 1901:4 1905:3 1913:2 1919:2 1938:1 1954:1 1955:1 1967:1 1997:2 2004:2 2006:2 2010:1 2017:1 2041:2 2071:1 2074:1 2097:1 2115:1 2118:1 2145:2 2148:2 2154:1 2171:2 2194:1 2196:1 2223:1 2224:1 2227:1 2232:1 2234:2 2237:1 2239:2 2242:1 2301:1 2371:1 2374:4 2393:2 2398:1 2411:1 2564:1 2596:1 2601:1 2633:2 2684:1 2712:1 2742:2 2743:1 2780:1 2787:1 2789:2 2791:3 2801:2 2805:2 2810:1 2811:1 2812:2 2813:2 2817:1 2820:3 2821:1 2840:1 2860:1 2861:1 2905:2 2938:1 2986:1 2989:1 2990:2 3041:1 3049:1 3063:2 3167:1 3172:1 3197:1 3202:1 3214:1 3302:1 3314:2 3322:1 3326:1 3356:1 3359:1 3363:1 3367:1 3370:1 3421:1 3423:2 3432:1 3495:1 3505:2 3513:1 3518:1 3547:2 3552:1 3559:1 3569:3 3576:3 3577:1 3589:1 3615:2 3632:1 3635:4 3653:1 3660:1 3664:1 3666:1 3669:1 3675:1 3705:1 3711:1 3749:1 3758:1 3775:1 3820:1 3853:1 3866:1 3886:1 3904:1 3945:1 3962:1 4033:2 4047:1 4055:1 4083:1 4091:1 4103:1 4148:3 4161:1 4179:1 4219:1 4221:1 4224:1 4231:1 4261:3 4264:1 4307:1 4319:1 4333:1 4380:1 4413:1 4416:1 4439:1 4452:1 4455:1 4463:1 4465:1 4498:2 4501:1 4536:1 4541:1 4549:1 4553:1 4556:1 4590:1 4602:1 4608:1 4624:1 4646:1 4687:2 4688:2 4708:1 4730:1 4741:1 4742:1 4745:1 4771:1 4774:2 4820:2 4821:3 4826:2 4859:1 4873:1 4874:1 4888:1 4894:1 4898:1 4933:1 4959:1 4969:1 4974:1 5001:1 5002:1 5027:2 5028:1 5054:1 5063:1 5102:1 5132:1 5177:1 5201:1 5232:1 5246:1 5255:3 5287:1 5294:2 5298:1 5310:1 5314:1 5344:1 5347:1 5357:1 5366:1 5378:4 5411:1 5421:1 5438:1 5489:1 5506:1 5519:1 5522:1 5531:1 5581:2 5583:1 5590:1 5607:1 5620:1 5623:1 5625:1 5664:1 5677:1 5683:2 5689:3 5697:1 5718:2 5730:2 5743:1 5822:1 5838:2 5855:1 5865:1 5866:2 5885:1 5920:1 5921:1 5925:2 5928:2 6004:1 6007:1 6014:1 6021:1 6097:6 6140:1 6145:1 6167:1 6172:1 6237:4 6257:2 6258:1 6263:1 6264:1 6273:2 6277:1 6281:1 6283:1 6287:1 6288:2 6289:1 6291:1 6315:1 6316:1 6321:1 6401:2 6435:1 6449:1 6454:1 6458:2 6475:1 6476:1 6529:2 6533:2 6543:1 6564:1 6567:1 6584:2 6587:1 6605:3 6612:1 6630:3 6650:1 6695:1 6737:1 6740:1 6747:1 6772:4 6802:1 6806:1 6822:1 6829:2 6853:3 6877:1 6896:1 6909:1 6921:1 6922:1 6934:1 6936:1 6942:1 6963:3 6987:1 7016:1 7037:1 7061:1 7115:1 7136:1 7177:1 7184:1 7202:3 7209:1 7227:1 7245:1 7257:1 7272:1 7281:1 7288:1 7319:1 7321:1 7322:2 7323:1 7351:2 7368:1 7385:1 7434:1 7439:1 7444:1 7517:1 7536:1 7566:1 7575:1 7591:1 7627:2 7637:1 7661:1 7726:1 7743:3 7747:1 7749:1 7778:1 7782:1 7785:1 7830:3 7836:3 7936:1 7950:2 7964:1 7973:1 8045:1 8050:1 8056:1 8062:1 8065:1 8073:1 8083:2 8084:1 8085:2 8086:1 8088:1 8091:2 8092:1 8099:3 8101:4 8135:1 8136:1 8147:1 8151:1 8162:1 8163:1 8176:1 8193:1 8210:2 8212:2 8213:1 8223:1 8226:1 8233:2 8269:2 8282:1 8286:2 8304:1 8362:1 8371:1 8389:1 8413:1 8416:1 8420:4 8422:1 8425:1 8457:2 8464:1 8477:1 8527:2 8557:1 8558:1 8565:1 8574:1 8615:1 8661:1 8662:1 8671:1 8678:1 8743:2 8748:1 8757:1 8761:1 8762:4 8814:1 8846:1 8874:1 8897:2 8917:1 8929:1 8952:1 8959:2 8966:1 8992:1 9016:4 9021:2 9024:1 9061:2 9066:1 9068:1 9087:2 9110:1 9130:3 9140:1 9191:1 9192:1 9201:1 9203:1 9215:1 9234:1 9243:1 9252:1 9282:1 9289:3 9311:1 9352:1 9390:2 9412:1 9420:1 9433:3 9466:1 9489:1 9505:1 9535:2 9539:1 9540:1 9544:2 9557:1 9560:1 9561:1 9576:1 9586:1 9608:1 9609:1 9617:1 9622:1 9633:1 9658:1 9671:1 9677:3 9678:2 9680:1 9710:3 9754:1 9786:1 9789:6 9813:1 9817:1 9850:1 9858:2 9862:1 9875:1 9881:18 9892:1 9904:2 9905:4 9927:1 9937:1 9948:2 9949:1 9956:1 9971:1 10008:1 10019:1 10027:1 10034:1 10039:1 10057:2 10063:1 10089:1 10090:1 10122:3 10125:1 10133:1 10147:1 10176:1 10189:1 10197:3 10228:1 10239:1 10270:1 10279:1 10292:1 10320:1 10326:1 10328:2 10340:1 10353:1 10381:1 10387:2 10395:2 10402:1 10419:4 10441:1 10445:1 10470:3 10471:10 10487:1 10489:1 10500:1 10523:1 10532:1 10536:2 10547:1 10548:2 10558:1 10572:1 10578:2 10594:2 10596:1 10618:1 10630:1 10647:1 10686:1 10701:1 10705:1 10753:2 10758:1 10761:1 10772:1 10779:1 10820:1 10857:1 10860:1 10887:1 10899:2 10902:1 10912:1 10958:1 10961:1 10967:1 10973:1 10976:3 10982:1 10983:1 11003:1 11006:1 11019:1 11029:1 11037:1 11058:1 11084:2 11091:1 11107:1 11115:1 11138:1 11158:1 11166:2 11190:1 11207:1 11208:7 11216:1 11227:1 11231:1 11238:1 11249:1 11264:1 11284:1 11311:1 11320:1 11323:1 11342:1 11351:2 11396:5 11573:1 11586:1 11594:1 11611:1 11617:1 11638:1 11650:1 11668:1 11672:1 11673:1 11685:2 11696:4 11725:1 11733:1 11746:1 11779:2 11789:1 11793:1 11807:1 11818:1 11824:2 11850:1 11853:1 11867:2 11913:2 11960:1 11984:1 11999:1 12015:2 12016:1 12040:1 12050:1 12051:1 12075:1 12078:1 12086:1 12092:2 12095:1 12096:1 12131:2 12153:2 12183:1 12199:1 12216:1 12220:1 12224:1 12234:1 12236:1 12240:1 12242:1 12243:1 12244:1 12245:1 12285:1 12324:1 12332:1 12337:1 12386:4 12403:1 12413:2 12442:1 12451:1 12479:1 12480:1 12486:1 12526:1 12567:1 12588:1 12597:1 12624:1 12644:1 12645:3 12682:1 12702:2 12708:2 12769:2 12772:1 12776:2 12786:1 12792:1 12809:1 12810:1 12811:1 12827:1 12846:1 12847:1 12855:1 12888:7 12907:1 12918:1 12921:3 12947:1 12974:3 12975:1 12985:1 13020:3 13021:1 13023:1 13032:1 13072:1 13086:1 13104:1 13112:1 13114:1 13115:1 13126:1 13135:1 13137:2 13146:3 13228:1 13229:1 13241:1 13248:1 13254:1 13259:1 13267:1 13297:1 13307:3 13335:1 13337:1 13376:1 13377:2 13378:1 13384:1 13420:1 13443:6 13476:2 13490:1 13532:1 13540:5 13579:2 13580:2 13593:1 13599:1 13611:1 13627:1 13642:1 13648:2 13666:1 13676:2 13738:1 13742:1 13743:1 13745:1 13762:1 13773:1 13777:1 13792:1 13844:1 13855:1 13871:1 13899:1 13916:1 13956:2 13982:2 13994:1 13998:1 14031:1 14033:1 14096:1 14107:1 14127:1 14129:2 14132:1 14150:2 14151:1 14166:1 14167:1 14170:1 14180:1 14192:2 14195:1 14208:1 14210:2 14214:1 14221:1 14244:1 14278:1 14281:1 14288:2 14297:1 14326:1 14371:1 14397:1 14437:2 14459:1 14472:4 14482:1 14493:1 14503:1 14507:3 14520:1 14530:1 14544:1 14552:1 14590:1 14592:1 14619:1 14621:1 14638:1 14640:1 14667:1 14683:1 14702:1 14705:1 14718:1 14720:1 14750:1 14765:1 14787:1 14806:1 14841:1 14894:3 14920:1 14921:1 14954:2 14969:1 14978:3 14982:1 14985:2 14988:1 14997:1 14998:1 15008:1 15038:1 15044:1 15046:1 15057:1 15061:1 15071:3 15074:2 15110:3 15138:1 15211:1 15221:2 15228:1 15258:1 15334:2 15344:2 15345:3 15349:1 15354:1 15368:1 15380:1 15397:1 15425:3 15444:1 15471:1 15472:4 15497:1 15503:1 15510:5 15517:2 15534:1 15547:1 15552:1 15563:3 15584:1 15594:2 15609:1 15624:1 15631:1 15641:1 15646:2 15706:2 15721:3 15729:1 15743:1 15753:2 15768:1 15779:1 15789:1 15823:1 15839:1 15845:1 15865:1 15907:1 15936:1 15938:1 15971:1 15978:1 16011:1 16034:1 16036:1 16045:2 16048:1 16082:1 16136:2 16145:1 16184:1 16212:1 16213:1 16218:1 16233:1 16253:1 16285:1 16287:4 16316:1 16319:1 16323:1 16333:2 16355:1 16434:1 16469:1 16483:1 16540:1 16557:1 16559:1 16581:1 16586:2 16640:1 16738:1 16757:1 16762:1 16773:1 16788:1 16802:7 16824:1 16836:1 16838:1 16840:1 16857:1 16879:6 16895:1 16899:1 16910:1 16911:1 16913:1 16934:1 16982:5 16993:1 16994:2 16997:1 17002:1 17021:1 17029:1 17031:1 17042:2 17051:1 17059:2 17081:4 17086:1 17092:3 17144:1 17151:2 17156:2 17166:1 17177:1 17188:1 17203:1 17205:1 17234:1 17239:1 17269:1 17278:3 17305:1 17332:1 17345:1 17371:1 17384:1 17408:1 17432:1 17436:1 17440:1 17449:1 17469:1 17481:1 17518:1 17528:1 17552:1 17561:3 17567:2 17585:1 17674:1 17679:1 17686:1 17693:1 17744:1 17757:1 17770:1 17775:1 17777:1 17786:2 17790:1 17810:1 17815:1 17872:1 17909:1 17914:1 17918:2 17930:2 17950:1 17959:3 17989:1 18005:2 18055:1 18058:1 18161:1 18220:2 18230:1 18232:1 18235:1 18245:1 18248:1 18263:1 18314:1 18338:1 18340:1 18345:3 18359:1 18384:2 18385:1 18389:1 18403:1 18407:1 18422:1 18429:1 18456:1 18467:1 18493:1 18513:3 18536:1 18561:1 18564:1 18608:1 18662:1 18664:1 18687:1 18718:4 18727:2 18742:2 18746:1 18750:8 18757:1 18806:1 18827:1 18868:1 18902:1 18919:1 18921:1 18947:1 18989:1 19018:3 19025:1 19036:6 19084:1 19087:2 19089:1 19112:2 19129:2 19156:3 19179:6 19181:1 19202:1 19203:1 19237:1 19282:1 19328:2 19335:2 19345:1 19365:1 19389:1 19394:1 19395:1 19439:2 19484:1 19531:1 19589:1 19631:1 19641:1 19659:1 19695:1 19703:1 19713:2 19728:2 19756:1 19757:1 19767:1 19788:2 19812:1 19852:1 19867:1 19875:1 19912:1 19919:1 19924:3 19929:1 19946:1 19964:1 19980:1 19984:2 20022:3 20102:1 20106:1 20128:2 20129:2 20130:1 20143:3 20164:1 20170:1 20189:1 20190:1 20192:1 20193:1 20200:2 20201:1 20212:1 20226:4 20234:1 20297:1 20299:1 20303:1 20304:2 20306:4 20334:1 20343:4 20353:1 20382:1 20390:1 20391:1 20434:1 20437:1 20445:1 20448:1 20484:1 20502:3 20518:1 20546:3 20557:1 20580:1 20594:1 20597:1 20608:2 20619:1 20627:1 20632:1 20645:1 20652:1 20657:3 20662:3 20667:1 20672:1 20686:1 20730:1 20733:1 20823:1 20852:1 20857:2 20865:1 20874:1 20877:1 20893:1 20899:1 20907:1 20920:1 20940:1 20955:2 20957:2 20965:1 20973:7 20983:1 21029:1 21032:1 21039:1 21087:1 21096:1 21108:1 21115:1 21139:1 21159:1 21172:1 21185:1 21193:1 21225:1 21226:1 21257:1 21274:1 21282:1 21294:2 21309:1 21311:1 21327:1 21333:3 21378:3 21476:1 21496:1 21505:1 21510:3 21514:1 21515:1 21543:1 21546:1 21595:25 21599:2 21631:1 21645:1 21661:1 21662:1 21668:1 21681:1 21683:1 21690:1 21691:1 21722:1 21724:1 21749:1 21750:1 21783:1 21797:1 21855:1 21870:1 21923:2 21924:1 21929:1 21944:1 21949:2 22068:1 22115:1 22126:1 22170:1 22172:1 22175:2 22179:1 22184:1 22188:1 22193:2 22196:1 22201:1 22248:1 22281:3 22282:3 22400:1 22406:2 22414:4 22429:3 22430:1 22451:1 22460:1 22462:1 22475:1 22477:1 22484:1 22486:1 22497:1 22520:1 22529:1 22546:1 22574:1 22575:4 22582:1 22616:1 22666:2 22674:1 22679:1 22698:1 22761:1 22788:1 22791:1 22795:1 22803:1 22851:1 22864:2 22878:1 22912:1 22915:1 22922:1 22969:1 22973:1 22991:1 22997:1 23015:1 23025:2 23060:1 23091:1 23126:1 23197:1 23200:1 23215:1 23232:1 23242:1 23251:1 23255:1 23256:1 23297:2 23306:1 23307:1 23322:1 23325:1 23401:2 23413:2 23450:1 23464:2 23480:1 23527:1 23543:1 23549:1 23555:3 23568:1 23584:2 23619:1 23660:1 23667:1 23690:1 23721:1 23725:2608 23753:1 23784:1 23811:1 23856:2 23867:1 23903:1 23935:1 23945:1 23948:1 23978:1 23991:1 23994:1 23995:1 23997:1 24000:1 24001:1 24018:1 24053:1 24083:1 24089:1 24125:1 24134:1 24146:1 24150:1 24153:1 24166:1 24179:1 24204:1 24222:1 24237:1 24238:1 24242:1 24245:2 24277:1 24281:3 24284:1 24354:1 24357:1 24364:1 24377:1 24393:1 24399:1 24409:1 24441:2 24453:1 24465:1 24489:1 24515:1 24531:1 24533:1 24545:6 24588:1 24593:6 24597:1 24604:1 24631:2 24641:1 24669:1 24700:1 24713:1 24723:1 24763:1 24777:1 24805:3 24848:1 24851:1 24874:2 24875:1 24881:1 24898:1 24913:1 24940:1 24982:1 24988:2 25031:1 25042:1 25047:1 25055:1 25072:1 25111:1 25112:1 25118:1 25127:1 25141:1 25170:1 25206:2 25253:1 25261:1 25265:2 25267:1 25275:1 25283:1 25286:1 25308:1 25312:1 25327:1 25328:3 25346:1 25354:1 25356:1 25357:5 25376:3 25380:1 25382:1 25398:1 25408:1 25411:1 25413:1 25437:1 25451:1 25453:1 25492:2 25497:1 25531:3 25532:1 25541:1 25552:2 25563:1 25609:1 25710:3 25724:1 25735:1 25769:1 25774:2 25782:1 25841:1 25844:1 25890:2 25892:1 25896:1 25907:1 25919:1 25944:2 25952:1 25977:4 25981:2 25990:1 25994:1 25998:1 26001:1 26035:1 26046:1 26050:1 26054:1 26070:1 26078:1 26090:1 26102:1 26105:1 26119:1 26124:1 26156:2 26169:3 26199:1 26200:1 26218:1 26233:1 26242:1 26250:4 26262:2 26276:1 26279:1 26287:1 26301:1 26305:1 26308:4 26314:1 26326:1 26337:1 26372:1 26379:1 26392:1 26394:2 26398:4 26404:1 26417:1 26422:1 26424:1 26440:1 26456:1 26468:1 26475:1 26504:1 26524:1 26529:1 26534:1 26537:1 26541:2 26544:1 26560:1 26562:1 26563:2 26585:1 26589:2 26608:1 26665:2 26681:1 26695:1 26697:1 26698:1 26700:1 26729:4 26734:1 26757:1 26808:1 26846:1 26855:1 26856:1 26857:2 26858:1 26876:1 26883:1 26889:1 26897:3 26904:1 26914:1 26944:1 27002:2 27005:3 27073:1 27091:1 27092:2 27095:1 27101:1 27108:2 27116:1 27127:2 27139:1 27141:2 27172:1 27178:1 27193:1 27303:2 27306:2 27333:2 27345:1 27347:1 27371:1 27390:1 27396:1 27415:1 27475:1 27482:1 27498:2 27503:3 27516:1 27524:2 27538:1 27560:1 27592:1 27609:1 27624:1 27660:1 27677:1 27710:2 27750:1 27772:1 27773:1 27803:1 27806:1 27810:1 27823:1 27824:1 27838:1 27841:1 27864:1 27868:1 27886:1 27928:1 27930:1 27956:1 27981:1 27982:1 27983:1 28002:1 28029:1 28038:1 28045:3 28069:3 28079:1 28091:1 28094:8 28102:1 28109:1 28115:1 28125:1 28126:1 28155:1 28174:1 28189:1 28192:1 28198:1 28226:1 28227:1 28273:1 28314:1 28342:1 28354:1 28404:1 28423:2 28427:1 28433:2 28486:1 28488:1 28519:1 28529:1 28538:1 28548:1 28632:1 28659:1 28730:1 28741:1 28744:1 28759:1 28839:1 28863:1 28876:1 28877:1 28884:1 28976:1 28991:1 28998:1 28999:1 29007:1 29010:1 29016:1 29021:1 29031:1 29032:1 29058:1 29059:1 29091:1 29105:2 29141:1 29146:1 29156:1 29168:1 29172:3 29187:1 29203:2 29205:1 29217:1 29263:2 29279:1 29285:1 29304:1 29307:1 29311:1 29322:1 29335:1 29351:2 29353:1 29375:2 29405:1 29426:1 29428:2 29429:1 29451:1 29465:1 29506:1 29516:1 29521:1 29529:1 29553:3 29555:1 29570:1 29583:1 29610:1 29625:2 29632:2 29669:1 29686:1 29689:1 29692:2 29693:1 29744:1 29754:1 29762:2 29795:1 29832:1 29859:1 29871:1 29880:2 29892:1 29954:1 29985:1 30032:1 30036:2 30042:1 30052:1 30080:1 30091:1 30102:1 30122:1 30128:1 30145:1 30152:1 30157:1 30181:1 30249:3 30258:1 30266:8 30273:1 30281:1 30301:1 30329:2 30331:1 30339:1 30375:1 30378:1 30386:1 30402:1 30426:1 30430:3 30438:3 30447:1 30465:1 30467:1 30480:2 30484:2 30489:1 30490:1 30521:1 30537:1 30557:1 30563:1 30586:1 30591:1 30622:1 30640:2 30662:2 30663:3 30668:3 30671:1 30681:1 30701:1 30706:1 30711:2 30743:1 30752:1 30796:2 30811:1 30885:1 30888:1 30893:2 30923:3 30926:3 30936:1 30940:1 30949:1 30960:1 31004:1 31030:1 31060:2 31064:1 31092:1 31134:1 31148:1 31157:1 31180:1 31201:1 31214:2 31216:1 31242:1 31280:1 31322:1 31355:5 31358:3 31359:1 31396:1 31415:1 31427:1 31449:1 31450:1 31455:1 31456:2 31478:1 31479:1 31544:2 31553:1 31558:1 31565:1 31569:1 31570:2 31579:1 31584:1 31586:1 31598:1 31606:2 31612:1 31640:1 31667:2 31670:1 31680:3 31696:2 31722:1 31746:2 31753:1 31798:1 31799:1 31835:1 31836:1 31839:1 31857:1 31864:1 31904:1 31916:1 31982:2 32016:2 32017:1 32036:1 32055:1 32068:1 32080:1 32150:2 32175:1 32178:1 32182:1 32199:1 32209:1 32230:1 32236:1 32244:1 32252:1 32256:1 32257:1 32284:1 32297:1 32299:2 32328:2 32331:1 32346:1 32365:1 32384:4 32405:1 32414:1 32492:4 32507:2 32521:1 32528:4 32533:1 32575:1 32578:1 32653:1 32711:1 32713:1 32772:1 32779:1 32783:1 32787:1 32792:1 32800:1 32835:1 32841:1 32853:1 32862:1 32865:1 32870:1 32874:4 32879:1 32880:1 32881:1 32908:1 32928:1 32974:1 32986:2 33006:2 33012:2 33020:1 33026:1 33054:1 33070:2 33118:2 33144:1 33203:2 33211:1 33212:1 33215:1 33216:2 33230:1 33250:1 33267:1 33356:1 33394:1 33399:1 33400:1 33406:2 33444:1 33452:2 33507:1 33514:2 33518:1 33527:1 33531:1 33533:2 33534:1 33548:1 33549:2 33553:1 33560:2 33620:1 33654:1 33712:2 33721:2 33723:1 33728:1 33767:2 33773:1 33811:1 33825:1 33844:1 33849:2 33856:2 33861:1 33889:2 33896:1 33897:1 33925:1 33934:1 33935:1 33936:1 33938:1 33950:1 33998:1 34015:1 34018:1 34023:2 34029:1 34040:2 34047:1 34059:1 34060:1 34067:1 34068:2 34116:1 34132:2 34139:1 34170:1 34172:1 34182:1 34184:1 34185:1 34197:1 34200:1 34212:2 34219:1 34263:2 34267:1 34285:1 34323:1 34372:1 34393:2 34410:1 34442:2 34479:1 34488:2 34495:1 34530:1 34574:1 34587:1 34616:1 34624:2 34633:1 34664:1 34668:1 34674:1 34727:1 34739:1 34753:1 34757:1 34773:8 34774:1 34776:1 34794:1 34797:1 34810:5 34833:2 34844:1 34857:1 34881:1 34917:1 34919:1 34932:1 34963:4 34966:1 34971:1 34981:1 34982:1 35001:1 35004:6 35015:1 35024:1 35028:1 35048:1 35058:1 35063:1 35074:3 35082:1 35102:1 35117:2 35141:1 35154:2 35161:1 35179:1 35203:1 35223:1 35249:2 35253:1 35302:1 35305:1 35310:1 35316:1 35324:1 35335:1 35360:1 35378:1 35382:1 35384:1 35437:3 35442:1 35459:1 35464:1 35470:1 35515:1 35565:2 35593:1 35622:1 35646:2 35649:2 35675:1 35684:1 35689:1 35708:1 35714:1 35741:1 35742:1 35751:1 35763:1 35837:1 35846:1 35864:2 35882:1 35932:2 35943:1 35959:1 35978:1 35985:1 36010:1 36022:1 36053:1 36079:1 36104:1 36128:1 36158:1 36170:1 36202:1 36203:1 36235:1 36292:1 36312:1 36318:1 36326:3 36327:1 36328:1 36329:3 36332:1 36334:2 36340:1 36342:1 36343:1 36351:1 36366:1 36370:1 36371:1 36392:1 36396:1 36410:1 36415:1 36426:2 36433:1 36438:1 36477:1 36482:1
15 8:1 48:1 82:3 114:1 129:2 151:1 192:1 193:3 212:1 216:2 225:1 255:1 256:1 275:1 277:1 300:1 321:3 325:1 371:2 392:1 404:1 419:1 426:1 451:2 456:2 493:1 511:1 515:1 551:3 564:1 578:1 595:2 649:1 677:1 680:1 682:1 690:1 692:1 707:1 712:1 726:2 730:1 733:2 738:1 745:1 759:3 772:1 773:2 776:2 783:1 787:1 848:1 877:3 897:1 911:1 916:1 917:1 936:4 941:1 952:1 1002:1 1008:1 1042:2 1048:1 1068:1 1071:1 1073:1 1075:1 1078:2 1081:1 1085:2 1095:1 1096:1 1099:1 1103:1 1133:1 1135:2 1140:1 1148:1 1154:1 1167:2 1177:1 1183:1 1192:1 1222:1 1231:2 1237:3 1247:1 1272:2 1274:1 1275:1 1307:1 1316:1 1348:2 1393:1 1396:2 1411:1 1418:2 1423:2 1450:1 1473:3 1482:1 1525:2 1535:1 1541:1 1542:1 1553:1 1554:2 1577:1 1606:1 1615:1 1624:1 1634:1 1635:1 1654:1 1662:1 1667:1 1723:1 1737:2 1746:2 1750:1 1757:4 1796:1 1799:1 1803:1 1807:2 1809:2 1815:1 1816:1 1819:5 1854:1 1870:1 1892:1 1901:4 1905:4 1913:2 1919:2 1938:1 1954:1 1955:1 1967:1 1997:2 2004:2 2006:2 2010:1 2017:1 2041:2 2070:1 2071:1 2074:1 2097:1 2115:1 2118:1 2145:2 2148:2 2154:1 2171:2 2194:1 2196:1 2223:1 2224:1 2227:1 2232:1 2234:2 2237:1 2239:2 2242:1 2301:1 2371:1 2374:4 2393:2 2398:1 2411:1 2517:1 2564:1 2596:1 2601:1 2633:2 2684:1 2712:1 2742:2 2743:1 2780:1 2787:1 2789:2 2791:3 2801:2 2805:2 2810:1 2811:1 2812:2 2813:2 2817:1 2820:3 2821:1 2840:1 2860:1 2861:1 2905:2 2938:1 2986:1 2989:1 2990:2 3041:1 3049:1 3063:2 3101:1 3167:1 3172:1 3197:1 3202:1 3214:1 3302:1 3314:2 3322:1 3326:1 3356:1 3359:1 3363:1 3367:1 3370:1 3421:1 3423:3 3432:1 3495:1 3505:2 3513:1 3518:1 3547:2 3552:1 3559:1 3569:3 3576:3 3577:1 3589:1 3615:2 3632:2 3635:4 3653:1 3660:1 3664:1 3666:1 3669:2 3675:1 3705:1 3711:1 3749:1 3758:1 3775:1 3820:1 3853:1 3866:1 3886:1 3904:1 3945:1 3962:1 4033:2 4047:1 4055:1 4083:1 4091:1 4103:1 4148:3 4161:1 4179:1 4219:1 4221:1 4224:1 4231:1 4261:3 4264:1 4307:1 4319:1 4333:1 4380:1 4413:1 4416:1 4439:1 4452:1 4455:1 4463:1 4465:1 4498:2 4501:1 4536:1 4541:1 4549:1 4553:1 4556:1 4590:1 4602:1 4604:1 4608:1 4624:1 4646:1 4678:1 4687:2 4688:2 4708:1 4724:1 4730:1 4741:1 4742:1 4745:2 4771:2 4774:2 4820:2 4821:4 4826:2 4859:1 4873:1 4874:1 4888:1 4894:1 4898:1 4933:1 4959:1 4969:1 4974:1 5001:1 5002:1 5027:2 5028:1 5054:1 5063:1 5102:1 5132:1 5177:1 5201:1 5232:1 5246:1 5255:3 5287:1 5294:2 5298:1 5310:1 5314:1 5344:1 5347:1 5357:1 5366:1 5378:4 5411:1 5412:1 5421:1 5438:1 5489:1 5506:1 5519:1 5522:1 5531:1 5581:2 5583:1 5590:1 5607:1 5620:1 5623:1 5625:1 5664:1 5677:1 5683:2 5689:3 5697:1 5718:2 5730:2 5743:1 5822:1 5838:2 5855:1 5865:1 5866:2 5885:1 5920:1 5921:1 5925:2 5928:2 6004:1 6007:1 6014:1 6021:1 6097:6 6132:1 6140:1 6145:1 6153:1 6167:1 6172:1 6237:4 6257:2 6258:1 6263:1 6264:1 6273:2 6277:1 6281:1 6283:1 6287:1 6288:2 6289:1 6291:1 6315:1 6316:1 6321:1 6401:2 6435:1 6449:1 6454:1 6458:2 6475:1 6476:1 6529:2 6533:2 6543:1 6564:1 6567:1 6584:2 6587:1 6605:3 6612:1 6630:3 6650:1 6695:2 6737:1 6740:1 6747:1 6772:4 6802:1 6806:1 6822:1 6829:2 6853:3 6877:1 6896:1 6909:1 6921:1 6922:1 6934:1 6936:1 6942:1 6963:3 6987:1 7016:1 7037:2 7061:1 7115:1 7136:1 7177:1 7184:1 7187:1 7202:3 7209:1 7227:1 7245:1 7257:1 7272:1 7281:1 7288:1 7319:1 7321:1 7322:2 7323:1 7351:2 7368:1 7385:1 7434:1 7439:1 7444:1 7517:1 7536:1 7566:1 7575:1 7591:1 7627:2 7637:1 7661:1 7726:1 7743:3 7747:1 7749:1 7778:1 7782:1 7785:1 7830:3 7836:3 7936:1 7950:3 7958:1 7964:1 7973:1 8045:1 8050:1 8056:1 8062:1 8065:1 8073:2 8083:2 8084:1 8085:3 8086:1 8088:1 8091:2 8092:1 8099:3 8101:4 8135:1 8136:1 8147:1 8151:1 8162:1 8163:1 8176:1 8193:1 8210:2 8212:2 8213:1 8223:1 8226:1 8233:2 8269:2 8282:1 8286:2 8304:1 8362:1 8371:1 8389:1 8413:1 8416:1 8420:4 8422:1 8425:1 8457:2 8464:1 8477:1 8527:3 8557:1 8558:1 8565:1 8574:1 8607:1 8615:1 8661:1 8662:1 8671:1 8678:1 8743:2 8748:1 8757:1 8761:1 8762:4 8814:1 8846:1 8874:1 8897:2 8917:1 8929:1 8952:1 8959:2 8966:1 8992:1 9016:4 9021:2 9024:1 9061:2 9066:1 9068:1 9087:2 9110:1 9130:3 9140:1 9191:1 9192:1 9201:1 9203:1 9215:1 9234:1 9243:1 9252:1 9282:1 9289:3 9311:1 9352:1 9390:2 9412:1 9420:1 9433:3 9466:1 9489:1 9505:1 9535:2 9539:1 9540:1 9544:2 9557:1 9560:1 9561:1 9576:1 9586:1 9608:1 9609:1 9617:1 9618:1 9622:1 9633:1 9658:1 9671:2 9677:3 9678:2 9680:1 9710:3 9754:1 9786:1 9789:6 9813:2 9817:1 9850:1 9858:2 9862:1 9875:1 9881:18 9892:1 9904:2 9905:5 9927:1 9937:1 9948:2 9949:1 9956:1 9971:1 9988:1 10008:1 10019:1 10027:1 10034:1 10039:1 10057:3 10063:1 10089:1 10090:1 10122:3 10125:1 10133:1 10145:1 10147:1 10176:1 10189:1 10197:3 10228:1 10239:2 10270:1 10279:1 10292:1 10320:1 10326:1 10328:3 10340:1 10353:1 10381:1 10387:2 10395:2 10402:1 10419:4 10441:1 10445:1 10470:3 10471:10 10487:1 10489:1 10500:1 10523:1 10532:1 10536:2 10547:1 10548:2 10558:1 10572:1 10578:2 10594:2 10596:1 10618:1 10630:1 10647:1 10686:1 10701:1 10705:1 10753:2 10758:1 10761:1 10772:1 10779:1 10820:1 10857:1 10860:1 10887:1 10899:2 10902:1 10912:1 10932:1 10958:1 10961:1 10967:1 10973:1 10976:3 10982:1 10983:1 11003:1 11006:1 11019:1 11029:1 11037:1 11058:1 11084:2 11091:1 11107:1 11115:1 11138:1 11158:1 11166:2 11190:1 11207:2 11208:7 11216:1 11227:1 11231:1 11238:1 11249:1 11261:1 11264:1 11284:1 11311:1 11320:1 11323:1 11342:1 11351:2 11386:1 11396:5 11573:1 11586:1 11594:1 11611:1 11617:1 11638:1 11650:2 11668:1 11672:1 11673:1 11685:2 11696:4 11725:1 11733:1 11746:1 11779:2 11789:1 11793:1 11807:1 11818:1 11824:2 11850:1 11853:1 11867:2 11913:2 11960:1 11984:1 11999:1 12013:1 12015:2 12016:1 12040:1 12050:1 12051:1 12075:1 12078:1 12086:1 12092:2 12095:1 12096:1 12131:2 12132:1 12153:2 12183:1 12199:1 12216:1 12220:1 12224:1 12234:1 12236:1 12240:1 12242:1 12243:1 12244:1 12245:1 12285:1 12324:1 12332:1 12337:1 12386:4 12403:1 12413:2 12442:1 12451:1 12479:1 12480:1 12486:1 12526:1 12567:1 12588:1 12597:1 12624:1 12633:1 12644:1 12645:3 12682:1 12702:2 12708:2 12769:2 12772:1 12776:2 12784:2 12786:1 12792:1 12809:1 12810:2 12811:1 12827:1 12846:1 12847:1 12855:1 12888:7 12907:1 12918:1 12921:3 12947:1 12974:3 12975:1 12985:1 13020:3 13021:1 13023:1 13032:1 13072:1 13086:1 13104:1 13112:1 13114:1 13115:1 13126:1 13135:1 13137:2 13139:1 13146:3 13228:1 13229:1 13241:1 13248:1 13254:1 13259:1 13267:1 13297:1 13307:3 13335:1 13337:1 13376:1 13377:2 13378:1 13384:1 13420:1 13443:6 13476:2 13490:1 13532:1 13540:5 13579:2 13580:2 13593:1 13599:1 13611:1 13627:1 13642:1 13648:2 13666:1 13676:3 13680:1 13738:1 13742:1 13743:1 13745:1 13762:1 13773:1 13777:1 13792:1 13844:1 13855:1 13871:1 13899:1 13916:1 13956:2 13982:2 13994:1 13998:1 14031:1 14033:1 14096:1 14107:1 14127:1 14129:2 14132:1 14150:2 14151:2 14165:1 14166:1 14167:1 14170:1 14180:1 14192:2 14195:1 14208:1 14210:2 14214:1 14221:1 14244:1 14278:1 14281:1 14288:2 14297:1 14326:1 14371:1 14397:1 14437:2 14459:1 14472:4 14482:1 14493:1 14503:1 14507:3 14520:1 14530:1 14543:1 14544:1 14552:1 14590:1 14592:1 14619:1 14621:1 14638:1 14640:1 14667:1 14683:1 14702:1 14705:1 14718:1 14720:1 14750:1 14765:1 14787:1 14806:1 14841:1 14865:1 14894:3 14920:1 14921:1 14954:2 14969:1 14978:3 14982:1 14985:2 14988:1 14997:1 14998:1 15008:1 15038:1 15044:1 15046:1 15057:1 15061:1 15071:3 15074:2 15110:3 15138:1 15211:1 15221:2 15228:1 15229:1 15258:1 15315:1 15334:2 15344:2 15345:3 15349:1 15354:1 15361:1 15368:1 15380:1 15397:1 15400:1 15425:3 15444:1 15471:1 15472:4 15473:1 15497:1 15503:1 15510:5 15517:2 15534:1 15547:1 15552:1 15563:3 15584:1 15594:2 15609:1 15616:1 15624:1 15631:1 15641:1 15646:2 15653:1 15655:1 15706:2 15721:3 15729:2 15743:1 15753:2 15768:1 15779:1 15789:1 15823:1 15839:1 15845:1 15865:1 15907:1 15936:1 15938:1 15971:1 15978:1 16011:1 16031:1 16034:1 16036:1 16043:1 16045:2 16048:1 16082:1 16088:1 16136:2 16145:1 16184:1 16212:1 16213:1 16218:1 16226:1 16233:1 16253:1 16285:1 16287:4 16316:1 16319:1 16323:1 16333:2 16355:1 16434:1 16469:1 16483:1 16540:1 16557:1 16559:1 16581:1 16586:2 16640:1 16738:1 16757:1 16762:1 16773:1 16788:1 16802:7 16824:1 16836:1 16838:1 16840:1 16857:1 16879:6 16895:1 16899:1 16910:1 16911:1 16913:1 16934:1 16982:5 16993:1 16994:2 16997:1 17002:1 17021:1 17029:1 17031:1 17042:2 17051:1 17059:2 17081:4 17086:1 17092:3 17144:1 17151:2 17156:2 17166:1 17177:1 17188:1 17203:1 17205:1 17234:1 17239:1 17269:1 17278:3 17305:1 17332:1 17345:1 17371:1 17384:1 17408:1 17432:1 17436:1 17440:1 17449:1 17460:1 17469:1 17481:1 17518:1 17528:1 17552:1 17561:3 17567:2 17585:1 17621:1 17674:1 17679:1 17686:1 17693:1 17744:1 17757:1 17770:1 17775:1 17777:1 17786:2 17790:1 17810:1 17815:1 17872:1 17909:1 17914:1 17918:2 17930:2 17943:1 17950:1 17959:3 17989:1 18005:2 18055:1 18058:1 18161:1 18220:2 18230:1 18232:1 18235:1 18245:1 18248:1 18263:1 18314:1 18338:1 18340:1 18345:3 18359:2 18384:2 18385:1 18389:1 18403:1 18407:1 18422:1 18429:1 18456:1 18467:1 18493:1 18513:3 18536:1 18561:1 18564:1 18608:1 18662:1 18664:1 18687:1 18718:4 18727:2 18742:2 18746:1 18750:8 18757:1 18806:1 18827:1 18868:1 18902:1 18919:1 18921:1 18947:1 18989:1 19018:3 19025:1 19036:6 19084:1 19087:3 19089:1 19112:2 19129:2 19156:3 19179:6 19181:1 19202:1 19203:1 19237:1 19282:1 19328:2 19335:2 19345:1 19365:2 19389:1 19394:1 19395:1 19439:2 19484:1 19531:1 19589:1 19631:1 19641:1 19659:1 19695:1 19703:1 19713:2 19728:2 19756:1 19757:1 19767:1 19788:2 19812:1 19852:1 19867:1 19875:1 19912:1 19915:1 19919:1 19924:3 19929:1 19946:1 19964:1 19980:1 19984:2 20022:3 20102:1 20106:1 20128:2 20129:2 20130:1 20143:3 20164:1 20170:1 20189:1 20190:2 20192:1 20193:1 20200:2 20201:1 20212:1 20226:4 20234:1 20247:1 20297:1 20299:2 20303:1 20304:2 20306:4 20334:1 20343:4 20353:1 20382:1 20390:1 20391:1 20413:1 20434:1 20437:1 20445:1 20448:1 20484:1 20502:3 20518:1 20546:3 20557:1 20580:1 20594:1 20597:1 20608:2 20619:1 20627:1 20632:1 20645:1 20652:1 20657:3 20662:3 20667:1 20672:1 20686:1 20730:1 20733:1 20822:1 20823:1 20852:1 20857:2 20865:1 20874:1 20877:1 20893:1 20899:1 20907:1 20920:1 20940:1 20955:2 20957:2 20965:1 20973:7 20983:1 21029:1 21032:1 21039:1 21087:1 21096:1 21108:1 21115:1 21139:1 21159:1 21172:1 21185:1 21193:1 21225:1 21226:1 21257:1 21274:1 21282:1 21294:2 21309:1 21311:1 21327:1 21333:3 21378:3 21476:1 21496:1 21505:1 21510:3 21514:1 21515:1 21543:1 21546:1 21595:25 21599:2 21631:1 21645:1 21661:1 21662:1 21668:1 21681:1 21683:1 21690:1 21691:1 21722:1 21724:1 21749:1 21750:1 21783:1 21797:1 21855:1 21870:1 21923:2 21924:1 21929:1 21944:1 21949:2 22063:1 22068:1 22115:1 22126:1 22170:1 22172:1 22175:2 22179:1 22184:1 22188:1 22193:2 22196:1 22201:1 22248:3 22281:3 22282:3 22333:1 22400:1 22406:2 22408:1 22414:4 22420:1 22429:3 22430:1 22451:1 22460:1 22462:1 22475:1 22477:1 22484:1 22486:1 22497:1 22520:1 22529:1 22546:1 22574:1 22575:4 22582:1 22584:1 22616:1 22666:2 22674:2 22679:1 22698:1 22761:1 22788:1 22791:1 22795:1 22803:1 22851:1 22864:2 22878:1 22912:1 22915:1 22922:1 22969:1 22973:1 22991:1 22997:1 23015:1 23025:2 23060:1 23091:1 23126:1 23197:1 23200:1 23215:1 23232:1 23242:1 23251:1 23255:1 23256:1 23297:2 23306:1 23307:1 23322:1 23325:1 23401:2 23413:2 23450:1 23464:2 23480:1 23527:1 23543:1 23549:1 23555:3 23568:1 23584:2 23619:1 23660:1 23667:1 23690:1 23721:1 23725:2789 23753:1 23769:1 23784:1 23811:1 23856:2 23867:1 23903:1 23935:1 23945:1 23948:1 23978:1 23991:1 23994:1 23995:1 23997:1 24000:1 24001:1 24018:1 24053:1 24083:1 24089:1 24125:1 24134:1 24146:1 24150:1 24153:1 24159:1 24166:1 24179:1 24204:1 24222:1 24237:1 24238:1 24242:1 24245:2 24277:1 24281:3 24284:1 24354:1 24357:2 24364:1 24377:1 24393:1 24399:1 24409:1 24441:2 24453:1 24456:1 24465:1 24489:1 24515:1 24520:1 24531:1 24533:1 24545:7 24588:1 24593:6 24597:1 24604:1 24631:3 24641:1 24669:1 24700:1 24713:1 24723:1 24763:1 24777:1 24805:3 24848:1 24851:1 24874:2 24875:1 24881:1 24898:1 24913:1 24940:1 24982:1 24988:2 25031:1 25042:1 25047:1 25055:1 25072:1 25101:1 25111:1 25112:1 25118:1 25127:1 25141:1 25170:1 25206:2 25253:1 25261:1 25265:2 25267:1 25275:1 25283:1 25286:1 25308:1 25312:1 25327:1 25328:3 25346:1 25354:1 25356:1 25357:5 25376:3 25380:1 25382:1 25398:1 25408:1 25411:1 25413:1 25437:1 25451:1 25453:2 25492:2 25497:1 25531:3 25532:1 25541:1 25552:2 25555:1 25563:1 25609:1 25710:4 25724:1 25735:1 25769:1 25774:2 25782:1 25841:1 25844:1 25890:2 25892:1 25896:1 25907:1 25919:1 25944:2 25952:1 25977:4 25981:2 25990:1 25994:1 25998:2 26001:1 26006:1 26035:1 26046:1 26050:1 26054:1 26070:1 26078:1 26090:1 26102:1 26105:2 26119:1 26124:1 26156:2 26169:3 26199:1 26200:2 26218:1 26233:1 26242:1 26250:4 26262:2 26276:1 26279:1 26287:1 26301:1 26305:1 26308:4 26314:1 26326:1 26330:2 26337:1 26372:1 26379:1 26392:1 26394:2 26398:4 26404:1 26417:1 26422:1 26424:3 26440:1 26456:1 26468:1 26475:1 26504:1 26524:1 26529:1 26534:1 26537:1 26541:2 26544:1 26560:1 26562:1 26563:2 26585:1 26589:2 26608:1 26665:2 26681:1 26695:1 26697:1 26698:1 26700:1 26729:4 26734:1 26757:1 26808:1 26846:1 26855:1 26856:1 26857:2 26858:1 26876:1 26883:1 26889:1 26897:3 26904:1 26914:1 26944:1 27002:2 27005:3 27073:1 27091:1 27092:2 27095:1 27101:1 27108:2 27116:1 27127:2 27139:1 27141:2 27172:1 27178:1 27193:1 27298:1 27303:2 27306:2 27333:2 27345:1 27347:1 27371:1 27390:1 27396:1 27415:1 27475:1 27482:1 27498:2 27503:3 27516:1 27524:2 27538:1 27560:1 27592:1 27609:1 27624:1 27660:1 27677:1 27710:3 27750:1 27772:1 27773:1 27803:1 27806:1 27810:1 27823:1 27824:1 27838:1 27841:1 27864:1 27868:1 27886:1 27928:1 27930:1 27956:1 27981:1 27982:1 27983:1 28002:1 28029:1 28038:1 28045:3 28069:3 28079:1 28091:1 28094:8 28102:1 28109:1 28115:1 28125:1 28126:1 28155:1 28174:1 28189:1 28192:1 28198:1 28218:1 28226:1 28227:1 28273:1 28280:1 28314:1 28342:1 28354:1 28404:1 28423:2 28427:1 28433:2 28486:1 28488:1 28519:1 28529:1 28538:1 28548:1 28550:1 28632:1 28659:1 28730:1 28741:1 28744:1 28759:1 28839:1 28863:1 28876:1 28877:2 28884:1 28976:1 28991:1 28998:1 28999:2 29007:1 29010:1 29016:1 29021:1 29031:1 29032:1 29058:1 29059:1 29091:1 29105:2 29141:1 29146:1 29156:1 29168:1 29172:3 29187:1 29203:2 29205:1 29217:1 29263:2 29279:1 29285:1 29304:1 29307:1 29311:1 29322:1 29335:1 29351:2 29353:1 29375:2 29405:1 29426:1 29428:2 29429:1 29451:1 29465:1 29506:1 29516:1 29521:1 29529:1 29553:3 29555:1 29570:1 29583:1 29610:1 29625:2 29632:2 29669:1 29686:1 29689:1 29692:3 29693:1 29744:1 29754:1 29762:2 29795:1 29832:1 29859:1 29871:1 29880:2 29892:1 29954:1 29985:1 30032:1 30036:2 30042:1 30052:1 30080:1 30091:1 30102:1 30122:1 30128:1 30145:1 30152:1 30157:1 30181:1 30249:3 30258:1 30266:8 30273:1 30281:1 30301:1 30329:2 30331:1 30339:2 30375:1 30378:1 30386:1 30402:1 30426:1 30430:3 30438:3 30447:1 30465:1 30467:1 30480:2 30484:2 30489:1 30490:1 30496:1 30521:1 30537:1 30557:1 30563:1 30586:1 30591:1 30622:1 30640:2 30662:2 30663:3 30668:3 30671:1 30681:1 30701:1 30706:1 30711:2 30719:1 30743:1 30752:1 30796:2 30811:1 30885:1 30888:1 30893:2 30923:4 30926:3 30936:1 30940:1 30949:1 30960:1 31004:1 31030:1 31060:2 31064:1 31092:1 31134:1 31148:1 31157:1 31180:1 31201:1 31214:2 31216:1 31242:1 31280:1 31322:1 31355:5 31358:3 31359:1 31396:1 31415:1 31427:1 31449:1 31450:1 31455:1 31456:2 31478:1 31479:1 31544:2 31553:1 31558:1 31565:2 31569:1 31570:2 31579:1 31584:1 31586:1 31598:1 31606:2 31612:1 31640:1 31650:1 31667:3 31670:1 31680:3 31696:2 31722:1 31746:2 31753:1 31798:1 31799:1 31835:1 31836:1 31839:1 31857:1 31864:1 31904:1 31916:1 31920:1 31982:2 32016:2 32017:1 32019:2 32036:1 32055:1 32068:1 32080:1 32150:2 32175:1 32178:1 32182:1 32199:1 32209:1 32230:1 32236:1 32244:1 32252:1 32256:1 32257:1 32284:1 32297:1 32299:2 32328:2 32331:1 32346:1 32365:1 32384:4 32405:1 32414:1 32492:4 32507:2 32521:1 32528:4 32533:1 32575:1 32578:1 32653:1 32711:1 32713:1 32772:1 32779:1 32783:1 32787:1 32792:1 32800:1 32835:1 32841:1 32853:1 32862:1 32865:1 32870:1 32874:4 32879:1 32880:1 32881:1 32908:1 32928:1 32974:1 32986:2 33006:2 33012:2 33020:1 33026:1 33054:1 33070:2 33118:2 33144:1 33203:2 33211:1 33212:1 33215:1 33216:2 33230:1 33250:1 33267:1 33356:1 33386:1 33394:1 33399:1 33400:1 33406:2 33444:1 33452:3 33507:1 33514:2 33518:1 33527:1 33531:1 33533:2 33534:1 33548:1 33549:2 33553:1 33560:2 33620:1 33654:1 33698:1 33712:2 33721:2 33723:1 33728:1 33767:2 33773:1 33811:1 33825:1 33844:1 33849:2 33856:2 33861:2 33889:2 33896:1 33897:1 33925:1 33926:1 33932:1 33934:1 33935:1 33936:1 33938:1 33942:1 33950:1 33974:1 33998:1 34015:1 34018:1 34023:2 34029:1 34040:2 34047:1 34059:1 34060:1 34067:1 34068:2 34116:1 34132:2 34139:1 34170:1 34172:1 34182:1 34184:1 34185:1 34197:1 34200:1 34212:2 34219:1 34263:2 34267:2 34285:1 34323:1 34338:1 34372:1 34393:2 34410:1 34442:2 34479:1 34488:2 34495:1 34506:1 34530:1 34574:1 34587:1 34616:1 34624:2 34633:1 34664:1 34668:1 34674:1 34727:1 34739:1 34753:1 34757:1 34773:8 34774:1 34776:1 34794:1 34797:1 34810:5 34833:2 34844:1 34857:1 34881:1 34917:1 34919:1 34932:1 34963:4 34966:1 34971:1 34981:1 34982:1 35001:1 35004:6 35015:1 35024:1 35027:1 35028:1 35048:1 35058:1 35063:1 35074:3 35082:1 35102:1 35117:2 35141:1 35154:2 35161:1 35179:1 35203:1 35223:1 35249:2 35253:2 35302:1 35305:1 35310:1 35316:1 35324:1 35335:1 35360:1 35378:1 35382:1 35384:1 35437:3 35442:1 35459:1 35464:1 35470:1 35515:1 35565:3 35593:1 35622:1 35646:2 35649:2 35675:1 35684:1 35689:1 35708:1 35714:1 35741:1 35742:1 35751:1 35763:1 35837:1 35844:1 35846:1 35864:2 35882:1 35932:2 35943:1 35959:1 35978:1 35985:1 36010:1 36022:1 36053:1 36079:1 36104:1 36128:1 36158:1 36170:3 36178:1 36202:1 36203:1 36235:1 36292:1 36312:1 36318:1 36326:3 36327:1 36328:1 36329:3 36332:1 36333:1 36334:2 36340:1 36342:1 36343:1 36351:1 36366:1 36370:1 36371:1 36392:1 36396:1 36410:1 36415:1 36426:2 36433:1 36438:1 36477:1 36482:1
15 8:1 48:1 82:3 114:1 129:2 151:1 192:1 193:3 212:1 216:2 225:1 255:1 256:1 275:1 277:1 300:1 318:1 321:3 325:1 371:2 392:2 404:1 419:1 426:2 451:2 456:2 493:2 511:1 515:1 551:3 564:1 578:1 595:2 649:1 677:1 680:1 682:1 690:1 692:1 707:1 712:1 726:2 730:1 733:2 738:1 745:1 759:4 772:1 773:2 776:2 783:1 787:1 848:1 877:3 897:1 911:1 916:1 917:1 936:4 941:1 952:2 1002:1 1008:1 1042:2 1048:1 1068:2 1071:1 1073:1 1075:1 1078:2 1081:1 1084:1 1085:2 1093:1 1095:1 1096:1 1099:1 1103:1 1133:1 1135:2 1140:1 1148:1 1154:1 1167:2 1177:1 1183:1 1192:1 1194:1 1222:1 1231:2 1237:3 1247:1 1272:2 1274:1 1275:1 1307:1 1316:1 1348:2 1349:1 1393:1 1396:2 1411:1 1418:2 1423:2 1450:1 1467:1 1473:3 1482:1 1525:2 1535:1 1541:1 1542:1 1553:1 1554:2 1577:1 1606:1 1615:1 1624:1 1634:1 1635:1 1654:1 1662:1 1667:1 1723:1 1737:2 1746:2 1750:1 1752:1 1757:5 1796:1 1799:1 1803:2 1807:2 1809:2 1815:1 1816:1 1819:5 1835:1 1854:1 1870:1 1892:1 1901:4 1905:4 1913:2 1919:2 1938:1 1954:1 1955:1 1967:1 1997:2 2004:2 2006:2 2010:1 2017:1 2041:2 2070:1 2071:1 2074:1 2097:1 2115:1 2118:1 2128:1 2131:1 2145:2 2148:2 2149:1 2154:1 2171:2 2194:1 2196:1 2223:1 2224:1 2227:1 2232:1 2234:2 2237:1 2239:2 2242:1 2301:1 2371:1 2374:4 2381:1 2393:2 2398:1 2411:1 2517:1 2564:1 2596:1 2601:1 2633:3 2684:1 2712:1 2742:2 2743:1 2780:1 2787:1 2789:2 2791:3 2801:2 2805:2 2810:1 2811:2 2812:2 2813:2 2817:1 2820:4 2821:1 2840:1 2860:1 2861:2 2905:2 2938:1 2986:2 2989:1 2990:2 3041:1 3049:1 3063:2 3101:1 3167:1 3172:2 3197:1 3202:1 3214:1 3302:1 3314:2 3322:2 3326:1 3353:1 3356:1 3359:1 3363:1 3367:1 3370:1 3421:1 3423:3 3432:1 3495:1 3505:2 3513:1 3518:1 3547:2 3552:1 3559:1 3569:3 3576:3 3577:1 3589:1 3615:2 3632:2 3635:4 3653:1 3658:1 3660:1 3664:1 3666:1 3669:2 3675:1 3678:1 3705:1 3711:1 3716:1 3749:1 3758:1 3775:1 3820:1 3853:1 3866:1 3886:1 3904:1 3945:1 3962:1 4033:2 4047:1 4055:1 4083:1 4091:1 4103:1 4148:3 4161:1 4175:1 4179:1 4219:1 4221:1 4224:1 4231:1 4261:3 4264:1 4307:1 4319:1 4333:1 4380:1 4413:1 4416:1 4439:1 4452:1 4455:1 4463:1 4465:1 4484:1 4498:2 4501:1 4536:1 4541:1 4549:1 4553:1 4556:1 4590:1 4602:1 4604:2 4606:1 4608:1 4624:1 4646:1 4678:1 4687:2 4688:2 4708:1 4724:1 4730:1 4741:1 4742:1 4745:2 4771:2 4774:2 4820:2 4821:4 4826:2 4859:1 4873:1 4874:1 4888:1 4894:1 4898:1 4911:1 4933:1 4959:1 4969:1 4974:1 5001:1 5002:1 5027:2 5028:1 5054:1 5063:1 5102:1 5132:1 5177:1 5201:1 5232:1 5246:1 5255:3 5287:1 5294:2 5298:1 5310:1 5314:1 5344:1 5347:1 5357:1 5366:1 5378:4 5411:1 5412:1 5421:1 5438:1 5489:1 5506:1 5519:1 5522:1 5531:1 5581:2 5583:1 5590:1 5607:1 5620:1 5623:1 5625:1 5664:1 5677:1 5683:2 5689:3 5697:1 5718:2 5730:2 5743:1 5747:1 5822:1 5838:2 5855:2 5865:1 5866:2 5885:1 5920:1 5921:1 5923:1 5925:2 5928:2 6004:1 6007:2 6014:1 6016:2 6021:1 6097:6 6132:1 6140:1 6145:1 6153:1 6167:1 6172:1 6237:4 6257:2 6258:1 6263:1 6264:1 6266:1 6273:2 6277:1 6281:1 6283:1 6287:1 6288:2 6289:1 6291:1 6315:1 6316:1 6321:1 6401:2 6435:1 6449:1 6454:1 6458:2 6475:1 6476:1 6529:2 6533:3 6543:1 6564:1 6567:1 6584:2 6587:3 6605:3 6612:1 6630:3 6650:1 6695:2 6737:1 6740:1 6747:1 6772:4 6802:1 6806:1 6822:1 6829:2 6853:3 6877:1 6896:1 6909:1 6921:1 6922:1 6934:1 6936:1 6942:1 6963:3 6987:1 7016:1 7037:2 7061:1 7115:1 7136:1 7177:1 7184:1 7187:1 7202:3 7209:1 7227:1 7245:1 7257:1 7272:1 7281:1 7288:1 7319:1 7321:1 7322:2 7323:1 7351:2 7368:1 7385:1 7434:1 7439:1 7444:1 7517:1 7536:1 7566:1 7575:1 7583:1 7591:1 7627:2 7637:1 7661:1 7726:1 7743:3 7747:1 7749:1 7778:1 7782:1 7785:1 7830:3 7836:3 7936:1 7950:3 7958:1 7964:1 7973:1 8045:1 8050:1 8056:1 8062:1 8065:1 8073:2 8083:2 8084:1 8085:3 8086:1 8088:1 8091:2 8092:1 8099:3 8101:4 8135:1 8136:1 8147:1 8151:1 8162:1 8163:1 8176:1 8193:1 8196:2 8210:2 8212:2 8213:1 8223:1 8226:1 8233:2 8269:2 8282:1 8286:2 8304:1 8362:1 8371:1 8389:1 8413:1 8416:1 8420:4 8422:1 8425:1 8457:2 8464:1 8477:1 8527:3 8557:1 8558:1 8565:1 8574:1 8607:1 8615:1 8661:1 8662:1 8671:1 8678:1 8743:2 8748:1 8757:1 8761:1 8762:4 8777:1 8814:1 8846:1 8874:1 8897:2 8917:1 8929:1 8952:1 8959:2 8965:1 8966:1 8992:1 9016:4 9021:2 9024:1 9061:2 9066:1 9068:1 9087:2 9110:1 9130:3 9140:1 9191:1 9192:1 9201:1 9203:1 9215:1 9234:1 9243:1 9252:1 9282:1 9289:3 9311:1 9352:1 9390:2 9412:1 9420:1 9433:3 9466:1 9489:1 9505:1 9535:2 9539:1 9540:1 9544:2 9547:1 9557:1 9560:1 9561:1 9576:1 9586:1 9608:1 9609:1 9617:1 9618:1 9622:1 9633:1 9655:1 9658:1 9671:2 9677:3 9678:2 9680:1 9710:3 9743:1 9754:1 9786:1 9789:6 9813:2 9817:1 9850:1 9858:2 9862:1 9875:1 9881:20 9892:1 9904:2 9905:5 9927:1 9937:1 9948:2 9949:1 9956:1 9971:1 9988:1 10008:1 10019:1 10027:1 10034:1 10039:1 10057:3 10063:1 10089:1 10090:1 10122:3 10125:1 10133:1 10145:1 10147:1 10176:1 10189:1 10197:3 10228:1 10239:2 10270:1 10279:1 10292:1 10320:1 10326:1 10328:3 10340:1 10353:1 10381:1 10387:2 10395:2 10402:1 10419:4 10441:1 10445:1 10470:3 10471:10 10487:1 10489:1 10500:1 10514:1 10523:1 10532:1 10536:2 10547:1 10548:2 10558:1 10572:1 10578:2 10594:2 10596:1 10618:1 10630:1 10647:1 10686:1 10701:1 10705:1 10753:2 10758:1 10761:1 10772:3 10779:1 10820:1 10857:1 10860:1 10887:1 10899:2 10902:1 10910:1 10912:1 10932:1 10958:1 10961:1 10967:1 10973:1 10976:3 10982:1 10983:1 11003:1 11006:1 11019:1 11029:1 11037:1 11058:1 11061:1 11083:1 11084:2 11091:1 11107:1 11115:1 11138:1 11158:1 11166:2 11190:1 11207:2 11208:7 11216:1 11227:1 11231:1 11238:1 11249:3 11261:1 11264:1 11284:1 11311:1 11320:1 11323:1 11342:1 11351:2 11386:1 11396:5 11573:1 11586:1 11594:1 11611:1 11617:1 11638:1 11650:2 11668:1 11672:1 11673:1 11685:2 11696:4 11725:1 11733:1 11746:1 11779:2 11789:1 11793:1 11807:1 11818:1 11824:2 11850:1 11853:1 11867:2 11913:2 11960:1 11984:1 11999:1 12013:2 12015:2 12016:1 12040:1 12050:1 12051:1 12075:1 12078:1 12086:1 12092:2 12095:1 12096:1 12131:3 12132:1 12153:2 12183:1 12199:1 12216:1 12220:1 12224:1 12234:1 12236:1 12240:1 12242:1 12243:1 12244:1 12245:1 12285:1 12324:1 12332:1 12337:1 12386:4 12403:1 12413:2 12427:1 12442:1 12451:1 12479:1 12480:1 12486:1 12526:1 12567:1 12588:1 12597:1 12624:1 12633:1 12644:1 12645:3 12682:1 12702:2 12708:2 12769:2 12772:1 12776:2 12784:2 12786:1 12792:1 12802:1 12809:1 12810:2 12811:1 12827:1 12846:1 12847:1 12855:1 12888:7 12907:1 12918:1 12921:3 12947:1 12974:3 12975:1 12985:1 13020:3 13021:1 13023:1 13032:1 13072:1 13079:1 13086:1 13104:1 13112:1 13114:1 13115:1 13126:1 13135:1 13137:2 13139:1 13146:3 13228:1 13229:1 13230:1 13241:1 13248:1 13254:1 13259:1 13267:1 13297:1 13307:3 13335:1 13337:1 13376:1 13377:2 13378:1 13384:1 13420:1 13443:6 13476:2 13490:1 13532:1 13540:6 13579:2 13580:2 13593:1 13599:1 13611:1 13627:1 13642:1 13648:2 13666:1 13676:3 13680:1 13738:1 13742:1 13743:1 13745:1 13762:1 13769:1 13773:1 13777:1 13792:1 13844:1 13855:1 13871:1 13899:1 13916:1 13956:2 13982:2 13994:1 13998:1 14031:1 14033:1 14096:1 14107:1 14127:1 14129:2 14132:1 14150:2 14151:2 14165:1 14166:1 14167:1 14170:1 14180:1 14192:2 14195:1 14208:1 14210:2 14214:1 14221:1 14227:1 14244:1 14278:2 14281:1 14288:3 14297:1 14326:1 14333:1 14371:1 14397:1 14437:2 14459:1 14472:4 14482:1 14492:1 14493:1 14494:1 14503:1 14507:3 14520:1 14530:1 14543:1 14544:1 14552:1 14590:1 14592:1 14619:1 14621:1 14638:1 14640:1 14667:1 14683:1 14702:1 14705:1 14718:1 14720:1 14750:1 14765:1 14787:1 14806:1 14841:1 14865:1 14894:3 14920:1 14921:1 14954:2 14969:1 14978:3 14982:1 14985:2 14988:1 14997:1 14998:1 15008:1 15038:1 15044:1 15046:1 15057:1 15061:1 15071:3 15074:2 15110:3 15138:1 15174:1 15211:1 15221:2 15228:1 15229:1 15258:1 15264:1 15308:1 15315:1 15334:2 15344:2 15345:3 15349:1 15354:1 15361:1 15368:1 15380:1 15391:1 15397:1 15400:1 15425:3 15444:1 15471:1 15472:4 15473:1 15486:1 15497:1 15503:1 15510:5 15517:2 15534:1 15547:1 15552:1 15563:3 15584:1 15594:2 15609:1 15616:1 15624:1 15631:1 15641:1 15646:2 15653:1 15655:1 15676:1 15706:2 15721:3 15729:3 15743:1 15753:2 15768:1 15779:1 15789:1 15823:1 15839:1 15845:1 15865:1 15907:1 15936:1 15938:1 15960:1 15971:1 15978:1 16011:1 16024:1 16031:1 16034:1 16036:1 16043:1 16045:2 16048:1 16082:1 16088:1 16136:2 16145:1 16184:1 16212:1 16213:1 16218:1 16226:1 16233:1 16253:1 16285:1 16287:4 16316:2 16319:1 16323:1 16333:2 16355:1 16367:1 16434:1 16469:1 16483:1 16540:1 16557:1 16559:1 16581:1 16586:2 16640:1 16738:1 16757:1 16762:1 16773:1 16788:1 16802:7 16824:1 16836:1 16838:1 16840:1 16857:1 16879:6 16895:1 16899:1 16910:1 16911:1 16913:1 16934:1 16982:5 16993:1 16994:2 16997:1 17002:1 17021:1 17029:1 17031:1 17042:2 17051:1 17059:2 17081:5 17086:1 17092:3 17144:1 17151:2 17156:2 17166:1 17177:1 17188:1 17203:1 17205:1 17234:1 17239:1 17269:1 17278:3 17305:1 17332:1 17345:1 17347:1 17371:1 17384:1 17408:1 17432:1 17436:1 17440:1 17449:1 17460:1 17469:1 17481:1 17518:1 17528:1 17552:1 17561:3 17567:2 17585:1 17621:1 17674:1 17675:1 17679:1 17686:1 17693:1 17744:1 17757:1 17770:1 17775:1 17777:1 17786:2 17790:1 17810:1 17815:1 17872:1 17909:1 17914:1 17918:2 17930:2 17943:1 17950:1 17959:3 17989:2 18005:2 18055:1 18058:1 18161:1 18220:2 18230:1 18232:1 18235:1 18245:1 18248:1 18263:1 18314:1 18338:1 18340:1 18345:3 18359:2 18384:2 18385:1 18389:1 18403:1 18407:1 18422:1 18429:1 18456:1 18467:1 18493:1 18513:3 18536:1 18561:1 18564:1 18608:1 18662:1 18664:1 18687:1 18698:1 18718:6 18727:2 18742:2 18746:1 18750:9 18757:1 18806:1 18827:1 18868:1 18902:1 18919:1 18921:2 18947:1 18989:1 19018:3 19025:1 19036:6 19084:1 19087:3 19089:1 19112:2 19129:2 19156:5 19179:6 19181:1 19202:1 19203:1 19237:1 19282:1 19293:1 19328:2 19335:2 19345:1 19365:2 19389:1 19394:1 19395:1 19439:2 19473:1 19484:1 19505:1 19531:1 19589:1 19631:1 19641:1 19659:1 19670:1 19695:1 19703:1 19713:2 19728:2 19756:1 19757:1 19767:1 19788:2 19812:1 19852:1 19867:1 19875:1 19912:1 19915:1 19919:1 19924:3 19929:1 19946:1 19964:1 19980:1 19984:2 20022:3 20102:1 20106:1 20128:2 20129:2 20130:1 20143:3 20147:1 20164:1 20170:1 20189:1 20190:2 20192:1 20193:1 20200:2 20201:1 20212:1 20226:4 20234:1 20247:1 20297:1 20299:2 20303:1 20304:2 20306:5 20334:1 20343:4 20353:1 20382:1 20390:1 20391:1 20413:1 20434:1 20437:1 20445:1 20448:1 20484:1 20502:3 20518:1 20546:3 20557:1 20580:1 20594:1 20597:1 20608:2 20619:1 20627:1 20632:1 20645:1 20652:1 20657:3 20662:3 20667:1 20672:1 20686:1 20730:1 20733:1 20822:1 20823:1 20852:1 20857:2 20865:1 20874:1 20877:1 20893:1 20899:1 20907:1 20920:1 20940:1 20955:2 20957:2 20965:1 20973:7 20983:1 21029:1 21032:1 21039:1 21087:1 21096:1 21108:1 21115:1 21139:1 21159:1 21172:1 21185:1 21193:1 21196:1 21225:1 21226:1 21257:1 21274:1 21282:1 21294:2 21309:1 21311:1 21327:1 21333:3 21378:3 21476:1 21496:1 21505:1 21510:3 21514:1 21515:1 21543:1 21546:1 21595:25 21599:2 21631:1 21645:1 21661:1 21662:1 21668:1 21681:1 21683:1 21690:1 21691:1 21722:1 21724:1 21749:1 21750:1 21783:1 21797:1 21855:1 21870:1 21923:2 21924:1 21929:1 21942:1 21944:1 21949:2 22063:1 22068:1 22115:1 22126:1 22170:1 22172:1 22175:2 22179:1 22184:1 22188:1 22193:2 22196:1 22201:1 22238:1 22248:3 22281:3 22282:3 22333:1 22400:1 22406:3 22408:1 22414:4 22420:1 22429:3 22430:1 22451:1 22460:1 22462:1 22475:1 22477:1 22484:1 22486:1 22497:1 22520:1 22529:1 22546:1 22574:1 22575:4 22582:1 22584:1 22616:1 22666:2 22674:2 22679:1 22698:1 22761:1 22788:1 22791:1 22795:1 22803:1 22851:1 22864:2 22878:1 22912:1 22915:1 22922:1 22969:1 22973:1 22991:1 22997:1 23015:1 23025:2 23060:1 23091:1 23126:1 23197:1 23200:1 23215:1 23232:1 23242:1 23251:1 23255:1 23256:1 23297:2 23306:1 23307:1 23322:1 23325:1 23401:2 23413:2 23450:1 23464:2 23480:1 23527:1 23543:1 23549:1 23555:3 23568:1 23584:2 23619:1 23660:1 23667:1 23690:1 23721:1 23725:2953 23753:1 23764:1 23769:1 23784:1 23811:1 23856:2 23867:1 23903:1 23935:1 23945:1 23948:1 23978:1 23991:1 23994:1 23995:1 23997:1 24000:1 24001:1 24018:1 24053:1 24083:1 24089:1 24125:1 24134:1 24146:1 24150:1 24153:1 24159:1 24166:1 24179:1 24204:1 24222:1 24237:1 24238:1 24242:1 24245:2 24277:1 24281:3 24284:1 24354:1 24357:2 24364:1 24377:1 24393:1 24399:1 24409:1 24435:1 24441:2 24452:1 24453:1 24456:1 24465:1 24489:1 24515:1 24520:1 24531:1 24533:1 24545:8 24588:1 24593:6 24597:1 24604:1 24631:3 24641:1 24669:1 24700:1 24713:1 24723:1 24763:1 24777:1 24804:1 24805:3 24848:1 24851:1 24874:2 24875:1 24881:1 24898:1 24913:1 24940:1 24982:1 24988:2 25031:1 25042:1 25047:1 25055:1 25072:1 25101:1 25111:1 25112:1 25118:1 25127:1 25141:1 25170:1 25206:2 25253:1 25261:1 25265:2 25267:1 25275:1 25283:1 25286:1 25308:1 25312:1 25327:1 25328:3 25346:1 25354:1 25356:1 25357:5 25376:3 25380:1 25382:1 25398:2 25408:1 25411:1 25413:1 25425:1 25437:1 25451:1 25453:2 25492:2 25497:1 25531:3 25532:1 25541:1 25552:2 25555:1 25563:1 25609:1 25710:4 25724:1 25735:1 25769:1 25774:2 25782:1 25841:1 25844:1 25890:2 25892:1 25896:1 25907:1 25919:1 25944:2 25952:1 25977:4 25981:2 25990:1 25994:1 25998:2 26001:1 26006:1 26035:1 26046:1 26050:1 26054:1 26070:1 26078:1 26090:1 26102:1 26105:2 26119:1 26124:1 26156:2 26169:3 26199:1 26200:2 26218:1 26233:1 26242:1 26250:5 26262:2 26276:1 26279:1 26287:1 26301:1 26305:1 26308:4 26314:1 26326:1 26330:2 26337:1 26372:1 26379:1 26392:1 26394:2 26398:4 26404:1 26417:1 26422:1 26424:3 26440:1 26456:1 26468:1 26475:1 26504:1 26524:1 26529:1 26534:1 26537:1 26541:2 26544:1 26560:1 26562:1 26563:2 26585:1 26589:2 26608:1 26665:2 26681:1 26695:1 26697:1 26698:1 26700:1 26729:4 26734:1 26757:1 26760:1 26808:1 26836:3 26846:1 26855:1 26856:1 26857:2 26858:1 26876:1 26883:1 26889:1 26897:3 26904:1 26914:1 26944:1 27002:2 27005:3 27073:1 27091:1 27092:2 27095:1 27101:1 27108:2 27116:1 27127:2 27139:1 27141:2 27172:1 27178:1 27193:1 27298:2 27303:2 27306:2 27333:2 27345:1 27347:1 27371:1 27390:1 27396:1 27415:1 27475:1 27482:1 27498:2 27503:3 27516:1 27524:2 27538:1 27548:1 27560:1 27592:1 27598:1 27609:1 27624:1 27660:1 27671:1 27677:1 27710:3 27750:1 27772:1 27773:1 27803:1 27806:1 27810:1 27823:1 27824:1 27838:1 27841:1 27864:1 27868:1 27886:1 27928:1 27930:1 27956:1 27981:1 27982:1 27983:1 28002:1 28029:1 28038:1 28045:3 28069:3 28079:1 28091:1 28094:8 28102:1 28109:1 28115:1 28125:1 28126:1 28155:1 28174:1 28189:1 28192:1 28198:1 28199:1 28218:1 28226:1 28227:2 28273:1 28280:1 28314:1 28342:1 28354:1 28404:1 28423:2 28427:1 28433:2 28486:1 28488:1 28498:1 28519:1 28529:1 28537:1 28538:1 28548:1 28550:1 28632:1 28659:1 28690:1 28730:2 28741:1 28744:1 28759:1 28839:2 28863:1 28876:1 28877:2 28884:1 28976:1 28991:1 28998:1 28999:2 29007:1 29010:1 29016:1 29021:1 29031:1 29032:1 29058:1 29059:1 29091:1 29105:2 29141:1 29146:1 29156:1 29168:1 29172:3 29181:1 29187:1 29203:2 29205:1 29217:1 29263:2 29279:1 29285:1 29304:1 29307:1 29311:1 29322:1 29335:1 29351:2 29353:1 29375:2 29405:1 29426:1 29428:2 29429:1 29434:1 29437:1 29451:1 29465:1 29506:1 29516:1 29521:1 29529:1 29553:3 29555:1 29570:1 29583:1 29610:1 29625:2 29632:2 29669:1 29686:1 29689:1 29692:3 29693:1 29744:1 29754:1 29762:2 29765:1 29795:1 29832:1 29859:1 29871:1 29880:2 29890:1 29892:1 29954:1 29985:1 30032:1 30036:2 30042:1 30052:1 30080:1 30091:1 30102:1 30122:1 30128:1 30145:1 30152:1 30157:1 30181:1 30249:3 30258:1 30266:8 30273:1 30281:1 30301:1 30329:2 30331:1 30339:2 30375:1 30378:1 30386:1 30402:1 30426:1 30430:3 30438:3 30447:1 30465:1 30467:1 30480:2 30484:2 30489:1 30490:1 30496:1 30521:1 30537:1 30557:1 30563:1 30586:1 30591:1 30622:1 30640:2 30662:2 30663:3 30668:3 30671:1 30681:1 30701:1 30706:1 30711:2 30719:1 30743:1 30752:1 30765:1 30796:2 30811:1 30836:1 30885:1 30888:1 30893:2 30923:4 30926:3 30936:1 30940:1 30949:1 30960:1 31004:1 31022:1 31030:1 31060:2 31064:1 31092:1 31134:1 31148:1 31157:1 31180:1 31201:2 31214:2 31216:1 31226:1 31242:1 31280:1 31322:1 31355:5 31358:3 31359:1 31396:1 31415:1 31427:1 31449:1 31450:1 31455:1 31456:2 31478:1 31479:1 31544:2 31553:1 31558:1 31565:3 31569:1 31570:2 31577:1 31579:1 31584:1 31586:1 31598:1 31606:2 31612:1 31640:1 31650:1 31667:3 31670:1 31680:3 31696:2 31722:1 31746:2 31753:1 31775:1 31798:1 31799:1 31835:1 31836:1 31839:1 31857:1 31864:1 31904:1 31916:1 31920:1 31982:2 31991:1 32016:2 32017:1 32019:2 32036:1 32055:1 32068:1 32080:1 32150:2 32175:1 32178:1 32182:1 32199:1 32209:1 32216:1 32230:1 32236:1 32244:1 32252:1 32256:1 32257:1 32284:1 32297:1 32299:2 32328:2 32331:1 32346:1 32365:1 32384:4 32405:1 32414:1 32492:4 32507:2 32521:1 32528:4 32533:1 32575:1 32578:1 32646:1 32653:1 32711:1 32713:1 32772:1 32779:1 32783:1 32787:1 32792:1 32800:1 32835:1 32841:1 32853:1 32862:1 32865:1 32870:1 32874:4 32879:1 32880:1 32881:2 32908:1 32928:1 32956:1 32974:1 32986:2 33006:2 33012:3 33020:1 33026:1 33054:1 33070:2 33118:2 33144:1 33203:2 33211:1 33212:1 33215:1 33216:2 33230:1 33250:1 33267:1 33349:1 33356:1 33386:1 33394:1 33399:1 33400:1 33406:3 33444:1 33452:3 33507:1 33514:2 33518:1 33527:1 33531:1 33533:2 33534:1 33548:1 33549:2 33553:1 33560:2 33620:1 33654:1 33698:1 33712:2 33721:2 33723:1 33728:1 33767:2 33773:1 33811:1 33825:1 33844:1 33849:2 33856:2 33861:2 33889:2 33896:1 33897:1 33925:1 33926:1 33932:1 33934:1 33935:1 33936:1 33938:1 33942:1 33950:1 33974:1 33998:1 34015:1 34018:1 34023:2 34029:1 34040:2 34047:1 34059:1 34060:1 34067:1 34068:2 34116:1 34132:2 34139:1 34170:1 34172:1 34182:1 34184:1 34185:1 34197:1 34200:1 34212:2 34219:1 34263:2 34267:2 34285:1 34323:1 34338:2 34372:1 34393:2 34410:1 34442:2 34479:1 34488:2 34495:1 34506:1 34530:1 34574:1 34587:1 34616:1 34624:2 34633:1 34664:3 34668:1 34674:1 34727:1 34739:1 34748:1 34753:1 34757:1 34773:8 34774:1 34776:1 34794:1 34797:1 34810:5 34833:2 34844:1 34857:1 34881:1 34917:1 34919:1 34932:1 34963:4 34966:1 34971:1 34981:1 34982:1 35001:1 35004:6 35015:1 35024:1 35027:1 35028:1 35048:1 35058:1 35063:1 35074:3 35082:1 35102:1 35117:2 35141:1 35154:2 35161:1 35179:1 35203:1 35223:1 35249:2 35253:2 35302:1 35305:1 35310:1 35316:1 35324:1 35335:1 35352:1 35360:1 35378:1 35382:1 35384:1 35437:3 35442:1 35459:1 35464:1 35470:1 35515:1 35565:3 35593:2 35622:1 35646:2 35649:2 35675:1 35684:1 35689:1 35708:1 35714:1 35741:1 35742:1 35751:1 35763:1 35837:1 35844:1 35846:1 35864:2 35882:1 35932:2 35943:1 35959:1 35978:1 35985:1 36010:1 36022:1 36053:1 36079:1 36104:1 36128:1 36158:1 36170:3 36178:1 36202:1 36203:1 36235:1 36292:1 36312:1 36318:1 36326:3 36327:1 36328:1 36329:3 36332:1 36333:1 36334:2 36340:1 36342:2 36343:2 36351:1 36366:1 36370:1 36371:1 36392:1 36396:1 36410:1 36415:1 36426:2 36433:1 36438:1 36442:1 36477:1 36482:1
15 8:1 48:1 82:3 114:1 129:2 151:1 192:1 193:4 212:1 216:2 225:1 255:1 256:1 275:1 277:1 281:1 300:1 318:1 321:3 325:1 371:2 392:2 404:1 419:1 426:2 451:3 456:2 493:2 511:1 515:1 551:3 564:1 578:1 595:2 625:1 649:1 677:1 680:1 682:1 690:1 692:1 707:1 712:1 726:2 730:1 733:2 738:1 745:1 759:4 772:1 773:2 776:2 783:1 787:1 848:1 877:3 897:1 911:1 916:1 917:1 936:4 941:1 952:2 1002:1 1008:1 1042:2 1048:1 1068:2 1071:1 1073:1 1075:1 1078:2 1081:1 1084:1 1085:2 1093:1 1095:1 1096:1 1099:1 1103:1 1133:1 1135:2 1140:1 1145:1 1148:1 1154:1 1167:2 1177:1 1183:1 1192:1 1194:1 1222:1 1231:2 1237:3 1247:1 1272:2 1274:1 1275:1 1307:1 1316:1 1348:2 1349:1 1393:1 1396:2 1411:1 1418:2 1423:2 1450:1 1467:1 1473:3 1482:1 1525:2 1535:1 1541:1 1542:1 1553:1 1554:2 1577:1 1606:1 1615:1 1624:1 1634:1 1635:1 1654:1 1662:1 1667:1 1723:1 1737:2 1746:2 1750:1 1752:1 1757:5 1796:1 1799:1 1803:2 1807:2 1809:2 1815:1 1816:1 1819:5 1835:1 1854:1 1870:1 1892:1 1901:4 1904:1 1905:4 1913:2 1919:2 1938:1 1954:1 1955:1 1967:1 1997:2 2004:2 2006:2 2010:1 2017:1 2041:2 2070:1 2071:1 2074:1 2097:1 2114:1 2115:1 2118:1 2128:1 2131:1 2145:2 2148:2 2149:1 2154:1 2171:2 2194:1 2196:1 2223:1 2224:1 2227:1 2232:1 2234:2 2237:1 2239:2 2242:1 2301:1 2309:1 2313:1 2371:1 2374:4 2381:1 2393:2 2398:1 2411:1 2517:1 2564:1 2582:1 2596:1 2601:1 2633:3 2684:1 2712:1 2742:2 2743:1 2777:1 2780:1 2787:1 2789:2 2791:3 2801:2 2805:2 2810:1 2811:2 2812:2 2813:2 2817:1 2820:4 2821:1 2840:1 2860:1 2861:2 2905:2 2938:1 2986:2 2989:1 2990:2 3041:1 3049:2 3063:2 3101:1 3138:1 3167:1 3172:2 3197:1 3202:1 3214:1 3229:1 3302:1 3314:2 3322:2 3326:1 3353:1 3356:1 3359:1 3363:1 3367:1 3370:1 3421:1 3423:3 3432:1 3495:1 3505:2 3513:1 3517:1 3518:1 3547:2 3552:1 3559:1 3569:3 3576:4 3577:1 3589:1 3615:2 3632:2 3635:4 3653:1 3658:1 3660:1 3664:1 3666:1 3669:2 3675:1 3678:1 3705:1 3711:1 3716:1 3749:1 3758:1 3775:1 3795:1 3820:1 3853:1 3866:1 3886:1 3904:1 3945:1 3962:1 4033:2 4047:1 4055:1 4083:1 4091:1 4103:1 4148:3 4161:1 4175:1 4179:1 4219:1 4221:1 4224:1 4231:1 4261:3 4264:1 4307:1 4319:1 4333:1 4380:1 4413:1 4416:1 4439:1 4452:1 4455:1 4463:1 4465:1 4484:1 4498:2 4501:1 4536:1 4541:1 4549:1 4553:1 4556:1 4590:1 4602:1 4604:2 4606:1 4608:1 4624:1 4646:1 4678:1 4687:2 4688:2 4708:1 4724:1 4730:1 4741:1 4742:1 4745:2 4771:2 4774:2 4820:2 4821:4 4826:2 4859:1 4873:1 4874:1 4888:1 4894:1 4898:1 4911:1 4933:1 4959:1 4969:1 4974:1 5001:1 5002:1 5027:2 5028:1 5054:1 5063:1 5102:1 5132:1 5177:1 5201:1 5232:1 5246:1 5255:3 5287:1 5294:2 5298:1 5310:1 5314:1 5344:1 5347:1 5357:1 5366:1 5378:4 5411:1 5412:1 5421:1 5438:1 5489:1 5506:1 5519:1 5522:1 5531:1 5543:1 5581:2 5583:1 5590:1 5607:1 5620:1 5623:1 5625:1 5664:1 5677:1 5683:2 5689:3 5697:1 5718:2 5719:1 5730:2 5743:1 5747:1 5822:1 5832:1 5838:2 5855:2 5865:1 5866:2 5885:1 5920:1 5921:1 5923:1 5925:2 5928:2 6004:1 6007:2 6014:1 6016:2 6021:1 6097:7 6132:1 6140:1 6145:1 6153:1 6167:1 6172:1 6237:4 6257:2 6258:1 6263:1 6264:1 6266:1 6273:2 6277:1 6281:1 6283:1 6287:1 6288:2 6289:1 6291:1 6315:1 6316:1 6321:1 6401:2 6435:1 6442:1 6449:1 6454:1 6458:2 6475:1 6476:1 6508:1 6529:2 6533:3 6543:1 6564:1 6567:1 6584:2 6587:3 6605:3 6612:1 6630:3 6650:1 6695:2 6737:1 6740:1 6747:1 6772:4 6802:1 6806:1 6822:1 6829:2 6853:3 6877:1 6896:1 6909:1 6921:1 6922:1 6934:1 6936:1 6942:1 6963:3 6987:1 7016:1 7037:2 7061:1 7115:1 7136:1 7177:1 7184:1 7187:1 7202:3 7209:1 7227:1 7236:1 7245:1 7257:1 7272:1 7281:1 7288:1 7319:1 7321:1 7322:2 7323:1 7351:2 7368:1 7385:1 7434:1 7439:1 7444:1 7517:1 7536:1 7566:1 7575:1 7583:1 7591:1 7627:2 7633:1 7637:1 7661:1 7726:1 7743:3 7747:1 7749:1 7765:1 7778:1 7782:1 7785:1 7830:3 7836:3 7936:1 7950:3 7958:1 7964:1 7973:1 8045:1 8050:1 8056:1 8062:1 8065:1 8073:2 8083:2 8084:1 8085:3 8086:1 8088:2 8091:2 8092:1 8099:3 8101:4 8135:1 8136:1 8147:1 8151:1 8162:1 8163:1 8176:1 8193:1 8196:2 8210:2 8212:2 8213:1 8223:1 8226:1 8233:2 8252:1 8269:2 8282:1 8286:2 8304:1 8362:1 8371:1 8389:1 8413:2 8416:1 8420:4 8422:1 8425:1 8457:2 8464:1 8477:1 8527:3 8557:1 8558:1 8565:1 8574:1 8607:1 8615:1 8661:1 8662:1 8671:1 8678:1 8687:1 8743:2 8748:1 8757:1 8761:1 8762:4 8777:1 8814:1 8846:1 8874:1 8897:2 8917:1 8929:1 8952:1 8959:2 8965:1 8966:1 8972:1 8992:2 9016:5 9021:2 9024:1 9061:2 9066:1 9068:1 9087:2 9110:1 9130:3 9140:1 9191:1 9192:1 9201:1 9203:1 9215:1 9234:1 9243:1 9252:1 9282:1 9289:3 9311:1 9352:1 9390:2 9412:1 9420:1 9433:3 9466:1 9489:1 9505:1 9535:2 9539:1 9540:1 9544:2 9547:1 9557:1 9560:1 9561:1 9576:1 9586:1 9608:1 9609:1 9617:1 9618:1 9622:1 9633:1 9655:1 9658:1 9671:2 9677:3 9678:2 9680:1 9710:3 9743:1 9754:1 9786:2 9789:6 9813:2 9817:1 9850:1 9858:2 9862:1 9875:1 9881:21 9892:1 9904:2 9905:5 9927:1 9937:1 9948:2 9949:1 9956:1 9971:1 9988:1 10008:1 10019:1 10027:1 10034:1 10039:1 10057:3 10063:1 10089:1 10090:1 10122:4 10125:1 10133:1 10140:1 10145:1 10147:1 10176:1 10187:1 10189:1 10197:3 10228:1 10239:2 10270:1 10279:1 10292:1 10320:1 10326:1 10328:3 10340:1 10353:1 10381:1 10387:2 10395:2 10402:1 10419:4 10441:1 10445:1 10470:3 10471:10 10487:1 10489:1 10500:1 10514:1 10523:1 10532:1 10536:2 10547:1 10548:2 10558:1 10572:1 10578:2 10594:2 10596:1 10618:1 10630:1 10647:1 10686:1 10701:1 10705:1 10753:2 10758:1 10761:1 10772:3 10773:1 10779:1 10788:1 10820:1 10857:1 10860:1 10887:1 10899:2 10902:1 10910:1 10912:1 10932:1 10958:1 10961:1 10967:1 10973:1 10976:3 10982:1 10983:1 11003:1 11006:1 11019:1 11029:1 11037:1 11058:1 11061:1 11083:1 11084:2 11091:1 11107:1 11115:1 11138:1 11158:1 11166:2 11190:1 11207:2 11208:7 11216:1 11227:1 11231:1 11238:1 11249:3 11261:1 11264:1 11284:1 11311:1 11320:1 11323:1 11342:1 11351:2 11386:1 11396:6 11429:1 11573:1 11586:1 11594:1 11611:1 11617:1 11638:1 11650:2 11668:1 11672:1 11673:1 11685:2 11696:4 11725:1 11733:1 11746:1 11779:2 11789:1 11793:1 11807:1 11818:1 11824:2 11850:1 11853:1 11867:2 11913:2 11960:1 11984:1 11999:1 12013:2 12015:2 12016:1 12040:1 12050:1 12051:1 12075:1 12078:1 12086:1 12092:2 12095:1 12096:1 12131:3 12132:1 12153:2 12183:1 12199:1 12216:1 12220:1 12224:1 12234:1 12236:1 12240:1 12242:1 12243:1 12244:1 12245:1 12285:1 12324:1 12332:1 12337:1 12386:4 12403:1 12413:2 12427:1 12442:1 12451:1 12479:1 12480:1 12486:1 12526:1 12567:1 12588:1 12597:1 12624:1 12633:1 12644:1 12645:3 12682:1 12702:2 12708:2 12769:2 12772:1 12776:2 12784:2 12786:1 12792:1 12802:1 12809:1 12810:2 12811:2 12827:1 12846:1 12847:1 12855:1 12888:8 12907:1 12918:1 12921:3 12947:1 12974:3 12975:1 12985:1 13020:3 13021:1 13023:1 13032:1 13072:1 13079:1 13086:1 13104:1 13112:1 13114:1 13115:1 13123:1 13126:1 13135:1 13137:2 13139:1 13146:3 13228:1 13229:1 13230:1 13241:1 13248:1 13254:1 13259:1 13267:1 13297:1 13307:3 13335:1 13337:1 13376:1 13377:2 13378:1 13384:1 13420:1 13443:6 13476:2 13490:1 13532:1 13540:6 13579:2 13580:2 13593:1 13599:1 13611:1 13627:1 13636:1 13642:1 13648:2 13653:1 13666:1 13676:3 13680:1 13738:1 13742:1 13743:1 13745:1 13762:1 13769:1 13773:1 13777:1 13792:1 13813:1 13844:1 13855:1 13871:1 13899:1 13916:1 13949:1 13956:2 13982:2 13994:1 13998:1 14031:1 14033:1 14096:1 14107:2 14127:1 14129:2 14132:1 14150:2 14151:2 14165:1 14166:1 14167:1 14170:1 14180:1 14192:2 14195:1 14208:1 14210:2 14214:1 14221:1 14227:1 14244:1 14278:2 14281:1 14288:3 14297:1 14326:1 14333:1 14371:1 14397:1 14437:2 14439:1 14442:1 14459:1 14472:4 14482:1 14492:1 14493:1 14494:1 14503:1 14507:3 14520:1 14530:1 14543:1 14544:1 14552:1 14590:1 14592:1 14619:1 14621:1 14638:1 14640:1 14667:1 14683:1 14702:1 14705:1 14718:1 14720:1 14750:1 14765:1 14787:1 14806:1 14841:1 14865:1 14894:3 14920:1 14921:1 14954:2 14969:1 14978:4 14982:1 14985:3 14988:1 14997:1 14998:1 15008:1 15030:1 15038:1 15044:1 15046:1 15057:1 15061:1 15071:3 15074:2 15110:3 15138:1 15174:1 15211:1 15221:2 15228:1 15229:1 15258:1 15264:1 15300:1 15308:1 15315:1 15334:2 15344:2 15345:3 15349:1 15354:1 15361:1 15368:1 15380:1 15391:1 15397:1 15400:1 15425:3 15444:1 15471:1 15472:4 15473:1 15486:1 15497:1 15503:1 15510:5 15517:2 15534:1 15547:1 15552:1 15563:3 15584:1 15594:2 15609:1 15616:1 15624:1 15631:1 15641:1 15646:2 15653:1 15655:1 15676:1 15706:3 15721:3 15729:3 15743:1 15753:2 15768:1 15779:1 15789:1 15823:1 15839:1 15845:1 15865:1 15907:1 15936:1 15938:1 15960:1 15971:1 15978:1 16011:1 16024:1 16031:1 16034:2 16036:1 16043:1 16045:2 16048:1 16082:1 16088:1 16136:2 16145:1 16184:1 16212:1 16213:1 16218:1 16226:1 16233:1 16253:1 16285:1 16287:5 16316:2 16319:1 16323:1 16333:2 16355:1 16367:1 16434:1 16469:1 16483:1 16540:1 16557:1 16559:1 16581:1 16586:2 16640:1 16738:1 16757:1 16762:1 16773:1 16788:1 16800:1 16802:8 16824:1 16836:1 16838:1 16840:1 16857:1 16879:6 16895:1 16899:1 16910:1 16911:1 16913:1 16934:1 16982:6 16993:1 16994:3 16997:1 17002:1 17021:1 17029:1 17031:1 17042:2 17051:1 17059:2 17073:1 17081:5 17086:1 17092:3 17144:1 17151:2 17156:3 17166:1 17177:1 17188:1 17203:1 17205:1 17234:1 17239:1 17269:1 17278:3 17305:1 17332:1 17345:1 17347:1 17371:1 17384:1 17408:1 17432:1 17436:1 17440:1 17449:1 17460:1 17469:1 17481:1 17518:1 17528:1 17552:1 17561:4 17567:2 17585:1 17621:1 17674:1 17675:1 17679:1 17686:1 17693:1 17744:1 17757:1 17770:1 17775:1 17777:1 17786:2 17790:1 17810:1 17815:1 17872:1 17909:1 17914:1 17918:2 17930:2 17943:1 17950:1 17959:3 17989:2 18005:2 18055:1 18058:1 18074:1 18161:1 18220:2 18230:1 18232:1 18235:1 18245:1 18248:1 18263:1 18314:1 18338:1 18340:1 18345:3 18359:2 18384:2 18385:1 18389:1 18403:1 18407:1 18422:1 18429:2 18456:1 18467:1 18493:1 18513:3 18536:1 18561:1 18564:1 18608:1 18629:1 18662:1 18664:1 18687:1 18698:1 18718:6 18727:2 18742:2 18746:1 18750:9 18757:1 18806:1 18827:1 18868:1 18902:1 18919:1 18921:2 18947:1 18989:1 19018:3 19025:1 19036:6 19084:1 19087:3 19089:1 19112:3 19129:2 19156:5 19179:6 19181:1 19202:1 19203:1 19237:1 19282:1 19293:1 19328:2 19335:2 19345:1 19365:3 19389:1 19394:1 19395:1 19439:2 19473:1 19484:1 19505:1 19531:1 19589:1 19631:1 19641:1 19659:1 19670:1 19695:2 19703:1 19713:2 19728:2 19756:1 19757:1 19767:1 19788:2 19812:1 19852:1 19867:1 19875:1 19912:1 19915:1 19919:1 19924:3 19929:1 19946:1 19964:1 19980:1 19984:2 20022:3 20102:1 20106:1 20128:2 20129:2 20130:1 20143:3 20147:1 20164:1 20170:1 20189:1 20190:2 20192:1 20193:1 20200:2 20201:1 20212:1 20226:4 20234:1 20247:1 20297:1 20299:2 20303:1 20304:2 20306:5 20334:1 20343:4 20353:1 20382:1 20390:1 20391:1 20413:1 20434:1 20437:1 20445:1 20448:1 20484:1 20488:1 20502:3 20518:1 20546:3 20557:1 20580:1 20594:1 20597:1 20608:2 20619:1 20627:1 20632:1 20645:1 20652:1 20657:3 20662:3 20667:1 20672:1 20686:1 20730:1 20733:1 20822:1 20823:1 20852:1 20857:2 20865:1 20874:1 20877:1 20893:1 20899:1 20904:1 20907:1 20920:1 20940:1 20955:2 20957:2 20965:1 20973:7 20983:1 21029:1 21032:1 21039:1 21087:1 21096:1 21108:1 21115:1 21139:1 21159:1 21172:1 21185:1 21193:1 21196:1 21225:1 21226:1 21256:1 21257:1 21274:1 21282:1 21294:2 21309:1 21311:1 21327:1 21333:3 21378:3 21433:1 21476:1 21496:1 21505:1 21510:3 21514:1 21515:1 21543:1 21546:1 21595:25 21599:2 21631:1 21645:1 21661:1 21662:1 21668:1 21681:1 21683:1 21690:1 21691:1 21722:1 21724:1 21749:1 21750:1 21783:1 21797:1 21855:1 21870:1 21923:2 21924:1 21929:1 21942:1 21944:1 21949:2 21975:1 22063:1 22068:1 22115:1 22126:1 22170:1 22172:1 22175:2 22179:1 22184:1 22188:1 22193:2 22196:1 22201:1 22238:1 22248:3 22281:3 22282:3 22333:1 22382:1 22400:1 22406:3 22408:1 22414:4 22420:1 22429:3 22430:1 22451:1 22460:1 22462:1 22475:1 22477:1 22484:1 22486:1 22497:1 22520:1 22529:1 22546:1 22574:1 22575:4 22582:1 22584:1 22616:1 22666:2 22674:2 22679:1 22696:1 22698:1 22761:1 22788:1 22791:1 22795:1 22803:1 22851:1 22864:2 22878:1 22912:1 22915:1 22922:1 22969:1 22973:1 22991:1 22997:1 23015:1 23025:2 23060:1 23091:1 23126:1 23197:1 23200:1 23215:1 23232:1 23242:1 23251:1 23255:1 23256:1 23297:2 23306:1 23307:1 23322:1 23325:1 23401:2 23413:2 23450:1 23464:2 23480:1 23527:1 23543:1 23549:1 23555:3 23568:1 23584:2 23591:1 23619:1 23660:1 23667:1 23690:1 23721:1 23725:3057 23753:1 23764:1 23769:1 23784:1 23811:1 23856:2 23867:1 23903:1 23935:1 23945:1 23948:1 23978:1 23991:1 23994:1 23995:1 23997:1 24000:1 24001:1 24018:1 24053:1 24083:1 24089:1 24125:1 24134:1 24146:1 24150:1 24153:1 24159:1 24166:1 24179:1 24204:1 24222:1 24237:1 24238:1 24242:1 24245:2 24277:1 24281:3 24284:1 24354:1 24357:2 24364:1 24377:1 24393:1 24399:1 24409:1 24435:1 24441:2 24452:1 24453:1 24456:1 24465:1 24489:1 24515:1 24520:1 24531:1 24533:1 24545:8 24588:1 24593:6 24597:1 24604:1 24631:3 24641:1 24669:1 24700:1 24713:1 24723:1 24763:1 24777:1 24804:1 24805:3 24848:1 24851:1 24854:1 24874:2 24875:1 24881:1 24898:1 24913:1 24940:1 24982:1 24988:2 25031:1 25042:1 25047:1 25055:1 25072:1 25101:1 25111:1 25112:1 25118:1 25127:1 25141:1 25170:1 25206:2 25253:1 25261:1 25265:2 25267:1 25275:1 25283:1 25286:1 25308:1 25312:1 25327:1 25328:3 25346:1 25354:1 25356:1 25357:6 25376:3 25380:1 25382:1 25398:2 25408:1 25411:1 25413:1 25425:1 25437:1 25451:1 25453:2 25492:2 25497:1 25531:3 25532:1 25541:1 25552:2 25555:1 25563:1 25609:1 25710:4 25724:1 25735:1 25769:1 25774:2 25782:1 25841:1 25844:1 25890:2 25892:1 25896:1 25907:1 25919:1 25944:2 25952:1 25977:4 25981:2 25990:1 25994:1 25998:2 26001:1 26006:1 26035:1 26046:1 26050:1 26054:1 26070:1 26078:1 26090:1 26102:1 26105:2 26119:1 26124:1 26156:2 26169:3 26199:1 26200:2 26218:1 26233:1 26242:1 26250:5 26258:1 26262:2 26276:1 26279:1 26287:1 26301:1 26305:1 26308:4 26314:1 26326:1 26330:2 26337:1 26372:1 26379:1 26392:1 26394:2 26398:5 26404:1 26417:1 26422:1 26424:3 26440:2 26456:1 26468:1 26475:1 26504:1 26524:1 26529:1 26534:1 26537:1 26541:2 26544:1 26560:2 26562:1 26563:2 26585:1 26589:2 26608:1 26665:2 26681:1 26695:1 26697:1 26698:1 26700:1 26729:4 26734:1 26757:1 26760:1 26808:1 26836:3 26846:1 26855:1 26856:1 26857:2 26858:1 26876:1 26883:1 26889:1 26897:3 26904:1 26914:1 26944:1 26990:1 27002:2 27005:3 27073:1 27091:1 27092:2 27095:1 27101:1 27108:2 27116:1 27127:2 27139:1 27141:2 27172:1 27178:1 27193:1 27298:2 27303:2 27306:2 27333:2 27345:2 27347:1 27371:1 27390:1 27396:1 27415:1 27475:1 27482:2 27498:2 27503:3 27516:1 27524:2 27538:1 27545:1 27548:1 27560:1 27592:1 27598:1 27609:1 27624:1 27660:1 27671:1 27677:1 27710:3 27750:1 27772:1 27773:1 27803:1 27806:1 27810:1 27823:1 27824:1 27838:1 27841:1 27864:1 27868:1 27886:1 27928:1 27930:1 27956:1 27981:1 27982:1 27983:1 27984:1 28002:1 28029:1 28038:1 28045:3 28069:3 28079:1 28091:1 28094:9 28102:1 28109:1 28115:1 28125:1 28126:1 28155:1 28174:1 28189:1 28192:1 28198:1 28199:1 28218:1 28226:1 28227:2 28273:1 28280:1 28314:1 28342:1 28354:1 28404:1 28423:2 28427:1 28433:2 28486:1 28488:1 28498:1 28519:1 28529:1 28537:1 28538:1 28548:1 28550:1 28632:1 28659:1 28675:1 28690:1 28730:2 28741:1 28744:1 28759:1 28839:2 28863:1 28876:1 28877:2 28884:1 28976:1 28991:1 28998:1 28999:2 29007:1 29010:1 29016:1 29021:1 29031:1 29032:1 29058:2 29059:1 29091:1 29105:2 29141:1 29146:1 29156:1 29168:1 29172:3 29181:1 29187:1 29203:2 29205:1 29217:1 29263:2 29279:1 29285:1 29290:1 29304:1 29307:1 29311:1 29322:1 29335:2 29351:2 29353:1 29375:2 29405:1 29426:1 29428:2 29429:1 29434:1 29437:1 29451:1 29465:1 29506:1 29516:1 29521:1 29529:1 29553:3 29555:1 29570:1 29583:1 29610:2 29625:2 29632:2 29669:1 29686:1 29689:2 29692:3 29693:1 29744:1 29754:1 29762:2 29765:1 29795:1 29806:1 29832:1 29859:1 29871:1 29880:2 29890:1 29892:1 29954:1 29985:1 30032:1 30036:2 30042:1 30052:1 30080:1 30091:1 30102:1 30122:1 30128:1 30145:1 30152:1 30157:1 30181:1 30249:3 30258:1 30266:8 30269:1 30273:1 30281:1 30301:1 30329:2 30331:1 30339:2 30375:1 30378:1 30386:1 30402:1 30426:1 30430:3 30438:3 30447:1 30465:1 30467:1 30480:2 30484:2 30489:1 30490:1 30496:1 30521:1 30537:1 30557:1 30563:1 30586:1 30591:1 30622:1 30640:2 30662:2 30663:3 30668:3 30671:1 30681:1 30701:1 30706:1 30711:2 30719:1 30743:1 30752:1 30765:1 30796:2 30811:1 30836:1 30850:1 30885:1 30888:1 30893:2 30923:4 30926:3 30936:1 30940:1 30949:1 30960:1 31004:1 31022:1 31030:1 31060:2 31064:1 31092:1 31134:1 31148:1 31157:1 31180:1 31201:2 31214:2 31216:1 31226:1 31242:1 31280:1 31322:1 31334:1 31355:5 31358:3 31359:1 31396:1 31415:1 31427:1 31449:1 31450:1 31455:1 31456:2 31478:1 31479:1 31544:2 31553:1 31558:1 31565:3 31569:1 31570:2 31577:1 31579:1 31584:1 31586:1 31598:1 31606:2 31612:1 31640:1 31650:1 31664:1 31667:3 31670:1 31680:3 31696:2 31722:1 31746:2 31753:1 31775:1 31798:1 31799:1 31835:1 31836:1 31839:1 31857:1 31864:1 31904:1 31916:1 31920:1 31982:2 31991:1 32016:2 32017:1 32019:2 32036:1 32055:1 32068:1 32080:1 32150:2 32175:1 32178:1 32182:1 32199:1 32209:1 32216:1 32230:1 32236:1 32244:1 32252:2 32256:1 32257:1 32284:1 32297:1 32299:2 32328:2 32331:1 32346:1 32365:1 32384:4 32405:1 32414:1 32492:4 32507:2 32521:1 32528:4 32533:1 32575:1 32578:1 32646:1 32653:1 32711:1 32713:1 32772:1 32779:1 32783:1 32787:1 32792:1 32800:1 32835:1 32841:1 32853:1 32862:1 32865:1 32870:1 32874:4 32879:1 32880:1 32881:2 32908:1 32928:1 32956:1 32974:1 32986:2 33006:2 33012:3 33020:1 33026:1 33054:1 33070:2 33118:2 33144:1 33203:2 33211:1 33212:1 33215:1 33216:2 33230:1 33250:1 33267:1 33349:1 33356:1 33386:1 33394:1 33399:1 33400:1 33406:3 33444:1 33452:3 33507:1 33514:2 33518:1 33523:1 33527:1 33531:1 33533:2 33534:1 33548:1 33549:2 33553:1 33560:2 33620:1 33654:1 33698:1 33712:2 33721:2 33723:1 33728:1 33767:2 33773:1 33811:1 33825:1 33844:1 33849:2 33856:2 33861:2 33889:2 33896:1 33897:1 33925:1 33926:1 33932:1 33934:1 33935:1 33936:1 33938:1 33942:1 33950:1 33974:1 33998:1 34015:1 34018:1 34023:2 34029:1 34040:2 34047:1 34059:1 34060:1 34067:1 34068:2 34116:1 34132:2 34139:1 34146:1 34170:1 34172:1 34182:1 34184:1 34185:1 34197:1 34200:1 34212:2 34219:1 34263:2 34267:2 34285:1 34323:1 34338:2 34372:1 34393:2 34410:1 34442:2 34479:1 34488:2 34495:1 34506:1 34530:1 34574:1 34587:1 34591:1 34616:1 34624:2 34633:1 34664:3 34668:1 34674:2 34727:1 34739:1 34748:1 34753:1 34757:1 34773:8 34774:1 34776:1 34794:1 34797:1 34810:5 34833:2 34844:1 34857:1 34881:1 34917:1 34919:1 34932:2 34963:4 34966:1 34971:1 34981:1 34982:1 35001:1 35004:6 35014:1 35015:1 35024:1 35027:1 35028:1 35048:1 35058:1 35063:1 35074:3 35082:1 35102:1 35117:2 35141:1 35154:2 35161:1 35179:2 35203:1 35223:1 35249:2 35253:2 35302:1 35305:1 35310:1 35316:1 35324:1 35335:1 35352:1 35360:1 35377:3 35378:1 35382:1 35384:1 35402:1 35437:3 35442:1 35459:1 35464:1 35470:1 35515:1 35565:3 35593:2 35622:1 35646:2 35649:2 35675:1 35684:1 35689:1 35708:1 35714:1 35741:1 35742:1 35751:1 35763:1 35837:1 35844:1 35846:1 35864:2 35882:1 35899:1 35932:2 35943:1 35959:1 35978:1 35985:1 36010:1 36019:1 36022:1 36053:1 36079:1 36104:1 36128:1 36158:1 36170:3 36178:1 36202:1 36203:1 36235:1 36292:1 36312:1 36318:1 36326:3 36327:1 36328:1 36329:3 36332:1 36333:1 36334:2 36340:1 36342:2 36343:2 36351:1 36366:1 36370:1 36371:1 36392:1 36396:1 36410:1 36415:1 36426:2 36433:1 36438:1 36442:1 36473:1 36477:1 36482:1
15 8:1 48:1 82:3 114:1 129:2 151:1 192:1 193:4 212:1 216:2 225:1 255:1 256:1 275:1 277:1 281:1 300:1 318:1 321:3 325:1 348:1 371:2 392:2 404:1 419:1 426:2 451:3 453:1 456:2 493:2 511:1 515:1 551:3 564:1 578:1 595:2 625:1 649:1 677:1 680:1 682:1 690:1 692:1 707:1 712:1 726:2 730:1 733:2 738:1 745:1 759:5 772:1 773:2 776:2 783:1 787:1 848:1 877:3 897:1 911:1 916:1 917:1 936:4 941:1 952:2 1002:1 1008:1 1042:2 1048:1 1068:2 1071:1 1073:1 1075:1 1078:2 1081:1 1084:1 1085:2 1093:1 1095:1 1096:1 1099:1 1103:2 1131:1 1133:1 1135:2 1140:1 1145:2 1148:1 1154:1 1167:3 1177:1 1183:1 1192:1 1194:1 1222:1 1231:2 1237:3 1247:1 1272:2 1274:1 1275:1 1307:1 1316:1 1348:2 1349:1 1393:1 1396:2 1411:1 1418:2 1423:2 1450:1 1467:1 1473:3 1482:1 1525:2 1535:1 1541:1 1542:1 1553:1 1554:2 1577:1 1606:1 1615:1 1624:1 1634:1 1635:1 1654:1 1662:1 1667:1 1723:1 1737:2 1738:1 1746:2 1750:1 1752:1 1757:5 1796:1 1799:1 1803:2 1807:2 1809:2 1815:1 1816:1 1819:5 1835:1 1849:1 1854:1 1870:1 1892:1 1901:4 1904:1 1905:4 1913:2 1919:2 1938:1 1954:1 1955:1 1967:1 1997:2 2004:2 2006:2 2010:1 2017:1 2041:3 2070:1 2071:1 2074:1 2097:1 2114:1 2115:1 2118:1 2128:1 2131:1 2145:2 2148:2 2149:1 2154:1 2171:2 2194:1 2196:1 2223:1 2224:1 2227:1 2232:1 2234:2 2237:1 2239:2 2242:1 2301:1 2309:1 2313:1 2358:1 2371:1 2374:4 2381:1 2393:2 2398:1 2411:1 2517:1 2564:1 2582:1 2596:1 2601:1 2633:3 2684:1 2712:1 2742:2 2743:1 2777:1 2780:1 2787:1 2789:2 2791:3 2801:2 2805:2 2810:1 2811:2 2812:2 2813:2 2817:1 2820:4 2821:1 2840:1 2860:1 2861:2 2905:2 2938:1 2986:2 2989:1 2990:2 3041:1 3049:2 3063:2 3101:1 3138:1 3167:1 3172:2 3197:1 3202:1 3214:1 3229:1 3302:1 3314:2 3322:2 3326:1 3353:1 3356:1 3359:1 3363:1 3367:1 3370:1 3421:1 3423:3 3432:1 3495:1 3505:2 3513:1 3517:1 3518:1 3547:2 3552:1 3559:1 3569:3 3576:4 3577:1 3589:1 3615:2 3632:2 3635:4 3653:1 3658:1 3660:1 3664:1 3666:1 3669:2 3675:1 3678:1 3705:1 3711:2 3716:1 3749:1 3758:1 3771:1 3775:1 3795:1 3820:1 3853:1 3866:1 3886:1 3904:1 3945:1 3962:1 4033:2 4047:1 4055:1 4083:1 4091:1 4103:1 4148:3 4161:1 4175:1 4179:1 4219:1 4221:1 4224:1 4231:1 4261:3 4264:1 4307:1 4319:1 4333:1 4380:1 4413:1 4416:1 4439:1 4450:1 4452:1 4455:1 4463:1 4465:1 4484:1 4498:2 4501:1 4536:1 4541:1 4549:1 4553:1 4556:1 4590:1 4602:1 4604:2 4606:1 4608:1 4624:1 4646:1 4678:1 4687:2 4688:3 4708:1 4724:1 4730:1 4741:1 4742:1 4745:2 4771:2 4774:2 4820:2 4821:4 4826:2 4859:1 4873:1 4874:1 4888:1 4894:1 4898:1 4911:1 4933:1 4959:1 4969:1 4974:1 4998:1 5001:1 5002:1 5018:1 5027:2 5028:1 5054:1 5063:1 5102:1 5132:1 5177:1 5201:1 5232:1 5246:1 5255:3 5287:1 5294:2 5298:1 5310:1 5314:1 5344:1 5347:1 5357:1 5366:1 5378:4 5411:1 5412:1 5421:1 5438:1 5489:1 5506:1 5519:1 5522:1 5531:1 5543:2 5581:2 5583:1 5590:1 5607:1 5620:1 5623:1 5625:1 5664:1 5677:1 5683:2 5689:3 5697:1 5718:2 5719:2 5730:2 5743:1 5747:1 5822:1 5832:2 5838:2 5855:2 5865:1 5866:2 5885:1 5920:1 5921:1 5923:1 5925:2 5928:2 6004:1 6007:2 6014:1 6016:2 6021:1 6097:7 6132:1 6140:1 6145:1 6153:1 6167:1 6172:2 6237:4 6257:2 6258:1 6263:1 6264:1 6266:1 6273:2 6277:1 6281:1 6283:1 6287:1 6288:2 6289:1 6291:1 6315:1 6316:1 6321:1 6401:2 6435:1 6442:1 6449:1 6454:1 6458:2 6475:1 6476:1 6508:1 6529:2 6533:3 6543:1 6564:1 6567:1 6584:2 6587:3 6605:3 6612:1 6630:3 6650:1 6695:2 6737:1 6740:1 6747:1 6772:4 6802:1 6806:1 6822:1 6829:2 6853:3 6877:1 6896:1 6909:1 6921:1 6922:1 6934:1 6936:1 6942:1 6963:3 6987:1 7016:1 7037:2 7061:1 7115:1 7136:1 7177:1 7184:1 7187:1 7202:3 7209:1 7227:1 7236:1 7245:1 7257:1 7272:1 7281:1 7288:1 7319:1 7321:1 7322:2 7323:1 7351:2 7368:1 7385:1 7434:1 7439:1 7444:1 7517:1 7536:1 7566:1 7575:1 7583:1 7591:1 7627:2 7633:1 7637:1 7661:1 7726:1 7743:4 7747:1 7749:1 7764:1 7765:1 7778:1 7782:1 7785:1 7790:1 7830:3 7836:3 7922:1 7936:1 7950:3 7958:1 7964:1 7973:1 8045:1 8050:1 8056:1 8062:1 8065:1 8073:2 8075:1 8083:2 8084:1 8085:3 8086:1 8088:2 8091:2 8092:1 8099:3 8101:4 8135:1 8136:1 8147:1 8151:1 8162:1 8163:1 8176:1 8193:1 8196:3 8210:2 8212:2 8213:1 8223:1 8226:1 8233:2 8252:1 8262:1 8269:2 8282:1 8286:2 8304:1 8362:1 8371:1 8389:1 8413:2 8416:1 8420:4 8422:1 8425:1 8457:2 8464:1 8477:1 8527:3 8557:1 8558:1 8565:1 8574:1 8607:1 8615:1 8661:1 8662:1 8671:1 8678:1 8687:1 8743:2 8748:1 8757:1 8761:1 8762:4 8777:1 8814:1 8818:1 8846:1 8874:1 8897:2 8917:1 8929:1 8952:1 8959:2 8965:1 8966:1 8972:1 8992:2 9016:5 9021:2 9024:1 9046:1 9061:2 9066:1 9068:1 9087:2 9110:1 9130:4 9140:1 9191:1 9192:1 9201:1 9203:1 9215:1 9234:1 9243:1 9252:1 9282:1 9289:4 9311:1 9352:1 9390:2 9412:1 9420:1 9433:3 9466:1 9489:1 9505:1 9535:2 9539:1 9540:1 9544:2 9547:1 9557:1 9560:1 9561:1 9576:1 9586:1 9595:1 9608:1 9609:1 9617:1 9618:1 9622:1 9633:1 9655:1 9658:1 9671:2 9677:3 9678:2 9680:1 9710:4 9743:1 9754:1 9786:2 9789:6 9813:2 9817:1 9850:1 9858:2 9862:1 9875:1 9881:21 9892:1 9904:2 9905:5 9927:1 9937:1 9940:1 9948:2 9949:1 9956:1 9971:1 9988:1 10008:1 10019:1 10027:1 10034:1 10039:1 10057:3 10063:1 10089:1 10090:1 10122:4 10125:1 10133:1 10140:1 10145:1 10147:1 10176:1 10187:1 10189:1 10197:3 10228:1 10239:2 10270:1 10279:1 10292:1 10302:1 10320:1 10326:1 10328:3 10340:1 10353:1 10381:1 10387:2 10395:2 10402:1 10419:4 10441:1 10445:1 10470:3 10471:11 10487:1 10489:1 10500:1 10514:1 10523:1 10532:1 10536:2 10547:1 10548:3 10558:1 10572:1 10578:2 10594:3 10596:1 10618:1 10630:1 10647:1 10686:1 10701:1 10705:1 10753:2 10758:1 10761:1 10772:3 10773:1 10779:1 10788:1 10820:1 10857:1 10860:1 10887:1 10899:2 10902:1 10910:1 10912:1 10932:1 10958:1 10961:1 10963:1 10967:1 10973:1 10976:3 10982:1 10983:1 11003:1 11006:1 11019:1 11029:1 11037:1 11058:1 11061:1 11083:1 11084:2 11091:1 11107:1 11115:1 11138:1 11158:1 11166:2 11190:1 11207:2 11208:8 11216:1 11227:1 11231:1 11238:1 11249:3 11261:1 11264:1 11284:1 11304:1 11311:1 11320:1 11323:1 11342:1 11351:2 11386:1 11396:6 11429:2 11573:1 11586:1 11594:1 11599:1 11611:1 11617:1 11638:1 11648:1 11650:2 11668:1 11672:1 11673:1 11685:2 11696:4 11725:1 11733:1 11746:1 11779:2 11789:1 11793:1 11807:1 11818:1 11824:2 11850:1 11853:1 11867:2 11913:2 11960:1 11984:1 11999:1 12013:2 12015:2 12016:1 12040:1 12050:1 12051:1 12075:1 12078:1 12086:1 12092:2 12095:1 12096:1 12131:3 12132:1 12153:2 12183:1 12199:1 12216:1 12220:1 12224:1 12234:1 12236:1 12240:1 12242:1 12243:1 12244:1 12245:1 12285:1 12324:1 12332:1 12337:1 12386:4 12403:1 12413:2 12427:2 12442:1 12451:1 12479:1 12480:1 12486:1 12526:1 12567:1 12588:1 12597:1 12624:1 12633:1 12644:1 12645:3 12660:1 12682:1 12702:2 12708:2 12769:2 12772:1 12776:2 12784:2 12786:1 12792:1 12802:1 12809:1 12810:2 12811:2 12827:1 12846:1 12847:1 12855:1 12888:8 12907:1 12918:1 12921:3 12947:1 12974:3 12975:1 12985:1 13020:3 13021:1 13023:1 13032:1 13072:1 13079:1 13086:1 13104:1 13112:1 13114:1 13115:1 13123:1 13126:1 13135:1 13137:2 13139:1 13146:3 13228:1 13229:1 13230:1 13241:1 13248:1 13254:1 13259:1 13267:1 13297:1 13307:4 13311:1 13335:1 13337:1 13376:1 13377:2 13378:1 13384:1 13420:1 13443:6 13476:2 13490:1 13532:1 13540:6 13579:2 13580:2 13593:1 13599:1 13611:1 13627:1 13636:1 13642:1 13648:2 13653:1 13666:1 13676:3 13680:1 13738:1 13742:1 13743:1 13745:1 13762:1 13769:1 13773:1 13777:1 13792:1 13813:1 13844:1 13855:1 13871:1 13899:1 13916:1 13949:1 13956:2 13982:2 13994:1 13998:1 14031:1 14033:1 14096:1 14107:2 14127:1 14129:2 14132:1 14150:2 14151:2 14165:1 14166:1 14167:1 14170:1 14180:1 14192:2 14195:1 14208:1 14210:2 14214:1 14221:1 14227:1 14244:1 14278:2 14281:1 14288:3 14297:1 14326:1 14333:1 14371:1 14397:1 14437:2 14439:1 14442:1 14459:1 14472:4 14482:1 14492:1 14493:1 14494:1 14503:1 14507:3 14520:1 14530:1 14543:1 14544:1 14552:1 14590:1 14592:1 14619:1 14621:1 14638:1 14640:1 14667:1 14683:1 14702:1 14705:1 14718:1 14720:1 14750:1 14765:1 14787:1 14806:2 14841:1 14865:1 14894:3 14920:1 14921:1 14954:2 14969:1 14978:4 14982:1 14985:3 14988:1 14997:1 14998:1 15008:1 15030:1 15038:1 15044:1 15046:1 15057:1 15061:1 15071:3 15074:2 15110:3 15138:1 15174:1 15211:1 15221:2 15228:1 15229:1 15258:1 15264:1 15300:1 15308:1 15315:1 15334:2 15344:2 15345:3 15349:1 15354:1 15361:1 15368:1 15380:1 15391:1 15397:1 15400:1 15425:3 15444:1 15471:1 15472:4 15473:1 15486:1 15497:1 15503:1 15510:5 15517:2 15534:1 15547:1 15552:1 15563:3 15584:1 15594:2 15609:1 15616:1 15624:1 15631:1 15641:1 15646:2 15653:1 15655:1 15676:1 15706:5 15721:3 15729:3 15743:1 15753:3 15768:1 15779:1 15789:1 15823:1 15839:1 15845:1 15865:1 15907:1 15936:1 15938:1 15960:1 15971:1 15978:1 16011:1 16024:1 16031:1 16033:1 16034:2 16036:1 16043:1 16045:2 16048:1 16082:1 16088:1 16112:1 16136:2 16145:1 16184:1 16212:1 16213:1 16218:1 16226:1 16233:1 16253:1 16285:1 16287:5 16316:2 16319:1 16323:1 16333:2 16355:1 16367:1 16390:1 16434:1 16469:1 16483:1 16540:1 16557:1 16559:1 16580:1 16581:1 16586:2 16640:1 16738:1 16757:1 16762:1 16773:1 16788:1 16800:1 16802:8 16824:1 16836:1 16838:1 16840:1 16857:1 16879:6 16895:1 16899:1 16910:1 16911:1 16913:1 16934:1 16982:6 16993:1 16994:3 16997:1 17002:1 17021:1 17029:1 17031:1 17042:2 17051:1 17059:2 17073:1 17081:5 17086:1 17092:3 17144:1 17151:2 17156:3 17166:1 17177:1 17188:1 17203:1 17205:1 17234:1 17239:1 17269:1 17278:3 17305:1 17332:1 17345:1 17347:1 17371:1 17384:1 17408:1 17432:1 17436:1 17440:1 17449:1 17460:1 17469:1 17481:1 17518:1 17528:1 17552:1 17561:4 17567:3 17585:1 17621:1 17674:1 17675:1 17679:1 17686:1 17693:1 17744:1 17757:1 17770:1 17775:2 17777:1 17786:2 17790:1 17810:1 17815:1 17872:1 17909:1 17914:1 17918:2 17930:2 17943:1 17950:1 17959:3 17989:2 18005:2 18055:1 18058:1 18074:1 18161:1 18174:1 18220:2 18230:1 18232:1 18235:1 18245:1 18248:1 18263:1 18314:1 18338:1 18340:1 18345:3 18359:2 18384:2 18385:1 18389:1 18403:1 18407:1 18422:1 18429:2 18456:1 18467:1 18493:1 18503:1 18513:3 18536:1 18561:1 18564:1 18574:1 18608:1 18629:1 18662:1 18664:1 18687:1 18698:1 18718:6 18727:2 18742:3 18745:1 18746:1 18750:9 18757:1 18806:1 18827:1 18868:1 18902:1 18919:1 18921:2 18947:1 18989:1 19018:3 19025:1 19036:6 19058:1 19083:1 19084:1 19087:3 19089:1 19112:3 19123:1 19129:2 19156:5 19179:6 19181:1 19202:1 19203:1 19237:1 19271:1 19282:1 19293:1 19328:2 19335:2 19345:1 19365:3 19389:1 19394:1 19395:1 19439:2 19450:1 19473:1 19484:1 19505:1 19531:1 19589:1 19630:1 19631:1 19641:1 19659:1 19665:1 19670:1 19695:2 19703:1 19713:2 19728:2 19756:1 19757:1 19767:1 19786:1 19788:2 19812:1 19852:1 19867:1 19875:1 19912:1 19915:1 19919:1 19924:4 19929:1 19946:1 19964:1 19980:1 19984:2 20022:3 20102:1 20106:1 20128:2 20129:2 20130:1 20143:4 20147:1 20164:1 20170:1 20189:1 20190:2 20192:1 20193:1 20200:2 20201:1 20212:1 20226:4 20234:1 20247:1 20297:1 20299:2 20303:1 20304:2 20306:5 20334:1 20343:4 20353:1 20382:1 20390:1 20391:1 20413:1 20434:1 20437:1 20445:1 20448:1 20484:1 20488:1 20502:4 20518:1 20544:1 20546:3 20557:1 20580:1 20594:1 20597:1 20608:2 20619:1 20627:1 20632:1 20645:1 20652:1 20657:4 20662:3 20667:1 20672:1 20686:1 20730:1 20733:1 20822:1 20823:1 20852:1 20857:2 20865:1 20874:1 20877:1 20893:1 20899:1 20904:1 20907:1 20920:1 20940:1 20955:3 20957:2 20965:1 20973:7 20983:1 21029:1 21032:1 21039:1 21087:1 21096:1 21108:1 21115:1 21139:1 21159:1 21172:1 21185:1 21193:1 21196:1 21225:1 21226:1 21256:1 21257:1 21274:1 21282:1 21293:1 21294:2 21309:1 21311:1 21327:1 21333:4 21378:3 21433:2 21476:1 21496:1 21505:1 21510:3 21514:1 21515:1 21543:1 21546:1 21595:25 21599:2 21631:1 21645:1 21661:1 21662:1 21668:1 21681:1 21683:1 21690:1 21691:1 21722:1 21724:1 21749:1 21750:1 21783:1 21797:1 21855:1 21870:1 21923:2 21924:1 21929:1 21942:1 21944:1 21949:2 21975:1 22063:1 22068:1 22115:1 22126:1 22170:1 22172:1 22175:2 22179:1 22184:1 22188:1 22193:2 22196:1 22201:1 22238:1 22248:3 22281:3 22282:3 22333:1 22355:1 22382:1 22400:1 22406:3 22408:1 22414:4 22420:1 22429:3 22430:1 22451:1 22460:1 22462:1 22475:1 22477:1 22484:1 22486:1 22497:1 22520:1 22529:1 22546:1 22574:1 22575:5 22582:1 22584:1 22616:1 22666:2 22674:2 22679:1 22696:1 22698:1 22761:1 22788:1 22791:1 22795:1 22803:1 22851:1 22864:2 22878:1 22912:1 22915:1 22922:1 22969:1 22973:1 22991:1 22997:1 23015:1 23025:2 23060:1 23091:1 23126:1 23197:1 23200:1 23215:1 23232:1 23242:1 23251:1 23255:1 23256:1 23297:2 23306:1 23307:1 23322:1 23325:1 23401:2 23413:2 23450:1 23464:3 23480:1 23527:1 23543:1 23549:1 23555:3 23568:1 23584:2 23591:1 23613:1 23619:1 23660:1 23667:1 23690:1 23721:2 23725:3205 23753:1 23764:1 23769:1 23784:1 23811:1 23856:2 23867:1 23903:2 23935:1 23945:1 23948:1 23969:1 23978:1 23991:1 23994:1 23995:1 23997:1 24000:1 24001:1 24018:1 24053:2 24083:1 24089:1 24125:1 24134:1 24146:1 24150:1 24153:1 24159:1 24166:1 24179:1 24204:1 24222:1 24237:1 24238:1 24242:1 24244:1 24245:2 24277:1 24281:3 24284:1 24354:1 24357:2 24364:1 24377:1 24393:1 24399:1 24409:1 24415:1 24435:1 24441:2 24452:1 24453:1 24456:1 24465:1 24489:1 24515:1 24520:1 24531:1 24533:1 24545:9 24580:1 24588:1 24593:6 24597:1 24604:1 24631:3 24641:1 24669:1 24700:2 24713:1 24723:1 24763:1 24777:1 24781:1 24804:1 24805:3 24848:2 24851:1 24854:1 24874:2 24875:1 24881:1 24898:1 24913:1 24940:1 24982:1 24988:2 25031:1 25042:1 25047:1 25055:1 25072:1 25101:1 25111:1 25112:1 25118:1 25127:1 25141:1 25170:1 25206:2 25253:1 25261:1 25265:2 25267:1 25275:1 25283:1 25286:1 25308:1 25312:1 25327:1 25328:3 25346:1 25354:1 25356:1 25357:6 25376:3 25380:1 25382:1 25398:2 25408:1 25411:1 25413:1 25425:1 25437:1 25451:1 25453:2 25492:2 25497:1 25531:3 25532:1 25534:1 25541:1 25552:2 25555:1 25563:1 25609:1 25710:4 25724:1 25735:1 25769:1 25774:2 25782:1 25841:2 25844:1 25890:2 25892:1 25896:1 25907:1 25919:1 25931:1 25944:2 25952:1 25977:4 25981:2 25990:1 25994:1 25998:2 26001:1 26006:1 26035:1 26046:1 26050:1 26054:1 26070:1 26078:1 26090:1 26102:1 26105:2 26119:1 26124:1 26156:2 26169:3 26199:1 26200:2 26218:1 26233:1 26242:1 26250:5 26258:1 26262:2 26276:1 26279:1 26287:1 26301:1 26305:1 26308:4 26314:1 26326:1 26330:2 26337:1 26372:1 26379:1 26392:1 26394:2 26398:5 26404:1 26417:1 26422:1 26424:3 26440:2 26456:1 26468:1 26475:1 26504:1 26524:1 26529:1 26534:1 26537:1 26541:2 26544:1 26560:2 26561:1 26562:1 26563:2 26585:1 26589:2 26608:1 26665:2 26681:1 26695:1 26697:1 26698:1 26700:1 26729:4 26734:1 26757:1 26760:1 26761:1 26808:1 26836:3 26846:1 26855:1 26856:1 26857:2 26858:1 26876:1 26883:1 26889:1 26897:3 26904:1 26914:1 26944:1 26965:1 26990:1 27002:2 27005:3 27073:1 27091:1 27092:2 27095:1 27101:1 27108:2 27116:1 27127:2 27139:1 27141:2 27162:1 27172:1 27178:1 27193:1 27298:2 27303:2 27306:2 27333:2 27345:2 27347:1 27371:1 27390:1 27396:1 27415:1 27475:1 27482:2 27498:2 27503:3 27516:1 27524:2 27538:1 27545:1 27548:2 27560:1 27592:1 27598:1 27609:1 27624:1 27660:1 27671:1 27677:1 27710:3 27750:1 27772:1 27773:1 27803:1 27806:1 27810:1 27823:1 27824:1 27838:1 27841:1 27853:1 27864:1 27868:1 27886:1 27928:1 27930:1 27941:1 27956:1 27981:1 27982:1 27983:1 27984:1 28002:1 28029:1 28038:1 28045:3 28069:3 28079:2 28086:1 28091:1 28094:9 28102:1 28109:1 28115:1 28125:1 28126:1 28155:1 28174:1 28189:1 28192:1 28198:1 28199:1 28218:1 28226:1 28227:2 28273:1 28280:1 28314:1 28342:1 28354:1 28403:1 28404:1 28423:2 28427:1 28433:2 28486:1 28488:1 28498:1 28519:1 28529:1 28537:1 28538:1 28548:1 28550:1 28632:1 28659:1 28675:1 28690:1 28730:2 28741:1 28744:2 28759:1 28839:2 28854:1 28863:1 28876:1 28877:2 28884:1 28976:1 28991:1 28998:1 28999:2 29007:1 29010:1 29016:1 29021:1 29031:1 29032:1 29058:2 29059:1 29091:1 29105:2 29141:1 29146:1 29156:1 29168:1 29172:3 29181:1 29187:1 29203:2 29205:1 29217:1 29263:2 29279:1 29285:1 29290:1 29304:1 29307:1 29311:1 29322:1 29335:2 29351:2 29353:1 29375:2 29405:1 29426:1 29428:2 29429:1 29434:1 29437:1 29451:1 29465:1 29506:1 29516:1 29521:1 29529:1 29553:4 29555:1 29570:1 29583:1 29610:2 29625:2 29632:2 29669:1 29686:1 29689:2 29692:3 29693:1 29744:1 29754:1 29762:2 29765:1 29795:1 29806:1 29832:1 29853:1 29859:1 29871:1 29880:2 29890:1 29892:1 29954:1 29985:1 30032:1 30036:2 30042:1 30052:1 30080:1 30091:1 30102:1 30122:1 30128:1 30145:1 30152:1 30157:1 30181:1 30249:3 30258:1 30266:9 30269:1 30273:1 30281:1 30301:1 30329:2 30331:1 30339:2 30375:1 30378:1 30386:1 30402:1 30404:1 30426:1 30430:3 30438:3 30447:1 30465:1 30467:1 30480:2 30484:2 30489:1 30490:1 30496:1 30521:1 30537:1 30557:1 30563:1 30586:1 30591:1 30622:1 30640:2 30662:2 30663:3 30668:3 30671:1 30681:1 30701:1 30706:1 30711:2 30719:1 30743:1 30752:1 30765:1 30796:2 30811:1 30836:1 30850:1 30885:1 30888:1 30893:2 30923:4 30926:3 30936:1 30940:1 30949:1 30960:1 31004:1 31022:1 31030:1 31060:2 31064:1 31092:1 31134:1 31148:1 31157:1 31180:1 31201:2 31214:2 31216:1 31226:1 31242:1 31280:1 31322:1 31334:3 31355:5 31358:3 31359:1 31376:1 31396:1 31415:1 31427:1 31449:1 31450:1 31455:1 31456:2 31478:1 31479:1 31544:2 31553:1 31558:1 31565:3 31569:1 31570:2 31577:1 31579:2 31584:1 31586:1 31598:1 31606:2 31612:1 31640:1 31650:1 31664:1 31667:3 31670:1 31680:3 31696:2 31722:1 31746:2 31753:1 31775:1 31798:1 31799:1 31835:1 31836:1 31839:1 31845:1 31857:1 31864:1 31904:1 31916:1 31920:1 31982:2 31991:1 32016:2 32017:1 32019:2 32036:1 32055:1 32068:1 32080:1 32150:2 32175:1 32178:1 32182:1 32199:1 32200:1 32209:1 32216:1 32230:1 32236:1 32244:1 32252:2 32256:1 32257:1 32284:1 32297:1 32299:2 32328:3 32331:1 32346:1 32365:1 32384:4 32405:1 32414:1 32492:4 32507:2 32510:1 32521:1 32528:4 32533:1 32575:1 32578:1 32646:1 32653:1 32711:1 32713:1 32772:1 32779:1 32783:1 32787:1 32792:1 32800:1 32835:1 32841:1 32853:1 32862:1 32865:1 32870:1 32874:4 32879:1 32880:3 32881:2 32908:1 32928:1 32956:1 32974:1 32986:2 33006:2 33012:3 33020:1 33026:1 33039:1 33054:1 33070:2 33085:1 33118:2 33144:1 33203:2 33211:1 33212:1 33215:1 33216:2 33230:1 33250:1 33267:1 33349:1 33356:1 33386:1 33394:1 33399:1 33400:1 33406:3 33444:1 33452:3 33507:1 33514:2 33518:1 33523:1 33527:1 33531:2 33533:2 33534:1 33548:1 33549:3 33553:1 33560:2 33620:1 33654:1 33698:1 33712:2 33721:2 33723:1 33728:1 33767:2 33773:1 33811:1 33825:1 33844:1 33849:2 33856:2 33861:2 33889:2 33896:1 33897:1 33925:1 33926:1 33932:1 33934:1 33935:1 33936:1 33938:1 33942:1 33950:1 33974:1 33986:1 33998:1 34004:1 34015:1 34018:1 34023:2 34029:1 34040:2 34047:1 34059:1 34060:1 34067:1 34068:2 34116:1 34132:2 34139:1 34146:1 34170:1 34172:1 34182:1 34184:1 34185:1 34197:1 34200:1 34212:2 34219:1 34263:2 34267:2 34285:1 34323:1 34338:2 34372:1 34393:2 34410:1 34442:2 34479:1 34488:2 34495:1 34506:1 34530:1 34574:1 34587:1 34591:1 34616:1 34624:2 34633:1 34664:3 34668:1 34674:4 34709:1 34727:1 34739:1 34748:1 34753:1 34757:1 34773:9 34774:1 34776:1 34794:1 34797:1 34810:5 34833:2 34844:1 34857:1 34881:1 34917:1 34919:1 34932:2 34963:4 34966:1 34971:1 34981:1 34982:1 35001:1 35004:6 35014:1 35015:1 35024:1 35027:1 35028:1 35048:1 35058:1 35063:1 35074:4 35082:1 35102:1 35117:2 35141:1 35154:2 35161:1 35179:2 35203:1 35223:1 35249:2 35253:2 35297:1 35302:1 35305:1 35310:1 35316:1 35324:1 35335:1 35352:1 35360:1 35377:3 35378:1 35382:1 35384:1 35402:1 35417:1 35437:3 35442:1 35459:1 35464:1 35470:1 35515:1 35565:3 35593:2 35622:1 35646:3 35649:2 35675:1 35684:1 35689:1 35708:1 35714:1 35741:1 35742:1 35751:1 35763:1 35837:1 35844:1 35846:1 35864:2 35882:1 35899:1 35932:2 35943:1 35959:1 35978:1 35985:1 36010:1 36016:1 36019:1 36022:1 36053:1 36079:1 36104:1 36128:2 36158:1 36170:3 36178:1 36202:1 36203:1 36235:1 36292:1 36312:1 36318:1 36326:3 36327:1 36328:1 36329:3 36332:1 36333:1 36334:2 36340:1 36342:2 36343:2 36351:1 36366:1 36370:1 36371:1 36392:1 36396:1 36410:1 36415:1 36426:2 36433:1 36438:1 36442:1 36473:1 36477:1 36482:1
15 8:1 48:1 82:3 114:1 129:2 151:1 192:1 193:4 212:1 216:2 225:1 255:1 256:1 257:2 258:1 275:1 277:1 281:1 300:1 318:1 321:3 325:1 348:1 371:2 392:2 404:1 419:1 426:2 451:4 453:1 456:2 493:2 511:1 515:1 551:3 564:1 578:1 595:2 625:1 649:1 677:1 680:1 682:1 690:1 692:1 707:1 712:1 726:3 730:1 733:2 738:1 745:1 759:5 769:1 772:1 773:2 776:2 783:1 787:1 848:1 877:3 897:1 911:1 916:1 917:1 936:4 941:1 952:2 1002:1 1008:1 1042:2 1048:1 1068:2 1071:1 1073:1 1075:1 1078:2 1081:1 1084:1 1085:2 1093:1 1095:1 1096:1 1099:1 1103:2 1131:1 1133:1 1135:2 1140:1 1145:2 1148:1 1154:1 1167:3 1177:1 1183:1 1192:1 1194:1 1222:1 1231:2 1237:3 1247:1 1272:2 1274:1 1275:1 1307:1 1316:1 1348:2 1349:1 1393:1 1396:2 1411:1 1418:2 1423:2 1450:1 1467:1 1473:3 1482:1 1525:2 1535:1 1541:1 1542:1 1553:1 1554:2 1577:1 1606:1 1615:1 1624:1 1634:1 1635:1 1654:1 1662:1 1667:1 1723:1 1737:2 1738:1 1746:2 1750:1 1752:1 1757:6 1796:1 1799:1 1803:2 1807:2 1809:2 1815:1 1816:1 1819:5 1835:1 1849:1 1854:1 1870:1 1892:1 1901:4 1904:1 1905:4 1913:2 1919:2 1938:1 1954:1 1955:1 1967:1 1997:2 2004:2 2006:2 2010:1 2017:1 2041:3 2070:1 2071:1 2074:1 2097:1 2114:1 2115:1 2118:1 2128:1 2131:1 2145:2 2148:2 2149:1 2154:1 2171:2 2194:1 2196:1 2223:1 2224:1 2227:1 2232:1 2234:2 2237:1 2239:2 2242:1 2301:1 2309:1 2313:1 2328:1 2358:1 2371:1 2374:4 2381:1 2393:2 2398:1 2411:1 2517:1 2564:1 2582:1 2596:1 2601:1 2633:3 2684:1 2712:1 2742:2 2743:1 2777:1 2780:1 2787:1 2789:2 2791:3 2801:2 2805:2 2810:1 2811:2 2812:2 2813:2 2817:1 2820:4 2821:1 2840:1 2860:1 2861:2 2905:2 2938:1 2986:2 2989:1 2990:2 3041:1 3049:3 3063:2 3101:1 3138:1 3167:1 3172:2 3193:1 3197:1 3202:1 3214:1 3229:1 3302:1 3314:2 3322:2 3326:1 3353:1 3356:1 3359:1 3360:1 3363:1 3367:1 3370:1 3421:1 3423:3 3432:1 3495:1 3505:2 3513:1 3517:1 3518:1 3547:2 3552:1 3559:1 3569:3 3576:4 3577:1 3589:1 3615:2 3632:2 3635:4 3653:1 3658:1 3660:1 3664:1 3666:1 3669:2 3675:1 3678:1 3705:1 3711:2 3716:1 3749:1 3758:1 3771:1 3775:1 3795:1 3820:1 3853:1 3866:1 3886:1 3904:1 3945:1 3962:1 4033:2 4047:1 4055:1 4083:1 4091:1 4103:1 4148:3 4161:1 4175:1 4178:1 4179:1 4219:1 4221:1 4224:1 4231:1 4261:3 4264:1 4307:1 4319:1 4333:1 4380:1 4413:1 4416:1 4439:1 4450:1 4452:1 4455:1 4463:1 4465:1 4484:1 4498:2 4501:1 4536:1 4541:1 4549:1 4553:1 4556:1 4590:1 4602:1 4604:2 4606:1 4608:1 4624:1 4646:1 4678:1 4687:2 4688:3 4708:1 4724:1 4730:1 4741:1 4742:1 4745:2 4771:2 4774:2 4820:2 4821:4 4826:2 4859:1 4873:1 4874:1 4888:1 4894:1 4898:1 4911:1 4933:1 4959:1 4969:1 4974:1 4998:2 5001:1 5002:1 5018:1 5027:2 5028:1 5054:1 5063:1 5102:1 5132:1 5177:2 5201:1 5232:1 5246:1 5255:3 5259:1 5287:1 5294:2 5298:1 5310:1 5314:1 5344:1 5347:1 5357:1 5366:1 5378:4 5411:1 5412:1 5421:1 5438:1 5489:1 5506:1 5519:1 5522:1 5531:1 5543:2 5581:2 5583:1 5590:1 5607:1 5620:1 5623:1 5625:1 5664:1 5677:1 5683:2 5689:3 5697:1 5718:2 5719:2 5730:2 5743:1 5747:1 5822:1 5832:2 5838:2 5855:2 5865:1 5866:2 5885:1 5920:1 5921:1 5923:1 5925:2 5928:2 6004:1 6007:2 6014:1 6016:2 6021:1 6097:7 6132:1 6140:1 6145:1 6153:1 6167:1 6172:2 6237:4 6257:2 6258:1 6263:1 6264:1 6266:1 6273:2 6277:1 6281:1 6283:1 6287:1 6288:2 6289:1 6291:1 6315:1 6316:1 6321:1 6401:2 6435:1 6442:1 6449:1 6454:1 6458:2 6475:1 6476:1 6508:1 6529:2 6533:3 6543:1 6564:1 6567:1 6584:2 6587:3 6605:3 6612:1 6630:3 6650:1 6695:2 6737:1 6740:1 6747:1 6772:4 6802:2 6806:1 6822:1 6829:2 6853:3 6877:1 6896:1 6904:1 6909:1 6921:1 6922:1 6934:1 6936:1 6942:1 6963:3 6987:1 7016:1 7037:2 7061:1 7115:1 7136:1 7177:1 7184:1 7187:1 7202:3 7209:1 7227:1 7236:1 7245:1 7257:1 7272:1 7281:1 7288:1 7319:1 7321:1 7322:2 7323:1 7351:2 7368:1 7385:1 7434:1 7439:1 7444:1 7517:1 7536:1 7566:1 7575:1 7583:1 7591:1 7627:2 7633:1 7637:1 7661:1 7726:1 7743:4 7747:1 7749:1 7764:1 7765:1 7778:1 7782:1 7785:1 7790:1 7830:3 7836:3 7922:1 7936:1 7950:3 7958:1 7964:1 7973:1 8045:1 8050:1 8056:1 8062:1 8065:1 8073:2 8075:1 8083:2 8084:1 8085:3 8086:1 8088:2 8091:2 8092:1 8099:3 8101:4 8135:1 8136:1 8147:1 8151:1 8162:1 8163:1 8176:1 8193:1 8196:3 8210:2 8212:2 8213:1 8223:1 8226:1 8233:2 8252:1 8262:1 8269:3 8282:1 8286:2 8304:1 8362:1 8371:1 8389:1 8413:3 8416:1 8420:4 8422:1 8425:1 8457:2 8459:1 8464:1 8477:1 8527:3 8557:1 8558:1 8565:1 8574:1 8607:1 8615:1 8661:1 8662:1 8671:1 8678:1 8687:1 8743:2 8748:1 8757:1 8761:1 8762:4 8777:1 8814:1 8818:1 8846:1 8874:1 8897:2 8917:1 8929:1 8943:1 8952:1 8959:2 8965:1 8966:1 8972:2 8992:2 9016:5 9021:2 9024:1 9046:1 9061:3 9066:1 9068:1 9087:2 9110:1 9130:4 9140:1 9191:1 9192:1 9201:1 9203:1 9215:1 9234:1 9243:1 9252:1 9282:1 9289:5 9311:1 9352:1 9390:2 9412:1 9420:1 9433:3 9466:1 9489:1 9505:1 9535:2 9539:1 9540:1 9544:2 9547:1 9557:1 9560:1 9561:1 9576:1 9586:1 9595:1 9608:1 9609:1 9617:1 9618:1 9622:1 9633:1 9655:1 9658:1 9671:2 9677:3 9678:2 9680:1 9710:4 9743:1 9754:1 9786:2 9789:6 9813:2 9817:1 9850:1 9858:2 9862:1 9875:1 9881:21 9892:1 9904:2 9905:5 9927:1 9937:1 9940:1 9948:2 9949:1 9956:1 9971:1 9988:1 10008:1 10019:1 10027:1 10034:1 10039:1 10057:3 10063:1 10089:1 10090:1 10122:4 10125:1 10133:1 10140:1 10145:1 10147:1 10176:1 10187:1 10189:1 10197:3 10228:1 10239:2 10270:1 10279:1 10292:1 10302:1 10320:1 10326:1 10328:3 10340:1 10353:1 10381:1 10387:2 10395:2 10402:1 10419:4 10441:1 10445:1 10470:3 10471:11 10487:1 10489:1 10500:1 10514:1 10523:1 10532:1 10536:2 10547:1 10548:3 10558:1 10572:1 10578:2 10594:3 10596:2 10607:1 10618:1 10630:1 10647:1 10686:1 10701:1 10705:1 10753:2 10758:1 10761:1 10772:3 10773:1 10779:1 10788:1 10820:1 10857:1 10860:1 10887:1 10899:2 10902:1 10910:1 10912:1 10932:1 10958:1 10961:1 10963:1 10965:1 10967:1 10970:1 10973:1 10976:3 10982:1 10983:1 11003:1 11006:1 11019:1 11029:1 11037:1 11058:1 11061:1 11083:1 11084:2 11091:1 11107:1 11115:1 11138:1 11158:1 11166:2 11190:1 11207:2 11208:8 11216:1 11227:1 11231:1 11238:1 11249:3 11261:1 11264:1 11284:1 11304:1 11311:1 11320:1 11323:1 11342:1 11351:2 11358:1 11386:1 11396:7 11429:2 11442:1 11573:1 11586:1 11594:1 11599:1 11611:1 11617:1 11638:1 11648:1 11650:2 11668:1 11672:1 11673:1 11685:2 11696:4 11725:1 11733:1 11743:1 11746:1 11779:2 11789:1 11793:1 11807:1 11818:1 11824:2 11850:1 11853:1 11867:2 11913:2 11960:1 11984:1 11999:1 12013:2 12015:2 12016:1 12039:1 12040:1 12050:1 12051:1 12075:1 12078:1 12086:1 12092:2 12095:1 12096:1 12131:3 12132:1 12153:2 12183:1 12199:1 12216:1 12220:1 12224:1 12234:1 12236:1 12240:1 12242:1 12243:1 12244:1 12245:1 12285:1 12324:1 12332:1 12337:1 12386:4 12403:1 12413:2 12427:2 12442:1 12451:1 12479:1 12480:1 12486:1 12526:1 12567:1 12588:1 12597:1 12624:1 12633:1 12644:1 12645:3 12660:1 12682:1 12702:2 12708:2 12734:1 12769:2 12772:1 12776:2 12784:2 12786:1 12792:1 12802:1 12809:1 12810:2 12811:2 12827:1 12846:1 12847:1 12855:1 12888:8 12907:1 12918:1 12921:3 12947:2 12974:3 12975:1 12985:1 13020:3 13021:1 13023:1 13032:1 13072:1 13079:1 13086:1 13104:1 13112:1 13114:1 13115:1 13123:1 13126:1 13135:1 13137:2 13139:1 13146:3 13228:1 13229:1 13230:1 13241:1 13248:1 13254:1 13259:1 13267:1 13297:1 13307:4 13311:1 13335:1 13337:1 13376:1 13377:2 13378:1 13384:1 13420:1 13443:6 13476:2 13490:1 13532:1 13540:7 13579:2 13580:2 13593:1 13599:1 13611:1 13627:1 13636:1 13642:1 13648:2 13653:1 13666:1 13676:3 13680:1 13738:1 13742:1 13743:1 13745:1 13762:1 13769:1 13773:1 13777:1 13792:1 13813:1 13844:1 13855:1 13871:1 13899:1 13916:1 13949:1 13956:2 13977:2 13982:2 13994:1 13998:1 14031:1 14033:1 14096:1 14107:2 14127:1 14129:2 14132:1 14150:2 14151:2 14165:1 14166:1 14167:1 14170:1 14180:1 14192:2 14195:1 14208:1 14210:2 14214:1 14221:1 14227:1 14244:1 14278:2 14281:1 14288:3 14297:1 14326:1 14333:1 14371:1 14397:1 14437:2 14439:1 14442:1 14459:1 14472:4 14482:1 14492:1 14493:1 14494:1 14503:1 14507:3 14520:1 14530:1 14543:1 14544:1 14552:1 14590:1 14592:1 14617:1 14619:1 14621:1 14638:1 14640:1 14667:1 14683:1 14702:1 14705:1 14718:1 14720:1 14750:1 14765:1 14787:1 14806:2 14841:1 14865:1 14894:3 14915:1 14920:1 14921:1 14954:2 14969:1 14978:4 14982:1 14985:3 14988:1 14997:1 14998:1 15008:1 15030:1 15038:1 15044:1 15046:1 15057:1 15061:1 15071:3 15074:2 15110:3 15138:1 15174:1 15211:1 15221:2 15228:1 15229:1 15258:1 15264:1 15300:1 15308:1 15315:1 15334:2 15344:2 15345:3 15349:1 15354:1 15361:1 15368:1 15380:1 15391:1 15397:1 15400:1 15425:3 15444:1 15471:1 15472:4 15473:1 15486:1 15497:1 15503:1 15510:5 15517:2 15534:1 15547:1 15552:1 15563:3 15584:1 15594:3 15609:1 15616:1 15624:1 15631:1 15641:1 15646:2 15653:1 15655:1 15676:1 15706:5 15721:3 15729:3 15743:1 15753:3 15768:1 15779:1 15789:1 15823:1 15839:1 15845:1 15865:1 15907:1 15936:1 15938:1 15960:1 15971:1 15978:1 16011:1 16024:1 16031:1 16033:1 16034:2 16036:1 16043:1 16045:2 16048:1 16082:1 16088:1 16112:1 16136:2 16145:1 16184:1 16212:1 16213:1 16218:1 16226:1 16233:1 16253:1 16285:1 16287:5 16316:2 16319:1 16323:1 16333:2 16355:1 16367:1 16390:1 16434:1 16469:1 16483:1 16540:1 16557:1 16559:1 16580:1 16581:1 16586:2 16640:1 16734:1 16738:1 16757:1 16762:1 16773:1 16788:1 16800:1 16802:9 16824:1 16836:1 16838:1 16840:1 16857:1 16879:6 16895:1 16899:1 16910:1 16911:1 16913:1 16934:1 16982:7 16993:1 16994:4 16997:1 17002:1 17021:1 17029:1 17031:1 17042:2 17051:1 17059:2 17073:2 17081:5 17086:1 17092:3 17144:1 17151:2 17156:3 17166:1 17177:1 17188:1 17203:1 17205:1 17234:1 17239:1 17269:1 17278:3 17305:1 17332:1 17345:1 17347:1 17371:1 17384:1 17408:1 17432:1 17436:1 17440:1 17449:1 17460:1 17469:1 17481:1 17518:1 17528:1 17552:1 17561:5 17567:3 17585:1 17621:1 17674:1 17675:1 17679:1 17686:1 17693:1 17744:1 17757:1 17770:1 17775:2 17777:1 17786:2 17790:1 17810:1 17815:1 17872:1 17909:1 17914:1 17918:2 17930:2 17938:1 17943:1 17950:1 17959:3 17989:2 18005:2 18055:1 18058:1 18074:1 18161:1 18174:1 18220:2 18230:1 18232:1 18235:1 18245:1 18248:1 18263:1 18314:1 18338:1 18340:1 18345:3 18359:2 18384:2 18385:1 18389:1 18403:1 18407:1 18422:1 18429:2 18456:1 18467:1 18493:1 18503:1 18513:3 18536:1 18561:1 18564:1 18574:1 18608:1 18629:2 18662:1 18664:1 18687:1 18698:1 18718:6 18727:2 18742:3 18745:1 18746:1 18750:9 18757:1 18806:1 18827:1 18868:1 18902:1 18919:1 18921:2 18932:1 18947:1 18989:1 19011:1 19018:3 19025:1 19036:6 19058:1 19083:1 19084:1 19087:3 19089:1 19112:3 19123:1 19129:2 19156:5 19179:6 19181:1 19202:1 19203:1 19237:1 19271:1 19282:1 19293:1 19328:2 19335:2 19345:1 19365:3 19389:1 19394:1 19395:1 19439:2 19450:1 19473:1 19484:1 19505:1 19531:1 19589:1 19630:1 19631:1 19641:1 19659:2 19665:1 19670:1 19682:1 19695:3 19703:1 19713:2 19728:2 19756:1 19757:1 19767:1 19786:1 19788:2 19812:1 19852:1 19867:1 19875:1 19912:1 19915:1 19919:1 19924:5 19929:1 19946:1 19964:1 19980:1 19981:1 19984:2 20022:3 20102:1 20106:1 20128:2 20129:2 20130:1 20143:4 20147:1 20164:1 20170:1 20189:1 20190:2 20192:1 20193:1 20194:1 20200:2 20201:1 20212:1 20226:4 20234:1 20247:1 20297:1 20299:2 20303:1 20304:2 20306:5 20334:1 20343:4 20353:1 20382:1 20390:1 20391:1 20413:1 20434:1 20437:1 20445:1 20448:1 20484:1 20488:1 20502:4 20518:1 20544:1 20546:3 20557:1 20580:1 20594:1 20597:1 20608:2 20619:1 20627:1 20632:1 20645:1 20652:1 20657:5 20662:3 20667:1 20672:1 20686:1 20730:1 20733:1 20822:1 20823:1 20852:1 20857:2 20865:1 20874:1 20877:1 20893:1 20899:1 20904:1 20907:1 20920:1 20940:2 20955:3 20957:2 20965:1 20973:7 20983:1 21029:1 21032:1 21039:1 21087:1 21096:1 21108:1 21115:1 21139:1 21159:1 21172:1 21185:1 21193:1 21196:1 21225:1 21226:1 21256:1 21257:1 21274:1 21282:1 21293:1 21294:2 21309:1 21311:1 21327:1 21333:4 21378:3 21396:1 21433:2 21476:1 21496:1 21505:1 21510:3 21514:1 21515:1 21543:1 21546:1 21595:25 21599:2 21631:1 21645:1 21661:1 21662:1 21668:1 21681:1 21683:1 21690:1 21691:1 21722:1 21724:1 21749:1 21750:1 21783:1 21797:1 21855:1 21870:1 21923:2 21924:1 21929:1 21942:1 21944:1 21949:2 21975:1 22063:1 22068:1 22115:1 22126:1 22170:1 22172:1 22175:2 22179:1 22184:1 22188:1 22193:2 22196:1 22201:1 22238:1 22248:3 22281:3 22282:3 22304:1 22333:1 22355:1 22382:1 22400:1 22406:3 22408:1 22414:4 22420:1 22429:3 22430:1 22451:1 22460:1 22462:1 22475:1 22477:1 22484:1 22486:1 22497:1 22520:1 22529:1 22546:1 22574:1 22575:5 22582:1 22584:1 22616:1 22666:2 22674:2 22679:1 22696:1 22698:1 22761:1 22788:1 22791:1 22795:1 22803:1 22851:1 22864:2 22878:1 22912:1 22915:1 22922:1 22969:1 22973:1 22991:1 22997:1 23015:1 23025:2 23060:1 23091:1 23126:1 23197:1 23200:1 23215:1 23232:1 23242:1 23251:1 23255:1 23256:1 23297:2 23306:1 23307:1 23322:1 23325:1 23401:2 23413:2 23450:1 23464:3 23480:1 23527:1 23540:1 23543:1 23549:1 23555:3 23568:1 23584:2 23591:1 23613:1 23619:1 23660:1 23664:1 23667:1 23690:1 23721:2 23725:3272 23753:1 23764:1 23769:1 23784:1 23811:1 23856:2 23867:1 23903:2 23935:1 23945:1 23948:1 23969:1 23978:1 23991:1 23994:1 23995:1 23997:1 24000:1 24001:1 24018:1 24053:2 24083:1 24089:1 24125:1 24134:1 24146:1 24150:1 24153:1 24159:1 24166:1 24170:1 24179:1 24204:1 24222:1 24237:1 24238:1 24242:1 24244:1 24245:2 24277:1 24281:3 24284:1 24354:1 24357:2 24364:1 24377:1 24393:1 24399:1 24409:1 24415:1 24435:1 24441:2 24452:1 24453:1 24456:1 24465:1 24489:1 24515:1 24520:1 24531:1 24533:1 24545:9 24580:1 24588:1 24593:6 24597:1 24604:1 24631:3 24641:1 24669:1 24700:2 24713:1 24723:1 24763:1 24777:1 24781:1 24804:1 24805:3 24848:2 24851:1 24854:1 24874:2 24875:1 24881:1 24898:1 24913:1 24940:1 24982:1 24988:2 25031:1 25042:1 25047:1 25055:1 25072:1 25101:1 25111:1 25112:1 25118:1 25127:1 25141:1 25170:1 25206:2 25253:1 25261:1 25265:2 25267:1 25275:1 25281:2 25283:1 25286:1 25308:1 25312:1 25327:1 25328:3 25346:1 25354:1 25356:1 25357:7 25376:3 25380:1 25382:1 25398:2 25408:1 25411:1 25413:1 25425:1 25437:1 25451:1 25453:2 25492:2 25497:1 25531:3 25532:1 25534:1 25541:1 25552:2 25555:1 25563:1 25609:1 25623:1 25710:4 25724:1 25735:1 25769:1 25774:2 25782:1 25841:2 25844:1 25890:2 25892:2 25896:1 25907:1 25919:1 25931:1 25944:2 25952:1 25977:4 25981:2 25990:1 25994:1 25998:2 26001:1 26006:1 26035:1 26046:1 26050:1 26054:1 26070:1 26078:1 26084:1 26090:1 26102:1 26105:2 26119:1 26124:1 26156:2 26169:3 26199:1 26200:2 26218:1 26233:1 26242:1 26250:6 26258:1 26262:2 26276:1 26279:1 26287:1 26301:1 26305:1 26308:4 26314:1 26326:1 26330:2 26337:1 26372:1 26379:1 26392:1 26394:2 26398:6 26404:1 26417:1 26422:1 26424:3 26440:2 26456:1 26468:1 26475:1 26489:1 26504:1 26524:1 26529:1 26534:1 26537:1 26541:2 26544:1 26560:3 26561:1 26562:1 26563:2 26585:1 26589:2 26608:1 26665:2 26681:1 26695:1 26697:1 26698:1 26700:1 26717:1 26729:4 26734:1 26757:1 26760:1 26761:1 26808:1 26836:3 26838:1 26846:1 26855:1 26856:1 26857:2 26858:1 26876:1 26883:1 26889:1 26897:3 26904:1 26914:1 26944:1 26965:2 26990:1 27002:2 27005:3 27073:1 27091:1 27092:2 27095:1 27101:1 27108:2 27116:1 27127:2 27139:1 27141:2 27162:1 27172:1 27178:1 27193:1 27298:2 27303:2 27306:2 27332:1 27333:2 27345:2 27347:1 27371:1 27390:1 27396:1 27415:1 27475:1 27482:3 27498:2 27503:3 27516:1 27524:2 27538:1 27545:1 27548:2 27549:1 27560:1 27592:1 27598:1 27609:1 27624:1 27660:1 27671:1 27677:1 27710:3 27750:1 27772:1 27773:1 27803:1 27806:1 27810:1 27823:1 27824:1 27838:1 27841:1 27853:1 27864:1 27868:1 27886:1 27928:1 27930:1 27941:1 27956:1 27981:1 27982:1 27983:1 27984:1 28002:1 28029:1 28038:1 28045:3 28069:3 28079:2 28086:1 28087:1 28091:1 28094:10 28102:1 28109:1 28115:1 28125:1 28126:1 28155:1 28174:1 28189:1 28192:1 28198:1 28199:1 28218:1 28226:1 28227:2 28273:1 28280:1 28314:1 28342:1 28354:1 28403:1 28404:1 28423:2 28427:1 28433:2 28486:1 28488:1 28498:1 28519:1 28529:1 28537:1 28538:1 28548:1 28550:1 28632:1 28659:1 28675:1 28690:1 28730:2 28741:1 28744:2 28759:1 28839:2 28854:1 28863:1 28876:1 28877:2 28884:1 28976:1 28991:1 28998:1 28999:2 29007:1 29010:1 29016:1 29021:1 29031:1 29032:1 29058:2 29059:1 29091:2 29105:2 29141:1 29146:1 29156:1 29168:1 29172:3 29181:1 29187:1 29198:1 29203:2 29205:1 29217:1 29239:1 29263:2 29279:1 29285:1 29290:1 29304:2 29307:1 29311:1 29322:1 29335:3 29351:2 29353:1 29375:2 29405:1 29426:1 29428:2 29429:1 29434:1 29437:1 29451:1 29465:1 29506:1 29516:1 29521:1 29529:1 29539:1 29553:4 29555:1 29570:1 29583:1 29610:2 29625:2 29632:2 29669:1 29686:1 29689:2 29692:3 29693:1 29744:1 29754:1 29762:2 29765:1 29795:1 29806:2 29832:1 29853:1 29859:1 29871:1 29880:2 29890:1 29892:1 29954:1 29985:1 30015:1 30032:1 30036:2 30042:1 30052:1 30080:1 30091:1 30102:1 30122:1 30128:1 30144:2 30145:1 30152:1 30157:1 30181:1 30249:3 30258:1 30266:9 30268:1 30269:1 30273:1 30281:1 30285:1 30301:1 30329:2 30331:1 30339:2 30375:1 30378:1 30386:1 30402:1 30404:1 30426:1 30430:3 30438:3 30447:1 30465:1 30467:1 30480:2 30484:2 30489:1 30490:1 30496:1 30521:1 30537:1 30557:1 30563:1 30586:1 30591:1 30622:1 30640:2 30662:2 30663:3 30668:3 30671:1 30681:1 30701:1 30706:1 30711:2 30719:1 30743:1 30752:1 30765:1 30796:2 30811:1 30836:1 30850:1 30885:1 30888:1 30893:2 30923:4 30926:3 30936:1 30940:1 30949:1 30960:1 31004:1 31022:1 31030:1 31060:2 31064:1 31092:1 31134:1 31148:1 31157:1 31158:1 31180:1 31201:2 31214:2 31216:1 31226:1 31242:1 31280:1 31322:1 31334:3 31355:5 31358:3 31359:1 31376:1 31378:1 31396:1 31415:1 31427:1 31449:1 31450:1 31453:1 31455:1 31456:2 31478:1 31479:1 31544:2 31553:1 31558:1 31565:3 31569:1 31570:2 31577:1 31579:2 31584:1 31586:1 31598:1 31606:2 31612:1 31640:1 31650:1 31664:1 31667:3 31670:1 31680:3 31696:2 31722:1 31746:2 31753:1 31775:1 31798:1 31799:1 31835:1 31836:1 31839:1 31845:1 31857:1 31864:1 31904:1 31916:1 31920:1 31982:2 31991:1 32016:2 32017:1 32019:2 32036:1 32055:1 32068:1 32080:1 32084:1 32150:2 32175:1 32178:1 32182:1 32199:1 32200:1 32209:1 32216:1 32230:1 32236:1 32244:1 32252:3 32256:1 32257:1 32284:1 32288:1 32297:1 32299:3 32328:3 32331:1 32346:1 32365:1 32384:4 32405:1 32414:1 32492:4 32507:2 32510:1 32521:1 32528:4 32533:1 32562:1 32575:1 32578:1 32646:1 32653:1 32711:1 32713:1 32772:1 32779:1 32783:1 32787:1 32792:1 32800:1 32835:1 32841:1 32853:1 32862:1 32865:1 32870:1 32874:4 32879:1 32880:3 32881:2 32908:1 32928:1 32956:1 32974:1 32986:2 33006:2 33012:3 33020:1 33026:1 33039:1 33054:2 33070:2 33085:1 33118:2 33144:1 33203:2 33211:1 33212:1 33215:1 33216:2 33230:1 33250:1 33267:1 33349:1 33356:1 33386:1 33394:1 33399:1 33400:1 33406:3 33444:1 33452:3 33480:1 33507:1 33514:2 33518:1 33523:1 33527:1 33531:2 33533:2 33534:1 33548:1 33549:3 33553:1 33560:5 33620:1 33654:1 33698:1 33712:2 33721:2 33723:1 33728:1 33767:2 33773:1 33811:1 33825:1 33844:1 33849:2 33856:2 33861:2 33889:2 33896:1 33897:1 33909:1 33925:1 33926:1 33932:1 33934:1 33935:1 33936:1 33938:1 33942:1 33950:1 33974:1 33986:1 33998:1 34004:1 34015:1 34018:2 34023:2 34029:1 34040:2 34047:1 34059:1 34060:1 34067:1 34068:2 34116:1 34132:2 34139:1 34146:1 34170:1 34172:1 34182:1 34184:1 34185:1 34197:1 34200:1 34212:2 34219:1 34263:2 34267:2 34285:1 34323:1 34338:2 34372:1 34393:2 34410:1 34442:2 34479:1 34488:2 34495:1 34506:1 34530:1 34574:1 34587:1 34591:1 34616:1 34624:2 34633:1 34664:3 34668:1 34674:4 34709:1 34727:1 34739:1 34748:1 34753:1 34757:1 34773:12 34774:1 34776:1 34794:1 34797:1 34810:5 34833:2 34844:1 34857:1 34880:1 34881:1 34917:1 34919:1 34932:2 34963:4 34966:1 34971:1 34981:1 34982:1 35001:1 35004:6 35014:1 35015:1 35024:1 35027:1 35028:1 35048:1 35054:1 35058:1 35063:1 35074:4 35082:1 35102:1 35117:2 35141:1 35154:2 35161:1 35179:2 35203:1 35223:1 35249:2 35253:2 35297:1 35302:1 35305:1 35310:1 35316:1 35324:1 35335:1 35352:1 35360:1 35377:3 35378:1 35382:1 35384:1 35402:1 35417:1 35437:3 35442:1 35459:1 35464:1 35470:1 35515:1 35565:3 35593:2 35622:1 35646:3 35649:2 35675:1 35684:1 35689:1 35708:1 35714:1 35741:1 35742:1 35746:1 35751:1 35763:1 35837:1 35844:1 35846:1 35864:2 35882:1 35899:1 35911:1 35932:2 35943:1 35959:1 35978:1 35985:1 36010:1 36016:1 36019:1 36022:1 36053:1 36079:1 36104:1 36128:2 36158:1 36170:3 36178:1 36202:1 36203:1 36235:1 36292:1 36312:1 36318:1 36326:3 36327:1 36328:1 36329:3 36332:1 36333:1 36334:2 36340:2 36342:2 36343:2 36351:1 36352:2 36366:1 36368:1 36370:1 36371:1 36392:1 36396:1 36410:1 36415:1 36426:2 36433:1 36438:1 36442:1 36473:1 36477:1 36482:1
15 8:1 48:1 82:3 114:1 129:2 151:1 192:1 193:4 212:1 216:2 225:1 255:1 256:1 257:2 258:1 275:1 277:1 281:1 300:1 318:1 321:3 325:1 348:1 371:2 392:2 404:1 419:1 426:2 451:4 453:2 456:2 493:2 511:1 515:1 551:3 564:1 578:1 595:2 625:1 649:1 677:1 680:1 682:1 690:1 692:1 707:1 712:1 726:3 730:1 733:2 738:1 745:1 759:6 769:1 772:1 773:2 776:2 783:1 787:1 848:1 877:3 897:1 911:1 916:1 917:1 936:4 941:1 952:2 1002:1 1008:1 1042:2 1048:1 1068:2 1071:1 1073:1 1075:1 1078:2 1081:1 1084:1 1085:2 1093:1 1095:1 1096:1 1099:1 1103:2 1131:2 1133:1 1135:2 1140:1 1145:2 1148:1 1154:1 1167:3 1177:1 1183:1 1192:1 1194:1 1208:1 1222:1 1231:2 1237:3 1247:1 1272:2 1274:1 1275:1 1305:1 1307:1 1316:1 1348:2 1349:1 1393:1 1396:2 1411:1 1418:2 1423:2 1450:1 1467:1 1473:3 1482:1 1525:2 1535:1 1541:1 1542:1 1553:1 1554:2 1577:1 1606:1 1615:1 1624:1 1634:1 1635:1 1654:1 1662:1 1667:1 1723:1 1737:2 1738:1 1746:2 1750:1 1752:1 1757:6 1796:1 1799:1 1803:2 1807:2 1809:2 1815:1 1816:1 1819:5 1835:1 1849:1 1854:1 1870:1 1892:1 1901:4 1904:1 1905:4 1913:2 1919:2 1938:1 1954:1 1955:1 1967:1 1997:2 2004:2 2006:2 2010:1 2017:1 2041:3 2070:1 2071:1 2074:1 2097:1 2114:1 2115:1 2118:1 2128:1 2131:1 2145:2 2148:2 2149:1 2154:1 2171:2 2194:1 2196:1 2223:1 2224:1 2227:1 2232:1 2234:2 2237:1 2239:2 2242:1 2301:1 2309:1 2313:1 2328:1 2358:1 2371:1 2374:4 2381:1 2393:2 2398:1 2411:1 2517:1 2564:1 2582:1 2596:1 2601:1 2633:3 2673:1 2684:2 2712:1 2742:2 2743:1 2777:1 2780:1 2787:1 2789:2 2791:3 2801:2 2805:2 2810:1 2811:2 2812:2 2813:2 2817:1 2820:4 2821:1 2840:1 2860:1 2861:2 2905:2 2938:1 2986:2 2989:1 2990:2 3041:1 3049:3 3063:2 3101:1 3138:1 3167:1 3172:2 3193:1 3197:1 3202:1 3214:1 3229:1 3302:1 3314:2 3322:2 3326:1 3353:1 3356:1 3359:1 3360:1 3363:1 3367:1 3370:1 3421:1 3423:3 3432:1 3495:1 3505:2 3513:1 3517:1 3518:1 3547:2 3552:1 3559:1 3569:3 3576:4 3577:1 3589:1 3615:2 3632:2 3635:4 3653:1 3658:1 3660:1 3664:1 3666:1 3669:2 3675:1 3678:1 3705:1 3711:2 3716:1 3746:1 3749:1 3758:1 3771:2 3775:1 3795:1 3820:1 3853:1 3866:1 3886:1 3904:1 3945:1 3962:1 4033:2 4047:1 4055:1 4083:1 4091:1 4103:1 4148:3 4161:1 4175:1 4178:1 4179:1 4219:1 4221:1 4224:1 4231:1 4261:3 4264:1 4307:1 4319:1 4333:1 4380:1 4413:1 4416:1 4439:1 4450:1 4452:1 4455:1 4463:1 4465:1 4484:1 4498:2 4501:1 4536:1 4541:1 4549:1 4553:1 4556:1 4590:1 4602:1 4604:2 4606:1 4608:1 4624:1 4646:1 4678:1 4687:2 4688:3 4708:1 4724:1 4730:1 4741:1 4742:1 4745:2 4771:2 4774:2 4820:2 4821:4 4826:2 4859:1 4873:1 4874:1 4888:1 4894:1 4898:1 4911:1 4933:1 4959:1 4969:1 4974:1 4998:2 5001:1 5002:1 5018:1 5027:2 5028:1 5054:1 5063:1 5102:1 5132:1 5177:2 5201:1 5232:1 5246:1 5255:3 5259:1 5287:1 5294:2 5298:1 5310:1 5314:1 5344:1 5347:1 5357:1 5366:1 5378:4 5411:1 5412:1 5421:1 5438:1 5489:1 5506:1 5519:1 5522:1 5531:1 5543:2 5581:2 5583:1 5590:1 5607:1 5620:1 5623:1 5625:1 5664:1 5677:1 5683:2 5689:3 5697:1 5718:2 5719:2 5730:2 5743:1 5747:1 5822:1 5832:2 5838:2 5855:2 5865:1 5866:2 5885:1 5920:1 5921:1 5923:1 5925:2 5928:2 6004:1 6007:2 6014:1 6016:2 6021:1 6097:7 6132:1 6140:1 6145:1 6153:1 6167:1 6172:2 6237:4 6257:2 6258:1 6263:1 6264:1 6266:1 6273:2 6277:1 6281:1 6283:1 6287:1 6288:2 6289:1 6291:1 6315:1 6316:1 6321:1 6401:2 6404:1 6435:1 6442:1 6449:1 6454:1 6458:2 6475:1 6476:1 6508:1 6529:2 6533:3 6543:1 6564:1 6567:1 6584:2 6587:3 6605:3 6612:1 6630:3 6650:1 6695:2 6737:1 6740:1 6747:1 6772:4 6802:2 6806:1 6822:1 6829:2 6853:3 6877:1 6896:1 6904:1 6909:1 6921:1 6922:1 6934:1 6936:1 6942:1 6963:3 6987:1 7016:1 7037:2 7061:1 7115:1 7136:1 7177:1 7184:1 7187:1 7202:3 7209:1 7227:1 7236:1 7245:1 7257:1 7272:1 7281:1 7288:1 7319:1 7321:1 7322:2 7323:1 7351:2 7368:1 7385:1 7434:1 7439:1 7444:1 7517:1 7536:1 7566:1 7575:1 7583:1 7591:1 7627:2 7633:1 7637:1 7661:1 7726:2 7743:4 7747:1 7749:1 7764:2 7765:1 7778:1 7782:1 7785:1 7790:1 7830:3 7836:3 7922:2 7936:1 7950:3 7958:1 7964:1 7973:1 8045:1 8050:1 8056:1 8062:1 8065:1 8073:2 8075:1 8083:2 8084:1 8085:3 8086:1 8088:2 8091:2 8092:1 8099:3 8101:4 8135:1 8136:1 8147:1 8151:1 8162:1 8163:1 8176:1 8193:1 8196:3 8210:2 8212:2 8213:1 8223:1 8226:1 8233:2 8252:1 8262:1 8269:3 8282:1 8286:2 8304:1 8362:1 8371:1 8389:1 8413:3 8416:1 8420:4 8422:1 8425:1 8457:2 8459:1 8464:1 8477:1 8527:3 8557:1 8558:1 8565:1 8574:1 8607:1 8615:1 8661:1 8662:1 8671:1 8678:1 8687:1 8690:1 8700:1 8743:2 8748:1 8757:1 8761:1 8762:4 8777:1 8814:1 8818:2 8846:1 8874:1 8897:2 8917:1 8929:1 8943:1 8952:1 8959:2 8965:1 8966:1 8972:2 8992:2 9016:5 9021:2 9024:1 9046:2 9061:3 9066:1 9068:1 9087:2 9110:1 9130:4 9140:1 9191:1 9192:1 9201:1 9203:1 9215:1 9234:1 9243:1 9252:1 9282:1 9289:5 9311:1 9352:1 9390:2 9412:1 9420:1 9433:3 9466:1 9489:1 9505:1 9535:2 9539:1 9540:1 9544:2 9547:1 9557:1 9560:1 9561:1 9576:1 9586:1 9595:2 9608:1 9609:1 9617:1 9618:1 9622:1 9633:1 9655:1 9658:1 9671:2 9677:3 9678:2 9680:1 9691:1 9710:4 9743:1 9754:1 9786:2 9789:6 9813:2 9817:1 9850:1 9858:2 9862:1 9875:1 9881:21 9892:1 9904:2 9905:5 9927:1 9937:1 9940:1 9948:2 9949:1 9956:1 9971:1 9988:1 9989:1 10008:1 10019:1 10027:1 10034:1 10039:1 10057:3 10063:1 10089:1 10090:1 10122:4 10125:1 10133:1 10140:1 10145:1 10147:1 10176:1 10187:1 10189:1 10197:3 10228:1 10239:2 10270:1 10279:1 10292:1 10302:1 10320:1 10326:1 10328:3 10340:1 10353:1 10381:1 10387:2 10395:2 10402:1 10419:4 10441:1 10445:1 10470:3 10471:11 10487:1 10489:1 10500:1 10514:1 10523:1 10532:1 10536:2 10547:1 10548:3 10558:1 10572:1 10578:2 10594:3 10596:2 10607:1 10618:1 10630:1 10647:4 10686:1 10701:1 10705:1 10714:1 10753:2 10758:1 10761:1 10772:3 10773:1 10779:1 10788:1 10820:1 10857:1 10860:1 10887:1 10899:2 10902:1 10910:1 10912:1 10932:1 10958:1 10961:1 10963:2 10965:1 10967:1 10970:1 10973:1 10976:3 10982:1 10983:1 11003:1 11006:1 11019:1 11029:1 11037:1 11058:1 11061:1 11083:1 11084:2 11091:1 11107:1 11115:1 11138:1 11158:1 11166:2 11190:1 11207:2 11208:8 11216:1 11227:1 11231:1 11238:1 11249:3 11261:1 11264:1 11284:1 11304:1 11311:1 11320:1 11323:1 11342:1 11351:2 11358:1 11386:1 11396:7 11429:2 11442:1 11573:1 11586:1 11594:1 11599:1 11611:1 11617:1 11638:1 11648:1 11650:2 11668:1 11672:1 11673:1 11685:2 11696:4 11725:1 11733:1 11743:1 11746:1 11779:2 11789:1 11793:1 11807:1 11818:1 11824:2 11850:1 11853:1 11867:2 11913:2 11960:1 11984:1 11999:1 12013:2 12015:2 12016:1 12039:1 12040:1 12050:1 12051:1 12075:1 12078:1 12086:1 12092:2 12095:1 12096:1 12131:3 12132:1 12153:2 12183:1 12199:1 12216:1 12220:1 12224:1 12234:1 12236:1 12240:1 12242:1 12243:1 12244:1 12245:1 12285:1 12324:1 12332:1 12337:1 12386:4 12403:1 12413:2 12427:2 12442:1 12451:1 12479:1 12480:1 12486:1 12526:1 12567:1 12588:1 12597:1 12624:1 12633:1 12644:1 12645:3 12660:1 12682:1 12702:2 12708:2 12734:1 12769:2 12772:1 12776:2 12784:2 12786:1 12792:1 12802:1 12809:1 12810:2 12811:2 12827:1 12846:1 12847:1 12855:1 12888:8 12907:1 12918:1 12921:3 12947:2 12974:3 12975:1 12985:1 13020:3 13021:1 13023:1 13032:1 13072:1 13079:1 13086:1 13104:1 13112:1 13114:1 13115:1 13123:1 13126:1 13135:1 13137:2 13139:1 13146:3 13228:1 13229:1 13230:1 13241:1 13248:1 13254:1 13259:1 13267:1 13297:1 13307:4 13311:2 13335:1 13337:1 13376:1 13377:2 13378:1 13384:1 13420:1 13443:6 13476:2 13490:1 13532:1 13540:7 13579:2 13580:2 13593:1 13599:1 13611:1 13627:1 13636:1 13642:1 13648:2 13653:1 13666:1 13676:3 13680:1 13738:1 13742:1 13743:1 13745:1 13762:1 13769:1 13773:1 13777:1 13792:1 13813:1 13844:1 13855:1 13871:1 13899:1 13916:1 13949:1 13956:2 13977:2 13982:2 13994:1 13998:1 14031:1 14033:1 14096:1 14107:2 14127:1 14129:2 14132:1 14150:2 14151:2 14165:1 14166:1 14167:1 14170:1 14180:1 14192:2 14195:1 14208:1 14210:2 14214:1 14221:1 14227:1 14244:1 14278:2 14281:1 14288:3 14297:1 14326:1 14333:1 14371:1 14397:1 14437:2 14439:1 14442:1 14459:1 14472:4 14482:1 14492:1 14493:1 14494:1 14503:1 14507:3 14520:1 14530:1 14543:1 14544:1 14552:1 14590:1 14592:1 14617:1 14619:1 14621:1 14631:1 14638:1 14640:1 14667:1 14683:1 14702:1 14705:1 14718:1 14720:1 14750:1 14765:1 14787:1 14806:2 14841:1 14865:1 14894:3 14915:1 14920:1 14921:1 14954:2 14969:1 14978:4 14982:1 14985:3 14988:1 14989:1 14997:1 14998:1 15008:1 15030:1 15038:1 15044:1 15046:1 15057:1 15061:1 15071:3 15074:2 15110:3 15138:1 15174:1 15211:1 15221:2 15228:1 15229:1 15258:1 15264:1 15300:1 15308:1 15315:1 15334:2 15344:2 15345:3 15349:1 15354:1 15361:1 15368:1 15380:1 15391:1 15397:1 15400:1 15425:3 15444:1 15471:1 15472:4 15473:1 15486:1 15497:1 15503:1 15510:5 15517:2 15530:1 15534:1 15547:1 15552:1 15563:3 15584:1 15594:3 15609:1 15616:1 15624:1 15631:1 15641:1 15646:2 15653:1 15655:1 15676:1 15706:5 15721:3 15729:3 15743:1 15753:3 15768:1 15779:1 15789:1 15823:3 15839:1 15845:1 15865:1 15907:1 15936:1 15938:1 15960:1 15971:1 15978:1 16011:1 16024:1 16031:1 16033:1 16034:2 16036:1 16043:1 16045:2 16048:1 16082:1 16088:1 16112:1 16136:2 16145:1 16184:1 16212:1 16213:1 16218:1 16226:1 16233:1 16253:1 16285:1 16287:5 16316:2 16319:1 16323:1 16333:2 16355:1 16367:1 16390:1 16434:1 16469:1 16483:1 16540:1 16557:1 16559:1 16580:1 16581:2 16586:2 16640:1 16734:1 16738:1 16757:1 16762:1 16773:1 16788:1 16800:1 16802:9 16824:1 16836:1 16838:1 16840:1 16857:1 16879:6 16895:1 16899:1 16910:1 16911:1 16913:1 16934:1 16982:7 16993:1 16994:4 16997:1 17002:1 17021:1 17029:1 17031:1 17042:2 17051:1 17059:2 17073:2 17081:5 17086:1 17092:3 17144:1 17151:2 17156:3 17166:1 17177:1 17188:1 17203:1 17205:1 17234:1 17239:1 17269:1 17278:3 17305:1 17332:1 17345:1 17347:1 17371:1 17384:1 17408:1 17432:1 17436:1 17440:1 17449:1 17460:1 17469:1 17481:1 17518:1 17528:1 17552:1 17561:5 17567:3 17585:1 17621:1 17674:1 17675:1 17679:1 17686:1 17693:1 17744:1 17757:1 17770:1 17775:2 17777:1 17786:2 17790:1 17810:1 17815:1 17872:1 17909:1 17914:1 17918:2 17930:2 17938:1 17943:1 17950:1 17959:3 17989:2 18005:2 18055:1 18058:1 18074:1 18161:1 18174:1 18220:2 18230:1 18232:1 18235:1 18245:1 18248:1 18263:1 18314:1 18338:1 18340:1 18345:3 18359:2 18384:2 18385:1 18389:1 18403:1 18407:1 18422:1 18429:2 18456:1 18467:1 18493:1 18503:1 18513:3 18536:1 18561:1 18564:1 18574:1 18608:2 18629:2 18662:1 18664:1 18687:1 18698:1 18718:6 18727:2 18742:3 18745:1 18746:1 18750:9 18757:1 18806:1 18827:1 18868:1 18902:1 18919:1 18921:2 18932:1 18947:1 18989:1 19011:1 19018:3 19025:1 19036:6 19058:2 19083:1 19084:1 19087:3 19089:1 19112:3 19123:2 19129:2 19156:5 19179:6 19181:1 19202:1 19203:1 19237:1 19271:1 19282:1 19293:1 19328:2 19335:2 19345:1 19365:3 19389:1 19394:1 19395:1 19439:2 19450:1 19473:1 19484:1 19505:1 19531:1 19589:1 19630:1 19631:1 19641:1 19659:2 19665:2 19670:1 19682:1 19695:3 19703:1 19713:2 19728:2 19756:1 19757:1 19767:1 19786:1 19788:2 19812:1 19852:1 19867:1 19875:1 19912:1 19915:1 19919:1 19924:6 19929:1 19946:1 19964:1 19980:1 19981:1 19984:2 20022:3 20102:1 20106:1 20128:2 20129:2 20130:1 20143:4 20147:1 20164:1 20170:1 20189:1 20190:2 20192:1 20193:1 20194:1 20200:2 20201:1 20212:1 20226:4 20234:1 20247:1 20297:1 20299:2 20303:1 20304:2 20306:5 20334:1 20343:4 20353:1 20382:1 20390:1 20391:1 20413:1 20434:1 20437:1 20445:1 20448:1 20484:1 20488:1 20502:4 20518:1 20544:2 20546:3 20557:1 20580:1 20594:1 20597:1 20608:2 20619:1 20627:1 20632:1 20645:1 20652:1 20657:5 20662:3 20667:1 20672:1 20686:1 20730:1 20733:1 20822:1 20823:1 20852:1 20857:2 20865:1 20874:1 20877:1 20893:1 20899:1 20904:1 20907:1 20920:1 20940:2 20955:3 20957:2 20965:1 20973:7 20983:1 21029:1 21032:1 21039:1 21087:1 21096:1 21108:1 21115:1 21139:1 21159:1 21172:1 21185:1 21193:1 21196:1 21225:1 21226:1 21236:1 21256:1 21257:1 21274:1 21282:1 21293:1 21294:2 21309:1 21311:1 21327:1 21333:4 21378:3 21396:1 21433:2 21451:1 21476:1 21496:1 21505:1 21510:3 21514:1 21515:1 21543:1 21546:1 21595:25 21599:2 21631:1 21645:1 21661:1 21662:1 21668:1 21681:1 21683:1 21690:1 21691:1 21722:1 21724:1 21749:1 21750:1 21783:1 21797:1 21855:1 21870:1 21923:2 21924:1 21929:1 21942:1 21944:1 21949:2 21975:1 22063:1 22068:1 22115:1 22126:1 22170:1 22172:1 22175:2 22179:1 22184:1 22188:1 22193:2 22196:1 22201:1 22238:1 22248:3 22281:3 22282:3 22304:1 22333:1 22355:2 22382:1 22400:1 22406:3 22408:1 22414:4 22420:1 22429:3 22430:1 22451:1 22460:1 22462:1 22475:1 22477:1 22484:1 22486:1 22497:1 22520:1 22529:1 22546:1 22574:1 22575:5 22582:1 22584:1 22616:1 22666:2 22674:2 22679:1 22696:1 22698:1 22761:1 22788:1 22791:1 22795:1 22803:1 22851:1 22864:2 22878:1 22912:1 22915:1 22922:1 22969:1 22973:1 22991:1 22997:1 23015:1 23025:2 23060:1 23091:1 23126:1 23197:1 23200:1 23215:1 23232:1 23242:1 23251:1 23255:1 23256:1 23297:2 23306:1 23307:1 23322:1 23325:1 23401:2 23413:2 23450:1 23464:3 23480:1 23527:1 23540:1 23543:1 23549:1 23555:3 23568:1 23584:2 23591:1 23613:1 23619:1 23660:1 23664:1 23667:1 23690:1 23721:2 23725:3330 23753:1 23764:1 23769:1 23784:1 23811:1 23856:2 23867:1 23903:2 23935:1 23945:1 23948:1 23969:1 23978:1 23991:1 23994:1 23995:1 23997:1 24000:1 24001:1 24018:1 24053:2 24083:1 24089:1 24125:1 24134:1 24146:1 24150:1 24153:1 24159:1 24166:1 24170:1 24179:1 24204:1 24222:1 24237:1 24238:1 24242:1 24244:1 24245:2 24277:1 24281:3 24284:1 24354:1 24357:2 24364:1 24377:1 24393:1 24399:1 24409:1 24415:1 24435:1 24441:2 24452:1 24453:1 24456:1 24465:1 24489:1 24515:1 24520:1 24531:1 24533:1 24545:9 24580:1 24588:1 24593:6 24597:1 24604:1 24631:3 24641:1 24669:1 24700:3 24713:1 24723:1 24763:1 24777:1 24781:1 24804:1 24805:3 24848:3 24851:1 24854:1 24874:2 24875:1 24881:1 24898:1 24913:1 24933:1 24940:1 24982:1 24988:2 25031:1 25042:1 25047:1 25055:1 25072:1 25101:1 25111:1 25112:1 25118:1 25127:1 25141:1 25170:1 25206:2 25253:1 25261:1 25265:2 25267:1 25275:1 25281:2 25283:1 25286:1 25308:1 25312:1 25327:1 25328:3 25346:1 25354:1 25356:1 25357:7 25376:3 25380:1 25382:1 25398:2 25408:1 25411:1 25413:1 25425:1 25437:1 25451:1 25453:2 25492:2 25497:1 25531:3 25532:1 25534:1 25541:1 25552:2 25555:1 25563:1 25609:1 25623:1 25710:4 25724:1 25735:1 25769:1 25774:2 25782:1 25841:3 25844:1 25890:2 25892:2 25896:1 25907:1 25919:1 25931:1 25944:2 25952:1 25977:4 25981:2 25990:1 25994:1 25998:2 26001:1 26006:1 26035:1 26046:1 26050:1 26054:1 26062:1 26070:1 26078:1 26084:1 26090:1 26102:1 26105:2 26119:1 26124:1 26156:2 26169:3 26199:1 26200:2 26218:1 26233:1 26242:1 26250:6 26258:1 26262:2 26275:1 26276:1 26279:1 26287:1 26301:1 26305:1 26308:4 26314:1 26326:2 26330:2 26337:1 26372:1 26379:1 26392:1 26394:2 26398:6 26404:1 26417:1 26422:1 26424:3 26440:2 26456:1 26468:1 26475:1 26489:1 26504:1 26524:1 26529:1 26534:1 26537:1 26541:2 26544:1 26560:3 26561:1 26562:1 26563:2 26585:1 26589:2 26608:1 26665:2 26681:1 26695:1 26697:1 26698:1 26700:1 26717:1 26729:4 26734:1 26757:1 26760:1 26761:1 26808:1 26836:3 26838:1 26846:1 26855:1 26856:1 26857:2 26858:1 26876:1 26883:1 26889:1 26897:3 26899:1 26904:1 26914:1 26944:1 26965:2 26990:1 27002:2 27005:3 27053:1 27073:1 27091:1 27092:2 27095:1 27101:1 27108:2 27116:1 27127:2 27139:1 27141:2 27162:1 27172:1 27178:1 27193:1 27298:2 27303:2 27306:2 27332:1 27333:2 27345:2 27347:1 27371:1 27390:1 27396:1 27415:1 27475:1 27482:3 27498:2 27503:3 27516:1 27524:2 27538:1 27545:1 27548:2 27549:1 27560:1 27592:1 27598:1 27609:1 27624:1 27660:1 27671:1 27677:1 27710:3 27750:1 27772:1 27773:1 27803:1 27806:1 27810:1 27823:1 27824:1 27838:1 27841:1 27853:1 27864:1 27868:1 27886:1 27928:1 27930:1 27941:1 27956:1 27981:1 27982:1 27983:1 27984:1 28002:1 28029:1 28038:1 28045:3 28069:3 28079:2 28086:1 28087:1 28091:1 28094:10 28102:1 28109:1 28115:1 28125:1 28126:1 28155:1 28174:1 28189:1 28192:1 28198:1 28199:1 28218:1 28226:1 28227:2 28273:1 28280:1 28314:1 28342:1 28354:1 28403:2 28404:1 28423:2 28427:1 28433:2 28486:1 28488:1 28498:1 28519:1 28529:1 28537:1 28538:1 28548:1 28550:1 28632:1 28659:1 28675:1 28690:1 28730:2 28741:1 28744:2 28759:1 28839:2 28854:1 28863:1 28876:1 28877:2 28884:1 28976:1 28991:1 28998:1 28999:2 29007:1 29010:1 29016:1 29021:1 29031:1 29032:1 29056:1 29058:3 29059:1 29091:2 29105:2 29141:1 29146:1 29156:1 29168:1 29172:3 29181:1 29187:1 29198:1 29203:2 29205:1 29217:1 29239:1 29263:2 29279:1 29285:1 29290:1 29303:1 29304:2 29307:1 29311:1 29322:1 29335:3 29351:2 29353:1 29375:2 29405:1 29426:1 29428:2 29429:1 29434:1 29437:1 29451:1 29465:1 29506:1 29516:1 29521:1 29529:1 29539:1 29553:4 29555:1 29557:1 29570:1 29583:1 29610:2 29625:2 29632:2 29669:1 29686:1 29689:2 29692:3 29693:1 29744:1 29754:1 29762:2 29765:1 29795:1 29806:2 29832:1 29852:1 29853:1 29859:1 29871:1 29880:2 29890:1 29892:1 29954:1 29985:1 30015:1 30032:1 30036:2 30042:1 30052:1 30080:1 30091:1 30102:1 30122:1 30128:1 30144:2 30145:1 30147:1 30152:1 30157:1 30181:1 30249:3 30258:1 30266:9 30268:1 30269:1 30273:1 30281:1 30285:1 30301:1 30329:2 30331:1 30339:2 30375:1 30378:1 30386:1 30402:1 30404:1 30426:1 30430:3 30438:3 30447:1 30465:1 30467:1 30480:2 30484:2 30489:1 30490:1 30496:1 30515:1 30521:1 30537:1 30543:1 30557:1 30563:1 30586:1 30591:1 30622:1 30640:2 30662:2 30663:3 30668:3 30671:1 30681:1 30701:1 30706:1 30711:2 30719:1 30743:1 30752:1 30765:1 30796:2 30811:1 30836:1 30850:1 30885:1 30888:1 30893:2 30923:4 30926:3 30936:1 30940:1 30949:1 30960:1 31004:1 31022:1 31030:1 31060:2 31064:1 31092:1 31134:1 31148:1 31157:1 31158:1 31180:1 31201:2 31214:2 31216:1 31226:1 31242:1 31280:1 31322:1 31334:3 31355:5 31358:3 31359:1 31376:1 31378:1 31396:1 31415:1 31427:1 31449:1 31450:1 31453:1 31455:1 31456:2 31478:1 31479:1 31544:2 31553:1 31558:1 31565:3 31569:1 31570:2 31577:1 31579:2 31584:1 31586:1 31598:1 31606:2 31612:1 31640:1 31650:1 31664:1 31667:3 31670:1 31680:3 31696:2 31722:1 31746:2 31753:1 31775:1 31798:1 31799:1 31835:1 31836:1 31839:1 31845:1 31857:1 31864:1 31904:1 31916:1 31920:1 31982:2 31991:1 32016:2 32017:1 32019:2 32036:1 32055:1 32068:1 32080:1 32084:1 32150:2 32175:1 32178:1 32182:1 32199:1 32200:1 32209:1 32216:1 32230:1 32236:1 32244:1 32252:3 32256:1 32257:1 32284:1 32288:1 32297:1 32299:3 32328:3 32331:1 32346:1 32365:1 32384:4 32405:1 32414:1 32492:4 32507:3 32510:1 32521:1 32528:4 32533:1 32562:1 32575:1 32578:1 32646:1 32653:1 32711:1 32713:1 32772:1 32779:1 32783:1 32787:1 32792:1 32800:1 32835:1 32841:1 32853:1 32862:1 32865:1 32870:1 32874:4 32879:1 32880:3 32881:2 32908:1 32928:1 32956:1 32974:1 32986:2 33006:2 33012:3 33020:1 33026:1 33039:2 33054:2 33070:2 33085:1 33118:2 33144:1 33203:2 33211:1 33212:1 33215:1 33216:2 33230:1 33250:1 33267:1 33349:1 33356:1 33386:1 33394:1 33399:1 33400:1 33406:3 33444:1 33452:3 33480:1 33507:1 33514:2 33518:1 33523:1 33527:1 33531:2 33533:2 33534:1 33548:1 33549:3 33553:1 33560:5 33620:1 33654:1 33698:1 33712:2 33721:2 33723:1 33728:1 33767:2 33773:1 33811:1 33825:1 33828:1 33844:1 33849:2 33856:2 33861:2 33889:2 33896:1 33897:1 33909:1 33925:1 33926:1 33932:1 33934:1 33935:1 33936:1 33938:1 33942:1 33950:1 33974:1 33986:1 33998:1 34004:1 34015:1 34018:2 34023:2 34029:1 34040:2 34047:1 34059:1 34060:1 34067:1 34068:2 34116:1 34132:2 34139:1 34146:1 34170:1 34172:1 34182:1 34184:1 34185:1 34197:1 34200:1 34212:2 34219:1 34263:2 34267:2 34285:1 34286:1 34323:1 34338:2 34372:1 34393:2 34410:1 34442:2 34479:1 34488:2 34495:1 34506:1 34530:1 34574:1 34587:1 34591:1 34616:1 34624:2 34633:1 34664:3 34668:1 34674:4 34709:1 34727:1 34739:1 34748:1 34753:1 34757:1 34773:13 34774:1 34776:1 34794:1 34797:1 34810:5 34833:2 34844:1 34857:1 34880:1 34881:1 34917:1 34919:1 34932:2 34963:5 34966:1 34971:1 34981:1 34982:1 35001:1 35004:6 35014:1 35015:1 35024:1 35027:1 35028:1 35048:1 35054:1 35058:1 35063:1 35074:4 35082:1 35102:1 35117:2 35141:1 35154:2 35161:1 35179:2 35203:1 35223:1 35249:2 35253:2 35297:1 35302:1 35305:1 35310:1 35316:1 35324:1 35335:1 35352:1 35360:1 35377:3 35378:1 35382:1 35384:1 35402:1 35417:1 35437:3 35442:1 35459:1 35464:1 35470:1 35515:1 35565:3 35593:2 35622:1 35646:3 35649:2 35675:1 35684:1 35689:1 35708:1 35714:1 35741:1 35742:1 35746:1 35751:1 35763:1 35837:1 35844:1 35846:1 35864:2 35882:1 35899:1 35911:1 35932:2 35943:1 35959:1 35978:1 35985:1 36010:1 36016:1 36019:1 36022:1 36053:1 36079:1 36104:1 36128:2 36158:1 36170:3 36178:1 36202:1 36203:1 36235:1 36292:1 36312:1 36318:1 36326:3 36327:1 36328:1 36329:3 36332:1 36333:1 36334:2 36340:2 36342:2 36343:2 36351:1 36352:2 36366:1 36368:1 36370:1 36371:1 36392:1 36396:1 36410:1 36415:1 36426:2 36433:1 36438:1 36442:1 36473:1 36477:1 36482:1
15 8:1 48:1 82:3 114:1 129:2 151:1 192:1 193:4 212:1 216:2 225:1 255:1 256:1 257:2 258:1 275:1 277:1 281:1 300:1 318:1 321:3 325:1 348:1 371:2 392:2 404:1 419:1 426:2 451:4 453:2 456:2 493:2 511:1 515:1 540:1 551:3 564:1 578:1 595:2 625:1 649:1 677:1 680:1 682:1 690:1 692:1 707:1 712:1 726:3 730:1 733:2 738:1 745:1 759:6 769:1 772:1 773:2 776:2 783:1 787:1 848:1 877:3 897:1 911:1 916:1 917:1 936:4 941:1 952:2 1002:1 1008:1 1042:2 1047:1 1048:1 1068:2 1071:1 1073:1 1075:1 1078:2 1081:1 1084:1 1085:2 1093:1 1095:1 1096:1 1099:1 1103:2 1131:2 1133:1 1135:2 1140:1 1145:2 1148:1 1154:1 1167:3 1177:1 1183:1 1192:1 1194:1 1208:1 1222:1 1231:2 1237:3 1247:1 1272:2 1274:1 1275:1 1305:1 1307:1 1316:1 1348:2 1349:1 1393:1 1396:2 1411:1 1418:2 1423:2 1450:1 1467:1 1473:3 1474:1 1482:1 1525:2 1535:1 1541:1 1542:1 1553:1 1554:2 1577:1 1606:1 1607:1 1615:1 1624:1 1634:1 1635:1 1654:1 1662:1 1663:1 1667:1 1723:1 1737:2 1738:1 1746:2 1750:1 1752:1 1757:7 1796:1 1799:1 1803:2 1807:2 1809:2 1815:1 1816:1 1819:5 1835:1 1849:1 1854:1 1870:1 1892:1 1901:4 1904:1 1905:4 1913:2 1919:2 1938:1 1954:1 1955:1 1967:1 1997:2 2004:2 2006:2 2010:1 2017:1 2022:1 2041:3 2070:1 2071:1 2074:1 2097:1 2114:1 2115:1 2118:1 2128:1 2131:1 2145:2 2148:2 2149:1 2154:1 2171:2 2194:1 2196:1 2223:1 2224:1 2227:1 2232:1 2234:2 2237:1 2239:2 2242:1 2301:1 2309:1 2313:1 2328:1 2358:1 2371:1 2374:4 2381:1 2393:2 2398:1 2411:1 2517:1 2564:1 2582:1 2596:1 2601:1 2633:3 2673:1 2684:2 2712:1 2742:2 2743:1 2777:1 2780:1 2787:1 2789:2 2791:3 2801:2 2805:2 2810:1 2811:2 2812:2 2813:2 2817:1 2820:4 2821:1 2840:1 2860:1 2861:2 2905:2 2938:1 2986:2 2989:1 2990:2 3041:1 3049:3 3063:2 3101:1 3138:1 3167:1 3172:2 3193:1 3197:1 3202:1 3214:1 3229:1 3302:1 3314:2 3322:2 3326:1 3353:1 3356:1 3359:1 3360:1 3363:1 3367:1 3370:1 3421:1 3423:3 3432:1 3495:1 3505:2 3513:1 3517:1 3518:1 3547:2 3552:1 3559:1 3569:4 3576:4 3577:1 3589:1 3615:2 3632:2 3635:4 3653:1 3658:1 3660:1 3664:1 3666:1 3669:2 3675:1 3678:1 3705:1 3711:2 3716:1 3746:1 3749:1 3758:1 3771:2 3775:1 3795:1 3820:1 3853:1 3866:1 3886:1 3904:1 3945:1 3962:1 4033:2 4047:1 4055:1 4083:1 4091:1 4103:1 4106:1 4148:3 4161:1 4175:1 4178:1 4179:1 4219:1 4221:1 4224:1 4231:1 4261:3 4264:1 4307:1 4319:1 4333:1 4380:1 4413:1 4416:1 4439:1 4450:1 4452:1 4455:1 4463:1 4465:1 4484:1 4498:2 4501:1 4536:1 4541:1 4549:1 4553:1 4556:1 4590:1 4602:1 4604:2 4606:1 4608:1 4624:1 4646:1 4678:1 4687:2 4688:3 4708:1 4724:1 4730:1 4741:1 4742:1 4745:2 4771:2 4774:2 4820:2 4821:4 4826:2 4859:1 4873:1 4874:1 4888:1 4894:1 4898:1 4911:1 4933:1 4959:1 4969:1 4974:1 4998:2 5001:1 5002:1 5018:1 5027:2 5028:1 5032:1 5054:1 5063:1 5102:1 5132:1 5177:2 5201:1 5232:1 5246:1 5255:3 5259:1 5287:1 5294:2 5298:1 5310:1 5314:1 5344:1 5347:1 5357:1 5366:1 5378:4 5411:1 5412:1 5421:1 5438:1 5489:1 5506:1 5519:1 5522:1 5531:1 5543:2 5581:2 5583:1 5590:1 5607:1 5620:1 5623:1 5625:1 5664:1 5677:1 5683:2 5689:3 5697:1 5718:2 5719:2 5730:2 5743:1 5747:1 5822:1 5832:2 5838:2 5855:2 5865:1 5866:2 5885:1 5920:1 5921:1 5923:1 5925:2 5928:2 6004:1 6007:2 6014:1 6016:2 6021:1 6097:7 6132:1 6140:1 6145:1 6153:1 6167:1 6172:2 6237:4 6257:2 6258:1 6263:1 6264:1 6266:1 6273:2 6277:1 6281:1 6283:1 6287:1 6288:2 6289:1 6291:1 6315:1 6316:1 6321:1 6401:2 6404:1 6435:1 6442:1 6449:1 6454:1 6458:2 6475:1 6476:1 6508:1 6529:2 6533:3 6543:1 6564:1 6567:1 6584:2 6587:3 6605:3 6612:1 6630:3 6650:1 6695:2 6737:1 6740:1 6747:1 6772:4 6802:2 6806:1 6822:1 6829:2 6853:3 6877:1 6896:1 6904:1 6909:1 6921:1 6922:1 6934:1 6936:1 6942:1 6963:3 6987:1 7016:1 7037:2 7061:1 7115:1 7136:1 7177:1 7184:1 7187:1 7202:3 7209:1 7227:1 7236:1 7245:1 7257:1 7272:1 7281:1 7288:1 7319:1 7321:1 7322:2 7323:1 7335:1 7351:2 7368:1 7385:1 7434:1 7439:1 7444:1 7517:1 7536:1 7566:1 7575:1 7583:1 7591:1 7627:2 7633:1 7637:1 7661:1 7689:1 7726:2 7743:4 7747:1 7749:1 7764:2 7765:1 7778:1 7782:1 7785:1 7790:1 7830:3 7836:3 7922:2 7936:1 7950:3 7958:1 7964:1 7973:1 8045:1 8050:1 8056:1 8062:1 8065:1 8073:2 8075:1 8083:2 8084:2 8085:3 8086:1 8088:2 8091:2 8092:1 8099:3 8101:4 8135:1 8136:1 8147:1 8151:1 8162:1 8163:1 8176:1 8193:1 8196:3 8210:2 8212:2 8213:1 8223:1 8226:1 8233:2 8252:1 8262:1 8269:3 8282:1 8286:2 8296:1 8304:1 8362:1 8371:1 8389:1 8413:3 8416:1 8420:4 8422:1 8425:1 8457:2 8459:1 8464:1 8477:1 8527:3 8557:1 8558:1 8565:1 8574:1 8607:1 8615:1 8661:1 8662:1 8671:1 8678:1 8687:1 8690:1 8700:1 8743:2 8748:1 8757:1 8761:1 8762:4 8777:1 8802:1 8814:1 8818:2 8846:1 8874:1 8897:2 8917:1 8929:1 8943:1 8952:1 8959:2 8965:1 8966:1 8972:2 8992:2 9016:5 9021:2 9024:1 9046:2 9061:3 9066:1 9068:1 9087:2 9110:1 9130:4 9140:1 9191:1 9192:1 9201:1 9203:1 9215:1 9234:1 9243:1 9252:1 9282:1 9289:5 9311:1 9349:1 9352:1 9390:2 9412:1 9420:1 9433:3 9466:1 9489:1 9505:1 9535:2 9539:1 9540:1 9544:2 9547:1 9557:1 9560:1 9561:1 9576:1 9586:1 9595:2 9608:1 9609:1 9617:1 9618:1 9622:1 9633:1 9655:1 9658:1 9671:2 9677:3 9678:2 9680:1 9691:1 9710:4 9743:1 9754:1 9786:2 9789:6 9813:2 9817:1 9850:1 9858:2 9862:1 9875:1 9881:21 9892:1 9904:2 9905:5 9927:1 9937:1 9940:1 9948:2 9949:1 9956:1 9971:1 9988:1 9989:1 10008:1 10019:1 10027:1 10034:1 10039:1 10057:3 10063:1 10089:1 10090:1 10122:4 10125:1 10133:1 10140:1 10145:1 10147:1 10176:1 10187:1 10189:1 10197:3 10228:1 10239:2 10270:1 10279:1 10292:1 10302:1 10320:1 10326:1 10328:3 10340:1 10353:1 10381:1 10387:2 10395:2 10402:1 10413:1 10419:4 10441:1 10445:1 10470:3 10471:11 10487:1 10489:1 10500:1 10501:1 10514:1 10523:1 10532:1 10536:2 10547:1 10548:3 10558:1 10572:1 10578:2 10594:3 10596:2 10607:1 10618:1 10630:1 10647:4 10686:1 10701:1 10705:1 10714:1 10753:2 10758:1 10761:1 10772:3 10773:1 10779:1 10788:1 10820:1 10857:1 10860:1 10887:1 10899:2 10902:1 10910:1 10912:1 10932:1 10958:1 10961:1 10963:2 10965:1 10967:1 10970:1 10973:1 10976:3 10982:1 10983:1 11003:1 11006:1 11019:1 11029:1 11037:1 11058:1 11061:1 11083:1 11084:2 11091:1 11107:1 11115:1 11138:1 11142:1 11158:1 11166:2 11190:1 11207:2 11208:8 11216:1 11227:1 11231:1 11238:1 11249:3 11261:1 11264:1 11284:1 11304:1 11311:1 11320:1 11323:1 11342:1 11351:2 11358:1 11386:1 11396:7 11429:2 11442:1 11573:1 11586:1 11594:1 11599:1 11611:1 11617:1 11638:1 11648:1 11650:2 11668:1 11672:1 11673:1 11685:2 11696:4 11725:1 11733:1 11743:1 11746:1 11779:2 11789:1 11793:1 11807:1 11818:1 11824:2 11850:1 11853:1 11867:2 11913:2 11960:1 11984:1 11999:1 12013:2 12015:2 12016:1 12039:1 12040:1 12050:1 12051:1 12075:1 12078:1 12086:1 12092:2 12095:1 12096:1 12131:3 12132:1 12153:2 12183:1 12199:1 12216:1 12220:1 12224:1 12234:1 12236:1 12240:1 12242:1 12243:1 12244:1 12245:1 12285:1 12324:1 12332:1 12337:1 12386:4 12403:1 12413:2 12427:2 12442:1 12451:1 12479:1 12480:1 12486:1 12526:1 12567:1 12588:1 12597:1 12624:1 12633:1 12644:1 12645:3 12660:1 12682:1 12702:2 12708:2 12734:1 12769:2 12772:1 12776:2 12784:2 12786:1 12792:1 12802:1 12806:1 12809:1 12810:2 12811:2 12827:1 12846:1 12847:1 12855:1 12888:8 12907:1 12918:1 12921:3 12947:2 12974:3 12975:1 12985:1 13006:1 13020:3 13021:1 13023:1 13032:1 13053:1 13072:1 13079:1 13086:1 13104:1 13112:1 13114:1 13115:1 13123:1 13126:1 13135:1 13137:2 13139:1 13146:3 13228:1 13229:1 13230:1 13241:1 13248:1 13254:1 13259:1 13267:1 13297:1 13307:4 13311:2 13335:1 13337:1 13376:1 13377:2 13378:1 13384:1 13420:1 13443:6 13476:2 13490:1 13532:1 13540:8 13579:2 13580:2 13588:1 13593:1 13599:1 13611:1 13627:1 13636:1 13642:1 13648:2 13653:1 13666:1 13676:3 13680:1 13738:1 13742:1 13743:1 13745:1 13762:1 13769:1 13773:1 13777:1 13792:1 13813:1 13844:1 13855:1 13871:1 13899:1 13916:1 13949:1 13952:1 13956:2 13977:2 13982:2 13994:1 13998:1 14031:1 14033:1 14096:1 14107:2 14127:1 14129:2 14132:1 14150:2 14151:2 14165:1 14166:1 14167:1 14170:1 14180:1 14192:2 14195:1 14208:1 14210:2 14214:1 14221:1 14227:1 14244:1 14278:2 14281:1 14288:3 14297:1 14326:1 14333:1 14371:1 14390:1 14397:1 14437:2 14439:1 14442:1 14459:1 14472:4 14482:1 14492:1 14493:1 14494:1 14503:1 14507:3 14520:1 14530:1 14543:1 14544:1 14552:1 14590:1 14592:1 14617:1 14619:1 14621:1 14631:1 14638:1 14640:1 14667:1 14683:1 14702:1 14705:1 14718:1 14720:1 14731:1 14750:1 14765:1 14787:1 14806:2 14829:1 14841:1 14865:1 14894:3 14915:1 14920:1 14921:1 14954:2 14969:1 14978:4 14982:1 14985:3 14988:1 14989:1 14997:1 14998:1 15008:1 15030:1 15038:1 15044:1 15046:1 15057:1 15061:1 15071:3 15074:2 15110:3 15138:1 15174:1 15211:1 15221:2 15228:1 15229:1 15258:1 15264:1 15300:1 15308:1 15315:1 15334:2 15344:2 15345:3 15349:1 15354:1 15361:1 15368:1 15380:1 15391:1 15397:1 15400:1 15425:3 15444:1 15471:1 15472:4 15473:1 15486:1 15497:1 15503:1 15510:5 15517:2 15530:1 15534:1 15547:1 15552:1 15563:3 15584:1 15594:3 15609:1 15616:1 15624:1 15631:1 15641:1 15646:2 15653:1 15655:1 15676:1 15706:5 15721:3 15729:3 15743:1 15753:3 15768:1 15779:1 15789:1 15823:3 15839:1 15845:1 15865:1 15907:1 15936:1 15938:1 15960:1 15971:1 15978:1 16011:1 16024:1 16031:1 16033:1 16034:2 16036:1 16043:1 16045:2 16048:1 16082:1 16088:1 16112:1 16136:2 16145:1 16184:1 16212:1 16213:1 16218:1 16226:1 16233:1 16253:1 16261:1 16285:1 16287:5 16316:2 16319:1 16323:1 16333:2 16355:1 16367:1 16390:1 16434:1 16469:1 16483:1 16540:1 16557:1 16559:1 16580:1 16581:2 16586:2 16640:1 16713:1 16734:1 16738:1 16757:1 16762:1 16773:1 16788:1 16800:1 16802:9 16824:1 16836:1 16838:1 16840:2 16857:1 16866:1 16879:6 16895:1 16899:1 16910:1 16911:1 16913:1 16934:1 16982:7 16993:1 16994:4 16997:1 17002:1 17021:1 17029:1 17031:1 17042:2 17051:1 17059:2 17073:2 17081:6 17086:1 17092:3 17144:1 17151:2 17156:3 17163:1 17166:1 17177:1 17188:1 17203:1 17205:1 17234:1 17239:1 17269:1 17278:3 17305:1 17332:1 17345:1 17347:1 17371:1 17384:1 17408:1 17432:1 17436:1 17440:1 17449:1 17460:1 17469:1 17481:1 17518:1 17528:1 17552:1 17561:5 17567:3 17585:1 17621:1 17674:1 17675:1 17679:1 17686:1 17693:2 17744:1 17757:1 17770:1 17775:2 17777:1 17786:2 17790:1 17810:1 17813:1 17815:1 17831:1 17872:1 17909:1 17914:1 17918:2 17930:2 17938:1 17943:1 17950:1 17959:3 17989:2 18005:2 18055:1 18058:1 18074:1 18161:1 18174:1 18220:2 18228:1 18230:1 18232:1 18235:1 18245:1 18248:1 18263:1 18314:1 18338:1 18340:1 18345:3 18359:2 18384:2 18385:1 18389:1 18403:1 18407:1 18422:1 18429:2 18456:1 18467:1 18493:1 18503:1 18513:3 18536:1 18561:1 18564:1 18574:1 18608:2 18629:2 18662:1 18664:1 18687:1 18698:1 18718:6 18727:2 18742:3 18745:1 18746:1 18750:9 18757:1 18806:2 18827:1 18868:1 18902:1 18919:1 18921:2 18932:1 18947:1 18988:1 18989:1 19011:1 19018:3 19025:1 19036:6 19058:2 19083:1 19084:1 19087:3 19089:1 19112:3 19123:2 19129:2 19156:5 19179:6 19181:1 19202:1 19203:1 19237:1 19271:1 19282:1 19293:1 19308:1 19328:2 19335:2 19345:1 19365:3 19389:1 19394:1 19395:1 19439:2 19450:1 19473:1 19484:1 19505:1 19531:1 19589:1 19630:1 19631:1 19641:1 19659:2 19665:2 19670:1 19682:1 19695:3 19703:1 19713:2 19728:2 19756:1 19757:1 19767:1 19786:1 19788:2 19812:1 19852:1 19867:1 19875:1 19912:1 19915:1 19919:1 19924:6 19929:1 19946:1 19964:1 19980:1 19981:1 19984:2 20022:3 20102:1 20106:1 20128:2 20129:2 20130:1 20143:4 20147:1 20164:1 20170:1 20189:1 20190:2 20192:1 20193:1 20194:1 20200:2 20201:1 20212:1 20226:4 20234:1 20247:1 20297:1 20299:2 20303:1 20304:2 20306:6 20334:1 20343:4 20353:1 20382:1 20390:1 20391:1 20413:1 20434:1 20437:1 20445:1 20448:1 20484:1 20488:1 20502:4 20518:1 20544:2 20546:3 20557:1 20580:1 20594:1 20597:1 20608:2 20619:1 20627:1 20632:1 20645:1 20652:1 20657:5 20662:3 20667:1 20672:1 20686:1 20698:1 20730:1 20733:1 20822:1 20823:1 20852:1 20857:2 20865:1 20874:1 20877:1 20893:2 20899:1 20904:1 20907:1 20920:1 20940:2 20955:3 20957:2 20965:1 20973:7 20983:1 21029:1 21032:1 21039:1 21087:1 21096:1 21108:1 21115:1 21139:1 21159:1 21172:1 21185:1 21193:1 21196:1 21225:1 21226:1 21236:1 21253:1 21256:1 21257:1 21274:1 21282:1 21293:1 21294:2 21309:1 21311:1 21327:1 21333:4 21378:3 21396:1 21433:2 21451:1 21455:1 21476:1 21496:1 21505:1 21510:3 21514:1 21515:1 21543:1 21546:1 21595:25 21599:2 21631:1 21645:1 21661:1 21662:1 21668:1 21681:1 21683:1 21690:1 21691:1 21722:1 21724:1 21749:1 21750:1 21783:1 21797:1 21855:1 21870:1 21923:2 21924:1 21929:1 21942:1 21944:1 21945:1 21949:2 21975:1 22063:1 22068:1 22115:1 22126:1 22129:1 22170:1 22172:1 22175:2 22179:1 22184:1 22188:1 22193:2 22196:1 22201:1 22238:1 22248:3 22281:3 22282:3 22304:1 22333:1 22355:2 22382:1 22400:1 22406:3 22408:1 22414:4 22420:1 22429:3 22430:1 22451:1 22460:1 22462:1 22475:1 22477:1 22484:1 22486:1 22497:1 22518:1 22520:1 22529:1 22546:1 22574:1 22575:5 22582:1 22584:1 22616:1 22629:1 22666:2 22674:2 22679:1 22696:1 22698:1 22761:1 22788:1 22791:1 22795:1 22803:1 22851:1 22864:2 22878:1 22912:1 22915:1 22922:1 22969:1 22973:1 22991:1 22997:1 23015:1 23025:2 23060:1 23091:1 23126:1 23177:1 23197:1 23200:1 23215:1 23232:1 23242:1 23251:1 23255:1 23256:1 23297:2 23306:1 23307:1 23322:1 23325:1 23401:2 23413:2 23450:1 23464:3 23480:1 23527:1 23540:1 23543:1 23549:1 23555:4 23568:1 23584:2 23591:1 23613:1 23619:1 23660:1 23664:1 23667:1 23690:1 23721:2 23725:3441 23753:1 23764:1 23769:1 23784:1 23811:1 23856:2 23864:1 23867:1 23903:2 23935:1 23945:1 23948:1 23969:1 23978:1 23991:1 23994:1 23995:1 23997:1 24000:1 24001:1 24018:1 24053:2 24083:1 24084:1 24089:1 24125:1 24134:1 24146:1 24150:1 24153:1 24159:1 24166:1 24170:1 24179:1 24204:1 24222:1 24237:1 24238:1 24242:1 24244:1 24245:2 24277:1 24281:3 24284:1 24354:1 24357:2 24364:1 24377:1 24393:1 24399:1 24409:1 24415:1 24435:1 24441:2 24452:1 24453:1 24456:1 24465:1 24489:1 24515:1 24520:1 24531:1 24533:1 24545:9 24580:1 24588:1 24593:6 24597:1 24604:1 24631:3 24641:1 24669:1 24700:3 24713:1 24723:1 24763:1 24777:1 24781:1 24804:1 24805:4 24848:3 24851:1 24854:1 24874:2 24875:1 24881:1 24898:1 24913:1 24933:1 24940:1 24982:1 24988:2 25031:1 25042:1 25047:1 25055:1 25072:1 25101:1 25111:1 25112:1 25118:1 25122:1 25127:1 25141:1 25170:1 25206:2 25253:1 25261:1 25265:2 25267:1 25275:1 25281:2 25283:1 25286:1 25308:1 25312:1 25327:1 25328:3 25346:1 25354:1 25356:1 25357:7 25376:3 25380:1 25382:1 25398:2 25408:1 25411:1 25413:1 25424:1 25425:1 25437:1 25451:1 25453:2 25492:2 25497:1 25531:3 25532:1 25534:1 25541:1 25552:2 25555:1 25563:1 25609:1 25623:1 25710:4 25724:1 25735:1 25769:1 25774:2 25782:1 25841:3 25844:1 25890:2 25892:2 25896:1 25900:1 25907:1 25919:1 25931:1 25944:2 25952:1 25977:4 25981:2 25990:1 25994:1 25998:2 26001:1 26006:1 26035:1 26046:1 26050:1 26054:1 26062:1 26070:1 26078:1 26084:1 26090:1 26102:1 26105:2 26119:1 26124:1 26156:2 26169:3 26199:1 26200:2 26218:1 26233:1 26242:1 26250:7 26258:1 26262:2 26275:1 26276:1 26279:1 26287:1 26301:1 26305:1 26308:5 26314:1 26326:2 26330:2 26337:1 26372:1 26379:1 26392:1 26394:2 26398:6 26404:1 26417:1 26422:1 26424:3 26440:2 26456:1 26468:1 26475:1 26489:1 26504:1 26524:1 26529:1 26534:1 26537:1 26541:2 26544:1 26560:3 26561:1 26562:1 26563:2 26585:1 26589:2 26608:1 26665:2 26681:1 26695:1 26697:1 26698:1 26700:1 26703:1 26717:1 26729:4 26734:1 26757:1 26760:1 26761:1 26808:1 26836:3 26838:1 26846:1 26855:1 26856:1 26857:2 26858:1 26876:1 26883:1 26889:1 26897:3 26899:1 26904:1 26914:1 26944:1 26965:2 26990:1 27002:2 27005:3 27053:1 27073:1 27091:1 27092:2 27095:1 27101:1 27108:2 27116:1 27127:2 27139:1 27141:2 27156:1 27162:1 27172:1 27178:1 27193:1 27298:2 27303:2 27306:2 27332:1 27333:2 27345:2 27347:1 27371:1 27390:1 27396:1 27415:1 27475:1 27482:3 27498:2 27503:3 27516:1 27524:3 27538:1 27545:1 27548:2 27549:1 27560:1 27592:1 27598:1 27609:1 27624:1 27660:1 27671:1 27677:1 27710:3 27750:1 27772:1 27773:1 27803:1 27806:1 27810:1 27823:1 27824:1 27838:1 27841:1 27853:1 27864:1 27868:1 27886:1 27928:1 27930:1 27941:1 27956:1 27981:1 27982:1 27983:1 27984:1 28002:1 28029:1 28038:1 28045:3 28069:3 28079:2 28086:1 28087:1 28090:1 28091:1 28094:10 28102:1 28109:1 28115:1 28125:1 28126:1 28155:1 28174:1 28189:1 28192:1 28198:1 28199:1 28218:1 28226:1 28227:2 28273:1 28280:1 28314:1 28342:1 28354:1 28403:2 28404:1 28423:2 28427:1 28433:2 28486:1 28488:1 28498:1 28519:1 28529:1 28537:1 28538:1 28548:1 28550:1 28632:1 28659:1 28675:1 28690:1 28699:1 28730:2 28741:1 28744:2 28759:1 28786:1 28839:2 28854:1 28863:1 28876:1 28877:2 28884:1 28976:1 28991:1 28998:1 28999:2 29007:1 29010:1 29016:1 29021:1 29031:1 29032:1 29056:1 29058:3 29059:1 29091:2 29105:2 29141:1 29146:1 29156:1 29168:1 29172:3 29181:1 29187:1 29198:1 29203:2 29205:1 29217:1 29239:1 29263:2 29279:1 29285:1 29290:1 29303:1 29304:2 29307:1 29311:1 29322:1 29335:3 29351:2 29353:1 29375:2 29405:1 29426:1 29428:2 29429:1 29434:1 29437:1 29451:1 29465:1 29506:1 29516:1 29521:1 29529:1 29539:1 29553:4 29555:1 29557:1 29570:1 29583:1 29610:2 29625:2 29632:2 29669:1 29686:1 29689:2 29692:3 29693:1 29744:1 29754:1 29762:2 29765:1 29795:1 29806:2 29832:1 29852:1 29853:1 29859:1 29871:1 29880:2 29890:1 29892:1 29954:1 29985:1 30006:1 30015:1 30032:1 30036:2 30042:1 30052:1 30080:1 30091:1 30102:1 30122:1 30128:1 30144:2 30145:1 30147:1 30152:1 30157:1 30181:1 30249:3 30258:1 30266:9 30268:1 30269:1 30273:1 30281:1 30285:1 30301:1 30329:2 30331:1 30339:2 30375:2 30378:1 30386:1 30402:1 30404:1 30426:1 30430:3 30438:4 30447:1 30465:1 30467:1 30480:2 30484:2 30489:1 30490:1 30496:1 30515:1 30521:1 30537:1 30543:1 30557:1 30563:1 30586:1 30591:1 30622:1 30640:2 30662:2 30663:3 30668:4 30671:1 30681:1 30701:1 30706:1 30711:2 30719:1 30743:1 30752:1 30765:1 30796:2 30811:1 30836:1 30850:1 30885:1 30888:1 30893:2 30923:4 30926:3 30936:1 30940:1 30949:1 30960:1 31004:1 31022:1 31030:1 31060:2 31064:1 31092:1 31134:1 31148:1 31157:1 31158:1 31180:1 31201:2 31214:2 31216:1 31226:1 31242:1 31280:1 31322:1 31334:3 31355:5 31358:3 31359:1 31376:1 31378:1 31396:1 31415:1 31427:1 31449:1 31450:1 31453:1 31455:1 31456:2 31478:1 31479:1 31511:1 31544:2 31553:1 31558:1 31565:3 31569:1 31570:2 31577:1 31579:2 31583:1 31584:1 31586:1 31598:1 31606:2 31612:1 31640:1 31650:1 31664:1 31667:3 31670:1 31680:3 31696:2 31709:1 31722:1 31745:1 31746:2 31753:1 31774:1 31775:1 31798:1 31799:1 31835:1 31836:1 31839:1 31845:1 31857:1 31864:1 31875:1 31904:1 31916:1 31920:1 31966:1 31982:2 31991:1 32016:2 32017:1 32019:2 32036:1 32055:1 32068:1 32080:1 32084:1 32150:2 32175:1 32178:1 32182:1 32199:1 32200:1 32209:1 32216:2 32230:1 32236:1 32244:1 32252:3 32256:1 32257:1 32284:1 32288:1 32297:1 32299:3 32328:3 32331:1 32346:1 32365:1 32384:4 32405:1 32414:1 32492:4 32507:3 32510:1 32521:1 32528:4 32533:1 32562:1 32575:1 32578:1 32646:1 32653:1 32711:1 32713:1 32728:1 32772:1 32779:1 32783:1 32787:1 32792:1 32800:1 32835:1 32841:1 32853:1 32862:1 32865:1 32870:1 32874:4 32879:1 32880:3 32881:2 32908:1 32910:1 32928:1 32956:1 32974:1 32986:2 33006:2 33012:3 33020:1 33026:1 33039:2 33054:2 33070:2 33085:1 33118:2 33144:1 33203:2 33211:1 33212:1 33215:1 33216:2 33230:1 33250:1 33267:1 33312:1 33349:1 33356:1 33386:1 33394:1 33399:1 33400:1 33406:4 33444:2 33452:3 33480:1 33507:1 33514:2 33518:1 33523:1 33527:1 33531:2 33533:3 33534:1 33548:1 33549:4 33553:1 33560:5 33620:1 33654:1 33698:1 33712:2 33721:2 33723:1 33728:1 33767:2 33773:1 33811:1 33825:1 33828:1 33844:1 33849:2 33856:2 33861:2 33889:2 33896:1 33897:1 33909:1 33925:1 33926:1 33932:1 33934:1 33935:1 33936:1 33938:1 33942:1 33950:1 33974:1 33986:1 33998:1 34004:1 34015:1 34018:2 34023:2 34029:1 34040:2 34047:1 34059:1 34060:1 34067:1 34068:2 34116:1 34132:2 34139:1 34146:1 34170:1 34172:1 34182:1 34184:1 34185:1 34197:1 34200:1 34212:2 34219:1 34230:1 34263:2 34267:2 34285:1 34286:1 34323:1 34338:2 34372:1 34393:2 34410:1 34442:2 34479:1 34488:2 34495:1 34505:1 34506:1 34530:1 34574:1 34587:1 34591:1 34616:1 34624:2 34633:1 34664:3 34668:1 34674:4 34696:1 34709:1 34727:1 34739:1 34748:1 34753:1 34757:1 34773:13 34774:1 34776:1 34794:1 34797:1 34810:5 34833:2 34844:1 34857:1 34880:1 34881:1 34917:1 34919:1 34932:2 34963:5 34966:1 34971:1 34981:1 34982:1 35001:1 35004:6 35014:1 35015:1 35024:1 35025:1 35027:1 35028:1 35048:1 35054:1 35058:1 35063:1 35070:1 35074:4 35082:1 35102:1 35117:2 35141:1 35154:2 35161:1 35179:2 35203:1 35223:1 35249:2 35253:2 35297:1 35302:1 35305:1 35310:1 35316:1 35324:1 35335:1 35352:1 35360:1 35377:3 35378:1 35382:1 35384:1 35402:1 35417:1 35437:3 35442:1 35459:1 35464:1 35470:1 35515:1 35565:3 35593:2 35622:1 35646:3 35649:2 35675:1 35684:1 35689:1 35708:1 35714:1 35741:1 35742:1 35746:1 35751:1 35763:1 35837:1 35844:1 35846:1 35864:2 35882:1 35899:1 35911:1 35932:2 35943:1 35959:1 35978:1 35985:1 36010:1 36016:1 36019:1 36022:1 36053:1 36079:1 36104:2 36128:2 36129:1 36158:1 36170:3 36178:1 36202:1 36203:1 36235:1 36292:1 36312:1 36318:1 36326:3 36327:1 36328:1 36329:3 36332:1 36333:1 36334:2 36340:2 36342:2 36343:2 36351:1 36352:2 36366:1 36368:1 36370:1 36371:1 36392:1 36396:1 36410:1 36415:1 36426:2 36433:1 36438:1 36442:1 36473:1 36477:1 36482:1
15 8:1 48:1 82:3 114:1 129:2 151:1 192:1 193:4 212:1 216:2 225:1 255:1 256:1 257:2 258:1 275:1 277:2 281:1 300:1 318:1 321:3 325:1 348:1 371:2 392:2 404:1 419:1 426:2 451:4 453:2 456:2 493:2 511:1 515:1 540:1 551:3 564:1 578:1 595:2 625:1 649:1 677:1 680:1 682:1 690:1 692:1 707:1 712:1 726:3 730:1 733:2 738:1 742:1 745:1 759:6 769:1 772:1 773:2 776:2 783:1 787:1 848:1 877:3 897:1 911:1 916:1 917:1 936:4 941:1 952:2 1002:1 1008:1 1042:2 1047:1 1048:1 1068:2 1071:1 1073:1 1075:1 1078:2 1081:1 1084:1 1085:2 1093:1 1095:1 1096:1 1099:1 1103:2 1131:2 1133:1 1135:3 1140:1 1145:2 1148:1 1154:1 1167:3 1177:1 1183:1 1192:1 1194:1 1208:1 1222:1 1231:2 1237:3 1247:1 1272:2 1274:1 1275:1 1305:1 1307:1 1316:1 1348:2 1349:1 1393:1 1396:2 1411:1 1418:2 1423:2 1450:1 1467:1 1473:3 1474:1 1482:1 1525:2 1535:1 1541:1 1542:1 1546:1 1553:1 1554:2 1577:1 1606:1 1607:1 1615:1 1624:1 1634:1 1635:1 1654:1 1662:1 1663:1 1667:1 1723:1 1737:2 1738:1 1746:2 1750:1 1752:1 1757:7 1796:1 1799:1 1803:2 1807:2 1809:2 1815:1 1816:1 1819:5 1835:1 1849:1 1854:1 1870:1 1892:1 1901:4 1904:1 1905:4 1913:2 1919:2 1938:1 1954:1 1955:1 1967:1 1997:2 2004:2 2006:2 2010:1 2017:1 2022:1 2041:3 2070:1 2071:1 2074:1 2097:1 2114:1 2115:1 2118:2 2128:1 2131:1 2145:2 2148:2 2149:1 2154:1 2171:2 2194:1 2196:1 2223:1 2224:1 2227:1 2232:1 2234:2 2237:1 2239:2 2242:1 2301:1 2309:1 2313:1 2328:1 2358:1 2371:1 2374:4 2381:1 2393:2 2398:1 2411:1 2517:1 2564:1 2582:1 2596:1 2601:1 2633:3 2673:1 2684:2 2712:1 2742:2 2743:1 2777:1 2780:1 2787:1 2789:2 2791:3 2801:2 2805:2 2810:1 2811:2 2812:2 2813:2 2817:1 2820:4 2821:1 2840:1 2860:1 2861:2 2905:2 2938:1 2986:2 2989:1 2990:2 3041:1 3049:3 3063:2 3101:1 3138:1 3167:1 3172:2 3193:1 3197:1 3202:1 3214:1 3229:1 3302:1 3314:2 3322:2 3326:1 3353:1 3356:1 3359:1 3360:3 3363:1 3367:1 3370:1 3394:1 3421:1 3423:3 3432:1 3495:1 3505:2 3513:1 3517:1 3518:1 3547:2 3552:1 3559:1 3569:5 3576:4 3577:1 3589:1 3615:2 3632:2 3635:4 3653:1 3658:1 3660:1 3664:1 3666:1 3669:2 3675:1 3678:1 3705:1 3711:2 3716:1 3746:1 3749:1 3758:1 3771:2 3775:1 3795:1 3820:1 3853:1 3866:1 3886:1 3904:1 3945:1 3962:1 4033:2 4047:1 4055:1 4083:1 4091:1 4103:1 4106:1 4148:3 4161:1 4175:1 4178:1 4179:1 4219:1 4221:1 4224:1 4231:1 4261:3 4264:1 4307:1 4319:1 4333:1 4380:1 4413:1 4416:1 4439:1 4450:1 4452:2 4455:1 4463:1 4465:1 4484:1 4498:2 4501:1 4536:1 4541:1 4549:1 4553:1 4556:1 4590:1 4602:1 4604:2 4606:1 4608:1 4624:1 4646:1 4678:1 4687:2 4688:3 4708:1 4724:1 4730:1 4741:1 4742:1 4745:2 4771:2 4774:2 4820:2 4821:4 4826:2 4859:1 4873:1 4874:1 4888:1 4894:1 4898:1 4911:1 4933:1 4959:1 4969:1 4974:1 4998:2 5001:1 5002:1 5018:1 5027:2 5028:1 5032:1 5054:1 5063:1 5102:1 5132:1 5177:2 5201:1 5232:1 5246:1 5255:3 5259:1 5287:1 5294:2 5298:1 5310:1 5314:1 5344:1 5347:1 5357:1 5366:1 5378:4 5411:1 5412:1 5421:1 5438:1 5489:1 5506:1 5519:1 5522:1 5531:1 5543:2 5581:2 5583:1 5590:1 5607:1 5620:1 5623:1 5625:1 5664:1 5677:1 5683:2 5689:3 5697:1 5718:2 5719:2 5730:2 5743:1 5747:1 5822:1 5832:2 5838:2 5855:2 5865:1 5866:2 5885:1 5920:1 5921:1 5923:1 5925:2 5928:2 6004:1 6007:2 6014:1 6016:2 6021:1 6097:7 6132:1 6140:1 6145:1 6153:1 6167:1 6168:1 6172:2 6237:4 6257:2 6258:1 6263:1 6264:1 6266:1 6270:1 6273:2 6277:1 6281:1 6283:1 6287:1 6288:2 6289:1 6291:1 6315:1 6316:1 6321:1 6401:2 6404:1 6435:1 6442:1 6449:1 6454:1 6458:2 6475:1 6476:1 6508:1 6529:2 6533:3 6543:1 6564:1 6567:1 6584:2 6587:3 6605:3 6612:1 6630:3 6650:1 6695:2 6737:1 6740:1 6747:1 6772:4 6802:2 6806:1 6822:1 6829:2 6853:3 6877:1 6896:1 6904:1 6909:1 6921:1 6922:1 6934:1 6936:1 6942:1 6963:3 6987:1 7016:1 7037:2 7061:1 7115:1 7136:1 7177:1 7184:1 7187:1 7202:3 7209:1 7227:1 7236:1 7245:1 7257:1 7272:1 7281:1 7288:1 7319:1 7321:1 7322:2 7323:1 7335:1 7351:2 7368:1 7385:1 7434:1 7439:1 7444:1 7517:1 7536:1 7566:1 7575:1 7583:1 7591:1 7627:2 7633:1 7637:1 7661:1 7685:1 7689:1 7726:2 7743:4 7747:1 7749:1 7764:2 7765:1 7778:1 7782:1 7785:1 7790:1 7830:3 7836:3 7922:2 7936:1 7950:3 7958:1 7964:1 7973:1 8045:1 8050:1 8056:1 8062:1 8065:1 8073:2 8075:1 8083:2 8084:2 8085:3 8086:1 8088:2 8091:2 8092:1 8099:3 8101:4 8135:1 8136:1 8147:1 8151:1 8162:1 8163:1 8176:1 8193:1 8196:3 8210:2 8212:2 8213:1 8223:1 8226:1 8233:2 8252:1 8262:1 8269:3 8282:1 8286:2 8296:1 8304:1 8362:1 8371:1 8378:1 8389:1 8413:3 8416:1 8420:4 8422:1 8425:1 8457:2 8459:1 8464:1 8477:1 8527:3 8557:1 8558:1 8565:1 8574:1 8607:1 8615:1 8661:1 8662:1 8671:1 8678:1 8687:1 8690:1 8700:1 8743:2 8748:1 8757:1 8761:1 8762:4 8777:1 8802:1 8814:1 8818:2 8846:1 8874:1 8897:2 8917:1 8929:1 8943:1 8952:1 8959:2 8965:1 8966:1 8972:2 8992:2 9016:5 9021:2 9024:1 9046:2 9061:3 9066:1 9068:1 9087:3 9110:1 9130:4 9140:1 9191:1 9192:1 9201:1 9203:1 9215:1 9234:1 9239:1 9243:1 9252:1 9282:1 9289:5 9311:1 9349:1 9352:1 9390:2 9412:1 9420:1 9433:3 9466:1 9489:1 9505:1 9535:2 9539:1 9540:1 9544:2 9547:1 9557:1 9560:1 9561:1 9576:1 9586:1 9595:2 9608:1 9609:1 9617:1 9618:1 9622:1 9633:1 9655:1 9658:1 9671:2 9677:3 9678:2 9680:1 9691:1 9710:4 9743:1 9754:1 9786:2 9789:6 9813:2 9817:1 9850:1 9858:2 9862:1 9875:1 9881:21 9892:1 9904:2 9905:5 9927:1 9937:1 9940:1 9948:2 9949:1 9956:1 9971:1 9988:1 9989:1 10008:1 10019:1 10027:1 10034:1 10039:1 10057:3 10063:1 10089:1 10090:1 10119:1 10122:4 10125:1 10133:1 10140:1 10145:1 10147:1 10176:1 10187:1 10189:1 10197:3 10228:1 10239:2 10270:1 10279:1 10292:1 10302:1 10320:1 10326:1 10328:3 10340:1 10353:1 10381:1 10387:2 10395:2 10402:1 10413:1 10419:4 10441:1 10445:1 10470:3 10471:11 10487:1 10489:1 10500:1 10501:1 10514:1 10523:1 10532:1 10536:2 10547:1 10548:3 10558:1 10572:1 10578:2 10594:3 10596:2 10607:1 10618:1 10630:1 10647:4 10686:1 10701:1 10705:1 10714:1 10753:2 10758:1 10761:1 10772:3 10773:1 10779:1 10788:1 10820:1 10857:1 10860:1 10887:1 10899:2 10902:1 10910:1 10912:1 10932:1 10958:1 10961:1 10963:2 10965:1 10967:1 10970:1 10973:1 10976:3 10982:1 10983:1 11003:1 11006:1 11019:1 11029:1 11037:1 11058:1 11061:1 11083:1 11084:2 11086:1 11091:1 11107:1 11115:1 11138:1 11142:1 11158:1 11166:2 11190:1 11207:2 11208:8 11216:1 11227:1 11231:1 11238:1 11249:3 11261:1 11264:1 11284:1 11304:1 11311:1 11320:1 11323:1 11342:1 11351:2 11358:1 11386:1 11396:7 11429:2 11442:1 11573:1 11586:1 11594:1 11599:1 11611:1 11617:1 11638:1 11648:1 11650:2 11668:1 11672:1 11673:1 11685:2 11696:4 11725:1 11733:1 11743:3 11746:1 11779:2 11789:1 11793:1 11807:1 11818:1 11824:2 11850:1 11853:1 11867:2 11913:2 11960:1 11984:1 11999:1 12013:2 12015:2 12016:1 12039:1 12040:1 12050:1 12051:1 12075:1 12078:1 12086:1 12092:2 12095:1 12096:1 12131:3 12132:1 12153:2 12183:1 12199:1 12216:1 12220:1 12224:1 12234:1 12236:1 12240:1 12242:1 12243:1 12244:1 12245:1 12285:1 12324:1 12332:1 12337:1 12386:5 12403:1 12413:2 12427:2 12438:1 12442:1 12451:1 12479:1 12480:1 12486:1 12526:1 12567:1 12588:1 12597:1 12624:1 12633:1 12644:1 12645:3 12660:1 12682:1 12702:2 12708:2 12734:1 12769:2 12772:1 12776:2 12784:2 12786:1 12792:1 12802:1 12806:1 12809:1 12810:2 12811:2 12827:1 12846:1 12847:1 12855:1 12860:1 12888:8 12907:1 12918:1 12921:3 12947:2 12974:3 12975:1 12985:1 13006:1 13020:3 13021:1 13023:1 13032:1 13053:1 13072:1 13079:1 13086:1 13104:1 13112:1 13114:1 13115:1 13123:1 13126:1 13135:1 13137:2 13139:1 13146:3 13228:1 13229:1 13230:1 13241:1 13248:1 13254:1 13259:1 13267:1 13297:1 13307:4 13311:2 13335:1 13337:1 13376:1 13377:2 13378:1 13384:1 13392:1 13420:1 13443:6 13476:2 13490:1 13532:1 13540:8 13579:2 13580:2 13588:1 13593:1 13599:1 13611:1 13627:1 13636:1 13642:1 13648:2 13653:1 13666:1 13676:3 13680:1 13738:1 13742:1 13743:1 13745:1 13762:1 13769:1 13773:1 13777:1 13792:1 13813:1 13844:1 13855:1 13871:1 13899:1 13916:1 13949:1 13952:1 13956:2 13977:2 13982:2 13994:1 13998:1 14031:1 14033:1 14096:1 14107:2 14127:1 14129:2 14132:1 14150:2 14151:2 14165:1 14166:1 14167:1 14170:1 14180:1 14192:2 14195:1 14208:1 14210:2 14214:1 14221:1 14227:1 14244:1 14278:2 14281:1 14288:3 14297:1 14326:1 14333:1 14371:1 14390:1 14397:1 14437:2 14439:1 14442:1 14459:1 14472:4 14482:1 14492:1 14493:1 14494:1 14503:1 14507:3 14520:1 14530:1 14543:1 14544:1 14552:1 14590:1 14592:1 14617:1 14619:1 14621:1 14631:1 14638:1 14640:1 14667:1 14683:1 14702:1 14705:1 14718:1 14720:1 14731:1 14750:1 14765:1 14787:1 14806:2 14829:1 14841:1 14865:1 14894:3 14915:1 14920:1 14921:1 14954:2 14969:1 14978:4 14982:1 14985:3 14988:1 14989:1 14997:1 14998:1 15008:1 15030:1 15038:1 15044:1 15046:1 15057:1 15061:1 15071:3 15074:2 15110:3 15138:1 15174:1 15211:1 15221:2 15228:1 15229:1 15258:1 15264:1 15300:1 15308:1 15315:1 15334:2 15344:2 15345:3 15349:1 15354:1 15361:1 15368:1 15380:1 15391:1 15397:1 15400:1 15425:3 15444:1 15471:1 15472:4 15473:1 15486:1 15497:1 15503:1 15510:5 15517:2 15530:1 15534:1 15547:1 15552:1 15563:3 15584:1 15594:3 15609:1 15616:1 15624:1 15631:1 15641:1 15646:2 15653:1 15655:1 15676:1 15706:5 15721:3 15729:3 15743:1 15753:3 15768:1 15779:1 15789:1 15823:3 15839:1 15845:1 15865:1 15907:1 15936:1 15938:1 15960:1 15971:1 15978:1 16011:1 16024:1 16031:1 16033:1 16034:2 16036:1 16043:1 16045:2 16048:1 16082:1 16088:1 16112:1 16136:2 16145:1 16184:1 16212:1 16213:1 16218:1 16226:1 16233:1 16253:1 16261:1 16285:1 16287:5 16316:2 16319:1 16323:1 16333:2 16355:1 16367:1 16390:1 16434:1 16469:1 16483:1 16540:1 16557:1 16559:1 16580:1 16581:2 16586:2 16640:1 16713:1 16734:1 16738:1 16757:1 16762:1 16773:1 16788:1 16800:1 16802:9 16824:1 16836:1 16838:1 16840:2 16857:1 16866:1 16879:6 16885:1 16895:1 16899:1 16910:1 16911:1 16913:1 16934:1 16982:7 16993:1 16994:4 16997:1 17002:1 17021:1 17029:1 17031:1 17042:2 17051:1 17059:2 17073:2 17081:6 17086:1 17092:3 17144:1 17151:2 17156:3 17163:1 17166:1 17177:1 17188:1 17203:1 17205:1 17234:2 17239:1 17247:1 17269:1 17278:3 17305:1 17332:1 17345:1 17347:1 17371:1 17384:1 17408:1 17432:1 17436:1 17440:1 17449:1 17460:1 17469:1 17481:1 17518:1 17528:1 17552:1 17561:5 17567:3 17585:1 17621:1 17674:1 17675:1 17679:1 17686:1 17693:2 17744:1 17757:1 17770:1 17775:2 17777:1 17786:2 17790:1 17810:1 17813:1 17815:1 17831:1 17872:1 17909:1 17914:1 17918:2 17930:2 17938:1 17943:1 17950:1 17959:3 17989:2 18005:2 18055:1 18058:1 18074:1 18161:1 18174:1 18220:2 18228:1 18230:1 18232:1 18235:1 18245:1 18248:1 18263:1 18314:1 18338:1 18340:1 18345:3 18359:2 18384:2 18385:1 18389:1 18403:1 18407:1 18422:1 18429:2 18456:1 18467:1 18493:1 18503:1 18513:3 18536:1 18561:1 18564:1 18574:1 18608:2 18629:2 18662:1 18664:1 18687:1 18698:1 18718:6 18727:2 18742:3 18745:1 18746:1 18750:9 18757:1 18806:2 18827:1 18868:1 18902:1 18919:1 18921:2 18932:1 18947:1 18988:1 18989:1 19011:1 19018:3 19025:1 19036:6 19058:2 19083:1 19084:1 19087:3 19089:1 19112:3 19123:2 19129:2 19156:5 19179:6 19181:1 19202:1 19203:1 19237:1 19271:1 19282:1 19293:1 19308:1 19328:2 19335:2 19345:1 19365:3 19389:1 19394:1 19395:1 19439:2 19450:1 19473:1 19484:1 19505:1 19531:1 19589:1 19630:1 19631:1 19641:1 19659:2 19665:2 19670:1 19682:1 19695:3 19703:1 19713:2 19728:2 19756:1 19757:1 19767:1 19786:1 19788:2 19812:1 19852:1 19867:1 19875:1 19912:1 19915:1 19919:1 19924:6 19929:1 19946:1 19964:1 19980:1 19981:1 19984:2 20022:3 20102:1 20106:1 20128:2 20129:3 20130:1 20143:4 20147:1 20164:1 20170:1 20189:1 20190:2 20192:1 20193:1 20194:1 20200:2 20201:1 20212:1 20226:4 20234:1 20247:1 20297:1 20299:2 20303:1 20304:2 20306:6 20334:1 20343:4 20353:1 20382:1 20390:1 20391:1 20413:1 20434:1 20437:1 20445:1 20448:1 20484:1 20488:1 20502:4 20518:2 20544:2 20546:3 20557:1 20580:1 20594:1 20597:1 20608:2 20619:1 20627:1 20632:1 20645:1 20652:1 20657:5 20662:3 20667:1 20672:1 20686:1 20698:1 20730:1 20733:1 20822:1 20823:1 20852:1 20857:2 20865:1 20874:1 20877:1 20893:2 20899:1 20904:1 20907:1 20920:1 20940:2 20955:3 20957:2 20965:1 20973:7 20983:1 21029:1 21032:1 21039:1 21087:1 21096:1 21108:1 21115:1 21139:1 21159:1 21172:1 21185:1 21193:1 21196:1 21225:1 21226:1 21236:1 21253:1 21256:1 21257:1 21274:1 21282:1 21293:1 21294:2 21309:1 21311:1 21327:1 21333:4 21378:3 21396:1 21433:2 21451:1 21455:1 21476:1 21496:1 21505:1 21510:3 21514:1 21515:1 21543:1 21546:1 21595:25 21599:2 21631:1 21645:1 21661:1 21662:1 21668:1 21681:1 21683:1 21690:1 21691:1 21722:1 21724:1 21749:1 21750:1 21783:1 21797:1 21855:1 21870:1 21923:2 21924:1 21929:1 21942:1 21944:1 21945:1 21949:2 21975:1 22063:1 22068:1 22115:1 22126:1 22129:1 22148:1 22170:1 22172:1 22175:2 22179:1 22184:1 22188:1 22193:2 22196:1 22201:1 22238:1 22248:3 22281:3 22282:3 22304:1 22333:1 22355:2 22382:1 22400:1 22406:3 22408:1 22414:4 22420:1 22429:3 22430:1 22451:1 22460:1 22462:1 22475:1 22477:1 22484:1 22486:1 22497:1 22518:1 22520:1 22529:1 22546:1 22574:1 22575:5 22582:1 22584:1 22616:1 22629:1 22666:2 22674:2 22679:1 22696:1 22698:1 22761:1 22788:1 22791:1 22795:1 22803:1 22851:1 22864:2 22878:1 22912:1 22915:1 22922:1 22969:1 22973:1 22991:1 22997:1 23015:1 23025:2 23060:1 23091:1 23126:1 23177:1 23197:1 23200:2 23215:1 23232:1 23242:1 23251:1 23255:1 23256:1 23297:2 23306:1 23307:1 23322:1 23325:1 23401:2 23413:2 23450:1 23464:3 23480:1 23527:1 23540:1 23543:1 23549:1 23555:4 23568:1 23584:2 23591:1 23613:1 23619:1 23660:1 23664:1 23667:1 23690:1 23721:2 23725:3505 23753:1 23764:1 23769:1 23784:1 23811:1 23856:2 23864:1 23867:1 23903:2 23935:1 23945:1 23948:1 23969:1 23978:1 23991:1 23994:1 23995:1 23997:1 24000:1 24001:1 24018:1 24053:2 24083:1 24084:1 24089:1 24102:1 24125:1 24134:1 24146:1 24150:1 24153:1 24159:1 24166:1 24170:1 24179:1 24204:1 24222:1 24237:1 24238:1 24242:1 24244:1 24245:2 24277:1 24281:3 24284:1 24354:1 24357:2 24364:1 24377:1 24393:1 24399:1 24409:1 24415:1 24435:1 24441:2 24452:1 24453:1 24456:1 24465:1 24489:1 24515:1 24520:1 24531:1 24533:1 24545:9 24580:1 24588:1 24593:6 24597:1 24604:1 24631:3 24641:1 24669:1 24700:3 24713:1 24723:1 24763:1 24777:1 24781:1 24804:1 24805:4 24848:3 24851:1 24854:1 24856:1 24874:2 24875:1 24881:1 24898:1 24913:1 24933:1 24940:1 24982:1 24988:2 25031:1 25042:1 25047:1 25055:1 25072:1 25101:1 25111:1 25112:1 25118:1 25122:1 25127:1 25141:1 25170:1 25206:2 25238:1 25253:1 25261:1 25265:2 25267:1 25275:1 25281:2 25283:1 25286:1 25308:1 25312:1 25327:1 25328:3 25346:1 25354:1 25356:1 25357:7 25376:3 25380:1 25382:1 25398:2 25408:1 25411:1 25413:1 25424:1 25425:1 25437:1 25451:1 25453:2 25492:2 25497:1 25531:3 25532:1 25534:1 25541:1 25552:2 25555:1 25563:1 25609:1 25623:1 25710:4 25724:1 25735:1 25769:1 25774:2 25782:1 25841:3 25844:1 25890:2 25892:2 25896:1 25900:1 25907:1 25919:1 25931:1 25944:2 25952:1 25977:4 25981:2 25990:1 25994:1 25998:2 26001:1 26006:1 26035:1 26046:1 26050:1 26054:1 26057:1 26062:1 26070:1 26078:1 26084:1 26090:1 26102:1 26105:2 26119:1 26124:1 26156:2 26169:3 26199:1 26200:2 26218:1 26233:1 26242:1 26250:7 26258:1 26262:2 26275:1 26276:1 26279:1 26287:1 26301:1 26305:1 26308:5 26314:1 26326:2 26330:2 26337:1 26372:1 26379:1 26392:1 26394:2 26398:6 26404:1 26417:1 26422:1 26424:3 26440:2 26456:1 26468:1 26475:1 26489:1 26504:1 26524:1 26529:1 26534:1 26537:1 26541:2 26544:1 26560:3 26561:1 26562:1 26563:2 26585:1 26589:2 26608:1 26665:2 26681:1 26695:1 26697:1 26698:1 26700:1 26703:1 26717:1 26729:4 26734:1 26757:1 26760:1 26761:1 26808:1 26836:3 26838:1 26846:1 26855:1 26856:1 26857:2 26858:1 26876:1 26883:1 26889:1 26897:3 26899:1 26904:1 26914:1 26944:1 26965:2 26990:1 27002:2 27005:3 27053:1 27073:1 27091:1 27092:2 27095:1 27101:1 27108:2 27116:1 27127:2 27139:1 27141:2 27156:1 27162:1 27172:1 27178:1 27193:1 27298:2 27303:2 27306:2 27332:1 27333:2 27345:2 27347:1 27371:1 27390:1 27396:1 27415:1 27475:1 27482:3 27498:2 27503:3 27516:1 27524:3 27538:1 27545:1 27548:2 27549:1 27560:1 27592:1 27598:1 27609:1 27624:1 27660:1 27662:1 27671:1 27677:1 27710:3 27750:1 27772:1 27773:1 27803:1 27806:1 27810:2 27823:1 27824:1 27838:1 27841:1 27853:1 27864:1 27868:1 27886:1 27928:1 27930:1 27941:1 27956:1 27981:1 27982:1 27983:1 27984:1 28002:1 28029:1 28038:1 28045:3 28069:3 28079:2 28086:1 28087:1 28090:1 28091:1 28094:10 28102:1 28109:1 28115:1 28125:1 28126:1 28136:1 28155:1 28174:1 28189:1 28192:1 28198:1 28199:1 28218:1 28226:1 28227:2 28273:1 28280:1 28314:1 28342:1 28354:1 28403:2 28404:1 28423:2 28427:1 28433:2 28486:1 28488:1 28498:1 28519:1 28529:1 28537:1 28538:1 28548:1 28550:1 28580:1 28632:1 28659:1 28675:1 28690:1 28699:1 28730:2 28741:1 28744:2 28759:1 28786:1 28839:2 28854:1 28863:1 28876:1 28877:2 28884:1 28976:1 28991:1 28998:1 28999:2 29007:1 29010:1 29016:1 29021:1 29031:1 29032:1 29056:1 29058:3 29059:1 29091:2 29105:2 29141:1 29146:1 29156:1 29168:1 29172:3 29181:1 29187:1 29198:1 29203:2 29205:1 29217:1 29239:1 29263:2 29279:1 29285:1 29290:1 29303:1 29304:2 29307:1 29311:1 29322:1 29335:3 29351:2 29353:1 29375:2 29405:1 29426:1 29428:2 29429:1 29434:1 29437:1 29451:1 29465:1 29506:1 29516:1 29521:1 29529:1 29539:1 29553:4 29555:1 29557:1 29570:1 29583:1 29610:2 29625:2 29632:2 29669:1 29686:1 29689:2 29692:3 29693:1 29744:1 29754:1 29762:2 29765:1 29795:1 29806:2 29832:1 29852:1 29853:1 29859:1 29871:1 29880:2 29890:1 29892:1 29954:1 29985:1 30006:1 30015:2 30032:1 30036:2 30042:1 30052:1 30080:1 30091:1 30102:1 30122:1 30128:1 30144:2 30145:1 30147:1 30152:1 30157:1 30181:1 30249:3 30258:1 30266:9 30268:1 30269:1 30273:1 30281:1 30285:1 30301:1 30329:2 30331:1 30339:2 30375:2 30378:1 30386:1 30402:1 30404:1 30426:1 30430:3 30438:4 30447:1 30465:1 30467:1 30480:2 30484:2 30489:1 30490:1 30496:1 30515:1 30521:1 30537:1 30543:1 30557:1 30563:1 30586:1 30591:1 30622:1 30640:2 30662:2 30663:3 30668:4 30671:1 30681:1 30701:1 30706:1 30711:2 30719:1 30743:1 30752:1 30765:1 30796:2 30811:1 30836:1 30850:1 30885:1 30888:1 30893:2 30923:4 30926:3 30936:1 30940:1 30949:1 30960:1 31004:1 31022:1 31030:1 31060:2 31064:1 31092:1 31134:1 31148:1 31157:1 31158:1 31180:1 31201:2 31214:2 31216:1 31226:1 31242:1 31280:1 31322:1 31334:3 31355:5 31358:3 31359:1 31376:1 31378:1 31396:1 31415:1 31427:1 31449:1 31450:1 31453:1 31455:2 31456:2 31478:1 31479:1 31511:1 31544:2 31553:1 31558:1 31565:3 31569:1 31570:2 31577:1 31579:2 31583:1 31584:1 31586:1 31598:1 31606:2 31612:1 31640:1 31650:1 31664:1 31667:3 31670:1 31680:3 31696:2 31709:1 31722:1 31745:1 31746:2 31753:1 31774:1 31775:1 31798:1 31799:1 31835:1 31836:1 31839:1 31845:1 31857:1 31864:1 31875:1 31904:1 31916:1 31920:1 31966:1 31982:2 31991:1 32016:2 32017:1 32019:2 32036:1 32055:1 32068:1 32080:1 32084:1 32114:1 32150:2 32175:1 32178:2 32182:1 32199:1 32200:1 32209:1 32216:2 32230:1 32236:1 32244:1 32252:3 32256:1 32257:1 32284:1 32288:1 32297:1 32299:3 32328:3 32331:1 32346:1 32365:1 32384:4 32405:1 32414:1 32492:4 32507:3 32510:1 32521:1 32528:4 32533:1 32562:1 32575:1 32578:1 32646:1 32653:1 32711:1 32713:1 32728:1 32772:1 32778:1 32779:1 32783:1 32787:1 32792:1 32800:1 32835:1 32841:1 32853:1 32862:1 32865:1 32870:1 32874:4 32879:1 32880:3 32881:2 32908:1 32910:1 32928:1 32956:1 32974:1 32986:2 33006:2 33012:3 33020:1 33026:1 33039:2 33054:2 33070:2 33085:1 33118:2 33143:1 33144:1 33203:2 33211:1 33212:1 33215:1 33216:2 33230:1 33250:1 33267:1 33312:1 33349:1 33356:1 33386:1 33394:1 33399:1 33400:1 33406:4 33444:2 33452:3 33480:1 33507:1 33514:2 33518:1 33523:1 33527:1 33531:2 33533:3 33534:1 33548:1 33549:4 33553:1 33560:5 33620:1 33654:1 33698:1 33712:2 33721:2 33723:1 33728:1 33767:2 33773:1 33811:1 33825:1 33828:1 33844:1 33849:2 33856:2 33861:2 33889:2 33896:1 33897:1 33909:1 33925:1 33926:1 33932:1 33934:1 33935:1 33936:1 33938:1 33942:1 33950:1 33974:1 33986:1 33998:1 34004:1 34015:1 34018:2 34023:2 34029:1 34040:2 34047:1 34059:1 34060:1 34067:1 34068:2 34116:1 34132:2 34139:1 34146:1 34170:1 34172:1 34182:1 34184:1 34185:1 34197:1 34200:1 34212:2 34219:1 34230:1 34263:2 34267:2 34285:1 34286:1 34323:1 34338:2 34372:1 34393:2 34410:1 34442:2 34479:1 34488:2 34495:1 34505:1 34506:1 34530:1 34574:1 34587:1 34591:1 34600:1 34616:1 34624:2 34633:1 34664:3 34668:1 34674:4 34696:1 34709:1 34727:1 34739:1 34748:1 34753:1 34757:1 34773:13 34774:1 34776:1 34794:1 34797:1 34810:6 34833:2 34844:1 34857:1 34880:1 34881:1 34917:1 34919:1 34932:2 34963:5 34966:1 34971:1 34981:1 34982:1 35001:1 35004:6 35014:1 35015:1 35024:1 35025:1 35027:1 35028:1 35048:1 35054:1 35058:1 35063:1 35070:1 35074:4 35082:1 35102:1 35117:2 35141:1 35154:2 35161:1 35179:2 35203:1 35223:1 35249:2 35253:2 35297:1 35302:1 35305:1 35310:1 35316:1 35324:1 35335:1 35352:1 35360:1 35377:3 35378:1 35382:1 35384:1 35402:1 35417:1 35437:3 35442:1 35459:1 35464:1 35470:1 35515:1 35565:3 35593:2 35622:1 35646:3 35649:2 35675:1 35684:1 35689:1 35708:1 35714:1 35741:1 35742:1 35746:1 35751:1 35763:1 35837:1 35844:1 35846:1 35864:2 35882:1 35899:1 35911:1 35932:2 35943:1 35959:1 35978:1 35985:1 36010:1 36016:1 36019:1 36022:1 36053:1 36079:1 36104:2 36128:2 36129:1 36158:1 36170:3 36178:1 36202:1 36203:1 36235:1 36292:1 36312:1 36318:1 36326:3 36327:1 36328:1 36329:3 36332:1 36333:1 36334:2 36340:2 36342:2 36343:2 36351:1 36352:2 36366:1 36368:1 36370:1 36371:1 36392:1 36396:1 36410:1 36415:1 36426:2 36433:1 36438:1 36442:1 36473:1 36477:1 36482:1
15 3:1 8:1 48:1 82:3 114:1 126:1 129:2 151:1 192:1 193:4 212:1 216:2 225:1 255:1 256:1 257:2 258:1 275:1 277:2 281:1 300:1 318:1 321:3 325:1 348:1 371:2 392:2 404:1 419:1 426:2 451:4 453:2 456:2 493:2 511:1 515:1 540:1 551:3 564:1 578:1 595:2 625:1 649:1 677:2 680:1 682:1 690:1 692:1 707:1 712:1 726:3 730:1 733:2 738:1 742:1 745:1 759:7 769:1 772:1 773:2 776:3 783:1 787:1 848:1 877:3 897:1 911:1 916:1 917:1 936:4 941:1 952:2 1002:1 1008:1 1042:2 1047:1 1048:1 1068:2 1071:1 1073:1 1075:1 1078:2 1081:1 1084:1 1085:2 1093:1 1095:1 1096:1 1099:1 1103:2 1131:2 1133:1 1135:3 1140:1 1145:2 1148:1 1154:1 1167:3 1177:1 1183:1 1192:1 1194:1 1208:1 1222:1 1231:2 1237:3 1247:1 1272:2 1274:1 1275:1 1305:1 1307:1 1316:1 1348:2 1349:1 1393:1 1396:2 1411:1 1418:2 1423:2 1431:1 1450:1 1453:1 1467:1 1473:3 1474:1 1482:1 1525:2 1535:1 1541:1 1542:1 1546:1 1553:1 1554:2 1568:1 1577:1 1606:1 1607:1 1615:1 1624:1 1634:1 1635:1 1654:1 1662:1 1663:1 1667:1 1723:1 1737:2 1738:1 1746:2 1750:1 1752:1 1757:7 1796:1 1799:1 1803:2 1807:2 1809:2 1815:1 1816:1 1819:6 1835:1 1849:1 1854:1 1870:1 1892:1 1901:4 1904:1 1905:4 1913:2 1919:2 1938:1 1945:1 1954:1 1955:1 1967:1 1994:1 1997:2 2004:2 2006:2 2010:1 2017:1 2022:1 2041:3 2070:1 2071:1 2074:1 2097:1 2114:1 2115:1 2118:2 2128:1 2131:1 2145:2 2148:2 2149:1 2154:1 2171:2 2194:1 2196:1 2223:1 2224:1 2227:1 2232:1 2234:2 2237:1 2239:2 2242:1 2301:1 2309:1 2313:1 2328:1 2358:1 2371:1 2374:4 2381:1 2393:2 2398:1 2411:1 2517:1 2563:1 2564:1 2582:1 2596:1 2601:1 2633:3 2673:1 2684:2 2712:2 2742:2 2743:1 2777:1 2780:1 2786:1 2787:1 2789:2 2791:3 2801:2 2805:2 2810:1 2811:2 2812:2 2813:2 2817:1 2820:4 2821:1 2823:1 2840:1 2860:1 2861:2 2905:2 2938:1 2986:2 2989:1 2990:2 3041:1 3049:3 3063:2 3101:1 3138:1 3167:1 3172:2 3193:1 3197:1 3202:1 3214:1 3229:1 3302:1 3314:2 3322:2 3326:1 3353:1 3356:1 3359:1 3360:3 3363:1 3367:1 3370:1 3394:1 3421:1 3423:3 3432:1 3495:1 3505:2 3513:1 3517:1 3518:1 3547:2 3552:1 3555:1 3559:1 3569:5 3576:5 3577:2 3589:1 3615:2 3632:2 3635:4 3653:1 3658:1 3660:1 3664:1 3666:1 3669:2 3675:1 3678:1 3705:1 3711:2 3716:1 3746:1 3749:1 3758:1 3771:2 3775:1 3795:1 3820:1 3853:1 3866:1 3886:1 3904:1 3945:1 3962:1 4033:2 4047:1 4055:1 4073:1 4083:1 4091:1 4103:1 4106:1 4148:3 4161:1 4175:1 4178:1 4179:1 4219:1 4221:1 4224:1 4231:1 4261:3 4264:1 4307:1 4319:1 4333:1 4380:1 4413:1 4416:1 4439:1 4450:1 4452:2 4455:1 4463:1 4465:1 4467:1 4484:1 4498:2 4501:1 4536:1 4541:1 4549:1 4553:1 4556:1 4590:1 4602:1 4604:2 4606:1 4608:1 4624:1 4646:1 4678:1 4687:2 4688:4 4708:1 4724:1 4730:1 4741:1 4742:2 4745:2 4771:2 4774:2 4820:2 4821:4 4826:2 4859:1 4873:1 4874:1 4888:2 4894:1 4898:1 4911:1 4933:1 4959:1 4967:1 4969:1 4974:1 4998:2 5001:1 5002:1 5018:1 5027:2 5028:1 5032:1 5054:1 5063:1 5102:1 5107:1 5132:1 5177:2 5201:1 5232:1 5246:1 5255:3 5259:1 5287:1 5294:2 5298:1 5310:1 5314:1 5344:1 5347:1 5357:1 5366:1 5378:4 5411:1 5412:1 5421:1 5438:1 5450:1 5489:1 5506:1 5519:1 5522:1 5531:1 5543:2 5581:2 5583:1 5590:1 5607:1 5620:1 5623:1 5625:1 5664:1 5677:1 5683:2 5689:3 5697:1 5718:2 5719:2 5730:2 5743:1 5747:1 5766:1 5822:1 5832:2 5838:2 5855:3 5865:1 5866:2 5885:1 5920:1 5921:1 5923:1 5925:2 5928:2 6004:1 6007:2 6014:1 6016:2 6021:1 6097:7 6132:2 6140:1 6145:1 6153:1 6167:1 6168:1 6172:2 6237:4 6257:2 6258:1 6263:1 6264:1 6266:1 6270:1 6271:1 6273:3 6277:1 6281:1 6283:1 6287:1 6288:2 6289:1 6291:1 6315:1 6316:1 6321:1 6401:2 6404:1 6435:1 6442:1 6449:1 6454:1 6458:2 6475:1 6476:1 6508:1 6529:2 6533:3 6543:1 6564:1 6567:1 6584:2 6587:3 6605:3 6612:1 6630:3 6650:1 6695:2 6737:1 6740:1 6747:1 6772:4 6802:2 6806:1 6822:1 6829:2 6853:3 6877:1 6896:1 6904:1 6909:1 6921:1 6922:1 6934:1 6936:1 6942:1 6963:3 6987:1 7016:1 7037:2 7061:1 7115:1 7136:1 7177:1 7184:1 7187:1 7202:3 7209:1 7227:1 7236:1 7245:1 7257:1 7272:1 7281:1 7288:1 7319:1 7321:1 7322:2 7323:1 7335:1 7351:2 7368:1 7385:1 7434:1 7439:1 7441:1 7444:1 7517:1 7536:1 7566:1 7575:1 7583:1 7591:1 7627:2 7633:1 7637:1 7661:1 7685:1 7689:1 7726:2 7743:4 7747:1 7749:1 7764:2 7765:1 7778:1 7782:1 7785:1 7790:1 7830:3 7836:3 7922:2 7936:1 7950:3 7958:1 7964:1 7969:1 7973:1 8045:1 8050:1 8056:1 8062:1 8065:1 8073:2 8075:1 8083:2 8084:2 8085:3 8086:1 8088:3 8091:2 8092:1 8099:3 8101:4 8105:1 8135:1 8136:1 8147:1 8151:1 8162:1 8163:1 8176:1 8193:1 8196:3 8210:2 8212:2 8213:1 8223:1 8226:1 8233:2 8252:1 8262:1 8269:3 8282:1 8286:2 8296:1 8304:1 8362:1 8371:1 8378:1 8389:1 8413:3 8416:1 8420:4 8422:1 8425:1 8457:2 8459:1 8464:1 8477:1 8491:1 8525:1 8527:3 8557:1 8558:1 8565:1 8574:1 8607:1 8615:1 8661:1 8662:1 8671:1 8678:1 8687:1 8690:1 8700:1 8743:2 8748:1 8757:1 8761:1 8762:4 8777:1 8802:1 8814:1 8818:2 8846:1 8874:1 8897:2 8917:1 8929:1 8943:1 8952:1 8959:3 8965:1 8966:1 8972:2 8992:2 9011:1 9016:5 9021:2 9024:1 9046:2 9061:3 9066:1 9068:1 9087:4 9110:1 9130:4 9140:1 9191:1 9192:1 9201:1 9203:1 9215:1 9234:1 9239:1 9243:1 9252:1 9282:1 9289:5 9311:1 9349:1 9352:1 9390:2 9412:1 9420:1 9433:3 9466:1 9489:2 9505:1 9535:2 9539:1 9540:1 9544:2 9547:1 9557:1 9560:1 9561:1 9576:1 9586:1 9595:2 9608:1 9609:1 9617:1 9618:1 9622:1 9633:1 9655:1 9658:1 9671:2 9677:3 9678:2 9680:1 9691:1 9710:4 9743:1 9754:1 9786:2 9789:6 9813:2 9817:1 9850:1 9858:2 9862:1 9875:1 9881:23 9892:1 9904:2 9905:5 9927:1 9937:1 9940:1 9948:2 9949:1 9956:1 9971:1 9988:1 9989:1 10008:1 10019:1 10027:1 10034:1 10039:1 10057:3 10063:1 10089:1 10090:1 10119:1 10122:4 10125:1 10133:1 10140:1 10145:1 10147:1 10176:1 10187:1 10189:1 10197:3 10228:1 10239:2 10270:1 10279:1 10292:1 10302:1 10320:1 10326:1 10328:3 10340:1 10353:1 10381:1 10387:2 10395:2 10402:1 10413:1 10419:4 10441:1 10445:1 10470:3 10471:11 10487:1 10489:1 10500:1 10501:1 10514:1 10523:1 10532:1 10536:2 10547:1 10548:3 10558:1 10572:1 10578:2 10594:3 10596:2 10607:2 10618:1 10630:1 10647:4 10686:1 10701:1 10705:1 10714:1 10753:2 10758:1 10761:1 10772:3 10773:1 10779:1 10788:1 10798:1 10820:1 10857:1 10860:1 10887:1 10899:2 10902:1 10910:1 10912:1 10932:1 10958:1 10961:1 10963:2 10965:1 10967:1 10970:1 10973:1 10976:3 10977:1 10982:1 10983:1 11003:1 11006:1 11019:1 11029:1 11037:1 11058:1 11061:1 11083:1 11084:2 11086:1 11091:1 11107:1 11115:1 11138:1 11142:1 11158:1 11166:2 11190:1 11207:2 11208:8 11216:1 11227:1 11231:1 11238:1 11249:3 11261:1 11264:1 11284:1 11304:1 11311:1 11320:1 11323:1 11342:1 11351:2 11358:1 11386:1 11396:7 11429:2 11442:1 11573:1 11586:1 11594:1 11599:1 11611:1 11617:1 11638:1 11648:1 11650:2 11668:1 11672:1 11673:1 11685:2 11696:4 11725:1 11733:1 11743:3 11746:1 11779:2 11789:1 11793:1 11807:1 11818:1 11824:2 11850:1 11853:1 11867:2 11913:2 11938:1 11960:1 11984:1 11999:1 12013:2 12015:2 12016:1 12039:1 12040:1 12050:1 12051:1 12075:1 12078:1 12086:1 12092:2 12095:1 12096:1 12131:3 12132:1 12153:2 12157:1 12183:1 12199:1 12216:1 12220:1 12224:1 12234:1 12236:1 12240:1 12242:1 12243:1 12244:1 12245:1 12285:1 12324:1 12332:1 12337:1 12386:5 12403:1 12413:2 12427:2 12438:1 12442:1 12451:1 12479:1 12480:1 12486:1 12526:1 12567:1 12588:1 12597:1 12605:1 12624:1 12633:1 12644:1 12645:4 12660:1 12682:1 12702:2 12708:2 12734:1 12769:2 12772:1 12776:2 12784:2 12786:1 12792:1 12802:1 12806:1 12809:1 12810:2 12811:2 12827:1 12846:1 12847:1 12855:1 12860:1 12888:8 12907:1 12918:1 12921:3 12947:2 12974:3 12975:1 12985:1 13006:1 13020:3 13021:1 13023:1 13032:1 13053:1 13072:1 13079:1 13086:1 13104:1 13112:1 13114:1 13115:1 13123:1 13126:1 13135:1 13137:2 13139:1 13146:3 13228:1 13229:1 13230:1 13241:1 13248:1 13254:1 13259:1 13267:1 13297:1 13307:4 13311:2 13335:1 13337:1 13376:1 13377:2 13378:1 13384:1 13392:1 13420:1 13429:1 13443:7 13476:2 13490:1 13532:1 13540:8 13560:1 13579:2 13580:2 13588:1 13593:1 13599:1 13611:1 13627:1 13636:1 13642:1 13648:2 13653:1 13666:1 13676:3 13680:1 13738:1 13742:1 13743:1 13745:1 13762:1 13769:1 13773:1 13777:1 13792:1 13813:1 13844:1 13855:1 13871:1 13899:1 13916:1 13949:1 13952:1 13956:2 13977:2 13982:2 13994:1 13998:1 14031:1 14033:1 14096:1 14107:2 14127:1 14129:2 14132:1 14150:2 14151:2 14165:1 14166:1 14167:1 14170:1 14180:1 14192:2 14195:1 14208:1 14210:2 14214:1 14221:1 14227:1 14244:1 14278:2 14281:1 14288:3 14297:1 14326:1 14333:1 14371:1 14390:1 14397:1 14437:2 14439:1 14442:1 14459:1 14472:4 14482:1 14492:1 14493:1 14494:1 14503:1 14507:3 14520:1 14530:1 14543:1 14544:1 14552:1 14590:1 14592:1 14617:1 14619:1 14621:1 14631:1 14638:1 14640:1 14667:1 14683:1 14702:1 14705:1 14718:1 14720:1 14731:1 14750:1 14765:1 14780:1 14787:1 14806:2 14829:1 14841:1 14865:2 14894:3 14915:1 14920:1 14921:1 14954:2 14969:1 14978:4 14982:1 14985:3 14988:1 14989:1 14997:1 14998:1 15008:1 15030:1 15038:1 15044:1 15046:1 15057:1 15061:1 15071:3 15074:2 15110:3 15138:1 15174:1 15211:1 15221:2 15228:1 15229:1 15258:1 15264:1 15300:1 15308:1 15315:1 15334:2 15344:2 15345:3 15349:1 15354:1 15361:1 15368:1 15380:1 15391:1 15397:1 15400:1 15425:3 15444:1 15471:1 15472:4 15473:1 15486:1 15497:1 15503:1 15510:5 15517:2 15530:1 15534:1 15547:1 15552:1 15563:3 15584:1 15594:3 15609:1 15616:1 15624:1 15631:1 15641:1 15646:2 15653:1 15655:1 15676:1 15706:5 15721:3 15729:3 15743:1 15753:3 15768:1 15779:1 15789:1 15823:3 15839:1 15845:1 15862:1 15865:1 15871:1 15907:1 15936:1 15938:1 15960:1 15971:1 15978:1 16011:1 16024:1 16031:1 16033:1 16034:2 16036:1 16043:1 16045:2 16048:1 16082:1 16088:1 16112:1 16136:2 16145:1 16184:1 16212:1 16213:1 16218:1 16226:1 16233:1 16253:1 16261:1 16285:1 16287:6 16316:2 16319:1 16323:1 16333:2 16355:1 16367:1 16390:1 16434:1 16469:1 16483:2 16540:1 16557:1 16559:1 16580:1 16581:2 16586:2 16640:1 16713:1 16734:1 16738:1 16749:1 16757:1 16762:1 16773:1 16788:1 16800:1 16802:10 16824:1 16836:1 16838:1 16840:2 16857:1 16866:1 16879:6 16885:1 16895:1 16899:1 16910:1 16911:1 16913:1 16934:1 16982:7 16993:1 16994:4 16997:1 17002:1 17021:1 17029:1 17031:1 17042:2 17051:1 17059:2 17073:2 17081:6 17086:1 17092:3 17144:1 17151:2 17156:3 17163:1 17166:1 17177:1 17188:1 17203:1 17205:2 17234:2 17239:1 17247:1 17269:1 17278:3 17305:1 17332:1 17345:1 17347:1 17371:1 17384:1 17408:1 17432:1 17436:1 17440:1 17449:1 17460:1 17469:1 17481:1 17518:1 17528:1 17552:1 17561:5 17567:3 17585:1 17621:1 17674:1 17675:1 17679:1 17686:1 17693:2 17744:1 17757:1 17770:1 17775:2 17777:1 17786:2 17790:1 17810:1 17813:1 17815:1 17831:1 17872:1 17909:1 17914:1 17918:2 17930:2 17938:1 17943:1 17950:1 17959:3 17989:2 18005:2 18055:1 18058:1 18074:1 18141:1 18161:1 18174:1 18220:2 18228:1 18230:1 18232:1 18235:1 18240:1 18245:1 18248:1 18263:1 18314:1 18338:1 18340:1 18345:3 18359:2 18384:2 18385:1 18389:1 18403:1 18407:1 18422:1 18429:2 18433:1 18456:1 18467:1 18493:1 18503:1 18513:3 18536:1 18561:1 18564:1 18574:1 18608:2 18629:2 18662:1 18664:1 18687:1 18698:1 18718:6 18727:2 18742:3 18745:1 18746:1 18750:9 18757:1 18806:2 18827:1 18868:1 18902:1 18919:1 18921:2 18932:2 18947:1 18988:1 18989:1 19011:1 19018:4 19025:1 19036:6 19058:2 19083:1 19084:1 19087:3 19089:1 19112:3 19123:2 19129:2 19156:5 19179:6 19181:1 19202:1 19203:1 19237:1 19271:1 19282:1 19293:1 19308:1 19328:2 19335:2 19345:1 19365:3 19389:1 19394:1 19395:1 19439:2 19450:1 19473:1 19484:1 19505:1 19531:1 19589:1 19630:1 19631:1 19641:1 19659:2 19665:2 19670:1 19682:2 19695:3 19703:1 19713:2 19728:2 19756:1 19757:1 19767:1 19786:1 19788:2 19812:1 19852:1 19867:1 19875:1 19912:1 19915:1 19919:1 19924:6 19929:1 19946:1 19964:1 19980:1 19981:2 19984:2 20022:3 20097:1 20102:1 20106:1 20128:2 20129:3 20130:1 20143:4 20147:1 20164:1 20170:1 20189:1 20190:2 20192:1 20193:1 20194:1 20200:2 20201:1 20212:1 20216:1 20226:4 20234:1 20247:1 20297:1 20299:2 20303:1 20304:2 20306:6 20334:1 20343:4 20353:1 20382:1 20390:1 20391:1 20413:1 20434:1 20437:1 20445:1 20448:1 20484:1 20488:1 20502:5 20518:2 20544:2 20546:3 20557:1 20580:1 20594:1 20597:1 20608:2 20619:1 20627:1 20632:1 20645:1 20652:1 20657:5 20662:3 20667:1 20672:1 20686:1 20698:1 20730:1 20733:1 20822:1 20823:1 20852:1 20857:2 20865:1 20874:1 20877:1 20893:2 20899:1 20904:1 20907:1 20920:1 20940:2 20955:3 20957:2 20965:1 20973:7 20983:1 21029:1 21032:1 21039:1 21087:1 21096:1 21108:1 21115:1 21139:1 21159:1 21172:1 21185:1 21193:1 21196:1 21225:1 21226:1 21236:1 21253:1 21256:1 21257:1 21274:1 21282:1 21293:1 21294:2 21309:1 21311:1 21327:1 21333:4 21378:3 21396:1 21433:2 21451:1 21455:1 21476:1 21496:1 21505:1 21510:3 21514:1 21515:1 21543:1 21546:1 21595:25 21599:2 21631:1 21645:1 21661:1 21662:1 21668:1 21681:1 21683:1 21690:1 21691:1 21722:1 21724:1 21749:1 21750:1 21783:1 21797:1 21855:1 21870:1 21923:2 21924:1 21929:1 21942:1 21944:1 21945:1 21949:2 21975:1 22063:1 22068:1 22115:1 22122:1 22126:1 22129:1 22148:1 22170:1 22172:1 22175:2 22179:1 22184:1 22188:1 22193:2 22196:1 22201:1 22238:1 22248:3 22281:3 22282:3 22304:1 22333:1 22355:2 22382:1 22400:1 22406:3 22408:1 22414:4 22420:1 22429:3 22430:1 22451:1 22460:2 22462:1 22475:1 22477:1 22484:1 22486:1 22497:1 22518:1 22520:1 22529:1 22546:1 22574:1 22575:5 22582:1 22584:1 22616:1 22629:1 22666:2 22674:2 22679:1 22696:1 22698:1 22761:1 22788:1 22791:1 22795:1 22803:1 22851:1 22864:2 22878:1 22912:1 22915:1 22922:1 22969:1 22973:1 22991:1 22997:1 23001:1 23015:1 23025:2 23060:1 23091:1 23092:1 23123:1 23126:1 23177:1 23197:1 23200:2 23215:1 23232:1 23242:1 23251:1 23255:1 23256:1 23297:2 23306:1 23307:1 23322:1 23325:1 23401:2 23413:2 23450:2 23464:3 23480:1 23527:1 23540:1 23543:1 23549:1 23555:4 23568:1 23584:2 23591:1 23613:1 23619:1 23660:1 23664:1 23666:1 23667:1 23684:1 23690:1 23721:2 23725:3617 23753:1 23764:1 23769:1 23784:1 23811:1 23856:2 23864:1 23867:1 23903:2 23935:1 23945:1 23948:1 23969:1 23976:1 23978:1 23991:1 23994:1 23995:1 23997:1 24000:1 24001:1 24018:1 24053:2 24083:1 24084:1 24089:1 24102:1 24125:1 24134:1 24146:1 24150:1 24153:1 24159:1 24166:1 24170:1 24179:1 24204:1 24222:2 24237:1 24238:1 24242:1 24244:1 24245:2 24277:1 24281:3 24284:1 24354:1 24357:2 24364:1 24377:1 24393:1 24399:1 24409:1 24415:1 24435:1 24441:2 24452:1 24453:1 24456:1 24465:1 24489:1 24515:1 24520:1 24531:1 24533:1 24545:9 24555:1 24580:1 24588:1 24593:6 24597:1 24604:1 24631:3 24641:1 24669:1 24700:3 24713:1 24723:1 24763:1 24777:1 24781:1 24804:1 24805:4 24848:3 24851:1 24854:1 24856:1 24874:2 24875:1 24881:1 24898:1 24913:2 24933:1 24940:1 24956:1 24982:1 24988:2 25031:1 25042:1 25047:1 25055:1 25072:1 25101:1 25111:1 25112:1 25118:1 25122:1 25127:1 25141:1 25170:1 25206:2 25238:1 25253:1 25261:1 25265:2 25267:1 25275:1 25281:2 25283:1 25286:1 25308:1 25312:1 25314:1 25327:1 25328:3 25346:1 25354:1 25356:1 25357:7 25376:3 25380:1 25382:1 25398:2 25408:1 25411:1 25413:1 25424:1 25425:1 25437:1 25451:2 25453:2 25492:2 25497:1 25531:3 25532:1 25534:1 25541:1 25552:2 25555:1 25563:1 25609:1 25623:1 25710:4 25724:1 25735:1 25769:1 25774:2 25782:1 25832:1 25841:3 25844:1 25890:2 25892:2 25896:1 25900:1 25907:1 25919:1 25931:1 25944:2 25952:1 25977:4 25981:2 25990:1 25994:1 25998:2 26001:1 26006:1 26035:1 26046:1 26050:1 26054:1 26057:1 26062:1 26070:1 26078:1 26084:1 26090:1 26102:1 26105:2 26119:1 26124:1 26156:2 26169:3 26199:1 26200:2 26218:1 26233:1 26242:1 26250:7 26258:1 26262:2 26275:1 26276:1 26279:1 26287:1 26301:1 26305:1 26308:5 26314:1 26323:1 26326:2 26330:2 26337:1 26372:1 26379:1 26392:1 26394:2 26398:6 26404:1 26417:1 26422:1 26424:3 26440:2 26456:1 26468:2 26474:1 26475:1 26489:1 26504:1 26524:1 26529:1 26534:1 26537:1 26541:2 26544:1 26560:3 26561:1 26562:1 26563:2 26585:1 26589:2 26608:1 26665:2 26681:1 26695:1 26697:1 26698:1 26700:1 26703:1 26717:1 26729:4 26734:1 26757:1 26760:1 26761:1 26808:1 26836:3 26838:1 26846:1 26855:1 26856:1 26857:2 26858:1 26876:1 26883:1 26889:1 26897:3 26899:1 26904:1 26914:1 26944:1 26965:2 26969:1 26990:1 27002:2 27005:3 27053:1 27060:1 27073:1 27091:1 27092:2 27095:1 27101:1 27108:2 27116:1 27127:2 27139:1 27141:2 27156:1 27162:1 27172:1 27178:1 27193:1 27298:2 27303:2 27306:2 27332:1 27333:2 27345:2 27347:1 27371:1 27390:1 27396:1 27415:1 27475:1 27482:3 27498:2 27502:1 27503:3 27516:1 27524:3 27538:1 27545:1 27548:2 27549:1 27560:1 27592:1 27598:1 27609:1 27624:1 27660:1 27662:1 27671:1 27677:1 27681:1 27710:3 27750:1 27772:1 27773:1 27803:1 27806:1 27810:2 27823:1 27824:1 27838:1 27841:1 27853:1 27864:1 27868:1 27886:1 27928:1 27930:1 27941:1 27956:1 27981:1 27982:1 27983:1 27984:1 28002:1 28029:1 28038:1 28045:3 28069:3 28079:2 28086:1 28087:1 28090:1 28091:1 28094:11 28102:1 28109:1 28115:1 28125:1 28126:1 28136:1 28155:1 28174:1 28189:1 28192:1 28198:1 28199:1 28218:1 28226:1 28227:2 28273:1 28280:1 28314:1 28342:1 28354:1 28403:2 28404:1 28423:2 28427:1 28433:2 28486:1 28488:1 28498:1 28519:1 28529:1 28537:1 28538:1 28548:1 28550:1 28580:1 28632:1 28659:1 28675:1 28690:1 28699:1 28730:2 28741:1 28744:2 28759:1 28786:1 28839:2 28854:1 28863:1 28876:1 28877:2 28884:1 28976:1 28991:1 28998:1 28999:2 29007:1 29010:1 29016:1 29021:1 29031:1 29032:1 29056:1 29058:3 29059:1 29091:2 29105:2 29141:1 29146:1 29156:1 29168:1 29172:3 29175:1 29181:1 29187:1 29198:1 29203:2 29205:1 29217:1 29239:1 29263:2 29279:2 29285:2 29290:1 29303:1 29304:2 29307:1 29311:1 29322:1 29335:3 29351:2 29353:1 29375:2 29405:1 29426:1 29428:2 29429:1 29434:1 29437:1 29451:1 29465:1 29506:1 29516:1 29521:1 29529:1 29539:1 29553:4 29555:1 29557:1 29570:1 29583:1 29610:2 29625:2 29632:2 29669:1 29686:1 29689:2 29692:3 29693:1 29744:1 29754:1 29762:2 29765:1 29787:1 29795:1 29806:2 29832:1 29852:1 29853:1 29859:1 29871:1 29880:2 29890:1 29892:1 29954:1 29985:1 29990:1 30006:1 30015:2 30032:1 30036:2 30042:1 30052:1 30080:1 30091:1 30102:1 30122:1 30128:1 30144:2 30145:1 30147:1 30152:1 30157:1 30181:1 30249:3 30258:1 30266:9 30268:1 30269:1 30273:1 30281:1 30285:1 30301:1 30329:2 30331:1 30339:2 30375:2 30378:1 30386:1 30402:1 30404:1 30426:2 30430:3 30438:4 30447:1 30464:1 30465:1 30467:1 30480:2 30484:2 30489:1 30490:1 30496:1 30515:1 30521:1 30537:1 30543:1 30557:1 30563:1 30586:1 30591:1 30622:1 30640:2 30662:2 30663:3 30668:4 30671:1 30681:1 30701:1 30706:1 30711:2 30719:1 30743:1 30752:1 30765:1 30796:2 30811:1 30836:1 30850:1 30885:1 30888:1 30893:2 30923:5 30926:3 30936:1 30940:1 30949:1 30960:1 31004:1 31022:1 31030:1 31060:2 31064:1 31092:1 31134:1 31148:1 31157:1 31158:1 31180:1 31201:3 31214:2 31216:1 31226:1 31242:1 31280:1 31322:1 31334:3 31355:5 31358:3 31359:1 31376:1 31378:1 31396:1 31415:1 31427:1 31449:1 31450:1 31453:2 31455:2 31456:2 31478:1 31479:1 31511:1 31544:2 31553:1 31558:1 31565:3 31569:1 31570:2 31577:1 31579:2 31583:1 31584:1 31586:1 31598:1 31606:3 31612:1 31640:1 31650:1 31664:1 31667:3 31670:1 31680:3 31696:2 31709:1 31722:1 31745:1 31746:2 31753:1 31774:1 31775:1 31798:1 31799:1 31835:1 31836:1 31839:1 31845:1 31857:1 31864:1 31875:1 31904:1 31916:1 31920:1 31966:1 31982:2 31991:1 32016:2 32017:1 32019:2 32036:1 32055:1 32068:1 32080:1 32084:1 32114:1 32150:2 32175:1 32178:2 32182:1 32199:1 32200:1 32209:1 32216:2 32230:1 32236:1 32244:1 32252:3 32256:1 32257:1 32284:1 32288:1 32297:1 32299:3 32317:1 32328:3 32331:1 32346:1 32365:1 32384:4 32405:1 32414:2 32492:4 32507:3 32510:1 32521:1 32528:4 32533:1 32562:1 32575:1 32578:1 32646:1 32653:1 32711:1 32713:1 32728:1 32772:1 32778:1 32779:1 32783:1 32787:1 32792:1 32800:1 32835:1 32841:1 32853:1 32862:1 32865:1 32870:1 32874:4 32879:1 32880:3 32881:2 32908:1 32910:1 32928:1 32956:1 32971:1 32974:1 32986:2 33006:2 33012:3 33020:1 33026:1 33039:2 33054:2 33070:2 33085:1 33118:2 33143:1 33144:1 33203:2 33211:1 33212:1 33215:1 33216:2 33230:1 33250:1 33267:1 33312:1 33349:1 33356:1 33386:1 33394:1 33399:1 33400:1 33406:4 33444:2 33452:3 33480:1 33507:1 33514:2 33518:1 33523:1 33527:1 33531:2 33533:3 33534:1 33548:1 33549:4 33553:1 33560:5 33620:1 33654:1 33698:1 33712:3 33721:2 33723:1 33728:2 33767:2 33773:1 33811:1 33825:1 33828:1 33844:1 33849:2 33856:2 33861:2 33889:2 33896:1 33897:1 33909:1 33913:1 33925:1 33926:1 33932:1 33934:1 33935:1 33936:1 33938:1 33942:1 33950:1 33974:1 33986:1 33998:1 34004:1 34015:1 34018:2 34023:2 34029:1 34040:2 34047:1 34059:1 34060:1 34067:1 34068:2 34116:1 34132:2 34139:1 34146:1 34170:1 34172:1 34182:1 34184:1 34185:1 34197:1 34200:1 34212:2 34219:1 34230:1 34263:2 34267:2 34269:1 34285:1 34286:1 34323:1 34338:2 34372:1 34393:2 34410:1 34442:2 34479:1 34488:2 34495:1 34505:1 34506:1 34530:1 34560:1 34574:1 34587:1 34591:1 34600:1 34616:1 34624:2 34633:1 34664:3 34668:1 34674:4 34696:1 34709:1 34727:1 34739:1 34748:1 34753:2 34757:1 34773:14 34774:1 34776:1 34794:1 34797:1 34810:6 34833:2 34844:1 34857:1 34880:1 34881:1 34917:1 34919:1 34932:2 34963:5 34966:1 34971:1 34981:1 34982:1 35001:1 35004:6 35014:1 35015:1 35024:1 35025:1 35027:1 35028:1 35048:1 35054:1 35058:1 35063:1 35070:1 35074:4 35082:1 35102:1 35117:2 35141:1 35154:2 35161:1 35179:2 35203:1 35223:1 35249:2 35253:2 35297:1 35302:1 35305:1 35310:1 35316:1 35324:1 35335:1 35352:1 35360:1 35377:3 35378:1 35382:1 35384:1 35402:1 35417:1 35437:3 35442:1 35459:1 35464:1 35470:1 35475:1 35515:1 35565:3 35593:2 35622:1 35646:3 35649:2 35675:1 35684:1 35689:1 35708:1 35714:1 35741:1 35742:1 35746:1 35751:1 35763:1 35837:1 35844:1 35846:1 35864:2 35882:1 35899:1 35911:1 35932:2 35943:1 35959:1 35978:1 35985:1 36010:1 36016:1 36019:1 36022:1 36053:1 36079:1 36104:2 36128:2 36129:1 36158:1 36170:3 36178:1 36202:1 36203:1 36235:1 36292:1 36312:1 36318:1 36326:3 36327:1 36328:1 36329:3 36332:1 36333:1 36334:2 36340:2 36342:3 36343:2 36351:1 36352:2 36366:1 36368:1 36370:1 36371:1 36392:1 36396:1 36410:1 36415:1 36426:2 36433:1 36438:1 36442:1 36473:1 36477:1 36482:1
15 3:1 8:1 48:1 82:3 114:2 126:1 129:2 151:1 192:1 193:4 212:1 216:3 225:1 255:1 256:1 257:2 258:1 275:1 277:2 281:1 300:1 318:1 321:3 325:1 348:1 371:2 392:2 404:1 419:1 426:2 451:4 453:2 456:2 493:2 511:1 515:1 540:1 551:3 564:1 578:1 595:2 612:1 625:1 649:1 677:2 678:1 680:1 682:1 690:1 692:1 707:1 712:1 726:3 730:1 733:2 738:1 742:1 745:1 759:7 769:1 772:1 773:3 776:3 783:1 787:1 848:1 864:1 877:3 897:1 911:1 916:1 917:1 934:1 936:4 937:1 941:1 952:2 1002:1 1008:1 1042:2 1047:1 1048:1 1068:2 1071:1 1073:1 1075:1 1078:2 1081:1 1084:1 1085:2 1093:1 1095:1 1096:1 1099:1 1103:2 1113:1 1131:2 1133:1 1135:3 1140:1 1145:2 1148:1 1154:1 1167:3 1177:1 1183:1 1192:1 1194:1 1208:1 1222:1 1231:2 1237:3 1247:1 1272:3 1274:1 1275:1 1305:1 1307:1 1316:1 1348:2 1349:1 1393:1 1396:2 1411:1 1418:2 1423:2 1431:1 1450:1 1453:1 1467:1 1473:3 1474:1 1482:1 1525:2 1535:1 1541:1 1542:1 1546:1 1553:1 1554:2 1568:1 1577:1 1606:1 1607:1 1615:1 1624:1 1634:1 1635:1 1654:1 1662:1 1663:1 1667:1 1674:1 1723:1 1737:2 1738:1 1746:2 1750:2 1752:1 1757:7 1796:1 1799:1 1803:2 1807:2 1809:2 1815:1 1816:1 1819:6 1835:1 1849:1 1854:1 1870:1 1892:1 1901:4 1904:1 1905:4 1913:2 1919:2 1938:1 1945:1 1954:1 1955:1 1967:1 1994:1 1997:2 2004:2 2006:2 2010:1 2017:1 2022:1 2041:3 2070:1 2071:1 2074:1 2097:1 2114:1 2115:1 2118:2 2128:1 2131:1 2145:2 2148:2 2149:1 2154:1 2171:2 2194:1 2196:1 2223:1 2224:1 2227:1 2232:1 2234:2 2237:1 2239:2 2242:1 2301:1 2309:1 2313:1 2328:1 2358:1 2371:1 2374:4 2381:1 2393:2 2398:1 2411:1 2517:1 2541:1 2563:1 2564:1 2582:1 2596:1 2601:1 2633:3 2673:1 2684:3 2712:2 2742:2 2743:1 2777:1 2780:1 2786:1 2787:1 2789:2 2791:3 2801:2 2805:2 2810:1 2811:2 2812:2 2813:3 2817:1 2820:4 2821:1 2823:1 2840:1 2860:1 2861:2 2905:2 2938:1 2986:2 2989:1 2990:2 3041:1 3049:3 3063:2 3101:1 3138:1 3167:1 3172:2 3193:1 3197:1 3202:1 3214:1 3229:1 3302:1 3314:2 3322:2 3326:1 3353:1 3356:1 3359:1 3360:3 3363:1 3367:1 3370:1 3394:1 3421:1 3423:3 3432:1 3483:1 3495:2 3505:2 3513:1 3517:1 3518:1 3547:2 3552:1 3555:1 3559:1 3569:5 3576:5 3577:2 3589:1 3615:2 3632:4 3635:4 3653:1 3658:1 3660:1 3664:1 3666:1 3669:2 3675:1 3678:1 3689:1 3705:1 3711:2 3716:1 3746:2 3749:1 3758:1 3771:2 3775:1 3795:1 3820:1 3853:1 3866:1 3886:1 3890:1 3904:1 3945:1 3962:1 4033:2 4047:1 4055:1 4073:1 4083:1 4091:1 4103:1 4106:1 4148:3 4161:1 4175:1 4178:1 4179:1 4219:1 4221:1 4224:1 4231:1 4261:3 4264:1 4307:1 4319:1 4333:1 4375:1 4380:1 4413:1 4416:1 4439:1 4450:1 4452:2 4455:1 4463:1 4465:1 4467:1 4484:1 4498:2 4501:1 4536:1 4541:1 4549:1 4553:1 4556:1 4590:1 4602:1 4604:2 4606:1 4608:1 4624:1 4646:1 4678:1 4687:2 4688:6 4708:1 4724:1 4730:1 4741:1 4742:2 4745:2 4771:2 4774:2 4813:1 4820:2 4821:4 4826:2 4859:1 4873:1 4874:1 4888:2 4894:1 4898:1 4911:1 4928:1 4933:1 4959:1 4967:1 4969:1 4974:1 4998:2 5001:1 5002:1 5018:1 5027:2 5028:1 5032:1 5054:1 5063:1 5102:1 5107:1 5132:1 5177:2 5201:1 5232:1 5246:1 5255:3 5259:1 5275:1 5287:1 5294:2 5298:1 5310:1 5314:1 5344:1 5347:1 5357:1 5366:1 5378:4 5398:1 5411:1 5412:1 5421:1 5435:1 5438:1 5450:1 5489:1 5506:1 5519:1 5522:1 5531:1 5543:2 5581:2 5583:1 5590:1 5607:1 5620:1 5623:1 5625:1 5664:1 5677:1 5683:2 5689:3 5697:1 5718:2 5719:2 5730:2 5743:1 5747:1 5766:1 5822:1 5832:2 5838:2 5855:3 5865:1 5866:2 5879:1 5885:1 5920:1 5921:1 5923:1 5925:2 5928:2 6004:1 6007:2 6014:1 6016:2 6021:1 6097:7 6132:2 6140:1 6145:1 6153:1 6167:1 6168:1 6172:2 6237:5 6257:2 6258:1 6263:1 6264:1 6266:1 6270:1 6271:1 6273:3 6277:1 6281:1 6283:1 6287:1 6288:2 6289:1 6291:1 6315:1 6316:1 6321:1 6401:2 6404:1 6435:1 6442:1 6449:1 6454:1 6458:2 6475:1 6476:1 6508:1 6529:2 6533:3 6543:1 6564:1 6567:1 6584:2 6587:3 6605:3 6612:1 6630:3 6650:1 6695:2 6737:1 6740:1 6747:1 6772:4 6802:2 6806:1 6822:1 6829:2 6853:3 6877:1 6896:1 6904:1 6906:1 6909:1 6921:1 6922:1 6934:1 6936:2 6942:1 6963:3 6987:1 7016:1 7037:2 7061:1 7115:1 7136:1 7177:1 7184:2 7187:1 7202:3 7209:1 7227:1 7236:1 7245:1 7257:1 7272:1 7281:1 7288:1 7319:1 7321:1 7322:2 7323:1 7335:1 7351:2 7368:1 7385:1 7406:1 7434:1 7439:1 7441:1 7444:1 7517:1 7536:1 7566:1 7575:1 7583:1 7591:1 7594:1 7627:3 7633:1 7637:1 7661:1 7685:1 7689:1 7726:2 7743:4 7747:1 7749:1 7764:2 7765:1 7778:1 7782:1 7785:1 7790:1 7830:3 7836:3 7922:2 7936:1 7950:3 7958:1 7964:1 7969:2 7973:1 8045:1 8050:1 8056:1 8062:1 8065:1 8073:3 8075:1 8083:2 8084:2 8085:3 8086:1 8088:3 8091:2 8092:1 8099:3 8101:4 8105:1 8135:1 8136:1 8147:1 8151:1 8162:1 8163:1 8164:1 8176:1 8193:1 8196:3 8210:2 8212:2 8213:1 8223:1 8226:1 8233:2 8252:1 8262:1 8269:3 8282:1 8286:2 8296:1 8304:1 8361:1 8362:1 8371:1 8378:1 8389:1 8413:3 8416:1 8420:4 8422:1 8425:1 8432:1 8457:2 8459:1 8464:1 8477:1 8491:1 8525:1 8527:3 8557:1 8558:1 8565:1 8574:1 8607:1 8615:1 8661:1 8662:1 8671:1 8678:1 8687:1 8690:1 8700:1 8743:3 8748:1 8757:1 8761:1 8762:4 8777:1 8802:1 8814:1 8818:3 8846:1 8874:1 8897:2 8917:1 8929:1 8943:1 8952:1 8959:3 8965:1 8966:1 8972:2 8992:2 9011:1 9016:5 9021:2 9024:1 9046:2 9061:3 9066:1 9068:1 9087:4 9110:1 9130:5 9140:1 9160:1 9191:1 9192:1 9201:1 9203:1 9215:1 9234:1 9239:1 9243:1 9252:1 9282:1 9289:6 9311:1 9349:1 9352:1 9390:2 9412:1 9420:1 9433:3 9452:1 9466:1 9489:2 9505:1 9535:2 9539:1 9540:1 9544:2 9547:1 9557:1 9560:1 9561:1 9576:1 9586:1 9595:2 9608:1 9609:1 9617:1 9618:1 9622:2 9633:1 9655:1 9658:1 9671:2 9677:3 9678:2 9680:1 9691:1 9710:4 9743:1 9754:1 9783:1 9786:2 9789:6 9813:2 9817:1 9850:1 9858:2 9862:1 9875:1 9881:24 9892:1 9904:2 9905:6 9927:1 9937:1 9940:1 9948:2 9949:1 9956:1 9971:1 9988:1 9989:1 10008:1 10019:1 10027:1 10034:1 10039:1 10057:3 10063:1 10089:1 10090:1 10119:1 10122:4 10125:1 10133:1 10140:1 10145:1 10147:1 10176:1 10187:1 10189:1 10197:3 10228:1 10239:2 10270:1 10279:1 10292:1 10302:1 10320:1 10326:1 10328:3 10340:1 10353:1 10381:1 10387:2 10395:2 10402:1 10413:1 10419:4 10441:1 10445:1 10470:3 10471:11 10487:1 10489:1 10500:1 10501:1 10508:1 10514:1 10523:1 10532:1 10536:2 10547:1 10548:3 10550:1 10558:1 10572:1 10578:2 10594:3 10596:3 10607:2 10618:1 10630:1 10647:5 10686:1 10701:1 10705:1 10714:2 10753:2 10758:1 10761:1 10772:3 10773:1 10779:1 10788:1 10798:1 10809:1 10820:1 10857:1 10860:1 10887:1 10899:2 10902:1 10910:1 10912:1 10932:1 10958:1 10961:1 10963:3 10965:1 10967:1 10970:1 10973:1 10976:3 10977:1 10982:1 10983:1 11003:1 11006:1 11019:1 11029:1 11037:1 11058:1 11061:1 11083:1 11084:2 11086:1 11091:1 11107:1 11115:1 11138:1 11142:1 11158:1 11166:2 11190:1 11207:2 11208:8 11216:1 11227:1 11231:1 11238:1 11249:3 11261:1 11264:1 11284:1 11304:2 11311:1 11320:1 11323:1 11342:1 11351:2 11358:1 11386:1 11396:7 11429:2 11442:1 11555:1 11573:1 11586:1 11594:1 11599:1 11611:1 11617:1 11638:1 11646:1 11648:1 11650:2 11668:1 11672:1 11673:1 11685:3 11696:4 11725:1 11733:1 11743:3 11746:1 11779:2 11789:1 11793:1 11807:1 11818:1 11824:2 11850:1 11853:1 11867:2 11913:2 11938:1 11960:1 11984:1 11999:1 12013:2 12015:2 12016:1 12039:1 12040:1 12050:1 12051:1 12075:1 12078:2 12086:1 12092:2 12095:1 12096:1 12131:3 12132:1 12153:2 12157:1 12183:1 12199:1 12216:1 12220:1 12224:1 12234:1 12236:1 12240:1 12242:1 12243:1 12244:1 12245:1 12285:2 12324:1 12332:1 12337:1 12386:5 12403:1 12413:2 12427:2 12438:1 12442:1 12451:1 12479:1 12480:1 12486:1 12526:1 12567:1 12588:1 12597:1 12605:1 12624:1 12633:1 12644:1 12645:4 12653:1 12660:1 12682:1 12702:2 12708:2 12734:1 12769:2 12772:1 12776:2 12784:2 12786:1 12792:2 12802:1 12806:1 12809:1 12810:2 12811:2 12827:1 12846:1 12847:1 12855:1 12860:1 12887:1 12888:8 12907:1 12918:1 12921:3 12947:2 12974:3 12975:1 12985:1 13006:1 13012:1 13020:3 13021:1 13023:1 13032:1 13053:1 13072:1 13079:1 13086:1 13100:1 13104:1 13112:1 13114:1 13115:1 13123:1 13126:1 13135:1 13137:2 13139:1 13146:3 13228:1 13229:1 13230:1 13241:1 13248:1 13254:1 13259:1 13267:2 13297:1 13307:4 13311:2 13335:2 13337:1 13376:1 13377:2 13378:1 13384:1 13392:1 13420:1 13429:1 13443:7 13476:2 13490:1 13519:1 13532:1 13540:8 13551:1 13560:1 13579:2 13580:2 13588:1 13593:1 13599:1 13611:1 13627:1 13636:1 13642:1 13648:2 13653:1 13666:1 13673:1 13676:3 13680:1 13682:1 13738:1 13742:1 13743:1 13745:1 13762:1 13769:1 13773:1 13777:1 13792:1 13813:1 13844:1 13855:1 13871:1 13899:1 13916:1 13949:1 13952:1 13956:2 13977:2 13982:2 13994:1 13998:1 14031:1 14033:1 14096:1 14107:2 14127:1 14129:2 14132:1 14150:2 14151:2 14165:1 14166:1 14167:1 14170:1 14180:1 14192:2 14195:1 14208:1 14210:2 14214:1 14221:1 14227:1 14244:1 14278:2 14281:1 14288:3 14297:1 14326:1 14333:1 14371:1 14390:1 14397:1 14437:2 14439:1 14442:1 14459:2 14472:4 14482:1 14492:1 14493:1 14494:1 14503:1 14507:4 14520:1 14530:1 14539:1 14543:1 14544:1 14552:1 14590:2 14592:1 14617:1 14619:1 14621:1 14631:1 14638:1 14640:1 14667:1 14683:1 14701:1 14702:1 14705:1 14718:1 14720:1 14731:1 14750:1 14765:1 14780:1 14787:1 14806:2 14829:1 14841:1 14859:1 14865:2 14885:1 14894:3 14915:1 14920:1 14921:1 14954:2 14969:1 14978:4 14982:1 14985:3 14988:1 14989:1 14997:1 14998:1 15008:1 15030:1 15038:1 15044:1 15046:1 15057:1 15061:1 15071:3 15074:2 15110:3 15138:1 15174:1 15211:1 15221:2 15228:1 15229:1 15258:1 15264:1 15300:1 15308:1 15309:1 15315:1 15334:2 15344:2 15345:3 15349:1 15354:1 15361:1 15368:1 15380:1 15391:1 15397:1 15400:1 15425:3 15444:1 15446:1 15471:1 15472:4 15473:1 15486:1 15497:1 15503:1 15510:5 15517:2 15530:1 15534:1 15547:1 15552:1 15563:3 15584:1 15594:3 15609:1 15616:1 15624:1 15631:1 15641:1 15646:2 15653:1 15655:1 15676:1 15706:5 15721:3 15729:3 15743:1 15753:3 15768:1 15779:1 15789:1 15823:4 15839:1 15845:1 15862:1 15865:1 15871:1 15907:1 15936:1 15938:1 15960:1 15970:1 15971:1 15978:1 16011:1 16024:1 16031:1 16033:1 16034:2 16036:1 16043:1 16045:2 16048:1 16082:1 16088:1 16112:1 16136:2 16145:1 16184:1 16212:1 16213:1 16218:1 16226:1 16233:1 16253:1 16261:1 16285:1 16287:6 16316:2 16319:1 16323:1 16333:2 16355:1 16357:1 16367:1 16390:1 16434:1 16469:1 16483:2 16540:1 16557:1 16559:1 16580:1 16581:3 16586:2 16640:1 16686:1 16713:1 16734:1 16738:1 16749:1 16757:1 16762:1 16773:1 16788:1 16800:1 16802:10 16824:1 16836:2 16838:1 16840:2 16857:1 16866:1 16879:6 16885:1 16895:1 16899:1 16910:1 16911:1 16913:1 16934:1 16982:7 16993:1 16994:4 16997:1 17002:1 17021:1 17029:1 17031:1 17042:2 17051:1 17059:2 17073:2 17081:6 17086:1 17092:3 17144:1 17151:2 17156:3 17163:1 17166:1 17177:1 17188:1 17203:1 17205:2 17234:2 17239:1 17247:1 17269:1 17278:4 17305:1 17332:1 17345:1 17347:1 17371:1 17384:1 17408:1 17432:1 17436:1 17440:1 17449:1 17460:1 17469:2 17481:1 17518:1 17528:1 17552:1 17561:5 17567:3 17575:1 17585:1 17621:1 17674:1 17675:1 17679:1 17686:1 17693:2 17744:1 17757:1 17770:1 17775:2 17777:1 17786:2 17790:1 17810:1 17813:1 17815:1 17831:1 17872:1 17909:1 17914:1 17918:2 17930:2 17938:1 17943:1 17950:1 17959:3 17989:2 18005:2 18036:1 18055:1 18058:1 18074:1 18141:1 18161:1 18174:1 18220:2 18228:1 18230:1 18232:1 18235:1 18240:1 18245:1 18248:1 18263:1 18290:1 18314:1 18324:1 18338:1 18340:1 18345:3 18359:2 18384:2 18385:1 18389:1 18403:1 18407:1 18422:1 18429:2 18433:1 18456:1 18467:1 18493:2 18503:1 18513:3 18536:1 18561:1 18564:1 18574:1 18608:2 18629:2 18662:1 18664:1 18687:1 18698:1 18718:6 18727:2 18741:1 18742:3 18745:1 18746:1 18750:9 18757:1 18806:2 18827:1 18868:1 18902:1 18919:1 18921:2 18932:2 18947:1 18988:1 18989:1 19011:1 19018:4 19025:1 19036:7 19058:3 19083:1 19084:1 19087:3 19089:1 19112:3 19123:2 19129:2 19132:1 19156:5 19179:7 19181:1 19202:1 19203:1 19237:1 19271:1 19282:1 19293:1 19308:1 19328:3 19335:2 19345:1 19365:3 19389:1 19394:1 19395:2 19439:2 19450:1 19473:1 19484:1 19505:1 19531:1 19589:1 19630:1 19631:1 19641:1 19659:2 19665:2 19670:1 19682:2 19695:3 19703:1 19713:2 19728:2 19756:1 19757:1 19759:1 19767:1 19786:1 19788:2 19812:1 19820:1 19852:1 19867:1 19875:1 19912:1 19915:1 19919:2 19924:6 19929:1 19946:1 19964:1 19980:1 19981:2 19984:2 20022:3 20097:1 20102:1 20106:1 20128:2 20129:3 20130:1 20143:4 20147:1 20164:1 20170:1 20189:1 20190:2 20192:1 20193:1 20194:1 20200:2 20201:1 20212:1 20216:1 20221:1 20226:4 20234:1 20247:1 20297:1 20299:2 20303:1 20304:2 20306:6 20334:1 20343:4 20353:1 20382:1 20390:1 20391:1 20413:1 20434:1 20437:1 20445:1 20448:2 20484:1 20488:1 20502:6 20518:2 20544:2 20546:3 20557:1 20580:1 20594:1 20597:1 20608:2 20619:1 20627:1 20632:1 20645:1 20652:1 20657:5 20662:3 20667:1 20672:1 20686:1 20698:1 20730:1 20733:1 20822:1 20823:1 20852:1 20857:2 20865:1 20874:1 20877:1 20893:2 20899:1 20904:1 20907:1 20920:1 20940:2 20955:3 20957:2 20965:1 20973:8 20983:1 21029:1 21032:1 21039:1 21087:1 21096:1 21108:1 21115:1 21139:1 21159:1 21172:1 21185:1 21193:1 21196:1 21225:1 21226:1 21236:1 21253:1 21256:1 21257:1 21274:1 21282:1 21293:1 21294:2 21309:1 21311:1 21327:1 21333:5 21378:3 21396:1 21433:2 21451:2 21455:1 21476:1 21496:1 21505:1 21510:3 21514:1 21515:1 21539:1 21543:1 21546:1 21595:25 21599:2 21631:1 21645:1 21661:2 21662:1 21668:1 21681:1 21683:1 21690:1 21691:1 21722:1 21724:1 21747:1 21749:1 21750:1 21783:1 21797:1 21855:1 21870:1 21923:2 21924:1 21929:1 21942:1 21944:1 21945:1 21949:2 21975:1 22063:1 22068:1 22115:1 22122:1 22126:1 22129:1 22148:1 22170:1 22172:1 22175:2 22179:1 22184:1 22188:1 22193:2 22196:1 22201:1 22238:1 22248:3 22281:4 22282:3 22304:1 22328:1 22333:1 22355:2 22382:1 22400:1 22406:3 22408:1 22414:4 22420:1 22429:3 22430:1 22442:1 22451:1 22460:2 22462:1 22475:1 22477:1 22484:1 22486:1 22497:1 22518:1 22520:1 22529:1 22530:1 22546:1 22574:1 22575:5 22582:1 22584:1 22616:1 22629:1 22666:2 22674:2 22679:1 22696:1 22698:1 22761:1 22781:1 22788:1 22791:1 22795:1 22803:1 22851:1 22864:2 22878:1 22912:1 22915:1 22922:1 22969:1 22973:1 22991:1 22997:1 23001:1 23015:1 23025:2 23060:1 23091:1 23092:1 23123:1 23126:1 23132:1 23177:1 23197:1 23200:2 23215:1 23232:1 23242:1 23251:1 23255:1 23256:1 23297:2 23306:1 23307:1 23322:1 23325:1 23401:2 23413:2 23450:2 23464:3 23480:1 23527:1 23540:1 23543:1 23549:1 23555:4 23568:1 23584:2 23591:1 23613:1 23619:1 23660:1 23664:1 23666:1 23667:1 23684:1 23690:1 23721:2 23725:3745 23753:1 23764:1 23769:1 23784:1 23811:1 23856:2 23864:1 23867:1 23886:1 23903:2 23935:1 23945:1 23948:1 23969:1 23976:1 23978:1 23991:1 23994:1 23995:1 23997:1 24000:1 24001:1 24018:1 24053:2 24078:1 24083:1 24084:1 24089:1 24102:1 24125:1 24134:1 24146:1 24150:1 24153:1 24159:1 24166:1 24170:1 24179:1 24188:1 24204:1 24212:1 24222:2 24237:1 24238:1 24242:1 24244:1 24245:2 24253:1 24277:1 24281:4 24284:1 24354:1 24357:2 24364:1 24377:1 24393:1 24399:1 24409:1 24415:1 24435:1 24441:2 24452:1 24453:1 24456:1 24457:1 24463:1 24465:1 24489:1 24515:1 24520:1 24531:1 24533:1 24545:9 24555:1 24580:2 24588:1 24593:6 24597:1 24604:1 24631:3 24641:1 24669:1 24700:3 24713:1 24723:1 24763:1 24777:1 24781:1 24804:1 24805:4 24848:4 24851:1 24854:1 24856:1 24874:2 24875:1 24881:1 24898:1 24913:2 24933:1 24940:1 24956:1 24982:1 24988:2 25031:1 25042:1 25047:1 25055:1 25060:1 25072:1 25101:1 25111:1 25112:1 25118:1 25122:1 25127:1 25141:1 25170:1 25206:2 25238:1 25253:1 25261:1 25265:2 25267:1 25275:1 25281:2 25283:1 25286:1 25308:1 25312:1 25314:1 25327:1 25328:4 25338:1 25346:1 25354:1 25356:1 25357:7 25376:3 25380:1 25382:1 25398:2 25408:1 25411:1 25413:1 25424:1 25425:1 25437:1 25451:2 25453:3 25492:2 25497:1 25531:3 25532:1 25534:1 25541:1 25552:2 25555:1 25563:1 25609:1 25623:1 25710:4 25724:1 25735:1 25769:1 25774:2 25782:1 25832:1 25841:3 25844:1 25890:2 25892:3 25896:1 25900:1 25907:1 25919:1 25931:1 25944:2 25952:1 25977:4 25981:2 25990:1 25994:1 25998:2 26001:1 26006:1 26035:2 26036:1 26046:1 26050:1 26054:1 26057:1 26062:2 26070:1 26078:1 26084:1 26090:1 26102:1 26105:2 26119:1 26124:1 26156:2 26169:3 26199:1 26200:2 26203:1 26218:1 26224:1 26233:1 26242:1 26250:7 26258:1 26262:3 26275:1 26276:1 26279:1 26287:1 26301:1 26305:1 26308:5 26312:1 26314:1 26323:1 26326:3 26330:2 26337:1 26372:1 26379:1 26392:1 26394:2 26398:6 26404:1 26417:1 26422:1 26424:3 26436:1 26440:2 26456:1 26468:2 26474:1 26475:1 26489:1 26504:1 26524:1 26529:1 26534:1 26537:1 26541:2 26544:1 26560:3 26561:1 26562:1 26563:2 26585:1 26589:2 26608:1 26665:2 26681:1 26695:1 26697:1 26698:1 26700:1 26703:1 26717:1 26729:4 26734:1 26757:1 26760:1 26761:1 26808:2 26836:3 26838:1 26846:1 26855:1 26856:1 26857:2 26858:1 26876:1 26883:1 26889:1 26897:3 26899:1 26904:1 26914:1 26944:1 26963:1 26965:2 26969:1 26990:1 27002:2 27005:4 27053:1 27060:1 27073:1 27091:1 27092:2 27095:1 27101:1 27108:2 27116:1 27127:2 27139:1 27141:2 27156:1 27162:1 27172:1 27178:1 27193:1 27288:1 27298:2 27303:2 27306:2 27332:1 27333:2 27345:2 27347:1 27371:1 27390:1 27396:1 27415:1 27475:1 27482:3 27498:2 27502:1 27503:3 27516:1 27524:3 27538:1 27545:1 27548:2 27549:2 27560:1 27592:1 27598:1 27609:1 27624:1 27660:1 27662:1 27671:1 27677:1 27681:1 27710:3 27750:1 27772:1 27773:1 27803:1 27806:1 27810:2 27823:1 27824:2 27838:1 27841:1 27853:1 27864:1 27868:1 27886:1 27928:1 27930:1 27941:1 27956:1 27981:1 27982:1 27983:1 27984:1 28002:1 28029:1 28038:1 28045:3 28069:3 28079:2 28086:1 28087:1 28090:1 28091:1 28094:11 28102:1 28109:1 28115:1 28125:1 28126:1 28136:1 28155:1 28174:1 28189:1 28192:1 28198:1 28199:1 28218:1 28226:1 28227:2 28273:1 28280:1 28314:1 28342:1 28354:1 28403:2 28404:1 28423:2 28427:1 28433:2 28486:1 28488:1 28498:1 28519:1 28529:1 28537:1 28538:1 28540:1 28548:1 28550:1 28580:1 28632:1 28659:1 28675:1 28690:1 28699:1 28730:2 28741:1 28744:2 28759:1 28771:1 28786:1 28839:2 28854:1 28863:1 28876:1 28877:2 28884:1 28976:1 28991:1 28998:1 28999:2 29007:1 29010:1 29016:1 29021:1 29031:1 29032:1 29056:1 29058:4 29059:1 29091:2 29105:2 29141:1 29146:1 29156:2 29168:1 29172:3 29175:1 29181:1 29187:1 29198:1 29203:2 29205:1 29217:1 29239:1 29263:2 29279:2 29285:2 29290:1 29303:1 29304:2 29307:1 29311:1 29322:1 29335:3 29351:2 29353:1 29375:2 29405:1 29426:1 29428:2 29429:1 29434:1 29437:1 29451:1 29465:1 29506:1 29516:1 29521:1 29529:1 29539:1 29553:4 29555:1 29557:1 29570:1 29583:1 29610:2 29625:2 29632:2 29669:1 29686:1 29689:2 29692:3 29693:1 29744:1 29754:1 29762:2 29765:1 29787:1 29795:1 29806:2 29832:1 29852:2 29853:1 29859:1 29871:1 29880:2 29890:1 29892:1 29912:1 29954:1 29985:1 29990:1 30006:1 30015:2 30032:1 30036:2 30042:1 30052:1 30080:1 30091:1 30102:1 30122:1 30128:1 30144:2 30145:1 30147:1 30152:1 30157:1 30181:1 30249:4 30258:1 30266:9 30268:1 30269:1 30273:1 30281:1 30285:1 30301:1 30329:2 30331:1 30339:2 30375:2 30378:1 30386:1 30402:1 30404:1 30426:2 30430:3 30438:4 30447:1 30464:1 30465:1 30467:1 30480:2 30484:2 30489:1 30490:1 30496:1 30515:1 30521:1 30537:1 30543:2 30557:1 30563:1 30586:1 30591:1 30622:1 30640:2 30662:2 30663:3 30668:4 30671:1 30681:1 30701:1 30706:1 30711:3 30719:1 30734:1 30743:1 30752:1 30765:1 30796:2 30811:1 30836:1 30850:1 30885:1 30888:1 30893:2 30923:5 30926:3 30936:1 30940:1 30949:1 30960:1 31004:1 31022:1 31030:1 31060:2 31064:1 31092:1 31134:1 31140:1 31148:1 31157:1 31158:1 31180:1 31201:3 31214:2 31216:1 31226:1 31242:1 31280:1 31322:1 31334:4 31355:5 31358:4 31359:1 31376:1 31378:1 31396:1 31415:1 31427:1 31449:1 31450:1 31453:2 31455:2 31456:2 31478:1 31479:1 31511:1 31529:1 31544:2 31553:1 31558:1 31565:3 31569:1 31570:3 31577:1 31579:2 31583:1 31584:1 31586:1 31598:1 31606:3 31612:1 31640:1 31650:1 31664:1 31667:3 31670:1 31680:3 31696:3 31709:1 31722:1 31745:1 31746:2 31753:1 31774:1 31775:1 31798:1 31799:1 31835:1 31836:1 31839:1 31845:1 31857:1 31864:1 31875:1 31904:1 31916:1 31920:1 31924:1 31966:1 31982:3 31991:1 32016:2 32017:1 32019:2 32036:1 32055:1 32068:1 32080:1 32084:1 32114:1 32150:2 32175:1 32178:2 32182:1 32199:1 32200:1 32209:1 32216:2 32222:1 32230:1 32236:1 32244:1 32252:3 32256:1 32257:1 32284:1 32288:1 32297:1 32299:3 32317:1 32328:3 32331:1 32346:1 32365:1 32384:4 32405:1 32414:2 32492:4 32507:3 32510:1 32521:1 32528:4 32533:1 32562:1 32575:1 32578:1 32646:1 32653:1 32711:1 32712:1 32713:1 32728:1 32772:1 32778:1 32779:1 32783:1 32787:1 32792:1 32800:1 32835:1 32841:1 32853:1 32862:1 32865:1 32870:1 32874:4 32879:1 32880:3 32881:2 32908:1 32910:1 32928:1 32933:1 32956:1 32971:1 32974:1 32986:2 33006:2 33012:3 33020:1 33026:1 33039:2 33054:2 33070:2 33085:1 33118:2 33143:1 33144:1 33167:1 33203:2 33211:1 33212:1 33215:1 33216:2 33230:1 33250:1 33267:1 33312:1 33349:1 33356:1 33386:1 33394:1 33399:1 33400:1 33406:4 33413:1 33444:2 33452:3 33480:1 33507:1 33514:2 33518:1 33523:1 33527:1 33531:2 33533:3 33534:1 33546:1 33548:1 33549:4 33553:1 33560:5 33620:1 33654:1 33698:1 33712:3 33721:2 33723:1 33728:2 33767:2 33773:1 33811:1 33825:1 33828:2 33844:1 33849:2 33852:1 33856:2 33861:2 33889:2 33896:1 33897:1 33902:1 33909:1 33913:1 33925:1 33926:1 33932:1 33934:1 33935:1 33936:1 33938:1 33942:1 33950:1 33974:1 33986:1 33998:1 34004:1 34015:1 34018:2 34023:2 34029:1 34040:2 34047:1 34059:1 34060:1 34067:1 34068:2 34116:1 34132:2 34139:1 34146:1 34170:1 34172:1 34182:1 34184:1 34185:1 34197:1 34200:1 34212:2 34219:2 34230:1 34263:2 34267:2 34269:1 34285:1 34286:1 34323:1 34338:2 34372:1 34393:2 34410:1 34442:2 34479:1 34488:2 34495:1 34505:1 34506:1 34530:1 34560:1 34574:1 34587:1 34591:2 34600:1 34616:1 34624:2 34633:1 34664:3 34668:1 34674:5 34696:1 34709:1 34727:1 34739:1 34748:1 34753:2 34757:1 34773:15 34774:1 34776:1 34794:1 34797:1 34810:6 34833:2 34844:1 34857:1 34880:1 34881:1 34917:1 34919:1 34932:2 34963:5 34966:1 34971:1 34981:1 34982:1 35001:1 35004:6 35014:1 35015:1 35024:1 35025:1 35027:1 35028:1 35048:1 35054:1 35058:1 35063:1 35070:1 35074:4 35082:1 35102:1 35117:2 35141:1 35154:2 35161:1 35179:2 35203:1 35223:1 35249:2 35253:2 35297:1 35302:1 35305:1 35310:1 35316:1 35324:1 35335:1 35352:1 35360:1 35377:3 35378:1 35382:1 35384:1 35402:1 35417:1 35437:3 35442:1 35459:1 35464:1 35470:1 35475:1 35515:1 35565:3 35593:2 35622:1 35635:1 35646:3 35649:2 35675:1 35684:1 35689:1 35708:1 35714:1 35741:1 35742:1 35746:1 35751:1 35763:1 35837:1 35844:1 35846:1 35864:2 35882:1 35899:1 35911:1 35932:2 35943:1 35959:1 35966:1 35978:1 35985:1 36010:1 36016:1 36019:1 36022:1 36052:1 36053:1 36079:1 36104:2 36128:2 36129:1 36158:1 36170:3 36178:1 36202:1 36203:1 36235:1 36292:1 36312:1 36318:1 36326:3 36327:1 36328:1 36329:3 36332:1 36333:1 36334:2 36340:2 36342:3 36343:2 36351:1 36352:2 36366:1 36368:1 36370:1 36371:1 36392:1 36396:1 36410:1 36415:1 36426:2 36433:1 36438:1 36442:1 36473:1 36477:1 36482:1
15 3:1 8:1 48:1 82:3 114:2 126:1 129:2 151:1 192:1 193:5 212:1 216:3 225:1 255:1 256:1 257:2 258:1 275:1 277:2 281:1 300:1 318:1 321:3 325:1 348:1 371:2 392:2 404:1 419:1 426:2 451:4 453:2 456:2 493:2 511:1 515:1 540:1 551:3 564:1 578:1 595:2 612:1 625:1 649:1 677:2 678:1 680:1 682:1 690:1 692:1 707:1 712:1 726:3 730:1 733:2 738:1 742:1 745:1 759:7 769:1 772:1 773:3 776:3 783:1 787:1 848:1 864:1 877:3 897:1 911:1 916:1 917:1 934:1 936:4 937:1 941:1 952:3 983:1 990:1 1002:1 1008:1 1042:2 1047:1 1048:1 1068:2 1071:1 1073:1 1075:1 1078:2 1081:1 1084:1 1085:2 1093:1 1095:1 1096:1 1099:1 1103:2 1113:1 1131:2 1133:1 1135:3 1140:1 1145:2 1148:1 1154:1 1167:3 1177:1 1183:1 1192:1 1194:1 1208:1 1222:1 1231:2 1237:3 1247:1 1272:3 1274:1 1275:1 1305:1 1307:1 1316:1 1348:2 1349:1 1393:1 1396:2 1411:1 1418:2 1423:2 1431:1 1450:1 1453:1 1467:1 1473:3 1474:1 1482:1 1525:2 1535:1 1541:1 1542:1 1546:1 1553:1 1554:2 1568:1 1577:1 1606:1 1607:1 1615:2 1624:1 1634:1 1635:1 1654:1 1662:1 1663:1 1667:1 1674:2 1723:1 1737:2 1738:1 1746:2 1750:2 1752:1 1757:7 1796:1 1799:1 1803:2 1807:2 1809:2 1815:1 1816:1 1819:6 1832:1 1835:1 1849:1 1854:1 1870:1 1892:1 1901:4 1904:1 1905:4 1913:2 1919:2 1938:1 1945:1 1954:1 1955:1 1967:1 1994:1 1997:2 2004:2 2006:2 2010:1 2017:1 2022:1 2041:3 2070:1 2071:1 2074:1 2097:1 2114:1 2115:1 2118:2 2128:1 2131:1 2145:2 2148:2 2149:1 2154:1 2171:2 2194:1 2196:1 2223:1 2224:1 2227:1 2232:1 2234:2 2237:1 2239:2 2242:1 2301:1 2309:1 2313:1 2328:1 2358:1 2371:1 2374:4 2381:1 2393:2 2398:1 2411:1 2517:1 2541:2 2563:1 2564:1 2582:1 2596:1 2601:1 2633:3 2673:1 2684:3 2712:2 2742:2 2743:1 2777:1 2780:1 2786:1 2787:1 2789:2 2791:3 2801:2 2805:2 2810:1 2811:2 2812:2 2813:3 2817:1 2820:4 2821:1 2823:1 2840:1 2860:1 2861:2 2905:2 2938:1 2986:2 2989:1 2990:2 3041:1 3049:3 3063:2 3101:1 3120:1 3138:1 3167:1 3172:2 3193:2 3197:1 3202:1 3214:1 3229:1 3302:1 3314:2 3322:2 3326:1 3353:1 3356:1 3359:1 3360:3 3363:1 3367:1 3370:1 3394:1 3421:1 3423:3 3432:1 3483:1 3495:2 3505:2 3513:1 3517:1 3518:1 3547:2 3552:1 3555:1 3559:1 3569:5 3576:5 3577:2 3589:1 3615:2 3632:5 3635:4 3653:1 3658:1 3660:1 3664:1 3666:1 3669:2 3675:1 3678:1 3689:1 3705:1 3711:2 3716:1 3746:2 3749:1 3758:1 3771:2 3775:1 3795:1 3820:1 3853:1 3866:1 3886:1 3890:1 3904:1 3945:1 3962:1 4033:3 4047:1 4055:1 4073:1 4083:1 4091:1 4103:1 4106:1 4148:3 4161:1 4175:1 4178:1 4179:1 4219:1 4221:1 4224:1 4231:1 4261:3 4264:1 4307:1 4319:1 4333:1 4375:1 4380:1 4413:1 4416:1 4439:1 4450:1 4452:2 4455:1 4463:1 4465:1 4467:1 4484:1 4498:2 4501:1 4536:1 4541:1 4549:1 4553:1 4556:1 4590:1 4602:1 4604:2 4606:1 4608:1 4624:1 4646:1 4678:1 4687:2 4688:7 4708:1 4724:1 4730:1 4741:1 4742:2 4745:2 4771:2 4774:2 4813:1 4820:2 4821:4 4826:2 4859:1 4873:1 4874:1 4888:2 4894:1 4898:1 4911:1 4928:2 4933:1 4959:1 4967:1 4969:1 4974:1 4998:2 5001:1 5002:1 5018:1 5027:2 5028:1 5032:1 5054:1 5063:1 5102:1 5107:1 5132:1 5177:2 5201:1 5232:1 5246:1 5255:3 5259:1 5275:2 5287:1 5294:2 5298:1 5310:1 5314:1 5344:1 5347:1 5357:1 5366:1 5378:4 5398:1 5411:1 5412:1 5421:1 5435:1 5438:1 5450:1 5489:1 5506:1 5519:1 5522:1 5531:1 5543:2 5581:2 5583:1 5590:1 5607:1 5620:1 5623:1 5625:1 5664:1 5677:1 5683:2 5689:3 5697:1 5718:2 5719:2 5730:2 5743:1 5747:1 5766:1 5815:1 5822:1 5832:2 5838:2 5855:3 5865:1 5866:2 5879:1 5885:1 5920:1 5921:1 5923:1 5925:2 5928:2 6004:1 6007:2 6014:1 6016:2 6021:1 6097:7 6132:2 6140:1 6145:1 6153:1 6167:1 6168:1 6172:2 6237:5 6257:2 6258:1 6263:1 6264:1 6266:1 6270:1 6271:1 6273:3 6277:1 6281:1 6283:1 6287:1 6288:2 6289:1 6291:1 6315:1 6316:1 6321:1 6401:2 6404:1 6435:1 6442:1 6449:1 6454:1 6458:2 6475:1 6476:1 6508:1 6529:2 6533:3 6543:1 6564:1 6567:1 6584:2 6587:3 6605:3 6612:1 6630:3 6650:1 6695:2 6737:1 6740:1 6747:1 6772:4 6802:2 6806:2 6822:1 6829:2 6853:4 6877:1 6896:1 6904:1 6906:1 6909:1 6921:1 6922:2 6934:1 6936:2 6942:1 6963:4 6987:1 7016:1 7037:2 7061:1 7115:1 7136:1 7177:1 7184:2 7187:1 7202:3 7209:1 7227:1 7236:1 7245:1 7257:1 7272:1 7281:1 7288:1 7319:1 7321:1 7322:2 7323:1 7335:1 7351:2 7368:1 7385:1 7406:1 7434:1 7439:1 7441:1 7444:1 7517:1 7536:1 7566:1 7575:1 7583:1 7591:1 7594:1 7627:3 7633:1 7637:1 7661:1 7685:1 7689:1 7726:2 7743:4 7747:1 7749:1 7764:2 7765:1 7778:1 7782:1 7785:1 7790:1 7830:3 7836:3 7922:2 7936:1 7950:3 7958:1 7964:1 7969:2 7973:1 8045:2 8050:1 8056:1 8062:1 8065:1 8073:3 8075:1 8083:2 8084:2 8085:3 8086:1 8088:3 8091:2 8092:1 8099:3 8101:4 8105:1 8112:1 8135:1 8136:1 8147:1 8151:1 8162:1 8163:1 8164:1 8168:1 8176:1 8193:1 8196:3 8210:2 8212:2 8213:1 8223:1 8226:1 8233:2 8252:1 8262:1 8269:3 8270:1 8282:1 8286:2 8296:1 8304:1 8361:1 8362:1 8371:1 8378:1 8389:1 8413:3 8416:1 8420:4 8422:1 8425:1 8432:1 8457:2 8459:1 8464:1 8477:1 8491:1 8525:1 8527:3 8557:1 8558:1 8565:1 8574:1 8607:1 8615:1 8661:1 8662:1 8671:1 8678:1 8687:1 8690:1 8700:1 8743:3 8748:1 8757:1 8761:1 8762:4 8777:1 8802:1 8814:1 8818:3 8846:1 8874:1 8897:2 8917:1 8929:1 8943:1 8952:1 8959:3 8965:1 8966:1 8972:2 8992:2 9011:1 9016:5 9021:2 9024:1 9046:2 9061:3 9066:1 9068:1 9087:4 9110:1 9130:6 9140:1 9160:1 9191:1 9192:1 9201:1 9203:1 9215:1 9234:1 9239:1 9243:1 9252:1 9282:1 9289:7 9311:1 9349:1 9352:1 9390:2 9412:1 9420:1 9433:3 9452:2 9466:1 9489:2 9505:1 9535:2 9539:1 9540:1 9544:2 9547:1 9557:1 9560:1 9561:1 9576:1 9586:1 9590:1 9595:2 9608:1 9609:1 9617:1 9618:1 9622:2 9633:1 9655:1 9658:1 9671:2 9677:3 9678:2 9680:1 9691:1 9710:4 9743:1 9754:1 9758:1 9783:1 9786:2 9789:6 9813:2 9817:1 9829:1 9850:1 9858:2 9862:1 9875:1 9881:24 9892:1 9904:2 9905:7 9927:1 9937:1 9940:1 9948:2 9949:1 9956:1 9971:1 9988:1 9989:1 10008:1 10019:1 10027:1 10034:1 10039:1 10057:3 10063:1 10081:1 10089:1 10090:1 10119:1 10122:4 10125:1 10133:1 10135:1 10140:1 10145:1 10147:1 10176:1 10187:1 10189:1 10197:3 10228:1 10239:2 10270:1 10279:1 10292:1 10302:1 10320:1 10326:1 10328:3 10340:1 10353:1 10381:1 10387:2 10395:2 10402:1 10413:1 10419:4 10441:1 10445:1 10463:1 10470:3 10471:11 10487:1 10489:1 10500:1 10501:1 10508:1 10514:1 10523:1 10532:1 10536:2 10547:1 10548:3 10550:1 10558:1 10572:1 10578:2 10594:4 10596:3 10607:3 10618:1 10630:1 10647:5 10686:1 10701:1 10705:1 10714:2 10753:2 10758:1 10761:1 10772:3 10773:1 10779:1 10788:1 10798:1 10809:2 10820:1 10857:1 10860:1 10887:1 10899:2 10902:1 10910:1 10912:1 10932:1 10958:1 10961:1 10963:3 10965:1 10967:1 10970:1 10973:1 10976:3 10977:1 10982:1 10983:1 11003:1 11006:1 11019:1 11029:1 11037:1 11058:1 11061:1 11083:1 11084:2 11086:1 11091:1 11107:1 11115:1 11138:2 11142:1 11158:1 11166:2 11190:1 11207:2 11208:9 11216:1 11227:1 11231:1 11238:1 11249:3 11261:1 11264:1 11284:1 11304:2 11311:1 11320:1 11323:1 11342:1 11351:2 11358:2 11386:1 11396:7 11429:2 11442:1 11555:1 11573:1 11586:1 11594:1 11599:1 11611:1 11617:1 11638:1 11646:1 11648:1 11650:2 11668:1 11672:1 11673:1 11685:3 11696:4 11725:1 11733:1 11743:3 11746:1 11779:2 11789:1 11793:1 11807:1 11818:1 11824:2 11850:1 11853:1 11867:2 11912:1 11913:2 11938:1 11960:1 11984:1 11999:1 12013:2 12015:2 12016:1 12026:1 12039:1 12040:1 12050:1 12051:1 12075:1 12078:2 12086:1 12092:2 12095:1 12096:2 12131:3 12132:1 12153:2 12157:1 12183:1 12199:1 12209:1 12216:1 12220:1 12224:1 12234:1 12236:1 12240:1 12242:1 12243:1 12244:1 12245:1 12285:2 12324:1 12332:1 12337:1 12386:5 12403:1 12413:2 12427:2 12438:1 12442:1 12451:1 12479:2 12480:1 12486:1 12526:1 12567:1 12588:1 12597:1 12605:1 12624:1 12633:1 12644:1 12645:4 12653:1 12660:1 12682:1 12702:2 12708:2 12734:1 12769:2 12772:1 12776:2 12784:2 12786:1 12792:2 12802:1 12806:2 12809:2 12810:2 12811:2 12827:1 12846:1 12847:1 12855:1 12860:1 12887:1 12888:8 12907:1 12918:1 12921:3 12947:2 12974:3 12975:1 12985:1 13006:1 13012:1 13020:3 13021:1 13023:1 13032:2 13053:1 13072:1 13079:1 13086:1 13100:1 13104:1 13112:1 13114:1 13115:1 13123:1 13126:1 13135:1 13137:3 13139:1 13146:4 13228:1 13229:1 13230:1 13241:1 13248:1 13254:1 13259:1 13267:2 13297:1 13307:4 13311:2 13335:2 13337:1 13376:1 13377:2 13378:1 13384:1 13392:1 13420:1 13429:1 13443:7 13476:2 13490:1 13519:2 13532:1 13540:8 13551:2 13560:1 13579:2 13580:2 13588:1 13593:1 13599:1 13611:1 13627:1 13636:1 13642:1 13648:2 13653:1 13666:1 13673:1 13676:3 13680:1 13682:1 13738:1 13742:1 13743:1 13745:1 13762:1 13769:1 13773:1 13777:1 13792:1 13813:1 13844:1 13855:1 13871:1 13897:1 13899:1 13916:1 13949:1 13952:1 13956:2 13972:1 13977:2 13982:2 13994:1 13998:1 14031:1 14033:1 14096:1 14107:2 14127:1 14129:2 14132:1 14150:2 14151:3 14165:1 14166:1 14167:1 14170:1 14180:1 14192:2 14195:1 14208:1 14210:2 14214:1 14221:1 14227:1 14244:1 14278:2 14281:1 14288:3 14297:1 14326:1 14333:1 14371:1 14390:1 14397:1 14437:2 14439:1 14442:1 14459:2 14472:4 14482:1 14492:1 14493:1 14494:1 14503:1 14507:4 14520:1 14530:1 14539:1 14543:1 14544:1 14552:1 14590:2 14592:1 14617:1 14619:1 14621:1 14631:1 14638:1 14640:1 14667:1 14683:1 14701:1 14702:1 14705:1 14718:1 14720:1 14731:1 14750:1 14765:1 14780:1 14787:1 14806:2 14829:1 14841:1 14859:1 14865:2 14885:1 14894:3 14915:1 14920:1 14921:1 14954:2 14969:1 14978:4 14982:1 14985:3 14988:1 14989:1 14997:1 14998:1 15008:1 15030:1 15038:1 15044:1 15046:1 15057:1 15061:1 15071:3 15074:2 15110:3 15112:1 15138:1 15174:1 15185:1 15211:1 15221:2 15228:1 15229:1 15258:1 15264:1 15300:1 15308:1 15309:1 15315:1 15334:2 15344:2 15345:4 15349:1 15354:1 15361:1 15368:1 15380:1 15391:1 15397:1 15400:1 15425:3 15444:1 15446:1 15471:1 15472:4 15473:1 15486:1 15497:1 15503:1 15510:5 15517:2 15530:1 15534:1 15547:1 15552:1 15563:3 15576:1 15584:1 15594:3 15609:1 15616:1 15624:1 15631:1 15641:1 15646:2 15653:1 15655:1 15676:1 15706:5 15721:3 15729:4 15743:1 15753:3 15768:1 15779:1 15789:1 15823:4 15839:1 15845:1 15862:1 15865:1 15871:1 15907:1 15936:1 15938:1 15960:1 15970:1 15971:1 15978:1 16011:1 16024:1 16031:1 16033:1 16034:2 16036:1 16043:1 16045:2 16048:1 16082:1 16088:1 16112:1 16136:2 16145:1 16184:1 16212:1 16213:1 16218:1 16226:1 16233:1 16253:1 16261:1 16285:1 16287:6 16316:2 16319:2 16323:1 16333:2 16355:1 16357:1 16367:1 16390:1 16434:1 16465:1 16469:1 16483:2 16540:1 16557:1 16559:1 16580:1 16581:3 16586:2 16640:1 16686:1 16713:1 16734:1 16738:1 16749:1 16757:1 16762:1 16773:1 16788:1 16800:1 16802:10 16824:1 16836:2 16838:1 16840:2 16857:1 16866:2 16879:6 16885:1 16895:1 16899:1 16910:1 16911:1 16913:1 16934:1 16982:7 16993:1 16994:4 16997:1 17002:1 17021:1 17029:1 17031:1 17042:2 17051:1 17059:2 17073:2 17081:6 17086:1 17092:3 17144:1 17151:2 17156:3 17163:1 17166:1 17177:1 17188:1 17203:1 17205:2 17234:2 17239:1 17247:1 17269:1 17278:4 17290:1 17305:1 17332:1 17345:1 17347:1 17371:1 17384:1 17408:1 17432:1 17436:1 17440:1 17449:1 17460:1 17469:2 17481:1 17518:2 17528:1 17552:1 17561:5 17567:3 17575:1 17585:1 17621:1 17674:1 17675:1 17679:1 17686:1 17693:2 17744:1 17757:1 17770:1 17775:2 17777:1 17786:2 17790:1 17810:1 17813:1 17815:1 17831:1 17872:1 17909:1 17914:1 17918:2 17930:2 17938:1 17943:1 17950:1 17951:1 17959:3 17989:3 18005:2 18036:2 18055:1 18058:1 18074:1 18141:1 18161:1 18174:1 18220:2 18228:1 18230:1 18232:1 18235:1 18240:1 18245:1 18248:1 18263:1 18290:1 18314:1 18324:1 18338:1 18340:1 18345:3 18359:2 18384:2 18385:1 18389:1 18403:1 18407:1 18422:1 18429:2 18433:1 18456:1 18467:1 18493:2 18503:1 18513:3 18536:1 18561:1 18564:1 18574:1 18608:2 18629:2 18662:1 18664:1 18687:1 18698:1 18718:6 18727:2 18741:1 18742:3 18745:1 18746:1 18750:9 18757:1 18806:2 18827:1 18868:1 18902:1 18919:1 18921:2 18932:3 18947:1 18988:1 18989:1 19011:2 19018:4 19025:1 19036:7 19058:3 19083:1 19084:1 19087:3 19089:1 19112:3 19123:2 19129:2 19132:2 19156:5 19179:7 19181:1 19202:1 19203:1 19237:1 19271:1 19282:1 19293:1 19308:1 19328:3 19335:2 19345:1 19365:4 19389:1 19394:1 19395:2 19417:1 19439:2 19450:1 19473:1 19484:1 19505:1 19531:1 19589:1 19630:1 19631:1 19641:1 19659:2 19665:2 19670:1 19682:3 19695:3 19703:1 19713:2 19728:2 19756:1 19757:1 19759:1 19767:1 19786:1 19788:2 19812:1 19820:1 19852:1 19867:1 19875:1 19912:1 19915:1 19919:2 19924:6 19929:1 19946:1 19964:1 19980:1 19981:3 19984:2 20022:3 20097:1 20102:1 20106:1 20128:2 20129:3 20130:1 20143:4 20147:1 20164:1 20170:1 20189:1 20190:2 20192:1 20193:1 20194:1 20200:2 20201:1 20212:1 20216:1 20221:2 20226:4 20234:1 20247:1 20297:1 20299:2 20303:1 20304:2 20306:6 20334:1 20343:4 20353:1 20382:1 20390:1 20391:1 20413:1 20434:1 20437:1 20445:1 20448:2 20484:1 20488:1 20502:7 20518:2 20544:2 20546:3 20557:1 20580:1 20594:1 20597:1 20608:2 20619:1 20627:1 20632:1 20645:1 20652:1 20657:5 20662:3 20667:1 20672:1 20686:1 20698:1 20730:1 20733:1 20822:1 20823:1 20852:1 20857:2 20865:1 20874:1 20877:1 20893:2 20899:1 20904:1 20907:1 20920:1 20940:3 20955:3 20957:2 20965:1 20973:8 20983:1 21029:1 21032:1 21039:1 21087:1 21096:1 21108:1 21115:1 21139:1 21159:1 21172:1 21185:1 21193:1 21196:1 21225:1 21226:1 21236:1 21253:1 21256:1 21257:1 21274:1 21282:1 21293:1 21294:2 21309:1 21311:1 21327:1 21333:6 21378:3 21396:1 21433:2 21451:2 21455:1 21476:1 21496:1 21505:1 21510:3 21514:1 21515:1 21539:1 21543:1 21546:1 21595:25 21599:2 21631:1 21645:1 21661:2 21662:1 21668:1 21681:1 21683:1 21690:1 21691:1 21722:1 21724:1 21747:1 21749:1 21750:1 21783:1 21797:1 21855:1 21870:1 21923:2 21924:1 21929:1 21942:1 21944:1 21945:1 21949:2 21975:1 22063:1 22068:1 22115:1 22122:1 22126:1 22129:1 22148:1 22170:1 22172:1 22175:2 22179:1 22184:1 22188:1 22193:2 22196:1 22201:1 22238:1 22248:3 22281:4 22282:3 22304:1 22328:1 22333:1 22355:2 22376:1 22382:1 22400:1 22406:3 22408:1 22414:4 22420:1 22429:3 22430:1 22442:1 22451:1 22460:2 22462:1 22475:1 22477:1 22484:1 22486:1 22497:1 22518:1 22520:1 22529:1 22530:1 22546:1 22574:1 22575:5 22582:1 22584:1 22616:1 22629:1 22666:2 22674:2 22679:1 22696:1 22698:1 22761:1 22781:1 22788:1 22791:1 22795:1 22803:1 22851:1 22864:2 22878:1 22912:1 22915:1 22922:1 22969:1 22973:1 22991:1 22997:1 23001:1 23015:1 23025:2 23060:1 23091:1 23092:1 23123:1 23126:1 23132:2 23177:2 23197:1 23200:2 23215:1 23232:1 23242:1 23251:1 23255:1 23256:1 23297:2 23306:1 23307:1 23322:1 23325:1 23401:2 23413:2 23450:2 23464:3 23480:1 23527:1 23540:1 23543:1 23549:1 23555:4 23568:1 23584:2 23591:1 23613:1 23619:1 23660:1 23664:2 23666:1 23667:1 23684:1 23690:1 23721:2 23725:3819 23753:1 23764:1 23769:1 23784:1 23811:1 23840:1 23856:2 23864:1 23867:1 23886:1 23903:2 23935:1 23945:1 23948:1 23969:1 23976:1 23978:1 23991:1 23994:1 23995:1 23997:1 24000:1 24001:1 24018:1 24053:2 24078:1 24083:1 24084:1 24089:1 24102:1 24125:1 24134:1 24146:1 24150:1 24153:1 24159:1 24166:1 24170:1 24179:1 24188:1 24204:1 24212:1 24222:2 24237:1 24238:1 24242:1 24244:1 24245:2 24253:1 24277:1 24281:4 24284:1 24354:1 24357:2 24364:1 24377:1 24393:1 24399:1 24409:1 24415:1 24435:1 24441:2 24452:1 24453:1 24456:1 24457:1 24463:1 24465:1 24466:1 24489:1 24501:1 24515:1 24520:1 24531:1 24533:1 24545:9 24555:1 24580:2 24588:1 24593:6 24597:1 24604:1 24631:3 24641:1 24669:1 24700:3 24713:1 24723:1 24763:1 24777:1 24781:1 24804:1 24805:4 24848:4 24851:1 24854:1 24856:1 24874:2 24875:1 24881:1 24898:1 24913:2 24933:1 24940:1 24956:1 24982:1 24988:2 25031:1 25042:1 25047:1 25055:1 25060:1 25072:1 25101:1 25111:1 25112:1 25118:1 25122:1 25127:1 25141:1 25170:1 25206:2 25238:1 25253:1 25261:1 25265:2 25267:1 25275:1 25281:2 25283:1 25286:1 25308:1 25312:1 25314:1 25327:1 25328:4 25338:1 25346:1 25354:1 25356:1 25357:7 25376:3 25380:1 25382:1 25398:2 25408:1 25411:1 25413:1 25424:1 25425:1 25437:1 25451:2 25453:4 25492:2 25497:1 25531:3 25532:1 25534:1 25541:1 25552:2 25555:1 25563:1 25571:1 25609:1 25623:1 25710:4 25724:1 25735:1 25769:1 25774:2 25782:1 25832:1 25841:3 25844:1 25890:2 25892:3 25896:1 25900:1 25907:1 25919:1 25931:1 25944:2 25952:1 25977:4 25981:2 25990:1 25994:1 25998:2 26001:1 26006:1 26035:2 26036:1 26046:1 26050:1 26054:1 26057:1 26062:2 26070:1 26078:1 26084:1 26090:1 26102:1 26105:2 26119:1 26124:1 26156:2 26169:3 26199:1 26200:3 26203:1 26218:1 26224:1 26233:1 26242:1 26250:7 26258:1 26262:3 26275:1 26276:1 26279:1 26287:1 26301:2 26305:1 26308:5 26312:1 26314:1 26323:1 26326:3 26330:2 26337:1 26372:1 26379:1 26392:1 26394:2 26398:6 26404:1 26417:1 26422:1 26424:3 26436:1 26440:2 26456:1 26468:2 26474:1 26475:1 26489:1 26504:1 26524:1 26529:1 26534:1 26537:1 26541:2 26544:1 26560:3 26561:1 26562:1 26563:2 26585:1 26589:2 26608:1 26665:2 26681:1 26695:1 26697:1 26698:1 26700:1 26703:1 26717:1 26729:5 26734:1 26757:1 26760:1 26761:1 26808:2 26836:3 26838:1 26846:1 26855:1 26856:1 26857:2 26858:1 26876:1 26883:1 26889:1 26897:3 26899:1 26904:1 26914:1 26944:1 26963:1 26965:2 26969:1 26990:1 27002:2 27005:4 27053:1 27060:1 27073:1 27091:1 27092:2 27095:1 27101:1 27108:2 27116:1 27127:2 27139:1 27141:2 27156:1 27162:1 27172:1 27178:1 27193:1 27288:1 27298:2 27303:2 27306:2 27332:1 27333:2 27345:2 27347:1 27371:1 27390:1 27396:1 27415:1 27475:1 27482:3 27498:2 27502:2 27503:3 27516:1 27524:3 27538:1 27545:1 27548:2 27549:2 27560:1 27592:1 27598:1 27609:1 27624:1 27660:1 27662:1 27671:2 27677:1 27681:1 27710:3 27750:1 27772:1 27773:1 27803:1 27806:1 27810:2 27823:1 27824:2 27838:1 27841:1 27853:2 27864:1 27868:1 27886:1 27928:1 27930:1 27941:1 27949:1 27956:1 27981:1 27982:1 27983:1 27984:1 28002:1 28029:1 28038:1 28045:4 28069:3 28079:2 28086:1 28087:2 28090:1 28091:1 28094:11 28102:1 28109:1 28115:1 28125:1 28126:1 28136:1 28155:1 28174:1 28189:1 28192:1 28198:1 28199:1 28218:1 28226:1 28227:2 28273:1 28280:1 28314:1 28342:1 28354:1 28403:2 28404:1 28423:2 28427:1 28433:2 28484:1 28486:1 28488:1 28498:1 28519:1 28529:1 28537:1 28538:1 28540:1 28548:1 28550:1 28580:1 28632:1 28659:1 28675:1 28690:1 28699:1 28730:2 28741:1 28744:2 28759:1 28771:1 28786:1 28839:2 28854:1 28863:1 28876:1 28877:2 28884:1 28976:1 28991:1 28998:1 28999:2 29007:1 29010:1 29016:1 29021:1 29031:1 29032:1 29056:1 29058:4 29059:1 29091:2 29105:2 29141:1 29146:1 29156:2 29168:1 29172:3 29175:1 29181:1 29187:1 29198:1 29203:2 29205:1 29208:1 29217:2 29239:1 29263:2 29279:2 29285:2 29290:2 29303:1 29304:2 29307:1 29311:1 29322:1 29335:3 29351:2 29353:1 29375:2 29405:1 29426:1 29428:2 29429:1 29434:1 29437:1 29451:1 29465:1 29506:1 29516:1 29521:1 29529:1 29539:1 29553:4 29555:1 29557:1 29570:2 29583:1 29610:2 29625:2 29632:2 29669:1 29686:1 29689:2 29692:3 29693:1 29729:1 29744:1 29754:1 29762:2 29765:1 29787:1 29795:1 29806:2 29832:1 29852:2 29853:1 29859:1 29871:1 29880:2 29890:1 29892:1 29912:1 29954:1 29985:1 29990:1 30006:1 30015:2 30032:1 30036:2 30042:1 30052:1 30080:1 30091:1 30102:1 30122:1 30128:1 30144:2 30145:1 30147:1 30152:1 30157:1 30181:1 30249:4 30258:1 30266:10 30268:1 30269:1 30273:1 30281:1 30285:1 30301:1 30329:2 30331:1 30339:2 30375:2 30378:1 30386:1 30402:1 30404:1 30426:2 30430:3 30438:4 30447:1 30464:1 30465:1 30467:1 30480:2 30484:2 30489:1 30490:1 30496:1 30515:1 30521:1 30537:1 30543:2 30557:1 30563:1 30586:1 30591:1 30622:1 30640:2 30662:2 30663:3 30668:4 30671:1 30681:1 30701:1 30706:1 30711:3 30719:1 30734:1 30743:1 30752:1 30765:1 30796:2 30811:1 30836:1 30850:1 30885:1 30888:1 30893:2 30923:5 30926:3 30936:1 30940:1 30949:1 30960:1 31004:1 31022:1 31030:1 31060:2 31064:1 31092:1 31134:1 31140:1 31148:1 31157:1 31158:1 31180:1 31201:3 31214:2 31216:1 31226:1 31242:1 31280:1 31322:1 31334:4 31355:5 31358:4 31359:1 31376:1 31378:1 31396:1 31415:1 31427:1 31449:1 31450:1 31453:3 31455:2 31456:2 31478:1 31479:1 31511:1 31529:1 31544:2 31553:1 31558:1 31565:3 31569:1 31570:3 31577:1 31579:2 31583:1 31584:1 31586:1 31591:1 31598:1 31606:3 31612:1 31640:1 31650:1 31664:1 31667:3 31670:1 31680:3 31696:3 31709:1 31722:1 31745:1 31746:2 31753:1 31774:1 31775:1 31798:1 31799:1 31835:1 31836:1 31839:1 31845:1 31857:1 31864:1 31875:1 31904:1 31916:1 31920:1 31924:1 31966:1 31982:3 31991:1 32016:2 32017:1 32019:2 32036:1 32055:1 32068:1 32080:1 32084:1 32114:1 32150:2 32175:1 32178:2 32182:1 32199:1 32200:1 32209:1 32216:2 32222:1 32230:1 32236:1 32244:1 32252:3 32256:1 32257:1 32284:1 32288:1 32297:1 32299:4 32317:1 32328:3 32331:1 32346:1 32365:1 32384:4 32405:1 32414:2 32492:4 32507:3 32510:1 32521:1 32528:4 32533:1 32562:1 32575:1 32578:1 32646:1 32653:1 32711:1 32712:1 32713:1 32728:1 32772:1 32778:1 32779:1 32783:1 32787:1 32792:1 32800:1 32835:1 32841:1 32853:1 32862:1 32865:1 32870:1 32874:4 32879:1 32880:3 32881:2 32908:1 32910:1 32928:1 32933:1 32938:1 32956:1 32971:1 32974:1 32986:2 32991:1 33006:2 33012:3 33020:1 33026:1 33039:2 33054:3 33070:2 33085:1 33118:2 33143:1 33144:1 33167:2 33203:2 33211:1 33212:1 33215:1 33216:2 33230:1 33250:1 33267:1 33312:1 33349:1 33356:1 33386:1 33394:1 33399:1 33400:1 33406:4 33413:1 33436:1 33444:2 33452:3 33480:1 33507:1 33514:2 33518:1 33523:1 33527:1 33531:2 33533:3 33534:1 33546:1 33548:1 33549:5 33553:1 33560:5 33620:1 33639:1 33654:1 33698:1 33712:3 33721:2 33723:1 33728:2 33767:2 33773:1 33811:1 33825:1 33828:2 33844:1 33849:2 33852:1 33856:2 33861:2 33871:1 33889:2 33896:1 33897:1 33902:2 33909:1 33913:1 33925:1 33926:1 33932:1 33934:1 33935:1 33936:1 33938:1 33942:1 33950:1 33974:1 33986:1 33998:1 34004:1 34015:1 34018:2 34023:2 34029:1 34040:2 34047:1 34059:1 34060:1 34067:1 34068:2 34116:1 34132:2 34139:1 34146:1 34170:1 34172:1 34182:1 34184:1 34185:1 34197:1 34200:1 34212:2 34219:2 34230:1 34263:2 34267:2 34269:1 34285:1 34286:1 34323:1 34338:2 34372:1 34393:2 34410:1 34442:2 34479:1 34488:2 34495:1 34505:1 34506:1 34530:1 34560:1 34574:1 34587:1 34591:2 34600:1 34616:1 34624:2 34633:1 34664:3 34668:1 34674:5 34696:1 34709:1 34727:1 34739:1 34748:1 34753:2 34757:1 34773:15 34774:1 34776:1 34794:1 34797:1 34810:6 34833:2 34844:1 34857:1 34880:1 34881:1 34912:1 34917:1 34919:1 34932:2 34963:5 34966:1 34971:1 34981:1 34982:1 35001:1 35004:6 35014:1 35015:1 35024:1 35025:1 35027:1 35028:1 35048:1 35054:1 35058:1 35063:1 35070:1 35074:4 35082:1 35102:1 35117:2 35141:1 35154:2 35161:1 35179:2 35203:1 35223:1 35249:2 35253:2 35297:1 35302:1 35305:1 35310:1 35316:1 35324:1 35335:1 35352:1 35360:1 35377:3 35378:1 35382:1 35384:1 35402:1 35417:1 35437:3 35442:1 35459:1 35464:1 35470:1 35475:1 35515:1 35565:3 35593:2 35622:1 35635:2 35646:4 35649:2 35675:1 35684:1 35689:1 35708:1 35714:1 35741:1 35742:1 35746:1 35751:1 35763:2 35837:1 35844:1 35846:1 35864:2 35882:1 35899:1 35911:1 35932:2 35943:1 35959:1 35966:1 35978:1 35985:1 36010:1 36016:1 36019:1 36022:1 36052:1 36053:1 36079:1 36104:2 36127:1 36128:2 36129:1 36158:1 36170:3 36178:1 36202:1 36203:1 36235:1 36292:1 36312:1 36318:1 36326:3 36327:1 36328:1 36329:3 36332:1 36333:1 36334:2 36340:2 36342:3 36343:2 36350:1 36351:1 36352:2 36366:1 36368:1 36370:1 36371:1 36392:1 36396:1 36410:1 36415:1 36426:2 36433:1 36438:1 36442:1 36473:1 36477:1 36482:1
|
965ca920311fe131a597501a53ce4c49998ba5f2 | 286a3b61feec58c992ceda8f1ce28b8e4db5caf5 | /courbes_surfaces/tp4/partie41.sce | 1e5505d182583ea0d121c3ea3cc4f2cde21ff03d | [] | no_license | confiture/M2 | 970865ab3a52c5c65a84637f987dc27d6485542d | e95ca27c1eccd36337348ff042b8db144c08f0d5 | refs/heads/master | 2021-01-22T07:32:37.900029 | 2017-11-06T13:07:58 | 2017-11-06T13:07:58 | 1,020,201 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 19,541 | sce | partie41.sce | exec('util.sce')
exec('nurbs.sce')
/////////////////////////////////////////////////////////
// conversion d'une surface NURBS en patch de Bezier
/////////////////////////////////////////////////////////
function prog41()
//// 1 - d�finition de la NURBS
cas = 1; // NURBS lue dans un fichier
//cas = 0; // NURBS definie dans le programme
select cas
case 1 // lecture dans un fichier
nom_f = uigetfile('*.txt','.','Selection d''un fichier NURBS');
[T,u,v,du,dv]=lire_fichier_NURBS(nom_f);
X = T(:,:,1);
Y = T(:,:,2);
Z = T(:,:,3);
omega = T(:,:,4);
else // d�finition de la NURBS dans le programme
// tableau de la coordonn�e 1 des points de controle
X = [
0 1 2 3 4;...
0 1 2 3 4;...
0 1 2 3 4;...
0 1 2 3 4;...
0 1 2 3 4;...
0 1 2 3 4;...
0 1 2 3 4];
// tableau de la coordonn�e 2 des points de controle
Y = [
0 0 0 0 0;...
1 1 1 1 1;...
2 2 2 2 2;...
3 3 3 3 3;...
4 4 4 4 4;...
5 5 5 5 5;...
6 6 6 6 6];
// tableau de la coordonn�e 3 des points de controle
Z = [
0 0 0 0 0;...
0 0 0 0 0;...
0 0 -3 0 0;...
0 0 0 0 0;...
0 0 3 0 0;...
0 0 0 0 0;...
0 0 0 0 0];
// tableau des poids
omega = [
1 1 1 1 1;...
1 1 1 1 1;...
1 1 2 1 1;...
1 1 1 1 1;...
1 1 0.5 1 1;...
1 1 1 1 1;...
1 1 1 1 1];
// noeuds, degr� suivant la dimension 1
u = [0 1 2 3 4]; du = 3;
// noeuds, degr� suivant la dimension 2
v = [0 1 2 3]; dv = 2; nv = length(v)-1;
end // select cas
// ordre et nombre d'intervalles suivant la dimension 1
ordre_u = du+1; nu = length(u)-1;
// ordre et nombre d'intervalles suivant la dimension 2
ordre_v = dv+1; nv = length(v)-1;
//// 2 - conversion de la NURBS en B�zier
// ************************************
// ******** PARTIE A COMPLETER ********
// ************************************
//// 3 - �criture des fichiers
// le polyedre de controle de la NURBS
f=mopen("nurbs.mesh","w");
write_MESH(f, X, Y, Z);
mclose(f)
// DECOMMENTER LES LIGNES SUIVANTES AVANT ENDFUNCTION
//// la liste de patch de Bezier
f=mopen("nurbs_bezier.list","w");
mfprintf(f, "{\n LIST\n");
//
// // r�cup�ration des points de controle en coordonnees homog�nes
// // de la B�zier (i,j) : 4 matrices B1,B2,B3,B4
// // de dimensions ordre_u x ordre_v
X=X.*omega
Y=Y.*omega
Z=Z.*omega
disp(X)
disp("size X")
disp(size(X,1))
disp("=========")
//on augmente le degré en u
for i=1:size(X,2)
//[B1temp(:,i)' ; B2temp(:,i)' ; B3temp(:,i)' ; B4temp(:,i)'] = NURBS1DToBezier([X(:,i)' ; Y(:,i)' ; Z(:,i)' ; omega(:,i)'],u,ordre_u)
Btemp= NURBS1DToBezier([X(:,i)' ; Y(:,i)' ; Z(:,i)' ; omega(:,i)'],u,ordre_u)
Btemp1(:,i)=Btemp(1,:)'
Btemp2(:,i)=Btemp(2,:)'
Btemp3(:,i)=Btemp(3,:)'
Btemp4(:,i)=Btemp(4,:)'
end
disp(Btemp1)
disp("=========")
Btemp=[]
//on augmente le degré en v
for i=1:size(Btemp1,1)
Btemp = NURBS1DToBezier([Btemp1(i,:) ; Btemp2(i,:) ; Btemp3(i,:) ; Btemp4(i,:)],v,ordre_v)
B1(i,:)=Btemp(1,:)
B2(i,:)=Btemp(2,:)
B3(i,:)=Btemp(3,:)
B4(i,:)=Btemp(4,:)
end
disp("ordre_u")
disp(ordre_u)
disp("size")
disp(size(B1,1))
//// la liste de patch de Bezier
f=mopen("nurbs_bezier.list","w");
mfprintf(f, "{\n LIST\n");
for i=1:nu
for j=1:nv
write_BEZ4(f, B1((i-1)*ordre_u+1:i*ordre_u,(j-1)*ordre_v+1:j*ordre_v), B2((i-1)*ordre_u+1:i*ordre_u,(j-1)*ordre_v+1:j*ordre_v),B3((i-1)*ordre_u+1:i*ordre_u,(j-1)*ordre_v+1:j*ordre_v), B4((i-1)*ordre_u+1:i*ordre_u,(j-1)*ordre_v+1:j*ordre_v));
disp(i)
end
end
mfprintf(f, "}\n");
mclose(f);
endfunction
//////////////////////////////////////////////////////////
//Renvoie le polygone de contrôle de la NURBS approximant
//le cercle unité.
//D : les points du polygone de contrôle, D(1,:) pour les abscisses et D(2,:)
// pour les ordonnées
//tau : le vecteur des noeuds
function [D,tau]=cercleUniteNurbs()
D=[1. 1. 0.5522847 0. -0.5522847 -1. -1. -1. -0.5522847 -2.220D-16 0.5522847 1. 1.;
0. 0.5522847 1. 1. 1. 0.5522847 1.110D-16 -0.5522847 -1. -1. -1. -0.5522847 -2.776D-16;
1 1 1 1 1 1 1 1 1 1 1 1 1]
tau=[0 1 2 3 4 5 6 7 8 9 10]
endfunction
////////////////////////////////////////////////////////////////////////////
//Renvoie la surface de révolution avec une nurbs de degré 3.
//X,Y,Z sont les coordonnées du polygone de contrôle de la surface de révolution.
//W : les poids des points du polygone de contrôle de la surface de révolution.
//u et v sont les vecteurs des noeuds.
////////////////////////////////////////////////////////////////////////
function [X,Y,Z,W,u,v]=surfaceRevolution()
L=inputpoly_rat() //on saisie la courbe génératrice de la surface de révolution
nbNds=size(L,2)-2
tau=inputnoeuds(nbNds,10,90,10)
t=sature_noeuds(tau,4) //on calcule puis on trace la NURBS génératrice
C=nurbsB(L,4,t)
f=scf()
set(gca(),"data_bounds",[0,0;100,100])
plot(C(1,:),C(2,:))
xs2jpg(f,"generatrice.jpg")
[cercle,tau_cercle]=cercleUniteNurbs() //Le polygone de contrôle de la NURBS approximant
//le cercle unité
X=zeros(size(cercle,2),size(L,2))
Y=zeros(size(cercle,2),size(L,2))
Z=zeros(size(cercle,2),size(L,2))
W=zeros(size(cercle,2),size(L,2))
for i=1:size(cercle,2)
for j=1:size(L,2)
X(i,j)=L(1,j)*cercle(1,i)
Y(i,j)=L(1,j)*cercle(2,i)
Z(i,j)=L(2,j)
W(i,j)=L(3,j)*cercle(3,i)
end
end
u=tau_cercle
v=tau
endfunction
////////////////////////////////////////////////////////////////
//Saisit la courbe génératrice et écrit la surface de révolution
//lui correspondant.
//La maillage est écrit dans nurbs.msh et les patchs Bézier rationnelle
//sont écrit dans nurbs_bezier.list .
////////////////////////////////////////////////////////////////
function ecrisSurfaceRevol()
[X,Y,Z,omega,u,v]=surfaceRevolution()//On saisie la surface de révolution
// noeuds, degr� suivant la dimension 1
du = 3; nu=length(u)-1
dv = 3; nv = length(v)-1;
// ordre et nombre d'intervalles suivant la dimension 1
ordre_u = du+1; nu = length(u)-1;
// ordre et nombre d'intervalles suivant la dimension 2
ordre_v = dv+1; nv = length(v)-1;
//// 3 - �criture des fichiers
// le polyedre de controle de la NURBS
f=mopen("nurbs.mesh","w");
write_MESH(f, X, Y, Z);
mclose(f)
//// la liste de patch de Bezier
f=mopen("nurbs_bezier.list","w");
mfprintf(f, "{\n LIST\n");
//
// // r�cup�ration des points de controle en coordonnees homog�nes
// // de la B�zier (i,j) : 4 matrices B1,B2,B3,B4
// // de dimensions ordre_u x ordre_v
X=X.*omega
Y=Y.*omega
Z=Z.*omega
//on augmente le degré en u
for i=1:size(X,2)
//[B1temp(:,i)' ; B2temp(:,i)' ; B3temp(:,i)' ; B4temp(:,i)'] = NURBS1DToBezier([X(:,i)' ; Y(:,i)' ; Z(:,i)' ; omega(:,i)'],u,ordre_u)
Btemp= NURBS1DToBezier([X(:,i)' ; Y(:,i)' ; Z(:,i)' ; omega(:,i)'],u,ordre_u)
Btemp1(:,i)=Btemp(1,:)'
Btemp2(:,i)=Btemp(2,:)'
Btemp3(:,i)=Btemp(3,:)'
Btemp4(:,i)=Btemp(4,:)'
end
Btemp=[]
//on augmente le degré en v
for i=1:size(Btemp1,1)
Btemp = NURBS1DToBezier([Btemp1(i,:) ; Btemp2(i,:) ; Btemp3(i,:) ; Btemp4(i,:)],v,ordre_v)
B1(i,:)=Btemp(1,:)
B2(i,:)=Btemp(2,:)
B3(i,:)=Btemp(3,:)
B4(i,:)=Btemp(4,:)
end
for i=1:nu
for j=1:nv
write_BEZ4(f, B1((i-1)*ordre_u+1:i*ordre_u,(j-1)*ordre_v+1:j*ordre_v), B2((i-1)*ordre_u+1:i*ordre_u,(j-1)*ordre_v+1:j*ordre_v),B3((i-1)*ordre_u+1:i*ordre_u,(j-1)*ordre_v+1:j*ordre_v), B4((i-1)*ordre_u+1:i*ordre_u,(j-1)*ordre_v+1:j*ordre_v));
end
end
mfprintf(f, "}\n");
mclose(f);
endfunction
//----------------------------------------------
/////////////////////////////////////////////////////////
// ecriture d'un objet MESH - poly�dre grille rectangulaire
// Entr�e : X,Y,Z = tableau des coordonn�es des points
// fid : identificateur d'un fichier ouvert en �criture avec mopen
function write_MESH(fid,X,Y,Z)
nu = size(X,1);
nv = size(X,2);
// d�but de l'objet composite
mfprintf(fid,"{\n");
mfprintf(fid, 'MESH\n%d %d\n', nv, nu);
for i=1:nu
for j=1:nv
mfprintf(fid, '%15.7e %15.7e %15.7e\n', ...
X(i,j) , Y(i,j) , Z(i,j));
end
end
// fin de l'objet composite
mfprintf(fid,"}\n");
endfunction
//----------------------------------------------
/////////////////////////////////////////////////////////
// ecriture d'un patch de B�zier rationnel dans un fichier
// au format Geomview
// Entree = P1,P2,P3,P4 : tableaux des coordonnees des points
// en coordonn�es homog�nes du patch de B�zier
// P1,P2,P3,P4 matrices de dimensions Nu par Nv
// avec Nu et Nv compris entre 2 et 7
// (degr�s compris entre 1 et 6)
// fid : identificateur d'un fichier ouvert en �criture avec
// mopen
function write_BEZ4(fid, P1,P2,P3,P4)
Nu = size(P1,1);
Nv = size(P1,2);
if Nu<2 | Nu>7
error('le degre en u doit entre 1 et 6');
end
if Nv<2 | Nv>7
error('le degre en v doit entre 1 et 6');
end
// ecriture de la Bezier
mfprintf(fid, 'BEZ%1d%1d%1d\n', Nu-1, Nv-1, 4);
for j=1:Nv
for i=1:Nu
mfprintf(fid, '%15.7e %15.7e %15.7e %15.7e\n', ...
P1(i,j),P2(i,j),P3(i,j),P4(i,j));
end
end
endfunction
//----------------------------------------------
/////////////////////////////////////////////////////////
// Passage de la forme NURBS � la forme B�zier - Cas d'une courbe ouverte
// Entr�e : D = tableau des points de controle DeBoor (1 point par colonne)
// tau = vecteur des noeuds
// k = l'ordre de la BSpline
// Sortie : PC = tableau des diff�rents polygones de controle
//
// k : entier > 1, d = k-1 (degr� de la Bspline)
// tau : tableau de n+1 r�els (n nombre d'intervalles)
// D : tableau de p=n+d points (p colonnes)
// PC : tableau de q=k*n points
// PC(:,1+(i-1)*k:i*k) contient les d+1 points de controle
// de la i-eme B�zier (1 <= i <= n)
function PC = NURBS1DToBezier(D,tau,k)
// FORME BEZIER : on sature chaque noeud avec la multiplicit� = k
// afin d''obtenir la forme B�zier composite de la B-spline
// calcul du vecteur nodal - cas courbe ouverte
// saturation des noeuds de bord
vectnodal = tau;
for j = 1 : k - 1
vectnodal = [tau(1) vectnodal tau($)];
end
// saturation des noeuds internes
tau0=tau(1);
for i = 2 : size(tau,2)-1
for j = 1 : k - 1
[D, vectnodal] = InsertionNoeud(D,vectnodal,k,tau(i));
end
end
PC = D;
endfunction
//----------------------------------------------
/////////////////////////////////////////////////////////
// Modification de la structure NURBS par insertion de noeuds
// Entree : D = tableau des points de controle (1 point par colonne)
// vectnoeuds = le vecteur nodal (avec noeuds de bord satur�s)
// ordre = ordre de la Bspline
// x = noeuds � ins�rer
// Sortie : D2 = tableau des points de controle r�sultant
// vectnoeuds = le vecteur nodal r�sultant
// ordre : entier > 0, d = ordre-1 : degr� de la BSpline
// vectnoeuds : tableau de q=n+2*d+1 r�els avec
// vectnoeuds(1) = ... = vectnoeuds(d+1) <= vectnoeuds(d+2)<= ...
// ... <= vectnoeuds(n+d+1) = ... = vectnoeuds(n+2*d+1)
// D : tableau de p = n+d points
// x : r�el tel que vectnoeuds(d+1) < x < vectnoeuds(n+d+1)
// D2 : tableau de p+1 points
// vectnoeuds2 : tableau de q+1 r�els
function [D2,vectnoeuds2] = InsertionNoeud(D,vectnoeuds,ordre,x)
if x<=vectnoeuds(1)
error('x doit etre > premier noeud');
end
if x>=vectnoeuds($)
error('x doit etre < dernier noeud');
end
r = ordre;
while vectnoeuds(r+1) < x
r = r+1;
end
// en sortie r est tel que x \in [t_r, t_{r+1}[
//disp("-----------------");
//disp("size(D)", size(D));
//disp("vectnoeuds",vectnoeuds);
//disp("ordre",ordre);
//disp("x",x);
//disp("r",r);
A = D(:,r-ordre+1:r);
j = 1;
for i = r - ordre + 1 + j : r
ii = i - r + ordre - j;
denomin = vectnoeuds(i+ordre-j) - vectnoeuds(i);
cf1 = (vectnoeuds(i+ordre-j) - x) / denomin;
cf2 = (x - vectnoeuds(i)) / denomin;
A(:,ii) = cf1 * A(:,ii) + cf2 * A(:,ii+1);
end
// mise � jour du polygone et du vecteur des noeuds
D2 = [D(:,1:r-ordre+1) A(:,1:ordre-1) D(:,r:size(D,2))];
vectnoeuds2 = [vectnoeuds(1:r) x vectnoeuds(r+1:size(vectnoeuds,2))];
endfunction
//----------------------------------------------
/////////////////////////////////////////////////////////
// lecture d'un fichier contenant la d�finition d'une NURBS
// Entr�e : nom_f = le nom du fichier texte � lire
// Sortie : T = hyper-matrice de dimensions M x N x 4
// le point de controle D(k,l) est donn� par [T(k,l,1),T(k,l,2),T(k,l,3)]
// le poids correspondant w(k,l) est donn� par T(k,l,4)
// u,v = vecteurs de noeuds de dimensions respectives nu+1 et nv+1
// du,dv = degr�s en u et v
// on aura M = nu+du et N = nv+dv
//
// Le fichier d'entr�e doit avoir la structure suivante
// - le degr� du en u sur une ligne
// - le degr� dv en v sur une ligne
// - le nombre nu+1 de noeuds en u sur une ligne
// - les nu+1 valeurs des noeuds u(i) par ordre croissant sur une seule ligne
// - le nombre nv+1 de noeuds en v sur une ligne
// - les nv+1 valeurs des noeuds v(j) par ordre croissant sur une seule ligne
// - les coordonn�es X des points de controle dans l'ordre suivant avec
// M lignes de N valeurs :
// X(1,1) X(1,2) ... X(1,N)
// X(2,1) X(2,2) ... X(2,N)
// ... ... ...
// X(M,1) X(M,2) ... X(M,N)
// - les coordonn�es Y des points de controle dans l'ordre suivant avec
// M lignes de N valeurs :
// Y(1,1) Y(1,2) ... Y(1,N)
// Y(2,1) Y(2,2) ... Y(2,N)
// ... ... ...
// Y(M,1) Y(M,2) ... Y(M,N)
// - les coordonn�es Z des points de controle dans l'ordre suivant avec
// M lignes de N valeurs :
// Z(1,1) Z(1,2) ... Z(1,N)
// Z(2,1) Z(2,2) ... Z(2,N)
// ... ... ...
// Z(M,1) Z(M,2) ... Z(M,N)
// - les poids w dans l'ordre suivant avec
// M lignes de N valeurs :
// w(1,1) w(1,2) ... w(1,N)
// w(2,1) w(2,2) ... w(2,N)
// ... ... ...
// w(M,1) w(M,2) ... w(M,N)
// chaque ligne commencant par le caractere # est un commentaire
// et n'est pas pris en compte
function [T,u,v,du,dv]=lire_fichier_NURBS(nom_f)
// construction d'un format de lecture pour lire n r�els
function fmt=format_reels(n)
fmt = '%f';
for i=2:n
fmt = fmt + ' %f';
end
endfunction
// teste de quel type est la chaine de caractere s
// res = 0 : s correspond � une fin de fichier
// res = 1 : s est une ligne de commentaire ou ligne vide
// res = 2 : s est une ligne commen�ant par une valeur num�rique
// res = 3 : s est une ligne ne commen�ant pas par un caract�re num�rique
function res=type_ligne(s)
// si s vide : fin de fichier
if size(s,1)==0
res=0; return;
end
// codage ASCII de la chaine s
code_s = ascii(s);
// ligne vide
if length(code_s)==0
res=1; return;
end
// ligne commencant par le caractere #
if code_s(1)==35
res=1; return;
end
// test si le premier caractere significatif de s est num�rique
res = 3;
for i=1:length(code_s)
c = code_s(i);
// sauter les espaces ou tabulations
if c==32 | c==9
continue
end
// caractere num�rique : [09]+-.
if c==43 | c==45 | c==46 | (c>=48 & c<=57)
res=2; return;
else
res=3; return;
end
end
endfunction
// lecture dans le fichier f de la ligne significative suivante
// ligne non vide, ne commen�ant pas par # et dont le premier
// caractere significatif est un caractere numerique
function s=lire_ligne_significative(f)
res=1;
while res==1
s = mgetl(f,1);
res=type_ligne(s);
if res==0
error('fin de fichier inattendu');
elseif res==3
error('format de fichier incorrect');
end
end
endfunction
// ouverture du fichier
f = mopen(nom_f,'r');
[err,msg] = merror(f);
if err~=0
error(msg);
end
// lecture du degr� en u
s=lire_ligne_significative(f);
du = msscanf(1,s,"%d");
if du<1 | du>6
error('le degr� en u doit etre entre 1 et 6');
end
// lecture du nombre de noeuds en u
s=lire_ligne_significative(f);
nu = msscanf(1,s,"%d");
if nu<2
error('le nb de noeuds en u doit etre >= 2');
end
nu=nu-1;
// lecture des nu+1 noeuds u(i)
s=lire_ligne_significative(f);
u = msscanf(1,s,format_reels(nu+1));
// teste si u est form�e de valeurs croissantes
if (min(diff(u))<0)
error('le vecteur de noeuds u(i) n''est pas croissant');
end
// lecture du degr� en v
s=lire_ligne_significative(f);
dv = msscanf(1,s,"%d");
if dv<1 | dv>6
error('le degr� en v doit etre entre 1 et 6');
end
// lecture du nombre de noeuds en v
s=lire_ligne_significative(f);
nv = msscanf(1,s,"%d");
if nv<2
error('le nb de noeuds en v doit etre >= 2');
end
nv=nv-1;
// lecture des nv+1 noeuds v(j)
s=lire_ligne_significative(f);
v = msscanf(1,s,format_reels(nv+1));
// teste si v est form�e de valeurs croissantes
if (min(diff(v))<0)
error('le vecteur de noeuds v(i) n''est pas croissant');
end
// valeurs de M et N
M = du+nu;
N = dv+nv;
// lecture de la matrice X
X = zeros(M,N);
for i=1:M
// lecture de la ligne X(i,:)
s=lire_ligne_significative(f);
X(i,:) = msscanf(1,s,format_reels(N));
end
// lecture de la matrice Y
Y = zeros(M,N);
for i=1:M
// lecture de la ligne Y(i,:)
s=lire_ligne_significative(f);
Y(i,:) = msscanf(1,s,format_reels(N));
end
// lecture de la matrice Z
Z = zeros(M,N);
for i=1:M
// lecture de la ligne Z(i,:)
s=lire_ligne_significative(f);
Z(i,:) = msscanf(1,s,format_reels(N));
end
// lecture de la matrice omega
omega = zeros(M,N);
for i=1:M
// lecture de la ligne omega(i,:)
s=lire_ligne_significative(f);
omega(i,:) = msscanf(1,s,format_reels(N));
end
// l'hypermatrice T
T = zeros(M,N,4);
T(:,:,1) = X;
T(:,:,2) = Y;
T(:,:,3) = Z;
T(:,:,4) = omega;
// fermeture du fichier
mclose(f);
endfunction
//----------------------------------------------
///////////////////////////////////////////////////////////////////////////////
//Prend en entrée le polygone de controle D, le vecteur des
//noeuds t saturé aux extrémités, l'odre k de la courbe spline et
//le noeuds nod à insérer.
//Retourne le polygone de contrôle X avec le noeud nod inséré et t_ins, le
//nouveau vecteur des noeuds
///////////////////////////////////////////////////////////////////////////////
function [X,t_ins]=insert_node(D,t,k,nod)
//recherche de l'intervalle [tau_i ; tau_i+1]
i=1
while(nod>=t(i))
i=i+1;
end
r=i-1
lambda=(nod-t(r-k+2:r))./(t(r+1:r+k-1)-t(r-k+2:r))
//initialisation de A0
A=D(:,r+1-k:r)
//calcul A1
A=[(1-lambda);(1-lambda)].*(A(:,1:k-1))+[lambda;lambda].*(A(:,2:k))
X=[D(:,1:r-k+1) A D(:,r:size(D,2))]
i=1
t_ins=zeros(1,size(t,2)+1)
while (t(i)<nod)
t_ins(i)=t(i)
i=i+1
end
t_ins(i)=nod
t_ins(i+1:$)=t(i:$)
endfunction
|
77defccd835984147ef9a1e4fa2a49dc743c3e13 | 3f321619d7f900b79810e0b5e3722b405b099c72 | /PFM-I/cms1329-assin1-30-10-13/que14.sci | ec912d796e10d4766a0ea50ed12889098954be99 | [] | no_license | mina20/cppLinux | a1c1b3dfd78a3edc69e08d50c532b9325a9b4110 | d0b4e950d962315b36f3202920ddda37ac744911 | refs/heads/master | 2020-12-02T22:47:50.704032 | 2017-07-04T06:42:28 | 2017-07-04T06:42:28 | 96,184,034 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 96 | sci | que14.sci | //polynomial
function[]=pol(n)
x=poly([n^2,n+2,n^3+1],'x','c')
disp(x)
endfunction
|
317059b79fae96333a84bd7670ec876c632bb88c | 449d555969bfd7befe906877abab098c6e63a0e8 | /788/CH2/EX2.1.a/2_1_data.sci | 5fd1fd89f1ffb9046d41a975972bdc1dc41b9099 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 75 | sci | 2_1_data.sci | // Aim:To Find Weight of Body
// Given:
// Mass of the Body:
m=4; //slugs
|
88ca87a58c79d5168a282ae8eeb5a7d92d1d3bfc | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/REP5.prev.tst | 752b9ee62f1fce73e827fbc831d2e94a3d292067 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | gfis/ramath | 498adfc7a6d353d4775b33020fdf992628e3fbff | b09b48639ddd4709ffb1c729e33f6a4b9ef676b5 | refs/heads/master | 2023-08-17T00:10:37.092379 | 2023-08-04T07:48:00 | 2023-08-04T07:48:00 | 30,116,803 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 238 | tst | REP5.prev.tst | Expanding for base=2, level=4, reasons+features=
Refined variables=a,b,c,d,x,y,z
ReasonFactory: , code="primitive"
Reason "primitive" is not considered for x⁴+y⁴-z²; -a²+b²+x²; -2a*b+y²; a²+b²-z; b-2c*d; -c²+d²+x; -a+c²+d²
|
5dac73b23bc1a4d1b90cc292537e0c44ed5a1ee8 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set13/s_Introduction_To_Mechanical_Engineering_S._Chandra_And_O._Singh__2267.zip/Introduction_To_Mechanical_Engineering_S._Chandra_And_O._Singh__2267/CH12/EX4.17/Ex12_17.sce | 180db172991a74bfba045f1d892f1d0cd6b9f40c | [] | 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 | 260 | sce | Ex12_17.sce | errcatch(-1,"stop");mode(2);//Part B Chapter 4 Example 17
;
;
l=25;//m
d=0.5;//mm
n=10;//no. of rounds
G=82;//GN/m^2
Ip=%pi/32*d^4*10^-12;//m^4
theta=2*%pi*n;//radian
T=G*10^9*Ip*theta/l;//Nm
disp("Torque required is "+string(T)+" Nm.");
exit();
|
577b1ac6f3a2b05ab66401c07e94111fbb24e5a3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1319/CH2/EX2.7/2_7.sce | c244652730c825e66f2e954880aa406cda190394 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 958 | sce | 2_7.sce | // To Calculate current in all branches of the network shown using nodal analysis
clc;
clear;
// Nodal Equations
//13*Va-4*Vb=300
//-Va+4*Vb=120
X=[13 -4;-1 4];
V=[300;120];
E=inv(X)*V;
Va=E(1);
Vb=E(2);
i1=(100-Va)/20;
i2=(Va-Vb)/15;
i3=(Va/10);
i4=(Vb/10);
i5=(80-Vb)/10;
disp('V',Vb,'Voltage Vb =','V',Va,'Voltage Va =')
disp('The Branch Currents as calculated are')
disp(i5,'i5',i4,'i4',i3,'i3',i2,'i2',i1,'i1')
disp('amperes respectively')
disp('The Negative sign indicates that the assumed direction of flow of current must be reveresed')
disp('amperes',abs(i1),'The Current through 20 ohm resistor on the 100V side =')
disp('amperes',abs(i2),'The Current through 15 ohm resistor =')
disp('amperes',abs(i3),'The Current through 10 ohm resistor (AE) =')
disp('amperes',abs(i4),'The Current through 10 ohm resistor (BE) =')
disp('amperes',abs(i5),'The Current through 10 ohm resistor on the 80V side =')
|
3fce8456bdee0593204c78296d4409fc1f7d1acc | 449d555969bfd7befe906877abab098c6e63a0e8 | /1859/CH4/EX4.5/exa_4_5.sce | 307a21b99d91894bb6dc1183afaba0f0e676297e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | exa_4_5.sce | // Exa 4.5
clc;
clear;
close;
// Given data
Im= 1;// in mA
Im=Im*10^-3;// in amp
Rm= 100;// in ohm
V=1.2;// in volt
R1= V/Im;// in ohm
disp(R1*10^-3,"Resistance in kohm")
Vout= Im*(Rm+R1);// in volt
disp(Vout,"Output voltage in volt")
|
ebabe538af53af12994e8ef5062cd448dadfd3ca | a45f93853fdb67523e71e3e7fb88c4298eae1ef7 | /Screens/Quit Confirmation Dialog Screen.tst | fb50d81d68bce54c2002b07c44c626a6ea039ad1 | [] | no_license | voarsh/Disney-Treasure-Planet-Battle-at-Procyon | 68192cbfdf8b823bc8399e3ea1e62d4976b74aed | 99cbbc70701ef6e8f9d95eba1052635de992910f | refs/heads/master | 2020-04-16T01:44:03.761947 | 2016-06-08T10:25:05 | 2016-06-08T10:25:05 | 38,745,932 | 3 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,680 | tst | Quit Confirmation Dialog Screen.tst | ScreenName String 'Quit Confirmation Dialog Screen'
ImplName String 'Dialog Screen'
ElementChunkArray Int 5
ScreenElementType Int 0
ImplName String 'Front End Dialog Screen Backdrop'
TabIndex Int 7
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 101, 185, 586, 427 ) # left,top,right,bottom
ScreenElementType Int 1
ImplName String 'Open Dialog Previous Button'
TabIndex Int 3
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 258, 326, 383, 370 ) # left,top,right,bottom
Font String 'BlackChancery16'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_CANCEL'
Color Colour( 0.000000, 0.000000, 0.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Open Dialog Next Button'
TabIndex Int 8
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 412, 326, 540, 370 ) # left,top,right,bottom
Font String 'BlackChancery16'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_QUIT'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Center Justify Label'
TabIndex Int 12
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 173, 253, 632, 312 ) # left,top,right,bottom
Font String 'UniversLightBold14'
Text String 'IDGS_TPFRONTENDTEXT02_ARE_YOU_SURE_YOU_WANT_TO_QUIT'
Color Colour( 0.000000, 0.000000, 0.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Center Justify Label'
TabIndex Int 13
Selectable Bool True
Enabled Bool True
ReferenceArea Rect( 131, 260, 671, 302 ) # left,top,right,bottom
Font String 'UniversLightBold14'
Text String 'IDGS_TPFRONTENDTEXT02_ARE_YOU_SURE_YOU_WANT_TO_QUIT'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
|
acb010c81dcb8fe3bc56b9d7b31723a94116d9b6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2414/CH7/EX7.10/Ex7_10.sce | e90f17699bf0059883869487d435a132044c028b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex7_10.sce | clc;
close();
//page no 238
//prob no. 7.10
delta_f=6; //kHz
W=2; //kHz
D=delta_f/W; //deviation ratio
disp(D,'The deviation ratio is');
Bt=2*(delta_f+W); //carsom's rule is applicable
mprintf('The transmission bandwidth Bt= %i kHz ',Bt)
|
02e5436c0ef01eb90f593dc0b994034b342f94c1 | ad460dded801650808ab694d8abdc2bdf495293c | /tests/get.tst | c02bdc0aa4a3121cd0dd0a51ffd26ef08300b3e7 | [
"MIT"
] | permissive | pkvijay/metaDR | 43fe6a12deba2e66f2558d787c84c2eaefc6aa91 | 99d832798400356e38405e44f85f1f4d6fe36c99 | refs/heads/master | 2020-04-04T03:46:35.406937 | 2015-08-12T22:10:42 | 2015-08-12T22:10:42 | 27,464,652 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 365 | tst | get.tst | get /test
get /test/k1
get /test/k2
get /test/k3
get /test/k4
get /test/k5
get /test/k6
get /test/k7
get /test/k8
get /test/k9
get /test/k10
get /test/k11
get /test/k12
get /test/k13
get /test/k14
get /test/k15
get /test/k16
get /test/k17
get /test/k18
get /test/k19
get /test/k20
get /test/k21
get /test/k22
get /test/k23
get /test/k24
get /test/k25
get /test/k26
|
7012de9727c9b10c0c85eb69e8ebee5823874a8e | 449d555969bfd7befe906877abab098c6e63a0e8 | /3511/CH9/EX9.6/Ex9_6.sce | dfbb9325de235db2cae33813eb05c172e2e9e5eb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,171 | sce | Ex9_6.sce | clc;
T1=290; // Temperature at inlet in kelvin
n=10; // Number of stages
rp=6.5; // Pressure ratio
m=3; // mass flow rate in kg/s
eff_C=0.9; // isentropic efficiency of the compression
ca=110; // Axial velocity in m/s
u=180; // Mean blade velocity in m/s
Cp=1.005; // Specific heat in kJ/kg K
r=1.4; // Specific heat ratio
R=287; // Characteristic gas constant in J/kg K
T_2=(rp)^((r-1)/r)*T1; // temperature after isentropic compression
T2=((T_2-T1)/eff_C)+T1; // Temperature after actual compression
P=m*Cp*(T2-T1); // Power given to the air
Del_Tstage=(T2-T1)/n; // Temperature rise per stage
Del_ct=Cp*10^3*Del_Tstage/u; // For work done per kg of air per second
// To find blade angles let solve the following equations
// Del_ct=ca(tan beta_1-tan beta_2) for symmetrical stages
// u=ca(tan beta_1=tan beta_2) for degree of reaction = 0.5
// Solving by matrix method
A=[1,-1;1,1]; C=[Del_ct/ca;u/ca];
B=A\C;
// Blade angles at entry and exit
beta_1=atand(B(1));
beta_2=atand(B(2));
disp ("kW (roundoff error)",P,"Power given to the air = ");
disp ("degree",beta_2,"Blade angle at exit = ","degree",beta_1,"Blade angle at inlet = ");
|
91aace12c140d85a52d7ed970ce28a895152e286 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2072/CH28/EX28.6/ex28_6.sce | 3e8e2d0c5258d45a3475e91544848fdd724341f2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 382 | sce | ex28_6.sce | //Chapter 28
clc
//Example 6
//given
Z=74 //atomic number of tungsten
Eo=13.6 //ground state enenrgy in ev
E_K=-(Z-1)^2*(13.6) //Energy of the electron in K shell
n=3
Z_eff=Z-n^2
E3=Eo/n^2
E_M=-Z_eff^2*E3
E=E_M-E_K
disp(E,"Energy of the characteristic emiited from tungsten target when electron drops from M shell to K shell in ev is")
//Difference in answer is because of roundoff
|
4e4e0ed9253f5bedf09bf0adeaf1598169a1c371 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3594/CH15/EX15.3/Ex15_3.sce | 03cf93309f1dc1a579fbe6fb897688f8c52ac79b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 282 | sce | Ex15_3.sce | //to find frequency of the natural transverse vibration
clc
//given
l=10//ft
d=4//in
E=30*10^6//youngs modulus
d1=0.0882//inches; maximum deflection as shown in the figure
N=207/(d1)^(1/2)//From 15.20
printf("\nFrequency of natural transverse vibration = %.f per min",N)
|
d7aef1b30b6178df3faba1f14eb368e7a711c839 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1529/CH16/EX16.4/16_04.sce | 81f119ad9a5b26cea1c95d54ff6eb208f62e522d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 785 | sce | 16_04.sce | //Chapter 16, Problem 4
clc;
L=120e-3; //inductance in henry
C=25e-6; //capacitance in farad
V=100; //voltage
f=50; //frequency in hertz
Xl=2*%pi*f*L; //inductive reactance
Xc=1/(2*%pi*f*C); //capacitive reactance
Il=V/Xl; //current flowing in the inductance
Ic=V/Xc; //current flowing in the capacitor
I=Il-Ic;
Z=V/I;
P=V*I*cos(90*%pi/180);
printf("(a) Branch current,\n Il = %.3f A\nIc = %.3f A\n\n",Il,Ic);
printf("(b) Supply current = %.3f A\nCurrent lags the supply voltage V by 90deg from Fig 16.4(i)",I);
printf("(c) Circuit impedance Z = %.3f ohm\n\n",Z);
printf("(d) Power consumed P = %d W",P);
|
da94433697e33b75f5506ba971fa2e1caa82bdc5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /548/DEPENDENCIES/4_21data.sci | 8f3d85ca875ef31e1a03b6513b8533ec24a0d15e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 494 | sci | 4_21data.sci | //in question pressure given is 1.013*10^5 but while solving it uses
//10*1.013*10^5,so we use the later.
Po=10*1.013*10^5 ;//reservoir pressure in Pascal
To=333.33; //reservoir temperature in Kelvin
Me=3;//mach no. at test section
y=1.4; //specific heat ratio for air
R=287 ;//gas constant,J/Kg.K
Pe=Po*[1+(y-1)*Me^2/2]^((-y)/(y-1)) //exit pressure
Tstag=To //the stagnation point temperature remains same as that of total temperature(reservoir temperature) througout the compression |
645ca8f5dba16c6bf212fd6044d93c8c08fa0d99 | 449d555969bfd7befe906877abab098c6e63a0e8 | /767/CH7/EX7.6.1/Ch07Exa7_6_1.sci | 15c3e173194ccf2c1b7484866d7d1eebbfe5e3c3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,024 | sci | Ch07Exa7_6_1.sci | // Scilab code Exa7.6.1: To calculate the energy resolution of gamma rays emitted by Na-22 for channel first and second :P.no. 313 (2011)
// For 511 KeV gamma rays (for channel first)
F_W_H_M_1 = 97; // Frequency width at half maximum for channel first
P_pos_1 = 1202; // Peak position for channel first
Res_KeV_1 = F_W_H_M_1/P_pos_1*511; // Resolution in KeV for channel first
// For 1275 KeV gamma rays (for channel second)
F_W_H_M_2 = 82; // Frequency width at half maximum for channel second
P_pos_2 = 1202; // Peak position for channel second
Res_KeV_2 = round(F_W_H_M_2/P_pos_2*1275); // Resolution in KeV for channel second
printf("\n Resolution for channel first = %d KeV \n Resolution for channel second = %d KeV ",Res_KeV_1, Res_KeV_2)
// Result
// Resolution for channel first = 41 KeV
// Resolution for channel second = 87 KeV
|
69e53b45ac3c8d13b3e8cf79617f78e16716b310 | 449d555969bfd7befe906877abab098c6e63a0e8 | /632/CH8/EX8.14/example8_14.sce | 9f442e4709950097903f3d975eafa05593a93c12 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 339 | sce | example8_14.sce | //clc()
P = 101.3;//kPa
MW = 58;
T1 = 280.8;//K
Ps = 5;//kPa
pr = 2;//kJ/kgK ( Psychometric ratio )
Hvap = 360;//kJ/kg
Tw = T1;
Yw1 = Ps * MW / (( P - Ps) * 29);
// Tw = Tg - Hvap * ( Yw1 - Y1) / (hG / kY), where hG/kY is the psychmetric ratio pr
Y1 = 0;
Tg = Tw + Hvap * ( Yw1 - Y1) / pr;
disp("K",Tg,"The air temperature = ") |
ce65aa4fd347ee2cf947c777ba6c46d33866f04b | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/CONT/XW75EDU/ATWM1_Working_Memory_MEG_XW75EDU_Session2/ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run2.sce | a9c1e1b0a4c3ea55ed97f3efb9b44e2a0bd11b08 | [] | no_license | atwm1/Presentation | 65c674180f731f050aad33beefffb9ba0caa6688 | 9732a004ca091b184b670c56c55f538ff6600c08 | refs/heads/master | 2020-04-15T14:04:41.900640 | 2020-02-14T16:10:11 | 2020-02-14T16:10:11 | 56,771,016 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 48,617 | sce | ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run2.sce | # ATWM1 MEG Experiment
scenario = "ATWM1_Working_Memory_MEG_salient_cued_run2";
#scenario_type = fMRI; # Fuer Scanner
#scenario_type = fMRI_emulation; # Zum Testen
scenario_type = trials; # for MEG
#scan_period = 2000; # TR
#pulses_per_scan = 1;
#pulse_code = 1;
pulse_width=6;
default_monitor_sounds = false;
active_buttons = 2;
response_matching = simple_matching;
button_codes = 10, 20;
default_font_size = 36;
default_font = "Arial";
default_background_color = 0 ,0 ,0 ;
write_codes=true; # for MEG only
begin;
#Picture definitions
box { height = 382; width = 382; color = 0, 0, 0;} frame1;
box { height = 369; width = 369; color = 255, 255, 255;} frame2;
box { height = 30; width = 4; color = 0, 0, 0;} fix1;
box { height = 4; width = 30; color = 0, 0, 0;} fix2;
box { height = 30; width = 4; color = 255, 0, 0;} fix3;
box { height = 4; width = 30; color = 255, 0, 0;} fix4;
box { height = 369; width = 369; color = 42, 42, 42;} background;
TEMPLATE "StimuliDeclaration.tem" {};
trial {
sound sound_incorrect;
time = 0;
duration = 1;
} wrong;
trial {
sound sound_correct;
time = 0;
duration = 1;
} right;
trial {
sound sound_no_response;
time = 0;
duration = 1;
} miss;
# Start of experiment (MEG only) - sync with CTF software
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
} expStart;
time = 0;
duration = 1000;
code = "ExpStart";
port_code = 80;
};
# baselinePre (at the beginning of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
}default;
time = 0;
duration = 10000;
#mri_pulse = 1;
code = "BaselinePre";
port_code = 91;
};
TEMPLATE "ATWM1_Working_Memory_MEG.tem" {
trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4;
44 61 292 292 399 125 2042 2992 2042 fixation_cross gabor_036 gabor_147 gabor_090 gabor_126 gabor_036 gabor_147 gabor_090_alt gabor_126_alt "2_1_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2050_gabor_patch_orientation_036_147_090_126_target_position_1_2_retrieval_position_2" gabor_circ gabor_009_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_1_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_009_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1942 2992 2592 fixation_cross gabor_178 gabor_147 gabor_124 gabor_038 gabor_178_alt gabor_147_alt gabor_124 gabor_038 "2_2_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2600_gabor_patch_orientation_178_147_124_038_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_038_framed blank blank blank blank fixation_cross_white "2_2_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_038_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2192 2992 2442 fixation_cross gabor_046 gabor_069 gabor_088 gabor_118 gabor_046 gabor_069_alt gabor_088 gabor_118_alt "2_3_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2450_gabor_patch_orientation_046_069_088_118_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_135_framed gabor_circ blank blank blank blank fixation_cross_white "2_3_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_135_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1842 2992 2592 fixation_cross gabor_093 gabor_051 gabor_010 gabor_161 gabor_093 gabor_051_alt gabor_010 gabor_161_alt "2_4_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2600_gabor_patch_orientation_093_051_010_161_target_position_1_3_retrieval_position_1" gabor_141_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_4_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_141_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2092 2992 2442 fixation_cross gabor_168 gabor_045 gabor_134 gabor_078 gabor_168 gabor_045_alt gabor_134_alt gabor_078 "2_5_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2450_gabor_patch_orientation_168_045_134_078_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_028_framed blank blank blank blank fixation_cross_white "2_5_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_028_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2042 2992 2042 fixation_cross gabor_109 gabor_167 gabor_085 gabor_047 gabor_109_alt gabor_167 gabor_085_alt gabor_047 "2_6_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2050_gabor_patch_orientation_109_167_085_047_target_position_2_4_retrieval_position_2" gabor_circ gabor_167_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_6_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_167_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1792 2992 2292 fixation_cross gabor_124 gabor_167 gabor_101 gabor_015 gabor_124_alt gabor_167_alt gabor_101 gabor_015 "2_7_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2300_gabor_patch_orientation_124_167_101_015_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_053_framed gabor_circ blank blank blank blank fixation_cross_white "2_7_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_053_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 2242 2992 2392 fixation_cross gabor_155 gabor_005 gabor_047 gabor_020 gabor_155 gabor_005_alt gabor_047_alt gabor_020 "2_8_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2250_3000_2400_gabor_patch_orientation_155_005_047_020_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_047_framed gabor_circ blank blank blank blank fixation_cross_white "2_8_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_047_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1842 2992 2542 fixation_cross gabor_081 gabor_167 gabor_150 gabor_003 gabor_081 gabor_167_alt gabor_150_alt gabor_003 "2_9_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2550_gabor_patch_orientation_081_167_150_003_target_position_1_4_retrieval_position_1" gabor_081_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_9_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_081_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1792 2992 1992 fixation_cross gabor_007 gabor_167 gabor_138 gabor_123 gabor_007_alt gabor_167_alt gabor_138 gabor_123 "2_10_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2000_gabor_patch_orientation_007_167_138_123_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_123_framed blank blank blank blank fixation_cross_white "2_10_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_123_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1892 2992 2292 fixation_cross gabor_005 gabor_046 gabor_095 gabor_024 gabor_005_alt gabor_046_alt gabor_095 gabor_024 "2_11_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2300_gabor_patch_orientation_005_046_095_024_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_024_framed blank blank blank blank fixation_cross_white "2_11_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_024_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2042 2992 2342 fixation_cross gabor_126 gabor_003 gabor_084 gabor_050 gabor_126 gabor_003 gabor_084_alt gabor_050_alt "2_12_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2350_gabor_patch_orientation_126_003_084_050_target_position_1_2_retrieval_position_1" gabor_126_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_12_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_126_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 2092 2992 2042 fixation_cross gabor_084 gabor_127 gabor_165 gabor_101 gabor_084_alt gabor_127 gabor_165 gabor_101_alt "2_13_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2100_3000_2050_gabor_patch_orientation_084_127_165_101_target_position_2_3_retrieval_position_1" gabor_084_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_13_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_084_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2242 2992 2142 fixation_cross gabor_083 gabor_020 gabor_138 gabor_164 gabor_083_alt gabor_020 gabor_138 gabor_164_alt "2_14_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2150_gabor_patch_orientation_083_020_138_164_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_138_framed gabor_circ blank blank blank blank fixation_cross_white "2_14_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_138_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1992 2992 2392 fixation_cross gabor_091 gabor_175 gabor_156 gabor_023 gabor_091 gabor_175_alt gabor_156 gabor_023_alt "2_15_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2400_gabor_patch_orientation_091_175_156_023_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_107_framed gabor_circ blank blank blank blank fixation_cross_white "2_15_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_107_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2142 2992 2192 fixation_cross gabor_018 gabor_049 gabor_167 gabor_083 gabor_018_alt gabor_049 gabor_167 gabor_083_alt "2_16_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2200_gabor_patch_orientation_018_049_167_083_target_position_2_3_retrieval_position_2" gabor_circ gabor_099_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_16_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_099_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 1792 2992 2592 fixation_cross gabor_039 gabor_055 gabor_020 gabor_080 gabor_039 gabor_055 gabor_020_alt gabor_080_alt "2_17_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1800_3000_2600_gabor_patch_orientation_039_055_020_080_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_129_framed blank blank blank blank fixation_cross_white "2_17_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_129_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1792 2992 2042 fixation_cross gabor_164 gabor_093 gabor_078 gabor_139 gabor_164_alt gabor_093 gabor_078_alt gabor_139 "2_18_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2050_gabor_patch_orientation_164_093_078_139_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_003_framed blank blank blank blank fixation_cross_white "2_18_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_003_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2242 2992 2192 fixation_cross gabor_113 gabor_097 gabor_025 gabor_148 gabor_113_alt gabor_097_alt gabor_025 gabor_148 "2_19_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2200_gabor_patch_orientation_113_097_025_148_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_025_framed gabor_circ blank blank blank blank fixation_cross_white "2_19_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_025_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1992 2992 2092 fixation_cross gabor_161 gabor_088 gabor_030 gabor_010 gabor_161_alt gabor_088 gabor_030_alt gabor_010 "2_20_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2100_gabor_patch_orientation_161_088_030_010_target_position_2_4_retrieval_position_2" gabor_circ gabor_088_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_20_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_088_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2092 2992 2442 fixation_cross gabor_139 gabor_115 gabor_155 gabor_074 gabor_139_alt gabor_115_alt gabor_155 gabor_074 "2_21_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2450_gabor_patch_orientation_139_115_155_074_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_029_framed blank blank blank blank fixation_cross_white "2_21_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_029_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 1892 2992 2242 fixation_cross gabor_131 gabor_104 gabor_015 gabor_168 gabor_131_alt gabor_104 gabor_015 gabor_168_alt "2_22_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1900_3000_2250_gabor_patch_orientation_131_104_015_168_target_position_2_3_retrieval_position_1" gabor_085_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_22_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_085_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1992 2992 2142 fixation_cross gabor_057 gabor_028 gabor_145 gabor_087 gabor_057 gabor_028_alt gabor_145_alt gabor_087 "2_23_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2150_gabor_patch_orientation_057_028_145_087_target_position_1_4_retrieval_position_1" gabor_103_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_23_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_103_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2192 2992 2292 fixation_cross gabor_002 gabor_034 gabor_073 gabor_178 gabor_002 gabor_034_alt gabor_073_alt gabor_178 "2_24_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2300_gabor_patch_orientation_002_034_073_178_target_position_1_4_retrieval_position_1" gabor_002_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_24_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_002_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1892 2992 1942 fixation_cross gabor_086 gabor_031 gabor_058 gabor_148 gabor_086_alt gabor_031_alt gabor_058 gabor_148 "2_25_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_1950_gabor_patch_orientation_086_031_058_148_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_148_framed blank blank blank blank fixation_cross_white "2_25_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_148_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2242 2992 2542 fixation_cross gabor_136 gabor_173 gabor_116 gabor_003 gabor_136 gabor_173 gabor_116_alt gabor_003_alt "2_26_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2550_gabor_patch_orientation_136_173_116_003_target_position_1_2_retrieval_position_1" gabor_090_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_26_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_090_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2192 2992 2242 fixation_cross gabor_022 gabor_048 gabor_068 gabor_135 gabor_022_alt gabor_048_alt gabor_068 gabor_135 "2_27_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2250_gabor_patch_orientation_022_048_068_135_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_085_framed blank blank blank blank fixation_cross_white "2_27_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_085_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 1842 2992 1892 fixation_cross gabor_005 gabor_063 gabor_176 gabor_036 gabor_005_alt gabor_063 gabor_176 gabor_036_alt "2_28_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1850_3000_1900_gabor_patch_orientation_005_063_176_036_target_position_2_3_retrieval_position_1" gabor_145_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_28_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_145_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2142 2992 2092 fixation_cross gabor_074 gabor_143 gabor_057 gabor_120 gabor_074_alt gabor_143 gabor_057 gabor_120_alt "2_29_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2100_gabor_patch_orientation_074_143_057_120_target_position_2_3_retrieval_position_2" gabor_circ gabor_143_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_29_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_143_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 1742 2992 2142 fixation_cross gabor_006 gabor_153 gabor_084 gabor_111 gabor_006 gabor_153 gabor_084_alt gabor_111_alt "2_30_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1750_3000_2150_gabor_patch_orientation_006_153_084_111_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_111_framed blank blank blank blank fixation_cross_white "2_30_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_111_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2092 2992 1942 fixation_cross gabor_163 gabor_014 gabor_079 gabor_044 gabor_163 gabor_014_alt gabor_079 gabor_044_alt "2_31_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_1950_gabor_patch_orientation_163_014_079_044_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_079_framed gabor_circ blank blank blank blank fixation_cross_white "2_31_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_079_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1892 2992 2142 fixation_cross gabor_050 gabor_001 gabor_163 gabor_029 gabor_050 gabor_001_alt gabor_163_alt gabor_029 "2_32_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2150_gabor_patch_orientation_050_001_163_029_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_075_framed blank blank blank blank fixation_cross_white "2_32_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_075_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2142 2992 2342 fixation_cross gabor_082 gabor_138 gabor_121 gabor_016 gabor_082 gabor_138_alt gabor_121 gabor_016_alt "2_33_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2350_gabor_patch_orientation_082_138_121_016_target_position_1_3_retrieval_position_1" gabor_082_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_33_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_082_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1892 2992 2292 fixation_cross gabor_089 gabor_015 gabor_074 gabor_054 gabor_089_alt gabor_015_alt gabor_074 gabor_054 "2_34_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2300_gabor_patch_orientation_089_015_074_054_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_124_framed gabor_circ blank blank blank blank fixation_cross_white "2_34_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_124_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1842 2992 1892 fixation_cross gabor_116 gabor_178 gabor_006 gabor_046 gabor_116_alt gabor_178 gabor_006_alt gabor_046 "2_35_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_1900_gabor_patch_orientation_116_178_006_046_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_093_framed blank blank blank blank fixation_cross_white "2_35_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_093_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1842 2992 2392 fixation_cross gabor_018 gabor_152 gabor_167 gabor_039 gabor_018_alt gabor_152 gabor_167_alt gabor_039 "2_36_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2400_gabor_patch_orientation_018_152_167_039_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_039_framed blank blank blank blank fixation_cross_white "2_36_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_039_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2092 2992 2392 fixation_cross gabor_147 gabor_119 gabor_100 gabor_063 gabor_147_alt gabor_119 gabor_100_alt gabor_063 "2_37_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2400_gabor_patch_orientation_147_119_100_063_target_position_2_4_retrieval_position_2" gabor_circ gabor_169_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_37_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_169_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 1942 2992 1892 fixation_cross gabor_012 gabor_175 gabor_059 gabor_044 gabor_012 gabor_175_alt gabor_059 gabor_044_alt "2_38_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1950_3000_1900_gabor_patch_orientation_012_175_059_044_target_position_1_3_retrieval_position_2" gabor_circ gabor_130_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_38_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_130_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2192 2992 2292 fixation_cross gabor_072 gabor_120 gabor_034 gabor_139 gabor_072_alt gabor_120 gabor_034_alt gabor_139 "2_39_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2300_gabor_patch_orientation_072_120_034_139_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_139_framed blank blank blank blank fixation_cross_white "2_39_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_139_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2192 2992 2492 fixation_cross gabor_177 gabor_155 gabor_123 gabor_107 gabor_177 gabor_155_alt gabor_123 gabor_107_alt "2_40_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2500_gabor_patch_orientation_177_155_123_107_target_position_1_3_retrieval_position_1" gabor_177_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_40_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_177_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 1892 2992 2242 fixation_cross gabor_175 gabor_155 gabor_140 gabor_013 gabor_175 gabor_155 gabor_140_alt gabor_013_alt "2_41_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1900_3000_2250_gabor_patch_orientation_175_155_140_013_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_140_framed gabor_circ blank blank blank blank fixation_cross_white "2_41_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_140_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1992 2992 2542 fixation_cross gabor_036 gabor_072 gabor_013 gabor_144 gabor_036_alt gabor_072_alt gabor_013 gabor_144 "2_42_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2550_gabor_patch_orientation_036_072_013_144_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_097_framed blank blank blank blank fixation_cross_white "2_42_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_097_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1742 2992 1992 fixation_cross gabor_024 gabor_133 gabor_107 gabor_151 gabor_024 gabor_133 gabor_107_alt gabor_151_alt "2_43_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2000_gabor_patch_orientation_024_133_107_151_target_position_1_2_retrieval_position_2" gabor_circ gabor_133_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_43_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_133_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1742 2992 2192 fixation_cross gabor_023 gabor_174 gabor_089 gabor_056 gabor_023_alt gabor_174 gabor_089_alt gabor_056 "2_44_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2200_gabor_patch_orientation_023_174_089_056_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_056_framed blank blank blank blank fixation_cross_white "2_44_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_056_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1942 2992 1892 fixation_cross gabor_119 gabor_047 gabor_086 gabor_168 gabor_119_alt gabor_047 gabor_086 gabor_168_alt "2_45_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_1900_gabor_patch_orientation_119_047_086_168_target_position_2_3_retrieval_position_2" gabor_circ gabor_002_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_45_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_002_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2042 2992 2092 fixation_cross gabor_159 gabor_054 gabor_177 gabor_090 gabor_159 gabor_054_alt gabor_177_alt gabor_090 "2_46_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2100_gabor_patch_orientation_159_054_177_090_target_position_1_4_retrieval_position_1" gabor_024_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_46_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_024_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1992 2992 2242 fixation_cross gabor_104 gabor_085 gabor_014 gabor_160 gabor_104 gabor_085_alt gabor_014 gabor_160_alt "2_47_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2250_gabor_patch_orientation_104_085_014_160_target_position_1_3_retrieval_position_1" gabor_054_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_47_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_054_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 1792 2992 1992 fixation_cross gabor_165 gabor_124 gabor_085 gabor_047 gabor_165 gabor_124 gabor_085_alt gabor_047_alt "2_48_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1800_3000_2000_gabor_patch_orientation_165_124_085_047_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_047_framed blank blank blank blank fixation_cross_white "2_48_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_047_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1942 2992 1942 fixation_cross gabor_036 gabor_053 gabor_173 gabor_109 gabor_036_alt gabor_053_alt gabor_173 gabor_109 "2_49_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_1950_gabor_patch_orientation_036_053_173_109_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_125_framed gabor_circ blank blank blank blank fixation_cross_white "2_49_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_125_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1792 2992 1992 fixation_cross gabor_103 gabor_165 gabor_133 gabor_078 gabor_103_alt gabor_165 gabor_133_alt gabor_078 "2_50_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2000_gabor_patch_orientation_103_165_133_078_target_position_2_4_retrieval_position_2" gabor_circ gabor_026_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_50_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_026_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1742 2992 2242 fixation_cross gabor_015 gabor_099 gabor_042 gabor_069 gabor_015_alt gabor_099_alt gabor_042 gabor_069 "2_51_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2250_gabor_patch_orientation_015_099_042_069_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_178_framed gabor_circ blank blank blank blank fixation_cross_white "2_51_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_178_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 2142 2992 2192 fixation_cross gabor_011 gabor_162 gabor_075 gabor_124 gabor_011_alt gabor_162 gabor_075_alt gabor_124 "2_52_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2150_3000_2200_gabor_patch_orientation_011_162_075_124_target_position_2_4_retrieval_position_1" gabor_011_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_52_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_011_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2242 2992 1892 fixation_cross gabor_021 gabor_128 gabor_045 gabor_089 gabor_021_alt gabor_128 gabor_045 gabor_089_alt "2_53_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_1900_gabor_patch_orientation_021_128_045_089_target_position_2_3_retrieval_position_2" gabor_circ gabor_128_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_53_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_128_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 1942 2992 1942 fixation_cross gabor_141 gabor_063 gabor_014 gabor_029 gabor_141_alt gabor_063 gabor_014 gabor_029_alt "2_54_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1950_3000_1950_gabor_patch_orientation_141_063_014_029_target_position_2_3_retrieval_position_1" gabor_096_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_54_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_096_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2042 2992 2492 fixation_cross gabor_034 gabor_067 gabor_104 gabor_085 gabor_034_alt gabor_067 gabor_104_alt gabor_085 "2_55_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2500_gabor_patch_orientation_034_067_104_085_target_position_2_4_retrieval_position_2" gabor_circ gabor_067_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_55_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_067_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1742 2992 2492 fixation_cross gabor_157 gabor_012 gabor_093 gabor_072 gabor_157_alt gabor_012_alt gabor_093 gabor_072 "2_56_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2500_gabor_patch_orientation_157_012_093_072_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_093_framed gabor_circ blank blank blank blank fixation_cross_white "2_56_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_093_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2142 2992 1942 fixation_cross gabor_026 gabor_094 gabor_175 gabor_011 gabor_026_alt gabor_094 gabor_175_alt gabor_011 "2_57_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_1950_gabor_patch_orientation_026_094_175_011_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_011_framed blank blank blank blank fixation_cross_white "2_57_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_011_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1842 2992 2042 fixation_cross gabor_023 gabor_174 gabor_066 gabor_130 gabor_023_alt gabor_174 gabor_066_alt gabor_130 "2_58_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2050_gabor_patch_orientation_023_174_066_130_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_084_framed blank blank blank blank fixation_cross_white "2_58_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_084_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1792 2992 2192 fixation_cross gabor_059 gabor_028 gabor_116 gabor_007 gabor_059_alt gabor_028 gabor_116 gabor_007_alt "2_59_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2200_gabor_patch_orientation_059_028_116_007_target_position_2_3_retrieval_position_2" gabor_circ gabor_075_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_59_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_075_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 2042 2992 2092 fixation_cross gabor_014 gabor_168 gabor_145 gabor_037 gabor_014_alt gabor_168 gabor_145_alt gabor_037 "2_60_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2050_3000_2100_gabor_patch_orientation_014_168_145_037_target_position_2_4_retrieval_position_1" gabor_062_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_60_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_062_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2242 2992 2092 fixation_cross gabor_177 gabor_021 gabor_001 gabor_128 gabor_177 gabor_021_alt gabor_001 gabor_128_alt "2_61_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2100_gabor_patch_orientation_177_021_001_128_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_001_framed gabor_circ blank blank blank blank fixation_cross_white "2_61_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1742 2992 2142 fixation_cross gabor_086 gabor_066 gabor_035 gabor_152 gabor_086_alt gabor_066 gabor_035 gabor_152_alt "2_62_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2150_gabor_patch_orientation_086_066_035_152_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_173_framed gabor_circ blank blank blank blank fixation_cross_white "2_62_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_173_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2142 2992 2592 fixation_cross gabor_046 gabor_100 gabor_061 gabor_169 gabor_046_alt gabor_100 gabor_061_alt gabor_169 "2_63_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2600_gabor_patch_orientation_046_100_061_169_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_169_framed blank blank blank blank fixation_cross_white "2_63_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_169_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2092 2992 2342 fixation_cross gabor_101 gabor_160 gabor_013 gabor_122 gabor_101 gabor_160_alt gabor_013 gabor_122_alt "2_64_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2350_gabor_patch_orientation_101_160_013_122_target_position_1_3_retrieval_position_1" gabor_101_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_64_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_101_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1742 2992 2492 fixation_cross gabor_006 gabor_053 gabor_122 gabor_084 gabor_006 gabor_053_alt gabor_122_alt gabor_084 "2_65_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2500_gabor_patch_orientation_006_053_122_084_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_037_framed blank blank blank blank fixation_cross_white "2_65_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_037_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 2192 2992 2342 fixation_cross gabor_165 gabor_032 gabor_049 gabor_003 gabor_165_alt gabor_032 gabor_049 gabor_003_alt "2_66_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2200_3000_2350_gabor_patch_orientation_165_032_049_003_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_139_framed blank blank blank blank fixation_cross_white "2_66_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_139_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1842 2992 2442 fixation_cross gabor_132 gabor_020 gabor_162 gabor_097 gabor_132 gabor_020 gabor_162_alt gabor_097_alt "2_67_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2450_gabor_patch_orientation_132_020_162_097_target_position_1_2_retrieval_position_1" gabor_132_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_67_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_132_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1942 2992 2542 fixation_cross gabor_097 gabor_152 gabor_067 gabor_178 gabor_097 gabor_152_alt gabor_067_alt gabor_178 "2_68_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2550_gabor_patch_orientation_097_152_067_178_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_132_framed blank blank blank blank fixation_cross_white "2_68_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_132_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 1892 2992 2342 fixation_cross gabor_027 gabor_107 gabor_169 gabor_001 gabor_027_alt gabor_107_alt gabor_169 gabor_001 "2_69_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1900_3000_2350_gabor_patch_orientation_027_107_169_001_target_position_3_4_retrieval_position_2" gabor_circ gabor_107_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_69_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_107_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1992 2992 1992 fixation_cross gabor_022 gabor_005 gabor_041 gabor_160 gabor_022_alt gabor_005_alt gabor_041 gabor_160 "2_70_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2000_gabor_patch_orientation_022_005_041_160_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_160_framed blank blank blank blank fixation_cross_white "2_70_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_160_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
};
# baselinePost (at the end of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
};
time = 0;
duration = 5000;
code = "BaselinePost";
port_code = 92;
}; |
65f063864e08e435195c7a7872cde83a8b17f205 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2063/CH9/EX9.6/9_6.sce | a21838223d0b34406fa15d2cf13a5cf192ea91ce | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 759 | sce | 9_6.sce | clc
clear
//Input data
P1=1;//Pressure at which air is sucked by a compressor in bar
T1=293;//Initial temperature in K
P2=9;//Delivery pressure after compression in bar
r=1.41;//Isentropic index
n=1.3;//Polytropic index
//Calculations
T21=T1*((P2/P1)^((r-1)/r));//Temperature at the end of isentropic compression process in K
T22=T1*((P2/P1)^((n-1)/n));//Temperature at the end of isentropic compression process in K
T23=T1;//Temperature at the end of isotropic compression process in K (Temperature remains constant)
//Output
printf('(a)Temperature at the end of isentropic compression is %3.2f K\n (b)Temperature at the end of polytropic compression is %3.2f K\n (c)Temperature at the end of isotropic compression is %3.0f K',T21,T22,T23)
|
c5b27ac43805a446d3f62e3dea334bdad6fe7341 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2240/CH7/EX6.4/EX6_4.sce | 9760391bf6540546623f57b0b229c12412f4010e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,529 | sce | EX6_4.sce | // Grob's Basic Electronics 11e
// Chapter No. 06
// Example No. 6_4
clc; clear;
// Assume that the series-parallel circuit in Fig. 6–15a has failed. A technician troubleshooting the circuit has measured the following voltages: V1 = 14.4 V; VAB = 0 V; V4 = 21.6 V. These voltage readings are shown in Fig. 6–15c. Based on the voltmeter readings shown, which component is defective and what type of defect does it have?
// Given data
V1 = 14.4; // Voltage at R1=14.4 Volts
Vab = 0; // Voltage at point (AB)=0 Volts
V4 = 21.6; // Voltage at R4=21.6 Volts
R1 = 120; // Resistor 1=120 Ohms
disp ('Since the voltages V1 and V4 have both increased, and the voltage VAB has decreased, the defective component must be either R2 or R3 across points A and B. Because the voltage VAB is 0 V, either R2 or R3 must be shorted.')
disp ('But how can we find out which resistor is shorted? One way would be to measure the currents I2 and I3. The shorted component is the one with all the current.')
disp ('Another way to find out which resistor is shorted would be to open the switch S1 and measure the resistance across points A and B. Disconnect one lead of either R2 or R3 from point A while observing the ohmmeter. If removing the top lead of R3 from point A still shows a reading of 0 Ohms, then you know that R2 must be shorted. Similarly, if removing the top lead of R2 from point A (with R3 still connected at point A) still produces a reading of 0 Ohms, then you know that R3 is shorted.')
|
25635abf6404f64104fd7c2f2c27ce160b580061 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2126/CH8/EX8.5.16/8_5_16.sce | 1fe96ec9770a4d6e60ff7364d5a6aed93cc0c3b0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 303 | sce | 8_5_16.sce | clc
clear
//Input data
Mx=1.5 //Mach number
P=40 //Static pressure in kPa
//Calculation
p1=3.413 //Pressure ratio in (Poy/Px) from normal shock gas tables @Mx
Poy=p1*P //Pressure acting on front of the body in kPa
//Output
printf('Pressure acting on front of the body is %3.1f kPa',Poy)
|
a9131243845d6eb1a0f8c6bf8dc8e22335f80cfa | 449d555969bfd7befe906877abab098c6e63a0e8 | /623/CH3/EX2.2.13/U2_C2_13.sce | 8b2e10c228953654c81065707968b0ba3cafae1a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,114 | sce | U2_C2_13.sce | //variable initialization
h=1.054*10^-34; //planck's constant (joule-second)
m=9.1*10^-31; //mass of electron (kg)
x_uncer=1*10^-10; //uncertainty in the position of elctrons (meter)
e=1.6*10^-19; //charge of electron (coulomb)
//(i) uncertainty in the momentum of electron
p_uncer=h/x_uncer; //The uncertainty in the momentum of electron (kg m/s)
//(ii) kinetic energy of electron
T=p_uncer^2/(2*m*e); //kinetic energy of electron (eV)
printf("\n(i) The uncertainty in the momentum of electron = %.3e kg m/s\n(ii) Kinetic energy of electron = %.1f eV\n The ionization potential of atoms is of this order and hence the uncertainty in momentum is consistence with the binding energy of electrons in atoms.",p_uncer,T);
|
91bc680c107328bd0f0e04d4dc370ddc46e267a1 | b68ae1fc3cd37c85031f69e42d92903b7f1a90ab | /projects/08/ProgramFlow/BasicLoop/BasicLoopVME.tst | 84f1dd49203a41870dba1406e119a4d1005178e8 | [] | no_license | bricef/The-Elements-of-Computing-Systems | fb3aa100c18176ccfc876e9d30319c0b8a5c7635 | 6be81eacaa30ad57b06f018c0aecbcf7e04841bc | refs/heads/master | 2021-01-18T13:43:02.653913 | 2011-04-06T19:23:52 | 2011-04-06T19:23:52 | 1,578,790 | 5 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 468 | tst | BasicLoopVME.tst | // This file is part of the materials accompanying the book
// "The Elements of Computing Systems" by Nisan and Schocken,
// MIT Press. Book site: www.idc.ac.il/tecs
// File name: projects/08/ProgramFlow/BasicLoop/BasicLoopVME.tst
load BasicLoop.vm,
output-file BasicLoop.out,
compare-to BasicLoop.cmp,
output-list RAM[0]%D1.6.1 RAM[256]%D1.6.1;
set sp 256,
set local 300,
set argument 400,
set argument[0] 3,
repeat 33 {
vmstep;
}
output;
|
f899c01c6fa4a7ce6371ab75345c882cc0f2f8c1 | 9b046504c3b7683d3bfa294fe100408058e75aa3 | /Metodos/Clase7/ejemplos/integracion/6CuadraturaDeGaussTrapezoidal.sce | af08af692463acbe270fdeb713aa7935dd8285f0 | [] | no_license | DavidAlex99/Cursos | f15cb4f4fbb35a6eb62cbae0a9b51ea671f3ea8f | aee547ab09db7e535bea5a6d41ed6e455f8a9a89 | refs/heads/master | 2023-01-08T02:46:07.502656 | 2020-11-14T00:45:57 | 2020-11-14T00:45:57 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 536 | sce | 6CuadraturaDeGaussTrapezoidal.sce | clc()
clear all
function result=f(x,a,b)
xd = (b-a)*x/2+(b+a)/2
dx = (b-a)/2
result =dx*( 0.2+25*xd-200*xd^2+675*xd^3-900*xd^4+400*xd^5)
endfunction
function result=cuadraturaDeGaussTrapezoidal(a,b,funcion)
result=(b-a)*(funcion(a,a,b)+funcion(b,a,b))/2
endfunction
a = 0
b = 0.8
disp("integral")
integral = integrate("0.2+25*x-200*x^2+675*x^3-900*x^4+400*x^5",'x',a,b)
disp(integral)
aproximacion = cuadraturaDeGaussTrapezoidal(a,b,f)
disp(aproximacion)
disp("error")
disp((integral-aproximacion)*100/integral)
|
d0527735464991bd627075593deb05b6c066cd5b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1958/CH12/EX12.5/Chapter12_example12_5.sce | f5b29f409c6e8eba4259a4bf65365b087194503f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 325 | sce | Chapter12_example12_5.sce | clc
clear
//Input data
L=50//Inductance in mH
R=5//Resistance in ohms
V=6//Volatage of the battery in V
t=5//Time in ms
//Calculations
t1=(L/R)//Time constant in ms
I=(V/R)*(1-exp(-t/t1))//Current in A
//Output
printf('The time constant of the circuit is %i ms \n The current in the circuit is %3.2f A',t1,I)
|
c36c39eb5f8edad483814351cedd5b77faf0942a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1862/CH19/EX19.2/C19P2.sce | 42c28fdb7292febfa0d3fd5da90b029281f178b4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 516 | sce | C19P2.sce | clear
clc
//to find intensity and sound level of sound wave
// GIVEN:
//radiated power
p = 25//in W
//distance from source
r = 2.5//in meters
//intensity of sound having sound level 0 dB
I0 = 1*10^-12//in W/m^2
// SOLUTION
//using equation of sound wave
//intensity of sound wave
I = p/(4*%pi*r^2)//in W/m^2
//sound level of sound wave
SL = 10*(log10(I/I0))//in dB
printf ("\n\n Intensity of sound wave I = \n\n %.2f W/m^2 ",I)
printf ("\n\n Sound level of sound wave SL = \n\n %3i dB ",SL)
|
62fcc7c139dcf953a062108b9c8bb31bf4417700 | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/CONT/NU13TYH/ATWM1_Working_Memory_MEG_NU13TYH_Session1/ATWM1_Working_Memory_MEG_Salient_Cued_Run1.sce | 72b90c0e1a25b37a94795e724fa3b97fed34fbc2 | [] | 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,381 | sce | ATWM1_Working_Memory_MEG_Salient_Cued_Run1.sce | # ATWM1 MEG Experiment
scenario = "ATWM1_Working_Memory_MEG_salient_cued_run1";
#scenario_type = fMRI; # Fuer Scanner
#scenario_type = fMRI_emulation; # Zum Testen
scenario_type = trials; # for MEG
#scan_period = 2000; # TR
#pulses_per_scan = 1;
#pulse_code = 1;
pulse_width=6;
default_monitor_sounds = false;
active_buttons = 2;
response_matching = simple_matching;
button_codes = 10, 20;
default_font_size = 36;
default_font = "Arial";
default_background_color = 0 ,0 ,0 ;
write_codes=true; # for MEG only
begin;
#Picture definitions
box { height = 382; width = 382; color = 0, 0, 0;} frame1;
box { height = 369; width = 369; color = 255, 255, 255;} frame2;
box { height = 30; width = 4; color = 0, 0, 0;} fix1;
box { height = 4; width = 30; color = 0, 0, 0;} fix2;
box { height = 30; width = 4; color = 255, 0, 0;} fix3;
box { height = 4; width = 30; color = 255, 0, 0;} fix4;
box { height = 369; width = 369; color = 42, 42, 42;} background;
TEMPLATE "StimuliDeclaration.tem" {};
trial {
sound sound_incorrect;
time = 0;
duration = 1;
} wrong;
trial {
sound sound_correct;
time = 0;
duration = 1;
} right;
trial {
sound sound_no_response;
time = 0;
duration = 1;
} miss;
# Start of experiment (MEG only) - sync with CTF software
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
} expStart;
time = 0;
duration = 1000;
code = "ExpStart";
port_code = 80;
};
# baselinePre (at the beginning of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
}default;
time = 0;
duration = 10000;
#mri_pulse = 1;
code = "BaselinePre";
port_code = 91;
};
TEMPLATE "ATWM1_Working_Memory_MEG.tem" {
trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4;
41 61 292 292 399 125 1842 2992 2342 fixation_cross gabor_018 gabor_105 gabor_141 gabor_158 gabor_018_alt gabor_105_alt gabor_141 gabor_158 "1_1_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2350_gabor_patch_orientation_018_105_141_158_target_position_1_2_retrieval_position_1" gabor_068_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_1_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_068_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1742 2992 2592 fixation_cross gabor_039 gabor_107 gabor_018 gabor_062 gabor_039_alt gabor_107_alt gabor_018 gabor_062 "1_2_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2600_gabor_patch_orientation_039_107_018_062_target_position_1_2_retrieval_position_1" gabor_086_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_2_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_086_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1892 2992 1892 fixation_cross gabor_026 gabor_178 gabor_090 gabor_005 gabor_026 gabor_178_alt gabor_090_alt gabor_005 "1_3_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_1900_gabor_patch_orientation_026_178_090_005_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_090_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_3_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_090_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1992 2992 1892 fixation_cross gabor_088 gabor_165 gabor_014 gabor_119 gabor_088_alt gabor_165_alt gabor_014 gabor_119 "1_4_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_1900_gabor_patch_orientation_088_165_014_119_target_position_1_2_retrieval_position_1" gabor_041_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_4_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_041_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 1742 2992 1942 fixation_cross gabor_045 gabor_092 gabor_157 gabor_125 gabor_045 gabor_092 gabor_157_alt gabor_125_alt "1_5_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_UncuedRetriev_300_300_399_1750_3000_1950_gabor_patch_orientation_045_092_157_125_target_position_3_4_retrieval_position_1" gabor_180_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_5_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_180_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2142 2992 2442 fixation_cross gabor_168 gabor_014 gabor_144 gabor_093 gabor_168_alt gabor_014_alt gabor_144 gabor_093 "1_6_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2450_gabor_patch_orientation_168_014_144_093_target_position_1_2_retrieval_position_1" gabor_030_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_6_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_030_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1792 2992 1892 fixation_cross gabor_034 gabor_091 gabor_070 gabor_053 gabor_034_alt gabor_091 gabor_070_alt gabor_053 "1_7_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_1900_gabor_patch_orientation_034_091_070_053_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_070_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_7_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_070_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2142 2992 2042 fixation_cross gabor_087 gabor_019 gabor_175 gabor_153 gabor_087_alt gabor_019_alt gabor_175 gabor_153 "1_8_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2050_gabor_patch_orientation_087_019_175_153_target_position_1_2_retrieval_position_2" gabor_circ gabor_019_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_8_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_019_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1992 2992 2542 fixation_cross gabor_177 gabor_050 gabor_021 gabor_128 gabor_177_alt gabor_050 gabor_021_alt gabor_128 "1_9_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2550_gabor_patch_orientation_177_050_021_128_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_160_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_9_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_160_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1942 2992 2242 fixation_cross gabor_048 gabor_106 gabor_132 gabor_068 gabor_048 gabor_106_alt gabor_132 gabor_068_alt "1_10_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2250_gabor_patch_orientation_048_106_132_068_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_019_framed blank blank blank blank fixation_cross_target_position_2_4 "1_10_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_019_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2142 2992 2092 fixation_cross gabor_095 gabor_076 gabor_015 gabor_121 gabor_095_alt gabor_076_alt gabor_015 gabor_121 "1_11_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2100_gabor_patch_orientation_095_076_015_121_target_position_1_2_retrieval_position_1" gabor_095_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_11_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_095_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 2042 2992 1992 fixation_cross gabor_041 gabor_116 gabor_061 gabor_167 gabor_041 gabor_116_alt gabor_061 gabor_167_alt "1_12_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_UncuedRetriev_300_300_399_2050_3000_2000_gabor_patch_orientation_041_116_061_167_target_position_2_4_retrieval_position_1" gabor_086_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_12_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_086_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2192 2992 2142 fixation_cross gabor_108 gabor_069 gabor_132 gabor_158 gabor_108_alt gabor_069 gabor_132_alt gabor_158 "1_13_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2150_gabor_patch_orientation_108_069_132_158_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_132_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_13_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_132_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1892 2992 2592 fixation_cross gabor_088 gabor_173 gabor_152 gabor_121 gabor_088 gabor_173_alt gabor_152 gabor_121_alt "1_14_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2600_gabor_patch_orientation_088_173_152_121_target_position_2_4_retrieval_position_2" gabor_circ gabor_173_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_14_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_173_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1792 2992 2192 fixation_cross gabor_152 gabor_019 gabor_103 gabor_171 gabor_152 gabor_019_alt gabor_103 gabor_171_alt "1_15_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2200_gabor_patch_orientation_152_019_103_171_target_position_2_4_retrieval_position_2" gabor_circ gabor_064_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_15_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_064_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1792 2992 2542 fixation_cross gabor_082 gabor_117 gabor_150 gabor_006 gabor_082 gabor_117_alt gabor_150_alt gabor_006 "1_16_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2550_gabor_patch_orientation_082_117_150_006_target_position_2_3_retrieval_position_2" gabor_circ gabor_117_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_16_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_117_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1792 2992 2242 fixation_cross gabor_165 gabor_075 gabor_013 gabor_091 gabor_165 gabor_075_alt gabor_013_alt gabor_091 "1_17_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2250_gabor_patch_orientation_165_075_013_091_target_position_2_3_retrieval_position_2" gabor_circ gabor_029_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_17_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_029_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 1842 2992 1992 fixation_cross gabor_021 gabor_136 gabor_047 gabor_176 gabor_021_alt gabor_136_alt gabor_047 gabor_176 "1_18_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_UncuedRetriev_300_300_399_1850_3000_2000_gabor_patch_orientation_021_136_047_176_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_047_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_18_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_047_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2142 2992 2592 fixation_cross gabor_142 gabor_036 gabor_081 gabor_004 gabor_142_alt gabor_036 gabor_081_alt gabor_004 "1_19_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2600_gabor_patch_orientation_142_036_081_004_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_081_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_19_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_081_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2092 2992 2092 fixation_cross gabor_026 gabor_049 gabor_065 gabor_107 gabor_026 gabor_049_alt gabor_065 gabor_107_alt "1_20_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2100_gabor_patch_orientation_026_049_065_107_target_position_2_4_retrieval_position_2" gabor_circ gabor_049_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_20_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_049_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2142 2992 2142 fixation_cross gabor_116 gabor_143 gabor_036 gabor_058 gabor_116 gabor_143 gabor_036_alt gabor_058_alt "1_21_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2150_gabor_patch_orientation_116_143_036_058_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_082_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_21_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_082_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 1792 2992 2142 fixation_cross gabor_003 gabor_144 gabor_087 gabor_122 gabor_003_alt gabor_144_alt gabor_087 gabor_122 "1_22_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_UncuedRetriev_300_300_399_1800_3000_2150_gabor_patch_orientation_003_144_087_122_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_122_framed blank blank blank blank fixation_cross_target_position_1_2 "1_22_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_122_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1892 2992 2342 fixation_cross gabor_086 gabor_110 gabor_066 gabor_045 gabor_086_alt gabor_110 gabor_066 gabor_045_alt "1_23_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2350_gabor_patch_orientation_086_110_066_045_target_position_1_4_retrieval_position_1" gabor_086_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_23_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_086_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1792 2992 2442 fixation_cross gabor_104 gabor_133 gabor_089 gabor_026 gabor_104 gabor_133 gabor_089_alt gabor_026_alt "1_24_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2450_gabor_patch_orientation_104_133_089_026_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_026_framed blank blank blank blank fixation_cross_target_position_3_4 "1_24_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_026_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2042 2992 2292 fixation_cross gabor_122 gabor_169 gabor_089 gabor_002 gabor_122_alt gabor_169_alt gabor_089 gabor_002 "1_25_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2300_gabor_patch_orientation_122_169_089_002_target_position_1_2_retrieval_position_2" gabor_circ gabor_033_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_25_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_033_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 2092 2992 1992 fixation_cross gabor_155 gabor_040 gabor_022 gabor_101 gabor_155_alt gabor_040 gabor_022 gabor_101_alt "1_26_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_UncuedRetriev_300_300_399_2100_3000_2000_gabor_patch_orientation_155_040_022_101_target_position_1_4_retrieval_position_2" gabor_circ gabor_176_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_26_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_176_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1892 2992 1942 fixation_cross gabor_137 gabor_121 gabor_095 gabor_076 gabor_137 gabor_121_alt gabor_095 gabor_076_alt "1_27_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_1950_gabor_patch_orientation_137_121_095_076_target_position_2_4_retrieval_position_2" gabor_circ gabor_166_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_27_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_166_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2192 2992 2292 fixation_cross gabor_066 gabor_040 gabor_097 gabor_115 gabor_066 gabor_040_alt gabor_097_alt gabor_115 "1_28_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2300_gabor_patch_orientation_066_040_097_115_target_position_2_3_retrieval_position_2" gabor_circ gabor_178_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_28_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_178_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 1792 2992 2092 fixation_cross gabor_086 gabor_152 gabor_129 gabor_070 gabor_086 gabor_152_alt gabor_129 gabor_070_alt "1_29_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_UncuedRetriev_300_300_399_1800_3000_2100_gabor_patch_orientation_086_152_129_070_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_176_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_29_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_176_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1842 2992 1992 fixation_cross gabor_001 gabor_107 gabor_018 gabor_127 gabor_001_alt gabor_107 gabor_018 gabor_127_alt "1_30_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2000_gabor_patch_orientation_001_107_018_127_target_position_1_4_retrieval_position_1" gabor_001_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_30_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1942 2992 2192 fixation_cross gabor_037 gabor_097 gabor_173 gabor_058 gabor_037 gabor_097_alt gabor_173_alt gabor_058 "1_31_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2200_gabor_patch_orientation_037_097_173_058_target_position_2_3_retrieval_position_2" gabor_circ gabor_144_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_31_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_144_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1742 2992 2092 fixation_cross gabor_036 gabor_143 gabor_005 gabor_078 gabor_036 gabor_143_alt gabor_005 gabor_078_alt "1_32_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2100_gabor_patch_orientation_036_143_005_078_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_123_framed blank blank blank blank fixation_cross_target_position_2_4 "1_32_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_123_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1892 2992 2492 fixation_cross gabor_097 gabor_056 gabor_176 gabor_120 gabor_097_alt gabor_056_alt gabor_176 gabor_120 "1_33_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2500_gabor_patch_orientation_097_056_176_120_target_position_1_2_retrieval_position_1" gabor_097_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_33_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_097_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1842 2992 2192 fixation_cross gabor_175 gabor_015 gabor_064 gabor_142 gabor_175_alt gabor_015 gabor_064_alt gabor_142 "1_34_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2200_gabor_patch_orientation_175_015_064_142_target_position_1_3_retrieval_position_1" gabor_175_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_34_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_175_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2192 2992 2092 fixation_cross gabor_038 gabor_019 gabor_087 gabor_146 gabor_038 gabor_019_alt gabor_087_alt gabor_146 "1_35_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2100_gabor_patch_orientation_038_019_087_146_target_position_2_3_retrieval_position_2" gabor_circ gabor_067_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_35_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_067_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1992 2992 1942 fixation_cross gabor_105 gabor_169 gabor_051 gabor_018 gabor_105 gabor_169_alt gabor_051_alt gabor_018 "1_36_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_1950_gabor_patch_orientation_105_169_051_018_target_position_2_3_retrieval_position_2" gabor_circ gabor_034_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_36_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_034_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 1742 2992 1942 fixation_cross gabor_085 gabor_002 gabor_165 gabor_031 gabor_085_alt gabor_002 gabor_165 gabor_031_alt "1_37_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_UncuedRetriev_300_300_399_1750_3000_1950_gabor_patch_orientation_085_002_165_031_target_position_1_4_retrieval_position_2" gabor_circ gabor_002_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_37_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_002_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2092 2992 2392 fixation_cross gabor_058 gabor_167 gabor_084 gabor_121 gabor_058_alt gabor_167 gabor_084_alt gabor_121 "1_38_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2400_gabor_patch_orientation_058_167_084_121_target_position_1_3_retrieval_position_1" gabor_058_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_38_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_058_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2042 2992 2192 fixation_cross gabor_086 gabor_141 gabor_114 gabor_175 gabor_086_alt gabor_141_alt gabor_114 gabor_175 "1_39_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2200_gabor_patch_orientation_086_141_114_175_target_position_1_2_retrieval_position_2" gabor_circ gabor_141_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_39_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_141_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2242 2992 2392 fixation_cross gabor_128 gabor_018 gabor_102 gabor_086 gabor_128 gabor_018_alt gabor_102 gabor_086_alt "1_40_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2400_gabor_patch_orientation_128_018_102_086_target_position_2_4_retrieval_position_2" gabor_circ gabor_018_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_40_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_018_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2092 2992 2342 fixation_cross gabor_113 gabor_152 gabor_173 gabor_097 gabor_113_alt gabor_152_alt gabor_173 gabor_097 "1_41_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2350_gabor_patch_orientation_113_152_173_097_target_position_1_2_retrieval_position_1" gabor_066_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_41_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_066_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2142 2992 2392 fixation_cross gabor_180 gabor_050 gabor_004 gabor_070 gabor_180_alt gabor_050 gabor_004 gabor_070_alt "1_42_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2400_gabor_patch_orientation_180_050_004_070_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_020_framed blank blank blank blank fixation_cross_target_position_1_4 "1_42_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_020_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 2242 2992 2442 fixation_cross gabor_051 gabor_171 gabor_136 gabor_115 gabor_051 gabor_171 gabor_136_alt gabor_115_alt "1_43_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_UncuedRetriev_300_300_399_2250_3000_2450_gabor_patch_orientation_051_171_136_115_target_position_3_4_retrieval_position_1" gabor_051_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_43_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_051_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1842 2992 2342 fixation_cross gabor_048 gabor_156 gabor_002 gabor_173 gabor_048_alt gabor_156 gabor_002_alt gabor_173 "1_44_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2350_gabor_patch_orientation_048_156_002_173_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_002_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_44_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_002_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1842 2992 2392 fixation_cross gabor_096 gabor_051 gabor_006 gabor_021 gabor_096_alt gabor_051 gabor_006_alt gabor_021 "1_45_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2400_gabor_patch_orientation_096_051_006_021_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_141_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_45_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_141_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 1942 2992 1892 fixation_cross gabor_009 gabor_062 gabor_098 gabor_031 gabor_009 gabor_062_alt gabor_098_alt gabor_031 "1_46_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_UncuedRetriev_300_300_399_1950_3000_1900_gabor_patch_orientation_009_062_098_031_target_position_2_3_retrieval_position_1" gabor_147_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_46_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_147_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1992 2992 2292 fixation_cross gabor_136 gabor_108 gabor_053 gabor_026 gabor_136_alt gabor_108 gabor_053 gabor_026_alt "1_47_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2300_gabor_patch_orientation_136_108_053_026_target_position_1_4_retrieval_position_1" gabor_136_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_47_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_136_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1892 2992 2292 fixation_cross gabor_128 gabor_095 gabor_040 gabor_146 gabor_128_alt gabor_095 gabor_040_alt gabor_146 "1_48_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2300_gabor_patch_orientation_128_095_040_146_target_position_1_3_retrieval_position_1" gabor_079_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_48_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_079_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2192 2992 2242 fixation_cross gabor_099 gabor_033 gabor_056 gabor_121 gabor_099_alt gabor_033_alt gabor_056 gabor_121 "1_49_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2250_gabor_patch_orientation_099_033_056_121_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 "1_49_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_083_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 1992 2992 2492 fixation_cross gabor_065 gabor_021 gabor_037 gabor_097 gabor_065 gabor_021_alt gabor_037 gabor_097_alt "1_50_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_UncuedRetriev_300_300_399_2000_3000_2500_gabor_patch_orientation_065_021_037_097_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_037_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_50_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_037_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1942 2992 2042 fixation_cross gabor_031 gabor_096 gabor_013 gabor_058 gabor_031 gabor_096_alt gabor_013 gabor_058_alt "1_51_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2050_gabor_patch_orientation_031_096_013_058_target_position_2_4_retrieval_position_2" gabor_circ gabor_146_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_51_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_146_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1942 2992 2242 fixation_cross gabor_032 gabor_116 gabor_174 gabor_092 gabor_032 gabor_116_alt gabor_174_alt gabor_092 "1_52_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2250_gabor_patch_orientation_032_116_174_092_target_position_2_3_retrieval_position_2" gabor_circ gabor_116_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_52_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_116_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1892 2992 2442 fixation_cross gabor_089 gabor_143 gabor_072 gabor_035 gabor_089_alt gabor_143_alt gabor_072 gabor_035 "1_53_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2450_gabor_patch_orientation_089_143_072_035_target_position_1_2_retrieval_position_2" gabor_circ gabor_143_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_53_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_143_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1742 2992 1992 fixation_cross gabor_007 gabor_120 gabor_160 gabor_042 gabor_007 gabor_120_alt gabor_160 gabor_042_alt "1_54_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2000_gabor_patch_orientation_007_120_160_042_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_088_framed blank blank blank blank fixation_cross_target_position_2_4 "1_54_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_088_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1742 2992 2342 fixation_cross gabor_005 gabor_124 gabor_075 gabor_159 gabor_005_alt gabor_124_alt gabor_075 gabor_159 "1_55_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2350_gabor_patch_orientation_005_124_075_159_target_position_1_2_retrieval_position_1" gabor_141_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_55_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_141_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2042 2992 2042 fixation_cross gabor_053 gabor_127 gabor_097 gabor_167 gabor_053_alt gabor_127_alt gabor_097 gabor_167 "1_56_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2050_gabor_patch_orientation_053_127_097_167_target_position_1_2_retrieval_position_1" gabor_007_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_56_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_007_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1742 2992 2242 fixation_cross gabor_132 gabor_096 gabor_073 gabor_043 gabor_132 gabor_096 gabor_073_alt gabor_043_alt "1_57_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2250_gabor_patch_orientation_132_096_073_043_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_073_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_57_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_073_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 2242 2992 2142 fixation_cross gabor_039 gabor_003 gabor_123 gabor_167 gabor_039_alt gabor_003_alt gabor_123 gabor_167 "1_58_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_UncuedRetriev_300_300_399_2250_3000_2150_gabor_patch_orientation_039_003_123_167_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_078_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_58_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_078_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2092 2992 1942 fixation_cross gabor_032 gabor_103 gabor_173 gabor_154 gabor_032 gabor_103_alt gabor_173 gabor_154_alt "1_59_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_1950_gabor_patch_orientation_032_103_173_154_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_154_framed blank blank blank blank fixation_cross_target_position_2_4 "1_59_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_154_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2192 2992 2142 fixation_cross gabor_043 gabor_060 gabor_103 gabor_130 gabor_043 gabor_060_alt gabor_103 gabor_130_alt "1_60_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2150_gabor_patch_orientation_043_060_103_130_target_position_2_4_retrieval_position_2" gabor_circ gabor_060_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_60_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_060_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1992 2992 2542 fixation_cross gabor_168 gabor_033 gabor_146 gabor_015 gabor_168 gabor_033 gabor_146_alt gabor_015_alt "1_61_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2550_gabor_patch_orientation_168_033_146_015_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_146_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_61_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_146_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1942 2992 2042 fixation_cross gabor_039 gabor_019 gabor_066 gabor_096 gabor_039_alt gabor_019_alt gabor_066 gabor_096 "1_62_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2050_gabor_patch_orientation_039_019_066_096_target_position_1_2_retrieval_position_2" gabor_circ gabor_155_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_62_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_155_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 2042 2992 2292 fixation_cross gabor_085 gabor_108 gabor_124 gabor_168 gabor_085 gabor_108_alt gabor_124 gabor_168_alt "1_63_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_UncuedRetriev_300_300_399_2050_3000_2300_gabor_patch_orientation_085_108_124_168_target_position_2_4_retrieval_position_1" gabor_085_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_63_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_085_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2242 2992 2592 fixation_cross gabor_176 gabor_020 gabor_158 gabor_095 gabor_176_alt gabor_020 gabor_158 gabor_095_alt "1_64_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2600_gabor_patch_orientation_176_020_158_095_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_095_framed blank blank blank blank fixation_cross_target_position_1_4 "1_64_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_095_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2242 2992 2542 fixation_cross gabor_038 gabor_021 gabor_155 gabor_177 gabor_038_alt gabor_021 gabor_155_alt gabor_177 "1_65_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2550_gabor_patch_orientation_038_021_155_177_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_155_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_65_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_155_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2092 2992 2492 fixation_cross gabor_096 gabor_073 gabor_153 gabor_134 gabor_096 gabor_073_alt gabor_153 gabor_134_alt "1_66_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2500_gabor_patch_orientation_096_073_153_134_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_180_framed blank blank blank blank fixation_cross_target_position_2_4 "1_66_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_180_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2042 2992 2042 fixation_cross gabor_032 gabor_013 gabor_148 gabor_170 gabor_032 gabor_013 gabor_148_alt gabor_170_alt "1_67_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2050_gabor_patch_orientation_032_013_148_170_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_170_framed blank blank blank blank fixation_cross_target_position_3_4 "1_67_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_170_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 1842 2992 1892 fixation_cross gabor_002 gabor_120 gabor_031 gabor_048 gabor_002 gabor_120_alt gabor_031 gabor_048_alt "1_68_Encoding_Working_Memory_MEG_P5_LR_Salient_NoChange_UncuedRetriev_300_300_399_1850_3000_1900_gabor_patch_orientation_002_120_031_048_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_031_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_68_Retrieval_Working_Memory_MEG_P5_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_031_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2192 2992 2492 fixation_cross gabor_177 gabor_018 gabor_050 gabor_134 gabor_177 gabor_018 gabor_050_alt gabor_134_alt "1_69_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2500_gabor_patch_orientation_177_018_050_134_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_002_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_69_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_002_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 2242 2992 2192 fixation_cross gabor_073 gabor_113 gabor_043 gabor_162 gabor_073_alt gabor_113_alt gabor_043 gabor_162 "1_70_Encoding_Working_Memory_MEG_P5_LR_Salient_DoChange_UncuedRetriev_300_300_399_2250_3000_2200_gabor_patch_orientation_073_113_043_162_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_093_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_70_Retrieval_Working_Memory_MEG_P5_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_093_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
};
# baselinePost (at the end of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
};
time = 0;
duration = 5000;
code = "BaselinePost";
port_code = 92;
}; |
969d5472b40f98f2e3ac981b53bdebb39aa18d64 | 931df7de6dffa2b03ac9771d79e06d88c24ab4ff | /Tile Frenzy 180 Various Health.sce | 99e49c52d762ffd24d2e140245b0b434cafe9ec1 | [] | no_license | MBHuman/Scenarios | be1a722825b3b960014b07cda2f12fa4f75c7fc8 | 1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137 | refs/heads/master | 2023-01-14T02:10:25.103083 | 2020-11-21T16:47:14 | 2020-11-21T16:47:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 58,939 | sce | Tile Frenzy 180 Various Health.sce | Name=Tile Frenzy 180 Various Health
PlayerCharacters=player_char
BotCharacters=tile_frenzy_VH_rot.rot
IsChallenge=true
Timelimit=60.0
PlayerProfile=player_char
AddedBots=tile_frenzy_VH_rot.rot;tile_frenzy_VH_rot.rot;tile_frenzy_VH_rot.rot;tile_frenzy_VH_rot.rot;tile_frenzy_VH_rot.rot
PlayerMaxLives=0
BotMaxLives=0;0;0;0;0
PlayerTeam=1
BotTeams=2;2;2;2;2
MapName=tile_frenzy_strafe.map
MapScale=10.0
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=false
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=0.0
ScorePerDamage=0.5
ScorePerKill=10.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=true
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=Flick and Track
WeaponHeroTag=LG
DifficultyTag=3
AuthorsTag=NFNT
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=false
BlockFCT=false
Description=Kill a target with three types of health. Thin = 1 shot, Normal = 5 shots, Thick = 10 shots.
GameVersion=2.0.0.2
ScorePerDistance=0.0
MBSEnable=false
MBSTime1=0.25
MBSTime2=0.5
MBSTime3=0.75
MBSTime1Mult=1.0
MBSTime2Mult=2.0
MBSTime3Mult=3.0
MBSFBInstead=false
MBSRequireEnemyAlive=false
[Aim Profile]
Name=_
MinReactionTime=0.000001
MaxReactionTime=0.000001
MinSelfMovementCorrectionTime=0.000001
MaxSelfMovementCorrectionTime=0.000001
FlickFOV=90.0
FlickSpeed=10.0
FlickError=0.0
TrackSpeed=10.0
TrackError=0.0
MaxTurnAngleFromPadCenter=360.0
MinRecenterTime=0.0
MaxRecenterTime=0.0
OptimalAimFOV=360.0
OuterAimPenalty=0.0
MaxError=0.0
ShootFOV=90.0
VerticalAimOffset=0.0
MaxTolerableSpread=0.0
MinTolerableSpread=0.0
TolerableSpreadDist=100000.0
MaxSpreadDistFactor=1.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Bot Profile]
Name=tile_frenzy_VH_low
DodgeProfileNames=tile_frenzy_VH_strafe
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=_;_;_;_;_;_;_;_
WeaponSwitchTime=60.0
UseWeapons=false
CharacterProfile=tile_frenzy_VH_low_char
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=tile_frenzy_VH_mid
DodgeProfileNames=tile_frenzy_VH_strafe
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=_;_;_;_;_;_;_;_
WeaponSwitchTime=60.0
UseWeapons=false
CharacterProfile=tile_frenzy_VH_mid_char
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=tile_frenzy_VH_high
DodgeProfileNames=tile_frenzy_VH_strafe
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=_;_;_;_;_;_;_;_
WeaponSwitchTime=60.0
UseWeapons=false
CharacterProfile=tile_frenzy_VH_high_char
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Rotation Profile]
Name=tile_frenzy_VH_rot
ProfileNames=tile_frenzy_VH_low;tile_frenzy_VH_mid;tile_frenzy_VH_high
ProfileWeights=2.0;6.0;2.0
Randomized=true
[Character Profile]
Name=player_char
MaxHealth=100.0
WeaponProfileNames=LG;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=500.0
Acceleration=16000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=0.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=230.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=270.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=tile_frenzy_VH_low_char
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.1
MaxRespawnDelay=0.1
StepUpHeight=0.0
CrouchHeightModifier=1.0
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=320.0
MaxCrouchSpeed=0.0
Acceleration=100000.0
AirAcceleration=16000.0
Friction=0.0
BrakingFrictionFactor=0.0
JumpVelocity=0.0
Gravity=0.0
AirControl=0.0
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=1.000 Z=1.000
EnemyHeadColor=X=1.000 Y=0.000 Z=0.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cuboid
MainBBHeight=320.0
MainBBRadius=32.0
MainBBHasHead=false
MainBBHeadRadius=0.1
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=320.0
ProjBBRadius=32.0
ProjBBHasHead=false
ProjBBHeadRadius=0.1
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=false
BounceOffWalls=true
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=0.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=tile_frenzy_VH_mid_char
MaxHealth=50.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.1
MaxRespawnDelay=0.1
StepUpHeight=0.0
CrouchHeightModifier=1.0
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=320.0
MaxCrouchSpeed=0.0
Acceleration=100000.0
AirAcceleration=16000.0
Friction=0.0
BrakingFrictionFactor=0.0
JumpVelocity=0.0
Gravity=0.0
AirControl=0.0
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=1.000 Z=1.000
EnemyHeadColor=X=1.000 Y=0.000 Z=0.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cuboid
MainBBHeight=192.0
MainBBRadius=48.0
MainBBHasHead=false
MainBBHeadRadius=0.1
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=192.0
ProjBBRadius=48.0
ProjBBHasHead=false
ProjBBHeadRadius=0.1
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=false
BounceOffWalls=true
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=0.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=tile_frenzy_VH_high_char
MaxHealth=100.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.1
MaxRespawnDelay=0.1
StepUpHeight=0.0
CrouchHeightModifier=1.0
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=320.0
MaxCrouchSpeed=0.0
Acceleration=100000.0
AirAcceleration=16000.0
Friction=0.0
BrakingFrictionFactor=0.0
JumpVelocity=0.0
Gravity=0.0
AirControl=0.0
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=1.000 Z=1.000
EnemyHeadColor=X=1.000 Y=0.000 Z=0.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cuboid
MainBBHeight=160.0
MainBBRadius=80.0
MainBBHasHead=false
MainBBHeadRadius=0.1
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=160.0
ProjBBRadius=80.0
ProjBBHasHead=false
ProjBBHeadRadius=0.1
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=false
BounceOffWalls=true
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=0.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Dodge Profile]
Name=tile_frenzy_VH_strafe
MaxTargetDistance=100000.0
MinTargetDistance=0.000001
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=10.0
MaxLRTimeChange=10.0
MinFBTimeChange=1.0
MaxFBTimeChange=1.0
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.0
DamageReactionMinimumDelay=1.0
DamageReactionMaximumDelay=1.0
DamageReactionCooldown=0.1
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=100.0
MaxProfileChangeTime=100.0
MinCrouchTime=0.2
MaxCrouchTime=0.2
MinJumpTime=0.1
MaxJumpTime=0.2
LeftStrafeTimeMult=100.0
RightStrafeTimeMult=100.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.2
BlockedMovementReactionMax=0.4
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
[Weapon Profile]
Name=LG
Type=Hitscan
ShotsPerClick=1
DamagePerShot=10.0
KnockbackFactor=0.0
TimeBetweenShots=0.05
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.1
ReloadTimeFromPartial=0.1
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.1
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.001
HitSoundCooldown=0.001
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=0
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=true
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.2
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=104.0
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=false
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
WeaponModel=Heavy Surge Rifle
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.1
IncReloadLoopTime=0.1
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.1
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=-50.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=Gunshot
ParticleBodyImpact=Gunshot
ParticleProjectileTrail=
ParticleHitscanTrace=Tracer
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
String32 targetGameOverCamera end
UInt8 playersMin 1
UInt8 playersMax 16
brush
vertices
43.654194 0.000000 -205.432022
82.172882 0.000000 -197.728271
50.370258 0.000000 -237.036942
94.814941 250.000000 -228.147995
50.370258 250.000015 -237.036942
94.814941 0.000000 -228.147995
82.172882 250.000000 -197.728271
43.654194 250.000015 -205.432022
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 7 6 0x00000000 structural/dev/dev_grey128
brush
vertices
82.172882 0.000000 -197.728271
115.555794 0.000000 -184.888702
94.814941 0.000000 -228.147995
133.333725 250.000015 -213.333069
94.814941 250.000000 -228.147995
133.333725 0.000000 -213.333069
115.555794 250.000015 -184.888702
82.172882 250.000000 -197.728271
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 structural/dev/dev_grey128
brush
vertices
115.555794 0.000000 -184.888702
143.802902 0.000000 -166.913300
133.333725 0.000000 -213.333069
165.926575 250.000000 -192.592194
133.333725 250.000015 -213.333069
165.926575 0.000000 -192.592194
143.802902 250.000000 -166.913300
115.555794 250.000015 -184.888702
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 7 6 0x00000000 structural/dev/dev_grey128
brush
vertices
-0.000229 0.000000 -207.999908
43.654194 0.000000 -205.432022
-0.000275 0.000000 -239.999878
50.370258 250.000015 -237.036942
-0.000275 250.000000 -239.999878
50.370258 0.000000 -237.036942
43.654194 250.000015 -205.432022
-0.000229 250.000000 -207.999908
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 structural/dev/dev_grey128
brush
vertices
-43.654392 0.000000 -205.431992
-0.000229 0.000000 -207.999908
-50.370537 0.000000 -237.036896
-0.000275 250.000000 -239.999878
-50.370537 249.999985 -237.036896
-0.000275 0.000000 -239.999878
-0.000229 250.000000 -207.999908
-43.654392 249.999985 -205.431992
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 structural/dev/dev_grey128
brush
vertices
-82.172676 0.000000 -197.728378
-43.654392 0.000000 -205.431992
-94.814774 0.000000 -228.148132
-50.370537 249.999985 -237.036896
-94.814774 250.000000 -228.148132
-50.370537 0.000000 -237.036896
-43.654392 249.999985 -205.431992
-82.172676 250.000000 -197.728378
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 7 6 0x00000000 structural/dev/dev_grey128
brush
vertices
-115.555176 0.000000 -184.888977
-82.172676 0.000000 -197.728378
-133.333115 0.000000 -213.333435
-94.814774 250.000000 -228.148132
-133.333115 250.000015 -213.333435
-94.814774 0.000000 -228.148132
-82.172676 250.000000 -197.728378
-115.555176 250.000015 -184.888977
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 7 6 0x00000000 structural/dev/dev_grey128
brush
vertices
-143.801834 0.000000 -166.913788
-115.555176 0.000000 -184.888977
-165.925446 0.000000 -192.592865
-133.333115 250.000015 -213.333435
-165.925446 249.999985 -192.592865
-133.333115 0.000000 -213.333435
-115.555176 250.000015 -184.888977
-143.801834 249.999985 -166.913788
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 structural/dev/dev_grey128
brush
vertices
-166.912781 0.000000 -143.802780
-143.801834 0.000000 -166.913788
-192.591949 0.000000 -165.926346
-165.925446 249.999985 -192.592865
-192.591949 250.000000 -165.926346
-165.925446 0.000000 -192.592865
-143.801834 249.999985 -166.913788
-166.912781 250.000000 -143.802780
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 7 6 0x00000000 structural/dev/dev_grey128
brush
vertices
-184.887939 0.000000 -115.555939
-166.912781 0.000000 -143.802780
-213.332581 0.000000 -133.333878
-192.591949 250.000000 -165.926346
-213.332581 250.000015 -133.333878
-192.591949 0.000000 -165.926346
-166.912781 250.000000 -143.802780
-184.887939 250.000015 -115.555939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 7 6 0x00000000 structural/dev/dev_grey128
brush
vertices
-197.727432 0.000000 -82.173210
-184.887939 0.000000 -115.555939
-228.147369 0.000000 -94.815384
-213.332581 250.000015 -133.333878
-228.147369 250.000000 -94.815384
-213.332581 0.000000 -133.333878
-184.887939 250.000015 -115.555939
-197.727432 250.000000 -82.173210
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 structural/dev/dev_grey128
brush
vertices
-205.431229 0.000000 -43.654575
-197.727432 0.000000 -82.173210
-237.036407 0.000000 -50.370850
-228.147369 250.000000 -94.815384
-237.036407 250.000015 -50.370850
-228.147369 0.000000 -94.815384
-197.727432 250.000000 -82.173210
-205.431229 250.000015 -43.654575
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 7 6 0x00000000 structural/dev/dev_grey128
brush
vertices
-207.999390 0.000000 0.000000
-205.431229 0.000000 -43.654575
-239.999664 0.000000 -0.000244
-237.036407 250.000015 -50.370850
-239.999664 250.000000 -0.000244
-237.036407 0.000000 -50.370850
-205.431229 250.000015 -43.654575
-207.999390 250.000000 0.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 structural/dev/dev_grey128
brush
vertices
205.432693 0.000000 -43.654221
208.000336 0.000000 -0.000244
237.037933 0.000000 -50.370033
240.000610 250.000000 0.000000
237.037933 249.999985 -50.370033
240.000610 0.000000 0.000000
208.000336 250.000000 -0.000244
205.432693 249.999985 -43.654221
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 structural/dev/dev_grey128
brush
vertices
197.729141 0.000000 -82.172523
205.432693 0.000000 -43.654221
228.149200 0.000000 -94.814270
237.037933 249.999985 -50.370033
228.149200 250.000000 -94.814270
237.037933 0.000000 -50.370033
205.432693 249.999985 -43.654221
197.729141 250.000000 -82.172523
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 7 6 0x00000000 structural/dev/dev_grey128
brush
vertices
184.889603 0.000000 -115.555191
197.729141 0.000000 -82.172523
213.334366 0.000000 -133.332779
228.149200 250.000000 -94.814270
213.334366 250.000015 -133.332779
228.149200 0.000000 -94.814270
197.729141 250.000000 -82.172523
184.889603 250.000015 -115.555191
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 7 6 0x00000000 structural/dev/dev_grey128
brush
vertices
166.914169 0.000000 -143.802109
184.889603 0.000000 -115.555191
192.593460 0.000000 -165.925400
213.334366 250.000015 -133.332779
192.593460 249.999985 -165.925400
213.334366 0.000000 -133.332779
184.889603 250.000015 -115.555191
166.914169 249.999985 -143.802109
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 structural/dev/dev_grey128
brush
vertices
143.802902 0.000000 -166.913300
166.914169 0.000000 -143.802109
165.926575 0.000000 -192.592194
192.593460 249.999985 -165.925400
165.926575 250.000000 -192.592194
192.593460 0.000000 -165.925400
166.914169 249.999985 -143.802109
143.802902 250.000000 -166.913300
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 7 6 0x00000000 structural/dev/dev_grey128
brush
vertices
-239.999664 0.000000 -0.000244
-225.000351 0.000000 104.999130
-207.999390 0.000000 0.000000
-194.999985 250.000000 90.999222
-207.999390 250.000000 0.000000
-194.999985 0.000000 90.999222
-225.000351 250.000000 104.999130
-239.999664 250.000000 -0.000244
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000
brush
vertices
-225.000351 0.000000 104.999130
-180.000626 0.000000 179.998978
-194.999985 0.000000 90.999222
-156.000259 250.000000 155.998917
-194.999985 250.000000 90.999222
-156.000259 0.000000 155.998917
-180.000626 250.000000 179.998978
-225.000351 250.000000 104.999130
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000
brush
vertices
-180.000626 0.000000 179.998978
-105.000549 0.000000 224.999237
-156.000259 0.000000 155.998917
-91.000244 250.000000 194.999023
-156.000259 250.000000 155.998917
-91.000244 0.000000 194.999023
-105.000549 250.000000 224.999237
-180.000626 250.000000 179.998978
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000
brush
vertices
-105.000549 0.000000 224.999237
-0.000198 0.000000 239.999817
-91.000244 0.000000 194.999023
0.000000 250.000000 207.999512
-91.000244 250.000000 194.999023
0.000000 0.000000 207.999512
-0.000198 250.000000 239.999817
-105.000549 250.000000 224.999237
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000
brush
vertices
208.000336 0.000000 -0.000244
194.999756 0.000000 91.000214
240.000610 0.000000 0.000000
224.999908 250.000000 105.000572
240.000610 250.000000 0.000000
224.999908 0.000000 105.000572
194.999756 250.000000 91.000214
208.000336 250.000000 -0.000244
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000
brush
vertices
194.999756 0.000000 91.000214
155.999542 0.000000 156.000290
224.999908 0.000000 105.000572
179.999573 250.000000 180.000687
224.999908 250.000000 105.000572
179.999573 0.000000 180.000687
155.999542 250.000000 156.000290
194.999756 250.000000 91.000214
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000
brush
vertices
155.999542 0.000000 156.000290
90.999634 0.000000 195.000046
179.999573 0.000000 180.000687
104.999565 250.000000 225.000412
179.999573 250.000000 180.000687
104.999565 0.000000 225.000412
90.999634 250.000000 195.000046
155.999542 250.000000 156.000290
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000
brush
vertices
90.999634 0.000000 195.000046
0.000000 0.000000 207.999512
104.999565 0.000000 225.000412
-0.000198 250.000000 239.999817
104.999565 250.000000 225.000412
-0.000198 0.000000 239.999817
0.000000 250.000000 207.999512
90.999634 250.000000 195.000046
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000
brush
vertices
-256.000000 240.000000 256.000000
256.000000 240.000000 256.000000
256.000000 240.000000 -256.000000
-256.000000 240.000000 -256.000000
-256.000000 224.000000 256.000000
256.000000 224.000000 256.000000
256.000000 224.000000 -256.000000
-256.000000 224.000000 -256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000000 32.000000 256.000000
256.000000 32.000000 256.000000
256.000000 32.000000 -256.000000
-256.000000 32.000000 -256.000000
-256.000000 16.000000 256.000000
256.000000 16.000000 256.000000
256.000000 16.000000 -256.000000
-256.000000 16.000000 -256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-205.431229 0.000000 -43.654575
205.432693 0.000000 -43.654221
-197.727432 0.000000 -82.173210
197.729141 250.000000 -82.172523
-197.727432 250.000000 -82.173210
197.729141 0.000000 -82.172523
205.432693 249.999985 -43.654221
-205.431229 250.000015 -43.654575
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 7 6 0x00000000
brush
vertices
205.432693 0.000000 -43.654221
-205.431229 0.000000 -43.654575
208.000336 0.000000 -0.000244
-207.999390 250.000000 0.000000
208.000336 250.000000 -0.000244
-207.999390 0.000000 0.000000
-205.431229 250.000015 -43.654575
205.432693 249.999985 -43.654221
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 internal/editor/textures/editor_clip
entity
type PlayerSpawn
Vector3 position 0.000000 65.000000 0.000000
Bool8 teamB 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type CameraPath
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type PlayerSpawn
Vector3 position 148.000000 30.000000 148.000000
Vector3 angles 585.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 148.000000 60.000000 148.000000
Vector3 angles 585.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 148.000000 90.000000 148.000000
Vector3 angles 585.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 148.000000 120.000000 148.000000
Vector3 angles 585.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 148.000000 150.000000 148.000000
Vector3 angles 585.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -148.000000 150.000000 148.000000
Vector3 angles 495.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -148.000000 120.000000 148.000000
Vector3 angles 495.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -148.000000 90.000000 148.000000
Vector3 angles 495.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -148.000000 60.000000 148.000000
Vector3 angles 495.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -148.000000 30.000000 148.000000
Vector3 angles 495.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 148.000000 45.000000 148.000000
Vector3 angles 585.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 148.000000 75.000000 148.000000
Vector3 angles 585.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 148.000000 105.000000 148.000000
Vector3 angles 585.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 148.000000 135.000000 148.000000
Vector3 angles 585.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 148.000000 165.000000 148.000000
Vector3 angles 585.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -148.000000 45.000000 148.000000
Vector3 angles 495.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -148.000000 75.000000 148.000000
Vector3 angles 495.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -148.000000 105.000000 148.000000
Vector3 angles 495.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -148.000000 135.000000 148.000000
Vector3 angles 495.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -148.000000 165.000000 148.000000
Vector3 angles 495.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -122.000000 165.000000 122.000000
Vector3 angles 495.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -122.000000 150.000000 122.000000
Vector3 angles 495.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -122.000000 135.000000 122.000000
Vector3 angles 495.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -122.000000 120.000000 122.000000
Vector3 angles 495.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -122.000000 105.000000 122.000000
Vector3 angles 495.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -122.000000 90.000000 122.000000
Vector3 angles 495.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -122.000000 75.000000 122.000000
Vector3 angles 495.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -122.000000 60.000000 122.000000
Vector3 angles 495.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -122.000000 45.000000 122.000000
Vector3 angles 495.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -122.000000 30.000000 122.000000
Vector3 angles 495.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 122.000000 165.000000 122.000000
Vector3 angles 585.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 122.000000 150.000000 122.000000
Vector3 angles 585.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 122.000000 135.000000 122.000000
Vector3 angles 585.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 122.000000 120.000000 122.000000
Vector3 angles 585.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 122.000000 105.000000 122.000000
Vector3 angles 585.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 122.000000 90.000000 122.000000
Vector3 angles 585.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 122.000000 75.000000 122.000000
Vector3 angles 585.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 122.000000 60.000000 122.000000
Vector3 angles 585.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 122.000000 45.000000 122.000000
Vector3 angles 585.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 122.000000 30.000000 122.000000
Vector3 angles 585.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 96.000000 165.000000 96.000000
Vector3 angles 585.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 96.000000 150.000000 96.000000
Vector3 angles 585.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 96.000000 135.000000 96.000000
Vector3 angles 585.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 96.000000 120.000000 96.000000
Vector3 angles 585.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 96.000000 105.000000 96.000000
Vector3 angles 585.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 96.000000 90.000000 96.000000
Vector3 angles 585.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 96.000000 75.000000 96.000000
Vector3 angles 585.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 96.000000 60.000000 96.000000
Vector3 angles 585.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 96.000000 45.000000 96.000000
Vector3 angles 585.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 96.000000 30.000000 96.000000
Vector3 angles 585.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -96.000000 166.000000 96.000000
Vector3 angles 495.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -96.000000 151.000000 96.000000
Vector3 angles 495.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -96.000000 136.000000 96.000000
Vector3 angles 495.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -96.000000 121.000000 96.000000
Vector3 angles 495.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -96.000000 106.000000 96.000000
Vector3 angles 495.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -96.000000 91.000000 96.000000
Vector3 angles 495.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -96.000000 76.000000 96.000000
Vector3 angles 495.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -96.000000 61.000000 96.000000
Vector3 angles 495.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -96.000000 46.000000 96.000000
Vector3 angles 495.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -96.000000 31.000000 96.000000
Vector3 angles 495.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
|
6492502d168d86c1dbfae4adacea46a8a950da2f | 449d555969bfd7befe906877abab098c6e63a0e8 | /431/CH4/EX4.4/EX4_4.sce | d36f538379cb3ac5f8d0dbb77d3d93851ee5d98e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 458 | sce | EX4_4.sce | //Calculate frequency of rotor induced emf
//Chapter 4
//Example 4.4
//page 293
clear;
clc;
disp("Example 4.4")
Nr=1440; //rotor speed in rpm
f=50; //frequency in hertz
//calculating Ns for values of P=2,4,6,8 etc
//by checking P=4
P=4;
Ns=(120*f)/P; //Synchronous speed
S=(Ns-Nr)/Ns; //slip
Fr=S*f; //rotor frequency
printf("Rotor frequency=%dHz",Fr)
|
78e521297f96cff12ad4822b2f19fbae5f48d805 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2006/CH5/EX5.3/ex5_3.sce | 84212704bf894b4ef2f5010e1b619b59447e68bb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,298 | sce | ex5_3.sce | clc;
V=50; // Volume of water in a tank in litres
T1=120; // Temperature of water at initial state (1) in degree celcius
x1=0.6; // Dryness fraction at initial state (1)
T2=-10; // Temperature of water at final state (2) in degree celcius
vf1=0.00106; // specific volume of water from steam tables at T1 in m^3/kg
vg1=0.8919; // specific volume of water from steam tables at T1 in m^3/kg
v1=(1-x1)*vf1+x1*vg1; // Specific volume of misture of liquid and water at state (1)
m=(V*10^-3)/v1; // Mass of water in the tank
vs2=0.0010891; // Specific volume of saturated ice at T2 in m^3/kg
vg2=466.7; // Specific volume of water vapour at T2 in m^3/kg
v2=v1; // constant specific volume during cooling process
x2=(v2-vs2)/(vg2-vs2); // Dryness fraction at state (2)
uf1=503.5; // Specific internal energy at state (1) in kJ/kg
ug1=2529.3; // Specific internal energy at state (1) in kJ/kg
us2=-354.09; // Specific internal energy at state (2) in kJ/kg
ug2=2361.4; // Specific internal energy at state (2) in kJ/kg
u1=(1-x1)*uf1+x1*ug1; // Total Specific internal energy at state (1) in kJ/kg
u2=(1-x2)*us2+x2*ug2; // Total Specific internal energy at state (2) in kJ/kg
Q12=m*(u2-u1); // Heat transfer during cooling pocess
disp ("kJ",Q12,"Heat transfer during cooling pocess = ");
|
cb82af83f34a44ccf03dcff549c789feafebd468 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3705/CH8/EX8.11/Ex8_11.sce | d763804e033ee5ff3ab8b008df2272edca40d1dd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 827 | sce | Ex8_11.sce |
clear//
//Variable Declaration
L=15 //Length of the shaft in inches
r=3.0/8.001 //Radius of the shaft in inches
T=540 //Torque applied in lb.in
//Calculations
V=30 //Transverse Shear Force in lb
M=15*V //Bending Moment in lb.in
I=(%pi*r**4)/4.0 //Moment of Inertia in in^4
J=2*I //Polar Moment Of Inertia in in^4
//Part 1
sigma=(M*r)/I //Bending Stress in psi
tau_t=10**-3*(T*r)/J //Shear Stress in ksi
sigma_max1=13.92 //From the Mohr Circle in ksi
//Part 2
Q=(2*r**3)/3.0 //First Moment in in^3
b=2*r // in
tau_V=10**-3*(V*Q)/(I*b) //Shear Stress in ksi
tau=tau_t+tau_V //Total Shear in ksi
sigma_max2=tau //Maximum stress in ksi
//Result
printf("\n The maximum normal stress in case 1 is %0.3f ksi",sigma_max1)
printf("\n The Maximum normal stress in case 2 is %0.2f ksi",sigma_max2)
|
6b2861c9bf3bb834d25310c211ed162aaefa6715 | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/SH5.prev.tst | 37f719e6408ec7068433e0872588cb5b86d60123 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | gfis/ramath | 498adfc7a6d353d4775b33020fdf992628e3fbff | b09b48639ddd4709ffb1c729e33f6a4b9ef676b5 | refs/heads/master | 2023-08-17T00:10:37.092379 | 2023-08-04T07:48:00 | 2023-08-04T07:48:00 | 30,116,803 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 380 | tst | SH5.prev.tst | expression: 2*n*a(n) +(-23*n+36)*a(n-1) +6*(-2*n+3)*a(n-2)=0
postfix1: ;2;n;*;a(;n;a);*;0;23;n;*;-;36;+;a(;n;1;-;a);*;+;6;0;2;n;*;-;3;+;*;a(;n;2;-;a);*;+;0;=
rebuilt1: 2*n*a(n)+(-23*n+36)*a(n-1)+6*(-2*n+3)*a(n-2)=0
postfix2: ;2;n;*;a(;n;a);*;0;23;n;*;-;36;+;a(;n;1;-;a);*;+;6;0;2;n;*;-;3;+;*;a(;n;2;-;a);*;+;0;=
rebuilt2: 2*n*a(n)+(-23*n+36)*a(n-1)+6*(-2*n+3)*a(n-2)=0
same
|
3c0a114d1655fdfd1c93f959960f60caf3353e91 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1826/CH12/EX12.1/ex12_1.sce | 3c332cf4c26a0f02205649be18405ba95c2cba40 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 183 | sce | ex12_1.sce | // Example 12.1, page no-350
clear
clc
alfe=8.8*10^-6//per k
lo=0.1//m
delT=973//K
delL=alfe*lo*delT
printf("The change in length produced by heating is %.3f mm",delL*10^3)
|
84c2971bda20b211de0ddd34cbadea0b01b156e0 | f6134e0a162a059c42ec3ef8de2a63941d73936c | /Scilab_code/Graph_search/insert_in_queue.sci | 8228f2a5386b680ad3d8ef34cb5199124a367baf | [] | 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 | 799 | sci | insert_in_queue.sci | function new_queue = insert_in_queue(old_queue,new_element)
//Author : Maxens ACHIEPI
//Space Robotics Laboratory - Tohoku University
//Description:
//
//INPUT
//old_queue; a priority queue based on the cost. No limit on size
//new_element: struct:
// *new_element.node_cost
// *new_element.node_number
//OUTPUT
//
//----------------------------------------------------------------------------//
new_queue = old_queue;
for i=length(new_queue):-1:1
if new_element.node_cost>=new_queue(i).node_cost then
new_queue(i+1) = new_element;
break;
else
new_queue(i+1) = new_queue(i);
new_queue(i) = new_element;
end
end
endfunction
|
d4594a618c4f240e4a2aaad6ff5391c5c4b986f1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1511/CH2/EX2.42/ex2_42.sce | 35330439f8da9351dcc81fced6188b71f3e1510f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 148 | sce | ex2_42.sce | // Example 2.42 page no-128
clear
clc
V=30 //V
R=2000 //Ohm
I=V/R
Iz=0.025 //A
It=Iz+I
Rs=200
Vmax=V+Rs*It
printf("Vrmax = %d V",Vmax)
|
59a8a1a386b1eb2599797837d0c7d45d29b79107 | 449d555969bfd7befe906877abab098c6e63a0e8 | /67/CH8/EX8.6/example86.sce | fa434746b87a119d49bc3c0ba0037dad4b0d1df3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 116 | sce | example86.sce | //Example 8.6
//Determine the DFT of the following sequence
clc;
x=[1,1,2,2,3,3];
X=fft(x,-1);
disp(X,'X[k]='); |
28f15d79306045a8ff81b2cd683e6894843f2401 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2120/CH1/EX1.6/ex1_6.sce | 3ddd6e19aec576db32ba51fa0b92578b1177715b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 375 | sce | ex1_6.sce | // Exa 1.6
clc;
clear;
close;
// Given data
// W = 2*g*h
// due to stirring of water
g = 9.81;
J = 4.1868*10^3;
m = (0.2+10*10^-3)*10^3;// in gm
s= 1;// in cal per gm°C
del_T = 2;// in ° C
H = m * s * del_T;// in cal
H = H*10^-3;// in kcal
// W = JH and W= 2*g*h
h = J*H/(2 * g);// in m
disp(h,"The height from the mass should be fall in meter is :");
|
aec4e94c2c527e2b42fda0f179149b0a043a0daf | 449d555969bfd7befe906877abab098c6e63a0e8 | /2045/CH4/EX4.41/Ex4_41.sce | 0ee69ad1b401db6564ce2d7c39e3b7e9ee670209 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 361 | sce | Ex4_41.sce | //pagenumber 225 example 41
clear
colres=3*10^3;//ohm
rb=150*10^3;//ohm
beta1=125;
vcc=10;//volt
v1=5;//volt
vb=0.7;//volt
ib=(v1-vb)/rb;
disp("ib = "+string((ib))+" ampere");
ic=beta1*ib;
ie=ic+ib;
disp("ic = "+string((ic))+" ampere");
disp("ie = "+string((ie))+" ampere");//correction in the book in question to find only currents
|
382fc5d18f986d3d054eb689d85346ba6ef3326d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1163/CH20/EX20.10/example_20_10.sce | dac4b1fe3eeaeabfd70c0ea92b63d970b5ec1f3f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,358 | sce | example_20_10.sce | clear;
clc;
disp("--------------Example 20.10---------------")
source_address="10.12.14.5";
destination_address="12.6.7.9";
// convert all the fields to hexadecimal
a1=hex2dec("4500");
a2=28;
a3=1;
a4=0;
a5=hex2dec("0411");
a6=0;
a7=hex2dec("0A0C");
a8=hex2dec("0E05");
a9=hex2dec("0C06");
a10=hex2dec("0709");
d_sum=a1+a2+a3+a4+a5+a6+a7+a8+a9+a10; // find the sum of all fielda
Sum=dec2hex(d_sum);
c=bitcmp(d_sum,16); // complement sum
Checksum=dec2hex(c);
printf("Figure shows an example of a checksum calculation for an IPv4 header without options. The header is divided into 16-bit sections.\nAll the sections are added and the sum is complemented.The sum is %s and the checksum is %s.\nThe result is inserted in the checksum field.",Sum,Checksum); // display result
// display the figure
clf();
xname("--------------Example 20.10----------------");
xrects([.28 .33 .38 .44;.8 .8 .8 .8;.05 .05 .06 .16;.06 .06 .06 .06]);
xrects([.28 .44 .52;.74 .74 .74 ;.16 .08 .08 ;.06 .06 .06 ]);
xrects([.28 .36 .44 ;.68 .68 .68 ;.08 .08 .16 ;.06 .06 .06 ]);
xrect(.28,.62,.32,.06);
xrect(.28,.56,.32,.06);
for i=0:9
xarrows([.38 .42],[.47-(i/25) .47-(i/25)],.3);
end
xarrows([.38 .42],[.04 .04],.3);
xarrows([.38 .42],[.002 .002],.3);
xpoly([.44 .52],[.06 .06]);
xset("font size",3);
xstring(.34,.033,"Sum");
xstring(.3,.00001,"Checksum");
xstring(.3,.46,"4,5 and 0");
xstring(.35,.42,"28");
xstring(.36,.38,"1");
xstring(.31,.34,"0 and 0");
xstring(.31,.3,"4 and 17");
xstring(.44,.46,"4 5 0 0");
xstring(.44,.42,"0 0 1 C");
xstring(.44,.38,"0 0 0 1");
xstring(.44,.34,"0 0 0 0");
xstring(.44,.3,"0 4 1 1");
xstring(.44,.26,"0 0 0 0");
xstring(.44,.22,"0 A 0 C");
xstring(.44,.18,"0 E 0 5");
xstring(.44,.14,"0 C 0 6");
xstring(.44,.1,"0 7 0 9");
xstring(.44,.031,"7 4 4 E");
xstring(.44,.000001,"8 B B 1");
xstring(.36,.26,"0");
xstring(.33,.22,"10.12");
xstring(.34,.18,"14.5");
xstring(.34,.14,"12.6");
xstring(.35,.1,"7.9");
xstring(.4,.565,source_address);
xstring(.41,.51,destination_address);
xstring(.3,.75," 4 5 0 28");
xstring(.35 ,.69,"1 0 0");
xstring(.31,.63,"4 17 0");
xpoly([.51 .55],[.02 0.02]);
xarrows([.55 .55],[0.02 .65],.6); |
fcbb3353d72bca568af9c07b4d248f69be508a2a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1592/CH1/EX1.3.b/Example1_3b_.sce | 0ffcf8069dbc01920f03e0f503f66240628d92e6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 452 | sce | Example1_3b_.sce | //Scilab Code for Example 1.3(b) of Signals and systems by
//P.Ramakrishna Rao
//Determine whether the given signal is periodic or not
//x(t)=5*cos((4/3)*t)+3*sin(t)
clc;
clear;
syms t;
x=5*cos((4/3)*t)+3*sin(t);
disp(x,'x(t)');
t=0:1/80:80;
x=5*cos((4/3)*t)+3*sin(t);
t=0:1/80:80;
plot(t,x);
title('x(t)');
xlabel('Time in seconds');
disp('plotted the signal and shown that it is periodic with a period of LCM of 2pi and (2pi/(4/3)');
|
e9ea863b98b3074fe660804799962ffa81c5ae54 | bf22bf34daeceb2106b5e2af1c24e480f628960c | /singlelayer-perceptron/perceptron-adaline/scilab/eqm.sci | d2f09caa8e9e1ac91bbcd688b5838e261adff18c | [] | no_license | edielsonpf/neural-networks-examples | e3a045bf37e4b2ea681f05512ac71fdbb0cb4992 | 9fabec297b07987f3506401751719c56055d0f5f | refs/heads/master | 2020-12-24T08:46:39.412676 | 2017-09-23T11:22:11 | 2017-09-23T11:22:11 | 32,630,396 | 1 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 181 | sci | eqm.sci | function erro = eqm(x,w,d)
[Input_Size,p]=size(x);
erro=0;
for k=1:p
v=w'*x(:,k);
erro=erro+(d(k)-v).^2;
end
erro=erro/p;
endfunction
|
ab18ed4399460ff16191d46909c4df7aa6286570 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2144/CH5/EX5.2/ex5_2.sce | 0bdd560db1e5b5b532f736ca2513db01bede5dc2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 274 | sce | ex5_2.sce | // Exa 5.2
clc;
clear;
close;
// Given data
D = 0.3;// in m
L = 0.45;// in m
V_s = (%pi/4)*(D)^2*L;// in m^3
V_c = 0.0114;// in m^3
V = V_c+V_s;// in m^3
r = V/V_c;
Gamma = 1.4;
Eta = (1-((1/r)^(Gamma-1)))*100;// in %
disp(Eta,"Efficiency of engine in % is");
|
f7b100427c78a069277497430856b1e0a5cd2d57 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2075/CH9/EX9.8/pe9_8.sce | 79de417ecebfb25f814f713e4f18c916d92efe6e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | pe9_8.sce | //example 9.8
clc;funcprot(0);
//Initialization of Variable
f1=60;//frequency
V=150;//voltage
f2=31;//kHz
//calculation
f3=f1*4;
disp(f3*2^7/1000,"pwm fundamental frequency in kHz:")
Vo=V*10^(-4.2);
disp(Vo*1000,"output voltage in V:")
clear()
|
e41c8c9dc5a571a22777ea2a2b8b89b1e17e68a8 | 4a1effb7ec08302914dbd9c5e560c61936c1bb99 | /Project 2/Experiments/Chi-RW-C/results/Chi-RW-C.vowel-10-1tra/result8.tst | 68d96b01536eeb4be0796f37027a1b82dfc83ebc | [] | no_license | nickgreenquist/Intro_To_Intelligent_Systems | 964cad20de7099b8e5808ddee199e3e3343cf7d5 | 7ad43577b3cbbc0b620740205a14c406d96a2517 | refs/heads/master | 2021-01-20T13:23:23.931062 | 2017-05-04T20:08:05 | 2017-05-04T20:08:05 | 90,484,366 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 967 | tst | result8.tst | @relation vowel
@attribute TT integer[0,1]
@attribute SpeakerNumber integer[0,14]
@attribute Sex integer[0,1]
@attribute F0 real[-5.211,-0.941]
@attribute F1 real[-1.274,5.074]
@attribute F2 real[-2.487,1.431]
@attribute F3 real[-1.409,2.377]
@attribute F4 real[-2.127,1.831]
@attribute F5 real[-0.836,2.327]
@attribute F6 real[-1.537,1.403]
@attribute F7 real[-1.293,2.039]
@attribute F8 real[-1.613,1.309]
@attribute F9 real[-1.68,1.396]
@attribute Class{0,1,2,3,4,5,6,7,8,9,10}
@inputs TT,SpeakerNumber,Sex,F0,F1,F2,F3,F4,F5,F6,F7,F8,F9
@outputs Class
@data
0 0
2 2
5 3
6 9
10 2
7 7
2 3
7 7
0 0
4 4
5 4
10 1
9 9
2 1
3 3
1 1
5 3
8 9
0 1
5 4
3 ?
8 8
3 3
7 7
2 2
1 1
8 9
2 2
6 9
3 3
4 4
4 4
9 9
5 1
10 8
1 1
5 3
6 6
10 3
8 9
10 3
4 4
2 2
3 1
6 8
6 7
10 8
0 0
9 9
6 6
9 9
8 9
10 9
0 0
10 0
1 1
8 8
1 1
5 3
5 3
9 9
1 9
6 7
2 0
4 3
7 7
9 9
4 3
3 3
7 7
6 9
8 7
10 1
3 3
6 7
2 8
5 3
7 7
0 0
9 8
0 0
7 7
9 8
1 0
3 3
8 7
0 0
7 7
8 1
2 2
7 6
1 1
3 3
9 9
4 7
0 0
1 1
4 6
4 6
|
4c658f88cfccab873f39950950aab7c93cca2c75 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1226/CH20/EX20.10/EX20_10.sce | c8444a23a375e87ed757b6e4e3c26998323d575b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 686 | sce | EX20_10.sce | clc;funcprot(0);//EXAMPLE 20.10
// Initialisation of Variables
L=88;...........//Compressor stroke in cm
k=0.02;...........//Clearance ratio
p3=8.2;...........//Delivery pressure in bar
p4=1.025;.......//Suction pressure in bar
p1=p4;.......//Suction pressure in bar
n=1.3;.........//Compression index
lo=0.55;...//Length of distance piece fitted after overhaul in cm
//Calculations
pcfa=(((L+(L*k))-((L*k)*((p3/p4)^(1/n))))-(((k*L)+lo+L)-(((k*L)+lo)*((p3/p4)^(1/n)))))/((L+L*k)-((L*k)*((p3/p4)^(1/n))))
disp(pcfa*100,"Percentage change in free air delivery:")
pcpa=pcfa;......//Percentage change in power delivered
disp(pcpa*100,"Percentage change in power delivered:")
|
01e8ad4d4bb41208644843a44d3a641ad0265912 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2915/CH1/EX1.13/Ex1_13.sce | 2990126e666ba6b2327b8e560b269bab8b1893f8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 394 | sce | Ex1_13.sce | clc,clear
//Example 1.13
//To find the horizontal distance from blimp to house
//consider the figure attached
angle_dep = 24 //angle of depression in degrees
theta = angle_dep //angle of elevation
height_blimp = 4280 //height of blimp from ground in feet
x = height_blimp / tand(theta) //required distance in feet
printf('The house is %.0f ft far from blimp along the ground',x)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.