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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
02c379d2b27bb3957bd1ae1f294d00eb0496ceff | 449d555969bfd7befe906877abab098c6e63a0e8 | /764/CH10/EX10.9.b/solution10_9.sce | 5b03a3b4174e7d82c6328cc7796e21c096337979 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,105 | sce | solution10_9.sce | //Function to round-up a value such that it is divisible by 5
function[v] = round_five(w)
v = ceil(w)
rem = pmodulo(v,5)
if (rem ~= 0) then
v = v + (5 - rem)
end
endfunction
//Obtain path of solution file
path = get_absolute_file_path('solution10_9.sce')
//Obtain path of data file
datapath = path + filesep() + 'data10_9.sci'
//Obtain path of function file
funcpath = path + filesep() + 'functions10_9.sci'
//Clear all
clc
//Execute the data file
exec(datapath)
exec(funcpath,[-1])
//Calculate the initial force in the spring P1 (N)
P1 = (%pi/4)*(dia^2)*(Pb)
//Calculate the deflection of the spring when the valve is open delta2 (mm)
delta2 = delta1 + l
//Calculate the force in the spring when the valve is open P2 (N)
P2 = (delta2/delta1)*P1
//Determine the maximum force in the spring P (N)
if (P2 > P1) then
P = P2
else
P = P1
end
//Calculate the permissible shear stress in the spring tau (N/mm2)
tau = (r/100)*Sut
//Calculate the Wahl Factor K
K = (((4 * C) - 1)/((4 * C) - 4)) + (0.615/C)
//Calculate the wire diameter d (mm)
d = sqrt(K * ((8 * P * C)/(%pi * tau)))
dround = ceil(d)
//Calculate the mean coil diameter D (mm)
D = C * dround
//Calculate the number of active turns N
N = (delta1 * G * (dround^4))/(8 * P1 * (D^3))
Nround = ceil(N)
//Calculate the total number of turns
Nt = active_coils(endtype, Nround)
//Calculate the solid length of the spring s (mm)
s = Nt * dround
//Calculate the maximum deflection of the spring deltamax (mm)
deltamax = (8 * P * (D^3) * Nround)/(G * (dround^4))
//Calculate the free length of the spring len (mm)
len = s + ((Nt - 1)*g) + deltamax
lround = round_five(len)
//Calculate the pitch of the coils p (mm)
p = lround/(Nt - 1)
//Print results
printf("\nWire diameter(d) = %f or %f mm\n",d,dround)
printf("\nMean coil diameter(D) = %f mm\n",D)
printf("\nNumber of active coils(N) = %f or %d\n",N, Nround)
printf("\nTotal number of coils(Nt) = %d\n",Nt)
printf("\nSolid length of the spring(s) = %f mm\n",s)
printf("\nFree length of the spring(len) = %f or %f mm\n",len,lround)
printf("\nPitch of the coil(p) = %f mm\n",p)
|
df207925efe782da6180305632412099b11b9b91 | 97135f725c599527ba0fd95a5289373c755daf3b | /Examples/test-suite/scilab/empty_c_runme.sci | c796ddb8470c1ba1d30c1058f5bbb5b932744c1b | [] | no_license | maqalaqil/swag-c- | b8880cfc92424d5bbca1fe15ed98663a41063f27 | 6fd1ba2bf1d353f24c116a3c89a8540292b86a7d | refs/heads/master | 2020-07-06T21:02:08.949652 | 2019-09-01T07:56:55 | 2019-09-01T07:56:55 | 203,137,066 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 60 | sci | empty_c_runme.sci | exec("alaqiltest.start", -1);
exec("alaqiltest.quit", -1);
|
7d14cc749a05a79ef7d17c16d7d73883f45bf24b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1052/CH13/EX13.2/132.sce | b8d524eb909608873a7d1690b5bdf1a40f323f5c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 323 | sce | 132.sce | clc;
//Example 13.2
//page no 137
printf(" Example 13.2 page no 137\n\n");
//refer to part a of example 1
//appplying Hagen-Poiseuille equation
meu=6.72e-4//viscosity of water
v=0.13//velocity of water
D=2.067/12//diameter of pipe
P_l=32*meu*v/(D^2)
printf("\n pressure drop per unit length P_l=%f psf/ft",P_l);
|
a5b33b8c17dc0b47b8bbc08cd568358a16b01170 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2150/CH6/EX6.10/ex6_10.sce | 6b468b56bd17c3e4e68efdcbbc7ebf1b70672cda | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 421 | sce | ex6_10.sce | // Exa 6.10
clc;
clear;
close;
// Given data
I_DSS = 4;// in mA
I_DSS= I_DSS*10^-3;// in A
V_P = -4;// in V
V_GG = -2;// in V
V_GS = V_GG;// in V
disp(V_GS,"The value of V_GS in V is");
I_D = I_DSS*(1-(V_GS/V_P))^2;// in A
disp(I_D*10^3,"The value of I_D in mA is");
V_DD = 10;// in V
R_D = 5;// in kohm
R_D = R_D * 10^3;// in ohm
V_DS = V_DD - (I_D*R_D);// in V
disp(V_DS,"The value of V_DS in V is");
|
a5b120add13e4d6121b8653c3dcaf96125b0cb2b | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.2/macros/scicos/do_setup.sci | d1a27fd64a7da19536eb30ed339ad36bd13ca0ae | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 1,352 | sci | do_setup.sci | function wpar=do_setup(wpar)
wd=wpar(1);w=wd(1);h=wd(2);
nm=wpar(2)
tolerances=wpar(3);
if tolerances==[]|tf==[]|sim_mode==[] then //super block
while %t do
[ok,nm,h,w]=getvalue('Set parameters',[
'Super block name';
'Window height';
'Window width'],list('str',1,'vec',1,'vec',1),[nm;string([h;w])])
if ~ok then break,end
if or([h,w]<=0) then
x_message('Parameter must all be positive')
else
drawtitle(wpar)
wpar(1)=[w h]
wpar(2)=nm
drawtitle(wpar)
break
end
end
else
tf=wpar(4)
sim_mode=wpar(5)
atol=tolerances(1);rtol=tolerances(2);ttol=tolerances(3)
while %t do
[ok,h,w,tf,atol,rtol,ttol,sim_mode]=getvalue('Set parameters',[
'Window height';
'Window width';
'Final integration time';
'Integrator absolute tolerance';
'Integrator relative tolerance';
'Tolerance on time'
'Simulation mode'],..
list('vec',1,'vec',1,'vec',1,'vec',1,'vec',1,'vec',1,'vec',1),..
[string([h;w;tf;atol;rtol;ttol;sim_mode])])
if ~ok then break,end
if or([h,w,tf,atol,rtol,ttol,sim_mode]<=0) then
x_message('Parameter must be positive')
elseif sim_mode<>1&sim_mode<>2 then
x_message('Simulation mode must be equal to 1 or 2')
else
wpar(1)=[w h]
wpar(3)=[atol;rtol;ttol]
wpar(4)=tf
wpar(5)=sim_mode
break
end
end
end
|
a6d5595539b91ef8de3704be7cc9d9eef500f2e4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1592/CH5/EX5.9.iii/Example_5_9_iii.sce | 0b532366b6de8a5c03435456785fcb297c120036 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 403 | sce | Example_5_9_iii.sce | //Scilab Code for Example 5.9(iii) of Signals and systems by
//P.Ramakrishna Rao
clc;
clear;
q=0;
a1=0.5
a2=-0.5;
n=1:101;
x1=a1^n;
x2=a2^n;
w=2;
n=0:100;
z=(exp(-%i*w*n));
for n=0:33;
X(n+1)=z(n+1)*x1(n+1)*cos(0.4*%pi*n);
q=X(n+1)+q;
end
disp(q,'Y3(e^2j) at a=0.5');
for n=0:33;
X(n+1)=z(n+1)*x2(n+1)*cos(0.4*%pi*n);
q=X(n+1)+q;
end
disp(q,'Y3(e^2j) at a=-0.5');
|
aa4cca71e15f1002b64bb1247ed6e87795eb899c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3888/CH15/EX15.2/Ex15_2.sce | c6e97c1726b91e115485f92d703aec03503d4b53 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,027 | sce | Ex15_2.sce | //Electric Power Generation, Transmission and Distribution by S.N.Singh
//Publisher:PHI Learning Private Limited
//Year: 2012 ; Edition - 2
//Example 15.2
//Scilab Version : 6.0.0 ; OS : Windows
clc;
clear;
r=1.5; //Conductor radius in cm
R=3; //Lead sheath radius in cm
V=33; //Operating voltage in kV
E_max=V/(r*log(R/r)); //Maximum value of electric stress in kV/cm
E_min=V/(R*log(R/r)); //Minimum value of electric stress in kV/cm
r1=R/2.718; //Optimum value of conductor radius in cm
E_max1=V/(r1*log(R/r1)); //Smallest value of Maximum stress in kV/cm
printf("\nMaximum and Minimum values of electrical stress is %.2f kV/cm and %.2f kV/cm",E_max,E_min);
printf("\nOptimal value of conductor radius is %.3f cm and the smallest value of the maximum stress is %.2f kV/cm",r1,E_max1);
|
d20d2aff0c6efe9b69539ada8ea62a17a512548d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2939/CH9/EX9.8/Ex9_8.sce | 7e795086c6f8e2fc617f8a2de40f1d2c1b8f102e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 324 | sce | Ex9_8.sce |
// Ex9_8
clc;
// Given:
a1=0.015;
a2=0.04;
// Solution: Defining the seperation factor f as approximately equal to (a2/a1) where a1, a2 are the relative abundances of the isotope of interest in the initial and final fractions, we have
f=(a2/a1);
printf("The single stage seperation factor is = %f",f)
|
91bb2e6bbad5030050a7061ffa0122f300d551d1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3768/CH7/EX7.1/Ex7_1.sce | 2e3d2e16b2f379a5e024a8d1ab3e3973154234a8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 558 | sce | Ex7_1.sce | //Example number 7.1, Page number 146
clc;clear;
close;
//Variable declaration
epsilonr=3.75; //relative dielectric constant
T=27; //temperature(C)
gama=1/3; //internal field constant
rho=2050; //density(kg/m**3)
Ma=32; //atomic weight(amu)
Na=6.022*10**23; //avagadro number
epsilon0=8.85*10**-12;
//Calculation
x=(epsilonr-1)/(epsilonr+2);
alpha_e=x*Ma*3*epsilon0/(rho*Na); //electronic polarisability(Fm**2)
//Result
printf("electronic polarisability is %.3e Fm^2",alpha_e)
//answer varies due to rounding off errors
|
02356a704063bc333ceadd0f02786cab4f3bad8d | 449d555969bfd7befe906877abab098c6e63a0e8 | /257/CH8/EX8.8/example_8_8.sce | dccb26a9b747382d219859e727d3121673b2b4ec | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 408 | sce | example_8_8.sce | s=%s
F=s^6+3*s^5+4*s^4+6*s^3+5*s^2+3*s+2
disp(routh_t(F))
r=coeff(F)
routh=routh_t(F)
n=length(r)
c=0;
for i=1:n
if (routh(i,1)<0)
c=c+1;
end
end
if(c>=1)
printf("system is unstable")
else printf("there are no roots on RHS")
end
disp("s^2 is")
R=roots(routh(3,:))
disp(R)
disp("as there are 2 pairs of repeated roots on the imaginary axis, the system is unstable")
|
c6ed93701d2a0cfa40eaebdcaac952f2aa973206 | 8bc8cad4ff08d4d9e353e7a5a1baa8b188b994f3 | /NpointDFT/nPointDFT.sce | 8d7c72bc6792b5ceb32a1fd38d4b0caa78d89d06 | [] | no_license | ROHITDH/scilabBasics | 259c74030901258dbe8d77c61eacd467fc58b9de | f29b20b645d0f8181a3abc14c0d03ff59b69bd40 | refs/heads/main | 2023-02-22T12:21:31.459103 | 2021-01-27T01:24:22 | 2021-01-27T01:24:22 | 333,165,290 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,386 | sce | nPointDFT.sce | //computation of N point dft
clear
clc
close
x = input("Enter sequence x(n): ")
N = input("Enter no.of points of DFT: ")
//dft by calculation
n = 0:N-1;
k = n;
WN = exp(-%i*(2*%pi)/N)
kn = k'*n
W = WN .^ kn
X = W * x'
disp("DFT (calculation): ",X)
/*X1 = x * exp(-%i*2*%pi.*k'*n/N)
disp("DFT (calculation): ",X1)*/
Xmag = abs(X)
Xphase = atan(imag(X),real(X))
disp("Magnitude Response of X(K): ",Xmag)
disp("Phase Response of X(K): ",Xphase)
figure(1)
subplot(211)
plot2d3(n,Xmag)
title("Magnitude Response (calculation)")
xlabel("---> samples (k)")
ylabel("Magnitude")
a1 = gca()
a1.x_location = 'origin'
a1.y_location = 'origin'
subplot(212)
plot2d3(n,Xphase)
title("Phase Response (calculation)")
xlabel("---> samples (k)")
ylabel("Phase")
a2 = gca()
a2.x_location = 'origin'
a2.y_location = 'origin'
///DFT by inbuilt command
X_ = fft(x)
disp("DFT (inbuilt command): ",X_)
X_mag = abs(X_)
X_phase = atan(imag(X_),real(X_))
disp("Magnitude Response of X(K): ",X_mag')
disp("Phase Response of X(K): ",X_phase')
figure(0)
subplot(211)
plot2d3(k,X_mag)
title("Magnitude Response (inbuilt fn)")
xlabel("---> samples (k)")
ylabel("Magnitude")
a3 = gca()
a3.x_location = 'origin'
a3.y_location = 'origin'
subplot(212)
plot2d3(k,X_phase)
title("Phase Response (inbuilt fn)")
xlabel("---> k")
ylabel("Phase")
a4 = gca()
a4.x_location = 'origin'
a4.y_location = 'origin'
|
cbfe8f00008813b29069411f43dc14bf0de1b432 | 449d555969bfd7befe906877abab098c6e63a0e8 | /896/CH2/EX2.19/19.sce | 74c02740489e319658a7e0626b4afd8287640cf5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 238 | sce | 19.sce | clc
//calc the height to which liq in a cylinder rises when rotated
f=78/60;//rps
r=0.15;//m
g=9.81;//m/s^2
//omega=2*(%pi)*f
z=[(2*(%pi)*f)^2]*r^2/2/g;//m
disp("The liquid in the cylinder rises to a height of")
disp(z)
disp("m") |
655814233e589b67463f3a0105989f60ab03e272 | 608ce453a5e6495299d7099c28b04d167ac50a76 | /Project1/PriorityEncoder83.tst | 39e2e0a3ac69b1636e416b4ac3a3303012c1dafc | [] | no_license | andreww-han/CSCE-312 | abad4364c0a6a9f406a8a409145ec94a6eb52b88 | c3d23e7f5a13df9413656bda76ec82ab8bdc3a1c | refs/heads/master | 2022-11-27T18:52:41.794118 | 2020-07-20T20:16:53 | 2020-07-20T20:16:53 | 281,214,854 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 426 | tst | PriorityEncoder83.tst | load PriorityEncoder83.hdl,
output-file PriorityEncoder83.out,
compare-to PriorityEncoder83.cmp,
output-list d%B1.8.1 o%B1.3.1;
set d %B00000001,
eval,
output;
set d %B00000010,
eval,
output;
set d %B00000100,
eval,
output;
set d %B00001000,
eval,
output;
set d %B00010000,
eval,
output;
set d %B00100000,
eval,
output;
set d %B01000000,
eval,
output;
set d %B10000000,
eval,
output; |
11180ba10db701a0dca4ac177307d44d02130e5b | 845c8ae1a329364b6568f3529318bf19080ab941 | /hdl/Decoder.tst | 545c1a324a7e648398cecbe6e27f133992127c41 | [
"Apache-2.0"
] | permissive | DChristianson/FPGA_lpu | 133a843e4b1df4f225aee01438930d7c42659d08 | 86f6cdc9b0aecfbdccd6ed23b73a5026776db18f | refs/heads/main | 2023-02-26T04:53:41.561411 | 2021-02-04T23:52:08 | 2021-02-04T23:52:08 | 336,049,181 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,007 | tst | Decoder.tst | load Decoder.hdl,
output-file Decoder.out,
compare-to Decoder.cmp,
output-list time%S1.4.1 in%D1.3.1 field%D1.3.1 row%D1.3.1 quote%D1.3.1 esc%D1.3.1 load%B1.1.1 reset%B1.1.1 out%D1.3.1 c%B1.1.1 f%B1.1.1 r%B1.1.1;
set field 44,
set row 10,
set quote 34,
set esc 92,
set load 1,
set in 97,
tick,
eval,
output;
tock;
set in 98,
tick,
eval,
output;
tock;
set in 99,
tick,
eval,
output;
tock;
set in 100,
tick,
eval,
output;
tock;
set in 44,
tick,
eval,
output;
tock;
set in 101,
tick,
eval,
output;
tock;
set in 102,
tick,
eval,
output;
tock;
set in 103,
tick,
eval,
output;
tock;
set in 104,
tick,
eval,
output;
tock;
set in 44,
tick,
eval,
output;
tock;
set in 120,
tick,
eval,
output;
tock;
set in 121,
tick,
eval,
output;
tock;
set in 122,
tick,
eval,
output;
tock;
set in 10,
tick,
eval,
output;
tock;
set in 104,
tick,
eval,
output;
tock;
set in 105,
tick,
eval,
output;
tock;
set in 106,
tick,
eval,
output;
tock;
set in 44,
tick,
eval,
output;
tock;
set in 112,
tick,
eval,
output;
tock;
set in 100,
tick,
eval,
output;
tock;
set in 113,
tick,
eval,
output;
tock;
set in 44,
tick,
eval,
output;
tock;
set in 34,
tick,
eval,
output;
tock;
set in 102,
tick,
eval,
output;
tock;
set in 111,
tick,
eval,
output;
tock;
set in 111,
tick,
eval,
output;
tock;
set in 44,
tick,
eval,
output;
tock;
set in 92,
tick,
eval,
output;
tock;
set in 34,
tick,
eval,
output;
tock;
set in 98,
tick,
eval,
output;
tock;
set in 97,
tick,
eval,
output;
tock;
set in 114,
tick,
eval,
output;
tock;
set in 92,
tick,
eval,
output;
tock;
set in 34,
tick,
eval,
output;
tock;
set in 44,
tick,
eval,
output;
tock;
set in 98,
tick,
eval,
output;
tock;
set in 97,
tick,
eval,
output;
tock;
set in 122,
tick,
eval,
output;
tock;
set in 34,
tick,
eval,
output;
tock;
set in 44,
tick,
eval,
output;
tock;
set in 116,
tick,
eval,
output;
tock;
set in 97,
tick,
eval,
output;
tock;
set in 98,
tick,
eval,
output;
tock;
set in 92,
tick,
eval,
output;
tock;
set in 9,
tick,
eval,
output;
tock;
|
5541563ab315bab4f49d00266ecfebf981ef32c8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3311/CH14/EX14.4/Ex14_4.sce | 72a878a27616bcec0f5779d26b9465797c33982e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,717 | sce | Ex14_4.sce | // chapter 14
// example 14.4
// fig. 14.13
// Determine motor torque, speed of the motor, supply power factor, firing angle and power fed back to the supply
// page-865-866
clear;
clc;
// given
HP=10; // in HP (power of motor)
E=210; // in V
N=1000; // in rpm (speed)
Ia=30; // in A (armature current)
Ra=0.25; // in ohm (armature resistance)
Es=230; // in V (supply voltage)
Ka_phi=0.172; // in V/rpm (motor voltage constant)
alpha=45; // in degree
// calculate
Em=Es*sqrt(2); // calculation of peak voltage
// part- (a)
Ka_phi_rad=Ka_phi*(60/(2*%pi)); // changing unit from V/rpm to V/rad/s
T=Ka_phi_rad*Ia; // calculation of motor torque
Ea=(2*Em/%pi)*cosd(alpha); // calculation of armature voltage
Eb=Ea-Ia*Ra; // calculation of back emf
N=Eb/Ka_phi; // calculation of speed
EI=Es*Ia; // calculation of volt-ampere rating
Ps=Ea*Ia; // calculation of supplied power
Pf=Ps/EI; // calculation of power factor
printf("\nThe motor torque is \t\t T=%.1f Nm",T);
printf("\nThe speed of the motor is \t N=%.2f rpm",N);
printf("\nThe supply power factor is \t Pf=%.2f",Pf);
// part (b)
Ea2=-Eb+Ia*Ra; // calculation of back emf when in regenerative action Here minus sign indicates regenerative action
// since Ea=(2*Em/%pi)*cosd(alpha), therefore we get
alpha2=acosd(Ea2*(%pi/(2*Em))); // calculation of corresponding firing angle
Pg=Eb*Ia; // calculation of power from dc machine
Pr=Ia^2*Ra; // calculation of power lost in armature resistance
Ps=Pg-Pr; // calculation of supplied power
printf("\n\nThe firing angle to keep the motor current at its rated value is \t alpha2=%.2f degree",alpha2);
printf("\nThe fpower fed back from the supply is \t Ps=%.1f W",Ps);
// Note :The answers vary due to precise calculations |
a9f65aa88c666e93cfd8051b9e3e478e2820862a | 449d555969bfd7befe906877abab098c6e63a0e8 | /53/CH5/EX5.4/example_4.sce | 8cac04b61fe97dd6bf43774e16c170c6c4752c23 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,365 | sce | example_4.sce |
//example5.4
//Shunt circuit feedback configuration//given
R1=10000;//in ohms
R2=2000;//in ohms
Rc1=5000;//in ohms
hie=1000;//in ohms
hfe=100;
//unloaded feedback fraction B1
B1=R2/(R1+R2);
disp('open loop forward current amplification A1=io/i');
iia=1;//let
disp('ib=input-current coupling factor*iia');
disp('ib=(R1+R2)*iia/(R1+R2+hie)');
ib=(R1+R2)*iia/(R1+R2+hie);
disp('V2=(-hfe)*(Rc1||ri2)*ib');
disp('ri2=hie+(1+hfe)*(R1||R2)');
ri2=hie+(1+hfe)*(R1*R2/(R1+R2));
V2=(-hfe)*(Rc1*ri2/(Rc1+ri2))*ib;
disp('io/V2=C=-hfe/(hie+(1+hfe)*(R1||R2))');
C=-hfe/(hie+(1+hfe)*(R1*R2/(R1+R2)));
disp('Open loop current gain=A1=io/i=(ib/i)*(V2/ib)*(io/V2)');
A1=(ib/iia)*(V2/ib)*(C);
disp('Open-loop input resistance, ri=(R1+R2)||hie');
ri=(R1+R2)*hie/(R1+R2+hie);
disp('Open-loop output resistance ro as seen by the load resistance Rc2 is infinitely large since the load is in series with the infinitely large collector resistance of the transistor.');
disp('Closed-loop current gain,A1f=A1/(1+A1*B1)');
A1f=A1/(1+A1*B1);
disp(A1f);
disp('Closed-loop input resistance,rif=ri/(1+A1*B1)');
rif=ri/(1+A1*B1);
disp(rif);
disp('Closed-loop output resistance,rof=ro(1+A1*B1), since ro is infinitely large,the rof is also large infinitely..');
printf(" RESULTS:\n\n");
printf(" A1f=%1.2f,\n\n",A1f);
printf(" rif=%2.1f ohms,\n\n",rif);//approximately
printf(" rof=infinite\n\n"); |
625d873a27b1b2494c3e31b6fb66fa6df76ed2c4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /851/CH2/EX2.6/Example2_6.sce | 70a69f628c513fd2b41ebcfdb11b887ad478728a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 523 | sce | Example2_6.sce | //clear//
//Caption:Channel Capacity of a Binary Symmetric Channel
//Example2.6:Channel Capacity of Binary Symmetri Channel
clear;
close;
clc;
p = 0:0.01:0.5;
for i =1:length(p)
if(i~=1)
C(i) = 1+p(i)*log2(p(i))+(1-p(i))*log2((1-p(i)));
elseif(i==1)
C(i) =1;
elseif(i==length(p))
C(i)=0;
end
end
plot2d(p,C,5)
xlabel('Transition Probility, p')
ylabel('Channel Capacity, C')
title('Figure 2.10 Variation of channel capacity of a binary symmetric channel with transition probility p')
|
da01bb87199eaaf4260af7684bd46d443b4bf4b8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1994/CH4/EX4.2/Example4_2.sce | a9a17b2e2af0fc23c73e35bc97227e5e693617c5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 411 | sce | Example4_2.sce | //Chapter-4,Example4_2,pg 4-24
E1rms=10
E2rms=15
E1m=E1rms*sqrt(2)
E2m=E2rms*sqrt(2)
//voltage across AB is proportional to E1+E2 in positive half cycle
Ep=(1/(2*%pi))*(2*E1m+E2m)//output in positive half cycle
//voltage across AB is proportional to E1-E2 in negative half cycle
En=(1/(2*%pi))*(2*E1m-E2m)//output in negative half cycle
Eab=Ep-En
printf("output voltage\n")
printf("Eab=%.2f V",Eab)
|
75bc7f4523046b0842c6616152d3294c894f7bcc | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/rootmusic/rootmusic4.sce | 398a8b40a98f3a0daeb0ccd27f2df951318d1d04 | [] | no_license | deecube/fosseetesting | ce66f691121021fa2f3474497397cded9d57658c | e353f1c03b0c0ef43abf44873e5e477b6adb6c7e | refs/heads/master | 2021-01-20T11:34:43.535019 | 2016-09-27T05:12:48 | 2016-09-27T05:12:48 | 59,456,386 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 381 | sce | rootmusic4.sce | //sampling frequency is passed as an i/p arg
R=[6.1117 + 0.0000*%i 3.8205 - 3.9887*%i -0.2138 - 5.5126*%i
3.8205 + 3.9887*%i 6.0796 + 0.0000*%i 3.8205 - 3.9887*%i
-0.2138 + 5.5126*%i 3.8205 + 3.9887*%i 6.1117 + 0.0000*%i];
Fs=200;
[F, POW]= rootmusic(R,2,Fs);
disp(F);
disp(POW);
//output
// 63.273966
// 25.713115
//
// 0.0233417
// 97.850188
|
60b17331305e4749696ea4c698d563ddefc6d58c | 449d555969bfd7befe906877abab098c6e63a0e8 | /260/CH9/EX9.2/9_2.sce | 958135b3af4fc21d2bb0a3f5a938d296bec73055 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 154 | sce | 9_2.sce | //Eg-9.2
//pg-387
clear
clc
//zeros of T3(x)
n=3;
for i=1:3
lambda(i)=cosd((2*i-1)*180/(2*n));
end
disp("zeros of T3(x)")
disp(lambda) |
7a196582cb0d5f2a264e49c16160d78190da23be | 449d555969bfd7befe906877abab098c6e63a0e8 | /3717/CH12/EX12.6/Ex12_6.sce | 9d1f23a6faea2bcf8f5e398c377445ca63b14e77 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 345 | sce | Ex12_6.sce | // Ex12_6 Page:248 (2014)
clc; clear;
e = 1.6e-019; // Charge on an electron, C
n = 5e+028; // Number of atoms per unit volume of Cu, per metre-cube
R_H = -1/(n*e); // Hall coefficient, metre-cube/C
printf("\nThe Hall coefficient for Cu = %4.2e metre-cube/C", R_H);
// Result
// The Hall coefficient for Cu = -1.25e-10 metre-cube/C
|
675f973d9380efae2cdc61b1bb132312fe003ca6 | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/D06.prev.tst | 8f26d3814b4106daf6604760cdff0f49360273cc | [
"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 | 2,146 | tst | D06.prev.tst | #0 true: 0 1 2
#1 true: 0 1 3
#2 true: 0 2 3
#3 true: 1 2 3
#4 true: 0 1 4
#5 true: 0 2 4
#6 true: 1 2 4
#7 true: 0 3 4
#8 true: 1 3 4
#9 true: 2 3 4
#10 true: 0 1 5
#11 true: 0 2 5
#12 true: 1 2 5
#13 true: 0 3 5
#14 true: 1 3 5
#15 true: 2 3 5
#16 true: 0 4 5
#17 true: 1 4 5
#18 true: 2 4 5
#19 true: 3 4 5
#20 true: 0 1 6
#21 true: 0 2 6
#22 true: 1 2 6
#23 true: 0 3 6
#24 true: 1 3 6
#25 true: 2 3 6
#26 true: 0 4 6
#27 true: 1 4 6
#28 true: 2 4 6
#29 true: 3 4 6
#30 true: 0 5 6
#31 true: 1 5 6
#32 true: 2 5 6
#33 true: 3 5 6
#34 true: 4 5 6
#35 true: 0 1 7
#36 true: 0 2 7
#37 true: 1 2 7
#38 true: 0 3 7
#39 true: 1 3 7
#40 true: 2 3 7
#41 true: 0 4 7
#42 true: 1 4 7
#43 true: 2 4 7
#44 true: 3 4 7
#45 true: 0 5 7
#46 true: 1 5 7
#47 true: 2 5 7
#48 true: 3 5 7
#49 true: 4 5 7
#50 true: 0 6 7
#51 true: 1 6 7
#52 true: 2 6 7
#53 true: 3 6 7
#54 true: 4 6 7
#55 true: 5 6 7
#56 false: 0 1 8
#57 false: 0 2 8
#58 false: 1 2 8
#59 false: 0 3 8
#60 false: 1 3 8
#61 false: 2 3 8
#62 false: 0 4 8
#63 false: 1 4 8
#64 false: 2 4 8
#65 false: 3 4 8
#66 false: 0 5 8
#67 false: 1 5 8
#68 false: 2 5 8
#69 false: 3 5 8
#70 false: 4 5 8
#71 false: 0 6 8
#72 false: 1 6 8
#73 false: 2 6 8
#74 false: 3 6 8
#75 false: 4 6 8
#76 false: 5 6 8
#77 false: 0 7 8
#78 false: 1 7 8
#79 false: 2 7 8
#80 false: 3 7 8
#81 false: 4 7 8
#82 false: 5 7 8
#83 false: 6 7 8
#84 false: 0 1 9
#85 false: 0 2 9
#86 false: 1 2 9
#87 false: 0 3 9
#88 false: 1 3 9
#89 false: 2 3 9
#90 false: 0 4 9
#91 false: 1 4 9
#92 false: 2 4 9
#93 false: 3 4 9
#94 false: 0 5 9
#95 false: 1 5 9
#96 false: 2 5 9
#97 false: 3 5 9
#98 false: 4 5 9
#99 false: 0 6 9
#100 false: 1 6 9
#101 false: 2 6 9
#102 false: 3 6 9
#103 false: 4 6 9
#104 false: 5 6 9
#105 false: 0 7 9
#106 false: 1 7 9
#107 false: 2 7 9
#108 false: 3 7 9
#109 false: 4 7 9
#110 false: 5 7 9
#111 false: 6 7 9
#112 false: 0 8 9
#113 false: 1 8 9
#114 false: 2 8 9
#115 false: 3 8 9
#116 false: 4 8 9
#117 false: 5 8 9
#118 false: 6 8 9
#119 false: 7 8 9
#120 false: 0 1 10
#121 false: 0 2 10
#122 false: 1 2 10
#123 false: 0 3 10
#124 false: 1 3 10
#125 false: 2 3 10
#126 false: 0 4 10
#127 false: 1 4 10
|
57c4a56ab4a0ced6ef22ae0d8ff7918d3b28095b | 449d555969bfd7befe906877abab098c6e63a0e8 | /650/CH2/EX2.9/9.sce | 797a089cfc9531def08de1655ac1985280248d22 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 219 | sce | 9.sce | clc
N=60; //rpm
r2=0.25; //m
g=9.8; //m/s^2
w=2*%pi*N/60;
dz_12=(w*r2)^2/2/g; // dz_12=z2-z1
c=w*r2^2;
dz_23=c^2/2/g/r2^2;// dz_23=z3-z2
dz_13=dz_23+dz_12;
disp("Total depression =")
disp(dz_13)
disp("m") |
52fb0411724a570c1294f426a4dca6d76c3a5f52 | 97c8abd041ed2f70a83ad14ac8caa7999be2819f | /scilab/Newton.sce | f603442076f07ce93c6c6bd3cad21d44b80c515a | [] | no_license | thelittlewitch1/labs-numerical-methods | 931612cd860e6a41a5dc74dd269179e656f4ecb2 | 1eac7090fda2d8cebda4aa4482f6323e88d04ca7 | refs/heads/main | 2023-05-18T11:18:36.619697 | 2021-06-13T21:03:54 | 2021-06-13T21:03:54 | 331,098,962 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 738 | sce | Newton.sce | res = mopen ('E:\SciLabProg\ЧМ\Newton.csv', 'wt');
eps = 10^-9; i = 0;
x1 = 0; x2 = 0;
y1 = 1; y2 = 0;
f1 = x1*x1 - x2 + 1; f2 = x1 - cos(%pi*x2/2);
mfprintf (res, 'I, X1, X2, F1, F2\n');
mfprintf (res, '%d, %f, %f, %f, %f\n', i, y1, y2, f1, f2);
while ( sqrt( (y1 - x1)^2 + (y2 - x2)^2 ) >= eps )
x1 = y1; x2 = y2;
i = i + 1;
h = ( x2 - 1 + x1^2 - 2*x1*cos(%pi*x2/2) )/( -%pi*x1*sin(%pi*x2/2) - 1 );
g = - x1 + cos(%pi*x2/2) - %pi*sin(%pi*x2/2)*h/2;
y1 = x1 + g;
y2 = x2 + h;
f1 = y1^2 - y2 + 1;
f2 = y1 - cos(%pi*y2/2);
mfprintf (res, '%d, %f, %f, %f, %f\n', i, y1, y2, f1, f2);
end
disp ('x1:', x1); disp ('x2:', x2);
disp ('f1:', f1); disp ('f2:', f2);
mclose (res);
|
242c2f380316b7f65c2494690d2c9b594d1d73ea | 449d555969bfd7befe906877abab098c6e63a0e8 | /2681/CH6/EX6.4/Ex6_4.sce | c86227fbec36d731e2db2fdd29ec77a81d8bffd1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 320 | sce | Ex6_4.sce | //input of lossless transmission line
//given
clc
Zo=50//ohms
Zl=%inf//defined as infinity
Bl=2*%pi*0.1
Zi=(Zo*(1+%i*(Zo/Zl)*tan(Bl))/(Zo/Zl+%i*tan(Bl)))//taking Zl common from numerrator and denominator
Zi=round(Zi*100)/100///rounding off decimals
disp(Zi,'the input of 50ohm lossless transmission line')//ohm
|
6eb5af4dda1a23c06bd1ba76019d9e494bc3997b | 449d555969bfd7befe906877abab098c6e63a0e8 | /24/CH43/EX43.7/Example43_7.sce | 72b953464c125773798cac44eef5af76c1fc7ffd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 327 | sce | Example43_7.sce | //Given that
M_P = 31.97391 //in u
M_S = 31.97207 //in u
uCsqure = 931.5 //in Mev
//Sample Problem 43-7
txt = mopen('Example43_7_result.txt','wt')
mfprintf(txt, '**Sample Problem 43-7**\n')
Q = -(M_S - M_P)*uCsqure
mfprintf(txt, 'The disintegration energy for the beta decay of Phosphorus is %fMev', Q)
mclose(txt) |
cdfe7e589d8a2fcf9e1fff3496339579f45b96df | 0ade4f8a7ec375e54db514312b562334ab304d3e | /data/benchmark/Korns_07.tst | 3292c2f8b45930c1f9e9cdbe4180c4c029c6dfd7 | [] | no_license | zeta1999/go-pge | 39ac86612d4a90c1e53d2c45c1177e98b3bcf4e4 | 99a4b600185145bcc047e8e42cecfd2346b6b16d | refs/heads/master | 2021-01-01T11:10:20.053388 | 2014-01-16T16:06:50 | 2014-01-16T16:06:50 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 126,800 | tst | Korns_07.tst | x y z v w
f(xs)
47.127080 -38.407228 22.920481 -39.958377 -36.057411 213.809409
16.377472 -17.812111 45.417505 -7.058139 -29.702611 213.782011
29.358169 -42.581853 -21.878549 -7.074223 3.901738 213.809386
40.472785 23.503588 -11.465032 -14.023946 -6.736256 213.809409
-3.151979 44.754591 -2.685223 9.000452 -23.551852 -986.057666
-11.029679 -8.603482 -7.892819 30.231805 38.541004 -89191.795118
28.402418 -4.611746 -25.496764 40.325566 -10.800635 213.809371
1.036565 3.374294 25.345214 15.940913 -39.504729 92.561409
12.949759 32.846769 43.183338 36.819294 -9.506426 213.630613
19.141689 -9.635257 -19.406490 32.646458 0.502320 213.803373
12.464676 17.055980 -46.187113 -34.104598 4.264145 213.576254
30.744051 41.344591 0.089412 -21.822476 -31.667651 213.809398
-7.740350 -43.282979 -44.799726 -28.265335 -40.464807 -14564.190093
36.776477 -45.924016 35.361049 7.169708 -22.876897 213.809409
17.990955 -49.208967 -37.834791 1.676982 -43.742759 213.798078
5.444865 -22.186784 -23.728052 1.696913 37.449337 202.945449
43.643536 -5.377941 -24.598626 -48.653044 5.172499 213.809409
49.098199 -44.872137 11.114057 7.639626 -7.998557 213.809409
-0.649492 29.281263 -27.653294 -38.702138 -47.803040 -91.251493
36.719283 -39.055486 -25.375551 30.896753 48.895230 213.809408
4.238624 -13.636884 34.315169 -4.363983 -13.972767 192.787792
5.792305 -40.292355 1.680552 -4.810043 -23.453599 204.826547
3.398687 17.473134 -18.590063 -8.200681 -16.783816 180.521432
19.973593 0.999885 40.777561 13.104892 -40.210967 213.805580
33.629347 -2.233636 1.517915 -34.557556 41.683106 213.809407
22.482358 -34.800619 -44.041941 -41.679675 -7.627998 213.808439
1.925323 1.730798 -39.625579 -3.028498 10.808703 139.258949
2.929483 -2.896886 -20.626927 -44.150830 -24.797387 170.776625
44.728170 45.917793 -15.703288 -14.840947 13.952307 213.809409
26.050498 4.860117 39.807534 -9.827641 22.686748 213.809271
22.172309 -8.994687 -3.457680 -14.759673 49.395438 213.808259
47.509167 -40.298435 30.500538 14.337841 -49.943651 213.809409
33.777509 15.344042 24.133821 -16.135111 32.715254 213.809407
1.653215 28.489444 -26.084502 24.048196 -30.945970 127.288679
7.984038 -38.395496 25.954315 4.158380 -19.400911 211.102195
42.309025 -49.803832 41.797343 -44.743162 -19.587382 213.809409
33.827718 -31.859387 46.327736 14.763776 -35.884465 213.809407
25.721026 -48.768793 0.866972 23.376398 6.696372 213.809244
5.357963 23.771784 8.400412 0.131708 -8.235545 202.416320
16.104069 18.678953 33.136933 -48.816418 26.336584 213.777589
34.504255 4.056175 -27.311100 3.222395 -38.528929 213.809408
22.994181 -23.210646 14.426342 -9.261602 -25.856401 213.808676
13.617159 33.514087 -47.103671 1.205234 -21.366487 213.685317
24.892886 15.280281 -26.160289 -32.337740 -12.180790 213.809150
3.085064 -10.644235 -27.710415 7.899940 -0.163324 174.288791
3.723728 22.502837 38.714023 34.828440 44.247959 185.945804
17.680087 3.300057 -17.374097 -8.244144 -21.737090 213.795977
2.039415 32.920972 6.286775 29.857225 14.387984 143.771202
33.221848 0.158025 -44.537638 1.524747 0.671238 213.809406
3.651583 29.859654 16.427532 -28.464756 44.936407 184.823731
24.489865 -31.615231 39.720626 -39.700159 41.004641 213.809086
6.644346 -6.140024 44.621932 -22.073111 -19.027338 208.174114
47.018331 -23.608792 -49.102639 35.863736 24.322224 213.809409
4.476240 -7.458926 32.577313 10.555302 37.653192 195.351022
28.431281 23.048683 -13.142865 -11.645287 -5.736432 213.809371
11.164830 8.230531 9.362933 15.284477 36.683456 213.334546
35.996302 -41.756873 42.170902 -16.943482 14.479283 213.809408
42.072037 48.781702 -5.280511 -44.852294 -28.179670 213.809409
36.394421 45.657311 14.035152 44.791499 2.857452 213.809408
20.324579 6.870291 20.192524 23.124342 11.798529 213.806249
42.112744 42.983222 -46.362624 -17.682565 43.301038 213.809409
40.495914 14.993269 9.579964 23.563587 -47.962295 213.809409
-9.536211 -7.954920 4.727405 -18.182550 42.861139 -39270.450658
21.911248 -31.313321 -1.930568 32.383915 28.213429 213.808083
12.638630 -28.725034 40.459520 9.345568 -45.515735 213.597425
19.851846 -36.876137 -2.239655 12.780692 -38.074166 213.805316
-7.584251 42.783032 14.061860 7.869926 -31.518733 -13354.220202
10.629701 -10.206148 -42.948386 36.307304 0.318921 213.172982
-2.373919 -10.580516 -35.749803 -26.779123 -32.125384 -570.012877
49.564571 -47.256479 -27.575713 4.128960 12.864439 213.809409
32.571070 30.282993 5.765162 -16.045273 29.358129 213.809405
21.981308 12.621384 6.235129 -23.096724 -29.927612 213.808133
21.534908 -12.071885 -8.587310 -49.318430 29.614878 213.807780
13.853125 -11.809815 -4.200869 47.963501 34.558202 213.700350
-9.956367 14.337599 -29.056483 -5.002950 49.372404 -49477.352514
27.230693 -4.875931 15.558145 -39.292646 21.596533 213.809337
26.502478 -37.313126 -3.552951 -24.541080 -20.355852 213.809301
31.481157 -37.806020 38.166306 9.001754 -12.241176 213.809402
11.615125 -32.889041 21.868461 29.742723 21.014221 213.438258
6.421149 48.176415 47.501359 -33.307856 -0.526320 207.442007
15.630760 23.519784 -22.935077 33.231368 -47.484134 213.768182
0.286709 -4.988881 -12.443935 -19.877276 29.845965 31.046942
0.870948 8.572700 44.679132 21.035306 -38.364462 81.059154
-4.177895 -44.893028 -9.882392 37.725474 -15.077380 -1889.748808
33.345755 -39.397647 12.273089 29.518377 26.177394 213.809406
-3.725831 49.508711 5.532507 34.150143 38.081923 -1428.730754
3.964752 -23.361013 34.720744 48.917755 -45.832832 189.388887
-9.580317 -46.179055 15.945205 -27.870209 -24.796103 -40235.054265
44.631083 29.004715 6.796601 -17.580813 29.682785 213.809409
14.462815 27.972895 39.641559 45.048102 -28.033165 213.731289
-3.340663 -39.923753 23.338825 -30.121881 -7.111994 -1116.572127
30.046193 -0.500794 -23.140311 -36.060136 40.295820 213.809393
37.716655 -23.642690 30.211774 -39.562080 -14.968421 213.809409
15.069772 -8.814729 -45.527908 43.888709 -1.972920 213.753367
43.321687 -30.864051 -36.594742 19.045820 5.415020 213.809409
14.116706 40.291104 0.024504 -21.779191 12.043418 213.714999
25.258334 -30.451378 37.817598 1.101704 -30.926008 213.809197
16.454154 -35.317101 -41.403193 40.470405 31.018360 213.783137
5.140750 -7.815983 43.935611 -26.421696 49.600277 200.978286
-0.965373 4.624719 -10.878287 5.456994 8.195016 -148.817095
33.925241 -18.272866 -39.226821 26.576259 4.599904 213.809407
2.491748 -27.255941 -1.193849 0.084986 -27.540956 159.128911
40.481985 13.516920 -40.345178 49.001746 -44.409865 213.809409
42.950302 39.327094 -32.499608 1.938746 -7.860863 213.809409
-1.149067 -30.476513 -29.707486 48.625966 -19.802955 -187.164948
27.355089 -16.990090 -48.496037 -2.669065 4.261436 213.809341
14.085487 26.326729 -18.716548 -26.287894 22.995804 213.713372
-2.738139 -24.115818 24.343048 9.770918 22.486897 -742.897925
30.958184 11.915808 10.608700 44.903750 4.145133 213.809400
11.115876 -32.316202 21.544713 -31.763994 41.666389 213.321652
19.617959 -5.611715 -11.711931 -29.139075 -5.992463 213.804758
40.828789 -47.416625 19.619576 7.426609 31.061287 213.809409
44.275988 -31.675437 -22.768356 -46.470134 -6.898148 213.809409
-8.847292 47.369765 -25.884073 -48.513632 -43.069910 -26869.007141
17.128787 48.466375 -12.961370 -7.286910 -8.123678 213.791247
-3.673732 -13.156915 46.675607 -46.627612 12.970113 -1382.562280
19.721401 -23.828012 -43.528910 -49.284488 -17.234853 213.805014
17.598088 -11.916537 -45.747537 17.795204 27.774574 213.795361
3.114585 44.519681 5.339020 -39.533797 44.740257 174.922115
40.345725 -41.501387 -20.861086 -24.149970 -14.982839 213.809409
21.305197 -31.117505 -40.861252 -13.380456 29.005127 213.807561
-1.625200 34.025462 36.754079 30.646916 -7.556596 -306.516556
36.979189 -27.242198 -30.999383 -39.184914 -17.668960 213.809409
19.594588 13.177041 37.203824 -33.387821 -29.854739 213.804698
10.121554 -8.858357 -15.330056 -48.935486 38.342134 212.968951
39.994677 31.021408 -25.934006 23.525520 -18.095357 213.809409
21.704339 9.047199 43.761208 37.983921 21.371530 213.807924
19.877607 28.954760 -2.683137 -0.485483 -38.996060 213.805374
12.943205 9.269635 29.332336 39.904495 35.698344 213.629970
-5.135100 19.539219 -20.692569 -12.790688 23.450047 -3337.970514
18.485095 -25.946027 -3.328060 1.273450 17.463548 213.800763
3.953857 21.905316 -41.146535 36.139296 -22.447928 189.242841
34.675775 47.416923 2.974072 -12.829324 -19.096173 213.809408
10.546283 5.165495 -8.471633 -44.278776 39.716011 213.143256
43.416856 10.424496 -27.690211 20.338310 -13.352714 213.809409
13.100902 -33.426755 -5.092947 -28.106689 -14.218589 213.644806
5.385786 46.851452 40.594138 -46.916720 16.485990 202.588474
48.133241 1.513507 -38.833264 -28.605789 27.044844 213.809409
5.725142 -3.833330 18.362805 24.587176 43.896902 204.490249
-11.199340 36.845253 -39.948911 32.741821 42.148630 -97890.225674
44.683917 39.797958 8.241197 26.000154 36.850687 213.809409
-8.900967 22.084112 -30.063683 20.785732 -36.342405 -27676.304331
42.050253 30.353659 32.180718 42.873544 24.579495 213.809409
46.522852 27.498997 2.596195 -17.795897 9.737254 213.809409
46.895470 -3.122220 -22.393624 24.032974 -43.595340 213.809409
4.147240 49.333069 11.541878 -2.460673 37.129260 191.709801
45.730158 -11.257217 18.439035 29.322766 36.632681 213.809409
46.040384 30.471914 21.259352 -8.333196 -11.605936 213.809409
46.016512 -48.738064 46.620550 17.897815 -26.326653 213.809409
49.113554 -40.648587 14.212257 -37.390793 25.639527 213.809409
26.881612 20.638262 -1.629263 -17.263295 43.981007 213.809322
30.630521 -41.145155 37.699703 20.813909 24.415002 213.809398
43.288891 -25.298533 -17.030121 11.491931 -42.810487 213.809409
36.375340 -4.942297 14.411933 2.195745 -0.029332 213.809408
1.419804 40.497870 19.319084 30.991199 24.413045 115.500448
15.180263 -35.915018 34.608076 -11.905551 -19.216798 213.756655
-6.055887 -33.586474 -38.049164 3.734658 -8.557366 -5664.904301
20.184487 8.624493 25.883091 45.906179 15.102175 213.805997
32.898508 -44.595197 12.772869 -37.110390 13.519291 213.809406
37.649917 -13.988999 14.693216 39.013556 42.360017 213.809409
30.409135 6.283304 -49.203095 -5.571068 -32.596001 213.809396
44.269487 17.758235 9.337836 -5.470640 -36.208663 213.809409
-4.539002 5.255427 -16.082298 18.636755 30.502123 -2349.353420
49.323870 17.157657 -1.243068 -23.639078 -29.681368 213.809409
-8.768228 18.134564 -14.300566 -10.699506 -13.461364 -25722.212779
43.703796 35.668238 1.582524 18.335794 22.154867 213.809409
29.448541 -28.504214 -19.914963 -11.555924 -27.037422 213.809387
48.414648 -25.701927 12.728099 39.436313 46.153668 213.809409
48.295521 49.707574 0.411231 -20.139625 12.286686 213.809409
37.742996 25.994115 -20.463408 6.353276 40.123523 213.809409
3.306765 -22.336427 -13.342151 1.097943 12.036350 178.804116
45.711020 0.994079 -48.526673 32.459984 -0.201201 213.809409
39.610580 -2.453764 35.098933 40.395855 0.287151 213.809409
36.344032 -2.796058 -14.298380 10.622521 42.376626 213.809408
-5.669213 8.118076 12.576415 -12.137682 -34.299543 -4543.753421
29.951169 29.114596 -11.335018 -39.361888 -15.687645 213.809393
21.234218 49.505292 -43.000886 3.797396 7.487792 213.807488
16.725896 1.829790 -25.872921 33.995235 -3.346730 213.786767
-8.122528 -4.480402 25.693306 -35.420732 -31.577507 -18001.845218
-4.157617 15.699363 -42.796868 14.250031 45.712644 -1866.535668
-1.876953 -30.477991 6.250640 -9.571331 -31.240016 -383.373696
42.120277 35.674340 -8.743040 3.081823 29.491205 213.809409
45.901929 -20.873171 -0.690259 25.815584 6.053666 213.809409
-7.483889 47.516286 9.527232 -48.601048 -2.727294 -12629.129266
31.701477 -37.781146 38.230078 3.189520 -2.002175 213.809403
2.316296 -31.662616 30.027602 -21.042299 41.721318 153.618535
47.988971 26.513983 -7.107791 -14.811049 38.004294 213.809409
-8.119275 -49.843759 38.540648 24.251377 44.754189 -17969.448175
-0.142896 -10.333205 -28.982129 24.264434 10.753264 -17.390519
10.706415 -3.468670 -7.958034 -22.942450 -34.671059 213.199147
23.510568 -10.846377 -32.900546 -42.649755 -7.110557 213.808856
29.787577 -42.139773 -24.119329 38.262889 37.173478 213.809391
22.691472 -6.038688 38.817420 -43.584759 -19.641229 213.808544
-6.321705 23.680752 -31.783241 -49.729074 -37.527846 -6585.380847
3.054242 -42.945445 11.133941 -6.422941 -37.876547 173.616547
8.302873 23.399067 -14.263681 44.390578 -34.670732 211.535634
43.122922 27.914592 35.653643 -30.642165 -12.876855 213.809409
47.370668 -19.560911 13.665215 -14.754823 -35.931715 213.809409
31.443821 36.872336 -45.616811 -32.972712 36.758852 213.809402
20.152922 26.860399 33.385925 -41.361962 -7.540749 213.805938
0.529882 38.782017 -9.376323 -9.534487 -48.172400 53.819006
-0.178554 -35.296944 -39.686691 32.917296 -13.470464 -21.946427
35.579826 35.966190 1.463933 -12.644578 0.856393 213.809408
37.921385 -43.754261 -6.722129 2.750995 29.429446 213.809409
-10.433555 -10.292676 -7.967526 8.403301 18.812649 -64305.351166
29.599555 -0.551984 35.905783 7.684283 -46.369590 213.809389
2.632594 25.134657 -8.981432 47.302033 44.511871 163.185162
1.208263 11.304098 -19.228219 -38.203031 -27.333945 103.435023
30.810043 -26.183176 -5.922621 38.541550 30.293665 213.809399
-9.168735 -44.778151 37.753346 -44.834037 -6.525542 -32077.723348
49.545262 -41.988501 23.913880 -0.996109 0.188252 213.809409
46.484820 48.911024 15.888127 37.948735 -13.342278 213.809409
2.505392 27.060663 -15.037074 -14.221046 40.759138 159.535653
-8.577156 0.338532 35.793483 28.986779 -26.707434 -23147.258315
11.350994 44.004968 47.320182 34.962760 -47.124574 213.380540
15.436415 -6.745651 -25.389159 29.759325 -44.180563 213.763555
-5.204451 -8.307754 47.413257 -31.083242 21.353030 -3475.356655
33.918446 -29.983757 -44.113346 18.085670 40.099430 213.809407
-4.478710 11.040080 30.262488 33.194844 -37.929155 -2266.163343
12.950424 -18.805293 -38.554686 -15.031699 -20.426903 213.630678
-11.007539 -17.422700 -30.171255 -25.092964 22.097626 -88115.105701
13.383872 -23.891363 -10.677042 12.055137 44.399571 213.668420
31.103622 -22.230985 32.309208 5.345200 46.968791 213.809400
25.096312 44.926205 -34.082492 -24.974531 -42.888781 213.809177
17.883542 -32.579728 -33.166383 -14.098326 36.640518 213.797392
27.356881 -9.459934 -27.711407 10.039484 -41.926792 213.809342
39.581293 -35.813190 -38.940901 -37.746648 -42.407342 213.809409
46.422221 43.982926 -11.070173 10.259491 29.119579 213.809409
17.547474 -23.343047 -37.565320 -34.631315 18.546551 213.794966
18.402419 29.563381 2.665673 35.906175 -18.768021 213.800363
31.002457 -16.292584 -18.590733 -21.862204 -18.127537 213.809400
6.586637 42.193280 -21.012159 -30.924477 -38.250074 207.993307
42.790708 -8.221482 42.210880 13.761184 -23.714671 213.809409
7.927362 -35.594735 1.921253 37.294634 -26.053177 211.016914
20.367093 46.581691 -11.821344 10.650792 -3.820516 213.806322
14.377124 33.051084 -42.360486 14.614864 23.390092 213.727538
28.718127 21.248715 -18.454354 22.852794 -0.295473 213.809377
20.618280 39.426895 -49.561664 8.243842 47.524455 213.806718
19.323304 -39.132991 35.657484 -35.682855 31.574143 213.803944
6.167481 -33.729713 17.079363 25.577446 -45.599460 206.493816
-10.859908 16.978422 -38.816445 -45.419492 -13.908665 -81259.736541
27.446730 37.880185 43.751655 -31.033502 -29.358066 213.809345
25.301141 -24.411695 18.127053 -13.934531 7.734527 213.809201
-8.629521 10.510419 27.889494 -29.360045 -37.239903 -23826.388027
24.263420 22.317590 49.190204 -21.204118 38.742354 213.809043
44.336124 0.560311 -33.003637 -2.980768 -4.412508 213.809409
15.655976 7.117627 32.323967 36.932201 23.339386 213.768747
13.054916 -47.278097 -45.765915 19.093622 -45.579655 213.640611
36.849570 -34.929574 49.115845 -0.877114 34.763839 213.809409
-7.448416 16.492036 38.394950 -40.210031 20.694618 -12382.223975
35.481408 30.526089 0.739522 -28.484595 40.576672 213.809408
43.905298 34.767100 -30.816323 36.538698 -32.323768 213.809409
14.091037 -2.622202 23.712058 22.513837 48.367890 213.713663
7.775221 32.846481 28.706651 -23.191896 -22.759089 210.774465
27.185277 27.755593 24.350740 10.218218 16.433997 213.809335
42.947319 39.657555 49.312304 9.923752 -0.198660 213.809409
22.479001 -24.011163 -49.655604 24.601604 -48.074680 213.808437
19.714904 32.513261 23.837114 -30.286668 -8.452649 213.804998
22.228002 -49.494648 44.638351 -6.943757 -2.256802 213.808294
36.538624 5.752129 -38.702509 41.915511 -47.449942 213.809408
-1.643096 34.898005 5.715706 -34.055770 0.233566 -311.637350
29.358497 29.019475 21.239855 3.221814 17.913912 213.809386
15.516503 44.859890 14.448480 -0.540417 18.828421 213.765521
25.236306 -12.777738 23.748090 28.518743 43.234648 213.809194
0.441663 -10.682711 4.642570 -1.758573 19.497341 45.905775
17.804182 16.877301 -4.394112 -16.899380 -14.914512 213.796859
14.176792 -42.920184 3.630651 42.946949 -19.680834 213.718053
16.462257 8.515373 26.142433 8.057144 -15.643286 213.783253
42.018100 16.978777 3.343871 5.668715 -37.015914 213.809409
-8.507418 -45.416990 -24.084270 2.170343 29.253393 -22272.520379
2.838388 12.233858 -23.671726 47.080985 -18.495281 168.577064
9.271498 -19.815923 -46.265601 28.227320 -27.537639 212.471144
37.435679 -47.644766 35.421510 -6.779695 -31.801018 213.809409
5.766953 -15.710935 -33.296591 22.858797 37.838777 204.701052
23.455246 -41.344544 12.141531 -15.917927 -48.076070 213.808839
36.437199 -37.299410 -48.228792 11.485119 -35.571467 213.809408
-8.794530 -6.013993 -12.061452 43.837863 10.390467 -26098.224798
-10.644397 -48.722403 42.355703 14.319066 42.263374 -72196.086116
26.765091 28.524720 -41.735591 -48.503849 -40.332650 213.809316
-10.731004 29.374919 -29.925040 25.730604 -33.813168 -75710.516961
22.468592 11.294578 5.808079 -49.418137 43.838183 213.808431
19.747358 -23.551322 35.153937 -44.636701 49.150101 213.805076
-9.272732 5.744850 2.938941 -37.497067 38.627686 -33968.781537
11.918368 22.724032 7.052939 11.984227 6.088995 213.495010
46.417878 -6.365244 36.720748 2.666561 49.509834 213.809409
8.871136 -40.727862 -28.097119 -3.214495 -38.702130 212.143340
12.536491 -5.818539 21.386715 10.432589 -32.604254 213.585239
28.477110 -49.585399 -48.984546 -39.452771 35.341184 213.809372
-3.761389 15.447090 24.654009 34.910779 19.601992 -1461.005546
7.693430 0.100670 38.591905 -22.973492 15.329897 210.635539
4.110065 16.037655 -38.770454 -15.360435 37.070812 191.255617
18.430066 14.701033 -37.992286 39.998291 -11.865706 213.800499
42.076517 32.709859 37.068641 11.868932 12.817432 213.809409
10.688445 12.612535 15.500482 29.551611 46.343319 213.193116
40.684006 -4.482673 39.226027 -38.064204 48.848220 213.809409
46.146891 -24.680560 -45.183200 -39.519194 19.035011 213.809409
0.148366 -13.172391 44.138316 14.857137 19.324094 16.673517
33.769997 18.754838 10.428303 -38.535467 -37.113880 213.809407
28.259021 23.034881 6.618520 8.916856 -35.266540 213.809368
25.629077 -21.731646 3.241178 28.210678 -28.373503 213.809236
28.656120 -49.941832 48.202708 33.882529 25.348990 213.809376
35.955214 10.243552 18.834685 17.025198 23.292957 213.809408
13.993890 7.346898 40.009835 3.098497 10.258950 213.708435
21.327684 24.452284 49.201438 39.474368 15.698331 213.807584
-5.158795 -45.268740 -40.511295 -36.783693 -21.997997 -3384.326047
-9.621843 -3.374694 -12.452302 40.179001 -40.437523 -41164.748746
8.952539 -33.118151 -24.731058 -34.766236 -49.133664 212.215929
22.750511 -13.411158 -33.235483 28.416897 19.766845 213.808571
34.843465 -3.344432 -31.682171 3.760867 3.198850 213.809408
29.650337 38.265888 12.630467 -42.639366 -6.095995 213.809390
1.445648 48.341024 23.351354 9.816175 36.164234 116.881042
22.879272 24.886244 38.385477 41.331762 -8.637832 213.808628
26.653021 28.521851 -3.817861 15.565169 -20.988010 213.809310
22.114646 -23.275709 48.649901 0.136005 15.032403 213.808223
-0.865733 19.600472 0.005664 36.017645 43.528042 -129.573707
10.731383 -40.236160 -19.803868 41.490586 -9.079820 213.207428
11.633447 48.075563 11.521085 1.076729 -31.444238 213.441961
-5.039038 13.578443 26.956563 -3.248678 -46.976207 -3156.081250
-9.130621 17.427439 36.599011 38.124797 -37.691486 -31411.192362
32.301408 19.445757 -45.330773 -46.038295 -4.215054 213.809404
40.821579 -49.954640 34.420533 -31.443799 14.637295 213.809409
-8.946332 43.779011 15.421351 6.831968 20.271740 -28377.359578
30.323168 -10.940090 23.920382 -16.700511 -19.607373 213.809396
32.842672 27.259083 24.427075 -15.077898 3.095983 213.809406
35.324292 34.498474 -6.674171 -33.065450 -13.628228 213.809408
29.444984 -37.780355 40.248617 25.451106 14.701004 213.809387
25.764725 -20.387971 -40.927180 21.341078 -14.220903 213.809248
29.504753 1.704625 -16.873952 47.526164 -39.460333 213.809388
16.652153 13.225027 -22.900686 16.616477 -2.538511 213.785835
37.236407 -11.294556 -4.092341 -3.731264 -38.118193 213.809409
28.120468 -2.398092 41.918736 3.384670 -47.380906 213.809365
12.898868 -44.618273 -22.399527 -2.917307 12.555194 213.625563
34.783404 11.028317 42.712228 11.169381 23.895282 213.809408
10.750196 19.575256 -28.350140 -26.520370 10.389349 213.213594
-6.128830 -46.512010 -1.527599 -6.986635 -21.413246 -5904.313603
-6.768350 -28.987590 -24.224547 -20.900469 -8.666533 -8467.954165
-8.339160 -47.598144 -26.460217 26.535005 -24.773480 -20294.516445
-1.233794 -48.397965 -19.742787 -41.450054 -1.799626 -206.194191
27.720181 32.709016 48.506550 -29.748293 -31.694800 213.809354
-6.642512 35.353863 28.443666 29.695446 -48.732124 -7890.220426
35.789125 9.676342 27.366659 42.611981 19.600664 213.809408
11.688207 6.513311 -30.394768 16.032355 20.512500 213.452809
28.371422 -15.867245 -27.527644 24.975497 -17.032218 213.809370
18.934860 7.670290 -27.394767 -2.922678 22.983841 213.802649
-9.142213 -20.177005 20.345550 49.269918 -32.788020 -31612.445293
31.689790 -18.315321 -49.781011 17.852906 13.132127 213.809403
-4.602546 13.085080 -21.202153 29.008254 13.943361 -2440.051881
39.402444 33.764151 34.778942 -8.071951 -21.437948 213.809409
0.139833 49.284763 -33.525355 -7.169357 27.302988 15.750813
25.027760 -27.863045 44.266946 10.832704 47.181763 213.809168
3.051611 -48.311261 -36.185508 7.789722 -18.257998 173.558634
34.087737 37.941575 29.965241 23.431973 -38.464953 213.809407
41.681251 -44.080881 11.340689 -13.934589 23.380449 213.809409
49.147306 -9.977706 -24.886943 -44.380546 -13.985889 213.809409
5.358948 -38.532804 7.911365 -3.761441 5.934146 202.422459
-8.724371 -10.985304 -36.197263 -3.405272 8.222295 -25107.148892
12.893491 -47.134648 -46.699872 -43.851374 -36.083835 213.625022
21.941900 4.244299 -10.572144 16.213730 -18.191475 213.808105
13.557951 -47.908076 -13.155609 12.059815 7.767937 213.681231
27.924283 -4.540345 -17.809892 3.047200 46.112849 213.809360
20.401207 33.900476 45.985872 2.765507 -26.167681 213.806379
9.865785 -47.573053 -34.061515 11.732618 8.810960 212.842685
8.792806 -42.510491 -35.151118 -15.625489 3.836614 212.070371
33.064938 -23.893667 21.833416 48.961145 49.793653 213.809406
46.358084 31.498191 32.017708 -5.048156 -23.641366 213.809409
22.934167 -38.401367 -14.308507 -47.502158 -48.276625 213.808651
-0.786619 36.716138 12.751584 44.175650 -10.898486 -115.024370
32.710519 49.303675 15.971799 -49.374101 -37.501480 213.809405
-2.127234 19.012783 -36.764029 46.457835 -43.204387 -471.032028
14.761194 -1.102742 -17.770512 -26.637269 -14.924262 213.743058
10.408198 -8.138415 -25.266355 18.551090 -24.170790 213.090967
38.396920 -4.140901 -41.003484 -32.478956 12.030338 213.809409
-8.278254 -28.563934 -23.540604 0.755063 -10.672464 -19622.238058
7.423406 -15.014834 43.934276 21.625841 -11.404959 210.130123
6.654345 -48.678057 -38.744353 -19.000658 12.651458 208.204862
28.708229 39.029679 -0.831380 -31.725941 -6.244362 213.809377
1.211121 9.767079 -1.446058 -26.930916 30.881804 103.607513
39.630432 -29.629721 -38.434533 -29.927544 -36.807473 213.809409
15.724772 28.948319 5.994178 48.204685 -30.167169 213.770249
45.796907 -15.970839 -14.728955 13.854729 32.965589 213.809409
24.253311 -42.373620 23.403257 -19.515047 36.441688 213.809041
29.741282 -46.113770 -30.468232 21.305162 4.826775 213.809391
41.421376 -7.980035 -3.869040 -14.263852 6.786811 213.809409
-1.110219 22.141139 49.310796 -43.507725 34.345128 -178.730700
17.440670 -16.519901 -0.100996 -37.991597 35.941749 213.794097
-10.362244 40.574588 -6.102349 -10.883129 -37.764491 -61836.045180
44.941237 -28.085992 36.030811 -9.655340 -3.467301 213.809409
4.042296 -2.142787 -21.879801 -20.753354 -47.836013 190.403488
-11.080806 -12.281302 34.185985 -35.004121 23.227433 -91728.585160
11.086898 -13.045212 7.746297 -16.019828 0.909568 213.313856
27.887234 -4.966810 -41.059207 40.672080 -38.611501 213.809359
8.718441 -15.906386 -26.534832 -12.171354 20.499488 211.998141
34.110669 15.074021 -18.715497 28.032900 -17.463172 213.809407
6.076821 30.671221 11.621942 -34.287979 -31.867961 206.121716
-10.523753 -49.952941 40.615232 46.403444 15.918724 -67569.880825
13.818719 44.857563 -42.065086 -38.786486 48.232529 213.698277
46.051072 -25.431723 -28.055815 47.354800 3.385259 213.809409
15.907362 -47.419579 44.833715 -6.596573 -27.080624 213.773973
19.959687 23.333617 -30.070944 -17.628760 -37.661388 213.805551
46.074724 -45.669813 -44.666037 37.960884 -18.739410 213.809409
39.007998 39.028115 13.192326 1.621947 22.958413 213.809409
25.612993 14.982532 -0.733254 30.427189 17.343725 213.809234
22.728132 12.636870 -32.551996 -44.974685 -23.096097 213.808561
-2.681053 24.244935 2.054436 -48.700980 -34.104241 -713.472751
-6.847006 46.284736 35.542787 -1.272547 46.458520 -8849.808072
40.167128 -49.280545 37.255172 9.205688 -7.979861 213.809409
49.007543 -23.208561 13.064480 -5.543543 35.304321 213.809409
30.551151 49.908244 15.546776 -13.805720 -37.258394 213.809397
-5.969256 -47.449649 2.007022 47.398942 14.286374 -5392.710498
-6.179009 -37.944897 10.685770 6.962327 -43.867070 -6074.641982
43.654964 -1.209848 -20.200824 40.872862 4.147601 213.809409
-4.619521 48.033016 -27.378415 16.329988 -20.240222 -2464.819141
45.649649 18.623201 -37.587252 22.208079 -14.133626 213.809409
-7.937194 30.964973 36.627275 -36.125963 -23.641414 -16244.986796
44.507265 -45.727056 9.403145 -15.513850 39.467101 213.809409
17.934898 24.998357 -4.816163 46.937818 -38.092243 213.797725
-4.581101 -28.458195 -7.497051 0.986366 10.844283 -2409.089313
17.163703 19.624403 -20.257418 -19.474250 12.277946 213.791591
35.825699 17.678923 -12.010798 -36.523179 -32.501021 213.809408
-3.619742 14.448548 8.845987 44.226000 -11.611347 -1336.086931
38.952903 -23.571591 5.215597 -39.672899 -29.612532 213.809409
41.931293 7.648059 -48.045203 -5.161688 49.059387 213.809409
13.365751 19.994283 -43.731484 39.354429 -47.055445 213.667015
5.179352 -3.393774 2.664128 47.733137 -2.103649 201.246492
20.059896 46.050941 -40.739961 31.209695 4.147626 213.805757
46.763858 -39.680392 29.539093 -1.543292 -36.504571 213.809409
24.148643 -6.977961 11.790480 -34.499416 -8.721498 213.809019
-10.424439 2.855324 49.096738 9.020782 31.958898 -63984.275586
39.244590 34.386140 46.541130 35.439555 1.378783 213.809409
-1.578387 11.334631 30.478895 -49.660703 -35.452460 -293.356034
23.848073 -35.675302 -33.284535 22.386634 39.272103 213.808949
31.661674 41.182199 21.131418 -12.339970 -2.321510 213.809403
25.130034 21.418967 28.895777 11.802168 46.815823 213.809181
8.098460 4.793615 43.136504 2.630794 -24.077083 211.266511
17.439888 39.813879 -2.707511 27.572915 36.347895 213.794090
0.285807 -35.680482 -0.702583 6.136154 -35.210633 30.956734
41.090625 4.637709 -41.828519 -39.130566 20.137451 213.809409
36.603823 -42.275462 -9.722107 34.326765 48.328362 213.809408
12.297577 39.139520 23.991696 -49.430523 31.213222 213.553929
10.186547 33.332217 -5.668714 23.339376 -28.619941 212.998318
13.260786 16.051244 32.376543 -10.935614 -17.051057 213.658596
-3.547807 11.926780 37.828918 -9.130872 1.525084 -1276.259794
-5.964776 -17.265547 -48.861474 39.889844 -38.453133 -5378.982950
19.528066 9.429281 -43.991881 15.257057 -11.485502 213.804523
3.620927 -21.018554 12.706824 -6.616899 9.317721 184.333365
13.447631 -31.643175 27.195772 -48.170116 -20.481085 213.673254
18.444199 17.891890 -31.053114 -22.330396 -3.299495 213.800567
4.900083 37.705219 37.621964 38.305177 36.563823 199.172066
15.256294 -39.869655 27.632530 -25.632782 27.535984 213.758805
-9.292366 20.819197 34.288330 18.466729 -44.234825 -34338.024092
-10.801078 -43.632504 -0.393159 43.452079 -8.917820 -78678.552036
18.474154 49.918509 -26.982021 -27.915807 -19.866420 213.800711
5.611126 -18.941539 -4.957701 31.254573 -29.314685 203.890267
30.640464 -30.940537 -34.705621 45.817523 27.179827 213.809398
23.259959 49.665087 40.480763 12.271360 -15.492712 213.808775
32.205645 49.378299 19.059722 10.558629 -44.281116 213.809404
-3.638386 1.660076 -46.962594 39.402547 -46.224779 -1351.980880
20.635135 32.535567 11.308058 16.710397 1.383549 213.806743
7.653691 -5.488053 43.869798 -31.001942 -18.957773 210.565761
14.527999 -29.772996 -7.076219 30.721619 -26.035169 213.734026
44.948903 17.598172 14.140538 30.556157 -28.184575 213.809409
21.150975 -38.272204 23.265982 9.997150 -0.535616 213.807399
44.748366 -45.076538 41.502890 49.420153 -17.705433 213.809409
49.369980 -0.181234 16.489078 5.289490 -11.720161 213.809409
-6.304067 -6.508361 36.921805 9.874945 -5.871958 -6520.070685
-9.012623 -30.524393 28.608086 35.948188 12.572623 -29433.602878
35.826060 -23.088728 -35.052833 -20.854972 -0.474267 213.809408
-4.600363 -25.757494 -5.464778 31.320277 43.370631 -2436.883285
3.382431 8.253631 -15.675480 -5.705746 49.374472 180.223998
42.784441 20.120655 33.346822 -46.456627 -42.393707 213.809409
14.484075 7.419158 1.172910 -16.479835 -46.738727 213.732193
26.702526 35.677988 1.550581 46.090393 -43.193232 213.809313
49.958897 47.687288 -12.705821 13.001212 -41.197853 213.809409
6.642726 14.939612 8.059621 -49.458306 -19.594478 208.169113
27.849144 41.803534 -2.400192 -14.054243 25.619630 213.809357
2.760473 12.848257 37.159860 -15.489401 -41.303974 166.606722
36.435309 -17.399217 -38.757370 24.077702 -36.262133 213.809408
18.581651 5.544033 40.043375 25.669953 31.522339 213.801208
4.311150 42.938241 49.952579 5.616971 30.028503 193.605783
3.836772 -12.225195 22.671909 -44.018905 30.298628 187.617271
28.418360 40.568794 26.994049 26.588287 -15.305160 213.809371
28.202516 -4.715046 -13.132367 5.619538 24.960391 213.809366
-3.172348 -19.674684 -28.391080 -4.281902 17.194042 -999.507003
-3.154708 1.787938 26.543527 17.499073 -16.116323 -987.851001
-7.653167 19.107132 31.150886 -40.383236 35.773589 -13875.690671
5.473795 -22.777207 5.043801 1.254025 17.053266 203.116090
33.611866 11.762675 20.938924 -9.740462 -37.721851 213.809407
41.833808 -21.011658 30.290807 -16.394545 -30.143859 213.809409
28.081512 16.519635 -7.503142 34.615751 -40.106260 213.809364
42.514425 7.066519 -24.788127 -12.468600 -33.450134 213.809409
-6.283024 -47.385295 -47.508845 40.956408 25.442602 -6442.969644
3.250882 -48.890913 12.697345 9.849328 -46.216502 177.717070
24.944148 -33.890746 -36.253282 32.694750 -41.075439 213.809157
-9.614704 26.353646 7.292705 -47.531055 -45.377045 -41003.403924
-5.845012 38.267223 -44.501812 -49.484414 -7.382361 -5024.187751
20.999119 -42.106499 -30.475720 -22.799830 -47.765592 213.807225
45.381516 43.069719 12.870609 49.212790 19.066321 213.809409
39.693328 43.287541 15.524864 -49.145474 45.464054 213.809409
18.310079 16.850534 -9.760075 -43.713201 1.788363 213.799894
46.671104 -29.766393 -13.278734 12.407033 20.892443 213.809409
49.046696 -17.683564 45.601322 39.142165 -44.155050 213.809409
33.686119 -31.909087 -16.490171 -16.144932 -24.118364 213.809407
39.210611 -6.231117 31.936802 21.377864 26.583065 213.809409
49.096347 9.817036 16.900607 -38.563660 8.076117 213.809409
48.029294 -45.351950 45.299849 44.159846 22.878675 213.809409
45.569395 22.406065 -16.316288 25.330341 44.806297 213.809409
43.113426 -43.355953 -36.926174 19.274207 -22.292678 213.809409
23.241386 37.194318 -9.514825 11.750577 -15.099920 213.808769
0.333425 47.968347 47.955626 -5.746240 -22.338503 35.660002
25.932019 38.568480 35.578294 -8.890922 23.546925 213.809262
26.476967 27.253258 -36.353765 -41.227928 -10.383144 213.809300
15.002020 -47.986729 -35.957604 25.081286 20.245657 213.751250
21.040729 -28.836369 5.301655 -35.096924 -16.769088 213.807274
13.377274 9.988735 -18.857298 -6.641257 37.033741 213.667910
9.718064 -1.476083 25.628295 18.930195 5.655023 212.761291
16.437832 41.124353 -34.616902 -26.075743 1.867015 213.782901
15.797366 0.200359 -22.487568 42.858802 20.685347 213.771774
35.641372 3.052113 -11.482243 -35.496738 -25.634454 213.809408
-2.908067 19.845212 -20.420416 -28.315050 -5.842952 -836.130304
1.976827 31.283435 32.588883 40.865285 -44.308757 141.330809
33.123474 -43.559655 -35.484805 38.072262 17.915227 213.809406
-6.772774 -5.171736 9.055063 -26.360799 -6.041570 -8488.995619
14.581051 -35.250669 15.504866 -26.427114 -47.891182 213.736183
10.085918 32.394470 34.423962 44.003612 -18.596367 212.952400
-5.749762 41.367445 0.900671 -12.240100 -38.983855 -4758.155381
30.071537 49.947911 -3.402431 20.377418 26.953222 213.809394
30.082909 -17.080947 -1.403977 -2.958408 46.107126 213.809394
2.273155 -47.011989 -10.298544 22.228896 4.595599 152.180620
35.701367 -2.031512 17.756123 45.963021 -18.544775 213.809408
39.260580 -47.596601 21.955566 8.788517 19.122560 213.809409
45.870836 0.365961 -7.085515 -19.632081 -9.091900 213.809409
26.157479 -39.042411 -19.108359 -31.386849 31.319802 213.809279
16.395554 -14.703730 -12.568140 -14.195780 -43.675029 213.782281
-8.749111 -25.605504 -28.249474 45.413915 41.356895 -25452.296662
43.506979 33.319452 7.030865 -37.835205 -9.394171 213.809409
34.343101 -49.820709 6.179386 -10.970623 -39.742039 213.809407
15.332357 -1.907865 32.791956 18.664362 -40.784543 213.760868
35.780382 17.969024 -49.768922 6.009837 -23.539207 213.809408
22.965593 19.970805 40.404732 -42.868743 38.194161 213.808664
36.337783 14.792869 8.704735 -27.519333 37.353232 213.809408
12.828740 -25.143925 -9.794066 -32.644068 1.179269 213.618371
44.394103 12.644837 31.089753 26.060377 -48.259242 213.809409
44.888029 24.690021 15.246519 -7.844692 -39.526345 213.809409
24.005340 15.011850 -38.397394 -13.988587 -0.481073 213.808987
44.046019 1.060528 -22.379606 23.619307 -24.137341 213.809409
-1.420494 -0.088775 -19.810349 -8.583421 -14.687121 -251.374387
-2.894265 21.008065 -26.993870 -16.111014 -41.676509 -828.230106
39.812254 -26.400898 -30.333779 2.901641 -48.988847 213.809409
2.571802 -33.403102 -18.277002 -31.078693 0.032111 161.472668
48.394248 9.311899 -40.033827 -41.136058 5.162173 213.809409
44.137294 39.463653 21.193198 27.417249 41.454132 213.809409
25.297683 38.878992 41.002340 -46.235235 7.826962 213.809201
0.087956 -25.251038 -15.563971 -13.105475 42.756672 10.047486
1.380606 -42.282295 -46.571546 -9.187154 40.263391 113.368896
16.186674 22.994019 24.581720 33.459141 -2.997582 213.778995
-3.970601 49.690350 10.572049 -18.259650 -18.438331 -1664.160439
9.717423 49.118616 41.801322 21.302527 44.948000 212.760923
0.345020 -37.741334 46.999310 -48.514178 -2.424202 36.786832
-0.728808 0.841839 29.718992 -35.964170 23.926935 -104.784096
29.960994 34.507045 -3.570593 11.223603 -17.471117 213.809393
36.723199 39.427364 -29.336963 30.052956 14.836414 213.809408
22.583687 11.605166 -40.463263 5.780215 -5.099743 213.808491
6.571317 18.682257 11.636985 2.937356 25.577834 207.944340
30.445886 -3.082216 34.625076 -30.133374 -7.565162 213.809396
-10.099195 -9.572825 0.479960 47.081822 35.399197 -53517.072915
35.831651 48.730838 -6.440500 -12.349753 -0.150728 213.809408
-10.492273 9.805838 12.356013 -48.599520 -47.156268 -66412.195278
34.231034 -35.600797 -14.012656 -33.938027 37.288583 213.809407
18.095779 47.549327 -46.011514 27.630642 15.704156 213.798710
7.033912 -15.506569 -14.682763 -3.252175 26.361011 209.256053
23.211441 -16.758388 49.604539 -13.833509 -24.714895 213.808758
2.811765 28.023700 37.240857 -31.345781 10.394191 167.913237
-2.153100 -21.674383 48.996618 -1.398442 -36.042631 -480.794797
11.050178 -15.449464 -42.761646 -37.021059 -41.800149 213.303797
49.101587 18.036943 -20.335919 15.132945 -12.731461 213.809409
5.059348 -45.204833 11.926771 46.797608 -0.065202 200.393784
29.487330 42.820819 -11.270462 -12.185098 -17.002671 213.809388
48.998257 0.202372 -25.040994 -41.603458 -33.188168 213.809409
-8.374009 49.492695 -3.996706 -9.347460 -12.976996 -20689.368967
35.129024 -1.687788 41.796689 -26.261343 -49.444481 213.809408
18.408913 -37.478016 -49.070814 -46.139997 19.143254 213.800395
3.222655 42.581755 9.449180 -11.400339 0.656555 177.155236
27.049901 16.254609 14.756429 -34.718933 14.748318 213.809329
47.382061 -34.020862 -12.962352 -41.441489 -5.291940 213.809409
42.035952 41.266239 27.527832 -47.930934 -24.490732 213.809409
43.141624 8.587822 15.851766 32.705774 25.041947 213.809409
49.774411 -6.618379 25.239617 19.112113 40.248210 213.809409
35.343345 16.657239 -20.428705 0.124956 16.675619 213.809408
7.440066 -46.319069 -29.827077 -49.922389 19.186567 210.163513
3.386630 23.046361 -5.975837 -38.630659 -11.139593 180.301070
-3.212803 -22.153413 -37.520128 32.081813 34.553905 -1026.667252
3.834837 41.201973 -15.730256 24.862975 35.565605 187.589509
9.390830 -45.559357 44.174186 -28.603733 -31.099996 212.555745
34.496306 33.607365 47.359035 -40.082218 -23.368953 213.809408
34.660124 -8.012125 30.589372 22.137563 -25.813578 213.809408
45.166328 -44.640633 47.246136 -45.972730 -18.337225 213.809409
-5.744300 40.753104 29.534347 -18.371546 44.847549 -4743.317001
37.864595 -42.822936 -19.300728 5.711537 15.357034 213.809409
17.791254 31.951057 -48.768616 7.340673 -46.148393 213.796770
22.029782 -1.713202 25.756109 -18.448537 -1.517573 213.808166
-5.697762 -25.988614 25.156420 -31.506568 45.721466 -4618.665894
37.536757 -4.682172 -40.518692 21.320648 -15.812877 213.809409
35.209871 5.046174 32.044281 -11.337399 34.050646 213.809408
5.245845 30.300257 0.140038 33.760485 42.932368 201.695410
15.404734 -26.329634 -15.731453 23.460968 -40.277768 213.762753
11.755481 -40.416390 -37.846959 26.877037 3.161017 213.465698
2.530951 0.946844 -20.350565 27.199096 -0.368491 160.289499
31.319400 -1.333608 -20.079191 -10.544362 -43.596593 213.809401
33.028936 -37.830902 -10.438262 21.083790 -12.749217 213.809406
26.217381 -17.773759 47.939417 -40.728012 37.611176 213.809283
26.982780 -46.023953 7.352402 25.614839 -44.802823 213.809326
8.393057 -44.710949 -28.844059 37.173458 -15.390420 211.645124
24.961888 -49.941144 -8.017679 16.580191 -19.948245 213.809159
-9.969996 6.356588 -25.865044 -10.816371 -6.134954 -49849.349483
3.885724 -34.888807 -13.448331 8.804489 9.217258 188.309601
40.539494 13.998249 4.074657 48.759334 -33.828797 213.809409
27.618032 -10.835905 16.887329 35.444674 6.301061 213.809351
-8.171124 -44.261226 10.260793 29.477322 23.678155 -18492.769330
40.409777 -38.907235 -15.722101 29.666622 -0.999795 213.809409
27.758916 -1.927136 20.223621 -41.344040 6.567124 213.809355
6.631063 -28.893778 -27.517880 19.477888 16.417337 208.133002
10.461051 -17.045886 36.335901 26.663102 -15.576919 213.111449
24.955415 -28.580766 -19.008937 -49.624883 45.313456 213.809158
10.501469 14.635971 -17.650989 -18.946249 43.611738 213.126717
26.989563 -44.399239 37.695258 -18.936990 49.512862 213.809327
-6.599834 12.151897 -4.455416 1.739923 -18.498872 -7703.144233
17.698192 -3.074261 -31.286600 7.047802 -47.131155 213.796109
-10.528927 -41.431567 -26.378547 12.213501 31.153825 -67762.096965
34.455806 -14.263921 41.693214 -41.883435 47.079252 213.809408
13.460281 8.448447 6.487873 31.039168 -26.652848 213.674193
23.074563 -48.911236 -28.241631 19.983527 -45.230641 213.808707
12.945469 11.401452 -4.326939 21.668280 -23.018707 213.630192
47.294534 15.204252 -29.002330 -1.279659 15.958745 213.809409
3.725195 -12.887810 -19.268234 -37.786234 40.875738 185.968159
24.663385 45.481403 -43.039543 -16.865309 31.755443 213.809115
33.299112 39.455416 -5.064495 -37.386443 -8.386906 213.809406
17.593797 -1.531791 40.495422 -24.129312 42.213116 213.795327
47.642965 -34.128762 -17.187067 33.403746 40.823788 213.809409
-3.793872 -18.576472 8.791515 -15.005295 24.538985 -1491.043084
35.061435 49.140321 -2.897928 45.254462 -1.253718 213.809408
0.294154 11.584039 3.336131 12.462803 18.527278 31.790100
49.525078 -36.785719 -39.610297 15.183155 20.760893 213.809409
48.925658 12.008969 9.119041 29.937953 -6.321498 213.809409
42.614268 5.087562 -49.118274 15.095084 34.242415 213.809409
16.008897 -44.977363 19.439655 10.874097 -48.615069 213.775888
33.455568 21.825037 22.246466 -11.800384 -18.390091 213.809406
26.516865 17.013158 6.748427 -5.007903 25.353013 213.809302
34.412462 14.725886 -37.733582 -16.129225 41.888090 213.809407
3.597568 -4.989275 -32.788223 10.724426 28.655647 183.954156
9.163020 -8.199129 24.334375 44.315824 20.802192 212.389295
-7.884665 -13.904085 -47.380651 -11.412054 -36.487217 -15778.600527
24.093297 12.751292 -34.944534 -28.120328 34.683933 213.809007
11.848947 -40.984971 -9.706879 -17.629287 22.764858 213.482836
-7.313072 38.252839 19.555720 -25.685910 36.512315 -11483.008373
1.156479 34.158531 -47.997146 26.348870 32.723595 100.262477
26.322765 16.765905 -8.226066 37.959105 -34.918749 213.809290
45.002942 -12.430290 -10.371222 10.698154 -17.879145 213.809409
-4.513343 -48.606499 11.059590 35.722211 -5.448870 -2313.613636
11.710908 -4.133217 42.394432 -48.803356 -30.628755 213.457211
40.022288 26.313809 -37.529937 -42.155298 -22.894405 213.809409
8.523525 9.939773 -19.397285 24.948680 5.418803 211.794261
18.580200 37.848980 -2.710939 22.493359 -41.147490 213.801201
7.370189 27.199482 35.206473 39.673445 -16.472561 210.021398
7.365695 25.975009 -4.023355 -17.231982 -22.467232 210.012070
0.948177 49.938119 -12.826781 48.854879 47.669313 86.552606
-3.263765 -29.735862 -38.177302 26.673073 -45.453011 -1061.749074
9.129762 -40.376812 45.390206 -40.183481 16.133438 212.363212
-5.003847 -16.572750 -44.071308 -5.008566 -35.359977 -3091.804987
9.511398 -14.340082 31.529855 -23.319268 14.695033 212.635791
32.937889 0.079365 -1.736146 -0.112941 1.596450 213.809406
8.869126 -45.818728 -22.074386 8.107796 -6.835516 212.141506
8.471413 -15.885131 45.533480 28.140741 24.063910 211.735966
35.252678 0.748760 -19.848276 -46.633699 6.183155 213.809408
30.515309 48.837956 10.653957 26.642405 18.527812 213.809397
29.357438 37.505144 36.045055 -24.556557 2.414410 213.809386
-5.615971 12.386038 -23.223763 -33.997378 -25.400566 -4407.137151
37.840838 -34.934635 -34.507159 17.269969 -3.452495 213.809409
38.376881 -10.160354 13.217608 41.589527 45.425158 213.809409
17.977955 49.227809 9.679343 -14.451375 -3.757891 213.797997
24.552450 14.576033 0.685429 -42.550182 -32.443020 213.809096
3.718067 -44.069682 -10.070222 -7.850795 9.155067 185.859346
27.640863 29.166417 1.917048 2.488768 -32.222657 213.809351
-3.735384 4.869713 -36.618061 -17.314266 28.499181 -1437.339978
44.904878 34.127685 17.009160 -47.896677 -36.192034 213.809409
29.201950 -24.019621 14.042995 3.203968 15.214756 213.809384
1.117637 -1.053736 29.108761 48.978989 44.922112 97.823112
5.085124 36.765726 2.509970 -4.454487 -6.624178 200.581687
37.308850 -14.627211 -26.218954 -10.997853 25.564796 213.809409
41.136439 -43.395909 -21.062515 41.632267 -23.780293 213.809409
16.151597 29.323680 -40.089261 4.020537 -19.611534 213.778406
-3.992286 -15.748237 22.042520 12.859361 11.646603 -1686.578483
12.022797 5.360269 18.076447 -44.556947 -2.576897 213.512473
43.862433 -3.759431 40.158502 3.124217 -48.492546 213.809409
42.257705 25.257710 11.323656 39.882011 28.330369 213.809409
29.197804 13.872186 37.993819 -1.614015 45.007985 213.809384
32.436432 -48.677920 -46.536002 -14.394759 -4.632058 213.809405
-6.267889 -19.393390 15.048458 -26.234267 -8.027801 -6388.063656
0.244410 -45.200549 -26.668829 34.711411 -35.096132 26.767148
-6.803359 -49.206135 -1.773394 11.458749 -42.406735 -8635.885428
36.396407 -24.138262 -44.314146 41.921892 2.140650 213.809408
12.976495 -2.139721 -21.820732 34.388825 7.278320 213.633210
1.068342 -43.218616 22.760179 -2.624783 2.373073 94.651693
33.196141 26.899204 -11.066105 -22.789913 -32.779917 213.809406
47.909142 12.877155 -43.890047 -30.127135 29.787929 213.809409
17.201760 -44.877966 21.358445 -49.377804 18.014378 213.791958
21.082456 6.685796 10.188857 -44.265497 -15.291388 213.807322
-1.145547 -32.226882 9.221282 7.073750 -30.739084 -186.393366
7.457911 13.509002 6.106867 -33.530372 -31.763089 210.198945
48.258821 -33.680819 13.930107 -43.558662 30.709754 213.809409
-1.372468 -0.974588 -20.153383 27.832297 34.775151 -239.307833
25.831165 -16.797380 13.018955 -33.553837 39.723232 213.809254
35.550031 -22.238259 -6.114926 40.423689 47.388966 213.809408
0.099135 -9.334295 46.313770 -29.746898 31.411484 11.290280
46.304002 -42.803272 30.290558 44.673181 -35.401433 213.809409
9.646745 5.462213 40.022234 -17.271575 30.048143 212.719576
24.256036 -15.929335 11.954750 16.729915 6.374152 213.809041
-2.554415 -25.558891 -8.268379 -47.722416 -24.390060 -651.387206
-5.582623 6.814026 2.603874 41.174816 -18.510278 -4323.572907
8.625830 30.379953 9.925211 7.868449 -7.578335 211.903979
2.023059 -27.209571 -47.526786 7.106976 24.197897 143.141515
32.594384 -12.087206 39.194684 37.213552 1.565613 213.809405
24.389642 -19.770554 -44.775230 -13.345191 6.067088 213.809067
-1.904864 -24.485539 -45.616802 24.645235 29.407740 -392.565344
24.084966 -6.741275 -0.678169 -17.502263 47.351521 213.809005
-9.122593 18.498746 31.544945 45.387927 -23.981241 -31272.554625
31.072497 -26.192010 -21.875643 31.301661 -19.939449 213.809400
3.475757 -33.954907 -25.567463 43.532288 37.945448 181.896190
37.221392 -8.314976 3.169040 -42.606426 11.394386 213.809409
30.328793 38.833153 14.394548 28.879404 -23.901295 213.809396
-9.850036 -24.065933 -9.505358 33.829933 12.381670 -46668.408608
39.186209 30.156372 19.558205 -22.490014 -38.192318 213.809409
19.793018 -46.502037 -20.934192 4.805281 -34.328120 213.805182
14.117361 20.395050 45.084395 39.598894 -26.998958 213.715032
16.245102 -6.863023 -18.005513 -47.242234 -34.101681 213.779952
0.967702 7.564028 -42.520846 -43.056139 15.362491 87.905101
28.179213 -49.225598 17.651658 19.959095 -19.783545 213.809366
7.053593 -6.874638 -34.688624 -19.906324 -20.438799 209.304829
31.600551 31.242330 -40.261232 46.456868 -16.495001 213.809402
31.918858 27.316465 -40.013148 41.868224 32.672534 213.809403
27.271819 -43.812431 7.515415 -20.758858 -39.592570 213.809338
32.783026 -25.580146 -11.082309 26.824948 -49.487759 213.809405
31.174964 16.755634 42.872051 38.946052 25.867196 213.809401
15.475446 35.665508 7.268127 -31.786263 -40.770165 213.764524
6.527349 -7.472670 48.822769 28.692931 -41.717804 207.801511
-7.161092 -27.326937 -42.629687 33.542548 -44.681798 -10549.551870
4.421566 13.417586 -10.117103 -19.581129 -47.269793 194.790408
8.431299 18.737091 0.016510 11.615419 -29.971137 211.689948
11.447026 -7.754270 14.937431 8.484701 -33.883830 213.402496
16.664639 -48.743763 -31.916379 47.180665 -44.530097 213.785995
37.398192 -30.855675 -49.241819 17.594814 10.489470 213.809409
-9.546157 -18.845318 47.634784 12.510949 -10.066050 -39485.942846
-5.806600 36.599974 49.467677 7.853639 -9.940703 -4915.231572
45.473836 -45.889443 -33.025884 -33.400908 23.475858 213.809409
5.321405 48.465887 22.678395 2.006119 -36.458688 202.186095
16.505175 15.755117 10.752968 28.851661 12.872846 213.783860
32.894973 12.631989 5.539258 30.319960 20.159224 213.809406
-2.626026 45.809876 30.120694 -7.745072 -16.979498 -685.965523
35.672783 22.969654 32.569372 -22.738447 27.431510 213.809408
6.871966 42.422578 -24.327644 -21.045321 6.640664 208.834099
32.007564 -39.003082 42.256398 -24.994908 -14.492094 213.809404
33.648269 -40.804107 -44.779291 -42.947124 37.850985 213.809407
31.328325 -3.483584 15.324977 -46.637859 -21.023510 213.809401
-3.785074 16.479937 -14.235740 22.699062 -9.199852 -1482.854695
47.303822 0.703768 26.700491 30.192315 27.111713 213.809409
45.489385 -25.250472 -19.869895 37.917141 -37.483223 213.809409
10.663124 -32.633725 36.868975 -23.084310 28.444037 213.184517
36.040155 -22.794245 40.021450 -45.039824 14.737506 213.809408
0.105057 8.712131 49.116532 -44.834193 -22.720991 11.945466
18.067955 -19.629924 -43.191681 20.721452 49.332535 213.798546
36.716662 -34.181399 39.152638 -4.431218 3.047716 213.809408
36.015024 -16.853768 -22.872285 24.983607 12.287655 213.809408
-1.436451 -19.469359 -38.629795 -14.466365 -23.855817 -255.454281
0.492440 -27.644842 49.917183 -25.649273 -49.963311 50.507041
44.255431 -38.780405 42.239252 39.899600 -7.217197 213.809409
18.435593 -18.398870 -28.181094 6.858261 -7.434014 213.800525
49.620779 24.787238 -37.297197 -4.208956 15.310283 213.809409
8.372836 36.876209 15.108966 -42.845027 9.182667 211.621043
17.011331 43.652693 44.474052 -9.045720 34.472844 213.790041
41.118057 -15.584004 -23.800415 -43.134178 24.357731 213.809409
12.683424 -31.202854 -23.043802 34.603220 -40.121366 213.602559
-8.020462 -16.882395 2.426476 -20.692116 -3.384775 -17012.320331
3.524219 -6.974188 -17.585811 -1.041419 9.288918 182.731409
41.337168 4.371528 -17.521630 -18.328238 -30.505080 213.809409
-1.393534 23.247912 41.478336 -30.261888 11.606958 -244.561709
9.755762 -39.793199 19.931967 13.553334 -9.904464 212.782692
0.638706 -20.370202 41.111319 41.733498 24.605229 63.068720
7.069114 -36.213161 12.927815 46.911504 -40.224207 209.342928
30.957024 34.536771 38.561482 8.027002 28.671706 213.809399
41.819118 19.032174 45.862798 27.396021 -0.381071 213.809409
42.931497 -16.582397 -40.154685 23.701903 -3.954325 213.809409
5.426149 43.450228 27.471556 30.561722 -43.047360 202.833606
16.183269 -23.322949 42.667246 -8.865005 12.991888 213.778939
26.959610 3.264048 -19.103300 -33.921771 22.951668 213.809325
8.986313 31.379244 -9.283318 -32.638498 -16.352886 212.245110
17.602561 -21.027918 23.393867 -46.971048 -30.916189 213.795395
8.671621 4.852945 35.006716 -29.905749 3.176982 211.951133
14.429895 -40.419017 2.055665 -42.018843 -17.195743 213.729869
15.888818 -34.419033 -19.893999 21.400062 21.121778 213.773611
24.678221 -39.905685 25.374144 43.582416 -15.246726 213.809117
31.453554 0.129191 23.417502 -20.024613 15.140431 213.809402
42.671866 15.594186 10.644810 15.837964 -20.463069 213.809409
-7.291140 -17.492898 17.600988 16.537533 -3.212304 -11343.460355
43.449471 -37.703824 37.258081 -14.059545 14.388635 213.809409
49.632827 1.293986 -26.888404 -41.075285 -32.763353 213.809409
1.646321 21.744749 14.587796 -28.376356 41.639458 126.961685
0.406872 27.574896 -44.539752 34.306903 -22.629149 42.678425
-1.061101 19.536643 -1.631124 -2.832297 13.210898 -168.319970
31.004865 -27.462298 -11.524908 -47.861740 -3.368838 213.809400
5.562890 10.704465 19.790510 -16.698755 37.964391 203.624950
12.572047 11.232963 -48.904529 -39.845232 -3.600709 213.589559
-2.506005 27.560701 23.597028 -24.077070 33.234763 -628.767384
33.346561 -47.589354 17.439851 40.299069 -17.831279 213.809406
37.510823 -13.819895 -27.959146 -22.099241 -1.748806 213.809409
34.673741 41.998573 2.310566 34.175615 -0.875508 213.809408
-3.243085 14.065574 -28.729500 -32.605660 -27.498151 -1047.395657
30.057371 17.600694 -9.919325 42.972710 -2.161568 213.809394
3.812977 16.349198 -39.125905 1.246085 -18.964166 187.273966
4.356395 -45.946083 -32.891940 -8.450069 -19.956188 194.099878
-7.026165 -35.580943 5.307878 -22.308234 16.073991 -9783.445433
22.848932 38.582269 -14.800945 -15.653551 17.854943 213.808615
24.555729 35.678216 42.457836 -11.413096 4.947184 213.809097
41.733573 4.734100 2.077232 -43.701084 37.441290 213.809409
7.396767 14.578430 -0.798777 6.349084 23.300499 210.076094
-9.735814 26.432110 -45.523025 -25.836760 -6.533262 -43827.675512
-10.913025 -49.409415 -7.999658 -13.112022 48.212679 -83662.720478
1.151947 7.251165 -20.343473 -33.445966 -24.606683 99.980503
41.624307 49.073052 -40.388680 -19.371464 6.930854 213.809409
42.657880 -13.806050 10.349860 28.130638 32.137425 213.809409
47.807519 -4.296616 47.249627 -33.572350 -7.041097 213.809409
7.650890 -26.939415 13.277211 -36.460951 -46.343539 210.560786
7.279617 -16.636349 5.258978 12.782178 21.827061 209.828917
35.098731 -27.564832 20.474841 12.895782 32.259377 213.809408
0.413029 10.222525 -10.016678 -10.811718 -19.080838 43.254002
14.006952 44.814454 25.751857 -40.811203 18.271362 213.709154
-9.699950 -42.662319 9.712097 43.309402 -36.900652 -42971.744561
49.689361 18.924112 11.692457 0.336595 -22.005523 213.809409
2.504938 -15.859579 2.302582 17.773147 14.443871 159.522166
3.329052 -38.094791 -36.684045 30.696169 1.878494 179.228462
9.431669 -28.104972 -18.450241 -38.625058 -20.653979 212.583451
-4.187813 -27.774617 -7.168249 -29.654092 -44.875200 -1901.197056
42.982283 -2.573525 -11.543169 -16.110771 -31.257555 213.809409
35.188949 4.335310 -45.067099 -36.407121 21.414288 213.809408
33.727850 2.915726 -21.999754 36.817152 17.244216 213.809407
12.078315 17.746395 -11.881503 44.173177 33.051869 213.521359
7.953733 2.720754 -3.979930 -27.718767 40.263504 211.056923
24.594824 -0.518264 49.180052 31.163516 -19.345843 213.809104
12.995134 -37.626397 -10.630750 -10.502379 -26.508606 213.634998
-6.031457 2.401714 34.639136 -13.779492 -39.569463 -5586.835675
15.700203 23.643927 -38.192084 15.554061 41.021772 213.769719
9.288916 17.015024 -0.865747 -17.843593 19.921911 212.483840
2.924121 -33.298723 -21.086614 46.838789 48.763387 170.650178
9.832676 -39.464997 16.462401 -2.383431 -17.390025 212.825010
36.979640 -2.813314 44.986428 -40.490545 -10.380604 213.809409
29.254757 -23.975382 -33.538592 -2.196360 27.156553 213.809385
-11.038389 -30.124254 -42.141929 -12.383183 -18.921109 -89618.990747
16.499943 -24.123377 -16.943739 0.470987 -3.635923 213.783787
18.030308 14.258775 44.105444 18.716773 41.701905 213.798320
44.557772 -40.103989 -36.374338 -21.102436 23.418986 213.809409
14.067233 11.205069 39.336943 6.616064 -0.253340 213.712408
5.276629 45.099356 -15.221979 -23.316936 -31.076617 201.897772
-9.326769 13.157978 -30.429698 -45.143511 8.972979 -34994.675448
28.494555 -39.222190 29.224865 -34.406135 -48.864859 213.809373
21.296654 -3.101513 1.867047 -37.918870 -24.448472 213.807553
16.461951 7.675439 25.190874 -12.520613 -18.632215 213.783249
23.011335 27.689611 -18.239917 -47.592110 -38.255535 213.808683
-9.911428 26.376737 -42.668773 0.621332 -20.895486 -48270.239574
9.408981 -39.360236 -42.038516 -40.054608 15.457568 212.568136
35.228388 0.084951 2.761157 5.636229 -32.487249 213.809408
13.226225 -44.401039 44.163013 -49.690541 -19.261642 213.655716
-4.247244 -22.563681 48.521723 42.979034 18.208321 -1971.113815
28.780809 -21.727392 45.210437 -5.511166 -43.236341 213.809378
3.016451 3.094544 21.770969 4.542306 3.930828 172.776679
31.786707 -46.486423 11.801944 7.694123 -4.257475 213.809403
13.323212 38.989890 -2.806309 -5.797502 2.793241 213.663661
41.320428 27.551372 0.144897 -13.167690 36.542321 213.809409
-9.126643 27.981513 21.047115 -14.978164 26.027322 -31342.421603
11.804287 -27.715296 -15.301810 -20.301518 -32.691450 213.474757
17.643715 -36.079309 -9.329623 46.962968 46.693461 213.795707
-3.652244 -5.625586 2.638195 -34.242904 16.639465 -1363.901187
36.777396 32.851670 -31.538605 -47.909119 -20.642660 213.809409
35.899170 -0.207387 46.439346 -30.006619 -13.194466 213.809408
32.435497 -29.879201 31.455981 21.749383 27.539499 213.809405
33.212007 -42.483741 -48.863329 -10.992288 -45.636747 213.809406
26.595324 5.525253 16.585028 -10.683003 -47.935355 213.809307
5.843511 17.028268 -40.530526 -1.787398 -1.717843 205.074767
-7.615661 -18.961596 10.503114 -35.393405 17.633712 -13589.453944
29.826652 -7.916771 5.290674 4.509865 -39.926085 213.809391
-6.071138 -19.279455 -14.343792 -13.746580 6.978467 -5714.174311
35.902054 40.512742 -34.247368 8.498517 28.187190 213.809408
48.492590 19.542589 -44.607821 33.007752 -10.122958 213.809409
19.124470 44.538006 43.479111 -23.648552 5.615814 213.803315
8.157205 9.803672 18.124855 -42.951666 16.958719 211.346960
8.165964 49.522420 32.948295 -18.959619 -43.123338 211.358734
5.923323 -4.125373 0.831440 -14.830941 -33.709638 205.448052
-6.364278 -21.993700 42.834833 -6.565535 41.714365 -6745.644135
33.389692 -37.432917 -39.829369 49.420175 15.948821 213.809406
22.293651 32.446884 -10.950146 43.551919 -10.540393 213.808333
10.929673 31.741457 43.326614 41.456140 -25.314054 213.269331
20.273367 42.168070 -19.158745 -9.405090 -24.152923 213.806159
49.407608 -5.580161 23.204084 7.975553 42.911677 213.809409
24.204590 12.189671 49.904869 46.146101 -12.246544 213.809031
34.675708 -14.872718 27.260479 -0.060737 -13.862114 213.809408
29.840985 29.379198 21.723456 31.342104 25.890818 213.809392
31.856433 -6.944615 -13.044650 33.141673 12.224428 213.809403
28.867741 -7.674465 -3.122855 -46.515831 -24.365304 213.809379
7.022457 43.760747 5.327513 -37.667955 -9.610979 209.227420
42.603166 -46.310441 1.179665 8.252964 7.690369 213.809409
-7.689146 -22.365803 -19.360465 26.496436 3.152351 -14155.843506
33.595931 -15.995487 -26.050746 19.909014 -22.906054 213.809407
40.353875 43.000551 8.060129 -41.875447 42.624365 213.809409
3.402181 -43.438788 14.142959 -26.410094 -44.853235 180.585022
25.153829 9.744814 -49.052990 -11.696232 25.151878 213.809184
1.973140 18.929054 -6.112608 40.875803 -38.596605 141.184444
8.675052 -26.882345 41.402995 -11.227242 -12.949045 211.954619
-3.678446 45.046834 11.929453 -49.538021 9.360559 -1386.686476
-1.360205 -26.115793 49.165958 -48.959514 -39.257623 -236.277289
6.541455 -49.268875 35.766552 24.167366 -41.959144 207.847709
40.065858 18.426470 -34.364342 20.317081 -6.595290 213.809409
-8.717248 -46.491999 17.811763 8.351067 -0.668744 -25008.646412
28.039362 24.828185 35.288480 -39.478049 -24.063120 213.809363
25.338065 6.605337 -12.062671 28.041709 -42.619509 213.809206
12.493022 -3.697694 16.219095 -26.205979 39.634371 213.579843
32.826602 3.988665 -19.983945 -16.501280 21.783827 213.809406
45.665918 -6.701421 -3.430408 -15.722186 27.180088 213.809409
25.670904 -24.278994 29.962576 -39.951272 20.715958 213.809239
2.542275 -29.235224 -17.776950 21.907465 17.715597 160.620133
18.899765 -4.646920 36.848078 -4.669043 -44.405768 213.802518
21.130501 26.491957 -12.089754 -32.828146 -5.964883 213.807376
-7.077615 16.146438 42.309028 41.610325 17.399573 -10068.921078
1.641583 34.472323 31.520874 27.097218 26.179923 126.736202
25.611974 19.720017 -22.509850 -39.223338 2.136703 213.809234
28.531880 27.810414 -21.531749 35.097225 12.835501 213.809373
18.160176 32.274504 40.980339 34.844354 20.151155 213.799080
22.032915 -37.919538 41.591766 -2.784917 11.054418 213.808168
-10.143821 21.692490 -45.584495 35.295065 38.971185 -54845.388730
49.816347 -30.904297 43.405472 8.595863 32.355442 213.809409
45.825059 13.728297 -28.539322 -25.102713 -25.181743 213.809409
40.182217 -45.749937 -9.314767 -48.821655 39.923911 213.809409
15.535981 1.847527 24.423091 -3.368265 44.192305 213.765987
45.597117 3.149470 9.661359 11.999417 -43.348159 213.809409
9.399083 13.136489 29.522707 -18.699256 24.827888 212.561394
24.842033 -20.710324 -5.527221 11.147303 34.149410 213.809142
10.781564 6.451335 0.013095 -37.405019 -17.319990 213.223734
19.466501 40.994746 -48.705920 16.668092 22.951841 213.804356
5.277202 -5.110564 13.571994 46.022134 -47.316256 201.901509
10.213573 29.140709 3.322517 42.711063 31.469115 213.010226
5.614141 -16.310729 16.951052 -24.072645 15.962661 203.906617
36.360003 -22.840998 37.611037 30.828603 -12.197784 213.809408
38.826145 -27.058071 -45.924936 28.133255 14.241073 213.809409
17.453255 -20.819427 11.929274 -15.175189 37.390449 213.794202
-4.021727 -29.766857 -20.968287 25.020746 -6.146610 -1717.444733
47.778253 -23.107931 13.777801 -27.132109 -28.185399 213.809409
0.118813 -6.788370 -3.250471 -37.933292 17.316153 13.459333
13.848261 -31.400761 -1.454095 22.531999 20.591684 213.700059
16.368626 44.770734 3.383754 22.321155 14.011114 213.781878
32.418358 -24.015221 -20.842092 -29.877409 -19.881141 213.809405
-10.201655 -29.404133 19.865742 -43.941391 42.261546 -56615.826484
24.190749 -14.979823 43.282545 -38.922146 27.871905 213.809028
32.292777 -44.288627 1.479855 -39.233165 48.630240 213.809404
1.358737 -43.297188 -17.981229 34.081579 -5.911188 112.159665
19.279889 15.533279 39.886938 20.762149 33.863599 213.803812
45.724473 -10.252884 -15.694160 -6.706664 12.116149 213.809409
-10.908883 25.072445 -32.052255 36.518406 12.913551 -83472.823167
48.137205 -38.188151 -47.329298 32.325794 -13.980926 213.809409
18.098635 12.933833 -49.689517 -25.910814 -17.165196 213.798727
8.574498 -22.476721 -24.127198 -21.296563 -36.522065 211.849695
43.896412 -37.710324 -21.916878 31.039278 19.360671 213.809409
13.941000 -33.852427 -47.798919 -7.555195 -0.905267 213.705470
12.659209 -22.932976 45.772425 -43.461820 20.645247 213.599799
21.902716 26.811591 28.595727 -39.604011 12.530965 213.808077
48.784285 1.388767 -4.164138 4.479799 1.130317 213.809409
35.143684 36.674690 -28.015908 35.956658 21.987381 213.809408
49.433325 -19.009993 5.796631 25.794115 47.551701 213.809409
29.785574 16.949386 -33.091411 -27.805574 -30.735067 213.809391
46.817493 41.510879 45.091624 -20.806573 49.545171 213.809409
-2.098529 -9.749874 17.042743 -14.428825 2.988323 -460.358346
6.794664 39.558024 48.644399 -28.959745 19.386370 208.619115
5.807460 49.752872 41.327549 44.526365 -9.603032 204.900737
25.904039 -13.588844 -41.814938 20.798046 -29.576538 213.809260
13.119986 -17.614967 -47.147175 36.129252 34.869606 213.646516
-6.588148 -39.748423 -40.211466 3.694531 -5.843026 -7652.674523
36.800086 21.812970 27.056700 17.507707 -5.016013 213.809409
21.356667 39.538588 46.192864 27.379525 9.380412 213.807613
37.225949 -10.675869 41.187885 40.049562 28.338667 213.809409
-4.135999 -11.481028 21.136580 6.461734 -0.986938 -1842.069412
9.955362 -37.337561 30.112274 13.305520 -20.746078 212.888931
0.177466 1.024306 -20.298696 23.612470 0.872679 19.787879
3.384282 41.056773 -12.891194 -5.722480 17.633837 180.257995
26.260580 45.592208 -29.281666 -18.355239 -9.625030 213.809286
37.474272 12.240891 31.538595 45.112732 -25.164872 213.809409
37.001306 -5.032842 44.736998 14.544565 18.213316 213.809409
8.466297 11.385872 16.573048 -25.037634 43.664916 211.730154
1.943826 -16.898169 -2.396435 -44.589569 47.114368 140.010033
40.252613 -2.182210 -5.048206 -3.594428 18.632265 213.809409
40.927424 31.504526 -40.195528 -40.322912 -46.088135 213.809409
17.511816 3.007035 24.768781 -39.273473 36.183546 213.794681
6.796121 6.672611 -30.544994 48.868330 47.578402 208.623253
26.838068 40.366649 -23.915068 -13.474895 28.569491 213.809319
20.627565 17.493896 -0.541943 -42.700233 -0.099694 213.806732
34.223869 28.034693 41.517297 18.724596 47.578155 213.809407
30.242790 -0.174704 19.659845 35.468682 21.863591 213.809395
6.356112 -43.742384 28.207252 -23.228160 -40.539303 207.211307
2.285344 11.466673 -9.900329 39.530173 27.091227 152.590312
0.901355 -9.935640 35.184237 -39.400651 13.083728 83.249789
45.072152 -14.901838 10.449246 2.772951 31.404822 213.809409
29.334582 -23.736374 -3.203765 -21.557737 -16.755718 213.809386
6.261906 13.136745 -2.341714 -24.845669 -39.047418 206.862232
15.845359 -3.489927 0.093976 -22.978325 -40.932067 213.772750
19.628137 -34.322761 2.038744 -24.861346 3.797463 213.804783
12.239546 -22.211342 40.395434 23.309451 -20.578875 213.545685
44.664704 30.025296 45.753226 -34.955453 -39.675442 213.809409
25.841834 8.499154 -35.153383 -32.378512 17.740276 213.809255
27.819405 37.707878 -18.479797 -15.394922 -31.973725 213.809357
33.741625 33.875756 -12.453454 -40.132416 19.183433 213.809407
3.241249 -22.062056 12.904599 -32.588871 -27.265283 177.526309
-9.891182 -22.236558 23.046047 -12.104655 -21.370113 -47736.011319
16.780925 3.153488 -33.751479 -23.151717 3.845711 213.787439
36.883831 -27.185975 14.573999 -33.250467 -0.719345 213.809409
47.350846 16.844716 32.883379 -12.612774 29.464506 213.809409
-6.468687 -42.064374 -0.437370 41.476012 30.009363 -7154.863698
42.366230 29.973474 -6.125352 47.711528 -37.057937 213.809409
-7.888310 19.957361 38.653005 -36.686045 -19.452987 -15810.526926
11.002048 -1.559642 -24.285289 -15.182175 22.645876 213.290303
38.596624 -34.067823 -38.377114 40.138151 49.974932 213.809409
30.212694 -7.990071 4.415672 31.798952 -33.957330 213.809395
28.174314 -30.289765 45.989111 -28.836457 -20.808057 213.809366
-2.598348 12.764582 32.491060 -0.889865 30.223469 -672.440253
-4.451370 48.176636 -46.579559 10.766886 -1.840994 -2229.336457
14.669855 38.194625 -24.530564 22.176970 12.133545 213.739657
17.819685 18.220173 26.554677 -4.809329 38.701867 213.796965
41.161015 -36.512351 33.858576 -21.226556 24.682399 213.809409
5.866144 -44.914315 -10.174002 28.257291 -4.067258 205.182287
44.937672 33.498608 -13.697642 -49.992249 -46.577859 213.809409
33.179058 -35.578951 -7.582248 39.226804 -33.960198 213.809406
0.757345 -37.192117 -21.724348 -34.737033 -6.892159 72.544444
30.737699 13.340587 -46.261287 41.959883 17.325640 213.809398
49.905688 -34.299647 41.753474 7.996717 -37.053472 213.809409
0.866505 38.160413 -21.550036 7.604166 22.083131 80.736019
19.265817 4.688161 -17.636382 19.785243 6.144403 213.803769
-7.552861 31.583217 22.558885 12.920276 47.295950 -13123.143774
-3.032348 -34.313499 29.542027 41.146432 -21.065672 -910.022546
21.747472 7.989135 -15.225944 -43.807502 36.350501 213.807959
47.174258 -8.734437 17.642431 47.151416 -8.449959 213.809409
30.742181 -11.383411 -2.306125 24.529222 5.871780 213.809398
21.434712 -7.329878 43.362125 -21.588949 25.429625 213.807688
34.912361 -23.208581 -31.399189 43.151691 28.964827 213.809408
8.174695 21.148841 -8.711124 -14.894362 40.602400 211.370416
-2.057465 22.398549 26.823919 28.381894 -27.395383 -445.377414
33.578543 33.802916 32.229919 -1.158183 -41.564074 213.809407
3.522186 24.022440 -47.024809 42.114247 -14.270194 182.696808
-2.005061 28.138721 -40.397799 -16.269689 20.062077 -426.742279
1.088390 -38.339062 42.757163 39.826204 -24.131595 95.951814
27.199723 10.861177 29.852879 -23.845470 15.589331 213.809335
15.202611 26.621869 -22.634024 33.781439 24.978369 213.757297
35.133805 -5.535665 -13.195973 31.924254 28.617873 213.809408
14.914903 17.097898 -9.464857 45.971408 -30.949066 213.748411
33.179371 3.710923 10.008984 -21.559322 -46.890770 213.809406
29.935942 -14.169043 48.460758 -24.365255 31.938020 213.809392
2.028587 32.250920 47.129102 46.079687 -2.796341 143.354984
21.948990 18.146231 -5.884666 -6.812903 -12.725234 213.808110
-9.455076 16.668558 9.454522 38.425892 -20.501230 -37555.682441
-0.316358 15.320517 -34.007971 29.278920 -11.867906 -40.412591
-5.377119 13.963966 44.860909 35.920624 -16.098838 -3840.947768
-11.047205 48.123198 -9.821169 8.211068 28.288909 -90053.430303
16.725961 40.020808 48.336472 -34.305839 -32.104071 213.786768
49.081906 -26.950352 17.661693 0.797408 26.713142 213.809409
27.477640 -34.039280 -7.913851 32.217788 0.596455 213.809346
16.231958 1.731215 26.405766 -22.444277 21.000239 213.779740
46.843172 -18.689516 29.682720 -22.886078 36.902817 213.809409
4.306712 43.445050 -8.274712 -4.580051 45.959644 193.556656
-7.702034 28.421964 15.658898 23.025759 15.416503 -14257.551153
12.338866 2.865856 -46.989893 -23.094251 30.223258 213.559636
12.211215 1.230153 24.694153 16.967431 43.185632 213.541565
47.163905 5.111085 -46.800859 48.684295 -16.887793 213.809409
24.855536 -23.763569 -45.436119 -37.292045 -2.583233 213.809144
32.235973 16.832141 14.807766 27.478936 40.470521 213.809404
28.410356 38.724833 -44.227603 -30.511322 40.546269 213.809371
-7.926177 6.092804 -28.659983 5.253954 46.792203 -16146.052521
18.060717 -5.433665 -7.112256 47.799891 28.272616 213.798503
24.543537 5.216307 -4.222223 21.083681 -32.724762 213.809095
33.603592 31.221160 -1.234914 3.855628 -15.014126 213.809407
-7.784165 -16.860102 -6.862635 -3.284711 -18.538798 -14922.807922
20.453849 35.077605 -29.466891 7.225019 6.614403 213.806465
44.897426 -13.520912 -8.568834 -26.298235 41.468486 213.809409
-5.012536 1.521715 2.797774 22.841683 25.984538 -3107.560305
21.409105 49.950529 12.359498 -1.209341 -45.355557 213.807664
0.402727 15.154841 22.292183 -19.665088 -20.936231 42.289796
-4.457613 14.599279 37.373116 15.594174 -22.995402 -2237.697524
6.922968 45.243419 -6.781951 -42.300616 -41.122996 208.971041
-5.054766 32.379460 13.002533 -45.332118 9.978991 -3185.211036
23.599841 42.797980 12.473022 -40.041876 18.179527 213.808883
-10.884924 23.003724 -45.944309 7.639030 -3.714284 -82382.761535
25.908838 16.443438 22.612866 1.492433 38.563521 213.809260
21.570290 19.632807 -33.617400 22.497667 -20.105483 213.807811
2.777240 22.304716 -9.078893 -34.931711 -23.744638 167.037848
42.572437 48.862687 1.669477 39.606833 -7.266622 213.809409
3.283662 -19.465134 -29.599401 -13.316678 28.673813 178.358745
36.465178 24.568641 4.373354 -4.634544 -30.681679 213.809408
15.651527 -21.283258 -27.384567 45.321662 35.418712 213.768647
36.019499 -36.503708 1.212932 -11.146899 35.726156 213.809408
11.481673 -6.843408 15.077131 24.016947 39.434160 213.410139
12.888831 24.611892 -46.574406 48.605877 24.831432 213.624551
1.284197 -27.977333 -37.181845 -24.896551 -14.643084 107.927537
2.120242 -42.870782 -24.228113 10.387850 4.650595 146.801613
41.446436 45.141064 35.928230 -3.572273 0.003706 213.809409
-0.245448 -48.590178 -11.422217 -10.984637 -31.656944 -30.736602
25.845272 48.634063 -2.746167 37.321658 -43.341861 213.809255
-6.934942 -26.588322 35.408193 43.992276 42.630502 -9296.629479
8.842476 23.739693 23.725328 2.289072 -9.817019 212.117004
1.100267 16.717404 -25.360002 5.818543 20.239859 96.715345
3.677793 5.252771 -11.873797 -23.283655 -39.228395 185.236502
20.935382 27.845498 27.188963 17.410080 18.753995 213.807147
41.985824 0.205874 9.700379 5.216500 6.000561 213.809409
-5.919682 32.723801 14.943925 -43.322828 -15.517184 -5242.657161
12.333103 -39.837482 -46.791327 15.373385 44.568456 213.558848
30.473783 36.382760 -28.709325 21.262429 18.824611 213.809397
-3.286338 49.746560 -10.959144 47.245268 -46.321583 -1077.603839
26.536803 -35.695836 -22.198296 33.160410 31.921199 213.809303
7.684203 6.321986 -35.957079 26.659429 39.879519 210.619472
0.674077 2.939529 -12.842661 31.639059 44.617280 65.958407
45.054563 17.226662 14.745264 -21.251850 14.609379 213.809409
4.587268 -4.312069 -33.825535 -32.746203 32.605925 196.439145
41.873858 7.531566 -10.348088 33.231228 12.389971 213.809409
11.637469 10.711255 24.648331 -20.600892 49.670692 213.442769
-2.359115 -41.342233 -4.869654 -30.557168 8.666124 -563.688569
12.265162 47.968231 11.853184 15.361349 -43.749841 213.549356
40.944512 -25.454415 45.068726 -31.034607 0.886152 213.809409
0.453041 42.569115 41.267311 -16.202242 22.832076 46.947950
15.802530 -17.403572 39.904254 -33.943305 12.556846 213.771880
13.810660 33.715854 -23.728920 -21.849769 -47.388886 213.697786
3.503022 -46.484283 -10.882197 -21.790652 40.603921 182.368815
32.704514 -13.262029 -46.891360 -19.411648 5.874231 213.809405
4.019592 -21.696755 30.426503 42.469807 -2.903769 190.110868
48.738778 9.004611 24.309711 0.243440 -2.691952 213.809409
33.982956 -11.323240 -28.623444 -24.518153 -36.537091 213.809407
23.549649 -39.366558 46.002388 -35.503916 12.802757 213.808868
43.777143 -18.502345 15.693496 2.287526 -34.535019 213.809409
47.454952 26.649154 -37.462176 -35.595478 -18.371627 213.809409
15.031952 -43.060397 22.982819 -27.834464 2.539651 213.752195
-5.843606 10.595712 23.296884 48.731870 1.027417 -5020.161061
32.269300 -2.935011 -16.516286 5.995546 -36.054440 213.809404
22.408334 -47.366733 31.528275 20.993169 -32.583769 213.808399
35.593790 19.187985 -19.145210 -17.194848 38.496197 213.809408
34.432602 47.223441 22.350838 10.098332 -5.762688 213.809407
-7.549959 22.820577 -13.357721 -13.433412 -42.277223 -13101.974703
26.544629 18.054632 48.549541 44.995817 -19.003871 213.809304
19.696519 -46.508671 1.640120 28.938221 -33.419763 213.804953
36.354233 4.011634 5.952704 -20.790385 5.418975 213.809408
23.778513 43.696531 -42.252090 28.700082 21.510786 213.808932
29.221410 -34.597641 -4.171319 -28.896861 7.191908 213.809385
42.165665 17.093991 40.407858 -3.450343 27.985589 213.809409
16.786979 16.884814 -33.477703 -44.109617 48.717306 213.787511
49.617692 16.445471 29.190422 -42.381959 -15.767425 213.809409
40.192322 11.203662 -39.745962 -21.805538 -39.635974 213.809409
29.846643 -2.568738 -32.653220 -24.686225 10.002729 213.809392
0.960268 8.530704 -8.920703 -9.444025 25.834177 87.391849
13.968846 -12.640277 -17.156180 41.286410 -31.100818 213.707042
14.319259 0.217142 -46.690121 48.116557 -47.857580 213.724904
48.350096 -29.132406 -5.341844 26.224260 -7.155568 213.809409
34.230850 -7.321501 0.603128 -21.441819 15.573726 213.809407
25.465258 -1.493398 -45.791489 -23.135559 35.341347 213.809219
25.419929 -49.867886 45.831386 37.114432 -30.766132 213.809215
-2.456716 12.342411 -11.534317 -19.745902 6.328721 -606.344395
27.763513 -33.286248 24.181404 -26.864171 -30.101682 213.809355
48.230563 -9.965928 -41.348529 -23.675692 19.224351 213.809409
45.494792 -31.274831 19.325856 -1.342257 -43.572182 213.809409
13.916544 42.976818 -49.408289 -35.482178 9.077359 213.704070
8.059878 -45.844340 -24.886665 -30.209177 39.531419 211.212251
-6.475348 13.260444 15.282276 10.168921 38.450635 -7181.774900
41.349360 -28.087457 -20.038850 45.364212 -6.014827 213.809409
41.844607 41.570874 12.007836 -13.523979 -24.223417 213.809409
18.211759 30.214985 35.836944 -23.539792 -33.794553 213.799368
-10.289556 -8.278314 28.353812 43.757169 1.674311 -59416.303875
26.319342 -37.805038 31.754837 16.372336 -10.977584 213.809290
46.926192 -8.099436 -39.616880 22.161170 -17.288510 213.809409
16.034397 45.652352 -7.526147 27.410364 -17.006782 213.776352
29.911441 -44.000748 -15.710616 -11.896698 -7.865831 213.809392
47.332824 32.188334 26.252455 -7.362247 25.184046 213.809409
35.474246 17.868328 -23.406658 42.656194 -14.148794 213.809408
25.449628 -5.808064 -2.661326 8.172296 20.948769 213.809218
6.607553 -41.071675 8.823044 -6.737967 42.694630 208.059499
4.368084 15.235676 16.978688 -14.334006 -4.734898 194.225550
16.902046 38.422098 20.258030 -8.392995 42.137836 213.788848
32.669049 -10.018780 -23.645642 1.624010 20.885494 213.809405
25.157990 -2.545923 48.791610 -39.020639 14.664139 213.809185
-4.375642 -47.449781 -35.505722 -12.868618 3.415491 -2130.158583
22.649051 -16.334425 -42.584640 26.620651 -9.338565 213.808523
27.526203 20.127715 36.961878 -43.480773 -1.601003 213.809348
47.032467 -25.405940 3.555233 35.068862 8.350908 213.809409
40.704224 10.535424 16.833573 23.063652 16.474066 213.809409
19.356146 25.884522 28.679224 -37.345740 -1.330702 213.804041
35.847570 -28.518279 43.259600 -3.265533 -11.871988 213.809408
44.632723 13.412518 -21.434823 -32.301625 33.590330 213.809409
33.641911 -36.752652 -35.240905 -7.353410 14.877378 213.809407
42.919866 -10.975807 -40.370595 -3.086634 -31.848250 213.809409
10.487737 -2.639260 -1.797421 -14.704921 6.365664 213.121568
7.412632 35.525800 -23.892878 -40.018457 15.198104 210.108365
19.126348 -13.000705 8.314973 22.574311 -11.892836 213.803322
40.474685 -23.959018 46.870073 44.156145 41.960746 213.809409
48.677248 17.061955 44.438214 34.413722 32.838185 213.809409
45.805593 -40.691903 41.579113 -49.191813 20.119239 213.809409
26.377028 -10.455150 0.077808 -6.773839 30.839489 213.809294
23.429043 10.893801 -23.195986 27.709493 -24.982032 213.808831
48.160734 3.705776 42.235362 5.930803 -33.789725 213.809409
10.626561 -30.530782 -33.305554 22.047429 48.192686 213.171887
6.969937 -9.786879 19.718856 -46.947690 32.678346 209.093819
20.239579 -32.685872 12.006620 -39.844543 -14.184624 213.806099
15.514055 -44.527287 -47.472445 -49.506026 5.078431 213.765463
21.048728 -7.544802 38.147963 0.466761 7.342002 213.807283
17.753604 29.401319 -20.371650 -43.052716 -40.114568 213.796507
49.626199 23.637277 40.094046 22.888627 27.994778 213.809409
3.464014 -41.555807 40.149582 -18.982762 27.773500 181.690438
31.383210 17.294367 10.064634 -2.419525 10.244841 213.809401
26.801678 49.869883 7.169788 39.608652 -37.035961 213.809318
-1.480107 -45.836339 -34.958113 -14.246298 -29.249040 -266.800009
47.523480 12.006778 -3.066561 26.654740 40.906662 213.809409
35.487447 4.547613 13.897833 -29.836506 -6.323259 213.809408
32.945554 -40.191952 9.887511 17.302057 11.609685 213.809406
12.199705 -26.737210 -16.007214 32.424885 40.917265 213.539872
-1.448950 -33.935009 -21.952573 44.195553 -37.824456 -258.675113
-4.228207 39.643889 2.828299 11.733708 -11.447078 -1948.469928
1.757454 -30.865619 0.179091 -26.214382 -47.287264 132.086012
49.782362 19.846168 24.270893 39.251591 9.996317 213.809409
-9.809507 -18.743519 -1.112915 44.356548 -41.154442 -45640.052296
32.399013 -35.213339 -12.254296 11.078194 -7.397060 213.809405
-7.046443 3.010617 26.337932 34.788887 -26.282560 -9894.999922
15.398853 47.959240 47.998393 26.632211 -11.241040 213.762603
49.751895 -14.752880 48.031342 -30.981559 38.440037 213.809409
38.758554 -38.870744 -29.665490 44.772355 -31.630380 213.809409
20.151157 -21.614118 -35.654813 28.698316 28.454894 213.805935
13.593651 21.002472 -32.615530 -16.558875 -23.200148 213.683711
21.110699 3.524261 -36.427578 18.541144 27.392457 213.807354
-1.793038 -8.630544 43.456202 32.840632 39.214109 -356.570441
49.452146 38.005688 -21.639567 0.780231 -9.666891 213.809409
23.213638 13.124478 42.454959 14.667025 -42.293427 213.808759
-4.357085 35.278223 -36.465836 2.377261 -19.101962 -2106.476047
25.461757 34.137311 -22.767514 -28.752489 13.161790 213.809219
39.836827 16.604890 30.126819 3.603378 -29.939071 213.809409
47.317449 30.439684 42.631471 42.152122 -2.724722 213.809409
7.370832 4.140629 -22.340017 7.084930 17.480549 210.022730
-10.996423 -23.729443 -26.709810 1.263713 -21.707859 -87579.455942
16.562085 -46.477930 -0.404124 -8.652115 1.991089 213.784644
33.851215 -25.437062 4.314120 -32.902600 7.214873 213.809407
44.518278 23.473003 -6.001706 -28.601177 39.403428 213.809409
46.886834 -8.922941 7.171033 -31.297758 -39.746996 213.809409
24.324718 4.204900 36.785358 43.175832 -45.519368 213.809055
6.498866 43.277375 13.731496 -28.074914 -48.334399 207.707133
23.020859 39.468674 -45.377868 24.823672 -2.190885 213.808686
23.014237 -35.068230 -8.990435 15.133888 36.060503 213.808684
18.752485 35.103421 9.668027 -16.923225 -16.600709 213.801940
13.713422 -10.539345 29.077590 -15.806109 9.901919 213.691685
44.435304 3.871544 -28.778029 41.738674 -4.511261 213.809409
5.207011 -0.577356 1.302954 7.205310 -22.077463 201.435212
41.258624 -28.849082 4.469916 -12.413684 -24.713815 213.809409
20.525611 -24.576699 27.228796 2.526728 -48.251460 213.806578
-5.735069 -40.522810 5.839840 46.245693 -19.756156 -4718.337182
-3.301225 20.993159 -9.567404 -44.369165 -24.292254 -1088.167486
47.961002 -1.793088 11.084454 18.924176 31.241517 213.809409
5.645896 7.687938 11.826698 39.992913 1.514472 204.077218
33.067255 -15.016881 -20.536817 10.287319 -47.919307 213.809406
21.094994 35.492507 46.162111 21.358772 -16.322905 213.807336
34.049916 21.172933 -1.541293 -37.641642 11.464707 213.809407
4.898023 -14.580263 -44.282549 32.031352 9.488912 199.155559
0.190788 0.342881 -10.598315 -24.114814 35.148288 21.197203
-8.022790 4.205085 13.240027 19.688683 -15.370944 -17034.277886
-9.809331 -29.031356 33.846832 12.864663 -33.429135 -45635.645821
-3.941192 -15.629440 -26.024980 -12.148361 28.295871 -1634.179512
31.073965 24.957735 -42.233059 22.189678 47.892783 213.809400
19.029688 19.568602 -44.720594 26.713428 -0.914737 213.802991
42.906914 -38.692877 37.970474 7.630945 -33.426072 213.809409
16.216090 -0.543556 21.138886 8.739438 39.231600 213.779481
22.475982 17.059664 18.948617 -4.638684 -25.553797 213.808435
2.701130 41.710542 -9.904528 -45.603786 2.467309 165.048675
-4.202752 3.565377 44.596686 34.673468 -36.208881 -1918.558831
-9.787833 -27.709478 -4.047475 -25.567213 -1.421157 -45099.422861
47.711404 -2.202480 -45.994856 -43.893065 3.599878 213.809409
42.822037 -27.812626 8.554249 18.212305 8.941763 213.809409
17.371433 -17.598999 19.558062 -33.235155 16.515011 213.793505
23.448067 3.800983 -1.632328 0.592610 -16.687579 213.808837
13.453197 34.830573 11.450569 14.556923 29.366814 213.673668
23.870413 -47.250488 -42.797829 0.164461 4.124958 213.808955
-8.496461 -29.787681 7.109231 -5.019538 -19.365934 -22138.101614
47.550693 37.410035 -32.390264 -43.949701 -2.095559 213.809409
23.314177 15.195414 -41.622807 -7.610238 25.197467 213.808794
43.907625 -25.639628 -30.073969 -28.719772 -2.068689 213.809409
14.109329 -35.143274 -32.516992 30.333659 35.310812 213.714617
-5.469147 -35.863587 13.948245 17.527722 -6.530023 -4050.379869
4.587248 -9.341049 8.503208 13.821384 4.074978 196.438947
21.272044 21.773661 35.666980 13.284869 -22.738060 213.807528
7.895819 -40.088307 35.434549 -46.815703 -28.647976 210.968293
22.244325 -34.928906 22.748771 -47.953639 26.399254 213.808304
27.101074 -20.427338 -10.454176 45.532927 31.858365 213.809331
37.723313 38.292933 19.105011 36.154504 34.306822 213.809409
-1.998107 19.391276 -32.971930 4.977330 8.714348 -424.309098
-5.074974 -44.532397 2.754083 47.989758 -41.846788 -3223.007599
18.820592 11.353024 -28.750571 -15.915418 1.295667 213.802213
42.555828 45.907118 -49.390247 32.412329 -24.701698 213.809409
19.937970 -8.492342 -35.515884 -21.063774 -36.066979 213.805505
15.911240 27.109057 -43.374868 -18.682774 9.382493 213.774048
41.820160 38.305881 1.111539 -16.439780 30.092163 213.809409
-5.062210 31.768418 32.766432 -46.336295 -15.527726 -3199.084914
15.729263 3.635975 46.030563 -43.774608 -44.717036 213.770345
21.174391 -22.953238 12.521477 -32.658774 -9.448440 213.807424
9.868378 2.293850 45.502383 -40.665976 41.992752 212.844056
23.324862 -13.207673 36.268078 1.529563 -26.013264 213.808797
11.069020 19.566923 -1.764961 11.558683 -10.954525 213.308984
44.421828 -18.892038 6.958520 16.082753 28.718531 213.809409
47.095925 -30.166812 -23.186484 5.946515 -35.357667 213.809409
4.986683 45.060609 3.819277 7.585378 31.033469 199.849561
19.615183 -36.245600 -26.850752 29.706726 -34.960664 213.804750
31.680950 20.052320 -40.745409 15.373359 -45.285483 213.809403
47.760102 -15.187095 1.442407 45.994401 -34.161331 213.809409
14.057302 -12.389735 -41.153873 18.918218 -11.700968 213.711879
20.408101 -4.032501 6.462902 17.774096 -6.497490 213.806390
-0.274921 44.380851 9.048682 7.119591 15.385674 -34.712832
5.399130 -13.725813 -14.890365 17.380629 18.358666 202.670116
-8.675146 -39.316344 1.878462 10.082428 37.298799 -24434.166131
43.209904 31.214727 46.412123 17.735123 1.609765 213.809409
5.405839 -45.441809 -9.627709 -16.849235 1.037422 202.710936
11.510813 -28.305579 -29.300115 -12.394348 -31.069924 213.416455
12.065618 -4.504559 4.718169 -35.642174 39.384100 213.519351
35.597304 -26.823155 19.814208 29.041099 5.866291 213.809408
32.616896 16.394162 37.836076 37.016956 11.220345 213.809405
44.016278 -32.616147 20.118957 6.540817 3.529851 213.809409
46.671870 -33.137911 0.325833 -10.309332 -49.673022 213.809409
41.579984 47.220676 7.674255 33.717459 -18.769301 213.809409
49.020769 -20.253114 -9.902025 34.695526 40.648199 213.809409
32.046377 -29.359198 -17.243890 -38.232637 -18.866336 213.809404
27.173223 -1.326964 -26.844874 16.915437 42.941821 213.809334
46.751134 -26.544536 42.477273 17.547052 8.230178 213.809409
9.384982 -49.899548 25.565446 -28.775082 -4.653174 212.551726
43.842684 -46.363242 -31.364343 23.425194 -3.379927 213.809409
19.554798 6.725870 -47.020721 4.402216 11.307443 213.804594
-1.000223 -21.766399 4.851987 -10.186248 -48.214380 -155.799252
19.533929 13.653845 30.944198 -22.374092 -46.665644 213.804539
21.937640 -19.765273 30.433459 42.481422 -7.766907 213.808102
26.691254 -38.977559 3.840870 -12.915827 -24.432236 213.809312
8.970998 23.323681 -44.221078 -14.545738 -35.513807 212.231945
14.797784 13.152616 34.663062 -33.927856 43.037660 213.744373
20.362955 38.279185 -32.706087 42.143035 -39.106406 213.806315
12.981505 -49.385174 4.963723 27.003648 -29.976879 213.633692
35.552954 -4.821885 -32.921166 3.086403 -49.426326 213.809408
19.904135 21.786258 -31.588852 38.994987 -33.388500 213.805432
7.132800 26.758159 -36.305298 36.702987 -3.957463 209.495910
-0.014629 -45.373411 17.740466 -33.806516 -41.043422 -1.718548
24.623070 -48.025764 42.061946 -43.067874 -16.736708 213.809108
45.830071 42.721787 -0.654497 43.872077 29.140468 213.809409
-1.132539 -39.088783 20.790215 10.047279 -12.316441 -183.554545
1.874480 -16.104360 23.651915 -38.915010 23.516127 137.155592
-2.995267 -48.952456 14.711600 40.318355 25.437755 -887.447331
39.172468 22.165352 19.419560 -7.126635 -46.221998 213.809409
35.256808 -33.027535 42.800489 14.815130 2.697612 213.809408
33.709468 -6.328490 -8.935469 46.236353 -13.499985 213.809407
-1.698842 46.500424 47.369830 -47.170785 -26.496607 -327.913638
26.169256 -45.554742 -23.155972 11.867284 -24.760718 213.809280
42.715595 -35.111865 -17.116369 -47.348462 -14.477595 213.809409
11.378203 -17.373163 49.177122 -44.587528 -3.397185 213.386879
7.751757 12.644680 28.198518 26.485109 7.344398 210.735245
-1.179946 -27.120200 -41.166691 -5.136893 15.449915 -193.998239
3.389755 15.766354 29.310628 35.037586 -35.041877 180.358334
13.965365 -8.421460 -1.925634 3.776133 47.042512 213.706847
48.969316 8.736006 41.150925 33.691211 -29.325885 213.809409
20.507000 47.872193 49.572168 -13.837266 19.595490 213.806549
12.963083 -28.612900 6.372868 17.539215 -31.704463 213.631912
-5.770933 4.887848 -19.751847 -32.386456 30.516221 -4816.093570
46.132522 -24.897925 -6.321573 -5.599496 28.087213 213.809409
-8.827658 -19.197772 -49.871088 36.602947 46.456990 -26579.570769
7.025168 8.436197 47.812089 -15.945416 15.530704 209.234211
41.455323 -49.608982 7.749524 38.543660 -37.130494 213.809409
27.666262 14.664349 37.559869 5.674694 7.677625 213.809352
-4.354244 0.103760 -38.074008 -30.902282 -35.963622 -2102.870619
22.271243 0.857383 5.818620 -19.146257 36.666174 213.808320
34.600125 -47.607849 -4.910538 44.707046 -41.120677 213.809408
33.899949 40.936668 -2.888470 40.589093 35.107429 213.809407
10.106424 -34.932584 -23.932648 10.660446 37.989163 212.961963
-1.603940 -37.531104 42.393834 8.210016 -27.102203 -300.497885
1.971367 19.087150 -5.521709 -2.742885 4.856118 141.113952
23.965857 -28.523552 -32.406806 6.411741 -47.351493 213.808978
-4.287926 34.035370 -45.562317 -27.123167 5.243264 -2020.301638
16.686728 -15.576363 -10.991154 23.509182 -18.226165 213.786276
9.845788 -6.681769 -15.913366 -46.023253 -5.957494 212.832048
13.077566 1.670487 6.887652 20.071241 -46.234862 213.642690
13.559841 36.554786 26.156374 -46.820135 -29.353969 213.681363
35.406762 -16.264703 -22.232428 49.537362 -30.223032 213.809408
-5.581673 -44.642309 49.920698 8.033574 -7.607792 -4321.215948
9.380112 16.351351 14.825940 5.309128 -23.772943 212.548370
8.173848 19.529647 0.457714 -10.304465 -30.074810 211.369285
15.143926 -3.668276 -18.123663 -43.910860 12.893258 213.755596
40.003223 18.037211 40.921535 23.007755 9.418451 213.809409
42.518953 41.739807 40.997771 22.061860 34.505299 213.809409
9.259550 42.711271 -10.187282 -11.033516 9.056804 212.462366
-4.066359 -21.905127 -37.249763 -18.380511 13.180987 -1765.194620
25.115052 -17.086642 12.026324 -22.746998 10.666154 213.809179
24.395577 27.250472 -47.296342 20.514475 -6.420315 213.809068
-3.561039 13.793183 -22.484467 48.885196 -29.515477 -1287.089041
43.668455 24.421686 1.740881 4.030885 -15.046979 213.809409
-9.729418 30.063075 32.639816 3.396307 -31.595349 -43673.808478
34.278232 14.565701 -46.263339 15.363478 -3.427918 213.809407
28.167881 -5.088444 -35.309607 37.890854 17.991150 213.809366
6.112985 39.692585 16.267360 29.825172 21.712934 206.272361
46.063536 17.866193 -40.124479 -39.701271 2.511972 213.809409
14.727526 -23.003595 47.017615 14.313186 -18.002718 213.741824
34.273241 19.419275 -40.379360 -25.232687 -40.210100 213.809407
19.756557 19.417086 -34.812054 27.766714 -9.770205 213.805097
13.716464 10.225523 -42.120939 -30.003765 -20.412596 213.691881
16.455786 36.374303 24.862053 -21.002887 3.836662 213.783160
34.903214 46.492667 -14.240413 16.943628 30.187114 213.809408
-10.364390 -42.176480 -30.424029 14.350648 37.936944 -61908.946224
43.967487 38.229776 20.786736 -8.822007 -48.122142 213.809409
29.932553 11.743308 27.750094 37.495185 -44.619276 213.809392
36.595400 -23.612913 -25.677624 30.511023 -44.161677 213.809408
30.434895 -48.559560 23.011462 -16.008741 -48.670718 213.809396
46.580718 -16.229572 30.629404 -49.401181 -28.965995 213.809409
49.781116 -37.857027 16.746644 -47.482874 39.281674 213.809409
-2.673692 44.364619 -16.108609 -47.383322 -49.246240 -709.744607
31.331852 -18.621277 -7.197405 -41.262045 -46.366380 213.809401
35.900569 -43.198330 24.182163 -0.955084 23.098156 213.809408
8.698017 -15.550405 -2.557611 44.445300 -29.958589 211.977783
11.632233 -40.452477 -38.239281 -16.094844 -24.704661 213.441717
-3.123186 -9.968453 -48.802197 -43.935423 -49.205682 -967.300287
28.721666 28.840004 -38.707069 -23.585407 15.391721 213.809377
36.823605 18.548883 -43.938463 -3.018814 42.806474 213.809409
-0.954956 3.659465 -21.163508 13.411426 6.593673 -146.755815
42.330663 1.582808 -24.632847 12.151238 29.360504 213.809409
28.876169 39.896322 16.705809 30.778657 11.935531 213.809380
46.116707 -27.115557 -5.839594 10.558243 -33.463387 213.809409
21.722735 -26.351131 6.364026 -2.429483 -42.561135 213.807939
49.780940 -25.088738 -40.402200 19.442499 24.139474 213.809409
5.506149 -1.620128 -39.286789 -8.644037 -16.437347 203.303750
4.483747 40.217228 13.179655 -14.477088 -1.272285 195.426700
-6.434918 -21.042852 -14.825046 -37.693094 15.462657 -7019.944890
8.553264 -0.328771 -25.656338 -41.906970 41.733353 211.826790
21.828685 32.429217 -29.792780 -43.709686 2.865535 213.808022
1.283365 -20.240601 -22.790639 2.403684 36.041865 107.879269
20.412455 -11.835446 26.177921 47.245180 13.952814 213.806398
38.937002 -6.701851 33.046987 1.259748 -36.053044 213.809409
29.997070 -11.811353 1.484079 27.947704 -41.415002 213.809393
-8.329381 29.375915 35.096100 41.386642 44.471031 -20185.058137
9.834903 6.355006 -26.463752 -5.348143 -2.211798 212.826209
2.842951 23.526343 -47.212483 17.972881 -25.847324 168.689867
21.235807 -32.383932 23.181623 -11.737023 -8.523851 213.807490
-6.880352 -42.481188 -44.019601 47.675176 38.262038 -9016.720289
-1.239817 30.090817 -45.882188 35.849709 10.627153 -207.580782
48.276726 -25.420653 18.512257 -30.372992 29.317978 213.809409
38.293242 4.614996 9.097464 -42.924170 -31.426530 213.809409
27.803509 -0.297932 -2.935986 -12.409370 34.583345 213.809356
23.427018 -26.450770 10.428658 -31.969418 -36.261318 213.808830
40.739400 -42.654837 32.383582 43.121655 23.458441 213.809409
10.017812 4.761245 44.957026 14.046312 11.770174 212.919857
5.867792 -18.755053 36.810421 1.557283 23.844959 205.190064
41.736143 -48.225107 12.168306 -3.943562 32.310713 213.809409
29.891895 41.366040 -2.168260 -16.568401 -33.812079 213.809392
16.820670 21.177978 -12.775200 -41.573717 -43.022058 213.787911
17.812036 10.463149 16.358240 -34.603605 -31.514595 213.796913
34.145620 39.638483 -35.232479 11.860310 -47.959478 213.809407
15.062688 32.076429 30.293722 37.559460 -7.970414 213.753150
-10.017779 -13.540272 -18.889646 -36.588447 46.804438 -51175.697028
10.974466 -16.258017 -22.920543 2.897599 -29.256791 213.282409
35.477760 8.712160 -23.323467 0.621831 20.127792 213.809408
4.008076 29.470028 -29.783113 -45.206783 30.028815 189.961047
1.524976 34.888488 40.753047 30.564270 -13.257331 120.998779
12.253296 45.708342 40.195566 13.462542 -35.353361 213.547662
-1.435716 -21.500698 -29.926884 14.713572 -18.092221 -255.265633
1.331812 0.732726 -25.308455 -31.723070 -32.267239 110.650791
12.064851 6.007435 -7.603831 24.647218 -5.534282 213.519229
8.226045 35.316347 39.366468 -26.371843 -38.403036 211.437998
38.571261 -19.288444 -0.259111 31.144173 -5.147339 213.809409
43.920199 21.763875 5.693110 -46.535180 14.361622 213.809409
17.340983 39.509281 3.015352 -4.548742 -10.764663 213.793238
12.377913 36.131176 11.085029 47.386530 -21.438047 213.564917
48.486362 -37.090661 -35.081273 19.019976 -46.610388 213.809409
7.646367 -1.226102 30.881231 -10.168270 -2.214805 210.552735
10.813701 41.489543 -27.268257 31.018589 -22.022405 213.233944
33.398715 32.903197 22.301462 -48.103858 37.254976 213.809406
40.479876 -25.161029 6.734583 -37.811696 -1.410463 213.809409
33.206042 -32.891155 13.788286 29.059327 -12.807961 213.809406
1.201334 -35.822546 -6.330015 -3.986813 22.199230 103.015678
-10.717192 17.859369 32.229525 43.694382 -18.672063 -75138.818438
43.207673 -6.410468 -37.467030 37.618650 11.959612 213.809409
6.007441 -24.992268 15.913377 -35.319671 28.937372 205.824224
-10.391514 -37.085847 -3.582586 24.462515 22.274968 -62837.925012
44.419918 -30.640136 -39.680600 -25.490173 37.974567 213.809409
32.982401 -35.844340 -43.293774 20.729623 41.346991 213.809406
12.954104 0.069150 11.551290 18.010766 47.991591 213.631037
39.327547 -9.161042 -28.828733 -23.555980 -31.482111 213.809409
-4.291142 -18.812637 -38.963105 40.790003 34.234094 -2024.236921
31.697955 -20.243131 13.642565 -38.729382 -15.831364 213.809403
6.569695 -12.934781 -4.569302 -41.868793 -32.739225 207.939133
-6.605901 14.603408 -26.629865 -23.020844 47.211172 -7729.472177
-5.420580 44.499016 29.838839 36.084839 -10.649254 -3938.539362
16.880787 6.607018 3.647033 23.622340 -4.639858 213.788607
36.269716 31.524439 -26.907876 27.377179 -43.312111 213.809408
-7.839873 -7.729089 42.089303 27.113035 -21.674285 -15391.361439
41.012461 -30.561080 4.405412 -5.135257 -27.743720 213.809409
8.590164 48.319674 -35.956230 14.496764 41.479886 211.866424
27.847150 16.830210 32.375441 45.025283 20.472880 213.809357
10.581689 25.917169 27.418419 -48.460695 -31.044727 213.156039
4.333286 39.065116 -23.094371 41.556522 36.086291 193.849047
46.817624 31.358587 -34.535664 -8.906700 -42.998726 213.809409
14.397913 -4.049651 1.547585 -32.886833 -15.439161 213.728464
17.054301 7.520046 -15.023629 -20.703631 0.239411 213.790491
32.096353 40.752424 -34.694115 18.997217 43.796445 213.809404
46.388884 42.222229 7.254732 -45.008724 29.569218 213.809409
38.102971 24.870603 -39.936576 -36.352341 31.374589 213.809409
23.308559 -5.244237 40.473133 28.467583 47.417365 213.808792
1.512012 -42.852587 10.478329 -14.881041 -29.755414 120.338037
9.880742 21.914818 -42.358256 -0.614970 -4.458388 212.850566
-0.376303 -21.279126 8.895760 31.287436 -5.291782 -48.890397
42.125354 15.400377 -38.280059 13.152397 -20.408766 213.809409
38.034272 -31.915685 -47.731058 41.162461 20.214735 213.809409
19.232283 -42.918197 8.711627 3.538538 45.684703 213.803665
23.095070 -19.885524 21.542677 -37.644137 -31.921849 213.808715
34.608368 17.358798 -46.166553 -3.791664 -0.469233 213.809408
36.118610 26.665225 22.713830 2.268868 -24.381576 213.809408
36.061043 -40.806895 45.413394 25.719041 -31.895862 213.809408
10.518682 49.797273 14.960320 -37.054607 -39.526124 213.133118
8.311744 -32.869000 24.381554 32.399140 -39.730614 211.546645
34.944341 39.376480 -3.785250 -30.370303 0.850672 213.809408
43.020986 -0.964361 -26.517406 19.042207 45.068730 213.809409
6.404883 19.338489 -40.673616 -16.281568 42.960390 207.385074
7.757501 -35.901125 49.457714 20.247394 -30.210210 210.744893
-7.653838 15.597138 1.181894 33.717888 35.022621 -13880.862633
11.565030 37.410575 8.093366 -13.519553 2.856667 213.427943
9.434244 17.920170 -7.001626 -16.567034 42.047546 212.585177
11.317741 49.532656 -10.366758 -32.889104 39.094899 213.372664
37.142372 -45.721420 16.020959 -26.515084 18.721219 213.809409
49.465847 15.402817 -22.356012 -28.504217 -34.295518 213.809409
10.722863 42.195810 -26.836349 -14.028216 -21.411547 213.204615
10.682754 11.960524 30.114907 15.709356 -47.300430 213.191194
20.305077 42.053657 8.032443 -14.568045 11.788920 213.806215
-1.074861 -12.640426 48.135306 -4.226294 -35.604054 -171.208163
15.601053 -11.658277 -26.440713 12.473648 -40.077609 213.767506
10.337228 -42.255557 40.463959 -26.471768 17.559666 213.062516
-6.486609 -1.915330 -3.694737 4.356635 -32.259268 -7227.487982
16.415546 34.859631 -48.618491 -11.767721 44.744846 213.782576
-6.597346 -13.725689 10.626439 21.768965 -37.988172 -7692.369024
-7.139788 -22.908693 11.608481 6.852033 8.580469 -10424.796836
22.651126 -26.523319 13.714838 27.741454 39.638124 213.808524
21.923734 -34.311818 -3.562723 36.623837 -15.698556 213.808092
-6.243985 -33.742784 -6.038943 -40.231713 25.866118 -6302.266635
31.624438 35.125662 43.956753 -5.230770 12.667865 213.809402
38.206014 36.127700 -42.205092 -18.411723 26.781252 213.809409
-2.684733 41.693632 32.674431 44.147470 23.358608 -715.342048
46.964041 21.362085 30.923046 -11.233002 -7.224140 213.809409
45.170835 -26.047174 -43.350588 -34.680076 -32.900312 213.809409
34.977620 41.060998 -6.549034 7.882484 -17.641665 213.809408
26.178650 -33.369511 -12.147060 33.987094 -6.775976 213.809281
6.280899 -0.406350 -36.876314 14.064291 8.122176 206.934066
16.578388 20.833727 -28.331966 -33.185246 49.387316 213.784863
3.869392 41.026339 27.814859 -2.178975 20.146352 188.080675
-6.398719 -1.808350 -0.662966 -44.069675 13.954366 -6878.059386
42.502570 22.431819 -22.023706 18.628216 -19.494362 213.809409
18.006981 -46.357318 44.569080 28.083483 15.107871 213.798177
22.203798 -34.637390 -12.161065 -5.160034 7.682219 213.808279
-0.379468 7.791685 18.868419 -41.337331 1.359029 -49.345837
-10.046969 -44.225271 -2.203052 -42.731684 5.348974 -52003.165552
20.281670 35.069984 -13.937290 -3.366983 5.951727 213.806174
-1.713275 -5.864346 1.552852 35.634164 -31.420622 -332.209217
28.087643 28.202142 -6.751121 -6.109073 9.581200 213.809364
23.366929 11.415997 25.020077 -20.822890 31.762181 213.808811
3.639608 35.444528 48.134080 19.935625 -21.833985 184.633160
5.507932 21.488208 -30.981286 -25.526421 -18.683805 203.314000
-7.675683 -49.566845 5.312968 23.637017 -11.386776 -14050.367617
47.626165 -41.753248 -9.007997 17.010007 -23.021236 213.809409
4.982365 12.270048 47.119487 -20.520251 -48.828882 199.816534
-6.425058 -36.220131 46.459230 34.460736 48.759883 -6981.018293
-3.865162 37.826702 24.457641 -43.559989 9.512990 -1558.868677
0.003307 30.991537 5.631249 -6.003593 -36.510089 0.386600
2.999026 -3.409324 -30.216569 3.231726 -2.507417 172.383532
48.595167 -9.210992 -39.046235 42.524707 21.071012 213.809409
-5.189277 10.012893 -1.710125 -11.987592 -22.076491 -3444.849383
25.003848 33.592421 31.014563 -25.072906 9.366435 213.809165
32.310054 -35.177674 48.850944 3.825455 -30.488103 213.809404
30.605090 -25.258670 -24.686095 13.194935 20.662628 213.809398
38.825800 -17.975433 -15.543719 -47.795641 39.315790 213.809409
25.791967 -43.170118 2.608056 20.689554 -37.968710 213.809250
35.513275 -19.144478 9.485489 19.564601 -48.407964 213.809408
-1.111791 -11.410450 43.391411 -7.879514 -27.634108 -179.068512
-1.696935 15.962214 33.986452 27.458837 -46.439260 -327.348612
11.406426 43.587669 8.653421 37.414270 34.528056 213.393354
5.064470 47.749066 -4.366823 -11.932309 -43.000484 200.431331
1.671648 37.943915 19.747492 39.186270 -21.383183 128.157062
35.914322 -31.663783 -19.121169 45.416475 -31.041353 213.809408
-4.072755 -43.385693 4.025380 37.366567 4.200811 -1772.133258
35.116994 -37.262711 -2.380767 -21.942676 -7.520466 213.809408
22.971899 -45.768321 1.628606 -15.661218 -23.575129 213.808667
21.053064 12.356366 -14.732750 -9.544922 -9.169981 213.807288
18.804711 43.694331 20.732221 22.722934 10.650754 213.802150
9.936472 16.804492 30.989038 -34.872715 -36.627698 212.879367
16.980939 -40.540700 -36.421937 -28.776556 -18.672421 213.789716
7.721477 -42.325283 3.142143 40.288113 -32.368449 210.683881
10.152810 -24.653533 -10.042658 33.200527 32.867888 212.983205
-7.275975 -23.090304 -33.616084 35.131606 -29.407171 -11247.947673
-2.173104 34.650688 -28.188327 48.479733 37.937967 -488.440126
-10.845281 -1.678470 -18.571091 -33.297432 21.245875 -80610.199055
1.221539 -45.491861 -45.336159 20.078943 0.030304 104.233974
-0.991897 7.106892 -35.736529 15.417725 -31.482793 -154.118954
12.878577 44.741599 2.602186 -27.597432 34.898591 213.623510
-5.937716 -25.754161 -33.604610 -36.936128 34.608091 -5296.773202
32.218942 17.654617 -3.878864 -12.133752 -32.183405 213.809404
15.711495 -43.170674 15.970901 29.480780 12.754651 213.769963
16.706624 -45.749474 -8.893955 44.359204 27.960840 213.786527
22.869690 45.434134 -34.162224 -24.831747 -40.882514 213.808624
31.401256 -29.539408 -31.052767 -32.076523 -26.010089 213.809402
39.064215 -13.956047 -6.796616 18.910241 23.944417 213.809409
21.087611 27.590881 39.114351 45.460718 -39.851361 213.807328
6.762217 -24.897196 -43.859974 9.641985 -44.322949 208.526133
48.307382 -42.413590 22.368518 43.257718 -28.680519 213.809409
33.013721 -12.875732 -20.486665 46.589085 6.421117 213.809406
6.193132 -4.169059 15.879283 46.387735 -37.732524 206.595789
46.885701 32.159116 -22.069290 41.338781 8.375505 213.809409
-9.350783 -28.331989 47.956826 -5.604407 -43.648690 -35460.431856
44.094520 -32.849990 38.208977 28.218650 28.484341 213.809409
-10.496786 -17.386448 -41.950691 -46.653806 -49.547180 -66576.920605
12.772148 -48.838928 16.681486 7.180764 20.151274 213.612362
16.855526 -32.763671 4.096242 24.441202 17.993524 213.788318
-9.984132 -43.273595 -6.733474 -33.467376 -14.772600 -50238.125454
11.087717 34.760268 28.642846 -49.042638 46.010864 213.314078
41.909141 -16.936027 -11.822577 -12.103381 -2.665714 213.809409
2.154220 -43.819692 -0.137843 -29.588786 8.258119 148.036048
32.865516 39.548450 22.488241 34.105637 -18.004122 213.809406
5.277266 -49.699785 17.845508 -16.214977 20.360662 201.901923
24.266400 -32.510060 46.771479 14.457386 -27.496372 213.809043
45.493199 24.824744 -12.175737 -27.944734 -23.823827 213.809409
12.084496 -14.435923 -11.649981 5.586469 18.550848 213.522332
24.599235 -32.074367 18.018173 -38.929773 -5.921367 213.809104
8.532511 36.356933 27.401161 -33.505897 2.222133 211.804146
35.023605 -6.430490 2.615071 35.861624 12.223698 213.809408
7.151989 -27.689369 49.320628 -11.115170 35.832197 209.540969
20.246659 -13.977348 -11.965932 -38.194091 4.949048 213.806112
10.762576 4.586160 30.062812 28.716917 -32.001833 213.217617
26.336280 -10.272930 35.470304 -1.297829 20.936631 213.809291
-5.656604 44.250007 -44.659174 -24.463091 22.013444 -4511.038665
37.094311 -21.508559 -2.688654 20.416195 13.989072 213.809409
21.049418 -30.314704 10.449575 -30.116791 9.380006 213.807284
0.226481 10.583046 -38.991276 38.936850 -29.957605 24.922927
1.862934 -20.890886 13.675685 -43.449544 44.040014 136.669745
22.866545 -44.187118 -45.617763 -24.766901 44.507550 213.808623
37.059195 -23.057093 -36.445875 32.151358 34.950180 213.809409
8.780243 -19.255649 -2.182196 -33.374220 -36.319566 212.058374
5.425916 23.123593 -48.383165 11.061846 -45.233823 202.832207
28.848549 22.237411 10.634315 -27.888269 4.940931 213.809379
7.635225 13.646926 6.283476 -37.881906 11.792095 210.532817
11.356854 -29.256693 -20.695991 41.471495 -13.300014 213.381913
-7.288828 -2.401535 45.905101 -46.647107 -5.113765 -11328.849310
9.371752 -42.865432 -34.205162 28.175345 -48.947039 212.542587
19.770965 -3.567140 -30.085352 -26.197271 -1.921967 213.805131
42.998850 34.772722 19.973026 30.478121 13.173678 213.809409
2.857804 0.705216 46.379123 45.858996 -45.748526 169.055107
-5.292164 31.127324 -16.343326 15.390547 -3.018083 -3656.755254
11.151762 -34.941779 45.177109 -15.417644 0.248997 213.331138
25.226306 10.883820 4.276308 -3.666903 35.221608 213.809193
28.738864 -34.622516 35.966095 43.627670 10.646560 213.809377
46.216728 46.807094 -33.703411 19.356120 26.297924 213.809409
19.618079 -34.489634 22.504177 -16.396463 15.379827 213.804758
45.902832 26.264557 46.598698 33.301379 -48.639712 213.809409
30.097542 -8.433796 45.475527 -39.969554 43.332363 213.809394
28.557648 -34.826760 29.665749 -48.010733 42.827662 213.809374
26.317470 -49.469262 47.229237 33.834960 -45.266492 213.809290
-5.645225 30.864461 -46.273538 5.778827 -43.703702 -4481.709962
33.145458 -25.557471 -38.940427 17.991812 49.934996 213.809406
48.624605 -2.178318 11.485864 48.360038 16.200501 213.809409
36.022429 -48.775753 -30.054825 -18.120664 6.116261 213.809408
30.308506 48.705656 23.669657 -24.134433 14.077502 213.809395
19.077518 42.619302 -26.196326 11.499361 -3.235270 213.803157
19.388135 -33.797763 -4.014993 45.593125 25.979994 213.804134
15.194418 49.309746 15.825064 -47.388430 43.394249 213.757062
-0.521902 -1.069215 -43.551647 -48.549712 -41.486522 -70.678045
20.758551 -5.945883 -44.034564 -49.515053 -9.973427 213.806917
19.541677 41.683250 -7.828591 31.835910 31.093627 213.804559
19.713914 5.314786 -41.948644 12.233273 -42.191986 213.804995
15.892701 -6.375629 1.018860 -11.295964 15.806432 213.773687
48.315822 -12.300196 -24.908499 7.055807 -23.446053 213.809409
40.489504 1.691501 -11.633300 34.391231 27.598435 213.809409
35.055915 -2.574562 -22.720982 -4.507445 -39.673446 213.809408
45.976039 -10.977314 27.635868 24.282682 38.075187 213.809409
35.802568 -18.770783 18.771427 29.012766 11.357305 213.809408
44.581756 19.172195 -6.806650 31.817446 -10.309460 213.809409
-2.772514 -34.538594 -24.235799 28.755125 40.801849 -761.065024
14.815341 27.297310 3.886433 -1.659253 -34.055108 213.744995
-7.549502 3.401835 35.938388 -18.274104 34.002250 -13098.645523
46.343266 4.430757 -25.867215 -27.178456 -22.755940 213.809409
1.621338 38.267183 -31.930472 -11.257357 -45.827428 125.766154
40.637827 -5.269005 24.540389 -42.150543 -45.378352 213.809409
5.248033 -3.077121 6.702753 49.010753 -35.611200 201.709901
29.223813 -35.052849 -6.339719 23.370355 38.286134 213.809385
31.630651 -32.787712 -2.204413 16.790055 7.816607 213.809402
33.903088 42.296413 22.563090 -31.351504 -2.262353 213.809407
4.876959 -38.179890 -49.145096 8.896735 22.568852 198.985664
27.501887 -10.856324 9.800211 44.119316 -26.939773 213.809347
23.694177 38.514788 -17.164422 -38.828800 -26.777451 213.808909
33.011943 -47.557913 5.599810 27.478542 17.212224 213.809406
4.410001 3.986234 21.589035 11.591104 -15.039297 194.669662
28.167664 -26.227649 -40.309795 -46.615574 -41.603535 213.809366
-9.563053 2.501479 -11.069462 39.871864 17.709055 -39854.701411
12.443226 44.370902 32.978963 42.788396 -36.449089 213.573501
-0.971263 -29.522901 -1.974597 -36.627521 -13.116921 -149.987700
-5.785111 -30.242520 -20.369754 8.936585 38.690477 -4855.271660
20.411260 36.103026 16.649178 26.997615 7.772309 213.806396
-5.786564 -17.073911 45.455847 -31.055643 2.830482 -4859.303477
-3.517205 -13.627961 20.597974 -43.677372 32.404136 -1251.514344
11.551906 19.035795 -35.374191 37.467310 9.701423 213.425193
3.241636 -24.085456 -10.373862 6.070847 -17.284052 177.533992
16.034946 46.733991 -10.962117 -28.921433 35.459506 213.776362
-10.915072 -49.558397 21.089130 42.461139 -16.189397 -83756.770939
44.505016 49.218549 -42.366147 27.074197 -3.797007 213.809409
-9.727979 -47.815387 40.565918 -14.296891 -25.507011 -43639.252969
17.671908 -13.546984 -44.299299 38.831762 24.513022 213.795917
18.730259 3.830890 -5.728062 33.730341 -32.461040 213.801848
43.030558 8.047957 27.896161 43.306782 -25.391344 213.809409
20.646689 -24.931772 7.799792 -7.526309 41.062270 213.806760
42.488845 -24.234090 6.868795 -7.014435 41.616429 213.809409
-5.720961 -14.086044 -13.557799 -38.151588 47.914216 -4680.405719
29.250288 15.088388 -21.587091 -26.141252 -1.098502 213.809385
-9.818742 43.683574 11.807797 4.284753 -48.985529 -45872.371297
36.658483 19.641552 15.978502 25.991340 26.226888 213.809408
-1.825752 -14.289261 7.099972 9.027789 -36.397252 -366.873449
21.670755 -4.784654 -23.604402 -28.947138 17.804985 213.807896
11.704335 37.378234 7.516967 -24.343327 -15.138201 213.455942
17.463010 -28.551613 -39.675824 33.288665 13.098034 213.794283
33.026898 -13.831516 16.578067 -13.004431 -23.718825 213.809406
-3.308522 -5.361265 28.485502 -46.457044 48.545741 -1093.376875
-7.256352 26.013590 31.849193 -17.664133 -36.408588 -11125.522300
-6.345418 21.041529 42.807458 -25.610968 -7.451313 -6674.185892
46.005702 -47.445962 42.445482 -13.995717 -4.523216 213.809409
16.245451 -44.121348 -16.279386 -4.149690 -3.215812 213.779958
20.246380 -41.196803 -44.998512 -15.422003 -7.208904 213.806111
29.168674 46.392807 -48.038587 48.389427 38.408183 213.809384
-0.772520 -11.874898 -46.541690 -36.817199 23.025716 -112.496952
27.034111 22.218845 -18.822569 24.974758 -9.931060 213.809329
29.046325 29.682351 28.014544 5.947313 -24.994343 213.809382
22.534075 5.251690 48.389851 -21.347125 43.511082 213.808466
37.701341 19.301854 -34.936155 -43.270883 44.989185 213.809409
8.270761 27.315283 20.476976 18.421542 16.461385 211.495324
25.000249 -14.536486 29.710183 -31.173086 -43.846024 213.809164
24.886015 -8.725463 -48.894684 -21.377761 -5.298125 213.809149
49.271815 19.454258 8.422138 -42.277348 4.631633 213.809409
18.638444 19.825277 -15.910221 -5.255826 -19.844674 213.801459
29.290807 -26.322135 47.185256 -22.652744 -9.901499 213.809386
6.029537 36.381981 -7.153118 27.684165 -13.025884 205.920195
41.191657 25.662712 32.261872 -11.895268 -29.127092 213.809409
13.230381 41.730005 -16.855797 -42.898008 -40.408378 213.656065
46.249785 -46.297352 -15.373185 32.237183 -7.281002 213.809409
8.761403 13.431215 49.005020 43.814763 15.043613 212.040228
47.066880 -20.906768 10.106471 -33.397307 -7.098631 213.809409
-5.243116 -26.243086 37.080637 34.713808 -49.780634 -3554.246158
9.732071 24.400409 44.322570 29.617414 -29.618825 212.769294
46.503828 -41.719878 39.378092 -9.900274 17.755475 213.809409
5.233241 -29.214134 23.205044 2.197810 13.324466 201.611564
37.954766 -0.841953 1.704808 8.406897 2.916026 213.809409
17.770589 -38.223210 26.672344 2.818562 -21.840081 213.796626
17.244685 -11.735531 19.329562 24.142402 -33.698985 213.792363
46.118643 -23.921950 43.890255 -31.727027 -7.275744 213.809409
-9.179437 -34.357942 45.596227 5.830679 -37.165098 -32267.403904
-2.204052 -34.318120 -26.545626 13.635654 11.474940 -500.434899
24.736345 -13.002246 43.250265 9.380884 49.008642 213.809126
43.608143 -18.760382 46.746906 4.733715 -2.262058 213.809409
21.493439 38.696169 18.731673 -49.906686 -19.422877 213.807742
38.222544 -46.909729 -40.065323 48.085339 45.174313 213.809409
36.214162 24.970480 45.382342 42.303082 -29.257519 213.809408
2.767693 35.568643 47.098122 4.512635 -26.051820 166.792863
22.463257 0.022882 -12.577985 14.209093 2.996939 213.808429
-4.793299 -18.171661 38.409423 24.345268 47.044865 -2732.056334
-9.987003 6.429849 -32.283293 37.944027 27.121059 -50317.458554
38.286686 36.135430 17.631996 14.174632 31.785383 213.809409
26.828665 -48.531065 38.654284 -11.099695 -10.960282 213.809319
23.225099 -12.338865 2.753264 10.669921 44.323361 213.808763
-7.167809 -8.566035 -6.224109 -48.893210 -32.482783 -10589.185085
14.343519 15.697439 28.892273 0.567175 -0.121627 213.726019
39.125472 -33.840811 -28.661656 36.820359 -13.681582 213.809409
2.541454 -19.217121 30.998646 7.504466 29.499453 160.596230
23.426320 -48.376166 44.284902 47.738250 32.691062 213.808830
31.770643 -41.192951 -1.219283 21.080532 -24.574913 213.809403
8.776360 12.307959 -31.733835 0.149151 -27.690869 212.054649
46.861515 36.185593 -12.039938 -41.468984 -24.687481 213.809409
25.050268 1.655643 19.901646 -7.632514 -44.568395 213.809171
43.563400 20.927660 22.809641 12.220011 -21.684179 213.809409
31.689379 39.895988 45.326062 -14.639380 19.661461 213.809403
29.050827 19.433174 39.384164 -6.476971 17.943213 213.809382
1.594201 45.188512 -28.651768 -36.207321 -11.617277 124.448937
24.547947 -5.584769 3.461002 35.646615 -35.973453 213.809096
0.393417 -37.666638 -5.073366 -19.378995 -32.502463 41.413745
40.668032 17.819923 23.921081 6.957309 8.150679 213.809409
47.750911 -11.721932 17.244847 -46.252242 -45.298144 213.809409
48.321000 43.842536 -31.935161 16.463234 -4.101679 213.809409
-3.596241 -29.654605 6.573035 48.303256 -33.356031 -1316.282549
39.820046 32.038847 -19.873091 27.273579 -28.657241 213.809409
34.427989 -19.656300 31.565161 -48.373162 9.953818 213.809407
21.724872 23.576720 -26.595593 37.066164 40.930080 213.807940
40.978824 -12.550746 -1.755750 46.451205 42.259703 213.809409
-9.708714 -32.829166 -26.934032 -14.022692 -5.585999 -43179.355878
28.703990 -28.405730 11.566739 39.103445 10.903871 213.809377
41.706767 15.223564 -10.344578 -35.151748 47.806840 213.809409
14.400763 0.572156 -4.780887 25.723736 -36.470179 213.728591
26.744496 -48.453224 -1.208186 0.545944 -22.002558 213.809315
27.762251 48.983806 -8.373868 25.664921 -6.347603 213.809355
43.288669 49.036431 -0.751606 48.277052 -38.206889 213.809409
21.942949 -48.001661 -27.933384 -40.606417 -45.760798 213.808106
39.748833 36.951096 -8.985161 37.470926 -30.080533 213.809409
-2.681152 49.652531 10.260866 37.243352 -10.506542 -713.522911
42.887913 34.524802 37.305096 -11.569459 -20.321920 213.809409
22.846467 -42.775303 -4.115926 41.679510 -41.395329 213.808614
7.342627 -17.702857 -47.436131 -5.514429 -24.883620 209.963830
32.796376 23.277281 -4.351624 -42.230580 32.821723 213.809405
-0.589547 21.576882 6.676858 42.883565 21.785122 -81.406597
-2.829855 9.488715 24.652568 -0.306577 -34.585292 -792.140824
47.748127 -43.697243 22.301012 -19.004795 43.485389 213.809409
43.240923 40.218091 -48.644544 26.543866 14.200137 213.809409
43.907376 -16.463328 47.846595 37.970436 -6.216929 213.809409
43.219188 -45.651756 -13.111946 -21.496257 -7.993265 213.809409
26.630762 -12.643329 13.702366 48.716465 -37.768684 213.809309
5.381544 -47.108380 32.961976 -6.134457 -20.706365 202.562400
22.633425 -27.838759 -41.781092 -15.162063 22.032976 213.808516
17.174715 5.951344 28.884923 17.400961 0.736188 213.791698
-10.156737 17.095528 -7.853291 23.488753 -11.851827 -55235.916288
6.335092 10.148295 -46.160114 -47.271307 16.618430 207.134969
49.137361 -38.684206 44.412260 10.929928 37.262113 213.809409
1.072304 -31.695531 -29.818440 -1.925766 25.848626 94.909745
28.792342 -17.648965 -28.618940 42.587552 -0.591303 213.809378
34.909149 33.334336 30.158256 -37.654626 8.272393 213.809408
-5.332015 32.150760 -18.132303 -13.547549 19.431823 -3742.089900
-3.270398 -29.825052 -21.506251 31.773229 25.615273 -1066.387961
44.349537 11.423164 -45.289298 -19.058371 18.255251 213.809409
-10.780695 44.122421 37.457871 -3.874719 17.899290 -77803.441999
33.926391 -35.059406 16.710666 -41.595994 28.516068 213.809407
-3.535250 -45.972408 34.650293 -38.235310 -39.345702 -1266.055848
31.472865 38.893333 -37.815410 40.480780 48.266614 213.809402
11.490390 -3.039452 -45.097920 -2.748198 14.077896 213.412039
45.486101 -22.316846 -4.397212 30.082643 24.026530 213.809409
47.759878 -0.352278 -47.266213 -35.239995 42.234071 213.809409
-2.675900 -47.757846 -44.598746 -46.817433 48.745245 -710.861630
26.800331 7.131526 25.732641 28.445001 5.682770 213.809318
-8.891847 -31.951951 -19.869135 -15.135946 -14.629044 -27537.463297
40.238707 -6.583033 -22.283998 -39.432130 10.597874 213.809409
7.076504 18.433750 47.579637 -17.180742 -39.300704 209.360954
43.038557 8.085248 49.055148 -16.694425 -22.879289 213.809409
-11.172801 -18.521194 42.243373 49.217062 44.957041 -96475.713693
12.025377 20.867227 -42.967672 -14.658659 27.312564 213.512892
48.953385 -44.512347 5.012834 0.863452 29.489977 213.809409
23.959840 40.077647 1.971855 -12.998687 46.114853 213.808977
38.319131 -33.233040 -18.936994 -7.671798 -33.751056 213.809409
19.782335 30.183960 17.900554 14.029192 9.107307 213.805158
16.003127 -23.062362 -42.758377 18.078304 2.424616 213.775782
44.710011 -4.766522 -10.498925 18.798550 0.236246 213.809409
26.623173 0.092023 -17.493169 -1.349688 -34.123755 213.809308
-5.530835 36.522259 35.527116 35.322954 -0.724144 -4196.786846
44.251753 10.164675 17.822643 -47.272053 38.206115 213.809409
12.549046 3.505839 47.249808 -29.453318 -30.688963 213.586774
7.811294 -49.450721 7.810726 -15.507399 -12.859153 210.833790
46.165521 -4.321732 1.835793 22.115814 30.033218 213.809409
-2.334307 -26.874707 23.201080 47.281603 -18.564793 -553.204840
30.257597 20.419906 24.536935 -48.224411 -23.167091 213.809395
41.504364 36.533666 48.913227 -25.195270 -13.590476 213.809409
22.016777 -0.283558 -22.790526 39.538049 32.771396 213.808157
23.104486 10.151828 -31.707292 -34.644817 2.373973 213.808719
14.142227 -43.304821 19.184100 -35.715327 27.948672 213.716308
-8.392397 19.915369 -38.488155 -33.293446 -12.417172 -20900.778830
3.957182 23.357805 27.518368 -44.881557 -42.155695 189.287503
26.689169 -8.704547 46.017525 2.663369 34.508210 213.809312
17.957783 21.535431 20.251082 5.332925 15.025387 213.797871
21.365314 43.150123 -39.518346 -9.492883 45.002168 213.807621
14.592046 -14.858295 -22.061755 -32.421240 8.728741 213.736623
-2.770374 -9.963539 31.211245 40.029381 41.704174 -759.924049
-6.712027 4.299935 1.689737 21.336598 23.052129 -8204.446963
39.799951 -44.309914 -47.657759 -39.106722 -5.671106 213.809409
46.291179 25.902555 6.810507 -13.537925 -41.392822 213.809409
-8.326629 -17.400381 39.724069 -35.750415 -44.624224 -20154.357486
22.183846 20.704704 45.974056 8.278987 -8.885983 213.808267
16.108173 29.278055 -35.925055 -38.167023 -45.016294 213.777660
10.053898 32.178400 3.907970 -37.036177 36.190143 212.937251
29.228445 6.892821 0.352134 10.490637 -17.436812 213.809385
13.726468 -5.350062 -47.593937 25.081033 -49.578219 213.692522
-7.123324 29.045632 -25.612932 31.594282 -14.852457 -10329.372525
37.521855 42.999363 8.253052 -10.763364 -41.857611 213.809409
12.501864 8.462184 25.000986 42.022363 49.711380 213.580951
24.720069 26.957971 -29.590620 -12.136370 30.727200 213.809124
40.520425 -38.989827 16.899990 -36.800344 42.101540 213.809409
26.104072 -14.858740 -17.279812 -1.023527 -38.117933 213.809275
44.503254 5.260808 -25.368588 48.605916 15.748519 213.809409
-7.743814 40.356911 36.967576 -25.376964 45.306133 -14592.229591
19.493547 22.006282 39.095412 -28.505762 44.478912 213.804430
43.036299 30.145404 31.572591 -47.920522 32.747830 213.809409
49.409917 33.706197 -7.538251 -6.580316 20.296605 213.809409
6.389996 22.524768 45.128619 -15.312744 37.877714 207.332523
12.070982 -0.476909 -6.816768 -13.520052 34.089042 213.520201
36.903083 8.132181 3.731371 -28.132274 -43.492309 213.809409
45.966273 -17.222002 24.692582 10.702914 33.511254 213.809409
36.673730 -5.851211 31.465099 4.587580 0.712930 213.809408
20.884250 1.981771 18.730631 1.683568 -42.374549 213.807083
-9.729040 17.850345 44.007624 -2.544292 15.418589 -43664.729410
16.314188 25.540919 26.252787 -49.710021 2.107424 213.781045
-3.415947 7.554945 33.218397 39.459043 -2.697756 -1172.526478
41.422602 28.203650 31.908757 -20.180825 13.736611 213.809409
3.667630 37.209269 28.980470 32.446696 -23.123261 185.077149
39.863742 13.390836 -40.967541 33.912745 -23.258866 213.809409
40.826997 47.635538 35.511782 19.820218 -15.001310 213.809409
0.153368 -19.536472 -5.008991 29.884432 -15.540516 17.212352
-3.148477 9.724078 -44.541658 0.099769 7.185332 -983.760242
47.815018 -10.764111 26.073950 47.247290 -37.214235 213.809409
15.214513 -35.021857 5.071928 -4.299037 -32.750087 213.757635
35.423389 -22.845371 -27.413118 5.001506 41.462645 213.809408
10.652298 -8.685872 -10.870192 -42.985554 37.080480 213.180804
-6.853403 -37.487991 -19.319499 -10.191217 23.569963 -8881.589377
33.242940 48.608835 18.103102 42.328299 47.301180 213.809406
34.827187 -30.798499 -44.097733 -37.850414 11.195970 213.809408
39.760991 34.256434 -49.281604 -0.606368 -15.604355 213.809409
20.082557 -38.055099 18.901871 -16.764402 -39.126099 213.805802
9.495466 -16.023128 5.987225 35.673153 -31.927087 212.625514
47.535447 35.220910 48.619958 -40.840534 44.678655 213.809409
24.722941 -31.311422 -33.485939 19.881623 7.746507 213.809124
9.774893 47.566314 -35.363379 40.053618 1.661546 212.793385
4.933853 -9.989585 -17.330828 31.081167 37.379792 199.440083
46.351965 49.836666 -37.606392 -19.111277 25.949569 213.809409
-8.321189 -11.623274 31.497922 -23.575081 -10.764743 -20093.816581
28.524573 -36.207488 33.042426 -36.561053 25.334293 213.809373
40.732684 -32.017421 44.826821 -21.058274 -49.489559 213.809409
-3.766685 34.932877 3.293589 31.860229 -18.313210 -1465.866895
23.803464 27.434069 38.609178 -2.318055 -4.505366 213.808938
12.806173 47.691954 -7.958238 -33.593789 -41.952250 213.615997
1.509886 -15.827336 34.419172 -28.079569 -41.824003 120.229191
17.231712 29.095031 16.679887 39.975573 40.877507 213.792242
5.266978 32.912261 -35.722015 -1.880212 -32.571562 201.834697
35.793195 39.225729 5.212571 -36.167695 5.031913 213.809408
31.708417 20.652811 39.425786 20.764174 37.383108 213.809403
27.287696 43.269675 -0.892277 -45.351324 -26.074022 213.809339
6.984578 24.432364 -0.318419 -14.457990 -34.773371 209.131448
31.148273 13.945963 24.406827 -36.047710 20.836618 213.809400
32.793385 -48.744575 -34.743713 -47.576797 -27.282584 213.809405
28.680578 -20.294931 -9.201770 -36.112476 -29.211904 213.809376
14.474884 -25.605137 -34.985079 10.114083 -46.441173 213.731803
14.397781 -43.232263 13.770233 40.313881 30.920224 213.728459
43.135902 41.424187 13.250544 31.477225 -48.912169 213.809409
41.429133 -0.378737 0.502449 39.387952 39.322248 213.809409
19.356601 -26.350365 8.857515 21.404128 -13.584271 213.804042
22.032375 -31.408980 -46.360451 -17.812270 -38.434789 213.808168
44.462733 22.039834 8.445794 44.309894 37.523373 213.809409
-3.141017 21.451660 22.595530 43.099370 -23.787074 -978.881712
41.712206 19.451414 -11.837991 -31.615356 -23.452920 213.809409
35.681862 1.057040 -22.773999 -11.553528 31.148604 213.809408
27.238866 35.201715 0.995921 45.451077 36.598675 213.809337
14.513375 -48.630244 8.084798 -47.317823 -48.331030 213.733421
33.151456 -11.388626 33.057747 31.869893 -49.366702 213.809406
17.820202 40.656858 -15.107641 19.007188 29.039633 213.796968
18.004004 36.798885 4.732553 -34.297829 21.672539 213.798159
11.070524 -32.126951 -29.253786 31.376681 31.826877 213.309396
41.595094 20.303404 -49.376816 -11.179475 -28.046618 213.809409
46.230903 -24.798838 -10.816599 -2.066784 48.263467 213.809409
21.905808 39.223556 -0.118345 18.026070 39.392238 213.808079
47.012679 18.466909 -16.806009 23.309936 -29.753954 213.809409
0.257238 -38.384077 16.469994 2.688983 -44.723284 28.075513
44.697578 -31.473542 -34.660671 11.171937 -39.621201 213.809409
48.879564 -5.179724 1.058674 -16.214619 -11.576077 213.809409
31.648343 29.187466 -32.409522 -28.373406 -46.712544 213.809402
8.898749 22.286862 -6.917459 -1.241833 -43.014655 212.168327
17.670754 -16.986218 20.003988 29.171360 -44.749927 213.795908
2.971983 -10.959977 -22.828915 -23.621281 16.505468 171.765927
5.373067 14.608059 -5.927085 12.949035 -30.662248 202.510102
46.598460 4.338536 4.609899 8.079542 12.249329 213.809409
4.296066 31.436384 9.348582 26.672362 29.572495 193.438320
10.837322 30.483749 -20.917989 -11.769955 26.791099 213.241335
9.194280 -21.642030 -31.281969 34.321873 29.212614 212.413382
1.107888 -41.564338 -45.668479 -6.074623 -7.042899 97.202667
27.080297 -29.660004 17.206678 1.155851 -14.510312 213.809331
39.331503 37.972379 33.349381 -39.934306 17.962256 213.809409
18.008343 39.439186 -48.099642 -24.702938 -4.588938 213.798186
16.939855 -39.951346 12.988376 -3.469077 -26.287307 213.789269
38.253938 29.306113 37.102284 -9.984198 -49.352350 213.809409
3.229275 -12.383874 -45.154938 -45.597675 35.949413 177.287789
34.840417 -29.226093 -29.922850 21.339551 23.332944 213.809408
43.069719 -4.786164 -45.179043 35.454665 13.722407 213.809409
44.781408 0.348770 -7.010123 -40.098552 -31.879590 213.809409
39.202144 48.786432 -48.579423 9.489901 30.390650 213.809409
-7.832129 -37.702746 44.536740 41.096160 21.878270 -15325.363489
2.064559 22.592312 46.944114 19.667912 -45.897198 144.728327
23.459767 17.186420 -6.431492 -7.356785 -1.055177 213.808841
11.317954 -6.396239 -35.122769 18.733851 -38.878187 213.372715
10.580869 24.919841 26.366294 -27.824267 -35.557577 213.155746
27.325770 45.631804 -41.830387 -26.817243 33.405999 213.809340
30.530836 39.253335 -1.015070 42.316324 -2.651815 213.809397
-1.756789 -41.763158 -26.284997 -1.210708 -28.022189 -345.367481
-8.081402 -5.379128 -33.424725 29.491517 6.441684 -17596.474952
18.975169 -45.311046 -10.308068 -40.681868 -24.071307 213.802797
11.746999 -47.217348 22.832310 -37.706913 -47.793623 213.464099
10.554996 4.946644 15.069816 48.923805 31.486165 213.146425
-7.220024 -33.325940 -19.150470 -22.504082 16.211286 -10902.323382
21.183015 13.468945 -23.576906 1.851715 19.203472 213.807434
13.903932 40.317497 33.090654 41.107309 45.125824 213.703340
12.031242 -20.777959 29.153229 31.269114 19.185306 213.513842
32.587622 -42.294419 -3.648857 -5.192509 -10.332777 213.809405
9.232573 19.100410 25.359273 -43.357522 37.428329 212.442332
-1.425074 22.045839 -28.456012 -46.461194 47.810496 -252.541694
13.609977 -30.822945 47.919389 -34.374786 -14.825309 213.684829
2.242007 -6.563178 -9.490884 35.435324 5.301327 151.121112
29.668357 17.069884 -7.837568 27.073259 21.706093 213.809390
-0.597799 -21.666093 -15.493652 -49.152263 -36.847079 -82.742760
37.473560 -7.204205 25.564579 -12.112713 -18.542091 213.809409
40.990911 -32.910064 28.685298 -49.148512 -34.274335 213.809409
8.739957 23.310222 -49.197164 -33.047654 7.107041 212.019342
31.312250 4.029413 -16.310215 45.062876 -34.833183 213.809401
46.148404 1.666292 -7.345233 -44.513835 -30.549875 213.809409
|
5c036f2b56c2a0c40fdb1794d42987e77291eca2 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/ngram/5.7_19.tst | 15140e789735478ad749616d2420cdd48ff0dfc8 | [] | 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 | 502,488 | tst | 5.7_19.tst | 7 276:1 327:1 437:1 984:1 1235:1 1394:1 1539:1 1653:1 1827:1 1848:1 1879:1 1964:1 1967:1 2091:1 2181:1 2378:1 2445:1 2460:1 2590:2 2893:1 2948:1 3332:1 3782:1 4082:1 4284:1 4414:1 4429:1 4430:1 4765:1 5275:1 5600:1 5625:1 5818:1 5847:2 6246:1 6723:1 6803:1 6824:2 7180:1 7201:1 7219:2 7611:1 7790:1 7835:2 8498:1 8748:1 9167:1 9285:1 9506:1 9532:1 9831:1 9912:1 9995:1 10428:1 10788:1 11239:1 11495:1 11539:1 11570:1 11616:1 11632:2 11778:2 11975:1 12000:1 12018:1 12122:1 12167:1 12550:1 12642:1 12695:1 12697:1 13261:1 13488:1 13551:1 13598:1 13876:1 13897:1 13898:1 14174:1 14367:1 14394:1 14679:1 14786:1 14794:1 14823:2 15267:1 15448:1 15683:1 15746:1 15870:1 15901:1 15949:1 16037:1 16216:1 16498:1 16508:78 16512:1 16545:1 16647:1 17008:1 17544:2 17589:1 17689:2 17802:2 17845:1 17931:2 18317:1 18527:1 18544:1 18797:1 18816:1 18823:1 18920:1 19082:1 19132:1 19133:1 19275:1 19433:1 19455:1 19558:1 19648:1 19899:1 19938:1 19991:1 19998:1 19999:2 20062:1 20199:1 20717:1 20750:1 20802:1 20818:1 21397:1 21416:1 21494:1 21795:1 21846:1 21868:1 22082:1 22295:1 22876:1 23083:1 23180:1 23238:1 23350:1 23566:1 23691:1 24053:1 24119:1 24150:1 24221:1 24445:1 24489:1 25022:1 25854:1 25960:1 25992:1 26011:1 26150:1 26163:1 26205:1 26241:1
7 10:1 276:1 327:1 429:1 437:1 984:1 1021:1 1235:1 1242:1 1287:1 1394:1 1539:1 1596:1 1628:1 1653:1 1788:1 1827:1 1848:1 1879:1 1884:1 1964:1 1967:2 1981:1 1997:1 2002:1 2091:1 2181:1 2316:1 2378:1 2394:1 2445:1 2460:1 2472:1 2506:1 2590:2 2868:1 2893:1 2948:1 2982:1 3332:1 3575:1 3782:1 3942:1 4082:1 4123:2 4140:1 4284:1 4305:1 4414:1 4429:1 4430:1 4733:1 4742:1 4744:1 4765:1 5020:1 5275:1 5306:1 5351:1 5516:1 5600:1 5625:1 5645:1 5818:1 5847:2 6246:2 6502:1 6712:1 6723:1 6803:5 6824:2 7180:1 7201:1 7219:2 7254:1 7611:1 7790:1 7835:2 7966:1 8033:1 8322:2 8498:2 8499:1 8510:1 8563:1 8660:1 8664:1 8740:1 8748:1 8993:1 9167:1 9285:1 9376:1 9419:1 9506:1 9532:1 9606:1 9831:1 9912:1 9995:1 10368:1 10428:1 10523:1 10570:1 10745:1 10788:1 11239:1 11396:1 11495:1 11514:1 11539:1 11570:1 11616:1 11632:2 11702:1 11778:2 11975:1 12000:1 12018:1 12114:1 12122:1 12167:1 12550:1 12642:1 12673:1 12695:1 12697:1 12817:1 12958:1 12980:1 12987:1 13261:1 13426:1 13488:1 13551:1 13598:1 13876:1 13897:1 13898:1 14174:1 14367:1 14394:1 14516:1 14571:1 14679:1 14786:1 14794:1 14823:2 15029:1 15036:1 15117:1 15169:1 15267:1 15380:1 15401:1 15417:1 15448:1 15683:1 15746:1 15870:1 15901:1 15949:1 16037:1 16216:1 16301:1 16374:1 16498:1 16508:145 16512:1 16545:1 16647:1 17008:1 17165:1 17544:2 17589:1 17689:2 17802:2 17843:1 17845:1 17931:2 18317:1 18333:1 18519:1 18527:1 18544:1 18797:1 18816:1 18823:1 18920:1 19082:1 19132:1 19133:1 19219:1 19275:2 19348:1 19433:1 19455:1 19558:1 19648:1 19677:1 19696:1 19758:1 19899:1 19938:1 19991:1 19998:1 19999:2 20059:1 20062:1 20124:1 20172:1 20199:1 20297:1 20390:1 20541:1 20717:1 20750:1 20802:1 20818:1 21116:1 21397:1 21416:1 21441:1 21494:1 21779:1 21795:1 21846:1 21868:1 22027:1 22032:1 22082:1 22295:1 22491:2 22558:1 22598:1 22794:1 22876:1 22907:1 23083:1 23180:1 23238:1 23270:1 23350:1 23410:1 23480:1 23484:1 23533:1 23566:1 23691:1 23734:1 24053:1 24119:1 24150:1 24221:1 24445:1 24489:1 24495:1 24548:1 24771:1 24962:1 25022:1 25282:1 25495:1 25542:1 25854:1 25960:1 25992:1 26011:1 26150:1 26163:1 26205:1 26239:2 26241:1
7 10:1 155:1 276:1 327:1 402:1 429:1 437:1 603:1 984:1 1021:1 1168:1 1235:1 1241:1 1242:1 1276:1 1287:1 1386:1 1394:1 1450:1 1539:1 1596:1 1628:1 1653:1 1788:1 1827:1 1848:1 1879:1 1884:1 1964:1 1967:2 1981:1 1997:1 2002:1 2004:1 2053:1 2091:1 2181:1 2237:1 2316:1 2378:1 2394:1 2429:1 2445:1 2450:1 2460:1 2472:1 2506:1 2590:2 2868:1 2893:1 2918:1 2948:1 2982:1 3231:1 3332:1 3575:1 3698:1 3782:1 3851:1 3942:1 4082:1 4123:2 4140:1 4284:1 4305:1 4414:1 4429:1 4430:1 4625:1 4733:1 4742:1 4744:1 4765:1 5010:1 5020:1 5275:1 5306:1 5351:1 5516:1 5600:1 5625:1 5637:1 5645:1 5782:1 5818:1 5847:2 5918:1 6246:2 6326:1 6502:1 6589:1 6712:1 6723:1 6803:6 6824:2 7083:1 7104:1 7180:1 7201:1 7219:2 7254:1 7315:1 7611:1 7767:1 7790:1 7835:2 7966:2 8033:1 8322:2 8498:2 8499:1 8510:1 8534:1 8563:1 8660:1 8664:1 8740:1 8748:1 8993:1 9167:1 9255:1 9264:1 9285:1 9376:1 9419:1 9506:1 9532:1 9606:1 9712:1 9831:1 9912:1 9995:1 10368:1 10401:1 10428:1 10523:1 10570:1 10745:1 10788:1 11239:1 11396:1 11495:1 11496:1 11514:1 11539:1 11570:1 11616:1 11632:2 11702:1 11778:2 11975:1 12000:1 12018:1 12114:1 12122:1 12167:1 12550:1 12642:1 12673:1 12695:1 12697:1 12817:1 12840:1 12958:1 12980:1 12987:1 13261:1 13426:1 13488:1 13551:1 13598:1 13625:1 13686:1 13734:1 13876:1 13897:1 13898:1 14069:1 14174:1 14360:1 14367:1 14394:1 14516:1 14571:1 14649:1 14679:1 14786:1 14794:1 14823:2 15029:1 15036:1 15117:1 15169:1 15178:1 15267:1 15380:1 15401:1 15417:1 15448:1 15683:1 15746:1 15870:1 15901:1 15949:1 16037:1 16060:1 16216:1 16301:1 16374:1 16498:1 16508:183 16512:1 16545:1 16647:1 17008:1 17165:1 17544:2 17589:1 17598:1 17689:2 17802:2 17843:1 17845:1 17931:2 18317:1 18333:1 18383:1 18519:1 18527:1 18544:1 18797:1 18816:1 18823:1 18920:1 19082:1 19132:1 19133:1 19219:1 19275:2 19296:1 19348:1 19433:1 19455:1 19558:1 19648:1 19677:1 19696:1 19758:1 19899:1 19938:1 19991:1 19998:1 19999:2 20059:1 20062:1 20124:1 20172:1 20199:1 20297:1 20390:1 20541:1 20640:1 20717:1 20750:1 20802:1 20818:1 21116:1 21397:1 21416:1 21441:1 21494:1 21779:1 21795:1 21846:1 21868:1 21877:1 22027:1 22032:1 22082:1 22295:1 22491:2 22558:1 22598:1 22794:1 22876:1 22907:1 23083:1 23180:1 23238:1 23270:1 23350:1 23410:1 23480:1 23484:1 23530:1 23533:1 23566:1 23691:1 23734:1 24053:1 24119:1 24150:1 24221:1 24445:1 24485:1 24489:1 24495:1 24548:1 24771:1 24962:1 25022:1 25069:1 25282:1 25460:1 25495:1 25542:1 25583:1 25854:1 25960:1 25992:1 26011:1 26150:1 26163:1 26205:1 26228:1 26239:2 26241:1
7 10:1 155:1 276:1 327:1 402:1 410:1 429:1 437:1 603:1 984:1 1021:1 1168:1 1235:1 1241:1 1242:1 1276:1 1287:1 1386:1 1394:1 1450:1 1539:1 1596:1 1628:1 1653:1 1788:1 1827:1 1848:2 1879:1 1884:1 1964:1 1967:2 1981:1 1997:1 2002:1 2004:1 2053:1 2070:1 2091:1 2181:1 2222:1 2237:1 2316:1 2378:1 2394:1 2429:1 2445:1 2450:1 2453:1 2460:1 2472:1 2506:1 2534:1 2545:1 2590:3 2868:1 2893:1 2918:2 2948:1 2982:1 3231:1 3332:1 3432:1 3575:1 3698:1 3706:1 3782:1 3791:1 3851:1 3916:1 3942:1 4082:1 4123:2 4140:1 4284:1 4305:1 4414:1 4429:1 4430:1 4441:1 4457:1 4597:1 4625:1 4709:1 4733:1 4742:1 4744:1 4765:1 5006:1 5010:1 5020:1 5275:1 5306:1 5351:1 5441:1 5516:1 5600:1 5625:1 5637:1 5645:1 5782:1 5818:1 5847:2 5918:1 6098:1 6246:2 6326:1 6460:1 6502:1 6589:1 6621:1 6632:1 6638:1 6712:1 6723:1 6803:6 6824:3 7083:1 7104:1 7180:1 7201:1 7219:3 7254:1 7315:1 7611:1 7767:1 7790:1 7835:2 7966:2 8033:1 8277:1 8322:2 8432:1 8498:2 8499:1 8510:1 8534:1 8563:1 8660:1 8664:1 8740:1 8748:1 8909:1 8993:1 8996:1 9070:1 9167:1 9255:1 9264:1 9285:1 9374:1 9376:1 9419:1 9506:1 9532:1 9606:1 9712:2 9831:1 9912:1 9995:1 10103:1 10368:1 10401:1 10407:1 10428:1 10481:1 10513:1 10523:1 10570:1 10745:1 10788:1 10801:1 11239:1 11261:1 11314:1 11396:1 11495:1 11496:1 11514:1 11539:1 11570:1 11616:1 11632:2 11702:1 11761:1 11778:2 11975:1 12000:1 12018:1 12114:1 12122:1 12167:1 12239:1 12410:1 12550:1 12642:1 12673:1 12695:1 12697:1 12817:1 12826:1 12840:1 12958:1 12980:1 12987:1 13102:1 13261:1 13426:1 13488:1 13551:1 13598:1 13625:1 13663:1 13686:1 13734:1 13876:1 13897:2 13898:1 14069:1 14174:1 14360:1 14367:1 14390:1 14394:1 14516:1 14571:1 14608:1 14621:1 14649:1 14679:1 14786:1 14794:2 14823:3 14841:1 14908:1 15029:1 15036:1 15117:1 15169:1 15178:2 15267:1 15380:1 15401:1 15417:1 15448:1 15683:1 15746:1 15870:1 15901:1 15949:1 16037:1 16060:1 16216:2 16301:1 16374:1 16444:1 16498:1 16508:253 16512:1 16545:1 16647:2 16735:1 17008:1 17009:1 17092:1 17163:1 17165:1 17544:3 17589:1 17598:1 17689:2 17802:2 17843:1 17845:1 17931:3 18153:1 18317:1 18333:1 18383:1 18503:1 18519:1 18527:2 18544:1 18774:1 18797:1 18816:1 18823:1 18920:1 19082:1 19132:2 19133:1 19219:1 19275:2 19296:2 19348:1 19433:1 19455:1 19558:1 19568:1 19624:1 19648:1 19677:1 19696:1 19709:1 19758:1 19899:1 19938:1 19991:1 19998:1 19999:2 20059:1 20062:1 20124:1 20172:1 20186:1 20199:1 20297:2 20390:1 20461:1 20541:1 20640:1 20717:1 20750:1 20770:1 20802:1 20818:1 20827:1 21116:1 21392:1 21397:1 21416:1 21432:1 21441:1 21494:1 21770:1 21772:1 21779:1 21795:1 21846:1 21868:1 21872:1 21877:1 22027:1 22032:1 22082:1 22295:2 22491:2 22558:1 22598:1 22787:1 22794:1 22876:1 22907:1 22944:1 22976:1 23083:1 23135:1 23180:1 23238:1 23270:1 23316:1 23350:1 23410:1 23411:1 23480:1 23484:1 23530:1 23533:1 23552:1 23566:1 23691:1 23698:1 23734:1 23735:1 23853:1 23957:1 24053:1 24119:1 24150:1 24221:1 24445:1 24480:1 24485:1 24488:1 24489:1 24495:1 24515:1 24548:1 24745:1 24771:1 24868:1 24962:1 25022:2 25044:1 25069:1 25093:1 25096:1 25282:1 25310:1 25457:1 25460:1 25495:1 25527:1 25542:1 25583:1 25584:1 25679:1 25854:1 25960:1 25971:1 25992:1 26011:1 26076:1 26128:1 26150:1 26163:1 26205:1 26228:1 26239:2 26241:1 26318:1
7 10:1 155:1 276:1 327:1 391:1 402:1 410:1 429:1 437:1 603:2 890:1 984:1 1021:1 1168:1 1235:1 1241:1 1242:1 1276:1 1287:1 1386:1 1394:1 1450:1 1539:1 1596:1 1628:1 1653:1 1721:1 1788:1 1827:1 1848:2 1879:1 1884:1 1964:1 1967:2 1978:1 1981:1 1997:1 2002:1 2004:1 2053:1 2070:1 2091:1 2181:1 2222:1 2237:1 2316:1 2378:1 2394:1 2429:1 2445:1 2450:1 2453:2 2460:1 2472:1 2506:1 2534:1 2545:1 2590:3 2868:1 2893:1 2918:2 2948:1 2982:1 3046:1 3159:1 3187:1 3231:1 3238:1 3332:1 3365:1 3432:1 3575:1 3698:1 3706:1 3782:1 3791:1 3851:1 3916:1 3942:1 4082:1 4098:1 4123:2 4140:1 4204:1 4284:1 4305:1 4308:1 4414:1 4429:1 4430:1 4441:1 4449:1 4457:1 4597:1 4625:1 4709:1 4733:1 4742:1 4744:1 4765:1 5006:1 5010:1 5020:1 5275:1 5306:1 5351:1 5441:1 5516:1 5600:1 5617:1 5625:1 5637:1 5645:1 5782:1 5818:1 5847:2 5918:1 6098:1 6246:2 6326:1 6460:1 6502:1 6589:2 6621:1 6632:1 6633:1 6638:1 6712:1 6723:1 6803:7 6824:3 7083:1 7104:1 7180:1 7201:1 7205:1 7219:3 7254:1 7315:1 7420:1 7611:1 7628:1 7767:1 7790:1 7835:2 7966:2 8033:1 8090:1 8277:1 8322:2 8432:1 8498:2 8499:1 8510:1 8534:1 8563:1 8660:1 8664:1 8740:1 8748:1 8769:1 8909:1 8993:1 8996:1 9058:1 9070:1 9167:1 9255:1 9264:1 9285:1 9293:1 9374:2 9376:1 9419:1 9490:1 9506:1 9532:1 9606:1 9712:2 9831:1 9912:1 9995:1 10098:1 10103:1 10368:1 10401:1 10407:1 10428:1 10481:1 10513:1 10523:1 10570:1 10745:1 10788:1 10801:1 10813:1 11105:1 11239:1 11261:1 11307:1 11314:1 11396:1 11495:1 11496:1 11514:1 11539:1 11570:1 11616:1 11632:2 11702:1 11761:1 11778:2 11797:1 11975:1 12000:1 12018:1 12114:1 12122:1 12167:1 12239:1 12410:1 12550:1 12642:1 12673:1 12695:1 12697:1 12817:1 12826:1 12840:1 12846:1 12958:1 12980:1 12987:1 13102:1 13120:1 13261:1 13426:1 13488:1 13545:1 13551:1 13598:1 13625:1 13663:1 13686:1 13726:1 13734:2 13821:1 13876:1 13897:2 13898:1 14014:1 14062:1 14069:1 14174:1 14293:1 14360:1 14367:1 14390:1 14394:1 14516:1 14571:1 14608:1 14621:1 14649:1 14679:1 14786:1 14794:2 14823:3 14841:1 14908:1 15029:1 15036:1 15117:1 15169:1 15178:2 15267:1 15380:1 15401:1 15417:1 15448:1 15683:1 15746:1 15870:1 15901:1 15949:1 16037:1 16060:1 16216:2 16301:1 16374:1 16444:1 16498:1 16508:283 16512:1 16545:1 16647:2 16735:1 16993:1 17008:1 17009:1 17092:1 17163:1 17165:1 17437:1 17544:3 17589:1 17598:1 17689:2 17706:1 17802:2 17843:1 17845:1 17931:3 18153:1 18317:1 18333:1 18383:1 18486:1 18503:1 18519:1 18527:2 18544:1 18774:1 18797:1 18816:1 18823:1 18920:1 19082:1 19132:2 19133:1 19219:1 19275:2 19296:2 19348:1 19433:1 19455:1 19490:1 19558:1 19568:1 19624:1 19648:1 19677:1 19696:1 19709:1 19758:1 19817:1 19899:1 19938:1 19991:1 19998:1 19999:2 20059:1 20062:1 20124:1 20172:1 20186:1 20199:1 20297:2 20374:1 20390:1 20438:1 20461:1 20541:1 20640:2 20717:1 20750:1 20770:1 20802:1 20818:1 20827:1 20929:1 21109:1 21116:1 21392:1 21397:1 21416:1 21432:1 21441:1 21494:1 21770:1 21772:1 21779:1 21784:1 21795:1 21812:1 21846:1 21868:1 21869:3 21872:1 21877:1 22027:1 22032:1 22082:1 22295:2 22491:2 22558:1 22598:1 22706:1 22787:1 22794:1 22876:1 22907:1 22944:2 22955:1 22976:1 23083:1 23135:1 23180:1 23238:1 23270:1 23291:1 23316:1 23350:1 23410:1 23411:1 23480:1 23484:1 23511:1 23530:1 23533:1 23552:1 23566:1 23691:1 23698:1 23734:1 23735:1 23819:1 23853:1 23924:1 23957:1 24053:1 24119:1 24150:1 24221:1 24412:1 24445:1 24480:1 24485:1 24488:1 24489:1 24495:1 24502:1 24515:1 24548:1 24684:1 24709:1 24745:1 24771:1 24868:1 24962:1 25022:2 25044:1 25069:1 25093:1 25096:1 25251:1 25282:1 25287:1 25310:1 25457:1 25460:1 25495:1 25527:1 25540:1 25542:1 25583:1 25584:1 25679:1 25854:1 25960:1 25971:1 25992:1 26011:1 26076:1 26128:1 26150:1 26163:1 26205:1 26228:1 26239:2 26241:1 26318:1
7 10:1 155:1 276:1 327:1 391:1 402:1 410:1 429:1 437:1 510:1 603:2 890:1 984:1 1021:1 1081:1 1168:1 1235:1 1241:1 1242:1 1276:1 1287:1 1386:1 1394:1 1450:1 1539:1 1596:1 1628:1 1653:1 1721:1 1788:1 1827:1 1848:2 1879:1 1884:1 1888:1 1964:1 1967:2 1968:1 1978:1 1981:1 1997:2 2002:1 2004:1 2053:1 2070:1 2091:1 2181:1 2222:1 2237:1 2316:1 2378:1 2394:2 2429:1 2445:1 2450:1 2453:2 2460:1 2472:1 2506:1 2534:1 2545:1 2590:3 2868:1 2893:1 2918:2 2948:1 2982:1 3046:1 3153:1 3159:1 3187:1 3231:1 3235:1 3238:1 3332:1 3365:1 3432:1 3575:1 3698:1 3706:1 3752:1 3782:1 3791:1 3851:1 3916:1 3942:1 4082:1 4096:1 4098:1 4123:2 4140:1 4204:1 4284:1 4305:1 4308:1 4414:1 4429:1 4430:2 4441:1 4449:1 4456:1 4457:1 4597:1 4625:1 4652:1 4709:1 4733:1 4742:1 4744:1 4765:1 4953:1 5006:1 5010:1 5020:1 5275:1 5306:1 5351:1 5441:1 5478:1 5516:1 5542:1 5600:1 5617:1 5625:1 5637:1 5645:1 5782:1 5818:1 5847:2 5918:2 6010:1 6098:1 6188:1 6246:2 6326:1 6460:1 6502:1 6589:2 6621:1 6632:1 6633:1 6638:1 6712:1 6723:1 6803:8 6824:3 7083:1 7104:1 7180:1 7201:1 7205:1 7219:3 7254:1 7315:1 7420:1 7611:1 7628:1 7767:1 7790:1 7835:2 7910:1 7960:1 7966:2 8033:1 8090:1 8277:1 8322:2 8432:1 8498:2 8499:1 8510:1 8534:1 8563:1 8660:1 8664:1 8740:1 8748:1 8769:1 8909:1 8956:1 8993:1 8996:1 9033:1 9058:1 9070:1 9167:1 9255:1 9264:1 9285:1 9293:1 9318:1 9374:2 9376:1 9419:1 9490:1 9506:1 9532:1 9606:1 9611:1 9712:2 9831:1 9912:1 9995:1 10098:1 10103:1 10368:1 10401:1 10407:1 10428:1 10481:1 10513:1 10523:1 10570:1 10684:1 10745:1 10788:1 10801:1 10813:1 10875:1 11105:1 11239:1 11261:1 11307:1 11314:1 11317:1 11373:1 11396:1 11495:1 11496:1 11514:1 11539:1 11570:1 11616:1 11632:2 11702:1 11761:1 11778:2 11790:1 11797:1 11805:1 11975:1 12000:1 12018:1 12114:1 12122:1 12167:1 12193:1 12239:1 12405:1 12410:1 12550:1 12642:1 12673:1 12695:1 12697:1 12712:1 12789:1 12817:1 12826:1 12831:1 12840:1 12846:1 12958:1 12980:1 12987:1 13102:1 13120:1 13132:1 13219:1 13261:1 13426:1 13488:1 13545:1 13551:1 13598:1 13625:1 13663:1 13686:1 13700:1 13726:1 13734:2 13821:1 13876:1 13897:2 13898:1 13899:1 13952:1 14014:1 14062:1 14069:1 14146:1 14174:1 14293:1 14313:1 14360:1 14367:1 14390:1 14394:1 14516:1 14571:1 14608:1 14621:1 14649:1 14679:1 14786:1 14794:2 14823:3 14841:1 14908:1 15029:1 15036:1 15043:1 15054:1 15117:1 15169:1 15178:2 15267:1 15380:1 15401:1 15417:1 15420:1 15448:1 15683:1 15746:1 15799:1 15870:1 15901:1 15949:1 16037:1 16060:1 16216:2 16301:2 16374:1 16444:1 16498:1 16508:322 16512:1 16545:1 16647:2 16703:1 16735:1 16932:1 16993:1 17008:1 17009:1 17092:1 17163:1 17165:1 17358:1 17437:1 17544:3 17565:1 17589:1 17595:1 17598:1 17689:2 17706:1 17721:1 17769:1 17802:2 17843:1 17845:1 17931:3 18153:1 18206:1 18317:1 18333:1 18383:1 18454:1 18486:1 18503:1 18519:1 18527:2 18544:1 18649:1 18692:1 18774:1 18797:1 18816:1 18823:1 18920:1 19082:1 19120:1 19132:2 19133:1 19174:1 19219:1 19275:2 19296:2 19348:1 19433:1 19434:1 19455:1 19490:1 19500:1 19558:1 19568:1 19624:1 19636:1 19648:1 19677:1 19696:1 19709:1 19758:1 19817:1 19822:1 19899:1 19909:1 19938:1 19991:1 19998:1 19999:2 20059:1 20062:1 20124:1 20172:1 20186:1 20199:1 20297:3 20374:1 20390:1 20421:1 20438:1 20461:1 20485:1 20508:1 20541:1 20640:2 20717:1 20750:1 20770:1 20802:1 20818:1 20827:1 20929:1 21077:1 21109:1 21116:1 21151:1 21194:1 21346:1 21392:1 21397:1 21416:1 21432:1 21441:1 21494:1 21752:1 21770:1 21772:1 21779:1 21784:1 21795:1 21812:1 21846:1 21868:1 21869:3 21872:1 21877:1 21905:1 22027:1 22032:1 22082:1 22295:2 22491:3 22558:1 22598:1 22706:1 22787:1 22794:1 22819:1 22876:1 22907:1 22944:2 22955:1 22976:1 23083:1 23106:1 23135:1 23179:1 23180:1 23238:1 23270:1 23291:1 23316:1 23350:2 23410:2 23411:1 23480:1 23484:1 23511:1 23530:1 23533:1 23552:1 23566:1 23597:1 23691:1 23698:1 23734:1 23735:1 23819:1 23853:1 23924:1 23957:1 24053:1 24119:1 24150:1 24217:1 24221:1 24412:1 24445:1 24480:1 24485:1 24488:1 24489:1 24495:1 24502:1 24515:1 24548:1 24684:1 24709:1 24745:1 24771:1 24868:1 24905:1 24962:1 25022:3 25044:1 25069:1 25093:1 25096:1 25251:1 25282:1 25287:1 25310:1 25312:1 25382:1 25457:1 25460:1 25495:1 25527:1 25540:1 25542:1 25583:1 25584:1 25679:1 25854:1 25960:1 25971:1 25992:1 26011:1 26076:1 26122:1 26128:1 26150:1 26163:1 26205:1 26209:1 26228:1 26231:1 26239:2 26241:1 26250:1 26279:1 26318:1 26330:1
7 10:1 21:1 155:1 276:1 327:1 391:1 402:1 410:1 429:1 437:1 510:1 603:3 890:1 984:1 1021:1 1076:1 1081:1 1168:1 1235:1 1241:1 1242:1 1276:1 1287:1 1386:1 1394:1 1450:1 1539:2 1579:1 1596:1 1628:1 1653:2 1721:1 1788:1 1815:1 1827:1 1848:2 1879:1 1884:1 1888:1 1930:1 1964:1 1967:3 1968:1 1978:1 1981:1 1997:2 2002:1 2004:1 2053:1 2064:1 2070:1 2091:1 2145:1 2181:1 2222:1 2237:1 2273:1 2316:1 2378:1 2394:2 2429:1 2445:1 2450:1 2453:2 2460:1 2472:1 2506:1 2534:1 2545:1 2590:3 2760:1 2868:1 2893:1 2918:2 2948:1 2977:1 2982:1 3046:1 3153:1 3159:1 3187:1 3231:1 3235:1 3238:1 3332:1 3365:1 3432:1 3575:1 3698:1 3706:1 3752:1 3763:1 3782:1 3791:1 3817:1 3851:1 3916:1 3942:1 4082:1 4096:1 4098:1 4123:2 4140:1 4204:1 4284:1 4305:2 4308:1 4414:1 4429:1 4430:3 4441:1 4449:1 4456:1 4457:1 4597:1 4625:1 4652:1 4709:1 4733:1 4742:1 4744:1 4765:1 4766:1 4925:1 4953:1 5006:1 5010:1 5020:1 5052:1 5275:1 5306:1 5319:1 5351:1 5441:1 5478:1 5516:1 5542:1 5600:2 5617:2 5625:1 5637:1 5645:1 5647:1 5673:1 5782:1 5797:1 5818:1 5847:2 5886:1 5918:2 6010:1 6098:1 6188:1 6246:2 6326:1 6460:1 6502:1 6589:3 6621:1 6632:1 6633:1 6638:1 6653:1 6702:1 6712:1 6723:1 6741:1 6803:9 6824:3 7083:1 7104:1 7180:1 7201:1 7205:1 7219:3 7254:1 7315:1 7416:1 7420:1 7549:1 7611:1 7628:1 7644:1 7714:1 7767:1 7790:1 7807:1 7835:2 7910:1 7960:1 7966:2 8028:1 8033:1 8090:1 8167:1 8277:1 8322:2 8342:1 8432:1 8498:2 8499:1 8510:2 8534:1 8563:1 8660:1 8664:1 8740:1 8748:1 8769:1 8828:1 8882:1 8909:1 8956:1 8965:1 8993:1 8996:1 9033:1 9058:1 9070:1 9167:1 9255:1 9264:1 9285:1 9292:1 9293:1 9318:1 9374:2 9376:1 9419:1 9464:1 9490:1 9506:1 9532:1 9534:1 9606:1 9611:1 9712:2 9718:1 9831:1 9912:1 9995:1 10098:1 10103:1 10132:1 10341:1 10368:1 10382:1 10401:1 10407:1 10428:1 10429:1 10481:1 10513:1 10518:1 10523:1 10570:1 10684:1 10745:1 10788:1 10801:1 10813:1 10875:1 11105:1 11239:1 11261:1 11307:1 11314:1 11317:1 11373:1 11396:1 11426:1 11495:1 11496:1 11514:1 11539:1 11570:1 11616:1 11632:2 11702:1 11761:1 11778:2 11790:1 11797:1 11805:1 11975:1 12000:1 12018:1 12098:1 12114:1 12122:1 12167:1 12193:1 12239:2 12279:1 12405:1 12410:1 12550:1 12584:1 12642:1 12673:1 12695:1 12697:1 12712:1 12789:1 12817:1 12826:1 12831:1 12840:1 12846:1 12958:1 12980:1 12987:1 12996:1 13102:1 13120:1 13132:1 13219:1 13234:1 13261:1 13414:1 13426:1 13488:1 13532:1 13545:1 13551:1 13598:1 13625:1 13663:1 13686:1 13700:1 13726:1 13734:3 13821:1 13875:1 13876:1 13897:2 13898:1 13899:1 13952:1 14014:1 14062:1 14069:1 14108:1 14146:1 14174:1 14183:1 14293:1 14313:1 14360:1 14367:1 14387:1 14390:1 14394:1 14516:1 14571:1 14608:1 14621:1 14649:1 14679:1 14704:1 14786:1 14794:2 14823:3 14841:1 14908:1 14926:1 15029:1 15036:1 15043:1 15054:1 15117:1 15169:1 15178:2 15267:1 15276:1 15380:1 15401:1 15417:1 15420:1 15448:1 15458:1 15583:1 15683:1 15746:1 15799:1 15870:1 15901:1 15949:1 16037:1 16060:1 16172:1 16216:2 16301:2 16374:1 16444:1 16446:1 16498:1 16508:389 16512:1 16545:2 16647:2 16703:1 16735:1 16932:1 16993:1 17002:1 17008:1 17009:1 17092:1 17163:1 17165:1 17358:1 17437:1 17544:3 17565:1 17589:1 17595:1 17598:1 17689:3 17706:1 17721:1 17769:2 17802:2 17843:1 17845:1 17931:3 17960:1 18153:1 18206:1 18317:1 18333:1 18383:1 18454:1 18486:1 18503:1 18519:1 18527:2 18534:1 18544:1 18649:1 18692:1 18774:1 18797:1 18816:1 18823:1 18920:1 19024:1 19082:1 19120:1 19132:2 19133:1 19174:1 19219:1 19239:1 19275:2 19296:2 19332:1 19348:1 19433:1 19434:1 19455:1 19459:1 19490:1 19500:1 19535:1 19558:1 19568:1 19624:1 19636:1 19648:1 19677:1 19696:1 19709:1 19758:1 19817:1 19822:1 19831:1 19842:1 19899:1 19909:1 19938:1 19991:1 19998:1 19999:2 20059:1 20062:1 20086:1 20124:1 20172:1 20186:2 20199:1 20297:3 20334:1 20374:1 20390:1 20421:1 20438:1 20461:1 20485:1 20508:1 20541:1 20640:2 20717:1 20750:1 20770:1 20802:1 20818:1 20827:1 20891:1 20929:1 21006:1 21077:1 21109:1 21116:1 21151:1 21194:1 21346:1 21392:1 21397:1 21416:1 21432:1 21441:1 21494:1 21689:1 21752:1 21770:1 21772:1 21779:1 21784:1 21795:1 21812:2 21846:1 21868:1 21869:3 21872:1 21877:1 21905:1 22027:1 22032:1 22082:1 22295:2 22346:1 22461:1 22491:3 22558:1 22598:1 22702:1 22706:1 22787:1 22794:1 22819:1 22876:1 22907:1 22944:2 22955:1 22976:1 23083:1 23106:2 23135:1 23179:1 23180:2 23238:1 23270:1 23291:1 23316:1 23350:2 23410:2 23411:1 23480:1 23484:1 23511:1 23530:1 23533:1 23552:1 23566:1 23597:1 23666:1 23691:1 23698:1 23734:1 23735:1 23760:1 23819:1 23853:1 23924:1 23957:1 24053:1 24119:1 24150:1 24179:1 24217:1 24221:2 24295:1 24412:1 24445:1 24480:1 24485:1 24488:1 24489:1 24495:1 24502:1 24515:1 24548:1 24658:1 24684:1 24709:1 24745:1 24771:1 24777:1 24868:1 24905:1 24962:1 25022:3 25044:1 25069:1 25093:1 25096:1 25110:1 25251:2 25282:1 25287:1 25310:1 25312:1 25382:1 25457:1 25460:1 25495:1 25527:1 25540:1 25542:1 25583:1 25584:1 25619:1 25679:1 25854:1 25960:1 25971:1 25992:1 26011:1 26027:1 26076:1 26122:1 26128:1 26150:1 26163:2 26205:1 26209:1 26228:1 26231:2 26239:2 26241:2 26250:1 26279:1 26318:1 26330:1
7 10:1 21:1 155:1 218:1 276:1 327:1 391:1 402:1 410:1 429:1 437:1 501:1 508:1 510:1 603:3 782:1 801:1 854:1 890:1 982:1 984:1 1021:1 1076:1 1081:1 1168:1 1235:1 1241:1 1242:1 1276:1 1287:1 1386:1 1394:1 1450:1 1539:2 1579:1 1596:1 1628:1 1653:2 1721:1 1788:1 1815:1 1827:1 1848:2 1868:1 1879:1 1884:1 1888:1 1930:1 1964:1 1967:3 1968:1 1978:1 1981:1 1997:2 2002:1 2004:1 2053:1 2064:1 2070:1 2091:1 2099:1 2145:1 2172:1 2181:1 2222:1 2237:1 2273:1 2316:1 2378:1 2394:2 2429:1 2445:1 2450:1 2453:2 2460:1 2466:1 2472:1 2506:1 2534:1 2545:1 2590:3 2760:1 2868:1 2893:1 2918:2 2948:1 2977:1 2982:1 3046:1 3084:1 3153:1 3159:1 3169:1 3187:1 3189:1 3231:1 3235:1 3238:1 3332:1 3365:1 3432:1 3537:1 3575:1 3682:1 3698:1 3706:1 3752:1 3763:1 3782:1 3791:1 3817:1 3851:1 3916:1 3942:1 4082:1 4096:1 4098:1 4113:1 4123:2 4140:1 4204:1 4284:1 4305:2 4308:1 4339:1 4414:1 4429:1 4430:3 4437:1 4441:1 4449:1 4456:1 4457:1 4597:1 4625:1 4652:1 4709:1 4733:1 4742:1 4744:1 4765:1 4766:1 4925:2 4953:1 5006:1 5010:1 5020:1 5052:1 5275:1 5306:1 5319:1 5351:1 5441:1 5478:1 5499:1 5516:1 5542:1 5600:2 5617:2 5625:1 5637:1 5645:1 5647:1 5673:1 5782:1 5797:1 5818:1 5847:2 5886:1 5918:2 6009:1 6010:2 6098:1 6105:2 6188:1 6246:2 6326:1 6345:1 6356:1 6460:1 6502:1 6519:1 6589:3 6603:1 6621:1 6632:1 6633:1 6638:1 6653:1 6702:1 6712:1 6723:1 6740:1 6741:1 6803:9 6824:3 6957:1 7083:1 7104:1 7180:1 7201:1 7205:1 7219:5 7254:1 7274:1 7315:1 7416:1 7420:1 7549:1 7611:1 7628:1 7644:1 7651:1 7714:1 7767:1 7790:1 7807:1 7835:2 7910:1 7960:1 7966:2 8028:2 8033:1 8090:1 8167:1 8169:1 8170:1 8277:1 8322:2 8326:1 8342:1 8432:1 8476:1 8498:2 8499:1 8510:2 8534:1 8563:1 8657:1 8660:1 8664:1 8687:1 8740:1 8748:1 8769:1 8828:1 8882:1 8909:1 8956:2 8965:1 8993:1 8996:1 9033:1 9044:1 9058:1 9070:1 9117:1 9167:1 9255:1 9264:1 9285:1 9292:1 9293:1 9318:1 9374:2 9376:1 9419:1 9464:1 9490:1 9506:1 9532:1 9534:1 9535:1 9606:1 9611:1 9712:2 9718:1 9831:1 9912:1 9995:1 10098:1 10103:1 10132:1 10166:1 10182:1 10341:1 10368:1 10382:1 10388:1 10401:1 10407:1 10428:1 10429:1 10481:1 10513:1 10518:1 10523:1 10530:1 10570:1 10684:1 10745:1 10788:1 10801:1 10813:1 10875:1 11105:1 11239:1 11261:1 11307:1 11314:1 11317:1 11373:1 11396:1 11426:1 11491:1 11495:1 11496:1 11514:1 11539:1 11570:1 11616:1 11632:2 11702:1 11761:1 11778:2 11790:1 11797:1 11805:1 11975:1 12000:1 12018:1 12069:1 12098:1 12112:1 12114:1 12122:2 12167:1 12193:1 12199:1 12238:1 12239:2 12279:1 12405:1 12410:1 12456:1 12545:1 12550:1 12584:1 12642:1 12673:1 12695:1 12697:1 12712:1 12789:1 12816:1 12817:1 12826:1 12831:1 12840:1 12846:1 12958:1 12980:1 12987:1 12996:1 13008:1 13021:1 13102:1 13120:1 13132:1 13219:1 13234:1 13261:1 13414:1 13426:1 13428:1 13488:1 13532:1 13545:1 13551:1 13598:1 13625:1 13663:1 13686:1 13700:1 13726:1 13734:3 13821:1 13875:1 13876:1 13897:2 13898:1 13899:1 13900:1 13952:1 14014:1 14047:1 14062:1 14069:1 14108:1 14146:1 14174:1 14183:1 14293:1 14313:1 14327:1 14360:1 14367:1 14369:1 14387:1 14390:1 14394:2 14515:1 14516:1 14571:1 14596:1 14608:1 14617:1 14621:1 14649:1 14679:1 14704:1 14786:1 14794:2 14823:3 14841:1 14908:1 14926:1 15029:1 15036:1 15043:1 15054:1 15117:1 15169:1 15178:2 15267:1 15276:1 15380:1 15388:1 15401:1 15417:1 15420:1 15448:1 15454:1 15458:1 15550:1 15583:1 15683:1 15741:1 15746:1 15799:1 15870:1 15901:1 15949:1 16037:1 16060:1 16084:1 16172:1 16216:2 16301:3 16309:1 16374:1 16444:1 16446:1 16498:1 16508:442 16512:1 16545:2 16647:2 16670:1 16703:1 16735:1 16932:1 16993:1 17002:1 17008:1 17009:1 17054:1 17092:1 17163:1 17165:1 17236:1 17293:1 17358:1 17409:1 17437:1 17514:1 17544:3 17565:1 17589:1 17595:1 17598:1 17689:3 17706:1 17721:1 17769:2 17802:2 17843:1 17845:1 17931:3 17960:1 18039:1 18153:1 18206:1 18317:1 18333:1 18383:1 18454:1 18486:1 18503:1 18519:1 18527:2 18534:1 18544:1 18573:1 18649:1 18692:1 18774:1 18797:1 18816:1 18823:1 18920:1 18979:1 19024:1 19039:1 19082:1 19120:1 19132:2 19133:1 19174:1 19219:1 19239:1 19275:2 19296:2 19332:1 19348:1 19433:1 19434:1 19455:1 19459:1 19490:1 19500:1 19535:1 19558:1 19568:1 19624:1 19636:1 19648:1 19677:1 19696:1 19709:1 19740:1 19758:1 19817:1 19822:1 19831:1 19842:1 19888:1 19899:1 19909:1 19938:1 19991:1 19998:1 19999:2 20059:1 20062:1 20086:1 20124:1 20172:1 20186:2 20199:1 20297:3 20334:1 20374:1 20390:1 20421:1 20438:1 20461:1 20485:1 20508:1 20541:1 20640:2 20717:1 20742:1 20750:2 20770:1 20802:1 20818:1 20827:1 20837:1 20891:1 20929:1 20963:1 21006:1 21077:1 21109:1 21116:1 21123:1 21151:1 21194:1 21346:1 21392:1 21397:1 21416:1 21432:1 21441:1 21494:1 21571:1 21689:1 21752:1 21770:1 21772:1 21778:1 21779:1 21784:1 21795:1 21812:2 21846:1 21868:1 21869:3 21872:1 21877:1 21905:1 22027:1 22032:1 22082:1 22143:1 22188:1 22295:2 22343:1 22346:1 22461:1 22491:3 22558:1 22598:1 22697:1 22702:1 22706:1 22787:1 22794:1 22801:2 22819:1 22876:1 22907:1 22944:2 22955:1 22976:2 23035:1 23083:1 23106:2 23135:1 23179:1 23180:2 23238:1 23270:1 23291:1 23316:1 23350:2 23410:3 23411:1 23480:1 23484:1 23511:1 23530:1 23533:1 23552:1 23566:1 23597:1 23666:1 23691:1 23698:1 23734:1 23735:1 23760:1 23819:1 23853:1 23924:1 23957:1 23963:1 23987:1 24053:1 24119:1 24150:1 24179:1 24217:1 24221:2 24230:1 24295:1 24404:1 24412:1 24414:1 24445:1 24464:1 24480:1 24485:1 24488:1 24489:1 24495:1 24502:1 24515:1 24548:1 24588:1 24658:1 24684:1 24709:1 24745:1 24771:1 24777:1 24868:1 24905:1 24962:1 25022:3 25044:1 25069:1 25083:1 25093:1 25096:1 25110:1 25251:2 25276:1 25278:1 25282:1 25287:1 25310:1 25312:1 25348:1 25351:1 25382:1 25457:1 25460:1 25495:1 25527:1 25540:1 25542:1 25583:1 25584:1 25619:1 25679:1 25753:1 25777:1 25854:1 25880:1 25956:1 25960:1 25971:1 25992:1 26011:1 26027:1 26076:1 26122:1 26128:1 26150:1 26163:2 26205:1 26209:1 26228:1 26231:2 26239:2 26241:2 26244:1 26250:1 26279:1 26318:1 26330:1
7 10:1 21:1 155:2 164:1 218:1 276:1 327:1 391:1 402:1 410:1 429:1 437:1 441:1 501:1 508:1 510:2 553:1 603:3 782:1 801:1 854:1 890:1 982:1 984:1 1021:1 1076:1 1081:1 1168:2 1235:1 1241:1 1242:1 1276:1 1287:1 1386:1 1394:2 1444:1 1450:2 1466:1 1539:2 1579:1 1596:1 1628:1 1639:1 1653:2 1721:1 1788:1 1815:1 1827:1 1848:3 1868:1 1879:2 1884:1 1888:1 1930:2 1964:1 1967:3 1968:1 1978:1 1981:1 1982:1 1997:2 2002:1 2004:1 2053:1 2064:1 2070:1 2091:1 2099:1 2145:1 2172:1 2181:1 2222:1 2237:1 2273:1 2316:1 2378:1 2394:2 2429:1 2445:1 2450:1 2453:2 2460:2 2466:1 2472:1 2506:1 2534:1 2545:1 2590:4 2760:1 2868:1 2893:2 2918:3 2948:1 2977:1 2982:1 3046:1 3084:1 3153:1 3159:2 3169:1 3187:1 3189:1 3231:1 3235:1 3238:1 3332:1 3365:1 3432:1 3537:1 3575:1 3617:1 3682:1 3698:1 3706:1 3752:1 3763:1 3782:1 3791:1 3817:1 3851:1 3916:1 3942:1 3944:1 3997:1 4082:1 4096:1 4097:1 4098:1 4113:1 4123:2 4140:1 4193:1 4204:1 4284:2 4305:2 4308:1 4339:1 4376:1 4414:2 4429:2 4430:4 4437:1 4441:1 4449:1 4456:1 4457:1 4484:1 4597:1 4602:1 4625:2 4652:1 4709:1 4733:1 4742:1 4744:1 4765:1 4766:1 4925:2 4953:1 5006:1 5010:1 5020:1 5052:1 5053:1 5275:1 5306:1 5319:1 5351:1 5441:1 5478:1 5499:1 5516:1 5542:2 5566:1 5581:1 5600:2 5617:2 5625:2 5637:1 5645:1 5647:2 5673:1 5782:1 5797:1 5818:1 5847:2 5886:1 5918:2 5990:1 6009:1 6010:2 6098:1 6102:1 6105:2 6188:1 6246:2 6326:1 6328:1 6345:1 6356:1 6460:1 6502:1 6519:1 6589:3 6603:1 6621:1 6632:1 6633:1 6638:1 6653:1 6702:2 6712:1 6723:1 6740:1 6741:1 6803:10 6824:4 6957:1 7072:1 7083:1 7104:1 7180:2 7201:1 7205:1 7219:5 7254:1 7274:1 7315:1 7416:1 7420:1 7536:1 7549:1 7611:2 7628:1 7644:1 7651:1 7714:1 7767:1 7790:1 7807:1 7815:1 7835:2 7910:1 7960:1 7966:2 8028:2 8033:1 8090:2 8167:1 8169:1 8170:1 8277:1 8322:2 8326:1 8342:1 8432:1 8476:1 8498:2 8499:1 8510:2 8534:1 8563:1 8628:1 8657:1 8660:1 8664:1 8687:1 8740:1 8748:1 8769:1 8824:1 8828:1 8882:1 8909:1 8956:2 8965:2 8993:1 8996:1 9033:1 9044:1 9058:1 9070:1 9117:1 9167:1 9255:1 9264:1 9285:1 9292:1 9293:1 9318:1 9374:2 9376:1 9419:1 9464:1 9490:1 9506:1 9532:1 9534:1 9535:1 9606:1 9611:1 9712:3 9718:1 9831:1 9912:1 9995:1 10093:1 10098:2 10103:1 10132:1 10166:1 10182:1 10341:2 10368:1 10382:1 10388:1 10401:1 10407:1 10428:1 10429:1 10481:1 10513:1 10518:1 10523:1 10530:1 10570:1 10681:1 10684:1 10694:1 10745:1 10782:1 10788:1 10801:1 10813:1 10875:1 11105:2 11239:1 11261:1 11307:1 11314:1 11317:1 11332:1 11362:1 11373:1 11396:1 11403:1 11426:1 11491:1 11495:2 11496:1 11514:1 11539:1 11570:1 11616:1 11632:2 11702:1 11761:1 11778:2 11790:1 11797:1 11805:1 11975:1 11988:1 12000:2 12018:2 12069:1 12098:1 12112:1 12114:1 12122:2 12167:1 12193:1 12199:1 12238:1 12239:2 12279:1 12364:1 12405:1 12410:1 12456:1 12545:1 12550:1 12584:1 12642:1 12673:1 12695:1 12697:2 12712:1 12789:1 12816:1 12817:1 12826:1 12831:1 12840:1 12846:1 12958:1 12980:1 12987:1 12996:1 13008:1 13021:1 13102:1 13120:1 13132:1 13219:1 13232:1 13234:1 13257:1 13261:1 13414:1 13421:1 13426:1 13428:1 13488:1 13507:1 13532:1 13545:1 13551:1 13598:2 13625:1 13663:1 13686:1 13700:1 13726:2 13734:3 13821:1 13875:1 13876:2 13897:2 13898:1 13899:1 13900:1 13909:1 13952:1 14014:1 14047:1 14062:1 14069:1 14108:1 14146:1 14174:1 14183:1 14293:1 14313:1 14327:1 14360:1 14367:1 14369:1 14387:1 14390:1 14394:2 14471:1 14515:1 14516:1 14571:1 14596:1 14608:1 14617:1 14621:1 14649:1 14679:1 14704:1 14786:1 14794:3 14823:4 14841:1 14908:1 14926:1 15029:1 15036:1 15043:1 15047:1 15054:1 15117:1 15169:1 15178:2 15212:1 15267:1 15276:2 15380:1 15388:1 15401:1 15417:1 15420:1 15448:1 15454:1 15458:1 15550:1 15583:1 15683:1 15741:1 15746:1 15799:1 15842:1 15870:1 15901:1 15949:1 16037:1 16060:1 16084:1 16172:1 16216:3 16301:4 16309:1 16374:1 16419:1 16444:1 16446:1 16481:1 16498:1 16508:477 16512:1 16545:2 16647:2 16670:1 16703:1 16735:1 16932:1 16993:1 17002:1 17008:1 17009:1 17054:1 17092:1 17163:1 17165:1 17236:1 17293:1 17358:1 17385:1 17409:1 17437:1 17495:1 17514:1 17544:4 17565:1 17589:1 17595:1 17598:1 17689:3 17706:1 17721:1 17769:2 17802:2 17843:1 17845:1 17931:4 17940:1 17960:1 18039:1 18153:1 18206:1 18317:2 18333:1 18383:2 18454:1 18463:1 18486:1 18503:1 18519:1 18527:3 18534:1 18544:1 18571:1 18573:1 18649:1 18692:1 18774:1 18797:1 18816:1 18823:1 18840:1 18920:2 18979:1 19024:1 19032:1 19039:1 19082:1 19120:1 19132:3 19133:1 19174:1 19219:1 19239:2 19275:2 19296:2 19332:1 19348:1 19422:1 19433:1 19434:1 19455:2 19456:1 19459:1 19490:1 19500:1 19535:2 19558:2 19568:1 19600:1 19624:1 19636:1 19648:1 19677:1 19696:1 19709:1 19740:1 19758:1 19817:1 19822:1 19831:1 19842:1 19888:1 19899:1 19909:1 19937:1 19938:1 19991:1 19998:1 19999:2 20025:1 20059:1 20062:1 20086:2 20124:1 20160:1 20172:1 20186:2 20199:2 20240:1 20297:3 20334:1 20374:1 20390:1 20399:1 20400:1 20421:1 20438:1 20461:1 20485:1 20508:1 20541:1 20640:2 20652:1 20717:1 20742:1 20750:2 20770:1 20802:1 20818:1 20827:1 20837:1 20891:1 20929:1 20963:1 21006:1 21077:1 21109:1 21116:1 21123:1 21151:1 21194:1 21346:1 21392:1 21397:1 21416:1 21432:1 21441:1 21494:1 21571:1 21689:1 21752:1 21770:1 21772:1 21778:1 21779:1 21784:1 21795:1 21812:3 21846:1 21858:1 21868:2 21869:3 21872:1 21877:1 21905:1 21958:1 22027:1 22032:1 22082:1 22143:1 22188:1 22220:1 22284:1 22295:3 22343:1 22346:1 22461:2 22491:3 22558:1 22598:1 22654:1 22697:1 22702:1 22706:1 22742:1 22787:1 22794:1 22801:2 22819:1 22876:1 22907:1 22944:2 22955:1 22976:2 23035:1 23083:1 23106:2 23135:1 23179:1 23180:2 23238:1 23270:1 23291:1 23316:1 23350:2 23383:1 23410:4 23411:1 23480:1 23484:1 23511:1 23530:1 23533:1 23552:1 23566:1 23597:1 23666:1 23691:1 23698:1 23734:1 23735:1 23760:1 23819:1 23853:1 23888:1 23924:1 23957:1 23963:1 23987:1 24003:1 24053:1 24119:2 24150:1 24179:1 24217:1 24221:3 24230:1 24295:1 24404:1 24412:1 24414:1 24443:1 24445:1 24464:1 24480:1 24485:1 24488:1 24489:1 24495:1 24502:1 24515:1 24548:1 24588:1 24658:1 24684:1 24709:1 24745:1 24771:1 24777:1 24868:1 24905:1 24962:1 25022:3 25036:1 25044:1 25069:1 25083:1 25093:1 25096:1 25110:2 25137:1 25251:3 25276:1 25278:1 25282:1 25287:1 25310:1 25312:1 25348:1 25351:1 25363:1 25382:1 25457:1 25460:2 25495:1 25527:1 25540:1 25542:1 25583:1 25584:1 25619:1 25624:1 25679:1 25753:1 25777:1 25854:1 25880:1 25956:1 25960:1 25971:1 25992:1 26011:1 26027:1 26076:1 26122:1 26128:1 26150:1 26163:2 26205:1 26209:1 26227:1 26228:1 26231:2 26239:2 26241:2 26244:1 26250:1 26279:1 26318:1 26330:1 26340:1
7 10:1 21:1 38:1 83:1 155:3 164:2 218:1 276:1 310:1 327:1 391:1 402:1 410:1 429:1 437:1 441:1 501:1 508:1 510:2 553:1 603:3 613:1 782:1 801:1 854:1 890:1 971:1 982:1 984:1 1021:1 1054:1 1076:1 1081:1 1168:2 1235:1 1241:1 1242:1 1276:1 1279:1 1287:1 1345:1 1386:1 1394:2 1444:1 1450:3 1451:1 1466:1 1539:2 1579:1 1596:1 1605:1 1628:1 1639:1 1653:2 1721:1 1731:1 1788:1 1815:1 1827:1 1848:3 1868:1 1879:2 1884:1 1888:1 1930:2 1964:1 1967:3 1968:1 1978:1 1981:1 1982:1 1997:2 2002:2 2004:1 2053:1 2064:1 2070:1 2091:1 2099:1 2145:1 2172:1 2181:1 2222:1 2237:1 2241:1 2273:1 2316:1 2355:1 2378:1 2394:2 2429:1 2431:1 2445:1 2450:2 2453:2 2460:3 2466:1 2472:1 2506:1 2534:1 2545:1 2590:4 2696:1 2760:1 2868:1 2893:2 2918:4 2948:1 2977:1 2982:2 3046:1 3084:1 3106:1 3153:1 3155:1 3159:2 3167:1 3169:1 3187:1 3189:1 3231:1 3235:1 3238:1 3276:1 3332:1 3365:1 3421:1 3432:1 3511:1 3537:1 3575:1 3617:2 3682:1 3698:1 3706:1 3752:1 3763:1 3782:1 3791:1 3805:1 3817:2 3843:1 3851:1 3916:1 3942:1 3944:1 3997:2 4082:1 4096:1 4097:1 4098:1 4113:1 4120:1 4123:2 4140:1 4193:1 4204:1 4247:1 4284:2 4305:3 4308:1 4339:1 4376:1 4414:2 4429:2 4430:5 4437:2 4441:1 4449:1 4456:1 4457:1 4484:2 4564:1 4597:1 4602:2 4625:2 4652:1 4709:1 4733:1 4742:1 4744:1 4765:1 4766:1 4812:1 4888:1 4925:2 4953:1 5006:1 5010:1 5020:1 5052:1 5053:1 5068:1 5275:1 5306:1 5319:1 5351:1 5441:1 5478:1 5499:1 5516:1 5542:2 5566:2 5581:2 5600:2 5617:2 5625:2 5637:1 5645:1 5647:2 5673:1 5782:1 5797:1 5818:1 5847:2 5886:1 5890:1 5918:2 5990:1 6009:1 6010:2 6098:1 6102:1 6105:2 6188:1 6230:1 6246:2 6326:1 6328:1 6345:1 6356:1 6460:1 6502:1 6514:1 6519:1 6544:1 6589:3 6603:1 6621:1 6632:1 6633:1 6638:1 6653:1 6702:2 6712:1 6723:1 6740:1 6741:1 6803:11 6824:4 6957:1 7036:1 7072:1 7083:1 7104:1 7151:1 7180:2 7201:1 7205:1 7219:6 7254:1 7274:1 7315:2 7379:1 7382:1 7416:1 7420:1 7536:1 7549:2 7611:2 7628:1 7644:1 7651:1 7714:1 7767:1 7790:1 7807:1 7815:1 7835:2 7910:1 7960:1 7966:2 8028:2 8033:1 8090:2 8167:1 8169:1 8170:1 8277:1 8322:2 8326:1 8342:1 8432:1 8476:1 8498:2 8499:1 8510:2 8534:1 8563:1 8628:1 8657:1 8660:1 8664:1 8687:1 8740:1 8748:1 8769:1 8824:1 8828:1 8882:1 8909:1 8956:2 8965:2 8993:1 8996:1 9033:1 9044:1 9058:1 9070:1 9117:1 9167:1 9255:1 9264:1 9285:1 9292:1 9293:1 9318:1 9374:2 9376:1 9419:1 9464:1 9490:1 9506:1 9532:1 9534:1 9535:1 9606:1 9611:1 9697:1 9712:4 9718:1 9831:1 9912:1 9995:1 10093:1 10098:2 10103:1 10132:1 10166:1 10182:1 10249:1 10274:1 10341:2 10362:1 10368:1 10382:1 10388:1 10401:2 10407:1 10428:1 10429:1 10481:1 10513:1 10518:1 10523:1 10530:1 10570:1 10681:2 10684:1 10694:2 10745:1 10782:1 10788:1 10801:1 10813:1 10865:1 10875:1 11105:2 11239:1 11261:1 11283:1 11305:1 11307:1 11314:1 11317:1 11332:1 11353:1 11362:1 11373:1 11396:1 11403:1 11426:1 11427:1 11431:1 11445:1 11491:1 11495:2 11496:1 11514:1 11539:1 11570:1 11616:1 11632:2 11702:1 11761:1 11778:2 11779:1 11790:1 11797:1 11805:1 11975:1 11988:1 12000:2 12018:2 12069:1 12098:1 12112:1 12114:1 12122:2 12167:1 12193:1 12199:1 12238:1 12239:2 12279:1 12309:1 12364:1 12381:1 12405:1 12410:1 12456:1 12545:1 12550:1 12584:1 12642:1 12673:1 12686:1 12695:1 12697:2 12712:1 12789:1 12816:1 12817:1 12826:1 12831:1 12840:2 12846:1 12947:1 12951:1 12958:1 12980:1 12987:1 12996:1 13008:1 13021:1 13102:1 13120:1 13132:1 13165:1 13219:1 13232:1 13234:1 13257:1 13261:1 13379:1 13414:1 13421:1 13426:1 13428:1 13488:1 13505:1 13507:1 13532:1 13545:1 13551:1 13598:2 13625:1 13663:1 13686:2 13700:1 13726:2 13734:3 13740:1 13744:1 13810:1 13821:1 13870:1 13875:1 13876:2 13895:1 13897:2 13898:1 13899:1 13900:2 13909:1 13952:2 14014:1 14047:1 14062:1 14069:1 14084:1 14108:1 14146:1 14174:1 14183:1 14293:1 14313:1 14327:1 14360:1 14367:1 14369:1 14374:1 14387:1 14390:1 14394:2 14471:1 14515:1 14516:1 14571:1 14596:1 14608:1 14617:1 14621:1 14649:2 14652:1 14679:1 14704:1 14720:1 14786:1 14794:3 14823:4 14841:1 14908:1 14926:1 15029:1 15036:1 15043:1 15047:1 15054:1 15083:1 15117:1 15169:1 15178:3 15212:1 15267:1 15276:2 15380:2 15388:1 15401:2 15417:1 15419:1 15420:1 15421:1 15448:1 15454:1 15458:1 15550:1 15583:1 15683:1 15741:1 15746:1 15799:1 15842:1 15870:1 15901:1 15949:1 15989:1 16037:1 16060:1 16084:1 16172:1 16216:4 16225:1 16266:1 16301:6 16309:1 16374:1 16419:1 16444:1 16446:1 16481:1 16498:1 16508:564 16512:1 16545:2 16604:1 16647:2 16670:1 16678:1 16703:1 16722:1 16735:1 16787:1 16904:1 16914:1 16932:1 16987:1 16993:1 17002:1 17008:1 17009:1 17054:2 17092:1 17153:1 17163:1 17165:1 17188:2 17220:1 17236:3 17293:1 17358:1 17385:1 17409:1 17437:1 17480:1 17494:1 17495:1 17514:1 17544:4 17565:1 17589:1 17595:1 17598:1 17689:4 17706:1 17721:1 17769:2 17802:2 17843:1 17845:1 17931:4 17940:1 17960:1 17967:1 18039:1 18153:1 18206:1 18317:2 18333:1 18383:3 18445:1 18454:1 18463:1 18486:1 18503:1 18519:1 18527:3 18534:1 18535:1 18544:1 18571:1 18573:1 18619:1 18649:1 18692:1 18760:1 18774:1 18797:1 18816:1 18823:1 18840:1 18920:2 18979:1 19024:1 19032:1 19039:1 19056:2 19082:1 19120:1 19132:3 19133:1 19174:1 19219:1 19239:2 19275:2 19296:2 19332:1 19348:1 19422:1 19433:1 19434:2 19455:2 19456:1 19459:1 19490:1 19500:1 19535:2 19558:2 19568:1 19600:2 19624:1 19632:1 19636:1 19648:1 19677:1 19683:1 19696:1 19709:1 19740:2 19748:1 19758:1 19817:1 19822:1 19831:1 19842:1 19888:1 19899:1 19909:1 19937:1 19938:1 19991:1 19998:1 19999:2 20025:1 20059:1 20062:1 20086:2 20124:1 20160:1 20172:1 20186:2 20199:2 20240:1 20297:3 20334:1 20374:1 20390:1 20399:1 20400:1 20421:1 20438:1 20461:1 20485:1 20508:1 20541:1 20572:1 20640:2 20652:1 20717:1 20742:1 20750:2 20770:1 20802:1 20818:1 20827:1 20837:1 20841:1 20891:1 20929:1 20963:1 21006:1 21077:1 21109:1 21116:1 21123:1 21151:1 21194:1 21346:1 21392:1 21397:1 21416:1 21432:1 21441:1 21494:1 21504:1 21571:1 21689:1 21752:1 21770:1 21772:1 21778:1 21779:1 21784:2 21795:1 21812:3 21846:1 21858:1 21868:3 21869:3 21872:1 21877:2 21905:1 21958:1 21962:1 22027:1 22032:1 22082:1 22143:1 22188:1 22220:1 22284:1 22295:4 22343:1 22344:1 22346:1 22461:2 22491:3 22558:1 22598:1 22654:1 22697:1 22702:1 22706:1 22742:1 22787:1 22794:1 22796:1 22797:1 22801:2 22819:1 22848:1 22862:1 22876:1 22907:1 22944:2 22955:1 22976:2 23011:1 23035:1 23083:1 23106:2 23135:1 23179:1 23180:2 23238:1 23270:1 23291:1 23316:1 23350:2 23383:1 23410:6 23411:1 23480:1 23484:1 23511:1 23530:1 23533:1 23552:1 23566:1 23597:1 23666:1 23691:1 23698:1 23734:1 23735:1 23760:1 23819:1 23853:1 23888:1 23924:1 23957:1 23963:1 23987:1 24003:1 24053:1 24119:2 24150:1 24179:1 24190:1 24217:1 24221:4 24230:1 24292:1 24295:1 24366:1 24404:1 24412:1 24414:1 24427:1 24428:1 24443:1 24445:1 24464:2 24480:1 24485:1 24488:1 24489:1 24495:1 24502:1 24515:1 24548:1 24588:1 24658:1 24665:1 24684:1 24709:1 24745:1 24769:1 24771:1 24777:1 24868:1 24905:1 24917:1 24962:1 25022:3 25036:1 25044:1 25069:1 25083:1 25093:1 25096:1 25110:3 25137:1 25251:3 25276:1 25278:1 25282:1 25287:1 25296:1 25310:1 25312:1 25324:1 25327:1 25348:1 25351:1 25363:2 25382:1 25456:1 25457:1 25460:2 25495:1 25527:1 25540:1 25542:1 25583:1 25584:1 25619:1 25624:1 25679:1 25753:1 25777:1 25854:1 25880:1 25956:1 25960:1 25971:1 25992:1 26011:1 26027:1 26050:1 26076:1 26091:1 26122:1 26128:1 26150:1 26163:2 26205:1 26209:1 26227:1 26228:1 26231:3 26239:2 26241:2 26244:1 26250:1 26279:1 26318:1 26330:1 26340:1
7 10:1 21:1 38:1 83:1 155:3 164:2 215:1 218:1 248:1 276:1 294:1 310:1 327:1 391:1 402:1 410:1 429:1 437:1 441:1 501:1 508:1 510:2 553:1 603:3 613:1 722:1 782:1 801:1 810:1 854:1 877:1 890:1 971:1 982:1 984:1 1021:1 1054:1 1076:1 1081:1 1168:2 1235:1 1241:1 1242:1 1276:1 1279:1 1287:1 1345:1 1386:1 1394:2 1444:1 1450:3 1451:1 1466:1 1539:2 1579:1 1596:1 1605:1 1628:1 1639:1 1653:2 1721:1 1731:1 1788:1 1790:1 1815:1 1827:1 1848:3 1868:1 1879:2 1884:1 1888:1 1927:1 1930:2 1943:1 1964:1 1967:3 1968:1 1978:1 1981:1 1982:1 1997:2 2000:1 2002:2 2004:1 2044:1 2053:1 2064:1 2070:1 2091:1 2099:1 2145:1 2172:1 2181:1 2222:1 2237:1 2241:1 2273:1 2316:1 2355:1 2364:1 2378:1 2394:2 2406:1 2429:1 2431:1 2445:1 2446:1 2450:2 2453:2 2460:4 2466:1 2472:1 2506:1 2508:1 2534:1 2545:2 2590:4 2696:1 2760:1 2868:1 2893:2 2918:4 2948:1 2977:1 2982:2 3038:1 3046:1 3084:1 3106:1 3153:1 3155:1 3159:2 3167:1 3169:1 3187:1 3189:1 3231:1 3235:1 3238:1 3276:1 3332:1 3365:1 3421:1 3432:1 3511:1 3537:1 3575:1 3617:3 3682:1 3698:1 3706:1 3752:1 3763:1 3782:1 3791:1 3805:1 3817:2 3843:1 3851:1 3916:1 3942:1 3944:1 3997:3 4021:1 4082:1 4096:1 4097:1 4098:1 4113:1 4120:1 4123:2 4140:1 4148:1 4193:1 4204:1 4247:1 4284:2 4305:4 4308:1 4339:1 4376:1 4414:2 4429:2 4430:5 4437:2 4441:1 4449:1 4456:1 4457:1 4484:3 4564:1 4597:1 4602:3 4625:2 4652:1 4709:1 4733:1 4742:1 4744:1 4765:1 4766:1 4812:1 4888:1 4925:2 4953:1 5006:1 5010:1 5020:1 5052:1 5053:1 5065:1 5068:1 5126:1 5225:1 5275:1 5306:1 5319:1 5351:1 5441:1 5470:1 5478:1 5499:1 5516:1 5542:2 5566:3 5581:3 5585:1 5600:2 5617:2 5625:2 5636:1 5637:1 5645:1 5647:2 5673:1 5782:1 5797:1 5818:1 5847:2 5886:1 5890:1 5918:2 5990:1 6009:2 6010:2 6098:1 6102:1 6105:2 6117:1 6186:1 6188:1 6230:1 6246:2 6326:1 6328:1 6345:1 6356:1 6460:1 6502:1 6514:1 6515:1 6519:1 6544:1 6552:1 6589:3 6603:1 6614:1 6621:1 6624:1 6632:1 6633:1 6638:1 6653:1 6702:2 6712:1 6723:1 6740:1 6741:1 6803:12 6822:1 6824:4 6957:1 6997:1 7036:1 7072:1 7083:1 7104:1 7151:1 7152:1 7180:2 7201:1 7205:1 7219:6 7254:1 7274:1 7315:2 7379:1 7382:1 7416:1 7420:1 7439:1 7536:1 7539:1 7549:2 7565:1 7610:1 7611:2 7628:1 7644:1 7651:1 7670:1 7673:1 7714:1 7767:1 7790:1 7807:1 7815:1 7835:2 7910:1 7960:1 7966:2 8028:2 8033:1 8090:2 8167:1 8169:1 8170:1 8178:1 8277:1 8322:2 8326:1 8342:1 8432:1 8476:1 8498:2 8499:1 8510:2 8534:1 8563:1 8616:1 8628:1 8657:1 8660:1 8664:1 8687:1 8730:1 8740:1 8748:1 8769:1 8824:1 8828:1 8882:1 8909:1 8956:2 8965:2 8993:1 8996:1 9033:1 9044:1 9058:1 9070:1 9085:1 9113:1 9117:1 9167:1 9255:1 9264:1 9285:1 9292:1 9293:1 9318:1 9322:1 9374:2 9376:1 9419:1 9464:1 9490:1 9506:1 9532:1 9534:1 9535:1 9606:1 9611:1 9697:1 9708:1 9712:4 9718:1 9754:1 9831:1 9837:1 9870:1 9912:1 9968:1 9995:1 10093:1 10098:2 10103:1 10132:1 10133:1 10166:1 10182:1 10249:1 10274:1 10341:2 10362:1 10368:1 10370:1 10382:1 10383:1 10388:1 10401:2 10407:1 10428:1 10429:1 10481:1 10513:1 10518:1 10523:1 10530:1 10570:1 10639:1 10681:3 10684:1 10694:3 10745:1 10782:1 10788:1 10801:1 10813:1 10865:1 10875:1 11105:2 11239:1 11261:1 11283:1 11305:1 11307:1 11314:1 11317:1 11332:1 11353:1 11362:1 11373:1 11396:1 11398:1 11403:1 11426:1 11427:2 11431:1 11445:1 11491:1 11495:2 11496:1 11514:1 11539:1 11570:1 11616:1 11632:2 11702:1 11761:1 11778:2 11779:1 11790:1 11797:1 11805:1 11975:1 11988:1 11992:1 12000:2 12018:2 12069:1 12098:1 12112:1 12114:1 12122:2 12167:1 12193:1 12199:1 12238:1 12239:2 12277:1 12279:1 12309:1 12364:1 12381:1 12405:1 12410:1 12456:1 12545:1 12550:1 12584:1 12642:1 12673:1 12686:1 12695:1 12697:2 12712:1 12789:1 12816:1 12817:1 12826:1 12831:1 12840:2 12844:1 12846:1 12947:1 12951:1 12958:1 12980:1 12987:1 12996:1 13008:1 13021:1 13027:1 13102:1 13120:1 13132:1 13165:1 13219:1 13232:1 13234:1 13257:1 13261:1 13379:1 13414:1 13421:1 13426:1 13428:1 13488:1 13505:1 13507:1 13532:1 13545:1 13549:1 13551:1 13598:2 13625:1 13626:1 13663:1 13686:3 13700:1 13726:3 13734:3 13740:1 13744:1 13764:1 13810:1 13821:1 13870:1 13875:1 13876:2 13895:1 13897:2 13898:1 13899:1 13900:2 13909:1 13952:2 14014:1 14047:1 14062:1 14069:1 14084:1 14108:1 14146:1 14174:1 14183:1 14293:1 14313:1 14327:1 14360:1 14367:1 14369:1 14374:1 14387:1 14390:1 14394:2 14471:1 14515:1 14516:1 14571:1 14596:1 14608:1 14617:1 14621:1 14649:2 14652:1 14654:1 14679:1 14704:1 14720:1 14786:1 14794:3 14823:4 14841:1 14859:1 14908:1 14926:1 14976:1 15029:1 15036:1 15043:1 15047:1 15054:1 15083:1 15117:1 15169:1 15178:3 15212:1 15267:1 15276:2 15302:1 15380:2 15388:1 15401:2 15417:1 15419:1 15420:1 15421:1 15448:1 15454:1 15458:1 15550:1 15583:1 15683:2 15741:1 15746:1 15799:1 15842:1 15860:1 15870:1 15901:1 15949:1 15989:1 16037:1 16060:1 16084:1 16172:1 16216:4 16225:1 16265:1 16266:1 16301:6 16309:1 16374:1 16419:1 16444:1 16446:1 16481:1 16498:1 16508:651 16512:1 16545:2 16604:1 16647:2 16670:1 16678:1 16703:1 16722:1 16735:1 16787:1 16871:1 16904:1 16914:1 16932:1 16987:1 16993:1 17002:1 17008:1 17009:1 17054:2 17092:1 17095:1 17123:1 17153:1 17163:1 17165:1 17188:2 17220:1 17236:3 17293:1 17358:1 17385:1 17402:1 17409:1 17437:1 17480:1 17494:1 17495:1 17500:1 17514:1 17544:4 17565:1 17589:1 17595:1 17598:1 17653:1 17689:4 17706:1 17721:1 17769:2 17781:1 17802:2 17843:1 17845:1 17931:4 17940:1 17960:1 17967:1 17993:1 18039:1 18153:1 18206:1 18212:1 18317:2 18333:1 18383:3 18445:1 18454:1 18463:1 18486:1 18503:1 18519:1 18524:1 18527:3 18534:1 18535:1 18544:1 18571:1 18573:1 18619:1 18649:1 18692:1 18706:1 18760:1 18774:1 18780:1 18797:1 18816:1 18823:1 18840:1 18920:2 18979:1 19024:1 19032:1 19039:1 19042:1 19056:2 19082:1 19120:1 19127:1 19132:3 19133:1 19142:1 19174:1 19219:1 19239:2 19275:2 19296:2 19332:1 19348:1 19422:1 19433:1 19434:2 19455:2 19456:1 19459:1 19490:1 19500:1 19535:2 19558:2 19568:1 19600:3 19624:1 19632:1 19636:1 19648:1 19677:1 19683:1 19696:1 19709:1 19740:2 19748:1 19758:1 19765:1 19817:1 19822:1 19831:1 19842:1 19888:1 19899:1 19909:1 19923:1 19937:1 19938:1 19942:1 19991:1 19998:1 19999:2 20025:1 20059:1 20062:1 20086:2 20124:1 20160:1 20172:1 20186:2 20199:2 20240:1 20297:3 20334:1 20374:1 20390:1 20399:1 20400:1 20421:1 20438:1 20461:1 20485:1 20508:1 20541:1 20572:1 20640:2 20652:1 20717:1 20742:1 20750:2 20770:1 20802:1 20818:1 20827:1 20835:1 20837:1 20841:1 20888:1 20891:1 20929:1 20963:1 21006:1 21077:1 21109:1 21116:1 21123:1 21151:1 21194:1 21346:1 21392:1 21397:1 21416:1 21432:1 21441:1 21481:1 21494:1 21504:1 21571:1 21582:1 21621:1 21689:1 21752:1 21770:1 21772:1 21778:1 21779:1 21784:2 21795:1 21812:3 21846:1 21858:1 21868:3 21869:3 21872:1 21877:2 21905:1 21958:1 21962:1 22027:1 22032:1 22082:1 22143:1 22188:1 22220:1 22284:1 22295:4 22343:1 22344:1 22346:1 22397:1 22426:1 22461:2 22491:3 22558:1 22598:1 22654:1 22697:1 22702:1 22706:1 22742:1 22787:1 22794:1 22796:2 22797:1 22801:2 22819:1 22848:1 22862:1 22876:1 22907:1 22944:2 22955:1 22976:2 22977:1 23011:1 23035:1 23038:1 23083:1 23106:2 23135:1 23179:1 23180:2 23238:1 23270:1 23291:1 23316:1 23350:2 23383:1 23410:6 23411:1 23480:1 23484:1 23511:1 23530:1 23533:1 23552:1 23566:1 23597:1 23666:1 23691:1 23698:1 23734:1 23735:1 23760:1 23819:1 23853:1 23888:1 23924:1 23957:1 23963:1 23987:1 24003:1 24016:1 24053:1 24119:2 24120:1 24141:1 24150:1 24162:1 24179:1 24190:1 24217:1 24221:4 24230:1 24292:1 24295:1 24366:1 24404:1 24412:1 24414:1 24419:1 24427:1 24428:1 24443:1 24445:1 24464:2 24480:1 24485:1 24488:1 24489:1 24495:1 24502:1 24503:1 24515:1 24548:1 24588:1 24658:1 24665:1 24684:1 24709:1 24745:1 24769:1 24771:1 24777:1 24868:1 24905:1 24917:1 24962:1 25022:3 25036:1 25044:1 25069:1 25083:1 25093:1 25096:1 25110:4 25112:1 25116:1 25137:1 25251:3 25276:1 25278:1 25282:1 25287:1 25296:1 25310:1 25312:1 25324:1 25327:2 25348:1 25351:1 25363:3 25382:1 25456:1 25457:1 25460:2 25495:1 25515:1 25527:1 25540:1 25542:1 25583:1 25584:1 25619:1 25624:1 25679:1 25753:1 25777:1 25854:1 25880:1 25956:1 25960:1 25971:1 25992:1 26011:1 26027:1 26050:1 26076:1 26091:1 26122:1 26128:1 26150:1 26163:2 26205:1 26209:1 26227:1 26228:1 26231:3 26239:2 26241:2 26244:1 26250:1 26279:1 26318:1 26330:1 26340:1
7 10:1 21:1 38:1 83:1 155:3 164:2 182:1 215:1 218:1 248:1 276:1 294:1 310:1 327:1 391:1 402:1 410:1 429:1 437:1 441:1 501:1 508:1 510:2 553:1 603:3 613:1 722:1 782:2 801:1 810:1 854:1 877:1 890:1 971:1 982:1 984:1 1021:1 1054:1 1076:1 1081:1 1168:2 1235:1 1241:1 1242:1 1276:1 1279:1 1287:1 1345:1 1386:1 1394:2 1444:1 1450:3 1451:1 1466:1 1495:1 1539:2 1541:1 1579:1 1596:1 1605:1 1628:1 1639:1 1653:2 1721:1 1731:1 1788:1 1790:1 1815:1 1827:1 1848:3 1868:1 1879:2 1884:1 1888:1 1927:1 1930:2 1943:1 1964:1 1967:3 1968:1 1978:1 1981:1 1982:1 1997:2 2000:1 2002:2 2004:1 2044:1 2053:1 2064:1 2070:1 2091:2 2099:1 2145:1 2172:1 2181:1 2222:1 2237:1 2241:1 2273:1 2316:1 2355:1 2364:1 2378:1 2394:2 2406:1 2429:1 2431:1 2445:1 2446:1 2450:2 2453:3 2460:4 2466:1 2472:1 2506:1 2508:1 2534:1 2545:2 2579:1 2590:5 2696:1 2760:1 2868:1 2893:2 2918:4 2948:1 2977:1 2982:2 3038:1 3046:1 3084:1 3106:1 3153:1 3155:1 3159:2 3167:1 3169:1 3187:1 3189:1 3231:1 3235:1 3238:1 3276:1 3332:1 3365:1 3421:1 3432:1 3435:1 3461:1 3511:1 3537:1 3575:1 3617:3 3622:1 3682:1 3698:1 3706:1 3752:1 3763:1 3782:1 3791:1 3805:1 3817:2 3843:1 3851:1 3916:1 3942:1 3944:1 3997:3 4021:1 4082:1 4096:1 4097:1 4098:1 4113:1 4120:1 4123:2 4130:1 4140:1 4148:1 4193:1 4204:1 4247:1 4284:2 4305:5 4308:1 4339:1 4376:1 4414:2 4429:2 4430:5 4437:2 4441:1 4449:1 4456:1 4457:1 4484:3 4564:1 4573:1 4597:1 4602:3 4625:2 4652:1 4703:1 4709:1 4733:1 4742:1 4744:1 4765:1 4766:1 4812:1 4888:1 4925:2 4953:1 5006:1 5010:1 5020:1 5052:1 5053:1 5065:1 5068:1 5126:1 5225:1 5275:1 5306:1 5319:1 5351:1 5441:1 5470:1 5478:1 5499:1 5516:1 5542:2 5566:3 5581:3 5585:1 5586:1 5600:2 5617:2 5625:2 5631:1 5636:1 5637:1 5645:1 5647:2 5673:1 5782:1 5797:1 5818:1 5847:2 5886:1 5890:1 5918:2 5990:1 6009:2 6010:2 6098:1 6102:1 6105:2 6117:1 6178:1 6186:1 6188:1 6230:1 6246:2 6326:1 6328:1 6345:1 6356:1 6460:1 6502:1 6514:1 6515:1 6519:1 6544:1 6552:1 6561:1 6589:3 6603:1 6614:1 6621:1 6624:1 6632:1 6633:1 6638:1 6653:1 6702:2 6712:1 6723:1 6740:1 6741:1 6803:12 6822:1 6824:5 6957:1 6997:1 7036:1 7072:1 7083:1 7104:1 7151:1 7152:1 7180:2 7201:1 7205:1 7219:6 7254:1 7274:2 7315:2 7379:1 7382:1 7416:1 7420:1 7439:1 7536:1 7539:1 7549:2 7565:1 7589:1 7610:1 7611:2 7628:1 7644:1 7651:1 7670:1 7673:1 7714:1 7767:1 7790:1 7807:1 7815:1 7835:2 7910:1 7960:1 7966:2 8028:2 8033:1 8090:2 8167:1 8169:1 8170:1 8178:1 8179:1 8232:1 8277:1 8322:2 8326:1 8342:1 8432:1 8476:1 8483:1 8498:2 8499:1 8510:2 8534:1 8563:1 8616:1 8628:1 8657:1 8660:1 8664:1 8687:1 8730:1 8740:1 8748:1 8769:1 8824:1 8828:1 8872:1 8882:1 8909:1 8956:2 8965:2 8993:1 8996:1 9033:1 9044:1 9056:1 9058:1 9070:1 9085:1 9113:1 9117:1 9167:1 9255:1 9264:1 9285:1 9292:1 9293:1 9318:1 9322:1 9374:3 9376:1 9419:1 9464:1 9490:1 9506:1 9532:1 9534:1 9535:1 9606:1 9611:1 9697:1 9708:1 9712:4 9718:1 9754:1 9831:1 9837:1 9870:1 9912:1 9968:1 9995:1 10040:1 10093:1 10098:2 10103:1 10132:1 10133:2 10166:1 10182:1 10249:1 10274:1 10341:2 10362:1 10368:2 10370:1 10382:1 10383:1 10388:1 10401:2 10407:1 10428:1 10429:1 10481:1 10513:1 10518:1 10523:1 10530:1 10570:1 10592:1 10639:1 10681:3 10684:1 10694:3 10745:1 10782:1 10788:1 10801:1 10813:1 10865:1 10875:1 10942:1 11087:1 11105:2 11239:1 11261:2 11283:1 11305:1 11307:2 11314:1 11317:1 11332:1 11353:1 11362:1 11373:1 11396:1 11398:1 11403:1 11426:1 11427:2 11431:1 11445:1 11491:1 11495:2 11496:1 11514:1 11539:1 11570:1 11616:1 11632:2 11702:1 11761:1 11778:2 11779:1 11790:1 11797:1 11805:1 11975:1 11988:1 11992:1 12000:2 12018:2 12069:1 12098:1 12112:1 12114:1 12122:2 12167:1 12193:1 12199:2 12238:1 12239:2 12277:1 12279:1 12309:1 12364:1 12381:1 12405:1 12410:1 12456:1 12459:1 12545:1 12550:2 12568:1 12584:1 12642:1 12673:1 12686:1 12695:1 12697:2 12712:1 12789:1 12816:1 12817:1 12826:1 12831:1 12840:2 12844:1 12846:1 12947:1 12951:1 12958:1 12980:1 12987:1 12996:1 13008:1 13021:1 13027:1 13102:1 13120:1 13132:1 13165:1 13182:1 13219:1 13232:1 13234:2 13257:1 13261:1 13379:1 13414:1 13421:1 13426:1 13428:1 13488:1 13505:1 13507:1 13532:1 13545:1 13549:1 13551:1 13598:2 13625:1 13626:1 13663:1 13686:3 13700:1 13726:3 13734:3 13740:1 13744:1 13764:1 13775:1 13810:1 13821:1 13870:1 13875:1 13876:2 13895:1 13897:2 13898:1 13899:1 13900:2 13909:1 13910:1 13952:2 14014:1 14047:1 14062:1 14069:1 14084:1 14108:1 14146:1 14174:1 14183:1 14293:1 14313:1 14327:1 14360:1 14367:1 14369:1 14374:1 14387:1 14390:1 14394:2 14471:1 14490:1 14515:1 14516:1 14571:1 14596:2 14608:1 14617:1 14621:1 14649:2 14652:1 14654:1 14679:1 14696:1 14704:1 14720:1 14786:1 14794:3 14823:5 14841:1 14859:1 14908:1 14926:1 14967:1 14976:1 15029:1 15036:1 15043:1 15047:1 15054:1 15083:1 15109:1 15117:1 15169:1 15178:3 15212:1 15267:1 15276:2 15302:1 15380:2 15388:1 15401:2 15417:1 15419:1 15420:1 15421:1 15448:1 15454:1 15458:1 15550:1 15583:1 15683:2 15741:1 15746:1 15799:1 15842:1 15860:1 15870:1 15901:1 15949:1 15989:1 16029:1 16037:1 16060:1 16084:1 16172:1 16216:4 16225:1 16265:1 16266:1 16301:6 16309:2 16360:1 16374:1 16419:1 16442:1 16444:1 16446:1 16481:1 16498:1 16508:707 16512:1 16545:2 16604:1 16647:2 16670:1 16678:1 16703:1 16722:1 16735:2 16787:1 16871:1 16904:1 16914:1 16932:1 16987:1 16993:1 17002:1 17008:1 17009:1 17017:1 17042:1 17054:2 17087:1 17092:1 17095:1 17123:1 17153:1 17163:1 17165:1 17188:2 17220:1 17236:3 17293:1 17358:1 17359:1 17385:1 17402:1 17409:1 17437:1 17480:1 17494:1 17495:1 17500:1 17514:1 17544:5 17565:1 17589:1 17595:1 17598:1 17653:1 17689:4 17706:1 17721:1 17769:2 17781:1 17802:2 17822:1 17843:1 17845:1 17902:1 17931:5 17940:1 17960:1 17967:1 17993:1 18039:1 18153:1 18206:1 18212:1 18317:2 18333:1 18383:3 18430:1 18445:1 18454:1 18463:1 18486:1 18503:1 18519:1 18524:1 18527:3 18534:1 18535:1 18544:1 18571:1 18573:1 18619:1 18649:1 18692:1 18706:1 18760:1 18762:1 18774:1 18780:1 18797:1 18816:1 18823:1 18840:1 18920:2 18979:1 19024:1 19032:1 19039:1 19042:1 19056:2 19082:1 19120:1 19127:1 19132:3 19133:1 19142:1 19174:1 19175:1 19219:1 19239:2 19249:1 19275:2 19296:2 19332:1 19348:1 19422:1 19433:1 19434:2 19455:2 19456:1 19459:1 19490:1 19500:1 19535:2 19558:2 19568:1 19600:3 19624:1 19632:1 19636:1 19648:1 19677:1 19683:1 19696:1 19709:1 19740:2 19748:1 19758:1 19765:1 19817:1 19822:1 19831:1 19842:1 19888:1 19899:1 19909:1 19923:1 19937:1 19938:1 19942:1 19970:1 19991:1 19998:1 19999:2 20025:1 20059:1 20062:1 20086:2 20124:1 20160:1 20172:1 20186:2 20199:2 20240:1 20297:3 20334:1 20374:1 20390:1 20399:1 20400:1 20413:1 20421:1 20438:1 20461:1 20485:1 20508:1 20541:1 20554:1 20572:1 20640:2 20652:1 20717:1 20742:1 20750:2 20770:1 20802:1 20818:1 20827:1 20835:1 20837:1 20841:1 20888:1 20891:1 20929:1 20963:1 21006:1 21066:1 21077:1 21109:1 21116:1 21123:1 21151:1 21194:1 21346:1 21392:1 21397:1 21416:1 21432:1 21441:1 21481:1 21494:1 21504:1 21571:1 21582:1 21621:1 21689:1 21752:1 21768:1 21770:1 21772:1 21778:1 21779:1 21784:2 21795:1 21812:3 21846:1 21858:1 21868:3 21869:3 21872:1 21877:2 21905:1 21958:1 21961:1 21962:1 22027:1 22032:1 22082:1 22143:1 22188:1 22220:1 22284:1 22295:4 22343:1 22344:1 22346:1 22397:1 22426:1 22461:2 22491:3 22558:1 22598:1 22654:1 22672:1 22697:1 22702:1 22706:1 22742:1 22787:1 22794:1 22796:2 22797:1 22801:2 22819:1 22848:1 22862:1 22876:1 22907:1 22944:3 22955:1 22976:2 22977:1 23011:1 23013:1 23023:1 23035:1 23038:1 23083:1 23106:2 23135:1 23179:1 23180:2 23238:1 23270:1 23291:1 23316:1 23350:2 23383:1 23410:6 23411:1 23458:1 23480:1 23484:1 23507:1 23511:1 23530:1 23533:1 23552:1 23566:1 23597:1 23666:1 23691:1 23698:1 23699:1 23734:1 23735:1 23760:1 23819:1 23853:1 23888:1 23924:1 23957:1 23963:1 23987:1 24003:1 24016:1 24053:1 24109:1 24119:2 24120:1 24141:1 24150:1 24162:1 24179:1 24190:1 24217:1 24221:5 24230:1 24292:1 24295:2 24366:1 24404:1 24412:1 24414:1 24419:1 24427:1 24428:1 24443:1 24445:1 24464:2 24480:2 24485:1 24488:1 24489:1 24495:1 24502:1 24503:1 24515:1 24548:1 24588:1 24658:1 24665:1 24684:1 24709:1 24745:1 24769:1 24771:1 24777:1 24818:1 24868:1 24905:1 24917:1 24949:1 24962:1 25022:3 25036:1 25044:1 25069:1 25083:1 25093:1 25096:1 25110:4 25112:1 25116:1 25137:1 25251:3 25276:1 25278:1 25282:1 25287:1 25296:1 25310:1 25312:1 25324:1 25327:2 25348:1 25351:1 25363:3 25382:1 25433:1 25456:1 25457:1 25460:2 25495:1 25515:1 25527:1 25540:2 25542:1 25583:1 25584:1 25619:1 25624:1 25679:1 25753:1 25777:1 25854:1 25880:1 25883:1 25956:1 25960:1 25971:1 25992:1 26011:1 26027:1 26050:1 26076:1 26091:1 26122:1 26128:2 26150:1 26163:2 26205:1 26209:1 26215:1 26227:1 26228:1 26231:3 26239:2 26241:2 26244:1 26250:1 26279:1 26299:1 26318:1 26330:1 26340:1
7 10:1 21:1 38:1 83:1 155:3 164:2 182:2 193:1 215:2 218:1 248:1 276:1 294:1 310:1 327:1 391:1 402:1 410:1 429:1 437:1 441:1 501:1 508:1 510:2 538:1 553:1 603:3 613:1 722:1 782:2 801:1 810:1 854:1 877:1 890:1 971:1 982:1 984:1 1021:1 1054:1 1076:1 1081:1 1168:2 1235:1 1241:1 1242:1 1276:1 1279:1 1287:1 1345:1 1386:1 1394:2 1444:1 1450:3 1451:1 1466:1 1495:1 1539:2 1541:1 1579:1 1581:1 1596:1 1605:2 1628:1 1639:1 1653:2 1721:1 1731:1 1788:1 1790:1 1815:1 1827:1 1848:3 1868:1 1879:2 1884:1 1888:1 1927:1 1930:2 1943:1 1964:1 1967:3 1968:1 1978:1 1981:1 1982:1 1997:2 2000:1 2002:2 2004:1 2044:1 2053:1 2064:1 2070:1 2086:1 2091:2 2099:1 2145:1 2172:1 2181:1 2222:1 2223:1 2237:1 2241:1 2247:1 2273:1 2316:1 2355:1 2364:1 2378:1 2394:2 2406:1 2429:1 2431:1 2445:1 2446:1 2450:2 2453:3 2460:4 2466:1 2472:1 2506:1 2508:1 2534:1 2545:3 2579:1 2590:6 2650:1 2696:1 2760:1 2858:1 2868:1 2893:2 2918:4 2948:1 2977:1 2982:2 3038:1 3046:1 3084:1 3091:1 3106:1 3153:1 3155:1 3159:2 3167:1 3169:1 3187:1 3189:1 3231:1 3235:1 3238:1 3276:1 3332:1 3362:1 3365:1 3421:1 3432:1 3435:1 3461:1 3511:1 3518:1 3537:1 3575:1 3617:3 3622:1 3682:1 3698:1 3706:2 3715:1 3752:1 3763:1 3782:1 3791:1 3805:1 3817:2 3843:1 3851:1 3916:1 3942:1 3944:1 3997:3 4021:1 4082:1 4096:1 4097:1 4098:1 4113:1 4120:1 4123:2 4130:1 4140:1 4148:1 4193:1 4204:1 4247:1 4284:2 4305:6 4308:1 4323:1 4339:1 4376:1 4414:2 4429:2 4430:5 4437:2 4441:1 4449:1 4456:1 4457:1 4484:3 4564:1 4573:1 4597:1 4602:3 4625:2 4652:1 4674:1 4702:1 4703:1 4709:1 4733:1 4742:1 4744:1 4765:1 4766:1 4812:1 4888:1 4925:2 4953:1 5006:1 5010:1 5020:1 5052:1 5053:1 5065:1 5068:1 5126:1 5225:1 5275:1 5306:1 5319:1 5351:1 5441:2 5470:1 5478:1 5499:1 5516:1 5542:2 5566:3 5581:3 5585:1 5586:1 5600:2 5617:2 5625:2 5631:1 5636:1 5637:1 5645:1 5647:2 5673:1 5782:1 5797:1 5818:1 5847:2 5886:1 5890:1 5918:2 5990:1 6009:3 6010:2 6098:1 6102:1 6105:2 6117:1 6178:1 6186:1 6188:1 6230:1 6246:2 6322:1 6326:1 6328:1 6345:1 6356:1 6460:1 6502:1 6514:1 6515:1 6519:1 6544:1 6552:1 6561:1 6589:3 6603:1 6614:1 6621:1 6624:1 6632:1 6633:1 6638:1 6653:1 6680:1 6702:2 6712:1 6723:1 6740:2 6741:1 6803:12 6822:1 6824:6 6957:1 6986:1 6997:1 7036:1 7072:1 7083:1 7104:1 7151:1 7152:1 7180:2 7201:1 7205:1 7219:6 7254:1 7274:2 7315:2 7379:1 7382:1 7416:1 7420:1 7439:1 7536:1 7539:1 7549:2 7565:1 7589:1 7610:1 7611:3 7628:1 7644:1 7651:1 7670:1 7673:1 7714:1 7767:1 7790:1 7807:1 7815:1 7835:2 7910:1 7960:1 7966:2 8028:2 8033:1 8090:2 8167:1 8169:1 8170:1 8178:1 8179:1 8232:1 8277:1 8322:2 8326:1 8342:1 8432:1 8476:1 8483:1 8498:2 8499:1 8510:2 8534:1 8563:1 8601:1 8616:1 8628:1 8657:1 8660:1 8664:1 8687:1 8730:1 8740:1 8748:1 8769:1 8824:1 8828:1 8872:1 8882:1 8909:1 8914:1 8917:1 8929:1 8944:1 8956:2 8965:2 8993:1 8996:1 9033:1 9044:1 9056:1 9058:1 9070:1 9085:1 9113:1 9117:1 9167:1 9255:1 9264:1 9285:1 9292:1 9293:1 9318:1 9322:1 9374:3 9376:1 9419:1 9464:1 9490:1 9506:1 9532:1 9534:1 9535:1 9606:1 9611:1 9697:1 9708:1 9712:4 9718:1 9754:1 9831:1 9835:1 9837:1 9870:1 9900:1 9912:1 9968:2 9995:1 10040:1 10093:1 10098:2 10103:1 10132:1 10133:2 10166:1 10182:1 10204:1 10249:1 10274:1 10341:2 10362:1 10368:2 10370:1 10379:1 10382:1 10383:1 10384:1 10388:1 10401:2 10407:1 10428:1 10429:1 10464:1 10481:1 10513:1 10518:1 10523:1 10530:1 10570:1 10572:1 10592:1 10639:2 10681:3 10684:1 10694:3 10745:1 10782:1 10788:1 10801:1 10813:1 10865:1 10875:1 10942:1 11087:1 11105:2 11228:1 11239:1 11261:3 11283:1 11305:1 11307:2 11314:1 11317:1 11332:1 11353:1 11362:1 11373:1 11396:1 11398:1 11403:1 11426:1 11427:2 11431:1 11445:1 11491:1 11495:2 11496:1 11514:1 11539:1 11570:1 11616:1 11632:2 11702:1 11761:1 11778:2 11779:1 11790:1 11797:1 11805:1 11935:1 11975:1 11988:1 11992:1 12000:2 12018:2 12069:1 12098:1 12112:1 12114:1 12122:2 12167:1 12193:1 12199:2 12225:1 12238:1 12239:2 12277:1 12279:1 12309:1 12364:1 12381:1 12405:1 12410:1 12456:1 12459:1 12545:1 12550:2 12568:1 12584:1 12642:1 12673:1 12686:1 12695:1 12697:3 12712:1 12789:1 12816:1 12817:1 12826:1 12831:1 12840:2 12844:1 12846:1 12947:1 12951:1 12958:1 12980:1 12987:1 12996:1 13008:1 13021:1 13027:1 13098:1 13102:1 13120:1 13132:1 13165:1 13182:1 13219:1 13232:1 13234:2 13257:1 13261:1 13379:1 13414:1 13421:1 13426:1 13428:1 13488:1 13505:1 13507:1 13532:1 13545:1 13549:1 13551:1 13598:2 13625:1 13626:1 13663:1 13686:3 13700:1 13726:3 13734:3 13740:1 13744:1 13764:1 13775:2 13810:1 13821:1 13870:1 13875:1 13876:2 13886:1 13895:1 13897:2 13898:1 13899:1 13900:2 13909:1 13910:1 13916:1 13952:2 14014:1 14047:1 14062:1 14069:1 14084:1 14108:1 14146:1 14174:1 14183:1 14293:1 14313:1 14327:1 14360:1 14367:1 14369:1 14374:1 14387:1 14390:1 14394:2 14471:1 14480:1 14490:1 14515:1 14516:1 14571:1 14578:1 14596:2 14608:1 14609:1 14617:1 14621:1 14649:2 14652:1 14654:1 14679:2 14694:1 14696:1 14704:1 14720:1 14786:1 14794:4 14823:6 14841:1 14859:1 14864:1 14908:1 14926:1 14967:1 14976:1 15029:1 15036:1 15043:1 15047:1 15054:1 15083:1 15109:1 15117:1 15169:1 15178:3 15212:1 15267:1 15276:2 15302:1 15380:2 15388:1 15401:2 15417:1 15419:1 15420:1 15421:1 15448:1 15454:1 15458:1 15550:1 15583:1 15683:2 15741:1 15746:1 15799:1 15842:1 15860:1 15870:1 15901:1 15949:1 15989:1 16017:1 16029:1 16037:1 16060:1 16084:1 16172:1 16216:5 16225:1 16265:1 16266:1 16301:6 16309:2 16360:1 16374:1 16419:1 16442:1 16444:1 16446:1 16481:1 16498:1 16508:764 16512:1 16545:2 16604:1 16647:2 16670:1 16678:1 16703:1 16719:1 16722:1 16735:2 16787:1 16871:1 16904:1 16914:1 16932:1 16987:1 16993:1 17002:1 17008:1 17009:1 17017:1 17042:1 17054:2 17077:1 17087:1 17092:1 17095:1 17123:1 17153:1 17163:1 17165:1 17188:2 17220:1 17236:3 17293:1 17358:1 17359:1 17385:1 17402:1 17409:1 17437:1 17480:1 17494:1 17495:1 17500:1 17514:1 17544:6 17565:1 17589:1 17595:1 17598:1 17653:1 17689:4 17706:1 17721:1 17739:1 17769:3 17781:1 17802:2 17822:1 17834:1 17843:1 17845:1 17902:1 17931:6 17940:1 17960:1 17967:1 17977:1 17993:1 18039:1 18153:1 18206:1 18212:1 18317:2 18333:1 18383:3 18430:1 18445:1 18454:1 18463:1 18486:1 18503:1 18511:1 18519:1 18524:1 18527:4 18534:1 18535:1 18544:1 18563:1 18571:1 18573:1 18619:1 18649:1 18692:1 18706:1 18760:1 18762:1 18774:1 18780:1 18797:2 18816:1 18823:1 18840:1 18920:2 18979:1 19024:1 19032:1 19039:1 19042:1 19056:2 19082:1 19105:1 19120:1 19127:1 19132:4 19133:1 19141:1 19142:1 19174:1 19175:1 19219:1 19239:2 19249:1 19275:2 19296:2 19332:1 19348:1 19422:1 19433:1 19434:2 19455:2 19456:1 19459:1 19490:1 19500:1 19535:2 19558:2 19568:1 19600:3 19624:1 19632:1 19636:1 19648:1 19677:1 19683:1 19696:1 19709:1 19740:2 19748:1 19758:1 19765:1 19817:1 19822:1 19831:1 19842:1 19887:1 19888:1 19899:1 19909:1 19923:1 19937:1 19938:1 19942:1 19958:1 19970:1 19991:1 19998:1 19999:3 20011:1 20025:1 20059:1 20062:1 20086:2 20124:1 20160:1 20172:1 20186:2 20199:3 20240:1 20297:3 20313:1 20334:1 20374:1 20390:1 20399:1 20400:1 20413:1 20421:1 20438:1 20461:1 20485:1 20508:1 20541:1 20554:1 20572:1 20640:2 20652:1 20717:1 20742:1 20750:2 20754:1 20770:1 20802:1 20818:1 20827:1 20835:1 20837:1 20841:1 20888:1 20891:1 20929:1 20963:1 21006:1 21066:1 21077:1 21109:1 21116:1 21123:1 21132:1 21151:1 21194:1 21232:1 21346:1 21392:1 21397:1 21416:1 21432:1 21441:1 21481:1 21494:1 21504:1 21571:1 21582:2 21621:1 21642:1 21689:1 21752:1 21768:1 21770:1 21772:1 21778:1 21779:1 21784:2 21795:1 21812:3 21846:1 21858:1 21868:4 21869:3 21872:1 21877:2 21905:1 21958:1 21961:1 21962:1 22027:1 22032:1 22082:1 22143:1 22188:1 22220:1 22284:1 22295:5 22343:1 22344:1 22346:1 22397:1 22426:1 22461:2 22491:3 22558:1 22598:1 22654:1 22672:1 22691:1 22697:1 22702:1 22706:1 22742:1 22787:1 22794:1 22796:2 22797:1 22801:2 22819:1 22848:1 22862:1 22876:1 22907:1 22944:3 22955:1 22976:2 22977:1 22993:1 23011:1 23013:1 23023:1 23035:1 23037:1 23038:1 23083:1 23106:2 23135:1 23179:1 23180:2 23238:1 23270:1 23291:1 23316:1 23350:2 23383:1 23410:6 23411:1 23458:1 23480:1 23484:1 23507:1 23511:1 23530:1 23533:1 23552:1 23566:1 23597:1 23633:1 23666:1 23691:1 23698:1 23699:1 23734:1 23735:1 23760:1 23819:1 23837:1 23853:1 23888:1 23924:1 23957:1 23963:1 23987:1 24003:1 24016:1 24053:1 24109:1 24119:3 24120:1 24141:1 24150:1 24162:1 24179:1 24190:1 24217:1 24221:5 24230:1 24292:1 24295:2 24366:1 24404:1 24412:1 24414:1 24419:1 24427:1 24428:1 24443:1 24444:1 24445:1 24455:1 24464:2 24480:2 24485:1 24486:1 24488:1 24489:1 24495:1 24502:1 24503:1 24515:1 24548:1 24588:1 24615:1 24658:1 24665:1 24684:1 24709:1 24745:1 24769:1 24771:1 24777:1 24818:1 24868:1 24905:1 24917:1 24949:1 24962:1 25022:3 25036:1 25044:1 25069:1 25083:1 25093:1 25096:1 25110:4 25112:1 25116:1 25137:1 25141:1 25251:3 25276:1 25278:2 25282:1 25287:1 25296:1 25310:1 25312:1 25324:1 25327:2 25348:1 25351:1 25363:3 25382:1 25433:1 25456:1 25457:1 25460:2 25495:1 25515:1 25519:1 25527:1 25540:2 25542:1 25583:1 25584:1 25602:1 25619:1 25624:1 25679:1 25741:1 25746:1 25753:1 25770:1 25777:1 25854:1 25860:1 25880:1 25883:1 25956:1 25960:1 25971:1 25992:1 26011:1 26027:1 26050:1 26076:1 26091:1 26122:1 26128:3 26150:1 26163:2 26205:1 26209:1 26215:1 26227:1 26228:1 26231:3 26239:2 26241:2 26244:1 26250:1 26279:1 26299:1 26318:1 26330:1 26340:1
7 10:1 21:1 38:1 83:1 155:3 164:2 182:2 193:1 215:2 218:1 248:1 276:1 294:1 310:1 327:1 391:1 402:1 407:1 410:1 429:1 437:1 441:1 501:1 508:1 510:2 538:1 553:1 603:3 613:1 722:1 726:1 750:1 782:2 801:1 807:1 810:1 845:1 854:1 877:1 890:1 971:1 982:1 984:1 1021:1 1054:1 1076:1 1081:1 1168:2 1235:1 1241:1 1242:1 1276:1 1279:1 1287:1 1345:1 1386:1 1394:2 1444:1 1449:1 1450:3 1451:1 1466:1 1495:1 1528:1 1539:2 1541:1 1579:1 1581:1 1596:1 1605:2 1628:1 1639:1 1653:2 1721:1 1731:1 1788:1 1790:1 1815:1 1827:1 1848:3 1868:1 1879:2 1884:1 1888:1 1924:1 1927:1 1930:2 1943:1 1964:1 1967:3 1968:1 1978:1 1981:1 1982:1 1997:2 2000:1 2002:2 2004:1 2044:1 2053:1 2064:1 2070:1 2086:1 2091:2 2099:1 2145:1 2172:1 2181:1 2222:1 2223:1 2237:1 2241:1 2247:1 2273:1 2316:1 2355:1 2364:1 2378:1 2394:2 2406:1 2429:1 2431:1 2445:1 2446:1 2450:2 2453:3 2460:4 2466:1 2472:1 2506:1 2508:1 2534:1 2545:3 2579:1 2590:7 2617:1 2650:1 2696:1 2760:1 2858:1 2868:1 2893:2 2900:1 2918:4 2948:1 2977:1 2982:2 3038:1 3046:1 3084:1 3091:1 3106:1 3153:1 3155:1 3159:2 3167:1 3169:1 3187:1 3189:1 3231:1 3235:1 3238:1 3276:1 3332:1 3362:1 3365:1 3421:1 3422:1 3432:1 3435:1 3450:1 3461:1 3481:1 3511:1 3518:1 3529:1 3537:1 3575:1 3613:1 3617:4 3622:1 3682:1 3698:1 3706:3 3715:1 3732:1 3752:1 3763:1 3782:1 3791:1 3805:1 3817:2 3843:1 3851:1 3916:1 3942:1 3944:1 3997:4 4021:1 4082:1 4096:1 4097:1 4098:1 4113:1 4120:1 4123:2 4130:1 4140:1 4148:1 4193:1 4204:1 4247:1 4284:2 4305:6 4308:1 4323:1 4339:1 4376:1 4414:2 4429:2 4430:5 4433:1 4436:1 4437:2 4441:1 4449:1 4456:1 4457:1 4484:4 4564:1 4573:1 4597:1 4602:4 4625:2 4652:1 4674:1 4702:1 4703:1 4709:1 4733:1 4742:1 4744:1 4765:1 4766:1 4812:1 4888:1 4925:2 4953:1 4970:1 5006:1 5010:1 5020:1 5052:1 5053:1 5065:1 5068:1 5126:1 5225:1 5275:1 5306:1 5319:1 5322:1 5351:1 5441:3 5470:1 5478:1 5499:1 5516:1 5542:3 5566:4 5581:4 5585:1 5586:1 5600:2 5617:2 5625:2 5631:1 5636:1 5637:1 5645:1 5647:2 5673:1 5782:1 5797:1 5818:1 5847:2 5886:1 5890:1 5918:2 5990:1 6009:3 6010:2 6098:1 6102:1 6105:2 6117:1 6152:1 6178:1 6186:1 6188:1 6230:1 6246:2 6322:1 6326:1 6328:1 6345:1 6356:1 6459:1 6460:1 6502:1 6514:1 6515:1 6519:1 6544:1 6552:1 6561:1 6589:3 6603:1 6614:1 6621:1 6624:1 6632:1 6633:1 6638:1 6653:1 6680:1 6702:2 6712:1 6723:2 6740:2 6741:1 6761:1 6803:12 6822:1 6824:6 6957:1 6986:1 6997:1 7036:1 7072:1 7083:1 7104:1 7151:1 7152:1 7180:2 7201:1 7205:1 7219:6 7254:1 7274:2 7315:2 7363:1 7379:1 7382:1 7416:1 7420:1 7439:1 7536:1 7539:1 7549:2 7565:1 7589:1 7610:1 7611:4 7628:1 7644:1 7651:1 7670:1 7673:1 7697:1 7714:1 7767:1 7790:2 7807:1 7815:1 7835:2 7910:1 7937:1 7960:1 7966:2 8028:3 8033:1 8090:2 8167:1 8169:1 8170:1 8178:1 8179:1 8232:1 8277:1 8322:2 8326:1 8342:1 8432:2 8440:1 8476:1 8483:1 8498:2 8499:2 8510:2 8534:1 8563:1 8601:1 8616:1 8628:1 8657:1 8660:1 8664:1 8687:1 8730:1 8740:1 8748:1 8769:1 8824:1 8828:1 8839:1 8872:1 8882:1 8909:2 8914:1 8917:1 8929:1 8944:1 8956:2 8965:2 8973:1 8989:1 8993:1 8996:1 9033:1 9044:1 9056:1 9058:1 9070:1 9085:1 9113:1 9117:1 9167:1 9255:1 9264:1 9285:1 9292:1 9293:1 9318:1 9322:1 9374:3 9376:1 9419:1 9464:1 9490:1 9506:1 9532:1 9534:1 9535:1 9606:1 9611:1 9697:1 9708:1 9712:4 9718:1 9754:1 9831:1 9835:1 9837:1 9870:1 9900:1 9912:1 9968:2 9992:1 9995:1 10040:1 10093:1 10098:2 10103:1 10132:1 10133:2 10166:1 10182:1 10204:1 10249:1 10274:1 10341:2 10362:1 10368:2 10370:1 10379:1 10382:1 10383:1 10384:1 10388:1 10401:2 10407:1 10428:1 10429:1 10464:1 10481:1 10513:1 10518:2 10523:1 10530:1 10570:1 10572:1 10592:1 10639:2 10681:4 10684:1 10694:4 10745:1 10782:1 10788:1 10800:1 10801:1 10813:1 10865:1 10875:1 10942:1 11087:1 11105:2 11228:1 11239:1 11261:3 11283:1 11305:1 11307:2 11314:1 11317:1 11332:1 11353:1 11362:1 11373:1 11396:1 11398:1 11403:1 11426:1 11427:2 11431:1 11445:1 11479:1 11491:1 11495:2 11496:1 11514:1 11539:1 11570:1 11616:1 11632:2 11702:1 11761:1 11778:2 11779:1 11790:1 11797:1 11805:1 11865:1 11935:1 11975:1 11988:1 11992:1 12000:2 12018:2 12069:1 12098:1 12099:1 12112:1 12114:1 12120:1 12122:2 12167:1 12193:1 12199:2 12225:1 12238:1 12239:2 12277:1 12279:1 12309:1 12364:1 12381:1 12405:1 12410:1 12456:1 12459:1 12545:1 12550:2 12563:1 12568:1 12584:1 12642:1 12673:1 12686:1 12695:1 12697:3 12707:1 12712:1 12789:1 12816:1 12817:1 12826:1 12831:1 12840:2 12844:1 12846:1 12853:1 12947:1 12951:1 12958:1 12980:1 12987:1 12996:1 13008:1 13021:1 13027:1 13053:1 13098:1 13102:1 13120:1 13132:1 13165:1 13182:1 13219:1 13232:1 13234:2 13257:1 13261:1 13379:1 13414:1 13421:1 13426:1 13428:1 13440:1 13488:1 13505:1 13507:1 13532:1 13545:1 13549:1 13551:1 13598:2 13625:1 13626:1 13663:1 13673:1 13686:3 13700:1 13704:1 13726:3 13734:3 13740:1 13744:1 13764:1 13775:2 13810:1 13821:1 13870:1 13875:1 13876:2 13886:1 13895:1 13897:2 13898:1 13899:1 13900:2 13909:1 13910:1 13916:1 13952:2 14014:1 14047:1 14062:1 14069:1 14084:1 14108:1 14146:1 14174:1 14183:1 14293:1 14313:1 14327:1 14360:1 14367:1 14369:1 14374:1 14387:1 14390:1 14394:2 14471:1 14480:1 14490:1 14515:1 14516:1 14571:1 14578:1 14596:2 14608:1 14609:1 14617:1 14621:1 14649:2 14652:1 14654:1 14679:2 14694:1 14695:1 14696:1 14704:1 14720:1 14786:1 14794:4 14823:6 14841:1 14859:1 14864:1 14893:1 14908:1 14913:1 14926:1 14967:1 14976:1 15029:1 15036:1 15043:1 15047:1 15054:1 15083:1 15109:1 15117:1 15169:1 15178:3 15212:1 15242:1 15267:1 15276:2 15302:1 15380:2 15388:1 15401:2 15417:1 15419:1 15420:1 15421:1 15448:1 15454:1 15458:1 15550:1 15583:1 15683:2 15741:1 15746:1 15799:1 15842:1 15860:1 15870:1 15901:1 15949:1 15989:1 16003:1 16017:1 16029:1 16037:1 16060:1 16084:1 16172:1 16216:5 16225:1 16265:1 16266:1 16301:6 16309:2 16360:1 16374:1 16419:1 16442:1 16444:1 16446:1 16481:1 16498:1 16508:886 16512:1 16545:2 16604:1 16647:2 16670:1 16678:1 16703:1 16719:1 16722:1 16735:2 16787:1 16834:1 16871:1 16904:1 16914:1 16932:1 16987:1 16993:1 17002:1 17008:1 17009:1 17017:1 17042:1 17054:2 17077:1 17087:1 17092:1 17095:1 17123:1 17153:1 17163:1 17165:1 17188:2 17220:1 17236:3 17293:1 17358:1 17359:1 17385:1 17402:1 17409:1 17437:1 17480:1 17494:1 17495:1 17500:1 17514:1 17544:6 17565:1 17589:1 17595:1 17598:1 17615:1 17653:1 17689:4 17706:1 17721:1 17739:1 17769:3 17781:1 17802:2 17822:1 17824:1 17834:1 17843:1 17845:1 17902:1 17931:7 17940:1 17960:1 17967:1 17977:1 17993:1 18039:1 18047:1 18076:1 18153:1 18206:1 18212:1 18317:2 18333:1 18383:3 18430:1 18445:1 18454:1 18463:1 18486:1 18503:1 18511:1 18519:1 18524:1 18527:4 18534:1 18535:1 18544:1 18563:2 18571:1 18573:1 18601:1 18619:1 18649:1 18692:1 18706:1 18760:1 18762:1 18774:1 18780:1 18797:2 18812:1 18816:1 18823:1 18840:1 18920:2 18979:1 19024:1 19032:1 19039:1 19042:1 19056:2 19082:1 19105:1 19120:1 19127:1 19132:4 19133:1 19141:1 19142:1 19174:1 19175:1 19219:1 19239:2 19249:1 19275:2 19285:1 19296:2 19332:1 19348:1 19422:1 19433:1 19434:2 19455:2 19456:1 19459:1 19490:1 19500:1 19535:2 19558:2 19568:1 19600:4 19624:1 19632:1 19636:1 19648:1 19656:1 19677:1 19683:1 19696:1 19709:1 19740:2 19748:1 19758:1 19765:1 19787:1 19798:1 19817:1 19822:1 19831:1 19832:1 19842:1 19887:1 19888:1 19899:1 19909:1 19923:1 19937:1 19938:1 19942:1 19958:2 19970:1 19991:1 19998:1 19999:3 20011:1 20025:1 20059:1 20062:1 20086:2 20124:1 20160:1 20172:1 20186:2 20199:3 20240:1 20297:3 20313:1 20334:1 20374:1 20390:1 20399:1 20400:1 20413:1 20421:1 20438:1 20461:1 20485:1 20508:1 20541:1 20554:1 20572:1 20640:2 20652:1 20717:1 20742:1 20750:2 20754:1 20770:1 20802:1 20818:1 20827:1 20835:1 20837:1 20841:1 20888:1 20891:1 20929:1 20963:1 21006:1 21066:1 21077:1 21109:1 21116:1 21123:1 21132:1 21151:1 21194:1 21232:1 21346:1 21392:1 21397:1 21416:1 21432:1 21441:1 21481:1 21494:1 21504:1 21537:1 21571:1 21582:2 21621:1 21642:1 21689:1 21752:1 21768:1 21770:1 21772:1 21778:1 21779:1 21784:2 21795:1 21801:1 21812:3 21846:1 21858:1 21868:4 21869:3 21872:1 21877:2 21905:1 21958:1 21961:1 21962:1 22027:1 22032:1 22082:1 22143:1 22188:1 22220:1 22284:1 22295:5 22343:1 22344:1 22346:1 22397:1 22426:1 22461:2 22491:3 22558:1 22598:1 22654:1 22672:1 22691:1 22697:1 22702:1 22706:1 22742:1 22745:1 22787:1 22794:1 22796:2 22797:1 22801:2 22819:1 22848:1 22862:1 22876:1 22907:1 22944:3 22955:1 22969:1 22976:2 22977:1 22993:2 23011:1 23013:1 23023:1 23035:1 23037:1 23038:1 23083:1 23106:2 23135:1 23179:1 23180:2 23238:1 23270:1 23291:1 23316:1 23350:2 23383:1 23388:1 23410:6 23411:1 23458:1 23480:1 23484:1 23507:1 23511:1 23530:1 23533:1 23552:2 23566:1 23597:1 23633:1 23666:1 23691:1 23698:1 23699:1 23734:1 23735:1 23760:1 23787:1 23819:1 23837:1 23853:1 23888:1 23924:1 23957:1 23963:1 23987:1 24003:1 24016:1 24053:1 24109:1 24119:3 24120:1 24141:1 24150:1 24162:1 24179:1 24190:1 24217:1 24221:5 24230:1 24292:1 24295:2 24345:1 24366:1 24404:1 24412:1 24414:1 24419:1 24427:1 24428:1 24443:1 24444:1 24445:1 24455:1 24464:2 24480:2 24485:1 24486:1 24488:1 24489:1 24495:1 24502:1 24503:1 24511:1 24515:1 24548:1 24588:1 24615:1 24658:1 24665:1 24684:1 24709:1 24729:1 24745:1 24769:1 24771:1 24775:1 24777:1 24818:1 24868:1 24905:1 24917:1 24949:1 24962:1 25022:3 25031:1 25036:1 25037:1 25044:1 25069:1 25083:1 25093:1 25096:1 25110:4 25112:1 25116:1 25137:1 25141:1 25251:3 25276:1 25278:2 25282:1 25287:1 25296:1 25310:1 25312:1 25324:1 25327:2 25348:1 25351:1 25363:4 25382:1 25433:1 25456:1 25457:1 25460:2 25495:1 25515:1 25519:1 25527:2 25540:2 25542:1 25583:1 25584:1 25602:1 25619:1 25624:1 25679:1 25741:1 25746:1 25753:1 25770:1 25777:1 25779:1 25854:1 25860:1 25880:1 25883:1 25901:1 25956:1 25960:1 25971:1 25992:1 26011:1 26027:1 26050:1 26076:1 26091:1 26122:1 26128:3 26150:1 26163:2 26205:1 26209:1 26215:1 26227:1 26228:1 26231:3 26239:2 26241:2 26244:1 26250:1 26279:1 26299:1 26318:1 26330:1 26340:1
7 10:1 21:1 38:1 73:1 83:1 155:4 164:2 182:2 193:1 215:2 218:1 248:1 260:1 276:1 294:1 310:1 327:1 347:1 360:1 391:1 402:1 407:1 410:1 429:1 437:1 441:1 501:1 508:1 510:2 538:1 553:1 603:4 613:1 722:1 726:1 728:1 746:1 750:2 782:2 801:1 807:1 810:1 845:1 854:1 877:1 882:1 890:1 971:2 982:1 984:1 1021:1 1054:1 1076:1 1081:1 1168:2 1235:1 1241:1 1242:1 1276:1 1279:1 1287:1 1345:1 1386:1 1394:2 1444:1 1449:1 1450:3 1451:1 1466:2 1495:1 1528:1 1539:2 1541:2 1579:1 1581:1 1593:1 1596:1 1605:2 1628:2 1639:1 1653:2 1721:1 1731:2 1788:1 1790:1 1796:1 1815:2 1827:1 1848:4 1868:1 1879:2 1884:1 1888:1 1924:1 1927:1 1930:3 1943:1 1952:1 1964:1 1967:4 1968:1 1978:1 1981:2 1982:1 1990:1 1997:2 2000:1 2002:2 2004:1 2044:1 2053:1 2064:1 2070:1 2086:1 2091:2 2099:1 2145:1 2155:1 2172:1 2181:1 2222:1 2223:1 2237:1 2241:1 2247:1 2273:1 2316:1 2355:1 2364:1 2378:1 2394:2 2406:1 2429:1 2431:1 2445:1 2446:1 2450:2 2453:3 2460:4 2466:1 2472:1 2500:1 2506:1 2508:1 2534:1 2545:3 2579:1 2590:8 2617:1 2650:1 2696:1 2711:1 2760:2 2858:1 2868:1 2875:1 2893:2 2900:1 2918:5 2948:1 2977:1 2982:2 3038:1 3046:1 3084:1 3091:1 3106:1 3153:1 3155:1 3159:2 3167:1 3169:1 3187:1 3189:1 3191:1 3205:1 3231:1 3235:1 3238:1 3276:1 3332:1 3362:1 3365:1 3421:1 3422:1 3432:1 3435:1 3450:1 3453:1 3461:1 3481:1 3511:2 3518:1 3529:1 3537:1 3575:1 3613:1 3617:4 3622:1 3661:1 3682:1 3698:1 3706:3 3715:1 3732:1 3752:1 3763:1 3782:1 3791:1 3793:1 3805:1 3817:2 3843:1 3851:1 3899:1 3916:1 3942:1 3944:1 3997:4 4004:1 4021:1 4028:1 4036:1 4082:1 4096:1 4097:2 4098:1 4113:1 4120:1 4123:2 4130:1 4140:1 4148:1 4193:1 4204:1 4215:1 4247:1 4284:2 4305:7 4308:1 4323:1 4339:1 4376:1 4414:2 4429:2 4430:5 4433:1 4436:1 4437:2 4441:1 4443:1 4449:1 4456:2 4457:1 4484:4 4533:1 4564:1 4573:1 4597:1 4602:4 4625:2 4652:1 4674:1 4702:1 4703:1 4709:1 4733:1 4742:1 4744:1 4765:1 4766:1 4812:1 4888:2 4897:1 4922:1 4925:2 4953:1 4970:2 5006:1 5010:1 5020:1 5052:1 5053:1 5065:1 5068:2 5071:1 5126:1 5225:1 5275:1 5306:1 5319:1 5322:2 5351:1 5441:4 5470:1 5478:1 5499:1 5516:1 5542:3 5566:4 5581:4 5585:1 5586:1 5600:2 5617:2 5625:2 5627:2 5631:1 5636:1 5637:1 5640:1 5645:1 5647:2 5673:1 5732:1 5767:1 5769:1 5782:1 5797:1 5800:1 5810:1 5818:1 5847:2 5886:1 5890:1 5918:2 5990:1 6009:3 6010:2 6098:1 6102:1 6105:2 6111:1 6117:1 6152:1 6178:1 6186:1 6188:1 6230:1 6246:2 6282:1 6322:1 6326:1 6328:1 6330:1 6336:1 6345:1 6356:1 6459:1 6460:1 6502:1 6514:1 6515:1 6519:1 6544:1 6552:1 6561:1 6571:1 6589:3 6603:1 6614:1 6621:1 6624:1 6632:1 6633:1 6638:1 6653:1 6680:1 6702:2 6712:1 6723:2 6729:1 6740:3 6741:1 6761:1 6803:15 6822:1 6824:7 6957:1 6986:1 6997:1 7004:1 7036:1 7072:1 7083:1 7093:1 7104:1 7151:1 7152:1 7180:2 7201:1 7205:1 7219:6 7254:1 7274:2 7297:1 7303:1 7315:2 7363:1 7379:2 7382:1 7416:1 7420:1 7439:1 7462:1 7534:1 7536:1 7538:1 7539:1 7549:2 7565:1 7589:1 7610:1 7611:4 7628:2 7644:1 7651:1 7670:1 7673:1 7697:1 7700:1 7714:1 7767:1 7790:2 7807:1 7815:1 7835:2 7855:1 7910:1 7937:1 7960:1 7966:2 8028:4 8033:1 8090:2 8167:1 8169:1 8170:1 8178:1 8179:1 8232:1 8275:1 8277:1 8322:2 8326:1 8342:1 8377:1 8378:1 8383:1 8411:1 8432:2 8440:1 8476:1 8483:1 8498:2 8499:2 8510:2 8534:1 8550:1 8563:1 8601:1 8616:1 8628:1 8657:1 8660:1 8664:1 8687:1 8730:1 8740:1 8748:1 8769:1 8785:1 8824:1 8828:1 8839:1 8872:1 8882:1 8909:3 8914:1 8917:1 8929:1 8944:1 8956:2 8965:2 8970:1 8973:1 8989:1 8993:1 8996:1 9033:1 9044:1 9056:1 9058:1 9070:1 9085:1 9110:1 9113:1 9117:1 9167:1 9216:1 9220:1 9255:1 9264:1 9285:1 9288:1 9292:1 9293:1 9318:1 9322:1 9344:1 9374:3 9376:1 9419:1 9464:1 9473:1 9490:1 9506:1 9529:1 9532:1 9534:1 9535:1 9606:1 9611:1 9660:1 9697:1 9708:1 9712:5 9718:1 9754:1 9803:1 9831:1 9835:1 9837:1 9870:1 9900:1 9912:1 9946:1 9968:2 9992:1 9995:1 10040:1 10087:1 10093:1 10098:2 10103:1 10109:1 10132:1 10133:2 10166:1 10182:1 10192:1 10195:1 10204:1 10249:1 10274:2 10341:2 10362:1 10368:2 10370:1 10379:1 10381:1 10382:1 10383:1 10384:1 10388:1 10401:2 10407:1 10428:1 10429:1 10464:1 10481:1 10513:1 10518:3 10523:1 10530:1 10570:1 10572:1 10592:1 10639:2 10681:4 10684:1 10694:4 10704:1 10729:1 10745:1 10774:1 10782:1 10788:1 10800:1 10801:1 10813:1 10865:1 10875:1 10942:1 10974:1 11087:2 11105:2 11116:1 11228:1 11239:1 11261:3 11283:1 11305:1 11307:2 11314:1 11317:1 11332:1 11353:1 11362:1 11373:1 11396:1 11398:1 11403:1 11426:1 11427:2 11431:2 11445:1 11460:1 11479:1 11491:1 11495:2 11496:1 11514:1 11539:1 11570:1 11588:1 11616:1 11632:2 11702:1 11761:1 11778:2 11779:2 11790:1 11797:1 11805:1 11865:1 11935:1 11938:1 11975:1 11988:1 11992:1 12000:2 12018:2 12069:1 12096:2 12098:1 12099:1 12112:1 12114:1 12120:1 12122:2 12167:1 12193:1 12199:2 12225:1 12238:2 12239:2 12277:1 12279:1 12281:1 12309:1 12354:1 12364:2 12381:1 12405:1 12410:1 12423:2 12456:1 12459:1 12504:1 12545:1 12550:2 12556:1 12563:1 12568:1 12584:1 12642:1 12673:1 12686:1 12695:1 12697:3 12707:1 12712:1 12734:1 12789:1 12816:1 12817:1 12826:1 12831:1 12840:2 12844:1 12846:1 12853:1 12947:1 12951:1 12958:1 12980:1 12987:1 12996:1 13008:1 13021:1 13027:1 13053:1 13093:1 13098:1 13102:1 13120:1 13132:1 13165:1 13182:1 13219:1 13232:1 13234:2 13257:1 13261:1 13316:1 13379:1 13414:1 13421:1 13426:1 13428:1 13440:1 13481:1 13488:1 13505:1 13507:1 13532:1 13545:1 13549:1 13551:1 13598:2 13625:1 13626:3 13647:1 13663:1 13673:1 13686:3 13700:1 13704:1 13726:3 13734:4 13740:1 13744:1 13764:1 13775:2 13810:1 13821:1 13840:1 13870:1 13875:1 13876:2 13886:1 13895:1 13897:2 13898:1 13899:1 13900:2 13909:1 13910:1 13916:1 13932:1 13952:2 14014:2 14047:1 14062:1 14069:1 14084:1 14108:1 14146:1 14174:1 14183:1 14219:1 14293:1 14313:1 14327:1 14360:1 14367:1 14369:1 14374:1 14386:1 14387:1 14390:1 14394:2 14471:1 14480:1 14481:1 14490:1 14515:1 14516:1 14571:1 14578:1 14596:2 14608:1 14609:1 14617:1 14621:1 14649:2 14652:1 14654:1 14679:2 14694:1 14695:2 14696:1 14704:2 14720:1 14786:1 14794:4 14823:6 14841:1 14859:1 14864:1 14893:1 14908:1 14913:1 14926:1 14967:1 14976:1 15029:1 15036:1 15043:1 15047:1 15054:1 15069:1 15083:1 15109:1 15117:1 15153:1 15169:1 15178:3 15212:1 15242:1 15267:1 15276:3 15297:1 15302:1 15365:1 15380:2 15388:1 15401:2 15417:1 15419:1 15420:1 15421:1 15448:1 15454:1 15458:1 15505:1 15550:1 15583:1 15683:2 15741:1 15746:1 15799:1 15842:1 15860:1 15870:1 15901:1 15949:1 15989:1 16003:1 16017:1 16029:2 16037:1 16060:1 16084:1 16113:1 16162:1 16172:1 16216:5 16225:1 16265:1 16266:1 16301:6 16309:2 16360:1 16374:1 16419:1 16442:1 16444:1 16446:1 16481:1 16498:1 16508:994 16512:1 16545:2 16604:1 16647:2 16670:1 16678:1 16703:1 16719:1 16722:1 16735:2 16787:1 16834:2 16871:1 16904:1 16914:1 16932:1 16987:1 16993:1 17002:1 17008:1 17009:1 17017:1 17042:1 17054:2 17077:1 17087:1 17092:1 17095:1 17110:1 17123:1 17145:1 17153:1 17163:1 17165:1 17188:2 17195:1 17220:1 17223:1 17236:3 17293:1 17358:1 17359:1 17385:1 17402:1 17409:1 17437:1 17480:1 17494:1 17495:1 17500:1 17514:1 17544:6 17565:1 17589:1 17595:1 17598:1 17615:1 17653:1 17689:5 17706:1 17715:1 17721:1 17739:1 17769:3 17781:2 17802:2 17815:1 17822:1 17824:2 17834:1 17843:1 17845:1 17902:1 17931:8 17940:1 17960:1 17967:1 17977:1 17991:1 17993:1 18039:1 18047:1 18076:1 18153:1 18158:1 18198:1 18206:1 18212:1 18317:2 18333:1 18383:3 18397:1 18430:1 18445:1 18447:1 18454:1 18463:1 18486:1 18503:1 18511:1 18519:1 18524:1 18527:4 18534:1 18535:1 18542:1 18544:1 18563:2 18571:1 18573:1 18601:1 18619:1 18649:1 18692:1 18706:1 18760:2 18762:1 18774:1 18780:1 18781:1 18797:2 18812:2 18816:1 18823:1 18840:1 18917:1 18920:2 18942:1 18946:1 18972:1 18979:1 19024:1 19032:1 19039:1 19042:1 19056:2 19082:1 19105:1 19120:1 19127:1 19132:4 19133:1 19141:1 19142:1 19174:1 19175:1 19219:1 19239:2 19249:1 19275:2 19276:1 19285:1 19296:2 19325:1 19332:1 19348:1 19421:1 19422:1 19433:1 19434:2 19455:2 19456:1 19459:1 19490:1 19500:1 19535:2 19558:2 19568:1 19575:1 19600:4 19624:1 19632:1 19636:1 19648:1 19656:1 19677:1 19683:2 19685:1 19696:1 19709:1 19740:2 19748:1 19758:1 19765:1 19787:1 19798:1 19817:1 19822:1 19831:1 19832:1 19842:1 19887:1 19888:1 19899:1 19909:1 19923:1 19937:1 19938:1 19942:1 19958:2 19970:1 19991:1 19998:1 19999:3 20011:1 20025:1 20039:1 20059:1 20062:1 20086:2 20124:1 20132:1 20160:1 20166:1 20172:1 20186:2 20199:3 20203:1 20240:1 20297:3 20313:1 20320:1 20333:1 20334:1 20374:1 20390:1 20399:1 20400:1 20413:1 20421:1 20438:1 20461:1 20485:1 20508:1 20541:1 20554:1 20572:1 20640:2 20652:1 20717:1 20742:1 20750:2 20754:1 20770:1 20802:1 20818:1 20827:1 20835:2 20837:1 20840:1 20841:1 20888:1 20891:1 20929:1 20963:1 20991:1 21004:1 21006:1 21066:2 21077:1 21109:1 21116:1 21123:1 21132:1 21151:1 21154:1 21194:1 21232:1 21346:1 21392:1 21397:1 21416:1 21432:1 21441:1 21481:1 21494:1 21504:1 21537:1 21571:1 21582:2 21621:1 21642:1 21689:1 21752:1 21768:1 21769:1 21770:1 21772:1 21778:1 21779:1 21784:2 21795:1 21801:1 21812:3 21846:1 21858:1 21859:1 21868:4 21869:3 21872:1 21877:2 21905:1 21925:1 21958:1 21961:1 21962:1 22027:1 22032:1 22082:1 22143:1 22188:1 22220:1 22284:1 22295:5 22343:1 22344:1 22346:1 22397:1 22426:1 22461:2 22491:3 22558:1 22598:1 22654:2 22672:1 22691:1 22697:1 22702:1 22706:1 22742:1 22745:1 22757:1 22787:1 22794:1 22796:2 22797:1 22801:2 22819:1 22848:1 22862:1 22876:1 22907:1 22944:3 22955:1 22969:1 22976:2 22977:1 22993:2 23011:1 23013:1 23023:1 23035:1 23037:1 23038:1 23083:1 23106:2 23135:1 23179:1 23180:2 23203:1 23238:1 23270:1 23291:1 23316:1 23350:2 23376:1 23383:1 23388:1 23410:6 23411:1 23458:1 23480:1 23484:1 23507:1 23511:1 23530:1 23533:1 23552:2 23566:1 23597:1 23633:1 23666:1 23691:1 23698:1 23699:1 23734:1 23735:1 23760:1 23787:1 23819:1 23837:1 23853:1 23888:1 23924:1 23937:1 23957:1 23963:1 23968:1 23987:1 24003:1 24016:1 24049:1 24053:1 24109:1 24119:3 24120:1 24141:1 24149:1 24150:1 24162:1 24164:1 24179:2 24190:2 24217:1 24221:5 24230:1 24232:1 24233:1 24292:1 24295:2 24345:1 24366:1 24404:1 24412:1 24414:1 24419:1 24427:1 24428:1 24443:1 24444:1 24445:1 24455:1 24464:2 24480:2 24485:1 24486:1 24488:1 24489:1 24495:1 24502:1 24503:1 24511:1 24515:1 24548:1 24552:1 24588:1 24615:1 24658:1 24665:1 24684:1 24709:1 24729:1 24745:1 24769:1 24771:1 24775:1 24777:1 24818:1 24868:1 24905:1 24917:1 24949:1 24962:1 25022:3 25027:1 25031:1 25036:1 25037:1 25044:1 25069:1 25075:1 25083:1 25093:1 25096:1 25110:5 25112:1 25116:1 25137:1 25141:1 25159:1 25251:3 25260:1 25276:1 25278:3 25282:1 25287:1 25296:1 25310:1 25312:1 25324:1 25327:2 25334:1 25348:1 25351:1 25363:4 25364:1 25382:1 25433:1 25456:2 25457:1 25460:2 25495:1 25515:1 25519:1 25527:2 25540:2 25542:1 25583:1 25584:1 25602:1 25619:1 25624:1 25647:1 25679:1 25741:1 25746:1 25753:1 25770:1 25777:1 25779:1 25851:1 25854:1 25860:1 25880:1 25883:1 25901:2 25956:1 25960:1 25971:1 25992:1 26011:1 26027:1 26050:1 26076:1 26091:1 26122:1 26128:3 26150:1 26163:2 26205:1 26209:1 26215:1 26226:1 26227:1 26228:1 26231:3 26239:2 26241:2 26242:1 26244:1 26246:1 26250:2 26252:1 26279:1 26299:1 26318:1 26325:1 26330:1 26340:1
7 10:1 21:1 38:1 73:1 83:1 116:1 155:4 164:3 182:2 193:1 215:2 218:1 248:1 260:1 276:1 294:1 310:1 327:1 347:1 360:1 391:1 402:1 407:1 410:1 429:1 437:1 441:1 501:1 508:1 510:2 538:1 553:1 603:4 613:1 722:1 726:1 728:1 746:1 750:2 782:2 801:1 807:3 810:1 845:1 854:1 877:1 882:1 890:1 971:2 982:1 984:1 1021:1 1054:1 1076:1 1081:1 1168:2 1235:1 1241:1 1242:1 1276:1 1279:1 1287:1 1345:1 1386:1 1394:2 1444:1 1449:1 1450:3 1451:1 1466:2 1495:1 1528:1 1539:2 1541:2 1579:1 1581:1 1593:1 1596:1 1605:2 1628:2 1639:1 1653:2 1721:1 1731:2 1738:1 1758:1 1788:1 1790:1 1796:1 1815:3 1827:1 1848:4 1868:1 1879:2 1884:1 1888:1 1924:1 1927:1 1930:3 1943:1 1952:1 1964:1 1967:5 1968:1 1973:1 1974:1 1978:1 1981:2 1982:1 1990:2 1997:2 2000:1 2002:3 2004:1 2044:1 2053:1 2064:1 2070:1 2078:1 2086:1 2091:2 2099:1 2145:1 2155:1 2172:1 2181:1 2222:1 2223:1 2237:1 2241:1 2247:1 2273:1 2316:1 2355:1 2357:1 2364:1 2378:1 2394:2 2406:1 2429:1 2431:1 2445:1 2446:1 2450:2 2453:3 2460:4 2466:1 2472:1 2500:1 2506:1 2508:1 2534:1 2545:3 2579:1 2590:9 2617:1 2650:1 2667:1 2696:1 2711:1 2760:2 2858:1 2868:1 2869:1 2875:1 2893:3 2900:1 2915:1 2918:6 2948:1 2977:1 2982:2 3038:1 3046:1 3084:1 3091:1 3106:1 3153:1 3155:1 3159:2 3167:1 3169:1 3187:1 3189:1 3191:1 3205:1 3231:1 3235:1 3238:1 3276:1 3332:1 3362:1 3365:1 3421:1 3422:1 3432:1 3435:1 3450:1 3453:1 3461:1 3481:1 3504:1 3511:2 3518:1 3529:1 3537:1 3575:1 3613:1 3617:4 3622:1 3661:1 3682:1 3698:1 3706:3 3715:1 3732:1 3752:1 3763:1 3782:1 3789:1 3791:1 3793:1 3805:1 3817:2 3843:1 3851:1 3899:1 3916:1 3942:1 3944:1 3997:4 4004:1 4021:1 4028:1 4035:1 4036:1 4082:1 4096:1 4097:2 4098:1 4113:1 4120:1 4123:2 4130:1 4140:1 4148:1 4193:1 4204:1 4215:1 4247:1 4284:2 4296:1 4305:8 4308:1 4323:1 4339:1 4376:1 4414:2 4429:2 4430:5 4433:1 4436:1 4437:2 4441:1 4443:1 4449:1 4456:2 4457:1 4484:4 4533:1 4564:1 4573:1 4597:1 4602:4 4625:2 4652:1 4674:1 4702:1 4703:1 4709:1 4733:1 4742:1 4744:1 4765:1 4766:1 4812:1 4888:2 4897:1 4922:1 4925:2 4953:1 4970:2 5006:1 5010:1 5020:1 5052:1 5053:1 5065:1 5068:2 5071:1 5081:1 5126:1 5203:1 5225:1 5275:1 5306:1 5319:1 5322:2 5351:1 5441:4 5470:1 5478:1 5499:1 5516:1 5542:3 5566:4 5581:4 5585:1 5586:1 5600:2 5617:2 5618:1 5625:3 5627:2 5631:1 5636:1 5637:1 5640:1 5645:1 5647:2 5673:1 5732:1 5767:1 5769:1 5782:1 5797:1 5800:1 5810:1 5818:1 5847:2 5886:1 5890:1 5918:2 5990:2 6009:3 6010:2 6098:1 6102:1 6105:2 6111:1 6117:1 6152:1 6178:1 6186:1 6188:1 6230:1 6246:2 6282:1 6322:1 6326:1 6328:1 6330:1 6336:1 6345:1 6356:1 6459:1 6460:1 6502:1 6514:1 6515:1 6519:1 6544:1 6552:1 6561:1 6571:1 6589:3 6603:1 6614:1 6621:1 6624:1 6632:1 6633:1 6638:1 6653:1 6680:1 6702:2 6712:1 6723:2 6729:1 6740:3 6741:1 6761:1 6803:19 6822:1 6824:8 6957:1 6986:2 6997:1 7004:1 7036:1 7072:1 7083:1 7093:1 7104:1 7151:1 7152:1 7180:2 7201:1 7205:1 7219:7 7254:1 7274:2 7297:1 7303:1 7315:2 7358:1 7363:1 7379:2 7382:1 7391:1 7416:1 7420:1 7439:1 7462:1 7534:1 7536:1 7538:1 7539:1 7549:2 7565:1 7589:1 7610:1 7611:4 7628:2 7644:1 7651:1 7670:1 7673:1 7683:1 7697:1 7700:1 7714:1 7767:1 7790:2 7807:1 7815:1 7835:2 7855:1 7910:1 7937:2 7960:1 7966:2 8028:4 8033:1 8090:2 8167:1 8169:1 8170:1 8178:1 8179:1 8201:1 8232:1 8275:1 8277:1 8322:2 8326:1 8342:1 8377:1 8378:1 8383:1 8411:1 8432:2 8440:1 8455:1 8476:1 8483:1 8498:2 8499:2 8510:2 8534:1 8550:1 8563:1 8601:1 8616:1 8628:1 8631:1 8657:1 8660:1 8664:1 8687:1 8730:1 8740:1 8748:1 8769:1 8785:1 8824:1 8828:1 8839:1 8872:1 8882:1 8909:3 8914:1 8917:1 8929:1 8944:1 8956:2 8965:2 8970:1 8973:1 8989:1 8993:1 8996:1 9033:1 9044:1 9056:2 9058:1 9070:1 9085:1 9110:1 9113:1 9117:1 9167:1 9216:1 9220:1 9255:1 9264:1 9285:1 9288:1 9292:1 9293:1 9312:1 9318:1 9322:1 9344:1 9374:3 9376:1 9419:1 9464:1 9473:1 9490:1 9506:1 9529:1 9532:1 9534:1 9535:1 9606:1 9611:1 9660:1 9697:1 9708:1 9712:6 9718:1 9754:1 9803:1 9831:1 9835:1 9837:1 9870:1 9900:1 9912:1 9946:1 9968:2 9992:1 9995:1 10040:1 10082:1 10087:1 10093:1 10098:2 10103:1 10109:1 10132:1 10133:3 10166:1 10182:1 10192:1 10195:1 10204:1 10249:1 10274:2 10341:2 10362:1 10368:2 10370:1 10379:2 10381:1 10382:1 10383:1 10384:1 10387:1 10388:1 10401:2 10407:1 10428:1 10429:1 10464:1 10481:1 10502:1 10513:1 10518:3 10523:1 10530:1 10570:1 10572:1 10592:1 10605:1 10639:2 10665:1 10681:4 10684:1 10694:4 10704:1 10729:1 10745:1 10774:1 10782:1 10788:2 10800:1 10801:1 10813:1 10865:1 10875:2 10942:1 10974:1 11087:2 11105:2 11116:1 11228:1 11239:1 11261:3 11283:1 11305:1 11307:2 11314:1 11316:1 11317:1 11332:1 11353:1 11362:1 11373:1 11396:1 11398:1 11403:1 11426:1 11427:2 11431:2 11445:1 11460:1 11479:1 11491:1 11495:2 11496:1 11514:1 11539:1 11570:1 11588:1 11616:1 11632:2 11702:1 11761:1 11778:2 11779:2 11790:1 11797:1 11805:2 11865:2 11935:1 11938:1 11975:1 11988:1 11992:1 12000:2 12018:2 12069:1 12096:2 12098:1 12099:1 12112:1 12114:1 12120:1 12122:2 12167:1 12193:1 12199:2 12225:1 12238:2 12239:2 12277:1 12279:1 12281:1 12309:1 12354:1 12364:2 12381:1 12405:1 12410:1 12423:2 12456:1 12459:1 12504:1 12545:1 12550:2 12556:1 12563:1 12568:1 12584:1 12642:1 12657:1 12672:1 12673:1 12686:1 12695:1 12697:3 12707:1 12712:1 12734:1 12789:1 12816:1 12817:1 12826:1 12831:1 12840:2 12844:1 12846:1 12853:1 12947:1 12951:1 12958:1 12980:1 12987:1 12996:1 13008:1 13021:1 13027:1 13053:1 13093:1 13098:1 13102:1 13120:1 13132:1 13165:1 13182:1 13219:1 13232:1 13234:2 13257:1 13261:1 13316:1 13379:1 13414:1 13421:1 13426:1 13428:1 13440:1 13481:1 13488:1 13505:1 13507:1 13532:1 13545:1 13549:1 13551:1 13598:2 13615:1 13625:1 13626:3 13647:1 13663:1 13673:1 13686:3 13700:1 13704:1 13726:3 13734:4 13740:2 13744:1 13764:1 13775:2 13810:1 13821:1 13840:1 13870:1 13875:1 13876:2 13886:1 13895:1 13897:2 13898:1 13899:1 13900:2 13909:1 13910:1 13916:1 13932:1 13952:2 14014:2 14047:1 14062:1 14069:1 14084:1 14108:1 14143:1 14146:1 14174:1 14183:1 14219:1 14293:1 14313:1 14324:1 14327:1 14360:1 14367:1 14369:1 14374:1 14386:1 14387:2 14389:1 14390:1 14394:2 14471:1 14480:1 14481:1 14490:1 14515:1 14516:1 14571:1 14578:1 14596:2 14608:1 14609:1 14617:1 14621:1 14649:2 14652:1 14654:1 14679:2 14694:1 14695:2 14696:1 14704:2 14720:1 14786:1 14794:4 14823:7 14841:1 14859:1 14864:1 14893:1 14908:1 14913:1 14926:1 14967:1 14976:1 15029:1 15036:1 15043:1 15047:1 15054:1 15064:1 15069:1 15083:1 15109:1 15117:1 15153:1 15169:1 15178:3 15196:1 15212:1 15242:1 15267:1 15276:3 15297:1 15302:1 15365:1 15380:2 15388:1 15401:2 15406:1 15417:1 15419:1 15420:1 15421:1 15448:1 15454:1 15458:1 15505:1 15550:1 15583:1 15683:2 15741:1 15746:1 15795:1 15799:1 15842:1 15860:1 15870:1 15901:1 15949:1 15989:1 16003:1 16017:1 16029:2 16037:1 16060:1 16084:1 16113:1 16161:1 16162:1 16172:1 16216:5 16225:1 16265:1 16266:1 16301:7 16309:2 16360:1 16374:1 16409:1 16419:1 16442:1 16444:1 16446:1 16481:1 16498:1 16508:1038 16512:1 16545:2 16604:1 16647:2 16670:1 16678:1 16703:1 16719:1 16722:1 16735:2 16787:1 16834:2 16871:1 16904:1 16914:1 16932:1 16987:1 16993:1 17002:1 17008:1 17009:1 17017:1 17042:1 17054:2 17077:1 17087:1 17092:1 17095:1 17110:1 17123:2 17145:1 17153:1 17163:1 17165:1 17188:2 17195:1 17220:1 17223:1 17236:3 17293:1 17327:1 17358:1 17359:1 17385:1 17402:1 17409:1 17437:1 17464:1 17480:1 17494:1 17495:1 17500:1 17514:1 17544:6 17565:1 17589:1 17595:1 17598:1 17615:1 17653:1 17689:5 17706:1 17715:1 17721:1 17739:1 17769:3 17781:2 17802:2 17815:1 17822:1 17824:2 17834:1 17843:1 17845:1 17902:1 17931:9 17940:1 17960:1 17967:1 17977:1 17991:1 17993:1 18039:1 18047:1 18076:1 18153:1 18158:1 18198:1 18206:1 18212:1 18317:2 18333:1 18383:3 18397:1 18430:1 18445:1 18447:1 18454:1 18460:1 18463:1 18486:1 18503:1 18509:1 18511:1 18519:1 18524:1 18527:5 18534:1 18535:1 18542:1 18544:1 18563:2 18571:1 18573:1 18601:1 18619:1 18649:1 18692:1 18706:1 18760:2 18762:1 18774:1 18780:1 18781:1 18797:2 18812:2 18816:1 18823:1 18840:1 18917:1 18920:3 18942:1 18946:1 18967:1 18972:1 18979:1 19024:1 19032:1 19039:1 19042:1 19056:2 19082:1 19105:1 19120:1 19127:1 19132:4 19133:1 19141:1 19142:1 19174:1 19175:1 19219:1 19239:2 19249:1 19275:2 19276:1 19285:1 19296:2 19325:1 19332:1 19348:1 19421:1 19422:1 19433:1 19434:2 19455:2 19456:1 19459:1 19490:1 19500:1 19535:2 19558:2 19568:1 19575:1 19600:4 19624:1 19632:1 19636:1 19648:1 19656:1 19677:1 19683:2 19685:1 19696:1 19709:1 19740:2 19748:1 19758:1 19765:1 19787:1 19798:1 19817:1 19822:1 19831:1 19832:1 19842:1 19887:1 19888:1 19899:1 19909:1 19923:1 19937:1 19938:1 19942:1 19958:2 19970:1 19991:1 19998:1 19999:3 20011:1 20025:1 20039:1 20059:2 20062:1 20086:2 20124:1 20132:1 20160:1 20166:1 20172:1 20186:2 20199:3 20203:1 20210:1 20240:1 20297:4 20309:1 20313:1 20320:1 20333:1 20334:1 20374:1 20390:1 20399:1 20400:1 20413:1 20421:1 20438:1 20461:1 20485:1 20508:1 20541:1 20554:1 20565:1 20572:1 20640:2 20652:1 20717:1 20742:1 20750:2 20754:1 20770:1 20802:1 20818:1 20827:1 20835:2 20837:1 20840:1 20841:1 20870:1 20888:1 20891:1 20893:1 20929:1 20963:1 20991:1 21000:1 21004:1 21006:1 21066:2 21077:2 21109:1 21116:1 21123:1 21132:1 21151:1 21154:1 21194:1 21232:1 21346:1 21392:1 21397:1 21416:1 21432:1 21441:1 21481:1 21494:1 21504:1 21537:1 21571:1 21582:2 21621:1 21642:1 21689:1 21752:1 21768:1 21769:1 21770:1 21772:1 21778:1 21779:1 21784:2 21795:1 21801:2 21812:3 21846:1 21858:1 21859:1 21868:4 21869:3 21872:1 21877:2 21905:1 21925:1 21926:1 21958:1 21961:1 21962:1 22027:1 22032:1 22082:1 22143:1 22188:1 22220:1 22284:1 22295:5 22343:1 22344:1 22346:1 22377:1 22397:1 22426:1 22461:2 22491:3 22506:1 22558:1 22598:1 22654:2 22672:1 22691:1 22697:1 22702:1 22706:1 22742:1 22745:1 22757:1 22787:1 22794:1 22796:2 22797:1 22801:2 22819:1 22848:1 22862:1 22876:1 22907:1 22944:3 22955:1 22969:1 22976:2 22977:1 22993:2 23011:1 23013:1 23023:1 23035:1 23037:1 23038:1 23083:1 23106:2 23135:1 23179:1 23180:2 23203:1 23238:1 23270:1 23291:1 23316:1 23350:2 23376:1 23383:1 23388:1 23410:7 23411:1 23418:1 23458:2 23480:1 23484:1 23507:1 23511:1 23530:1 23533:1 23552:2 23566:1 23597:1 23633:1 23666:1 23691:1 23698:1 23699:1 23734:1 23735:1 23760:1 23787:1 23819:1 23837:1 23853:1 23888:1 23905:1 23924:1 23937:1 23957:1 23963:1 23968:1 23987:1 24003:1 24016:1 24049:1 24053:1 24109:1 24119:3 24120:1 24141:1 24149:1 24150:1 24162:1 24164:1 24177:1 24179:2 24190:2 24217:1 24221:5 24230:1 24232:1 24233:1 24251:1 24292:1 24295:2 24345:1 24361:1 24366:1 24404:1 24412:1 24414:1 24419:1 24427:1 24428:1 24443:1 24444:1 24445:1 24455:1 24464:2 24480:2 24485:1 24486:1 24488:1 24489:1 24495:1 24502:1 24503:1 24511:1 24515:1 24548:1 24552:1 24588:1 24615:1 24644:1 24658:1 24665:1 24684:1 24709:1 24729:1 24745:1 24769:1 24771:1 24775:1 24777:1 24818:1 24868:1 24905:1 24917:1 24949:1 24962:1 25022:3 25027:1 25031:1 25036:1 25037:1 25044:1 25054:1 25069:1 25075:1 25083:1 25093:1 25096:1 25110:5 25112:1 25116:1 25137:1 25141:1 25159:1 25251:3 25260:1 25276:1 25278:3 25282:1 25287:1 25296:1 25310:1 25312:1 25324:1 25327:2 25334:1 25348:1 25351:1 25363:4 25364:1 25382:1 25433:1 25456:2 25457:1 25459:1 25460:2 25477:1 25495:1 25515:1 25519:1 25527:2 25540:2 25542:1 25583:1 25584:1 25602:1 25619:1 25624:1 25647:1 25679:1 25741:1 25746:1 25753:1 25770:1 25777:1 25779:1 25851:1 25854:1 25860:1 25880:1 25883:1 25901:2 25915:1 25956:1 25960:1 25971:1 25992:1 26011:1 26027:1 26050:1 26076:1 26091:1 26122:1 26128:3 26150:1 26163:2 26205:1 26209:1 26215:1 26226:1 26227:1 26228:1 26231:3 26239:2 26241:2 26242:1 26244:1 26246:1 26250:2 26252:1 26279:1 26299:1 26318:1 26325:1 26330:1 26340:1
7 10:1 21:1 38:1 73:1 83:1 110:1 116:1 155:4 164:3 182:2 193:1 215:2 218:1 248:1 260:1 276:1 294:1 310:1 327:1 345:1 347:1 360:1 391:1 402:1 407:1 410:1 429:1 437:1 441:1 501:1 508:1 510:2 538:2 553:1 603:4 613:1 722:1 726:3 728:1 746:1 750:2 781:1 782:2 801:1 807:3 810:1 845:1 854:1 877:1 882:1 890:1 962:1 971:2 982:1 984:1 1021:1 1054:1 1076:1 1081:1 1104:1 1168:2 1235:1 1241:1 1242:1 1276:1 1279:1 1287:1 1345:1 1386:1 1394:2 1444:1 1449:1 1450:3 1451:1 1466:2 1495:1 1528:1 1539:2 1541:2 1579:1 1581:1 1593:1 1596:1 1605:2 1628:2 1639:1 1653:2 1721:1 1731:2 1738:1 1758:1 1788:1 1790:1 1796:1 1815:3 1827:1 1848:4 1868:1 1879:2 1884:1 1888:1 1924:1 1927:1 1930:3 1943:1 1952:1 1964:1 1967:5 1968:1 1973:1 1974:1 1978:1 1981:2 1982:1 1990:2 1997:2 2000:1 2002:3 2004:1 2044:1 2053:1 2064:1 2070:1 2078:1 2086:1 2091:2 2099:1 2116:1 2145:1 2155:1 2172:1 2181:1 2222:1 2223:1 2237:1 2241:1 2247:1 2273:1 2316:1 2355:1 2357:1 2364:1 2378:1 2394:2 2406:1 2429:1 2431:1 2445:1 2446:1 2450:2 2453:3 2460:4 2466:1 2472:1 2500:1 2506:1 2508:1 2534:1 2545:4 2579:1 2590:10 2617:1 2650:1 2667:1 2696:1 2711:1 2760:2 2858:1 2868:1 2869:1 2875:1 2893:3 2900:1 2915:1 2918:6 2948:1 2977:1 2982:2 3038:1 3046:1 3084:1 3091:1 3106:1 3153:1 3155:1 3159:2 3167:1 3169:1 3181:1 3187:1 3189:1 3191:1 3205:1 3231:1 3235:1 3238:1 3276:1 3332:1 3362:1 3365:1 3421:1 3422:1 3432:1 3435:1 3450:1 3453:1 3461:1 3481:1 3504:2 3511:2 3518:1 3529:1 3537:1 3575:1 3613:1 3617:4 3622:1 3661:2 3682:1 3698:1 3706:3 3711:1 3715:1 3732:1 3733:1 3752:1 3763:1 3782:1 3789:1 3791:1 3793:1 3805:1 3817:2 3843:1 3851:1 3899:1 3916:1 3942:1 3944:1 3997:4 4004:1 4021:1 4028:1 4035:1 4036:1 4082:1 4096:1 4097:2 4098:1 4113:1 4120:1 4123:2 4130:1 4140:1 4148:1 4193:1 4204:1 4215:1 4247:1 4250:1 4284:2 4296:1 4305:10 4308:1 4323:1 4339:1 4376:1 4414:2 4429:2 4430:5 4433:1 4436:1 4437:2 4441:1 4443:1 4449:1 4456:2 4457:1 4484:4 4533:1 4564:1 4573:1 4597:1 4602:4 4625:2 4652:1 4674:1 4702:1 4703:1 4709:1 4733:1 4742:1 4744:1 4765:1 4766:1 4812:1 4888:2 4897:1 4922:1 4925:2 4953:1 4970:2 5006:1 5010:1 5020:1 5052:1 5053:1 5065:1 5068:2 5071:1 5081:1 5126:1 5203:1 5225:1 5275:1 5306:1 5319:1 5322:2 5351:1 5395:1 5441:4 5470:1 5478:1 5499:1 5516:1 5542:3 5566:4 5581:4 5585:1 5586:1 5600:2 5617:2 5618:1 5625:3 5627:2 5631:1 5636:1 5637:1 5638:1 5640:1 5645:2 5647:2 5673:1 5732:1 5767:1 5769:1 5782:1 5797:1 5800:1 5810:1 5818:1 5847:3 5886:1 5890:1 5918:2 5990:2 6009:3 6010:2 6098:1 6102:1 6105:2 6111:1 6117:1 6152:1 6178:1 6186:1 6188:1 6230:1 6246:2 6282:1 6322:1 6326:1 6328:1 6330:1 6336:1 6345:1 6356:1 6459:1 6460:1 6490:1 6502:1 6514:1 6515:1 6519:1 6544:1 6552:1 6561:1 6571:1 6589:3 6603:1 6614:1 6621:1 6624:1 6632:1 6633:1 6638:1 6653:1 6680:1 6702:2 6712:1 6723:2 6729:1 6740:3 6741:1 6761:1 6803:19 6822:1 6824:9 6957:1 6986:2 6990:1 6997:1 7004:1 7036:1 7072:1 7083:1 7093:1 7104:1 7151:1 7152:1 7180:2 7194:1 7201:1 7205:1 7219:9 7254:1 7274:2 7297:1 7303:1 7315:2 7358:1 7363:1 7379:2 7382:1 7391:1 7416:1 7420:1 7439:1 7462:1 7534:1 7536:1 7538:1 7539:1 7549:2 7565:1 7589:1 7610:1 7611:4 7628:2 7644:1 7651:1 7670:1 7673:1 7683:1 7697:1 7700:1 7714:1 7767:1 7790:2 7807:1 7815:1 7835:3 7855:1 7910:1 7937:2 7960:1 7966:2 8028:4 8033:1 8090:2 8158:1 8167:1 8169:1 8170:1 8178:1 8179:1 8201:1 8232:1 8275:1 8277:1 8322:2 8326:1 8342:1 8377:1 8378:1 8383:1 8411:1 8432:2 8440:1 8455:1 8476:1 8483:1 8498:2 8499:2 8510:2 8534:1 8550:1 8563:1 8601:1 8616:1 8628:1 8631:1 8657:1 8660:1 8664:1 8687:1 8730:1 8740:1 8748:1 8752:1 8755:1 8769:1 8785:1 8824:1 8828:1 8839:1 8872:1 8882:1 8909:3 8914:1 8917:2 8929:1 8944:1 8956:2 8959:1 8965:2 8970:1 8973:1 8989:1 8993:1 8996:1 9033:1 9044:1 9056:2 9058:1 9070:1 9085:1 9110:1 9113:1 9117:1 9167:1 9216:1 9220:1 9255:1 9264:1 9285:1 9288:1 9292:1 9293:1 9312:1 9318:1 9322:1 9344:1 9374:3 9376:1 9419:1 9464:1 9473:1 9490:1 9506:1 9529:1 9532:1 9534:1 9535:1 9606:1 9611:1 9660:1 9697:1 9708:1 9712:6 9718:1 9754:1 9803:2 9831:1 9835:1 9837:1 9870:1 9894:1 9900:1 9912:1 9943:1 9946:1 9968:2 9992:1 9995:1 10040:1 10082:1 10087:1 10093:1 10098:2 10103:1 10109:1 10132:1 10133:3 10166:1 10182:1 10192:1 10195:1 10204:1 10249:1 10274:2 10320:1 10341:2 10362:1 10368:2 10370:1 10379:2 10381:2 10382:1 10383:1 10384:1 10387:1 10388:1 10401:2 10407:1 10428:1 10429:1 10464:1 10481:1 10487:1 10502:1 10513:1 10518:3 10523:1 10530:1 10570:1 10572:1 10592:1 10605:1 10639:2 10665:1 10681:4 10684:1 10694:4 10704:1 10729:1 10745:1 10774:1 10782:1 10788:2 10800:1 10801:1 10813:1 10865:1 10875:2 10942:1 10974:1 11087:2 11105:2 11116:1 11203:1 11228:1 11239:1 11261:5 11283:1 11305:1 11307:2 11314:1 11316:1 11317:1 11332:1 11353:1 11362:1 11373:1 11376:1 11396:1 11398:1 11403:1 11426:1 11427:2 11431:2 11445:1 11460:1 11479:1 11491:1 11495:2 11496:1 11514:1 11539:1 11570:1 11588:1 11616:1 11632:3 11694:1 11702:1 11761:1 11778:3 11779:2 11790:1 11797:1 11805:2 11865:2 11935:1 11938:1 11975:1 11988:1 11992:1 12000:2 12018:2 12069:1 12096:2 12098:1 12099:1 12112:1 12114:1 12120:1 12122:2 12167:1 12193:1 12199:2 12217:1 12225:1 12238:2 12239:2 12277:1 12279:1 12281:1 12309:1 12354:1 12364:2 12381:1 12405:1 12410:1 12423:2 12456:1 12459:1 12504:1 12545:1 12550:2 12556:1 12563:1 12568:1 12584:1 12642:1 12657:1 12672:1 12673:1 12686:1 12695:1 12697:3 12707:1 12712:1 12734:1 12789:1 12816:1 12817:1 12826:1 12831:1 12840:2 12844:1 12846:1 12853:1 12920:1 12936:1 12947:1 12951:1 12958:1 12980:1 12987:1 12996:1 13008:1 13021:1 13027:1 13053:1 13093:1 13098:1 13102:1 13120:1 13132:1 13165:1 13182:1 13219:1 13232:1 13234:2 13257:1 13261:1 13316:1 13379:1 13414:1 13421:1 13426:1 13428:1 13440:1 13452:1 13481:1 13488:1 13505:1 13507:1 13532:1 13545:1 13549:1 13551:1 13598:2 13615:1 13625:1 13626:3 13637:1 13647:1 13663:1 13673:1 13686:3 13700:1 13704:1 13726:3 13734:5 13740:2 13744:1 13764:1 13775:3 13810:1 13821:1 13840:1 13870:1 13875:1 13876:2 13886:1 13895:1 13897:2 13898:1 13899:1 13900:2 13909:1 13910:1 13916:1 13932:1 13952:2 14014:2 14047:1 14062:1 14069:1 14084:1 14108:1 14143:1 14146:1 14174:1 14179:1 14183:1 14219:1 14284:1 14293:1 14313:1 14324:1 14327:1 14360:1 14367:1 14369:1 14373:1 14374:1 14386:1 14387:2 14389:1 14390:1 14394:2 14412:1 14471:1 14480:1 14481:1 14490:1 14515:1 14516:1 14571:1 14578:1 14596:2 14608:1 14609:1 14617:1 14621:1 14649:2 14652:1 14654:1 14679:2 14694:1 14695:2 14696:1 14700:1 14704:2 14720:1 14786:1 14794:5 14823:8 14841:1 14859:1 14864:1 14893:1 14908:1 14913:1 14926:1 14967:1 14976:1 15029:1 15036:1 15043:1 15047:1 15054:1 15064:1 15069:1 15083:1 15109:1 15117:1 15153:1 15169:1 15178:3 15196:1 15212:1 15242:1 15267:1 15276:3 15297:1 15302:1 15365:1 15380:2 15388:1 15401:2 15406:1 15417:1 15419:1 15420:1 15421:1 15441:1 15448:1 15454:1 15458:1 15505:1 15550:1 15583:1 15683:2 15741:1 15746:1 15795:1 15799:1 15842:1 15860:1 15870:1 15901:1 15949:1 15967:1 15989:1 16003:1 16017:1 16029:2 16037:1 16060:1 16084:1 16113:1 16161:1 16162:1 16172:1 16216:6 16225:1 16265:1 16266:1 16301:7 16309:2 16360:1 16374:1 16409:1 16419:1 16442:1 16444:1 16446:1 16481:1 16498:1 16508:1099 16509:1 16512:1 16545:2 16559:1 16604:1 16647:2 16670:1 16678:1 16694:1 16703:1 16719:1 16722:1 16735:3 16767:1 16787:1 16834:2 16871:1 16894:1 16904:1 16914:1 16932:1 16942:1 16987:1 16993:1 17002:1 17008:1 17009:1 17017:1 17042:1 17054:2 17077:1 17087:2 17092:1 17095:1 17110:1 17123:2 17145:1 17153:1 17163:1 17165:1 17188:2 17195:1 17220:1 17223:1 17236:3 17293:1 17327:1 17358:1 17359:1 17385:1 17402:1 17409:1 17437:1 17464:1 17480:1 17494:1 17495:1 17500:1 17514:1 17528:1 17530:1 17544:7 17565:1 17589:1 17595:1 17598:1 17615:1 17653:1 17689:5 17706:1 17715:1 17721:1 17739:1 17763:1 17769:3 17781:2 17802:3 17815:1 17822:1 17824:2 17834:1 17837:1 17843:1 17845:1 17847:1 17858:1 17902:1 17931:10 17940:1 17960:1 17967:1 17977:1 17991:1 17993:1 18039:1 18047:1 18076:1 18102:1 18153:1 18158:1 18198:1 18206:1 18212:1 18317:2 18333:1 18383:3 18397:1 18430:1 18445:1 18447:1 18454:1 18460:1 18463:1 18486:1 18503:1 18509:1 18511:1 18519:1 18524:1 18527:6 18534:1 18535:1 18542:2 18544:1 18563:2 18571:1 18573:1 18601:1 18619:1 18649:1 18692:1 18706:1 18760:2 18762:1 18774:1 18780:1 18781:1 18797:2 18800:1 18812:2 18816:1 18823:1 18840:1 18917:1 18920:3 18942:1 18946:1 18967:1 18972:1 18979:1 19024:1 19032:1 19039:1 19042:1 19056:2 19062:1 19082:1 19105:1 19120:1 19127:1 19128:1 19132:5 19133:1 19141:1 19142:1 19174:1 19175:1 19212:1 19219:1 19239:2 19249:1 19275:2 19276:1 19285:1 19296:2 19314:1 19325:1 19332:1 19348:1 19421:1 19422:1 19433:1 19434:2 19455:2 19456:1 19459:1 19490:1 19500:1 19535:2 19558:2 19568:1 19575:1 19600:4 19624:1 19632:1 19636:1 19648:1 19656:1 19677:1 19683:2 19685:1 19696:1 19709:1 19740:2 19748:1 19758:1 19765:1 19787:1 19798:1 19817:1 19822:1 19831:1 19832:1 19842:1 19887:1 19888:1 19899:1 19909:1 19923:1 19937:1 19938:1 19942:1 19958:2 19960:1 19969:1 19970:1 19991:1 19998:1 19999:4 20011:1 20025:1 20039:1 20059:2 20062:1 20086:2 20124:1 20132:1 20160:1 20166:1 20172:1 20186:2 20199:3 20203:1 20210:1 20240:1 20272:1 20282:1 20297:4 20309:1 20313:1 20320:1 20333:1 20334:2 20374:1 20390:1 20399:1 20400:1 20413:1 20421:1 20438:1 20455:1 20461:1 20485:1 20508:1 20541:1 20554:1 20565:1 20572:1 20577:1 20640:2 20652:1 20717:1 20742:1 20750:2 20754:1 20770:1 20802:1 20818:1 20827:1 20835:3 20837:1 20840:1 20841:1 20870:1 20888:2 20891:1 20893:1 20929:1 20963:1 20991:1 21000:1 21004:1 21006:1 21066:2 21077:2 21109:1 21116:1 21123:1 21132:1 21151:2 21154:1 21194:1 21232:1 21346:1 21392:1 21397:1 21416:1 21432:1 21441:1 21481:1 21494:1 21504:1 21537:1 21571:1 21582:2 21621:1 21642:1 21689:1 21752:1 21768:1 21769:1 21770:1 21772:1 21778:1 21779:1 21784:2 21795:1 21796:1 21801:2 21812:3 21846:1 21858:1 21859:1 21868:5 21869:3 21872:1 21877:3 21905:1 21925:1 21926:2 21958:1 21961:1 21962:1 22027:1 22032:1 22082:1 22143:1 22188:1 22220:1 22284:1 22295:6 22343:1 22344:1 22346:1 22377:1 22397:1 22426:1 22461:2 22491:3 22506:1 22558:1 22598:1 22654:2 22672:1 22691:1 22697:1 22702:1 22706:1 22707:1 22742:1 22745:1 22757:1 22759:1 22787:1 22794:1 22796:2 22797:1 22801:2 22819:1 22848:1 22862:1 22876:1 22907:1 22944:3 22955:1 22969:1 22976:2 22977:1 22993:2 23011:1 23013:1 23023:1 23035:1 23037:1 23038:1 23083:1 23106:2 23135:1 23179:1 23180:2 23203:1 23238:1 23270:1 23291:1 23316:1 23350:2 23376:1 23383:1 23388:1 23410:7 23411:1 23418:1 23458:2 23480:1 23484:1 23507:1 23511:1 23530:1 23533:1 23552:2 23566:1 23597:1 23633:1 23666:1 23691:1 23698:1 23699:1 23734:1 23735:1 23760:1 23787:1 23819:1 23837:1 23853:1 23888:1 23905:1 23924:1 23937:1 23957:1 23963:1 23968:1 23987:1 24003:1 24016:1 24049:1 24053:1 24107:1 24109:1 24119:3 24120:1 24141:1 24149:1 24150:1 24162:1 24164:1 24177:2 24179:2 24190:2 24217:1 24221:5 24230:1 24232:1 24233:1 24251:1 24271:1 24292:1 24295:2 24345:1 24361:1 24366:1 24404:1 24412:1 24414:1 24419:1 24427:1 24428:1 24443:1 24444:1 24445:1 24455:1 24464:2 24469:1 24480:2 24485:1 24486:1 24488:1 24489:1 24495:1 24502:1 24503:1 24511:1 24515:1 24548:1 24552:1 24588:1 24615:1 24644:1 24658:1 24665:1 24684:1 24709:1 24729:1 24745:1 24769:1 24771:1 24775:1 24777:1 24818:1 24868:1 24905:2 24917:1 24949:1 24962:1 25022:3 25027:1 25031:1 25036:1 25037:2 25044:1 25054:1 25069:1 25075:1 25083:1 25093:1 25096:1 25110:5 25112:1 25116:1 25137:1 25141:1 25159:1 25251:3 25260:1 25276:1 25278:4 25282:1 25287:1 25296:1 25310:1 25312:1 25324:1 25327:2 25334:1 25348:1 25351:1 25363:4 25364:1 25382:1 25433:1 25456:2 25457:1 25459:1 25460:2 25477:1 25495:1 25515:1 25519:1 25527:2 25540:2 25542:1 25583:1 25584:1 25602:1 25619:1 25624:1 25647:1 25679:1 25741:1 25746:1 25753:1 25770:1 25777:1 25779:1 25851:1 25854:1 25860:1 25880:1 25883:1 25901:2 25912:1 25915:1 25956:1 25960:1 25971:1 25992:1 26011:1 26027:1 26050:1 26076:1 26091:1 26122:1 26128:3 26150:1 26163:2 26205:1 26209:1 26215:1 26226:1 26227:1 26228:1 26231:3 26239:2 26241:2 26242:1 26244:1 26246:1 26250:2 26252:1 26279:1 26299:1 26318:1 26325:1 26330:1 26340:1
7 10:1 21:1 38:1 73:1 83:1 110:1 116:1 155:4 164:3 182:2 193:2 215:2 218:1 248:1 260:1 276:1 294:1 310:1 327:1 345:1 347:1 360:1 391:1 402:1 407:1 410:1 429:1 437:1 441:1 501:1 508:1 510:2 538:2 553:1 603:4 613:1 722:1 726:3 728:1 746:1 750:2 769:1 781:1 782:2 801:1 807:3 810:1 845:1 854:1 877:1 882:1 890:1 962:1 971:2 982:2 984:1 1021:1 1054:1 1076:1 1081:1 1104:1 1168:2 1235:1 1241:1 1242:1 1276:1 1279:1 1287:1 1345:1 1386:1 1394:2 1444:1 1449:1 1450:3 1451:1 1466:2 1495:1 1528:1 1539:2 1541:2 1579:1 1581:1 1593:1 1596:1 1605:2 1628:2 1639:1 1653:2 1721:1 1731:2 1738:2 1758:1 1788:1 1790:1 1796:1 1815:4 1827:1 1848:4 1868:1 1879:2 1884:1 1888:1 1924:1 1927:1 1930:3 1941:1 1943:1 1952:1 1964:1 1967:6 1968:1 1973:2 1974:1 1978:1 1981:2 1982:1 1986:1 1990:3 1997:2 2000:1 2002:3 2004:1 2044:1 2053:1 2064:1 2070:1 2078:1 2086:1 2091:2 2099:1 2116:1 2145:1 2155:1 2172:1 2181:1 2210:1 2222:1 2223:1 2237:1 2241:1 2247:1 2273:1 2316:1 2355:1 2357:1 2364:1 2378:1 2394:2 2406:1 2429:1 2431:1 2445:1 2446:1 2450:2 2453:3 2460:4 2466:1 2472:1 2500:1 2502:1 2506:1 2508:1 2534:1 2545:4 2579:1 2590:12 2617:1 2650:1 2667:1 2696:1 2711:1 2760:2 2858:1 2868:1 2869:1 2875:1 2893:3 2900:1 2915:1 2918:6 2948:1 2977:1 2982:2 3038:1 3046:1 3084:1 3091:1 3106:1 3153:1 3155:1 3159:2 3167:1 3169:1 3181:1 3187:1 3189:1 3191:1 3205:1 3231:1 3235:1 3238:1 3276:1 3332:1 3362:1 3365:1 3421:1 3422:1 3432:1 3435:1 3443:1 3450:1 3453:1 3461:1 3481:1 3504:2 3511:2 3518:1 3529:1 3537:1 3575:1 3613:1 3617:4 3622:1 3661:2 3682:1 3698:1 3706:3 3711:1 3715:1 3732:1 3733:1 3752:1 3763:1 3782:1 3789:1 3791:1 3793:1 3805:2 3817:2 3843:1 3851:1 3899:1 3916:1 3942:1 3944:1 3997:4 4004:1 4021:1 4028:1 4035:1 4036:1 4082:1 4096:1 4097:2 4098:1 4113:1 4120:1 4123:2 4130:1 4140:1 4148:1 4193:1 4204:1 4215:1 4247:1 4250:1 4284:2 4296:1 4305:10 4308:1 4323:1 4339:1 4376:1 4414:2 4429:2 4430:5 4433:1 4436:1 4437:2 4441:1 4443:1 4449:1 4456:2 4457:1 4484:4 4533:1 4564:1 4573:1 4597:1 4602:4 4625:2 4652:1 4674:1 4702:1 4703:1 4709:1 4726:1 4733:1 4742:1 4744:1 4765:1 4766:1 4812:1 4888:2 4897:1 4922:1 4925:2 4953:1 4970:2 5006:1 5010:1 5020:1 5052:1 5053:1 5065:1 5068:2 5071:1 5081:2 5126:1 5203:1 5225:1 5275:1 5306:1 5319:1 5322:2 5351:1 5379:1 5395:1 5441:5 5470:1 5478:1 5499:1 5516:1 5542:3 5566:4 5581:4 5585:1 5586:1 5600:2 5617:2 5618:1 5625:3 5627:2 5631:1 5636:1 5637:1 5638:1 5640:1 5645:2 5647:2 5673:1 5732:1 5756:1 5767:1 5769:1 5782:1 5797:1 5800:1 5810:1 5818:1 5847:3 5886:1 5890:1 5918:2 5990:2 6009:3 6010:2 6098:1 6102:1 6105:2 6111:1 6117:1 6152:1 6178:1 6186:1 6188:1 6230:1 6246:2 6282:1 6322:1 6326:1 6328:1 6330:1 6336:1 6345:1 6356:1 6459:1 6460:1 6490:1 6502:1 6514:1 6515:1 6519:1 6544:1 6552:1 6561:1 6571:1 6589:3 6603:1 6614:1 6621:1 6624:1 6632:1 6633:1 6638:1 6649:1 6653:1 6680:1 6702:2 6712:1 6723:2 6729:1 6740:3 6741:1 6761:1 6803:22 6822:1 6824:11 6957:1 6986:2 6990:1 6997:1 7004:1 7036:1 7072:1 7083:1 7093:1 7104:1 7151:1 7152:1 7180:2 7194:1 7201:1 7205:1 7219:10 7254:1 7274:2 7297:1 7303:1 7315:2 7358:1 7363:1 7379:2 7382:1 7391:1 7399:1 7416:1 7420:1 7438:1 7439:1 7462:1 7534:1 7536:1 7538:1 7539:1 7549:2 7565:1 7589:1 7610:2 7611:5 7628:2 7644:1 7651:1 7670:1 7673:1 7683:1 7688:1 7697:1 7700:1 7714:1 7767:1 7790:2 7795:1 7807:1 7815:1 7835:3 7855:1 7910:1 7937:2 7960:1 7966:2 8028:4 8033:1 8090:2 8158:1 8167:1 8169:1 8170:1 8178:1 8179:1 8201:1 8232:1 8275:1 8277:1 8322:2 8326:1 8342:1 8377:1 8378:1 8383:1 8411:1 8432:2 8440:1 8455:1 8476:1 8483:1 8498:2 8499:2 8510:2 8534:1 8550:1 8563:1 8601:1 8616:1 8628:1 8631:1 8657:1 8660:1 8664:1 8678:1 8687:1 8730:1 8740:1 8747:1 8748:1 8752:1 8755:1 8769:1 8785:1 8824:1 8828:1 8839:1 8872:1 8882:1 8909:3 8914:1 8917:2 8929:2 8944:1 8956:2 8959:1 8965:2 8970:1 8973:1 8989:1 8993:1 8996:1 9033:1 9044:2 9056:2 9058:1 9061:1 9070:1 9085:1 9110:1 9113:1 9117:1 9167:1 9216:1 9220:1 9255:1 9264:1 9285:1 9288:1 9292:1 9293:1 9312:1 9318:1 9322:1 9344:1 9374:3 9376:1 9419:1 9464:1 9473:1 9490:1 9506:1 9529:1 9532:1 9534:1 9535:1 9606:1 9611:1 9660:1 9697:1 9708:1 9712:6 9718:1 9754:1 9791:1 9803:2 9831:1 9835:1 9837:1 9870:1 9894:1 9900:1 9912:1 9943:1 9946:1 9968:2 9992:1 9995:1 10040:1 10082:1 10087:1 10093:1 10098:2 10103:1 10109:1 10132:1 10133:3 10166:1 10182:1 10192:1 10195:1 10204:1 10249:1 10274:2 10320:1 10341:2 10362:1 10368:2 10370:1 10379:2 10381:2 10382:1 10383:1 10384:1 10387:1 10388:1 10401:2 10407:1 10428:1 10429:1 10464:1 10481:1 10487:1 10502:1 10513:1 10518:3 10523:1 10530:1 10570:1 10572:1 10592:1 10605:1 10639:2 10665:1 10681:4 10684:1 10694:4 10704:1 10729:1 10745:1 10764:1 10774:1 10782:1 10788:2 10800:1 10801:1 10813:1 10865:1 10875:2 10942:1 10974:1 11087:2 11093:1 11105:2 11116:1 11203:1 11228:1 11239:1 11261:5 11283:1 11305:1 11307:2 11314:1 11316:1 11317:1 11332:1 11353:1 11362:1 11373:1 11376:1 11396:1 11398:1 11403:1 11426:1 11427:2 11431:2 11445:1 11460:1 11479:1 11491:1 11495:2 11496:1 11514:1 11539:1 11570:1 11588:1 11616:1 11632:3 11694:1 11702:1 11761:1 11778:3 11779:2 11790:1 11797:1 11805:2 11865:2 11935:1 11938:1 11975:1 11988:1 11992:1 12000:2 12018:2 12069:1 12096:2 12098:1 12099:1 12112:2 12114:1 12120:1 12122:2 12167:1 12193:1 12199:2 12217:1 12225:1 12238:2 12239:2 12277:1 12279:1 12281:1 12309:1 12354:1 12364:2 12381:1 12405:1 12410:1 12423:2 12456:1 12459:1 12504:1 12542:1 12545:1 12550:2 12556:1 12563:1 12568:1 12584:1 12642:1 12657:1 12672:1 12673:1 12686:1 12695:1 12697:3 12707:1 12712:1 12734:1 12789:1 12794:1 12816:1 12817:1 12826:1 12831:1 12840:2 12844:1 12846:1 12853:1 12897:1 12920:1 12936:1 12947:1 12951:1 12958:1 12980:1 12987:1 12996:1 13008:1 13021:1 13027:1 13053:1 13093:1 13098:1 13102:1 13120:1 13132:1 13165:1 13182:1 13219:1 13232:1 13234:2 13257:1 13261:1 13316:1 13379:1 13414:1 13421:1 13426:1 13428:1 13440:1 13452:1 13481:1 13488:1 13505:1 13507:1 13532:1 13545:1 13549:1 13551:1 13598:2 13615:1 13625:1 13626:4 13637:1 13647:1 13663:1 13673:1 13686:3 13700:1 13704:1 13726:3 13734:5 13740:2 13744:1 13764:1 13775:3 13810:1 13821:1 13840:1 13870:1 13875:1 13876:2 13886:1 13895:1 13897:2 13898:1 13899:2 13900:2 13909:1 13910:1 13916:1 13932:1 13952:2 14014:2 14047:1 14062:1 14069:1 14084:1 14108:1 14143:1 14146:1 14174:1 14179:1 14183:1 14219:1 14284:1 14293:1 14313:1 14324:1 14327:1 14360:1 14367:1 14369:1 14373:1 14374:1 14386:1 14387:2 14389:1 14390:1 14394:3 14412:1 14471:1 14480:1 14481:1 14490:1 14515:1 14516:1 14571:1 14578:2 14596:2 14608:1 14609:1 14617:1 14621:1 14649:2 14652:1 14654:1 14679:2 14694:1 14695:2 14696:1 14700:1 14704:2 14720:1 14786:1 14794:5 14823:10 14841:1 14859:1 14864:2 14893:1 14908:1 14913:1 14926:1 14967:1 14976:1 15029:1 15036:1 15043:1 15047:1 15054:1 15064:1 15069:1 15083:1 15109:1 15117:1 15153:1 15169:1 15178:3 15196:2 15212:1 15242:1 15267:1 15276:3 15285:1 15297:1 15302:1 15365:1 15380:2 15388:1 15401:2 15406:1 15417:1 15419:1 15420:1 15421:1 15441:1 15448:1 15454:1 15458:1 15505:1 15550:1 15583:1 15683:2 15741:1 15746:1 15795:1 15799:1 15842:1 15860:1 15870:1 15901:1 15949:1 15967:1 15989:1 16003:1 16017:1 16029:2 16037:1 16060:1 16084:1 16113:1 16161:1 16162:1 16172:1 16216:6 16225:1 16265:1 16266:1 16301:7 16309:2 16360:1 16374:1 16409:1 16419:1 16442:1 16444:1 16446:1 16481:1 16498:1 16508:1181 16509:1 16512:1 16545:2 16559:1 16604:1 16647:3 16670:1 16678:1 16694:1 16703:1 16719:1 16722:1 16735:3 16767:1 16787:1 16834:2 16871:1 16894:1 16904:1 16914:1 16932:1 16942:1 16987:1 16993:1 17002:1 17008:1 17009:1 17017:1 17042:1 17054:2 17077:1 17087:2 17092:1 17095:1 17110:1 17123:2 17145:1 17153:1 17163:1 17165:1 17188:2 17195:1 17220:1 17223:1 17236:3 17293:1 17327:1 17358:1 17359:1 17373:1 17385:1 17402:1 17409:1 17437:1 17464:1 17480:1 17494:1 17495:1 17500:1 17514:1 17528:1 17530:1 17544:9 17565:1 17589:1 17595:2 17598:1 17615:1 17653:1 17665:1 17689:5 17706:1 17715:1 17721:1 17739:2 17763:1 17769:4 17781:2 17802:3 17815:1 17822:1 17824:2 17834:1 17837:1 17843:1 17845:1 17847:1 17858:1 17902:1 17931:12 17940:1 17960:1 17967:1 17977:1 17991:1 17993:1 18039:1 18047:1 18076:1 18102:1 18153:1 18158:2 18198:1 18206:1 18212:1 18317:2 18333:1 18383:3 18397:1 18430:1 18445:1 18447:1 18454:1 18460:1 18463:1 18486:1 18503:1 18509:1 18511:2 18519:2 18524:1 18527:8 18534:1 18535:1 18542:2 18544:1 18563:2 18571:1 18573:1 18601:1 18619:1 18649:1 18692:1 18706:1 18760:2 18762:1 18774:1 18780:1 18781:1 18797:2 18800:1 18812:2 18816:1 18823:1 18840:1 18917:1 18920:3 18942:1 18946:1 18967:1 18972:1 18979:1 19024:1 19032:2 19039:1 19042:1 19056:2 19062:1 19082:1 19105:1 19120:1 19127:1 19128:1 19132:5 19133:1 19141:1 19142:1 19174:1 19175:1 19212:1 19219:1 19239:2 19249:1 19275:2 19276:1 19285:1 19296:2 19314:1 19325:1 19332:1 19348:1 19421:1 19422:1 19433:1 19434:2 19455:2 19456:1 19459:1 19490:1 19500:1 19535:2 19558:2 19568:1 19575:1 19600:4 19624:1 19630:1 19632:1 19636:1 19648:1 19656:1 19677:1 19683:2 19685:1 19696:1 19709:1 19740:2 19748:1 19758:1 19759:1 19765:1 19787:1 19798:1 19817:1 19822:1 19831:1 19832:1 19842:1 19887:1 19888:1 19899:1 19909:1 19923:1 19937:1 19938:2 19942:1 19958:2 19960:1 19969:1 19970:1 19991:1 19998:1 19999:4 20011:1 20025:2 20039:1 20059:2 20062:1 20086:2 20124:1 20132:1 20160:1 20166:1 20172:1 20186:2 20199:3 20203:1 20210:1 20240:1 20272:1 20282:1 20297:4 20307:1 20309:1 20313:1 20320:1 20333:1 20334:2 20374:1 20390:1 20399:1 20400:1 20413:1 20421:1 20438:1 20455:1 20461:1 20485:1 20508:1 20541:1 20554:1 20565:1 20572:1 20577:1 20640:2 20652:1 20717:1 20742:2 20750:2 20754:1 20770:1 20802:1 20818:1 20827:1 20835:3 20837:1 20840:1 20841:1 20870:1 20888:2 20891:1 20893:1 20929:1 20963:1 20991:1 21000:2 21004:1 21006:1 21066:2 21077:2 21109:1 21116:1 21123:1 21132:1 21151:2 21154:1 21194:1 21232:1 21346:1 21392:1 21397:1 21416:1 21432:1 21441:1 21481:1 21494:1 21504:1 21537:1 21571:1 21582:2 21621:1 21642:2 21689:1 21752:1 21768:1 21769:1 21770:2 21772:1 21778:1 21779:1 21784:2 21795:2 21796:1 21801:2 21812:3 21846:1 21858:1 21859:1 21868:5 21869:3 21872:1 21877:3 21905:1 21925:1 21926:2 21958:1 21961:1 21962:1 22027:1 22032:1 22082:1 22143:1 22188:1 22220:1 22284:1 22295:6 22343:1 22344:1 22346:1 22377:1 22397:1 22426:1 22461:2 22491:4 22506:1 22558:1 22598:1 22654:2 22672:1 22691:1 22697:1 22702:1 22706:1 22707:1 22742:1 22745:1 22757:1 22759:1 22787:1 22794:1 22796:2 22797:1 22801:2 22819:1 22848:1 22862:1 22876:2 22907:1 22944:3 22955:1 22969:1 22976:2 22977:1 22993:2 23011:1 23013:1 23023:1 23035:1 23037:2 23038:1 23083:1 23106:2 23135:1 23179:1 23180:2 23203:1 23238:1 23270:1 23291:1 23316:1 23350:2 23376:1 23383:1 23388:1 23410:7 23411:1 23418:1 23458:2 23480:1 23484:1 23507:1 23511:1 23530:1 23533:1 23552:2 23566:1 23597:1 23633:1 23666:1 23691:1 23698:1 23699:1 23734:1 23735:1 23760:1 23787:1 23819:1 23837:1 23853:1 23888:1 23905:1 23924:1 23927:1 23937:1 23957:2 23963:1 23968:1 23987:1 24003:1 24016:1 24049:1 24053:1 24107:1 24108:1 24109:1 24119:3 24120:1 24141:1 24149:1 24150:1 24162:1 24164:1 24177:2 24179:2 24190:2 24217:1 24221:5 24230:1 24232:1 24233:1 24251:1 24271:1 24292:1 24295:2 24345:1 24361:1 24366:1 24404:1 24412:1 24414:1 24419:1 24427:1 24428:1 24439:1 24443:1 24444:1 24445:1 24455:1 24464:2 24469:1 24480:2 24485:1 24486:1 24488:1 24489:1 24495:1 24502:1 24503:1 24511:1 24515:1 24548:1 24552:1 24588:1 24615:1 24644:1 24658:1 24665:1 24684:1 24709:1 24729:1 24745:1 24769:1 24771:1 24775:1 24777:1 24818:1 24868:1 24905:2 24917:1 24949:1 24962:1 25022:4 25027:1 25031:1 25036:1 25037:2 25044:1 25054:1 25069:1 25075:1 25083:1 25093:1 25096:1 25110:5 25112:1 25116:1 25137:1 25141:1 25159:1 25251:3 25260:1 25276:1 25278:4 25282:1 25287:1 25296:1 25310:1 25312:1 25316:1 25324:1 25327:2 25334:1 25348:1 25351:1 25363:4 25364:1 25382:1 25433:1 25456:2 25457:1 25459:1 25460:2 25477:1 25495:1 25515:1 25519:1 25527:2 25540:3 25542:1 25583:1 25584:1 25602:1 25619:1 25624:1 25647:1 25679:1 25741:1 25746:1 25753:1 25770:2 25777:1 25779:1 25851:1 25854:1 25860:1 25880:1 25883:1 25901:2 25912:1 25915:1 25917:1 25956:1 25960:1 25971:1 25992:1 26011:1 26027:1 26050:1 26059:1 26076:1 26091:1 26122:1 26128:3 26150:1 26163:2 26205:1 26209:1 26215:1 26226:1 26227:1 26228:1 26231:3 26239:2 26241:2 26242:1 26244:1 26246:1 26250:2 26252:1 26279:1 26299:1 26318:1 26325:1 26330:1 26340:1
7 10:1 21:1 38:1 73:1 83:1 110:1 116:1 155:4 164:4 182:2 193:2 215:2 218:1 248:1 260:1 274:1 276:1 294:1 310:1 327:1 345:1 347:1 360:1 391:1 402:1 407:1 410:1 429:1 437:1 441:1 501:1 508:1 510:2 538:2 553:1 603:4 613:1 722:1 726:3 728:1 746:1 750:2 769:1 781:1 782:2 801:1 807:3 810:1 845:1 854:1 877:1 882:1 890:1 962:1 971:2 982:2 984:1 1021:1 1054:1 1076:1 1081:1 1083:1 1104:1 1168:3 1235:1 1241:1 1242:1 1272:1 1276:1 1279:1 1287:1 1345:1 1386:1 1394:2 1444:1 1449:1 1450:3 1451:1 1466:2 1495:1 1528:1 1539:2 1541:2 1579:1 1581:1 1593:1 1596:1 1605:2 1611:1 1628:2 1639:1 1653:2 1721:1 1731:2 1738:2 1758:1 1788:1 1790:1 1796:1 1815:4 1827:1 1848:4 1868:1 1879:2 1884:1 1888:1 1924:1 1927:1 1930:3 1941:1 1943:1 1952:1 1964:1 1967:6 1968:1 1973:2 1974:1 1978:1 1981:2 1982:1 1986:1 1990:3 1997:2 2000:1 2002:3 2004:1 2044:1 2053:1 2064:1 2070:1 2078:1 2086:1 2091:2 2099:1 2116:1 2145:1 2155:1 2172:1 2181:1 2210:1 2222:1 2223:1 2237:1 2241:1 2247:1 2273:1 2316:1 2355:1 2357:1 2364:1 2378:1 2394:2 2398:1 2406:1 2429:1 2431:1 2445:1 2446:1 2450:2 2453:3 2460:4 2466:1 2472:1 2500:1 2502:1 2506:1 2508:1 2534:1 2545:4 2579:1 2590:13 2617:1 2650:1 2667:1 2696:1 2711:1 2760:2 2858:1 2868:1 2869:1 2875:1 2893:3 2900:1 2915:1 2918:6 2948:1 2977:1 2982:2 3038:1 3046:1 3084:1 3091:1 3106:1 3124:1 3153:1 3155:1 3159:2 3167:1 3169:1 3181:1 3187:1 3189:1 3191:1 3205:1 3231:1 3235:1 3236:1 3238:1 3276:1 3332:1 3362:1 3365:1 3421:1 3422:1 3432:1 3435:1 3443:1 3450:1 3453:1 3461:1 3474:1 3481:1 3504:2 3511:2 3518:1 3529:2 3537:1 3575:1 3613:1 3617:4 3622:1 3661:2 3682:1 3698:1 3706:3 3711:2 3715:1 3732:1 3733:1 3752:1 3763:1 3782:1 3789:1 3791:1 3793:1 3805:2 3817:2 3843:1 3851:1 3899:1 3916:1 3942:1 3944:1 3997:4 4004:1 4021:1 4028:1 4035:1 4036:1 4082:1 4096:1 4097:2 4098:1 4113:1 4120:1 4123:2 4130:1 4136:1 4140:1 4148:1 4193:1 4204:1 4215:1 4247:1 4250:1 4284:2 4296:1 4305:11 4308:1 4323:1 4339:1 4376:1 4414:2 4429:2 4430:5 4433:1 4436:1 4437:2 4441:1 4443:1 4449:1 4456:2 4457:2 4484:4 4533:1 4564:1 4573:1 4597:1 4602:4 4625:2 4652:1 4674:1 4702:1 4703:1 4709:1 4726:1 4733:1 4742:1 4744:1 4765:1 4766:1 4812:1 4888:2 4897:1 4922:1 4925:2 4953:1 4970:2 5006:1 5010:1 5020:1 5052:1 5053:1 5065:1 5068:2 5071:1 5081:2 5126:1 5203:1 5225:1 5275:1 5306:1 5319:1 5322:2 5351:1 5379:1 5395:1 5441:5 5470:1 5478:1 5499:1 5516:1 5542:3 5566:4 5581:4 5585:1 5586:1 5600:2 5617:2 5618:1 5625:3 5627:2 5631:1 5636:1 5637:1 5638:2 5640:1 5645:2 5647:2 5673:1 5732:1 5756:1 5767:1 5769:1 5782:1 5797:1 5800:1 5810:1 5818:1 5847:3 5886:1 5890:1 5918:2 5990:2 6009:3 6010:2 6098:1 6102:1 6105:2 6111:1 6117:1 6138:1 6152:1 6170:1 6178:1 6186:1 6188:1 6230:1 6246:2 6282:1 6284:1 6320:1 6322:1 6326:1 6328:1 6330:1 6336:1 6345:1 6356:1 6459:1 6460:1 6490:1 6502:1 6514:1 6515:1 6519:1 6544:1 6552:1 6561:1 6571:1 6589:3 6603:1 6614:1 6621:1 6624:2 6632:1 6633:1 6638:1 6649:1 6653:1 6680:1 6702:2 6712:1 6723:2 6729:1 6740:3 6741:1 6761:1 6803:22 6822:1 6824:12 6957:1 6986:2 6990:1 6997:1 7004:1 7036:1 7072:1 7083:1 7093:1 7104:1 7151:1 7152:1 7180:2 7194:1 7201:1 7205:1 7219:10 7254:1 7274:2 7297:1 7303:1 7315:2 7358:1 7363:1 7379:2 7382:1 7391:1 7399:1 7416:1 7420:1 7438:1 7439:1 7462:1 7534:1 7536:1 7538:1 7539:1 7549:2 7565:1 7570:1 7589:1 7610:2 7611:5 7628:2 7644:1 7651:1 7670:1 7673:1 7683:1 7688:1 7697:1 7700:1 7714:1 7725:1 7741:1 7767:1 7790:2 7795:1 7807:1 7815:1 7835:3 7855:1 7910:1 7937:2 7960:1 7966:2 8028:4 8033:1 8090:2 8104:1 8158:2 8167:1 8169:1 8170:1 8178:1 8179:1 8201:1 8232:2 8275:1 8277:1 8322:2 8326:1 8342:1 8377:1 8378:1 8383:1 8411:1 8432:3 8440:1 8455:1 8476:1 8483:1 8498:2 8499:2 8510:2 8534:1 8550:1 8563:1 8601:2 8616:1 8628:1 8631:1 8657:1 8660:1 8664:1 8678:1 8687:1 8730:1 8740:1 8747:1 8748:1 8752:1 8755:1 8769:1 8785:1 8824:1 8828:1 8839:1 8872:1 8882:1 8909:3 8914:1 8917:2 8929:2 8944:1 8956:2 8959:1 8965:2 8970:1 8973:1 8989:1 8993:1 8996:1 9033:1 9044:2 9056:2 9058:1 9061:1 9070:1 9075:1 9085:1 9110:1 9113:1 9117:1 9167:1 9216:1 9220:1 9255:1 9264:1 9285:1 9288:1 9292:1 9293:1 9312:1 9318:1 9322:1 9344:1 9374:3 9376:1 9419:1 9464:1 9473:1 9490:1 9506:1 9529:1 9532:1 9534:1 9535:1 9606:1 9611:1 9660:1 9697:1 9708:1 9712:6 9718:1 9754:1 9791:1 9803:2 9831:1 9835:1 9837:1 9870:1 9894:1 9900:1 9912:1 9943:1 9946:1 9968:2 9992:1 9995:1 10040:1 10082:1 10087:1 10093:1 10098:2 10103:1 10109:1 10132:1 10133:3 10166:1 10182:1 10192:1 10195:1 10204:1 10249:1 10274:2 10318:1 10320:1 10341:2 10362:1 10368:2 10370:1 10379:2 10381:2 10382:1 10383:2 10384:1 10387:1 10388:1 10401:2 10407:1 10428:1 10429:1 10464:1 10481:1 10487:1 10502:1 10513:1 10518:3 10523:1 10530:1 10570:1 10572:1 10592:1 10605:1 10639:2 10665:1 10681:4 10684:1 10694:4 10704:1 10729:1 10745:1 10764:1 10774:1 10782:1 10788:2 10800:1 10801:1 10813:1 10865:1 10875:2 10942:1 10974:1 11087:2 11093:1 11105:2 11116:1 11203:1 11228:1 11239:1 11261:5 11283:1 11305:1 11307:2 11314:1 11316:1 11317:1 11332:1 11353:1 11362:1 11373:1 11376:1 11396:1 11398:1 11403:1 11426:1 11427:2 11431:2 11445:1 11460:1 11479:1 11491:1 11495:2 11496:1 11514:1 11539:1 11570:1 11588:1 11616:1 11632:3 11663:1 11694:1 11702:1 11761:1 11778:3 11779:2 11790:1 11797:1 11805:2 11848:1 11865:2 11935:1 11938:1 11975:1 11988:1 11992:2 12000:2 12018:2 12069:1 12096:2 12098:1 12099:1 12112:2 12114:1 12120:1 12122:2 12167:1 12193:1 12199:2 12217:2 12225:1 12238:2 12239:2 12277:1 12279:1 12281:1 12309:1 12354:1 12364:2 12381:1 12405:1 12410:1 12423:2 12456:1 12459:1 12504:1 12528:1 12542:1 12545:1 12550:2 12556:1 12563:1 12568:1 12584:1 12642:1 12657:1 12672:1 12673:1 12686:1 12695:1 12697:3 12707:1 12712:1 12734:1 12789:1 12794:1 12816:1 12817:1 12826:1 12831:1 12840:2 12844:1 12846:1 12853:1 12897:1 12920:1 12936:1 12947:1 12951:1 12958:1 12980:1 12987:1 12996:1 13008:1 13021:1 13027:1 13053:1 13093:1 13098:1 13102:1 13120:1 13132:1 13165:1 13182:1 13219:1 13232:1 13234:2 13257:1 13258:1 13261:1 13316:1 13379:1 13414:1 13421:1 13426:1 13428:1 13440:1 13452:1 13481:1 13488:1 13505:1 13507:1 13532:1 13545:1 13549:1 13551:1 13598:2 13615:1 13625:1 13626:4 13637:2 13647:1 13663:1 13673:1 13686:3 13700:1 13704:1 13726:3 13734:5 13740:2 13744:1 13764:1 13775:3 13810:1 13821:1 13840:1 13870:1 13875:1 13876:2 13886:1 13895:1 13897:2 13898:1 13899:2 13900:2 13909:1 13910:1 13916:1 13932:1 13952:2 14014:2 14047:1 14062:1 14069:1 14084:1 14108:1 14143:1 14146:1 14174:1 14179:1 14183:1 14219:1 14226:1 14284:2 14293:1 14313:1 14324:1 14327:1 14360:1 14367:1 14369:1 14373:1 14374:1 14386:1 14387:2 14389:1 14390:1 14394:3 14412:1 14471:1 14480:1 14481:1 14490:1 14515:1 14516:1 14571:1 14578:2 14580:1 14596:2 14608:2 14609:1 14617:1 14621:1 14649:2 14652:1 14654:1 14679:2 14694:1 14695:2 14696:1 14700:1 14704:2 14720:1 14786:1 14794:5 14823:11 14841:1 14859:1 14864:2 14893:2 14908:1 14913:1 14926:1 14967:1 14976:1 15029:1 15036:1 15043:1 15047:1 15054:1 15064:1 15069:1 15083:1 15109:1 15117:1 15153:1 15169:1 15178:3 15196:2 15212:1 15242:1 15267:1 15276:3 15285:1 15297:1 15302:1 15365:1 15380:2 15388:1 15401:2 15406:1 15415:1 15417:1 15419:1 15420:1 15421:1 15441:1 15448:1 15454:1 15458:1 15505:1 15546:1 15550:1 15583:1 15642:1 15683:2 15741:1 15746:1 15795:1 15799:1 15842:1 15860:1 15870:1 15901:1 15934:1 15949:1 15967:1 15989:1 16003:1 16017:1 16029:2 16037:1 16060:1 16084:1 16112:1 16113:1 16161:1 16162:1 16172:1 16216:6 16225:1 16265:1 16266:1 16301:7 16309:2 16319:1 16360:1 16374:1 16409:1 16419:1 16442:1 16444:1 16446:1 16457:1 16481:1 16498:1 16508:1267 16509:1 16512:1 16545:2 16559:1 16604:1 16609:1 16647:3 16670:1 16678:1 16694:1 16703:1 16719:1 16722:1 16735:3 16738:1 16767:1 16787:1 16793:1 16834:2 16871:1 16894:1 16904:1 16914:1 16932:1 16942:1 16987:1 16993:1 17002:1 17008:1 17009:1 17017:1 17042:1 17054:2 17077:1 17087:3 17092:1 17095:1 17110:1 17123:2 17145:1 17153:1 17163:1 17165:1 17188:2 17195:1 17220:1 17223:1 17236:3 17293:1 17327:1 17358:1 17359:1 17373:1 17385:1 17402:1 17409:1 17437:1 17464:1 17480:1 17494:1 17495:1 17500:1 17514:1 17528:1 17530:1 17544:10 17565:1 17589:1 17595:2 17598:1 17615:1 17653:1 17664:1 17665:1 17689:5 17706:1 17715:1 17721:1 17739:2 17763:1 17769:4 17781:2 17802:3 17815:1 17822:1 17824:2 17834:1 17837:1 17843:1 17845:1 17847:1 17858:1 17902:1 17931:13 17940:1 17960:1 17967:1 17977:1 17991:1 17993:1 18039:1 18047:1 18076:1 18102:1 18153:1 18158:2 18198:1 18206:1 18212:1 18317:2 18333:1 18383:3 18397:1 18430:1 18434:1 18445:1 18447:1 18454:1 18460:1 18463:1 18486:1 18503:1 18507:1 18509:1 18511:2 18519:2 18524:1 18527:9 18534:1 18535:1 18542:2 18544:1 18563:2 18571:1 18573:1 18601:1 18619:1 18648:1 18649:1 18692:1 18706:1 18760:2 18762:1 18774:1 18780:1 18781:1 18797:2 18800:1 18812:2 18816:1 18823:1 18840:1 18917:1 18920:3 18942:1 18946:1 18967:1 18972:1 18979:1 19024:1 19032:2 19039:1 19042:1 19056:2 19062:1 19082:1 19105:1 19110:1 19120:1 19127:1 19128:1 19132:5 19133:1 19141:1 19142:1 19174:1 19175:1 19212:1 19219:1 19239:2 19249:1 19275:2 19276:1 19285:1 19296:2 19314:1 19325:1 19332:1 19348:1 19421:1 19422:1 19433:1 19434:2 19436:1 19455:2 19456:1 19459:1 19490:1 19500:1 19535:2 19558:2 19568:1 19575:1 19600:4 19624:1 19630:1 19632:1 19636:1 19648:1 19656:1 19677:1 19683:2 19685:1 19696:1 19709:1 19740:2 19748:1 19758:1 19759:1 19765:1 19787:1 19798:1 19817:1 19822:1 19831:1 19832:1 19842:1 19887:1 19888:1 19899:1 19909:1 19923:1 19937:1 19938:2 19942:1 19958:2 19960:1 19969:1 19970:1 19991:1 19998:1 19999:4 20011:1 20025:2 20039:1 20059:2 20062:1 20086:2 20124:1 20132:1 20160:1 20166:1 20172:1 20186:2 20199:3 20203:1 20210:1 20240:1 20268:1 20272:1 20282:1 20297:4 20307:1 20309:1 20313:1 20320:1 20333:1 20334:2 20374:1 20390:1 20399:1 20400:1 20409:1 20413:1 20421:1 20438:1 20455:1 20461:1 20485:1 20508:1 20514:1 20541:1 20554:1 20565:1 20572:1 20577:1 20640:2 20652:1 20717:1 20742:2 20750:2 20754:1 20770:1 20802:1 20818:1 20827:1 20835:3 20837:1 20840:1 20841:1 20868:1 20870:1 20888:2 20891:1 20893:1 20929:1 20963:1 20991:1 21000:2 21004:1 21006:1 21066:2 21077:2 21109:1 21116:1 21123:1 21132:1 21151:2 21154:1 21194:1 21232:1 21346:1 21392:1 21397:1 21416:1 21432:1 21441:1 21481:1 21494:1 21504:1 21529:1 21537:1 21571:1 21582:2 21621:1 21642:2 21689:1 21752:1 21768:1 21769:1 21770:2 21772:1 21778:1 21779:1 21784:2 21795:2 21796:1 21801:2 21812:3 21846:1 21858:1 21859:1 21868:5 21869:3 21872:1 21877:3 21905:1 21925:1 21926:2 21958:1 21961:1 21962:1 22027:1 22032:1 22082:1 22099:1 22143:1 22188:1 22220:1 22284:1 22295:6 22343:1 22344:1 22346:1 22377:1 22397:1 22426:1 22461:3 22491:4 22506:1 22558:1 22598:1 22654:2 22672:1 22691:1 22697:1 22702:1 22706:1 22707:1 22742:1 22745:1 22757:1 22759:2 22787:1 22794:1 22795:1 22796:2 22797:1 22801:2 22819:1 22848:1 22862:1 22876:2 22907:1 22944:3 22955:1 22969:1 22976:2 22977:1 22993:2 23011:1 23013:1 23023:1 23035:1 23037:2 23038:1 23083:1 23106:2 23135:1 23179:1 23180:2 23203:1 23238:1 23244:1 23270:1 23291:1 23316:1 23350:2 23376:1 23383:1 23388:1 23410:8 23411:2 23418:1 23458:2 23480:1 23484:1 23507:1 23511:1 23530:1 23533:1 23552:3 23566:1 23597:1 23633:1 23666:1 23691:1 23698:1 23699:1 23734:1 23735:1 23760:1 23787:1 23819:1 23837:1 23853:1 23888:1 23905:1 23924:1 23927:1 23937:1 23957:2 23963:1 23968:1 23987:1 24003:1 24016:1 24049:1 24053:1 24107:1 24108:1 24109:1 24119:3 24120:1 24141:1 24148:1 24149:1 24150:1 24162:1 24164:1 24177:2 24179:2 24190:2 24217:1 24221:5 24230:1 24232:1 24233:1 24251:1 24271:1 24292:1 24295:2 24345:1 24361:1 24366:1 24404:1 24412:1 24414:1 24419:1 24427:1 24428:1 24439:1 24443:1 24444:1 24445:1 24455:1 24464:2 24469:1 24479:1 24480:2 24485:1 24486:1 24488:1 24489:1 24495:1 24502:1 24503:1 24511:1 24515:1 24548:1 24552:1 24588:1 24596:1 24615:1 24644:1 24658:1 24665:1 24684:1 24709:1 24729:1 24745:1 24769:1 24771:1 24775:1 24777:1 24818:1 24868:1 24905:2 24917:1 24949:1 24952:1 24962:1 25022:4 25027:1 25031:1 25036:1 25037:2 25044:1 25054:1 25069:1 25075:1 25083:1 25093:1 25096:1 25110:5 25112:1 25116:1 25137:1 25141:2 25159:1 25215:1 25251:3 25260:1 25276:1 25278:4 25282:1 25287:1 25296:1 25310:1 25312:1 25316:1 25324:1 25327:2 25334:1 25348:1 25351:1 25363:4 25364:1 25382:1 25433:1 25456:2 25457:1 25459:1 25460:2 25477:1 25495:1 25515:1 25519:1 25527:3 25540:3 25542:1 25583:1 25584:1 25602:1 25619:1 25624:1 25647:1 25679:1 25741:1 25746:1 25753:1 25770:2 25777:1 25779:1 25851:1 25854:1 25860:1 25880:1 25883:1 25901:2 25912:1 25915:1 25917:1 25956:1 25960:1 25971:1 25992:1 26011:1 26027:1 26050:1 26059:1 26076:1 26091:1 26122:1 26128:3 26150:1 26163:2 26205:1 26209:1 26215:1 26226:1 26227:1 26228:1 26231:3 26239:2 26241:2 26242:1 26244:1 26246:1 26250:2 26252:1 26270:1 26279:1 26299:1 26318:1 26325:1 26330:1 26340:1
7 10:1 21:1 38:1 73:1 83:1 110:1 116:1 155:4 164:4 182:2 193:2 215:2 218:1 234:1 248:1 260:1 274:1 276:1 294:2 310:1 327:1 345:1 347:1 360:1 391:1 402:1 407:1 410:1 429:1 437:1 441:1 501:1 508:1 510:3 538:2 553:1 603:4 605:1 613:1 626:1 722:1 726:3 728:1 746:1 750:2 769:1 781:1 782:2 801:1 807:3 810:1 845:1 854:1 877:1 882:1 890:1 962:1 971:2 982:3 984:1 1021:1 1052:1 1054:1 1076:1 1081:1 1083:1 1104:1 1168:3 1235:1 1241:1 1242:1 1245:1 1272:1 1276:1 1279:1 1287:1 1345:1 1386:1 1394:2 1424:1 1439:1 1444:1 1449:1 1450:3 1451:1 1466:2 1495:1 1528:1 1539:2 1541:2 1579:1 1581:2 1593:1 1596:1 1605:2 1611:1 1628:2 1639:1 1653:2 1672:1 1704:1 1719:1 1721:1 1731:2 1738:2 1758:1 1788:1 1789:1 1790:1 1796:1 1815:4 1827:1 1848:4 1868:1 1879:2 1884:1 1888:1 1924:1 1927:1 1930:4 1941:1 1943:1 1952:1 1964:1 1967:6 1968:1 1970:1 1973:2 1974:1 1978:3 1981:2 1982:1 1986:1 1990:3 1997:2 2000:1 2002:3 2004:1 2044:1 2053:1 2064:1 2070:1 2078:1 2086:1 2091:2 2099:1 2116:1 2145:1 2155:1 2172:1 2181:1 2210:1 2222:1 2223:1 2237:1 2241:1 2247:1 2273:1 2316:1 2355:1 2357:1 2364:1 2378:1 2394:2 2398:1 2406:1 2429:1 2431:1 2445:1 2446:1 2450:2 2453:3 2460:4 2466:1 2472:1 2500:1 2502:1 2506:1 2508:1 2534:1 2545:4 2579:2 2587:1 2590:13 2617:1 2650:1 2667:1 2696:1 2711:1 2752:1 2760:2 2858:1 2868:1 2869:1 2875:1 2893:3 2900:1 2915:1 2918:6 2948:2 2977:1 2982:2 3037:1 3038:1 3046:1 3084:1 3091:2 3106:1 3124:1 3153:1 3155:1 3159:2 3167:1 3169:1 3181:1 3187:1 3189:1 3191:1 3205:1 3231:1 3235:2 3236:1 3238:1 3276:1 3332:1 3362:1 3365:1 3395:1 3421:1 3422:1 3432:1 3435:1 3443:1 3450:1 3453:1 3461:1 3474:1 3481:1 3504:2 3511:2 3518:1 3529:2 3537:1 3575:1 3613:1 3617:4 3622:1 3661:2 3682:1 3698:1 3706:3 3711:2 3715:1 3732:1 3733:1 3752:1 3763:1 3782:1 3789:1 3791:1 3793:1 3805:2 3817:2 3843:1 3851:1 3897:1 3899:1 3916:1 3922:1 3942:1 3944:1 3997:4 4004:1 4021:1 4028:1 4035:1 4036:1 4082:1 4096:1 4097:2 4098:1 4113:1 4120:1 4123:2 4130:1 4136:1 4140:1 4148:1 4193:1 4204:1 4215:1 4247:1 4250:1 4284:2 4296:1 4305:11 4308:1 4323:1 4339:1 4376:1 4414:2 4429:2 4430:5 4433:1 4436:1 4437:2 4441:1 4443:1 4449:1 4456:2 4457:2 4484:4 4533:1 4564:1 4573:1 4597:1 4602:4 4625:2 4652:1 4674:1 4702:1 4703:1 4709:1 4726:1 4733:1 4742:1 4744:1 4756:1 4765:1 4766:1 4812:1 4888:2 4897:1 4922:1 4925:2 4953:1 4970:2 5006:1 5010:1 5020:1 5052:1 5053:1 5065:1 5068:2 5071:1 5081:2 5126:1 5203:1 5225:1 5275:1 5306:1 5319:1 5322:2 5351:1 5379:1 5395:1 5412:1 5441:5 5470:1 5478:1 5499:1 5516:1 5542:4 5566:4 5581:4 5585:1 5586:1 5600:2 5617:3 5618:1 5625:3 5627:2 5631:1 5636:1 5637:1 5638:2 5640:1 5645:2 5647:2 5673:1 5732:1 5756:1 5767:1 5769:1 5782:1 5797:1 5800:1 5810:1 5818:1 5847:3 5886:1 5890:1 5918:2 5990:2 6009:3 6010:2 6098:1 6102:1 6105:2 6108:1 6111:1 6117:2 6138:1 6152:1 6170:1 6178:1 6186:1 6188:1 6230:1 6246:2 6282:2 6284:1 6320:2 6322:1 6326:1 6328:1 6330:1 6336:1 6338:1 6345:1 6356:1 6459:1 6460:1 6490:1 6502:1 6514:2 6515:1 6519:1 6544:1 6552:1 6561:1 6571:1 6589:3 6603:1 6614:1 6621:1 6624:2 6632:1 6633:1 6638:1 6649:1 6653:1 6680:1 6702:2 6712:1 6723:2 6729:1 6740:3 6741:1 6761:1 6803:25 6822:1 6824:13 6957:1 6986:2 6990:1 6997:1 7004:1 7036:1 7072:1 7083:1 7093:1 7104:1 7126:1 7151:1 7152:1 7180:2 7194:1 7201:1 7205:1 7219:11 7246:1 7254:1 7274:2 7297:1 7303:1 7315:3 7358:1 7363:2 7379:2 7382:1 7391:1 7399:1 7416:1 7420:1 7436:1 7438:1 7439:1 7462:1 7534:1 7536:1 7538:2 7539:2 7549:2 7565:1 7570:1 7589:1 7610:2 7611:5 7628:2 7644:1 7651:1 7670:1 7673:1 7683:1 7688:1 7697:1 7700:2 7714:1 7725:1 7741:1 7767:1 7790:2 7795:1 7807:1 7815:2 7835:3 7837:2 7855:1 7910:1 7937:2 7960:1 7966:2 8028:4 8033:1 8090:2 8104:1 8158:2 8167:1 8169:1 8170:1 8178:1 8179:1 8201:1 8232:2 8275:1 8277:1 8322:2 8326:1 8342:1 8377:2 8378:1 8383:1 8411:2 8432:3 8440:1 8455:1 8476:1 8483:2 8498:2 8499:2 8510:2 8534:1 8550:1 8563:1 8601:2 8616:1 8628:1 8631:1 8657:1 8660:1 8664:1 8678:1 8687:1 8730:1 8740:1 8747:1 8748:1 8752:1 8755:1 8769:1 8785:1 8824:1 8828:1 8839:1 8872:1 8882:1 8909:3 8914:1 8917:2 8929:2 8944:1 8946:1 8956:2 8959:1 8965:2 8970:1 8973:1 8989:1 8993:1 8996:1 9033:1 9044:2 9056:2 9058:1 9061:1 9070:1 9075:1 9085:1 9110:1 9113:1 9117:1 9167:1 9216:1 9220:1 9255:1 9264:1 9285:1 9288:1 9292:1 9293:1 9312:1 9318:1 9322:1 9344:1 9374:3 9376:1 9419:1 9464:1 9473:3 9490:1 9506:1 9529:1 9532:1 9534:1 9535:1 9606:1 9611:1 9627:1 9660:1 9697:1 9708:1 9712:6 9718:1 9736:1 9754:1 9791:1 9803:2 9831:1 9835:1 9837:1 9870:1 9894:1 9900:1 9912:1 9943:1 9946:1 9968:2 9992:1 9995:1 10040:1 10082:1 10087:1 10093:1 10098:2 10103:1 10109:1 10132:1 10133:3 10166:1 10182:1 10192:1 10195:1 10204:1 10249:2 10274:2 10318:1 10320:1 10338:1 10341:2 10362:1 10368:2 10370:1 10379:2 10381:2 10382:1 10383:2 10384:1 10387:1 10388:1 10401:2 10407:1 10411:1 10428:1 10429:1 10460:1 10464:2 10481:1 10487:1 10502:1 10513:1 10518:3 10523:1 10530:1 10570:1 10572:1 10592:1 10605:1 10639:2 10665:1 10681:4 10684:1 10694:4 10704:1 10729:1 10745:1 10764:1 10774:1 10782:1 10788:2 10800:1 10801:1 10813:1 10865:1 10875:2 10942:1 10974:1 11087:2 11093:1 11105:2 11116:1 11203:1 11228:1 11239:1 11261:5 11283:1 11305:1 11307:2 11314:1 11316:1 11317:1 11332:1 11353:1 11362:1 11373:1 11376:1 11396:1 11398:1 11403:1 11426:1 11427:2 11431:2 11432:1 11445:1 11460:1 11479:1 11491:1 11495:2 11496:1 11514:1 11539:1 11569:1 11570:1 11588:1 11616:2 11632:3 11663:1 11694:1 11702:1 11761:1 11778:3 11779:2 11790:1 11797:1 11805:2 11832:1 11848:1 11865:2 11918:1 11935:1 11938:1 11975:2 11988:1 11992:2 12000:2 12018:2 12069:1 12073:1 12096:3 12098:1 12099:1 12112:2 12114:1 12120:1 12122:2 12167:1 12193:1 12199:2 12217:2 12225:1 12238:2 12239:2 12277:1 12279:1 12281:1 12285:1 12309:1 12351:1 12354:1 12364:2 12381:1 12405:1 12410:1 12423:2 12456:1 12459:1 12504:1 12528:1 12542:1 12545:1 12550:2 12556:1 12563:1 12568:1 12584:1 12642:1 12657:1 12672:1 12673:1 12686:1 12695:1 12697:3 12707:1 12712:1 12734:1 12789:1 12794:1 12816:1 12817:1 12826:1 12831:1 12840:2 12844:1 12846:1 12853:1 12897:1 12920:1 12936:1 12947:1 12951:1 12958:1 12980:1 12987:1 12996:1 13008:1 13021:1 13027:1 13053:1 13093:1 13098:1 13102:1 13120:1 13132:1 13165:1 13182:1 13200:1 13219:1 13232:1 13234:2 13257:1 13258:1 13261:1 13316:1 13379:1 13414:1 13421:1 13426:1 13428:1 13440:1 13452:1 13481:1 13488:1 13505:1 13507:1 13532:1 13545:1 13549:1 13551:1 13598:2 13615:1 13625:1 13626:4 13637:2 13647:1 13663:1 13673:1 13686:3 13700:1 13704:1 13726:3 13734:5 13740:2 13744:1 13764:1 13775:3 13810:1 13821:1 13833:1 13840:1 13870:1 13875:1 13876:2 13886:1 13895:1 13897:2 13898:1 13899:2 13900:2 13909:1 13910:1 13916:1 13932:1 13952:2 14014:2 14047:1 14062:1 14069:1 14084:1 14108:1 14143:1 14146:1 14174:1 14179:1 14183:1 14216:1 14219:1 14226:1 14284:2 14293:1 14313:1 14324:1 14327:1 14360:1 14367:1 14369:1 14373:1 14374:1 14386:1 14387:2 14389:1 14390:1 14394:4 14412:1 14471:1 14480:1 14481:1 14490:1 14515:1 14516:1 14571:1 14578:2 14580:1 14596:2 14608:2 14609:1 14617:1 14621:1 14649:2 14652:1 14654:1 14679:2 14694:1 14695:2 14696:1 14700:1 14704:2 14720:1 14782:1 14783:1 14786:1 14794:5 14823:11 14841:1 14859:1 14864:2 14893:2 14908:1 14913:1 14926:1 14967:1 14976:1 15029:1 15036:1 15043:1 15047:1 15054:1 15064:1 15069:2 15083:1 15109:1 15117:1 15153:1 15169:1 15178:3 15196:2 15212:1 15242:1 15267:1 15276:3 15285:1 15297:1 15302:1 15365:1 15380:2 15388:1 15401:2 15406:1 15415:1 15417:1 15419:1 15420:1 15421:1 15441:1 15448:1 15454:1 15458:1 15505:1 15546:1 15550:1 15583:1 15642:1 15683:2 15741:1 15746:1 15795:1 15799:1 15842:1 15860:1 15870:1 15901:1 15914:1 15934:1 15949:1 15967:1 15989:1 16003:1 16017:1 16029:2 16037:1 16060:1 16084:1 16112:1 16113:1 16161:1 16162:1 16172:1 16216:6 16225:1 16265:1 16266:1 16301:7 16309:2 16319:1 16360:1 16374:1 16390:1 16409:1 16419:1 16442:1 16444:1 16446:1 16457:1 16472:1 16481:1 16498:1 16508:1326 16509:1 16512:1 16545:2 16559:1 16567:1 16600:1 16604:1 16609:1 16647:3 16670:1 16678:1 16694:1 16703:1 16719:1 16722:1 16735:3 16738:1 16767:1 16787:2 16793:1 16834:2 16871:1 16894:1 16904:1 16914:1 16932:1 16942:1 16987:1 16993:1 17002:2 17008:1 17009:1 17017:1 17042:1 17054:2 17077:1 17087:3 17092:1 17095:1 17110:1 17123:2 17145:1 17151:1 17153:1 17163:1 17165:1 17188:3 17195:2 17220:1 17223:1 17236:3 17293:1 17327:1 17358:1 17359:1 17373:1 17385:1 17402:1 17409:1 17437:1 17464:1 17480:1 17494:1 17495:1 17500:1 17514:1 17528:1 17530:1 17544:10 17565:1 17589:1 17595:2 17598:1 17615:1 17653:1 17664:1 17665:1 17689:5 17706:1 17715:1 17721:1 17739:2 17763:1 17769:4 17781:2 17802:3 17815:1 17822:1 17824:2 17834:1 17837:1 17843:1 17845:1 17847:1 17858:1 17873:2 17875:1 17902:1 17931:13 17940:1 17956:1 17960:1 17967:1 17977:1 17991:1 17993:1 18039:1 18047:1 18076:1 18102:1 18153:1 18158:2 18160:1 18193:1 18198:1 18206:1 18212:1 18317:2 18333:1 18383:3 18397:1 18430:1 18434:1 18445:1 18447:1 18454:1 18460:1 18463:1 18486:1 18503:1 18507:1 18509:1 18511:2 18519:2 18524:1 18527:10 18534:1 18535:1 18542:2 18544:1 18563:2 18571:1 18573:1 18601:1 18619:1 18648:1 18649:1 18692:1 18706:2 18760:2 18762:1 18774:1 18777:1 18780:1 18781:1 18797:2 18800:1 18812:2 18816:1 18823:1 18840:1 18848:1 18875:1 18917:2 18920:3 18942:1 18946:1 18967:1 18972:1 18979:1 19024:1 19032:2 19039:1 19042:1 19056:3 19062:1 19082:1 19105:2 19108:1 19110:1 19120:1 19127:1 19128:1 19132:5 19133:1 19139:1 19141:1 19142:1 19174:1 19175:1 19212:1 19219:1 19239:2 19249:1 19275:2 19276:1 19285:1 19296:2 19314:1 19325:1 19332:1 19348:1 19421:1 19422:1 19433:1 19434:2 19436:1 19455:2 19456:1 19459:1 19490:1 19500:1 19535:2 19558:2 19568:1 19575:1 19600:4 19624:1 19630:1 19632:1 19636:1 19648:1 19656:1 19677:1 19683:2 19685:1 19696:1 19709:1 19740:2 19748:1 19758:1 19759:1 19765:2 19787:1 19798:1 19817:1 19822:1 19831:1 19832:1 19842:1 19887:1 19888:1 19899:1 19909:1 19923:1 19937:1 19938:2 19942:1 19958:2 19960:1 19969:1 19970:1 19991:2 19998:1 19999:4 20011:1 20025:2 20039:1 20059:2 20062:1 20086:2 20124:1 20132:1 20160:1 20166:1 20172:1 20186:2 20199:3 20203:1 20210:1 20240:1 20268:1 20272:1 20282:1 20297:4 20307:1 20309:1 20313:1 20320:1 20333:1 20334:2 20374:1 20390:1 20399:1 20400:1 20409:1 20413:1 20421:1 20438:1 20455:1 20461:1 20485:1 20508:1 20514:1 20541:1 20554:1 20565:1 20572:1 20577:1 20640:2 20652:1 20695:1 20717:1 20742:3 20750:2 20754:1 20770:1 20802:1 20818:1 20827:1 20835:3 20837:1 20840:1 20841:1 20868:1 20870:1 20888:2 20891:1 20893:1 20929:1 20941:1 20963:1 20991:1 21000:2 21004:1 21006:1 21066:2 21070:1 21077:2 21109:1 21116:1 21123:1 21132:1 21151:2 21154:1 21194:1 21232:1 21346:1 21392:1 21397:1 21416:1 21432:1 21441:1 21481:1 21494:1 21504:1 21529:1 21537:1 21571:1 21582:2 21621:1 21642:2 21689:2 21752:2 21768:1 21769:1 21770:2 21772:1 21778:1 21779:1 21784:2 21795:2 21796:1 21801:2 21812:3 21846:1 21858:1 21859:1 21868:5 21869:3 21872:1 21877:3 21905:1 21925:2 21926:2 21958:1 21961:1 21962:1 22027:1 22032:1 22065:1 22082:1 22099:1 22143:1 22188:1 22220:1 22284:1 22295:6 22343:1 22344:1 22346:1 22377:1 22397:1 22426:1 22461:3 22491:4 22506:1 22558:1 22598:1 22654:2 22672:1 22676:1 22691:1 22697:1 22702:2 22706:1 22707:1 22742:2 22745:1 22757:1 22759:2 22787:1 22794:1 22795:1 22796:2 22797:1 22801:2 22819:1 22848:1 22862:1 22876:2 22907:1 22919:1 22944:3 22955:1 22969:1 22976:3 22977:2 22993:2 23011:1 23013:1 23023:1 23026:1 23035:1 23037:2 23038:1 23083:1 23106:2 23135:1 23164:1 23179:1 23180:2 23203:1 23238:1 23244:1 23270:1 23291:1 23316:1 23350:2 23376:1 23383:1 23388:1 23410:8 23411:2 23418:1 23458:2 23480:1 23484:1 23507:1 23511:1 23530:1 23533:1 23552:3 23566:1 23597:1 23633:1 23666:2 23691:1 23698:1 23699:1 23703:1 23734:1 23735:1 23760:1 23787:1 23819:1 23837:1 23853:1 23888:1 23905:1 23924:1 23927:1 23937:1 23957:2 23963:1 23968:1 23987:1 24003:1 24016:1 24037:1 24049:1 24053:1 24107:1 24108:1 24109:1 24119:3 24120:2 24141:1 24148:1 24149:1 24150:1 24162:1 24164:1 24177:2 24179:2 24190:2 24217:1 24221:5 24230:1 24232:1 24233:1 24251:1 24271:1 24292:1 24295:2 24345:1 24361:1 24366:1 24404:1 24412:1 24414:1 24419:1 24427:1 24428:1 24439:1 24443:1 24444:1 24445:1 24455:1 24464:2 24469:1 24479:1 24480:2 24485:1 24486:1 24488:1 24489:1 24495:1 24502:1 24503:1 24511:1 24515:1 24548:1 24552:1 24588:1 24596:1 24615:1 24644:1 24658:1 24665:1 24684:1 24709:1 24729:1 24745:1 24769:1 24771:1 24775:1 24777:1 24818:1 24868:1 24905:2 24917:1 24949:1 24952:1 24962:1 25022:4 25027:1 25031:1 25036:1 25037:2 25044:1 25054:1 25069:1 25075:1 25083:1 25093:1 25096:1 25110:7 25112:1 25116:1 25137:1 25141:2 25159:1 25215:1 25251:3 25260:1 25276:1 25278:4 25282:1 25287:1 25296:1 25310:1 25312:1 25316:1 25324:1 25327:2 25334:1 25348:1 25351:1 25363:4 25364:1 25382:1 25400:1 25433:1 25456:2 25457:1 25459:1 25460:2 25477:1 25495:1 25515:2 25519:1 25525:1 25527:3 25540:3 25542:1 25555:1 25583:1 25584:1 25602:1 25619:1 25624:1 25647:1 25679:1 25741:1 25746:1 25753:1 25755:1 25770:2 25777:1 25779:1 25851:1 25854:1 25860:1 25880:1 25883:1 25901:2 25912:1 25915:1 25917:1 25956:1 25960:1 25971:1 25992:1 26011:1 26027:1 26050:1 26059:1 26070:1 26076:1 26091:1 26122:1 26128:3 26150:1 26163:2 26205:1 26209:1 26215:1 26224:1 26226:1 26227:1 26228:1 26231:3 26239:2 26241:2 26242:1 26244:1 26246:1 26250:2 26252:1 26270:1 26279:2 26299:1 26318:1 26325:1 26330:1 26340:1
7 10:1 21:1 38:1 73:1 83:1 110:1 116:1 155:4 164:4 182:2 193:2 200:1 215:2 218:1 234:1 248:1 260:1 274:1 276:1 294:2 310:1 327:1 345:1 347:1 360:1 391:1 402:1 407:1 410:1 429:1 437:1 441:1 501:1 508:1 510:3 538:2 553:1 603:5 605:1 613:1 626:1 722:1 726:3 728:1 746:1 750:2 769:1 781:1 782:2 801:1 807:3 810:1 845:1 854:1 877:1 882:1 890:1 962:1 971:2 982:3 984:1 1021:1 1052:1 1054:1 1076:1 1081:1 1083:1 1104:1 1168:3 1235:1 1241:1 1242:1 1245:1 1272:1 1276:1 1279:1 1287:1 1345:2 1386:1 1394:2 1424:1 1439:1 1444:1 1449:1 1450:3 1451:1 1466:2 1495:1 1528:1 1539:2 1541:2 1579:1 1581:2 1593:1 1596:1 1605:2 1611:1 1628:2 1639:1 1653:2 1672:1 1704:1 1719:1 1721:1 1731:2 1738:2 1758:1 1788:1 1789:1 1790:1 1796:1 1815:4 1827:1 1848:4 1868:1 1879:2 1884:1 1888:1 1924:1 1927:1 1930:4 1941:1 1943:1 1952:1 1964:1 1967:6 1968:1 1970:1 1973:2 1974:1 1978:3 1981:2 1982:1 1986:1 1990:3 1997:2 2000:1 2002:3 2004:1 2044:1 2053:1 2064:1 2070:1 2078:1 2086:1 2091:2 2099:1 2116:1 2145:1 2155:1 2172:1 2181:1 2210:1 2222:1 2223:1 2237:1 2241:1 2247:1 2273:1 2316:1 2355:1 2357:1 2364:1 2378:1 2394:2 2398:1 2406:1 2429:1 2431:1 2445:1 2446:1 2450:2 2453:3 2460:4 2466:1 2472:1 2500:1 2502:1 2506:1 2508:1 2534:1 2545:4 2579:2 2587:1 2590:16 2617:1 2650:1 2667:1 2696:1 2711:1 2752:1 2760:2 2858:1 2868:1 2869:1 2875:1 2893:3 2900:1 2915:1 2918:6 2948:2 2977:1 2982:2 3037:1 3038:1 3046:1 3084:1 3091:2 3106:1 3124:1 3153:1 3155:1 3159:2 3167:1 3169:1 3181:1 3187:1 3189:1 3191:1 3205:1 3231:1 3235:2 3236:1 3238:1 3276:1 3332:1 3362:1 3365:1 3395:1 3421:1 3422:1 3432:1 3435:1 3443:1 3450:1 3453:1 3461:1 3474:1 3481:1 3504:2 3511:2 3518:1 3529:2 3537:1 3575:1 3613:1 3617:4 3622:1 3661:2 3682:1 3698:1 3706:3 3711:2 3715:1 3732:1 3733:1 3752:1 3763:1 3782:1 3789:1 3791:1 3793:1 3805:2 3817:2 3843:1 3851:1 3897:1 3899:1 3916:1 3922:1 3942:1 3944:1 3997:4 4004:1 4021:1 4028:1 4035:1 4036:1 4082:1 4096:1 4097:2 4098:1 4113:1 4120:1 4123:2 4130:1 4136:1 4140:1 4148:1 4193:1 4204:1 4215:1 4247:1 4250:1 4284:2 4296:1 4305:12 4308:1 4323:1 4339:1 4376:1 4414:2 4429:2 4430:5 4433:1 4436:1 4437:2 4441:1 4443:1 4449:1 4456:2 4457:2 4484:4 4533:1 4564:1 4573:1 4597:1 4602:4 4625:2 4652:1 4674:1 4702:1 4703:1 4709:1 4719:1 4726:1 4733:1 4742:1 4744:1 4756:1 4765:1 4766:1 4812:1 4888:2 4897:1 4919:1 4922:1 4925:2 4953:1 4970:2 5006:1 5010:1 5020:1 5052:1 5053:1 5065:1 5068:2 5071:1 5081:2 5126:1 5203:1 5225:1 5275:1 5306:1 5319:1 5322:2 5351:1 5379:1 5395:1 5412:1 5441:5 5470:1 5478:1 5499:1 5516:1 5542:4 5566:4 5581:4 5585:1 5586:1 5600:2 5617:3 5618:1 5625:3 5627:2 5631:1 5636:1 5637:1 5638:2 5640:1 5645:2 5647:2 5673:1 5732:1 5756:1 5767:1 5769:1 5782:1 5797:1 5800:1 5810:1 5818:1 5847:3 5886:1 5890:1 5918:2 5990:2 6009:3 6010:2 6043:1 6098:1 6102:1 6105:2 6108:1 6111:1 6117:2 6138:1 6152:1 6170:1 6178:1 6186:1 6188:1 6230:1 6246:2 6282:2 6284:1 6320:2 6322:1 6326:1 6328:1 6330:1 6336:1 6338:1 6345:1 6356:1 6385:1 6459:1 6460:1 6490:1 6502:1 6514:2 6515:1 6519:1 6544:1 6552:1 6561:1 6571:1 6589:3 6603:1 6614:1 6621:1 6624:2 6632:1 6633:1 6638:1 6649:1 6653:1 6680:1 6702:2 6712:1 6723:2 6729:1 6740:3 6741:1 6761:1 6803:25 6822:1 6824:15 6957:1 6974:1 6986:2 6990:1 6997:1 7004:1 7036:1 7072:1 7083:1 7093:1 7104:1 7126:1 7151:1 7152:1 7180:2 7194:1 7201:1 7205:1 7219:11 7246:1 7254:1 7274:2 7297:1 7303:1 7315:3 7358:1 7363:2 7379:2 7382:1 7391:1 7399:1 7416:1 7420:1 7436:1 7438:1 7439:1 7462:1 7534:1 7536:1 7538:2 7539:2 7549:2 7565:1 7570:1 7589:1 7610:2 7611:5 7628:2 7644:1 7651:1 7670:1 7673:1 7683:1 7688:1 7697:1 7700:2 7714:1 7725:1 7741:1 7767:1 7790:2 7795:1 7807:1 7815:2 7835:3 7837:2 7855:1 7910:1 7937:2 7960:1 7966:2 8028:5 8033:1 8090:2 8104:1 8158:2 8167:1 8169:1 8170:1 8178:1 8179:1 8201:1 8232:2 8275:1 8277:1 8309:1 8322:2 8326:1 8342:1 8377:2 8378:1 8383:1 8411:2 8432:3 8440:1 8455:1 8476:1 8483:2 8498:2 8499:2 8510:2 8534:1 8550:1 8563:1 8601:2 8616:1 8628:1 8631:1 8657:1 8660:1 8664:1 8678:1 8687:1 8730:1 8740:1 8747:1 8748:1 8752:1 8755:1 8769:1 8785:1 8824:1 8828:1 8839:1 8872:1 8882:1 8909:3 8914:1 8917:2 8929:2 8944:1 8946:1 8956:2 8959:1 8965:2 8970:1 8973:1 8989:1 8993:1 8996:1 9033:1 9044:2 9056:2 9058:1 9061:1 9070:1 9075:1 9085:1 9110:1 9113:1 9117:1 9167:1 9216:1 9220:1 9255:1 9264:1 9285:1 9288:1 9292:1 9293:1 9312:1 9318:1 9322:1 9344:1 9374:3 9376:1 9419:1 9464:1 9473:3 9490:1 9506:1 9529:1 9532:1 9534:1 9535:1 9606:1 9611:1 9627:1 9660:1 9697:1 9708:1 9712:6 9718:1 9736:1 9754:1 9791:1 9803:2 9831:1 9835:1 9837:1 9870:1 9894:1 9900:1 9912:1 9943:1 9946:1 9968:2 9992:1 9995:1 10040:1 10082:1 10087:1 10093:1 10098:2 10103:1 10109:1 10132:1 10133:3 10166:1 10182:1 10192:1 10195:1 10204:1 10249:2 10274:2 10318:1 10320:1 10338:1 10341:2 10362:1 10368:2 10370:1 10377:1 10379:2 10381:2 10382:1 10383:2 10384:1 10387:1 10388:1 10401:2 10407:1 10411:1 10428:1 10429:1 10460:1 10464:2 10481:1 10487:1 10502:1 10513:1 10514:1 10518:4 10523:1 10530:1 10570:1 10572:1 10592:1 10605:1 10639:2 10665:1 10681:4 10684:1 10694:4 10704:1 10729:1 10745:1 10764:1 10774:1 10782:1 10788:2 10800:1 10801:1 10813:1 10865:1 10875:2 10942:1 10974:1 11087:2 11093:1 11105:2 11115:1 11116:1 11170:1 11203:1 11228:1 11239:1 11261:5 11283:1 11305:1 11307:2 11314:1 11316:1 11317:1 11332:1 11353:1 11362:1 11373:1 11376:1 11396:1 11398:1 11403:1 11426:1 11427:2 11431:2 11432:1 11445:1 11460:1 11479:1 11491:1 11495:2 11496:1 11514:1 11539:1 11569:1 11570:1 11588:1 11616:2 11632:3 11663:1 11694:1 11702:1 11733:1 11761:1 11778:3 11779:2 11790:1 11797:1 11805:2 11832:1 11848:1 11865:2 11918:1 11935:1 11938:1 11975:2 11988:1 11992:2 12000:2 12018:2 12069:1 12073:1 12096:3 12098:1 12099:1 12112:2 12114:1 12120:1 12122:2 12167:1 12193:1 12199:2 12217:2 12225:1 12238:2 12239:2 12277:1 12279:1 12281:1 12285:1 12309:1 12351:1 12354:1 12364:2 12381:1 12405:1 12410:1 12423:2 12456:1 12459:1 12504:1 12528:1 12542:1 12545:1 12550:2 12556:1 12563:1 12568:1 12584:1 12642:1 12657:1 12672:1 12673:1 12686:1 12695:1 12697:3 12707:1 12712:1 12734:1 12789:1 12794:1 12816:1 12817:1 12826:1 12831:1 12840:2 12844:1 12846:1 12853:1 12897:1 12920:1 12933:1 12936:1 12947:1 12951:1 12958:1 12980:1 12987:1 12996:1 13008:1 13021:1 13027:1 13053:1 13093:1 13098:1 13102:1 13120:1 13132:1 13147:1 13165:1 13182:1 13200:1 13219:1 13232:1 13234:2 13257:1 13258:1 13261:1 13316:1 13379:1 13414:1 13421:1 13426:1 13428:1 13440:1 13452:1 13481:1 13488:1 13505:1 13507:1 13532:1 13545:1 13549:1 13551:1 13577:1 13598:2 13615:1 13625:1 13626:4 13637:2 13647:1 13663:1 13673:1 13686:3 13700:1 13704:1 13726:3 13734:6 13740:2 13744:1 13764:1 13775:3 13810:1 13821:1 13833:1 13840:1 13870:1 13875:1 13876:2 13886:1 13895:1 13897:2 13898:1 13899:2 13900:2 13909:1 13910:1 13916:1 13932:1 13952:2 14014:2 14047:1 14062:1 14069:1 14084:1 14108:1 14143:1 14146:1 14168:1 14174:1 14179:1 14183:1 14216:1 14219:1 14226:1 14275:1 14284:2 14293:1 14313:1 14324:1 14327:1 14360:1 14367:1 14369:1 14373:1 14374:1 14386:1 14387:2 14389:1 14390:1 14394:4 14412:1 14471:1 14480:1 14481:1 14490:1 14515:1 14516:1 14571:1 14578:2 14580:1 14596:2 14608:2 14609:1 14617:1 14621:1 14649:2 14652:1 14654:1 14679:2 14694:1 14695:2 14696:1 14700:1 14704:2 14720:1 14782:1 14783:1 14786:1 14794:5 14823:14 14841:1 14859:1 14864:2 14893:2 14908:2 14913:1 14926:1 14967:1 14976:1 15029:1 15036:1 15043:1 15047:1 15054:1 15064:1 15069:2 15083:1 15109:1 15117:1 15153:1 15169:1 15178:3 15196:2 15212:1 15242:1 15267:1 15276:3 15285:1 15297:1 15302:1 15365:1 15380:2 15388:1 15401:2 15406:1 15415:1 15417:1 15419:1 15420:1 15421:1 15441:1 15448:1 15454:1 15458:1 15505:1 15546:1 15550:1 15583:1 15642:1 15683:2 15741:1 15746:1 15795:1 15799:1 15842:1 15860:1 15870:1 15901:1 15914:1 15934:1 15949:1 15967:1 15989:1 16003:1 16017:1 16029:2 16037:1 16060:1 16084:1 16112:1 16113:1 16161:1 16162:1 16172:1 16216:6 16225:1 16265:1 16266:1 16301:7 16309:2 16319:1 16360:1 16374:1 16390:1 16409:1 16419:1 16442:1 16444:1 16446:1 16457:1 16472:1 16481:1 16498:1 16508:1344 16509:1 16512:1 16545:2 16559:1 16567:1 16600:1 16604:1 16609:1 16647:3 16670:1 16678:1 16694:1 16703:1 16719:1 16722:1 16735:3 16738:1 16767:1 16787:2 16793:1 16834:2 16871:1 16894:1 16904:1 16914:1 16932:1 16942:1 16987:1 16993:1 17002:2 17008:1 17009:1 17017:1 17042:1 17054:2 17077:1 17087:3 17092:1 17095:1 17110:1 17123:2 17145:1 17151:1 17153:1 17163:1 17165:1 17188:3 17195:2 17220:1 17223:1 17236:3 17293:1 17300:1 17327:1 17358:1 17359:1 17373:1 17385:1 17402:1 17409:1 17430:1 17437:1 17464:1 17480:1 17494:1 17495:1 17500:1 17514:1 17528:1 17530:1 17544:13 17565:1 17589:1 17595:2 17598:1 17615:1 17653:1 17664:1 17665:1 17689:5 17706:1 17715:1 17716:1 17721:1 17739:2 17763:1 17769:4 17781:2 17802:3 17815:1 17822:1 17824:2 17834:1 17837:1 17843:1 17845:1 17847:1 17858:1 17873:2 17875:1 17902:1 17931:16 17940:1 17956:1 17960:1 17967:1 17977:1 17991:1 17993:1 18039:1 18047:1 18076:1 18102:1 18153:1 18158:2 18160:1 18193:1 18198:1 18206:1 18212:1 18317:2 18333:1 18357:1 18383:3 18397:1 18430:2 18434:1 18445:1 18447:1 18454:1 18460:1 18463:1 18486:1 18503:1 18507:1 18509:1 18511:2 18519:2 18524:1 18527:12 18534:1 18535:1 18542:2 18544:2 18563:2 18571:1 18573:1 18601:1 18619:1 18648:1 18649:1 18692:1 18706:2 18760:2 18762:1 18773:1 18774:1 18777:1 18779:1 18780:1 18781:1 18797:2 18800:1 18812:2 18816:1 18823:1 18840:1 18848:1 18875:1 18917:2 18920:3 18942:1 18946:1 18967:1 18972:1 18979:1 19024:1 19032:2 19039:1 19042:1 19056:3 19062:1 19082:1 19105:2 19108:1 19110:1 19120:1 19127:1 19128:1 19132:5 19133:1 19139:1 19141:1 19142:1 19174:1 19175:1 19212:1 19219:1 19239:2 19249:1 19275:2 19276:1 19285:1 19296:2 19314:1 19325:1 19332:1 19348:1 19421:1 19422:1 19433:1 19434:2 19436:1 19455:2 19456:1 19459:1 19490:1 19500:1 19535:2 19558:2 19568:1 19575:1 19600:4 19624:1 19630:1 19632:1 19636:1 19648:1 19656:1 19677:1 19683:2 19685:1 19696:1 19709:1 19725:1 19740:2 19748:1 19758:1 19759:1 19765:2 19787:1 19798:1 19817:1 19822:1 19831:1 19832:1 19842:1 19887:1 19888:1 19899:1 19909:1 19923:1 19937:1 19938:2 19942:1 19958:2 19960:1 19969:1 19970:2 19991:2 19998:1 19999:4 20011:1 20025:2 20039:1 20059:2 20062:1 20086:2 20124:1 20132:1 20160:1 20166:1 20172:1 20186:2 20199:3 20203:1 20210:1 20240:1 20262:1 20268:1 20272:1 20282:1 20297:5 20307:1 20309:1 20313:1 20320:1 20333:2 20334:2 20374:1 20390:1 20399:1 20400:1 20409:1 20413:1 20421:1 20438:1 20455:1 20461:1 20485:1 20508:1 20514:1 20541:1 20554:1 20565:1 20572:1 20577:1 20640:2 20652:1 20695:1 20717:1 20742:3 20750:2 20754:1 20770:1 20802:1 20818:1 20827:1 20835:3 20837:1 20840:1 20841:1 20868:1 20870:1 20888:2 20891:1 20893:1 20929:1 20941:1 20963:1 20991:1 21000:2 21004:1 21006:1 21066:2 21070:1 21077:2 21109:1 21116:1 21123:1 21132:1 21151:2 21154:1 21194:1 21232:1 21346:1 21392:1 21397:1 21416:1 21432:1 21441:1 21481:1 21494:1 21504:2 21529:1 21537:1 21571:1 21582:2 21621:1 21642:2 21689:2 21752:2 21768:1 21769:1 21770:2 21772:1 21778:1 21779:1 21784:2 21795:2 21796:1 21801:2 21812:3 21846:1 21858:1 21859:1 21868:5 21869:3 21872:1 21877:3 21905:1 21925:2 21926:2 21958:1 21961:1 21962:1 22027:1 22032:1 22065:1 22082:1 22099:1 22143:1 22188:1 22220:1 22284:1 22295:6 22343:1 22344:1 22346:1 22377:1 22397:1 22426:1 22461:3 22491:4 22506:1 22558:1 22598:1 22654:2 22672:1 22676:1 22691:1 22697:1 22702:2 22706:1 22707:1 22742:2 22745:1 22757:1 22759:2 22787:1 22794:1 22795:1 22796:2 22797:1 22801:2 22819:1 22848:1 22862:1 22876:2 22907:1 22919:1 22944:3 22955:1 22969:1 22976:3 22977:2 22993:2 23011:1 23013:1 23023:1 23026:1 23035:1 23037:2 23038:1 23083:1 23106:2 23135:1 23164:1 23173:1 23179:1 23180:2 23203:1 23238:1 23244:1 23270:1 23291:1 23316:1 23350:2 23376:1 23383:1 23388:1 23410:8 23411:2 23418:1 23458:2 23480:1 23484:1 23507:1 23511:1 23530:1 23533:1 23552:3 23566:1 23597:1 23633:1 23666:2 23691:1 23698:1 23699:1 23703:1 23734:1 23735:1 23760:1 23787:1 23819:1 23837:1 23853:1 23888:1 23905:1 23924:1 23927:1 23937:1 23957:2 23963:1 23968:1 23987:1 24003:1 24016:1 24037:1 24049:1 24053:1 24107:1 24108:1 24109:2 24119:3 24120:2 24121:1 24141:1 24148:1 24149:1 24150:2 24162:1 24164:1 24177:2 24179:2 24190:2 24217:1 24221:5 24230:1 24232:1 24233:1 24251:1 24271:1 24292:1 24295:2 24345:1 24361:1 24366:1 24404:1 24412:1 24414:1 24419:1 24427:1 24428:1 24439:1 24443:1 24444:1 24445:1 24455:1 24464:2 24469:1 24479:1 24480:2 24485:1 24486:1 24488:1 24489:1 24495:1 24502:1 24503:1 24511:1 24515:1 24548:1 24552:1 24588:1 24596:1 24615:1 24644:1 24658:1 24665:1 24684:1 24709:1 24729:1 24745:1 24769:1 24771:1 24775:1 24777:1 24818:1 24868:1 24905:2 24917:1 24949:1 24952:1 24962:1 25022:4 25027:1 25031:1 25036:1 25037:2 25044:1 25054:1 25069:1 25075:1 25083:1 25093:1 25096:1 25110:7 25112:1 25116:1 25137:1 25141:2 25159:1 25215:1 25251:3 25260:1 25276:1 25278:4 25282:1 25287:1 25296:1 25310:1 25312:1 25316:1 25324:1 25327:2 25334:1 25348:1 25351:1 25363:4 25364:1 25382:1 25400:1 25433:1 25456:2 25457:1 25459:1 25460:2 25477:1 25495:1 25515:2 25519:1 25525:1 25527:3 25540:3 25542:1 25555:1 25583:1 25584:1 25602:1 25619:1 25624:1 25647:1 25679:1 25741:1 25746:1 25753:1 25755:1 25770:2 25777:1 25779:1 25851:1 25854:1 25860:1 25880:1 25883:1 25901:2 25912:1 25915:1 25917:1 25956:1 25960:1 25971:1 25987:1 25992:1 26011:1 26027:1 26050:1 26059:1 26070:1 26076:1 26091:1 26098:1 26122:1 26125:1 26128:3 26150:1 26163:2 26205:1 26209:1 26215:1 26224:1 26226:1 26227:1 26228:1 26231:3 26239:2 26241:2 26242:1 26244:1 26246:1 26250:2 26252:1 26270:1 26279:2 26299:1 26318:1 26325:1 26330:1 26340:1
7 10:1 21:1 38:1 73:1 83:1 110:1 116:1 155:4 164:4 182:2 193:2 200:1 215:2 218:1 234:1 248:1 260:1 274:1 276:1 294:2 310:1 327:1 345:1 347:1 360:1 391:1 402:1 407:1 410:1 429:1 437:1 441:1 501:1 508:1 510:3 538:2 553:1 603:5 605:1 613:1 626:1 722:1 726:3 728:1 746:1 750:2 769:1 781:1 782:2 801:1 807:3 810:1 845:1 854:1 877:1 882:1 890:1 962:1 971:2 982:3 984:1 1021:1 1052:1 1054:1 1076:1 1081:1 1083:1 1104:1 1168:3 1235:1 1241:1 1242:1 1245:1 1272:1 1276:1 1279:1 1287:1 1345:2 1386:1 1394:2 1424:1 1436:1 1439:2 1444:1 1449:1 1450:3 1451:1 1466:2 1495:1 1528:1 1539:2 1541:2 1579:1 1581:2 1593:1 1596:1 1605:2 1611:1 1628:2 1639:1 1653:2 1672:1 1704:1 1719:1 1721:1 1731:2 1738:2 1758:1 1788:1 1789:1 1790:1 1796:1 1815:4 1827:1 1836:1 1848:4 1868:1 1879:2 1884:1 1888:1 1924:1 1927:1 1930:5 1941:1 1943:1 1952:1 1964:1 1967:6 1968:1 1970:1 1973:2 1974:1 1978:3 1981:2 1982:1 1986:1 1990:3 1997:2 2000:1 2002:3 2004:1 2044:1 2053:1 2064:1 2070:1 2078:1 2086:1 2091:2 2099:1 2116:1 2145:1 2155:1 2172:1 2181:1 2210:1 2222:1 2223:1 2237:1 2241:1 2247:1 2273:1 2316:1 2355:1 2357:1 2364:1 2378:1 2394:2 2398:1 2406:1 2429:1 2431:1 2445:1 2446:1 2450:2 2453:3 2460:4 2466:1 2472:1 2500:1 2502:1 2506:1 2508:1 2534:1 2545:4 2579:2 2587:1 2590:18 2617:1 2650:1 2667:1 2696:1 2711:1 2752:1 2760:2 2767:1 2858:1 2868:1 2869:1 2875:1 2893:3 2900:1 2915:1 2918:6 2948:2 2977:1 2982:2 3037:1 3038:1 3046:1 3084:1 3091:2 3106:1 3124:1 3153:1 3155:1 3159:2 3167:1 3169:1 3181:1 3187:1 3189:1 3191:1 3205:1 3231:1 3235:2 3236:1 3238:1 3239:1 3276:1 3332:1 3362:1 3365:1 3395:1 3421:1 3422:1 3432:1 3435:1 3443:1 3450:1 3453:1 3461:1 3474:1 3481:1 3504:2 3511:2 3518:1 3529:2 3537:1 3575:1 3613:1 3617:4 3622:1 3661:2 3682:1 3698:1 3706:3 3711:2 3715:1 3732:1 3733:1 3752:1 3763:1 3782:1 3789:1 3791:1 3793:1 3805:2 3817:2 3843:1 3851:1 3897:1 3899:1 3916:1 3922:1 3942:1 3944:1 3997:4 4004:1 4011:1 4021:1 4028:1 4035:1 4036:1 4082:1 4096:2 4097:2 4098:1 4113:1 4120:1 4123:2 4130:1 4136:1 4140:1 4148:1 4193:1 4204:1 4215:1 4247:1 4250:1 4284:2 4296:1 4305:12 4308:1 4323:1 4339:1 4376:1 4414:2 4429:2 4430:5 4433:1 4436:1 4437:2 4441:1 4443:1 4449:1 4456:2 4457:2 4484:4 4533:1 4564:1 4573:1 4597:1 4602:4 4625:2 4652:1 4674:1 4702:1 4703:1 4709:1 4719:1 4726:1 4733:1 4742:1 4744:1 4756:1 4765:1 4766:1 4812:1 4888:2 4897:1 4919:1 4922:1 4925:2 4953:1 4970:2 5006:1 5010:1 5020:1 5052:1 5053:1 5065:1 5068:2 5071:1 5081:2 5126:1 5203:1 5225:1 5275:1 5306:1 5319:2 5322:2 5351:1 5379:1 5395:1 5412:1 5441:5 5452:1 5470:1 5478:1 5499:1 5516:1 5542:5 5566:4 5581:4 5585:1 5586:1 5600:2 5617:3 5618:1 5625:3 5627:2 5631:1 5636:2 5637:1 5638:2 5640:1 5645:2 5647:2 5673:1 5732:1 5756:1 5767:1 5769:1 5782:1 5797:1 5800:1 5810:1 5818:1 5847:3 5886:1 5890:1 5918:2 5987:1 5990:2 6009:3 6010:2 6043:1 6098:1 6102:1 6105:2 6108:1 6111:1 6117:2 6138:1 6152:1 6170:1 6178:1 6186:1 6188:1 6230:1 6246:2 6282:2 6284:1 6320:2 6322:1 6326:1 6328:1 6330:1 6336:1 6338:1 6345:1 6356:1 6385:1 6459:1 6460:1 6490:1 6502:1 6514:2 6515:1 6519:1 6544:1 6552:1 6561:1 6571:1 6589:3 6603:1 6614:1 6621:1 6624:2 6632:1 6633:1 6638:1 6649:1 6653:1 6680:1 6702:2 6712:1 6723:2 6729:1 6740:3 6741:1 6761:1 6803:25 6822:1 6824:17 6957:1 6974:1 6986:2 6990:1 6997:1 7004:1 7036:1 7072:1 7083:1 7093:1 7104:1 7126:1 7151:1 7152:1 7180:2 7194:1 7201:1 7205:1 7219:11 7246:1 7254:1 7274:2 7297:1 7303:1 7315:3 7358:1 7363:2 7379:2 7382:1 7391:1 7399:1 7416:2 7420:1 7436:1 7438:1 7439:1 7462:1 7534:1 7536:1 7538:2 7539:2 7549:2 7565:1 7570:1 7589:1 7610:2 7611:5 7628:2 7644:1 7651:1 7670:1 7673:1 7683:1 7688:1 7697:1 7700:2 7714:1 7725:1 7741:1 7767:1 7790:2 7795:1 7807:1 7815:2 7835:3 7837:2 7855:1 7910:1 7937:2 7960:1 7966:2 8028:5 8033:1 8090:2 8104:1 8158:2 8167:1 8169:1 8170:1 8178:1 8179:1 8201:1 8232:2 8275:1 8277:1 8309:1 8322:2 8326:1 8342:1 8377:2 8378:1 8383:1 8411:2 8432:3 8440:1 8455:1 8476:1 8483:2 8498:2 8499:2 8510:2 8534:1 8550:1 8563:1 8601:2 8616:1 8624:1 8628:1 8631:1 8657:1 8660:1 8664:1 8678:1 8687:1 8730:1 8740:1 8747:1 8748:1 8752:1 8755:1 8769:1 8785:1 8824:1 8828:1 8839:1 8872:1 8882:1 8909:3 8914:1 8917:2 8929:2 8944:1 8946:1 8956:2 8959:1 8964:1 8965:2 8970:1 8973:1 8989:1 8993:1 8996:1 9033:1 9044:2 9056:2 9058:1 9061:1 9070:1 9075:1 9085:1 9110:1 9113:2 9117:1 9167:1 9216:1 9220:1 9255:1 9264:1 9285:1 9288:1 9292:1 9293:1 9312:1 9318:1 9322:1 9344:1 9374:3 9376:1 9419:1 9464:1 9473:3 9490:1 9506:1 9529:1 9532:1 9534:1 9535:1 9606:1 9611:1 9627:1 9660:1 9697:1 9708:1 9712:6 9718:1 9736:1 9754:1 9791:1 9803:2 9831:1 9835:1 9837:1 9870:1 9894:1 9900:1 9912:1 9943:1 9946:1 9968:2 9992:1 9995:1 10040:1 10082:1 10087:1 10093:1 10098:2 10103:1 10109:1 10132:1 10133:3 10166:1 10182:1 10192:1 10195:1 10204:1 10249:2 10274:2 10318:1 10320:1 10338:1 10341:2 10362:1 10368:2 10370:1 10377:1 10379:2 10381:2 10382:1 10383:2 10384:1 10387:1 10388:1 10401:2 10407:1 10411:1 10428:1 10429:1 10460:1 10464:2 10481:1 10487:1 10502:1 10513:1 10514:1 10518:4 10523:1 10530:1 10570:1 10572:1 10592:1 10605:1 10639:2 10665:1 10681:4 10684:1 10694:4 10704:1 10729:1 10745:1 10764:1 10774:1 10782:1 10788:2 10800:1 10801:1 10813:1 10865:1 10875:2 10941:1 10942:1 10974:1 11087:2 11093:1 11105:2 11115:1 11116:1 11170:1 11203:1 11228:1 11239:1 11261:5 11283:1 11305:1 11307:2 11314:1 11316:1 11317:1 11332:1 11353:1 11362:1 11373:1 11376:1 11396:1 11398:1 11403:1 11426:1 11427:2 11431:2 11432:1 11445:1 11460:1 11479:1 11491:1 11495:2 11496:1 11514:1 11539:1 11569:1 11570:1 11588:1 11616:2 11632:3 11663:1 11694:1 11702:1 11714:1 11733:1 11761:1 11778:3 11779:2 11790:1 11797:1 11805:2 11832:1 11848:1 11865:2 11918:1 11935:1 11938:1 11975:2 11988:1 11992:2 12000:2 12018:2 12029:1 12069:1 12073:1 12096:3 12098:1 12099:1 12112:2 12114:1 12120:1 12122:2 12167:1 12193:1 12199:2 12217:2 12225:1 12238:2 12239:2 12277:1 12279:1 12281:1 12285:1 12309:1 12351:1 12354:1 12364:2 12381:1 12405:1 12410:1 12423:2 12456:1 12459:1 12504:1 12528:1 12542:1 12545:1 12550:2 12556:1 12563:1 12568:1 12584:1 12642:1 12657:1 12672:1 12673:1 12686:1 12695:1 12697:3 12707:1 12712:1 12734:1 12789:1 12794:1 12816:1 12817:1 12826:1 12831:1 12840:2 12844:1 12846:1 12853:1 12897:1 12920:1 12933:1 12936:1 12947:1 12951:1 12958:1 12980:1 12987:1 12996:1 13008:1 13021:1 13027:1 13053:1 13093:1 13098:1 13102:1 13120:1 13132:1 13147:1 13165:1 13182:1 13200:1 13219:1 13232:1 13234:2 13257:1 13258:1 13261:1 13316:1 13379:1 13414:1 13421:1 13426:1 13428:1 13440:1 13452:1 13481:1 13488:1 13505:1 13507:1 13532:1 13545:1 13549:1 13551:1 13577:1 13598:2 13615:1 13625:1 13626:4 13637:2 13647:1 13663:1 13673:1 13686:3 13700:1 13704:1 13726:3 13734:6 13740:2 13744:1 13764:1 13775:3 13810:1 13821:1 13833:1 13840:1 13870:1 13875:1 13876:2 13886:1 13895:1 13897:2 13898:1 13899:2 13900:2 13909:1 13910:1 13916:1 13932:1 13949:1 13952:2 14014:2 14047:1 14062:1 14069:1 14084:1 14108:1 14143:1 14146:1 14168:1 14174:1 14179:1 14183:1 14216:1 14219:1 14226:1 14275:1 14284:2 14293:1 14313:1 14324:1 14327:1 14360:1 14367:1 14369:1 14373:1 14374:1 14386:1 14387:2 14389:1 14390:1 14394:4 14412:1 14471:1 14480:1 14481:1 14490:1 14515:1 14516:1 14571:1 14578:2 14580:1 14596:2 14608:2 14609:1 14617:1 14621:1 14649:2 14652:1 14654:1 14679:2 14694:1 14695:2 14696:1 14700:1 14704:2 14720:1 14782:1 14783:1 14786:1 14794:5 14814:1 14823:16 14841:1 14859:1 14864:2 14893:2 14908:2 14913:1 14926:1 14967:1 14976:1 15029:1 15036:1 15043:1 15047:1 15054:1 15064:1 15069:2 15083:1 15109:1 15117:1 15153:1 15169:1 15178:3 15196:2 15212:1 15242:1 15267:1 15276:4 15285:1 15297:1 15302:1 15365:1 15380:2 15388:1 15401:2 15406:1 15415:1 15417:1 15419:1 15420:1 15421:1 15441:1 15448:1 15454:1 15458:1 15505:1 15546:1 15550:1 15583:1 15642:1 15683:2 15741:1 15746:1 15795:1 15799:1 15842:1 15860:1 15870:1 15901:1 15914:1 15934:1 15949:1 15967:1 15989:1 16002:1 16003:1 16017:1 16029:2 16037:1 16060:1 16084:1 16112:1 16113:1 16161:1 16162:1 16172:1 16216:6 16225:1 16265:1 16266:1 16301:7 16309:2 16319:1 16360:1 16374:1 16390:1 16409:1 16419:1 16442:1 16444:1 16446:1 16457:1 16472:1 16481:1 16498:1 16508:1372 16509:1 16512:1 16545:2 16559:1 16567:1 16600:1 16604:1 16609:1 16647:3 16670:1 16678:1 16694:1 16703:1 16719:1 16722:1 16735:3 16738:1 16767:1 16787:2 16793:1 16834:2 16871:1 16894:1 16904:1 16914:1 16932:1 16942:1 16987:1 16993:1 17002:2 17008:1 17009:1 17017:1 17042:1 17054:2 17077:1 17087:3 17092:1 17095:1 17110:1 17123:2 17145:1 17151:1 17153:1 17163:1 17165:1 17188:3 17195:2 17220:1 17223:1 17236:3 17293:1 17300:1 17327:1 17358:1 17359:1 17373:1 17385:1 17402:1 17409:1 17430:1 17437:1 17464:1 17480:1 17494:1 17495:1 17500:1 17514:1 17528:1 17530:1 17544:15 17565:1 17589:1 17595:2 17598:1 17615:1 17653:1 17664:1 17665:1 17689:5 17706:1 17715:1 17716:1 17721:1 17739:2 17763:1 17769:4 17781:2 17802:3 17815:1 17822:1 17824:2 17834:1 17837:1 17843:1 17845:1 17847:1 17858:1 17873:2 17875:1 17902:1 17931:18 17940:1 17956:1 17960:1 17967:1 17977:1 17991:1 17993:1 18039:1 18047:1 18076:1 18102:1 18153:1 18158:2 18160:1 18193:1 18198:1 18206:1 18212:1 18317:2 18333:1 18357:2 18383:3 18397:1 18430:2 18434:1 18445:1 18447:1 18454:1 18460:1 18463:1 18486:1 18503:1 18507:1 18509:1 18511:2 18519:2 18524:1 18527:13 18534:1 18535:1 18542:2 18544:2 18563:2 18571:1 18573:1 18601:1 18619:1 18648:1 18649:1 18692:1 18706:2 18760:2 18762:1 18773:1 18774:1 18777:1 18779:1 18780:1 18781:1 18797:2 18800:1 18812:2 18816:1 18823:1 18840:1 18848:1 18875:1 18917:2 18920:3 18942:1 18946:1 18967:1 18972:1 18979:1 19024:1 19032:2 19039:1 19042:1 19056:3 19062:1 19082:1 19105:2 19108:1 19110:1 19120:1 19127:1 19128:1 19132:5 19133:1 19139:1 19141:1 19142:1 19174:1 19175:1 19212:1 19219:1 19239:2 19249:1 19275:2 19276:1 19285:1 19296:2 19314:1 19325:1 19332:1 19348:1 19421:1 19422:1 19433:1 19434:2 19436:1 19455:2 19456:1 19459:1 19490:1 19500:1 19535:2 19558:2 19568:1 19575:1 19600:4 19624:1 19630:1 19632:1 19636:1 19648:1 19656:1 19677:1 19683:2 19685:1 19696:1 19709:1 19725:1 19740:2 19743:1 19748:1 19758:1 19759:1 19765:2 19787:1 19798:1 19817:1 19822:1 19831:1 19832:1 19842:1 19887:1 19888:1 19899:1 19909:1 19923:1 19937:1 19938:2 19942:2 19958:2 19960:1 19969:1 19970:2 19991:2 19998:1 19999:4 20011:1 20025:2 20039:1 20059:2 20062:1 20086:2 20119:1 20124:1 20132:1 20152:1 20160:1 20166:1 20172:1 20186:2 20199:3 20203:1 20210:1 20240:1 20262:1 20268:1 20272:1 20282:1 20297:5 20307:1 20309:1 20313:1 20320:1 20333:2 20334:2 20374:1 20390:1 20399:1 20400:1 20409:1 20413:1 20421:1 20438:1 20455:1 20461:1 20485:1 20508:1 20514:1 20541:1 20554:1 20565:1 20572:1 20577:1 20640:2 20652:1 20695:1 20717:1 20742:3 20750:2 20754:1 20770:1 20802:1 20818:1 20827:1 20835:3 20837:1 20840:1 20841:1 20868:1 20870:1 20888:2 20891:1 20893:1 20929:1 20941:1 20963:1 20991:1 21000:2 21004:1 21006:1 21066:2 21070:1 21077:2 21109:1 21116:1 21123:1 21132:1 21151:2 21154:1 21194:1 21232:1 21346:1 21392:1 21397:1 21416:1 21432:1 21441:1 21481:1 21483:1 21494:1 21504:2 21529:1 21537:1 21571:1 21582:2 21621:1 21642:2 21689:2 21752:2 21768:1 21769:1 21770:2 21772:1 21778:1 21779:1 21784:3 21795:2 21796:1 21801:2 21812:3 21846:1 21858:1 21859:1 21868:5 21869:3 21872:1 21877:3 21905:1 21925:2 21926:2 21958:1 21961:1 21962:1 22027:1 22032:1 22063:1 22065:1 22082:1 22099:1 22143:1 22188:1 22220:1 22284:1 22295:6 22343:1 22344:1 22346:1 22377:1 22397:1 22426:1 22461:3 22491:4 22506:1 22558:1 22598:1 22600:1 22654:2 22672:1 22676:1 22691:1 22697:1 22702:2 22706:1 22707:1 22742:2 22745:1 22757:1 22759:2 22787:1 22794:1 22795:1 22796:2 22797:1 22801:2 22819:1 22848:1 22862:1 22876:2 22907:1 22919:1 22944:3 22955:1 22969:1 22976:3 22977:2 22993:2 23011:1 23013:1 23023:1 23026:1 23035:1 23037:2 23038:1 23083:1 23106:2 23135:1 23164:1 23173:1 23179:1 23180:2 23203:1 23238:1 23244:1 23270:1 23291:1 23316:1 23350:2 23376:1 23383:1 23388:1 23410:8 23411:2 23418:1 23458:2 23480:1 23484:1 23507:1 23511:1 23530:1 23533:1 23552:3 23566:1 23597:1 23633:1 23665:1 23666:2 23691:1 23698:1 23699:1 23703:1 23734:1 23735:1 23760:1 23787:1 23819:1 23837:1 23853:1 23888:1 23905:1 23924:1 23927:1 23937:1 23957:2 23963:1 23968:1 23987:1 24003:1 24016:1 24037:1 24049:1 24053:1 24107:1 24108:1 24109:2 24119:3 24120:2 24121:1 24141:1 24148:1 24149:1 24150:3 24162:1 24164:1 24177:2 24179:2 24190:2 24217:1 24221:5 24230:1 24232:1 24233:1 24251:1 24271:1 24292:1 24295:2 24345:1 24361:1 24366:1 24404:1 24412:1 24414:1 24419:1 24427:1 24428:1 24439:1 24443:1 24444:1 24445:1 24455:1 24464:2 24469:1 24479:1 24480:2 24485:1 24486:1 24488:1 24489:1 24495:1 24502:1 24503:1 24511:1 24515:1 24548:1 24552:1 24588:1 24596:1 24615:1 24644:1 24658:1 24665:1 24684:1 24709:1 24729:1 24745:1 24769:1 24771:1 24775:1 24777:1 24818:1 24868:1 24905:2 24917:1 24949:1 24952:1 24962:1 25022:5 25027:1 25031:1 25036:1 25037:2 25044:1 25054:1 25069:1 25075:1 25083:1 25093:1 25096:1 25110:7 25112:1 25116:1 25137:1 25141:2 25159:1 25215:1 25251:3 25260:1 25276:1 25278:4 25282:1 25287:1 25290:1 25296:1 25310:1 25312:1 25316:1 25324:1 25327:2 25334:1 25348:1 25351:1 25363:4 25364:1 25382:1 25400:1 25433:1 25456:2 25457:1 25459:1 25460:2 25477:1 25495:1 25515:2 25519:1 25525:1 25527:3 25540:3 25542:1 25555:1 25583:1 25584:1 25602:1 25619:1 25624:1 25647:1 25679:1 25717:1 25741:1 25746:1 25753:1 25755:1 25770:2 25777:1 25779:1 25851:1 25854:1 25860:1 25880:1 25883:1 25901:2 25912:1 25915:1 25917:1 25956:1 25960:1 25971:1 25987:1 25992:1 26011:1 26027:2 26050:1 26059:1 26070:1 26076:1 26091:1 26098:1 26122:1 26125:2 26128:3 26150:1 26163:3 26205:1 26209:1 26215:1 26224:1 26226:1 26227:1 26228:1 26231:3 26239:2 26241:2 26242:1 26244:1 26246:1 26250:3 26252:1 26270:1 26279:2 26299:1 26318:1 26325:1 26330:1 26340:1
7 10:1 21:1 38:1 73:1 83:1 110:1 116:1 155:4 164:4 182:2 193:2 200:1 215:2 218:1 234:1 248:1 260:1 274:1 276:1 294:2 310:1 327:1 345:1 347:1 360:1 391:1 402:1 407:1 410:1 429:1 437:1 441:1 501:1 508:1 510:3 538:2 553:1 603:5 605:1 613:1 626:1 675:1 722:1 726:3 728:1 746:1 750:2 769:1 781:1 782:2 801:1 807:3 810:1 841:1 842:1 845:1 854:1 877:1 882:1 890:1 962:1 971:2 982:3 984:1 1021:1 1052:1 1054:1 1076:1 1081:1 1083:1 1104:1 1168:3 1235:1 1241:1 1242:1 1245:1 1272:1 1276:1 1279:1 1287:1 1345:2 1386:1 1394:2 1424:1 1436:1 1439:2 1444:1 1449:1 1450:3 1451:1 1466:2 1495:1 1528:1 1538:1 1539:2 1541:2 1579:1 1581:3 1593:1 1596:1 1605:2 1611:1 1628:2 1639:1 1653:2 1672:1 1704:1 1705:1 1719:1 1721:1 1731:2 1738:2 1758:1 1788:1 1789:1 1790:1 1796:1 1815:4 1827:1 1836:1 1848:4 1868:1 1879:2 1884:1 1888:1 1924:1 1927:2 1930:5 1941:1 1943:1 1952:1 1964:1 1967:6 1968:1 1970:1 1973:2 1974:1 1978:4 1981:2 1982:1 1986:1 1990:3 1997:2 2000:1 2002:3 2004:1 2044:1 2053:1 2064:1 2070:1 2078:1 2086:1 2091:2 2099:1 2116:1 2145:1 2155:1 2172:1 2181:1 2210:1 2222:1 2223:1 2237:1 2241:1 2247:1 2273:1 2316:1 2355:1 2357:1 2364:1 2378:1 2394:2 2398:1 2406:1 2429:1 2431:1 2445:1 2446:1 2450:2 2453:3 2460:4 2466:1 2472:1 2500:1 2502:1 2506:1 2508:2 2534:1 2545:4 2579:2 2587:1 2590:18 2617:1 2650:1 2667:1 2696:1 2711:1 2752:1 2760:2 2767:1 2843:1 2858:1 2868:1 2869:1 2875:1 2893:3 2900:1 2915:1 2918:6 2948:2 2977:1 2982:2 3037:1 3038:1 3046:1 3084:1 3091:2 3106:1 3124:1 3153:1 3155:1 3159:2 3167:1 3169:1 3181:1 3187:1 3189:1 3191:1 3205:1 3231:1 3235:2 3236:1 3238:1 3239:1 3276:1 3332:1 3362:1 3365:1 3395:1 3421:1 3422:1 3432:1 3435:1 3443:1 3450:1 3453:1 3461:1 3467:1 3474:1 3481:1 3504:2 3511:2 3518:1 3529:2 3537:1 3575:1 3613:1 3617:4 3622:1 3661:2 3671:1 3682:1 3698:1 3706:3 3711:2 3715:1 3732:1 3733:1 3752:1 3763:1 3782:1 3789:1 3791:1 3793:1 3805:2 3817:2 3843:1 3851:1 3891:1 3897:1 3899:1 3916:1 3922:1 3942:1 3944:1 3997:4 4004:1 4011:1 4021:1 4028:1 4035:1 4036:1 4082:1 4096:2 4097:2 4098:1 4113:1 4120:1 4123:2 4130:1 4136:1 4140:1 4148:1 4193:1 4204:1 4215:1 4247:1 4250:1 4284:2 4296:1 4305:14 4308:1 4323:1 4339:1 4376:1 4414:2 4429:3 4430:5 4433:1 4436:1 4437:2 4441:1 4443:1 4449:1 4456:2 4457:2 4484:4 4533:1 4564:1 4573:1 4597:1 4602:4 4625:2 4652:1 4674:1 4702:1 4703:1 4709:1 4719:1 4726:1 4733:1 4742:1 4744:1 4756:1 4765:1 4766:1 4812:1 4888:2 4897:1 4919:1 4922:1 4925:2 4953:1 4970:2 5006:1 5010:1 5020:1 5052:1 5053:1 5065:1 5068:2 5071:1 5081:2 5126:1 5203:1 5225:1 5275:1 5306:1 5319:2 5322:2 5351:1 5379:1 5395:1 5412:1 5441:5 5452:1 5470:1 5478:1 5499:1 5516:1 5542:5 5566:4 5581:4 5585:1 5586:1 5600:2 5617:3 5618:1 5625:3 5627:2 5631:1 5636:2 5637:1 5638:2 5640:1 5645:2 5647:2 5661:1 5673:1 5732:1 5756:1 5767:1 5769:1 5782:1 5797:1 5800:1 5810:1 5813:1 5818:1 5847:3 5886:1 5890:1 5918:2 5987:1 5990:2 6009:3 6010:2 6043:1 6098:1 6102:1 6105:2 6106:1 6108:1 6111:1 6117:2 6135:1 6138:1 6152:1 6170:1 6178:1 6186:1 6188:1 6230:1 6246:2 6282:2 6284:1 6320:2 6322:1 6326:1 6328:1 6330:1 6336:1 6338:1 6345:1 6356:1 6385:1 6459:1 6460:1 6490:1 6502:1 6514:2 6515:1 6519:1 6544:1 6552:1 6561:1 6571:1 6589:3 6603:1 6614:1 6621:1 6624:3 6632:1 6633:1 6638:1 6649:1 6653:1 6680:1 6702:2 6712:1 6723:2 6729:1 6740:3 6741:1 6761:1 6803:26 6822:1 6824:17 6957:1 6974:1 6986:3 6990:1 6997:1 7004:1 7036:1 7072:1 7083:1 7093:1 7104:1 7126:1 7151:1 7152:1 7180:2 7194:1 7201:1 7205:1 7219:11 7246:1 7254:1 7274:2 7297:1 7303:1 7315:3 7358:1 7363:2 7379:2 7382:1 7391:1 7399:1 7416:2 7420:1 7436:1 7438:1 7439:1 7462:1 7503:1 7534:1 7536:1 7538:2 7539:2 7542:1 7549:2 7565:1 7570:1 7589:1 7610:2 7611:5 7628:2 7644:1 7651:1 7670:1 7673:1 7683:1 7688:1 7697:2 7700:2 7714:1 7725:1 7741:1 7767:1 7790:2 7795:1 7807:1 7815:2 7835:3 7837:2 7855:1 7910:1 7937:2 7960:1 7966:2 8028:5 8033:1 8071:1 8090:2 8104:1 8158:2 8167:1 8169:1 8170:1 8178:1 8179:1 8201:1 8232:2 8275:1 8277:1 8309:1 8322:2 8326:1 8342:1 8377:2 8378:1 8383:1 8411:2 8432:3 8440:1 8455:1 8476:1 8483:2 8498:2 8499:2 8510:2 8534:1 8550:1 8563:1 8601:3 8616:1 8624:1 8628:1 8631:1 8657:1 8660:1 8664:1 8678:1 8687:1 8730:1 8740:1 8747:1 8748:1 8752:1 8755:1 8769:1 8785:1 8824:1 8828:1 8839:1 8872:1 8882:1 8909:3 8911:1 8914:1 8917:2 8929:2 8944:1 8946:1 8956:2 8959:1 8964:1 8965:2 8970:1 8973:1 8989:1 8993:1 8996:1 9033:1 9044:2 9056:2 9058:1 9061:1 9070:1 9075:1 9085:1 9110:1 9113:2 9117:1 9167:1 9216:1 9220:1 9255:1 9264:1 9285:1 9288:1 9292:1 9293:1 9312:1 9318:1 9322:1 9344:1 9374:3 9376:1 9419:1 9464:1 9473:3 9490:1 9506:1 9529:1 9532:1 9534:1 9535:1 9606:1 9611:1 9627:1 9645:1 9660:1 9697:1 9708:1 9712:6 9718:1 9736:1 9754:1 9791:1 9803:2 9808:1 9831:1 9835:1 9837:1 9870:1 9894:1 9900:1 9912:1 9943:1 9946:1 9968:3 9992:1 9995:1 10040:1 10082:1 10087:1 10093:1 10098:2 10103:1 10109:1 10132:1 10133:3 10166:1 10182:1 10192:1 10195:1 10204:1 10249:2 10274:2 10278:1 10318:1 10320:1 10338:1 10341:2 10362:1 10368:2 10370:1 10377:1 10379:3 10381:2 10382:1 10383:3 10384:1 10387:2 10388:1 10401:2 10407:1 10411:1 10428:1 10429:1 10442:1 10460:1 10464:3 10481:1 10487:1 10502:1 10513:1 10514:1 10518:4 10523:1 10530:1 10570:1 10572:1 10592:1 10605:1 10639:3 10665:1 10681:4 10684:1 10694:4 10704:1 10716:1 10729:1 10745:1 10764:1 10774:1 10782:1 10788:2 10800:1 10801:1 10813:1 10865:1 10875:2 10941:1 10942:1 10953:1 10974:1 11087:2 11093:1 11105:2 11112:1 11115:1 11116:1 11170:1 11203:1 11228:1 11239:1 11261:5 11283:1 11305:1 11307:2 11314:1 11316:1 11317:1 11332:1 11353:1 11362:1 11373:1 11376:1 11396:1 11398:1 11403:1 11426:1 11427:2 11431:2 11432:1 11433:1 11445:1 11460:1 11479:1 11491:1 11495:2 11496:1 11514:1 11539:1 11569:1 11570:1 11588:1 11616:2 11632:3 11663:1 11694:1 11702:1 11714:1 11733:1 11761:1 11778:3 11779:2 11790:1 11797:1 11805:2 11832:1 11848:1 11865:3 11918:1 11935:1 11938:1 11975:2 11988:1 11992:3 12000:2 12018:2 12029:1 12069:1 12073:1 12096:3 12098:1 12099:1 12112:2 12114:1 12120:1 12122:2 12167:1 12193:1 12199:2 12217:2 12219:1 12225:1 12238:2 12239:2 12277:1 12279:1 12281:1 12285:1 12309:1 12351:1 12354:1 12364:2 12381:1 12390:1 12405:1 12410:1 12423:2 12456:1 12459:1 12488:2 12504:1 12528:1 12542:1 12545:1 12550:2 12556:1 12563:1 12568:1 12584:1 12642:1 12657:1 12672:1 12673:1 12686:1 12695:1 12697:3 12707:1 12712:1 12734:1 12789:1 12794:1 12816:1 12817:1 12826:1 12831:1 12840:2 12844:1 12846:1 12853:1 12897:1 12920:1 12933:1 12936:1 12947:1 12951:1 12958:1 12980:1 12987:1 12996:1 13008:1 13021:1 13027:1 13053:1 13093:1 13098:1 13102:1 13120:1 13132:1 13147:1 13165:1 13182:1 13200:1 13219:1 13232:1 13234:2 13257:1 13258:1 13261:1 13316:1 13349:1 13379:1 13414:1 13421:1 13426:1 13428:1 13440:1 13452:1 13481:1 13488:1 13505:1 13507:1 13532:1 13545:1 13549:1 13551:1 13577:1 13598:2 13615:1 13625:1 13626:4 13637:2 13647:1 13663:1 13673:2 13686:3 13700:1 13704:1 13726:3 13733:1 13734:6 13740:2 13744:1 13764:1 13775:3 13810:1 13821:1 13833:1 13840:1 13870:1 13872:1 13875:1 13876:2 13886:1 13895:1 13897:2 13898:1 13899:2 13900:2 13909:1 13910:1 13916:1 13932:1 13949:1 13952:2 14014:2 14047:1 14062:1 14069:1 14084:1 14108:1 14143:2 14146:1 14168:1 14174:1 14179:1 14183:1 14216:1 14219:1 14226:1 14275:1 14284:2 14293:1 14313:1 14324:1 14327:1 14360:1 14367:1 14369:1 14373:1 14374:1 14386:1 14387:2 14389:1 14390:1 14394:4 14412:1 14471:1 14480:1 14481:1 14490:1 14515:1 14516:1 14571:1 14578:2 14580:1 14596:2 14608:2 14609:1 14617:1 14621:1 14649:2 14652:1 14654:1 14679:2 14694:1 14695:2 14696:1 14700:1 14704:2 14718:1 14720:1 14782:1 14783:1 14786:1 14794:5 14814:1 14823:16 14841:1 14859:1 14864:2 14893:2 14908:2 14913:1 14926:1 14967:1 14976:1 15029:1 15036:1 15043:1 15047:1 15054:1 15064:1 15069:2 15083:1 15109:1 15117:1 15119:1 15153:1 15169:1 15178:3 15196:2 15212:1 15242:1 15267:1 15276:4 15285:1 15297:1 15302:1 15365:1 15380:2 15388:1 15401:2 15406:1 15415:1 15417:1 15419:1 15420:1 15421:1 15441:1 15448:1 15454:1 15458:1 15505:1 15546:1 15550:1 15565:1 15583:1 15642:1 15683:2 15741:1 15746:1 15795:1 15799:2 15842:1 15860:2 15870:1 15901:1 15914:1 15934:1 15949:1 15967:1 15989:1 16002:1 16003:1 16017:1 16029:2 16037:1 16060:1 16084:1 16112:1 16113:1 16161:1 16162:1 16172:1 16216:6 16225:1 16265:1 16266:1 16301:7 16309:2 16319:1 16360:1 16374:1 16388:1 16390:1 16409:1 16419:1 16442:1 16444:1 16446:1 16457:1 16472:1 16481:1 16498:1 16508:1463 16509:1 16512:1 16545:2 16559:1 16567:1 16600:1 16604:1 16609:1 16647:3 16670:1 16678:1 16694:1 16703:1 16719:1 16722:1 16735:3 16738:1 16767:1 16787:2 16793:1 16834:2 16871:1 16894:1 16904:1 16914:1 16932:1 16942:1 16987:1 16993:1 16996:1 17002:2 17008:1 17009:1 17017:1 17042:1 17054:2 17077:1 17087:3 17092:1 17095:1 17110:1 17123:2 17145:1 17151:1 17153:1 17163:1 17165:1 17188:3 17195:2 17220:1 17223:1 17236:3 17293:1 17300:1 17327:1 17355:1 17358:1 17359:1 17373:1 17385:1 17402:1 17409:1 17430:1 17437:1 17464:1 17480:1 17494:1 17495:1 17500:1 17514:1 17528:1 17530:1 17544:15 17565:1 17589:1 17595:2 17598:1 17615:1 17653:1 17664:1 17665:1 17689:5 17706:1 17715:1 17716:1 17721:1 17739:2 17763:1 17769:4 17781:2 17802:3 17815:1 17822:1 17824:2 17834:1 17837:1 17843:1 17845:1 17847:1 17858:1 17873:2 17875:1 17902:1 17931:18 17940:1 17956:1 17960:1 17967:1 17977:1 17991:1 17993:1 18039:1 18047:1 18076:1 18102:1 18153:1 18158:2 18160:1 18193:1 18198:1 18206:1 18212:1 18317:2 18333:1 18357:2 18383:3 18397:1 18430:2 18434:1 18445:1 18447:1 18454:1 18460:1 18463:1 18486:1 18503:1 18507:1 18509:1 18511:2 18519:2 18524:1 18527:13 18534:1 18535:1 18542:2 18544:2 18563:2 18571:1 18573:1 18601:1 18619:1 18648:1 18649:1 18692:1 18706:2 18760:2 18762:1 18773:1 18774:1 18777:1 18779:1 18780:1 18781:1 18797:2 18800:1 18812:2 18816:1 18823:1 18828:1 18840:1 18848:1 18875:1 18879:1 18917:2 18920:3 18942:1 18946:1 18967:1 18972:1 18979:1 19024:1 19032:2 19039:1 19042:1 19056:3 19062:1 19082:1 19105:2 19108:1 19110:1 19120:1 19125:1 19127:1 19128:1 19132:5 19133:1 19139:1 19141:1 19142:1 19174:1 19175:1 19212:1 19219:1 19239:2 19249:1 19275:2 19276:1 19285:1 19296:2 19314:1 19325:1 19332:1 19348:1 19421:1 19422:1 19433:1 19434:2 19436:1 19455:3 19456:1 19459:1 19490:1 19500:1 19535:2 19558:2 19568:1 19575:1 19600:4 19624:1 19630:1 19632:1 19636:1 19638:1 19648:1 19656:1 19677:1 19683:2 19685:1 19696:1 19709:1 19725:1 19740:2 19743:1 19748:1 19758:1 19759:1 19765:2 19787:1 19798:1 19817:1 19822:1 19831:1 19832:1 19842:1 19858:1 19869:1 19887:1 19888:1 19899:1 19909:1 19923:1 19937:1 19938:2 19942:2 19958:2 19960:1 19969:1 19970:2 19991:2 19998:1 19999:4 20011:1 20025:2 20039:1 20059:2 20062:1 20086:2 20119:1 20124:1 20132:1 20152:1 20160:1 20166:1 20172:1 20186:2 20199:3 20203:1 20210:1 20240:1 20262:1 20268:1 20272:1 20282:1 20297:5 20307:1 20309:1 20313:1 20320:1 20333:2 20334:2 20374:1 20390:1 20399:1 20400:1 20409:1 20413:1 20421:1 20438:1 20455:1 20461:1 20485:1 20508:1 20514:1 20541:1 20554:1 20565:1 20572:1 20577:1 20640:2 20652:1 20695:1 20717:1 20742:3 20750:2 20754:1 20770:1 20802:1 20818:1 20827:1 20835:3 20837:1 20840:1 20841:1 20868:1 20870:1 20888:4 20891:1 20893:1 20929:1 20941:1 20963:1 20991:1 21000:2 21004:1 21006:1 21066:2 21070:1 21077:2 21109:1 21116:1 21123:1 21132:1 21151:2 21154:1 21194:1 21232:1 21346:1 21392:1 21397:1 21416:2 21432:1 21441:1 21481:1 21483:1 21494:1 21504:2 21529:1 21537:1 21571:1 21582:3 21621:1 21642:2 21689:2 21752:2 21768:1 21769:1 21770:2 21772:1 21778:1 21779:1 21784:3 21795:2 21796:1 21801:2 21812:3 21846:1 21858:1 21859:1 21868:5 21869:3 21872:1 21877:3 21905:1 21925:2 21926:2 21958:1 21961:1 21962:1 22027:1 22032:1 22063:1 22065:1 22082:1 22099:1 22143:1 22188:1 22220:1 22284:1 22295:6 22343:1 22344:1 22346:1 22377:1 22397:1 22426:1 22461:3 22491:4 22506:1 22558:1 22598:1 22600:1 22654:2 22672:1 22676:1 22691:1 22697:1 22702:2 22706:1 22707:1 22742:2 22745:1 22757:1 22759:2 22787:1 22794:1 22795:1 22796:2 22797:1 22801:2 22819:1 22848:1 22862:1 22876:2 22907:1 22919:1 22944:3 22955:1 22969:1 22976:3 22977:2 22993:2 23011:1 23013:1 23023:1 23026:1 23031:1 23035:1 23037:2 23038:1 23083:1 23106:2 23135:1 23162:1 23164:1 23173:1 23179:1 23180:2 23203:1 23238:1 23244:1 23270:1 23291:1 23316:1 23350:2 23376:1 23383:1 23388:1 23410:8 23411:2 23418:1 23458:2 23480:1 23484:1 23507:1 23511:1 23530:1 23533:1 23548:1 23552:3 23566:1 23597:1 23633:1 23643:1 23665:1 23666:2 23691:1 23698:1 23699:1 23703:1 23734:1 23735:1 23760:1 23787:1 23819:1 23837:1 23853:1 23888:1 23905:1 23924:1 23927:1 23937:1 23957:2 23963:1 23968:1 23987:1 24003:1 24016:1 24037:1 24049:1 24053:1 24107:1 24108:1 24109:2 24119:3 24120:2 24121:1 24141:1 24148:1 24149:1 24150:3 24162:1 24164:1 24177:2 24179:2 24190:2 24217:1 24221:5 24230:1 24232:1 24233:1 24251:1 24271:1 24292:1 24295:2 24329:1 24345:1 24361:1 24366:1 24404:1 24412:1 24414:1 24419:1 24427:1 24428:1 24439:1 24443:1 24444:1 24445:1 24455:1 24464:2 24469:1 24479:1 24480:2 24485:1 24486:1 24488:1 24489:1 24495:1 24502:1 24503:1 24511:1 24515:1 24548:1 24552:1 24588:1 24596:1 24615:1 24644:1 24658:1 24665:1 24684:1 24709:1 24729:1 24745:1 24751:1 24767:1 24769:1 24771:1 24775:1 24777:1 24816:1 24818:1 24868:1 24899:1 24905:2 24917:1 24949:1 24952:1 24962:1 25022:5 25027:1 25031:1 25036:1 25037:2 25044:1 25054:1 25069:1 25075:1 25083:1 25093:1 25096:1 25110:8 25112:1 25116:1 25137:1 25141:3 25159:1 25215:1 25251:3 25260:1 25276:1 25278:4 25282:1 25287:1 25290:1 25296:1 25310:1 25312:1 25316:1 25324:1 25327:2 25334:1 25342:1 25348:1 25351:1 25363:4 25364:1 25382:1 25400:1 25433:1 25456:2 25457:1 25459:1 25460:2 25477:1 25495:1 25515:2 25519:1 25525:1 25527:3 25540:3 25542:1 25555:1 25583:1 25584:1 25602:1 25619:1 25624:1 25647:1 25679:1 25717:1 25741:1 25746:1 25753:1 25755:1 25770:2 25777:1 25779:1 25851:1 25854:1 25860:1 25880:1 25883:1 25901:2 25912:1 25915:1 25917:1 25956:1 25960:1 25971:1 25987:1 25992:1 26011:1 26027:2 26050:1 26059:1 26070:1 26076:1 26091:1 26098:1 26122:1 26125:2 26128:3 26150:1 26163:3 26205:1 26209:1 26215:1 26224:1 26226:1 26227:1 26228:1 26231:3 26239:2 26241:2 26242:1 26244:1 26246:1 26250:3 26252:1 26264:1 26270:1 26279:2 26299:1 26318:1 26325:1 26330:1 26340:1
7 10:1 21:1 38:1 73:1 83:1 110:1 116:1 155:4 164:4 182:2 193:2 200:1 215:2 218:1 234:1 248:1 260:1 274:1 276:1 294:2 310:1 327:1 345:1 347:1 360:1 391:1 402:1 407:1 410:1 429:1 437:1 441:1 501:1 508:1 510:3 538:2 553:1 603:5 605:1 613:1 626:1 675:1 722:1 726:3 728:1 746:1 750:2 769:1 781:1 782:2 801:1 807:3 810:1 841:1 842:1 845:1 854:1 877:1 882:1 890:1 962:1 971:2 982:3 984:1 1021:1 1052:1 1054:1 1076:1 1081:1 1083:1 1104:1 1168:3 1235:1 1241:1 1242:1 1245:1 1272:1 1276:1 1279:1 1287:1 1345:2 1386:1 1394:2 1424:1 1436:1 1439:2 1444:1 1449:1 1450:3 1451:1 1466:2 1495:1 1528:1 1538:1 1539:2 1541:2 1579:1 1581:3 1593:1 1596:1 1605:2 1611:1 1628:2 1639:1 1653:2 1672:1 1704:1 1705:1 1719:1 1721:1 1731:2 1738:2 1758:1 1788:1 1789:1 1790:1 1796:1 1815:4 1827:1 1836:1 1848:4 1868:1 1879:2 1884:1 1888:1 1924:1 1927:2 1930:5 1941:1 1943:1 1952:1 1964:1 1967:6 1968:1 1970:1 1973:2 1974:1 1978:4 1981:2 1982:1 1986:1 1990:3 1997:2 2000:1 2002:3 2004:1 2044:1 2053:1 2064:1 2070:1 2078:1 2086:1 2091:2 2099:1 2116:1 2145:1 2155:1 2172:1 2181:1 2210:1 2222:1 2223:1 2237:1 2241:1 2247:1 2273:1 2316:1 2355:1 2357:1 2364:1 2378:1 2394:2 2398:1 2406:1 2429:1 2431:1 2445:1 2446:1 2450:2 2453:3 2460:4 2466:1 2472:1 2500:1 2502:1 2506:1 2508:2 2534:1 2545:4 2579:2 2587:1 2590:18 2605:1 2617:1 2650:1 2667:1 2696:1 2711:1 2752:1 2760:2 2767:1 2843:1 2858:1 2868:1 2869:1 2875:1 2893:3 2900:1 2915:1 2918:6 2948:2 2977:1 2982:2 3037:1 3038:1 3046:1 3084:1 3091:2 3106:1 3124:1 3153:1 3155:1 3159:2 3167:1 3169:1 3181:1 3187:1 3189:1 3191:1 3205:1 3231:1 3235:2 3236:1 3238:1 3239:1 3276:1 3332:1 3362:1 3365:1 3395:1 3421:1 3422:1 3432:1 3435:1 3443:1 3450:1 3453:1 3461:1 3467:1 3474:1 3481:1 3504:2 3511:2 3518:1 3529:2 3537:1 3575:1 3613:1 3617:4 3622:1 3661:2 3671:1 3682:1 3698:1 3706:3 3711:2 3715:1 3732:1 3733:1 3752:1 3763:1 3782:1 3789:1 3791:1 3793:1 3805:2 3817:2 3843:1 3851:1 3891:1 3897:1 3899:1 3916:1 3922:1 3942:1 3944:1 3997:4 4004:1 4011:1 4021:1 4022:1 4028:1 4035:1 4036:1 4082:1 4096:2 4097:2 4098:1 4113:1 4120:1 4123:2 4130:1 4136:1 4140:1 4148:1 4193:1 4204:1 4215:1 4247:1 4250:1 4284:2 4296:1 4305:14 4308:1 4323:1 4339:1 4376:1 4414:2 4429:3 4430:5 4433:1 4436:1 4437:2 4441:1 4443:1 4449:1 4456:2 4457:2 4484:4 4533:1 4564:1 4573:1 4597:1 4602:4 4625:2 4652:1 4674:1 4702:1 4703:1 4709:1 4719:1 4726:1 4733:1 4742:1 4744:1 4756:1 4765:1 4766:1 4812:1 4888:2 4897:1 4919:1 4922:1 4925:2 4953:1 4970:2 5006:1 5010:1 5020:1 5052:1 5053:1 5065:1 5068:2 5071:1 5081:2 5126:1 5203:1 5225:1 5275:1 5306:1 5319:2 5322:2 5351:1 5379:1 5395:1 5412:1 5441:5 5452:1 5470:1 5478:1 5499:1 5516:1 5542:5 5566:4 5581:4 5585:1 5586:1 5600:2 5617:3 5618:1 5625:3 5627:2 5631:1 5636:2 5637:1 5638:2 5640:1 5645:2 5647:2 5661:1 5673:1 5732:1 5756:1 5767:1 5769:1 5782:1 5797:1 5800:1 5810:1 5813:2 5818:1 5847:3 5886:1 5890:1 5901:1 5918:2 5987:1 5990:2 6009:3 6010:2 6043:1 6098:1 6102:1 6105:2 6106:1 6108:1 6111:1 6117:2 6135:1 6138:1 6152:1 6170:1 6178:1 6186:1 6188:1 6230:1 6246:2 6282:2 6284:1 6320:2 6322:1 6326:1 6328:1 6330:1 6336:1 6338:1 6345:1 6356:1 6385:1 6459:1 6460:1 6490:1 6502:1 6514:2 6515:1 6519:1 6544:1 6552:1 6561:1 6571:1 6589:3 6603:1 6614:1 6621:1 6624:3 6632:1 6633:1 6638:1 6649:1 6653:1 6680:1 6702:2 6712:1 6723:2 6729:1 6740:3 6741:1 6761:1 6803:26 6822:1 6824:17 6957:1 6974:1 6986:3 6990:1 6997:1 7004:1 7036:1 7072:1 7083:1 7093:1 7104:1 7126:1 7151:1 7152:1 7180:2 7194:1 7201:1 7205:1 7219:11 7246:1 7254:1 7274:2 7297:1 7303:1 7315:3 7358:1 7363:2 7379:2 7382:1 7391:1 7399:1 7416:2 7420:1 7436:1 7438:1 7439:1 7462:1 7503:2 7534:1 7536:1 7538:2 7539:2 7542:1 7549:2 7565:1 7570:1 7589:1 7610:2 7611:5 7628:2 7644:1 7651:1 7670:1 7673:1 7683:1 7688:1 7697:2 7700:2 7714:1 7725:1 7741:1 7767:1 7790:2 7795:1 7807:1 7815:2 7835:3 7837:2 7855:1 7910:1 7937:2 7960:1 7966:2 8028:5 8033:1 8071:1 8090:2 8104:1 8158:2 8167:1 8169:1 8170:1 8178:1 8179:1 8180:1 8201:1 8232:2 8275:1 8277:1 8309:1 8322:2 8326:1 8342:1 8377:2 8378:1 8383:1 8411:2 8432:3 8440:1 8455:1 8476:1 8483:2 8498:2 8499:2 8510:2 8534:1 8550:1 8561:1 8563:1 8601:3 8616:1 8624:1 8628:1 8631:1 8657:1 8660:1 8664:1 8678:1 8687:1 8730:1 8740:1 8747:1 8748:1 8752:1 8755:1 8769:1 8785:1 8824:1 8828:1 8839:1 8872:1 8882:1 8909:3 8911:1 8914:1 8917:2 8929:2 8944:1 8946:1 8956:2 8959:1 8964:1 8965:2 8970:1 8973:1 8989:1 8993:1 8996:1 9033:1 9044:2 9056:2 9058:1 9061:1 9070:1 9075:1 9085:1 9110:1 9113:2 9117:1 9126:1 9167:1 9216:1 9220:1 9255:1 9264:1 9285:1 9288:1 9292:1 9293:1 9312:1 9318:1 9322:1 9344:1 9374:3 9376:1 9419:1 9464:1 9473:3 9490:1 9506:1 9524:1 9529:1 9532:1 9534:1 9535:1 9606:1 9611:1 9627:1 9645:1 9660:1 9697:1 9708:1 9712:6 9718:1 9736:1 9754:1 9778:1 9791:1 9803:2 9808:1 9831:1 9835:1 9837:1 9870:1 9894:1 9900:1 9912:1 9943:1 9946:1 9968:3 9992:1 9995:1 10040:1 10082:1 10087:1 10093:1 10098:2 10103:1 10109:1 10132:1 10133:4 10166:1 10182:1 10192:1 10195:1 10204:1 10249:2 10274:2 10278:1 10318:1 10320:1 10338:1 10341:2 10362:1 10368:2 10370:1 10377:1 10379:3 10381:2 10382:1 10383:3 10384:1 10387:2 10388:1 10401:2 10407:1 10411:1 10428:1 10429:1 10442:1 10460:1 10464:3 10481:1 10487:1 10502:1 10513:1 10514:1 10518:4 10523:1 10530:1 10570:1 10572:1 10592:1 10597:1 10605:1 10639:3 10665:1 10681:4 10684:1 10694:4 10704:1 10716:1 10729:1 10745:1 10764:1 10774:1 10782:1 10788:2 10800:1 10801:1 10813:1 10865:1 10875:2 10941:1 10942:1 10953:1 10974:1 11087:2 11093:1 11105:2 11112:1 11115:1 11116:1 11170:1 11203:1 11228:1 11239:1 11261:5 11283:1 11305:1 11307:2 11314:1 11316:1 11317:1 11332:1 11353:1 11362:1 11373:1 11376:1 11396:1 11398:1 11403:1 11426:1 11427:2 11431:2 11432:1 11433:1 11445:1 11460:1 11479:1 11491:1 11495:2 11496:1 11514:1 11539:1 11569:1 11570:1 11588:1 11616:2 11632:3 11663:1 11694:1 11702:1 11714:1 11733:1 11761:1 11778:3 11779:2 11790:1 11797:1 11805:2 11832:1 11848:1 11865:3 11918:1 11935:1 11938:1 11975:2 11988:1 11992:3 12000:2 12018:2 12029:1 12069:1 12073:1 12096:3 12098:1 12099:1 12112:2 12114:1 12120:1 12122:2 12167:1 12193:1 12199:2 12217:2 12219:2 12225:1 12238:2 12239:2 12277:2 12279:1 12281:1 12285:1 12309:1 12351:1 12354:1 12364:2 12381:1 12390:1 12405:1 12410:1 12423:2 12456:1 12459:1 12488:2 12504:1 12528:1 12542:1 12545:1 12550:2 12556:1 12563:1 12568:1 12584:1 12642:1 12657:1 12672:1 12673:1 12686:1 12695:1 12697:3 12707:1 12712:1 12734:1 12789:1 12794:1 12816:1 12817:1 12826:1 12831:1 12840:2 12844:1 12846:1 12853:1 12897:1 12920:1 12933:1 12936:1 12947:1 12951:1 12958:1 12980:1 12987:1 12996:1 13008:1 13021:1 13027:1 13053:1 13093:1 13098:1 13102:1 13120:1 13132:1 13147:1 13165:1 13182:1 13200:1 13219:1 13232:1 13234:2 13257:1 13258:1 13261:1 13316:1 13349:1 13379:1 13402:1 13414:1 13421:1 13426:1 13428:1 13440:1 13452:1 13481:1 13488:1 13505:1 13507:1 13532:1 13545:1 13549:1 13551:1 13577:1 13598:2 13615:1 13625:1 13626:4 13637:2 13647:1 13663:1 13673:2 13686:3 13700:1 13704:1 13726:3 13733:1 13734:6 13740:2 13744:1 13764:1 13775:3 13810:1 13821:1 13833:1 13840:1 13870:1 13872:1 13875:1 13876:2 13886:1 13895:1 13897:2 13898:1 13899:2 13900:2 13909:1 13910:1 13916:1 13932:1 13949:1 13952:2 14014:2 14047:1 14062:1 14069:1 14084:1 14108:1 14143:2 14146:1 14168:1 14174:1 14179:1 14183:1 14216:1 14219:1 14226:1 14275:1 14284:2 14293:1 14313:1 14324:1 14327:1 14360:1 14367:1 14369:1 14373:1 14374:1 14386:1 14387:2 14389:1 14390:1 14394:4 14412:1 14471:1 14480:1 14481:1 14490:1 14515:1 14516:1 14524:1 14571:1 14578:2 14580:1 14596:2 14608:2 14609:1 14617:1 14621:1 14649:2 14652:1 14654:1 14679:2 14694:1 14695:2 14696:1 14700:1 14704:2 14718:1 14720:1 14782:1 14783:1 14786:1 14794:5 14814:1 14823:16 14841:1 14859:1 14864:2 14893:2 14908:2 14913:1 14926:1 14967:1 14976:1 15029:1 15036:1 15043:1 15047:1 15054:1 15064:1 15069:2 15083:1 15109:1 15117:1 15119:1 15153:1 15169:1 15178:3 15196:2 15212:1 15242:1 15267:1 15276:4 15285:1 15297:1 15302:1 15365:1 15380:2 15388:1 15401:2 15406:1 15415:1 15417:1 15419:1 15420:1 15421:1 15441:1 15448:1 15454:1 15458:1 15505:1 15546:1 15550:1 15565:1 15583:1 15642:1 15683:2 15741:1 15746:1 15795:1 15799:2 15842:1 15860:2 15870:1 15901:1 15914:1 15934:1 15949:1 15967:1 15989:1 16002:1 16003:1 16017:1 16029:2 16037:1 16060:1 16084:1 16112:1 16113:1 16161:1 16162:1 16172:1 16216:6 16225:1 16265:1 16266:1 16301:7 16309:2 16319:1 16360:1 16374:1 16388:1 16390:1 16409:1 16419:1 16442:1 16444:1 16446:1 16457:1 16472:1 16481:1 16498:1 16508:1506 16509:1 16512:1 16545:2 16559:1 16567:1 16600:1 16604:1 16609:1 16647:3 16670:1 16678:1 16694:1 16703:1 16719:1 16722:1 16735:3 16738:1 16767:1 16787:2 16793:1 16834:2 16871:1 16894:1 16904:1 16914:1 16932:1 16942:1 16987:1 16993:1 16996:1 17002:2 17008:1 17009:1 17017:1 17042:1 17054:2 17077:1 17087:3 17092:1 17095:1 17110:1 17123:2 17145:1 17151:1 17153:1 17163:1 17165:1 17188:3 17195:2 17220:1 17223:1 17236:3 17293:1 17300:1 17327:1 17355:1 17358:1 17359:1 17373:1 17385:1 17402:1 17409:1 17430:1 17437:1 17464:1 17468:1 17480:1 17494:1 17495:1 17500:1 17514:1 17528:1 17530:1 17544:15 17565:1 17589:1 17595:2 17598:1 17615:1 17653:1 17664:1 17665:1 17689:5 17706:1 17715:1 17716:1 17721:1 17739:2 17763:1 17769:4 17781:2 17802:3 17815:1 17822:1 17824:2 17834:1 17837:1 17843:1 17845:1 17847:1 17858:1 17873:2 17875:1 17902:1 17931:18 17940:1 17956:1 17960:1 17967:1 17977:1 17991:1 17993:1 18039:1 18047:1 18076:1 18102:1 18153:1 18158:2 18160:1 18193:1 18198:1 18206:1 18212:1 18317:2 18333:1 18357:2 18383:3 18397:1 18430:2 18434:1 18445:1 18447:1 18454:1 18460:1 18463:1 18486:1 18503:1 18507:1 18509:1 18511:2 18519:2 18524:1 18527:13 18534:1 18535:1 18542:2 18544:2 18553:1 18563:2 18571:1 18573:1 18601:1 18619:1 18648:1 18649:1 18692:1 18706:2 18760:2 18762:1 18773:1 18774:1 18777:1 18779:1 18780:1 18781:1 18797:2 18800:1 18812:2 18816:1 18823:1 18828:1 18840:1 18848:1 18875:1 18879:1 18917:2 18920:3 18942:1 18946:1 18967:1 18972:1 18979:1 19024:1 19032:2 19039:1 19042:1 19056:3 19062:1 19082:1 19105:2 19108:1 19110:1 19120:1 19125:1 19127:1 19128:1 19132:5 19133:1 19139:1 19141:1 19142:1 19174:1 19175:1 19212:1 19219:1 19239:2 19249:1 19275:2 19276:1 19285:1 19296:2 19314:1 19325:1 19332:1 19348:1 19421:1 19422:1 19433:1 19434:2 19436:1 19455:3 19456:1 19459:1 19490:1 19500:1 19535:2 19558:2 19568:1 19575:1 19600:4 19624:1 19630:1 19632:1 19636:1 19638:1 19648:1 19656:1 19677:1 19683:2 19685:1 19696:1 19709:1 19725:1 19740:2 19743:1 19748:1 19758:1 19759:1 19765:2 19787:1 19798:1 19817:1 19822:1 19831:1 19832:1 19842:1 19858:1 19869:1 19887:1 19888:1 19899:1 19909:1 19923:1 19937:1 19938:2 19942:2 19958:2 19960:1 19969:1 19970:2 19991:2 19998:1 19999:4 20011:1 20025:2 20039:1 20059:2 20062:1 20086:2 20119:1 20124:1 20132:1 20152:1 20160:1 20166:1 20172:1 20186:2 20199:3 20203:1 20210:1 20240:1 20262:1 20268:1 20272:1 20282:1 20297:5 20307:1 20309:1 20313:1 20320:1 20333:2 20334:2 20374:1 20390:1 20399:1 20400:1 20409:1 20413:1 20421:1 20438:1 20455:1 20461:1 20485:1 20508:1 20514:1 20541:1 20554:1 20565:1 20572:1 20577:1 20640:2 20652:1 20695:1 20717:1 20742:3 20750:2 20754:1 20770:1 20802:1 20818:1 20827:1 20835:3 20837:1 20840:1 20841:1 20868:1 20870:1 20888:4 20891:1 20893:1 20929:1 20941:1 20963:1 20991:1 21000:2 21004:1 21006:1 21066:2 21070:1 21077:2 21109:1 21116:1 21123:1 21132:1 21151:2 21154:1 21194:1 21232:1 21346:1 21392:1 21397:1 21416:2 21432:1 21441:1 21481:1 21483:1 21494:1 21504:2 21529:1 21537:1 21571:1 21582:3 21621:1 21642:2 21689:2 21752:2 21768:1 21769:1 21770:2 21772:1 21778:1 21779:1 21784:3 21795:2 21796:1 21801:2 21812:3 21846:1 21858:1 21859:1 21868:5 21869:3 21872:1 21877:3 21905:1 21925:2 21926:2 21958:1 21961:1 21962:1 22027:1 22032:1 22063:1 22065:1 22082:1 22099:1 22143:1 22188:1 22220:1 22284:1 22295:6 22343:1 22344:1 22346:1 22377:1 22397:1 22426:1 22461:3 22491:4 22506:1 22558:1 22598:1 22600:1 22654:2 22672:1 22676:1 22691:1 22697:1 22702:2 22706:1 22707:1 22742:2 22745:1 22757:1 22759:2 22787:1 22794:1 22795:1 22796:2 22797:1 22801:2 22819:1 22848:1 22862:1 22876:2 22907:1 22919:1 22944:3 22955:1 22969:1 22976:3 22977:2 22993:2 23011:1 23013:1 23023:1 23026:1 23031:2 23035:1 23037:2 23038:1 23083:1 23106:2 23135:1 23162:2 23164:1 23173:1 23179:1 23180:2 23203:1 23238:1 23244:1 23270:1 23291:1 23316:1 23350:2 23376:1 23383:1 23388:1 23410:8 23411:2 23418:1 23458:2 23480:1 23484:1 23507:1 23511:1 23530:1 23533:1 23548:1 23552:3 23566:1 23597:1 23633:1 23643:1 23665:1 23666:2 23691:1 23698:1 23699:1 23703:1 23734:1 23735:1 23760:1 23787:1 23819:1 23837:1 23853:1 23888:1 23905:1 23924:1 23927:1 23937:1 23957:2 23963:1 23968:1 23987:1 24003:1 24016:1 24037:1 24049:1 24053:1 24107:1 24108:1 24109:2 24119:3 24120:2 24121:1 24141:1 24148:1 24149:1 24150:3 24162:1 24164:1 24177:2 24179:2 24190:2 24217:1 24221:5 24230:1 24232:1 24233:1 24251:1 24271:1 24292:1 24295:2 24329:1 24345:1 24361:1 24366:1 24404:1 24412:1 24414:1 24419:1 24427:1 24428:1 24439:1 24443:1 24444:1 24445:1 24455:1 24464:2 24469:1 24479:1 24480:2 24485:1 24486:1 24488:1 24489:1 24495:1 24502:1 24503:1 24511:1 24515:1 24548:1 24552:1 24588:1 24596:1 24615:1 24644:1 24658:1 24665:1 24684:1 24709:1 24729:1 24745:1 24751:1 24767:1 24769:1 24771:1 24775:1 24777:1 24816:1 24818:1 24868:1 24899:1 24905:2 24917:1 24949:1 24952:1 24962:1 25022:5 25027:1 25031:1 25036:1 25037:2 25044:1 25054:1 25069:1 25075:1 25083:1 25093:1 25096:1 25110:8 25112:1 25116:1 25137:1 25141:3 25159:1 25215:1 25251:3 25260:1 25276:1 25278:4 25282:1 25287:1 25290:1 25296:1 25310:1 25312:1 25316:1 25324:1 25327:2 25334:1 25342:1 25348:1 25351:1 25363:4 25364:1 25382:1 25400:1 25433:1 25456:2 25457:1 25459:1 25460:2 25462:1 25477:1 25495:1 25515:2 25519:1 25525:1 25527:3 25540:3 25542:1 25555:1 25583:1 25584:1 25602:1 25619:1 25624:1 25647:1 25679:1 25717:1 25741:1 25746:1 25753:1 25755:1 25770:2 25777:1 25779:1 25851:1 25854:1 25860:1 25880:1 25883:1 25901:2 25912:1 25915:1 25917:1 25956:1 25960:1 25971:1 25987:1 25992:1 26011:1 26027:2 26050:1 26059:1 26070:1 26076:1 26091:1 26098:1 26122:1 26125:2 26128:3 26150:1 26163:3 26205:1 26209:1 26215:1 26224:1 26226:1 26227:1 26228:1 26231:3 26239:2 26241:2 26242:1 26244:1 26246:1 26250:3 26252:1 26264:1 26270:1 26279:2 26299:1 26318:1 26325:1 26330:1 26340:1
7 10:1 21:1 38:1 73:1 83:1 110:1 116:1 155:4 164:4 182:2 193:2 200:1 207:1 215:2 218:2 234:1 248:1 260:1 274:1 276:1 294:2 310:1 327:2 345:1 347:1 360:1 391:1 402:1 407:1 410:1 429:1 437:1 441:1 501:1 508:1 510:3 538:2 553:1 603:5 605:1 613:1 626:1 667:1 675:1 676:1 722:1 726:3 728:1 746:1 750:3 769:1 781:1 782:2 801:1 807:3 810:1 841:1 842:1 845:1 854:1 877:1 882:1 890:1 962:1 971:2 982:3 984:1 1021:1 1052:1 1054:1 1076:1 1081:1 1083:1 1104:1 1168:3 1203:1 1211:1 1235:1 1241:1 1242:1 1245:1 1272:1 1276:1 1279:1 1287:1 1345:2 1386:1 1394:2 1424:1 1436:1 1439:2 1444:1 1449:1 1450:3 1451:1 1466:2 1495:1 1528:1 1538:1 1539:2 1541:2 1579:1 1581:3 1593:1 1596:1 1605:3 1611:1 1628:2 1639:1 1653:2 1672:1 1704:1 1705:1 1719:1 1721:1 1731:2 1738:2 1758:1 1788:1 1789:1 1790:1 1796:1 1815:4 1827:1 1836:1 1848:4 1868:1 1879:2 1884:1 1888:1 1924:1 1927:2 1930:5 1941:1 1943:1 1952:1 1964:1 1967:6 1968:1 1970:1 1973:2 1974:1 1978:4 1981:2 1982:1 1986:1 1990:3 1997:2 2000:1 2002:3 2004:1 2044:1 2053:1 2064:1 2070:1 2078:1 2086:1 2091:2 2099:1 2116:1 2145:1 2155:1 2172:1 2181:1 2210:1 2222:1 2223:1 2237:1 2241:1 2247:1 2273:1 2316:1 2355:1 2357:1 2364:1 2378:1 2394:2 2398:1 2406:1 2429:1 2431:2 2445:1 2446:1 2450:3 2453:3 2460:4 2466:1 2472:1 2500:1 2502:1 2506:1 2508:2 2534:1 2545:4 2579:2 2587:1 2590:18 2605:1 2617:1 2650:1 2667:1 2696:1 2711:1 2752:1 2760:2 2767:1 2843:1 2858:1 2868:1 2869:1 2875:1 2893:3 2900:1 2915:1 2918:7 2948:2 2977:1 2982:2 3024:1 3037:1 3038:1 3046:1 3084:1 3091:2 3106:1 3124:1 3153:1 3155:2 3159:2 3167:1 3169:1 3181:1 3187:1 3189:1 3191:1 3205:1 3231:1 3235:2 3236:1 3238:2 3239:1 3253:1 3276:1 3332:1 3362:1 3365:1 3395:1 3421:2 3422:1 3432:1 3435:1 3443:1 3450:1 3453:1 3461:1 3467:1 3474:1 3481:1 3504:2 3511:2 3518:1 3529:2 3537:1 3575:1 3613:1 3617:4 3622:1 3661:2 3671:1 3682:1 3683:1 3698:1 3706:3 3711:2 3715:1 3732:1 3733:1 3752:1 3763:1 3782:1 3789:1 3791:1 3793:1 3805:2 3817:2 3843:2 3851:1 3891:1 3897:1 3899:1 3916:1 3922:1 3942:1 3944:1 3997:4 4004:1 4011:1 4021:1 4022:1 4028:1 4035:1 4036:1 4082:1 4096:2 4097:2 4098:1 4113:1 4120:1 4123:2 4130:1 4136:1 4140:1 4148:1 4193:1 4204:1 4215:1 4247:1 4250:1 4284:2 4296:1 4305:16 4308:1 4323:1 4339:1 4376:1 4414:2 4429:3 4430:5 4433:1 4436:1 4437:2 4441:1 4443:1 4449:1 4455:1 4456:2 4457:2 4459:1 4484:4 4533:1 4536:1 4564:1 4573:1 4597:1 4602:4 4625:2 4652:1 4674:1 4702:1 4703:1 4709:1 4719:1 4726:1 4733:1 4742:1 4744:1 4756:1 4765:1 4766:1 4812:1 4888:2 4897:1 4919:1 4922:1 4925:2 4953:1 4970:2 4979:1 5006:1 5010:1 5020:1 5052:1 5053:1 5065:1 5068:2 5071:1 5081:2 5126:1 5203:1 5225:1 5275:1 5306:1 5319:2 5322:2 5351:1 5379:1 5395:1 5408:1 5412:1 5441:5 5452:1 5470:1 5478:1 5499:1 5516:1 5542:5 5566:4 5581:4 5585:1 5586:1 5600:2 5617:3 5618:1 5625:3 5627:2 5631:1 5636:2 5637:1 5638:2 5640:1 5645:2 5647:2 5661:1 5673:1 5732:1 5756:1 5767:1 5769:1 5782:1 5797:1 5800:1 5810:1 5813:2 5818:1 5847:3 5886:1 5890:1 5901:1 5918:2 5987:1 5990:2 6009:4 6010:2 6043:1 6098:1 6102:1 6105:2 6106:1 6108:1 6111:1 6117:2 6135:1 6138:1 6152:1 6170:1 6178:1 6186:1 6188:1 6230:1 6246:2 6282:2 6284:1 6320:2 6322:1 6326:1 6328:1 6330:1 6336:1 6338:1 6345:1 6356:1 6385:1 6459:1 6460:1 6490:1 6502:1 6514:2 6515:1 6519:1 6544:1 6552:1 6561:1 6571:1 6589:3 6603:1 6614:1 6621:1 6624:3 6632:1 6633:1 6638:1 6649:1 6653:1 6680:1 6702:2 6712:1 6723:2 6729:1 6740:3 6741:1 6761:1 6803:26 6822:1 6824:17 6872:1 6891:1 6957:1 6974:1 6979:1 6986:3 6990:1 6997:1 7004:1 7036:1 7072:1 7083:1 7093:1 7104:1 7126:1 7151:1 7152:1 7180:2 7194:1 7201:1 7205:1 7219:11 7246:2 7254:1 7274:2 7297:1 7303:1 7315:3 7337:1 7358:1 7363:2 7379:2 7382:2 7391:1 7399:1 7416:2 7420:1 7436:1 7438:1 7439:1 7462:1 7503:2 7534:1 7536:1 7538:2 7539:2 7542:1 7549:2 7565:1 7570:1 7589:1 7610:2 7611:5 7628:2 7644:1 7651:1 7670:1 7673:1 7683:1 7688:1 7697:2 7700:2 7714:1 7725:1 7741:1 7767:1 7790:2 7795:1 7807:1 7815:2 7835:3 7837:2 7855:1 7910:1 7937:2 7960:1 7966:2 8021:1 8028:5 8033:1 8071:1 8090:2 8104:1 8158:2 8167:1 8169:1 8170:1 8175:1 8178:1 8179:1 8180:1 8201:1 8232:2 8275:1 8277:1 8309:1 8322:2 8326:1 8342:1 8377:2 8378:1 8383:1 8411:2 8432:3 8440:1 8455:1 8476:1 8483:2 8498:2 8499:2 8510:2 8534:1 8550:1 8561:1 8563:1 8601:3 8616:1 8624:1 8628:1 8631:1 8657:1 8660:1 8664:1 8678:1 8687:1 8730:1 8740:1 8747:1 8748:1 8752:1 8755:1 8769:1 8785:1 8824:1 8825:1 8828:1 8839:1 8872:1 8877:1 8882:1 8909:3 8911:1 8914:1 8917:2 8929:2 8944:1 8946:1 8956:2 8959:1 8964:1 8965:2 8970:1 8973:1 8989:1 8993:1 8996:1 9033:1 9044:2 9056:2 9058:1 9061:1 9070:1 9075:1 9085:1 9110:1 9113:2 9117:1 9126:1 9167:1 9216:1 9220:1 9255:1 9264:1 9285:1 9288:1 9292:1 9293:1 9312:1 9318:1 9322:1 9344:1 9353:1 9374:3 9376:1 9419:1 9464:1 9473:3 9490:1 9506:1 9524:1 9529:1 9532:1 9534:1 9535:1 9606:1 9611:1 9627:1 9645:1 9660:1 9664:1 9697:1 9708:1 9712:6 9718:1 9736:1 9754:1 9778:1 9791:1 9803:2 9808:1 9831:1 9835:1 9837:1 9870:1 9894:1 9900:1 9912:1 9943:1 9946:1 9968:3 9992:1 9995:1 10040:1 10082:1 10087:1 10093:1 10098:2 10103:1 10109:1 10132:1 10133:4 10166:1 10182:1 10192:1 10195:1 10204:1 10207:1 10249:2 10274:2 10278:1 10318:1 10320:1 10338:1 10341:2 10360:1 10362:1 10367:1 10368:2 10370:1 10377:1 10379:3 10381:2 10382:1 10383:3 10384:1 10387:2 10388:1 10401:3 10407:1 10411:1 10427:1 10428:1 10429:1 10442:1 10460:1 10464:3 10481:1 10487:1 10502:1 10513:1 10514:1 10518:4 10523:1 10530:1 10570:1 10572:1 10592:1 10597:1 10605:1 10639:3 10665:1 10681:4 10684:1 10694:4 10704:1 10716:1 10729:1 10745:1 10764:1 10774:1 10782:1 10788:2 10800:1 10801:1 10813:1 10865:1 10875:2 10941:1 10942:1 10953:1 10974:1 11003:1 11087:2 11093:1 11105:2 11112:1 11115:1 11116:1 11170:1 11174:1 11203:1 11228:1 11239:1 11261:5 11283:1 11305:2 11307:2 11314:1 11316:1 11317:1 11332:1 11353:1 11362:1 11373:1 11376:1 11396:1 11398:1 11403:1 11426:1 11427:2 11431:2 11432:1 11433:1 11445:1 11460:1 11479:1 11491:1 11495:2 11496:1 11514:1 11539:1 11569:1 11570:1 11588:1 11616:2 11632:3 11663:1 11694:1 11702:1 11714:1 11733:1 11761:1 11778:3 11779:2 11790:1 11797:1 11805:2 11832:1 11848:1 11865:3 11918:1 11935:1 11938:1 11975:2 11988:1 11992:3 12000:2 12018:2 12029:1 12069:1 12073:1 12096:3 12098:1 12099:1 12112:2 12114:1 12117:1 12120:1 12122:2 12167:1 12193:1 12199:2 12217:2 12219:2 12225:1 12238:2 12239:2 12277:2 12279:1 12281:1 12285:1 12293:1 12309:1 12318:1 12351:1 12354:1 12364:2 12381:1 12390:1 12405:1 12410:1 12423:2 12456:1 12459:1 12488:2 12504:1 12528:1 12542:1 12545:1 12550:2 12556:1 12563:1 12568:1 12584:1 12642:1 12657:1 12672:1 12673:1 12686:1 12695:1 12697:3 12707:1 12712:1 12734:1 12789:1 12794:1 12816:1 12817:1 12826:1 12831:1 12840:3 12844:1 12846:1 12853:1 12897:1 12920:1 12933:1 12936:1 12947:1 12951:1 12958:1 12980:1 12987:1 12996:1 13008:1 13021:1 13027:1 13053:1 13086:1 13093:1 13098:1 13102:1 13120:1 13132:1 13147:1 13165:1 13182:1 13200:1 13219:1 13232:1 13234:2 13257:1 13258:1 13261:1 13316:1 13349:1 13379:1 13402:1 13414:1 13421:1 13426:1 13428:1 13440:1 13452:1 13466:1 13481:1 13488:1 13505:1 13507:1 13532:1 13545:1 13549:1 13551:1 13577:1 13598:2 13615:1 13625:1 13626:4 13637:2 13647:1 13663:1 13673:2 13686:3 13700:1 13704:1 13726:3 13733:1 13734:6 13740:2 13744:1 13764:1 13775:3 13810:1 13821:1 13833:1 13840:1 13870:1 13872:1 13875:1 13876:2 13886:1 13895:1 13897:2 13898:1 13899:2 13900:2 13909:1 13910:1 13916:1 13932:1 13949:1 13952:2 14014:2 14047:1 14062:1 14069:1 14084:1 14108:1 14143:3 14146:1 14168:1 14174:1 14179:1 14183:1 14193:1 14216:1 14219:1 14226:1 14275:1 14284:2 14293:1 14313:1 14324:1 14327:1 14358:1 14360:1 14367:1 14369:1 14373:1 14374:1 14386:1 14387:2 14389:1 14390:1 14394:4 14412:1 14471:1 14480:1 14481:1 14490:1 14515:1 14516:1 14524:1 14571:1 14578:2 14580:1 14596:2 14608:2 14609:1 14617:1 14621:1 14649:2 14652:1 14654:1 14679:2 14688:1 14694:1 14695:2 14696:1 14700:1 14704:2 14718:1 14720:1 14782:1 14783:1 14786:1 14794:5 14814:1 14823:16 14841:1 14859:1 14864:2 14893:2 14908:2 14913:1 14926:1 14967:1 14976:1 15029:1 15036:1 15043:1 15047:1 15054:1 15064:1 15069:2 15083:1 15109:1 15117:1 15119:1 15153:1 15169:1 15178:3 15196:2 15212:1 15242:1 15267:1 15276:4 15285:1 15297:1 15302:1 15365:1 15380:2 15388:1 15401:2 15406:1 15415:1 15417:1 15419:1 15420:1 15421:1 15441:1 15448:1 15454:1 15458:1 15505:1 15546:1 15550:1 15565:1 15583:1 15642:1 15683:2 15723:1 15738:1 15741:1 15746:1 15795:1 15799:2 15842:1 15860:2 15870:1 15901:1 15914:1 15934:1 15949:1 15967:1 15989:1 16002:1 16003:1 16017:1 16029:2 16037:1 16060:1 16084:1 16112:1 16113:1 16161:1 16162:1 16172:1 16208:1 16216:7 16225:1 16247:1 16265:1 16266:1 16301:7 16309:2 16319:1 16360:1 16374:1 16388:1 16390:1 16409:1 16419:1 16442:1 16444:1 16446:1 16457:1 16472:1 16481:1 16498:1 16508:1567 16509:1 16512:1 16545:2 16559:1 16567:1 16600:1 16604:1 16609:1 16647:3 16670:1 16678:1 16694:1 16703:1 16719:1 16722:1 16735:3 16738:1 16767:1 16787:2 16793:1 16834:2 16871:1 16894:1 16904:1 16914:1 16932:1 16942:1 16987:1 16993:1 16996:1 17002:2 17008:1 17009:1 17017:1 17035:1 17042:1 17054:2 17077:1 17087:3 17092:1 17095:1 17110:1 17123:2 17125:1 17145:1 17151:1 17153:1 17163:1 17165:1 17188:3 17195:2 17202:1 17220:1 17223:1 17236:3 17293:1 17300:1 17327:2 17355:1 17358:1 17359:1 17373:1 17385:1 17402:1 17409:1 17430:1 17437:2 17464:1 17468:1 17480:1 17494:1 17495:1 17500:1 17514:1 17528:1 17530:1 17544:15 17565:1 17589:1 17595:2 17598:1 17615:1 17653:1 17664:1 17665:1 17689:5 17706:1 17715:1 17716:1 17721:1 17739:2 17763:1 17769:4 17781:2 17802:3 17815:1 17822:1 17824:2 17826:1 17834:1 17837:1 17843:1 17845:1 17847:1 17858:1 17873:2 17875:1 17902:1 17931:18 17940:1 17956:1 17960:1 17967:1 17977:1 17991:1 17993:1 18039:1 18047:1 18076:1 18102:1 18153:1 18158:2 18160:1 18193:1 18198:1 18206:1 18212:1 18317:2 18333:1 18357:2 18383:3 18397:1 18430:2 18434:1 18445:2 18447:1 18454:1 18460:1 18463:1 18486:1 18503:1 18507:1 18509:1 18511:2 18519:2 18524:1 18527:13 18534:1 18535:1 18542:2 18544:2 18553:1 18563:2 18571:1 18573:1 18601:1 18619:1 18648:1 18649:1 18692:1 18706:2 18760:2 18762:1 18773:1 18774:1 18777:1 18779:1 18780:1 18781:1 18782:1 18797:2 18800:1 18812:2 18816:1 18823:1 18828:1 18840:1 18848:1 18875:1 18879:1 18917:2 18920:3 18942:1 18946:1 18967:1 18972:1 18979:1 19024:1 19025:1 19032:2 19039:1 19042:1 19056:3 19062:1 19082:1 19105:2 19108:1 19110:1 19120:1 19125:1 19127:1 19128:1 19132:5 19133:1 19139:1 19141:1 19142:1 19174:1 19175:1 19212:1 19219:1 19239:2 19249:1 19275:2 19276:1 19285:1 19296:2 19314:1 19325:1 19332:1 19348:1 19421:1 19422:1 19433:1 19434:2 19436:1 19455:3 19456:1 19459:1 19490:1 19500:1 19535:2 19558:2 19568:1 19575:1 19600:4 19624:2 19630:1 19632:2 19636:1 19638:1 19648:1 19656:1 19665:1 19677:1 19683:2 19685:1 19696:1 19709:1 19725:1 19740:2 19743:1 19748:1 19758:1 19759:1 19765:3 19787:1 19798:1 19817:1 19822:1 19831:1 19832:1 19842:1 19858:1 19869:1 19887:1 19888:1 19899:1 19909:1 19923:1 19937:1 19938:2 19942:2 19958:2 19960:1 19969:1 19970:2 19991:2 19998:1 19999:4 20011:1 20025:2 20039:1 20059:2 20062:1 20086:2 20119:1 20124:1 20132:1 20152:1 20160:1 20166:1 20172:1 20186:2 20199:3 20203:1 20210:1 20240:1 20262:1 20268:1 20272:1 20282:1 20297:5 20307:1 20309:1 20313:1 20320:1 20333:2 20334:2 20374:1 20390:1 20399:1 20400:1 20409:1 20413:1 20421:1 20438:1 20455:1 20461:1 20485:1 20508:1 20514:1 20541:1 20554:1 20565:1 20572:1 20577:1 20640:2 20652:1 20695:2 20713:1 20717:1 20742:3 20750:2 20754:1 20770:1 20802:1 20818:1 20827:1 20835:3 20837:1 20840:1 20841:1 20868:1 20870:1 20888:4 20891:1 20893:1 20929:1 20941:1 20963:1 20991:1 21000:2 21004:1 21006:1 21066:2 21070:1 21075:1 21077:2 21109:1 21116:1 21123:1 21132:1 21151:2 21154:1 21194:1 21232:1 21346:1 21392:1 21397:1 21416:2 21432:1 21441:1 21481:1 21483:1 21494:1 21504:2 21529:1 21537:1 21571:1 21582:3 21621:1 21642:2 21645:1 21689:2 21719:1 21751:1 21752:2 21767:1 21768:1 21769:1 21770:2 21772:1 21778:1 21779:1 21784:4 21795:2 21796:1 21801:2 21812:3 21846:1 21858:1 21859:1 21868:6 21869:3 21872:1 21877:3 21905:1 21925:2 21926:2 21958:1 21961:1 21962:1 21993:1 22027:1 22032:1 22063:1 22065:1 22082:1 22099:1 22143:1 22188:1 22220:1 22284:1 22295:7 22343:1 22344:1 22346:1 22363:1 22377:1 22397:1 22426:1 22461:3 22491:4 22506:1 22558:1 22598:1 22600:1 22654:2 22672:1 22676:1 22691:1 22697:1 22702:2 22706:1 22707:1 22742:2 22745:1 22757:1 22759:2 22787:1 22794:1 22795:1 22796:3 22797:1 22801:2 22819:1 22848:1 22862:1 22876:2 22891:1 22907:1 22919:1 22944:3 22955:1 22969:1 22976:3 22977:3 22993:2 23011:1 23013:1 23023:1 23026:1 23031:2 23035:1 23037:2 23038:1 23083:1 23106:2 23135:1 23162:2 23164:1 23173:1 23179:1 23180:2 23203:1 23238:1 23244:1 23265:1 23270:1 23291:1 23316:1 23350:2 23376:1 23383:1 23388:1 23410:8 23411:2 23418:1 23458:2 23480:1 23484:1 23507:1 23511:1 23530:1 23533:1 23548:1 23552:3 23566:1 23597:1 23633:1 23643:1 23665:1 23666:2 23691:1 23698:1 23699:1 23703:1 23734:1 23735:1 23760:1 23787:1 23819:1 23837:1 23853:1 23888:1 23905:1 23924:1 23927:1 23937:1 23957:2 23963:1 23968:1 23987:1 24003:1 24016:1 24017:1 24037:1 24049:1 24053:1 24107:1 24108:1 24109:2 24119:3 24120:2 24121:1 24141:1 24148:1 24149:1 24150:3 24162:1 24164:1 24177:2 24179:2 24190:2 24217:1 24221:5 24230:1 24232:1 24233:1 24251:1 24271:1 24292:1 24295:2 24329:1 24332:1 24345:1 24361:1 24366:1 24404:1 24412:1 24414:1 24419:1 24427:1 24428:1 24439:1 24443:1 24444:1 24445:1 24455:1 24464:2 24469:1 24476:1 24479:1 24480:2 24485:1 24486:1 24488:1 24489:1 24495:1 24502:1 24503:1 24511:1 24515:1 24548:1 24552:1 24588:1 24596:1 24615:1 24644:1 24658:1 24664:1 24665:2 24684:1 24709:1 24729:1 24745:1 24751:1 24767:2 24769:2 24771:1 24775:1 24777:1 24816:1 24818:1 24868:1 24899:1 24905:2 24917:1 24949:1 24952:1 24962:1 25022:5 25027:1 25031:1 25036:1 25037:2 25044:1 25054:1 25069:1 25075:1 25083:1 25093:1 25096:1 25110:8 25112:1 25116:1 25137:1 25141:3 25159:1 25215:1 25251:3 25260:1 25276:1 25278:4 25282:1 25287:1 25290:1 25296:2 25310:1 25312:1 25316:1 25324:1 25325:1 25327:2 25334:1 25342:1 25348:1 25351:1 25363:4 25364:1 25382:1 25388:1 25400:1 25410:1 25433:1 25456:2 25457:1 25459:1 25460:2 25462:1 25472:1 25477:1 25495:1 25515:2 25519:1 25525:1 25527:3 25540:3 25542:1 25555:1 25583:1 25584:1 25602:1 25619:1 25624:1 25647:1 25679:1 25717:1 25741:1 25746:1 25753:1 25755:1 25770:2 25777:1 25779:1 25851:1 25854:1 25860:1 25880:1 25883:1 25901:2 25912:1 25915:1 25917:1 25956:1 25960:1 25971:1 25987:1 25992:1 26011:1 26027:2 26050:1 26059:1 26070:1 26076:1 26091:1 26098:1 26122:1 26125:2 26128:3 26150:1 26163:3 26205:1 26209:1 26215:1 26224:1 26226:1 26227:1 26228:1 26231:3 26239:2 26241:2 26242:1 26244:1 26246:1 26250:3 26252:1 26264:1 26270:1 26279:2 26299:1 26318:1 26325:1 26330:1 26340:1
7 10:1 21:1 38:1 73:1 83:1 110:1 116:1 155:4 164:4 182:2 193:2 200:1 207:2 215:2 218:2 234:1 248:1 260:1 274:1 276:1 294:2 310:1 327:2 334:1 345:1 347:1 360:1 391:1 402:1 407:1 410:1 429:1 437:1 441:1 501:1 508:1 510:3 538:2 553:1 603:5 605:2 613:1 626:1 651:1 667:1 675:1 676:1 722:1 726:3 728:1 746:1 750:3 769:1 781:1 782:3 801:1 807:3 810:1 841:1 842:1 845:1 854:1 877:1 882:1 890:1 962:1 971:2 982:3 984:1 1021:1 1052:1 1054:1 1076:1 1081:1 1083:1 1104:1 1168:3 1203:1 1211:1 1220:1 1235:1 1241:1 1242:1 1245:1 1272:1 1276:1 1279:3 1287:1 1345:2 1386:1 1394:2 1424:1 1436:1 1439:2 1444:1 1449:1 1450:3 1451:2 1466:2 1495:1 1528:1 1538:1 1539:2 1541:2 1579:1 1581:3 1593:1 1596:1 1605:3 1611:1 1628:2 1639:1 1653:2 1672:1 1704:1 1705:1 1719:1 1721:1 1731:2 1738:2 1758:1 1788:1 1789:1 1790:1 1796:1 1815:4 1827:1 1836:1 1848:5 1868:1 1879:2 1884:1 1888:1 1924:1 1925:1 1927:2 1930:5 1941:1 1943:1 1952:1 1964:1 1967:6 1968:1 1970:1 1973:2 1974:1 1978:4 1981:2 1982:1 1986:1 1990:3 1997:2 2000:1 2002:3 2004:1 2044:1 2053:1 2064:1 2070:1 2078:1 2086:1 2091:2 2099:1 2116:1 2145:1 2155:1 2172:1 2181:1 2210:1 2222:1 2223:1 2232:1 2237:1 2241:1 2247:1 2273:1 2316:1 2355:1 2357:1 2364:1 2378:1 2394:2 2398:1 2406:1 2429:1 2431:2 2445:3 2446:1 2450:3 2453:3 2460:4 2466:1 2472:1 2500:1 2502:1 2506:1 2508:2 2534:1 2545:4 2579:2 2587:1 2590:18 2605:1 2617:1 2650:1 2667:1 2696:1 2711:1 2752:1 2760:2 2767:1 2843:1 2858:1 2868:1 2869:1 2875:1 2893:4 2900:1 2915:1 2918:8 2948:2 2956:1 2977:1 2982:2 3024:1 3037:1 3038:1 3044:1 3046:1 3084:1 3091:2 3106:1 3124:1 3153:1 3155:2 3159:2 3167:1 3169:1 3181:1 3187:1 3189:1 3191:1 3205:1 3231:1 3235:2 3236:1 3238:2 3239:1 3253:1 3276:1 3332:1 3362:1 3365:1 3395:1 3421:2 3422:1 3432:1 3435:1 3443:1 3450:1 3453:1 3461:1 3467:1 3474:1 3481:1 3504:2 3511:2 3518:1 3529:2 3530:1 3537:1 3575:1 3613:1 3617:4 3622:1 3661:2 3671:1 3682:1 3683:1 3698:2 3706:3 3711:2 3715:1 3732:1 3733:1 3746:1 3752:1 3763:1 3782:1 3789:1 3791:1 3793:1 3805:2 3817:2 3843:2 3851:1 3869:1 3891:1 3897:2 3899:1 3916:1 3922:1 3942:1 3944:1 3997:4 4004:1 4011:1 4021:1 4022:1 4028:1 4035:1 4036:1 4082:1 4096:2 4097:2 4098:1 4113:1 4120:1 4123:2 4130:1 4136:1 4140:1 4148:1 4193:1 4204:1 4215:1 4247:1 4250:1 4284:2 4296:1 4305:17 4308:1 4323:1 4339:1 4342:1 4376:1 4414:2 4429:3 4430:6 4433:1 4436:1 4437:2 4441:1 4443:1 4449:1 4455:1 4456:2 4457:2 4459:1 4484:4 4533:1 4536:1 4564:1 4573:1 4597:1 4602:4 4625:2 4652:1 4674:1 4702:1 4703:1 4709:1 4719:1 4726:1 4733:1 4742:1 4744:1 4756:1 4765:1 4766:1 4812:1 4881:1 4888:2 4897:1 4919:1 4922:1 4925:2 4953:1 4970:2 4979:1 5006:1 5010:1 5020:1 5052:1 5053:1 5065:1 5068:2 5071:1 5081:2 5126:2 5203:1 5220:1 5225:1 5275:1 5306:1 5319:2 5322:2 5351:1 5379:1 5395:1 5408:1 5412:1 5424:1 5441:5 5452:1 5470:1 5478:1 5499:1 5516:1 5542:5 5566:4 5581:4 5585:1 5586:1 5600:2 5617:3 5618:1 5625:4 5627:2 5631:1 5632:1 5636:2 5637:1 5638:2 5640:1 5645:2 5647:2 5661:1 5673:1 5732:1 5756:1 5767:1 5769:1 5782:1 5797:1 5800:1 5810:1 5813:2 5818:1 5847:3 5886:1 5890:1 5901:1 5918:2 5987:1 5990:3 6009:4 6010:2 6043:1 6098:1 6102:1 6105:2 6106:1 6108:1 6111:1 6117:2 6135:1 6138:1 6152:1 6170:1 6178:1 6186:1 6188:1 6230:1 6246:2 6282:2 6284:1 6320:2 6322:1 6326:1 6328:1 6330:1 6336:1 6338:1 6345:1 6356:1 6381:1 6385:1 6413:1 6459:1 6460:1 6490:1 6502:1 6514:2 6515:1 6519:1 6544:1 6552:2 6561:1 6571:1 6589:3 6603:1 6614:1 6621:1 6624:3 6632:1 6633:1 6638:1 6649:1 6653:1 6680:1 6702:2 6712:1 6723:3 6729:1 6740:3 6741:1 6761:1 6803:26 6822:1 6824:17 6872:1 6891:2 6957:1 6974:1 6979:1 6986:3 6990:1 6997:1 7004:1 7010:1 7036:1 7072:1 7083:1 7093:1 7104:1 7126:1 7151:1 7152:1 7180:2 7194:1 7201:1 7205:1 7219:12 7246:2 7254:1 7274:3 7297:1 7303:1 7315:3 7337:1 7348:1 7358:1 7363:2 7379:2 7382:2 7391:1 7399:1 7416:2 7420:1 7436:1 7438:1 7439:1 7462:1 7503:2 7534:1 7536:1 7538:2 7539:2 7542:1 7549:2 7565:1 7570:1 7589:1 7610:3 7611:5 7628:2 7644:1 7651:1 7670:1 7673:1 7683:1 7688:1 7697:2 7700:2 7714:1 7725:1 7741:1 7767:1 7790:2 7795:1 7807:1 7815:2 7835:3 7837:2 7855:1 7872:1 7910:1 7937:2 7960:1 7966:2 8021:2 8028:5 8033:1 8071:1 8090:2 8104:1 8158:2 8167:1 8169:1 8170:1 8175:1 8178:1 8179:1 8180:1 8201:1 8232:2 8253:1 8275:1 8277:1 8309:1 8322:2 8326:1 8342:1 8377:2 8378:1 8383:1 8411:2 8432:3 8440:1 8455:1 8476:1 8483:2 8498:2 8499:2 8510:2 8534:1 8550:1 8561:1 8563:1 8601:3 8616:1 8624:1 8628:1 8631:1 8657:1 8660:1 8664:1 8678:1 8687:1 8730:1 8740:1 8747:1 8748:1 8752:1 8755:1 8769:1 8785:1 8824:1 8825:1 8828:1 8839:1 8872:1 8877:1 8882:1 8909:3 8911:1 8914:1 8917:2 8929:2 8944:1 8946:1 8956:3 8959:1 8964:1 8965:2 8970:1 8973:1 8989:1 8993:1 8996:1 9033:1 9044:2 9056:2 9058:1 9061:1 9070:1 9075:1 9085:1 9110:1 9113:2 9117:1 9126:1 9167:1 9216:1 9220:1 9255:1 9264:1 9285:1 9288:1 9292:1 9293:1 9312:1 9318:1 9322:1 9344:1 9353:1 9374:3 9376:1 9419:1 9464:1 9473:3 9490:1 9506:1 9524:1 9529:1 9532:1 9534:1 9535:1 9606:1 9611:1 9627:1 9645:1 9660:1 9661:1 9664:1 9697:1 9708:1 9712:7 9718:1 9736:1 9754:1 9778:1 9791:1 9803:2 9808:1 9831:1 9835:1 9837:1 9870:1 9894:1 9900:1 9912:1 9943:1 9946:1 9968:3 9992:1 9995:1 10040:1 10066:1 10082:1 10087:1 10093:1 10098:2 10103:1 10109:1 10132:1 10133:4 10166:1 10182:1 10187:1 10192:1 10195:1 10204:1 10207:1 10249:2 10251:1 10274:2 10278:1 10318:2 10320:1 10338:1 10341:2 10360:2 10362:1 10367:1 10368:2 10370:1 10377:1 10379:3 10381:2 10382:1 10383:3 10384:1 10387:2 10388:1 10401:3 10407:1 10411:1 10427:1 10428:1 10429:1 10442:1 10460:1 10464:3 10481:1 10487:1 10502:1 10513:1 10514:1 10518:4 10523:1 10530:1 10570:1 10572:1 10592:1 10597:1 10605:1 10639:3 10665:1 10681:4 10684:1 10694:4 10704:1 10716:1 10729:1 10745:1 10764:1 10774:1 10782:1 10788:2 10800:1 10801:1 10813:1 10838:1 10865:1 10875:2 10941:1 10942:1 10953:1 10974:1 11003:1 11011:1 11063:1 11087:2 11093:1 11105:2 11112:1 11115:1 11116:1 11170:1 11174:1 11203:1 11228:1 11233:1 11239:1 11261:5 11283:1 11294:1 11305:2 11307:2 11314:1 11316:1 11317:1 11332:1 11353:2 11362:1 11373:1 11376:1 11396:1 11398:1 11403:1 11426:1 11427:2 11431:2 11432:1 11433:1 11445:1 11460:1 11479:1 11491:1 11495:2 11496:1 11506:1 11514:1 11539:1 11569:1 11570:1 11588:1 11616:2 11632:3 11663:1 11694:1 11702:1 11714:1 11733:1 11761:1 11767:1 11778:3 11779:2 11790:1 11797:1 11805:2 11832:1 11848:1 11865:3 11918:1 11935:1 11938:1 11975:2 11988:1 11992:3 12000:2 12018:2 12029:1 12069:1 12073:1 12096:3 12098:1 12099:1 12112:2 12114:1 12117:1 12120:1 12122:2 12167:1 12193:2 12199:3 12217:2 12219:2 12225:1 12238:2 12239:2 12277:2 12279:1 12281:1 12285:1 12293:1 12309:1 12318:1 12351:1 12354:1 12364:2 12381:1 12390:1 12405:1 12410:1 12423:2 12456:1 12459:1 12481:1 12488:2 12504:1 12528:1 12542:1 12545:1 12550:2 12556:1 12563:1 12568:1 12584:1 12642:1 12657:1 12672:1 12673:1 12686:1 12695:1 12697:3 12706:1 12707:1 12712:1 12734:1 12789:1 12794:1 12816:1 12817:1 12826:1 12831:1 12837:1 12840:3 12844:1 12846:1 12853:1 12897:1 12920:1 12933:1 12936:1 12947:1 12951:1 12958:1 12980:1 12987:1 12994:1 12996:1 13008:1 13021:1 13027:1 13053:1 13086:1 13093:1 13098:1 13102:1 13120:1 13132:1 13147:1 13165:1 13182:1 13200:1 13219:1 13232:1 13234:2 13257:1 13258:1 13261:1 13316:1 13319:1 13349:1 13379:1 13402:1 13414:1 13421:1 13426:1 13428:1 13440:1 13452:1 13466:1 13481:1 13488:1 13505:2 13507:1 13532:1 13545:1 13549:1 13551:1 13577:1 13598:2 13615:1 13625:1 13626:4 13637:2 13647:1 13663:1 13673:2 13686:3 13700:1 13704:1 13726:3 13733:1 13734:6 13740:2 13744:1 13764:1 13775:3 13810:1 13821:1 13833:1 13840:1 13870:1 13872:1 13875:1 13876:2 13886:1 13895:1 13897:2 13898:1 13899:2 13900:2 13909:1 13910:1 13916:1 13932:1 13949:1 13952:2 13991:1 14014:2 14047:1 14062:1 14069:1 14084:1 14108:1 14143:3 14146:1 14168:1 14174:1 14179:1 14183:1 14193:1 14216:1 14219:1 14226:1 14275:1 14284:2 14293:1 14313:1 14324:1 14327:1 14358:1 14360:1 14367:1 14369:1 14373:1 14374:1 14386:1 14387:2 14389:1 14390:1 14394:4 14399:1 14412:1 14471:1 14480:1 14481:1 14490:1 14515:1 14516:1 14524:1 14571:1 14578:2 14580:1 14596:3 14608:2 14609:1 14617:2 14621:1 14649:2 14652:2 14654:1 14679:2 14688:1 14694:1 14695:2 14696:1 14700:1 14704:2 14718:1 14720:1 14782:1 14783:1 14786:1 14794:5 14814:1 14823:16 14841:1 14859:1 14864:2 14893:2 14908:2 14913:1 14926:1 14967:1 14976:1 15029:1 15036:1 15043:1 15047:1 15054:1 15057:1 15064:1 15069:3 15083:1 15109:1 15117:1 15119:1 15153:1 15156:1 15169:1 15178:3 15196:2 15212:1 15242:1 15267:1 15276:4 15285:1 15297:1 15302:2 15365:1 15380:2 15386:1 15388:1 15401:2 15406:1 15415:1 15417:1 15419:1 15420:1 15421:1 15441:1 15448:1 15454:1 15458:1 15505:1 15546:1 15550:1 15556:1 15565:1 15583:1 15642:1 15644:1 15683:2 15723:1 15738:1 15741:1 15746:1 15748:1 15795:1 15799:2 15842:1 15860:2 15870:1 15901:1 15914:2 15934:1 15949:1 15967:1 15988:1 15989:1 16002:1 16003:1 16017:1 16029:2 16037:1 16060:1 16084:1 16112:1 16113:1 16161:1 16162:1 16172:1 16208:1 16216:7 16225:1 16247:1 16265:1 16266:1 16301:8 16309:3 16319:1 16360:1 16374:1 16388:1 16390:1 16409:1 16419:1 16442:1 16444:1 16446:1 16457:1 16472:1 16481:1 16498:1 16508:1613 16509:1 16512:1 16545:2 16559:1 16567:1 16600:1 16604:1 16609:1 16647:3 16670:1 16678:2 16694:1 16703:1 16719:1 16722:2 16735:3 16738:1 16767:1 16787:2 16793:1 16796:1 16834:2 16871:1 16894:1 16904:1 16914:1 16932:1 16942:1 16951:1 16987:1 16993:1 16996:1 17002:2 17008:1 17009:1 17017:1 17035:1 17042:1 17054:2 17065:1 17077:1 17087:3 17092:1 17095:1 17110:1 17123:2 17125:1 17145:1 17151:1 17153:1 17157:1 17163:1 17165:1 17188:5 17195:3 17202:1 17220:2 17223:1 17236:3 17288:1 17293:1 17295:1 17300:1 17327:2 17337:1 17355:1 17358:1 17359:1 17373:1 17385:1 17402:1 17409:1 17430:1 17437:2 17464:1 17468:1 17480:1 17494:1 17495:1 17500:1 17514:1 17528:1 17530:1 17544:15 17565:1 17589:1 17595:2 17598:1 17615:1 17653:1 17664:1 17665:1 17689:5 17706:1 17715:1 17716:1 17721:1 17739:2 17763:1 17769:4 17775:1 17781:2 17802:3 17815:1 17822:1 17824:2 17826:1 17834:1 17837:1 17843:1 17845:1 17847:1 17858:1 17873:2 17875:1 17902:1 17931:18 17940:1 17956:1 17960:1 17967:1 17977:1 17991:1 17993:1 18039:1 18047:1 18076:1 18102:1 18153:2 18154:1 18158:2 18160:2 18193:1 18198:1 18206:1 18212:1 18317:2 18333:1 18357:2 18383:3 18397:1 18430:2 18434:1 18445:2 18447:1 18454:1 18460:1 18463:1 18486:1 18503:1 18507:1 18509:1 18511:2 18519:2 18524:1 18527:13 18534:1 18535:1 18542:2 18544:3 18553:1 18563:2 18571:1 18573:1 18601:1 18619:1 18648:1 18649:1 18692:2 18706:2 18760:2 18762:1 18773:1 18774:1 18777:1 18779:1 18780:2 18781:1 18782:1 18797:2 18800:1 18812:2 18816:1 18823:1 18828:1 18840:1 18848:1 18875:1 18879:1 18917:3 18920:4 18942:1 18946:1 18967:1 18972:1 18979:1 18996:1 19024:1 19025:1 19032:2 19039:1 19042:1 19056:5 19062:1 19082:1 19105:2 19108:1 19110:1 19120:1 19125:1 19127:1 19128:1 19132:5 19133:1 19139:1 19141:1 19142:1 19174:1 19175:1 19197:1 19212:1 19219:1 19239:2 19249:1 19275:2 19276:1 19285:1 19296:2 19314:1 19325:1 19332:1 19348:1 19421:1 19422:1 19433:1 19434:3 19436:1 19455:3 19456:1 19459:1 19467:1 19490:1 19500:1 19535:2 19558:2 19568:1 19575:1 19600:4 19624:2 19630:1 19632:2 19636:1 19638:1 19644:1 19648:1 19656:1 19665:1 19677:1 19683:2 19685:1 19696:1 19709:1 19725:1 19740:2 19743:1 19748:1 19758:1 19759:1 19765:4 19787:1 19798:1 19817:1 19822:1 19831:1 19832:1 19842:1 19858:1 19869:1 19887:1 19888:1 19899:1 19909:1 19921:1 19923:1 19937:1 19938:2 19942:2 19958:2 19960:1 19969:1 19970:2 19991:2 19998:1 19999:4 20011:1 20025:2 20039:1 20059:2 20062:1 20086:2 20119:1 20124:1 20132:1 20152:1 20160:1 20166:1 20172:1 20186:2 20199:3 20203:1 20204:1 20210:1 20240:1 20262:1 20268:1 20272:1 20282:1 20297:5 20307:1 20309:1 20313:1 20320:1 20333:2 20334:2 20374:1 20390:1 20399:1 20400:1 20409:1 20413:1 20421:1 20438:1 20455:1 20461:1 20485:1 20508:1 20514:1 20541:1 20554:1 20565:1 20572:1 20577:1 20640:2 20652:1 20695:2 20713:1 20717:1 20742:3 20750:2 20754:1 20770:1 20802:1 20818:1 20827:1 20835:3 20837:1 20840:1 20841:1 20868:1 20870:1 20888:4 20891:1 20893:1 20929:1 20941:1 20963:1 20975:1 20991:1 21000:2 21004:1 21006:1 21066:2 21070:1 21075:1 21077:2 21109:1 21116:1 21123:1 21132:1 21151:2 21154:1 21194:1 21232:1 21311:1 21346:1 21392:1 21397:1 21416:2 21432:1 21441:1 21451:1 21481:1 21483:1 21494:1 21504:2 21529:1 21537:2 21571:1 21582:3 21621:1 21642:2 21645:1 21689:2 21719:1 21751:1 21752:2 21767:1 21768:1 21769:1 21770:2 21772:1 21778:1 21779:1 21784:4 21795:2 21796:1 21801:2 21812:3 21846:1 21858:1 21859:1 21868:7 21869:3 21872:1 21877:3 21905:1 21925:2 21926:2 21958:1 21961:1 21962:1 21993:1 22027:1 22032:1 22063:1 22065:1 22082:1 22099:1 22143:1 22188:1 22220:1 22284:1 22295:8 22343:1 22344:1 22346:1 22363:1 22377:1 22397:1 22410:1 22426:1 22461:4 22491:4 22506:1 22558:1 22598:1 22600:1 22654:2 22672:1 22676:1 22691:1 22697:1 22702:2 22706:1 22707:1 22742:2 22745:1 22757:1 22759:2 22787:1 22794:1 22795:1 22796:3 22797:1 22801:2 22819:1 22848:1 22862:1 22876:2 22891:1 22907:1 22919:1 22944:3 22955:1 22969:1 22976:3 22977:4 22993:2 23011:1 23013:1 23023:1 23026:1 23031:2 23035:1 23037:2 23038:1 23083:1 23106:2 23111:1 23135:1 23162:2 23164:1 23173:1 23179:1 23180:2 23203:1 23209:1 23238:1 23244:1 23265:1 23270:1 23291:1 23316:1 23350:2 23376:1 23383:1 23388:1 23410:9 23411:2 23418:1 23458:2 23480:1 23484:1 23507:1 23511:1 23520:1 23530:1 23533:1 23548:1 23552:3 23566:1 23597:1 23633:1 23643:1 23665:1 23666:2 23691:1 23698:1 23699:1 23703:1 23734:1 23735:1 23760:1 23787:1 23819:1 23837:1 23853:1 23888:1 23905:1 23924:1 23927:1 23937:1 23957:2 23963:1 23968:1 23987:1 24003:1 24016:1 24017:2 24037:1 24049:1 24053:1 24107:1 24108:1 24109:2 24119:3 24120:2 24121:1 24141:2 24148:1 24149:1 24150:3 24162:1 24164:1 24177:2 24179:2 24190:2 24217:1 24221:5 24230:2 24232:1 24233:1 24251:1 24271:1 24292:2 24295:2 24329:1 24332:1 24345:1 24361:1 24366:2 24404:1 24412:1 24414:1 24419:1 24427:1 24428:1 24439:1 24443:1 24444:1 24445:1 24455:1 24464:2 24469:1 24474:1 24476:1 24479:1 24480:2 24485:1 24486:1 24488:1 24489:1 24495:1 24502:1 24503:1 24508:1 24511:1 24515:1 24548:1 24552:1 24588:1 24596:1 24615:1 24644:1 24658:1 24664:1 24665:2 24684:1 24709:1 24729:1 24745:1 24751:1 24767:2 24769:2 24771:1 24775:1 24777:1 24816:1 24818:1 24868:1 24899:1 24905:2 24917:1 24949:1 24952:1 24962:1 24986:1 25022:5 25027:1 25031:1 25036:1 25037:2 25044:1 25054:1 25069:1 25075:1 25083:1 25093:1 25096:1 25110:8 25112:1 25116:1 25137:1 25141:3 25159:1 25215:1 25251:3 25260:1 25276:1 25278:4 25282:1 25287:1 25290:1 25296:2 25310:1 25312:1 25316:1 25324:1 25325:1 25327:2 25334:1 25342:1 25348:1 25351:1 25363:4 25364:1 25382:1 25388:1 25400:1 25410:1 25433:1 25456:2 25457:2 25459:1 25460:2 25462:1 25472:1 25477:1 25495:1 25514:1 25515:2 25519:1 25525:1 25527:3 25540:3 25542:1 25555:1 25583:1 25584:1 25602:1 25619:1 25624:1 25647:1 25679:1 25717:1 25741:1 25746:1 25753:1 25755:1 25770:2 25777:1 25779:1 25851:1 25854:1 25860:1 25880:1 25883:1 25901:2 25912:1 25915:1 25917:1 25956:1 25960:1 25971:1 25987:1 25992:2 26011:1 26027:2 26050:1 26059:1 26070:1 26076:1 26091:1 26098:1 26122:1 26125:2 26128:3 26150:1 26163:3 26175:1 26205:1 26209:1 26215:1 26224:1 26226:1 26227:1 26228:1 26231:3 26239:2 26241:2 26242:1 26244:1 26246:1 26250:3 26252:1 26264:1 26270:1 26279:2 26299:1 26318:1 26325:1 26330:1 26340:1
7 10:1 21:1 38:1 73:1 83:1 110:1 116:1 155:4 164:4 182:2 193:2 200:1 207:2 215:2 218:2 234:1 248:1 260:1 274:1 276:1 294:2 310:1 327:2 334:1 345:1 347:1 360:1 391:1 402:1 407:1 410:1 429:1 437:1 441:1 501:1 508:1 510:3 538:3 553:1 603:5 605:2 613:1 626:1 651:1 667:1 675:1 676:1 722:1 726:4 728:1 746:1 750:3 769:1 781:1 782:3 801:1 807:3 810:1 841:1 842:2 845:1 854:1 877:1 882:1 890:1 933:1 962:2 971:2 982:3 984:1 1021:1 1052:1 1054:1 1071:2 1076:1 1081:1 1083:1 1104:1 1168:3 1203:1 1211:1 1220:1 1224:1 1235:1 1241:1 1242:1 1245:1 1272:1 1276:1 1279:3 1287:1 1345:2 1386:1 1394:2 1424:1 1426:1 1436:1 1439:2 1444:1 1449:1 1450:3 1451:3 1466:2 1467:1 1495:1 1528:1 1538:1 1539:2 1541:2 1579:1 1581:3 1593:1 1596:1 1605:4 1611:1 1628:2 1639:1 1653:2 1656:1 1672:1 1704:1 1705:1 1719:1 1721:1 1731:2 1738:2 1758:1 1788:1 1789:1 1790:1 1796:1 1815:4 1827:1 1836:1 1848:5 1868:1 1879:2 1884:1 1888:1 1924:1 1925:1 1927:2 1930:5 1941:1 1943:1 1952:1 1964:1 1967:6 1968:1 1970:1 1973:2 1974:1 1978:4 1981:2 1982:1 1986:1 1990:3 1994:1 1997:2 2000:1 2002:3 2004:1 2044:1 2053:1 2064:1 2070:1 2078:1 2086:1 2091:2 2099:1 2116:1 2145:1 2155:1 2172:1 2181:1 2210:1 2222:1 2223:1 2232:1 2237:1 2241:1 2247:1 2273:1 2316:1 2322:1 2355:1 2357:1 2364:1 2378:1 2394:2 2398:1 2406:1 2429:1 2431:2 2445:3 2446:1 2450:3 2453:3 2460:4 2466:1 2472:1 2500:1 2502:1 2506:1 2508:2 2534:1 2545:4 2579:2 2587:1 2590:18 2605:1 2617:1 2619:1 2641:1 2650:1 2667:1 2696:1 2711:1 2752:1 2760:2 2767:1 2843:1 2858:1 2868:1 2869:1 2875:1 2893:4 2900:1 2915:1 2918:8 2948:2 2956:1 2977:1 2982:2 3024:1 3037:1 3038:1 3044:1 3046:1 3084:1 3088:1 3091:2 3106:1 3118:1 3124:1 3153:1 3155:2 3159:2 3167:1 3169:1 3181:2 3187:1 3189:1 3191:1 3205:1 3231:1 3235:2 3236:1 3238:2 3239:1 3253:1 3276:1 3290:1 3332:1 3362:1 3365:1 3395:1 3413:1 3421:2 3422:1 3432:1 3435:2 3443:1 3450:1 3453:1 3461:2 3467:1 3474:1 3481:1 3504:2 3511:2 3518:1 3529:2 3530:1 3537:1 3575:1 3613:1 3617:4 3622:2 3661:2 3671:1 3682:1 3683:1 3698:2 3706:3 3711:2 3715:1 3732:1 3733:1 3746:1 3752:1 3763:1 3782:1 3789:1 3791:1 3793:1 3805:2 3817:2 3843:2 3851:1 3869:1 3891:1 3897:2 3899:1 3916:1 3922:1 3942:1 3944:1 3997:4 4004:1 4011:1 4021:1 4022:1 4028:1 4035:1 4036:1 4082:1 4096:2 4097:2 4098:1 4113:1 4120:1 4123:2 4130:1 4136:1 4140:1 4148:1 4193:1 4204:1 4213:1 4215:1 4247:1 4250:1 4284:2 4296:1 4305:21 4308:1 4323:1 4339:1 4342:1 4376:1 4414:2 4429:3 4430:6 4433:2 4436:1 4437:2 4441:1 4443:2 4449:1 4455:1 4456:2 4457:2 4459:1 4484:4 4513:1 4533:1 4536:1 4564:1 4573:1 4597:1 4602:4 4625:2 4652:1 4674:1 4702:1 4703:1 4709:1 4719:1 4726:1 4733:1 4742:1 4744:1 4756:1 4765:1 4766:1 4784:1 4812:1 4880:1 4881:1 4888:2 4897:1 4919:1 4922:1 4925:2 4953:1 4970:2 4979:1 5006:1 5010:1 5020:1 5052:1 5053:1 5065:1 5068:2 5071:1 5081:2 5126:2 5203:1 5220:1 5225:1 5267:1 5275:1 5306:1 5319:2 5322:2 5351:1 5379:1 5395:1 5408:1 5412:1 5424:1 5441:5 5452:1 5455:1 5470:1 5478:1 5499:1 5516:1 5542:5 5566:4 5581:4 5585:1 5586:1 5600:2 5617:3 5618:1 5625:4 5627:2 5631:1 5632:1 5636:2 5637:1 5638:2 5640:1 5645:2 5647:2 5661:1 5673:1 5732:1 5756:1 5767:1 5769:1 5782:1 5797:1 5800:1 5810:1 5813:2 5818:1 5847:3 5886:1 5890:1 5901:1 5918:2 5987:2 5990:3 6009:4 6010:2 6043:1 6098:1 6102:1 6105:2 6106:1 6108:1 6111:1 6117:2 6135:1 6138:1 6152:1 6170:1 6178:1 6186:1 6188:1 6230:1 6246:2 6282:2 6284:1 6320:2 6322:2 6326:1 6328:1 6330:1 6336:1 6338:1 6345:1 6356:1 6381:1 6385:1 6413:1 6459:1 6460:1 6490:1 6502:1 6514:2 6515:1 6519:1 6544:1 6552:2 6561:1 6564:1 6571:1 6589:3 6603:1 6614:1 6621:1 6624:3 6632:1 6633:1 6638:1 6649:1 6653:1 6680:1 6702:2 6712:1 6723:3 6729:1 6740:3 6741:1 6761:1 6803:27 6812:1 6822:1 6824:17 6872:1 6891:2 6957:1 6963:1 6974:1 6979:1 6986:4 6990:1 6996:1 6997:1 7004:1 7010:1 7025:1 7036:1 7072:1 7083:1 7093:1 7104:1 7126:1 7129:1 7151:1 7152:2 7180:2 7194:1 7201:1 7205:1 7219:13 7246:2 7254:1 7274:3 7297:1 7303:1 7315:3 7337:1 7348:1 7358:1 7363:4 7379:2 7382:2 7391:1 7399:1 7416:2 7420:1 7436:1 7438:1 7439:1 7462:3 7473:2 7499:1 7503:2 7534:1 7536:1 7538:2 7539:2 7542:1 7549:2 7565:1 7570:1 7589:2 7610:3 7611:6 7628:2 7644:1 7651:1 7670:1 7673:1 7683:1 7688:1 7697:2 7700:2 7714:1 7725:1 7741:1 7767:1 7790:2 7795:1 7807:1 7815:2 7835:3 7837:2 7855:1 7872:1 7910:1 7937:2 7960:1 7966:2 7988:1 8021:2 8028:5 8033:1 8071:1 8090:2 8104:1 8158:2 8167:1 8169:1 8170:1 8175:1 8178:1 8179:1 8180:1 8201:1 8219:1 8232:3 8237:1 8253:1 8275:1 8277:1 8309:1 8322:2 8326:1 8342:1 8377:2 8378:1 8383:1 8411:2 8432:3 8440:1 8455:1 8476:1 8483:2 8489:1 8498:2 8499:2 8510:2 8534:1 8550:1 8561:1 8563:1 8601:3 8616:1 8624:1 8628:1 8631:1 8657:1 8660:1 8664:1 8678:1 8687:1 8730:1 8740:1 8747:1 8748:1 8752:1 8755:2 8769:1 8785:1 8824:1 8825:1 8828:1 8839:1 8867:1 8872:1 8877:1 8882:1 8909:3 8911:1 8914:1 8917:2 8929:2 8944:1 8946:1 8956:3 8959:1 8964:1 8965:2 8970:1 8973:1 8989:1 8993:1 8996:1 9033:1 9044:2 9056:2 9058:1 9061:1 9070:1 9075:1 9085:1 9110:1 9113:2 9117:1 9126:1 9167:1 9216:1 9220:1 9255:1 9264:1 9285:1 9288:1 9292:1 9293:1 9312:1 9318:1 9322:1 9344:1 9353:1 9362:1 9374:3 9376:1 9387:1 9419:1 9464:1 9473:3 9489:1 9490:1 9506:1 9524:1 9529:1 9532:1 9534:1 9535:1 9606:1 9611:1 9627:1 9645:1 9660:1 9661:1 9664:1 9697:2 9708:1 9712:7 9718:1 9736:1 9754:1 9778:1 9791:1 9803:2 9808:1 9831:1 9835:1 9837:1 9870:1 9872:1 9894:1 9900:1 9912:1 9943:1 9946:1 9968:3 9992:1 9995:1 10040:1 10066:1 10082:1 10087:1 10093:1 10098:2 10103:1 10109:1 10132:1 10133:4 10166:1 10182:1 10187:1 10192:1 10195:1 10204:1 10207:2 10249:2 10251:1 10274:2 10278:1 10318:2 10320:1 10338:1 10341:2 10350:1 10360:2 10362:1 10366:1 10367:1 10368:2 10370:1 10377:2 10379:4 10381:2 10382:1 10383:3 10384:1 10387:3 10388:1 10401:3 10407:1 10411:1 10427:1 10428:1 10429:1 10442:1 10460:1 10464:3 10481:1 10487:1 10502:1 10513:1 10514:1 10518:4 10523:1 10530:1 10570:1 10572:1 10592:1 10597:1 10605:1 10639:3 10665:1 10681:4 10684:1 10694:4 10704:1 10716:1 10729:1 10745:1 10764:1 10774:1 10782:1 10788:2 10800:1 10801:1 10813:1 10838:1 10865:1 10875:2 10900:1 10941:1 10942:1 10953:1 10974:1 11003:1 11009:1 11011:1 11063:1 11087:2 11093:1 11105:2 11112:1 11115:1 11116:1 11170:1 11174:1 11203:2 11228:1 11233:1 11239:1 11261:5 11278:1 11283:1 11294:1 11305:2 11307:2 11314:1 11316:1 11317:1 11332:1 11353:2 11362:1 11373:1 11376:1 11383:1 11396:1 11398:1 11403:1 11426:1 11427:2 11431:2 11432:1 11433:1 11445:1 11460:1 11479:1 11491:1 11495:2 11496:1 11506:1 11514:1 11539:1 11569:1 11570:1 11588:1 11616:2 11621:1 11632:4 11663:1 11694:1 11702:1 11714:1 11733:1 11761:1 11767:1 11778:3 11779:2 11790:1 11797:1 11805:2 11832:1 11848:1 11865:3 11894:1 11918:1 11935:1 11938:1 11970:1 11975:2 11988:1 11992:3 12000:2 12018:2 12029:1 12069:1 12073:1 12089:1 12096:3 12098:1 12099:1 12112:2 12114:1 12117:1 12120:1 12122:2 12167:1 12193:2 12199:3 12217:2 12219:2 12225:1 12238:3 12239:2 12277:2 12279:1 12281:1 12285:1 12293:1 12309:1 12318:1 12351:1 12354:1 12364:2 12381:1 12390:1 12394:1 12405:1 12410:1 12423:2 12456:1 12459:1 12468:2 12481:2 12488:2 12504:1 12528:1 12542:1 12545:1 12550:2 12556:2 12563:1 12568:1 12584:1 12617:1 12642:1 12657:1 12672:1 12673:1 12686:1 12695:1 12697:3 12706:1 12707:1 12712:1 12722:1 12734:1 12789:1 12794:1 12816:1 12817:1 12826:1 12831:1 12837:1 12840:3 12844:1 12846:1 12853:1 12889:1 12897:1 12920:1 12933:1 12936:1 12947:1 12951:1 12958:1 12980:1 12987:1 12994:1 12996:1 13008:1 13021:1 13027:1 13053:1 13086:1 13093:1 13098:1 13102:1 13116:1 13120:1 13132:1 13147:1 13165:1 13182:1 13200:1 13219:1 13227:1 13232:1 13234:2 13257:1 13258:1 13261:1 13316:1 13319:1 13349:1 13379:1 13402:1 13414:1 13421:1 13426:1 13428:1 13440:1 13452:2 13466:1 13481:1 13488:1 13505:2 13507:1 13532:1 13545:1 13549:1 13551:1 13577:1 13598:2 13615:1 13625:1 13626:4 13637:2 13647:1 13663:1 13673:2 13686:3 13700:1 13704:1 13726:3 13733:1 13734:7 13740:2 13744:1 13764:1 13775:4 13810:1 13821:1 13833:1 13840:1 13870:1 13872:1 13875:1 13876:2 13886:2 13895:1 13897:2 13898:1 13899:2 13900:2 13909:1 13910:1 13916:1 13932:1 13949:1 13952:2 13991:1 14014:2 14047:1 14062:1 14069:1 14084:1 14108:1 14143:3 14146:1 14168:1 14174:1 14179:1 14183:1 14193:1 14216:1 14219:1 14226:1 14275:1 14284:3 14293:2 14313:1 14324:1 14327:1 14358:1 14360:1 14367:1 14369:1 14373:1 14374:1 14386:1 14387:3 14389:1 14390:1 14394:4 14399:1 14412:1 14471:1 14480:1 14481:1 14490:1 14515:1 14516:1 14524:1 14526:1 14571:1 14578:2 14580:1 14596:3 14608:2 14609:1 14617:2 14621:1 14649:2 14652:2 14654:1 14657:1 14679:2 14688:1 14694:1 14695:2 14696:1 14700:2 14704:2 14718:1 14720:1 14782:1 14783:1 14786:1 14794:5 14814:1 14823:16 14841:1 14859:1 14864:2 14893:2 14908:2 14913:1 14926:1 14967:1 14976:1 15029:1 15036:1 15043:1 15047:1 15054:1 15057:1 15064:1 15069:3 15083:1 15109:1 15117:1 15119:1 15153:1 15156:1 15169:1 15178:3 15196:2 15212:1 15242:1 15266:1 15267:1 15276:4 15285:1 15297:1 15302:2 15365:2 15380:2 15386:1 15388:1 15401:2 15406:1 15415:1 15417:1 15419:1 15420:1 15421:1 15432:1 15441:1 15448:1 15454:1 15458:1 15505:1 15546:1 15550:1 15556:1 15565:1 15583:1 15642:1 15644:1 15683:2 15723:1 15738:1 15741:1 15746:1 15748:2 15795:1 15799:2 15833:1 15842:1 15860:2 15870:1 15901:1 15914:2 15934:1 15949:1 15967:2 15988:1 15989:1 16002:1 16003:1 16017:1 16029:2 16037:1 16060:1 16079:1 16084:1 16112:1 16113:1 16161:1 16162:1 16172:1 16208:1 16216:7 16225:1 16247:1 16265:1 16266:1 16301:8 16309:3 16319:1 16360:1 16374:1 16388:1 16390:1 16409:1 16419:1 16442:1 16444:1 16446:1 16457:1 16472:1 16481:1 16498:1 16508:1728 16509:1 16512:1 16545:2 16559:2 16567:1 16600:1 16604:1 16609:1 16647:3 16670:1 16678:2 16694:1 16703:1 16719:1 16722:2 16735:3 16738:1 16767:2 16787:2 16793:1 16796:1 16834:2 16871:1 16894:1 16904:1 16914:1 16932:1 16942:1 16951:1 16987:1 16993:1 16996:1 16997:1 17002:2 17008:1 17009:1 17017:1 17035:1 17042:1 17054:2 17065:1 17077:1 17087:4 17092:1 17095:1 17110:1 17123:2 17125:1 17145:1 17151:1 17153:1 17157:1 17163:1 17165:1 17188:5 17195:3 17202:1 17220:2 17223:1 17236:3 17288:1 17293:1 17295:1 17300:1 17327:2 17337:1 17355:1 17358:1 17359:1 17373:1 17385:1 17402:1 17409:1 17430:1 17437:2 17464:1 17468:1 17480:1 17494:1 17495:1 17500:1 17514:1 17528:2 17530:1 17544:15 17562:1 17565:1 17589:1 17595:2 17598:1 17615:1 17653:1 17664:1 17665:1 17689:5 17706:1 17713:1 17715:1 17716:1 17721:1 17739:2 17763:1 17769:4 17775:1 17781:2 17802:3 17815:1 17822:1 17824:2 17826:1 17834:1 17837:2 17843:1 17845:1 17847:1 17858:1 17873:2 17875:1 17902:1 17931:18 17940:1 17945:1 17956:1 17960:1 17967:1 17977:1 17991:1 17993:1 18039:1 18047:1 18076:1 18102:1 18121:1 18153:2 18154:1 18158:2 18160:2 18193:1 18198:1 18206:1 18212:1 18317:2 18333:1 18357:2 18383:3 18397:1 18430:2 18434:1 18445:2 18447:1 18454:1 18460:1 18463:1 18486:1 18503:1 18507:1 18509:1 18511:2 18519:2 18524:1 18527:13 18534:1 18535:1 18542:2 18544:3 18553:1 18563:2 18566:1 18571:1 18573:1 18601:1 18619:1 18636:1 18648:1 18649:1 18692:2 18706:2 18760:2 18762:1 18773:1 18774:1 18777:1 18779:1 18780:2 18781:1 18782:1 18797:2 18800:1 18812:2 18816:1 18823:1 18828:1 18840:1 18848:1 18875:1 18879:1 18917:3 18920:4 18942:1 18946:1 18967:1 18972:1 18979:1 18996:1 19024:1 19025:1 19032:2 19039:1 19042:1 19056:5 19062:1 19082:1 19105:2 19108:1 19110:1 19120:1 19125:1 19127:1 19128:1 19132:5 19133:1 19139:1 19141:1 19142:2 19174:1 19175:1 19197:1 19201:1 19203:1 19212:1 19219:1 19239:2 19249:2 19275:2 19276:1 19285:1 19296:2 19314:1 19325:1 19332:1 19348:1 19421:2 19422:1 19433:1 19434:3 19436:1 19455:3 19456:1 19459:1 19467:1 19490:1 19500:1 19535:2 19558:2 19568:1 19575:1 19600:4 19624:2 19630:1 19632:2 19636:1 19638:1 19644:1 19648:1 19656:1 19665:1 19677:1 19681:1 19683:2 19685:1 19696:1 19709:1 19725:1 19740:2 19743:1 19748:1 19758:1 19759:1 19765:4 19787:1 19798:1 19801:1 19817:2 19822:1 19831:1 19832:1 19842:1 19843:1 19858:1 19869:3 19887:1 19888:1 19899:1 19906:1 19909:1 19921:1 19923:1 19937:1 19938:3 19942:2 19958:2 19960:1 19969:1 19970:2 19991:2 19998:1 19999:4 20011:1 20025:2 20039:1 20059:2 20062:1 20086:2 20119:1 20124:1 20132:1 20152:1 20160:1 20166:1 20172:1 20186:2 20199:3 20203:1 20204:1 20210:1 20240:1 20262:1 20268:1 20272:1 20282:1 20297:5 20307:1 20309:1 20313:1 20320:1 20333:3 20334:2 20374:1 20390:1 20399:1 20400:1 20409:1 20413:1 20421:1 20438:1 20455:1 20461:1 20485:1 20508:1 20514:1 20541:1 20545:1 20554:1 20565:1 20572:1 20577:1 20606:1 20617:1 20640:2 20652:1 20695:2 20713:1 20717:1 20742:3 20750:2 20754:1 20770:1 20802:1 20818:2 20827:1 20835:3 20837:1 20840:1 20841:1 20868:1 20870:1 20888:4 20891:1 20893:1 20894:1 20927:1 20929:1 20941:1 20963:1 20975:1 20991:1 21000:2 21004:1 21006:1 21066:2 21070:1 21075:1 21077:2 21109:1 21116:1 21123:1 21132:1 21151:3 21154:1 21194:1 21222:1 21232:1 21311:1 21346:1 21392:1 21397:1 21416:2 21432:1 21441:1 21451:2 21481:1 21483:1 21494:1 21504:2 21529:1 21537:2 21571:1 21582:3 21599:1 21621:1 21642:2 21645:1 21689:2 21719:1 21751:1 21752:2 21767:1 21768:1 21769:3 21770:2 21772:1 21778:1 21779:1 21784:4 21795:2 21796:1 21801:2 21812:3 21846:1 21858:1 21859:1 21868:8 21869:3 21872:1 21877:3 21905:2 21925:2 21926:2 21958:1 21961:1 21962:1 21993:1 22027:1 22032:1 22063:1 22065:1 22082:1 22089:1 22099:1 22143:1 22188:1 22197:1 22220:1 22240:1 22284:1 22295:9 22343:1 22344:1 22346:1 22363:1 22377:1 22397:1 22410:1 22426:1 22461:4 22491:4 22506:1 22558:1 22598:1 22600:1 22654:2 22672:2 22676:1 22691:1 22697:1 22702:2 22706:2 22707:1 22742:2 22745:1 22757:1 22759:2 22765:1 22787:1 22794:1 22795:1 22796:3 22797:1 22801:2 22819:1 22848:1 22862:1 22876:2 22891:2 22907:1 22919:1 22944:3 22955:1 22969:1 22976:3 22977:4 22993:2 23011:1 23013:1 23016:1 23023:1 23026:1 23031:2 23035:1 23037:2 23038:1 23083:1 23088:1 23106:2 23111:1 23135:1 23162:2 23164:1 23173:1 23179:1 23180:2 23203:1 23209:1 23238:1 23244:1 23256:1 23265:2 23270:1 23291:1 23316:1 23345:1 23350:3 23376:1 23383:1 23388:1 23410:9 23411:2 23418:1 23458:2 23480:1 23484:1 23507:1 23511:1 23520:1 23530:1 23533:1 23548:1 23552:3 23566:1 23597:1 23633:1 23643:1 23665:1 23666:2 23691:1 23698:1 23699:1 23703:1 23734:1 23735:1 23760:1 23787:1 23819:1 23837:1 23853:1 23888:1 23905:1 23924:1 23927:1 23937:1 23957:2 23963:1 23968:1 23987:1 24003:1 24016:1 24017:3 24037:1 24049:1 24053:1 24064:1 24107:1 24108:1 24109:2 24119:3 24120:2 24121:1 24141:2 24148:1 24149:1 24150:3 24162:1 24164:1 24177:2 24179:2 24190:2 24217:1 24221:5 24230:2 24232:1 24233:1 24241:1 24251:1 24271:1 24292:2 24295:2 24329:1 24332:1 24345:1 24361:1 24366:2 24404:1 24412:1 24414:1 24419:1 24427:1 24428:1 24439:1 24442:1 24443:1 24444:1 24445:1 24455:1 24464:2 24469:1 24474:1 24476:1 24479:1 24480:2 24485:1 24486:1 24488:1 24489:1 24495:1 24502:1 24503:1 24508:1 24511:1 24515:1 24548:1 24552:1 24588:1 24596:1 24615:1 24644:1 24658:1 24664:1 24665:2 24684:1 24709:1 24729:1 24745:1 24751:2 24767:2 24769:2 24771:1 24775:1 24777:1 24805:1 24816:1 24818:1 24868:1 24899:1 24905:2 24917:1 24949:1 24952:1 24962:1 24986:2 25022:5 25027:1 25031:1 25036:1 25037:2 25044:1 25054:1 25066:1 25069:1 25075:1 25083:1 25093:1 25096:1 25110:8 25112:1 25116:1 25137:1 25141:3 25159:2 25164:1 25215:1 25251:3 25260:1 25276:1 25278:4 25282:1 25287:1 25290:1 25296:2 25310:1 25312:1 25316:1 25324:1 25325:1 25327:2 25334:1 25342:1 25348:1 25351:1 25363:4 25364:1 25382:1 25388:1 25400:1 25410:1 25433:1 25456:2 25457:2 25459:1 25460:2 25462:1 25472:1 25477:1 25495:1 25514:1 25515:2 25519:1 25525:1 25527:3 25540:3 25542:1 25555:1 25583:1 25584:1 25602:1 25619:1 25624:1 25647:1 25679:1 25717:1 25741:1 25746:1 25753:1 25755:1 25770:2 25772:1 25777:1 25779:1 25851:1 25854:1 25860:1 25880:1 25883:1 25901:2 25912:1 25915:1 25917:1 25956:1 25960:1 25971:1 25987:1 25992:2 25993:1 26011:1 26027:2 26050:1 26059:1 26070:1 26076:1 26091:1 26092:1 26097:1 26098:1 26122:1 26125:2 26128:3 26150:1 26163:3 26175:2 26205:1 26209:1 26215:1 26224:1 26226:1 26227:1 26228:1 26231:3 26239:2 26241:2 26242:1 26244:1 26246:1 26250:3 26252:1 26264:1 26270:1 26279:2 26299:1 26318:1 26325:1 26330:1 26340:1
7 10:1 21:1 38:1 73:1 83:1 110:1 116:1 155:4 164:4 182:2 193:2 200:1 207:2 215:2 218:2 234:1 248:1 260:1 274:1 276:1 294:2 310:1 327:2 334:1 345:1 347:1 360:1 391:1 402:1 407:1 410:1 429:1 437:1 441:1 501:1 508:1 510:3 538:4 553:1 603:5 605:2 613:1 626:1 651:1 667:1 675:1 676:1 722:1 726:4 728:1 746:1 750:3 769:1 781:1 782:3 801:1 807:3 810:1 841:1 842:2 845:3 854:1 877:1 882:1 890:1 933:1 962:2 971:2 982:3 984:1 1021:1 1052:1 1054:1 1071:2 1076:1 1081:1 1083:1 1104:1 1168:3 1203:1 1211:1 1220:1 1224:1 1235:1 1241:1 1242:1 1245:1 1272:1 1276:1 1279:3 1287:1 1345:2 1386:1 1394:2 1424:1 1426:1 1436:3 1439:2 1444:1 1449:1 1450:3 1451:3 1466:2 1467:1 1495:1 1528:1 1538:1 1539:2 1541:2 1579:1 1581:3 1593:1 1596:1 1605:4 1611:1 1628:2 1639:1 1653:2 1656:1 1672:1 1704:1 1705:1 1719:1 1721:1 1731:2 1738:2 1758:1 1788:1 1789:1 1790:1 1796:1 1797:1 1815:4 1827:1 1836:1 1848:5 1868:1 1879:2 1884:1 1888:1 1924:1 1925:1 1927:2 1930:5 1941:1 1943:1 1952:1 1964:1 1967:6 1968:1 1970:2 1973:2 1974:1 1978:4 1981:2 1982:1 1986:1 1990:4 1994:1 1997:2 2000:1 2002:3 2004:1 2044:1 2053:1 2064:1 2070:1 2078:1 2086:1 2091:2 2099:1 2116:1 2145:1 2155:1 2172:1 2181:1 2210:1 2222:1 2223:1 2232:1 2237:1 2241:1 2247:1 2273:1 2316:1 2322:1 2355:1 2357:1 2364:1 2378:1 2394:2 2398:1 2406:1 2429:1 2431:2 2445:3 2446:1 2450:3 2453:3 2460:4 2466:1 2472:1 2500:1 2502:1 2506:1 2508:2 2534:1 2545:4 2579:2 2587:1 2590:18 2605:1 2617:1 2619:1 2641:1 2650:1 2667:1 2696:1 2711:1 2752:1 2760:2 2767:1 2843:1 2858:1 2868:1 2869:1 2875:1 2893:4 2895:1 2900:1 2915:1 2918:8 2948:2 2956:1 2977:1 2982:2 3024:1 3037:1 3038:1 3044:1 3046:1 3084:1 3088:1 3091:2 3106:1 3118:1 3124:1 3153:1 3155:2 3159:2 3167:1 3169:1 3181:2 3187:1 3189:1 3191:1 3205:1 3231:1 3235:2 3236:1 3238:2 3239:1 3253:1 3276:1 3290:1 3332:1 3362:1 3365:1 3395:1 3413:1 3421:2 3422:1 3432:1 3435:2 3443:1 3450:1 3453:1 3461:2 3467:1 3474:1 3481:1 3504:2 3511:2 3518:1 3529:2 3530:1 3537:1 3575:1 3613:1 3617:4 3622:2 3661:2 3671:1 3682:1 3683:1 3698:2 3706:3 3711:2 3715:1 3732:1 3733:1 3746:1 3752:1 3763:1 3782:1 3789:1 3791:1 3793:1 3805:2 3817:2 3843:2 3851:1 3869:1 3891:1 3896:1 3897:2 3899:1 3916:1 3922:1 3942:1 3944:1 3997:4 4004:1 4011:1 4021:1 4022:1 4028:1 4035:1 4036:1 4082:1 4096:2 4097:2 4098:1 4113:1 4120:1 4123:2 4130:1 4136:1 4140:1 4148:1 4193:1 4204:1 4213:1 4215:1 4247:1 4250:1 4284:2 4296:1 4305:21 4308:1 4323:1 4339:1 4342:1 4376:1 4414:2 4429:3 4430:6 4433:2 4436:1 4437:2 4441:1 4443:2 4449:1 4455:1 4456:2 4457:2 4459:1 4484:4 4513:1 4528:2 4533:1 4536:1 4564:1 4573:1 4597:1 4602:4 4625:2 4652:1 4674:1 4702:1 4703:1 4709:1 4719:1 4726:1 4733:1 4742:1 4744:1 4756:1 4765:1 4766:1 4784:1 4812:1 4880:1 4881:1 4888:2 4897:1 4919:1 4922:1 4925:2 4953:1 4970:2 4979:1 5006:1 5010:1 5020:1 5052:1 5053:1 5065:1 5068:2 5071:1 5081:2 5126:2 5203:1 5220:1 5225:1 5267:1 5275:1 5306:1 5319:2 5322:2 5351:1 5379:1 5395:1 5408:1 5412:1 5424:1 5441:5 5452:1 5455:1 5470:1 5478:1 5499:1 5516:1 5542:7 5566:4 5581:4 5585:1 5586:1 5600:2 5617:3 5618:1 5625:4 5627:2 5631:1 5632:1 5636:2 5637:1 5638:2 5640:1 5645:2 5647:2 5661:1 5673:1 5732:1 5756:1 5767:1 5769:1 5782:1 5797:1 5800:1 5810:1 5813:2 5818:1 5847:3 5886:1 5890:1 5901:1 5918:2 5987:2 5990:3 6009:4 6010:3 6043:1 6098:1 6102:1 6105:2 6106:1 6108:1 6111:1 6117:2 6135:1 6138:1 6152:1 6170:1 6178:1 6186:1 6188:1 6230:1 6246:2 6282:2 6284:1 6320:2 6322:2 6326:1 6328:1 6330:1 6336:1 6338:1 6345:1 6356:1 6381:1 6385:1 6413:1 6459:1 6460:1 6490:1 6502:1 6514:2 6515:1 6519:1 6544:1 6552:2 6561:1 6564:1 6571:1 6589:3 6603:1 6614:1 6621:1 6624:3 6632:1 6633:1 6638:1 6649:1 6653:1 6680:1 6702:2 6712:1 6723:3 6729:1 6740:3 6741:3 6761:3 6803:28 6812:1 6822:1 6824:17 6851:1 6872:1 6891:2 6957:1 6963:1 6974:1 6979:1 6986:4 6990:1 6996:1 6997:1 7004:1 7010:1 7025:1 7036:1 7072:1 7083:1 7093:1 7104:1 7126:1 7129:1 7151:1 7152:2 7180:2 7194:1 7201:1 7205:1 7219:15 7246:2 7254:1 7274:3 7297:1 7303:1 7315:3 7337:1 7348:1 7358:1 7363:4 7379:2 7382:2 7391:1 7399:1 7416:2 7420:1 7436:1 7438:1 7439:1 7462:3 7473:2 7499:1 7503:2 7534:1 7536:1 7538:2 7539:2 7542:1 7549:2 7565:1 7570:1 7589:2 7610:3 7611:6 7628:2 7644:1 7651:1 7670:1 7673:1 7683:1 7688:1 7697:2 7700:2 7714:1 7725:1 7741:1 7767:1 7790:2 7795:1 7807:1 7815:2 7835:3 7837:2 7855:1 7872:1 7910:1 7937:2 7960:1 7966:2 7988:1 8021:2 8028:5 8033:1 8071:1 8090:2 8104:1 8158:2 8167:1 8169:1 8170:1 8175:1 8178:1 8179:1 8180:1 8201:1 8219:1 8232:3 8237:1 8253:1 8275:1 8277:1 8309:1 8322:2 8326:1 8342:1 8377:2 8378:1 8383:1 8411:2 8432:3 8440:1 8455:1 8476:1 8483:2 8489:1 8498:2 8499:2 8510:2 8534:1 8550:1 8561:1 8563:1 8601:3 8616:1 8624:1 8628:1 8631:1 8657:1 8660:1 8664:1 8678:1 8687:1 8730:1 8740:1 8747:1 8748:1 8752:1 8755:2 8769:1 8785:1 8824:1 8825:1 8828:1 8839:1 8867:1 8872:1 8877:1 8882:1 8909:3 8911:1 8914:1 8917:2 8929:2 8944:1 8946:1 8956:3 8959:1 8964:1 8965:2 8970:1 8973:1 8989:1 8993:1 8996:1 9033:1 9044:2 9056:2 9058:1 9061:1 9070:1 9075:1 9085:1 9110:1 9113:2 9117:1 9126:1 9167:1 9216:1 9220:1 9255:1 9264:1 9282:1 9285:1 9288:1 9292:1 9293:1 9312:1 9318:1 9322:1 9344:1 9353:1 9362:1 9374:3 9376:1 9387:1 9419:1 9464:1 9473:3 9489:1 9490:1 9506:1 9524:1 9529:1 9532:1 9534:1 9535:1 9606:1 9611:1 9627:1 9645:1 9660:1 9661:1 9664:1 9697:2 9708:1 9712:7 9718:1 9736:1 9754:1 9778:1 9791:1 9803:2 9808:1 9831:1 9835:1 9837:1 9870:1 9872:1 9894:1 9900:1 9912:1 9943:1 9946:1 9968:3 9992:1 9995:1 10040:1 10066:1 10082:1 10087:1 10093:1 10098:2 10103:1 10109:1 10132:1 10133:4 10166:1 10182:1 10187:1 10192:1 10195:1 10204:1 10207:2 10249:2 10251:1 10274:2 10278:1 10318:2 10320:1 10338:1 10341:2 10350:1 10360:2 10362:1 10366:1 10367:1 10368:2 10370:1 10377:2 10379:4 10381:2 10382:1 10383:3 10384:1 10387:4 10388:3 10401:3 10407:1 10411:1 10427:1 10428:1 10429:1 10442:1 10460:1 10464:3 10481:1 10487:1 10502:1 10513:1 10514:1 10518:4 10523:1 10530:1 10570:1 10572:1 10592:1 10597:1 10605:1 10639:3 10665:1 10681:4 10684:1 10694:4 10704:1 10716:1 10729:1 10745:1 10764:1 10774:1 10782:1 10788:2 10800:1 10801:1 10813:1 10838:1 10865:1 10875:2 10900:1 10941:1 10942:1 10953:1 10974:1 11003:1 11009:1 11011:1 11063:1 11087:2 11093:1 11105:2 11112:1 11115:1 11116:1 11170:1 11174:1 11203:2 11228:1 11233:1 11239:1 11261:5 11278:1 11283:1 11294:1 11305:2 11307:2 11314:1 11316:1 11317:1 11332:1 11353:2 11362:1 11373:1 11376:1 11383:1 11396:1 11398:1 11403:1 11426:1 11427:2 11431:2 11432:1 11433:1 11445:1 11460:1 11479:1 11491:1 11495:2 11496:1 11506:1 11514:1 11539:1 11569:1 11570:1 11588:1 11616:2 11621:1 11632:4 11663:1 11694:1 11702:1 11714:1 11733:1 11761:1 11767:1 11778:3 11779:2 11790:1 11797:1 11805:2 11832:1 11848:1 11865:3 11894:1 11918:1 11935:1 11938:1 11970:1 11975:2 11988:1 11992:3 12000:2 12018:2 12029:1 12069:1 12073:1 12089:1 12096:3 12098:1 12099:1 12112:2 12114:1 12117:1 12120:1 12122:2 12167:1 12193:2 12199:3 12217:2 12219:2 12225:1 12238:3 12239:2 12277:2 12279:1 12281:1 12285:1 12293:1 12309:1 12318:1 12351:1 12354:1 12364:2 12381:1 12390:1 12394:1 12405:1 12410:1 12423:2 12456:1 12459:1 12468:2 12481:2 12488:2 12504:1 12528:1 12542:1 12545:1 12550:2 12556:2 12563:1 12568:1 12584:1 12617:1 12642:1 12657:1 12672:1 12673:1 12686:1 12695:1 12697:3 12706:1 12707:1 12712:1 12722:1 12734:1 12789:1 12794:1 12816:1 12817:1 12826:1 12831:1 12837:1 12840:3 12844:1 12846:1 12853:1 12889:1 12897:1 12920:1 12933:1 12936:1 12947:1 12951:1 12958:1 12980:1 12987:1 12994:1 12996:1 13008:1 13021:1 13027:1 13053:1 13086:1 13093:1 13098:1 13102:1 13116:1 13120:1 13132:1 13147:1 13165:1 13182:1 13200:1 13219:1 13227:1 13232:1 13234:2 13257:1 13258:1 13261:1 13316:1 13319:1 13349:1 13379:1 13402:1 13414:1 13421:1 13426:1 13428:1 13440:1 13452:2 13466:1 13481:1 13488:1 13505:2 13507:1 13532:1 13545:1 13549:1 13551:1 13577:1 13598:2 13615:1 13625:1 13626:4 13637:2 13647:1 13663:1 13673:2 13686:3 13700:1 13704:1 13726:3 13733:1 13734:7 13740:2 13744:1 13764:1 13775:5 13810:1 13821:1 13833:1 13840:1 13870:1 13872:1 13875:1 13876:2 13886:2 13895:1 13897:2 13898:1 13899:2 13900:2 13909:1 13910:1 13916:1 13932:1 13949:1 13952:2 13991:1 14014:2 14047:1 14062:1 14069:1 14084:1 14108:1 14143:3 14146:1 14168:1 14174:1 14179:1 14183:1 14193:1 14216:1 14219:1 14226:1 14275:1 14284:3 14293:2 14313:1 14324:1 14327:1 14358:1 14360:1 14367:1 14369:1 14373:1 14374:1 14386:1 14387:3 14389:2 14390:1 14394:4 14398:1 14399:1 14412:1 14471:1 14480:1 14481:1 14490:1 14515:1 14516:1 14524:1 14526:1 14571:1 14578:2 14580:1 14596:3 14608:2 14609:1 14617:2 14621:1 14649:2 14652:2 14654:1 14657:1 14679:2 14688:1 14694:1 14695:2 14696:1 14700:2 14704:2 14718:1 14720:1 14745:1 14782:1 14783:1 14786:1 14794:5 14814:1 14823:16 14841:1 14859:1 14864:2 14893:2 14908:2 14913:1 14926:1 14967:1 14976:1 15029:1 15036:1 15043:1 15047:1 15054:1 15057:1 15064:1 15069:3 15083:1 15109:1 15117:1 15119:1 15153:1 15156:1 15169:1 15178:3 15196:2 15212:1 15242:1 15265:1 15266:1 15267:1 15276:4 15285:1 15297:1 15302:2 15365:2 15380:2 15386:1 15388:1 15401:2 15406:1 15415:1 15417:1 15419:1 15420:1 15421:1 15432:1 15441:1 15448:1 15454:1 15458:1 15505:1 15546:1 15550:1 15556:1 15565:1 15583:1 15642:1 15644:1 15683:2 15699:1 15723:1 15733:2 15738:1 15741:1 15746:1 15748:2 15795:1 15799:3 15833:1 15842:1 15860:2 15870:1 15901:1 15914:2 15934:1 15949:1 15967:2 15988:1 15989:1 16002:1 16003:1 16017:1 16029:2 16037:1 16060:1 16079:1 16084:1 16112:1 16113:1 16161:1 16162:1 16172:1 16208:1 16216:7 16225:1 16247:1 16265:1 16266:1 16301:8 16309:3 16319:1 16360:1 16374:1 16388:1 16390:1 16409:1 16419:1 16442:1 16444:1 16446:1 16457:1 16472:1 16481:1 16498:1 16508:1768 16509:1 16512:1 16545:2 16559:2 16567:1 16600:1 16604:1 16609:1 16647:3 16670:1 16678:2 16694:1 16703:1 16719:1 16722:2 16735:3 16738:1 16767:2 16787:2 16793:1 16796:1 16834:2 16871:1 16894:3 16904:1 16914:1 16932:1 16942:1 16951:1 16987:1 16993:1 16996:1 16997:1 17002:2 17008:1 17009:1 17017:1 17035:1 17042:1 17054:2 17065:1 17077:1 17087:4 17092:1 17095:1 17110:1 17123:2 17125:1 17145:1 17151:1 17153:1 17157:1 17163:1 17165:1 17188:5 17195:3 17202:1 17220:2 17223:1 17236:3 17288:1 17293:1 17295:1 17300:1 17327:2 17337:1 17355:1 17358:1 17359:1 17373:1 17385:1 17402:1 17409:1 17430:1 17437:2 17464:1 17468:1 17480:1 17494:1 17495:1 17500:1 17514:1 17528:2 17530:1 17544:15 17562:1 17565:1 17589:1 17595:2 17598:1 17615:1 17653:1 17664:1 17665:1 17689:5 17706:1 17713:1 17715:1 17716:1 17721:1 17739:2 17763:1 17769:4 17775:1 17781:2 17802:3 17815:1 17822:1 17824:2 17826:1 17834:1 17837:2 17843:1 17845:1 17847:1 17858:1 17873:2 17875:1 17902:1 17931:18 17940:1 17945:1 17956:1 17960:1 17967:1 17977:1 17991:1 17993:1 18039:1 18047:1 18076:1 18102:1 18121:1 18153:2 18154:1 18158:2 18160:2 18193:1 18198:1 18206:1 18212:1 18317:2 18333:1 18342:2 18357:2 18383:3 18397:1 18430:2 18434:1 18445:2 18447:1 18454:1 18460:1 18463:1 18486:1 18503:1 18507:1 18509:1 18511:2 18519:3 18524:1 18527:13 18534:1 18535:1 18542:2 18544:3 18553:1 18563:2 18566:1 18571:1 18573:1 18601:1 18619:1 18636:1 18648:1 18649:1 18692:2 18706:2 18760:2 18762:1 18773:1 18774:1 18777:1 18779:1 18780:2 18781:1 18782:1 18797:2 18800:1 18812:2 18816:1 18823:1 18828:1 18840:1 18848:1 18875:1 18879:1 18917:3 18920:4 18942:1 18946:1 18967:1 18972:1 18979:1 18996:1 19006:1 19024:1 19025:1 19032:2 19039:1 19042:1 19056:5 19062:1 19082:1 19105:2 19108:1 19110:1 19120:1 19125:1 19127:1 19128:1 19132:5 19133:1 19139:1 19141:1 19142:2 19174:1 19175:1 19197:1 19201:1 19203:1 19212:1 19219:1 19239:2 19249:2 19275:2 19276:1 19285:1 19296:2 19298:1 19314:1 19325:1 19332:1 19348:1 19421:2 19422:1 19433:1 19434:3 19436:1 19455:3 19456:1 19459:1 19467:1 19490:1 19500:1 19535:2 19558:2 19568:1 19575:1 19600:4 19624:2 19630:1 19632:2 19636:1 19638:1 19644:1 19648:1 19656:1 19665:1 19677:1 19681:1 19683:2 19685:1 19696:1 19709:1 19725:1 19740:2 19743:1 19748:1 19758:1 19759:1 19765:4 19787:1 19798:1 19801:1 19817:2 19822:1 19831:1 19832:1 19842:1 19843:1 19858:1 19869:3 19887:1 19888:1 19899:1 19906:1 19909:1 19921:1 19923:1 19937:1 19938:3 19942:2 19958:2 19960:1 19969:1 19970:2 19991:2 19998:1 19999:4 20011:1 20025:2 20039:1 20059:2 20062:1 20086:2 20119:1 20124:1 20132:1 20152:1 20160:1 20166:1 20172:1 20186:2 20199:3 20203:1 20204:1 20210:1 20240:1 20262:1 20268:1 20272:1 20282:1 20297:5 20307:1 20309:1 20313:1 20320:1 20333:3 20334:2 20374:1 20390:1 20399:1 20400:1 20409:1 20413:1 20421:1 20438:1 20455:1 20461:1 20485:1 20508:1 20514:1 20541:1 20545:1 20554:1 20565:1 20572:1 20577:1 20606:1 20617:1 20640:2 20652:1 20695:2 20707:1 20713:1 20717:1 20742:3 20750:2 20754:1 20770:1 20802:1 20818:2 20827:1 20835:3 20837:1 20840:1 20841:1 20868:1 20870:2 20888:4 20891:1 20893:1 20894:1 20927:1 20929:1 20941:1 20963:1 20975:1 20991:1 21000:2 21004:1 21006:1 21066:2 21070:1 21075:1 21077:2 21109:1 21116:1 21123:1 21132:1 21151:3 21154:1 21194:1 21222:1 21232:1 21311:1 21344:3 21346:1 21392:1 21397:1 21416:2 21432:1 21441:1 21451:2 21481:1 21483:1 21494:1 21504:2 21519:1 21529:1 21537:2 21571:1 21582:3 21599:1 21621:1 21631:2 21642:2 21645:1 21689:2 21719:1 21751:1 21752:2 21767:1 21768:1 21769:3 21770:2 21772:1 21778:1 21779:1 21784:4 21795:2 21796:1 21801:2 21812:3 21846:1 21858:1 21859:1 21868:8 21869:3 21872:1 21877:3 21905:2 21925:2 21926:2 21958:1 21961:1 21962:1 21993:1 22027:1 22032:1 22036:1 22063:1 22065:1 22082:1 22089:1 22099:1 22143:1 22188:1 22197:1 22220:1 22240:1 22284:1 22295:9 22343:1 22344:1 22346:1 22363:1 22377:1 22397:1 22410:1 22426:1 22461:4 22491:4 22506:1 22558:1 22598:1 22600:1 22654:2 22672:2 22676:1 22691:1 22697:1 22702:2 22706:2 22707:1 22742:2 22745:1 22757:1 22759:2 22765:1 22787:1 22794:1 22795:1 22796:3 22797:1 22801:2 22819:1 22848:1 22862:1 22876:2 22891:2 22907:1 22919:1 22944:3 22955:1 22969:1 22976:3 22977:4 22993:2 23011:1 23013:1 23016:1 23023:1 23026:1 23031:2 23035:1 23037:2 23038:1 23083:1 23088:1 23106:2 23111:1 23135:1 23162:2 23164:1 23173:1 23179:1 23180:2 23203:1 23209:1 23238:1 23244:1 23256:1 23265:2 23270:1 23291:1 23316:1 23345:1 23350:3 23376:1 23383:1 23388:1 23410:9 23411:2 23418:1 23458:2 23480:1 23484:1 23507:1 23511:1 23520:1 23530:1 23533:1 23548:1 23552:3 23566:1 23597:1 23633:1 23643:1 23665:1 23666:2 23691:1 23698:1 23699:1 23703:1 23734:1 23735:1 23760:1 23787:1 23819:1 23837:1 23853:1 23888:1 23905:1 23924:1 23927:1 23937:1 23957:2 23963:1 23968:1 23987:1 24003:1 24016:1 24017:3 24037:1 24049:1 24053:1 24064:1 24107:1 24108:1 24109:2 24119:3 24120:2 24121:1 24141:2 24148:1 24149:1 24150:3 24162:1 24164:1 24177:2 24179:2 24190:2 24217:1 24221:5 24230:2 24232:1 24233:1 24237:1 24241:1 24251:1 24271:1 24292:2 24295:2 24329:1 24332:1 24345:1 24361:1 24366:2 24404:1 24412:1 24414:1 24419:1 24427:1 24428:1 24439:1 24442:1 24443:1 24444:1 24445:1 24455:1 24464:2 24469:1 24474:1 24476:1 24479:1 24480:2 24485:1 24486:1 24488:1 24489:1 24495:1 24502:1 24503:1 24508:1 24511:1 24515:1 24548:1 24552:1 24588:1 24596:1 24615:1 24644:1 24658:1 24664:1 24665:2 24684:1 24709:1 24729:1 24745:1 24751:2 24767:2 24769:2 24771:1 24775:1 24777:1 24805:1 24816:1 24818:1 24868:1 24899:1 24905:2 24917:1 24949:1 24952:1 24962:1 24986:2 25022:5 25027:1 25031:1 25036:1 25037:2 25044:1 25054:1 25066:1 25069:1 25075:1 25083:1 25093:1 25096:1 25110:8 25112:1 25116:1 25137:1 25141:3 25159:2 25164:1 25215:1 25251:5 25260:1 25276:1 25278:4 25282:1 25287:1 25290:1 25296:2 25310:1 25312:1 25316:1 25324:1 25325:1 25327:2 25334:1 25342:1 25348:1 25351:1 25363:4 25364:1 25382:1 25388:1 25400:1 25410:1 25433:1 25456:2 25457:2 25459:1 25460:2 25462:1 25472:1 25477:1 25495:1 25514:1 25515:2 25519:1 25525:1 25527:3 25540:3 25542:1 25555:1 25571:1 25583:1 25584:1 25602:1 25619:1 25624:1 25647:1 25679:1 25717:1 25741:1 25746:1 25753:1 25755:1 25770:2 25772:1 25777:1 25779:1 25851:1 25854:1 25860:1 25880:1 25883:1 25901:2 25912:1 25915:1 25917:1 25956:1 25960:1 25971:1 25987:1 25992:2 25993:1 26011:1 26027:2 26050:1 26059:1 26070:1 26076:1 26091:1 26092:1 26097:1 26098:1 26122:1 26125:2 26128:3 26150:1 26163:3 26175:2 26205:1 26209:1 26215:1 26224:1 26226:1 26227:1 26228:1 26231:3 26232:1 26239:2 26241:2 26242:1 26244:1 26246:1 26250:3 26252:1 26264:1 26270:1 26279:2 26299:1 26318:1 26325:1 26330:1 26340:1
7 10:1 21:1 38:1 73:1 83:1 110:1 116:1 155:4 164:4 182:2 193:2 200:1 207:2 215:2 218:2 234:1 248:1 260:1 274:1 276:1 294:2 298:1 310:1 327:2 334:1 345:1 347:1 360:1 391:1 402:1 407:1 410:1 429:1 437:1 441:1 467:1 471:1 501:1 508:1 510:4 538:4 553:1 603:5 605:2 613:1 626:1 651:1 667:1 675:1 676:1 714:1 722:1 726:6 728:1 746:1 750:3 769:1 781:1 782:3 801:1 807:4 810:1 841:1 842:2 845:3 854:1 877:1 882:1 890:1 933:1 962:2 971:2 982:3 984:1 1021:1 1052:1 1054:1 1071:2 1076:1 1081:1 1083:1 1094:1 1104:1 1168:3 1203:1 1211:1 1220:1 1224:1 1235:1 1241:1 1242:1 1245:1 1272:1 1276:1 1279:3 1287:1 1345:2 1386:1 1394:2 1424:1 1426:1 1436:3 1439:3 1444:1 1449:1 1450:3 1451:3 1466:2 1467:1 1495:1 1517:1 1528:1 1538:1 1539:2 1541:2 1547:1 1579:1 1581:3 1593:1 1596:1 1605:4 1608:1 1611:1 1628:2 1639:2 1653:2 1656:1 1668:1 1672:1 1702:1 1704:1 1705:1 1719:1 1721:1 1731:2 1738:2 1758:1 1788:1 1789:1 1790:1 1796:1 1797:1 1815:4 1827:1 1836:1 1848:5 1868:1 1879:2 1884:1 1888:1 1914:1 1924:1 1925:1 1927:2 1930:5 1941:1 1943:1 1952:1 1964:1 1967:6 1968:1 1970:2 1973:2 1974:1 1978:4 1980:1 1981:2 1982:2 1986:1 1990:4 1994:1 1997:2 2000:2 2002:3 2004:1 2044:1 2053:1 2064:1 2070:1 2078:1 2086:1 2091:2 2099:1 2116:1 2145:1 2155:1 2172:1 2181:1 2200:1 2210:1 2222:1 2223:1 2232:1 2237:1 2241:1 2247:1 2273:1 2316:1 2322:1 2355:1 2357:1 2364:2 2378:1 2394:2 2398:1 2406:1 2429:1 2431:2 2445:3 2446:1 2450:3 2453:3 2460:4 2466:1 2472:1 2500:1 2502:1 2506:1 2508:3 2534:1 2545:5 2579:2 2587:1 2590:18 2605:1 2617:1 2619:1 2641:1 2650:1 2667:1 2696:1 2711:1 2752:1 2760:2 2767:1 2843:1 2858:1 2868:1 2869:1 2875:1 2893:4 2895:1 2900:1 2915:1 2918:8 2922:1 2948:2 2956:1 2977:1 2982:2 3024:1 3037:1 3038:1 3044:1 3046:1 3084:1 3088:1 3091:2 3106:1 3118:1 3124:1 3153:1 3155:2 3159:2 3167:1 3169:1 3181:2 3187:1 3189:1 3191:1 3205:1 3231:1 3235:3 3236:1 3238:2 3239:1 3253:1 3276:1 3290:1 3332:1 3362:1 3365:1 3395:1 3413:1 3421:2 3422:1 3432:1 3435:2 3443:1 3450:1 3453:1 3461:2 3467:1 3474:1 3481:1 3504:2 3511:2 3518:1 3529:2 3530:1 3537:1 3575:1 3576:1 3613:1 3617:4 3622:2 3661:2 3671:1 3682:1 3683:1 3698:2 3706:3 3711:2 3715:1 3732:1 3733:1 3746:1 3752:1 3763:1 3782:1 3789:1 3791:1 3793:1 3805:2 3817:2 3843:2 3851:1 3869:1 3891:1 3896:1 3897:2 3899:1 3908:1 3916:1 3922:1 3942:1 3944:1 3997:4 4004:1 4011:1 4021:1 4022:1 4028:1 4035:1 4036:1 4082:1 4096:2 4097:2 4098:1 4113:1 4120:1 4123:2 4130:1 4136:1 4140:1 4148:1 4193:1 4204:1 4213:1 4215:1 4247:1 4250:1 4284:2 4296:1 4305:22 4308:1 4323:1 4339:1 4342:1 4376:1 4414:2 4429:3 4430:6 4433:2 4436:1 4437:2 4441:1 4443:2 4449:1 4455:1 4456:2 4457:2 4459:1 4484:4 4513:1 4528:2 4533:1 4536:1 4564:2 4573:1 4597:1 4602:4 4625:2 4652:1 4674:1 4702:1 4703:1 4709:1 4719:1 4726:1 4733:1 4742:1 4744:1 4756:1 4765:1 4766:1 4784:1 4812:1 4880:1 4881:1 4888:2 4897:1 4919:1 4922:1 4925:2 4953:1 4970:2 4979:1 5006:1 5010:1 5020:1 5052:1 5053:1 5065:1 5068:2 5071:1 5081:2 5126:2 5203:1 5220:1 5225:1 5267:1 5275:1 5306:1 5319:2 5322:2 5351:1 5379:1 5395:1 5408:1 5412:1 5424:1 5427:1 5441:5 5452:1 5455:1 5470:1 5478:1 5499:1 5516:1 5542:8 5566:4 5581:4 5585:1 5586:1 5600:2 5617:3 5618:1 5625:4 5627:2 5631:1 5632:1 5636:2 5637:1 5638:2 5640:1 5645:2 5647:2 5661:1 5673:1 5732:1 5756:1 5767:1 5769:1 5782:1 5797:1 5800:1 5810:1 5813:2 5818:1 5847:3 5886:1 5890:1 5901:1 5918:2 5987:2 5990:3 6009:4 6010:3 6043:1 6098:1 6102:1 6105:2 6106:1 6108:1 6111:1 6117:2 6135:1 6138:1 6152:1 6170:1 6178:1 6186:1 6188:1 6230:1 6246:2 6273:1 6282:2 6284:1 6320:2 6322:2 6326:1 6328:1 6330:1 6336:1 6338:1 6345:1 6356:1 6381:1 6385:1 6413:1 6459:1 6460:1 6490:1 6502:1 6514:3 6515:1 6519:1 6544:1 6552:2 6561:1 6564:1 6571:1 6589:4 6603:1 6614:1 6621:1 6624:3 6632:1 6633:1 6638:1 6649:1 6653:1 6680:1 6702:2 6712:1 6723:3 6729:1 6740:3 6741:4 6761:3 6789:1 6803:31 6812:1 6822:1 6824:17 6851:1 6872:1 6891:2 6957:1 6963:1 6974:1 6979:1 6986:4 6990:1 6996:1 6997:1 7004:1 7010:1 7025:1 7036:1 7072:1 7083:2 7093:1 7104:1 7126:1 7129:1 7151:1 7152:2 7157:1 7180:2 7194:1 7201:1 7205:1 7219:16 7246:2 7254:1 7274:3 7297:1 7303:1 7306:1 7315:3 7337:1 7341:1 7348:1 7358:1 7363:4 7379:2 7382:2 7391:1 7399:1 7416:2 7420:1 7436:1 7438:1 7439:1 7462:3 7473:2 7499:1 7503:2 7534:1 7536:1 7538:2 7539:2 7542:1 7549:2 7564:1 7565:1 7570:1 7589:2 7610:3 7611:7 7628:2 7644:1 7651:1 7670:1 7673:1 7683:1 7688:1 7697:2 7700:2 7714:1 7725:1 7737:1 7741:1 7767:1 7790:2 7795:1 7806:1 7807:1 7815:2 7835:3 7837:3 7855:1 7872:1 7910:1 7923:1 7937:2 7948:1 7960:1 7966:2 7988:1 8021:2 8028:5 8033:1 8071:1 8090:2 8104:1 8158:2 8167:1 8169:1 8170:1 8175:1 8178:1 8179:1 8180:1 8201:1 8203:1 8219:1 8232:3 8237:1 8253:1 8275:1 8277:1 8309:1 8322:2 8326:1 8328:1 8342:1 8377:2 8378:1 8383:1 8411:2 8432:3 8440:1 8455:1 8476:1 8483:2 8489:1 8498:2 8499:2 8510:2 8532:1 8534:1 8550:1 8561:1 8563:1 8601:3 8616:1 8624:1 8628:1 8631:1 8657:1 8660:1 8664:1 8678:1 8687:1 8730:1 8740:1 8747:1 8748:1 8752:1 8755:2 8769:1 8785:1 8824:1 8825:1 8828:1 8839:1 8867:1 8872:1 8877:1 8882:1 8909:3 8911:1 8914:1 8917:2 8929:2 8944:1 8946:1 8956:3 8959:1 8964:1 8965:2 8970:1 8973:1 8989:1 8993:1 8996:1 9033:1 9044:2 9056:2 9058:1 9061:1 9070:1 9075:1 9085:1 9110:1 9113:2 9117:1 9126:1 9167:1 9216:1 9220:1 9255:1 9264:1 9282:1 9285:1 9288:1 9292:1 9293:1 9312:2 9318:1 9322:1 9344:1 9353:1 9362:1 9374:3 9376:1 9387:1 9419:1 9431:1 9464:1 9473:4 9489:1 9490:1 9506:1 9524:1 9529:1 9532:1 9534:1 9535:1 9606:1 9611:1 9627:1 9645:1 9660:1 9661:1 9664:1 9697:2 9702:1 9708:1 9712:7 9718:1 9736:1 9754:1 9778:1 9791:1 9803:2 9808:1 9831:1 9835:1 9837:1 9870:1 9872:1 9894:1 9900:1 9912:1 9943:1 9946:1 9968:3 9992:1 9995:1 10040:1 10062:1 10066:1 10082:1 10084:1 10087:1 10093:1 10098:2 10103:1 10109:1 10132:1 10133:4 10166:1 10182:1 10187:1 10192:1 10195:1 10204:1 10207:2 10213:1 10239:1 10249:3 10251:1 10274:2 10278:1 10318:3 10320:2 10338:1 10341:2 10350:1 10360:2 10362:1 10366:1 10367:1 10368:2 10370:1 10377:2 10379:4 10381:2 10382:1 10383:3 10384:1 10387:4 10388:3 10401:3 10407:1 10411:1 10427:1 10428:1 10429:1 10441:1 10442:1 10460:1 10464:3 10481:1 10487:1 10502:1 10513:1 10514:1 10518:4 10523:1 10530:1 10570:1 10572:1 10592:1 10597:1 10605:1 10639:3 10665:1 10681:4 10684:1 10694:4 10704:1 10716:1 10729:1 10745:1 10764:1 10774:1 10782:1 10788:2 10800:1 10801:1 10813:1 10838:1 10865:1 10875:2 10894:1 10900:1 10941:1 10942:1 10953:1 10974:1 10986:1 11003:1 11009:1 11011:1 11063:1 11087:2 11093:1 11105:2 11112:1 11115:1 11116:1 11170:1 11174:1 11203:2 11220:1 11228:1 11233:1 11239:1 11261:7 11278:1 11283:1 11294:1 11305:2 11307:2 11314:1 11316:1 11317:1 11332:1 11353:2 11362:2 11373:1 11376:1 11383:1 11396:1 11398:1 11403:1 11426:1 11427:2 11431:2 11432:1 11433:1 11445:1 11460:1 11479:1 11491:1 11495:2 11496:1 11506:1 11514:1 11539:1 11569:2 11570:1 11588:1 11616:2 11621:1 11632:5 11663:1 11694:1 11702:1 11714:1 11733:1 11761:1 11767:1 11778:3 11779:2 11790:1 11797:1 11805:2 11832:1 11848:1 11865:4 11894:1 11918:2 11935:1 11938:1 11970:1 11975:2 11988:1 11992:3 11998:1 12000:2 12018:2 12029:1 12069:1 12073:2 12089:2 12096:3 12098:1 12099:1 12112:2 12114:1 12117:1 12120:1 12122:2 12167:1 12193:2 12199:3 12217:2 12219:2 12225:1 12238:3 12239:2 12244:1 12277:2 12279:1 12281:1 12285:1 12293:1 12309:1 12318:1 12351:1 12354:1 12364:2 12381:1 12390:1 12394:1 12405:1 12410:1 12423:2 12456:1 12459:1 12468:2 12481:2 12488:2 12504:1 12528:1 12542:1 12545:1 12550:2 12556:2 12563:1 12568:1 12584:1 12607:1 12617:1 12642:1 12657:1 12672:1 12673:1 12686:1 12695:1 12697:3 12706:1 12707:1 12712:1 12722:1 12734:1 12789:1 12794:1 12816:1 12817:1 12826:1 12831:1 12837:1 12840:3 12844:1 12845:1 12846:1 12853:1 12889:1 12897:1 12908:2 12919:1 12920:1 12933:1 12936:1 12947:1 12951:1 12958:1 12980:1 12987:1 12994:1 12996:1 13008:1 13021:1 13027:1 13053:1 13086:1 13093:1 13098:1 13102:1 13116:1 13120:1 13132:1 13147:1 13165:1 13182:1 13200:1 13219:2 13227:1 13232:1 13234:2 13242:1 13257:1 13258:1 13261:1 13316:1 13319:1 13349:1 13379:1 13402:1 13414:1 13421:1 13426:1 13428:1 13440:1 13452:2 13453:1 13466:1 13481:1 13488:1 13505:2 13507:1 13532:1 13545:1 13549:1 13551:1 13577:1 13598:2 13615:1 13625:1 13626:4 13637:2 13647:1 13663:1 13673:2 13686:3 13700:1 13704:1 13726:3 13733:1 13734:7 13740:3 13744:1 13764:1 13772:1 13775:5 13804:1 13810:1 13821:1 13831:1 13833:1 13840:1 13870:1 13872:1 13875:1 13876:2 13886:2 13895:1 13897:2 13898:1 13899:3 13900:2 13909:1 13910:1 13916:1 13932:1 13949:1 13952:2 13962:1 13972:1 13991:1 14014:2 14047:1 14062:1 14069:1 14084:1 14108:1 14143:4 14146:1 14149:1 14168:1 14174:1 14179:1 14183:1 14193:1 14216:2 14219:1 14226:1 14275:1 14284:3 14293:2 14313:1 14324:1 14327:1 14358:1 14360:1 14367:1 14369:1 14373:2 14374:1 14386:1 14387:3 14389:2 14390:1 14394:4 14398:1 14399:1 14412:1 14471:1 14480:1 14481:1 14490:1 14515:1 14516:1 14524:1 14526:1 14571:1 14578:2 14580:3 14596:3 14608:2 14609:1 14617:2 14621:1 14649:2 14652:2 14654:1 14657:1 14679:2 14688:1 14694:1 14695:2 14696:1 14700:2 14704:2 14718:1 14720:1 14745:1 14782:1 14783:1 14786:1 14794:5 14814:1 14823:16 14841:1 14859:1 14864:2 14893:2 14908:3 14913:1 14926:1 14967:1 14976:1 15029:1 15036:1 15043:1 15047:1 15054:1 15057:1 15064:1 15069:3 15083:1 15109:1 15117:1 15119:1 15153:1 15156:1 15169:1 15178:3 15196:2 15212:1 15242:1 15265:1 15266:1 15267:1 15276:4 15285:1 15297:1 15302:2 15362:1 15365:2 15380:2 15386:1 15388:1 15401:2 15406:1 15415:1 15417:1 15419:1 15420:1 15421:1 15432:1 15441:1 15448:1 15454:1 15458:1 15505:1 15546:1 15550:1 15556:1 15565:1 15583:1 15642:1 15644:1 15683:2 15699:1 15723:1 15733:2 15738:1 15741:1 15746:1 15748:2 15795:1 15799:3 15833:1 15842:1 15860:2 15870:1 15901:1 15914:2 15934:3 15942:1 15949:1 15967:2 15988:1 15989:1 16002:1 16003:1 16017:1 16029:2 16037:1 16060:1 16068:1 16079:1 16084:1 16112:1 16113:1 16161:1 16162:1 16172:1 16208:1 16216:7 16225:1 16247:1 16265:1 16266:1 16301:8 16309:3 16319:3 16336:1 16360:1 16374:1 16381:1 16388:1 16390:1 16409:1 16419:1 16442:1 16444:1 16446:1 16457:1 16472:1 16481:1 16498:1 16508:1911 16509:1 16512:1 16545:2 16559:2 16567:1 16600:1 16603:1 16604:1 16609:1 16647:3 16650:1 16670:1 16678:2 16693:1 16694:1 16703:1 16713:1 16719:1 16722:2 16735:3 16738:1 16767:2 16787:3 16793:1 16796:1 16827:1 16834:2 16871:1 16894:3 16904:1 16910:2 16914:1 16932:1 16936:1 16942:1 16951:1 16959:1 16987:1 16993:1 16996:1 16997:1 17002:2 17008:1 17009:1 17017:1 17035:1 17042:1 17054:2 17065:1 17077:1 17087:4 17092:1 17095:1 17110:1 17123:2 17125:1 17145:1 17151:1 17153:1 17157:1 17163:1 17165:1 17188:5 17195:3 17202:1 17220:2 17223:1 17236:3 17288:1 17293:1 17295:1 17296:1 17300:1 17327:2 17337:1 17355:1 17358:1 17359:1 17373:1 17385:1 17402:1 17409:1 17424:1 17430:1 17437:2 17464:1 17468:1 17480:1 17494:1 17495:1 17500:1 17511:1 17512:1 17514:1 17516:1 17528:2 17530:1 17534:1 17544:15 17562:1 17565:1 17589:1 17595:3 17598:1 17615:1 17653:1 17664:1 17665:1 17689:5 17706:1 17713:1 17715:1 17716:1 17721:1 17739:2 17759:1 17763:1 17769:4 17775:1 17781:2 17802:3 17803:1 17804:1 17815:1 17822:1 17824:2 17826:1 17834:1 17837:2 17843:1 17845:1 17847:1 17858:1 17873:3 17875:1 17884:1 17886:1 17902:1 17931:18 17940:1 17945:1 17956:1 17960:1 17967:1 17977:1 17991:1 17993:1 18039:1 18045:1 18047:1 18076:1 18102:1 18121:2 18153:2 18154:1 18158:2 18160:2 18193:1 18198:1 18206:1 18212:1 18317:2 18333:1 18342:2 18357:2 18383:3 18397:1 18430:2 18434:1 18445:2 18447:1 18454:1 18460:1 18463:1 18486:1 18503:1 18507:1 18509:1 18511:2 18519:3 18524:1 18527:13 18534:1 18535:1 18542:2 18544:3 18553:1 18563:2 18566:1 18571:1 18573:1 18601:1 18619:1 18636:1 18648:1 18649:1 18692:2 18706:2 18760:2 18762:1 18773:1 18774:1 18777:1 18779:1 18780:2 18781:1 18782:1 18797:2 18800:1 18812:2 18816:1 18823:1 18828:1 18840:1 18848:1 18875:1 18879:1 18917:3 18920:4 18942:1 18946:1 18967:1 18972:1 18979:1 18996:1 19006:1 19024:1 19025:1 19032:2 19039:1 19042:1 19056:5 19062:1 19082:1 19105:2 19108:1 19110:1 19120:1 19125:1 19127:1 19128:1 19132:5 19133:1 19139:1 19141:1 19142:2 19174:1 19175:1 19197:1 19201:1 19203:1 19212:1 19219:2 19239:2 19249:2 19275:2 19276:1 19285:1 19296:2 19298:1 19314:1 19325:1 19332:1 19348:1 19421:2 19422:1 19433:1 19434:3 19436:1 19438:1 19455:3 19456:1 19459:1 19467:1 19490:1 19500:1 19535:2 19558:2 19568:1 19575:1 19600:4 19624:2 19630:1 19632:2 19636:1 19638:1 19644:1 19648:1 19656:1 19665:1 19677:1 19681:1 19683:2 19685:1 19696:1 19709:1 19725:1 19740:2 19743:1 19748:1 19758:1 19759:1 19765:4 19787:1 19798:1 19801:1 19817:2 19822:1 19831:1 19832:1 19842:1 19843:1 19858:1 19869:3 19887:1 19888:1 19899:1 19906:1 19909:1 19921:1 19923:1 19937:1 19938:4 19942:2 19958:2 19960:1 19969:1 19970:2 19991:2 19998:1 19999:5 20011:1 20025:2 20039:1 20052:1 20059:2 20062:1 20086:2 20119:1 20124:1 20132:1 20152:1 20160:1 20166:1 20172:1 20186:3 20199:3 20203:1 20204:1 20210:1 20240:1 20262:1 20268:1 20272:1 20282:1 20287:1 20297:5 20307:1 20309:1 20313:1 20320:1 20333:3 20334:2 20374:1 20390:1 20399:1 20400:1 20409:1 20413:1 20421:1 20438:1 20455:1 20461:1 20485:1 20508:1 20514:1 20541:1 20545:1 20554:1 20565:1 20572:1 20577:1 20606:1 20617:1 20640:2 20642:1 20652:1 20695:2 20703:1 20707:1 20713:1 20717:1 20742:3 20750:2 20754:1 20770:1 20802:1 20818:2 20827:1 20835:3 20837:1 20840:1 20841:1 20868:1 20870:2 20888:4 20891:1 20893:1 20894:1 20910:1 20927:1 20929:1 20941:1 20963:1 20975:1 20991:1 21000:2 21004:1 21006:1 21066:2 21070:1 21075:1 21077:2 21109:1 21116:1 21123:1 21132:1 21151:3 21154:1 21194:1 21222:1 21232:1 21311:1 21341:1 21344:3 21346:1 21392:1 21397:1 21400:1 21416:2 21432:1 21441:1 21451:2 21481:1 21483:1 21494:1 21504:2 21519:1 21529:1 21537:2 21571:1 21578:1 21582:3 21599:1 21621:1 21631:2 21642:2 21645:1 21689:2 21719:1 21751:1 21752:2 21762:1 21767:1 21768:1 21769:3 21770:2 21772:1 21778:1 21779:1 21784:4 21795:2 21796:1 21801:2 21812:3 21846:1 21858:1 21859:1 21868:8 21869:3 21872:1 21877:3 21905:2 21925:3 21926:2 21958:1 21961:1 21962:1 21993:1 22027:1 22032:1 22036:1 22063:1 22065:1 22082:1 22089:1 22099:1 22143:1 22188:1 22197:1 22220:1 22240:1 22253:1 22284:1 22295:9 22343:1 22344:1 22346:1 22363:1 22377:1 22397:1 22410:1 22426:1 22459:1 22461:5 22477:1 22491:4 22506:1 22558:1 22598:1 22600:1 22654:2 22672:2 22676:1 22691:1 22697:1 22702:2 22706:2 22707:1 22742:2 22745:1 22757:1 22759:2 22765:1 22787:1 22794:1 22795:1 22796:3 22797:1 22801:2 22819:1 22848:1 22862:1 22876:2 22891:2 22907:1 22919:1 22941:1 22944:3 22955:1 22969:1 22976:3 22977:4 22993:2 23011:1 23013:1 23016:1 23023:1 23026:1 23031:2 23035:1 23037:2 23038:1 23083:1 23088:1 23106:2 23111:1 23135:1 23162:2 23164:1 23173:1 23179:1 23180:2 23203:1 23209:1 23238:1 23244:1 23246:1 23256:1 23265:2 23270:1 23291:1 23316:1 23345:1 23350:3 23376:1 23383:1 23388:1 23389:1 23410:11 23411:2 23418:1 23458:2 23480:1 23484:1 23507:1 23511:1 23520:1 23530:1 23533:1 23548:1 23552:3 23566:1 23597:1 23633:1 23643:1 23665:1 23666:2 23691:1 23698:1 23699:1 23703:2 23734:1 23735:1 23760:1 23787:1 23819:1 23837:1 23853:1 23888:1 23905:1 23924:1 23927:1 23937:1 23957:2 23963:1 23968:1 23987:1 24003:1 24016:1 24017:3 24037:1 24049:1 24053:1 24064:1 24107:1 24108:1 24109:2 24119:3 24120:2 24121:1 24141:2 24148:1 24149:1 24150:3 24162:1 24164:1 24177:2 24179:2 24190:2 24217:1 24221:6 24230:2 24232:1 24233:1 24237:1 24241:1 24251:1 24271:1 24292:2 24295:2 24329:1 24332:1 24345:1 24361:1 24366:2 24404:1 24412:1 24414:1 24415:1 24419:1 24427:1 24428:1 24432:1 24439:1 24442:1 24443:1 24444:1 24445:1 24455:1 24459:1 24464:2 24469:1 24474:1 24476:1 24479:1 24480:2 24485:1 24486:1 24488:1 24489:1 24492:1 24495:2 24502:2 24503:1 24508:1 24511:1 24515:1 24548:1 24552:1 24588:1 24596:3 24615:1 24644:1 24658:1 24664:1 24665:2 24667:1 24684:1 24709:1 24729:1 24745:1 24751:2 24767:2 24769:2 24771:1 24775:1 24777:1 24805:1 24810:1 24816:1 24818:1 24868:1 24899:1 24905:2 24917:1 24949:1 24952:1 24962:1 24986:2 25022:5 25027:1 25031:1 25036:1 25037:4 25044:1 25054:1 25066:1 25069:1 25075:1 25083:1 25093:1 25096:1 25102:1 25110:8 25112:1 25116:1 25137:1 25141:3 25159:2 25164:1 25215:1 25245:1 25251:5 25260:1 25276:1 25278:4 25282:1 25287:1 25290:1 25296:2 25310:1 25312:1 25316:1 25324:1 25325:1 25327:2 25334:1 25342:1 25348:1 25351:1 25363:4 25364:1 25382:1 25388:1 25400:1 25410:1 25433:1 25456:2 25457:2 25459:1 25460:2 25462:1 25472:1 25477:1 25495:1 25514:1 25515:2 25519:1 25525:1 25527:3 25530:1 25540:3 25542:1 25555:1 25571:1 25583:1 25584:1 25602:1 25603:1 25619:1 25624:1 25647:1 25679:1 25717:1 25741:1 25746:1 25753:1 25755:1 25770:2 25772:1 25777:1 25779:1 25811:1 25851:1 25854:1 25860:1 25880:1 25883:1 25901:2 25912:1 25915:1 25917:1 25956:1 25960:1 25971:1 25987:1 25992:2 25993:1 25997:1 26011:1 26027:2 26050:1 26059:1 26070:1 26076:1 26091:1 26092:1 26097:1 26098:1 26122:1 26125:2 26128:4 26150:1 26163:3 26175:2 26205:1 26209:1 26215:1 26224:1 26226:1 26227:1 26228:1 26231:3 26232:1 26239:2 26241:2 26242:1 26244:1 26246:1 26250:3 26252:1 26264:1 26270:1 26279:3 26299:1 26318:1 26325:1 26330:1 26340:1
7 10:1 21:1 24:1 38:1 73:1 83:1 110:1 116:1 155:4 164:4 182:2 193:2 200:1 207:2 215:2 218:2 234:1 248:1 260:1 274:1 276:1 294:2 298:1 310:1 327:2 334:1 345:1 346:1 347:1 360:1 391:1 402:1 407:1 410:1 429:1 437:1 441:1 467:1 471:1 479:1 501:1 508:1 510:4 538:4 553:1 603:6 605:2 613:1 626:1 651:1 667:1 675:1 676:1 714:1 722:1 726:6 728:1 746:1 750:3 769:1 781:1 782:3 801:1 807:4 810:1 841:1 842:2 845:3 854:1 877:1 882:1 890:1 933:1 962:2 971:2 982:3 984:1 1010:1 1013:1 1021:1 1052:1 1054:1 1071:2 1076:1 1081:1 1083:1 1088:1 1094:1 1104:1 1168:3 1190:1 1203:1 1211:1 1220:1 1224:1 1235:1 1241:1 1242:1 1245:1 1272:1 1276:2 1279:3 1287:1 1345:2 1386:2 1394:2 1424:1 1426:1 1436:3 1439:3 1444:1 1449:1 1450:3 1451:3 1466:2 1467:1 1495:1 1502:1 1517:1 1528:1 1538:1 1539:2 1541:2 1547:1 1552:1 1579:1 1581:3 1593:1 1596:1 1605:4 1608:1 1611:1 1628:2 1639:2 1653:2 1656:1 1657:1 1668:1 1672:1 1702:1 1704:1 1705:1 1719:1 1721:1 1731:2 1738:2 1758:1 1788:1 1789:1 1790:1 1796:1 1797:1 1815:4 1827:1 1836:1 1848:5 1868:1 1879:2 1884:1 1888:1 1914:1 1924:1 1925:1 1927:2 1930:5 1941:1 1943:1 1952:1 1964:1 1967:6 1968:1 1970:2 1973:2 1974:1 1978:4 1980:1 1981:2 1982:2 1986:1 1990:5 1994:1 1997:2 2000:2 2002:3 2004:1 2044:1 2053:1 2064:1 2070:1 2078:1 2086:1 2089:1 2091:2 2099:1 2116:1 2145:1 2155:1 2172:1 2181:1 2200:1 2210:1 2222:1 2223:1 2232:1 2237:1 2241:1 2247:1 2273:1 2316:1 2322:1 2355:1 2357:1 2364:2 2378:1 2394:2 2398:1 2406:1 2429:1 2431:2 2445:3 2446:1 2450:3 2453:3 2460:4 2466:1 2472:1 2500:1 2502:1 2505:1 2506:1 2508:3 2534:1 2545:5 2579:2 2587:1 2590:18 2605:1 2617:1 2619:1 2641:1 2650:1 2667:1 2696:1 2711:1 2752:1 2760:2 2767:1 2798:1 2843:1 2858:1 2859:1 2868:1 2869:1 2875:1 2893:4 2895:1 2900:1 2915:1 2918:8 2922:1 2948:2 2956:1 2977:1 2982:2 3024:1 3037:1 3038:1 3044:1 3046:1 3084:1 3088:1 3091:2 3106:1 3118:1 3123:1 3124:1 3153:1 3155:2 3159:2 3167:1 3169:1 3181:2 3187:1 3189:1 3191:1 3205:1 3231:1 3235:3 3236:1 3238:2 3239:1 3253:1 3276:1 3290:1 3332:1 3343:1 3362:1 3365:1 3382:1 3395:1 3413:1 3421:2 3422:1 3432:1 3435:2 3443:1 3450:1 3453:1 3461:2 3467:1 3474:1 3481:1 3504:2 3511:2 3518:1 3529:2 3530:1 3537:1 3575:1 3576:1 3613:1 3617:4 3622:2 3661:2 3671:1 3682:1 3683:1 3698:3 3706:3 3711:2 3712:1 3715:1 3732:1 3733:1 3746:1 3752:1 3763:1 3782:1 3789:1 3791:1 3793:1 3805:2 3817:2 3843:2 3851:1 3869:1 3891:1 3896:1 3897:2 3899:1 3908:1 3916:1 3922:1 3942:1 3944:1 3997:4 4004:1 4011:1 4021:1 4022:1 4028:1 4035:1 4036:1 4079:1 4082:1 4096:2 4097:2 4098:1 4113:1 4120:1 4123:2 4130:1 4136:1 4140:1 4148:1 4193:1 4204:1 4213:1 4215:1 4247:1 4250:1 4284:2 4296:1 4305:23 4308:1 4323:1 4339:1 4342:1 4376:1 4395:1 4414:2 4429:3 4430:7 4433:2 4436:2 4437:2 4441:1 4443:2 4449:1 4455:1 4456:2 4457:2 4459:1 4484:4 4513:1 4528:2 4533:1 4536:1 4564:2 4573:1 4597:1 4602:4 4625:2 4652:1 4674:1 4702:1 4703:1 4709:1 4719:1 4726:1 4733:1 4742:1 4744:1 4756:1 4765:1 4766:1 4784:1 4803:1 4812:1 4880:1 4881:1 4888:2 4897:1 4919:1 4922:1 4925:2 4953:1 4970:2 4979:1 5006:1 5007:1 5010:1 5020:1 5052:1 5053:1 5065:1 5068:2 5071:1 5081:2 5126:2 5137:1 5203:1 5220:1 5225:1 5267:1 5275:1 5306:1 5319:2 5322:2 5351:1 5379:1 5395:1 5408:1 5412:1 5424:1 5427:1 5441:5 5452:1 5455:1 5470:1 5471:1 5478:1 5499:1 5516:1 5542:8 5566:4 5581:4 5585:1 5586:1 5600:2 5617:4 5618:1 5625:4 5627:2 5631:2 5632:1 5636:2 5637:1 5638:2 5640:2 5645:2 5647:2 5661:1 5673:1 5732:1 5756:1 5767:1 5769:1 5782:1 5797:1 5800:1 5810:1 5813:2 5818:1 5844:1 5847:3 5886:1 5890:1 5901:1 5918:3 5974:1 5987:2 5990:3 6009:4 6010:3 6043:1 6098:1 6102:1 6105:2 6106:1 6108:1 6111:1 6117:2 6135:1 6138:1 6152:1 6167:1 6170:1 6178:1 6186:1 6187:1 6188:1 6230:1 6246:2 6273:1 6282:2 6284:1 6320:2 6322:2 6326:1 6328:1 6330:1 6336:1 6338:1 6345:1 6356:1 6381:1 6385:1 6413:1 6459:1 6460:1 6478:1 6490:1 6502:1 6514:3 6515:1 6519:1 6529:1 6544:1 6552:2 6561:1 6564:1 6571:1 6589:4 6603:1 6614:1 6621:1 6624:3 6632:1 6633:1 6638:1 6649:1 6653:1 6680:1 6702:2 6712:1 6723:3 6729:1 6740:3 6741:4 6761:3 6789:1 6790:1 6803:31 6812:1 6822:1 6824:17 6851:1 6872:1 6891:2 6957:1 6963:1 6974:1 6979:1 6986:4 6990:1 6996:1 6997:1 7004:1 7010:1 7025:1 7036:1 7072:1 7083:2 7093:1 7104:1 7126:1 7129:1 7151:1 7152:2 7157:1 7180:2 7194:1 7201:1 7205:1 7219:18 7246:2 7254:1 7274:3 7297:1 7303:1 7306:1 7315:3 7337:1 7341:1 7348:1 7358:1 7363:4 7379:2 7382:2 7391:1 7399:1 7416:2 7420:1 7436:1 7438:1 7439:1 7462:3 7473:2 7499:1 7503:2 7534:1 7536:1 7538:2 7539:2 7542:1 7549:2 7564:1 7565:1 7570:1 7589:2 7610:3 7611:7 7628:2 7644:1 7651:1 7670:1 7673:1 7683:1 7688:1 7697:2 7700:2 7714:1 7725:1 7737:1 7741:1 7767:1 7790:2 7791:2 7795:1 7806:1 7807:1 7815:2 7835:3 7837:3 7855:1 7872:1 7910:1 7923:1 7937:2 7948:1 7960:1 7966:2 7988:1 8021:2 8028:5 8033:1 8071:1 8090:2 8104:1 8158:2 8167:1 8169:1 8170:1 8175:1 8178:1 8179:2 8180:1 8201:1 8203:1 8219:1 8232:3 8237:1 8253:1 8275:1 8277:1 8309:1 8322:2 8326:1 8328:1 8342:1 8377:2 8378:1 8383:1 8411:2 8432:3 8440:1 8455:1 8469:2 8476:1 8483:2 8489:1 8498:2 8499:2 8510:2 8532:1 8534:1 8550:1 8561:1 8563:1 8601:3 8616:1 8624:1 8628:1 8631:1 8657:1 8660:2 8664:1 8678:1 8687:1 8730:1 8740:1 8747:1 8748:1 8752:1 8755:2 8769:1 8785:1 8824:1 8825:1 8828:1 8839:2 8867:1 8872:1 8877:1 8882:1 8902:1 8909:3 8911:1 8914:1 8917:2 8929:2 8944:1 8946:1 8956:3 8959:1 8964:1 8965:2 8970:1 8973:1 8989:1 8993:1 8996:1 9033:1 9044:2 9056:2 9058:1 9061:1 9070:1 9075:1 9085:1 9110:1 9113:2 9117:1 9126:1 9167:1 9209:1 9216:1 9220:1 9255:2 9264:1 9282:1 9285:1 9288:1 9292:1 9293:2 9312:2 9318:1 9322:1 9344:1 9353:1 9362:1 9374:3 9376:1 9387:1 9419:1 9431:1 9464:1 9473:4 9489:1 9490:1 9506:1 9524:1 9529:1 9532:1 9534:1 9535:1 9539:1 9606:1 9611:1 9623:1 9627:1 9645:1 9660:1 9661:1 9664:1 9697:2 9702:1 9708:1 9712:7 9718:1 9736:1 9747:1 9754:1 9778:1 9791:1 9803:2 9808:1 9831:1 9835:1 9837:1 9870:1 9872:1 9894:1 9900:1 9912:1 9943:1 9946:1 9968:3 9992:1 9995:1 9997:1 10003:1 10019:1 10040:1 10062:1 10066:1 10082:1 10084:1 10087:1 10093:1 10098:2 10103:1 10109:1 10132:1 10133:5 10166:1 10182:1 10187:1 10192:1 10195:1 10204:1 10207:2 10213:1 10233:1 10239:1 10249:3 10251:1 10274:2 10278:1 10318:4 10320:2 10338:1 10341:2 10350:1 10360:2 10362:1 10366:1 10367:1 10368:2 10370:1 10377:3 10379:4 10381:2 10382:1 10383:3 10384:1 10387:4 10388:3 10401:3 10407:1 10411:1 10427:1 10428:1 10429:1 10441:1 10442:1 10460:1 10464:3 10481:1 10487:1 10502:1 10513:1 10514:1 10518:4 10523:1 10530:1 10570:1 10572:1 10592:1 10597:1 10605:1 10639:3 10665:1 10681:4 10684:1 10694:4 10704:1 10716:1 10729:1 10745:1 10764:1 10774:1 10782:1 10785:1 10788:2 10800:1 10801:1 10813:1 10838:1 10865:1 10875:2 10894:1 10900:1 10941:1 10942:1 10953:1 10974:1 10986:1 11003:1 11009:1 11011:1 11063:1 11086:1 11087:2 11093:1 11105:2 11112:1 11115:1 11116:1 11170:1 11174:1 11203:2 11220:1 11228:1 11233:1 11239:1 11261:7 11278:1 11283:1 11294:1 11305:2 11307:2 11314:1 11316:1 11317:1 11332:1 11353:2 11358:1 11362:2 11370:1 11373:1 11376:1 11383:1 11396:1 11398:1 11403:1 11414:1 11426:1 11427:2 11431:2 11432:1 11433:1 11445:1 11460:1 11479:1 11491:1 11495:2 11496:1 11506:1 11514:1 11539:1 11569:2 11570:1 11588:1 11616:2 11621:1 11632:5 11663:1 11694:1 11702:1 11714:1 11733:1 11761:1 11767:1 11778:3 11779:2 11790:1 11797:1 11805:2 11832:1 11848:1 11865:4 11894:1 11918:2 11935:1 11938:1 11970:1 11975:2 11988:1 11992:3 11998:1 12000:2 12018:2 12029:1 12069:1 12073:2 12089:2 12096:3 12098:1 12099:1 12112:2 12114:1 12117:1 12120:1 12122:2 12167:1 12193:2 12199:3 12217:2 12219:2 12225:1 12238:3 12239:2 12244:1 12277:2 12279:1 12281:1 12285:1 12293:1 12309:1 12318:1 12351:1 12354:1 12364:2 12381:1 12390:1 12394:1 12405:1 12410:1 12423:2 12456:1 12459:1 12468:2 12481:2 12488:2 12504:1 12528:1 12542:1 12545:1 12550:2 12556:2 12563:1 12568:1 12584:1 12586:1 12607:1 12617:1 12642:1 12657:1 12672:1 12673:1 12686:1 12695:1 12697:3 12706:1 12707:1 12712:1 12722:1 12734:1 12789:1 12794:1 12816:1 12817:1 12826:1 12827:1 12831:1 12837:1 12840:3 12844:1 12845:1 12846:1 12853:1 12889:1 12897:1 12908:2 12919:1 12920:1 12933:1 12936:1 12947:1 12951:1 12958:1 12962:1 12980:1 12987:1 12994:1 12996:1 13008:1 13021:1 13027:1 13053:1 13086:1 13093:1 13098:1 13102:1 13116:1 13120:1 13132:1 13147:1 13165:1 13182:1 13200:1 13219:2 13227:1 13232:1 13234:3 13242:1 13257:1 13258:1 13261:1 13316:1 13319:1 13349:1 13379:1 13402:1 13414:1 13421:1 13426:1 13428:1 13440:1 13452:2 13453:1 13466:1 13481:1 13488:1 13505:3 13507:1 13532:1 13545:1 13549:1 13551:1 13577:1 13598:2 13615:1 13624:1 13625:1 13626:4 13637:2 13647:1 13663:1 13673:2 13686:3 13700:1 13704:1 13726:3 13733:1 13734:7 13740:3 13744:1 13764:1 13772:1 13775:5 13804:1 13810:1 13821:1 13831:1 13833:1 13840:1 13865:1 13870:1 13872:1 13875:1 13876:2 13886:2 13895:1 13897:2 13898:1 13899:3 13900:2 13909:1 13910:1 13916:1 13932:1 13949:1 13952:2 13962:1 13972:1 13988:1 13991:1 14014:2 14047:1 14062:1 14069:1 14084:1 14108:1 14143:4 14146:1 14149:1 14168:1 14169:1 14174:1 14179:1 14183:1 14193:1 14216:2 14219:1 14226:1 14275:1 14276:1 14284:3 14293:3 14313:1 14324:1 14327:1 14358:1 14360:1 14367:1 14369:1 14373:2 14374:1 14386:1 14387:3 14389:3 14390:1 14394:4 14398:2 14399:1 14412:1 14433:1 14471:1 14480:1 14481:1 14488:1 14490:1 14515:1 14516:1 14524:1 14526:1 14554:1 14571:1 14578:2 14580:3 14596:3 14608:2 14609:1 14617:2 14621:1 14649:2 14652:2 14654:1 14657:1 14679:2 14688:1 14694:1 14695:2 14696:1 14700:2 14704:2 14718:1 14720:1 14745:1 14782:1 14783:1 14786:1 14794:5 14814:1 14823:16 14841:1 14859:1 14864:2 14893:2 14908:3 14913:1 14926:1 14967:1 14976:1 15029:1 15036:1 15043:1 15047:1 15054:1 15057:1 15064:1 15069:3 15083:1 15109:1 15117:1 15119:1 15153:1 15156:1 15161:1 15169:1 15178:3 15196:2 15212:1 15242:1 15265:1 15266:1 15267:1 15276:4 15285:1 15297:1 15302:2 15362:1 15365:2 15380:2 15386:1 15388:1 15401:2 15406:1 15409:1 15415:1 15417:1 15419:1 15420:1 15421:1 15432:1 15440:1 15441:1 15448:1 15454:1 15458:1 15476:2 15505:1 15546:1 15550:1 15556:1 15565:1 15583:1 15642:1 15644:1 15683:2 15699:1 15723:1 15733:2 15738:1 15741:1 15746:1 15748:2 15795:1 15799:3 15833:1 15842:1 15860:2 15870:1 15901:1 15914:2 15934:3 15942:1 15949:1 15967:2 15975:1 15988:1 15989:1 16002:1 16003:1 16017:1 16029:2 16037:1 16060:1 16068:1 16079:1 16084:1 16112:1 16113:1 16161:1 16162:1 16172:1 16208:1 16216:7 16225:1 16247:1 16265:1 16266:1 16301:8 16309:3 16319:3 16336:1 16360:1 16374:1 16381:1 16388:1 16390:2 16409:1 16419:1 16442:1 16444:1 16446:1 16457:1 16472:1 16481:1 16498:1 16508:2013 16509:1 16512:1 16545:2 16559:2 16567:1 16600:1 16603:1 16604:1 16609:1 16647:3 16650:1 16670:1 16678:2 16693:1 16694:1 16703:1 16713:1 16719:1 16722:2 16735:3 16738:1 16767:2 16787:3 16793:1 16796:1 16827:1 16834:2 16871:1 16894:3 16904:1 16910:2 16914:1 16932:1 16936:1 16942:1 16951:1 16959:1 16961:1 16974:1 16987:1 16993:1 16996:1 16997:1 17002:2 17008:2 17009:1 17017:1 17024:1 17035:1 17042:1 17054:2 17065:1 17077:1 17087:4 17092:1 17095:1 17110:1 17123:2 17125:1 17145:1 17151:1 17153:1 17157:1 17163:1 17165:1 17188:6 17195:3 17202:1 17220:2 17223:1 17236:3 17288:1 17293:1 17295:1 17296:1 17300:1 17327:2 17337:1 17355:1 17358:1 17359:1 17373:1 17385:1 17402:1 17409:1 17424:1 17430:1 17437:2 17464:1 17468:1 17480:1 17494:2 17495:1 17500:1 17511:1 17512:1 17514:1 17516:1 17528:2 17530:1 17534:1 17544:15 17562:1 17565:1 17569:1 17589:1 17595:3 17598:1 17615:1 17653:1 17664:1 17665:1 17689:5 17706:1 17713:1 17715:1 17716:1 17721:1 17739:2 17759:1 17763:1 17769:4 17775:1 17781:2 17802:3 17803:1 17804:1 17815:1 17822:1 17824:2 17826:1 17834:1 17837:2 17843:1 17845:1 17847:1 17858:1 17873:3 17875:1 17884:1 17886:1 17902:1 17931:18 17940:1 17945:1 17956:1 17960:1 17967:1 17977:1 17991:1 17993:1 18039:1 18045:1 18047:1 18076:1 18102:1 18121:2 18153:2 18154:1 18158:2 18160:2 18193:1 18198:1 18206:1 18212:1 18317:2 18333:1 18342:2 18343:1 18357:2 18378:1 18383:3 18397:1 18403:1 18430:2 18434:1 18445:2 18447:1 18454:1 18460:1 18463:1 18486:1 18503:1 18507:1 18509:1 18511:2 18519:3 18524:1 18527:13 18534:1 18535:1 18542:2 18544:3 18553:1 18563:2 18566:1 18571:1 18572:1 18573:1 18601:1 18619:1 18636:1 18648:1 18649:2 18692:2 18706:2 18760:2 18762:1 18773:1 18774:1 18777:1 18779:1 18780:2 18781:1 18782:1 18797:2 18800:1 18812:2 18816:1 18823:1 18828:1 18840:1 18848:1 18875:1 18879:1 18900:1 18917:3 18920:4 18942:1 18946:1 18967:1 18972:1 18979:1 18996:1 19006:1 19024:1 19025:1 19032:2 19039:1 19042:1 19043:1 19056:6 19062:1 19064:1 19082:1 19105:2 19108:1 19110:1 19120:1 19125:1 19127:1 19128:1 19132:5 19133:1 19139:1 19141:1 19142:2 19174:1 19175:2 19197:1 19201:1 19203:1 19212:1 19219:2 19239:2 19249:2 19275:2 19276:1 19285:2 19296:2 19298:1 19314:1 19325:1 19332:1 19348:1 19421:2 19422:1 19433:1 19434:4 19436:2 19438:1 19455:3 19456:1 19459:1 19467:1 19490:1 19500:1 19535:2 19558:2 19568:1 19575:1 19600:4 19624:2 19630:1 19632:2 19636:1 19638:1 19644:1 19648:1 19656:1 19665:1 19677:1 19681:1 19683:2 19685:1 19696:1 19709:1 19725:1 19740:2 19743:1 19748:1 19758:1 19759:1 19765:4 19787:2 19798:1 19801:1 19817:3 19822:1 19831:1 19832:1 19842:1 19843:1 19858:1 19869:3 19885:1 19887:1 19888:1 19899:1 19906:1 19909:1 19916:1 19921:1 19923:1 19937:1 19938:4 19942:2 19958:2 19960:1 19969:1 19970:2 19991:2 19998:1 19999:5 20011:1 20025:2 20039:1 20052:1 20059:2 20062:1 20086:2 20119:1 20124:1 20132:1 20152:1 20160:1 20166:1 20172:1 20186:3 20199:3 20203:1 20204:1 20210:1 20240:1 20262:1 20268:1 20272:1 20282:1 20287:1 20297:6 20307:1 20309:1 20313:1 20320:1 20333:3 20334:2 20374:1 20390:1 20399:1 20400:1 20409:1 20413:1 20421:1 20438:1 20455:1 20461:1 20485:1 20508:1 20514:1 20541:1 20545:1 20554:1 20565:1 20572:1 20577:1 20606:1 20617:1 20640:2 20642:1 20652:1 20695:2 20703:1 20707:1 20713:1 20717:1 20742:3 20750:2 20754:1 20770:1 20802:1 20818:2 20827:1 20835:3 20837:1 20840:1 20841:1 20868:1 20870:3 20888:4 20891:1 20893:1 20894:1 20910:1 20927:1 20929:1 20941:1 20963:1 20975:1 20991:1 21000:2 21004:1 21006:1 21066:2 21070:1 21075:1 21077:2 21081:1 21109:1 21116:1 21123:1 21132:1 21151:3 21154:1 21182:1 21194:1 21215:1 21222:1 21232:1 21303:1 21311:1 21341:1 21344:3 21346:1 21392:1 21397:1 21400:1 21416:2 21432:2 21441:1 21451:2 21481:1 21483:1 21494:1 21504:2 21519:1 21526:1 21529:1 21537:2 21571:1 21578:1 21582:3 21599:1 21621:1 21631:2 21642:2 21645:1 21689:2 21719:1 21751:1 21752:2 21762:2 21767:1 21768:1 21769:3 21770:2 21772:1 21778:1 21779:1 21784:4 21795:2 21796:1 21801:2 21812:4 21846:1 21858:1 21859:1 21868:8 21869:3 21872:1 21877:3 21905:2 21915:1 21925:3 21926:2 21958:1 21961:1 21962:1 21993:1 22027:1 22032:1 22036:1 22063:1 22065:1 22082:1 22089:1 22099:1 22143:1 22188:1 22197:1 22220:1 22240:1 22253:1 22284:1 22295:9 22343:1 22344:1 22346:1 22363:1 22377:1 22397:1 22410:1 22426:1 22459:1 22461:5 22477:1 22491:4 22506:1 22557:2 22558:1 22598:1 22600:1 22654:2 22672:2 22676:1 22691:1 22697:1 22702:2 22706:3 22707:1 22742:2 22745:1 22757:1 22759:2 22765:1 22787:1 22794:1 22795:1 22796:3 22797:1 22801:2 22819:1 22848:1 22862:1 22876:2 22891:2 22907:1 22919:1 22941:1 22944:3 22955:1 22969:1 22976:4 22977:4 22993:2 23011:1 23013:1 23016:1 23023:1 23026:1 23031:2 23035:1 23037:2 23038:1 23083:1 23088:1 23106:2 23111:1 23135:1 23162:2 23164:1 23173:1 23179:1 23180:2 23203:1 23209:1 23238:1 23244:1 23246:1 23256:1 23265:2 23270:1 23291:1 23316:1 23334:1 23345:1 23350:3 23376:1 23383:1 23388:1 23389:1 23410:11 23411:2 23418:1 23458:2 23480:2 23484:1 23507:1 23511:1 23520:1 23530:1 23533:1 23548:1 23552:3 23566:1 23597:1 23633:1 23643:1 23665:1 23666:2 23691:2 23698:1 23699:1 23703:2 23734:1 23735:1 23760:1 23787:1 23819:1 23837:1 23853:1 23855:1 23888:1 23905:1 23924:1 23927:1 23937:1 23957:2 23963:1 23968:1 23987:1 24003:1 24016:1 24017:3 24037:1 24049:1 24053:1 24064:1 24107:1 24108:1 24109:2 24119:3 24120:2 24121:1 24141:2 24148:1 24149:1 24150:3 24162:1 24164:1 24177:2 24179:2 24190:2 24212:1 24217:1 24221:6 24230:2 24232:1 24233:1 24237:1 24241:1 24251:1 24271:1 24292:2 24295:2 24329:1 24332:1 24345:1 24361:1 24366:3 24404:1 24407:1 24412:1 24414:1 24415:1 24419:1 24427:1 24428:1 24432:1 24439:1 24442:1 24443:1 24444:1 24445:1 24455:1 24459:1 24464:2 24469:1 24474:1 24476:1 24479:1 24480:2 24485:1 24486:1 24488:1 24489:1 24492:1 24495:2 24502:2 24503:1 24508:1 24511:1 24515:1 24538:1 24548:1 24552:1 24588:1 24596:3 24615:1 24644:1 24658:1 24664:1 24665:2 24667:1 24684:1 24709:1 24729:1 24745:1 24751:2 24767:2 24769:2 24771:1 24775:1 24777:1 24805:1 24810:1 24816:1 24818:1 24868:1 24899:1 24905:2 24917:1 24949:1 24952:1 24962:1 24986:2 25022:5 25027:1 25031:1 25036:1 25037:4 25044:1 25054:1 25066:1 25069:1 25075:1 25083:1 25093:1 25096:1 25099:1 25102:1 25110:8 25112:1 25116:1 25137:1 25141:3 25159:2 25164:1 25208:1 25215:1 25245:1 25251:5 25260:1 25276:1 25278:4 25282:1 25284:1 25287:1 25290:1 25296:2 25310:1 25312:1 25316:1 25324:1 25325:1 25327:2 25334:1 25342:1 25348:1 25351:1 25363:4 25364:1 25382:1 25388:1 25400:1 25410:1 25433:1 25456:2 25457:2 25459:1 25460:2 25462:1 25472:1 25477:1 25495:1 25514:1 25515:2 25519:1 25525:1 25527:3 25530:1 25540:3 25542:2 25555:1 25571:1 25583:1 25584:1 25602:1 25603:1 25619:1 25624:1 25647:1 25679:1 25699:1 25713:1 25717:1 25741:1 25746:1 25753:1 25755:1 25770:2 25772:1 25777:1 25779:1 25811:1 25851:1 25854:1 25860:1 25880:1 25883:1 25901:2 25912:1 25915:1 25917:1 25956:1 25960:1 25971:1 25987:1 25992:2 25993:1 25997:1 26011:1 26027:2 26050:1 26059:1 26070:1 26076:1 26091:1 26092:1 26097:1 26098:1 26122:1 26125:2 26128:4 26133:1 26150:1 26163:3 26175:2 26205:2 26209:1 26215:1 26224:1 26226:1 26227:1 26228:1 26231:3 26232:1 26239:2 26241:2 26242:1 26244:1 26246:1 26250:3 26252:1 26264:1 26270:1 26279:4 26299:1 26318:1 26325:1 26330:1 26340:1
7 10:1 21:1 24:1 38:1 73:1 83:1 110:1 116:1 155:4 164:4 182:2 193:2 200:1 207:2 215:2 218:2 234:1 248:1 260:1 274:1 276:1 294:2 298:1 310:1 327:2 334:1 345:1 346:1 347:1 360:1 391:1 402:1 407:1 410:1 429:1 437:1 441:1 467:1 471:1 479:1 501:1 508:1 510:4 538:4 553:1 603:6 605:2 613:1 626:1 651:1 667:1 675:1 676:1 714:1 722:1 726:6 728:1 746:1 750:3 769:1 781:1 782:3 801:1 807:4 810:1 841:1 842:2 845:3 854:1 877:1 882:1 890:1 933:1 962:2 971:2 982:3 984:1 1010:1 1013:1 1021:1 1052:1 1054:1 1071:2 1076:1 1081:1 1083:1 1088:1 1094:1 1104:1 1168:3 1190:2 1203:1 1211:1 1220:1 1224:1 1235:1 1241:1 1242:1 1245:1 1272:1 1276:2 1279:3 1287:1 1345:2 1386:2 1394:2 1424:1 1426:1 1436:3 1439:3 1444:1 1449:1 1450:3 1451:3 1466:2 1467:1 1495:1 1502:1 1517:1 1528:1 1538:1 1539:3 1541:2 1547:1 1552:1 1579:1 1581:3 1593:1 1596:1 1605:4 1608:1 1611:1 1628:2 1639:2 1653:2 1656:1 1657:1 1668:1 1672:1 1702:1 1704:1 1705:1 1719:1 1721:1 1731:2 1738:2 1758:1 1788:1 1789:1 1790:1 1796:1 1797:1 1815:4 1827:1 1836:1 1848:5 1868:1 1879:2 1884:1 1888:1 1904:1 1914:1 1924:1 1925:1 1927:2 1930:5 1941:1 1943:1 1952:1 1964:1 1967:6 1968:1 1970:2 1973:2 1974:1 1978:4 1980:1 1981:2 1982:2 1986:1 1990:5 1994:1 1997:2 2000:2 2002:3 2004:1 2044:1 2053:1 2064:1 2070:1 2078:1 2086:1 2089:1 2091:2 2099:1 2116:1 2145:1 2155:1 2172:1 2181:1 2200:1 2210:1 2222:1 2223:1 2232:1 2237:1 2241:1 2247:1 2273:1 2316:1 2322:1 2355:1 2357:1 2364:2 2378:1 2394:2 2398:1 2406:1 2429:1 2431:2 2445:3 2446:1 2450:3 2453:3 2460:4 2466:1 2472:1 2500:1 2502:1 2505:1 2506:1 2508:3 2534:1 2545:5 2579:2 2587:1 2590:19 2605:1 2617:1 2619:1 2641:1 2650:1 2667:1 2696:1 2711:1 2752:1 2760:2 2767:1 2798:1 2843:1 2858:1 2859:2 2868:1 2869:1 2875:1 2893:4 2895:1 2900:1 2915:1 2918:8 2922:1 2948:2 2956:1 2977:1 2982:2 3024:1 3037:1 3038:1 3044:1 3045:1 3046:1 3084:1 3088:1 3091:2 3106:1 3118:1 3123:1 3124:1 3153:1 3155:2 3159:2 3167:1 3169:1 3181:2 3187:1 3189:1 3191:1 3205:1 3210:1 3231:1 3235:3 3236:1 3238:2 3239:1 3253:1 3276:1 3290:1 3332:1 3343:1 3362:1 3365:1 3382:2 3395:1 3413:1 3421:2 3422:1 3432:1 3435:2 3443:1 3450:1 3453:1 3461:2 3467:1 3474:1 3481:1 3504:2 3511:2 3518:1 3529:2 3530:1 3537:1 3575:1 3576:1 3613:1 3617:4 3622:2 3624:1 3661:2 3671:1 3682:1 3683:1 3698:3 3706:3 3711:2 3712:2 3715:1 3732:1 3733:1 3746:1 3752:1 3763:1 3782:1 3789:1 3791:1 3793:1 3805:2 3817:2 3843:2 3851:1 3869:1 3891:1 3896:1 3897:2 3899:1 3908:1 3916:1 3922:1 3942:1 3944:1 3997:4 4004:1 4011:1 4021:1 4022:1 4028:1 4035:1 4036:1 4079:1 4082:1 4096:2 4097:2 4098:1 4113:1 4120:1 4123:2 4130:1 4136:1 4140:1 4148:1 4193:1 4204:1 4213:1 4215:1 4247:1 4250:1 4284:2 4296:1 4305:23 4308:1 4323:1 4339:1 4342:1 4376:1 4395:1 4414:2 4429:3 4430:7 4433:2 4436:2 4437:2 4441:1 4443:2 4449:1 4455:1 4456:2 4457:2 4458:1 4459:1 4484:4 4513:1 4528:2 4533:1 4536:1 4564:2 4573:1 4597:1 4602:4 4625:2 4652:1 4674:1 4702:1 4703:1 4709:1 4719:1 4726:1 4733:1 4742:1 4744:1 4756:1 4765:1 4766:1 4784:1 4803:1 4812:1 4880:1 4881:1 4888:2 4897:1 4919:1 4922:1 4925:2 4953:1 4970:2 4979:1 5006:1 5007:2 5010:1 5020:1 5046:1 5052:1 5053:1 5065:1 5068:2 5071:1 5081:2 5126:2 5137:1 5145:1 5203:1 5220:1 5225:1 5267:1 5275:1 5306:1 5319:2 5322:2 5351:1 5379:1 5395:1 5407:1 5408:1 5412:1 5424:1 5427:1 5441:5 5452:1 5455:1 5470:1 5471:1 5478:1 5499:1 5516:1 5542:8 5566:4 5581:4 5585:1 5586:1 5600:2 5617:4 5618:1 5625:4 5627:2 5631:2 5632:1 5636:2 5637:1 5638:2 5640:2 5645:2 5647:2 5661:1 5673:1 5732:1 5756:1 5767:1 5769:1 5782:1 5797:1 5800:1 5810:1 5813:2 5818:1 5844:1 5847:3 5886:1 5890:1 5901:1 5918:3 5974:1 5987:2 5990:3 6009:4 6010:3 6043:1 6098:1 6102:1 6105:2 6106:1 6108:1 6111:1 6117:2 6135:1 6138:1 6152:1 6167:1 6170:1 6178:1 6186:1 6187:1 6188:1 6230:1 6246:3 6273:1 6282:2 6284:1 6320:2 6322:2 6326:1 6328:1 6330:1 6336:1 6338:2 6345:1 6356:1 6381:1 6385:1 6413:1 6459:1 6460:1 6478:1 6490:1 6502:1 6514:3 6515:1 6519:1 6529:1 6544:1 6552:2 6553:1 6561:1 6564:1 6571:1 6589:4 6603:1 6614:1 6621:1 6624:3 6632:1 6633:1 6638:1 6649:1 6653:1 6680:1 6702:2 6712:1 6723:3 6729:1 6740:3 6741:4 6761:3 6789:1 6790:1 6803:31 6812:1 6822:1 6824:18 6851:1 6872:1 6891:2 6957:1 6963:1 6974:1 6979:1 6986:4 6990:1 6996:1 6997:1 7004:1 7010:1 7025:1 7036:1 7072:1 7083:2 7093:1 7104:1 7126:1 7129:1 7151:1 7152:2 7157:1 7180:2 7194:1 7201:1 7205:1 7219:18 7246:2 7254:1 7274:3 7297:1 7303:1 7306:1 7315:3 7337:1 7341:1 7348:1 7358:1 7363:4 7379:2 7382:2 7391:1 7399:1 7416:2 7420:1 7436:1 7438:1 7439:1 7462:3 7473:2 7499:1 7503:2 7534:1 7536:1 7538:2 7539:2 7542:1 7549:2 7564:1 7565:1 7570:1 7589:2 7610:3 7611:7 7628:2 7644:1 7651:1 7670:1 7673:1 7683:1 7688:1 7697:2 7700:2 7714:1 7725:1 7737:1 7741:1 7767:1 7790:2 7791:2 7795:1 7804:1 7806:1 7807:1 7815:2 7835:3 7837:3 7855:1 7872:1 7910:1 7923:1 7937:2 7948:1 7960:1 7966:2 7988:1 8021:2 8028:5 8033:1 8071:1 8090:2 8104:1 8158:2 8167:1 8169:1 8170:1 8175:1 8178:1 8179:2 8180:1 8201:1 8203:1 8219:1 8232:3 8237:1 8253:1 8275:1 8277:1 8309:1 8322:2 8326:1 8328:1 8342:1 8372:1 8377:2 8378:1 8383:1 8411:2 8432:3 8440:1 8455:1 8469:2 8476:1 8483:2 8489:1 8498:2 8499:2 8510:2 8532:1 8534:1 8550:1 8561:1 8563:1 8601:3 8616:1 8624:1 8628:1 8631:1 8643:1 8657:1 8660:2 8664:1 8678:1 8687:1 8727:1 8730:1 8740:1 8747:1 8748:1 8752:1 8755:2 8769:1 8785:1 8824:1 8825:1 8828:1 8839:2 8867:1 8872:1 8877:1 8882:1 8902:1 8909:3 8911:1 8914:1 8917:2 8929:2 8944:1 8946:1 8956:3 8959:1 8964:1 8965:2 8970:1 8973:1 8989:1 8993:1 8996:1 9029:1 9033:1 9044:2 9056:2 9058:1 9061:1 9070:1 9075:1 9085:1 9110:1 9113:2 9117:1 9126:1 9163:1 9167:1 9209:1 9216:1 9220:1 9255:2 9264:1 9282:1 9285:1 9288:1 9292:1 9293:2 9312:2 9318:1 9322:1 9337:1 9344:1 9353:1 9362:1 9374:3 9376:1 9387:1 9419:1 9431:1 9464:1 9473:4 9489:1 9490:1 9496:1 9506:1 9524:1 9529:1 9532:1 9534:1 9535:1 9539:1 9606:1 9611:1 9623:2 9627:1 9645:1 9660:1 9661:1 9664:1 9697:2 9702:1 9708:1 9709:1 9712:7 9718:1 9736:1 9747:1 9754:1 9778:1 9791:1 9803:2 9808:1 9831:1 9835:1 9837:1 9870:1 9872:1 9894:1 9900:1 9912:1 9943:1 9946:1 9968:3 9992:1 9995:1 9997:1 10003:2 10019:1 10040:1 10062:1 10066:1 10082:1 10084:1 10087:1 10093:2 10098:2 10103:1 10109:1 10132:1 10133:5 10166:1 10182:1 10187:1 10192:1 10195:1 10204:1 10207:2 10213:1 10233:1 10239:1 10249:3 10251:1 10274:2 10278:1 10318:4 10320:2 10338:1 10341:2 10350:1 10360:2 10362:1 10366:1 10367:1 10368:2 10370:1 10377:3 10379:4 10381:2 10382:1 10383:3 10384:1 10387:4 10388:3 10401:3 10407:1 10411:1 10427:1 10428:1 10429:1 10441:1 10442:1 10453:1 10460:1 10464:3 10481:1 10487:1 10502:1 10513:1 10514:1 10518:4 10523:1 10530:1 10570:1 10572:1 10592:1 10597:1 10605:1 10639:3 10665:1 10681:4 10684:1 10694:4 10704:1 10716:1 10729:1 10745:1 10764:1 10774:1 10782:1 10785:1 10788:2 10800:1 10801:1 10813:1 10838:1 10865:1 10875:2 10894:1 10900:1 10941:1 10942:1 10953:1 10974:1 10986:1 11003:1 11009:1 11011:1 11063:1 11086:1 11087:2 11093:1 11105:2 11112:1 11115:1 11116:1 11126:1 11169:1 11170:2 11174:1 11203:2 11220:1 11228:1 11233:1 11239:1 11261:7 11278:1 11283:1 11294:1 11300:1 11305:2 11307:2 11312:1 11314:1 11316:1 11317:1 11332:1 11353:2 11358:1 11362:2 11370:1 11373:1 11376:1 11383:1 11396:1 11398:1 11403:1 11414:1 11426:1 11427:2 11431:2 11432:1 11433:1 11445:1 11460:1 11479:1 11491:1 11495:2 11496:1 11506:1 11514:1 11539:2 11569:2 11570:1 11588:1 11616:2 11621:1 11632:5 11663:1 11694:1 11702:1 11704:1 11714:1 11733:1 11761:1 11767:1 11778:3 11779:2 11790:1 11797:1 11805:2 11832:1 11848:1 11865:4 11894:1 11918:2 11935:1 11938:1 11970:1 11975:2 11988:1 11992:3 11998:1 12000:2 12018:2 12029:1 12069:1 12073:2 12087:1 12089:2 12096:3 12097:1 12098:1 12099:1 12112:2 12114:1 12117:1 12120:1 12122:2 12167:1 12182:1 12193:2 12199:3 12217:2 12219:2 12225:1 12238:3 12239:2 12244:1 12275:1 12277:2 12279:1 12281:1 12285:1 12293:1 12309:1 12318:1 12338:1 12351:1 12354:1 12364:2 12381:1 12390:1 12394:1 12405:1 12410:1 12423:2 12426:1 12456:1 12459:1 12468:2 12481:2 12488:2 12504:1 12528:1 12542:1 12545:1 12550:2 12556:2 12563:1 12568:1 12584:1 12586:1 12607:1 12617:1 12625:1 12642:1 12657:1 12672:1 12673:1 12686:1 12695:2 12697:3 12706:1 12707:1 12712:1 12722:1 12734:1 12789:1 12794:1 12816:1 12817:1 12826:1 12827:2 12831:1 12837:1 12840:3 12844:1 12845:1 12846:1 12853:1 12889:1 12897:1 12908:2 12919:1 12920:1 12933:1 12936:1 12947:1 12951:1 12958:1 12962:1 12980:1 12987:1 12994:1 12996:1 13003:1 13008:1 13020:1 13021:1 13027:1 13053:1 13072:1 13086:1 13093:1 13098:1 13102:1 13116:1 13120:1 13132:1 13147:1 13165:1 13182:1 13200:1 13219:2 13227:1 13232:1 13234:3 13242:1 13257:2 13258:1 13261:1 13316:1 13319:1 13349:1 13379:1 13402:1 13414:1 13421:1 13426:1 13428:1 13440:1 13452:2 13453:1 13466:1 13481:1 13488:1 13505:3 13507:1 13532:1 13545:1 13549:1 13551:1 13577:1 13598:2 13615:1 13624:1 13625:1 13626:4 13637:2 13647:1 13663:1 13673:2 13686:3 13700:1 13704:1 13726:3 13733:1 13734:7 13740:3 13744:1 13764:1 13772:1 13775:5 13804:1 13810:1 13821:1 13831:1 13833:1 13840:1 13865:1 13869:1 13870:1 13872:1 13875:1 13876:2 13886:2 13895:1 13897:2 13898:1 13899:3 13900:2 13909:1 13910:1 13916:1 13932:1 13949:1 13952:2 13962:1 13972:1 13988:1 13991:1 14014:2 14040:1 14047:1 14062:1 14069:1 14084:1 14108:1 14143:4 14146:1 14149:1 14168:1 14169:1 14174:1 14179:1 14183:1 14193:1 14216:2 14219:1 14226:1 14275:1 14276:2 14284:3 14293:3 14313:1 14324:1 14327:1 14358:1 14360:1 14367:1 14369:1 14373:2 14374:1 14386:1 14387:3 14389:3 14390:1 14394:4 14398:2 14399:1 14412:1 14433:1 14471:1 14480:1 14481:1 14488:1 14490:1 14515:1 14516:1 14524:1 14526:1 14554:1 14571:1 14578:2 14580:3 14596:3 14608:2 14609:1 14617:2 14621:1 14649:2 14652:2 14654:1 14657:1 14679:2 14688:1 14694:1 14695:2 14696:1 14700:2 14704:2 14718:1 14720:1 14745:1 14747:1 14782:1 14783:1 14786:1 14794:5 14814:1 14823:17 14841:1 14859:1 14864:2 14893:2 14908:3 14913:1 14926:1 14967:1 14976:1 15029:1 15036:1 15043:1 15047:1 15054:1 15057:1 15064:1 15069:3 15083:1 15109:1 15117:1 15119:1 15153:1 15156:1 15161:1 15169:1 15178:3 15196:2 15211:1 15212:1 15242:1 15265:1 15266:1 15267:1 15276:4 15285:1 15297:1 15302:2 15362:1 15365:2 15380:2 15386:1 15388:1 15401:2 15406:1 15409:2 15415:1 15417:1 15419:1 15420:1 15421:1 15432:1 15440:1 15441:1 15448:1 15454:1 15458:1 15476:2 15505:1 15546:1 15550:1 15556:1 15565:1 15583:1 15642:1 15644:1 15683:2 15699:1 15723:1 15733:2 15738:1 15741:1 15746:1 15748:2 15749:1 15793:1 15795:1 15799:3 15833:1 15842:1 15860:2 15870:2 15901:1 15914:2 15934:3 15942:1 15949:1 15967:2 15975:1 15988:1 15989:1 16002:1 16003:1 16017:1 16029:2 16037:1 16060:1 16068:1 16079:1 16084:1 16112:1 16113:1 16161:1 16162:1 16172:1 16208:1 16216:7 16225:1 16247:1 16265:1 16266:1 16301:8 16309:3 16319:3 16336:1 16360:1 16374:1 16381:1 16388:1 16390:2 16409:1 16419:1 16442:1 16444:1 16446:1 16457:1 16472:1 16481:1 16498:1 16508:2048 16509:1 16512:1 16545:2 16559:2 16567:1 16600:1 16603:1 16604:1 16609:1 16647:3 16650:1 16670:1 16678:2 16693:1 16694:1 16703:1 16713:1 16719:1 16722:2 16735:3 16738:1 16767:2 16787:3 16793:1 16796:1 16827:1 16834:2 16871:1 16894:3 16904:1 16910:2 16914:1 16932:1 16936:1 16942:1 16951:1 16959:1 16961:1 16974:1 16987:1 16993:1 16996:1 16997:1 17002:2 17008:2 17009:1 17017:1 17024:1 17035:1 17042:1 17054:2 17065:1 17077:1 17087:4 17092:1 17095:1 17110:1 17123:2 17125:1 17145:1 17151:1 17153:1 17157:1 17163:1 17165:1 17188:6 17192:1 17195:3 17202:1 17220:2 17223:1 17236:3 17288:1 17293:1 17295:1 17296:1 17300:1 17327:2 17337:1 17355:1 17358:1 17359:1 17373:1 17385:1 17402:1 17409:1 17424:1 17430:1 17437:2 17464:1 17468:1 17480:1 17494:2 17495:1 17500:1 17511:1 17512:1 17514:1 17516:1 17528:2 17530:1 17534:1 17544:16 17562:1 17565:1 17569:1 17589:1 17595:3 17598:1 17615:1 17653:1 17664:1 17665:1 17689:5 17706:1 17713:1 17715:1 17716:1 17721:1 17732:1 17739:2 17759:1 17763:1 17769:4 17775:1 17781:2 17802:3 17803:1 17804:1 17815:1 17822:1 17824:2 17826:1 17834:1 17837:2 17843:1 17845:1 17847:1 17858:1 17873:3 17875:1 17884:1 17886:1 17902:1 17931:19 17940:1 17945:1 17956:1 17960:2 17967:1 17977:1 17991:1 17993:1 18039:1 18045:1 18047:1 18076:1 18097:1 18102:1 18121:2 18153:2 18154:1 18158:2 18160:2 18193:1 18198:1 18206:1 18212:1 18317:2 18333:1 18342:2 18343:2 18357:2 18378:1 18383:3 18397:1 18403:1 18430:2 18434:1 18445:2 18447:1 18454:1 18460:1 18463:1 18464:1 18486:1 18503:1 18507:1 18509:1 18511:2 18519:3 18524:1 18525:1 18527:14 18534:1 18535:1 18542:2 18544:3 18553:1 18563:2 18566:1 18571:1 18572:1 18573:1 18601:1 18619:1 18636:1 18648:1 18649:2 18692:2 18706:2 18760:2 18762:1 18773:1 18774:1 18777:1 18779:1 18780:2 18781:1 18782:1 18797:2 18800:1 18812:2 18816:1 18823:1 18828:1 18840:1 18848:1 18875:1 18879:1 18900:1 18917:3 18920:4 18942:1 18946:1 18967:1 18972:1 18979:1 18996:1 19006:1 19024:1 19025:1 19032:2 19035:1 19039:1 19042:1 19043:1 19056:6 19062:1 19064:1 19082:1 19105:2 19108:1 19110:1 19120:1 19125:1 19127:1 19128:1 19132:5 19133:1 19139:1 19141:1 19142:2 19174:1 19175:2 19197:1 19201:1 19203:1 19212:1 19219:2 19239:2 19249:2 19275:3 19276:1 19285:2 19296:2 19298:1 19314:1 19325:1 19332:1 19348:1 19384:1 19421:2 19422:1 19433:1 19434:4 19436:2 19438:1 19455:3 19456:1 19459:1 19467:1 19490:1 19500:1 19535:2 19558:2 19568:1 19575:1 19600:4 19621:1 19624:2 19630:1 19632:2 19636:1 19638:1 19644:1 19648:1 19656:1 19665:1 19677:1 19681:1 19683:2 19685:1 19696:1 19709:1 19714:1 19725:1 19740:2 19743:1 19748:1 19758:1 19759:1 19765:4 19787:2 19798:1 19801:1 19817:3 19822:1 19831:1 19832:1 19842:1 19843:1 19858:1 19869:3 19885:1 19887:1 19888:1 19899:2 19906:1 19909:1 19916:1 19921:1 19923:1 19932:1 19937:1 19938:4 19942:2 19958:2 19960:1 19969:1 19970:2 19991:2 19998:1 19999:5 20011:1 20025:2 20038:1 20039:1 20052:1 20059:2 20062:1 20086:2 20119:1 20124:1 20132:1 20152:1 20160:2 20166:1 20172:1 20186:3 20199:3 20203:1 20204:2 20210:1 20240:1 20252:1 20262:1 20268:1 20272:1 20282:1 20287:1 20297:6 20307:1 20309:1 20313:1 20320:1 20333:3 20334:2 20374:1 20390:1 20399:1 20400:1 20409:1 20413:1 20421:1 20427:1 20438:1 20455:1 20461:1 20485:1 20508:1 20514:1 20527:1 20541:1 20545:1 20554:1 20565:1 20572:1 20577:1 20606:1 20617:1 20640:2 20642:1 20652:1 20695:2 20703:1 20707:1 20713:1 20717:1 20742:3 20750:2 20754:1 20770:1 20802:1 20818:3 20827:1 20835:3 20837:1 20840:1 20841:1 20868:1 20870:3 20888:4 20891:1 20893:1 20894:1 20910:1 20927:1 20929:1 20941:1 20963:1 20975:1 20991:1 21000:2 21004:1 21006:1 21013:1 21066:2 21070:1 21075:1 21077:2 21081:1 21109:1 21116:1 21123:1 21132:1 21151:3 21154:1 21182:1 21194:1 21215:1 21222:1 21232:1 21303:1 21311:1 21341:1 21344:3 21346:1 21392:1 21397:1 21400:1 21416:2 21432:2 21441:1 21451:2 21481:1 21483:1 21494:1 21504:2 21519:1 21526:1 21529:1 21537:2 21571:1 21578:1 21582:3 21599:1 21621:1 21631:2 21642:2 21645:1 21689:2 21719:1 21751:1 21752:2 21762:2 21765:1 21767:1 21768:1 21769:3 21770:2 21772:1 21778:1 21779:1 21784:4 21795:2 21796:1 21801:2 21812:4 21846:1 21858:1 21859:1 21868:8 21869:3 21872:1 21877:3 21905:2 21915:1 21925:3 21926:2 21958:1 21961:1 21962:1 21963:1 21993:1 22027:1 22032:1 22036:1 22058:1 22063:1 22065:1 22082:1 22089:1 22099:1 22105:1 22143:1 22188:1 22197:2 22202:1 22220:1 22240:1 22253:1 22284:1 22295:9 22343:1 22344:1 22346:1 22363:1 22377:1 22397:1 22410:1 22426:1 22446:1 22459:1 22461:5 22477:1 22491:4 22506:1 22557:2 22558:1 22564:1 22598:1 22600:1 22654:2 22672:2 22676:1 22691:1 22697:1 22702:2 22706:3 22707:1 22742:2 22745:1 22757:1 22759:2 22765:1 22787:1 22794:1 22795:1 22796:3 22797:1 22801:2 22819:1 22821:1 22848:1 22862:1 22876:2 22891:2 22907:1 22919:1 22941:1 22944:3 22955:1 22969:1 22976:4 22977:4 22993:2 23011:1 23013:1 23016:1 23023:1 23026:1 23031:2 23035:1 23037:2 23038:1 23083:1 23088:1 23106:2 23111:1 23135:1 23162:2 23164:1 23173:1 23179:1 23180:2 23203:1 23209:1 23238:1 23244:1 23246:1 23256:1 23265:2 23270:1 23291:1 23316:1 23334:1 23345:1 23350:4 23376:1 23383:1 23388:1 23389:1 23410:11 23411:2 23418:1 23458:2 23480:2 23484:1 23507:1 23511:1 23520:1 23530:1 23533:1 23548:1 23552:3 23566:1 23597:1 23633:1 23643:1 23665:1 23666:2 23691:2 23698:1 23699:1 23703:2 23734:1 23735:1 23760:1 23787:1 23819:1 23837:1 23853:1 23855:1 23888:1 23905:1 23924:1 23927:1 23937:1 23957:2 23963:1 23968:1 23987:1 24003:1 24016:1 24017:3 24037:1 24049:1 24053:1 24064:1 24107:1 24108:1 24109:2 24119:4 24120:2 24121:1 24141:2 24148:1 24149:1 24150:3 24162:1 24164:1 24177:2 24179:2 24184:1 24190:2 24212:1 24217:1 24221:6 24230:2 24232:1 24233:1 24237:1 24241:1 24251:2 24271:1 24282:1 24292:2 24295:2 24329:1 24332:1 24345:1 24361:1 24366:3 24404:1 24407:1 24412:1 24414:1 24415:1 24419:1 24427:1 24428:1 24432:1 24439:1 24442:1 24443:1 24444:1 24445:1 24455:1 24459:1 24464:2 24469:1 24474:1 24476:1 24479:1 24480:2 24485:1 24486:1 24488:1 24489:1 24492:1 24495:2 24502:2 24503:1 24508:1 24511:1 24515:1 24538:1 24548:1 24552:1 24588:1 24596:3 24615:1 24644:1 24658:1 24664:1 24665:2 24667:1 24684:1 24709:1 24729:1 24745:1 24751:2 24767:2 24769:2 24771:1 24775:1 24777:1 24805:1 24810:1 24816:1 24818:1 24868:1 24899:1 24905:2 24917:1 24949:1 24952:1 24962:1 24986:2 25022:5 25027:1 25031:1 25036:1 25037:4 25044:1 25054:1 25066:1 25069:1 25075:1 25083:1 25093:1 25096:1 25099:1 25102:1 25110:8 25112:1 25116:1 25137:1 25141:3 25159:2 25164:1 25208:1 25215:1 25245:1 25251:5 25260:1 25276:1 25278:4 25282:1 25284:1 25287:1 25290:1 25296:2 25310:1 25312:1 25316:1 25324:1 25325:1 25327:2 25334:1 25342:1 25348:1 25351:1 25363:4 25364:1 25382:1 25388:1 25400:1 25410:1 25433:1 25456:2 25457:2 25459:1 25460:2 25462:1 25467:1 25472:1 25477:1 25495:1 25514:1 25515:2 25519:1 25525:1 25527:3 25530:1 25540:3 25542:2 25555:1 25557:1 25571:1 25583:1 25584:1 25602:1 25603:1 25619:1 25624:1 25647:1 25679:1 25699:1 25707:1 25713:1 25717:1 25732:1 25741:1 25746:1 25753:1 25755:1 25770:2 25772:1 25777:1 25779:1 25811:1 25829:1 25851:1 25854:2 25860:1 25880:1 25883:1 25901:2 25912:1 25915:1 25917:1 25956:1 25960:1 25971:1 25987:1 25992:2 25993:1 25997:1 26011:1 26027:2 26050:1 26059:1 26070:1 26076:1 26091:1 26092:1 26097:1 26098:1 26122:1 26125:2 26128:4 26133:1 26150:1 26163:3 26175:2 26205:2 26209:1 26215:1 26224:1 26226:1 26227:1 26228:1 26231:3 26232:1 26239:2 26241:2 26242:1 26244:1 26246:1 26250:3 26252:1 26264:1 26270:1 26279:4 26299:1 26318:1 26325:1 26330:1 26340:1
7 10:1 21:1 24:1 38:1 73:1 83:1 110:1 116:1 155:4 164:4 182:2 193:2 200:1 207:2 215:2 218:2 234:1 248:1 260:1 274:1 276:1 294:2 298:1 310:1 327:2 334:1 345:1 346:1 347:1 360:1 391:1 402:1 407:1 410:1 429:1 437:1 438:1 441:1 467:1 471:1 479:1 501:1 508:1 510:4 538:4 553:1 603:6 605:2 613:1 626:1 651:1 667:1 675:1 676:1 714:1 722:1 726:6 728:1 746:1 750:3 769:1 781:1 782:3 801:1 807:4 810:1 841:1 842:2 845:3 854:1 877:1 882:1 890:1 933:1 962:2 971:2 982:3 984:1 1010:1 1013:1 1021:1 1042:1 1052:1 1054:1 1068:1 1071:2 1076:1 1081:1 1083:1 1088:1 1094:1 1104:1 1168:3 1190:2 1203:1 1211:1 1220:1 1224:1 1235:1 1241:1 1242:1 1245:1 1272:1 1276:2 1279:3 1287:1 1345:2 1386:2 1394:2 1424:1 1426:1 1436:3 1439:3 1444:1 1449:1 1450:3 1451:3 1466:2 1467:1 1495:1 1502:1 1517:1 1528:1 1538:1 1539:3 1541:2 1547:1 1552:1 1579:1 1581:3 1593:1 1596:1 1605:4 1608:1 1611:1 1628:2 1639:2 1653:2 1656:1 1657:1 1668:1 1672:1 1702:1 1704:1 1705:1 1719:1 1721:1 1731:2 1738:2 1758:1 1788:1 1789:1 1790:1 1796:1 1797:1 1815:4 1827:1 1836:1 1848:5 1868:1 1879:2 1884:1 1888:2 1904:1 1914:1 1919:1 1924:1 1925:1 1927:2 1930:5 1941:1 1943:1 1952:1 1964:1 1967:6 1968:1 1970:2 1973:2 1974:1 1978:4 1980:1 1981:2 1982:2 1986:1 1990:5 1994:1 1997:3 2000:2 2002:3 2004:1 2044:1 2053:1 2064:1 2070:1 2078:1 2086:1 2089:1 2091:2 2099:1 2116:1 2145:1 2155:1 2172:1 2181:1 2200:1 2210:1 2222:1 2223:1 2232:1 2237:1 2239:1 2241:1 2247:1 2273:1 2316:1 2322:1 2355:1 2357:1 2364:2 2378:1 2394:3 2398:1 2406:1 2429:1 2431:2 2445:3 2446:1 2450:3 2453:3 2460:4 2466:1 2472:1 2500:1 2502:1 2505:1 2506:1 2508:3 2534:1 2545:5 2579:2 2587:1 2590:19 2605:1 2617:1 2619:1 2641:1 2650:1 2667:1 2694:1 2696:1 2711:1 2752:1 2760:2 2767:1 2798:1 2843:1 2858:1 2859:2 2868:1 2869:1 2875:1 2893:5 2895:1 2900:1 2915:1 2918:8 2922:1 2948:2 2956:1 2977:1 2982:2 3024:1 3037:1 3038:1 3044:1 3045:1 3046:1 3084:1 3088:1 3091:2 3106:1 3118:1 3123:1 3124:1 3153:1 3155:2 3159:2 3167:1 3169:1 3181:2 3187:1 3189:1 3191:1 3205:1 3210:1 3231:1 3235:3 3236:1 3238:2 3239:1 3253:1 3270:1 3276:1 3290:1 3332:1 3343:1 3362:1 3365:1 3375:1 3382:2 3395:1 3413:1 3421:2 3422:1 3432:1 3435:2 3443:1 3450:1 3453:1 3461:2 3467:1 3474:1 3481:1 3504:2 3511:2 3518:1 3529:2 3530:1 3537:1 3575:1 3576:1 3613:1 3617:4 3622:2 3624:1 3661:2 3671:1 3682:1 3683:1 3698:3 3706:3 3711:2 3712:2 3715:1 3732:1 3733:1 3746:1 3752:1 3763:1 3782:1 3789:1 3791:1 3793:1 3795:1 3805:2 3817:2 3832:1 3843:2 3851:1 3869:1 3891:1 3896:1 3897:2 3899:1 3908:1 3916:1 3922:1 3942:1 3944:1 3997:4 4004:1 4011:1 4021:1 4022:1 4028:1 4035:1 4036:1 4079:1 4082:1 4096:2 4097:2 4098:1 4113:1 4120:1 4123:2 4130:1 4136:1 4140:1 4148:1 4193:1 4204:1 4213:1 4215:1 4247:1 4250:1 4284:2 4296:1 4305:24 4308:1 4323:1 4339:1 4342:1 4376:1 4395:1 4414:2 4429:3 4430:7 4433:2 4436:2 4437:2 4441:1 4443:2 4449:1 4455:1 4456:2 4457:2 4458:1 4459:1 4484:4 4513:1 4528:2 4533:1 4536:1 4564:2 4573:1 4597:1 4602:4 4625:2 4652:1 4674:1 4702:1 4703:1 4709:1 4719:1 4726:1 4733:1 4739:1 4742:1 4744:1 4756:1 4765:1 4766:1 4784:1 4803:1 4812:1 4880:1 4881:1 4888:2 4897:1 4919:1 4922:1 4925:2 4953:1 4970:2 4979:1 5006:1 5007:2 5010:1 5020:1 5046:1 5052:1 5053:1 5065:1 5068:2 5071:1 5081:2 5126:2 5137:1 5145:1 5203:1 5220:1 5225:1 5267:1 5275:1 5306:1 5319:2 5322:2 5351:1 5379:1 5395:1 5407:1 5408:1 5412:1 5424:1 5427:1 5441:5 5452:1 5455:1 5470:1 5471:1 5478:1 5499:1 5516:2 5542:8 5566:4 5581:4 5585:1 5586:1 5600:2 5617:4 5618:1 5625:5 5627:2 5631:2 5632:1 5636:2 5637:1 5638:2 5640:2 5645:2 5647:2 5661:1 5673:1 5732:1 5756:1 5767:2 5769:1 5782:1 5797:1 5800:1 5810:1 5813:2 5818:1 5844:1 5847:3 5866:1 5886:1 5890:1 5901:1 5918:4 5974:1 5987:2 5990:3 6009:4 6010:3 6043:1 6098:1 6102:1 6105:2 6106:1 6108:1 6111:1 6117:2 6135:1 6138:1 6152:1 6167:1 6170:1 6178:1 6182:1 6186:1 6187:1 6188:1 6230:1 6246:3 6273:1 6282:2 6284:1 6320:2 6322:2 6326:1 6328:1 6330:1 6336:1 6338:2 6345:1 6356:1 6381:1 6385:1 6413:1 6459:1 6460:1 6478:1 6490:1 6502:1 6514:3 6515:1 6519:1 6529:1 6544:1 6552:2 6553:1 6561:1 6564:1 6571:1 6589:4 6603:1 6614:1 6621:1 6624:3 6632:1 6633:1 6638:1 6649:1 6653:1 6680:1 6702:2 6712:1 6723:3 6729:1 6740:3 6741:4 6761:3 6789:1 6790:1 6803:32 6812:1 6822:1 6824:18 6851:1 6872:1 6891:2 6957:1 6963:1 6974:1 6979:1 6986:4 6990:1 6996:1 6997:1 7004:1 7010:1 7025:1 7036:1 7072:1 7083:2 7093:1 7104:1 7126:1 7129:1 7151:1 7152:2 7157:1 7180:2 7194:1 7201:1 7205:1 7219:19 7246:2 7254:1 7274:3 7297:1 7303:1 7306:1 7315:3 7337:1 7341:1 7348:1 7358:1 7363:4 7379:2 7382:2 7391:1 7399:1 7416:2 7420:1 7432:1 7436:1 7438:1 7439:1 7462:3 7473:2 7499:1 7503:2 7534:1 7536:1 7538:2 7539:2 7542:1 7549:2 7564:1 7565:1 7570:1 7589:2 7610:3 7611:7 7628:2 7644:1 7651:1 7670:1 7673:1 7683:1 7688:1 7697:2 7699:1 7700:2 7714:1 7725:1 7737:1 7741:1 7767:1 7790:2 7791:2 7795:1 7804:1 7806:1 7807:1 7815:2 7835:3 7837:3 7855:1 7872:1 7910:1 7923:1 7937:2 7948:1 7960:1 7966:2 7988:1 8021:2 8028:5 8033:1 8071:1 8090:2 8104:1 8158:2 8167:1 8169:1 8170:1 8175:1 8178:1 8179:2 8180:1 8201:1 8203:1 8219:1 8232:3 8237:1 8253:1 8275:1 8277:1 8309:1 8322:2 8326:1 8328:1 8340:1 8342:1 8355:1 8372:1 8377:2 8378:1 8383:1 8411:2 8432:3 8440:1 8455:1 8469:2 8476:1 8483:3 8489:1 8498:2 8499:2 8510:3 8532:1 8534:1 8550:1 8561:1 8563:1 8601:3 8616:1 8619:1 8624:1 8628:1 8631:1 8643:1 8657:1 8660:2 8664:1 8678:1 8687:1 8727:1 8730:1 8740:1 8747:1 8748:1 8752:1 8755:2 8769:1 8785:1 8824:1 8825:1 8828:1 8839:2 8867:1 8872:1 8877:1 8882:1 8892:1 8902:1 8909:3 8911:1 8914:1 8917:2 8929:2 8944:1 8946:1 8956:3 8959:1 8964:1 8965:2 8970:1 8973:1 8989:1 8993:1 8996:1 9029:1 9033:2 9044:2 9056:2 9058:1 9061:1 9070:1 9075:1 9085:1 9110:1 9113:2 9117:1 9126:1 9163:1 9167:1 9209:1 9216:1 9220:1 9255:2 9264:1 9282:1 9285:1 9288:1 9292:1 9293:2 9312:2 9318:1 9322:1 9337:1 9344:1 9353:1 9362:1 9374:3 9376:1 9387:1 9419:1 9431:1 9464:1 9473:4 9489:1 9490:1 9496:1 9506:1 9524:1 9529:1 9532:1 9534:1 9535:1 9539:1 9606:1 9611:1 9623:2 9627:1 9645:1 9660:1 9661:1 9664:1 9697:2 9702:2 9708:1 9709:1 9712:7 9718:1 9736:1 9747:1 9754:1 9778:1 9791:1 9798:1 9803:2 9808:1 9831:1 9835:1 9837:1 9870:1 9872:1 9894:1 9900:1 9912:1 9943:1 9946:1 9968:3 9992:1 9995:1 9997:1 10003:2 10019:1 10040:1 10062:1 10066:1 10082:1 10084:1 10087:1 10093:2 10098:2 10103:1 10109:1 10132:1 10133:5 10166:1 10182:1 10187:1 10192:1 10195:1 10204:1 10207:2 10213:1 10233:1 10239:1 10249:3 10251:1 10274:2 10278:1 10318:4 10320:2 10338:1 10341:2 10350:1 10360:2 10362:2 10366:1 10367:1 10368:2 10370:1 10377:3 10379:4 10381:2 10382:1 10383:3 10384:1 10387:4 10388:3 10401:3 10407:1 10411:1 10427:1 10428:1 10429:2 10441:1 10442:1 10453:1 10460:1 10464:3 10481:1 10487:1 10502:1 10513:1 10514:1 10518:4 10523:1 10530:1 10570:1 10572:1 10592:1 10597:1 10605:1 10639:3 10665:1 10681:4 10684:1 10694:4 10704:1 10716:1 10729:1 10745:1 10756:1 10764:1 10774:1 10782:1 10785:1 10788:2 10800:1 10801:1 10813:1 10838:1 10865:1 10875:2 10894:1 10900:1 10941:1 10942:1 10953:1 10974:1 10986:1 11003:1 11009:1 11011:1 11063:1 11086:1 11087:2 11093:1 11105:2 11112:1 11115:1 11116:1 11126:1 11169:1 11170:2 11174:1 11203:2 11220:1 11228:1 11233:1 11239:1 11261:7 11278:1 11283:1 11294:1 11300:1 11305:2 11307:2 11312:1 11314:1 11316:1 11317:1 11332:1 11353:2 11358:1 11362:2 11370:1 11373:1 11376:1 11383:1 11396:1 11398:1 11403:1 11414:1 11426:1 11427:2 11431:2 11432:1 11433:1 11445:1 11460:1 11479:1 11491:1 11495:2 11496:1 11506:1 11514:1 11539:2 11569:2 11570:1 11588:1 11616:2 11621:1 11632:5 11663:1 11694:1 11702:1 11704:1 11714:1 11733:1 11761:1 11767:1 11778:3 11779:2 11790:1 11797:1 11805:2 11832:1 11848:1 11865:4 11894:1 11918:2 11935:1 11938:1 11970:1 11975:2 11988:1 11992:3 11998:1 12000:2 12018:2 12029:1 12069:1 12073:2 12087:1 12089:2 12095:1 12096:3 12097:1 12098:1 12099:1 12112:2 12114:1 12117:1 12120:1 12122:2 12167:1 12182:1 12193:2 12199:3 12217:2 12219:2 12225:1 12238:3 12239:2 12244:1 12275:1 12277:2 12279:1 12281:1 12285:2 12293:1 12309:1 12318:1 12338:1 12351:1 12354:1 12364:2 12381:1 12390:1 12394:1 12405:1 12410:1 12423:2 12426:1 12456:1 12459:1 12468:2 12481:2 12488:2 12504:1 12528:1 12530:1 12542:1 12545:1 12550:2 12556:2 12563:1 12568:1 12584:1 12586:1 12607:1 12617:1 12625:1 12642:1 12657:1 12672:1 12673:1 12681:1 12686:1 12695:2 12697:3 12704:1 12706:1 12707:1 12712:1 12722:1 12734:1 12789:1 12794:1 12816:1 12817:1 12826:1 12827:2 12831:1 12837:1 12840:3 12844:1 12845:1 12846:1 12853:1 12873:1 12889:1 12897:1 12908:2 12919:1 12920:1 12933:1 12936:1 12947:1 12951:1 12958:1 12962:1 12980:1 12987:1 12994:1 12996:1 13003:1 13008:1 13020:1 13021:1 13027:1 13053:1 13059:1 13072:1 13086:1 13093:1 13098:1 13102:1 13116:1 13120:1 13132:1 13147:1 13165:1 13182:1 13200:1 13219:2 13227:1 13232:1 13234:3 13242:1 13257:2 13258:1 13261:1 13316:1 13319:1 13349:1 13379:1 13396:1 13402:1 13414:1 13421:1 13426:1 13428:1 13440:1 13452:2 13453:1 13466:1 13481:1 13488:1 13505:3 13507:1 13532:1 13545:1 13549:1 13551:1 13577:1 13598:2 13615:1 13624:1 13625:1 13626:5 13637:2 13647:1 13663:1 13673:2 13686:3 13700:1 13704:1 13726:3 13733:1 13734:7 13740:3 13744:1 13764:1 13772:1 13775:5 13804:1 13810:1 13821:1 13831:1 13833:1 13840:1 13865:1 13869:1 13870:1 13872:1 13875:1 13876:2 13886:2 13895:1 13897:2 13898:1 13899:4 13900:2 13909:1 13910:1 13916:1 13932:1 13949:1 13952:2 13962:1 13972:1 13988:1 13991:1 14014:2 14040:1 14047:1 14062:1 14069:1 14084:1 14108:1 14143:4 14146:1 14149:1 14168:1 14169:1 14174:1 14179:1 14183:1 14193:1 14216:2 14219:1 14226:1 14275:1 14276:2 14284:3 14293:3 14313:1 14324:1 14327:1 14358:1 14360:1 14367:1 14369:1 14373:2 14374:1 14386:1 14387:3 14389:3 14390:1 14393:1 14394:4 14398:2 14399:1 14412:1 14433:1 14471:1 14480:1 14481:1 14488:1 14490:1 14515:1 14516:1 14524:1 14526:1 14554:1 14571:1 14578:2 14580:3 14596:3 14608:2 14609:1 14617:2 14621:1 14649:2 14652:2 14654:1 14657:1 14679:2 14688:1 14694:1 14695:2 14696:1 14700:2 14704:2 14718:1 14720:1 14745:1 14747:1 14782:1 14783:1 14786:1 14794:5 14804:1 14814:1 14823:17 14841:1 14859:1 14864:2 14893:2 14895:1 14908:3 14913:1 14926:1 14967:1 14976:1 15029:1 15036:1 15043:1 15047:1 15054:1 15057:1 15064:1 15069:3 15083:1 15109:1 15117:1 15119:1 15153:1 15156:1 15161:1 15169:1 15178:3 15196:2 15211:1 15212:1 15242:1 15254:1 15265:1 15266:1 15267:1 15276:4 15285:1 15297:1 15302:2 15337:1 15362:1 15365:2 15380:2 15386:1 15388:1 15401:2 15406:1 15409:2 15415:1 15417:1 15419:1 15420:1 15421:1 15432:1 15440:1 15441:1 15448:1 15454:1 15458:1 15476:2 15505:1 15546:1 15550:1 15556:1 15565:1 15583:1 15642:1 15644:1 15683:2 15699:1 15723:1 15733:2 15738:1 15741:1 15746:1 15748:2 15749:1 15793:1 15795:1 15799:3 15833:1 15842:1 15860:2 15870:3 15901:1 15914:2 15934:3 15942:1 15949:1 15967:2 15975:1 15988:1 15989:1 16002:1 16003:1 16017:1 16029:2 16037:1 16060:1 16068:1 16079:1 16084:1 16112:1 16113:1 16161:1 16162:1 16172:1 16190:1 16208:1 16216:7 16225:1 16247:1 16255:1 16265:1 16266:1 16301:8 16309:3 16319:3 16326:1 16336:1 16360:1 16374:1 16381:1 16388:1 16390:2 16409:1 16419:1 16442:1 16444:1 16446:1 16457:1 16472:1 16481:1 16498:1 16508:2089 16509:1 16512:1 16545:2 16559:2 16567:1 16600:1 16603:1 16604:1 16609:1 16647:3 16650:1 16670:1 16678:2 16693:1 16694:1 16703:1 16713:1 16719:1 16722:2 16735:3 16738:1 16767:2 16787:3 16793:1 16796:1 16827:1 16834:2 16871:1 16894:3 16904:1 16910:2 16914:1 16932:1 16936:1 16942:1 16951:1 16959:1 16961:1 16974:1 16987:1 16993:1 16996:1 16997:1 17002:2 17008:2 17009:1 17017:1 17024:1 17035:1 17042:1 17054:2 17065:1 17077:1 17087:4 17092:1 17095:1 17110:1 17123:2 17125:1 17145:1 17151:1 17153:1 17157:1 17163:1 17165:1 17188:6 17192:1 17195:3 17202:1 17220:2 17223:1 17236:3 17288:1 17293:1 17295:1 17296:1 17300:1 17327:2 17337:1 17355:1 17358:1 17359:1 17373:1 17385:1 17402:1 17409:1 17424:1 17430:1 17437:2 17464:1 17468:1 17480:1 17494:2 17495:1 17500:1 17511:1 17512:1 17514:1 17516:1 17528:2 17530:1 17534:1 17544:16 17562:1 17565:1 17569:1 17589:1 17595:4 17598:1 17615:1 17653:1 17664:1 17665:1 17689:5 17706:1 17713:1 17715:1 17716:1 17721:1 17732:1 17739:2 17759:1 17763:1 17769:4 17775:1 17781:2 17802:3 17803:1 17804:1 17815:1 17822:1 17824:2 17826:1 17834:1 17837:2 17843:1 17845:1 17847:1 17858:1 17873:3 17875:1 17884:1 17886:1 17902:1 17931:19 17940:1 17945:1 17956:1 17960:2 17967:1 17977:1 17991:1 17993:1 18039:1 18045:1 18047:1 18076:1 18097:1 18102:1 18121:2 18153:2 18154:1 18158:2 18160:2 18193:2 18198:1 18206:1 18212:1 18317:2 18333:1 18342:2 18343:2 18357:2 18378:1 18383:3 18397:1 18403:1 18430:2 18434:1 18445:2 18447:1 18454:1 18460:1 18463:1 18464:1 18486:1 18503:1 18507:1 18509:1 18511:2 18519:3 18524:1 18525:1 18527:14 18534:1 18535:1 18542:2 18544:3 18553:1 18563:2 18566:1 18571:1 18572:1 18573:1 18601:1 18619:1 18636:1 18648:1 18649:3 18692:2 18706:2 18760:2 18762:1 18773:1 18774:1 18777:1 18779:1 18780:2 18781:1 18782:1 18797:2 18800:1 18812:2 18816:1 18823:1 18828:1 18840:1 18848:1 18875:1 18879:1 18900:1 18917:3 18920:5 18942:1 18946:1 18967:1 18972:1 18979:1 18996:1 19006:1 19024:1 19025:1 19032:2 19035:1 19039:1 19042:1 19043:1 19056:6 19062:1 19064:1 19082:1 19105:2 19108:1 19110:1 19120:1 19125:1 19127:1 19128:1 19132:5 19133:1 19139:1 19141:1 19142:2 19174:1 19175:2 19197:1 19201:1 19203:1 19212:1 19219:2 19239:2 19249:2 19275:3 19276:1 19285:2 19296:2 19298:1 19314:1 19325:1 19332:1 19348:1 19384:1 19421:2 19422:1 19433:1 19434:4 19436:2 19438:1 19455:3 19456:1 19459:1 19467:1 19490:1 19500:1 19535:2 19558:2 19568:1 19575:1 19600:4 19621:1 19624:2 19630:1 19632:2 19636:2 19638:1 19644:1 19648:1 19656:1 19665:1 19677:1 19681:1 19683:2 19685:1 19696:1 19709:1 19714:1 19725:1 19740:2 19743:1 19748:1 19758:1 19759:1 19765:4 19787:2 19798:1 19801:1 19817:3 19822:1 19831:1 19832:1 19842:1 19843:1 19858:1 19869:3 19877:1 19885:1 19887:1 19888:1 19899:2 19906:1 19909:1 19916:1 19919:1 19921:1 19923:1 19932:1 19937:1 19938:4 19942:2 19946:1 19958:2 19960:1 19969:1 19970:2 19991:2 19998:1 19999:5 20011:1 20025:2 20038:1 20039:1 20052:1 20059:2 20062:1 20086:2 20119:1 20124:1 20132:1 20152:1 20160:2 20166:1 20172:1 20186:3 20199:3 20203:1 20204:2 20210:1 20240:1 20252:1 20262:1 20268:1 20272:1 20282:1 20287:1 20297:6 20301:1 20307:1 20309:1 20313:1 20320:1 20333:3 20334:2 20374:1 20390:1 20399:1 20400:1 20409:1 20413:1 20421:1 20427:1 20438:1 20455:1 20461:1 20485:1 20508:2 20514:1 20527:1 20541:1 20545:1 20554:1 20565:1 20572:1 20577:1 20606:1 20617:1 20640:2 20642:1 20652:1 20695:2 20703:1 20707:1 20713:1 20717:1 20742:3 20750:2 20754:1 20770:1 20775:1 20802:1 20818:3 20827:1 20835:3 20837:1 20840:1 20841:1 20868:1 20870:3 20888:4 20891:1 20893:1 20894:1 20910:1 20927:1 20929:1 20941:1 20963:1 20975:1 20991:1 21000:2 21004:1 21006:1 21013:1 21066:2 21070:1 21075:1 21077:2 21081:1 21109:1 21116:1 21123:1 21132:1 21151:3 21154:1 21182:1 21194:1 21215:1 21222:1 21232:1 21303:1 21311:1 21341:1 21344:3 21346:1 21392:1 21397:1 21400:1 21416:2 21432:2 21441:1 21451:2 21481:1 21483:1 21494:1 21504:2 21519:1 21526:1 21529:1 21537:2 21571:1 21578:1 21582:3 21599:1 21621:1 21631:2 21642:2 21645:1 21689:2 21694:1 21719:1 21751:1 21752:2 21762:2 21765:1 21767:1 21768:1 21769:3 21770:2 21772:1 21778:1 21779:1 21784:4 21795:2 21796:1 21801:2 21812:4 21846:1 21858:1 21859:1 21868:8 21869:3 21872:1 21877:3 21905:2 21915:1 21925:3 21926:2 21958:1 21961:1 21962:1 21963:1 21993:1 22027:1 22032:1 22036:1 22058:1 22063:1 22065:1 22082:1 22089:1 22099:1 22105:1 22131:1 22143:1 22188:1 22197:2 22202:1 22220:1 22240:1 22253:1 22284:1 22295:9 22343:1 22344:1 22346:1 22363:1 22377:1 22397:1 22410:1 22426:1 22446:1 22459:1 22461:5 22477:1 22491:5 22506:1 22557:2 22558:1 22564:1 22598:1 22600:1 22654:2 22672:2 22676:1 22691:1 22697:1 22702:2 22706:3 22707:1 22742:2 22745:1 22757:1 22759:2 22765:1 22787:1 22794:1 22795:1 22796:3 22797:1 22801:2 22819:2 22821:1 22848:1 22862:1 22876:2 22891:2 22907:1 22919:1 22941:1 22944:3 22955:1 22969:1 22976:5 22977:4 22993:2 23011:1 23013:1 23016:1 23023:1 23026:1 23031:2 23035:1 23037:2 23038:1 23083:1 23088:1 23106:2 23111:1 23135:1 23162:2 23164:1 23173:1 23179:1 23180:2 23203:1 23209:1 23238:1 23244:1 23246:1 23256:1 23265:2 23270:1 23291:1 23316:1 23334:1 23345:1 23350:4 23376:1 23383:1 23388:1 23389:1 23410:11 23411:2 23418:1 23458:2 23480:2 23484:1 23507:1 23511:1 23520:1 23530:1 23533:1 23548:1 23552:3 23566:1 23597:1 23633:1 23643:1 23665:1 23666:2 23691:2 23692:1 23698:1 23699:1 23703:2 23734:1 23735:1 23760:1 23787:1 23819:1 23837:1 23853:1 23855:1 23888:1 23905:1 23924:1 23927:1 23937:2 23957:2 23963:1 23968:1 23986:1 23987:1 24003:1 24016:1 24017:3 24037:1 24049:1 24053:1 24064:1 24107:1 24108:1 24109:2 24119:4 24120:2 24121:1 24141:2 24148:1 24149:1 24150:3 24162:1 24164:2 24177:2 24179:2 24184:1 24190:2 24212:1 24217:1 24221:6 24230:2 24232:1 24233:1 24237:1 24241:1 24251:2 24271:1 24282:1 24292:2 24295:2 24329:1 24332:1 24345:1 24361:1 24366:3 24404:1 24407:1 24412:1 24414:1 24415:1 24419:1 24427:1 24428:1 24432:1 24439:1 24442:1 24443:1 24444:1 24445:1 24455:1 24459:1 24464:2 24469:1 24474:1 24476:1 24479:1 24480:2 24485:1 24486:1 24488:1 24489:1 24492:1 24495:2 24502:2 24503:1 24508:1 24511:1 24515:1 24538:1 24548:1 24552:1 24588:1 24596:3 24615:1 24644:1 24658:1 24664:1 24665:2 24667:1 24684:1 24709:1 24729:1 24745:1 24751:2 24767:2 24769:2 24771:1 24775:1 24777:2 24805:1 24810:2 24816:1 24818:1 24868:1 24875:1 24899:1 24905:2 24917:1 24949:1 24952:1 24962:1 24986:2 25022:5 25027:1 25031:1 25036:1 25037:4 25044:1 25054:1 25066:1 25069:1 25075:1 25083:1 25093:1 25096:1 25099:1 25102:1 25110:8 25112:1 25116:1 25137:1 25141:3 25159:2 25164:1 25208:1 25215:1 25245:1 25251:5 25260:1 25276:1 25278:4 25282:1 25284:1 25287:1 25290:1 25296:2 25310:1 25312:1 25316:1 25324:1 25325:1 25327:2 25334:1 25342:1 25348:1 25351:1 25363:4 25364:1 25382:1 25388:1 25400:1 25410:1 25433:1 25456:2 25457:2 25459:1 25460:2 25462:1 25467:1 25472:1 25477:1 25495:1 25514:1 25515:2 25519:1 25525:1 25527:3 25530:1 25540:3 25542:2 25555:1 25557:1 25571:1 25583:1 25584:1 25602:1 25603:1 25619:1 25624:1 25647:1 25679:1 25699:1 25707:1 25713:1 25717:1 25732:1 25741:1 25746:1 25753:1 25755:1 25770:2 25772:1 25777:1 25779:1 25811:1 25829:1 25851:1 25854:2 25860:1 25880:1 25883:1 25901:2 25912:1 25915:1 25917:1 25956:1 25960:1 25971:1 25987:1 25992:2 25993:1 25997:1 26011:1 26027:2 26050:1 26059:1 26070:1 26076:1 26091:1 26092:1 26097:1 26098:1 26122:1 26125:2 26128:4 26133:1 26150:1 26163:3 26175:2 26205:2 26209:1 26215:1 26224:1 26226:1 26227:1 26228:1 26231:3 26232:1 26239:2 26241:2 26242:1 26244:1 26246:1 26250:3 26252:1 26264:1 26270:1 26279:4 26299:1 26318:1 26325:1 26330:1 26340:1
7 10:1 21:1 24:1 32:1 38:1 73:1 83:1 110:1 116:1 155:4 164:5 182:2 193:2 200:1 207:2 215:2 218:2 234:1 248:1 260:1 274:1 276:1 294:2 298:1 310:1 327:2 334:1 345:1 346:1 347:1 360:1 391:1 402:1 407:1 410:1 429:1 437:1 438:1 441:1 467:1 471:1 475:1 479:1 501:2 508:1 510:4 538:4 553:1 603:6 605:2 613:1 626:1 651:1 667:1 675:1 676:1 714:1 722:1 726:7 728:1 746:1 750:3 753:1 769:1 781:1 782:3 801:1 807:4 810:1 841:1 842:2 845:3 854:1 877:1 882:1 890:1 933:1 962:2 971:2 982:3 984:1 1010:1 1013:1 1021:1 1042:1 1052:1 1054:1 1068:1 1071:2 1076:1 1081:1 1083:1 1088:1 1094:1 1104:1 1163:1 1168:3 1190:2 1203:1 1211:1 1220:1 1224:1 1235:1 1241:1 1242:1 1245:1 1272:1 1276:2 1279:3 1287:1 1345:2 1386:2 1394:2 1424:1 1426:1 1436:3 1439:3 1444:1 1449:1 1450:3 1451:3 1466:2 1467:1 1495:1 1502:1 1517:1 1528:1 1538:1 1539:3 1541:2 1547:1 1552:1 1579:1 1581:3 1593:1 1596:1 1605:4 1608:1 1611:1 1628:2 1639:2 1653:2 1656:1 1657:1 1668:1 1672:1 1702:1 1704:1 1705:1 1719:1 1721:1 1731:2 1738:2 1758:1 1788:1 1789:1 1790:1 1796:1 1797:1 1815:4 1827:1 1836:1 1848:5 1868:2 1879:2 1884:1 1888:2 1904:1 1914:1 1916:1 1919:1 1924:1 1925:1 1927:2 1930:5 1941:1 1943:1 1952:1 1964:1 1967:6 1968:1 1970:2 1973:2 1974:1 1978:4 1980:1 1981:2 1982:2 1986:1 1990:5 1994:1 1997:3 2000:2 2002:3 2004:1 2044:1 2053:1 2057:1 2064:1 2070:1 2078:1 2086:1 2089:1 2091:2 2099:1 2116:1 2122:1 2145:1 2155:1 2172:1 2181:1 2200:1 2210:1 2220:1 2222:1 2223:1 2232:1 2237:1 2239:1 2241:1 2247:1 2273:1 2316:1 2322:1 2338:1 2355:1 2357:1 2364:2 2378:1 2394:3 2398:1 2406:1 2429:1 2431:2 2445:3 2446:1 2450:3 2453:3 2460:7 2466:1 2472:1 2500:1 2502:1 2505:1 2506:1 2508:3 2534:1 2545:5 2568:1 2579:2 2587:1 2590:19 2605:1 2617:1 2619:1 2641:1 2650:1 2667:1 2694:1 2696:1 2711:1 2737:1 2752:2 2760:2 2767:1 2798:1 2843:1 2858:1 2859:2 2868:1 2869:1 2875:1 2893:5 2895:1 2900:1 2915:1 2918:8 2922:1 2948:2 2956:1 2977:1 2982:2 3024:1 3037:1 3038:1 3044:1 3045:1 3046:1 3084:1 3088:1 3091:2 3106:1 3118:1 3123:1 3124:1 3153:1 3155:2 3159:2 3167:1 3169:1 3181:2 3187:1 3189:1 3191:1 3205:1 3210:1 3231:1 3235:3 3236:1 3238:2 3239:1 3253:1 3270:1 3276:1 3290:1 3298:1 3332:1 3343:1 3362:1 3365:2 3375:1 3382:2 3395:1 3413:1 3421:2 3422:1 3432:1 3435:2 3443:1 3450:1 3453:1 3461:2 3467:1 3474:1 3481:1 3504:2 3511:2 3518:1 3529:2 3530:1 3537:1 3575:1 3576:1 3613:1 3617:5 3622:2 3624:1 3661:2 3671:1 3682:1 3683:1 3688:1 3698:3 3706:3 3711:2 3712:2 3715:1 3732:1 3733:1 3746:1 3752:1 3763:1 3782:1 3789:1 3791:1 3793:1 3795:1 3805:2 3817:2 3832:1 3843:2 3848:1 3851:1 3869:1 3891:1 3896:1 3897:2 3899:1 3908:1 3916:1 3922:1 3930:1 3942:1 3944:1 3957:1 3997:5 4004:1 4011:1 4021:1 4022:1 4028:1 4035:1 4036:1 4079:1 4082:1 4096:2 4097:2 4098:1 4113:1 4120:1 4123:3 4130:1 4136:1 4140:1 4148:1 4193:1 4204:1 4213:1 4215:1 4247:1 4250:1 4253:1 4284:2 4296:1 4305:26 4308:1 4323:1 4339:1 4342:1 4373:1 4376:1 4395:1 4405:1 4414:2 4429:3 4430:7 4433:2 4436:2 4437:2 4441:1 4443:2 4449:2 4455:1 4456:2 4457:2 4458:1 4459:1 4484:5 4513:1 4528:2 4533:1 4536:1 4564:2 4573:1 4597:1 4602:5 4625:2 4652:1 4674:1 4702:1 4703:1 4709:1 4719:1 4726:1 4733:1 4735:1 4739:1 4742:1 4744:1 4756:1 4765:1 4766:1 4784:1 4803:1 4812:1 4880:1 4881:1 4888:2 4897:1 4919:1 4922:1 4925:2 4953:1 4970:3 4979:1 5006:1 5007:2 5010:1 5020:1 5046:1 5052:1 5053:1 5065:1 5068:2 5071:1 5081:2 5126:2 5137:1 5145:1 5203:1 5220:2 5225:1 5267:1 5275:1 5306:1 5319:2 5322:2 5351:1 5379:1 5395:1 5407:1 5408:1 5412:1 5424:1 5427:1 5441:5 5452:1 5455:1 5470:1 5471:1 5478:1 5499:1 5507:1 5516:2 5542:8 5566:5 5581:5 5585:1 5586:1 5600:2 5617:4 5618:1 5625:5 5627:2 5631:2 5632:1 5636:2 5637:1 5638:2 5640:2 5645:2 5647:2 5661:1 5673:1 5732:1 5756:1 5767:2 5769:1 5782:1 5797:1 5800:1 5810:1 5813:2 5818:1 5844:1 5847:3 5866:1 5886:1 5890:1 5901:1 5911:1 5918:5 5974:1 5987:2 5990:4 6009:4 6010:3 6043:1 6098:1 6102:1 6105:2 6106:1 6108:1 6111:1 6117:2 6135:1 6138:1 6152:1 6167:1 6170:1 6178:1 6182:1 6186:1 6187:1 6188:1 6230:1 6246:3 6273:1 6282:2 6284:1 6320:2 6322:2 6326:1 6328:1 6330:1 6336:1 6338:2 6345:1 6356:1 6381:1 6385:1 6413:1 6459:1 6460:1 6478:1 6490:1 6502:1 6514:3 6515:1 6519:1 6529:1 6544:1 6552:2 6553:1 6561:1 6564:1 6571:1 6589:4 6603:1 6614:1 6621:1 6624:4 6632:1 6633:1 6638:1 6649:1 6653:1 6680:1 6702:2 6712:1 6723:3 6729:1 6740:5 6741:5 6761:3 6789:1 6790:1 6803:32 6812:1 6822:1 6824:18 6851:1 6872:1 6891:2 6957:1 6963:1 6974:1 6979:1 6986:4 6990:1 6996:1 6997:1 7001:1 7004:1 7010:1 7025:1 7036:1 7072:1 7083:2 7093:1 7104:1 7126:1 7129:1 7151:4 7152:2 7157:1 7180:2 7194:1 7201:1 7205:1 7219:19 7246:2 7254:1 7274:3 7297:1 7303:1 7306:1 7315:3 7337:1 7341:1 7348:1 7358:1 7363:4 7379:2 7382:2 7391:1 7399:1 7416:2 7420:1 7432:1 7436:1 7438:1 7439:1 7462:3 7473:2 7499:1 7503:2 7534:1 7536:1 7538:2 7539:2 7542:1 7549:2 7564:1 7565:1 7570:1 7589:2 7610:3 7611:7 7628:2 7644:1 7651:1 7670:1 7673:1 7683:1 7688:1 7697:2 7699:1 7700:2 7714:1 7725:1 7737:1 7741:1 7743:1 7767:1 7790:2 7791:2 7795:1 7804:1 7806:1 7807:2 7815:2 7835:3 7837:3 7855:1 7872:1 7910:1 7923:1 7937:2 7948:1 7960:1 7966:2 7988:1 8021:2 8028:5 8033:1 8071:1 8073:1 8079:1 8090:2 8104:1 8140:1 8151:1 8158:2 8167:1 8169:1 8170:1 8175:1 8178:1 8179:2 8180:1 8201:1 8203:1 8219:1 8232:3 8237:1 8253:1 8275:1 8277:1 8309:1 8322:2 8326:1 8328:1 8340:1 8342:1 8355:1 8372:1 8377:2 8378:1 8383:1 8411:2 8432:3 8440:1 8447:1 8455:1 8469:2 8476:1 8483:3 8489:1 8498:2 8499:2 8510:3 8532:1 8534:1 8550:1 8561:1 8563:1 8601:3 8616:1 8619:1 8624:1 8628:1 8631:1 8643:1 8657:1 8659:1 8660:2 8664:1 8678:1 8687:1 8727:2 8730:1 8740:1 8747:1 8748:1 8752:1 8755:2 8759:1 8769:1 8785:1 8824:1 8825:1 8828:1 8839:2 8867:1 8872:1 8877:1 8882:1 8892:1 8902:1 8909:3 8911:1 8914:1 8917:2 8929:2 8944:1 8946:1 8956:3 8959:1 8964:1 8965:2 8970:1 8973:1 8989:1 8993:1 8996:1 9029:1 9033:2 9044:2 9056:2 9058:1 9061:1 9070:1 9075:1 9085:1 9110:1 9113:2 9117:1 9126:1 9163:1 9167:1 9209:1 9216:1 9220:1 9255:2 9264:1 9282:1 9285:1 9288:1 9292:1 9293:2 9312:2 9318:1 9322:1 9337:1 9344:1 9353:1 9362:1 9374:3 9376:1 9387:1 9419:1 9431:1 9464:1 9473:4 9489:1 9490:1 9496:1 9506:1 9524:1 9529:1 9532:1 9534:1 9535:1 9539:1 9606:1 9611:1 9623:2 9627:1 9645:1 9660:1 9661:1 9664:1 9697:2 9702:2 9708:1 9709:2 9712:7 9718:1 9736:1 9747:1 9754:1 9778:1 9791:1 9798:1 9803:2 9808:1 9831:1 9835:1 9837:1 9870:1 9872:1 9894:1 9900:1 9912:1 9943:1 9946:1 9968:3 9992:1 9995:1 9997:1 10003:2 10019:1 10040:1 10062:1 10066:1 10082:1 10084:1 10087:1 10093:2 10098:2 10103:1 10109:1 10132:1 10133:5 10166:1 10182:1 10187:1 10192:1 10195:1 10204:1 10207:2 10213:1 10233:1 10239:1 10249:3 10251:1 10274:2 10278:1 10318:4 10320:3 10338:1 10341:2 10350:1 10360:2 10362:2 10366:1 10367:1 10368:2 10370:1 10377:3 10379:4 10381:2 10382:1 10383:4 10384:1 10387:4 10388:3 10401:3 10407:1 10411:1 10427:1 10428:1 10429:2 10441:1 10442:1 10453:1 10460:1 10464:3 10469:1 10481:1 10487:1 10502:1 10513:1 10514:1 10518:4 10523:1 10530:1 10570:1 10572:1 10592:1 10597:1 10605:1 10639:3 10665:1 10681:5 10684:1 10694:5 10704:1 10716:1 10729:1 10745:1 10756:1 10764:1 10774:1 10782:1 10783:1 10785:1 10788:2 10800:1 10801:1 10813:1 10820:1 10838:1 10865:1 10875:2 10883:1 10894:1 10900:1 10941:1 10942:1 10953:1 10963:1 10974:1 10986:1 11003:1 11009:1 11011:1 11063:1 11086:1 11087:2 11093:1 11105:2 11112:1 11115:1 11116:1 11126:1 11145:1 11169:1 11170:2 11174:1 11203:2 11220:1 11228:1 11233:1 11239:1 11261:7 11278:1 11283:1 11294:1 11300:1 11305:2 11307:2 11312:1 11314:1 11316:1 11317:1 11332:1 11353:2 11358:1 11362:2 11370:1 11373:1 11376:1 11383:1 11396:2 11398:1 11403:1 11414:1 11426:1 11427:2 11431:2 11432:1 11433:1 11445:1 11460:1 11479:1 11491:1 11495:2 11496:1 11506:1 11514:1 11539:2 11569:2 11570:1 11588:1 11616:2 11621:1 11632:5 11663:1 11694:1 11702:1 11704:1 11714:1 11733:1 11761:1 11767:1 11778:3 11779:2 11790:1 11797:1 11805:2 11813:1 11832:1 11848:1 11865:6 11894:1 11918:2 11935:1 11938:1 11970:1 11975:2 11988:1 11992:4 11998:1 12000:2 12018:2 12029:1 12069:1 12073:2 12087:1 12089:2 12095:1 12096:3 12097:1 12098:1 12099:1 12112:2 12114:1 12117:1 12120:1 12122:2 12167:1 12170:2 12182:1 12193:2 12199:3 12217:2 12219:2 12225:1 12238:3 12239:2 12244:1 12275:1 12277:2 12279:1 12281:1 12285:2 12293:1 12309:1 12318:1 12338:1 12351:1 12354:1 12364:2 12381:1 12390:1 12394:1 12405:1 12409:1 12410:1 12423:2 12426:1 12456:1 12459:1 12468:2 12481:2 12488:2 12495:1 12504:1 12528:1 12530:1 12542:1 12545:1 12550:2 12556:2 12563:1 12568:1 12584:1 12586:1 12607:1 12617:1 12625:1 12642:1 12657:1 12672:1 12673:1 12681:1 12686:1 12695:2 12697:3 12704:1 12706:1 12707:1 12712:1 12722:1 12734:1 12789:1 12794:1 12816:1 12817:1 12826:1 12827:2 12831:1 12837:1 12840:3 12844:1 12845:1 12846:2 12853:2 12873:1 12889:1 12897:1 12908:2 12919:1 12920:1 12933:1 12936:1 12947:1 12951:1 12958:1 12962:1 12980:1 12987:1 12994:1 12996:1 13003:1 13008:1 13020:1 13021:2 13027:1 13049:1 13053:2 13059:1 13072:1 13086:1 13093:1 13098:1 13102:1 13116:1 13120:1 13132:1 13147:1 13165:1 13182:1 13200:1 13219:2 13227:1 13232:1 13234:3 13242:1 13257:2 13258:1 13261:1 13316:1 13319:1 13349:1 13379:1 13396:1 13402:1 13414:1 13421:1 13426:1 13428:1 13440:1 13452:2 13453:1 13466:1 13473:1 13481:1 13488:1 13505:3 13507:1 13532:1 13545:1 13549:1 13551:1 13577:1 13598:2 13615:1 13624:1 13625:1 13626:5 13637:2 13647:1 13663:1 13673:2 13686:3 13700:1 13704:1 13726:3 13733:1 13734:7 13740:3 13744:1 13764:1 13772:1 13775:5 13804:1 13810:1 13821:1 13831:1 13833:1 13840:1 13865:1 13869:1 13870:1 13872:1 13875:1 13876:2 13886:2 13895:1 13897:2 13898:1 13899:4 13900:2 13909:1 13910:1 13916:1 13932:1 13949:1 13952:2 13962:1 13972:1 13988:1 13991:1 14014:2 14040:1 14047:1 14062:1 14069:1 14084:1 14108:1 14143:6 14146:1 14149:1 14168:1 14169:1 14174:1 14179:1 14183:1 14193:1 14216:2 14219:1 14226:1 14275:1 14276:2 14284:4 14293:3 14313:1 14324:1 14327:1 14358:1 14360:1 14367:1 14369:1 14373:2 14374:1 14386:1 14387:3 14389:3 14390:1 14393:1 14394:4 14398:2 14399:1 14412:1 14433:1 14471:1 14477:1 14480:1 14481:1 14488:1 14490:1 14515:1 14516:1 14524:1 14526:1 14554:1 14571:1 14578:2 14580:3 14596:3 14608:2 14609:1 14617:2 14621:1 14649:2 14652:2 14654:1 14657:1 14679:2 14688:1 14694:1 14695:3 14696:1 14700:2 14704:2 14718:1 14720:1 14745:1 14747:1 14782:1 14783:1 14786:1 14794:5 14804:1 14814:1 14823:17 14841:1 14859:1 14864:2 14893:2 14895:1 14908:3 14913:1 14926:1 14967:1 14976:1 15029:1 15036:1 15043:1 15047:1 15054:1 15057:1 15064:1 15068:1 15069:3 15083:1 15109:1 15117:1 15119:1 15153:2 15156:1 15161:1 15169:1 15176:1 15178:3 15196:2 15211:1 15212:1 15224:1 15242:1 15254:1 15265:1 15266:1 15267:1 15276:4 15285:1 15291:1 15297:1 15302:2 15337:1 15362:1 15365:2 15380:2 15386:1 15388:1 15401:2 15406:2 15409:2 15415:1 15417:1 15419:1 15420:1 15421:1 15432:1 15440:1 15441:1 15448:1 15454:1 15458:1 15476:2 15505:1 15546:1 15550:1 15556:1 15565:1 15583:1 15607:1 15642:1 15644:1 15683:2 15699:1 15723:1 15733:2 15738:1 15741:1 15746:1 15748:2 15749:1 15793:1 15795:1 15799:3 15828:1 15833:1 15842:1 15860:2 15870:3 15901:1 15914:2 15934:3 15942:1 15949:1 15967:2 15975:1 15979:1 15988:1 15989:1 16002:1 16003:1 16017:1 16029:2 16037:1 16060:1 16068:1 16079:1 16084:1 16112:1 16113:1 16117:1 16161:1 16162:1 16172:1 16176:1 16190:1 16208:1 16216:7 16225:1 16247:1 16255:1 16265:1 16266:1 16301:9 16309:3 16319:3 16326:1 16336:1 16360:1 16374:1 16381:1 16388:3 16390:2 16409:1 16419:1 16442:1 16444:1 16446:1 16457:1 16472:1 16481:1 16496:1 16498:1 16508:2154 16509:1 16512:1 16545:2 16559:3 16567:1 16600:1 16603:1 16604:1 16609:1 16647:3 16650:1 16670:1 16678:2 16693:1 16694:1 16703:1 16713:1 16719:1 16722:2 16735:3 16738:1 16767:2 16787:3 16793:1 16796:1 16817:1 16827:1 16834:2 16871:1 16894:3 16904:1 16910:2 16914:1 16932:1 16936:1 16942:1 16951:1 16959:1 16961:1 16974:1 16987:1 16993:1 16996:1 16997:1 17002:2 17008:2 17009:1 17017:1 17024:1 17035:1 17042:1 17054:2 17065:1 17077:1 17087:4 17092:1 17095:1 17110:1 17123:2 17125:1 17145:1 17151:1 17153:1 17157:1 17163:1 17165:1 17188:6 17192:1 17195:3 17202:1 17220:2 17223:1 17236:3 17256:1 17288:1 17293:1 17295:1 17296:1 17300:1 17327:2 17337:1 17355:3 17358:1 17359:1 17373:1 17385:1 17402:1 17409:1 17424:1 17430:1 17437:2 17464:1 17468:1 17480:1 17494:2 17495:1 17500:1 17511:1 17512:1 17514:1 17516:1 17528:3 17530:1 17534:1 17544:16 17548:1 17562:1 17565:1 17569:1 17589:1 17595:4 17598:1 17615:1 17653:1 17664:1 17665:1 17689:5 17706:1 17713:1 17715:1 17716:1 17721:1 17732:1 17739:2 17759:1 17763:1 17769:4 17775:1 17781:2 17802:3 17803:1 17804:1 17815:1 17822:1 17824:2 17826:1 17834:1 17837:3 17843:1 17845:1 17847:1 17858:1 17863:1 17873:3 17875:1 17884:1 17886:1 17902:1 17919:1 17931:19 17940:1 17945:1 17956:1 17960:2 17967:1 17977:1 17991:1 17993:1 18039:1 18045:1 18047:1 18076:1 18097:1 18102:1 18121:2 18153:2 18154:1 18158:2 18160:2 18193:2 18198:1 18206:1 18212:1 18315:1 18317:2 18333:1 18342:2 18343:2 18357:2 18378:1 18383:3 18397:1 18403:1 18430:2 18434:1 18445:2 18447:1 18454:1 18460:1 18463:1 18464:1 18486:2 18503:1 18507:1 18509:1 18511:2 18519:3 18524:1 18525:1 18527:14 18534:1 18535:1 18542:2 18544:5 18553:1 18563:2 18566:1 18571:1 18572:1 18573:1 18601:1 18619:1 18636:1 18648:1 18649:3 18692:2 18706:2 18760:2 18762:1 18773:1 18774:1 18777:1 18779:1 18780:2 18781:1 18782:1 18797:2 18800:1 18812:3 18816:1 18823:1 18828:1 18840:1 18848:1 18875:1 18879:1 18900:1 18917:3 18920:5 18942:1 18946:1 18967:1 18972:1 18979:1 18996:1 19006:1 19024:1 19025:1 19032:2 19035:1 19039:1 19042:1 19043:1 19056:6 19062:1 19064:1 19082:1 19105:2 19108:1 19110:1 19120:1 19125:1 19127:2 19128:1 19131:1 19132:5 19133:1 19139:1 19141:1 19142:2 19154:1 19174:1 19175:2 19197:1 19201:1 19203:1 19212:1 19219:2 19239:2 19249:2 19275:3 19276:1 19285:2 19296:2 19298:1 19314:1 19325:1 19332:1 19348:1 19384:1 19421:2 19422:1 19433:1 19434:4 19436:2 19438:1 19455:3 19456:1 19459:1 19467:1 19490:2 19500:1 19535:2 19558:2 19568:1 19575:1 19600:5 19621:1 19624:2 19630:1 19632:2 19636:2 19638:1 19644:1 19648:1 19656:1 19665:1 19677:1 19681:1 19683:2 19685:1 19696:1 19709:1 19714:1 19725:1 19740:2 19743:1 19744:1 19748:1 19758:1 19759:1 19763:1 19765:4 19787:2 19798:1 19801:1 19817:3 19822:1 19831:1 19832:1 19842:1 19843:1 19858:1 19869:3 19877:1 19885:1 19887:1 19888:1 19899:2 19906:1 19909:1 19916:1 19919:2 19921:1 19923:1 19932:1 19937:1 19938:4 19942:2 19946:1 19958:2 19960:1 19969:1 19970:2 19991:2 19998:1 19999:5 20011:1 20025:2 20038:1 20039:1 20052:1 20059:2 20062:1 20086:2 20119:1 20124:1 20132:1 20152:1 20160:2 20166:1 20172:1 20186:3 20199:3 20203:1 20204:2 20210:1 20240:1 20252:1 20262:1 20268:1 20272:1 20282:1 20287:1 20289:1 20297:6 20301:1 20307:1 20309:1 20313:1 20320:1 20333:3 20334:2 20361:1 20374:1 20390:1 20399:1 20400:1 20409:1 20413:1 20421:1 20427:1 20438:1 20455:1 20461:1 20482:1 20485:1 20508:2 20514:1 20527:1 20541:1 20545:1 20547:1 20554:1 20565:1 20572:1 20577:1 20606:1 20617:1 20640:2 20642:1 20652:1 20695:2 20703:1 20707:1 20713:1 20717:1 20742:3 20750:2 20754:1 20770:1 20775:1 20802:1 20818:3 20827:1 20835:3 20837:2 20840:1 20841:1 20868:1 20870:3 20888:4 20891:1 20893:1 20894:1 20910:1 20927:1 20929:1 20941:1 20963:1 20975:1 20991:1 21000:2 21004:1 21006:1 21013:1 21066:2 21070:1 21075:1 21077:2 21081:1 21109:1 21116:1 21123:1 21132:1 21151:3 21154:1 21182:1 21194:1 21215:1 21222:1 21232:1 21296:1 21303:1 21311:1 21341:1 21344:3 21346:1 21392:1 21397:1 21400:1 21416:2 21432:2 21441:1 21451:2 21481:1 21483:1 21494:1 21504:2 21519:1 21526:1 21529:1 21537:2 21571:1 21578:1 21582:3 21599:1 21605:1 21621:1 21631:2 21642:2 21645:1 21689:2 21694:1 21719:1 21751:1 21752:2 21762:2 21765:1 21767:1 21768:1 21769:3 21770:2 21772:1 21778:1 21779:1 21784:4 21795:2 21796:1 21801:2 21812:4 21846:1 21858:1 21859:1 21868:8 21869:3 21872:1 21877:3 21905:2 21915:1 21925:3 21926:2 21958:1 21961:1 21962:1 21963:1 21993:1 22027:1 22032:1 22036:1 22058:1 22063:1 22065:1 22082:1 22089:1 22090:2 22099:1 22105:2 22131:1 22143:1 22188:1 22197:2 22202:1 22220:1 22240:2 22253:1 22264:1 22284:1 22295:9 22343:1 22344:1 22346:1 22363:1 22377:1 22397:1 22410:1 22426:1 22446:1 22459:1 22460:1 22461:5 22477:1 22491:5 22506:1 22557:2 22558:1 22564:1 22598:1 22600:1 22654:2 22672:2 22676:1 22689:1 22691:1 22697:1 22702:2 22706:3 22707:2 22723:1 22742:2 22745:1 22757:1 22759:2 22765:1 22787:1 22794:1 22795:2 22796:3 22797:1 22801:2 22819:2 22821:1 22848:1 22862:1 22876:2 22891:2 22907:1 22919:1 22922:1 22941:1 22944:3 22955:1 22969:1 22976:5 22977:4 22993:2 23011:1 23013:1 23016:1 23023:1 23026:1 23031:2 23035:1 23037:2 23038:1 23083:1 23088:1 23106:2 23111:1 23135:1 23147:1 23162:2 23164:1 23173:1 23179:1 23180:2 23203:1 23209:1 23238:1 23244:1 23246:1 23256:1 23265:2 23270:1 23291:1 23316:1 23334:1 23345:1 23350:4 23376:1 23383:1 23388:1 23389:1 23410:12 23411:2 23418:1 23458:2 23480:2 23484:1 23507:1 23511:1 23520:2 23530:1 23533:1 23538:1 23548:1 23552:3 23566:1 23597:1 23633:1 23643:1 23665:1 23666:2 23691:2 23692:1 23693:1 23698:1 23699:1 23703:2 23734:1 23735:1 23760:1 23787:1 23819:1 23837:1 23853:1 23855:1 23888:1 23905:1 23924:1 23927:1 23937:2 23957:2 23963:1 23968:1 23986:1 23987:1 24003:1 24016:1 24017:3 24037:1 24042:1 24049:1 24053:1 24064:1 24096:1 24107:1 24108:1 24109:2 24119:4 24120:2 24121:1 24141:2 24148:1 24149:1 24150:3 24162:1 24164:2 24177:2 24179:2 24184:1 24190:2 24212:1 24217:1 24221:6 24230:2 24232:1 24233:1 24237:1 24241:1 24251:2 24271:1 24282:1 24292:2 24295:2 24304:1 24329:1 24332:1 24345:1 24361:1 24366:3 24404:2 24407:1 24412:1 24414:1 24415:1 24419:1 24427:1 24428:1 24432:1 24439:1 24442:1 24443:1 24444:1 24445:1 24455:1 24459:1 24464:2 24469:1 24474:1 24476:1 24479:1 24480:2 24485:1 24486:1 24488:1 24489:1 24492:1 24495:2 24502:2 24503:1 24508:1 24511:2 24512:1 24515:1 24538:1 24548:1 24552:1 24588:1 24596:3 24615:1 24644:1 24658:1 24664:1 24665:2 24667:1 24684:1 24709:1 24729:1 24745:1 24751:2 24767:2 24769:2 24771:1 24775:1 24777:2 24794:2 24805:1 24810:2 24816:1 24818:1 24865:1 24868:1 24875:1 24899:1 24905:2 24917:1 24949:1 24952:1 24962:1 24986:2 25004:1 25022:5 25027:1 25031:1 25036:1 25037:4 25044:1 25054:1 25066:1 25069:1 25075:1 25083:1 25093:1 25096:1 25099:1 25102:1 25110:8 25112:1 25116:1 25117:1 25126:1 25129:1 25137:1 25141:3 25159:2 25164:1 25208:1 25215:1 25245:2 25251:5 25260:1 25276:1 25278:6 25282:1 25284:1 25287:1 25290:1 25296:2 25310:1 25312:1 25316:1 25324:1 25325:1 25327:2 25334:1 25342:1 25348:1 25351:1 25363:5 25364:1 25368:1 25382:1 25388:1 25400:1 25402:1 25410:1 25433:1 25456:2 25457:2 25459:1 25460:2 25462:1 25467:1 25472:1 25477:1 25495:1 25514:1 25515:2 25519:1 25525:1 25527:3 25530:1 25540:4 25542:2 25555:1 25557:1 25571:1 25583:1 25584:1 25591:1 25595:1 25602:1 25603:1 25619:1 25624:1 25647:1 25679:1 25685:1 25699:1 25707:1 25713:1 25717:1 25732:1 25741:1 25746:1 25753:1 25755:1 25770:2 25772:1 25777:1 25779:1 25811:1 25816:1 25829:1 25851:1 25854:2 25860:2 25880:1 25883:1 25901:3 25912:1 25915:1 25917:1 25956:1 25960:1 25971:1 25987:1 25991:2 25992:2 25993:1 25997:1 26011:1 26027:2 26050:1 26053:1 26059:1 26070:1 26076:1 26091:1 26092:1 26097:1 26098:1 26122:1 26125:2 26128:4 26133:1 26150:1 26163:3 26175:2 26205:2 26209:1 26215:1 26224:1 26226:1 26227:1 26228:1 26231:3 26232:1 26239:3 26241:2 26242:1 26244:1 26246:1 26250:3 26252:1 26264:1 26270:1 26279:4 26299:1 26318:1 26325:1 26330:1 26340:1
7 10:1 21:1 24:1 32:1 38:1 47:1 73:1 83:1 110:1 116:1 155:4 164:5 182:2 193:2 200:1 207:2 215:2 218:2 234:1 248:1 260:1 274:1 276:1 294:2 298:1 310:1 327:2 334:1 345:1 346:1 347:1 360:1 391:1 402:1 407:1 410:1 429:1 437:1 438:1 441:1 467:1 471:1 475:1 479:1 501:2 508:1 510:4 538:4 553:1 603:6 605:2 613:1 626:1 651:1 667:1 675:1 676:1 714:1 722:1 726:7 728:1 746:2 750:3 753:1 769:1 781:2 782:3 801:1 807:4 810:1 841:1 842:2 845:3 852:1 854:1 877:1 882:1 890:1 933:1 962:2 971:2 982:3 984:1 1010:1 1013:1 1021:1 1042:1 1052:1 1054:1 1056:1 1068:1 1071:2 1076:1 1081:1 1083:1 1088:1 1094:1 1104:1 1163:1 1168:3 1190:2 1203:1 1211:1 1220:1 1224:1 1235:1 1241:1 1242:1 1245:1 1272:1 1276:2 1279:3 1287:1 1345:2 1386:2 1394:2 1424:1 1426:1 1436:3 1439:3 1444:1 1449:1 1450:3 1451:3 1466:2 1467:1 1495:1 1502:1 1517:1 1528:1 1538:1 1539:3 1541:2 1547:1 1552:1 1579:1 1581:3 1593:1 1596:1 1605:4 1608:1 1611:1 1628:2 1639:2 1653:2 1656:1 1657:1 1668:1 1672:1 1702:1 1704:1 1705:1 1719:1 1721:1 1731:2 1738:2 1758:1 1788:1 1789:1 1790:1 1796:1 1797:1 1815:4 1827:1 1836:1 1848:5 1868:2 1879:2 1884:1 1888:2 1904:1 1914:1 1916:2 1919:1 1924:1 1925:1 1927:2 1930:5 1941:1 1943:1 1952:1 1964:1 1967:6 1968:1 1970:2 1973:2 1974:1 1978:4 1980:1 1981:2 1982:2 1986:1 1990:5 1994:1 1997:3 2000:2 2002:3 2004:1 2044:1 2053:1 2057:1 2064:1 2070:1 2078:1 2086:1 2089:1 2091:2 2097:1 2099:1 2116:1 2122:1 2145:1 2155:1 2172:1 2181:1 2200:1 2210:1 2220:1 2222:1 2223:1 2232:1 2237:1 2239:1 2241:1 2247:1 2273:1 2316:1 2322:1 2338:1 2355:1 2357:1 2364:2 2378:1 2394:3 2398:1 2406:1 2429:1 2431:2 2445:3 2446:1 2450:3 2453:3 2460:7 2466:1 2472:1 2500:1 2502:1 2505:1 2506:1 2508:3 2534:1 2545:5 2568:1 2579:2 2587:1 2590:20 2605:1 2617:1 2619:1 2641:1 2650:1 2667:1 2694:1 2696:1 2711:1 2737:1 2752:2 2760:3 2767:1 2798:1 2843:1 2858:1 2859:2 2868:1 2869:1 2875:1 2893:5 2895:1 2900:1 2915:1 2918:8 2922:1 2948:2 2956:1 2977:1 2982:2 3024:1 3037:1 3038:1 3044:1 3045:1 3046:1 3084:1 3088:1 3091:2 3106:1 3118:1 3123:1 3124:1 3153:1 3155:2 3159:2 3167:1 3169:1 3181:2 3187:1 3189:1 3191:1 3205:1 3210:1 3231:1 3235:3 3236:1 3238:2 3239:1 3253:1 3270:1 3276:1 3290:1 3298:1 3332:1 3343:1 3362:1 3365:2 3375:1 3382:2 3395:1 3413:1 3421:2 3422:1 3432:1 3435:2 3443:1 3450:1 3453:1 3461:2 3467:1 3474:1 3481:1 3504:2 3511:2 3518:1 3529:2 3530:1 3537:1 3575:1 3576:1 3613:1 3617:5 3622:2 3624:1 3661:2 3671:1 3682:1 3683:1 3688:1 3698:3 3706:3 3711:2 3712:2 3715:1 3732:1 3733:1 3746:1 3752:1 3763:1 3782:1 3789:1 3791:2 3793:1 3795:1 3805:2 3817:2 3832:1 3843:2 3848:1 3851:1 3869:1 3891:1 3896:1 3897:2 3899:1 3908:1 3916:1 3922:1 3930:1 3942:1 3944:1 3957:1 3997:5 4004:1 4011:1 4021:1 4022:1 4028:1 4035:1 4036:1 4079:1 4082:1 4096:2 4097:2 4098:1 4113:2 4120:1 4123:3 4130:1 4136:1 4140:1 4148:1 4193:1 4204:1 4213:1 4215:1 4247:1 4250:1 4253:1 4284:2 4296:1 4305:26 4308:1 4323:1 4339:1 4342:1 4373:1 4376:1 4395:1 4405:1 4414:2 4429:3 4430:7 4433:2 4436:2 4437:2 4441:1 4443:2 4449:2 4455:1 4456:2 4457:2 4458:1 4459:1 4484:5 4513:1 4528:2 4533:1 4536:1 4564:2 4573:1 4597:1 4602:5 4625:2 4652:1 4674:1 4702:1 4703:1 4709:1 4719:1 4726:1 4733:1 4735:1 4739:1 4742:1 4744:1 4756:1 4765:1 4766:1 4784:1 4803:1 4812:1 4880:1 4881:1 4888:2 4897:1 4919:1 4922:1 4925:2 4953:1 4970:3 4979:1 5006:1 5007:2 5010:1 5020:1 5046:1 5052:1 5053:1 5065:1 5068:2 5071:1 5081:2 5126:2 5137:1 5145:1 5203:1 5220:2 5225:1 5267:1 5275:1 5306:1 5319:2 5322:2 5351:1 5379:1 5395:1 5407:1 5408:1 5412:1 5424:1 5427:1 5441:5 5452:1 5455:1 5470:1 5471:1 5478:1 5499:1 5507:1 5516:2 5542:8 5566:5 5581:5 5585:1 5586:1 5600:2 5617:4 5618:1 5625:5 5627:3 5631:2 5632:1 5636:2 5637:1 5638:2 5640:2 5645:2 5647:2 5661:1 5673:1 5732:1 5756:1 5767:2 5769:1 5782:1 5797:1 5800:1 5810:1 5813:2 5818:1 5844:1 5847:3 5866:1 5886:1 5890:1 5901:1 5911:1 5918:5 5974:1 5987:2 5990:4 6009:4 6010:3 6043:1 6098:2 6102:1 6105:2 6106:1 6108:1 6111:1 6117:2 6135:1 6138:1 6152:1 6167:1 6170:1 6178:1 6182:1 6186:1 6187:1 6188:1 6230:1 6246:3 6273:1 6282:2 6284:1 6320:2 6322:2 6326:2 6328:1 6330:1 6336:1 6338:2 6345:1 6356:1 6381:1 6385:1 6413:1 6459:1 6460:1 6478:1 6490:1 6502:1 6514:3 6515:1 6519:1 6529:1 6544:1 6552:2 6553:1 6561:1 6564:1 6571:1 6589:4 6603:1 6614:1 6621:1 6624:4 6632:1 6633:1 6638:1 6649:1 6653:1 6680:1 6702:2 6712:1 6723:3 6729:1 6740:6 6741:5 6761:3 6789:1 6790:1 6803:32 6812:1 6822:1 6824:19 6851:1 6872:1 6891:2 6957:1 6963:1 6974:1 6979:1 6986:4 6990:1 6996:1 6997:1 7001:1 7004:1 7010:1 7025:1 7036:1 7072:1 7083:2 7093:1 7104:1 7126:1 7129:1 7151:4 7152:2 7157:1 7180:2 7194:1 7201:1 7205:1 7219:20 7246:2 7254:1 7264:1 7274:3 7297:1 7303:1 7306:1 7315:3 7337:1 7341:1 7348:1 7358:1 7363:4 7379:2 7382:2 7391:1 7399:1 7416:2 7420:1 7432:1 7436:1 7438:1 7439:1 7447:1 7462:3 7473:2 7499:1 7503:2 7534:1 7536:1 7538:2 7539:2 7542:1 7549:2 7564:1 7565:1 7570:1 7589:2 7610:3 7611:7 7628:2 7644:1 7651:1 7670:1 7673:1 7683:1 7688:1 7697:2 7699:1 7700:2 7714:1 7725:1 7737:1 7741:1 7743:1 7767:1 7790:2 7791:2 7795:1 7804:1 7806:1 7807:2 7815:2 7835:3 7837:3 7855:1 7872:1 7910:1 7923:1 7937:2 7948:1 7960:1 7966:2 7988:1 8021:2 8028:5 8033:1 8071:1 8073:1 8079:1 8090:2 8104:1 8140:1 8151:1 8158:2 8167:1 8169:1 8170:1 8175:1 8178:1 8179:2 8180:1 8201:1 8203:1 8219:1 8232:3 8237:1 8253:1 8275:1 8277:1 8309:1 8322:2 8326:1 8328:1 8340:1 8342:1 8355:1 8372:1 8377:2 8378:1 8383:1 8411:2 8432:3 8440:1 8447:1 8455:1 8469:2 8476:1 8483:4 8489:1 8498:2 8499:2 8510:4 8532:1 8534:1 8550:1 8561:1 8563:1 8601:3 8616:1 8619:1 8624:1 8628:1 8631:1 8643:1 8657:1 8659:1 8660:3 8664:1 8678:1 8687:1 8727:2 8730:1 8740:1 8747:1 8748:1 8752:1 8755:2 8759:1 8769:1 8785:1 8824:1 8825:1 8828:1 8839:2 8867:1 8872:1 8877:1 8882:1 8892:1 8902:1 8909:3 8911:1 8914:1 8917:2 8929:2 8944:1 8946:1 8956:3 8959:2 8964:1 8965:2 8970:1 8973:1 8989:1 8993:1 8996:1 9029:1 9033:2 9044:2 9054:1 9056:2 9058:1 9061:1 9070:1 9075:1 9085:1 9110:1 9113:2 9117:1 9126:1 9163:1 9167:1 9209:1 9216:1 9220:1 9255:2 9264:1 9282:1 9285:1 9288:1 9292:1 9293:2 9312:2 9318:1 9322:1 9337:1 9344:1 9353:1 9362:1 9374:3 9376:1 9387:1 9419:1 9431:1 9464:1 9473:4 9489:1 9490:1 9496:1 9506:1 9524:1 9529:1 9532:1 9534:1 9535:1 9539:1 9606:1 9611:1 9623:2 9627:1 9645:1 9660:1 9661:1 9664:1 9697:2 9702:2 9708:1 9709:2 9712:7 9718:1 9736:1 9747:1 9754:1 9778:1 9791:1 9798:1 9803:2 9808:1 9831:1 9835:1 9837:1 9870:1 9872:1 9894:1 9900:1 9912:1 9943:1 9946:1 9968:3 9992:1 9995:1 9997:1 10003:2 10019:1 10040:1 10062:1 10066:1 10082:2 10084:1 10087:1 10093:2 10098:2 10103:1 10109:1 10132:1 10133:5 10166:1 10182:1 10187:1 10192:1 10195:1 10204:1 10207:2 10213:1 10233:1 10239:1 10249:3 10251:1 10274:2 10278:1 10318:4 10320:3 10338:1 10341:2 10350:1 10360:2 10362:2 10366:1 10367:1 10368:2 10370:1 10377:3 10379:4 10381:2 10382:1 10383:4 10384:1 10387:4 10388:3 10401:3 10407:1 10411:1 10427:1 10428:1 10429:2 10441:2 10442:1 10453:1 10460:1 10464:3 10469:1 10481:1 10487:1 10502:1 10513:1 10514:1 10518:4 10523:1 10530:1 10570:1 10572:1 10592:1 10597:1 10605:1 10639:3 10665:2 10681:5 10684:1 10694:5 10704:1 10716:1 10729:1 10745:1 10756:1 10764:1 10774:1 10782:1 10783:1 10785:1 10788:2 10800:1 10801:1 10813:1 10820:1 10838:1 10865:1 10875:2 10883:1 10894:1 10900:1 10941:1 10942:1 10953:1 10963:1 10974:1 10986:1 11003:1 11009:1 11011:1 11063:1 11086:1 11087:2 11093:1 11105:2 11112:1 11115:1 11116:2 11126:1 11134:1 11145:1 11169:1 11170:2 11174:1 11203:2 11220:1 11228:1 11233:1 11239:1 11261:7 11278:1 11283:1 11294:1 11300:1 11305:2 11307:2 11312:1 11314:1 11316:1 11317:1 11332:1 11353:2 11358:1 11362:2 11370:1 11373:1 11376:1 11383:1 11396:2 11398:1 11403:1 11414:1 11426:1 11427:2 11431:2 11432:1 11433:1 11445:1 11460:1 11479:1 11491:1 11495:2 11496:1 11506:1 11514:1 11539:2 11569:2 11570:1 11588:1 11616:2 11621:1 11632:5 11663:1 11694:1 11702:1 11704:1 11714:1 11733:1 11761:1 11767:1 11778:3 11779:2 11790:2 11797:1 11805:2 11813:1 11832:1 11848:1 11865:6 11894:1 11918:2 11935:1 11938:1 11970:1 11975:2 11988:1 11992:4 11998:1 12000:2 12018:2 12029:1 12069:1 12073:2 12087:1 12089:2 12095:1 12096:3 12097:1 12098:1 12099:1 12112:2 12114:1 12117:1 12120:1 12122:2 12167:1 12170:2 12182:1 12193:3 12199:3 12217:2 12219:2 12225:1 12238:3 12239:2 12244:1 12275:1 12277:2 12279:1 12281:1 12285:2 12293:1 12309:1 12318:1 12338:1 12351:1 12354:1 12364:2 12381:1 12390:1 12394:1 12405:1 12409:1 12410:1 12423:2 12426:1 12456:1 12459:1 12468:2 12481:2 12488:2 12495:1 12504:1 12528:1 12530:1 12542:1 12545:1 12550:2 12556:2 12563:1 12568:1 12584:1 12586:1 12607:1 12617:1 12625:1 12642:1 12657:1 12672:2 12673:1 12681:1 12686:1 12695:2 12697:3 12704:1 12706:1 12707:1 12712:1 12722:1 12734:1 12789:1 12794:1 12816:1 12817:1 12826:1 12827:2 12831:1 12837:1 12840:3 12844:1 12845:1 12846:2 12853:2 12873:1 12889:1 12897:1 12908:2 12919:1 12920:1 12933:1 12936:1 12947:1 12951:1 12958:1 12962:1 12980:1 12987:1 12994:1 12996:1 13003:1 13008:1 13020:1 13021:2 13027:1 13049:1 13053:2 13059:1 13072:1 13086:1 13093:1 13098:1 13102:1 13116:1 13120:1 13132:1 13147:1 13165:1 13182:1 13200:1 13219:2 13227:1 13232:1 13234:3 13242:1 13257:2 13258:1 13261:1 13303:1 13316:1 13319:1 13349:1 13379:1 13396:1 13402:1 13414:1 13421:1 13426:1 13428:1 13440:1 13452:2 13453:1 13466:1 13473:1 13481:1 13488:1 13505:3 13507:1 13532:1 13545:1 13549:1 13551:1 13577:1 13598:2 13615:1 13624:1 13625:1 13626:6 13637:2 13647:1 13663:1 13673:2 13686:3 13687:1 13700:1 13704:1 13726:3 13733:1 13734:7 13740:3 13744:1 13764:1 13772:1 13775:5 13804:1 13810:1 13821:1 13831:1 13833:1 13840:1 13865:2 13869:1 13870:1 13872:1 13875:1 13876:2 13886:2 13895:1 13897:2 13898:1 13899:5 13900:2 13909:1 13910:1 13916:1 13932:1 13949:1 13952:2 13953:1 13962:1 13972:1 13988:1 13991:1 14014:2 14040:1 14047:1 14062:1 14069:1 14084:1 14108:1 14143:6 14146:1 14149:1 14168:1 14169:1 14174:1 14179:1 14183:1 14193:1 14216:2 14219:1 14226:1 14227:1 14275:1 14276:2 14284:4 14293:3 14313:1 14324:1 14327:1 14358:1 14360:1 14367:1 14369:1 14373:2 14374:1 14386:1 14387:3 14389:3 14390:1 14393:1 14394:4 14398:2 14399:1 14412:1 14433:1 14471:1 14477:1 14480:1 14481:1 14488:1 14490:1 14515:1 14516:1 14524:1 14526:1 14554:1 14571:1 14578:2 14580:3 14596:3 14608:2 14609:1 14617:2 14621:1 14634:1 14649:2 14652:2 14654:1 14657:1 14679:2 14688:1 14694:1 14695:3 14696:1 14700:2 14704:2 14718:1 14720:1 14745:1 14747:1 14782:1 14783:1 14786:1 14794:5 14804:1 14814:1 14823:18 14841:1 14859:1 14864:2 14869:1 14893:2 14895:1 14908:3 14913:1 14926:1 14967:1 14976:1 15005:1 15029:1 15036:1 15043:1 15047:1 15054:1 15057:1 15064:1 15068:1 15069:3 15083:1 15109:1 15117:1 15119:1 15153:3 15156:1 15161:1 15169:1 15176:1 15178:3 15196:2 15211:1 15212:1 15224:1 15242:1 15254:1 15265:1 15266:1 15267:1 15276:4 15285:1 15291:1 15297:2 15302:2 15337:1 15362:1 15365:2 15380:2 15386:1 15388:1 15401:2 15406:2 15409:2 15415:1 15417:1 15419:1 15420:1 15421:1 15432:1 15440:1 15441:1 15448:1 15454:1 15458:1 15476:2 15505:1 15546:1 15550:1 15556:1 15565:1 15583:1 15607:1 15642:1 15644:1 15683:2 15699:1 15723:1 15733:2 15738:1 15741:1 15746:1 15748:2 15749:1 15793:1 15795:1 15799:3 15828:1 15833:1 15842:1 15860:2 15870:3 15901:1 15914:2 15920:1 15934:3 15942:1 15949:1 15967:2 15975:1 15979:1 15988:1 15989:1 16002:1 16003:1 16017:1 16029:2 16037:1 16060:1 16068:1 16079:1 16084:1 16112:1 16113:1 16117:1 16161:1 16162:1 16172:1 16176:1 16190:1 16208:1 16211:1 16216:7 16225:1 16247:1 16255:1 16265:1 16266:1 16301:9 16309:3 16319:3 16326:1 16336:1 16360:1 16374:1 16381:1 16388:3 16390:2 16409:1 16419:1 16442:1 16444:1 16446:1 16457:1 16472:1 16481:1 16496:1 16498:1 16508:2192 16509:1 16512:1 16545:2 16559:3 16567:1 16600:1 16603:1 16604:1 16609:1 16647:3 16650:1 16670:1 16678:2 16693:1 16694:1 16703:1 16713:1 16719:1 16722:2 16735:3 16738:1 16767:2 16787:3 16793:1 16796:1 16817:1 16827:1 16834:2 16871:1 16894:3 16904:1 16910:2 16914:1 16932:1 16936:1 16942:1 16951:1 16959:1 16961:1 16974:1 16987:1 16993:1 16996:1 16997:1 17002:2 17008:2 17009:1 17017:1 17024:1 17035:1 17042:1 17054:2 17065:1 17077:1 17087:4 17092:1 17095:1 17110:1 17123:2 17125:1 17145:1 17151:1 17153:1 17157:1 17163:1 17165:1 17188:6 17192:1 17195:3 17202:1 17220:2 17223:1 17236:3 17256:1 17288:1 17293:1 17295:1 17296:1 17300:1 17327:2 17337:1 17355:3 17358:1 17359:1 17373:1 17385:1 17402:1 17409:1 17424:1 17430:1 17437:2 17464:1 17468:1 17480:1 17494:2 17495:1 17500:1 17511:1 17512:1 17514:1 17516:1 17528:3 17530:1 17534:1 17544:17 17548:1 17562:1 17565:1 17569:1 17589:1 17595:5 17598:1 17615:1 17653:1 17664:1 17665:1 17689:5 17706:1 17713:1 17715:1 17716:1 17721:1 17732:1 17739:2 17759:1 17763:1 17769:4 17775:1 17781:2 17802:3 17803:1 17804:1 17810:1 17815:1 17822:1 17824:2 17826:1 17834:1 17837:3 17843:1 17845:1 17847:1 17858:1 17863:1 17873:3 17875:1 17884:1 17886:1 17902:1 17919:1 17931:20 17940:1 17945:1 17956:1 17960:2 17967:1 17977:1 17991:1 17993:1 18039:1 18045:1 18047:1 18076:1 18097:1 18102:1 18121:2 18153:2 18154:1 18158:2 18160:2 18193:3 18198:1 18206:1 18212:1 18315:1 18317:2 18333:1 18342:2 18343:2 18357:2 18378:1 18383:3 18397:1 18403:1 18430:2 18434:1 18445:2 18447:1 18454:1 18460:1 18463:1 18464:1 18486:2 18503:1 18507:1 18509:1 18511:2 18519:3 18524:1 18525:1 18527:15 18534:1 18535:1 18542:3 18544:5 18553:1 18563:2 18566:1 18571:1 18572:1 18573:1 18601:1 18619:1 18636:1 18648:1 18649:3 18692:3 18706:2 18760:2 18762:1 18773:1 18774:1 18777:1 18779:1 18780:2 18781:1 18782:1 18797:2 18800:1 18807:1 18812:3 18816:1 18823:1 18828:1 18840:1 18848:1 18875:1 18879:1 18900:1 18917:3 18920:5 18942:2 18946:1 18967:1 18972:1 18979:1 18996:1 19006:1 19024:1 19025:1 19032:2 19035:1 19039:1 19042:1 19043:1 19056:6 19062:2 19064:1 19082:1 19105:2 19108:1 19110:1 19120:1 19125:1 19127:3 19128:1 19131:1 19132:5 19133:1 19139:2 19141:1 19142:2 19154:1 19174:1 19175:2 19197:1 19201:1 19203:1 19212:1 19219:2 19239:2 19249:2 19275:3 19276:1 19285:2 19296:2 19298:1 19314:1 19325:1 19332:1 19348:1 19384:1 19421:2 19422:1 19433:1 19434:4 19436:2 19438:1 19455:3 19456:1 19459:1 19467:1 19490:2 19500:1 19535:2 19558:2 19568:1 19575:1 19600:5 19621:1 19624:2 19630:1 19632:2 19636:2 19638:1 19644:1 19648:1 19656:1 19665:1 19677:1 19681:1 19683:2 19685:1 19696:1 19709:1 19714:1 19725:1 19740:2 19743:1 19744:1 19748:2 19758:1 19759:1 19763:1 19765:4 19787:2 19798:1 19801:1 19817:3 19822:1 19831:1 19832:1 19842:1 19843:1 19858:1 19869:3 19877:1 19885:1 19887:1 19888:1 19898:1 19899:2 19906:1 19909:1 19916:1 19919:2 19921:1 19923:1 19932:1 19937:1 19938:4 19942:2 19946:1 19958:2 19960:1 19969:1 19970:2 19991:2 19998:1 19999:5 20011:1 20025:2 20038:1 20039:1 20052:1 20059:2 20062:1 20086:2 20119:1 20124:1 20132:1 20152:1 20160:2 20166:1 20172:1 20173:1 20186:3 20199:3 20203:1 20204:2 20210:1 20240:1 20252:1 20262:1 20268:1 20272:1 20282:1 20287:1 20289:1 20297:7 20301:1 20307:1 20309:1 20313:1 20320:1 20333:3 20334:2 20361:1 20374:1 20390:1 20399:1 20400:1 20409:1 20413:1 20421:1 20427:1 20438:1 20455:1 20461:1 20482:1 20485:1 20508:2 20514:1 20526:1 20527:1 20541:1 20545:1 20547:1 20554:1 20565:1 20572:1 20577:1 20606:1 20617:1 20640:2 20642:1 20652:1 20695:2 20703:1 20707:1 20713:1 20717:1 20742:3 20750:2 20754:1 20770:1 20775:1 20802:1 20818:3 20827:1 20835:3 20837:2 20840:1 20841:1 20868:1 20870:3 20888:4 20891:1 20893:1 20894:1 20910:1 20927:1 20929:1 20941:1 20963:1 20975:1 20991:1 21000:2 21004:1 21006:1 21013:1 21066:2 21070:1 21075:1 21077:2 21081:1 21109:1 21116:1 21123:1 21132:1 21151:3 21154:1 21182:1 21194:1 21215:1 21222:1 21232:1 21235:1 21296:1 21303:1 21311:1 21341:1 21344:3 21346:1 21392:1 21397:1 21400:1 21416:2 21432:2 21441:1 21451:2 21481:1 21483:1 21494:1 21504:2 21519:1 21526:1 21529:1 21537:2 21571:1 21578:1 21582:3 21599:1 21605:1 21621:1 21631:2 21642:2 21645:1 21689:2 21694:1 21719:1 21751:1 21752:2 21762:2 21765:1 21767:1 21768:1 21769:3 21770:2 21772:1 21778:1 21779:1 21784:4 21795:2 21796:1 21801:2 21812:4 21846:1 21858:1 21859:1 21868:8 21869:3 21872:1 21877:3 21905:2 21915:1 21925:3 21926:2 21958:1 21961:1 21962:1 21963:1 21993:1 22027:1 22032:1 22036:1 22058:1 22063:1 22065:1 22082:1 22089:1 22090:2 22099:1 22105:2 22131:1 22143:1 22188:1 22197:2 22202:1 22220:1 22240:2 22253:1 22264:1 22284:1 22295:9 22343:1 22344:1 22346:1 22363:1 22377:2 22397:1 22410:1 22426:1 22446:1 22459:1 22460:2 22461:5 22477:1 22491:5 22506:1 22557:2 22558:1 22564:1 22598:1 22600:1 22654:2 22672:2 22676:1 22689:1 22691:1 22697:1 22702:2 22706:3 22707:2 22723:1 22742:2 22745:1 22757:1 22759:2 22765:1 22787:1 22794:1 22795:2 22796:3 22797:1 22801:2 22819:2 22821:1 22848:1 22862:1 22876:2 22891:2 22907:1 22919:1 22922:1 22941:1 22944:3 22955:1 22969:1 22976:6 22977:4 22993:2 23011:1 23013:1 23016:1 23023:1 23026:1 23031:2 23035:1 23037:2 23038:1 23083:1 23088:1 23106:2 23111:1 23135:1 23147:1 23162:2 23164:1 23173:1 23179:1 23180:2 23203:1 23209:1 23238:1 23244:1 23246:1 23256:1 23265:2 23270:1 23291:1 23316:1 23334:1 23345:1 23350:4 23376:1 23383:1 23388:1 23389:1 23410:12 23411:2 23418:1 23458:3 23480:2 23484:1 23507:1 23511:1 23520:2 23530:1 23533:1 23538:1 23548:1 23552:3 23566:1 23597:1 23633:1 23643:1 23665:1 23666:2 23691:2 23692:1 23693:1 23698:1 23699:1 23703:2 23734:1 23735:1 23760:1 23787:1 23819:1 23837:1 23853:1 23855:1 23888:1 23905:1 23924:1 23927:1 23937:2 23957:2 23963:1 23968:1 23986:1 23987:1 24003:1 24016:1 24017:3 24037:1 24042:1 24049:1 24053:1 24064:1 24096:1 24107:1 24108:1 24109:2 24119:4 24120:2 24121:1 24141:2 24148:1 24149:1 24150:4 24162:1 24164:2 24177:2 24179:3 24184:1 24190:2 24212:1 24217:1 24221:6 24230:2 24232:1 24233:1 24237:1 24241:1 24251:2 24271:1 24282:1 24292:2 24295:2 24304:1 24329:1 24332:1 24345:1 24361:1 24366:3 24404:2 24407:1 24412:1 24414:1 24415:1 24419:1 24427:1 24428:1 24432:1 24439:1 24442:1 24443:1 24444:1 24445:1 24455:1 24459:1 24464:2 24469:1 24474:1 24476:1 24479:1 24480:2 24485:1 24486:1 24488:1 24489:1 24492:1 24495:2 24498:1 24502:2 24503:1 24508:1 24511:2 24512:1 24515:1 24538:1 24548:1 24552:1 24588:2 24596:3 24615:1 24644:1 24658:1 24664:1 24665:2 24667:1 24684:1 24709:1 24729:1 24745:1 24751:2 24767:2 24769:2 24771:1 24775:1 24777:3 24794:2 24805:1 24810:2 24816:1 24818:1 24865:1 24868:1 24875:1 24899:1 24905:2 24917:1 24949:1 24952:1 24962:1 24986:2 25004:1 25022:5 25027:1 25031:1 25036:1 25037:4 25044:1 25054:1 25066:1 25069:1 25075:1 25083:1 25093:1 25096:1 25099:1 25102:1 25110:8 25112:1 25116:1 25117:1 25126:1 25129:1 25137:1 25141:3 25159:2 25164:1 25208:1 25215:1 25245:2 25251:5 25260:1 25276:1 25278:7 25282:1 25284:1 25287:1 25290:1 25296:2 25310:1 25312:1 25316:1 25324:1 25325:1 25327:2 25334:1 25342:1 25348:1 25351:1 25363:5 25364:1 25368:1 25382:1 25388:1 25400:1 25402:1 25410:1 25433:1 25456:2 25457:2 25459:1 25460:2 25462:1 25467:1 25472:1 25477:1 25495:1 25514:1 25515:2 25519:1 25525:1 25527:3 25530:1 25540:4 25542:2 25555:1 25557:1 25571:1 25583:1 25584:1 25591:1 25595:1 25602:1 25603:1 25619:1 25624:1 25647:1 25679:1 25685:1 25699:1 25707:1 25713:1 25717:1 25732:1 25741:1 25746:1 25753:1 25755:1 25770:2 25772:1 25777:1 25779:1 25809:1 25811:1 25816:1 25829:1 25851:1 25854:2 25860:2 25880:1 25883:1 25901:3 25912:1 25915:1 25917:1 25956:1 25960:1 25971:1 25987:1 25991:2 25992:2 25993:1 25997:1 26011:1 26027:2 26050:1 26053:1 26059:1 26070:1 26076:2 26091:1 26092:1 26097:1 26098:1 26122:1 26125:2 26128:4 26133:1 26150:1 26163:3 26175:2 26205:2 26209:1 26215:1 26224:1 26226:1 26227:1 26228:1 26231:3 26232:1 26239:3 26241:2 26242:1 26244:2 26246:1 26250:3 26252:1 26264:1 26270:1 26279:4 26299:1 26318:1 26325:1 26330:1 26340:1
7 10:1 21:1 24:1 32:1 38:1 47:1 73:1 83:1 110:1 116:1 155:4 164:5 182:2 193:2 200:1 207:2 215:2 218:2 234:1 248:1 260:1 274:1 276:1 294:2 298:1 310:1 327:2 334:1 345:1 346:1 347:1 360:1 391:1 402:1 407:1 410:1 429:1 437:1 438:1 441:2 467:1 471:1 475:1 479:1 501:2 508:1 510:4 538:4 553:1 603:6 605:2 613:1 626:1 651:1 667:1 675:1 676:1 714:1 722:1 724:1 726:7 728:1 746:2 750:3 753:1 769:1 781:2 782:3 801:1 807:4 810:1 841:1 842:2 845:3 852:1 854:1 877:1 882:1 890:1 933:1 962:2 971:2 982:3 984:1 1010:1 1013:1 1021:1 1042:1 1052:1 1054:1 1056:1 1068:1 1071:2 1076:1 1081:1 1083:1 1088:1 1094:1 1104:1 1163:1 1168:3 1190:2 1203:1 1211:1 1220:1 1224:1 1235:1 1241:1 1242:1 1245:1 1272:1 1276:2 1279:3 1287:1 1345:2 1386:2 1394:2 1424:1 1426:1 1436:3 1439:3 1444:1 1449:1 1450:3 1451:3 1466:2 1467:1 1495:1 1502:1 1517:1 1528:1 1538:1 1539:3 1541:2 1547:1 1552:1 1579:1 1581:3 1593:1 1596:1 1605:4 1608:1 1611:1 1628:2 1639:2 1653:2 1656:1 1657:1 1668:1 1672:1 1702:1 1704:1 1705:1 1719:1 1721:1 1731:2 1738:2 1758:1 1788:1 1789:1 1790:1 1796:1 1797:1 1815:4 1827:1 1836:1 1848:5 1858:1 1868:2 1879:2 1884:1 1888:2 1904:1 1914:1 1916:2 1919:1 1924:1 1925:1 1927:2 1930:5 1941:1 1943:1 1952:1 1958:1 1964:1 1967:6 1968:1 1970:2 1973:2 1974:1 1978:4 1980:1 1981:2 1982:2 1986:1 1990:5 1994:1 1997:3 2000:2 2002:3 2004:1 2044:1 2053:1 2057:1 2064:1 2070:1 2078:1 2086:1 2089:1 2091:2 2097:1 2099:1 2116:1 2122:1 2145:1 2155:1 2172:1 2181:1 2200:1 2210:1 2220:1 2222:1 2223:1 2232:1 2237:1 2239:1 2241:1 2247:1 2273:1 2316:1 2322:1 2338:1 2355:1 2357:1 2364:2 2378:1 2394:3 2398:1 2406:1 2429:1 2431:2 2445:3 2446:1 2450:3 2453:3 2460:7 2466:1 2472:1 2500:1 2502:1 2505:1 2506:1 2508:3 2534:1 2545:5 2568:1 2579:2 2587:1 2590:20 2605:1 2617:1 2619:2 2641:1 2650:1 2667:1 2694:1 2696:1 2711:1 2737:1 2752:2 2760:3 2767:1 2798:1 2843:1 2858:1 2859:2 2868:1 2869:1 2875:1 2893:5 2895:1 2900:1 2915:1 2918:8 2922:1 2948:2 2956:1 2977:1 2982:2 3024:1 3037:1 3038:1 3044:1 3045:1 3046:1 3084:1 3088:1 3091:2 3106:1 3118:1 3123:1 3124:1 3153:1 3155:2 3159:2 3167:1 3169:1 3181:2 3187:1 3189:1 3191:1 3205:1 3210:1 3231:1 3235:3 3236:1 3238:2 3239:1 3253:1 3270:2 3276:1 3290:1 3298:1 3332:1 3343:1 3362:1 3365:2 3375:1 3382:2 3395:1 3413:1 3421:2 3422:1 3432:1 3435:2 3443:1 3450:1 3453:1 3461:2 3467:1 3474:1 3481:1 3504:2 3511:2 3518:1 3529:2 3530:1 3537:1 3575:1 3576:1 3613:1 3617:5 3622:2 3624:1 3661:2 3671:1 3682:1 3683:1 3688:1 3698:3 3706:3 3711:2 3712:2 3715:1 3732:1 3733:1 3746:1 3752:1 3763:1 3782:1 3789:1 3791:2 3793:1 3795:1 3805:2 3817:2 3832:1 3843:2 3848:1 3851:1 3869:1 3891:1 3896:1 3897:2 3899:1 3908:1 3916:1 3922:1 3930:1 3942:1 3944:1 3957:1 3997:5 4004:1 4011:1 4021:1 4022:1 4028:1 4035:1 4036:1 4079:1 4082:1 4096:2 4097:2 4098:1 4113:2 4120:1 4123:3 4130:1 4136:1 4140:1 4148:1 4193:1 4199:1 4204:1 4213:1 4215:1 4247:1 4250:1 4253:1 4284:2 4296:1 4305:26 4308:1 4323:1 4339:1 4342:1 4373:1 4376:1 4395:1 4405:1 4414:2 4429:3 4430:7 4433:2 4436:2 4437:2 4441:1 4443:2 4449:2 4455:1 4456:2 4457:2 4458:1 4459:1 4484:5 4513:1 4528:2 4533:1 4536:1 4564:2 4573:1 4597:1 4602:5 4625:2 4652:1 4674:1 4702:1 4703:1 4709:1 4719:1 4726:1 4733:1 4735:1 4739:1 4742:1 4744:1 4756:1 4765:1 4766:1 4784:1 4803:1 4812:1 4880:1 4881:1 4888:2 4897:1 4919:1 4922:1 4925:2 4946:1 4953:1 4970:3 4979:1 5006:1 5007:2 5010:1 5020:1 5046:1 5052:1 5053:1 5065:1 5068:2 5071:1 5081:2 5126:2 5137:1 5145:1 5203:1 5220:2 5225:1 5267:1 5275:1 5306:1 5319:2 5322:2 5351:1 5379:1 5395:1 5407:1 5408:1 5412:1 5424:1 5427:1 5441:5 5452:1 5455:1 5470:1 5471:1 5478:1 5499:1 5507:1 5516:2 5542:8 5566:5 5581:5 5585:1 5586:1 5600:2 5617:4 5618:1 5625:5 5627:3 5631:2 5632:1 5636:2 5637:1 5638:2 5640:2 5645:2 5647:2 5661:1 5673:1 5732:1 5756:1 5767:2 5769:1 5782:1 5797:1 5800:1 5810:1 5813:2 5818:1 5844:1 5847:3 5866:1 5886:1 5890:1 5901:1 5911:1 5918:5 5974:1 5987:2 5990:4 6009:4 6010:3 6043:1 6098:2 6102:1 6105:2 6106:1 6108:1 6111:1 6117:2 6135:1 6138:1 6152:1 6167:1 6170:1 6178:1 6182:1 6186:1 6187:1 6188:1 6230:1 6246:3 6273:1 6282:2 6284:1 6320:2 6322:2 6326:2 6328:1 6330:1 6336:1 6338:2 6345:1 6356:1 6381:1 6385:1 6413:1 6459:1 6460:1 6478:1 6490:1 6502:1 6514:3 6515:1 6519:1 6529:1 6544:1 6552:2 6553:1 6561:1 6564:1 6571:1 6589:4 6603:1 6614:1 6621:1 6624:4 6632:1 6633:1 6638:1 6649:1 6653:1 6680:1 6702:2 6712:1 6723:3 6729:1 6740:6 6741:5 6761:3 6789:1 6790:1 6803:32 6812:1 6822:1 6824:19 6851:1 6872:1 6891:2 6957:1 6963:1 6974:1 6979:1 6986:4 6990:1 6996:1 6997:1 7001:1 7004:1 7010:1 7025:1 7036:1 7072:1 7083:2 7093:1 7104:1 7126:1 7129:1 7151:4 7152:2 7157:1 7180:2 7194:1 7201:1 7205:1 7219:20 7246:2 7254:1 7264:1 7274:3 7297:1 7303:1 7306:1 7307:1 7315:3 7337:1 7341:1 7348:1 7358:1 7363:4 7379:2 7382:2 7391:1 7399:1 7416:2 7420:1 7432:1 7436:1 7438:1 7439:1 7447:1 7462:3 7473:2 7499:1 7503:2 7534:1 7536:1 7538:2 7539:2 7542:1 7549:2 7564:1 7565:1 7570:1 7589:2 7610:3 7611:7 7628:2 7644:1 7651:1 7670:1 7673:1 7683:1 7688:1 7697:2 7699:1 7700:2 7714:1 7725:1 7737:1 7741:1 7743:1 7767:1 7790:2 7791:2 7795:1 7804:1 7806:1 7807:2 7815:2 7835:3 7837:3 7855:1 7872:1 7910:1 7923:1 7937:2 7948:1 7960:1 7966:2 7988:1 8021:2 8028:5 8033:1 8071:1 8073:1 8079:1 8090:2 8104:1 8140:1 8151:1 8158:2 8167:1 8169:1 8170:1 8175:1 8178:1 8179:2 8180:1 8201:1 8203:1 8219:1 8232:3 8237:1 8253:1 8275:1 8277:1 8296:1 8309:1 8322:2 8326:1 8328:1 8340:1 8342:1 8355:1 8372:1 8377:2 8378:1 8383:1 8411:2 8432:3 8440:1 8447:1 8455:1 8469:2 8476:1 8483:4 8489:1 8498:2 8499:3 8510:4 8532:1 8534:1 8550:1 8561:1 8563:1 8601:3 8616:1 8619:1 8624:1 8628:1 8631:1 8643:1 8657:1 8659:1 8660:3 8664:1 8678:1 8687:1 8727:2 8730:1 8740:1 8747:1 8748:1 8752:1 8755:2 8759:1 8769:1 8785:1 8824:1 8825:1 8828:1 8839:2 8867:1 8872:1 8877:1 8882:1 8892:1 8902:1 8909:3 8911:1 8914:1 8917:2 8929:2 8944:1 8946:1 8956:3 8959:2 8964:1 8965:2 8970:1 8973:1 8989:1 8993:1 8996:1 9029:1 9033:2 9044:2 9054:1 9056:2 9058:1 9061:1 9070:1 9075:1 9085:1 9110:1 9113:2 9117:1 9126:1 9163:1 9167:1 9209:1 9216:1 9220:1 9255:2 9264:1 9282:1 9285:1 9288:1 9292:1 9293:2 9312:2 9318:1 9322:1 9337:1 9344:1 9353:1 9362:1 9374:3 9376:1 9387:1 9419:1 9431:1 9464:1 9466:1 9473:4 9489:1 9490:1 9496:1 9506:1 9524:1 9529:1 9532:1 9534:1 9535:1 9539:1 9606:1 9611:1 9623:2 9627:1 9645:1 9660:1 9661:1 9664:1 9697:2 9702:2 9708:1 9709:2 9712:7 9718:1 9736:1 9747:1 9754:1 9778:1 9791:1 9798:1 9803:2 9808:1 9831:1 9835:1 9837:1 9870:1 9872:1 9894:1 9900:1 9912:1 9943:1 9946:1 9965:1 9968:3 9992:1 9995:1 9997:1 10003:2 10019:1 10040:1 10062:1 10066:1 10082:2 10084:1 10087:1 10093:2 10098:2 10103:1 10109:1 10132:1 10133:5 10166:1 10182:1 10187:1 10192:1 10195:1 10204:1 10207:2 10213:1 10221:1 10233:1 10239:1 10249:3 10251:1 10274:2 10278:1 10318:4 10320:3 10338:1 10341:2 10350:1 10360:2 10362:2 10366:1 10367:1 10368:2 10370:1 10377:3 10379:4 10381:2 10382:1 10383:4 10384:1 10387:4 10388:3 10401:3 10407:1 10411:1 10427:1 10428:1 10429:2 10441:2 10442:1 10453:1 10460:1 10464:3 10469:1 10481:1 10487:1 10502:1 10513:1 10514:1 10518:4 10523:1 10530:1 10570:1 10572:1 10592:1 10597:1 10605:1 10639:3 10665:2 10681:5 10684:1 10694:5 10704:1 10716:1 10729:1 10745:1 10756:1 10764:1 10774:1 10782:1 10783:1 10785:1 10788:2 10800:1 10801:1 10813:1 10820:1 10838:1 10865:1 10875:2 10883:1 10894:1 10900:1 10941:1 10942:1 10953:1 10963:1 10974:1 10986:1 11003:1 11009:1 11011:1 11063:1 11086:1 11087:2 11093:1 11105:2 11112:1 11115:1 11116:2 11126:1 11134:1 11145:1 11169:1 11170:2 11174:1 11203:2 11220:1 11228:1 11233:1 11239:1 11261:7 11278:1 11283:1 11294:1 11300:1 11305:2 11307:2 11312:1 11314:1 11316:1 11317:1 11332:1 11353:2 11358:1 11362:2 11370:1 11373:1 11376:1 11383:1 11396:2 11398:1 11403:1 11414:1 11426:1 11427:2 11431:2 11432:1 11433:1 11445:1 11460:1 11479:1 11491:1 11495:2 11496:1 11506:1 11514:1 11539:2 11569:2 11570:1 11588:1 11616:2 11621:2 11632:5 11663:1 11694:1 11702:1 11704:1 11714:1 11733:1 11761:1 11767:2 11778:3 11779:2 11790:3 11797:1 11805:2 11813:1 11832:1 11848:1 11865:6 11894:1 11917:1 11918:2 11935:1 11938:1 11970:1 11975:2 11988:1 11992:4 11998:1 12000:2 12018:2 12029:1 12069:1 12073:2 12087:1 12089:2 12095:1 12096:3 12097:1 12098:1 12099:1 12112:2 12114:1 12117:1 12120:1 12122:2 12167:1 12170:2 12182:1 12193:4 12199:3 12217:2 12219:2 12225:1 12238:3 12239:2 12244:1 12275:1 12277:2 12279:1 12281:1 12285:2 12293:1 12309:1 12318:1 12338:1 12351:1 12354:1 12364:2 12381:1 12390:1 12394:1 12405:1 12409:1 12410:1 12423:2 12426:1 12456:1 12459:1 12468:2 12481:2 12488:2 12495:1 12504:1 12528:1 12530:1 12542:1 12545:1 12550:2 12556:2 12563:1 12568:1 12584:1 12586:1 12607:1 12617:1 12625:1 12642:1 12657:1 12672:2 12673:1 12681:1 12686:1 12695:2 12697:3 12704:1 12706:1 12707:1 12712:1 12722:1 12734:1 12789:1 12794:1 12816:1 12817:1 12826:1 12827:2 12831:1 12837:1 12840:3 12844:1 12845:1 12846:2 12853:2 12873:1 12889:1 12897:1 12908:2 12919:1 12920:1 12933:1 12936:1 12947:1 12951:1 12958:1 12962:1 12980:1 12987:1 12994:1 12996:1 13003:1 13008:1 13020:1 13021:2 13027:1 13049:1 13053:2 13059:1 13072:1 13086:1 13093:1 13098:1 13101:1 13102:1 13116:1 13120:1 13132:1 13147:1 13165:1 13182:1 13200:1 13219:2 13227:1 13232:1 13234:3 13242:1 13257:2 13258:1 13261:1 13303:1 13316:1 13319:1 13349:1 13379:1 13396:1 13402:1 13414:1 13421:1 13426:1 13428:1 13440:1 13452:2 13453:1 13466:1 13473:1 13481:1 13488:1 13505:3 13507:1 13532:1 13545:1 13549:1 13551:1 13577:1 13598:2 13615:1 13624:1 13625:1 13626:6 13637:2 13647:1 13663:1 13673:2 13686:3 13687:1 13700:2 13704:1 13726:3 13733:1 13734:7 13740:3 13744:1 13764:1 13772:1 13775:5 13804:1 13810:1 13821:1 13831:1 13833:1 13840:1 13865:2 13869:1 13870:1 13872:1 13875:1 13876:2 13877:1 13886:2 13895:1 13897:2 13898:1 13899:5 13900:2 13909:1 13910:1 13916:1 13932:1 13949:1 13952:2 13953:1 13962:1 13972:1 13988:1 13991:1 14014:2 14040:1 14047:1 14062:1 14069:1 14084:1 14108:1 14143:6 14146:1 14149:1 14168:1 14169:1 14174:1 14179:1 14183:1 14193:1 14216:2 14219:1 14226:1 14227:1 14275:1 14276:2 14284:4 14293:3 14313:1 14324:1 14327:1 14358:1 14360:1 14367:1 14369:1 14373:2 14374:1 14386:1 14387:3 14389:3 14390:1 14393:1 14394:4 14398:2 14399:1 14412:1 14433:1 14471:1 14477:1 14480:1 14481:1 14488:1 14490:1 14515:1 14516:1 14524:1 14526:1 14554:1 14571:1 14578:2 14580:3 14596:3 14608:2 14609:1 14617:2 14621:1 14634:1 14649:2 14652:2 14654:1 14657:1 14679:2 14688:1 14694:1 14695:3 14696:1 14700:2 14704:2 14718:1 14720:1 14745:1 14747:1 14782:1 14783:1 14786:1 14794:5 14804:1 14814:1 14823:18 14841:1 14859:1 14864:2 14869:1 14893:2 14895:2 14908:3 14913:1 14926:1 14967:1 14976:1 15005:1 15029:1 15036:1 15043:1 15047:1 15054:1 15057:1 15064:1 15068:1 15069:3 15083:1 15109:1 15117:1 15119:1 15153:3 15156:1 15161:1 15169:1 15176:1 15178:3 15196:2 15211:1 15212:1 15224:1 15242:1 15254:1 15265:1 15266:1 15267:1 15276:4 15285:1 15291:1 15297:2 15302:2 15337:1 15362:1 15365:2 15380:2 15386:1 15388:1 15401:2 15406:2 15409:2 15415:1 15417:1 15419:1 15420:1 15421:1 15432:1 15440:1 15441:1 15448:1 15454:1 15455:1 15458:1 15476:2 15505:1 15546:1 15550:1 15556:1 15565:1 15583:1 15607:1 15642:1 15644:1 15683:2 15699:1 15723:1 15733:2 15738:1 15741:1 15746:1 15748:2 15749:1 15793:1 15795:1 15799:3 15828:1 15833:1 15842:1 15860:2 15870:3 15901:1 15914:2 15920:1 15934:3 15942:1 15949:1 15967:2 15975:1 15979:1 15988:1 15989:1 16002:1 16003:1 16017:1 16029:2 16037:1 16046:1 16060:1 16068:1 16079:1 16084:1 16112:1 16113:1 16117:1 16161:1 16162:1 16172:1 16176:1 16190:1 16208:1 16211:1 16216:7 16225:1 16247:1 16255:1 16265:1 16266:1 16301:9 16309:3 16319:3 16326:1 16336:1 16360:1 16374:1 16381:1 16388:3 16390:2 16409:1 16419:1 16442:1 16444:1 16446:1 16457:1 16472:1 16481:1 16496:1 16498:1 16508:2199 16509:1 16512:1 16545:2 16559:3 16567:1 16600:1 16603:1 16604:1 16609:1 16647:3 16650:1 16670:1 16678:2 16693:1 16694:1 16703:1 16713:1 16719:1 16722:2 16735:3 16738:1 16767:2 16787:3 16793:1 16796:1 16817:1 16827:1 16834:2 16871:1 16894:3 16904:1 16910:2 16914:1 16932:1 16936:1 16942:1 16951:1 16959:1 16961:1 16974:1 16987:1 16993:1 16996:1 16997:1 17002:2 17008:2 17009:1 17017:1 17024:1 17035:1 17042:1 17054:2 17065:1 17077:1 17087:4 17092:1 17095:1 17110:1 17123:2 17125:1 17145:1 17151:1 17153:1 17157:1 17163:1 17165:1 17188:6 17192:1 17195:3 17202:1 17220:2 17223:1 17236:3 17256:1 17288:1 17293:1 17295:2 17296:1 17300:1 17327:2 17337:2 17355:3 17358:1 17359:1 17373:1 17385:1 17402:1 17409:1 17424:1 17430:1 17437:2 17464:1 17468:1 17480:1 17494:2 17495:1 17500:1 17511:1 17512:1 17514:1 17516:1 17528:3 17530:1 17534:1 17544:17 17548:1 17562:1 17565:1 17569:1 17589:1 17595:5 17598:1 17615:1 17653:1 17664:1 17665:1 17689:5 17706:1 17713:1 17715:1 17716:1 17721:1 17732:1 17739:2 17759:1 17763:1 17769:4 17775:1 17781:2 17802:3 17803:1 17804:1 17810:1 17815:1 17822:1 17824:2 17826:1 17834:1 17837:3 17843:1 17845:1 17847:1 17858:1 17863:1 17873:3 17875:1 17884:1 17886:1 17902:1 17919:1 17931:20 17940:1 17945:1 17956:1 17960:2 17967:1 17977:1 17991:1 17993:1 18039:1 18045:1 18047:1 18076:1 18097:1 18102:1 18121:2 18153:2 18154:1 18158:2 18160:2 18193:3 18198:1 18206:1 18212:1 18315:1 18317:2 18333:1 18342:2 18343:2 18357:2 18378:1 18383:3 18397:1 18403:1 18430:2 18434:1 18445:2 18447:1 18454:1 18460:1 18463:1 18464:1 18486:2 18503:1 18507:1 18509:1 18511:2 18519:3 18524:1 18525:1 18527:15 18534:1 18535:1 18542:3 18544:5 18553:1 18563:2 18566:1 18571:1 18572:1 18573:1 18601:1 18619:1 18636:1 18648:1 18649:3 18692:4 18706:2 18760:2 18762:1 18773:1 18774:1 18777:1 18779:1 18780:2 18781:1 18782:1 18797:2 18800:1 18807:1 18812:3 18816:1 18823:1 18828:1 18840:1 18848:1 18875:1 18879:1 18900:1 18917:3 18920:5 18942:2 18946:1 18967:1 18972:1 18979:1 18996:1 19006:1 19024:1 19025:1 19032:2 19035:1 19039:1 19042:1 19043:1 19056:6 19062:2 19064:1 19082:1 19105:2 19108:1 19110:1 19120:1 19125:1 19127:3 19128:1 19131:1 19132:5 19133:1 19139:2 19141:1 19142:2 19154:1 19174:1 19175:2 19197:1 19201:1 19203:1 19212:1 19219:2 19239:2 19249:2 19275:3 19276:1 19285:2 19296:2 19298:1 19314:1 19325:1 19332:1 19348:1 19384:1 19421:2 19422:1 19433:1 19434:4 19436:2 19438:1 19455:3 19456:1 19459:1 19467:1 19490:2 19500:1 19535:2 19548:1 19558:2 19568:1 19575:1 19600:5 19621:1 19624:2 19630:1 19632:2 19636:2 19638:1 19644:1 19648:1 19656:1 19665:1 19677:1 19681:1 19683:2 19685:1 19696:1 19709:1 19714:1 19725:1 19740:2 19743:1 19744:1 19748:2 19758:1 19759:1 19763:1 19765:5 19787:2 19798:1 19801:1 19817:3 19822:1 19831:1 19832:1 19842:1 19843:1 19858:1 19869:3 19877:1 19885:1 19887:1 19888:1 19898:1 19899:2 19906:1 19908:1 19909:1 19916:1 19919:2 19921:1 19923:1 19932:1 19937:1 19938:4 19942:2 19946:1 19958:2 19960:1 19969:1 19970:2 19991:2 19998:1 19999:5 20011:1 20025:2 20038:1 20039:1 20052:1 20059:2 20062:1 20063:1 20086:2 20119:1 20124:1 20132:1 20152:1 20160:2 20166:1 20172:1 20173:1 20186:3 20199:3 20203:1 20204:2 20210:1 20239:1 20240:1 20252:1 20262:1 20268:1 20272:1 20282:1 20287:1 20289:1 20297:7 20301:1 20307:1 20309:1 20313:1 20320:1 20333:3 20334:2 20361:1 20374:1 20390:1 20399:1 20400:1 20409:1 20413:1 20421:1 20427:1 20438:1 20455:1 20461:1 20482:1 20485:1 20508:2 20514:1 20526:1 20527:1 20541:1 20542:1 20545:1 20547:1 20554:1 20565:1 20572:1 20577:1 20606:1 20617:1 20640:2 20642:1 20652:1 20695:2 20703:1 20707:1 20713:1 20717:1 20742:3 20750:2 20754:1 20770:1 20773:1 20775:1 20802:1 20818:3 20827:1 20835:3 20837:2 20840:1 20841:1 20868:1 20870:3 20888:4 20891:1 20893:1 20894:1 20910:1 20927:1 20929:1 20941:1 20963:1 20975:1 20991:1 21000:2 21004:1 21006:1 21013:1 21066:2 21070:1 21075:1 21077:2 21081:1 21109:1 21116:1 21123:1 21132:1 21151:3 21154:1 21182:1 21194:1 21215:1 21222:1 21232:1 21235:1 21296:1 21303:1 21311:2 21341:1 21344:3 21346:1 21392:1 21397:1 21400:1 21416:2 21432:2 21441:1 21451:2 21481:1 21483:1 21494:1 21504:2 21519:1 21526:1 21529:1 21537:2 21571:1 21578:1 21582:3 21599:1 21605:1 21621:1 21631:2 21642:2 21645:1 21689:2 21694:1 21719:1 21751:1 21752:2 21762:2 21765:1 21767:1 21768:1 21769:3 21770:2 21772:1 21778:1 21779:1 21784:4 21795:2 21796:1 21801:2 21812:4 21846:1 21858:1 21859:1 21868:8 21869:3 21872:1 21877:3 21905:2 21915:1 21925:3 21926:2 21958:1 21961:1 21962:1 21963:1 21993:1 22027:1 22032:1 22036:1 22058:1 22063:1 22065:1 22082:1 22089:1 22090:2 22099:1 22105:2 22131:1 22143:1 22188:1 22197:2 22202:1 22220:1 22240:2 22253:1 22264:1 22284:1 22295:9 22343:1 22344:1 22346:1 22363:1 22370:1 22377:2 22397:1 22410:1 22426:1 22446:1 22459:1 22460:2 22461:5 22477:1 22491:5 22506:1 22557:2 22558:1 22564:1 22598:1 22600:1 22654:2 22672:2 22676:1 22689:1 22691:1 22697:1 22702:2 22706:3 22707:2 22723:1 22742:2 22745:1 22757:1 22759:2 22765:1 22787:1 22794:1 22795:2 22796:3 22797:1 22801:2 22819:2 22821:1 22848:1 22862:1 22876:2 22891:2 22907:1 22919:1 22922:1 22941:1 22944:3 22955:1 22969:1 22976:6 22977:5 22993:2 23011:1 23013:1 23016:1 23023:1 23026:1 23031:2 23035:1 23037:2 23038:1 23083:1 23088:1 23106:2 23111:1 23135:1 23147:1 23162:2 23164:1 23173:1 23179:1 23180:2 23203:1 23209:1 23238:1 23244:1 23246:1 23256:1 23265:2 23270:1 23283:1 23291:1 23316:1 23334:1 23345:1 23350:4 23376:1 23383:1 23388:1 23389:1 23410:12 23411:2 23418:1 23458:3 23480:2 23484:1 23507:1 23511:1 23520:2 23530:1 23533:1 23538:1 23548:1 23552:3 23566:1 23597:1 23633:1 23643:1 23665:1 23666:2 23691:2 23692:1 23693:1 23698:1 23699:1 23703:2 23734:1 23735:1 23760:1 23787:1 23819:1 23837:1 23853:1 23855:1 23888:1 23905:1 23924:1 23927:1 23937:2 23957:2 23963:1 23968:1 23986:1 23987:1 23990:1 24003:1 24016:1 24017:3 24018:1 24037:1 24042:1 24049:1 24053:1 24064:1 24096:1 24107:1 24108:1 24109:2 24119:4 24120:2 24121:1 24141:2 24148:1 24149:1 24150:4 24162:1 24164:2 24177:2 24179:3 24184:1 24190:2 24212:1 24217:1 24221:6 24230:2 24232:1 24233:1 24237:1 24241:1 24251:2 24271:1 24282:1 24292:2 24295:2 24304:1 24329:1 24332:1 24345:1 24361:1 24366:3 24404:2 24407:1 24412:1 24414:1 24415:1 24419:1 24427:1 24428:1 24432:1 24439:1 24442:1 24443:1 24444:1 24445:1 24455:1 24459:1 24464:2 24469:1 24474:1 24476:1 24479:1 24480:2 24485:1 24486:1 24488:1 24489:1 24492:1 24495:2 24498:1 24502:2 24503:1 24508:2 24511:2 24512:1 24515:1 24538:1 24548:1 24552:1 24588:2 24596:3 24598:1 24615:1 24644:1 24658:1 24664:1 24665:2 24667:1 24684:1 24709:1 24729:1 24745:1 24751:2 24766:1 24767:2 24769:2 24771:1 24775:1 24777:3 24794:2 24805:1 24810:2 24816:1 24818:1 24865:1 24868:1 24875:1 24899:1 24905:2 24917:1 24949:1 24952:1 24962:1 24986:2 25004:1 25022:5 25027:1 25031:1 25036:1 25037:4 25044:1 25054:1 25066:1 25069:1 25075:1 25083:1 25093:1 25096:1 25099:1 25102:1 25110:8 25112:1 25116:1 25117:1 25126:1 25129:1 25137:1 25141:3 25159:2 25164:1 25208:1 25215:1 25245:2 25251:5 25260:1 25276:1 25278:7 25282:1 25284:1 25287:1 25290:1 25296:2 25310:1 25312:1 25316:1 25324:1 25325:1 25327:2 25334:1 25342:1 25348:1 25351:1 25363:5 25364:1 25368:1 25382:1 25388:1 25400:1 25402:1 25410:1 25433:1 25456:2 25457:2 25459:1 25460:2 25462:1 25467:1 25472:1 25477:1 25495:1 25514:1 25515:2 25519:1 25525:1 25527:3 25530:1 25540:4 25542:2 25555:1 25557:1 25571:1 25583:1 25584:1 25591:1 25595:1 25602:1 25603:1 25619:1 25624:1 25647:1 25679:1 25685:1 25699:1 25707:1 25713:1 25717:1 25732:1 25741:1 25746:1 25753:1 25755:1 25758:1 25770:2 25772:1 25777:1 25779:1 25809:1 25811:1 25816:1 25829:1 25851:1 25854:2 25860:2 25880:1 25883:1 25901:3 25912:1 25915:1 25917:1 25956:1 25960:1 25971:1 25987:1 25991:2 25992:2 25993:1 25997:1 26011:1 26027:2 26050:1 26053:1 26059:1 26070:1 26076:2 26091:1 26092:1 26097:1 26098:1 26122:1 26125:2 26128:4 26133:1 26150:1 26163:3 26175:2 26205:2 26209:1 26215:1 26224:1 26226:1 26227:1 26228:1 26231:3 26232:1 26239:3 26241:2 26242:1 26244:2 26246:1 26250:3 26252:1 26264:1 26270:1 26279:4 26299:1 26318:1 26325:1 26330:1 26340:1
7 10:1 21:1 24:1 32:1 38:1 47:1 73:1 83:1 110:1 116:1 155:4 164:5 182:2 193:2 200:1 207:2 215:2 218:2 234:1 248:1 260:1 274:1 276:1 294:2 298:1 310:1 327:2 334:1 345:1 346:1 347:1 360:1 391:1 402:1 407:1 410:1 411:1 429:1 437:1 438:1 441:2 467:1 471:1 475:1 479:1 501:2 508:1 510:4 538:4 553:1 603:6 605:2 613:1 626:1 651:1 667:1 675:1 676:1 714:1 722:1 724:1 726:7 728:1 746:2 750:3 753:1 769:1 781:2 782:3 801:1 807:4 810:1 841:1 842:2 845:3 852:1 854:1 877:1 882:1 890:1 933:1 962:2 971:2 982:3 984:1 1010:1 1013:2 1021:1 1042:1 1052:1 1054:1 1056:1 1068:1 1071:2 1076:1 1081:1 1083:1 1088:1 1094:1 1104:1 1163:1 1168:3 1190:2 1203:1 1211:1 1220:1 1224:1 1235:1 1241:1 1242:1 1245:1 1272:1 1276:2 1279:3 1287:1 1295:1 1345:2 1386:2 1394:2 1396:1 1424:1 1426:1 1436:3 1439:3 1444:1 1449:1 1450:3 1451:3 1466:2 1467:1 1495:1 1502:1 1517:1 1528:1 1538:1 1539:3 1541:2 1547:1 1552:1 1579:1 1581:3 1593:1 1596:1 1605:4 1608:1 1611:1 1628:2 1639:2 1653:2 1656:1 1657:1 1668:1 1672:1 1702:1 1704:1 1705:1 1719:1 1721:1 1731:2 1738:2 1758:1 1788:1 1789:1 1790:1 1796:1 1797:1 1815:4 1827:1 1836:1 1848:5 1858:1 1868:2 1879:3 1884:1 1888:2 1904:1 1914:1 1916:2 1919:1 1924:1 1925:1 1927:2 1930:5 1941:1 1943:1 1952:1 1958:1 1964:1 1967:6 1968:1 1970:2 1973:2 1974:1 1978:4 1980:1 1981:2 1982:2 1986:1 1990:5 1994:1 1997:3 2000:2 2002:3 2004:1 2044:1 2053:1 2057:1 2064:1 2070:1 2078:1 2086:1 2089:1 2091:2 2097:1 2099:1 2116:1 2122:1 2145:1 2155:1 2172:1 2181:1 2200:1 2210:1 2220:1 2222:1 2223:1 2232:1 2237:1 2239:1 2241:1 2247:1 2258:1 2270:1 2273:1 2316:1 2322:1 2338:1 2355:1 2357:1 2364:2 2378:1 2394:3 2398:1 2406:1 2429:1 2431:2 2445:3 2446:1 2450:3 2453:3 2460:7 2466:1 2472:1 2500:1 2502:1 2505:1 2506:1 2508:3 2534:1 2545:5 2568:1 2579:2 2587:1 2590:21 2605:1 2617:1 2619:2 2641:1 2650:1 2667:1 2694:1 2696:1 2711:1 2737:1 2752:2 2760:3 2767:1 2798:1 2843:1 2858:1 2859:2 2868:1 2869:1 2875:1 2893:6 2895:1 2900:1 2915:1 2918:8 2922:1 2948:2 2956:1 2977:1 2982:2 3024:1 3037:1 3038:1 3044:1 3045:1 3046:1 3084:1 3088:1 3091:2 3106:1 3118:1 3123:1 3124:1 3153:1 3155:2 3159:2 3167:1 3169:1 3181:2 3187:1 3189:1 3191:1 3205:1 3210:1 3231:1 3235:3 3236:1 3238:2 3239:1 3253:1 3270:2 3276:1 3290:1 3298:1 3332:1 3343:1 3362:1 3365:2 3375:1 3382:2 3395:1 3413:1 3421:2 3422:1 3432:1 3435:2 3443:1 3450:1 3453:1 3461:2 3467:1 3474:1 3481:1 3504:2 3511:2 3518:1 3529:2 3530:1 3537:1 3575:1 3576:1 3613:1 3617:5 3622:2 3624:1 3661:2 3671:1 3682:1 3683:1 3688:1 3698:3 3706:3 3711:2 3712:2 3715:1 3732:1 3733:1 3746:1 3752:1 3763:1 3782:1 3789:1 3791:2 3793:1 3795:1 3805:2 3817:2 3832:1 3843:2 3848:1 3851:1 3869:1 3891:1 3896:1 3897:2 3899:1 3908:1 3916:1 3922:1 3930:1 3942:1 3944:1 3957:1 3997:5 4004:1 4011:1 4021:1 4022:1 4028:1 4035:1 4036:1 4079:1 4082:1 4096:2 4097:2 4098:1 4113:2 4120:1 4123:3 4130:1 4136:1 4137:2 4140:1 4148:1 4193:1 4199:1 4204:1 4213:1 4215:1 4247:1 4250:1 4253:1 4284:3 4292:1 4296:1 4305:26 4308:1 4323:1 4339:1 4342:1 4373:1 4376:1 4395:1 4405:1 4414:3 4429:3 4430:7 4433:2 4436:2 4437:2 4441:1 4443:2 4449:2 4455:1 4456:2 4457:2 4458:1 4459:1 4484:5 4513:1 4528:2 4533:1 4536:1 4564:2 4573:1 4597:1 4602:5 4625:2 4652:1 4674:1 4702:1 4703:1 4709:1 4719:1 4726:1 4733:1 4735:1 4739:1 4742:1 4744:1 4756:1 4765:1 4766:1 4784:1 4803:1 4812:1 4880:1 4881:1 4888:2 4897:1 4919:1 4922:1 4925:2 4946:1 4953:1 4970:3 4979:1 5006:1 5007:2 5010:1 5020:1 5046:1 5052:1 5053:1 5065:1 5068:2 5071:1 5081:2 5126:2 5137:1 5145:1 5193:1 5203:1 5220:2 5225:1 5267:1 5275:1 5306:1 5319:2 5322:2 5351:1 5379:1 5395:1 5407:1 5408:1 5412:1 5424:1 5427:1 5441:6 5452:1 5455:1 5470:1 5471:1 5478:1 5499:1 5507:1 5516:2 5542:8 5566:5 5581:5 5585:1 5586:1 5600:2 5617:4 5618:1 5625:6 5627:3 5631:2 5632:1 5636:2 5637:1 5638:2 5640:2 5645:2 5647:2 5661:1 5673:1 5732:1 5756:1 5767:2 5769:1 5782:1 5797:1 5800:1 5810:1 5813:2 5818:1 5844:1 5847:3 5866:1 5886:1 5890:1 5901:1 5911:1 5918:5 5974:1 5987:2 5990:4 6009:4 6010:3 6043:1 6098:2 6102:1 6105:2 6106:1 6108:1 6111:1 6117:2 6135:1 6138:1 6152:1 6167:1 6170:1 6178:1 6182:1 6186:1 6187:1 6188:1 6230:1 6246:3 6273:1 6282:2 6284:1 6320:2 6322:2 6326:2 6328:1 6330:1 6336:1 6338:2 6345:1 6356:1 6381:1 6384:1 6385:1 6413:1 6431:1 6459:1 6460:1 6478:1 6490:1 6502:1 6514:3 6515:1 6519:1 6529:1 6544:1 6552:2 6553:1 6561:1 6564:1 6571:1 6589:4 6603:1 6614:1 6621:1 6624:4 6632:1 6633:1 6638:1 6649:1 6653:1 6680:1 6702:2 6712:1 6723:3 6729:1 6740:6 6741:5 6761:3 6789:1 6790:1 6793:1 6803:32 6812:1 6822:1 6824:20 6851:1 6872:1 6891:2 6957:1 6963:1 6974:1 6979:1 6986:4 6990:1 6996:1 6997:1 7001:1 7004:1 7010:1 7025:1 7036:1 7072:1 7074:1 7083:2 7093:1 7104:1 7126:1 7129:1 7151:4 7152:2 7157:1 7180:3 7194:1 7201:2 7205:1 7219:20 7246:2 7254:1 7264:1 7274:3 7297:1 7303:1 7305:1 7306:1 7307:1 7315:3 7337:1 7341:1 7348:1 7358:1 7363:4 7379:2 7382:2 7391:1 7399:1 7416:2 7420:1 7432:1 7436:1 7438:1 7439:1 7447:1 7449:1 7462:3 7473:2 7499:1 7503:2 7534:1 7536:1 7538:2 7539:2 7542:1 7549:2 7564:1 7565:1 7570:1 7589:2 7610:3 7611:7 7628:2 7644:1 7651:1 7670:1 7673:1 7683:1 7688:1 7697:2 7699:1 7700:2 7714:1 7725:1 7737:1 7741:1 7743:1 7767:1 7790:2 7791:2 7795:1 7804:1 7806:1 7807:2 7815:2 7835:3 7837:3 7855:1 7872:1 7910:1 7923:1 7937:2 7948:1 7960:1 7966:2 7983:1 7988:1 8021:2 8028:6 8033:1 8071:1 8073:1 8079:1 8090:2 8104:1 8140:1 8151:1 8158:2 8167:1 8169:1 8170:1 8175:1 8178:1 8179:2 8180:1 8201:1 8203:1 8219:1 8232:3 8237:1 8253:1 8275:1 8277:1 8296:1 8309:1 8322:2 8326:1 8328:1 8340:2 8342:1 8355:1 8372:1 8377:2 8378:1 8383:1 8411:2 8432:3 8440:1 8447:1 8455:2 8469:2 8476:1 8483:4 8489:1 8498:2 8499:3 8510:4 8532:1 8534:1 8550:3 8561:1 8563:1 8601:3 8616:1 8619:1 8624:1 8628:1 8631:1 8643:1 8657:1 8659:1 8660:3 8664:1 8678:1 8687:1 8727:2 8730:1 8740:1 8747:1 8748:1 8752:1 8755:2 8759:1 8769:1 8785:1 8824:1 8825:1 8828:1 8839:2 8867:1 8872:1 8877:1 8882:1 8892:1 8902:1 8909:4 8911:1 8914:1 8917:2 8929:2 8944:1 8946:1 8956:3 8959:2 8964:1 8965:2 8970:1 8973:1 8989:1 8993:1 8996:1 9029:1 9033:2 9044:2 9054:1 9056:2 9058:1 9061:1 9070:1 9075:1 9085:1 9110:3 9113:2 9117:1 9126:1 9163:1 9167:1 9209:1 9216:1 9220:3 9255:2 9264:1 9282:1 9285:1 9288:1 9292:1 9293:2 9312:2 9318:1 9322:1 9337:1 9344:1 9353:1 9362:1 9374:3 9376:1 9387:1 9419:1 9431:1 9464:1 9466:1 9473:4 9489:1 9490:1 9496:1 9506:1 9524:1 9529:1 9532:1 9534:1 9535:1 9539:1 9606:1 9611:1 9623:2 9627:1 9644:1 9645:1 9660:1 9661:1 9664:1 9697:2 9702:2 9708:1 9709:2 9712:7 9718:1 9736:1 9747:1 9754:1 9778:1 9791:1 9798:1 9803:2 9808:1 9831:1 9835:1 9837:1 9847:1 9870:1 9872:1 9894:1 9900:1 9912:1 9943:1 9946:1 9965:1 9968:3 9992:1 9995:1 9997:1 10003:2 10019:1 10040:1 10062:1 10066:1 10082:2 10084:1 10087:1 10093:2 10098:2 10103:1 10109:1 10132:1 10133:5 10143:1 10166:1 10182:1 10187:1 10192:1 10195:1 10204:1 10207:2 10213:1 10221:1 10233:1 10239:1 10249:3 10251:1 10274:2 10278:1 10318:4 10320:3 10338:1 10341:2 10350:1 10360:2 10362:2 10366:1 10367:1 10368:2 10370:1 10377:3 10379:4 10381:2 10382:1 10383:4 10384:1 10387:4 10388:3 10401:3 10407:1 10411:1 10427:1 10428:1 10429:2 10441:2 10442:1 10453:1 10460:1 10464:3 10469:1 10481:1 10487:1 10502:1 10513:1 10514:1 10518:5 10523:1 10530:1 10570:1 10572:1 10592:1 10597:1 10605:1 10639:3 10665:2 10676:1 10681:5 10684:1 10694:5 10704:1 10716:1 10729:1 10745:1 10756:1 10764:1 10774:1 10782:1 10783:1 10785:1 10788:2 10800:1 10801:1 10813:1 10820:1 10838:1 10865:1 10875:2 10883:1 10894:1 10900:1 10941:1 10942:1 10953:1 10963:1 10974:1 10986:1 11003:1 11009:1 11011:1 11063:1 11086:1 11087:2 11093:1 11105:2 11112:1 11115:1 11116:2 11126:1 11134:1 11145:1 11169:1 11170:2 11174:1 11203:2 11217:1 11220:1 11228:1 11233:1 11239:1 11261:7 11278:1 11283:1 11294:1 11300:1 11305:2 11307:2 11312:1 11314:1 11316:1 11317:1 11332:1 11353:2 11358:1 11362:2 11370:1 11373:2 11376:1 11383:1 11396:2 11398:1 11403:1 11414:1 11426:1 11427:2 11431:2 11432:1 11433:1 11445:1 11460:1 11479:1 11491:1 11495:3 11496:1 11506:1 11514:1 11539:2 11569:2 11570:1 11588:1 11616:2 11621:2 11632:5 11663:1 11672:1 11694:1 11702:1 11704:1 11714:1 11733:1 11761:1 11767:2 11778:3 11779:2 11790:3 11797:1 11805:2 11813:1 11832:1 11848:1 11865:6 11894:1 11917:1 11918:2 11935:1 11938:1 11970:1 11975:2 11988:1 11992:4 11998:1 12000:3 12018:3 12029:1 12069:1 12073:2 12087:1 12089:2 12095:1 12096:3 12097:1 12098:1 12099:1 12112:2 12114:1 12117:1 12120:1 12122:2 12167:1 12170:2 12182:1 12193:4 12199:3 12217:2 12219:2 12225:1 12238:3 12239:2 12244:1 12275:1 12277:2 12279:1 12281:1 12285:2 12293:1 12309:1 12318:1 12338:1 12351:1 12354:1 12364:2 12381:1 12390:1 12394:1 12405:1 12409:1 12410:1 12423:2 12426:1 12456:1 12459:1 12468:2 12481:2 12488:2 12495:1 12501:1 12504:1 12528:1 12530:1 12542:1 12545:1 12550:2 12556:2 12563:1 12568:1 12584:1 12586:1 12607:1 12617:1 12625:1 12642:1 12657:1 12672:2 12673:1 12681:2 12686:1 12693:2 12695:2 12697:3 12704:1 12706:1 12707:1 12712:1 12722:1 12734:1 12789:1 12794:1 12816:1 12817:1 12826:1 12827:3 12831:1 12837:1 12840:3 12844:1 12845:1 12846:2 12853:2 12873:1 12889:1 12897:1 12908:2 12919:1 12920:1 12933:1 12936:1 12947:1 12951:1 12958:1 12962:1 12980:1 12987:1 12994:1 12996:1 13003:1 13008:1 13020:1 13021:2 13027:1 13049:1 13053:2 13059:1 13072:1 13086:1 13093:1 13098:1 13101:1 13102:1 13116:1 13120:1 13132:1 13147:1 13165:1 13182:1 13200:1 13219:2 13227:1 13232:1 13234:3 13242:1 13257:2 13258:1 13261:1 13303:1 13316:1 13319:1 13349:1 13379:1 13396:1 13402:1 13414:1 13421:1 13426:1 13428:1 13440:1 13452:2 13453:1 13466:1 13473:1 13481:1 13488:1 13505:3 13507:1 13532:1 13545:1 13549:1 13551:1 13577:1 13598:3 13615:1 13624:1 13625:1 13626:6 13637:2 13647:1 13663:1 13673:2 13686:3 13687:2 13700:2 13704:1 13726:3 13733:1 13734:7 13740:3 13744:1 13764:1 13772:1 13775:5 13804:1 13810:1 13821:1 13831:1 13833:1 13840:1 13865:2 13869:1 13870:1 13872:1 13875:1 13876:2 13877:1 13886:2 13895:1 13897:2 13898:1 13899:5 13900:2 13909:1 13910:1 13916:1 13932:1 13949:1 13952:2 13953:1 13962:1 13964:1 13972:1 13988:1 13991:1 14014:2 14040:1 14047:1 14062:1 14069:1 14084:1 14108:1 14143:6 14146:1 14149:1 14168:1 14169:1 14174:1 14179:1 14183:1 14193:1 14216:2 14219:1 14226:1 14227:1 14275:1 14276:2 14284:4 14293:3 14313:1 14324:1 14327:1 14358:1 14360:1 14367:1 14369:1 14373:2 14374:1 14386:1 14387:3 14389:3 14390:1 14393:1 14394:4 14398:2 14399:1 14412:1 14433:1 14471:1 14477:1 14480:1 14481:1 14488:1 14490:1 14515:1 14516:1 14524:1 14526:1 14548:1 14554:1 14559:1 14571:1 14578:2 14580:3 14596:3 14608:2 14609:1 14617:2 14621:1 14634:1 14649:2 14652:2 14654:1 14657:1 14679:2 14688:1 14694:1 14695:3 14696:1 14700:2 14704:2 14718:1 14720:1 14745:1 14747:1 14782:1 14783:1 14786:1 14794:5 14804:1 14814:1 14823:19 14841:1 14859:1 14864:2 14869:1 14893:2 14895:2 14908:3 14913:1 14926:1 14967:1 14976:1 15005:1 15006:1 15029:1 15036:1 15043:1 15047:1 15054:1 15057:1 15064:1 15068:1 15069:3 15083:1 15109:1 15117:1 15119:1 15153:3 15156:1 15161:1 15169:1 15176:1 15178:3 15196:2 15211:1 15212:1 15224:1 15242:1 15254:1 15265:1 15266:1 15267:1 15276:4 15285:1 15291:1 15297:2 15302:2 15337:1 15362:1 15365:2 15380:2 15386:1 15388:1 15401:2 15406:2 15409:2 15415:1 15417:1 15419:1 15420:1 15421:1 15432:1 15440:1 15441:1 15448:1 15454:1 15455:1 15458:1 15476:2 15505:1 15546:1 15550:1 15556:1 15565:1 15570:1 15583:1 15607:1 15642:1 15644:1 15683:2 15699:1 15723:1 15733:2 15738:1 15741:1 15746:1 15748:2 15749:1 15753:1 15788:1 15793:1 15795:1 15799:3 15828:1 15833:1 15842:1 15860:2 15870:3 15901:1 15914:2 15920:1 15934:3 15942:1 15949:1 15967:2 15975:1 15979:1 15988:1 15989:1 16002:1 16003:1 16017:1 16029:2 16037:2 16046:1 16060:1 16068:1 16079:1 16084:1 16112:1 16113:2 16117:1 16161:1 16162:1 16172:1 16176:1 16190:1 16208:1 16211:1 16216:7 16225:1 16247:1 16255:1 16265:1 16266:1 16301:9 16309:3 16319:3 16326:1 16336:1 16360:1 16374:1 16381:1 16388:3 16390:2 16409:1 16419:1 16442:1 16444:1 16446:1 16457:1 16472:1 16481:1 16496:1 16498:2 16508:2256 16509:1 16512:1 16545:2 16559:3 16567:1 16600:1 16603:1 16604:1 16609:1 16647:3 16650:1 16670:1 16678:2 16693:1 16694:1 16703:1 16713:1 16719:1 16722:2 16735:3 16738:1 16767:2 16787:3 16793:1 16796:1 16817:1 16827:1 16834:2 16871:1 16894:3 16904:1 16910:2 16914:1 16932:1 16936:1 16942:1 16951:1 16959:1 16961:1 16974:1 16987:1 16993:1 16996:1 16997:1 17002:2 17008:2 17009:1 17017:1 17024:1 17035:1 17042:1 17054:2 17065:1 17077:1 17087:4 17092:1 17095:1 17110:1 17123:2 17125:1 17145:1 17151:1 17153:1 17157:1 17163:1 17165:1 17188:6 17192:1 17195:3 17202:1 17220:2 17223:1 17236:3 17256:1 17288:1 17293:1 17295:2 17296:1 17300:1 17327:2 17337:2 17355:3 17358:1 17359:1 17373:1 17385:1 17402:1 17409:1 17424:1 17430:1 17437:2 17454:1 17464:2 17468:1 17480:1 17494:2 17495:1 17500:1 17511:1 17512:1 17514:1 17516:1 17528:3 17530:1 17534:1 17544:18 17548:1 17562:1 17565:1 17569:1 17582:1 17589:1 17595:5 17598:1 17615:1 17653:1 17664:1 17665:1 17689:5 17706:1 17713:1 17715:1 17716:1 17721:1 17732:1 17739:2 17759:1 17763:1 17769:4 17775:1 17781:2 17802:3 17803:1 17804:1 17810:1 17815:1 17822:1 17824:2 17826:1 17834:1 17837:3 17843:1 17845:1 17847:1 17858:1 17863:1 17873:3 17875:1 17884:1 17886:1 17902:1 17919:1 17931:21 17940:1 17945:1 17956:1 17960:2 17967:1 17977:1 17991:1 17993:1 18039:1 18045:1 18047:1 18076:1 18097:1 18102:1 18121:2 18153:2 18154:1 18158:2 18160:2 18184:1 18193:3 18198:1 18206:1 18212:1 18315:1 18317:2 18333:1 18342:2 18343:2 18357:2 18378:1 18383:3 18397:1 18403:1 18430:2 18434:1 18445:2 18447:1 18454:1 18460:1 18463:1 18464:1 18486:2 18503:1 18507:1 18509:1 18511:2 18519:3 18524:1 18525:1 18527:16 18534:1 18535:1 18542:3 18544:5 18553:1 18563:2 18566:1 18571:1 18572:1 18573:1 18601:1 18619:1 18636:1 18648:1 18649:3 18692:4 18706:2 18760:2 18762:1 18773:1 18774:1 18777:1 18779:1 18780:2 18781:1 18782:1 18797:2 18800:1 18807:1 18812:3 18816:1 18823:1 18828:1 18840:1 18848:1 18875:1 18879:1 18900:1 18917:3 18920:6 18942:2 18946:1 18967:1 18972:1 18979:1 18996:1 19006:1 19024:1 19025:1 19032:2 19035:1 19039:1 19042:1 19043:1 19056:6 19062:2 19064:1 19070:1 19071:1 19082:1 19105:2 19108:1 19110:1 19120:1 19125:1 19127:3 19128:1 19131:1 19132:5 19133:1 19139:2 19141:1 19142:2 19154:1 19174:1 19175:2 19197:1 19201:1 19203:1 19212:1 19219:2 19239:2 19249:2 19275:3 19276:1 19285:2 19296:2 19298:1 19314:1 19325:1 19332:1 19348:1 19384:1 19421:2 19422:1 19433:1 19434:4 19436:2 19438:1 19455:3 19456:1 19459:1 19467:1 19490:2 19500:1 19535:2 19548:1 19558:2 19568:1 19575:1 19600:5 19621:1 19624:2 19630:1 19632:2 19636:2 19638:1 19644:1 19648:1 19656:1 19665:1 19677:1 19681:1 19683:2 19685:1 19696:1 19709:1 19714:1 19725:1 19740:2 19743:1 19744:1 19748:2 19758:1 19759:1 19763:1 19765:5 19787:2 19798:1 19801:1 19817:3 19822:1 19831:1 19832:1 19833:1 19842:1 19843:1 19858:1 19869:3 19877:1 19885:1 19887:1 19888:1 19898:1 19899:2 19906:1 19908:1 19909:1 19916:1 19919:2 19921:1 19923:1 19932:1 19937:1 19938:4 19942:2 19946:1 19958:2 19960:1 19969:1 19970:2 19991:2 19998:1 19999:5 20011:1 20025:2 20038:1 20039:1 20052:1 20059:2 20062:1 20063:1 20086:2 20119:1 20124:1 20132:1 20152:1 20160:2 20166:3 20172:1 20173:1 20186:3 20199:3 20203:1 20204:2 20210:1 20239:1 20240:1 20252:1 20262:1 20268:1 20272:1 20282:1 20287:1 20289:1 20297:8 20301:1 20307:1 20309:1 20312:1 20313:1 20320:2 20333:3 20334:2 20361:1 20374:1 20390:1 20399:1 20400:2 20409:1 20413:1 20421:1 20427:1 20438:1 20455:1 20461:1 20482:1 20485:2 20508:2 20514:1 20526:1 20527:1 20541:1 20542:1 20545:1 20547:1 20554:1 20565:1 20572:1 20577:1 20606:1 20617:1 20640:2 20642:1 20652:1 20695:2 20703:1 20707:1 20713:1 20717:1 20742:3 20750:2 20754:1 20770:1 20773:1 20775:1 20802:1 20818:3 20827:1 20835:3 20837:2 20840:1 20841:1 20868:1 20870:3 20888:4 20891:1 20893:1 20894:1 20910:1 20927:1 20929:1 20941:1 20963:1 20975:1 20991:1 21000:2 21004:1 21006:1 21013:1 21066:2 21070:1 21075:1 21077:2 21081:1 21109:1 21116:1 21123:1 21132:1 21151:3 21154:1 21182:1 21194:1 21211:1 21215:1 21222:1 21232:1 21235:1 21243:1 21296:1 21303:1 21311:2 21341:1 21344:3 21346:1 21392:1 21397:1 21400:1 21416:2 21432:2 21441:1 21451:2 21481:1 21483:1 21494:1 21503:1 21504:2 21519:1 21526:1 21529:1 21537:2 21571:1 21578:1 21582:3 21599:1 21605:1 21621:1 21631:2 21642:2 21645:1 21689:2 21694:1 21719:1 21751:1 21752:2 21757:1 21762:2 21765:1 21767:1 21768:1 21769:3 21770:2 21772:1 21778:1 21779:1 21784:4 21795:2 21796:1 21801:2 21812:4 21846:1 21858:1 21859:1 21868:8 21869:3 21872:1 21877:3 21905:2 21915:1 21925:3 21926:3 21958:1 21961:1 21962:1 21963:1 21993:1 22027:1 22032:1 22036:1 22047:1 22058:1 22063:1 22065:1 22082:1 22089:1 22090:2 22099:1 22105:2 22131:1 22143:1 22188:1 22197:2 22202:1 22220:1 22226:1 22239:1 22240:2 22253:1 22264:1 22284:1 22295:9 22343:1 22344:1 22346:1 22363:1 22370:1 22375:2 22377:2 22397:1 22410:1 22426:1 22446:1 22459:1 22460:2 22461:5 22477:1 22491:5 22506:1 22557:2 22558:1 22564:1 22598:1 22600:1 22654:2 22672:2 22676:1 22689:1 22691:1 22697:1 22702:2 22706:3 22707:2 22723:1 22742:2 22745:1 22757:1 22759:2 22765:1 22787:1 22794:1 22795:2 22796:3 22797:1 22801:2 22819:2 22821:1 22848:1 22862:1 22876:2 22891:2 22907:1 22910:1 22919:1 22922:1 22941:1 22944:3 22955:1 22969:1 22976:6 22977:5 22993:2 23011:1 23013:1 23016:1 23023:1 23026:1 23031:2 23035:1 23037:2 23038:1 23083:1 23088:1 23106:2 23111:1 23135:1 23147:1 23162:2 23164:1 23173:1 23179:1 23180:2 23203:1 23209:1 23238:1 23244:1 23246:1 23256:1 23265:2 23270:1 23283:1 23291:1 23316:1 23334:1 23345:1 23350:4 23376:1 23383:1 23388:1 23389:1 23410:12 23411:2 23418:1 23437:1 23458:3 23480:2 23484:1 23507:1 23511:1 23520:2 23530:1 23533:1 23538:1 23548:1 23552:3 23566:1 23597:1 23633:1 23643:1 23665:1 23666:2 23691:2 23692:1 23693:1 23698:1 23699:1 23703:2 23734:1 23735:1 23760:1 23763:1 23787:1 23796:1 23819:1 23837:1 23853:1 23855:1 23888:1 23905:1 23924:1 23927:1 23937:2 23957:2 23963:1 23968:1 23986:1 23987:1 23990:1 24003:1 24016:1 24017:3 24018:1 24037:1 24042:1 24049:1 24053:1 24064:1 24084:1 24096:1 24107:1 24108:1 24109:2 24119:4 24120:2 24121:1 24141:2 24148:1 24149:1 24150:5 24162:1 24164:2 24177:2 24179:3 24184:1 24190:2 24212:2 24217:1 24221:6 24230:2 24232:1 24233:1 24237:1 24241:1 24251:2 24271:1 24282:1 24292:2 24295:2 24304:1 24329:1 24332:1 24345:1 24361:1 24366:3 24404:2 24407:1 24412:1 24414:1 24415:1 24419:1 24427:1 24428:1 24432:1 24439:1 24442:1 24443:1 24444:1 24445:1 24455:1 24459:1 24464:2 24469:1 24474:1 24476:1 24479:1 24480:2 24485:1 24486:1 24488:1 24489:1 24492:1 24495:2 24498:1 24502:2 24503:1 24508:2 24511:2 24512:1 24515:1 24538:1 24548:1 24552:1 24588:2 24596:3 24598:1 24615:1 24644:1 24658:1 24664:1 24665:2 24667:1 24684:1 24709:1 24729:1 24745:1 24751:2 24766:1 24767:2 24769:2 24771:1 24775:1 24777:3 24794:2 24805:1 24810:2 24816:1 24818:1 24865:1 24868:1 24875:1 24899:1 24905:2 24917:1 24949:1 24952:1 24962:1 24986:2 25004:1 25022:5 25027:1 25031:1 25036:1 25037:4 25044:1 25054:1 25066:1 25069:1 25075:1 25083:1 25093:1 25096:1 25099:1 25102:1 25110:8 25112:1 25116:1 25117:1 25126:1 25129:1 25137:1 25141:3 25159:2 25164:1 25208:1 25215:1 25219:1 25245:2 25251:5 25260:1 25276:1 25278:7 25282:1 25284:1 25287:1 25290:1 25296:2 25310:1 25312:1 25316:1 25324:1 25325:1 25327:2 25334:1 25342:1 25348:1 25351:1 25363:5 25364:1 25368:1 25382:1 25388:1 25400:1 25402:1 25410:1 25433:1 25456:2 25457:2 25459:1 25460:2 25462:1 25467:1 25472:1 25477:1 25495:1 25514:1 25515:2 25519:1 25525:1 25527:3 25528:1 25530:1 25540:4 25542:2 25555:1 25557:1 25571:1 25583:1 25584:1 25591:1 25595:1 25602:1 25603:1 25619:1 25624:1 25647:1 25679:1 25685:1 25699:1 25707:1 25713:1 25717:1 25732:1 25741:1 25746:1 25753:1 25755:1 25758:1 25770:2 25772:1 25777:1 25779:1 25809:1 25811:1 25816:1 25829:1 25851:1 25854:2 25860:2 25880:1 25883:1 25901:3 25912:1 25915:1 25917:1 25956:1 25960:1 25968:1 25971:1 25987:1 25991:2 25992:2 25993:1 25997:1 26011:1 26027:2 26050:1 26053:1 26059:1 26070:1 26076:2 26091:1 26092:2 26097:1 26098:1 26122:1 26125:2 26128:4 26130:1 26133:1 26150:1 26163:4 26175:2 26205:2 26209:1 26215:1 26224:1 26226:1 26227:1 26228:1 26231:3 26232:1 26239:3 26241:2 26242:1 26244:2 26246:1 26247:1 26250:3 26252:1 26264:1 26270:1 26279:4 26299:1 26318:1 26325:1 26330:1 26340:1
7 10:1 21:1 24:1 32:1 38:1 47:1 73:1 83:1 110:1 116:1 155:4 164:5 182:2 193:2 200:1 207:2 215:2 218:2 234:1 248:1 260:1 274:1 276:1 294:2 298:1 310:1 327:2 334:1 340:1 345:1 346:1 347:1 360:1 391:1 402:1 407:1 410:1 411:1 429:1 437:1 438:1 441:2 467:1 471:1 475:1 479:1 501:2 508:1 510:4 532:2 538:5 553:1 603:6 605:2 613:1 626:1 651:1 667:1 675:1 676:1 714:1 722:1 724:1 726:7 728:1 746:2 750:3 753:1 769:1 781:2 782:3 801:1 807:4 810:1 841:2 842:2 845:3 852:1 854:1 877:1 882:1 890:1 933:1 945:1 962:2 971:2 982:3 984:2 1010:1 1013:2 1021:1 1042:1 1052:1 1054:1 1056:1 1068:1 1071:2 1076:1 1081:1 1083:1 1088:1 1094:1 1104:1 1163:1 1168:3 1190:2 1203:1 1211:1 1220:1 1224:1 1235:1 1241:1 1242:1 1245:2 1272:1 1276:2 1279:3 1287:1 1295:1 1345:2 1386:2 1394:2 1396:1 1424:1 1426:1 1436:3 1439:3 1444:1 1449:1 1450:3 1451:3 1466:2 1467:1 1495:1 1502:1 1517:1 1528:1 1538:1 1539:3 1541:2 1547:1 1552:1 1579:1 1581:3 1593:1 1596:1 1605:4 1608:1 1611:1 1628:2 1639:2 1653:2 1656:1 1657:1 1668:1 1672:1 1702:1 1704:1 1705:1 1719:1 1721:1 1731:2 1738:2 1758:1 1788:1 1789:1 1790:1 1796:1 1797:1 1815:4 1827:1 1836:1 1848:5 1858:1 1868:2 1879:3 1884:1 1888:2 1904:1 1914:1 1916:2 1919:1 1924:1 1925:1 1927:2 1930:5 1941:1 1943:1 1952:1 1958:1 1964:1 1967:6 1968:1 1970:2 1973:2 1974:1 1978:4 1980:1 1981:2 1982:2 1986:1 1990:5 1994:1 1997:3 2000:2 2002:4 2004:1 2044:1 2053:1 2057:1 2064:1 2070:1 2078:1 2086:1 2089:1 2091:2 2097:1 2099:1 2116:1 2122:1 2145:1 2155:1 2172:1 2181:1 2200:1 2210:1 2220:1 2222:1 2223:1 2232:1 2237:1 2239:1 2241:1 2247:1 2258:1 2270:1 2273:1 2316:1 2322:1 2338:1 2355:1 2357:1 2359:1 2364:2 2378:1 2394:3 2398:1 2406:1 2429:1 2431:2 2445:3 2446:1 2450:3 2453:3 2460:7 2466:1 2472:1 2500:1 2502:1 2505:1 2506:1 2508:3 2534:1 2545:5 2568:1 2579:2 2587:1 2590:21 2605:1 2617:1 2619:2 2641:1 2650:1 2667:1 2694:1 2696:1 2711:1 2737:1 2752:2 2760:3 2767:1 2798:1 2843:1 2858:1 2859:2 2868:1 2869:1 2875:1 2893:6 2895:1 2900:1 2915:1 2918:8 2922:1 2948:2 2956:1 2977:1 2982:2 3024:1 3037:1 3038:1 3044:1 3045:1 3046:1 3084:1 3088:1 3091:2 3095:1 3106:1 3118:1 3123:1 3124:1 3153:1 3155:2 3159:2 3167:1 3169:1 3181:2 3187:1 3189:1 3191:1 3205:1 3210:1 3231:1 3235:3 3236:1 3238:2 3239:1 3253:1 3270:2 3276:1 3290:1 3298:1 3332:1 3343:1 3362:1 3365:2 3375:1 3382:2 3395:1 3413:1 3421:2 3422:1 3432:1 3435:2 3443:1 3450:1 3453:1 3461:2 3467:1 3474:1 3481:1 3504:2 3511:2 3518:1 3529:2 3530:1 3537:1 3575:1 3576:1 3613:1 3617:5 3622:2 3624:1 3661:2 3671:1 3682:1 3683:1 3688:1 3698:3 3706:3 3711:2 3712:2 3715:1 3732:1 3733:1 3746:1 3752:1 3763:1 3782:1 3789:1 3791:2 3793:1 3795:1 3805:2 3817:2 3832:1 3843:2 3848:1 3851:1 3869:1 3891:1 3896:1 3897:2 3899:1 3908:1 3916:1 3922:1 3930:1 3942:1 3944:1 3957:1 3997:5 4004:1 4011:1 4021:1 4022:1 4028:1 4035:1 4036:1 4079:1 4082:1 4096:2 4097:2 4098:1 4113:2 4120:1 4123:3 4130:1 4136:1 4137:2 4140:1 4148:1 4193:1 4199:1 4204:1 4213:1 4215:1 4247:1 4250:1 4253:1 4284:3 4292:1 4296:1 4305:26 4308:1 4323:1 4339:1 4342:1 4373:1 4376:1 4395:1 4405:1 4414:3 4429:3 4430:7 4433:2 4436:2 4437:2 4441:1 4443:2 4449:2 4455:1 4456:2 4457:2 4458:1 4459:1 4484:5 4513:1 4528:2 4533:1 4536:1 4564:3 4573:1 4597:1 4602:5 4625:2 4652:1 4674:1 4702:1 4703:1 4709:1 4719:1 4726:1 4733:1 4735:1 4739:1 4742:1 4744:1 4756:1 4765:1 4766:1 4784:1 4803:1 4812:1 4880:1 4881:1 4888:2 4897:1 4919:1 4922:1 4925:2 4946:1 4953:1 4970:3 4979:1 5006:1 5007:2 5010:1 5020:1 5046:1 5052:1 5053:1 5065:1 5068:2 5071:1 5081:2 5126:2 5137:1 5145:1 5193:1 5203:1 5220:2 5225:1 5267:1 5275:1 5306:1 5319:2 5322:2 5351:1 5379:1 5395:1 5407:1 5408:1 5412:1 5424:1 5427:1 5441:6 5452:1 5455:1 5470:1 5471:1 5478:1 5499:1 5507:1 5516:2 5542:8 5566:5 5581:5 5585:1 5586:1 5600:2 5617:4 5618:1 5625:6 5627:3 5631:2 5632:1 5636:2 5637:1 5638:2 5640:2 5645:2 5647:2 5661:1 5673:1 5732:1 5756:1 5767:2 5769:1 5782:1 5797:1 5800:1 5810:1 5813:2 5818:1 5844:1 5847:3 5866:1 5886:1 5890:1 5901:1 5911:1 5918:5 5974:1 5987:2 5990:4 6009:4 6010:3 6043:1 6098:2 6102:1 6105:2 6106:1 6108:1 6111:1 6117:2 6135:1 6138:1 6152:1 6167:1 6170:1 6178:1 6182:1 6186:1 6187:1 6188:1 6230:1 6246:3 6273:1 6282:2 6284:1 6320:2 6322:2 6326:2 6328:1 6330:1 6336:1 6338:2 6345:1 6356:1 6381:1 6384:1 6385:1 6413:1 6431:1 6459:1 6460:1 6478:1 6490:1 6502:1 6514:3 6515:1 6519:1 6529:1 6544:1 6552:2 6553:1 6561:1 6564:1 6571:1 6589:4 6603:1 6614:1 6621:1 6624:4 6632:1 6633:1 6638:1 6649:1 6653:1 6680:1 6702:2 6712:1 6723:3 6729:1 6740:6 6741:5 6761:3 6789:1 6790:1 6793:1 6803:33 6812:1 6822:1 6824:20 6851:1 6872:1 6891:2 6957:1 6963:1 6974:1 6979:1 6986:4 6990:1 6996:1 6997:1 7001:1 7004:1 7010:1 7025:1 7036:1 7072:1 7074:1 7083:2 7093:1 7104:1 7126:1 7129:1 7151:4 7152:2 7157:1 7180:3 7194:1 7201:3 7205:1 7219:20 7246:2 7254:1 7264:1 7274:3 7297:1 7303:1 7305:1 7306:1 7307:1 7315:3 7337:1 7341:1 7348:1 7358:1 7363:4 7379:2 7382:2 7391:1 7399:1 7416:2 7420:1 7432:1 7436:1 7438:1 7439:1 7447:1 7449:1 7462:3 7473:2 7499:1 7503:2 7534:1 7536:1 7538:2 7539:2 7542:1 7549:2 7564:1 7565:1 7570:1 7589:2 7610:3 7611:7 7628:2 7644:1 7651:1 7670:1 7673:1 7683:1 7688:1 7697:2 7699:1 7700:2 7714:1 7725:1 7737:1 7741:1 7743:1 7767:1 7790:2 7791:2 7795:1 7804:1 7806:1 7807:2 7815:2 7835:3 7837:3 7855:1 7872:1 7910:1 7923:1 7937:2 7948:1 7960:1 7966:2 7983:1 7988:1 8021:2 8028:6 8033:1 8071:1 8073:1 8079:1 8090:2 8104:1 8140:1 8151:1 8156:1 8158:2 8167:1 8169:1 8170:1 8175:1 8178:1 8179:2 8180:1 8201:1 8203:1 8219:1 8232:3 8237:1 8253:1 8275:1 8277:1 8296:1 8309:1 8322:2 8326:1 8328:1 8340:2 8342:1 8355:1 8372:1 8377:2 8378:1 8383:1 8411:2 8432:3 8440:1 8447:1 8455:2 8469:2 8476:1 8483:4 8489:1 8498:2 8499:3 8510:4 8532:1 8534:1 8550:3 8561:1 8563:1 8601:3 8616:1 8619:1 8624:1 8628:1 8631:1 8643:1 8657:1 8659:1 8660:3 8664:1 8667:1 8678:1 8687:1 8727:2 8730:1 8740:1 8747:1 8748:1 8752:1 8755:2 8759:1 8769:1 8785:1 8824:1 8825:1 8828:1 8839:2 8867:1 8872:1 8877:1 8882:1 8892:1 8902:1 8909:4 8911:1 8914:1 8917:2 8929:2 8944:1 8946:1 8956:3 8959:2 8964:1 8965:2 8970:1 8973:1 8989:1 8993:1 8996:1 9029:1 9033:2 9044:2 9054:1 9056:2 9058:1 9061:1 9070:1 9075:1 9085:1 9110:3 9113:2 9117:1 9126:1 9163:1 9167:1 9209:1 9216:1 9220:3 9255:2 9264:1 9282:1 9285:1 9288:1 9292:1 9293:2 9312:2 9318:1 9322:1 9337:1 9344:1 9353:1 9362:1 9374:3 9376:1 9387:1 9419:1 9431:1 9464:1 9466:1 9473:4 9489:1 9490:1 9496:1 9506:1 9524:1 9529:1 9532:1 9534:1 9535:1 9539:1 9606:1 9611:1 9623:2 9627:1 9644:1 9645:1 9660:1 9661:1 9664:1 9697:2 9702:2 9708:1 9709:2 9712:7 9718:1 9736:1 9747:1 9754:1 9778:1 9791:1 9798:1 9803:2 9808:1 9831:1 9835:1 9837:1 9847:1 9870:1 9872:2 9894:1 9900:1 9912:1 9943:1 9946:1 9965:1 9968:3 9992:1 9995:1 9997:1 10003:2 10019:1 10040:2 10062:1 10066:1 10082:2 10084:1 10087:1 10093:2 10098:2 10103:1 10109:1 10132:1 10133:6 10143:1 10166:1 10182:1 10187:1 10192:1 10195:1 10204:1 10207:2 10213:1 10221:1 10233:1 10239:1 10249:3 10251:1 10274:2 10278:1 10318:4 10320:3 10338:1 10341:2 10350:1 10360:2 10362:2 10366:1 10367:1 10368:2 10370:1 10377:3 10379:4 10381:2 10382:1 10383:4 10384:1 10387:4 10388:3 10401:3 10407:1 10411:1 10427:1 10428:1 10429:2 10441:2 10442:1 10453:1 10460:1 10464:3 10469:1 10481:1 10487:1 10502:1 10513:1 10514:1 10518:5 10523:1 10530:1 10570:1 10572:1 10573:1 10592:2 10597:1 10605:1 10639:3 10665:2 10676:1 10681:5 10684:1 10694:5 10704:1 10716:1 10729:1 10745:1 10756:1 10764:1 10774:1 10782:1 10783:1 10785:1 10788:2 10800:1 10801:1 10813:1 10820:1 10838:1 10865:1 10875:2 10883:1 10894:1 10900:1 10941:1 10942:2 10951:1 10953:1 10963:1 10974:1 10986:1 11003:1 11009:1 11011:1 11063:1 11086:1 11087:2 11093:1 11105:2 11112:1 11115:1 11116:2 11126:1 11134:5 11145:1 11169:1 11170:2 11174:1 11203:2 11217:1 11220:1 11228:1 11233:1 11239:1 11261:7 11278:1 11283:1 11294:1 11300:1 11305:2 11307:2 11312:1 11314:1 11316:1 11317:1 11332:1 11353:2 11358:1 11362:2 11370:1 11373:2 11376:1 11383:1 11396:2 11398:1 11403:1 11414:1 11426:1 11427:2 11431:2 11432:1 11433:1 11445:1 11460:1 11479:1 11491:1 11495:3 11496:1 11506:1 11514:1 11539:2 11569:2 11570:1 11588:1 11616:2 11621:2 11632:5 11663:1 11672:1 11694:1 11702:1 11704:1 11714:1 11733:1 11761:1 11767:2 11778:3 11779:2 11790:3 11797:1 11805:2 11813:1 11832:1 11848:1 11865:6 11894:2 11917:1 11918:2 11935:1 11938:1 11970:1 11975:2 11988:1 11992:4 11998:1 12000:3 12018:3 12029:1 12069:1 12073:2 12087:1 12089:2 12095:1 12096:3 12097:1 12098:1 12099:1 12112:2 12114:1 12117:1 12120:1 12122:2 12167:1 12170:2 12182:1 12193:4 12199:3 12217:2 12219:2 12225:1 12238:3 12239:2 12244:1 12275:1 12277:2 12279:1 12281:1 12285:2 12293:1 12309:1 12318:1 12338:1 12351:1 12354:1 12364:2 12381:1 12390:1 12394:1 12405:1 12409:1 12410:1 12423:2 12426:1 12456:1 12459:1 12468:2 12481:2 12488:2 12495:1 12501:1 12504:1 12528:1 12530:1 12542:1 12545:1 12550:2 12556:2 12563:1 12568:1 12584:1 12586:1 12607:1 12617:1 12625:1 12642:1 12657:1 12672:2 12673:1 12681:2 12686:1 12693:2 12695:2 12697:3 12704:1 12706:1 12707:1 12712:1 12722:1 12734:1 12789:1 12794:1 12816:1 12817:1 12826:1 12827:3 12830:1 12831:1 12837:1 12840:3 12844:1 12845:1 12846:2 12853:2 12873:1 12889:1 12897:1 12908:2 12919:1 12920:1 12933:1 12936:1 12947:2 12951:1 12958:1 12962:1 12980:1 12987:1 12994:1 12996:1 13003:1 13008:1 13020:1 13021:2 13027:1 13049:1 13053:2 13059:1 13072:1 13086:1 13093:1 13098:1 13101:1 13102:1 13116:1 13120:1 13132:1 13147:1 13165:1 13182:2 13200:1 13219:2 13227:1 13232:1 13234:3 13242:1 13257:2 13258:1 13261:1 13303:1 13316:1 13319:1 13349:1 13379:1 13396:1 13402:1 13414:1 13421:1 13426:1 13428:1 13440:1 13452:2 13453:1 13466:1 13473:1 13481:1 13488:1 13505:3 13507:1 13532:1 13545:1 13549:1 13551:1 13577:1 13598:3 13615:1 13624:1 13625:1 13626:6 13637:2 13647:1 13663:1 13673:2 13686:3 13687:2 13700:2 13704:1 13726:3 13733:1 13734:7 13740:3 13744:1 13764:1 13772:1 13775:6 13804:1 13810:1 13821:1 13831:1 13833:1 13840:1 13865:2 13869:1 13870:1 13872:1 13875:1 13876:3 13877:1 13886:2 13895:1 13897:2 13898:1 13899:5 13900:2 13909:1 13910:1 13916:1 13932:1 13949:1 13952:2 13953:1 13962:1 13964:1 13972:1 13988:1 13991:1 14014:2 14040:1 14047:1 14062:1 14069:1 14084:1 14108:1 14143:6 14146:1 14149:1 14168:1 14169:1 14174:1 14179:1 14183:1 14193:1 14216:2 14219:1 14226:1 14227:1 14275:1 14276:2 14284:4 14293:3 14313:1 14324:1 14327:1 14358:1 14360:1 14367:1 14369:1 14373:2 14374:1 14386:1 14387:3 14389:3 14390:1 14393:1 14394:4 14398:2 14399:1 14412:1 14433:1 14471:1 14477:1 14480:1 14481:1 14488:1 14490:1 14515:1 14516:1 14524:1 14526:1 14548:1 14554:1 14559:1 14571:1 14578:2 14580:3 14596:3 14608:2 14609:1 14617:2 14621:1 14634:1 14649:2 14652:2 14654:1 14657:1 14679:2 14688:1 14694:1 14695:3 14696:1 14700:2 14704:2 14718:1 14720:1 14745:1 14747:1 14782:1 14783:1 14786:1 14794:5 14804:1 14814:1 14823:19 14841:1 14859:1 14864:2 14869:1 14893:2 14895:2 14908:3 14913:1 14926:1 14967:1 14976:1 15005:1 15006:1 15029:1 15036:1 15043:1 15047:1 15054:1 15057:1 15064:1 15068:1 15069:3 15083:1 15109:2 15117:1 15119:1 15153:3 15156:1 15161:1 15169:1 15176:1 15178:3 15196:2 15211:1 15212:1 15224:1 15242:1 15254:1 15265:1 15266:1 15267:1 15276:4 15285:1 15291:1 15297:2 15302:2 15337:1 15362:1 15365:2 15380:2 15386:1 15388:1 15401:2 15406:2 15409:2 15415:1 15417:1 15419:1 15420:1 15421:1 15432:1 15440:1 15441:1 15448:1 15454:1 15455:1 15458:1 15476:2 15505:1 15546:1 15550:1 15556:1 15565:1 15570:1 15583:1 15607:1 15642:1 15644:1 15683:2 15699:1 15723:1 15733:2 15738:1 15741:1 15746:1 15748:2 15749:1 15753:1 15788:1 15793:1 15795:1 15799:3 15814:1 15828:1 15833:1 15842:1 15860:2 15870:3 15901:1 15914:2 15920:1 15934:3 15942:1 15949:1 15967:2 15975:1 15979:1 15988:1 15989:1 16002:1 16003:1 16017:1 16029:2 16037:3 16046:1 16060:1 16068:1 16079:1 16084:1 16112:1 16113:2 16117:1 16161:1 16162:1 16172:1 16176:1 16190:1 16208:1 16211:1 16216:7 16225:1 16247:1 16255:1 16265:1 16266:1 16301:9 16309:3 16319:3 16326:1 16336:1 16360:1 16374:1 16381:1 16388:3 16390:2 16409:1 16419:1 16442:1 16444:1 16446:1 16457:1 16472:1 16481:1 16496:1 16498:3 16508:2290 16509:1 16512:1 16545:2 16559:3 16567:1 16600:1 16603:1 16604:1 16609:1 16647:3 16650:1 16670:1 16678:2 16693:1 16694:1 16703:1 16713:1 16719:1 16722:2 16735:3 16738:1 16767:2 16787:3 16793:1 16796:1 16817:1 16827:1 16834:2 16871:1 16894:3 16904:1 16910:2 16914:1 16932:1 16936:1 16942:1 16951:1 16959:1 16961:1 16974:1 16987:1 16993:1 16996:1 16997:1 17002:2 17008:2 17009:1 17017:1 17024:1 17035:1 17042:1 17054:2 17065:1 17077:1 17087:4 17092:1 17095:1 17110:1 17123:2 17125:1 17145:1 17151:1 17153:1 17157:1 17163:1 17165:1 17188:6 17192:1 17195:3 17202:1 17220:2 17223:1 17236:3 17256:1 17288:1 17293:1 17295:2 17296:1 17300:1 17327:2 17337:2 17355:3 17358:1 17359:1 17373:1 17385:1 17402:1 17409:1 17424:1 17430:1 17437:2 17454:1 17464:2 17468:1 17480:1 17494:2 17495:1 17500:1 17511:1 17512:1 17514:1 17516:1 17528:3 17530:1 17534:1 17544:18 17548:1 17562:1 17565:1 17569:1 17582:1 17589:1 17595:5 17598:1 17615:1 17653:1 17664:1 17665:1 17689:6 17706:1 17713:1 17715:1 17716:1 17721:1 17732:1 17739:2 17759:1 17763:1 17769:4 17775:1 17781:3 17802:3 17803:1 17804:1 17810:1 17815:1 17822:1 17824:2 17826:1 17834:1 17837:3 17843:1 17845:1 17847:1 17858:1 17863:1 17873:3 17875:1 17884:1 17886:1 17902:1 17919:1 17931:21 17940:1 17945:1 17956:1 17960:2 17967:1 17977:1 17991:1 17993:1 18039:1 18045:1 18047:1 18076:1 18097:1 18102:1 18121:2 18153:2 18154:1 18158:2 18160:2 18184:1 18193:3 18198:1 18206:1 18212:1 18314:1 18315:1 18317:2 18333:1 18342:2 18343:2 18357:2 18378:1 18383:3 18397:1 18403:1 18430:2 18434:1 18445:2 18447:1 18454:1 18460:1 18463:1 18464:1 18486:2 18503:1 18507:1 18509:1 18511:2 18519:3 18524:1 18525:1 18527:16 18534:1 18535:1 18542:3 18544:5 18553:1 18563:2 18566:1 18571:1 18572:1 18573:1 18601:1 18619:1 18636:1 18648:1 18649:3 18692:4 18706:2 18760:2 18762:1 18773:1 18774:1 18777:1 18779:1 18780:2 18781:1 18782:1 18797:2 18800:1 18807:1 18812:3 18816:1 18823:1 18828:1 18840:1 18848:1 18875:1 18879:1 18900:1 18917:3 18920:6 18942:2 18946:1 18967:1 18972:1 18979:1 18996:1 19006:1 19017:1 19024:1 19025:1 19032:2 19035:1 19039:1 19042:1 19043:1 19056:6 19062:2 19064:1 19070:1 19071:1 19082:1 19105:2 19108:1 19110:1 19120:1 19125:1 19127:3 19128:1 19131:1 19132:5 19133:1 19139:2 19141:1 19142:2 19154:1 19174:1 19175:2 19197:1 19201:1 19203:1 19212:1 19219:2 19239:2 19249:2 19275:3 19276:1 19285:2 19296:2 19298:1 19314:1 19325:1 19332:1 19348:1 19384:1 19421:2 19422:1 19433:1 19434:4 19436:2 19438:1 19455:3 19456:1 19459:1 19467:1 19490:2 19500:1 19535:2 19548:1 19558:2 19568:1 19575:1 19600:5 19621:1 19624:2 19630:1 19632:2 19636:2 19638:1 19644:1 19648:1 19656:1 19665:1 19677:1 19681:1 19683:2 19685:1 19696:1 19709:1 19714:1 19725:1 19740:2 19743:1 19744:1 19748:2 19758:1 19759:1 19763:1 19765:5 19787:2 19798:1 19801:1 19817:3 19822:1 19831:1 19832:1 19833:1 19842:1 19843:1 19858:1 19869:3 19877:1 19885:1 19887:1 19888:1 19898:1 19899:2 19906:1 19908:1 19909:1 19916:1 19919:2 19921:1 19923:1 19932:1 19937:1 19938:4 19942:2 19946:1 19958:2 19960:1 19969:1 19970:2 19991:2 19998:1 19999:5 20011:1 20025:2 20038:1 20039:1 20052:1 20059:2 20062:1 20063:1 20086:2 20119:1 20124:1 20132:1 20152:1 20160:2 20166:3 20172:1 20173:1 20186:3 20199:3 20203:1 20204:2 20210:1 20239:1 20240:1 20252:1 20262:1 20268:1 20272:1 20282:1 20287:1 20289:1 20297:8 20301:1 20307:1 20309:1 20312:1 20313:1 20320:2 20333:3 20334:2 20361:1 20374:1 20390:1 20399:1 20400:2 20409:1 20413:1 20421:1 20427:1 20438:1 20455:1 20461:1 20482:1 20485:2 20508:2 20514:1 20526:1 20527:1 20541:1 20542:1 20545:1 20547:1 20554:1 20565:1 20572:1 20577:1 20606:1 20617:1 20640:2 20642:1 20652:1 20695:2 20703:1 20707:1 20713:1 20717:1 20742:3 20750:2 20754:1 20770:1 20773:1 20775:1 20802:1 20818:3 20827:1 20835:3 20837:2 20840:1 20841:2 20868:1 20870:3 20888:4 20891:1 20893:1 20894:1 20910:1 20927:1 20929:1 20941:1 20963:1 20975:1 20991:1 21000:2 21004:1 21006:1 21013:1 21066:2 21070:1 21075:1 21077:2 21081:1 21109:1 21116:1 21123:1 21132:1 21151:3 21154:1 21182:1 21194:1 21211:1 21215:1 21222:1 21232:1 21235:1 21243:1 21296:1 21303:1 21311:2 21341:1 21344:3 21346:1 21392:1 21397:1 21400:1 21416:2 21432:2 21441:1 21451:2 21481:1 21483:1 21494:1 21503:1 21504:2 21519:1 21526:1 21529:1 21537:2 21571:1 21578:1 21582:3 21599:1 21605:1 21621:1 21631:2 21642:2 21645:1 21684:1 21689:2 21694:1 21719:1 21751:1 21752:2 21757:1 21762:2 21765:1 21767:1 21768:1 21769:3 21770:2 21772:1 21778:1 21779:1 21784:4 21795:2 21796:1 21801:2 21812:4 21846:1 21858:1 21859:1 21868:8 21869:3 21872:1 21877:3 21905:2 21915:1 21925:3 21926:3 21958:1 21961:1 21962:1 21963:1 21993:1 22027:1 22032:1 22036:1 22047:1 22058:1 22063:1 22065:1 22082:1 22089:1 22090:2 22099:1 22105:2 22131:1 22143:1 22188:1 22197:2 22202:1 22220:1 22226:1 22239:1 22240:2 22253:1 22264:1 22284:1 22295:9 22343:1 22344:1 22346:1 22363:1 22370:1 22375:2 22377:2 22397:1 22410:1 22426:1 22446:1 22459:1 22460:2 22461:5 22477:1 22491:5 22506:1 22557:2 22558:1 22564:1 22567:1 22598:1 22600:1 22654:2 22672:2 22676:1 22689:1 22691:1 22697:1 22702:2 22706:3 22707:2 22723:1 22742:2 22745:1 22757:1 22759:2 22765:1 22787:1 22794:1 22795:2 22796:3 22797:1 22801:2 22819:2 22821:1 22848:1 22862:1 22876:2 22891:2 22907:1 22910:1 22919:1 22922:1 22941:1 22944:3 22955:1 22969:1 22976:6 22977:5 22993:2 23011:1 23013:1 23016:1 23023:1 23026:1 23031:2 23035:1 23037:2 23038:1 23083:1 23088:1 23106:2 23111:1 23135:1 23147:1 23162:2 23164:1 23173:1 23179:1 23180:2 23203:1 23209:1 23238:1 23244:1 23246:1 23256:1 23265:2 23270:1 23283:1 23291:1 23311:1 23316:1 23334:1 23345:1 23350:4 23376:1 23383:1 23388:1 23389:1 23410:12 23411:2 23418:1 23437:1 23458:3 23480:2 23484:1 23507:1 23511:1 23520:2 23530:1 23533:1 23538:1 23548:1 23552:3 23566:1 23597:1 23633:1 23643:1 23665:1 23666:2 23691:2 23692:1 23693:1 23698:1 23699:1 23703:2 23734:1 23735:1 23740:1 23760:1 23763:1 23787:1 23796:1 23819:1 23837:1 23853:1 23855:1 23888:1 23902:1 23905:1 23924:1 23927:1 23937:2 23957:2 23963:1 23968:1 23986:1 23987:1 23990:1 24003:1 24016:1 24017:3 24018:1 24037:1 24042:1 24049:1 24053:1 24064:1 24084:1 24096:1 24107:1 24108:1 24109:2 24119:4 24120:2 24121:1 24141:2 24148:1 24149:1 24150:5 24162:1 24164:2 24177:2 24179:3 24184:1 24190:2 24212:2 24217:1 24221:6 24230:2 24232:1 24233:1 24237:1 24241:1 24251:2 24271:1 24282:1 24292:2 24295:2 24304:1 24329:1 24332:1 24345:1 24361:1 24366:3 24404:2 24407:1 24412:1 24414:1 24415:1 24419:1 24427:1 24428:1 24432:1 24439:1 24442:1 24443:1 24444:1 24445:1 24455:1 24459:1 24464:2 24469:1 24474:1 24476:1 24479:1 24480:2 24485:1 24486:1 24488:1 24489:1 24492:1 24495:2 24498:1 24502:2 24503:1 24508:2 24511:2 24512:1 24515:1 24538:1 24548:1 24552:1 24588:2 24596:3 24598:1 24615:1 24644:1 24658:1 24664:1 24665:2 24667:1 24684:1 24709:1 24729:1 24745:1 24751:2 24766:1 24767:3 24769:2 24771:1 24775:1 24777:3 24794:2 24805:1 24810:2 24816:1 24818:1 24865:1 24868:1 24875:1 24899:1 24905:2 24917:1 24949:1 24952:1 24962:1 24986:2 25004:1 25022:5 25027:1 25031:1 25036:1 25037:4 25044:1 25054:1 25066:1 25069:1 25075:1 25083:1 25093:1 25096:1 25099:1 25102:1 25110:8 25112:1 25116:1 25117:1 25126:1 25129:1 25137:1 25141:4 25159:2 25164:1 25208:1 25215:1 25219:1 25245:2 25251:5 25260:1 25276:1 25278:7 25282:1 25284:1 25287:1 25290:1 25296:2 25310:1 25312:1 25316:1 25324:1 25325:1 25327:2 25334:1 25342:1 25348:1 25351:1 25363:5 25364:1 25368:1 25382:1 25388:1 25400:1 25402:1 25410:1 25433:1 25456:2 25457:2 25459:1 25460:2 25462:1 25467:1 25472:1 25477:1 25495:1 25514:1 25515:2 25519:1 25525:1 25527:3 25528:1 25530:1 25540:4 25542:2 25555:1 25557:1 25571:1 25583:1 25584:1 25591:1 25595:1 25602:1 25603:1 25619:1 25624:1 25647:1 25679:1 25685:1 25699:1 25707:1 25713:1 25717:1 25732:1 25741:1 25746:1 25753:1 25755:1 25758:1 25770:2 25772:1 25777:1 25779:1 25809:1 25811:1 25816:1 25829:1 25851:1 25854:2 25860:2 25880:1 25883:1 25901:3 25912:1 25915:1 25917:1 25956:1 25960:1 25968:1 25971:1 25987:1 25991:2 25992:2 25993:1 25997:1 26011:1 26027:2 26050:1 26053:1 26059:1 26070:1 26076:2 26091:1 26092:2 26097:1 26098:1 26122:1 26125:2 26128:4 26130:1 26133:1 26150:1 26163:4 26175:2 26205:2 26209:1 26215:1 26224:1 26226:1 26227:1 26228:1 26231:3 26232:1 26239:3 26241:2 26242:1 26244:2 26246:1 26247:1 26250:3 26252:1 26264:1 26270:1 26279:4 26299:1 26318:1 26325:1 26330:1 26340:1
7 10:1 21:1 24:1 32:1 38:1 47:1 73:1 83:1 110:1 116:1 155:4 164:5 182:2 193:2 200:1 207:2 215:2 218:2 234:1 248:1 260:1 274:1 276:1 294:2 298:1 310:1 327:2 334:1 340:1 345:1 346:1 347:1 360:1 391:1 402:1 407:1 410:1 411:1 429:1 433:1 437:1 438:1 441:2 467:1 471:1 475:1 479:1 501:2 508:1 510:4 532:2 538:5 553:1 603:6 605:2 613:1 626:1 651:1 667:1 675:1 676:1 714:1 722:1 724:1 726:7 728:1 746:2 750:3 753:1 769:1 781:2 782:3 801:1 807:4 810:1 815:1 841:2 842:2 845:3 852:1 854:1 877:1 882:1 890:1 933:1 945:1 962:2 971:2 982:3 984:2 1010:1 1013:2 1018:1 1021:1 1042:1 1052:1 1054:1 1056:1 1068:1 1071:2 1076:1 1081:1 1083:1 1088:1 1094:1 1104:1 1163:1 1168:3 1190:2 1203:1 1211:1 1220:1 1224:1 1235:1 1241:1 1242:1 1245:2 1248:1 1272:1 1276:2 1279:3 1283:1 1287:1 1295:1 1310:1 1345:2 1386:2 1394:2 1396:1 1424:1 1426:1 1436:3 1439:3 1444:1 1449:1 1450:3 1451:3 1466:2 1467:1 1495:1 1502:1 1517:1 1524:1 1528:1 1538:1 1539:3 1541:2 1547:1 1552:1 1579:1 1581:3 1593:1 1596:1 1605:4 1608:1 1611:1 1628:2 1639:2 1653:2 1656:1 1657:1 1668:1 1672:1 1702:1 1704:1 1705:1 1719:1 1721:1 1731:2 1738:2 1758:1 1788:1 1789:1 1790:1 1796:1 1797:1 1815:4 1827:1 1836:1 1848:5 1858:1 1868:2 1879:3 1884:1 1888:2 1904:1 1914:1 1916:2 1918:1 1919:1 1924:1 1925:1 1927:2 1930:5 1941:1 1943:1 1948:1 1952:1 1958:1 1964:1 1967:6 1968:1 1970:2 1973:2 1974:1 1978:4 1980:1 1981:2 1982:2 1986:1 1990:5 1994:1 1997:3 2000:2 2002:4 2004:1 2044:1 2053:1 2057:1 2064:1 2070:1 2078:1 2086:1 2089:1 2091:2 2097:1 2099:1 2116:1 2122:1 2145:1 2155:1 2172:1 2181:1 2200:1 2210:2 2220:1 2222:1 2223:1 2232:1 2237:1 2239:1 2241:1 2247:1 2258:1 2270:1 2273:1 2316:1 2322:1 2338:1 2355:1 2357:1 2359:1 2364:2 2378:1 2394:3 2398:2 2406:1 2429:1 2431:2 2445:3 2446:1 2450:3 2453:3 2460:7 2466:1 2472:1 2500:1 2502:1 2505:1 2506:1 2508:3 2534:1 2545:5 2562:1 2568:1 2579:2 2587:1 2590:21 2605:1 2614:2 2616:1 2617:1 2619:2 2641:1 2650:1 2667:1 2694:1 2696:1 2711:1 2737:1 2752:2 2760:3 2767:1 2798:1 2843:1 2858:1 2859:2 2868:1 2869:1 2875:1 2893:6 2895:1 2900:1 2915:1 2918:9 2922:1 2948:2 2956:1 2977:1 2982:2 3024:1 3037:1 3038:1 3044:1 3045:1 3046:1 3084:1 3088:1 3091:2 3095:1 3106:1 3118:1 3123:1 3124:1 3149:1 3153:1 3155:2 3159:2 3167:1 3169:1 3181:2 3187:1 3189:1 3191:1 3205:1 3210:1 3231:1 3235:3 3236:1 3238:2 3239:1 3253:1 3270:2 3276:1 3290:1 3298:1 3332:1 3343:1 3362:1 3365:2 3375:1 3381:1 3382:2 3395:1 3413:1 3421:2 3422:1 3432:1 3435:2 3443:1 3450:1 3453:1 3461:2 3467:1 3474:1 3481:1 3504:2 3511:2 3518:1 3529:2 3530:1 3537:1 3571:1 3575:1 3576:1 3579:1 3613:1 3617:5 3622:2 3624:1 3661:2 3671:1 3682:1 3683:1 3688:1 3698:3 3706:3 3711:2 3712:2 3715:1 3732:1 3733:1 3746:1 3752:1 3763:1 3782:1 3789:1 3791:2 3793:1 3795:1 3805:2 3817:2 3832:1 3843:2 3848:1 3851:1 3869:1 3891:1 3896:1 3897:2 3899:1 3908:1 3916:1 3922:1 3930:1 3942:1 3944:1 3957:1 3997:5 4004:1 4011:1 4021:1 4022:1 4028:1 4035:1 4036:1 4079:1 4082:1 4096:2 4097:2 4098:1 4113:2 4120:1 4123:3 4130:1 4136:1 4137:3 4140:1 4148:1 4193:1 4199:1 4204:1 4213:1 4215:1 4247:1 4250:1 4253:1 4284:3 4292:1 4296:1 4305:26 4308:1 4323:1 4339:1 4342:1 4373:1 4376:1 4395:1 4405:1 4414:3 4429:4 4430:8 4433:2 4436:2 4437:2 4441:1 4443:2 4449:2 4455:1 4456:2 4457:2 4458:1 4459:1 4484:5 4513:1 4528:2 4533:1 4536:1 4564:4 4573:1 4597:1 4602:5 4625:2 4652:1 4674:1 4702:1 4703:1 4709:1 4719:1 4726:1 4733:1 4735:1 4739:1 4742:1 4744:1 4756:1 4765:1 4766:1 4784:1 4803:1 4804:1 4812:1 4880:1 4881:1 4888:2 4897:1 4919:1 4922:1 4925:2 4946:1 4948:1 4953:1 4970:3 4978:1 4979:1 5006:1 5007:2 5010:1 5020:1 5046:1 5052:1 5053:1 5065:1 5068:2 5071:1 5081:2 5126:2 5137:1 5145:1 5193:1 5203:1 5220:2 5225:1 5267:1 5275:1 5300:1 5306:1 5319:2 5322:2 5351:1 5379:1 5395:1 5407:1 5408:1 5412:1 5424:1 5427:1 5441:6 5452:1 5455:1 5470:1 5471:1 5478:1 5499:1 5507:1 5516:2 5542:8 5566:5 5581:5 5585:1 5586:1 5600:2 5617:4 5618:1 5625:6 5627:3 5631:2 5632:1 5636:2 5637:1 5638:2 5640:2 5645:2 5647:2 5661:1 5673:1 5732:1 5756:1 5767:2 5769:1 5782:1 5797:1 5800:1 5810:1 5813:2 5818:1 5844:1 5847:3 5866:1 5886:1 5890:1 5901:1 5911:1 5918:5 5974:1 5987:2 5990:4 6009:4 6010:3 6043:1 6045:1 6098:2 6102:1 6105:2 6106:1 6108:1 6111:1 6117:2 6135:1 6138:1 6152:1 6167:1 6170:1 6178:1 6182:1 6186:1 6187:1 6188:1 6230:1 6246:3 6273:1 6282:2 6284:1 6320:2 6322:2 6326:2 6328:1 6330:1 6336:1 6338:2 6345:1 6356:1 6381:1 6384:1 6385:1 6413:1 6431:1 6459:1 6460:1 6478:1 6490:1 6502:1 6514:3 6515:1 6519:1 6529:1 6544:1 6552:2 6553:1 6561:1 6564:1 6571:1 6589:4 6603:1 6614:1 6621:1 6624:4 6632:1 6633:1 6638:1 6649:1 6653:1 6680:1 6702:2 6712:1 6723:3 6729:1 6740:6 6741:5 6761:3 6789:1 6790:1 6793:2 6803:34 6812:1 6822:1 6824:21 6851:1 6872:1 6891:2 6957:1 6963:1 6974:1 6979:1 6986:4 6990:1 6996:1 6997:1 7001:1 7004:1 7010:1 7025:1 7036:1 7072:1 7074:1 7083:2 7093:1 7104:1 7126:1 7129:1 7151:4 7152:2 7154:1 7157:1 7180:3 7194:1 7201:3 7205:1 7219:20 7230:1 7246:2 7254:1 7264:1 7274:3 7297:1 7303:1 7305:1 7306:1 7307:1 7315:3 7337:1 7341:1 7348:1 7358:1 7363:4 7379:2 7382:2 7391:1 7399:1 7416:2 7420:1 7432:1 7436:1 7438:1 7439:1 7447:1 7449:1 7462:3 7473:2 7499:1 7503:2 7534:1 7536:1 7538:2 7539:2 7542:1 7549:2 7564:1 7565:1 7570:1 7589:2 7610:3 7611:7 7628:2 7644:1 7651:1 7670:1 7673:1 7683:1 7688:1 7697:2 7699:1 7700:2 7714:1 7725:1 7737:1 7741:1 7743:1 7767:1 7790:2 7791:2 7795:1 7804:1 7806:1 7807:2 7815:2 7835:3 7837:3 7855:1 7872:1 7910:1 7923:1 7937:2 7948:1 7960:1 7966:2 7983:2 7988:1 8021:2 8028:6 8033:1 8037:1 8071:1 8073:1 8079:1 8090:2 8104:2 8121:1 8140:1 8151:1 8156:1 8158:2 8167:1 8169:1 8170:1 8175:1 8178:1 8179:2 8180:1 8201:1 8203:1 8219:1 8232:3 8237:1 8253:1 8275:1 8277:1 8296:1 8309:2 8322:2 8326:1 8328:1 8340:3 8342:1 8355:1 8372:1 8377:2 8378:1 8383:1 8411:2 8432:3 8440:1 8447:1 8455:2 8469:2 8476:1 8483:4 8489:1 8498:2 8499:3 8510:4 8532:1 8534:1 8550:3 8561:1 8563:1 8601:4 8616:1 8619:1 8624:1 8628:1 8631:1 8643:1 8657:1 8659:1 8660:3 8664:1 8667:1 8678:1 8687:1 8727:2 8730:1 8740:1 8747:1 8748:1 8752:1 8755:2 8759:1 8769:1 8785:1 8824:1 8825:1 8828:1 8834:1 8839:2 8867:1 8872:1 8877:1 8882:1 8892:1 8902:1 8909:4 8911:1 8914:1 8917:2 8929:2 8944:1 8946:1 8956:3 8959:2 8964:1 8965:2 8969:1 8970:1 8973:1 8989:1 8993:1 8996:1 9018:1 9029:1 9033:2 9044:2 9054:1 9056:2 9058:1 9061:1 9070:1 9075:1 9085:1 9110:3 9113:2 9117:1 9126:1 9163:2 9167:1 9209:1 9216:1 9220:3 9255:2 9264:1 9282:1 9285:1 9288:1 9292:1 9293:2 9312:3 9318:1 9322:1 9337:1 9344:1 9353:1 9362:1 9374:3 9376:1 9387:1 9419:1 9431:1 9464:1 9466:1 9473:4 9489:1 9490:1 9496:1 9504:1 9506:1 9524:1 9529:1 9532:1 9534:1 9535:1 9539:1 9606:1 9611:1 9623:2 9627:1 9644:1 9645:1 9660:1 9661:1 9664:1 9697:2 9702:2 9708:1 9709:2 9712:8 9718:1 9736:1 9747:1 9750:1 9754:1 9776:1 9778:1 9791:1 9798:1 9803:2 9808:1 9831:1 9835:1 9837:1 9847:2 9870:1 9872:2 9894:1 9900:1 9912:1 9913:1 9943:1 9946:1 9965:1 9968:3 9992:1 9995:1 9997:1 10003:2 10019:1 10040:2 10062:1 10066:1 10082:2 10084:1 10087:1 10093:2 10098:2 10103:1 10109:1 10132:2 10133:6 10143:1 10166:1 10182:1 10187:1 10192:1 10195:1 10204:1 10207:2 10213:1 10221:1 10233:1 10239:1 10249:3 10251:1 10274:2 10278:1 10318:4 10320:3 10324:1 10338:1 10341:2 10350:1 10360:2 10362:2 10366:1 10367:1 10368:2 10370:1 10377:3 10379:4 10380:1 10381:2 10382:1 10383:4 10384:1 10387:4 10388:3 10401:3 10407:1 10411:1 10427:1 10428:1 10429:2 10441:2 10442:1 10453:1 10460:1 10464:3 10469:1 10481:1 10487:1 10502:1 10513:1 10514:1 10518:5 10523:1 10526:1 10530:1 10570:1 10572:1 10573:1 10592:2 10597:1 10605:1 10639:3 10665:2 10676:1 10681:5 10684:1 10694:5 10704:1 10716:1 10729:1 10745:1 10756:1 10757:1 10764:1 10774:1 10782:1 10783:1 10785:1 10788:2 10800:1 10801:1 10813:1 10820:1 10838:1 10865:1 10875:2 10883:1 10894:1 10900:1 10941:1 10942:2 10951:1 10953:1 10963:1 10974:1 10986:1 11003:1 11009:1 11011:1 11063:1 11086:1 11087:2 11093:1 11105:2 11110:1 11112:1 11115:1 11116:2 11126:1 11134:5 11145:1 11169:1 11170:2 11174:1 11203:2 11217:1 11220:1 11228:1 11233:1 11239:1 11261:7 11278:1 11283:1 11294:1 11300:1 11305:2 11307:2 11312:1 11314:1 11316:1 11317:1 11332:1 11353:2 11358:1 11362:2 11370:1 11373:2 11376:1 11383:1 11387:1 11396:2 11398:1 11403:1 11414:1 11426:1 11427:2 11431:2 11432:1 11433:1 11445:1 11460:1 11479:1 11491:1 11495:3 11496:1 11506:1 11514:1 11539:2 11569:2 11570:1 11575:1 11588:1 11616:2 11621:2 11632:5 11663:1 11672:1 11694:1 11702:1 11704:1 11714:1 11733:1 11761:1 11767:2 11778:3 11779:2 11790:3 11797:1 11805:2 11813:1 11832:1 11848:1 11865:6 11894:2 11917:1 11918:2 11921:1 11935:1 11938:1 11970:1 11975:2 11988:1 11992:4 11998:1 12000:3 12018:3 12029:1 12069:1 12073:2 12087:1 12089:2 12095:1 12096:3 12097:1 12098:1 12099:1 12112:2 12114:1 12117:1 12120:1 12121:1 12122:2 12167:1 12170:2 12182:1 12193:4 12199:3 12217:2 12219:2 12225:1 12238:3 12239:2 12244:1 12275:1 12277:2 12279:1 12281:1 12285:2 12293:1 12309:1 12318:1 12338:1 12343:1 12351:1 12354:1 12364:2 12381:1 12390:1 12394:1 12405:1 12409:1 12410:1 12423:2 12426:1 12456:2 12459:1 12468:2 12481:2 12484:1 12488:2 12495:1 12501:1 12504:1 12528:1 12530:1 12542:2 12545:1 12550:2 12556:2 12561:1 12563:1 12568:1 12584:1 12586:1 12607:1 12617:1 12625:1 12642:1 12657:1 12672:2 12673:1 12681:3 12686:1 12693:2 12695:2 12697:3 12704:1 12706:1 12707:1 12712:1 12722:1 12734:1 12789:1 12794:1 12816:1 12817:1 12826:1 12827:3 12830:1 12831:1 12837:1 12840:3 12844:1 12845:1 12846:2 12847:1 12853:2 12873:1 12889:1 12897:1 12898:1 12908:2 12919:1 12920:1 12933:1 12936:1 12944:1 12947:2 12951:1 12958:1 12962:1 12980:1 12987:1 12994:1 12996:1 13003:1 13008:1 13020:1 13021:2 13027:1 13049:1 13053:2 13059:1 13072:1 13086:1 13093:1 13098:1 13101:1 13102:1 13116:1 13120:1 13132:1 13147:1 13165:1 13182:2 13200:1 13219:2 13227:1 13232:1 13234:3 13242:1 13257:2 13258:1 13261:1 13303:1 13316:1 13319:1 13341:1 13349:1 13379:1 13396:1 13402:1 13414:1 13421:1 13426:1 13428:1 13440:1 13452:2 13453:1 13466:1 13473:1 13481:1 13488:1 13505:3 13507:1 13532:1 13545:1 13549:1 13551:1 13577:1 13598:3 13615:1 13624:1 13625:1 13626:6 13637:2 13647:1 13663:1 13673:2 13686:3 13687:2 13700:2 13704:1 13726:3 13733:1 13734:7 13740:4 13744:1 13764:1 13772:1 13775:6 13804:1 13810:1 13821:1 13831:1 13833:1 13840:1 13865:2 13869:1 13870:1 13872:1 13875:2 13876:4 13877:1 13886:2 13895:1 13897:2 13898:1 13899:5 13900:2 13909:1 13910:1 13916:1 13932:1 13938:1 13949:1 13952:2 13953:1 13962:1 13964:1 13972:1 13988:1 13991:1 14014:2 14040:1 14047:1 14062:1 14069:1 14084:1 14108:1 14143:6 14146:1 14149:1 14168:1 14169:1 14174:1 14179:1 14183:1 14193:1 14216:2 14219:1 14226:1 14227:1 14275:1 14276:2 14284:4 14293:3 14313:1 14319:1 14324:1 14327:1 14358:1 14360:1 14367:1 14369:1 14373:2 14374:1 14386:1 14387:3 14389:3 14390:1 14393:1 14394:4 14398:2 14399:1 14412:1 14433:1 14471:1 14477:1 14480:1 14481:1 14488:1 14490:1 14515:1 14516:1 14524:1 14526:1 14548:1 14554:2 14559:1 14571:1 14578:2 14580:3 14596:3 14608:2 14609:1 14617:2 14621:1 14634:1 14649:2 14652:2 14654:1 14657:1 14679:2 14688:1 14694:1 14695:3 14696:1 14700:2 14704:2 14718:1 14720:1 14745:1 14747:1 14782:1 14783:1 14786:1 14794:5 14804:1 14814:1 14823:19 14841:1 14859:1 14864:2 14869:1 14893:2 14895:2 14908:3 14913:1 14926:1 14967:1 14976:1 15005:1 15006:1 15029:1 15036:1 15043:1 15045:1 15047:1 15054:1 15057:1 15064:1 15068:1 15069:3 15083:1 15109:2 15117:1 15119:1 15139:1 15153:3 15156:1 15161:1 15169:1 15176:1 15178:3 15196:2 15211:1 15212:1 15224:1 15242:1 15254:1 15265:1 15266:1 15267:1 15276:4 15285:1 15289:1 15291:1 15297:2 15302:2 15330:1 15337:1 15362:1 15365:2 15380:2 15386:1 15388:1 15401:2 15406:2 15409:2 15415:1 15417:1 15419:1 15420:1 15421:1 15432:1 15440:1 15441:1 15448:1 15454:1 15455:1 15458:1 15460:1 15476:2 15505:1 15546:1 15550:1 15556:1 15565:1 15570:1 15583:1 15607:1 15642:1 15644:1 15683:2 15699:1 15723:1 15733:2 15738:1 15741:2 15746:1 15748:2 15749:1 15753:1 15788:1 15793:1 15795:1 15799:3 15814:1 15828:1 15833:1 15842:1 15860:2 15870:3 15901:1 15914:2 15920:1 15934:3 15942:1 15949:1 15967:2 15975:1 15979:1 15988:1 15989:1 16002:1 16003:1 16017:1 16029:2 16030:1 16037:3 16046:1 16060:1 16068:1 16079:1 16084:1 16112:1 16113:2 16117:1 16161:1 16162:1 16172:1 16176:1 16190:1 16197:1 16208:1 16211:1 16216:7 16225:1 16247:1 16255:1 16265:1 16266:1 16301:9 16309:3 16319:3 16326:1 16336:1 16360:1 16374:1 16381:1 16388:3 16390:2 16409:1 16419:1 16442:1 16444:1 16446:1 16457:1 16472:1 16481:1 16496:1 16498:3 16508:2398 16509:1 16512:1 16545:2 16559:3 16567:1 16600:1 16603:1 16604:1 16609:2 16647:3 16650:1 16670:1 16677:1 16678:2 16693:1 16694:1 16703:1 16713:1 16719:1 16722:2 16735:3 16738:1 16767:2 16787:3 16793:1 16796:1 16817:1 16827:1 16834:2 16871:1 16894:3 16904:1 16910:2 16914:1 16932:1 16936:1 16942:1 16951:1 16959:1 16961:1 16974:1 16987:1 16993:1 16996:1 16997:1 17002:2 17008:2 17009:1 17017:1 17024:1 17035:1 17042:1 17054:2 17065:1 17077:1 17087:4 17092:1 17095:1 17110:1 17123:2 17125:1 17145:1 17151:1 17153:1 17157:1 17163:1 17165:1 17182:1 17188:6 17192:1 17195:3 17202:1 17220:2 17223:1 17236:4 17256:1 17288:1 17293:1 17295:2 17296:1 17300:1 17327:2 17337:2 17355:3 17358:1 17359:1 17373:1 17385:1 17402:1 17409:1 17424:1 17430:1 17437:2 17454:1 17464:2 17468:1 17480:1 17494:2 17495:1 17500:1 17511:1 17512:1 17514:1 17516:1 17528:3 17530:1 17534:1 17544:18 17548:1 17558:1 17562:1 17565:1 17569:1 17582:1 17589:1 17595:5 17598:1 17615:1 17653:1 17664:1 17665:1 17689:7 17706:1 17713:1 17715:1 17716:1 17721:1 17732:1 17739:2 17759:1 17763:1 17769:4 17775:1 17781:3 17802:3 17803:1 17804:1 17810:1 17815:1 17822:1 17824:2 17826:1 17834:1 17837:3 17843:1 17845:1 17847:1 17858:1 17863:1 17873:3 17875:1 17884:1 17886:1 17902:1 17919:1 17931:21 17940:1 17945:1 17956:1 17960:2 17967:1 17977:1 17991:1 17993:1 18039:1 18045:1 18047:1 18076:1 18097:1 18102:1 18121:2 18153:2 18154:1 18158:2 18160:2 18184:1 18193:3 18198:1 18206:1 18212:1 18314:1 18315:1 18317:2 18333:1 18342:2 18343:2 18357:2 18378:1 18383:3 18397:1 18403:1 18430:2 18434:1 18445:2 18447:1 18454:1 18460:1 18463:1 18464:1 18486:2 18503:1 18507:1 18509:1 18511:2 18519:3 18524:1 18525:1 18527:16 18534:1 18535:1 18542:3 18544:5 18553:1 18563:2 18566:1 18571:1 18572:1 18573:1 18601:1 18619:1 18636:1 18648:1 18649:3 18680:1 18692:4 18706:2 18760:2 18762:1 18773:1 18774:1 18777:1 18779:1 18780:2 18781:1 18782:1 18797:2 18800:1 18807:1 18812:3 18816:1 18823:1 18828:1 18840:1 18848:1 18875:1 18879:1 18900:1 18917:3 18920:6 18937:1 18942:2 18946:1 18967:2 18972:1 18979:1 18996:1 19006:1 19017:1 19024:1 19025:1 19032:2 19035:1 19039:1 19042:1 19043:1 19056:6 19062:2 19064:1 19070:2 19071:1 19082:1 19105:2 19108:1 19110:1 19120:1 19125:1 19127:3 19128:1 19131:1 19132:5 19133:1 19139:2 19141:1 19142:2 19154:1 19174:1 19175:2 19197:1 19201:1 19203:1 19212:1 19219:2 19239:2 19249:2 19275:3 19276:1 19285:2 19296:2 19298:1 19314:1 19325:1 19332:1 19348:1 19384:1 19421:2 19422:1 19433:1 19434:4 19436:2 19438:1 19455:4 19456:1 19459:1 19467:1 19490:2 19500:1 19535:2 19548:1 19558:2 19568:1 19575:1 19600:5 19621:1 19624:2 19630:1 19632:2 19636:2 19638:1 19644:1 19648:1 19656:1 19665:1 19677:1 19681:1 19683:2 19685:1 19696:1 19709:1 19714:1 19725:1 19740:2 19743:1 19744:1 19748:2 19758:1 19759:1 19763:1 19765:5 19787:2 19798:1 19801:1 19817:3 19822:1 19831:1 19832:1 19833:1 19842:1 19843:1 19858:1 19869:3 19877:1 19885:1 19887:1 19888:1 19898:1 19899:2 19906:1 19908:1 19909:1 19916:1 19919:2 19921:1 19923:1 19932:1 19937:1 19938:4 19942:2 19946:1 19958:2 19960:1 19969:1 19970:2 19991:2 19998:1 19999:5 20011:1 20025:2 20038:1 20039:1 20052:1 20059:2 20062:1 20063:1 20086:2 20119:1 20124:1 20132:1 20152:1 20160:2 20166:3 20172:1 20173:1 20186:3 20199:3 20203:1 20204:2 20210:1 20239:1 20240:1 20252:1 20262:1 20268:1 20272:1 20282:1 20287:1 20289:1 20297:8 20301:1 20307:1 20309:1 20312:1 20313:1 20316:1 20320:2 20333:3 20334:2 20361:1 20374:1 20379:1 20390:1 20399:2 20400:2 20409:1 20413:1 20421:1 20427:1 20438:1 20453:1 20455:1 20457:1 20461:1 20482:2 20485:2 20508:2 20514:1 20526:1 20527:1 20541:2 20542:1 20545:1 20547:1 20554:1 20565:1 20572:1 20577:1 20606:1 20617:1 20640:2 20642:1 20652:1 20695:2 20703:1 20707:1 20713:1 20717:1 20742:3 20750:2 20754:1 20770:1 20773:1 20775:1 20802:1 20818:3 20827:1 20835:3 20837:2 20840:1 20841:3 20868:1 20870:3 20888:4 20891:1 20893:1 20894:1 20910:1 20927:1 20929:1 20941:1 20963:1 20975:1 20991:1 21000:2 21004:1 21006:1 21013:1 21066:2 21070:1 21075:1 21077:2 21081:1 21109:1 21116:1 21123:1 21132:1 21151:3 21154:1 21182:1 21194:1 21211:1 21215:1 21222:1 21232:1 21235:1 21243:1 21296:1 21303:1 21311:2 21341:1 21344:3 21346:1 21392:1 21397:1 21400:1 21416:2 21417:1 21432:2 21441:1 21451:2 21455:1 21481:1 21483:1 21494:1 21503:1 21504:2 21519:1 21526:1 21529:2 21537:2 21571:1 21578:1 21582:3 21599:1 21605:1 21621:1 21631:2 21642:2 21645:1 21684:1 21689:2 21694:1 21719:1 21751:1 21752:2 21757:1 21762:2 21765:1 21767:1 21768:1 21769:3 21770:2 21772:1 21778:1 21779:1 21784:5 21795:2 21796:1 21801:2 21807:1 21812:4 21846:1 21858:1 21859:1 21868:8 21869:3 21872:1 21877:3 21905:2 21915:1 21925:3 21926:3 21958:1 21961:1 21962:1 21963:1 21993:1 22027:2 22032:1 22036:1 22047:1 22058:1 22063:1 22065:1 22082:1 22089:1 22090:2 22099:1 22105:2 22131:1 22143:1 22168:1 22171:1 22188:1 22197:2 22202:1 22220:1 22226:1 22239:1 22240:2 22253:1 22264:1 22284:1 22295:9 22343:1 22344:1 22346:1 22363:1 22370:1 22375:3 22377:2 22397:1 22410:1 22426:1 22446:1 22459:1 22460:2 22461:5 22477:1 22491:5 22506:1 22557:2 22558:1 22564:1 22567:1 22598:1 22600:1 22654:2 22672:2 22676:1 22689:1 22691:1 22697:1 22702:2 22706:3 22707:2 22723:1 22742:2 22745:1 22757:1 22759:2 22765:1 22787:1 22794:1 22795:2 22796:3 22797:1 22801:2 22819:2 22821:1 22848:3 22862:1 22876:2 22891:2 22907:1 22910:1 22919:1 22922:1 22941:1 22944:3 22955:1 22969:1 22976:6 22977:5 22993:2 23011:1 23013:1 23016:1 23023:1 23026:1 23031:2 23035:1 23037:2 23038:1 23083:1 23088:1 23095:1 23106:2 23111:1 23135:1 23147:1 23162:2 23164:1 23173:1 23179:1 23180:2 23203:1 23209:1 23238:1 23244:1 23246:1 23256:1 23265:2 23270:1 23283:1 23291:1 23311:1 23316:1 23334:1 23345:1 23350:4 23376:1 23383:1 23388:1 23389:1 23410:12 23411:2 23418:1 23437:1 23458:3 23480:2 23484:1 23507:1 23511:1 23520:2 23530:1 23533:1 23538:1 23548:1 23552:3 23566:1 23597:1 23633:1 23643:1 23665:1 23666:2 23691:2 23692:1 23693:1 23698:1 23699:1 23703:2 23734:1 23735:1 23740:1 23760:1 23763:1 23787:1 23796:1 23819:1 23837:1 23853:1 23855:1 23888:1 23902:1 23905:1 23924:1 23927:1 23937:2 23957:2 23963:1 23968:1 23986:1 23987:1 23990:1 24003:1 24016:1 24017:3 24018:1 24037:1 24042:1 24049:1 24053:1 24064:1 24084:1 24096:1 24107:1 24108:1 24109:2 24119:4 24120:2 24121:1 24141:2 24148:1 24149:1 24150:5 24162:1 24164:2 24177:2 24179:3 24184:1 24190:2 24212:2 24217:1 24221:6 24230:2 24232:1 24233:1 24237:1 24240:1 24241:1 24251:2 24271:1 24282:1 24292:2 24295:2 24304:1 24329:1 24332:1 24345:1 24361:1 24366:3 24404:2 24407:1 24412:1 24414:1 24415:1 24416:1 24419:1 24427:1 24428:1 24432:1 24439:1 24442:1 24443:1 24444:1 24445:1 24455:1 24459:1 24464:2 24469:1 24474:1 24476:1 24479:1 24480:2 24485:1 24486:1 24488:1 24489:1 24492:1 24495:2 24498:1 24502:2 24503:1 24508:2 24511:2 24512:1 24515:1 24538:1 24548:1 24552:1 24588:2 24596:3 24598:1 24615:1 24644:1 24658:1 24664:1 24665:2 24667:1 24683:1 24684:1 24709:1 24724:1 24729:1 24745:1 24751:2 24766:1 24767:4 24769:2 24771:1 24775:1 24777:3 24794:2 24805:1 24810:2 24816:1 24818:1 24865:1 24868:1 24875:1 24899:1 24905:2 24917:1 24949:1 24952:1 24962:1 24979:1 24986:2 25004:1 25022:5 25027:1 25031:1 25036:1 25037:4 25044:1 25054:1 25066:1 25069:1 25075:1 25083:1 25093:1 25096:1 25099:1 25102:1 25110:8 25112:1 25116:1 25117:1 25126:1 25129:1 25137:1 25141:5 25159:2 25164:1 25208:1 25215:1 25219:1 25245:2 25251:5 25260:1 25276:1 25278:7 25282:1 25284:1 25287:1 25290:1 25296:2 25310:1 25312:1 25316:1 25322:1 25324:1 25325:1 25327:2 25334:1 25342:1 25348:1 25351:1 25363:5 25364:1 25368:1 25382:1 25388:1 25400:1 25402:1 25410:1 25433:1 25456:2 25457:2 25459:1 25460:2 25462:1 25467:1 25472:2 25477:1 25495:1 25514:1 25515:2 25519:1 25525:1 25527:3 25528:1 25530:1 25540:4 25542:2 25555:1 25557:1 25571:1 25583:1 25584:1 25587:1 25591:1 25595:1 25602:1 25603:1 25619:1 25624:1 25647:1 25679:1 25685:1 25688:1 25699:1 25707:1 25713:1 25717:1 25732:1 25741:1 25746:1 25753:1 25755:1 25758:1 25770:2 25772:1 25777:1 25779:1 25809:1 25811:1 25816:1 25829:1 25851:1 25854:2 25860:2 25880:1 25883:1 25901:3 25912:1 25915:1 25917:1 25956:1 25960:1 25968:1 25971:1 25987:1 25991:2 25992:2 25993:1 25997:1 26011:1 26027:2 26050:1 26053:1 26059:1 26070:1 26076:2 26091:2 26092:2 26097:1 26098:1 26099:1 26122:1 26125:2 26128:4 26130:1 26133:1 26150:1 26163:4 26175:2 26205:2 26209:1 26215:1 26224:1 26226:1 26227:1 26228:1 26231:3 26232:1 26239:3 26241:2 26242:1 26244:2 26246:1 26247:1 26250:3 26252:1 26264:1 26270:1 26279:4 26299:1 26318:1 26325:1 26330:1 26340:1
7 10:1 21:1 24:1 32:1 38:1 47:1 73:1 83:1 110:1 116:1 155:4 164:5 182:2 193:2 200:1 207:2 215:2 218:2 234:1 248:1 260:1 274:1 276:1 294:2 298:3 310:1 327:2 328:1 334:1 340:1 345:1 346:1 347:1 360:1 391:1 402:1 407:1 410:1 411:2 412:1 429:1 433:1 437:1 438:1 441:2 467:1 471:1 475:1 479:1 501:2 508:1 510:4 532:2 538:5 553:1 603:6 605:2 613:1 626:1 651:1 667:1 675:1 676:1 714:1 722:1 724:1 726:8 728:1 746:2 750:4 753:1 769:1 781:2 782:3 801:1 807:5 810:1 815:1 841:2 842:2 845:3 852:1 854:2 877:1 882:1 890:1 933:1 945:1 962:2 971:2 982:3 984:2 1010:1 1013:2 1018:1 1021:1 1042:1 1052:1 1054:1 1056:1 1068:1 1071:2 1076:1 1081:1 1083:1 1088:1 1094:1 1104:1 1152:1 1163:1 1168:3 1190:2 1192:1 1203:1 1211:1 1220:1 1224:1 1235:1 1241:1 1242:1 1245:2 1248:1 1272:1 1276:2 1279:3 1283:1 1287:1 1295:1 1310:1 1345:2 1386:2 1394:2 1396:1 1424:1 1426:1 1436:3 1439:3 1444:1 1449:1 1450:3 1451:3 1466:2 1467:1 1495:1 1502:2 1517:1 1524:1 1528:1 1538:1 1539:3 1541:2 1547:1 1552:1 1579:1 1581:3 1593:1 1596:1 1605:4 1608:1 1611:1 1628:2 1639:2 1653:3 1656:1 1657:1 1668:1 1672:1 1702:1 1704:1 1705:1 1719:1 1721:1 1731:2 1738:2 1741:1 1758:1 1788:1 1789:1 1790:1 1796:1 1797:1 1815:4 1827:1 1836:1 1848:5 1858:1 1868:2 1879:3 1884:1 1888:2 1904:1 1914:1 1916:2 1918:1 1919:1 1924:1 1925:1 1927:2 1930:5 1941:2 1943:1 1948:1 1952:1 1958:1 1964:1 1967:6 1968:1 1970:2 1973:3 1974:1 1978:4 1980:1 1981:2 1982:2 1986:1 1987:1 1990:5 1994:1 1997:3 2000:2 2002:6 2004:1 2044:1 2053:1 2057:1 2064:1 2070:1 2078:1 2086:1 2089:1 2091:2 2097:1 2099:1 2116:1 2117:1 2122:1 2145:1 2155:1 2172:1 2181:1 2200:1 2210:2 2220:1 2222:1 2223:1 2232:1 2237:1 2239:1 2241:1 2247:1 2258:1 2270:1 2273:1 2316:1 2322:1 2338:1 2355:3 2357:1 2359:1 2364:2 2378:1 2394:3 2398:2 2403:1 2406:1 2429:1 2431:2 2445:4 2446:1 2450:3 2453:3 2460:8 2466:1 2472:1 2500:1 2502:1 2505:1 2506:1 2508:3 2534:1 2539:1 2541:1 2545:5 2562:1 2568:1 2575:1 2579:2 2587:1 2590:22 2605:1 2614:2 2616:1 2617:1 2619:2 2641:1 2650:1 2667:1 2683:1 2694:1 2696:1 2711:1 2737:1 2752:2 2760:3 2767:1 2798:1 2814:1 2843:1 2858:1 2859:2 2868:1 2869:1 2875:1 2893:6 2895:1 2900:1 2915:1 2918:10 2922:1 2948:2 2956:1 2977:1 2982:2 3024:1 3037:1 3038:1 3044:1 3045:1 3046:1 3084:1 3088:1 3091:2 3095:1 3106:1 3118:1 3123:1 3124:1 3149:1 3153:1 3155:2 3159:2 3167:1 3169:1 3181:2 3187:1 3189:1 3191:1 3205:1 3210:1 3231:1 3235:3 3236:1 3238:2 3239:1 3253:1 3270:2 3276:1 3290:1 3298:1 3324:1 3332:1 3343:1 3362:1 3365:2 3375:1 3376:1 3381:1 3382:2 3395:1 3413:1 3421:2 3422:1 3432:1 3435:2 3443:1 3450:1 3453:1 3461:2 3467:1 3474:1 3481:1 3504:2 3511:2 3518:1 3529:2 3530:1 3537:1 3571:1 3575:1 3576:1 3579:1 3613:1 3617:5 3622:2 3624:1 3661:2 3671:1 3682:1 3683:1 3688:1 3698:3 3706:3 3711:2 3712:2 3715:1 3723:1 3732:1 3733:1 3746:1 3752:1 3763:1 3782:2 3789:1 3791:2 3793:1 3795:1 3805:2 3817:2 3832:1 3843:2 3848:1 3851:1 3869:1 3891:1 3896:1 3897:2 3899:1 3908:1 3916:1 3922:1 3930:1 3942:1 3944:1 3957:1 3997:5 4004:1 4011:1 4021:1 4022:1 4028:1 4035:1 4036:1 4079:1 4082:1 4096:2 4097:2 4098:1 4113:2 4120:1 4123:3 4130:1 4136:1 4137:3 4140:1 4148:1 4193:1 4199:1 4203:1 4204:1 4213:1 4215:1 4247:1 4250:1 4253:1 4284:3 4292:1 4296:1 4305:27 4308:1 4323:1 4339:1 4342:1 4373:1 4376:1 4395:1 4405:1 4414:4 4429:5 4430:8 4433:2 4436:2 4437:2 4441:1 4443:2 4449:2 4455:1 4456:2 4457:2 4458:1 4459:2 4484:5 4513:1 4528:2 4533:1 4536:1 4564:4 4573:1 4597:1 4602:5 4625:2 4652:1 4674:1 4702:1 4703:1 4709:1 4719:1 4726:1 4733:1 4735:1 4739:1 4742:1 4744:2 4756:1 4765:1 4766:1 4784:1 4803:1 4804:1 4812:1 4880:1 4881:1 4888:2 4897:1 4919:1 4922:1 4925:3 4946:1 4948:1 4953:1 4970:3 4978:1 4979:1 5006:1 5007:2 5010:1 5020:1 5046:1 5052:1 5053:1 5065:1 5068:2 5071:1 5081:2 5126:2 5137:1 5145:1 5193:1 5203:1 5220:2 5225:1 5267:1 5275:1 5300:1 5306:1 5319:2 5322:2 5351:1 5379:1 5395:1 5407:1 5408:1 5412:1 5424:1 5427:1 5441:6 5452:1 5455:1 5470:1 5471:2 5478:1 5499:1 5507:1 5516:2 5542:8 5566:5 5581:5 5585:1 5586:1 5600:2 5617:4 5618:1 5625:6 5627:3 5631:2 5632:1 5636:2 5637:1 5638:2 5640:4 5645:2 5647:2 5661:1 5673:1 5690:1 5732:1 5741:1 5756:1 5767:2 5769:1 5782:1 5797:1 5800:1 5810:1 5813:2 5818:1 5844:1 5847:3 5866:1 5886:1 5890:1 5901:1 5911:1 5918:5 5974:1 5987:2 5990:4 6009:4 6010:3 6043:1 6045:1 6098:2 6099:1 6102:1 6105:2 6106:1 6108:1 6111:1 6117:2 6135:1 6138:1 6152:1 6167:1 6170:1 6178:1 6182:1 6186:1 6187:1 6188:1 6230:1 6246:3 6273:1 6282:2 6284:1 6320:2 6322:2 6326:2 6328:1 6330:1 6336:1 6338:2 6345:1 6356:2 6381:1 6384:1 6385:1 6413:1 6431:1 6459:1 6460:1 6478:1 6490:1 6502:1 6514:3 6515:1 6519:1 6529:1 6544:1 6552:2 6553:1 6561:1 6564:1 6571:1 6589:4 6603:1 6614:1 6621:1 6624:4 6632:1 6633:1 6638:1 6649:1 6653:1 6679:1 6680:1 6702:2 6712:1 6723:4 6729:1 6740:6 6741:7 6761:3 6789:1 6790:1 6793:2 6794:1 6803:37 6812:1 6822:2 6824:22 6851:1 6872:1 6891:2 6930:2 6955:1 6957:1 6963:1 6974:1 6979:1 6986:4 6990:1 6996:1 6997:1 7001:1 7004:1 7010:1 7025:1 7036:1 7072:1 7074:1 7083:2 7093:1 7104:1 7126:1 7129:1 7151:5 7152:2 7154:1 7157:1 7180:3 7194:1 7201:3 7205:2 7219:20 7230:1 7246:2 7254:1 7264:1 7274:3 7297:1 7303:1 7305:1 7306:1 7307:1 7315:3 7337:1 7341:1 7348:1 7358:1 7363:4 7379:2 7382:2 7391:1 7399:1 7416:2 7420:2 7432:1 7436:1 7438:1 7439:1 7447:1 7449:1 7462:3 7469:2 7473:2 7499:1 7503:2 7534:1 7536:1 7538:2 7539:2 7542:1 7549:2 7560:1 7564:1 7565:1 7570:1 7589:2 7610:3 7611:7 7628:2 7642:2 7644:1 7651:1 7670:1 7673:1 7683:1 7688:1 7697:2 7699:1 7700:2 7714:1 7725:1 7737:1 7741:1 7742:1 7743:1 7767:1 7790:2 7791:2 7795:1 7804:1 7806:1 7807:2 7815:2 7835:3 7837:3 7855:1 7872:1 7910:1 7923:1 7937:2 7940:1 7948:1 7960:1 7966:2 7983:2 7988:1 8021:2 8028:6 8033:1 8037:1 8071:1 8073:1 8079:1 8090:2 8104:2 8121:1 8140:1 8151:1 8156:1 8158:2 8167:1 8169:1 8170:1 8175:1 8178:1 8179:2 8180:1 8201:1 8203:1 8219:1 8229:1 8232:3 8237:1 8253:1 8275:1 8277:1 8296:1 8309:2 8322:2 8326:1 8328:1 8340:3 8342:1 8355:1 8372:1 8377:4 8378:1 8383:1 8411:2 8432:3 8440:1 8447:1 8455:2 8469:2 8476:1 8483:4 8489:1 8496:1 8498:2 8499:3 8510:4 8532:1 8534:1 8550:3 8561:1 8563:1 8601:4 8616:1 8619:1 8624:1 8628:1 8631:1 8643:1 8657:1 8659:1 8660:3 8664:1 8667:1 8678:1 8687:1 8727:2 8730:1 8740:1 8747:1 8748:1 8752:1 8755:2 8759:1 8769:1 8785:1 8789:1 8824:1 8825:1 8828:1 8834:1 8839:3 8867:1 8872:1 8877:1 8882:1 8892:1 8902:1 8909:4 8911:1 8914:1 8917:2 8929:2 8944:1 8946:1 8956:3 8959:2 8964:1 8965:2 8969:1 8970:1 8973:1 8989:1 8993:1 8996:1 9018:1 9029:1 9033:2 9044:2 9047:1 9054:1 9056:2 9058:1 9059:1 9061:1 9070:1 9075:1 9085:1 9110:3 9113:2 9117:1 9126:1 9163:2 9167:1 9209:1 9216:1 9220:3 9255:2 9264:1 9282:1 9285:1 9288:1 9292:1 9293:2 9312:3 9318:1 9322:1 9337:1 9344:1 9353:1 9362:1 9374:3 9376:1 9387:1 9419:1 9431:1 9464:1 9466:1 9473:4 9489:1 9490:1 9496:1 9504:1 9506:1 9524:1 9529:1 9532:1 9534:1 9535:1 9539:1 9562:1 9575:2 9606:1 9611:1 9623:2 9627:1 9644:1 9645:1 9659:1 9660:1 9661:1 9664:1 9697:2 9702:2 9708:1 9709:2 9711:1 9712:8 9718:1 9736:1 9747:1 9750:1 9754:1 9776:1 9778:1 9791:1 9798:1 9803:2 9808:1 9831:1 9835:1 9837:1 9847:2 9870:2 9872:2 9876:1 9879:1 9894:1 9900:1 9912:1 9913:1 9943:1 9946:1 9965:1 9968:3 9992:1 9995:1 9997:1 10003:2 10019:1 10040:2 10062:1 10066:1 10068:1 10069:1 10082:2 10084:1 10087:1 10093:2 10098:2 10103:1 10109:1 10132:2 10133:6 10143:1 10166:1 10182:1 10186:1 10187:1 10192:1 10195:1 10204:1 10207:2 10213:1 10221:1 10233:1 10239:1 10249:3 10251:1 10274:2 10278:1 10318:4 10320:3 10324:1 10338:1 10341:2 10342:1 10350:1 10360:2 10362:2 10366:1 10367:1 10368:3 10370:1 10377:3 10379:4 10380:1 10381:2 10382:1 10383:4 10384:2 10387:4 10388:3 10401:3 10407:1 10411:1 10427:1 10428:1 10429:2 10441:2 10442:1 10443:1 10453:1 10460:1 10464:3 10469:1 10481:1 10487:1 10502:1 10513:1 10514:1 10518:5 10523:1 10526:1 10530:1 10570:1 10572:1 10573:1 10592:2 10597:1 10605:1 10639:3 10665:2 10676:1 10681:5 10684:1 10694:5 10703:1 10704:1 10714:1 10716:1 10729:1 10745:1 10756:1 10757:1 10764:1 10774:1 10782:1 10783:1 10785:1 10788:2 10800:1 10801:1 10813:1 10820:1 10838:1 10865:1 10875:2 10883:1 10894:1 10900:1 10941:1 10942:2 10951:1 10953:1 10963:1 10974:1 10986:1 11003:1 11009:1 11011:1 11063:1 11086:1 11087:2 11090:1 11092:1 11093:1 11105:2 11110:1 11112:1 11115:1 11116:2 11126:1 11134:5 11145:1 11149:1 11169:1 11170:2 11174:1 11203:2 11217:1 11220:1 11228:1 11233:1 11239:1 11261:7 11273:1 11278:1 11283:1 11294:1 11300:1 11305:2 11307:2 11312:1 11314:1 11316:1 11317:1 11332:1 11345:1 11353:2 11355:1 11358:1 11362:2 11370:1 11373:2 11376:1 11383:1 11387:1 11396:2 11398:1 11403:1 11414:1 11426:1 11427:2 11431:2 11432:1 11433:1 11445:1 11460:1 11479:1 11491:1 11495:3 11496:1 11506:1 11514:1 11539:2 11549:1 11569:2 11570:1 11575:1 11588:1 11616:2 11621:2 11632:5 11663:1 11672:1 11694:1 11702:1 11704:1 11714:1 11733:1 11761:1 11767:2 11778:3 11779:2 11780:1 11790:3 11797:1 11805:2 11813:1 11832:1 11848:1 11865:6 11894:2 11917:1 11918:2 11921:1 11935:1 11938:1 11970:1 11975:2 11988:1 11992:4 11998:1 12000:3 12018:3 12029:1 12058:1 12069:1 12073:2 12087:1 12089:2 12095:1 12096:5 12097:1 12098:1 12099:1 12106:1 12112:3 12114:1 12117:1 12120:1 12121:1 12122:2 12124:1 12167:1 12170:2 12182:1 12193:4 12199:3 12217:2 12219:2 12225:1 12238:3 12239:2 12244:1 12275:1 12277:2 12279:1 12281:1 12285:2 12293:1 12309:1 12318:1 12338:1 12343:1 12351:3 12354:1 12364:2 12381:1 12390:1 12394:1 12395:1 12405:1 12409:1 12410:1 12423:2 12426:1 12456:2 12459:1 12468:2 12481:2 12484:1 12488:2 12495:1 12500:1 12501:1 12504:1 12528:1 12530:1 12542:2 12545:1 12550:2 12556:2 12561:1 12563:1 12568:1 12569:1 12584:2 12586:1 12607:1 12617:1 12625:1 12642:1 12657:1 12672:2 12673:1 12678:1 12681:3 12686:1 12693:2 12695:2 12697:3 12704:1 12706:1 12707:1 12712:1 12722:1 12734:1 12789:1 12794:1 12816:1 12817:1 12826:1 12827:3 12830:1 12831:1 12837:1 12840:3 12844:1 12845:1 12846:2 12847:1 12853:2 12873:1 12889:1 12897:1 12898:1 12908:2 12919:1 12920:1 12933:1 12936:1 12944:1 12947:2 12951:1 12958:1 12962:2 12980:2 12987:1 12994:1 12996:1 13003:1 13008:1 13020:1 13021:2 13027:1 13049:1 13053:2 13059:2 13072:1 13086:1 13093:1 13098:1 13101:1 13102:1 13116:1 13120:1 13132:1 13147:1 13165:1 13182:2 13200:1 13219:2 13227:1 13232:1 13234:3 13242:1 13257:2 13258:1 13261:1 13303:1 13316:1 13319:1 13341:1 13349:1 13379:1 13396:1 13402:1 13414:1 13421:1 13426:1 13428:1 13440:1 13452:2 13453:1 13466:1 13473:1 13481:1 13488:1 13505:3 13507:1 13532:1 13545:2 13549:1 13551:1 13577:1 13598:3 13615:1 13624:1 13625:1 13626:6 13637:2 13647:1 13663:1 13673:2 13686:3 13687:2 13700:2 13704:1 13721:1 13726:3 13733:1 13734:7 13740:4 13744:1 13764:1 13772:1 13775:6 13804:1 13810:1 13821:1 13831:1 13833:1 13840:1 13857:1 13865:2 13869:1 13870:1 13872:2 13875:2 13876:4 13877:1 13886:2 13895:1 13897:2 13898:1 13899:5 13900:2 13909:1 13910:1 13916:1 13932:1 13938:1 13949:1 13952:2 13953:1 13957:1 13962:1 13964:1 13972:1 13987:2 13988:1 13991:1 14014:2 14040:1 14047:1 14062:1 14069:1 14084:1 14108:1 14143:6 14146:1 14149:1 14168:1 14169:1 14174:1 14179:1 14183:1 14193:1 14216:2 14219:1 14226:1 14227:1 14275:1 14276:2 14284:4 14293:3 14313:1 14319:1 14324:1 14327:2 14358:1 14360:1 14367:1 14369:1 14373:2 14374:1 14386:1 14387:3 14389:3 14390:1 14393:1 14394:4 14398:2 14399:1 14412:1 14433:1 14471:1 14477:1 14480:1 14481:1 14488:1 14490:1 14515:1 14516:1 14524:1 14526:1 14548:1 14554:2 14559:1 14571:1 14578:2 14580:3 14596:3 14597:1 14608:2 14609:1 14617:2 14621:1 14634:1 14649:2 14652:2 14654:1 14656:1 14657:1 14679:3 14688:1 14694:1 14695:3 14696:1 14700:2 14704:2 14718:1 14720:1 14745:1 14747:2 14777:1 14782:1 14783:1 14786:1 14794:5 14804:1 14814:1 14823:19 14831:1 14841:1 14859:1 14864:2 14869:1 14878:1 14893:2 14895:2 14908:3 14913:1 14926:1 14967:1 14976:1 15005:1 15006:1 15029:1 15036:1 15043:1 15045:1 15047:1 15054:1 15057:1 15064:1 15068:1 15069:3 15083:1 15109:2 15117:1 15119:1 15139:1 15153:3 15156:1 15161:2 15165:1 15169:1 15176:1 15178:3 15196:2 15211:1 15212:1 15224:1 15242:1 15254:1 15265:1 15266:1 15267:1 15276:4 15285:1 15289:1 15291:1 15297:2 15302:2 15330:1 15337:1 15362:1 15365:2 15380:2 15386:1 15388:1 15401:2 15406:2 15409:2 15415:1 15417:1 15419:1 15420:1 15421:1 15432:1 15440:1 15441:1 15448:1 15454:1 15455:1 15458:1 15460:1 15476:2 15505:1 15546:1 15550:1 15556:1 15565:1 15570:1 15583:1 15607:1 15642:1 15644:1 15683:2 15699:1 15723:1 15733:2 15738:1 15741:3 15746:1 15748:2 15749:1 15753:1 15788:1 15791:1 15793:1 15795:1 15799:3 15814:1 15828:1 15833:1 15842:1 15860:2 15870:3 15901:1 15914:2 15920:1 15934:3 15942:1 15949:1 15967:2 15975:1 15979:1 15988:1 15989:1 16002:1 16003:1 16017:1 16029:2 16030:1 16037:3 16046:1 16060:1 16068:1 16079:1 16084:1 16112:1 16113:2 16117:1 16161:1 16162:1 16172:1 16176:1 16190:1 16197:1 16208:1 16211:1 16216:7 16225:1 16247:1 16255:1 16265:1 16266:1 16281:1 16301:9 16309:3 16319:3 16326:1 16336:1 16360:1 16374:1 16381:1 16388:3 16390:2 16409:1 16419:1 16442:1 16444:1 16446:3 16457:1 16472:1 16476:1 16481:1 16496:1 16498:3 16508:2505 16509:1 16512:1 16545:2 16559:3 16567:1 16600:1 16603:1 16604:1 16609:2 16647:3 16650:2 16670:1 16677:1 16678:2 16693:1 16694:1 16703:1 16713:1 16719:1 16722:2 16735:3 16738:1 16767:2 16787:3 16793:1 16796:1 16807:1 16817:1 16827:1 16834:2 16871:1 16894:3 16904:1 16910:2 16914:1 16932:1 16936:1 16942:1 16951:1 16959:1 16961:1 16974:1 16987:1 16993:1 16996:1 16997:1 17002:2 17008:2 17009:1 17017:1 17024:1 17035:1 17042:1 17054:2 17065:1 17077:1 17087:4 17092:1 17095:1 17110:1 17123:3 17125:1 17145:1 17151:1 17153:1 17157:1 17163:1 17165:1 17182:1 17188:6 17192:1 17195:3 17202:1 17220:2 17223:1 17236:4 17256:1 17288:1 17293:1 17295:2 17296:1 17300:1 17327:2 17337:2 17355:3 17358:1 17359:1 17373:1 17385:1 17402:1 17409:1 17424:1 17430:1 17437:2 17454:1 17464:2 17468:1 17480:1 17494:2 17495:1 17500:1 17511:2 17512:1 17514:1 17516:2 17528:3 17530:1 17534:2 17544:18 17548:1 17558:1 17562:1 17565:1 17569:1 17582:1 17589:1 17595:5 17598:1 17609:1 17615:1 17653:1 17664:1 17665:2 17689:7 17706:1 17711:1 17713:1 17715:1 17716:1 17721:1 17731:1 17732:1 17739:2 17759:1 17763:1 17768:1 17769:4 17775:1 17781:3 17802:3 17803:1 17804:1 17810:1 17815:1 17822:1 17824:2 17826:1 17834:1 17837:3 17843:1 17845:1 17847:1 17858:2 17863:1 17873:3 17875:1 17884:1 17886:1 17902:1 17919:1 17931:22 17940:1 17941:1 17945:1 17956:1 17957:1 17960:2 17967:1 17977:1 17991:1 17993:1 18039:1 18045:1 18047:1 18076:1 18097:1 18102:1 18121:2 18132:1 18136:1 18153:2 18154:1 18158:2 18160:2 18184:1 18193:3 18198:1 18204:1 18206:1 18212:1 18314:1 18315:1 18317:2 18333:1 18342:2 18343:2 18357:2 18378:1 18381:1 18383:3 18388:1 18397:1 18403:1 18411:1 18430:2 18434:1 18445:2 18447:1 18454:1 18460:1 18463:1 18464:1 18486:2 18503:1 18507:1 18509:1 18511:2 18519:3 18524:1 18525:1 18527:17 18534:1 18535:1 18542:3 18544:5 18553:1 18563:2 18566:1 18571:1 18572:1 18573:1 18601:1 18619:1 18636:1 18648:1 18649:3 18680:1 18692:4 18706:2 18760:2 18762:1 18773:1 18774:1 18777:1 18779:1 18780:2 18781:1 18782:1 18797:2 18800:1 18807:1 18812:3 18815:1 18816:1 18823:1 18828:1 18840:1 18848:1 18875:1 18879:1 18900:1 18915:1 18917:3 18920:6 18937:1 18942:2 18946:1 18967:2 18972:1 18979:1 18996:1 19006:1 19017:1 19024:1 19025:1 19032:2 19035:1 19039:1 19042:1 19043:1 19056:6 19062:2 19064:1 19070:2 19071:1 19082:1 19105:2 19108:1 19110:1 19120:1 19125:1 19127:3 19128:1 19131:1 19132:5 19133:1 19139:2 19141:1 19142:2 19154:1 19174:1 19175:2 19196:1 19197:1 19201:1 19203:1 19212:1 19219:2 19239:2 19249:2 19275:3 19276:2 19285:3 19296:2 19298:1 19314:1 19325:1 19332:1 19348:1 19384:1 19421:2 19422:1 19433:1 19434:4 19436:2 19438:1 19455:5 19456:1 19459:1 19467:1 19490:2 19500:1 19535:2 19548:1 19558:2 19568:1 19575:1 19600:5 19621:1 19624:2 19630:1 19632:2 19636:2 19638:1 19644:1 19645:1 19648:1 19656:1 19665:1 19670:1 19677:1 19681:1 19683:2 19685:1 19696:1 19709:1 19714:1 19725:1 19738:1 19740:2 19743:1 19744:1 19748:2 19758:1 19759:1 19763:1 19765:6 19787:2 19798:1 19801:1 19817:3 19822:1 19831:1 19832:1 19833:1 19842:1 19843:1 19858:1 19869:3 19877:1 19885:1 19887:1 19888:1 19889:1 19898:1 19899:2 19906:1 19908:1 19909:1 19916:1 19919:2 19921:1 19923:1 19932:1 19937:1 19938:4 19942:2 19946:1 19958:2 19960:1 19969:1 19970:2 19991:2 19998:1 19999:5 20011:1 20025:2 20038:1 20039:1 20052:2 20059:2 20062:1 20063:1 20086:2 20119:1 20124:1 20132:1 20152:1 20160:2 20166:3 20172:1 20173:1 20186:3 20199:3 20203:1 20204:2 20210:1 20239:1 20240:1 20252:1 20262:1 20268:1 20272:1 20282:1 20287:1 20289:1 20297:8 20301:1 20307:1 20309:1 20312:1 20313:1 20316:1 20320:2 20333:3 20334:2 20361:1 20374:1 20379:1 20387:1 20390:1 20399:2 20400:2 20409:1 20413:1 20421:1 20427:1 20438:1 20453:1 20455:1 20457:1 20461:1 20482:2 20485:2 20508:2 20514:1 20526:1 20527:1 20541:2 20542:1 20545:1 20547:1 20554:1 20565:1 20572:1 20577:1 20606:1 20617:1 20640:2 20642:1 20652:1 20695:2 20703:1 20707:1 20713:1 20717:1 20742:3 20750:2 20754:1 20761:1 20765:1 20770:1 20773:1 20775:1 20802:1 20818:3 20827:1 20835:3 20837:2 20840:1 20841:3 20868:1 20870:3 20888:4 20891:1 20893:1 20894:1 20910:1 20927:1 20929:1 20941:1 20963:1 20975:1 20991:1 21000:2 21004:1 21006:1 21013:1 21066:2 21070:1 21075:1 21077:2 21080:1 21081:1 21109:1 21116:1 21123:1 21132:1 21151:3 21153:1 21154:1 21182:1 21194:1 21211:1 21215:1 21222:1 21232:1 21235:1 21243:1 21296:1 21303:1 21311:2 21315:1 21331:1 21341:1 21344:3 21346:1 21392:1 21397:1 21400:1 21416:2 21417:1 21432:2 21441:1 21451:2 21455:1 21481:1 21483:1 21494:1 21503:1 21504:2 21508:1 21519:1 21526:1 21529:2 21537:2 21571:1 21578:1 21582:3 21599:1 21605:2 21621:1 21631:2 21642:2 21645:1 21684:1 21689:2 21694:1 21715:1 21719:1 21751:2 21752:2 21757:1 21762:2 21765:1 21767:1 21768:1 21769:3 21770:2 21772:1 21778:1 21779:1 21784:5 21795:2 21796:1 21801:2 21807:1 21812:5 21821:1 21846:1 21858:1 21859:1 21868:8 21869:3 21872:1 21877:3 21905:2 21915:1 21925:3 21926:3 21932:2 21958:1 21961:1 21962:1 21963:1 21993:1 22027:2 22032:1 22033:1 22036:1 22047:1 22058:1 22063:1 22065:1 22082:1 22089:1 22090:2 22099:1 22105:2 22131:1 22143:1 22168:1 22171:1 22188:2 22197:3 22202:1 22220:1 22226:1 22239:1 22240:2 22253:1 22264:1 22284:1 22295:9 22343:1 22344:1 22346:1 22363:1 22370:1 22375:3 22377:2 22397:1 22410:1 22426:1 22446:1 22459:1 22460:2 22461:5 22477:1 22491:5 22506:1 22557:2 22558:1 22564:1 22567:1 22598:1 22600:1 22639:1 22654:2 22672:2 22676:1 22689:1 22691:1 22697:1 22702:4 22706:3 22707:2 22723:1 22742:2 22745:1 22757:1 22759:2 22765:1 22787:1 22794:1 22795:2 22796:3 22797:1 22801:2 22819:2 22821:1 22848:3 22862:1 22876:2 22891:2 22907:1 22910:1 22919:1 22922:1 22941:1 22944:3 22955:2 22969:1 22976:6 22977:6 22993:2 23011:1 23013:1 23016:1 23023:1 23026:1 23031:2 23035:2 23037:2 23038:1 23083:1 23088:1 23095:1 23106:2 23111:1 23135:1 23147:1 23162:2 23164:1 23173:1 23179:1 23180:2 23203:1 23209:1 23238:1 23244:1 23246:2 23256:1 23265:2 23270:1 23283:1 23291:1 23311:1 23316:1 23334:1 23345:1 23350:4 23376:1 23383:1 23388:1 23389:1 23410:12 23411:2 23418:1 23437:1 23458:3 23480:3 23484:1 23507:1 23511:1 23520:2 23527:1 23530:1 23533:1 23538:1 23548:1 23552:3 23566:1 23597:1 23633:1 23643:1 23665:1 23666:2 23677:1 23691:2 23692:1 23693:1 23698:1 23699:1 23703:2 23734:1 23735:1 23740:1 23760:1 23763:1 23787:1 23796:1 23819:1 23837:1 23853:1 23855:1 23880:1 23888:1 23902:1 23905:1 23924:1 23927:1 23937:2 23957:2 23963:1 23968:1 23986:1 23987:1 23990:1 24003:1 24016:1 24017:3 24018:1 24037:1 24042:1 24049:1 24053:1 24064:1 24084:1 24096:1 24107:1 24108:1 24109:2 24119:4 24120:2 24121:1 24141:2 24148:1 24149:1 24150:5 24162:1 24164:2 24177:2 24179:3 24184:1 24188:1 24190:2 24212:2 24217:1 24221:6 24230:2 24232:1 24233:1 24237:1 24240:1 24241:1 24251:2 24271:1 24282:1 24292:2 24295:2 24304:1 24329:1 24332:1 24345:3 24361:1 24366:3 24404:2 24407:1 24412:1 24414:1 24415:1 24416:1 24419:1 24427:1 24428:1 24432:1 24439:1 24442:1 24443:1 24444:1 24445:1 24449:1 24455:1 24459:2 24464:2 24469:1 24474:1 24476:1 24479:1 24480:2 24485:1 24486:1 24488:1 24489:1 24492:1 24495:2 24498:1 24502:2 24503:1 24508:2 24511:2 24512:1 24515:1 24538:1 24548:1 24552:1 24588:2 24591:1 24596:3 24598:1 24615:1 24644:1 24658:1 24664:1 24665:2 24667:1 24683:1 24684:1 24709:1 24724:1 24729:1 24745:1 24751:2 24766:1 24767:4 24769:2 24771:1 24775:1 24777:3 24794:2 24805:1 24810:2 24816:1 24818:1 24865:1 24868:1 24875:1 24899:1 24905:2 24917:1 24949:1 24952:1 24962:1 24979:1 24986:2 25004:1 25022:6 25027:1 25031:1 25036:1 25037:4 25044:1 25054:1 25066:1 25069:1 25075:1 25083:1 25093:1 25096:1 25099:1 25102:1 25110:8 25112:1 25116:1 25117:1 25126:1 25129:1 25137:1 25141:5 25159:2 25164:1 25208:1 25215:1 25219:1 25245:4 25251:6 25260:1 25276:1 25278:7 25282:1 25284:1 25287:1 25290:1 25296:2 25310:1 25312:1 25316:1 25322:1 25324:1 25325:1 25327:2 25334:1 25342:1 25348:1 25351:1 25363:5 25364:1 25368:1 25382:1 25388:1 25400:1 25402:1 25410:1 25433:1 25456:2 25457:2 25459:1 25460:2 25462:1 25467:1 25470:1 25472:2 25477:1 25495:1 25514:1 25515:2 25519:1 25525:1 25527:3 25528:1 25530:1 25540:4 25542:3 25555:1 25557:1 25571:1 25583:1 25584:1 25587:1 25591:1 25595:1 25602:1 25603:1 25619:1 25624:1 25647:1 25679:1 25685:1 25688:1 25699:1 25707:1 25713:1 25717:1 25732:1 25741:1 25746:1 25753:1 25755:1 25758:1 25770:3 25772:1 25777:1 25779:1 25799:1 25809:1 25811:1 25816:1 25829:1 25851:1 25854:2 25860:2 25880:1 25883:1 25901:3 25912:1 25915:1 25917:1 25956:1 25960:1 25968:1 25971:1 25987:1 25991:2 25992:2 25993:1 25997:1 26011:1 26027:2 26050:1 26052:1 26053:1 26059:1 26070:1 26076:2 26091:2 26092:2 26097:1 26098:1 26099:1 26122:1 26125:2 26128:4 26130:1 26133:1 26150:1 26163:4 26175:2 26205:2 26209:1 26215:1 26224:1 26226:1 26227:1 26228:1 26231:3 26232:1 26239:3 26241:2 26242:1 26244:2 26246:1 26247:1 26250:3 26252:1 26264:1 26270:1 26279:6 26299:1 26318:1 26325:1 26330:1 26340:1
7 10:1 21:1 24:1 32:1 38:1 47:1 73:1 83:1 110:1 116:1 155:5 164:6 182:2 193:2 200:1 207:2 215:2 218:2 234:1 248:1 256:1 260:1 274:1 276:1 294:2 298:3 310:1 327:2 328:1 334:1 340:1 345:1 346:1 347:1 360:2 391:1 402:1 407:1 408:1 410:1 411:2 412:1 429:1 433:1 437:1 438:1 441:2 467:1 471:1 475:1 479:1 501:2 508:1 510:4 532:2 538:5 553:1 603:6 605:2 613:1 626:1 651:1 667:1 675:1 676:1 714:1 722:1 724:1 726:8 728:1 746:2 750:4 753:2 769:1 781:2 782:3 801:1 803:1 807:5 810:1 815:1 841:2 842:2 845:3 852:1 854:2 877:1 879:1 882:1 890:1 933:1 939:1 945:1 962:2 971:2 982:3 984:2 1010:1 1013:2 1018:1 1021:1 1042:1 1052:1 1054:1 1056:1 1068:1 1071:2 1076:1 1081:1 1083:1 1088:1 1094:1 1104:1 1152:1 1163:1 1168:3 1190:2 1192:1 1203:1 1211:1 1220:1 1224:1 1235:1 1241:1 1242:1 1245:2 1248:1 1252:1 1272:1 1276:2 1279:3 1283:1 1287:1 1295:1 1310:1 1345:2 1386:2 1389:1 1394:2 1396:1 1424:1 1426:1 1436:3 1439:3 1444:1 1449:1 1450:3 1451:3 1466:2 1467:1 1495:1 1502:2 1517:1 1524:1 1528:1 1538:1 1539:3 1541:2 1547:1 1552:1 1579:1 1581:3 1593:1 1596:1 1605:4 1608:1 1611:1 1628:2 1639:2 1653:3 1656:1 1657:1 1668:1 1672:1 1702:1 1704:1 1705:1 1719:1 1721:1 1731:2 1738:2 1741:1 1758:1 1788:1 1789:1 1790:1 1796:1 1797:1 1815:4 1827:1 1836:1 1848:5 1858:1 1868:2 1879:3 1884:1 1888:2 1889:1 1904:1 1914:1 1916:2 1918:1 1919:1 1924:1 1925:1 1927:2 1930:5 1941:2 1943:1 1948:1 1952:1 1958:1 1964:1 1967:6 1968:1 1970:2 1973:3 1974:1 1978:4 1980:1 1981:2 1982:2 1986:1 1987:1 1990:5 1994:1 1997:3 2000:2 2002:6 2004:1 2044:1 2053:1 2057:1 2064:1 2070:1 2078:1 2086:1 2089:1 2091:2 2097:1 2099:1 2116:1 2117:1 2122:1 2145:1 2155:1 2172:1 2181:1 2200:1 2210:2 2220:1 2222:1 2223:1 2232:1 2237:1 2239:1 2241:1 2247:1 2255:1 2258:1 2270:1 2273:1 2316:1 2322:1 2338:1 2344:1 2355:3 2357:1 2359:1 2364:2 2378:1 2394:3 2398:2 2403:1 2406:1 2429:1 2431:2 2445:4 2446:1 2450:3 2453:3 2460:8 2466:1 2472:2 2500:1 2502:1 2505:1 2506:1 2508:3 2534:1 2539:1 2541:1 2545:5 2562:1 2568:1 2575:1 2579:2 2587:1 2590:22 2605:1 2614:2 2616:1 2617:1 2619:2 2641:1 2650:1 2667:1 2683:1 2694:1 2696:1 2711:2 2737:1 2752:3 2760:3 2767:1 2798:1 2814:1 2843:1 2858:1 2859:3 2868:1 2869:1 2875:1 2893:6 2895:1 2900:1 2915:1 2918:11 2922:1 2948:2 2956:1 2977:1 2982:2 3024:1 3037:1 3038:1 3044:1 3045:1 3046:1 3084:1 3088:1 3091:2 3095:1 3106:1 3118:1 3123:1 3124:1 3149:1 3153:1 3155:2 3159:2 3167:1 3169:1 3181:2 3187:1 3189:1 3191:1 3205:1 3210:1 3231:1 3235:3 3236:1 3238:2 3239:1 3253:1 3270:2 3276:1 3290:1 3298:1 3324:1 3332:1 3343:1 3362:1 3365:3 3375:1 3376:2 3381:1 3382:2 3395:1 3413:1 3421:2 3422:1 3432:1 3435:2 3443:1 3450:1 3453:1 3461:2 3467:1 3474:1 3481:1 3504:2 3511:2 3518:1 3529:3 3530:1 3537:1 3571:1 3575:1 3576:1 3579:1 3596:1 3613:1 3617:6 3622:2 3624:1 3655:1 3661:2 3671:1 3682:1 3683:1 3688:1 3698:3 3706:3 3711:2 3712:2 3715:1 3723:1 3732:1 3733:1 3746:1 3752:1 3763:3 3782:3 3789:1 3791:2 3793:1 3795:1 3805:2 3817:2 3832:1 3843:2 3848:1 3851:1 3869:1 3885:1 3891:1 3896:1 3897:2 3899:1 3908:1 3916:1 3922:1 3930:1 3942:1 3944:1 3957:1 3997:6 4004:1 4011:1 4021:1 4022:1 4028:1 4035:1 4036:1 4066:1 4079:1 4082:1 4096:2 4097:2 4098:1 4113:2 4120:2 4123:3 4130:1 4136:1 4137:3 4140:1 4148:1 4193:1 4199:1 4203:1 4204:1 4213:1 4215:1 4247:1 4250:1 4253:1 4284:3 4292:1 4296:1 4305:27 4308:1 4323:1 4339:1 4342:1 4373:1 4376:3 4388:1 4395:1 4405:1 4414:5 4429:5 4430:9 4433:2 4436:3 4437:2 4441:1 4443:2 4449:2 4455:1 4456:2 4457:2 4458:1 4459:3 4484:6 4513:1 4528:2 4533:1 4536:1 4564:4 4573:1 4597:1 4602:6 4625:2 4652:1 4674:1 4702:1 4703:1 4709:1 4719:1 4726:1 4733:1 4735:1 4739:1 4742:1 4744:2 4756:1 4765:1 4766:1 4784:1 4803:1 4804:1 4812:1 4880:1 4881:1 4888:2 4897:1 4919:1 4922:1 4925:3 4926:1 4946:1 4948:2 4953:1 4970:4 4978:1 4979:1 4989:1 5006:1 5007:2 5010:1 5012:1 5020:1 5046:1 5052:1 5053:1 5065:1 5068:2 5071:1 5081:2 5126:2 5137:1 5145:1 5179:1 5193:1 5203:1 5220:2 5225:1 5267:1 5275:1 5300:1 5306:1 5319:2 5322:2 5351:1 5379:1 5395:1 5407:2 5408:1 5412:1 5424:1 5427:1 5441:6 5452:1 5455:1 5470:1 5471:2 5478:1 5497:1 5499:1 5507:1 5516:2 5542:8 5566:6 5581:6 5585:1 5586:1 5600:2 5602:1 5617:4 5618:1 5625:7 5627:3 5631:2 5632:1 5634:1 5636:2 5637:1 5638:2 5640:4 5645:2 5647:2 5655:1 5661:1 5673:1 5690:1 5715:1 5732:1 5741:1 5756:1 5767:2 5769:1 5782:1 5797:1 5800:1 5810:1 5813:2 5818:1 5844:1 5847:3 5866:1 5886:1 5890:1 5901:1 5911:1 5918:5 5974:1 5987:2 5990:4 6009:4 6010:3 6043:1 6045:1 6098:2 6099:1 6102:1 6105:2 6106:1 6108:1 6111:1 6117:2 6135:1 6138:1 6152:1 6167:1 6170:1 6178:1 6182:1 6186:1 6187:1 6188:1 6230:1 6246:5 6273:1 6282:2 6284:1 6320:2 6322:2 6326:2 6328:1 6330:1 6336:1 6338:2 6345:1 6356:2 6381:1 6384:1 6385:1 6413:1 6431:1 6459:1 6460:1 6478:1 6490:1 6502:1 6514:3 6515:1 6519:1 6529:1 6544:1 6552:2 6553:1 6561:1 6564:1 6571:1 6589:4 6603:1 6614:1 6621:1 6624:4 6632:1 6633:1 6638:1 6649:1 6653:1 6679:1 6680:1 6702:2 6712:1 6723:4 6729:1 6740:8 6741:7 6761:3 6789:1 6790:1 6793:2 6794:1 6803:37 6812:1 6822:2 6824:22 6851:1 6872:1 6891:2 6930:2 6955:1 6957:1 6963:1 6974:1 6979:1 6986:4 6990:1 6996:1 6997:1 7001:1 7004:1 7010:1 7025:1 7036:1 7072:3 7074:1 7083:2 7093:1 7104:1 7126:1 7129:1 7151:5 7152:2 7154:1 7157:1 7180:3 7194:1 7201:3 7205:2 7219:20 7230:1 7245:1 7246:2 7254:2 7264:1 7274:3 7297:1 7303:1 7305:1 7306:1 7307:1 7315:3 7337:1 7341:1 7348:1 7358:2 7363:4 7379:2 7382:2 7391:1 7399:1 7416:2 7420:2 7432:1 7436:1 7438:1 7439:1 7447:1 7449:1 7462:3 7469:2 7473:2 7499:1 7503:2 7534:1 7536:1 7538:2 7539:2 7542:1 7549:2 7560:1 7564:1 7565:1 7570:1 7589:2 7610:3 7611:7 7628:2 7642:2 7644:1 7651:1 7670:1 7673:1 7683:1 7688:1 7697:2 7699:1 7700:2 7714:1 7725:1 7737:1 7741:1 7742:1 7743:1 7767:1 7790:2 7791:2 7795:1 7804:1 7806:1 7807:2 7815:2 7835:3 7837:3 7855:1 7872:1 7910:1 7923:1 7930:1 7937:2 7940:1 7948:1 7959:1 7960:1 7966:2 7983:2 7988:1 8021:2 8028:6 8033:1 8037:1 8071:1 8073:1 8079:1 8090:2 8104:2 8121:1 8140:1 8151:1 8156:1 8158:2 8167:1 8169:1 8170:1 8175:1 8178:1 8179:2 8180:1 8199:1 8201:1 8203:1 8219:1 8229:1 8232:3 8235:1 8237:1 8253:1 8275:1 8277:1 8296:1 8309:2 8322:2 8326:1 8328:1 8340:3 8342:1 8355:1 8372:2 8377:4 8378:1 8383:1 8411:2 8432:3 8440:1 8447:1 8455:2 8469:2 8476:1 8483:4 8489:1 8496:1 8498:3 8499:3 8510:4 8532:1 8534:1 8550:3 8561:1 8563:1 8601:4 8616:1 8619:1 8624:1 8628:1 8631:1 8643:1 8650:1 8657:1 8659:1 8660:3 8664:1 8667:1 8678:1 8687:1 8727:2 8730:1 8740:1 8747:1 8748:1 8752:1 8755:2 8759:1 8769:1 8785:1 8789:1 8824:1 8825:1 8828:1 8834:1 8839:3 8867:1 8872:1 8877:1 8882:1 8892:1 8902:1 8909:4 8911:1 8914:1 8917:2 8929:2 8944:1 8946:1 8956:3 8959:2 8964:1 8965:2 8969:1 8970:1 8973:1 8989:1 8993:1 8996:1 9018:1 9029:1 9033:2 9044:2 9047:1 9053:1 9054:1 9056:2 9058:1 9059:1 9061:1 9070:1 9075:1 9085:1 9110:3 9113:2 9117:1 9126:1 9163:2 9167:1 9209:1 9216:1 9220:3 9255:2 9264:1 9282:1 9285:1 9288:1 9292:1 9293:2 9312:3 9318:1 9322:1 9337:1 9344:1 9352:1 9353:1 9362:1 9374:3 9376:1 9387:1 9419:1 9431:1 9464:1 9466:1 9473:4 9489:1 9490:1 9496:2 9504:1 9506:1 9524:1 9529:1 9532:1 9534:1 9535:1 9539:1 9562:1 9575:3 9606:1 9611:1 9623:2 9627:1 9644:1 9645:1 9659:1 9660:1 9661:1 9664:1 9697:2 9702:2 9708:1 9709:2 9711:1 9712:9 9718:1 9736:1 9747:1 9750:1 9754:1 9760:1 9776:1 9778:1 9791:1 9798:1 9803:2 9808:1 9831:1 9835:1 9837:2 9847:2 9870:2 9872:2 9876:1 9879:1 9894:1 9900:1 9912:1 9913:1 9943:1 9946:1 9965:1 9968:3 9992:1 9995:1 9997:1 10003:3 10019:1 10040:2 10062:1 10066:1 10068:1 10069:1 10082:2 10084:1 10087:1 10093:2 10098:2 10103:1 10109:1 10132:2 10133:7 10143:1 10166:1 10182:1 10186:1 10187:1 10192:1 10195:1 10204:1 10207:2 10213:1 10221:1 10228:1 10232:1 10233:1 10239:1 10249:3 10251:1 10274:2 10278:1 10318:5 10320:3 10324:1 10338:1 10341:2 10342:1 10350:1 10360:2 10362:2 10366:1 10367:1 10368:3 10370:1 10377:3 10379:4 10380:1 10381:2 10382:1 10383:4 10384:2 10387:4 10388:4 10401:3 10407:1 10411:1 10427:1 10428:1 10429:2 10441:2 10442:1 10443:1 10451:1 10453:1 10460:1 10464:3 10469:1 10481:1 10487:1 10502:1 10513:1 10514:1 10518:5 10523:1 10526:1 10530:1 10570:1 10572:1 10573:1 10592:2 10597:1 10602:1 10605:1 10639:3 10665:2 10670:1 10676:1 10681:6 10684:1 10694:6 10703:1 10704:1 10714:1 10716:1 10729:2 10745:1 10756:1 10757:1 10764:1 10770:1 10774:1 10782:1 10783:2 10785:1 10788:2 10800:1 10801:1 10812:1 10813:1 10820:1 10838:1 10865:1 10875:2 10883:1 10887:1 10894:1 10900:1 10941:1 10942:2 10951:1 10953:1 10963:1 10974:1 10986:1 11003:1 11009:1 11011:1 11063:1 11086:1 11087:2 11090:1 11092:1 11093:1 11105:2 11110:1 11112:1 11115:1 11116:2 11123:1 11126:1 11134:5 11145:2 11149:1 11169:1 11170:2 11174:1 11198:1 11203:2 11217:1 11220:1 11228:1 11233:1 11239:1 11242:1 11261:7 11273:1 11278:1 11283:1 11294:1 11300:1 11305:2 11307:2 11312:1 11314:1 11316:1 11317:1 11332:4 11345:1 11353:2 11355:1 11358:1 11362:2 11370:1 11373:2 11374:2 11376:1 11383:1 11387:1 11390:1 11396:2 11398:1 11403:1 11414:1 11426:1 11427:2 11431:2 11432:1 11433:1 11445:1 11460:2 11479:1 11491:1 11495:3 11496:1 11506:1 11514:1 11524:1 11539:3 11549:1 11569:2 11570:1 11575:1 11588:1 11616:2 11621:2 11632:5 11663:1 11672:1 11694:1 11702:1 11704:1 11714:1 11733:1 11761:1 11767:2 11778:3 11779:2 11780:1 11790:3 11797:1 11805:2 11813:1 11832:1 11848:1 11865:7 11894:2 11917:1 11918:2 11921:1 11935:1 11938:1 11950:1 11970:1 11975:2 11988:3 11992:4 11998:1 12000:3 12018:3 12021:1 12029:1 12036:1 12058:1 12069:1 12073:2 12087:1 12089:2 12095:1 12096:5 12097:2 12098:1 12099:1 12106:1 12112:3 12114:1 12117:1 12120:1 12121:1 12122:2 12124:1 12167:1 12170:2 12182:1 12193:4 12199:3 12217:2 12219:2 12225:1 12238:3 12239:2 12244:1 12275:1 12277:2 12279:3 12281:1 12285:2 12293:1 12309:1 12318:1 12338:2 12343:1 12351:3 12354:1 12364:2 12381:1 12390:1 12394:1 12395:1 12405:1 12409:1 12410:1 12423:2 12426:2 12456:3 12459:1 12468:2 12481:2 12484:1 12488:2 12495:2 12500:1 12501:1 12504:1 12528:1 12530:1 12542:2 12545:1 12550:2 12556:2 12561:1 12563:1 12568:1 12569:1 12584:2 12586:1 12607:1 12617:1 12625:1 12633:1 12642:1 12657:1 12672:2 12673:1 12678:1 12681:3 12686:1 12693:2 12695:2 12697:3 12704:1 12706:1 12707:1 12712:1 12722:1 12734:1 12769:1 12789:1 12794:1 12816:1 12817:1 12826:1 12827:3 12830:1 12831:1 12837:1 12840:3 12844:1 12845:1 12846:2 12847:1 12853:2 12873:1 12889:1 12897:1 12898:1 12908:2 12919:1 12920:1 12933:1 12936:1 12944:1 12947:2 12951:1 12958:1 12962:2 12980:2 12987:1 12994:1 12996:3 13003:1 13008:1 13020:1 13021:2 13025:1 13027:1 13049:1 13053:2 13059:2 13072:1 13086:1 13093:1 13096:1 13098:1 13101:1 13102:1 13116:1 13120:1 13132:1 13147:1 13165:1 13182:2 13200:1 13219:2 13227:1 13232:1 13234:3 13242:1 13257:2 13258:1 13261:1 13303:1 13316:1 13319:1 13341:1 13349:1 13379:1 13396:1 13402:1 13414:1 13421:1 13426:1 13428:1 13440:1 13452:2 13453:1 13466:1 13473:1 13481:1 13488:1 13505:3 13507:1 13532:1 13545:2 13549:1 13551:1 13577:1 13598:3 13615:1 13624:1 13625:1 13626:6 13637:2 13647:1 13663:1 13673:2 13686:3 13687:2 13700:2 13704:1 13721:1 13726:3 13733:1 13734:7 13740:4 13744:1 13764:1 13772:1 13775:6 13804:1 13810:1 13821:1 13831:1 13833:1 13840:1 13857:1 13865:2 13869:1 13870:1 13872:2 13875:2 13876:4 13877:1 13886:2 13895:1 13897:2 13898:1 13899:5 13900:2 13909:1 13910:1 13916:1 13932:1 13938:1 13949:1 13952:2 13953:1 13957:1 13962:1 13964:1 13972:1 13987:3 13988:1 13991:1 14014:2 14040:1 14047:1 14062:1 14069:1 14084:1 14108:1 14143:7 14146:1 14149:1 14168:1 14169:1 14174:1 14178:1 14179:1 14183:1 14193:1 14216:2 14219:1 14226:1 14227:1 14275:1 14276:3 14284:4 14293:3 14313:1 14319:1 14324:1 14327:2 14358:1 14360:1 14367:1 14369:1 14373:2 14374:1 14386:1 14387:3 14389:3 14390:1 14393:1 14394:4 14398:2 14399:1 14412:1 14433:1 14470:1 14471:1 14477:1 14480:1 14481:1 14488:1 14490:1 14515:1 14516:2 14524:1 14526:1 14548:1 14554:2 14559:1 14571:1 14578:2 14580:3 14596:3 14597:1 14608:2 14609:1 14617:2 14621:1 14634:1 14649:2 14652:2 14654:1 14656:1 14657:1 14679:3 14683:1 14688:1 14694:1 14695:4 14696:1 14700:2 14704:2 14718:1 14720:1 14745:1 14747:2 14777:1 14782:1 14783:1 14786:1 14794:5 14804:1 14814:1 14823:19 14831:1 14841:1 14859:1 14864:2 14869:1 14878:1 14893:2 14895:2 14908:3 14913:1 14926:2 14927:1 14967:1 14976:1 15005:1 15006:1 15029:1 15036:2 15043:1 15045:1 15047:1 15054:1 15057:1 15064:1 15068:1 15069:3 15083:1 15109:2 15117:1 15119:1 15128:1 15139:1 15153:3 15156:1 15161:2 15165:1 15169:1 15176:1 15178:3 15196:2 15211:1 15212:1 15224:1 15242:1 15254:1 15265:1 15266:1 15267:1 15276:4 15285:1 15289:1 15291:1 15297:2 15302:2 15330:1 15337:1 15362:1 15365:2 15380:2 15386:1 15388:1 15401:2 15406:2 15409:2 15415:1 15417:1 15419:1 15420:1 15421:1 15432:1 15440:1 15441:1 15448:1 15454:1 15455:1 15458:1 15460:1 15476:2 15485:1 15505:1 15546:2 15550:1 15556:1 15560:1 15565:1 15570:1 15583:1 15607:1 15642:1 15644:1 15683:2 15699:1 15723:1 15733:2 15738:1 15741:3 15746:1 15748:2 15749:1 15753:1 15767:1 15788:1 15791:1 15793:1 15795:1 15799:3 15814:1 15828:1 15833:1 15842:1 15860:2 15870:3 15901:1 15914:2 15920:1 15934:3 15942:1 15949:1 15967:2 15975:1 15979:1 15988:1 15989:1 16002:1 16003:1 16017:1 16029:2 16030:1 16037:3 16046:1 16060:1 16068:1 16079:1 16084:1 16112:1 16113:2 16117:1 16133:1 16161:1 16162:1 16172:1 16176:1 16190:1 16197:1 16208:1 16211:1 16216:7 16222:1 16225:1 16247:1 16255:1 16265:1 16266:1 16281:1 16301:10 16309:3 16319:3 16326:1 16336:1 16360:1 16374:1 16381:1 16388:4 16390:2 16409:1 16419:1 16442:1 16444:1 16446:3 16455:2 16457:1 16472:1 16476:1 16481:1 16496:1 16498:3 16508:2609 16509:1 16512:1 16545:2 16559:3 16562:1 16567:1 16600:1 16603:1 16604:1 16609:2 16647:3 16650:2 16670:1 16677:1 16678:2 16693:1 16694:1 16703:1 16713:1 16719:1 16722:2 16735:3 16738:1 16753:1 16767:2 16787:3 16793:1 16796:1 16807:1 16817:1 16827:1 16834:2 16871:1 16894:3 16904:1 16910:2 16914:1 16932:1 16936:1 16942:1 16951:1 16959:1 16961:1 16974:1 16987:1 16993:1 16996:1 16997:1 17002:2 17008:2 17009:1 17017:1 17024:1 17034:1 17035:1 17042:1 17054:2 17065:1 17077:1 17087:4 17092:1 17095:1 17110:1 17123:3 17125:1 17145:1 17151:1 17153:1 17157:1 17163:1 17165:1 17182:1 17188:6 17192:1 17195:3 17202:1 17220:2 17223:1 17236:4 17256:2 17288:1 17293:1 17295:2 17296:1 17300:1 17327:2 17337:2 17355:4 17358:1 17359:1 17373:1 17385:1 17402:1 17409:1 17424:1 17430:1 17437:2 17454:1 17464:2 17468:1 17480:1 17494:2 17495:1 17500:1 17511:2 17512:1 17514:1 17516:2 17528:3 17530:1 17534:2 17544:18 17548:1 17558:1 17562:1 17565:1 17569:1 17582:1 17583:1 17589:1 17595:5 17598:1 17609:1 17615:1 17653:1 17664:1 17665:2 17689:7 17706:1 17711:1 17713:1 17715:1 17716:1 17721:1 17731:1 17732:1 17739:2 17759:1 17763:1 17768:1 17769:4 17775:1 17781:3 17802:3 17803:1 17804:1 17810:1 17815:1 17822:1 17824:2 17826:1 17834:1 17837:3 17843:1 17845:1 17847:1 17852:1 17858:2 17863:2 17873:3 17875:1 17884:1 17886:1 17902:1 17919:1 17931:22 17940:1 17941:1 17945:1 17956:1 17957:1 17960:2 17967:1 17977:1 17991:1 17993:1 18039:1 18045:1 18047:1 18076:1 18097:1 18102:1 18121:2 18132:1 18136:1 18153:2 18154:1 18158:2 18160:2 18184:1 18193:3 18198:1 18204:1 18206:1 18212:1 18314:1 18315:1 18317:2 18333:1 18342:2 18343:2 18357:2 18367:1 18378:1 18381:1 18383:3 18388:1 18397:1 18403:1 18411:1 18430:2 18434:1 18445:2 18447:1 18454:1 18460:1 18463:1 18464:1 18486:3 18503:1 18507:1 18509:1 18511:2 18519:3 18524:1 18525:1 18527:17 18534:1 18535:1 18542:3 18544:6 18553:1 18563:2 18566:1 18571:1 18572:1 18573:1 18601:1 18619:1 18636:1 18648:1 18649:3 18680:1 18692:4 18706:2 18745:1 18760:2 18762:1 18773:1 18774:1 18777:1 18779:1 18780:2 18781:1 18782:1 18797:2 18800:1 18807:1 18812:4 18815:1 18816:1 18823:1 18828:1 18840:1 18848:1 18875:1 18879:1 18900:1 18908:1 18913:1 18915:2 18917:3 18920:6 18937:1 18942:2 18946:1 18967:2 18972:1 18979:1 18996:1 19006:1 19017:1 19024:1 19025:1 19032:2 19035:1 19039:1 19042:1 19043:1 19052:1 19056:6 19062:2 19064:1 19070:2 19071:1 19082:1 19105:2 19108:1 19110:1 19120:1 19125:1 19127:3 19128:1 19131:1 19132:5 19133:1 19139:2 19141:1 19142:2 19154:1 19174:1 19175:2 19196:1 19197:1 19201:1 19203:1 19212:1 19219:2 19239:2 19249:2 19275:5 19276:2 19285:3 19296:2 19298:1 19314:1 19325:1 19332:3 19348:1 19384:1 19406:1 19421:2 19422:1 19433:1 19434:4 19436:2 19438:1 19455:5 19456:1 19459:1 19465:1 19467:1 19490:2 19500:1 19535:2 19548:1 19558:2 19568:1 19575:1 19600:6 19621:1 19624:2 19630:1 19632:2 19636:2 19638:1 19644:1 19645:2 19648:1 19656:1 19665:1 19667:1 19670:1 19677:1 19681:1 19683:2 19685:1 19696:1 19709:1 19714:1 19725:1 19738:1 19740:2 19743:1 19744:2 19748:2 19758:1 19759:1 19762:1 19763:1 19765:6 19787:2 19798:1 19801:1 19817:3 19822:1 19831:1 19832:1 19833:1 19842:1 19843:1 19858:1 19869:3 19877:1 19885:1 19887:1 19888:1 19889:1 19898:1 19899:2 19906:1 19908:1 19909:1 19916:1 19919:2 19921:1 19923:1 19932:1 19937:1 19938:4 19942:2 19946:1 19958:2 19960:1 19969:1 19970:2 19991:2 19998:1 19999:5 20011:1 20025:2 20038:1 20039:1 20052:2 20059:2 20062:1 20063:1 20086:2 20119:1 20124:1 20132:1 20152:1 20160:2 20166:3 20170:1 20172:1 20173:1 20186:3 20199:3 20203:1 20204:2 20210:1 20239:1 20240:1 20252:1 20262:1 20268:1 20272:1 20282:1 20287:1 20289:1 20297:8 20301:1 20307:1 20309:1 20312:1 20313:1 20316:1 20320:2 20333:3 20334:2 20342:1 20361:1 20374:1 20379:1 20380:1 20387:1 20390:1 20399:2 20400:2 20409:1 20413:1 20421:1 20427:1 20429:1 20438:1 20453:1 20455:1 20457:1 20461:1 20482:2 20485:2 20508:2 20514:1 20526:1 20527:2 20541:2 20542:1 20545:1 20547:1 20554:1 20565:1 20572:1 20577:1 20606:1 20617:1 20620:1 20640:2 20642:1 20652:1 20695:3 20703:1 20707:1 20713:1 20717:1 20742:3 20750:2 20754:1 20761:1 20765:1 20770:1 20773:1 20775:1 20802:1 20818:3 20827:1 20835:4 20837:3 20840:1 20841:3 20868:1 20870:3 20888:4 20891:1 20893:1 20894:1 20910:1 20927:1 20929:1 20941:1 20963:1 20975:1 20991:1 21000:2 21004:1 21006:1 21013:1 21066:2 21070:1 21075:1 21077:2 21080:1 21081:1 21109:1 21116:1 21123:1 21132:1 21151:3 21153:1 21154:1 21182:1 21194:1 21211:1 21215:1 21222:1 21232:1 21235:1 21243:1 21296:1 21303:1 21311:2 21315:1 21331:1 21341:1 21344:3 21346:1 21364:1 21392:1 21397:1 21400:1 21416:2 21417:1 21432:2 21441:2 21451:2 21455:1 21471:1 21481:1 21483:1 21494:1 21503:1 21504:2 21508:1 21519:1 21526:1 21529:2 21537:2 21571:1 21578:1 21582:3 21599:1 21605:2 21621:1 21631:2 21642:2 21645:1 21684:1 21689:2 21694:1 21715:1 21719:1 21720:1 21751:2 21752:2 21757:1 21762:2 21765:1 21767:1 21768:1 21769:3 21770:2 21772:1 21778:1 21779:1 21784:5 21795:2 21796:1 21801:2 21807:1 21812:5 21818:1 21821:1 21846:1 21858:1 21859:1 21868:8 21869:3 21872:1 21877:3 21905:2 21915:1 21925:3 21926:3 21932:2 21958:1 21961:1 21962:1 21963:1 21993:1 22027:2 22032:1 22033:1 22036:1 22047:1 22058:1 22063:1 22065:1 22082:1 22089:1 22090:3 22099:1 22105:2 22131:1 22143:1 22168:1 22171:1 22188:2 22197:3 22202:1 22220:1 22226:1 22239:2 22240:2 22253:1 22264:1 22284:1 22295:9 22343:1 22344:1 22346:1 22363:1 22370:1 22375:3 22377:2 22397:1 22410:1 22411:1 22426:1 22446:1 22459:1 22460:2 22461:6 22477:1 22491:5 22506:1 22557:2 22558:1 22563:1 22564:1 22567:1 22598:1 22600:1 22639:1 22654:2 22672:2 22676:1 22689:1 22691:1 22697:1 22702:4 22706:3 22707:2 22723:1 22724:1 22742:2 22745:1 22757:1 22759:2 22765:1 22787:1 22794:1 22795:2 22796:3 22797:1 22801:2 22819:2 22821:1 22848:4 22862:1 22876:2 22891:2 22907:1 22910:1 22919:1 22922:1 22941:1 22944:3 22955:2 22969:1 22976:6 22977:6 22993:2 23011:1 23013:1 23016:1 23023:1 23026:1 23031:2 23035:2 23037:2 23038:1 23083:1 23088:1 23095:1 23096:1 23106:2 23111:1 23117:1 23135:1 23147:1 23162:2 23164:1 23173:1 23179:1 23180:2 23203:1 23209:1 23223:1 23238:1 23244:1 23246:2 23256:1 23265:2 23270:1 23283:1 23291:1 23311:1 23316:1 23334:1 23345:1 23350:4 23376:1 23383:1 23388:1 23389:1 23410:13 23411:2 23418:1 23437:1 23458:3 23480:3 23484:1 23500:1 23507:1 23511:1 23520:2 23527:1 23530:1 23533:1 23538:1 23548:1 23552:3 23566:1 23597:1 23633:1 23643:1 23665:1 23666:2 23677:1 23691:2 23692:1 23693:1 23698:1 23699:1 23703:2 23734:1 23735:1 23740:1 23760:1 23763:2 23787:1 23796:1 23819:1 23837:1 23853:1 23855:1 23880:1 23888:1 23902:1 23905:1 23924:1 23927:1 23937:2 23957:2 23963:1 23968:1 23986:1 23987:1 23990:1 24003:1 24016:1 24017:3 24018:1 24037:1 24042:2 24049:1 24053:1 24064:1 24084:1 24096:1 24107:1 24108:1 24109:2 24119:4 24120:2 24121:1 24141:2 24148:1 24149:1 24150:5 24162:1 24164:2 24177:2 24179:3 24184:1 24188:1 24190:2 24212:2 24217:1 24221:6 24230:2 24232:2 24233:1 24237:1 24240:1 24241:1 24251:2 24271:1 24282:2 24292:2 24295:2 24304:1 24329:1 24332:1 24345:3 24361:1 24366:3 24404:2 24407:1 24412:1 24414:1 24415:1 24416:1 24419:1 24427:1 24428:1 24432:1 24439:1 24442:1 24443:1 24444:1 24445:1 24449:1 24455:1 24459:2 24464:2 24469:1 24474:1 24476:1 24479:1 24480:2 24485:1 24486:1 24488:1 24489:1 24492:1 24495:2 24498:1 24502:2 24503:1 24508:2 24511:2 24512:1 24515:1 24538:1 24548:1 24552:1 24579:1 24588:2 24591:1 24596:3 24598:1 24615:1 24644:1 24658:1 24664:1 24665:2 24667:2 24683:1 24684:1 24709:1 24724:1 24729:1 24745:1 24751:2 24766:1 24767:4 24769:2 24771:1 24775:1 24777:3 24794:2 24798:1 24805:1 24810:2 24816:1 24818:1 24865:1 24868:1 24875:1 24899:1 24905:2 24917:1 24949:1 24952:1 24962:1 24979:1 24986:2 25004:1 25022:6 25027:1 25031:1 25036:1 25037:4 25044:1 25054:1 25066:1 25069:1 25075:1 25083:1 25093:1 25096:1 25099:1 25102:1 25110:8 25112:1 25116:1 25117:1 25126:1 25129:1 25137:1 25140:1 25141:5 25159:2 25164:1 25208:1 25215:1 25219:1 25245:4 25251:6 25260:1 25276:1 25278:9 25282:1 25284:1 25287:1 25290:1 25296:2 25310:1 25312:1 25316:1 25322:1 25324:1 25325:1 25327:2 25334:1 25342:1 25348:1 25351:1 25358:1 25363:6 25364:1 25368:1 25382:1 25388:1 25400:1 25402:1 25410:1 25433:1 25456:2 25457:2 25459:1 25460:2 25462:1 25467:1 25470:1 25472:3 25477:1 25495:1 25514:1 25515:2 25519:1 25525:1 25527:3 25528:1 25530:1 25540:4 25542:3 25555:1 25557:1 25571:1 25583:1 25584:1 25587:1 25591:1 25595:1 25602:1 25603:1 25619:1 25624:1 25647:1 25679:1 25685:1 25688:1 25699:1 25707:1 25713:1 25717:1 25732:1 25741:1 25746:1 25753:1 25755:1 25758:1 25770:3 25772:1 25777:1 25779:1 25799:1 25809:1 25811:1 25816:1 25829:1 25851:1 25854:2 25860:2 25880:1 25883:1 25901:4 25912:1 25915:2 25917:1 25956:1 25960:1 25968:1 25971:1 25987:1 25991:3 25992:2 25993:1 25997:1 26011:1 26027:2 26050:1 26052:1 26053:1 26059:1 26070:1 26076:2 26091:2 26092:2 26097:1 26098:1 26099:1 26122:1 26125:2 26128:4 26130:1 26133:1 26150:1 26163:4 26175:2 26205:2 26209:1 26215:1 26224:1 26226:1 26227:1 26228:1 26231:3 26232:2 26239:3 26241:2 26242:1 26244:2 26246:1 26247:1 26250:3 26252:1 26264:1 26270:1 26279:6 26299:1 26318:1 26325:1 26330:1 26340:1
|
c32cc3a1a8dfca9d0f9bfce5cbaf422e867320b4 | d788f2e3277d6274db345084f3f127de0f23b068 | /charles-university/speech-recognition/speech-recognition-project/test/dict.tst | 47adf6789a239a3037ec7122fa475f566f50fa7c | [
"MIT"
] | permissive | Hyperparticle/lct-master | 2af75fcd68990d6e5906be39e63d5a4a45db5a5e | 8acb0ca8fe14bb86305f235e3fec0a595acae2de | refs/heads/master | 2022-03-09T22:59:20.496277 | 2019-01-23T17:25:57 | 2019-01-23T17:25:57 | 106,123,054 | 3 | 0 | MIT | 2022-02-19T21:05:02 | 2017-10-07T19:00:34 | HTML | UTF-8 | Scilab | false | false | 3,297 | tst | dict.tst | A [A] ah sil
ANY [ANY] eh n iy sil
BOY [BOY] b oy sil
BY [BY] b ay sil
CAME [CAME] k ey m sil
CAT [CAT] k ae t sil
CHAIR [CHAIR] ch eh r sil
DOG [DOG] d ao g sil
FARMER [FARMER] f aa r m er sil
FIRST [FIRST] f er s t sil
FROM [FROM] f r ah m sil
GIRL [GIRL] g er l sil
HEAVY [HEAVY] hh eh v iy sil
HORSE [HORSE] hh ao r s sil
JUMPED [JUMPED] jh ah m p t sil
LARGE [LARGE] l aa r jh sil
LONG [LONG] l ao ng sil
NOBLE [NOBLE] n ow b ah l sil
OLD [OLD] ow l d sil
ON [ON] aa n sil
PARK [PARK] p aa r k sil
POND [POND] p aa n d sil
RAN [RAN] r ae n sil
SENT-END [] sil
SENT-START [] sil
SMALL [SMALL] s m ao l sil
STARED [STARED] s t eh r d sil
TABLE [TABLE] t ey b ah l sil
THAT [THAT] dh ae t sil
THE [THE] dh ah sil
THIS [THIS] dh ih s sil
TO [TO] t uw sil
TREE [TREE] t r iy sil
WALKED [WALKED] w ao k t sil
WENT [WENT] w eh n t sil
WHITE [WHITE] w ay t sil
WITH [WITH] w ih dh sil
HOUSE [HOUSE] hh aw s sil
AN [AN] ae n sil
A [A] ah sp
ANY [ANY] eh n iy sp
BOY [BOY] b oy sp
BY [BY] b ay sp
CAME [CAME] k ey m sp
CAT [CAT] k ae t sp
CHAIR [CHAIR] ch eh r sp
DOG [DOG] d ao g sp
FARMER [FARMER] f aa r m er sp
FIRST [FIRST] f er s t sp
FROM [FROM] f r ah m sp
GIRL [GIRL] g er l sp
HEAVY [HEAVY] hh eh v iy sp
HORSE [HORSE] hh ao r s sp
JUMPED [JUMPED] jh ah m p t sp
LARGE [LARGE] l aa r jh sp
LONG [LONG] l ao ng sp
NOBLE [NOBLE] n ow b ah l sp
OLD [OLD] ow l d sp
ON [ON] aa n sp
PARK [PARK] p aa r k sp
POND [POND] p aa n d sp
RAN [RAN] r ae n sp
SMALL [SMALL] s m ao l sp
STARED [STARED] s t eh r d sp
TABLE [TABLE] t ey b ah l sp
THAT [THAT] dh ae t sp
THE [THE] dh ah sp
THIS [THIS] dh ih s sp
TO [TO] t uw sp
TREE [TREE] t r iy sp
WALKED [WALKED] w ao k t sp
WENT [WENT] w eh n t sp
WHITE [WHITE] w ay t sp
WITH [WITH] w ih dh sp
HOUSE [HOUSE] hh aw s sp
AN [AN] ae n sp
|
f056cc1b1526753634c23579992774a44a3f504e | 59b742e36fbe9d77cb51ec949c6625f665133d2b | /Resultados/results_LocGlo_27/results/27/g20-2/result0s0.tst | ce6a9c954330576eb1fbfc438b0e4723f1c0ab0b | [] | no_license | Tiburtzio/TFG | 3132fd045de3a0e911e2c9e23e9c46e1075a3274 | 864ce4dd00b7f8fe90eafa65b11d799c5907177e | refs/heads/master | 2023-01-03T12:44:56.269655 | 2020-10-24T18:37:02 | 2020-10-24T18:37:02 | 275,638,403 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,750 | tst | result0s0.tst | @relation unknow
@attribute mcg real[0.11,1.0]
@attribute gvh real[0.13,1.0]
@attribute alm real[0.21,1.0]
@attribute mit real[0.0,1.0]
@attribute erl real[0.5,1.0]
@attribute pox real[0.0,0.83]
@attribute vac real[0.0,0.73]
@attribute nuc real[0.0,1.0]
@attribute class{MIT,NUC,CYT,ME1,ME2,ME3,EXC,VAC,POX,ERL}
@inputs mcg,gvh,alm,mit,erl,pox,vac,nuc
@outputs class
@data
CYT POX
CYT NUC
CYT CYT
MIT CYT
ME1 ME1
MIT CYT
ME2 ME2
NUC NUC
EXC CYT
CYT CYT
CYT CYT
CYT NUC
MIT MIT
MIT MIT
MIT MIT
MIT MIT
CYT NUC
ME3 ME3
ME3 ME3
NUC NUC
CYT CYT
CYT CYT
NUC MIT
MIT MIT
MIT MIT
CYT NUC
CYT NUC
NUC CYT
NUC ME3
NUC NUC
NUC CYT
NUC CYT
NUC NUC
CYT NUC
NUC NUC
NUC NUC
CYT CYT
NUC NUC
NUC CYT
CYT CYT
CYT CYT
CYT CYT
CYT CYT
MIT MIT
MIT CYT
MIT MIT
MIT MIT
MIT MIT
ME1 ME1
NUC CYT
NUC CYT
EXC EXC
CYT CYT
MIT CYT
NUC NUC
NUC CYT
VAC ME3
NUC NUC
NUC NUC
CYT CYT
CYT CYT
NUC CYT
ME3 ME3
CYT CYT
ME3 ME3
ME2 ME2
CYT CYT
ME2 NUC
CYT CYT
EXC EXC
CYT CYT
ME3 ME3
POX POX
ME2 ME1
ME3 ME3
CYT ME3
ME1 ME1
CYT NUC
CYT CYT
CYT CYT
CYT CYT
NUC NUC
CYT CYT
CYT CYT
NUC NUC
CYT NUC
CYT CYT
CYT NUC
NUC CYT
NUC NUC
NUC NUC
NUC NUC
CYT CYT
ME3 ME3
NUC NUC
NUC CYT
CYT CYT
NUC CYT
NUC NUC
ME3 ME3
MIT MIT
MIT MIT
MIT MIT
NUC CYT
ME3 NUC
NUC NUC
ME3 ME3
ME3 ME3
EXC ME1
ME3 NUC
NUC CYT
CYT MIT
CYT CYT
ME2 EXC
CYT MIT
ME2 CYT
MIT MIT
ME2 NUC
CYT CYT
NUC NUC
NUC NUC
MIT CYT
POX POX
MIT MIT
ME2 NUC
CYT ME3
NUC NUC
NUC CYT
NUC NUC
ME2 ME2
MIT MIT
MIT CYT
MIT MIT
MIT CYT
MIT NUC
MIT CYT
MIT CYT
MIT MIT
MIT MIT
MIT MIT
CYT CYT
EXC NUC
MIT MIT
CYT CYT
MIT CYT
CYT MIT
NUC MIT
NUC CYT
NUC CYT
MIT NUC
NUC NUC
NUC ERL
MIT NUC
NUC NUC
POX CYT
MIT MIT
CYT CYT
ERL ERL
NUC CYT
ME1 ME1
VAC ME3
MIT MIT
MIT CYT
NUC NUC
CYT CYT
CYT CYT
EXC EXC
ME3 NUC
NUC CYT
NUC MIT
ME3 CYT
CYT CYT
ME3 ME3
ME3 ME3
NUC NUC
NUC NUC
NUC CYT
MIT CYT
NUC NUC
CYT CYT
VAC CYT
CYT NUC
CYT CYT
CYT CYT
CYT CYT
NUC NUC
CYT CYT
CYT CYT
CYT CYT
MIT MIT
CYT CYT
MIT CYT
MIT NUC
NUC NUC
NUC NUC
NUC NUC
CYT CYT
CYT CYT
MIT MIT
NUC NUC
NUC NUC
CYT NUC
MIT MIT
CYT CYT
CYT CYT
NUC CYT
NUC NUC
NUC CYT
NUC NUC
CYT NUC
CYT CYT
CYT CYT
CYT CYT
CYT MIT
CYT MIT
CYT CYT
CYT CYT
NUC NUC
CYT NUC
CYT NUC
CYT CYT
CYT NUC
MIT MIT
MIT MIT
ME1 ME2
ME2 CYT
CYT CYT
ME3 ME3
CYT CYT
ME3 ME3
CYT NUC
NUC CYT
NUC CYT
ME1 ME1
NUC NUC
NUC NUC
CYT NUC
ME3 ME3
NUC NUC
MIT ME3
CYT CYT
ME3 ME3
CYT CYT
EXC MIT
NUC CYT
NUC CYT
NUC NUC
NUC CYT
CYT NUC
NUC NUC
ME3 ME3
ME3 ME3
ME3 ME3
CYT NUC
ME3 ME3
ME3 ME3
VAC ME3
CYT NUC
NUC ME3
NUC CYT
CYT MIT
NUC CYT
CYT CYT
CYT CYT
ME1 ME1
NUC NUC
NUC CYT
CYT CYT
CYT NUC
NUC CYT
CYT CYT
CYT CYT
CYT CYT
ME3 ME3
NUC NUC
NUC CYT
ME3 NUC
VAC CYT
VAC ME3
ME3 CYT
ME3 ME3
MIT CYT
MIT CYT
ME3 ME3
ME1 ME1
ME3 ME3
ME3 NUC
NUC NUC
POX ME2
NUC NUC
NUC NUC
CYT CYT
CYT NUC
NUC NUC
NUC NUC
MIT CYT
ME2 ME3
|
c7744d8e73d2fdd964b71128bd8ccc1642d01e1c | ecacacf117304ca56cff1b2242641703e3b86baa | /ALU/Or16Way.tst | 953c7d10cc166c8d49f11b951ecd55b555bb866f | [] | no_license | wccrawford/ECS-Projects | d9a78a4223c9bc79d97fb28085218e5e4da07ca5 | 66d260afa57b70716fdc477540dd13a84930b62c | refs/heads/master | 2021-01-21T13:56:45.339492 | 2011-09-11T19:53:02 | 2011-09-11T19:53:02 | 2,283,122 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 603 | tst | Or16Way.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/01/Or16Way.tst
load Or16Way.hdl,
output-file Or16Way.out,
compare-to Or16Way.cmp,
output-list in%B1.16.1 out%B2.1.2;
set in %B0000000000000000,
eval,
output;
set in %B1111111111111111,
eval,
output;
set in %B0001000000000000,
eval,
output;
set in %B0000000100000000,
eval,
output;
set in %B0000000000010000,
eval,
output;
set in %B0000000000000001,
eval,
output;
set in %B0010011000100110,
eval,
output;
|
604f04b8053a2ef323562b37ebe534363facac5c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2858/CH11/EX11.10/Ex11_10.sce | 7482988e530789cc1f9306bf5e571edc780ece2f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex11_10.sce | //example 11.10
clc; funcprot(0);
Hp=350;
vp=0.0016;
Sl=0.762e-3;
f=115;
Qu=(0.746*Hp+98*vp)/(vp+Sl*f);
disp(Qu,"ple load capacity in kN");
|
7a7e7944aadd935c9052a3f3194fa21dc48ec7be | 449d555969bfd7befe906877abab098c6e63a0e8 | /1808/CH3/EX3.20/Chapter3_Exampl20.sce | d480c85f71389d4f3f02c347f71b6ff215ff95d1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,589 | sce | Chapter3_Exampl20.sce | clc
clear
//INPUT DATA
Rc=15;//compression ratio
r1=1.84;//cutoff ratio
r2=1.98;//cutoff ratio
g=1.4;//constant
p1=101.325;//Pressure in kN/m^2
Rc3=17;//compression ratio
r3=1.84;//cutoff ratio
Rc4=18;//compression ratio
r4=1.88;//cutoff ratio
//CALCULATIONS
nd1=(1-(((1/(Rc^(g-1))))*(((r1^g)-1)/((r1-1)*g))))*100;//Air standard efficiency in precentage
pm1=(p1/((Rc-1)*(g-1)))*(((Rc^g)*g*(r1-1))-(Rc*((r1^g)-1)));//Mean effective pressure in kN/m^2
nd2=1-(((1/(Rc^(g-1))))*(((r2^g)-1)/((r2-1)*g)));//change in efficiency in precentage
ndd1=nd1-nd2;//change in efficiency in precentage
pm2=(p1/((Rc-1)*(g-1)))*(((Rc^g)*g*(r2-1))-(Rc*((r2^g)-1)));//Mean effective pressure in kN/m^2
pmii=((pm2-pm1)/pm1)*100;//Increase in mep in percentage
nd3=(1-(((1/(Rc3^(g-1))))*(((r3^g)-1)/((r3-1)*g))))*100;//increased efficiency in precentage
ni=nd3-nd1;//increased efficiency in percentage
pm3=(p1/((Rc3-1)*(g-1)))*(((Rc3^g)*g*(r3-1))-(Rc*((r3^g)-1)));//Increase in Mean effective pressure in kN/m^2
pmi=((pm3-pm1)/(2*pm1))*100;//Increase in Mean effective pressure in percentage
K=((r4-1)/(Rc4-1))*100;//change in cutoff of stroke
//OUTPUT
printf('(a)Air standard efficiency is %3.2f precentage \n (b)Mean effective pressure is %3.2f kN/m^2 \n (II)\n (a1)Percentage change in efficiency is %3.2f percentage \n (b1)Increase in Mean effective pressure is %3.2f percentage \n (III) \n (a3)increased efficiency is %3.3f percentage \n (b3)Increase in Mean effective pressure is %3.2f kN/m^2 \n (IV)change in cutoff of stroke %3.1f percentage',nd1,pm1,ndd1,pmii,ni,pmi,K)
|
23892bf54200c746f975152baa7fc339c88cf0eb | 449d555969bfd7befe906877abab098c6e63a0e8 | /2078/CH4/EX4.9/Example4_9.sce | 8fe1ad62ef6b6c58c784c89775628ec9b98ebe89 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 380 | sce | Example4_9.sce | //Exa 4.9
clc;
clear;
close;
//Given data :
r=4/2;//cm
rdash=0.7788*r;//cm
d=300;//cm
d3=6*100;//cm
LA=0.2*[log(d/rdash)+1/2*log(2)-%i*0.866*log(2)];//mH
disp(LA,"Inductance per km of phase1(mH)");
LB=0.2*log(d/rdash);//mH
disp(LB,"Inductance per km of phase2(mH)");
LC=0.2*[log(d/rdash)+1/2*log(2)+%i*0.866*log(2)];//mH
disp(LC,"Inductance per km of phase3(mH)");
|
4363e5b816b2d0a8914e28adebf478396fe207e0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1997/CH2/EX2.5/example5.sce | 1c5a1e72295de863efe3a1cc047b200d6e702745 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 604 | sce | example5.sce | //Chapter-2 example 2.5
//=============================================================================
clc;
clear;
Vo=3*10^8;//velocity in m/s
Pt=1*10^6;//peak power in watts
PW=1.2*10^-6;//pulse width in sec
PRI=1*10^-3;//pulse repetition interval in sec
//Calculations
PRF=1/PRI;//pulse repetition frequency in hz
Pav=Pt*PW*PRF;//average power in watts
D=Pav/Pt;//Duty cycle;
Rmax=Vo/(2*PRF);//maximum range of the radar in m
mprintf('pulse repetition frequency is %g KHz\n average power is %g KW\n Duty cycle = %e\n maximum range of the radar is %g Km',PRF/1000,Pav/1000,D,Rmax/1000 );
|
65cb16f25f26b6cd94e9f0c0b79d58da5f3b6582 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2615/CH14/EX68.3/68.sce | 9c022fd586338db4f282dd510c960cec412eba57 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 236 | sce | 68.sce | clc
//initialisation of variables
w=0.95//kg=m
h=3206*10//kg-m
G=2250//kg
k=0.4//mm
r=45000//mm
//CALCULATIONS
n=(1/((G/r)+1))*(1-(k^2))//kg-m
Wn=h*n//kg-m
//RESULTS
printf('the efficincy of the hammer through=% f kg-m',Wn)
|
b7373ec9f5aa7c1966f29e8352411e23e553eae0 | 57a39df08383d18148a77915551223cef3bc8cd6 | /capacitor.sce | eac4e946338f0d2a91e0ab2f5b0fa7d83d09ddac | [] | no_license | sonusharma55/Misc.-MATLAB-Scilab | 0abbc7ab22e963b3b3e147a18e17af2f3021d3ce | dbfaab1b84719948ef665798c4192e6ca934e46a | refs/heads/master | 2020-07-25T22:00:11.975476 | 2019-09-14T12:31:37 | 2019-09-14T12:31:37 | 208,434,501 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 427 | sce | capacitor.sce | f=10^6:10^7:10^10;
rs=(4.8*10^-6).*sqrt(f);
re=(33.9*10^12) ./f;
c=47*10^-12;
w=2*%pi.*f;
l=2*1.25*10^-2;
a=2.032*10^-4;
temp=log(2*1/a)/log(%e);
lex=mu0*l*(temp-1)/(2*%pi);
z=1 ./(1 ./re +w*c*%i)+rs+w.*lex*%i;
zideal=1 ./(w*c*%i)
plot2d("gll",f,abs(z));
plot2d(f,abs(zideal));
title("Frequency response of a high frequency capacitor");
xlabel("Frequency(f) in Hz");
ylabel("Absolute impedance (|Z|) in ohms");
|
29f2875df9a4025cae27a48ac7a58b2e7a24533d | 1573c4954e822b3538692bce853eb35e55f1bb3b | /DSP Functions/allpassshift/test_4.sce | 867086857519b220d5ad929ad83e16a438e1c428 | [] | no_license | shreniknambiar/FOSSEE-DSP-Toolbox | 1f498499c1bb18b626b77ff037905e51eee9b601 | aec8e1cea8d49e75686743bb5b7d814d3ca38801 | refs/heads/master | 2020-12-10T03:28:37.484363 | 2017-06-27T17:47:15 | 2017-06-27T17:47:15 | 95,582,974 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 252 | sce | test_4.sce | // Test # 4 : Input Argument #1 is of complex type
exec('./allpassshift.sci',-1);
[n,d]=allpassshift(%i,0.6);
//!--error 10000
//Wo must be real ,numeric and scalar
//at line 33 of function allpassshift called by :
//[n,d]=allpassshift(%i,0.6);
|
c11e426ab706945604efaadbb973b426bc2abf79 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3773/CH4/EX4.5/Ex4_5.sce | fd32000797377c8be59f347c0d7bf3f602085ca0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 933 | sce | Ex4_5.sce | //Chapter 4: Radiation
//Example 4-5.2
clc;
//Variable Initialization
L = 5 //Length of radiating element (m)
f1 = 30e3 //Frequency (Hz)
f2 = 30e6 //Frequency (Hz)
f3 = 15e6 //Frequency (Hz)
c = 3e8 //Velocity of light (m/s)
//Calculation
wave_lt1 = c/f1 //Wavelength (m)
wave_lt1 = wave_lt1 /10
R_r1 = 800*(L/wave_lt1)**2 //Radiation resistance (ohm)
wave_lt2 = c/f2 //Wavelength (m)
L = wave_lt2/2 //Effective length (m)
R_r2 = 200*(L/wave_lt2)**2 //Radiation resistance (ohm)
wave_lt3 = c/f3 //Wavelength (m)
L = wave_lt3/4 //Effective length (m)
R_r3 = 400*(L/wave_lt3)**2 //Radiation resistance (ohm)
//Result
mprintf("The radiation resistance for f1 is %.2f ohms", R_r1)
mprintf("\nThe radiation resistance for f2 is %d ohms",R_r2)
mprintf("\nThe radiation resistance for f3 is %d ohms",R_r3)
|
8df2ffc0717d2af0e264afaa977a207e78b44475 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1163/CH10/EX10.22/example_10_22.sce | a3c7c8abdc13ddf045c28dcbfbe7f766689654bf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,638 | sce | example_10_22.sce | clear;
clc;
disp("--------------Example 10.22---------------")
// at the sender
n1=7;
n2=11;
n3=12;
n4=0;
n5=6;
s_sum=n1+n2+n3+n4+n5; // find the sum
s_bin=dec2bin(s_sum);
s=strsplit(s_bin,length(s_bin)-4);
a=bin2dec(s(1));
b=bin2dec(s(2));
f=a+b; // wrapping the sum
s_checksum=bitcmp(f,4); // complementing
// display the result
printf("The sender initializes the checksum to 0 and adds all data items and the checksum . The result is %d. However, %d cannot\nbe expressed in 4 bits. The extra two bits are wrapped and added with the sum to create the wrapped sum value %d. The sum is then\ncomplemented, resulting in the checksum value %d . The sender now sends six data items to the receiver including the checksum %d.\n\n",s_sum,s_sum,f,s_checksum,s_checksum);
// at the reciever
r_sum=n1+n2+n3+n4+n5+s_checksum; // find the sum including checksum sent by sender
r_bin=dec2bin(r_sum);
r=strsplit(r_bin,length(r_bin)-4);
c=bin2dec(r(1));
d=bin2dec(r(2));
e=c+d; // wrapping the sum
r_checksum=bitcmp(e,4); // complementing
// display the result
printf("The receiver follows the same procedure as the sender. It adds all data items (including the checksum); the result is %d.\nThe sum is wrapped and becomes %d. The wrapped sum is complemented and becomes %d the checksum.\n",r_sum,e,r_checksum);
// check if data is corrupt or not
if(r_checksum==0)
printf("Since the value of the checksum is 0, this means that the data is not corrupted. The receiver drops the checksum and keeps the other data items.");
else
printf("The checksum is not zero,hence the entire packet is dropped.");
end
|
a1463bbb833f9068c44bed4393e64a4b61582c3b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2414/CH7/EX7.7/Ex7_7.sce | b16964ff5161bd7ec8d7a0c0cdfd75fcde3edca0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 191 | sce | Ex7_7.sce | clc;
close();
//page no 231
//prob no. 7.7
delta_theta=6; //kHz
fm=5; //kHz
disp('The expression is');
mprintf('v(t)=A*cos[(2*pi*10^8*t)+%i*sin(%i*2*pi*10^3*t)]',delta_theta,fm);
|
8d9b26525c471123c02894df3902292f14bb5912 | 449d555969bfd7befe906877abab098c6e63a0e8 | /32/CH7/EX7.12/7_12.sce | 55c01b3fdeca213513e2e58e78956edc7829e02f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 511 | sce | 7_12.sce | //pathname=get_absolute_file_path('7.12.sce')
//filename=pathname+filesep()+'7.12-data.sci'
//exec(filename)
//Enthalpy at entrance(in kJ/kg):
h1=4142
//Enthalpy at exit(in kJ/kg):
h2=2585
//Availability of steam at entrance(in kJ/kg):
A1=1787
//Availability of steam at exit(in kJ):
A2=140
//Maximum work possible(in kJ/kg):
Wmax=A1-A2
//Actual work from turbine(in kJ/kg):
Wact=h1-h2
printf("\nRESULT")
printf("\nActual work = %d kJ/kg",Wact)
printf("\nMaximum possible work = %d kJ/kg",Wmax) |
8375a1283b3565f810f50211872f0cbda2585483 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3769/CH10/EX10.26/Ex10_26.sce | 8f45fed5d2563ff3eb8b9269d35f463b512723d9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 262 | sce | Ex10_26.sce | clear
//Given
l=0.05 //m
d=0.12 //m
H=0.34*10**-4 //T
//Calculation
//
u=4*%pi*10**-7
M=(4*%pi*H*(d**2+l**2)**1.5)/u
//Result
printf("\n Magnetic moment of the magnet is %0.3f J/T",M)
|
bac84edc2fa07ff890d5b8c2b749bd4cb1c04dc5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1850/CH1/EX1.13/exa_1_13.sce | 8af0cd6588b3669d48694607e2d222f5e540aa34 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 826 | sce | exa_1_13.sce | // Exa 1.13
clc;
clear;
close;
// Given data
Bita_ac= 100;
Bita_dc= Bita_ac;
V_BE=0.715;// in volt
V_D1= V_BE;
R3=2.7*10^3;// in ohm
R_C=4.7*10^3;// in ohm
V_EE=10;//in volt
V_CC= 10;// in volt
V_Z= 6.2;// in volt
I_ZT= 41;// in mA
I_ZT=I_ZT*10^-3;// in amp
V_B3= -V_EE+V_Z+V_D1;// in volt
V_E3= V_B3-V_BE;// in volt
I_E3= (V_E3-(-V_EE))/R3;// in amp
// I_CQ1= I_CQ2= I_CQ= I_E3/2
I_CQ= I_E3/2;// in amp
I_CQ1=I_CQ;
I_CQ2=I_CQ1;
I_E=I_CQ;
V_CEQ= V_CC + V_BE - I_CQ*R_C;// in volt
// Part (c)
// Thus Q_point= (I_CQ,V_CEQ)
disp("Operating point values are : "+string(I_CQ*10^3)+" mA and "+string(V_CEQ))
re_desh= (26*10^-3)/I_E;// in ohm
// Part(a)
A_d= R_C/re_desh;
disp(A_d,"Voltage gain");
// part(b)
R_in= 2*Bita_ac*re_desh;// in ohm
disp(R_in*10^-3,"Input resistance in k ohm");
|
a75b3695dca8cc5dbd304b47d653cd736cf61176 | 449d555969bfd7befe906877abab098c6e63a0e8 | /608/CH28/EX28.08/28_08.sce | fc8407a4b29fd76d09b11573a3b3126eba0614eb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,314 | sce | 28_08.sce | //Problem 28.08: An R–L–C series circuit has a resonant frequency of 1.2 kHz and a Q-factor at resonance of 30. If the impedance of the circuit at resonance is 50 ohm determine the values of (a) the inductance, and (b) the capacitance. Find also (c) the bandwidth, (d) the lower and upper half-power frequencies and (e) the value of the circuit impedance at the half-power frequencies.
//initializing the variables:
Zr = 50; // in ohms
fr = 1200; // in Hz
Qr = 30; // Q-factor
//calculation:
//At resonance the circuit impedance, Z
R = Zr
wr = 2*%pi*fr
//Q-factor at resonance is given by Qr = wr*L/R, then L is
L = Qr*R/wr
//At resonance r*L = 1/(wr*C)
//capacitance, C
C = 1/(L*wr*wr)
//bandwidth,.(f2 − f1)
bw = fr/Qr
//upper half-power frequency, f2
f2 = (bw + ((bw^2) + 4*(fr^2))^0.5)/2
//lower half-power frequency, f1
f1 = f2 - bw
//At the half-power frequencies, current I
//I = 0.707*Ir
//Hence impedance
Z = (2^0.5)*R
printf("\n\n Result \n\n")
printf("\n (a)inductance, L is %.3f H ",L)
printf("\n (b)capacitance, C is %.2E F ",C)
printf("\n (c)bandwidth is %.0f Hz ",bw)
printf("\n (d)the upper half-power frequency, f2 is %.0f Hz and the lower half-power frequency, f1 is %.0f Hz ",f2,f1)
printf("\n (e)impedance at the half-power frequencies is %.2f ohm ",Z) |
dae3d8a9a112acf0a83dccb19ffb3f076e0c1a36 | e82d1909ffc4f200b5f6d16cffb9868f3b695f2a | /Lista 9/Lista Baron/Questao_1.sci | f70d7f0d8085028ada4f22501a7973e261faf340 | [] | no_license | AugustoCam95/Computational-Linear-Algebra | eb14307dd3b45ccc79617efe74d1faca639c36c5 | 99b1a1f9499fbc4343bd5c878444e9e281952774 | refs/heads/master | 2020-03-30T22:26:23.790763 | 2018-10-05T03:34:06 | 2018-10-05T03:34:06 | 151,666,289 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 410 | sci | Questao_1.sci | function A=Questao_1(autovalores)
//pegando o tamanho do vetor
n=length(autovalores)
// criando uma matriz aleatória
V=rand(n,n)
//criando e motando a A
A =zeros(n,n)
for i =1:n
A(i,i)=autovalores(i)
end
//deixando a V simétrica
V= (V + V')*0.5;
//pelo teorema de shur temos:
A=inv(orth(V)')*A*inv(orth(V))
endfunction
|
f1b5c689cd39946174382864bf66303d24452d0d | 449d555969bfd7befe906877abab098c6e63a0e8 | /3774/CH4/EX4.16/Ex4_16.sce | a0b4251138c47be8467fb3bd90d9bbb49b38a9d3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 761 | sce | Ex4_16.sce | // exa 4.16 Pg 122
clc;clear;close;
// Given Data
Pmin=-15;// kN
Pmax=25;// kN
Se_dash=360;// MPa
Sy=400;// MPa
Ki=1.25;// impact factor
n=2.25;// factor of safety
ka=0.88;// surface finish factor
Kt=2.25;// stress concentration factor
Pm=(Pmax+Pmin)/2;// kN
Pa=(Pmax-Pmin)/2;// kN
q=0.8;// sensitivity factor
// sigma_m=4*Pm/%pi/d**2
sigma_m_into_d_sq = 4*Pm*1000/%pi;
sigma_a_into_d_sq = 4*Pa*1000/%pi;
Kf=1+q*(Kt-1);// fatigue strength factor
kf=1/Kf ;// fatigue strength reduction factor
kb=0.85;// size factor
ke=0.9;//load factor
ki=1/Ki;// reverse impact factor
Se=ka*kb*ke*kf*ki*Se_dash;// MPa
//soderburg failure equation - sigma_m/Sy+sigma_a/Se=1/n
d=sqrt((sigma_m_into_d_sq/Sy+sigma_a_into_d_sq/Se)*n)
printf('\n Size of piston rod, d = %.f mm',d)
|
02b9e14eb257ac3ac12044f293f3532720d3909a | c908c5ec283c57c29da044966fce0fee1f659873 | /codes/algoritmo de taylor.sce | 760086590489a0cb35198540b232c7555e8cea87 | [] | no_license | marialago/numerical-computation | 3ca0e95c637c1d4d3ea79789d1bda0b84ca29ca5 | c88c0ddc6f7501ed115556f72f5f5db3a8610f6b | refs/heads/master | 2022-10-30T01:42:21.032196 | 2020-06-14T18:33:45 | 2020-06-14T18:33:45 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 129 | sce | algoritmo de taylor.sce | clc
function y=taylor(x0,x,n)
y=%e^x0;
for i=1:n;
y=y+((%e^x0)*(x-x0)^i)/factorial(i)
end
endfunction
|
7173d89fe5ffe3d903c7f7cc736a8250590dc44b | 449d555969bfd7befe906877abab098c6e63a0e8 | /530/CH5/EX5.1.a/example_5_1a.sce | b350271a61324207689fef242c16a65cdd0c9487 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 573 | sce | example_5_1a.sce | clear;
clc;
// A Textbook on HEAT TRANSFER by S P SUKHATME
// Chapter 5
// Heat Transfer by Forced Convection
// Example 5.1(a)
// Page 209
printf("Example 5.1(a) \n\n")
D = 0.015 ; // [m]
Q = 0.05 ; // [m^3/h]
H = 1000 ; // [W/m^2]
T_b = 40 ; // [degree C]
// From table A.1, properties at 40 degree C
k = 0.634 ; // [W/m K]
v = 0.659*10^-6 ; // [m^2/s]
V_bar = 4*Q/((%pi)*D^2);
Re_D = V_bar*D/v;
// Therefore, Laminar Flow, from eqn 5.2.8
h = 4.364*k/D; // [W/m^2 K]
printf("(a) Local heat transfer coefficient is %f W/m^2 K \n",h); |
5a5f8c511c1d99f944d3bd51260e5e24a8583c19 | 01382fa3a0b31f45e2664d4c22c9a966a7b37e63 | /source/fit_test/error_calculation.sce | edc07948cbb773cac0433c6aaec2501fc1fabdb5 | [] | no_license | sashgeophysics/MuMaP | 8c4e2c41d93da4a2c03f96af4e3dd78e6828c140 | b2c42420f5a52d84a1069fb28917af91a85af251 | refs/heads/master | 2022-04-04T20:57:02.982991 | 2020-02-18T11:45:25 | 2020-02-18T11:45:25 | 146,561,160 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,128 | sce | error_calculation.sce | clear;
function [dydx]=der(y,x)
n=size(y)
dydx=diff(y,1)
h=(max(x)-min(x))/size(x,1)
endfunction
hawaii=read('hawaii_melt_clap_impedance.dat',-1,3)
melt_hawaii=hawaii(:,1)
clap_hawaii=hawaii(:,2)
eta_hawaii=(hawaii(:,3))
n_hawaii=size(melt_hawaii,1)
m_hawaii=sqrt(n_hawaii)
dmeltdv_hawaii=zeros(m_hawaii,m_hawaii-1)
dmeltdclap_hawaii=zeros(m_hawaii,m_hawaii-1)
for ii=1:m_hawaii
temp1_hawaii=diff(melt_hawaii((ii-1)*m_hawaii+1:ii*m_hawaii))./diff(eta_hawaii((ii-1)*m_hawaii+1:ii*m_hawaii))
dmeltdv_hawaii(ii,:)=temp1_hawaii'
end
indx_hawaii=1:10:n_hawaii
for ii=1:m_hawaii
temp1_hawaii=melt_hawaii(indx_hawaii+ii-1)
temp2_hawaii=clap_hawaii(indx_hawaii+ii-1)
temp3_hawaii=diff(temp1_hawaii)./diff(temp2_hawaii)
dmeltdclap_hawaii(ii,:)=temp3_hawaii'
end
clapsd_hawaii=st_deviation(linspace(min(clap_hawaii),max(clap_hawaii),m_hawaii-1))
etasd_hawaii=st_deviation(linspace(min(eta_hawaii),max(eta_hawaii),m_hawaii-1))
for ii=1:m_hawaii
err_hawaii(ii)=sqrt(clapsd_hawaii.^2.*(mean(dmeltdclap_hawaii(ii,:))).^2+etasd_hawaii.^2.*(mean(dmeltdv_hawaii(ii,:))).^2)
end
//dmeltdclap=der(melt,clap)
//dmeltdeta=der(melt,eta)
//
coral_sea=read('coral_sea_melt_clap_impedance.dat',-1,3)
melt_coral_sea=coral_sea(:,1)
clap_coral_sea=coral_sea(:,2)
eta_coral_sea=(coral_sea(:,3))
n_coral_sea=size(melt_coral_sea,1)
m_coral_sea=sqrt(n_coral_sea)
dmeltdv_coral_sea=zeros(m_coral_sea,m_coral_sea-1)
dmeltdclap_coral_sea=zeros(m_coral_sea,m_coral_sea-1)
for ii=1:m_coral_sea
temp1_coral_sea=diff(melt_coral_sea((ii-1)*m_coral_sea+1:ii*m_coral_sea))./diff(eta_coral_sea((ii-1)*m_coral_sea+1:ii*m_coral_sea))
dmeltdv_coral_sea(ii,:)=temp1_coral_sea'
end
indx_coral_sea=1:10:n_coral_sea
for ii=1:m_coral_sea
temp1_coral_sea=melt_coral_sea(indx_coral_sea+ii-1)
temp2_coral_sea=clap_coral_sea(indx_coral_sea+ii-1)
temp3_coral_sea=diff(temp1_coral_sea)./diff(temp2_coral_sea)
dmeltdclap_coral_sea(ii,:)=temp3_coral_sea'
end
clapsd_coral_sea=st_deviation(linspace(min(clap_coral_sea),max(clap_coral_sea),m_coral_sea-1))
etasd_coral_sea=st_deviation(linspace(min(eta_coral_sea),max(eta_coral_sea),m_coral_sea-1))
for ii=1:m_coral_sea
err_coral_sea(ii)=sqrt(clapsd_coral_sea.^2.*(mean(dmeltdclap_coral_sea(ii,:))).^2+etasd_coral_sea.^2.*(mean(dmeltdv_coral_sea(ii,:))).^2)
end
//dmeltdclap=der(melt,clap)
//dmeltdeta=der(melt,eta)
//
xset("window",0)
clf
subplot(2,1,1)
plot2d(clap_hawaii,melt_hawaii,-11)
b=gca()
b.children(1).children.mark_size=2
b.children(1).children.mark_foreground=2
b.children(1).children.mark_background=0
plot2d(clap_coral_sea,melt_coral_sea,-9)
b=gca()
b.children(1).children.mark_size=2
b.children(1).children.mark_foreground=5
b.children(1).children.mark_background=0
subplot(2,1,2)
plot2d(eta_hawaii,melt_hawaii,-11)
b=gca()
b.children(1).children.mark_size=2
b.children(1).children.mark_foreground=2
b.children(1).children.mark_background=0
plot2d(eta_coral_sea,melt_coral_sea,-9)
b=gca()
b.children(1).children.mark_size=2
b.children(1).children.mark_foreground=5
b.children(1).children.mark_background=0
legend(['Hawaii' 'Coral Sea'],2,boxed=%f)
|
e2e3bc61c5dcb1ef80ae0b5ca9072d5ab7eee3c6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3840/CH3/EX3.9/Ex3_9.sce | 36f6d2d54f8c2fbbe32f72cf9b268862742fbd40 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 643 | sce | Ex3_9.sce | clear
//
//
//
//Variable declaration
a=0.26 //lattice spacing(nm)
lamda=0.065 //wavelength of X-rays(nm)
h=1
k=1
l=0
n=2
//Calculation
d=a/sqrt(h**2+k**2+l**2)
sintheta=n*lamda/(2*d)
theta=asin(sintheta)*180/%pi //glancing angle(degrees)
thetad=int(theta) //glancing angle(degrees)
thetam=(theta-thetad)*60 //glancing angle(minutes)
thetas=60*(thetam-int(thetam)) //glancing angle(seconds)
//Result
printf("\n glancing angle is %0.3f degrees %0.3f minutes %0.3f seconds",thetad,thetam,thetas)
printf("\n answer in the book is wrong")
|
025e0954b627ae3ccf3293042500abf1376e98e8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /884/CH5/EX5.14/Example5_14.sce | 417670b7509b837f0b32fb83baef87e224f1825c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 570 | sce | Example5_14.sce | //Dalton's Law of Partial Pressures
clear;
clc;
printf("\t Example 5.14\n");
nNe=4.46;//moles of Ne
nXe=2.15;//moles of Xe
nAr=0.74;//moles of Ar
PT=2;//total pressure in atm
XNe=nNe/(nNe+nAr+nXe);//mole fraction of Ne
XAr=nAr/(nNe+nAr+nXe);//mole fraction of Ar
XXe=nXe/(nNe+nAr+nXe);//mole fraction of Xe
PNe=XNe*PT;//partial pressure of Ne
PAr=XAr*PT;//partial pressure of Ar
PXe=XXe*PT;//partial pressure of Xe
printf("\t the partial pressures of Ne, Ar and Xe are : %4.2f atm, %4.2f atm and %4.3f atm respectively\n",PNe,PAr,PXe);
//End
|
7a35e6b59bb240b0a0eaed7deb0d935bc6e5890e | 9d0d8cfb131efa34cafc47d938fac6ddcee0750c | /miniproject/1prob/signal_noise.sci | 57d99088c95adf882206e29464ce7c9a738576d0 | [] | no_license | kazipetasurya/ee340 | 52c688b028a28effa88dc4a9eb653735e4fc19bc | 3885ad37122817c03d9a51d9f7df2c9c9f5f7251 | refs/heads/master | 2021-01-18T15:10:53.081056 | 2012-09-07T06:43:54 | 2012-09-07T06:43:54 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 248 | sci | signal_noise.sci | exec("sinusoidal_vector.sci",-1)
exec("normalnoisevec.sci",-1)
function[yvec]=signalnoise(a,N,Variance)
xvec=sinusoidalvec(a,N)
vvec=gaussiannoise(Variance,N)
//disp(length(xvec))
//disp(length(vvec))
yvec=xvec+vvec
endfunction
|
328210b3a24f766176f61c0579cc4f6d8aead702 | 449d555969bfd7befe906877abab098c6e63a0e8 | /905/CH1/EX1.23/1_23.sce | 6499d9c34a07e0a62d54db0aba4aab8a933febad | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 652 | sce | 1_23.sce | clear;
clc;
// Illustration 1.23
// Page: 62
printf('Illustration 1.23 - Page:62 \n\n');
// Solution
//*****Data*****//
// A-beta dextrin B-water
T = 293; // [K]
d = 88.8; // [Average pore diameter, Angstrom]
d_mol = 17.96; // [Molecular diameter, Angstrom]
e = 0.0233; // [porosity]
t = 1.1; // [tortuosity]
D_AB = 3.22*10^-6; // [square cm/s]
//*****//
// Using equation 1.111 to calculate restrictive factor
K_r = (1-(d_mol/d))^4
// Using equation 1.110 to calculate effective diffusivity
D_ABeff = e*D_AB*K_r/t; // [square cm/s]
printf("The effective diffusivity of beta-dextrin at 298 K is %e square cm/s",D_ABeff); |
2b5dcc6d56e0d637aa2512d16cfb808848fa6dbc | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.5/macros/mtlb/mtlb_diff.sci | 0413d74ebecfff7fdd94a282ef48e3fa823ea342 | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 146 | sci | mtlb_diff.sci | function y=mtlb_diff(x,N)
[lhs,rhs]=argn()
if rhs==1 then N=1,end
if or(size(x)==1) then
y=x(1+N:$)-x(1:$-N)
else
y=x(1+N:$,:)-x(1:$-N,:)
end
|
bcae73c689eb29d9e099ffcd6a6003963e8d6404 | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/CMP1.prev.tst | 4aadec6b92c89c564222bd82619c29e9b13bc19b | [
"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 | 842 | tst | CMP1.prev.tst | 2_a: (a^2 + b^2)^2 = (a^2 - 17*b^2)^2 + (2*a*b)^2
2_b: (a^2 + b^2)^2 = (a^2 + 17*b^2)^2 + (0)^2
2_c: 1 - 17; 2;
2_d: 1 + 17; 0;
3_a: (a^2 + b^2)^3 = (a^3 - 51*a*b^2)^2 + (3*a^2*b - 17*b^3)^2
3_b: (a^2 + b^2)^3 = (a^3 + 17*a*b^2)^2 + ( - a^2*b - 17*b^3)^2
3_c: 1 - 51; 3 - 17;
3_d: 1 + 17; - 1 - 17;
4_a: (a^2 + b^2)^4 = (a^4 - 102*a^2*b^2 + 289*b^4)^2 + (4*a^3*b - 68*a*b^3)^2
4_b: (a^2 + b^2)^4 = (a^4 - 289*b^4)^2 + ( - 2*a^3*b - 34*a*b^3)^2
4_c: 1 - 102 + 289; 4 - 68;
4_d: 1 - 289; - 2 - 34;
5_a: (a^2 + b^2)^5 = (a^5 - 170*a^3*b^2 + 1445*a*b^4)^2 + (5*a^4*b - 170*a^2*b^3 + 289*b^5)^2
5_b: (a^2 + b^2)^5 = (a^5 - 34*a^3*b^2 - 867*a*b^4)^2 + ( - 3*a^4*b - 34*a^2*b^3 + 289*b^5)^2
5_c: 1 - 170 + 1445; 5 - 170 + 289;
5_d: 1 - 34 - 867; - 3 - 34 + 289;
|
70d94eeb11bcce10b8dc02836075d7c27cc307cc | 449d555969bfd7befe906877abab098c6e63a0e8 | /1823/CH6/EX6.27/SolEx6_27.sce | 11da9d185a0703b3b3899618a82a2034d6660718 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 611 | sce | SolEx6_27.sce | //Find (a) the overall voltage-gain ratio
//Av ¼ vL=vS and (b) the overall current-gain ratio Ai ¼ iL=iS.
//Example 6.27 page no 194
clear
clc
hfb1=-0.99
hfc2=-100
Rb=33.3*10^3
Re1=5*10^3
Re2=2*10^3
Rl=2*10^3
hic2=500
hib1=50
hic2=500
Av1=-((hfb1*Rb*hic2)/(hib1*(Rb+hic2)))
Av2=0.995
Av=Av1*Av2
printf("\n The value of Av1=%0.3f " ,Av1)
printf("\n The value of Av1=%0.3f " ,Av)
Ai1=-((hfb1*Re1*Rb)/((Re1+hib1)*(Rb+hic2)))
printf("\n The value of Ai1=%0.3f " ,Ai1)
Ai2=-((hfc2*Re2)/(Re2+Rl))
printf("\n The value of Ai2=%0.3f " ,Ai2)
Ai=Ai1*Ai2
printf("\n The value of Ai=%0.3f " ,Ai)
|
7859f0ba90b023aa1997d9e1ff64fa62193c7b8c | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/tweet/bow/bow.3_7.tst | ab81ece9cdb07dba0e966c528f3cac8b9e992173 | [] | 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 | 34,268 | tst | bow.3_7.tst | 3 15:0.08333333333333333 17:0.16666666666666666 23:0.2222222222222222 37:0.3333333333333333 82:0.16666666666666666 95:1.0 96:0.1111111111111111 97:0.6666666666666666 114:0.14285714285714285 115:1.0 116:2.0 128:0.3333333333333333 145:0.5 171:0.5 272:1.0 350:0.125 531:0.5 561:0.5 622:1.0 641:1.0 809:1.0 892:1.0 938:1.0 1168:1.0 1430:1.0 1618:1.0 1742:1.0 1947:0.5 1959:1.0 1992:0.5 2297:1.0 2550:1.0 2721:1.0 3667:1.0 4220:1.0 4227:1.0
3 5:0.3333333333333333 23:0.3333333333333333 42:0.6666666666666666 96:0.1111111111111111 97:1.3333333333333333 100:0.25 105:0.5 143:0.3333333333333333 147:0.5 165:0.125 171:0.5 177:0.3333333333333333 219:0.3333333333333333 368:1.0 373:0.1111111111111111 622:2.0 644:1.0 897:0.5 1058:1.0 1163:1.0 1618:1.0 1742:1.0 1780:0.5 1867:1.0 1869:1.0 1947:0.5 2188:1.0 2194:1.0 2550:1.0 2886:1.0 2942:1.0 3121:1.0 3183:1.0 3667:1.0
3 1:0.08333333333333333 4:1.0 5:0.3333333333333333 6:0.05555555555555555 23:0.1111111111111111 34:0.1 37:0.3333333333333333 40:1.0 42:0.6666666666666666 116:1.0 146:0.2 147:0.5 150:0.029411764705882353 258:1.0 373:0.1111111111111111 399:0.5 441:0.5 517:1.0 667:1.0 1109:1.0 1377:1.0 1438:1.0 1644:0.3333333333333333 2573:1.0 5019:1.0 7109:1.0
3 6:0.3333333333333333 15:0.16666666666666666 17:0.16666666666666666 34:0.2 42:0.3333333333333333 56:0.3333333333333333 63:0.5 73:1.0 75:1.0 82:0.16666666666666666 105:0.5 114:0.14285714285714285 145:0.5 190:1.0 215:0.1 219:0.3333333333333333 249:0.5 350:0.125 477:1.0 534:1.0 1154:1.0 1568:0.5 1993:1.0 2276:0.5 2515:1.0 2599:1.0 2970:1.0 2987:1.0 4003:1.0 4112:2.0 5019:1.0 5058:1.0 6121:1.0
3 5:0.3333333333333333 23:0.2222222222222222 42:0.3333333333333333 97:0.6666666666666666 116:2.0 157:1.0 275:1.0 311:1.0 312:1.0 373:0.1111111111111111 397:0.5 423:0.5 1657:2.0 1698:1.0 1740:1.0 2547:1.0 3000:1.0 3391:1.0 4451:1.0 7009:1.0
3 6:0.05555555555555555 17:0.16666666666666666 23:0.1111111111111111 34:0.1 42:0.3333333333333333 56:0.3333333333333333 97:0.3333333333333333 114:0.42857142857142855 143:0.3333333333333333 146:0.2 165:0.125 169:1.0 190:1.0 191:0.5 215:0.1 219:0.3333333333333333 261:0.020833333333333332 409:0.5 644:1.0 1132:1.0 1176:1.0 1319:1.0 1492:1.0 1867:1.0 1993:1.0 2187:1.0 2974:1.0 3171:1.0 5081:1.0
3 5:0.3333333333333333 6:0.1111111111111111 15:0.08333333333333333 34:0.2 37:0.3333333333333333 56:0.3333333333333333 94:0.4 96:0.1111111111111111 97:0.6666666666666666 107:0.3333333333333333 116:1.0 128:0.3333333333333333 157:1.0 165:0.125 167:1.0 190:2.0 191:1.0 235:1.0 461:1.0 561:0.5 1064:1.0 2524:1.0 3375:1.0 4146:1.0 6340:1.0
3 4:1.0 6:0.2222222222222222 15:0.25 34:0.1 37:0.6666666666666666 42:0.3333333333333333 63:0.5 75:1.5 82:0.16666666666666666 98:0.5 150:0.029411764705882353 158:1.0 165:0.125 185:1.0 189:1.0 191:0.5 206:1.0 281:1.0 295:1.0 311:1.0 319:0.06666666666666667 340:1.0 367:1.0 443:1.0 660:1.0 693:1.0 1030:1.0 1033:1.0 1298:1.0 1424:1.0 1719:1.0 2017:1.0 2462:1.0 3605:1.0 4006:1.0 4102:1.0 5095:1.0 7127:1.0
3 6:0.05555555555555555 17:0.16666666666666666 34:0.1 37:0.3333333333333333 94:0.2 95:1.0 96:0.1111111111111111 114:0.2857142857142857 139:1.0 150:0.08823529411764706 165:0.125 206:1.0 238:0.14285714285714285 295:1.0 320:1.0 409:0.5 443:1.0 654:0.1111111111111111 982:1.0 1424:1.0 1947:0.5 2033:0.3333333333333333 2211:1.0 2320:2.0 3855:1.0 5329:1.0 6040:1.0
3 1:0.08333333333333333 34:0.1 35:1.0 36:1.0 42:0.3333333333333333 44:1.0 63:0.5 89:1.0 177:0.3333333333333333 197:0.5 215:0.1 311:1.0 314:1.0 417:1.0 496:1.0 654:0.1111111111111111 800:1.0 1671:1.0 2688:1.0 4185:1.0 4370:2.0 6345:2.0
3 1:0.08333333333333333 4:1.0 6:0.16666666666666666 23:0.1111111111111111 33:1.0 34:0.1 35:1.0 36:1.0 42:0.3333333333333333 56:0.3333333333333333 146:0.2 181:0.2 307:1.0 550:1.0 647:1.0 1266:1.0 1616:1.0 1671:1.0 2231:1.0 2444:1.0 2462:1.0 2609:1.0 5457:1.0 5602:0.5 5644:1.0 6283:1.0
3 6:0.05555555555555555 17:0.16666666666666666 34:0.3 37:0.6666666666666666 42:0.6666666666666666 56:0.3333333333333333 63:0.5 96:0.1111111111111111 107:0.3333333333333333 146:0.2 150:0.029411764705882353 191:1.0 201:1.0 206:1.0 219:0.3333333333333333 231:1.0 388:0.5 424:1.0 443:1.0 461:1.0 473:1.0 563:1.0 728:1.0 892:1.0 1139:0.5 1147:1.0 1161:1.0 1267:1.0 1404:1.0 1422:1.0 1438:1.0 1538:1.0 2041:1.0 2331:1.0 2376:1.0 2409:1.0 2695:1.0 3567:1.0 3661:1.0
3 6:0.05555555555555555 14:0.07692307692307693 15:0.16666666666666666 56:0.3333333333333333 63:0.5 82:0.16666666666666666 97:0.3333333333333333 100:0.25 191:0.5 219:0.3333333333333333 261:0.020833333333333332 287:0.5 320:1.0 373:0.1111111111111111 399:0.5 477:1.0 507:0.2 728:1.0 817:1.0 872:1.0 1399:1.0 1693:1.0 1790:0.25 2695:1.0 3128:1.0 3216:1.0 3255:1.0 3659:1.0 3661:1.0
3 1:0.08333333333333333 5:0.3333333333333333 6:0.1111111111111111 17:0.3333333333333333 23:0.1111111111111111 33:1.0 34:0.1 35:1.0 36:1.0 37:0.3333333333333333 115:1.0 140:0.5 191:0.5 204:1.0 416:0.25 417:1.0 443:1.0 473:0.5 646:1.0 1126:1.0 1181:1.0 2557:1.0 2801:1.0 3515:1.0 3870:1.0 4049:1.0 4651:1.0 7426:1.0
3 6:0.05555555555555555 17:0.16666666666666666 34:0.1 37:0.3333333333333333 96:0.1111111111111111 106:0.5 128:0.3333333333333333 201:1.0 223:2.0 327:0.16666666666666666 441:0.5 442:1.0 443:1.0 531:1.0 561:0.5 654:0.1111111111111111 689:1.0 850:1.0 1075:1.0 1217:1.0 1275:1.0 1426:1.0 1428:1.0 1438:1.0 1936:1.0 2294:1.0 3686:1.0 3981:1.0 4109:1.0 4341:0.5 4532:1.0 4911:1.0 5283:1.0 5602:0.5
3 5:0.6666666666666666 34:0.1 51:0.5 56:0.3333333333333333 63:0.5 88:1.0 94:0.2 98:0.5 102:0.5 107:0.3333333333333333 127:1.0 167:1.0 173:1.0 185:1.0 191:1.0 215:0.1 222:1.0 223:1.0 226:2.0 353:0.5 373:0.1111111111111111 438:0.3333333333333333 480:1.0 482:1.0 598:1.0 646:1.0 689:1.0 737:1.0 829:1.0 1693:1.0 1716:1.0 1867:1.0 3175:1.0 3770:1.0 3828:1.0 4497:1.0 6291:1.0
3 5:0.3333333333333333 6:0.1111111111111111 17:0.16666666666666666 34:0.1 42:0.3333333333333333 56:0.3333333333333333 82:0.16666666666666666 96:0.1111111111111111 97:0.3333333333333333 102:0.5 108:0.3333333333333333 129:1.0 150:0.029411764705882353 165:0.125 191:0.5 210:1.0 339:1.0 350:0.125 454:1.0 488:2.0 561:0.5 595:1.0 597:1.0 689:1.0 816:0.5 1295:1.0 1404:1.0 1669:1.0 1867:1.0 1885:1.0 2123:1.0 2538:1.0 3197:1.0 3593:1.0 3671:1.0 3686:1.0 4497:1.0 5778:1.0 6291:1.0
3 6:0.1111111111111111 94:0.2 147:1.0 311:1.0 425:1.0 511:0.5 1127:1.0 1571:1.0 2856:0.5 3259:1.0
3 6:0.05555555555555555 16:0.16666666666666666 56:0.3333333333333333 60:1.0 82:0.16666666666666666 97:0.3333333333333333 128:0.3333333333333333 150:0.029411764705882353 155:0.07142857142857142 163:1.0 226:1.0 281:1.0 327:0.16666666666666666 336:0.3333333333333333 399:0.5 473:0.5 1904:1.0 2055:0.5 2607:1.0 2721:1.0 2973:1.0 3663:1.0 4237:1.0 4246:1.0 4404:1.0 5549:1.0
3 1:0.08333333333333333 5:0.6666666666666666 6:0.1111111111111111 34:0.1 42:0.3333333333333333 45:0.5 75:0.5 89:1.0 120:1.0 150:0.058823529411764705 275:1.0 327:0.16666666666666666 353:0.5 367:1.0 441:0.5 448:1.0 929:1.0 1127:1.0 1241:0.5 1382:0.3333333333333333 1671:2.0 2015:1.0 2158:1.0 2313:1.0 2370:1.0 2530:1.0 2770:1.0 3392:1.0 3817:2.0 4051:1.0 4523:1.0
3 5:1.0 6:0.05555555555555555 14:0.07692307692307693 51:0.25 56:0.3333333333333333 73:1.0 94:0.2 114:0.14285714285714285 135:0.3333333333333333 138:0.14285714285714285 146:0.2 147:0.5 150:0.029411764705882353 169:1.0 185:1.0 275:1.0 359:0.5 367:1.0 379:1.0 427:0.1 483:1.0 531:0.5 536:1.0 549:1.0 583:1.0 609:1.0 661:1.0 747:0.5 846:1.0 897:0.5 1035:1.0 1295:1.0 1397:1.0 1412:0.5 1426:1.0 1671:1.0 2082:1.0 2721:1.0 2789:1.0 2819:1.0 3794:1.0 4054:0.3333333333333333 4261:1.0 4463:1.0 4465:1.0 4480:1.0 4635:1.0
3 1:0.08333333333333333 5:1.3333333333333333 15:0.3333333333333333 34:0.1 37:0.3333333333333333 42:0.6666666666666666 56:0.3333333333333333 73:1.0 82:0.5 123:1.0 128:0.3333333333333333 180:1.0 191:0.5 261:0.020833333333333332 286:1.0 287:0.5 350:0.125 373:0.1111111111111111 405:1.0 411:1.0 461:1.0 473:1.0 477:1.0 483:1.0 878:1.0 1095:1.0 1753:1.0 1910:1.0 2078:1.0 2295:1.0 2313:1.0 2941:1.0 2980:1.0 4723:1.0 5070:1.0 6459:1.0 6584:1.0
3 5:0.3333333333333333 6:0.05555555555555555 15:0.3333333333333333 17:0.16666666666666666 23:0.1111111111111111 35:1.0 42:2.3333333333333335 53:1.0 82:0.3333333333333333 96:0.1111111111111111 97:0.3333333333333333 135:0.3333333333333333 155:0.07142857142857142 181:0.2 249:0.5 251:0.5 270:1.0 272:0.5 289:1.0 441:0.5 443:1.0 534:3.0 560:1.0 561:0.5 577:1.0 615:1.0 644:1.0 717:1.0 735:1.0 1035:1.0 1160:0.2 1445:0.5 1473:1.0 1474:1.0 1538:1.0 1655:1.0 1719:1.0 1868:1.0 1992:0.5 2263:0.3333333333333333 2582:1.0 2751:1.0 2752:1.0 2776:1.0 2821:1.0 3096:1.0 3144:1.0 3146:1.0 3628:2.0 3832:1.0 5272:1.0 5613:1.0
3 5:1.0 6:0.05555555555555555 15:0.08333333333333333 23:0.2222222222222222 34:0.3 56:0.3333333333333333 63:0.5 64:1.0 71:1.0 73:1.0 82:0.16666666666666666 96:0.1111111111111111 97:0.3333333333333333 116:1.0 143:0.3333333333333333 147:0.5 169:1.0 176:1.0 185:1.0 191:1.0 201:1.0 245:1.0 281:1.0 319:0.06666666666666667 410:1.0 443:1.0 499:1.0 587:1.0 613:1.0 644:1.0 763:0.5 840:1.0 1102:1.0 1219:1.0 1690:1.0 1710:1.0 1910:1.0 2015:1.0 2045:1.0 2721:1.0 3064:1.0 3552:1.0 3584:1.0 3636:1.0 4306:1.0 5293:1.0 5552:1.0 7261:1.0
3 5:0.3333333333333333 6:0.16666666666666666 14:0.07692307692307693 23:0.1111111111111111 97:0.3333333333333333 165:0.125 169:1.0 191:0.5 220:0.3333333333333333 241:1.0 328:1.0 397:0.5 424:1.0 473:0.5 533:0.16666666666666666 1275:1.0 1700:1.0 2018:1.0 2235:1.0 3639:1.0 3840:1.0 3842:1.0 4385:1.0
3 5:0.6666666666666666 6:0.2777777777777778 15:0.16666666666666666 17:0.16666666666666666 23:0.1111111111111111 34:0.2 42:0.3333333333333333 45:0.5 82:0.16666666666666666 89:1.0 96:0.1111111111111111 97:0.6666666666666666 140:1.0 150:0.029411764705882353 327:0.16666666666666666 339:1.0 410:1.0 430:1.0 443:1.0 473:0.5 623:1.0 927:1.0 1397:1.0 1399:1.0 1655:1.0 2716:1.0 2992:1.0 5257:1.0 6276:1.0 6651:1.0 7177:1.0
3 5:0.3333333333333333 23:0.1111111111111111 42:0.6666666666666666 89:1.0 97:0.3333333333333333 135:0.3333333333333333 143:0.3333333333333333 147:1.0 150:0.08823529411764706 155:0.07142857142857142 165:0.125 215:0.1 327:0.16666666666666666 350:0.125 359:0.5 367:1.0 379:1.0 473:0.5 583:0.5 717:1.0 747:0.5 857:1.0 879:1.0 1180:0.5 1436:0.5 1637:1.0 2518:0.5 2672:1.0 4492:1.0 5293:1.0
3 1:0.25 5:0.3333333333333333 23:0.2222222222222222 34:0.1 36:1.0 96:0.1111111111111111 97:1.0 150:0.058823529411764705 215:0.1 409:0.5 423:0.5 617:1.0 695:1.0 941:1.0 1293:1.0 1295:1.0 1568:0.5 2183:1.0 3123:1.0 3405:1.0 3543:1.0
3 1:0.16666666666666666 4:2.0 6:0.05555555555555555 17:0.3333333333333333 33:1.0 56:0.6666666666666666 75:0.5 81:1.0 97:0.3333333333333333 105:0.5 114:0.42857142857142855 169:1.0 180:1.0 190:1.0 223:1.0 289:1.0 300:1.0 327:0.16666666666666666 399:0.5 473:1.0 482:1.0 491:1.0 511:0.5 587:1.0 615:1.0 790:1.0 1123:1.0 1154:1.0 1241:0.5 1275:1.0 1389:1.0 1959:2.0 2178:1.0 3437:1.0 3947:1.0 5140:1.0 5938:1.0 7265:1.0
3 1:0.08333333333333333 5:0.3333333333333333 15:0.08333333333333333 17:0.16666666666666666 23:0.1111111111111111 34:0.1 35:1.0 36:1.0 37:0.3333333333333333 42:0.3333333333333333 60:1.0 73:1.0 82:0.3333333333333333 190:1.0 215:0.1 228:0.5 235:1.0 340:1.0 423:0.5 496:1.0 664:1.0 714:1.0 769:1.0 1423:1.0 1538:1.0 1655:1.0
3 15:0.08333333333333333 25:0.5 42:0.6666666666666666 56:0.3333333333333333 95:1.0 145:0.5 223:1.0 319:0.06666666666666667 443:1.0 531:0.5 534:1.0 566:1.0 595:1.0 618:1.0 622:1.0 623:1.0 671:0.5 795:1.0 1295:1.0 1407:1.0 1853:1.0 1998:0.5 2532:1.0 4616:1.0 4877:1.0 5778:1.0
3 1:0.08333333333333333 5:0.3333333333333333 6:0.05555555555555555 15:0.16666666666666666 16:0.16666666666666666 34:0.1 56:0.3333333333333333 82:0.16666666666666666 88:1.0 114:0.14285714285714285 123:1.0 138:0.14285714285714285 243:1.0 261:0.020833333333333332 275:1.0 386:0.5 511:0.5 857:1.0 1009:1.0 1032:2.0 1155:1.0 1244:1.0 1295:1.0 1433:1.0 1998:0.5 2353:1.0 2609:1.0 3800:1.0 4540:1.0 5483:1.0 6160:1.0 6191:1.0
3 1:0.08333333333333333 5:0.6666666666666666 6:0.05555555555555555 11:1.0 42:0.3333333333333333 51:0.25 56:0.3333333333333333 128:0.6666666666666666 146:0.2 147:0.5 150:0.029411764705882353 155:0.07142857142857142 181:0.4 185:1.0 226:2.0 284:1.0 327:0.16666666666666666 350:0.125 409:0.5 443:1.0 473:0.5 588:1.0 714:1.0 1105:1.0 1109:1.0 1202:1.0 1225:1.0 1349:1.0 1538:1.0 1655:1.0 1768:1.0 1939:1.0 2059:1.0 2409:1.0 2553:1.0 2910:1.0 2930:1.0 3085:1.0 6028:1.0
3 37:0.3333333333333333 56:0.3333333333333333 97:0.6666666666666666 147:1.0 235:1.0 261:0.020833333333333332 266:0.5 272:0.5 287:0.5 340:1.0 375:0.5 785:1.0 1109:2.0 2716:1.0 3270:1.0 3976:1.0
3 6:0.05555555555555555 15:0.16666666666666666 17:0.3333333333333333 37:0.6666666666666666 42:0.3333333333333333 73:1.0 114:0.14285714285714285 147:0.5 169:1.0 206:1.0 261:0.020833333333333332 295:1.0 542:0.5 615:1.0 911:1.0 1109:1.0 1354:0.5 1448:1.0 1538:1.0 1572:1.0 1655:1.0 1826:1.0 2378:0.3333333333333333 2524:1.0 3539:1.0 5290:1.0
3 4:1.0 5:0.3333333333333333 15:0.16666666666666666 23:0.1111111111111111 42:0.6666666666666666 73:1.0 97:0.6666666666666666 150:0.058823529411764705 164:0.5 169:1.0 171:1.0 190:1.0 204:1.0 215:0.1 226:1.0 261:0.020833333333333332 484:1.0 681:0.3333333333333333 785:1.0 794:1.0 911:1.0 1126:1.0 1261:1.0 1785:1.0 1947:0.5 2723:1.0 3332:1.0 3473:1.0 4782:1.0
3 4:1.0 5:0.3333333333333333 6:0.16666666666666666 34:0.1 42:0.6666666666666666 56:0.3333333333333333 63:0.5 82:0.16666666666666666 95:1.0 105:0.5 107:0.3333333333333333 135:0.3333333333333333 192:0.5 261:0.020833333333333332 327:0.16666666666666666 376:1.0 473:1.0 488:1.0 531:1.0 534:3.0 542:0.5 561:1.0 785:1.0 1241:0.5 1261:1.0 1780:0.5 2614:1.0 3790:1.0 3838:1.0 4182:1.0 5684:1.0 7682:1.0
3 6:0.1111111111111111 34:0.1 42:0.3333333333333333 69:0.5 114:0.14285714285714285 117:0.0625 143:0.3333333333333333 146:0.2 147:0.5 165:0.125 170:1.0 253:1.0 261:0.020833333333333332 279:1.0 336:0.3333333333333333 350:0.125 484:1.0 587:1.0 892:1.0 908:1.0 1351:1.0 1382:0.3333333333333333 1487:1.0 2221:1.0 2263:0.3333333333333333 5030:1.0
3 1:0.08333333333333333 5:0.3333333333333333 15:0.16666666666666666 30:0.5 37:0.6666666666666666 64:1.0 69:0.5 88:1.0 116:1.0 128:0.3333333333333333 146:0.2 147:0.5 165:0.125 228:0.5 284:1.0 299:1.0 350:0.125 373:0.2222222222222222 452:1.0 484:1.0 488:1.0 561:0.5 587:1.0 747:0.5 1003:1.0 1091:1.0 1326:1.0 1327:1.0 1885:1.0 1936:1.0 2243:1.0 2403:1.0 2626:1.0 3584:1.0
3 1:0.08333333333333333 6:0.05555555555555555 23:0.1111111111111111 34:0.1 42:0.3333333333333333 49:1.0 56:0.3333333333333333 82:0.5 96:0.1111111111111111 106:1.5 139:1.0 145:0.5 146:0.2 162:1.0 165:0.25 169:1.0 188:1.0 189:1.0 328:1.0 353:0.5 393:0.3333333333333333 443:1.0 488:1.0 524:1.0 618:1.0 644:1.0 671:0.5 892:1.0 1075:1.0 1103:0.5 1241:0.5 1275:1.0 1681:1.0 1780:0.5 1885:1.0 1923:1.0 2591:0.3333333333333333 2807:1.0 4462:1.0 5347:1.0 5552:1.0
3 5:0.3333333333333333 6:0.05555555555555555 14:0.07692307692307693 34:0.1 42:0.3333333333333333 82:0.3333333333333333 96:0.1111111111111111 102:0.5 201:1.0 204:1.0 223:1.0 373:0.1111111111111111 441:0.5 461:1.0 1003:1.0 1220:1.0 1278:1.0 1572:1.0 1596:1.0 2068:1.0 2441:1.0 2591:0.3333333333333333 4965:1.0 6191:1.0
3 4:1.0 14:0.07692307692307693 69:0.5 82:0.16666666666666666 138:0.14285714285714285 169:1.0 170:1.0 204:1.0 206:1.0 219:0.3333333333333333 255:1.0 367:1.0 756:1.0 1936:1.0 2539:1.0
3 6:0.05555555555555555 14:0.07692307692307693 15:0.08333333333333333 37:0.3333333333333333 49:1.0 97:0.3333333333333333 105:0.5 138:0.14285714285714285 177:0.3333333333333333 215:0.1 224:1.0 424:1.0 443:1.0 542:0.5 858:1.0 930:1.0 2474:1.0 2591:0.3333333333333333
3 5:0.3333333333333333 6:0.05555555555555555 14:0.07692307692307693 42:0.3333333333333333 82:0.16666666666666666 146:0.2 228:0.5 505:1.0 573:1.0 1091:1.0 1199:1.0 1538:1.0 1847:1.0 3605:1.0 5824:1.0
3 5:0.6666666666666666 6:0.05555555555555555 69:0.5 95:1.0 106:0.5 114:0.14285714285714285 135:0.3333333333333333 147:0.5 261:0.020833333333333332 336:0.3333333333333333 353:0.5 534:1.0 955:0.5 1057:1.0 1087:1.0 1104:1.0 1430:1.0 2030:1.0 3550:1.0 3584:1.0 3849:1.0 5714:1.0 7426:1.0
3 15:0.08333333333333333 17:0.16666666666666666 23:0.1111111111111111 42:0.3333333333333333 82:0.3333333333333333 97:0.3333333333333333 108:0.3333333333333333 134:1.0 139:1.0 154:1.0 155:0.21428571428571427 201:1.0 215:0.3 272:0.5 338:1.0 359:0.5 440:0.5 482:1.0 560:1.0 1040:1.0 1219:1.0 1241:0.5 7426:1.0
3 6:0.16666666666666666 15:0.08333333333333333 17:0.16666666666666666 63:0.5 73:1.0 105:1.0 108:0.3333333333333333 167:1.0 215:0.1 253:1.0 295:1.0 305:1.0 328:1.0 359:0.5 407:1.0 441:0.5 461:1.0 522:1.0 615:1.0 958:1.0 959:1.0 960:1.0 1045:1.0 1275:1.0 1423:1.0 1445:0.5 1464:1.0 1569:0.3333333333333333 1621:1.0 1671:1.0 2175:0.5 2282:1.0 3013:1.0 3535:1.0 4774:0.5 5704:0.5 7426:1.0
3 5:0.6666666666666666 6:0.05555555555555555 26:1.0 34:0.1 37:0.3333333333333333 42:0.6666666666666666 56:0.3333333333333333 63:0.5 64:1.0 69:0.5 108:0.3333333333333333 146:0.2 150:0.058823529411764705 169:1.0 181:0.2 215:0.1 359:1.5 443:1.0 558:1.0 681:0.3333333333333333 696:1.0 768:0.3333333333333333 1006:1.0 1215:1.0 1521:1.0 1651:1.0 1923:1.0 1929:1.0 1939:1.0 2683:0.25 2770:1.0 2942:1.0 3151:1.0 3379:1.0 4076:1.0 4104:1.0 7271:1.0
3 34:0.1 37:0.3333333333333333 42:0.6666666666666666 54:1.0 56:0.3333333333333333 63:0.5 64:2.0 75:0.5 82:0.16666666666666666 108:0.3333333333333333 150:0.058823529411764705 169:1.0 181:0.2 201:1.0 250:1.0 251:0.5 350:0.125 359:1.0 373:0.1111111111111111 399:0.5 443:1.0 447:1.0 511:0.5 681:0.3333333333333333 768:0.3333333333333333 795:1.0 1058:1.0 1192:1.0 1332:1.0 1582:1.0 1923:1.0 1929:1.0 2016:1.0 2770:1.0 2942:1.0 4076:1.0 4242:1.0 7271:1.0
3 34:0.1 82:0.16666666666666666 97:0.3333333333333333 143:0.3333333333333333 145:0.5 150:0.058823529411764705 238:0.14285714285714285 328:1.0 329:0.3333333333333333 367:1.0 370:1.0 664:1.0 1097:1.0 1296:1.0 1669:1.0 1929:1.0 2370:2.0 3663:1.0
3 5:1.0 6:0.1111111111111111 15:0.16666666666666666 23:0.1111111111111111 34:0.1 37:0.6666666666666666 42:0.3333333333333333 44:1.0 56:0.3333333333333333 64:2.0 97:0.3333333333333333 106:1.0 147:0.5 226:1.0 253:1.0 350:0.125 367:1.0 373:0.1111111111111111 424:1.0 441:0.5 449:1.0 473:1.0 488:2.0 545:0.5 561:0.5 989:1.0 1143:1.0 1260:0.5 1263:1.0 1452:1.0 1511:1.0 1569:0.3333333333333333 1707:1.0 1867:1.0 2013:1.0 2248:1.0 2288:1.0 2485:1.0 3582:1.0 3745:1.0 7086:1.0
3 5:0.6666666666666666 6:0.05555555555555555 42:0.6666666666666666 69:0.5 73:1.0 97:0.3333333333333333 106:0.5 108:0.3333333333333333 146:0.2 165:0.125 204:1.0 250:1.0 368:1.0 402:1.0 445:1.0 450:1.0 483:1.0 735:1.0 1066:1.0 1161:1.0 1266:1.0 1281:1.0 1386:1.0 1445:0.5 1651:1.0 1847:1.0 1867:2.0 2297:1.0 3121:1.0 3567:1.0 4335:1.0
3 1:0.08333333333333333 3:1.0 5:0.3333333333333333 6:0.16666666666666666 15:0.08333333333333333 17:0.16666666666666666 34:0.1 56:0.3333333333333333 69:0.5 82:0.16666666666666666 98:0.5 106:0.5 114:0.14285714285714285 123:1.0 139:1.0 146:0.2 162:1.0 165:0.125 226:1.0 353:0.5 388:0.5 587:1.0 641:1.0 717:1.0 1057:1.0 1109:1.0 1522:0.5 1743:1.0 2332:1.0 3098:1.0 3661:1.0 4262:1.0 4555:1.0 4853:1.0 4889:1.0
3 1:0.08333333333333333 5:0.3333333333333333 6:0.05555555555555555 15:0.25 17:0.16666666666666666 23:0.1111111111111111 34:0.1 54:1.0 56:0.3333333333333333 74:1.0 75:0.5 82:0.16666666666666666 105:0.5 123:1.0 135:0.3333333333333333 147:0.5 169:1.0 219:0.3333333333333333 238:0.14285714285714285 260:1.0 326:1.0 394:1.0 418:1.0 460:0.5 509:1.0 553:1.0 566:1.0 573:1.0 695:1.0 1083:1.0 1109:1.0 1221:1.0 1317:1.0 1332:1.0 1333:1.0 1692:1.0 1716:1.0 1717:1.0 2564:1.0 2721:1.0 3330:1.0 4275:1.0 4669:1.0 4703:1.0 5093:1.0 5970:1.0 6257:1.0
3 17:0.16666666666666666 25:0.5 138:0.14285714285714285 284:1.0 1332:1.0 4274:1.0 4275:1.0
3 5:0.6666666666666666 6:0.05555555555555555 42:0.6666666666666666 82:0.16666666666666666 98:0.5 102:0.5 150:0.029411764705882353 169:1.0 175:1.0 177:0.3333333333333333 228:0.5 350:0.125 366:1.0 409:0.5 411:1.0 443:1.0 648:1.0 768:0.3333333333333333 1421:1.0 1434:1.0 1671:1.0 1719:1.0 1752:1.0 2694:1.0 7358:1.0
3 5:0.3333333333333333 6:0.05555555555555555 23:0.1111111111111111 37:0.3333333333333333 42:0.3333333333333333 146:0.2 150:0.029411764705882353 165:0.125 169:1.0 191:1.0 347:0.5 350:0.125 393:0.3333333333333333 473:1.0 484:1.0 534:1.0 609:1.0 716:1.0 776:1.0 908:1.0 2532:1.0 2614:1.0 2678:0.5 3663:1.0 4571:1.0 6143:1.0
3 5:0.6666666666666666 23:0.1111111111111111 42:0.6666666666666666 49:1.0 56:0.3333333333333333 82:0.3333333333333333 94:0.4 98:0.5 128:0.3333333333333333 131:0.5 165:0.125 176:1.0 249:0.5 263:1.0 292:1.0 350:0.125 366:1.0 367:1.0 373:0.1111111111111111 411:1.0 441:0.5 457:1.0 460:0.5 473:1.0 477:1.0 767:1.0 776:1.0 829:1.0 911:1.0 1580:1.0 1614:1.0 2054:1.0 2729:1.0 3030:1.0 4599:1.0 5164:1.0 6106:1.0 6713:1.0
3 1:0.16666666666666666 15:0.08333333333333333 17:0.3333333333333333 34:0.2 35:1.0 37:0.3333333333333333 56:0.3333333333333333 63:0.5 71:1.0 96:0.2222222222222222 97:0.3333333333333333 143:0.3333333333333333 150:0.058823529411764705 226:1.0 284:1.0 300:1.0 331:1.0 402:1.0 416:0.25 417:1.0 418:1.0 561:0.5 595:1.0 3241:1.0 3998:1.0 4238:1.0 4562:1.0 6169:1.0 7265:1.0 7681:1.0
3 5:0.3333333333333333 6:0.1111111111111111 17:0.16666666666666666 117:0.0625 138:0.14285714285714285 146:0.2 595:1.0 1920:1.0 2138:1.0 2384:0.5 4425:1.0 4789:1.0 5055:1.0
3 6:0.1111111111111111 15:0.08333333333333333 17:0.16666666666666666 23:0.1111111111111111 30:0.5 34:0.2 37:0.3333333333333333 42:0.6666666666666666 82:0.16666666666666666 97:0.3333333333333333 98:0.5 105:0.5 135:0.3333333333333333 145:0.5 169:1.0 175:1.0 180:1.0 191:0.5 211:1.0 286:1.0 328:1.0 340:1.0 367:2.0 385:1.0 389:0.5 411:1.0 511:0.5 542:0.5 617:1.0 620:1.0 622:1.0 624:1.0 671:0.5 695:2.0 747:0.5 811:1.0 1123:1.0 1280:1.0 2158:1.0 2219:1.0 2534:1.0 2970:1.0 3072:1.0 3330:1.0 3331:1.0 3671:1.0 3742:1.0 5238:1.0
3 5:0.3333333333333333 6:0.05555555555555555 14:0.07692307692307693 15:0.08333333333333333 16:0.16666666666666666 34:0.1 44:1.0 56:0.3333333333333333 96:0.1111111111111111 275:1.0 320:1.0 587:1.0 595:1.0 681:0.3333333333333333 866:1.0 1387:1.0 1403:1.0 2101:1.0 2478:0.3333333333333333 2504:1.0 3330:1.0 3353:1.0 3410:0.5 3653:0.5 4498:1.0 5778:1.0
3 5:0.3333333333333333 6:0.05555555555555555 15:0.08333333333333333 25:0.5 42:0.3333333333333333 54:1.0 56:0.3333333333333333 73:1.0 75:0.5 98:0.5 185:1.0 245:1.0 320:1.0 367:1.0 399:0.5 423:0.5 543:0.5 717:1.0 813:1.0 866:1.0 999:1.0 1139:0.5 1373:1.0 1445:0.5 1675:1.0 1785:1.0 2688:1.0 3450:1.0 4376:1.0 4498:1.0 4612:1.0
3 5:0.6666666666666666 6:0.05555555555555555 14:0.07692307692307693 42:0.3333333333333333 73:1.0 95:1.0 97:0.3333333333333333 191:1.0 251:0.5 305:2.0 328:1.0 350:0.25 353:0.5 494:1.0 506:0.16666666666666666 531:0.5 585:1.0 586:1.0 618:1.0 1017:1.0 1018:1.0 1066:1.0 1389:1.0 1496:1.0 1535:5.0 2786:1.0 4483:1.0 4893:1.0
3 6:0.1111111111111111 31:1.0 35:1.0 36:1.0 91:1.0 92:1.0 150:0.029411764705882353 190:2.0 261:0.020833333333333332 275:1.0 359:0.5 496:1.0 785:1.0 911:1.0 1436:0.5 1810:1.0 2059:1.0 3031:1.0 6698:1.0
3 6:0.05555555555555555 14:0.07692307692307693 15:0.08333333333333333 56:0.3333333333333333 73:1.0 150:0.029411764705882353 261:0.020833333333333332 263:1.0 359:0.5 445:1.0 644:1.0 785:1.0 3870:1.0
3 5:0.3333333333333333 14:0.07692307692307693 34:0.1 42:0.3333333333333333 97:0.3333333333333333 147:0.5 155:0.07142857142857142 158:1.0 201:1.0 219:0.3333333333333333 220:0.3333333333333333 261:0.020833333333333332 367:1.0 373:0.1111111111111111 375:0.5 441:0.5 563:1.0 785:1.0 1241:0.5 1479:1.0 1564:0.5 1896:1.0 1941:1.0 2342:1.0
3 5:0.3333333333333333 6:0.1111111111111111 34:0.1 56:0.3333333333333333 73:1.0 82:0.3333333333333333 114:0.14285714285714285 128:0.3333333333333333 146:0.2 155:0.07142857142857142 216:1.0 308:1.0 473:0.5 648:1.0 1298:1.0 1430:1.0 1611:1.0 1654:1.0 3006:1.0 3267:1.0 5170:1.0
3 14:0.07692307692307693 37:0.3333333333333333 56:0.3333333333333333 319:0.06666666666666667 375:0.5 566:1.0 587:1.0 1432:1.0 1921:1.0 2330:2.0 2649:1.0
3 5:0.3333333333333333 6:0.05555555555555555 7:0.5 15:0.08333333333333333 17:0.16666666666666666 34:0.1 37:0.3333333333333333 64:1.0 82:0.16666666666666666 97:0.3333333333333333 128:0.3333333333333333 135:0.3333333333333333 165:0.125 181:0.2 220:0.3333333333333333 223:1.0 275:1.0 300:1.0 347:0.5 373:0.1111111111111111 440:0.5 441:0.5 587:1.0 654:0.1111111111111111 1423:1.0 1471:1.0 1695:1.0 1779:1.0 2519:1.0 2675:1.0 2959:1.0 3391:1.0 5095:1.0 6313:1.0
3 5:0.3333333333333333 6:0.05555555555555555 14:0.07692307692307693 17:0.16666666666666666 45:1.0 56:0.3333333333333333 128:0.3333333333333333 138:0.14285714285714285 240:1.0 319:0.06666666666666667 399:0.5 417:1.0 511:0.5 549:1.0 561:0.5 587:1.0 647:1.0 4185:1.0 4237:1.0 5549:1.0 5952:2.0
3 1:0.08333333333333333 6:0.05555555555555555 42:0.6666666666666666 56:0.3333333333333333 96:0.1111111111111111 97:0.3333333333333333 98:0.5 101:1.0 135:0.3333333333333333 165:0.125 191:0.5 223:1.0 319:0.06666666666666667 443:1.0 671:0.5 717:1.0 1332:1.0 1333:1.0 1403:1.0 1564:0.5 1926:1.0 2686:1.0 3774:1.0 6291:1.0 6322:1.0
3 23:0.1111111111111111 34:0.2 97:0.3333333333333333 117:0.0625 138:0.14285714285714285 165:0.125 181:0.2 190:1.0 531:0.5 1105:1.0 1155:1.0 1667:1.0 1740:1.0 2609:1.0 2610:1.0 2611:1.0 2776:1.0 4059:1.0 4707:1.0
3 6:0.1111111111111111 7:0.5 14:0.07692307692307693 15:0.08333333333333333 34:0.1 42:0.3333333333333333 56:0.3333333333333333 97:0.3333333333333333 190:1.0 191:0.5 215:0.2 275:1.0 384:1.0 711:1.0 1256:1.0 2688:1.0 3212:1.0 3353:1.0 4006:1.0 4707:1.0 5495:1.0
3 5:0.3333333333333333 6:0.05555555555555555 15:0.08333333333333333 31:1.0 34:0.1 42:1.6666666666666667 101:1.0 105:0.5 109:0.5 115:1.0 128:0.3333333333333333 147:0.5 150:0.029411764705882353 180:1.0 194:1.0 204:1.0 206:1.0 215:0.1 240:1.0 241:1.0 251:0.5 373:0.1111111111111111 441:0.5 473:2.0 511:0.5 564:1.0 1332:1.0 1569:0.3333333333333333 1670:0.5 1717:1.0 2297:1.0 2691:1.0 2941:1.0 4238:1.0 4241:1.0 4924:1.0 4980:1.0 5474:1.0 6160:1.0 6390:1.0 6913:1.0
3 5:0.3333333333333333 6:0.16666666666666666 7:0.5 17:0.16666666666666666 31:1.0 42:0.3333333333333333 56:0.3333333333333333 63:0.5 75:0.5 82:0.16666666666666666 106:0.5 115:1.0 117:0.0625 146:0.2 147:0.5 149:1.0 150:0.029411764705882353 176:1.0 207:1.0 232:1.0 281:1.0 300:1.0 350:0.125 539:1.0 561:0.5 615:1.0 1161:1.0 1421:1.0 1423:1.0 1448:1.0 1719:1.0 2229:1.0 2559:0.3333333333333333 2803:1.0 3584:1.0 3800:1.0 4311:1.0 5316:1.0
3 5:0.3333333333333333 6:0.05555555555555555 10:1.0 11:1.0 12:1.0 15:0.08333333333333333 31:1.0 34:0.1 42:0.6666666666666666 64:2.0 75:0.5 97:0.3333333333333333 150:0.058823529411764705 201:1.0 235:1.0 261:0.020833333333333332 319:0.06666666666666667 327:0.16666666666666666 380:1.0 488:1.0 587:1.0 785:1.0 1003:1.0 1104:0.5 1281:1.0 1355:1.0 1440:1.0 1661:0.5 2064:0.5 3448:1.0 4370:1.0 4707:1.0
3 5:1.3333333333333333 7:0.5 30:0.5 31:1.0 42:0.3333333333333333 88:1.0 97:0.3333333333333333 106:0.5 108:0.3333333333333333 131:0.5 143:0.3333333333333333 146:0.4 147:0.5 191:0.5 454:1.0 473:0.5 878:1.0 1085:1.0 1268:1.0 1535:1.0 1661:0.5 1667:1.0 2515:1.0 2591:0.3333333333333333 3416:1.0 3556:2.0 4324:1.0 4406:1.0 7017:1.0 7672:1.0
3 6:0.2222222222222222 15:0.08333333333333333 23:0.1111111111111111 31:1.0 56:0.3333333333333333 75:0.5 82:0.5 97:0.3333333333333333 106:0.5 143:0.3333333333333333 146:0.2 147:0.5 191:1.0 220:0.3333333333333333 222:1.0 254:1.0 261:0.020833333333333332 300:1.0 367:1.0 386:0.5 409:0.5 488:1.0 534:1.0 561:0.5 622:1.0 672:1.0 713:1.0 1332:1.0 1333:1.0 1426:1.0 1546:1.0 1865:1.0 1998:0.5 2317:1.0 2683:0.25 3344:1.0 3870:1.0 4407:1.0 5527:1.0
3 5:0.6666666666666666 6:0.1111111111111111 17:0.16666666666666666 29:1.0 31:1.0 42:0.6666666666666666 82:0.16666666666666666 97:0.6666666666666666 106:0.5 115:1.0 150:0.029411764705882353 165:0.125 215:0.1 238:0.14285714285714285 254:0.5 273:0.3333333333333333 300:1.0 319:0.06666666666666667 339:1.0 373:0.1111111111111111 410:1.0 488:1.0 541:1.0 870:1.0 1596:1.0 1667:1.0 2351:1.0 2378:0.3333333333333333 2694:1.0 3182:1.0 3231:1.0 3770:1.0 3884:1.0 5076:1.0
3 1:0.08333333333333333 6:0.05555555555555555 24:1.0 34:0.2 42:0.3333333333333333 56:0.3333333333333333 73:1.0 82:0.16666666666666666 97:0.3333333333333333 114:0.14285714285714285 146:0.2 181:0.2 221:1.0 223:1.0 225:1.0 226:1.0 251:0.5 261:0.020833333333333332 272:0.5 300:1.0 320:1.0 399:0.5 405:1.0 406:1.0 543:0.5 654:0.1111111111111111 995:1.0 1032:1.0 1410:1.0 1667:4.0 1910:1.0 1992:0.5 2876:1.0 2923:1.0 2966:1.0 3087:1.0 3106:1.0 6002:1.0
3 5:0.3333333333333333 6:0.05555555555555555 7:0.5 17:0.16666666666666666 23:0.1111111111111111 31:1.0 34:0.4 54:1.0 56:0.6666666666666666 128:0.3333333333333333 222:1.0 261:0.020833333333333332 281:1.0 300:1.0 477:1.0 798:1.0 1177:1.0 1332:1.0 1333:1.0 1465:1.0 2113:1.0 2119:2.0 2609:1.0 2876:1.0
3 5:0.6666666666666666 6:0.16666666666666666 15:0.16666666666666666 17:0.16666666666666666 42:0.3333333333333333 82:0.16666666666666666 146:0.2 147:0.5 190:2.0 191:0.5 204:1.0 290:1.0 441:0.5 577:1.0 1123:1.0 1569:0.3333333333333333 1904:1.0 2462:1.0 2776:1.0 3208:1.0 3332:1.0 3892:1.0 4155:1.0 4236:1.0 4880:1.0 4980:1.0 5297:1.0 6345:1.0
3 5:0.3333333333333333 6:0.16666666666666666 14:0.07692307692307693 34:0.1 51:0.25 56:0.3333333333333333 145:0.5 201:1.0 204:1.0 255:1.0 367:1.0 1780:0.5 2538:1.0 3183:1.0 3416:1.0
3 5:0.3333333333333333 6:0.1111111111111111 14:0.07692307692307693 15:0.08333333333333333 23:0.2222222222222222 56:0.3333333333333333 82:0.16666666666666666 106:1.0 146:0.2 147:1.0 155:0.07142857142857142 165:0.25 241:1.0 278:1.0 457:1.0 908:1.0 1248:1.0 1298:1.0 1830:1.0 1923:1.0 1992:1.0 2721:1.0 2722:1.0 3910:1.0 4054:0.3333333333333333 4490:1.0 5926:1.0
3 5:0.3333333333333333 6:0.05555555555555555 14:0.07692307692307693 17:0.16666666666666666 97:0.6666666666666666 114:0.14285714285714285 138:0.14285714285714285 165:0.125 232:1.0 275:1.0 290:1.0 491:1.0 647:1.0 724:1.0 927:1.0 988:0.3333333333333333 1481:1.0 1671:1.0 1888:1.0 2435:1.0 2547:1.0 2626:1.0 4344:1.0 4576:1.0 5824:1.0 6696:1.0
3 5:0.6666666666666666 15:0.08333333333333333 25:0.5 34:0.2 177:0.3333333333333333 290:1.0 407:1.0 510:1.0 747:0.5 1064:1.0 1191:1.0 1332:1.0 1333:1.0 1578:1.0 1932:1.0 1994:1.0 2959:1.0 3101:0.5 3567:1.0 4567:1.0
3 1:0.08333333333333333 6:0.05555555555555555 15:0.25 17:0.16666666666666666 30:0.5 34:0.2 35:1.0 36:1.0 42:0.6666666666666666 56:0.3333333333333333 96:0.1111111111111111 98:0.5 131:0.5 155:0.07142857142857142 175:1.0 185:1.0 188:1.0 302:1.0 320:1.0 368:1.0 393:0.3333333333333333 443:1.0 496:1.0 526:1.0 800:1.0 857:1.0 1120:1.0 1345:1.0 1349:1.0 1671:1.0 1672:1.0 1708:2.0 1709:2.0 2282:1.0 2828:1.0 4250:1.0 4324:1.0
3 15:0.08333333333333333 30:0.5 34:0.1 42:0.3333333333333333 44:1.0 82:0.16666666666666666 97:0.3333333333333333 261:0.020833333333333332 281:1.0 373:0.1111111111111111 743:1.0 1389:1.0 1992:0.5 2539:1.0 2721:1.0 4250:1.0 5105:1.0
3 6:0.2222222222222222 14:0.07692307692307693 15:0.08333333333333333 17:0.16666666666666666 94:0.4 97:0.6666666666666666 149:1.0 169:1.0 171:1.0 204:1.0 226:1.0 331:1.0 531:0.5 537:1.0 546:1.0 561:0.5 828:0.5 850:1.0 1154:1.0 1183:0.5 1672:1.0 1681:1.0 1780:0.5 2278:1.0 2468:1.0 2968:1.0 3260:1.0 4327:1.0
3 6:0.1111111111111111 34:0.2 42:0.3333333333333333 82:0.16666666666666666 150:0.029411764705882353 245:1.0 473:0.5 543:0.5 918:1.0 919:1.0 1044:1.0 1256:1.0 1361:0.0625 1446:1.0 1569:0.3333333333333333 2041:1.0 2263:0.3333333333333333 3049:1.0 3410:0.5 3700:1.0 7408:1.0
3 5:0.3333333333333333 6:0.1111111111111111 14:0.07692307692307693 23:0.1111111111111111 26:1.0 42:0.6666666666666666 54:1.0 97:0.6666666666666666 101:1.0 191:0.5 219:0.3333333333333333 226:1.0 238:0.14285714285714285 255:1.0 272:0.5 329:0.3333333333333333 371:1.0 441:0.5 1426:1.0 1637:1.0 1992:0.5 2996:1.0 3823:1.0 7553:1.0
3 4:1.0 5:0.6666666666666666 6:0.1111111111111111 17:0.16666666666666666 37:0.6666666666666666 56:0.3333333333333333 75:0.5 98:0.5 138:0.14285714285714285 143:0.3333333333333333 150:0.029411764705882353 246:0.5 307:1.0 327:0.16666666666666666 350:0.125 394:1.0 896:1.0 981:1.0 1143:1.0 1166:2.0 1332:1.0 1333:1.0 1664:1.0 2478:0.3333333333333333 2500:1.0 2567:1.0 3672:1.0 4141:1.0 4979:1.0 6561:1.0
3 5:0.3333333333333333 56:0.3333333333333333 117:0.0625 138:0.14285714285714285 215:0.1 443:1.0 461:1.0 1295:1.0 1332:1.0 1333:1.0 2680:1.0 2927:1.0 3101:0.5 3241:1.0 3737:1.0 5027:1.0
3 1:0.08333333333333333 5:1.0 6:0.16666666666666666 15:0.08333333333333333 34:0.1 42:0.3333333333333333 44:1.0 56:0.3333333333333333 73:1.0 75:0.5 82:0.16666666666666666 97:0.3333333333333333 98:0.5 132:0.5 165:0.125 190:1.0 197:0.5 204:1.0 206:1.0 211:1.0 215:0.2 367:1.0 399:0.5 412:1.0 478:1.0 563:1.0 1116:1.0 1160:0.2 1177:1.0 1222:1.0 1522:0.5 1596:1.0 1661:0.5 1693:1.0 2688:1.0 2843:1.0 3175:1.0 4177:1.0 4317:1.0 4523:1.0 5257:1.0
3 1:0.08333333333333333 4:1.0 6:0.1111111111111111 16:0.16666666666666666 25:0.5 34:0.1 56:0.3333333333333333 138:0.14285714285714285 164:0.5 386:0.5 654:0.1111111111111111 716:1.0 717:1.0 1222:1.0 2929:1.0
3 5:0.3333333333333333 34:0.1 42:0.3333333333333333 56:0.3333333333333333 97:0.6666666666666666 101:1.0 128:0.3333333333333333 191:0.5 261:0.020833333333333332 272:0.5 353:0.5 367:2.0 595:1.0 597:1.0 599:1.0 785:1.0 1241:0.5 1332:1.0 1333:1.0 1389:1.0 1410:1.0 2973:1.0 3832:1.0 4158:1.0 4497:1.0
3 6:0.16666666666666666 15:0.08333333333333333 34:0.1 42:1.0 56:0.3333333333333333 82:0.16666666666666666 169:1.0 201:1.0 245:1.0 350:0.125 439:1.0 441:0.5 496:1.0 511:0.5 693:1.0 843:1.0 892:1.0 927:1.0 1046:1.0 1116:1.0 1174:1.0 1307:1.0 1332:1.0 1333:1.0 1363:1.0 1569:0.3333333333333333 1719:1.0 2018:1.0 2188:1.0 3208:1.0
3 5:0.3333333333333333 6:0.2222222222222222 17:0.5 34:0.1 42:0.6666666666666666 44:1.0 56:0.3333333333333333 82:0.5 114:0.14285714285714285 138:0.14285714285714285 139:1.0 147:0.5 275:1.0 300:1.0 318:1.0 343:1.0 488:1.0 650:1.0 1028:1.0 1044:1.0 1104:1.0 2017:1.0 2141:1.0 2158:1.0 2161:1.0 2162:1.0 2182:1.0
3 14:0.07692307692307693 15:0.08333333333333333 34:0.1 37:0.3333333333333333 73:1.0 165:0.125 240:1.0 290:1.0 297:1.0 298:1.0 399:0.5 418:1.0 449:1.0 473:0.5 635:1.0 1332:1.0 1333:1.0 1596:1.0 1719:1.0 1883:1.0 1992:0.5 2071:1.0 2941:1.0 3031:3.0 3829:1.0 4221:1.0 4924:1.0
|
fa5faa4295d25fafa1ca2e21ddbd1af79c932f62 | 6e257f133dd8984b578f3c9fd3f269eabc0750be | /ScilabFromTheoryToPractice/CreatingPlots/testxgridlegend.sce | 46e3aa1bad83ef27f6b8f6594543e3e47ef9cc4c | [] | no_license | markusmorawitz77/Scilab | 902ef1b9f356dd38ea2dbadc892fe50d32b44bd0 | 7c98963a7d80915f66a3231a2235010e879049aa | refs/heads/master | 2021-01-19T23:53:52.068010 | 2017-04-22T12:39:21 | 2017-04-22T12:39:21 | 89,051,705 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 349 | sce | testxgridlegend.sce | exec('testplot.sce',-1)
// add a title
xtitle(' figure title')
// add a green (=3) coordinate grid
xgrid(3)
// add a legend in the upper-right corner (2) with a box (1) surrounding it
legend('circle','tangent','normal',2,1);
// add a legend in the lower-right corner (4) without a box (0)
legends(['circle','tangent','normal'],[5,2,4],4,0);
|
bdc08e96b1487a3ae48751843851298607479b49 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1322/CH21/EX21.1/183ex1.sce | aa7aa4ab5a26c59fc770111264fd526aed0745e7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 488 | sce | 183ex1.sce |
//spiral spring example
clc;
clear;
close;
clf();
weight=linspace(0,0.5,6);
extension=[0 0.15 0.3 0.44 0.6 0.75];
plot2d(weight,extension,13);
xtitle("spiral spring example","vaues of L","values of E");
xgrid();
//Extension varies directly as the attached load
//let E=Extension,L=Load
//to find 'k',a pair of values is taken at point p
L=0.5;E=0.75;
plot(L,E,'r..');
legend("E=KL",'POINT P',2);
//substitute 'p' in E=K*L
K=E/L;
mprintf("the law is : \n E= %fL \n",K)
|
1f95c32023eab9d020117a0b229f48604120bc4f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1106/CH3/EX3.25/ex3_25.sce | 5cf20b3fa7859af81275ad6c0942fdcc8114f216 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 253 | sce | ex3_25.sce | // Example 3.25, page no-156
clear
clc
Vo=3
Vi=10*10^-3
R2=1*10^6
Av=300
fL=100
RL=15*10^3
R3=R2/(Av-1)
R1=R2-R3
C2=1/(2*%pi*fL*R3)
C2=C2*10^6
printf('\nC2= %.2f uF',C2)
C3=1/(2*%pi*fL*RL/10)
C3=C3*10^6
printf('\nC3= %.2f uF',C3)
|
51054af27e5812da3b4065b1e11337617b0bfffe | 449d555969bfd7befe906877abab098c6e63a0e8 | /1703/CH11/EX11.12/11_12.sce | 252b54731f4bdda6d03ce7747a62f46208601a86 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 11_12.sce | clear
clc
//initialisation of variables
sl= 12 //ft
l= 20 //ft
d= 4 //in
dp= 6 //in
lst= 18 //in
k= 0.025
H= 32 //ft
g= 32.2 //ft/sec^2
pf= 6 //ft
a= 33.83
a1= 9.53
//CALCULATIONS
A= sqrt((H-sl-d)*g/a)*a1
Q= 2*%pi*(dp/12)^2*lst/(12*4*60)
v= Q/(%pi*(d/12)^2/4)
kh= v^2/(2*g)
fh= k*l*v^2*12/(2*g*d)
N= sqrt((H-sl-pf)/(kh+fh))
//RESULTS
printf ('premissible speed = %.1f r.p.m',A)
printf ('\n maximum premissible speed = %.1f r.p.m',N)
//The answer is a bit different due to rounding off error in textbook
|
0e9457766d706a3be3c50e77512ad599343cd5e6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2243/CH11/EX11.14/Ex11_14.sce | 5a47365e048211f5bf7b21acf09a96c44fdbc116 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 744 | sce | Ex11_14.sce | clc();
clear;
//Given :
sigma = 4*10^-4; // conductivity at room temperature in ohm^-1 m^-1
M = 28.1; // atomic weight in kg/kmole
d = 2330; // density in kg/m^3
dop = 10^8 ;// doping per 10^8 silicon atoms
e = 1.6*10^-19; // charge of an electron in C
mue = 0.135; // mobility of free electrons for silicon in m^2/Vs
Na = 6.023*10^26 ; // Avagadro's constant in atoms/kmole
N = (d*Na)/M; //atoms/m^3
Nd = N/dop; // per m^3
n = Nd; // electron concentration / m^3
sigma1 = n*e*mue; // conductivity in ohm^-1 m^-1
t = sigma1/sigma; // number of times the conductivity increased
printf("Conductivity increased %d times .",t);
//Result obtained differs from that in textbook, because approximate value for sigma1 was considered.
|
69a522a4405b4f45aadc45555ded0ec42dc70c47 | abdfb2db73e5240261372a514baa0c1a7bed7467 | /cudd-3.0.0/nanotrav/s382.tst | 3f4f71f2112aaab92808663292868266bbadc159 | [] | no_license | steefbrown/ece6740 | 21001ca156e24e23b71d6b719f11010ba4ce2a40 | cefe8dd498c7849546ece98fbd4d70b844f2bd5c | refs/heads/master | 2021-01-01T05:23:01.008122 | 2016-05-09T19:16:56 | 2016-05-09T19:16:56 | 57,227,414 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,369 | tst | s382.tst | # Nanotrav Version #0.12, Release date 2003/12/31
# nanotrav/nanotrav -p 1 -trav -image part -autodyn -automethod sifting -drop -scc -shortpaths bellman ./nanotrav/s382.blif
# CUDD Version 3.0.0
**************READING IN NETWORK***************
Number of inputs: 1
**************GENERATING NETWORK BDD***************
Printing the BDD for f: ptr to the nodes, T & E children
: 2 nodes 1 leaves 1 minterms
ID = 0xaf25f index = 9 T = 1 E = !1
**************COUNTING BDD NODES***************
Top node: 0x15E4BE0
Number of nodes: 2
Number of levels: 10
**************DETERMINING BOUNDSET AND FREESET NODES***************
Node: 15E4A40
Node index: 2147483647
i: 2147483647
Node: 15E4BE0
Node index: 9
i: 9
Node: 15E4A40
Node index: 2147483647
i: 2147483647
Node: 15E4BE0
Node index: 9
i: 9
Node: 15E4A40
Node index: 2147483647
i: 2147483647
Node: 15E4BE0
Node index: 9
i: 9
Node: 15E4A40
Node index: 2147483647
i: 2147483647
Node: 15E4BE0
Node index: 9
i: 9
Node: 15E4A40
Node index: 2147483647
i: 2147483647
Node: 15E4BE0
Node index: 9
i: 9
Node: 15E4A40
Node index: 2147483647
i: 2147483647
Node: 15E4BE0
Node index: 9
i: 9
Node: 15E4A40
Node index: 2147483647
i: 2147483647
Node: 15E4BE0
Node index: 9
i: 9
Node: 15E4A40
Node index: 2147483647
i: 2147483647
Node: 15E4BE0
Node index: 9
i: 9
Cut Level: 0
Number of Sigma Zero Edges = 0
i: 2147483647
i: 9
boundsetSize: 0
n: 2
Bound Set:
Free Set: 15E4A40, 15E4BE0,
**************DETERMINING NUMBER OF SIG ZERO EDGES***************
**************BUILDING DIVISOR BDD***************
Dumping out the divisor
**************BUILDING QUOTIENT BDD***************
Printing Quotient BLIF
Printing Quotient DOT
End of Bi-Decomposition Method.
Starting Functional Decomposition Method
Node: 16101A0
Node index: 2147483647
i: 2147483647
Node: 1610340
Node index: 9
i: 9
Node: 1619240
Node index: 2147483647
i: 2147483647
Node: 16193E0
Node index: 9
i: 9
boundsetSize = 0
Freeset Size = 2
One node is: 16101A0
Freeset[0] is: 15E4A40
Freeset[1] is: 15E4BE0
cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
number of bits = 1
Our boundset nodes:
Our cutset nodes:
One Node = 1619240, Zero Node = 1619241
*********Mapping**********
*********End of Mapping**********
Printing the BDD for f BEFORE: ptr to the nodes, T & E children
: 2 nodes 1 leaves 1 minterms
ID = 0xb0c9f index = 9 T = 1 E = !1
Freeset node to be removed = 1619240
Freeset node to be removed = 16193E0
Removing freeset
BDD reordering with sifting: from 168 to ... 121 nodes in 0.01 sec
Printing the BDD for f AFTER: ptr to the nodes, T & E children
: 2 nodes 1 leaves 1 minterms
ID = 0xb0c9f index = 9 T = 1 E = !1
Root node: 16193E0
filename: ash_curt_files/hw5_0.blif
Creating blif...
Optimizing variable ordering...
Estimated delay: 0.5us...
Net name: s382.bench
End of main
|
2437d01a355cad9ef0a80b78538eb76ce433ba9a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2075/CH4/EX4.15/pe4_15.sce | 7e46fa1c9779280839455d27be485657abc1d58b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 318 | sce | pe4_15.sce | //example 4.15
clc; funcprot(0);
// Initialization of Variable
R=8//resistance
Ts=35//temperature
Ta=150//temperature
Vm=42//voltage
//calcuation
Vp=Vm-5;
Vr=Vp/2^.5;
Pm=Vr^2/R;
disp(Pm,"power delivered in watt:")
P=45;
Qs=(Ta-Ts)/P-1.2;
disp(round(Qs*10)/10,"thermal resistance in degreeC/W")
clear()
|
91fe0bf2e3768282175f969b2c86f19045f0ce5d | a159f59d19e2b03b234e9c2977ba4a932180e648 | /Software/GreenScilabV0.9/bin/inter_draw_expan.sci | 43c224b7f96a94baacd90c6947603281361ea60c | [] | no_license | OpenAgricultureFoundation/openag_sim | e052bbcc31b1d7f9b84add066327b479785f8723 | 425e678b55e24b5848d17181d25770175b8c2c3f | refs/heads/master | 2021-07-01T06:25:08.753260 | 2017-09-20T21:44:18 | 2017-09-20T21:44:18 | 80,540,145 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 626 | sci | inter_draw_expan.sci |
// to show expansion curve of organs
xdel(winsid());
Val_exp=zeros(t_ex,1);
s=0;
for i = 1 : t_ex
Val_exp(i)= ((i-0.5) / t_ex) ^ ( b_exn - 1) * (1 - (i-0.5) / t_ex ) ^ (b_exp- 1) * (1 / t_ex);
// s = s+ Val_exp(i);
end;
s = max(Val_exp);
for i=1:t_ex
Val_exp(i) = Val_exp(i)/s;
end;
i=1:t_ex;
plot2d(i,Val_exp,style=13);
ax=gca();
ax.title.text="expansion curve";
ax.title.font_size=3;
ax.x_label.text="expansion time";
ax.x_label.font_size=2;
ax.y_label.text="expansion rate" ;
ax.y_label.font_size=2;
ax.data_bounds=[1,0;t_ex,max(Val_exp)+0.3];
ax.children.children.thickness = 3;
|
4370ce1230463c64d8a15d359e00142f45bb53d2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1898/CH10/EX10.6/Ex10_6.sce | 671c3aa7b86856d2011e94b12b860166093a1f62 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,136 | sce | Ex10_6.sce | clear all; clc;
disp("Scilab Code Ex 10.6 : ")
//Given:
ep_x = -300;//(*10^-6) Normal Strain
ep_y = -100; //*(10^-6) Normal Strain
gamma_xy = 100; //*(10^-6) Shear Strain
theta = 20; //degrees
//Construction of the circle:
strain_avg = (ep_x+ ep_y)/2;
tou = gamma_xy/2;
R = sqrt((-ep_x + strain_avg)^2 + tou^2);
//Strains on Inclined Element:
theta1 = 2*theta;
phi = atan((tou)/(-ep_x +strain_avg));
phi = phi*(180/%pi);
psi = theta1 - phi;
psi = psi*(%pi/180);
ep_x1 = -(-strain_avg+ R*cos(psi));
gamma_xy1 = -(R*sin(psi))*2;
ep_y1 = -(-strain_avg - R*cos(psi));
//Display:
printf('\n\nThe normal strain in the new x direction = %1.0f *10^-6 ',ep_x1);
printf('\nThe normal strain in the new y direction = %1.1f *10^-6 ',ep_y1);
printf('\nThe shear strain in the new xy direction = %1.0f *10^-6 ',gamma_xy1);
printf('\nThe average strain = %1.0f *10^-6 ',strain_avg);
//--------------------------------------------------------------------------END--------------------------------------------------------------------------------------
|
ae9b1eefbb2ebdfe0c0c5ed6f3b1f6b4dbc95eb2 | 9d2c9394c6b6997318b9d04556462c9bba639045 | /Replication 2/Dave_RIFData/Dave_RIFData/Sub16/VP16_OneBack.sce | a12052bc7e666eecdca6a39db5c765608f591221 | [] | no_license | rettopnivek/Wimber_et_al_replication_3 | 673b156d8d18d58b92b2f05fedef87976e787089 | 8dbc22329093a61b1e5cb8aac3feca45a5c82d06 | refs/heads/master | 2020-12-31T04:42:39.856717 | 2018-02-01T15:49:15 | 2018-02-01T15:49:15 | 58,006,910 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,884 | sce | VP16_OneBack.sce | array <int> finalSeq[432] = {7,14,26,24,33,38,29,29,27,20,30,12,72,55,30,30,14,61,46,42,42,63,11,11,12,20,59,70,28,9,63,56,55,42,2,69,16,41,22,64,16,42,17,68,63,6,6,32,21,53,8,8,21,64,38,38,48,47,42,56,50,50,62,21,5,29,69,35,23,59,62,48,48,11,11,54,50,57,4,58,58,48,49,62,13,13,32,32,17,15,65,65,25,13,9,50,23,67,53,53,41,22,9,70,19,57,53,53,15,15,12,26,55,55,27,27,68,68,40,41,60,1,7,17,12,10,36,25,56,56,70,5,2,51,34,34,8,8,19,61,61,40,61,36,34,5,5,65,54,46,42,19,47,15,44,25,28,52,52,1,10,2,20,3,67,5,60,6,33,62,39,62,47,47,31,21,21,55,15,30,67,32,35,67,68,68,39,54,40,19,19,52,6,6,10,27,27,59,66,57,24,7,7,43,3,33,29,29,37,33,61,43,51,49,43,54,56,28,38,25,25,26,41,34,14,3,39,39,59,23,17,12,58,13,32,10,71,60,24,7,70,47,65,16,67,37,25,64,15,72,38,34,35,26,50,10,51,27,18,60,70,45,45,72,45,24,46,36,34,14,58,48,33,33,3,3,40,18,28,23,69,17,57,72,72,61,13,51,10,7,3,46,46,24,1,30,66,66,63,63,71,71,6,11,4,4,26,63,4,28,31,45,22,22,44,14,20,16,64,12,2,2,23,23,51,37,37,41,56,28,30,4,57,35,35,44,14,31,45,44,59,71,11,44,69,18,18,70,37,36,36,37,72,19,44,66,18,43,29,18,54,9,64,38,66,1,5,49,49,58,65,65,53,40,13,71,26,20,52,17,43,9,36,58,55,59,1,4,32,40,68,2,20,69,1,49,62,46,9,51,48,67,8,8,41,52,52,21,47,45,60,50,57,31,49,69,16,39,64,60,24,39,54,31,71,66,43,16,31,22,22,35};
array <int> buttons[432] = {0,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,1,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,2,2,2,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,1,2,1,2,2,2,2,2,1,2,2,2,2,1,2,1,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,2,2,2,1,2,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,2,1,2,2,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,1,2,2,2,2,2,2,2,2,1,2,2,2,2,1,2,2,1,2,2,1,2,2,2,2,2,1,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,1,2,1,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,1,2,1,2,1,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0};
array <int> nullEvents[145] = {2,4,8,15,18,24,26,27,31,36,43,48,50,56,59,61,65,69,75,79,80,82,83,84,100,109,110,118,121,126,127,130,131,133,142,144,149,150,152,154,157,164,174,178,182,183,187,188,196,198,202,203,221,223,224,227,232,233,235,240,242,244,246,247,250,254,264,273,277,278,285,287,289,292,296,297,298,299,303,304,306,313,316,336,340,342,350,351,360,361,362,364,366,368,375,377,385,394,400,402,404,405,406,408,413,417,428,432,433,437,441,445,446,448,450,456,472,475,477,480,486,488,490,493,502,503,504,512,517,521,522,524,531,538,546,552,553,557,560,561,565,569,572,576,577};
array <int> selPic[36] = {1,5,9,13,17,21,25,29,33,37,41,45,49,53,57,61,65,69,4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72};
|
4b8136f8720e8784dd67940fb2b8f6dff7fdf17c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2579/CH1/EX1.24/Ex1_24.txt | 0dab8bb08d651cc56261383aecb4e0a90a8fd55f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 243 | txt | Ex1_24.txt | //Ex:1.24
clc;
clear;
close;
Er=15;// relative permittivity
ur=5;// relative mobility
B=1/sqrt(Er*ur);
A=3*10^8;// the value of 1/sqrt(Eo*uo)
V=A*B;// velocity of propagation in volt
printf("The field strength = %f*10^7 m/s", V/10^7); |
ecb82ae3c342e293c8e78789c05806b097c348b6 | 872b5ff8852c926ca1261037de07449db7ac51db | /area-03/cap10/calcula_pesos_quadratura.sce | 3008f4607c4461076602b7a383cfc97bd70965c8 | [] | no_license | BerdaSantos/numeric-calculus | 20e4c50d9f66f8582e89533a5101f597df6665ec | 0698409e7fa4158d6f7dd7e4d60f8a38538b3335 | refs/heads/master | 2020-05-14T18:07:02.017600 | 2018-11-23T01:50:38 | 2018-11-23T01:50:38 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 853 | sce | calcula_pesos_quadratura.sce | clear
/**
* Para encontrar pesos wi (ou Ai) da quadratura
* I = w1*f(x1) + ... + wn*f(xn) com o menor error possivel
*
* vetor_nodes: vetor x de nos
* lim_inicial: limite inicial da integral
* lim_final: limite final da integral
*
* w: vetor de pesos (retorno)
*/
function w=pesos(vetor_nodes, lim_inicial, lim_final)
len_nodes = length(vetor_nodes);
// Monta matriz A
for i=1:len_nodes
for j=1:len_nodes
if (i == 1) then
A(i,j) = i; // 1a linha so' tem 1s
else
A(i,j) = vetor_nodes(j)^(i-1);
end
end
end
//disp('A:')
//disp(A)
// Monta matriz resultado b
for i=1:len_nodes
B(i) = (lim_final^i - lim_inicial^i)/i;
end
//disp('B:')
//disp(B)
// Obtem pesos
w=inv(A)*B;
endfunction
|
73d22d388d9a8032c54275da8a5140766ade0666 | 449d555969bfd7befe906877abab098c6e63a0e8 | /213/CH12/EX12.6/12_6.sce | 1f666cba1401a9df537396f96512e9e8b7874977 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,390 | sce | 12_6.sce | //To find teeth, angle and ratio
clc
//Given:
phi=20 //degrees
m=6, addendum=1*m //mm
t=17, T=49
//Solution:
//Number of pairs of teeth in contact:
//Calculating the pitch circle radius of pinion
r=m*t/2 //mm
//Calculating the pitch circle radius of gear
R=m*T/2 //mm
//Calculating the radius of addendum circle of pinion
rA=r+addendum //mm
//Calculating the radius of addendum circle of gear
RA=R+addendum //mm
//Calculating the length of path of approach
//Refer Fig. 12.11
KP=sqrt(RA^2-R^2*(cosd(phi))^2)-R*sind(phi) //mm
//Calculating the length of path of recess
PL=sqrt(rA^2-r^2*(cosd(phi))^2)-r*sind(phi) //mm
//Calculating the length of path of contact
KL=KP+PL //mm
//Calculating the length of arc of contact
Lac=KL/cosd(phi) //Length of arc of contact, mm
//Calculating the circular pitch
pc=%pi*m //mm
//Calculating the number of pairs of teeth in contact
n=Lac/pc //Number of pairs of teeth in contact
//Angle turned by the pinion and gear wheel when one pair of teeth is in contact:
//Calculating the angle turned through by the pinion
anglep=Lac*360/(2*%pi*r) //Angle turned through by the pinion, degrees
//Calculating the angle turned through by the wheel
angleg=Lac*360/(2*%pi*R) //Angle turned through by the gear wheel, degrees
//Ratio of sliding to rolling motion:
//At the instant when the tip of a tooth on the larger wheel is just making contact with its mating teeth
r1=((1+t/T)*KP)/r //Ratio of sliding velocity to rolling velocity
//At the instant when the tip of a tooth on a larger wheel is just leaving contact with its mating teeth
r2=((1+t/T)*PL)/r //Ratio of sliding velocity to rolling velocity
//Results:
printf("\n\n Number of pairs of teeth in contact = %d.\n\n",n+1)
printf(" Angle turned through by the pinion = %.1f degrees.\n\n",anglep)
printf(" Angle turned through by the gear wheel = %d degrees.\n\n",angleg)
printf(" At the instant when the tip of a tooth on the larger wheel is just making contact with its mating teeth, ratio of sliding velocity to rolling velocity = %.2f.\n\n",r1)
printf(" At the instant when the tip of a tooth on a larger wheel is just leaving contact with its mating teeth, ratio of sliding velocity to rolling velocity = %.3f.\n\n",r2)
printf(" Since at the pitch point, the sliding velocity is zero,, therefore the ratio of sliding velocity to rolling velocity is zero.\n\n") |
b5218e56ac30557e6d9ef83e266993641358df5c | be6c437e65374d9f058b6a13ec704e0ebddeda4b | /ChoreStorefront/Typewriter/controllers/typewriter-controllers.tst | fae8ee740da59ac6e2c89985683dd7ee0fd70bc0 | [] | no_license | dlswimmer/ChoreStorefront | 9bab0b6fc183ac69f754c66db3a0bf1fe290fbf6 | 37c03fee7a5216bc093722d5d0d3be01b7b024c6 | refs/heads/master | 2023-01-16T06:26:34.679767 | 2020-11-29T22:05:29 | 2020-11-29T22:05:29 | 317,050,361 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 5,827 | tst | typewriter-controllers.tst | // @ts-ignore
import * as enums from '../enums';
${
Template(Settings settings)
{
settings.IncludeProject("ChoreStorefront");
}
// =================================== SHARED LOGIC -- PLEASE KEEP IN SYNC WITH typewriter-definitions.tst and typewriter-controllers.tst and typewriter-master.tst
private const string IncludeEnumAttribute = "TsEnumModule";
string DocCommentFormatted(Property p) {
var dc = p.DocComment;
if (dc == null) {
return string.Empty;
}
return @"/**
* " + dc.Summary + @"
*/";
}
// =================================== CONTROLLER LOGIC:
IEnumerable<Method> GetMethods(Class cls) {
return cls.Methods.Where(m=>m.Attributes.Any(a=> a.Name=="HttpGet") && !m.Attributes.Any(a=> a.Name=="TsIgnore"));
}
IEnumerable<Method> PostMethods(Class cls) {
return cls.Methods.Where(m=>m.Attributes.Any(a=> a.Name=="HttpPost") && !m.Attributes.Any(a=> a.Name=="TsIgnore"));
}
string GetType(Parameter p) {
return GetType(p.Type);
}
string GetType(Type t) {
if (t.IsEnum && t.Attributes.Any(a => a.Name ==IncludeEnumAttribute)) {
return "enums." + t.ToString();
}
if (t.OriginalName.StartsWith("IDictionary") && t.TypeArguments.Count==2) {
var keyType = t.TypeArguments[0];
var valueType = t.TypeArguments[1];
var keyTypeStr = keyType.IsEnum ? "string" : keyType.ToString();
return "{ [key: " + keyTypeStr +"]: " + GetType(valueType) +"; }";
}
if (t.IsPrimitive && !t.GetType().Name.StartsWith("IDictionary")) {
return t.ToString();
}
if (t.TypeParameters.Any() && t.Name.Contains("<")) {
var typeParams = t.TypeArguments.Select(m=>GetType(m));
return "models." + t.Name.Substring(0, t.Name.IndexOf("<")) + "<" + string.Join(",", typeParams) + ">";
//name += c.TypeParameters.ToString();
}
return (t.IsEnumerable ? "readonly " : "") + "models." + t.ToString();
}
string GetType(Method p) {
var t = p.Attributes.FirstOrDefault(m=>m.Name=="TsType" || m.Name=="ResponseType");
if (t!=null) {
return GetType(t.Arguments[0].TypeValue);
}
if ( p.Type.Name=="Task")
{
return "void";
}
return (p.Type.IsPrimitive && !p.Type.OriginalName.StartsWith("IDictionary")) || p.Type.Name=="void" ? p.Type.ToString() : GetType(p.Type);
}
Parameter[] ControllerFilterParameters(Method method) {
return method.Parameters.Where(m=>m.Type.Name!="CancellationToken").ToArray();
}
string ControllerPostParameters(Method method) {
var ps = ControllerFilterParameters(method).Where(m=>!m.Type.IsPrimitive).ToArray();
if (ps.Length==0) {
return "";
}
if (ps.Length==1) {
return ", " + ps[0].name;
}
return ", {" + string.Join(", ", ps.Select(p=>p.name)) + "}";
}
string postUrl(Method m) {
var ps = ControllerFilterParameters(m);
if (ps.Length==1 && ps[0].name=="id") {
return "'" + m.name + "/' + id";
}
if (ps.Length>=1 && ps.Any(p=>p.Type.IsPrimitive)) {
return getUrl(m);
}
return "'" + m.name + "/'";
}
string getUrl(Method m) {
var ps = ControllerFilterParameters(m);
if (ps.Length==1 && ps[0].name=="id") {
return "'" + m.name + "/' + id";
}
//if (ps.Length==1 && !ps[0].Type.IsPrimitive) {
// return "'" + m.name + "/?" + string.Join(" + \'&", ps[0].Type.Properties.Select(p=> p.name + "=' + " + (p.Type.name=="string" ? "encodeURIComponent(" + ps[0].name + "." + p.name + ")" : ps[0].name + "." + p.name)));
//}
if (ps.Length==0) {
return "'" + m.name + "/'";
}
return "'" + m.name + "/?" + string.Join(" + \'&", ps.Where(m=>m.Type.IsPrimitive).Select(p=> p.name + "=' + " + (p.Type.name=="string" ? "encodeURIComponent(" + p.name + ")" : p.name)));
}
string nameWithoutController(Class c) {
var name = c.name.EndsWith("Controller") ? c.name.Substring(0, c.name.Length-10) : c.name;
var namespac = c.Namespace;
return name;
}
string importFunctions(File file) {
var anyGet = file.Classes.Any(c=>c.Methods.Any(m=>m.Attributes.Any(a=>a.Name=="HttpGet")));
var anyPost= file.Classes.Any(c=>c.Methods.Any(m=>m.Attributes.Any(a=>a.Name=="HttpPost")));
if (anyGet) {
if (anyPost) {
return "executeGet, executePost";
}
return "executeGet";
}
else if (anyPost) {
return "executePost";
}
return "";
}
}
import { $importFunctions } from '../http-utils';
$Classes(c=>c.Attributes.Any(a=>a.Name=="TsClassController") && (GetMethods(c).Any() || PostMethods(c).Any()))[
export const endpointUrl = '/api/$nameWithoutController/';
$GetMethods[
export function $name($ControllerFilterParameters[$name: $GetType][, ]) { return executeGet<$GetType>(endpointUrl + $getUrl); }
]
$PostMethods[
export function $name($ControllerFilterParameters[$name: $GetType][, ]) { return executePost<$GetType>(endpointUrl + $postUrl$ControllerPostParameters); }
]
] |
f7235ddd29ee0f72b97f096bc1855bf26427af8d | 67dbdbcd3c2ac24086b6b82a28371e19db393e9b | /zz.tst | 7fa0fcfaf569e374fa16bc2cd2ef873ec47d6d29 | [] | no_license | bigmortar/test | ec40a67ba437075eda8632f3c8b985077d44c42a | 41b436609b5f6b5c0cf11727d92d70b286872e5d | refs/heads/master | 2020-06-01T21:08:15.256407 | 2020-05-31T19:57:29 | 2020-05-31T19:57:29 | 190,927,672 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 33 | tst | zz.tst | ver1
ver2
ver2
ver3ver4
ver5
ver6 |
ef6e50ed89ff7403df1ad2bc5596f2be576ece95 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1046/CH4/EX4.9/4_9.sce | a1200c7a8037fd7803006bf20eeb067d294fe250 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,910 | sce | 4_9.sce | //Example 4.9
//at what temp. does the water leave the pipe.
//Given
T1=28 //C, inlet temp.
T2=250 //C,bulk temp.
V=10 //m/s, gas velocity
l=20 //m, length of pipe
mw=1*3600 //kg/h, water flow rate
di=4.1*10^-2 //m, inlet diameter
Tm=(T1+T2)/2 //C, mean temp.
ro=0.0484 //m, outside radius
//properties of water
mu=8.6*10^-4 //kg/ms, viscosity
kw=0.528 //kcal/h m C, thermal conductivity
kw_=0.528*1.162 //W/ m C, thermal conductivity
rho=996 //kg/m^3, density of air
cp=1*4.18 //kj/kg C, specific heat of air
cp_=1 //kcal/kg C
//properties of flue gas
mu1=2.33*10^-5 //kg/ms, viscosity
ka=0.0292 //kcal/h m C, thermal conductivity
rho1=0.891 //kg/m^3, density of air
cp1=0.243 //kcal/kg C, specific heat of air
Pr=0.69
//calculation
A=%pi/4*di^2 //m^2, cross section of pipe
Vw=1/(rho*A) //m/s, velocity of warer
Re=di*Vw*rho/mu // Reynold no.
Pr1=cp*10^3*mu/kw_ //Prandtl no. for water
Nu=0.023*Re^0.8*Pr1^0.4 //Nusslet no.
//water side heat transfer coefficient hi
hi=206*kw/di
//gas side heat transfer coefficient ho
a=41 //mm, i.d. schedule
Tw=3.7 //mm, wall thickness
do=a+2*Tw //mm, outer diameter of pipe
Re1=do*10^-3*V*rho1/mu1 // Reynold no
//from eq. 4.19, nusslet no.
Nu1=0.3+(0.62*Re1^(1/2)*Pr^(1/3)/(1+(0.4/Pr)^(2/3))^(1/4))*(1+(Re1/(2.82*10^5))^(5/8))^(4/5)
ho=(Nu1*ka/do)*10^3 //kcal/h m^2 C
Uo=1/(ro/(di/2*hi)+1/ho) //kcal/h m^2 C, overall heat transfer coefficient
//Heat balance
A1=%pi*ro*l //m62, outside area of pipe
//from the formula of LMTD
deff('[x]=f(T2_)','x=mw*cp_*(T2_-T1)-Uo*A1*((T2_-T1)/log((T2-T1)/(T2-T2_)))')
T2_=fsolve(1,f)
printf("The exit water temp is %f K",round(T2_))
|
663db4f3344b80ba021a32359ddd20373a186842 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3769/CH20/EX20.8/Ex20_8.sce | b49e25960d4457ce246c89b85b905e664c35a04f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 201 | sce | Ex20_8.sce | clear
//Given
ra=60
rb=45.0
a=40.0
//Calculation
ia1=(ra**2)/(rb**2)
ia=(ra**2)/(a**2)
i=ia-ia1
A=(i*100)/ia
//Result
printf("\n percentage of light is absorbed by the glass is %0.0f percentage",A)
|
519fce3766f0be30518f8ec8243ab86244f3a36a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3636/CH4/EX4.7/Ex4_7.sce | 26ecf12e3a389e5eeba165f6475d54503e3a1b3d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,124 | sce | Ex4_7.sce | clc;
clear;
delp=4*10^14 //excess EHP in cm^-3
deln=4*10^14 //excess EHP in cm^-3
n0=10^15 //donor atoms in cm^-3
p0=0 //in cm^-3
t=0.5*10^-6 //hole-lifetime in s
myu_n=1200 //mobility of electron in cm^2/V*s
myu_p=400 //mobility of hole in cm^2/V*s
q=1.6*10^-19 //electron charge in eV
ni=1.5*10^10 //in cm^-3
Const=0.0259 //constant value for kT in eV
//Calculation
//a)
gop=delp/t
//b)
rho_0=(q*n0*myu_n)^-1 //Before illumination
n=n0+deln //in cm^-3
p=p0+delp //in cm^-3
rho=1/(q*((myu_n*n)+(myu_p*p)))//conductivity
rho1=q*myu_p*delp //in mho/cm
Pcond=(rho*rho1)*100
//c)
delE_e=Const*log(n/ni)
delE_h=Const*log(p/ni)
mprintf("a)\n")
mprintf("photo generation rate= %g EHPs/cm^3s\n",gop)
mprintf("b)\n")
mprintf("resistivity before illumination= %1.2f ohm-cm\n",rho_0)
mprintf("resistvity after illumination= %1.3f ohm-cm\n",rho)
mprintf("percent of conductivity= %1.2f percent\n",Pcond) //The answers vary due to round off error
mprintf("c)\n")
mprintf("quasi Fermi level due to electron=Efi+%0.3f eV\n",delE_e)
mprintf("quasi Fermi level due to holes=Efi-%0.3f eV\n",delE_h)
|
607f2006bbf039c48d11d8d0fa685fa7890414fe | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.3/macros/elem/acos.sci | 57371135374edcdcb6b13b669cbead94386e436a | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 383 | sci | acos.sci | function t=acos(x)
// Element wise Arccosine Cosine-inverse
// Entries of vector x must be in [-1, 1]
// Entries of T are in ] 0,pi[ x ]-inf +inf[
// [0] x [0,+inf] et [pi] x ]-inf,0] (real x imag)
//!
if type(x)<>1 then error(53),end
if x==[] then t=[],return,end
t=-%i*log(x+%i*sqrt(ones(x)-x.*x))
if norm(imag(x))=0&maxi(abs(x))<=1 then
t=real(t);
end
|
87387a7b2b64fbdf48f67345b99ccf0eae9abb5c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3769/CH9/EX9.25/Ex9_25.sce | 14d2c5efdf8df22e6b5cdf94ff6e47ad46529948 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 220 | sce | Ex9_25.sce |
clear
//Given
m=1.2*10**-3
B=0.6 //T
g=9.8 //m/s**2
r=0.05
b=3.8
//Calculation
I=(m*g)/B
R=r*b
V=I*R
//Result
printf("\n Potentila difference is %0.1f *10**-3 V",V*10**3)
|
2c9f67cb700b1914ebd20a006bdd0670f5c5f8b1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2438/CH10/EX10.1/Ex10_1.sce | 65c9ca786299726eb95b0238944f9aa601739982 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 732 | sce | Ex10_1.sce | //============================================================================
// chapter 10 example 1
clc;
clear;
// Variable declaration
E2 = 5.56*10^-19; // Higher Energy level in J
E1 = 2.36*10^-19; // Lower Energy level in J
h = 6.626*10^-34; // plancks constant in J.s
c = 3*10^8; // velocity of light in m
// Calculations
dE = E2 - E1; // Energy difference in J
lamda = (h*c)/dE; // wavelength in m
// Result
mprintf('Wavelength of the photon = %d Å\n',lamda/10^-10);
mprintf(' The colour of the photon is red')
//==============================================================================
|
a414528f962743dd227eae8091c79e35228ab200 | ca36627fc8522c67503588f0163ccfbe71d10aa9 | /Scilab/scilab_lab07.sce | 6012a53e366316c78269349e3e5bb94f19ea07f8 | [
"MIT"
] | permissive | flaviojoliveira/estudos_tcm | 0730cf4d7b687d379cfdbf92b06feae78cb0f038 | d9a25a762bd7a9074ba715e321e38054544ce8b8 | refs/heads/main | 2023-01-29T06:42:05.124888 | 2020-12-15T01:59:08 | 2020-12-15T01:59:08 | 308,009,924 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 47 | sce | scilab_lab07.sce | x = 0:0.1:6*pi;
plot2d(x,[sin(x)' cos(x)']);
|
d5206ac07a3c38bd008156aa9480e2ae6f8c4a27 | 34dcfd0a3d3a661a623ba00e305d50592ca2e9cf | /Falsa Posição.sce | ef41a84c6c285b201b932068b46956e23a49320f | [] | no_license | kelly-santos/M-todo-N-merico | 65bc023d4a705c83037634540d2b6ae1ed967242 | 9ae1c6d1eeb8bb855b8d911e896d2a918762c66b | refs/heads/main | 2022-12-27T10:17:16.964964 | 2020-10-12T17:12:15 | 2020-10-12T17:12:15 | 303,458,411 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 386 | sce | Falsa Posição.sce | function y =t0(x)
y = -481 +408 +589.64 * x + (-2349.163 * x^2)/2
endfunction
a = 0
b = 0.3
x= a
contador = 0
while(1)
xOld = x;
x= abs(a - (t0(a)*(b-a))/(t0(b)-t0(a)));
Er = abs((x-xOld)/x)
contador = contador +1
if (Er < 10^-3) then
break
end
if(t0(a)*t0(x) < 0)
b= x
else
a=x
end
end
|
1d20ccca8e308a79f6c2bfc252a20b1f16b4b711 | 449d555969bfd7befe906877abab098c6e63a0e8 | /45/DEPENDENCIES/kmap3.sci | 00ee0cb76cf591425bb3abd660c3fd2d262aff58 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 4,307 | sci | kmap3.sci | //3-VARIABLE KMAP
//this function returns the a string containing the minimized expression for the given 3 variable kmap
//this function requires
//noof.sci
//noof0.sci
function bi = kmap3(k)
n=4;
m=2
k(:,:,2)=zeros(m,n);
var=['Cn' 'Bn' 'An'];
p1=['Cn''' 'Cn'];
p2=['Bn''An''';'Bn''An';'BnAn';'BnAn'''];
cmn4=4;
cmn2=2;
temp=1;
disp(k(:,:,1));
bi = ' ';
//checking all the 8 1's cases
for i=1:m
for j=1:n
if(k(i,j)~=1 & k(i,j)~=2)
temp=0;
break;
end
end
end
if(temp==1)
bi = strcat([bi "1"]);
return;
end
//checking all the 4 1's cases
z1=ones(1,4);
z2=ones(4,1);
z3=ones(2,2);
temp1=['0' '1'];
temp2=['00';'01';'11';'10'];
for t=1:m
z=k(t,:,1);
no=noof(k(t,:,2));
if(noof0(z)==0 & no<cmn4 & noof(z)>0)
k(t,:,2)=z1;
a=strsplit(temp1(1,t));
for in=1:max(size(a))
if(a(in)=='0')
bi = strcat([bi var(in) '''']);
end
if(a(in)=='1')
bi = strcat([bi var(in)]);
end
end
bi = strcat([bi " + "]);
end
end
for i=1:m-1
for j=1:n
t1=i+1;
if(j==n)
t2=1;
else
t2=j+1;
end
z4=[k(i,j,1) k(i,t2,1);k(t1,j,1) k(t1,t2,1)];
z5=[k(i,j,2) k(i,t2,2);k(t1,j,2) k(t1,t2,2)];
no=noof(z5);
if(noof0(z4)==0 & no<cmn4 & noof(z4)>0)
k(i,j,2)=1;
k(i,t2,2)=1;
k(t1,j,2)=1;
k(t1,t2,2)=1;
a=strsplit(temp2(j,1));
b=strsplit(temp2(t2,1));
c=strcmp(a,b);
for in=1:max(size(c))
if(c(in)==0 & a(in)=='0')
bi = strcat([bi var(1+in) '''' ]);
end
if(c(in)==0 & a(in)=='1')
bi = strcat([bi var(1+in)]);
end
end
bi = strcat([bi " + "]);
end
end
end
//checking all the 2 1's cases
z6=[1 1];
z7=z6';
for i=1:m
for j=1:n
t1=i+1;
if(j==n)
t2=1;
else
t2=j+1;
end
z8=[k(i,j,1) k(i,t2,1)];
z9=[k(i,j,2) k(i,t2,2)];
no1=noof(z9);
if(noof0(z8)==0 & no1<cmn2 & noof(z8)>0)
k(i,j,2)=1;
k(i,t2,2)=1;
bi = strcat([bi p1(1,i)]);
a=strsplit(temp2(j,1));
b=strsplit(temp2(t2,1));
c=strcmp(a,b);
for in=1:max(size(c))
if(c(in)==0 & a(in)=='0')
bi = strcat([bi var(1+in) '''']);
bi = strcat([bi " + "]);
end
if(c(in)==0 & a(in)=='1')
bi = strcat([bi var(1+in)]);
bi = strcat([bi " + "]);
end
end
end
end
end
for i=1:m-1
for j=1:n
t1=i+1;
if(j==n)
t2=1;
else
t2=j+1;
end
z10=[k(i,j,1);k(t1,j,1)];
z11=[k(i,j,2);k(t1,j,2)];
no2=noof(z11);
if(noof0(z10)==0 & no2<cmn2 & noof(z10)>0)
k(i,j,2)=1;
k(t1,j,2)=1;
bi = strcat([bi p2(j,1)]);
bi = strcat([bi " + "]);
end
end
end
//checking if any single isolated 1's are left
for i=1:m
for j=1:n
if(k(i,j,2)==0 & k(i,j,1)==1)
bi = strcat([bi p1(1,i)]);
bi = strcat([bi p2(j,1)]);
bi = strcat([bi " + "]);
end
end
end
bi = strcat([bi " 0 "]);
endfunction |
2a7bae2508c9fcfb4b588bb6b284f60bc38554a2 | 4a1effb7ec08302914dbd9c5e560c61936c1bb99 | /Project 2/Experiments/GFS-GCCL-C/results/GFS-GCCL-C.vehicle-10-1tra/result3s0.tst | 18264641d182717b9a5175251478bf1eaf1d5609 | [] | no_license | nickgreenquist/Intro_To_Intelligent_Systems | 964cad20de7099b8e5808ddee199e3e3343cf7d5 | 7ad43577b3cbbc0b620740205a14c406d96a2517 | refs/heads/master | 2021-01-20T13:23:23.931062 | 2017-05-04T20:08:05 | 2017-05-04T20:08:05 | 90,484,366 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,893 | tst | result3s0.tst | @relation vehicle
@attribute Compactness integer[73,119]
@attribute Circularity integer[33,59]
@attribute Distance_circularity integer[40,112]
@attribute Radius_ratio integer[104,333]
@attribute Praxis_aspect_ratio integer[47,138]
@attribute Max_length_aspect_ratio integer[2,55]
@attribute Scatter_ratio integer[112,265]
@attribute Elongatedness integer[26,61]
@attribute Praxis_rectangular integer[17,29]
@attribute Length_rectangular integer[118,188]
@attribute Major_variance integer[130,320]
@attribute Minor_variance integer[184,1018]
@attribute Gyration_radius integer[109,268]
@attribute Major_skewness integer[59,135]
@attribute Minor_skewness integer[0,22]
@attribute Minor_kurtosis integer[0,41]
@attribute Major_kurtosis integer[176,206]
@attribute Hollows_ratio integer[181,211]
@attribute Class{van,saab,bus,opel}
@inputs Compactness,Circularity,Distance_circularity,Radius_ratio,Praxis_aspect_ratio,Max_length_aspect_ratio,Scatter_ratio,Elongatedness,Praxis_rectangular,Length_rectangular,Major_variance,Minor_variance,Gyration_radius,Major_skewness,Minor_skewness,Minor_kurtosis,Major_kurtosis,Hollows_ratio
@outputs Class
@data
van van
bus bus
van van
van bus
saab saab
saab bus
van bus
opel saab
opel van
van van
opel van
bus bus
bus bus
bus opel
saab saab
bus bus
van van
bus bus
saab opel
van van
opel opel
opel bus
van bus
van van
saab bus
van bus
bus bus
van bus
bus van
bus bus
bus bus
saab saab
van van
bus bus
saab van
saab saab
van van
opel bus
van van
saab bus
saab saab
opel van
opel opel
saab opel
opel opel
van van
saab bus
opel opel
saab bus
saab saab
bus bus
saab opel
van bus
saab saab
van van
saab opel
opel van
bus bus
van van
opel van
bus bus
saab van
opel van
opel saab
opel van
bus bus
bus van
saab saab
bus bus
saab opel
opel opel
opel van
van bus
van van
bus bus
bus bus
bus van
saab saab
opel saab
bus bus
opel opel
opel bus
bus bus
opel van
saab van
|
656651037f62059fb81242c97ee1beee324e6f57 | 449d555969bfd7befe906877abab098c6e63a0e8 | /575/DEPENDENCIES/3_3_1.sci | b15f981ae2093b6800d083afef4ea9a3af3189f3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 48 | sci | 3_3_1.sci | mass=100 //g of CO2
M=44.01 //molecular weight |
dcceb33ddb8993d078d851e0f9257f62ff82c32e | 449d555969bfd7befe906877abab098c6e63a0e8 | /3876/CH9/EX9.4/Ex9_4.sce | 8a8068362e0a4eee7501c0141b68242d831bee0c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex9_4.sce | //Chapter 9 Ionic Equilibria and Buffer Action
clc;
clear;
//Initialisation of Variables
K= 1.4*10**-5
T= 25 //C
V= 200 //ml
m= 3.7 //gms
m1= 4.8 //gms
M= 74 //gms
M1= 96 //gms
//CALCULATIONS
x= m*1000/(V*M)
y= m1*1000/(V*M1)
X= K*x/y
//RESULTS
mprintf("hydronium-ion concentration = %.2e mole per litre",X)
|
6adab0f8aa0321560224138a36c55b7acb6a017a | 1db0a7f58e484c067efa384b541cecee64d190ab | /macros/cpsd.sci | 5e56d7a8c074f29bc79e6f26f83d598c6122c80a | [] | no_license | sonusharma55/Signal-Toolbox | 3eff678d177633ee8aadca7fb9782b8bd7c2f1ce | 89bfeffefc89137fe3c266d3a3e746a749bbc1e9 | refs/heads/master | 2020-03-22T21:37:22.593805 | 2018-07-12T12:35:54 | 2018-07-12T12:35:54 | 140,701,211 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,558 | sci | cpsd.sci | function [PXX, FREQ] = cpsd(X, Y, varargin)
//This function estimates cross power spectrum of data x and y by the Welch (1967) periodogram/FFT method.
//Calling Sequence
//[PXX, FREQ] = cpsd(X, Y)
//[...] = cpsd(X, Y, WINDOW)
//[...] = cpsd(X, Y, WINDOW, OVERLAP)
//[...] = cpsd(X, Y, WINDOW, OVERLAP, NFFT)
//[...] = cpsd(X, Y, WINDOW, OVERLAP, NFFT, FS)
//[...] = cpsd(X, Y, WINDOW, OVERLAP, NFFT, FS, RANGE)
//cpsd(...)
//Parameters
//X, Y: Matrix or integer
//Description
//Estimate cross power spectrum of data X and Y by the Welch (1967) periodogram/FFT method.
//Examples
// [a, b] = cpsd([1,2,3],[4,5,6])
//ans =
// b =
// 0.
// 0.25
// 0.5
// a =
// 2.7804939
// 4.4785583 + 1.0743784i
// 0.7729851
funcprot(0);
rhs=argn(2);
lhs=argn(1);
if(rhs<2 | rhs>7) then
error("Wrong number of input arguments.");
end
if (lhs<2 | lhs>2)
error("Wrong number of output arguments.");
end
select(rhs)
case 2 then
[PXX, FREQ] = callOctave("cpsd",X, Y);
case 3 then
[PXX, FREQ] = callOctave("cpsd",X, Y, varargin(1));
case 4 then
[PXX, FREQ] = callOctave("cpsd",X, Y, varargin(1), varargin(2));
case 5 then
[PXX, FREQ] = callOctave("cpsd",X, Y, varargin(1), varargin(2), varargin(3));
case 6 then
[PXX, FREQ] = callOctave("cpsd",X, Y, varargin(1), varargin(2), varargin(3), varargin(4));
case 7 then
[PXX, FREQ] = callOctave("cpsd",X, Y, varargin(1), varargin(2), varargin(3), varargin(4), varargin(5));
end
endfunction
|
c1e6f63fc38554036ce8a4dbc4d830813faf3aa9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3773/CH21/EX21.5/Ex21_5.sce | 89bc80c2c8c98d8d388550a71826accfa517e447 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 443 | sce | Ex21_5.sce | //Chapter 21: Antenna Measurements
//Example 21-4.2
clc;
//Variable Initialization
pat_lev1 = -22.3 //Pattern level maximum (dB)
pat_lev2 = -23.7 //Pattern level minimum (dB)
//Calculations
S = abs(pat_lev2-pat_lev1) //Amplitude ripple (dB)
a = (pat_lev1+pat_lev2)/2 //Pattern level (dB)
R = a + 20*log10((10**(S/20) - 1)/(10**(S/20) + 1)) //Reflectivity (dB)
//Result
mprintf("The reflectivity is %.1f dB", R)
|
820dc01229be1674992b42375d32de13d1906da5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3648/CH10/EX10.7/Ex10_7.sce | b65aac605d47ec15b639677fe65c5b593a47ffb0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 242 | sce | Ex10_7.sce | //Example 10_7
clc();
clear;
//To find out the final pressure in the drum
p1=1 //Units in atm
t2=333 //units in K
t1=293 //units in K
p2=p1*(t2/t1) //units in atm
printf("The final pressure in the drum is P2=%.2f atm",p2)
|
4ca0084d41d2860dd66e049c03cd2871354f7ffa | 449d555969bfd7befe906877abab098c6e63a0e8 | /2048/CH4/EX4.11/division.sce | 08a54e3b3ec1c0a0ce8e8d5a351a23f49c32dc19 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 377 | sce | division.sce | // Long division of problems discussed in Example 4.32 on page 102
// 4.11
exec('tf.sci',-1);
exec('label.sci',-1);
num = [11 -15 6];
den = convol([1 -2], convol([1 -1],[1 -1]));
u = [1 zeros(1,4)];
y = filter(num,den,u);
G = tf(num,den,-1);
u1=zeros(1,90); u1(1)=1;
x1=dsimul(tf2ss(G),u1);
plot2d(x1)
label('Impulse Response',4,'Time(seconds)','Amplitude',4)
|
54efc07c56ea6a4c6e9e8e2b34c6c5849ed6dae9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2825/CH19/EX19.17/Ex19_17.sce | 106e5cbb9596d5ea70f44acc7ecf80853d3c21d4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 433 | sce | Ex19_17.sce | //Ex19_17 Pg-963
clc
//Integer part
bin='1011'; //binary input
dec_I=bin2dec(bin) //decimal output
oct_I=dec2oct(dec_I) //octal output
//Decimal part
bin='11010'; //binary input
dec_D=bin2dec(bin) //decimal output
oct_D=dec2oct(dec_D) //octal output
oct=oct_I + oct_D //final octal output
b = strcat([ oct_I, oct_D ], '.' ) // combining intger and decimal part
disp("The octal equivqlent of 1011.01101 is")
disp(b)
|
a9320a5355aed7c1eff14a555852d2c9997c106f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2135/CH2/EX2.27/Exa_2_27.sce | b30e079ccbd56f86d0224b7ed891b4648d00b272 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 294 | sce | Exa_2_27.sce | //Exa 2.27
clc;
clear;
close;
format('v',8);
//Given Data :
Q1_2=85;//KJ
Q2_3=-90;//KJ
W2_3=-20;//KJ
Q3_1=0;//Adiabatic process
W1_2=0;//constant volume process
//integrate(dQ)=integrate(dW)
W3_1=Q1_2+Q2_3+Q3_1-W1_2-W2_3;//KJ
disp(W3_1,"Direction is 3-1 and work in KJ : ");
|
6531eae9552bb8c5acf627ef13f9ecd2533396f0 | 207c864c3f938783d617dca78232e70445ae21e6 | /Ch9_I.sce | 806b2a364482d08c95eec3901e0f39df85a579f1 | [] | no_license | raresica/CalculNumeric | a211a57fd4851e546c0b5eb866b3b228534a982c | 5564822ff9f5dab745208898ef9162322b28bff2 | refs/heads/master | 2021-02-11T05:03:13.720791 | 2020-04-15T10:42:58 | 2020-04-15T10:42:58 | 244,457,154 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 98 | sce | Ch9_I.sce | //Sa se rezolve ecuatiile polinomiale
c=[-9,-9,20,2,-5,-1,2]
p=poly(c,'x','coeff')
x=roots(p)
|
80fa3618a59f6ceb4a87d0ad683e9f7be05725da | 8d952a06e3809a06825a3be7b067201f3652f16a | /debug/example/common/Scilab/functions.sce | 0f108d17153f47367bb70d89c4b08d62927fed86 | [
"GPL-3.0-only",
"MIT"
] | permissive | andyLaurito92/haikunet | b771eaf6bd91292485f0a49698ce123b9308d676 | db44623b248c56735c28a5f589c3239dc7e9855e | refs/heads/master | 2021-06-14T12:38:38.996450 | 2021-05-05T18:26:02 | 2021-05-05T18:26:02 | 75,564,849 | 2 | 1 | MIT | 2021-05-05T18:26:26 | 2016-12-04T21:12:31 | C++ | UTF-8 | Scilab | false | false | 2,583 | sce | functions.sce | function [] = saveSimulationResults(saveDirectory, simu_index)
dt = getdate();
backupDirectory = sprintf('%s/%s_%i%.2i%.2i/', saveDirectory, SimulationName, dt(1),dt(2),dt(6));
logFileName = sprintf('%s_%i_%i%.2i%.2i_%2i%2i%2i', SimulationName, simu_index, dt(1),dt(2),dt(6), dt(7), dt(8), dt(9));
mkdir(backupDirectory);
printf("Making a backup of all variables at " + + backupDirectory + logFileName + ".sod ...\n")
save(backupDirectory + logFileName + '.sod'); // saving all variables
unix_g('cp pdevs*.log ' + backupDirectory ); // backup log
unix_g('cp *.performance.log ' + backupDirectory ); // backup performance
endfunction
function [ParameterValues] = completeParameterSpace(parameter_1, parameter_2)
ParameterValues = [];
[col, i_rows] = size(parameter_1);
[col, j_rows] = size(parameter_2);
for i = 1:i_rows
for j = 1:j_rows
ParameterValues(1,$+1) = parameter_1(i)
ParameterValues(2,$) = parameter_2(j)
end
end
endfunction
function [ParameterValues] = complete3ParameterSpace(parameter_1, parameter_2, parameter_3)
ParameterValues = [];
[col, i_rows] = size(parameter_1);
[col, j_rows] = size(parameter_2);
[col, k_rows] = size(parameter_3);
for i = 1:i_rows
for j = 1:j_rows
for k = 1:k_rows
ParameterValues(1,$+1) = parameter_1(i)
ParameterValues(2,$) = parameter_2(j)
ParameterValues(3,$) = parameter_3(k)
end
end
end
endfunction
function [] = saveResults(fileName, directoryName)
dt = getdate();
// default parameters
[out, inp] = argn(0);
if inp < 2 then, directoryName = sprintf('ScilabLogs/QT_%i%.2i%.2i/%.2d%.2d%.2d/', dt(1),dt(2),dt(6),dt(7), dt(8), dt(9)), end
if inp < 1 then, fileName = sprintf('simuResults_%i%.2d%.2d_%.2d%.2d%.2d', dt(1),dt(2),dt(6), dt(7), dt(8), dt(9)), end
mkdir(directoryName);
printf("making a backup of all variables at " + + directoryName + fileName + ".sod ...\n")
unix_g('cp pdevs*.log ' + directoryName ); // backup log
unix_g('cp *.performance.log ' + directoryName ); // backup performance log
save(directoryName + fileName + '.sod'); // saving all variables
endfunction
function [] = saveCurrentPlot()
plotHandle = gcf();
axes = gca();
dt = getdate();
saveDirectory = "ScilabLogs";
backupDirectory = sprintf('%s/%s_%i%.2i%.2i', saveDirectory, SimulationName, dt(1),dt(2),dt(6));
mkdir(backupDirectory);
plot_file_name = sprintf('%s/%s_%i%.2i%.2i_%2i%2i%2i', backupDirectory, axes.title.text, dt(1),dt(2),dt(6), dt(7), dt(8), dt(9));
// save as SVG
xs2svg(plotHandle, plot_file_name);
endfunction
|
51db9874e2e91d502e026683c29ece773e2ccb61 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2498/CH2/EX2.13/ex2_13.sce | 29d6cfa5fd58f340f0021e538db18ff104abc981 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 180 | sce | ex2_13.sce | // Exa 2.13
clc;
clear;
close;
format('v',6)
// Given data
Vdc = 50;// in V
Vrms = 5;// in V
// The ripple factor,
Gamma = Vrms/Vdc;
disp(Gamma,"The ripple factor is");
|
2be400da6c01c5bf5ba317e9379fd7a2e2668cdf | 449d555969bfd7befe906877abab098c6e63a0e8 | /67/CH8/EX8.17/example817.sce | 81e72ff1caff4ed4ee6e5235c1db959cafdf2cdf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 125 | sce | example817.sce | //Example 8.17
//Determine the DFT of the following sequence
clc;
x=[0,0,1,1,1,1,1,0,0,0];
X=fft(x,-1);
disp(X,'X[k]='); |
681e9525ea918b17aff210c783935c21d5fef01c | 449d555969bfd7befe906877abab098c6e63a0e8 | /647/CH1/EX1.8/Example1_8.sce | a4906635af55cfc583cb232e13b30b5b9147ce7b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 297 | sce | Example1_8.sce | clear;
clc;
// Example: 1.8
// Page: 11
// Solution
printf("Example: 1.8 - Page: 11\n\n");
//*****Data*****//
g = 9.81;// [m/square s]
Z = 100;//[m]
//***************//
// Basis: 1 kg of water
m = 1;// [kg]
Ep = m*g*Z;// [J]
printf("Change in potential Energy is %d J\n",Ep) |
efb7cc2fd09eaf204c25b510aa8821c5044abac0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2561/CH3/EX3.4/Ex3_4.sce | ff6a28e5a929db72f2656758a4b637cee8855fb8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 866 | sce | Ex3_4.sce | //Ex3_4
//refer fig3.2(a)
clc
VCC=20
disp("VCC = "+string(VCC)+" volts") // collector supply voltage
VBB=VCC
RL=5*(10^3)
disp("RL= "+string(RL)+ " ohm") //resistance
RB=965*(10^3)
disp("RB = "+string(RB)+ " ohm") //initialization base resistance
VBE=(0.7)
disp("VBE = "+string(VBE)+" volts") // value of base-emitter voltage
BF=50
disp("BF = "+string(BF)+" ") //BJT gain
ICO=10*10^(-9)
disp("ICO = "+string(ICO)+" ampere") // collector reverse bias current
Vi=0
disp("Vi = "+string(Vi)+" volts") // value of input
IBQ=(VCC-VBE)/RB //base current as operating point
disp("IBQ = "+string(IBQ)+" ampere")
ICQ=BF*IBQ //operating point (collector current)
disp("ICQ =BF*IBQ= "+string(ICQ)+" ampere") // calculation
VCEQ=VCC-ICQ*RL // collector-emitter voltage as operating point
disp("VCEQ =VCC-ICQ*RL = "+string(VCEQ)+" volts") //calculation
|
f2170583765d44e1ddb4158698b3c1f12e92d1f0 | 0480f6392643f10964ff6b301b2be49036bfe7d9 | /ampdemod.sci | c5e4a0784bff818a0bf7dadc190249ec6078cc80 | [] | no_license | vbv15/helloworld | 02f13332442310e95126067564516a8500b072c3 | 7982e10b0195afc1adb582ec623d95bd8f9556cb | refs/heads/master | 2021-06-28T01:18:01.725621 | 2016-11-11T02:49:46 | 2016-11-11T02:49:46 | 42,517,937 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 830 | sci | ampdemod.sci | function[y]=ampdemod(Em,Ec,fm,fc,fs)
t = 0:1/fs:1;
m=0.9;
Vm = Em*sin(2*%pi*fm*t);
Vc = Ec*sin(2*%pi*fc*t);
x = Ec*(1+m*sin(2*%pi*fm*t)).*(sin(2*%pi*fc*t));
xdem = x.*Vc;
H = iir(7,'lp','butt',[fc/fs,0.5],[.01,.01]);
num = coeff(H(2));
den = coeff(H(3));
num = num(length(num):-1:1);
den = den(length(den):-1:1);
y = filter(num,den,xdem);
subplot(4,1,1)
plot(Vm,'r')
xtitle('Modulating Signal','Time','Amplitude');
subplot(4,1,2)
plot(Vc,'b')
xtitle('Carrier Signal','Time','Amplitude');
disp(m);
subplot(4,1,3)
plot(x,'g')
xtitle('Amplitude Modulated Signal','Time','Amplitude');
subplot(4,1,4)
plot(y,'k');
xtitle('AM Demodulated Signal','Time','Amplitude');
endfunction
ampdemod(8,10,2,10,1000);
|
7bc0e16387cb915d8357a3959725e5a1505a9a95 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3835/CH7/EX7.2/Ex7_2.sce | b2a9d7e9329b1328d615ed8a0630adc402c2f5e5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 788 | sce | Ex7_2.sce | clear
//
//The total number of cycles the clock should perform in 24 hours for correct time is
t=24*60*60*50
printf("\n The total number of cycles the clock should perform in 24 hours for correct time is= %0.0f ",t)
//The number of cycles the clock performs from 8am to 7pm is
n=(6*49.95+5*49.90)*60*60
printf("\n The number of cycles clock performs from 8am to 7pm is= %0.0f ",n)
//the number of cycles required in remaining 13 hours is t-n that is 2342.88*10**3
a=(2342.88*10**3)/(13*60*60)
printf("\n The desired average frequency for correct time for remaining 13 hours is= %0.5f ",a)
//The shortfall in number of cycles from 8am to 7pm
s=0.05*6+0.10*5
printf("\n s= %0.3f ",s)
//The time by which the clock is incorrect at 7pm
time=(0.8*60*60)/50
printf("\n time= %0.5f ",time)
|
1e137f9486d76db641c0055c294cbcacc9ffc773 | 449d555969bfd7befe906877abab098c6e63a0e8 | /764/CH3/EX3.3.a/data3_3.sci | 54e82a95a217971c06383c7bdb06619b9af54101 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 411 | sci | data3_3.sci |
//(Manufacturing Considerations in Design) Example 3.3
//Refer Fig. 3.26 on page 70
//Basic diameter of hub Dh mm
Dh = 50
//Refer tables 3.2 and 3.3b for tolerances of H7-s6 fit
//Upper deviation for hub Uh mm
Uh = 0.025
//Lower deviation for hub Lh mm
Lh = 0.000
//Basic diameter of shaft Ds mm
Ds = 50
//Upper deviation for shaft Us mm
Us = 0.059
//Lower deviation for shaft Ls mm
Ls = 0.043
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.