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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
7c1f4f75a9eed69f2509a03f382412a9f17fd9d6 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set14/s_Materials_Science_R._S._Khurmi_And_R._S._Sedha_2153.zip/Materials_Science_R._S._Khurmi_And_R._S._Sedha_2153/CH2/EX2.2/ex_2_2.sce | 4182f50dffac76642e2e036506cf91ead5a16226 | [] | no_license | hohiroki/Scilab_TBC | cb11e171e47a6cf15dad6594726c14443b23d512 | 98e421ab71b2e8be0c70d67cca3ecb53eeef1df6 | refs/heads/master | 2021-01-18T02:07:29.200029 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 495 | sce | ex_2_2.sce | errcatch(-1,"stop");mode(2);
//Example 2.2 : radius of the second bohr"s orbit
;
;
//given data :
format('v',6)
r1_h=0.529; // radius for hydrozen atom in Angstrum
n1=1;// for the first bohr's orbit of electron in hydrozen atom
Z1=1; // for the first bohr's orbit of electron in hydrozen atom
k=(r1_h*Z1)/n1^2; // where k is constant
n2=2; // for the second bohr orbit
Z2=2; //for the second bohr orbit
r2_he=k*(n2^2/Z2);
disp(r2_he,"radius of the second bohr orbit,r2(Angstrom) = ")
exit();
|
fc7d71d5b1c0e62a40301d6bee230a52cdc51298 | cf18e17577a53971d3093809b663bfa64741f20f | /ARNoiseRegressionBands/AR-noise-TSP-K-MC.sce | 1849acdd1db0ac9f6b3304b89f40ef996c67ba27 | [] | no_license | stepanov17/vniim_unsorted | 07757339bc2337540ccf5191ae19964834d09ec0 | 8c8261507d5cbb8be913bf9ae1a3606fd70cbbaf | refs/heads/master | 2022-01-17T15:10:18.109538 | 2021-12-31T18:03:59 | 2021-12-31T18:03:59 | 175,603,636 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,299 | sce | AR-noise-TSP-K-MC.sce | // calculation of coverage factor for regression bands
// noise: AR(1), two-side power noise distribution at point
clear;
clc;
rand("seed", 1234512345);
// van Dorp, Kotz, The Standard Two-Sided Power Distribution and its Properties. The American Statistician, May 2002, Vol. 56, No. 2
// generate a symm. case with zero mean and unity variance
// p = 1 => uniform disrt.
// p = 2 => triangular distr.
function [res] = TSP(n, p)
c = 0.5;
res = zeros(1, n);
U = rand(1, n, "uniform");
for i = 1 : n
u = U(i);
r = 0.;
if (u < c) then
r = c * (u / c)^(1. / p);
else
r = 1. - (1. - c) * ((1. - u) / (1. - c))^(1. / p);
end
res(i) = r - c;
end
// make the variance equal to 1
var = 0.5 / ((p + 1.) * (p + 2.));
res = (1. / sqrt(var)) * res;
endfunction
// AR(1)
// x_i = alpha * x_{i - 1} + eps_i, eps_i from TSP(p) or normal distr. (p < 0i)
// suppose alpha > 0
function [res] = AR(n, alpha, p)
n0 = 300;
if (alpha > 0.) then
// eliminate an influence of the initial state
// 1.e-15 = alpha^n0 => n0 = -15 / log10(alpha)
n0 = round(-15. / log10(abs(alpha)));
end
n1 = n0 + n;
res = zeros(1, n1);
if (p < 0.) then
eps = rand(1, n1, "normal");
else
eps = TSP(n1, p);
end
res(1) = eps(1);
for i = 2 : n1
res(i) = alpha * res(i - 1) + sqrt(1. - alpha^2) * eps(i);
end
res = res(n0 + 1 : n1);
endfunction
function [r] = ACF(n, alpha)
r = ones(1, n);
for i = 2 : n
r(i) = alpha * r(i - 1);
end
endfunction
////////////////////////////////////////////////////////////////////////////////
N = 100
N0 = 20
// AR(1) parameters
noiseAlpha = 0.8;
noiseP = 2.;
R = ACF(N, noiseAlpha);
////////////////////////////////////////////////////////////////////////////////
W = zeros(N0, N0);
for i = 1 : N0
l = 1;
for j = i : N0
r = R(l);
W(i, j) = r;
W(j, i) = r;
l = l + 1;
end
end
WInv = W^(-1);
T0 = 0 : (N0 - 1);
V = [ones(N0, 1), T0'];
Theta = (V' * WInv * V)^(-1);
T = 0 : (N - 1);
U = zeros(T);
for i = 1 : length(T)
U(i) = sqrt(Theta(1, 1) + 2 * T(i) * Theta(1, 2) + T(i)^2 * Theta(2, 2));
end
M = Theta * V' * WInv;
// the forecast is obtained by means of generalized LSM
function [forecast] = getForecast(vals)
s = vals(1 : N0);
C = M * s';
forecast = C(1) + C(2) * T;
endfunction
function [res] = inBorders(v, L, H)
n = length(v);
for i = 1 : n
if ((v(i) < L(i)) | (v(i) > H(i))) then
res = 0;
return;
end
end
res = 1;
endfunction
Z = zeros(1, N);
// linear approximation
function res = getArg(x1, y1, x2, y2)
k = (y1 - y2) / (x1 - x2);
b = y1 - k * x1;
res = (0.95 - b) / k;
endfunction
////////////////////////////////////////////////////////////////////////////////
// Monte Carlo to estimate K for probablity level of 0.95
function [k] = getK(k1, k2, nSim)
printfFreq = 10000;
chkS = zeros(1, nSim); // check if stdev at pt = 1
p1 = 0;
p2 = 0;
UExt1 = k1 * U;
UExt2 = k2 * U;
for sim = 1 : nSim
p = AR(N, noiseAlpha, noiseP);
fc = getForecast(p);
L1 = fc - UExt1;
H1 = fc + UExt1;
dp1 = inBorders(Z, L1, H1);
p1 = p1 + dp1;
if (dp1 < 0.99) then
L2 = fc - UExt2;
H2 = fc + UExt2;
p2 = p2 + inBorders(Z, L2, H2);
else
p2 = p2 + 1; // k1 < k2, so dp1 = 1 => dp2 = 1
end
chkS(sim) = p(N);
if (modulo(sim, printfFreq) == 0) then
printf("\t%d\n", sim);
end
end
kP = 1. / nSim;
p1 = kP * p1;
p2 = kP * p2;
printf("\n>> check: s = %.3f\n", stdev(chkS));
printf(">> k1 = %.4f, p1 = %.4f\n", k1, p1);
printf(">> k2 = %.4f, p2 = %.4f\n", k2, p2);
k = getArg(k1, p1, k2, p2);
endfunction
// iterative approximation
k = getK(1.8, 2.8, 2.e4)
k = getK(k - 0.20, k + 0.20, 2.e4)
k = getK(k - 0.05, k + 0.05, 2.e4)
k = getK(k - 0.05, k + 0.05, 2.e5)
k = getK(k - 0.02, k + 0.02, 2.e5)
k = getK(k - 0.01, k + 0.01, 2.e5)
k = getK(k - 0.005, k + 0.005, 4.e5)
k = getK(k - 0.0025, k + 0.0025, 4.e5)
|
f52496c77cbf6a13405bec37ea8d7e57437116e8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1862/CH17/EX17.1/C17P1.sce | 7ecb254ed3d20c58b8728ca15c462e683b1ee2e3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 913 | sce | C17P1.sce | clear
clc
//to find force constant k of spring
//to find magnitude of horizontal force and period of oscillation
// GIVEN:
//refer to figure 17-5 from page no. 375
//mass of boby
M = 1.65//in Kg
//increase in length
y = 7.33//in cm
//mass of block
m = 2.43//in Kg
//distance by which spring is streched
x = 11.6//in cm
//acceleration due to gravity
g = 9.81//in m/s^2
// SOLUTION:
//applying simple harmonic motion equation
//equating forces in y direction
//force constant k of spring
k = (-M*g)/(-y*10^-2)//in N/m //taking y in meters
//magnitude of horizontal force
F = k*(x*10^-2)//in N //taking x in meters
//period of oscillation
T = (2*%pi*(sqrt(m/k)))*10^3//in miliseconds
k = round(k)
printf ("\n\n Force constant k of spring k = \n\n %3i N/m",k)
printf ("\n\n Magnitude of horizontal force F = \n\n %.1f N",F)
printf ("\n\n Period of oscillation T = \n\n %3i ms",T)
|
0fad5744c8bb552fa971d2d7366f54fb3369bf3c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1322/CH16/EX16.2/118ex2.sce | 35566d9c21ba8b6b04cd722dfccf2b65d14928c0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 740 | sce | 118ex2.sce |
clear;
clc;
close;
//let a-the avg. amount paid. x-no. of customers. b-the expenses
//net profit is y=ax-b
x=320;y=4.50;
x=250;y=1.00;
//substitute in above equation
//4.5=320*a-b-equ.1;1=250*a-b-equ.2.subbstract equ.2 from 1.
a=0.05;//we get
b=250*a-1;
x=poly(0,'x');
y=a*x-b;//equation to straight line
//if there is no profit i.e., y=0
for x=1:500
if(0.05*x-11.5==0)
mprintf("x=%i \n",x)
break
end
end
clf;
cust=[230 240 270 300 350 380];
profit=[0 0.5 2.0 3.5 6.0 7.5];
plot(cust,profit,6);
plot(230,0,'r->.diam');
//profit(y) depends on varying no. of customers(x). the no.'s 0.05 & 11.5 remained constant
xtitle("the straight line graph","no. of customers","profit");
legend("y=0.05*x-11.5");
xgrid();
|
beb47d553c689cc82583eb0ee5365806091b9fa8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2741/CH10/EX10.53/ExampleA53.sce | 3ad8b272bc620c97dc942d20b112e5c749038d6b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 588 | sce | ExampleA53.sce | clc
clear
//Page number 495
//Input data
t1=27;//The temperature of the source in degree centigrade
t2=-73;//The temperature of the sink in degree centigrade
H2=300;//The amount of heat released by the sink in cal
//Calculations
T1=t1+273;//The temperature of the source in K
T2=t2+273;//The temperature of the sink in K
H1=H2*(T1/T2);//The amount of heat released by the source in cal
W=H1-H2;//The work performed per cycle in cal
W1=W*4.2;//The work performed per cycle in J
//Output
printf('The work performed by the engine per cycle is %3.0f J ',W1)
|
22438f33121875e4ec6fb9eb037fcf1cca07d2c3 | 50998e579b0a8e47026c534b0f40caf9778f8e54 | /lab_08_questão_2.sci | fdad8a84dd3827549fd08b57cd94147860c77ebd | [] | no_license | luis69fernando/CN-lista-lab08 | 12e5697ecc7003e70f9e7d03ef95d4dd39f17671 | 46302f053b6f7fa1d3f9f3c9e1ced100d01e0f3e | refs/heads/master | 2020-09-10T17:56:20.550694 | 2019-11-17T17:19:02 | 2019-11-17T17:19:02 | 221,787,117 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 708 | sci | lab_08_questão_2.sci | clear; clc;
function f = diff1(t, y)
//E(t) = 12V; L = 0.5H; R = 10ohm; di(t)/dt = (E(t) - R*i(t))/L
f = (12 - 10*y)/0.5;//y' = f(x, y);
endfunction
function E = Euler(y0, t0, t, h, f)
n = length(t), E = y0;
for i=1:n-1
y0 = y0 + h*f(t(i), y0);
E = [E y0];
end
endfunction
//Informações iniciais :
y0 = 0; t0 = 0; h=0.01; t = t0:h:1;
//Resolução pelo metodo de Euler :
y = Euler(y0, t0, t, h, diff1);
//Resolução analítica :
y1 = ode(y0, t0, t, diff1);
//Plot dos gráficos :
xgrid
plot(t, y, 'o')
plot(t, y1, '-r')
//obs: entre t = 0.2 e 0.3 a bateria fica totalmente carregada e se a corrente i(t) se mantem constante
|
9794d4da8e1e0563e63bff19b5a2c7ca7757609b | 1573c4954e822b3538692bce853eb35e55f1bb3b | /DSP Functions/zpklp2lp/test_10.sce | 4a5b23272acfa1f56ba7676848b705bec4a5df1e | [] | 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 | 493 | sce | test_10.sce | // Test #10 : Valid Input case #2
exec('./zpklp2lp.sci',-1);
[z,p,k,n,d]=zpklp2lp([4*%i,3],2*%i,0.23,0.1,0.5);
disp(d);
disp(n);
disp(k);
disp(p);
disp(z);
//
//Scilab Output
//d=1. 0.7265425
//n=0.7265425 1.
//k=-0.9848307 + 0.1678079i
//p=-0.8023016 - 0.2085469i
//z=-0.7472970 - 0.1142642i
// -0.5188694
//
//Matlab Output
//z=-0.7473 - 0.1143i
// -0.5189 + 0.0000i
//p= -0.8023 - 0.2085i
//k= -0.9848 + 0.1678i
//n= 0.7265 1.0000
//d= 1.0000 0.7265
|
b3ecd5ee5c7c6a9b5bb6ea61ff014f416a5e90a3 | b2675f983fedb79e5e6f1940962373bda0570ec4 | /Bank v5/Tests/test-data-driven-http-rest.tst | a2691ab3a2acfb56191f11f90bec3cba195c2c5f | [] | no_license | Meena92/Projects | b854c40b91515bb429c9e13fb0cbc95c03e0a9d6 | 06361e24bf51883ff4140db5c37c3f40836a5752 | refs/heads/master | 2020-03-29T01:45:03.726432 | 2019-06-11T05:26:08 | 2019-06-11T05:26:08 | 149,404,524 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 5,846 | tst | test-data-driven-http-rest.tst | <?xml version="1.0" ?>
<TestCase name="test-data-driven-http-rest" version="5">
<meta>
<create version="8.5.0" buildNumber="8.5.0.58" author="admin" date="09/14/2015" host="localhost" />
<lastEdited version="0.0" buildNumber="0.0.0.0" author="admin" date="10/12/2016" host="localhost" />
</meta>
<id>AFCE7A755B1A11E58280005056C00008</id>
<Documentation>Put documentation of the Test Case here.</Documentation>
<IsInProject>true</IsInProject>
<sig>ZWQ9NSZ0Y3Y9NSZsaXNhdj0wLjAgKDAuMC4wLjApJm5vZGVzPS0yMjE1MDc5Mg==</sig>
<subprocess>false</subprocess>
<initState>
</initState>
<resultState>
</resultState>
<deletedProps>
</deletedProps>
<Node name="http GET /3/movie/49047/" log=""
type="com.itko.lisa.ws.rest.RESTNode"
version="3"
uid="B4D3B9F75B1A11E58280005056C00008"
think="500-1S"
useFilters="true"
quiet="false"
next="http GET /3/movie/49163" >
<!-- Assertions -->
<CheckResult assertTrue="false" name="Ensure Result Contains "Gravity"" type="com.itko.lisa.test.CheckResultContains">
<log>Response did not contain "Gravity"</log>
<then>continue</then>
<valueToAssertKey></valueToAssertKey>
<param>Gravity</param>
</CheckResult>
<url>http://localhost:8001/3/movie/49047?api_key=cd1d7f222b868aec8b843a48baa16df3</url>
<data-type>text</data-type>
<header field="Accept" value="application/json" />
<httpMethod>GET</httpMethod>
<onError>abort</onError>
</Node>
<Node name="http GET /3/movie/49163" log=""
type="com.itko.lisa.ws.rest.RESTNode"
version="3"
uid="B4D3B9F75B1A11E58280005056C00008"
think="500-1S"
useFilters="true"
quiet="false"
next="http GET /3/movie/49381" >
<!-- Assertions -->
<CheckResult assertTrue="false" name="Ensure Result Contains "The Matrix"" type="com.itko.lisa.test.CheckResultContains">
<log>Response does not contain "The Matrix"</log>
<then>continue</then>
<valueToAssertKey></valueToAssertKey>
<param>The Matrix</param>
</CheckResult>
<url>http://localhost:8001/3/movie/49163?api_key=cd1d7f222b868aec8b843a48baa16df119</url>
<data-type>text</data-type>
<header field="Accept" value="application/json" />
<httpMethod>GET</httpMethod>
<onError>abort</onError>
</Node>
<Node name="http GET /3/movie/49381" log=""
type="com.itko.lisa.ws.rest.RESTNode"
version="3"
uid="B4D3B9F75B1A11E58280005056C00008"
think="500-1S"
useFilters="true"
quiet="false"
next="GET empty column value" >
<!-- Assertions -->
<CheckResult assertTrue="false" name="Ensure Result Contains "Seven Samurai"" type="com.itko.lisa.test.CheckResultContains">
<log>Response does not contain "Seven Samurai"</log>
<then>continue</then>
<valueToAssertKey></valueToAssertKey>
<param>Seven Samurai</param>
</CheckResult>
<url>http://localhost:8001/3/movie/49381?api_key=cd1d7f222b868aec8b843a48baa16df337</url>
<data-type>text</data-type>
<header field="Accept" value="application/json" />
<httpMethod>GET</httpMethod>
<onError>abort</onError>
</Node>
<Node name="GET empty column value" log=""
type="com.itko.lisa.ws.rest.RESTNode"
version="3"
uid="B0CEBA81908F11E6B40D60F81DD00CF4"
think="500-1S"
useFilters="true"
quiet="false"
next="http GET /3/movie/notfound" >
<!-- Assertions -->
<CheckResult assertTrue="false" name="Ensure Result Contains empty genre tag" type="com.itko.lisa.test.CheckResultContains">
<log>Response does not contain "Seven Samurai"</log>
<then>continue</then>
<valueToAssertKey></valueToAssertKey>
<param><genre></genre></param>
</CheckResult>
<url>http://localhost:8001/3/movie/49382?api_key=cd1d7f222b868aec8b843a48baa16df337</url>
<content-type></content-type>
<data-type>text</data-type>
<header field="Accept" value="application/json" />
<httpMethod>GET</httpMethod>
<onError>abort</onError>
</Node>
<Node name="http GET /3/movie/notfound" log=""
type="com.itko.lisa.ws.rest.RESTNode"
version="3"
uid="B4D3B9F75B1A11E58280005056C00008"
think="500-1S"
useFilters="true"
quiet="false"
next="end" >
<!-- Assertions -->
<CheckResult assertTrue="false" name="Ensure Result Contains "404 Not Found"" type="com.itko.lisa.test.CheckResultContains">
<log>Response does not contain "404 Not Found"</log>
<then>continue</then>
<valueToAssertKey></valueToAssertKey>
<param>404 Not Found</param>
</CheckResult>
<url>http://localhost:8001/3/movie/notfound?api_key=cd1d7f222b868aec8b843a48baa16df337</url>
<content-type></content-type>
<data-type>text</data-type>
<header field="Accept" value="application/json" />
<httpMethod>GET</httpMethod>
<onError>abort</onError>
</Node>
<Node name="abort" log=""
type="com.itko.lisa.test.AbortStep"
version="1"
uid="AFCE7A775B1A11E58280005056C00008"
think="0h"
useFilters="true"
quiet="true"
next="" >
</Node>
<Node name="fail" log=""
type="com.itko.lisa.test.Abend"
version="1"
uid="AFCE7A795B1A11E58280005056C00008"
think="0h"
useFilters="true"
quiet="true"
next="abort" >
</Node>
<Node name="end" log=""
type="com.itko.lisa.test.NormalEnd"
version="1"
uid="AFCE7A7B5B1A11E58280005056C00008"
think="0h"
useFilters="true"
quiet="true"
next="fail" >
</Node>
</TestCase>
|
d80e17f13f4a6ce8983ec33ef196283cb7b2742c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3831/CH2/EX2.4/Ex2_4.sce | 25008096c175d539d7dcf142fdf0e71085f4e83b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 471 | sce | Ex2_4.sce | // Example 2_4
clc;funcprot(0);
// Given data
m_pendulum=5.0;// The mass of the pendulum in kg
m_projectile=0.01;// The mass of the projectile in kg
g=9.81;// The acceleration due to gravity in m/s^2
R=1.5;// The length of the pendulum support cable in m
theta=15;// degree
// Solution
V_projectile=(1+(m_pendulum/m_projectile))*(2*g*R*[1-cosd(theta)])^(1/2);// The muzzle velocity in m/s
printf('\nThe muzzle velocity,V_projectile=%1.0e m/s',V_projectile);
|
52245cf79b6989657d5f0640a30f665a7480a4eb | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/CONT/DT87NVH/ATWM1_Working_Memory_MEG_DT87NVH_Session2/ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run2.sce | e9edb227b907133d985f605e08a1b38f8f23f8ba | [] | no_license | atwm1/Presentation | 65c674180f731f050aad33beefffb9ba0caa6688 | 9732a004ca091b184b670c56c55f538ff6600c08 | refs/heads/master | 2020-04-15T14:04:41.900640 | 2020-02-14T16:10:11 | 2020-02-14T16:10:11 | 56,771,016 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 48,617 | sce | ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run2.sce | # ATWM1 MEG Experiment
scenario = "ATWM1_Working_Memory_MEG_salient_cued_run2";
#scenario_type = fMRI; # Fuer Scanner
#scenario_type = fMRI_emulation; # Zum Testen
scenario_type = trials; # for MEG
#scan_period = 2000; # TR
#pulses_per_scan = 1;
#pulse_code = 1;
pulse_width=6;
default_monitor_sounds = false;
active_buttons = 2;
response_matching = simple_matching;
button_codes = 10, 20;
default_font_size = 36;
default_font = "Arial";
default_background_color = 0 ,0 ,0 ;
write_codes=true; # for MEG only
begin;
#Picture definitions
box { height = 382; width = 382; color = 0, 0, 0;} frame1;
box { height = 369; width = 369; color = 255, 255, 255;} frame2;
box { height = 30; width = 4; color = 0, 0, 0;} fix1;
box { height = 4; width = 30; color = 0, 0, 0;} fix2;
box { height = 30; width = 4; color = 255, 0, 0;} fix3;
box { height = 4; width = 30; color = 255, 0, 0;} fix4;
box { height = 369; width = 369; color = 42, 42, 42;} background;
TEMPLATE "StimuliDeclaration.tem" {};
trial {
sound sound_incorrect;
time = 0;
duration = 1;
} wrong;
trial {
sound sound_correct;
time = 0;
duration = 1;
} right;
trial {
sound sound_no_response;
time = 0;
duration = 1;
} miss;
# Start of experiment (MEG only) - sync with CTF software
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
} expStart;
time = 0;
duration = 1000;
code = "ExpStart";
port_code = 80;
};
# baselinePre (at the beginning of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
}default;
time = 0;
duration = 10000;
#mri_pulse = 1;
code = "BaselinePre";
port_code = 91;
};
TEMPLATE "ATWM1_Working_Memory_MEG.tem" {
trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4;
44 62 292 292 399 125 1792 2992 2092 fixation_cross gabor_162 gabor_056 gabor_146 gabor_099 gabor_162 gabor_056_alt gabor_146_alt gabor_099 "2_1_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2100_gabor_patch_orientation_162_056_146_099_target_position_1_4_retrieval_position_1" gabor_162_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_1_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_162_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2042 2992 2342 fixation_cross gabor_027 gabor_063 gabor_174 gabor_145 gabor_027_alt gabor_063_alt gabor_174 gabor_145 "2_2_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2350_gabor_patch_orientation_027_063_174_145_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_145_framed blank blank blank blank fixation_cross_white "2_2_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_145_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1842 2992 2242 fixation_cross gabor_134 gabor_001 gabor_111 gabor_022 gabor_134 gabor_001 gabor_111_alt gabor_022_alt "2_3_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2250_gabor_patch_orientation_134_001_111_022_target_position_1_2_retrieval_position_2" gabor_circ gabor_001_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_3_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1942 2992 2092 fixation_cross gabor_089 gabor_022 gabor_175 gabor_004 gabor_089 gabor_022_alt gabor_175 gabor_004_alt "2_4_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2100_gabor_patch_orientation_089_022_175_004_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_175_framed gabor_circ blank blank blank blank fixation_cross_white "2_4_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_175_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1842 2992 2042 fixation_cross gabor_178 gabor_129 gabor_065 gabor_010 gabor_178_alt gabor_129_alt gabor_065 gabor_010 "2_5_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2050_gabor_patch_orientation_178_129_065_010_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_145_framed blank blank blank blank fixation_cross_white "2_5_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_145_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 1742 2992 2292 fixation_cross gabor_037 gabor_173 gabor_092 gabor_149 gabor_037 gabor_173_alt gabor_092 gabor_149_alt "2_6_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1750_3000_2300_gabor_patch_orientation_037_173_092_149_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_010_framed blank blank blank blank fixation_cross_white "2_6_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_010_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2242 2992 2042 fixation_cross gabor_097 gabor_174 gabor_015 gabor_121 gabor_097_alt gabor_174 gabor_015_alt gabor_121 "2_7_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2050_gabor_patch_orientation_097_174_015_121_target_position_2_4_retrieval_position_2" gabor_circ gabor_174_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_7_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_174_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1742 2992 2292 fixation_cross gabor_154 gabor_106 gabor_049 gabor_066 gabor_154 gabor_106_alt gabor_049 gabor_066_alt "2_8_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2300_gabor_patch_orientation_154_106_049_066_target_position_1_3_retrieval_position_1" gabor_019_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_8_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_019_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2042 2992 1992 fixation_cross gabor_081 gabor_117 gabor_165 gabor_060 gabor_081 gabor_117_alt gabor_165_alt gabor_060 "2_9_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2000_gabor_patch_orientation_081_117_165_060_target_position_1_4_retrieval_position_1" gabor_036_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_9_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_036_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2042 2992 2192 fixation_cross gabor_137 gabor_116 gabor_057 gabor_074 gabor_137_alt gabor_116 gabor_057 gabor_074_alt "2_10_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2200_gabor_patch_orientation_137_116_057_074_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_010_framed gabor_circ blank blank blank blank fixation_cross_white "2_10_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_010_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1892 2992 1942 fixation_cross gabor_144 gabor_039 gabor_176 gabor_071 gabor_144 gabor_039_alt gabor_176 gabor_071_alt "2_11_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_1950_gabor_patch_orientation_144_039_176_071_target_position_1_3_retrieval_position_1" gabor_144_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_11_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_144_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 1842 2992 2042 fixation_cross gabor_152 gabor_133 gabor_079 gabor_096 gabor_152_alt gabor_133 gabor_079 gabor_096_alt "2_12_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1850_3000_2050_gabor_patch_orientation_152_133_079_096_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_096_framed blank blank blank blank fixation_cross_white "2_12_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_096_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1942 2992 2092 fixation_cross gabor_058 gabor_101 gabor_034 gabor_081 gabor_058_alt gabor_101_alt gabor_034 gabor_081 "2_13_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2100_gabor_patch_orientation_058_101_034_081_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_034_framed gabor_circ blank blank blank blank fixation_cross_white "2_13_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_034_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2142 2992 1892 fixation_cross gabor_076 gabor_142 gabor_004 gabor_024 gabor_076_alt gabor_142 gabor_004_alt gabor_024 "2_14_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_1900_gabor_patch_orientation_076_142_004_024_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_162_framed blank blank blank blank fixation_cross_white "2_14_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_162_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2092 2992 2242 fixation_cross gabor_137 gabor_021 gabor_158 gabor_069 gabor_137_alt gabor_021 gabor_158 gabor_069_alt "2_15_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2250_gabor_patch_orientation_137_021_158_069_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_158_framed gabor_circ blank blank blank blank fixation_cross_white "2_15_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_158_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 2192 2992 1992 fixation_cross gabor_168 gabor_114 gabor_034 gabor_149 gabor_168_alt gabor_114 gabor_034_alt gabor_149 "2_16_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2200_3000_2000_gabor_patch_orientation_168_114_034_149_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_084_framed gabor_circ blank blank blank blank fixation_cross_white "2_16_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_084_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1742 2992 2542 fixation_cross gabor_143 gabor_112 gabor_127 gabor_007 gabor_143_alt gabor_112 gabor_127 gabor_007_alt "2_17_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2550_gabor_patch_orientation_143_112_127_007_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_127_framed gabor_circ blank blank blank blank fixation_cross_white "2_17_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_127_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2192 2992 2592 fixation_cross gabor_040 gabor_179 gabor_020 gabor_098 gabor_040 gabor_179_alt gabor_020_alt gabor_098 "2_18_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2600_gabor_patch_orientation_040_179_020_098_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_098_framed blank blank blank blank fixation_cross_white "2_18_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_098_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2042 2992 2092 fixation_cross gabor_077 gabor_061 gabor_035 gabor_103 gabor_077 gabor_061 gabor_035_alt gabor_103_alt "2_19_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2100_gabor_patch_orientation_077_061_035_103_target_position_1_2_retrieval_position_2" gabor_circ gabor_061_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_19_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_061_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1742 2992 1942 fixation_cross gabor_010 gabor_126 gabor_163 gabor_045 gabor_010_alt gabor_126 gabor_163 gabor_045_alt "2_20_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_1950_gabor_patch_orientation_010_126_163_045_target_position_2_3_retrieval_position_2" gabor_circ gabor_078_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_20_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_078_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 1792 2992 1942 fixation_cross gabor_153 gabor_027 gabor_068 gabor_086 gabor_153_alt gabor_027 gabor_068_alt gabor_086 "2_21_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1800_3000_1950_gabor_patch_orientation_153_027_068_086_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_068_framed gabor_circ blank blank blank blank fixation_cross_white "2_21_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_068_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2042 2992 2392 fixation_cross gabor_091 gabor_141 gabor_177 gabor_053 gabor_091_alt gabor_141 gabor_177_alt gabor_053 "2_22_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2400_gabor_patch_orientation_091_141_177_053_target_position_2_4_retrieval_position_2" gabor_circ gabor_141_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_22_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_141_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1842 2992 2342 fixation_cross gabor_008 gabor_063 gabor_145 gabor_037 gabor_008_alt gabor_063 gabor_145 gabor_037_alt "2_23_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2350_gabor_patch_orientation_008_063_145_037_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_096_framed gabor_circ blank blank blank blank fixation_cross_white "2_23_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_096_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1992 2992 2342 fixation_cross gabor_047 gabor_096 gabor_062 gabor_125 gabor_047_alt gabor_096_alt gabor_062 gabor_125 "2_24_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2350_gabor_patch_orientation_047_096_062_125_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_062_framed gabor_circ blank blank blank blank fixation_cross_white "2_24_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_062_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 1992 2992 1892 fixation_cross gabor_091 gabor_172 gabor_030 gabor_067 gabor_091_alt gabor_172 gabor_030 gabor_067_alt "2_25_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2000_3000_1900_gabor_patch_orientation_091_172_030_067_target_position_2_3_retrieval_position_1" gabor_141_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_25_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_141_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1842 2992 2192 fixation_cross gabor_153 gabor_113 gabor_087 gabor_170 gabor_153_alt gabor_113 gabor_087 gabor_170_alt "2_26_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2200_gabor_patch_orientation_153_113_087_170_target_position_2_3_retrieval_position_2" gabor_circ gabor_113_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_26_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_113_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1792 2992 2342 fixation_cross gabor_084 gabor_131 gabor_041 gabor_150 gabor_084_alt gabor_131_alt gabor_041 gabor_150 "2_27_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2350_gabor_patch_orientation_084_131_041_150_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_011_framed blank blank blank blank fixation_cross_white "2_27_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_011_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2142 2992 1992 fixation_cross gabor_035 gabor_143 gabor_090 gabor_109 gabor_035_alt gabor_143_alt gabor_090 gabor_109 "2_28_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2000_gabor_patch_orientation_035_143_090_109_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_061_framed blank blank blank blank fixation_cross_white "2_28_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_061_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1792 2992 2542 fixation_cross gabor_081 gabor_043 gabor_127 gabor_059 gabor_081_alt gabor_043_alt gabor_127 gabor_059 "2_29_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2550_gabor_patch_orientation_081_043_127_059_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_059_framed blank blank blank blank fixation_cross_white "2_29_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_059_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1942 2992 2492 fixation_cross gabor_122 gabor_007 gabor_167 gabor_142 gabor_122 gabor_007_alt gabor_167 gabor_142_alt "2_30_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2500_gabor_patch_orientation_122_007_167_142_target_position_1_3_retrieval_position_1" gabor_122_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_30_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_122_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1892 2992 2392 fixation_cross gabor_052 gabor_159 gabor_082 gabor_097 gabor_052_alt gabor_159 gabor_082_alt gabor_097 "2_31_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2400_gabor_patch_orientation_052_159_082_097_target_position_2_4_retrieval_position_2" gabor_circ gabor_113_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_31_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_113_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1942 2992 2492 fixation_cross gabor_065 gabor_100 gabor_032 gabor_148 gabor_065 gabor_100_alt gabor_032 gabor_148_alt "2_32_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2500_gabor_patch_orientation_065_100_032_148_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_032_framed gabor_circ blank blank blank blank fixation_cross_white "2_32_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_032_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 1992 2992 1892 fixation_cross gabor_163 gabor_056 gabor_132 gabor_090 gabor_163 gabor_056_alt gabor_132_alt gabor_090 "2_33_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2000_3000_1900_gabor_patch_orientation_163_056_132_090_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_179_framed gabor_circ blank blank blank blank fixation_cross_white "2_33_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_179_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1942 2992 2192 fixation_cross gabor_171 gabor_046 gabor_063 gabor_020 gabor_171 gabor_046 gabor_063_alt gabor_020_alt "2_34_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2200_gabor_patch_orientation_171_046_063_020_target_position_1_2_retrieval_position_2" gabor_circ gabor_001_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_34_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 2142 2992 2142 fixation_cross gabor_039 gabor_009 gabor_073 gabor_124 gabor_039 gabor_009_alt gabor_073 gabor_124_alt "2_35_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2150_3000_2150_gabor_patch_orientation_039_009_073_124_target_position_1_3_retrieval_position_2" gabor_circ gabor_146_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_35_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_146_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1892 2992 2292 fixation_cross gabor_177 gabor_015 gabor_105 gabor_064 gabor_177 gabor_015 gabor_105_alt gabor_064_alt "2_36_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2300_gabor_patch_orientation_177_015_105_064_target_position_1_2_retrieval_position_2" gabor_circ gabor_152_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_36_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_152_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1742 2992 2192 fixation_cross gabor_029 gabor_065 gabor_138 gabor_003 gabor_029 gabor_065_alt gabor_138_alt gabor_003 "2_37_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2200_gabor_patch_orientation_029_065_138_003_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_049_framed blank blank blank blank fixation_cross_white "2_37_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_049_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2142 2992 1942 fixation_cross gabor_086 gabor_042 gabor_102 gabor_121 gabor_086_alt gabor_042 gabor_102_alt gabor_121 "2_38_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_1950_gabor_patch_orientation_086_042_102_121_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_121_framed blank blank blank blank fixation_cross_white "2_38_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_121_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2092 2992 2392 fixation_cross gabor_035 gabor_068 gabor_013 gabor_095 gabor_035 gabor_068_alt gabor_013 gabor_095_alt "2_39_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2400_gabor_patch_orientation_035_068_013_095_target_position_1_3_retrieval_position_1" gabor_175_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_39_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_175_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2242 2992 1992 fixation_cross gabor_054 gabor_167 gabor_118 gabor_095 gabor_054 gabor_167 gabor_118_alt gabor_095_alt "2_40_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2000_gabor_patch_orientation_054_167_118_095_target_position_1_2_retrieval_position_1" gabor_006_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_40_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_006_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 2192 2992 2142 fixation_cross gabor_143 gabor_104 gabor_167 gabor_035 gabor_143 gabor_104 gabor_167_alt gabor_035_alt "2_41_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2200_3000_2150_gabor_patch_orientation_143_104_167_035_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_035_framed blank blank blank blank fixation_cross_white "2_41_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_035_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1892 2992 2142 fixation_cross gabor_009 gabor_073 gabor_042 gabor_127 gabor_009_alt gabor_073_alt gabor_042 gabor_127 "2_42_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2150_gabor_patch_orientation_009_073_042_127_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_042_framed gabor_circ blank blank blank blank fixation_cross_white "2_42_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_042_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2142 2992 2042 fixation_cross gabor_125 gabor_141 gabor_171 gabor_010 gabor_125_alt gabor_141 gabor_171_alt gabor_010 "2_43_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2050_gabor_patch_orientation_125_141_171_010_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_010_framed blank blank blank blank fixation_cross_white "2_43_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_010_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1742 2992 2142 fixation_cross gabor_004 gabor_047 gabor_155 gabor_084 gabor_004_alt gabor_047_alt gabor_155 gabor_084 "2_44_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2150_gabor_patch_orientation_004_047_155_084_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_131_framed blank blank blank blank fixation_cross_white "2_44_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_131_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1942 2992 2392 fixation_cross gabor_032 gabor_075 gabor_058 gabor_003 gabor_032_alt gabor_075 gabor_058 gabor_003_alt "2_45_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2400_gabor_patch_orientation_032_075_058_003_target_position_2_3_retrieval_position_2" gabor_circ gabor_122_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_45_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_122_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 1992 2992 2142 fixation_cross gabor_111 gabor_092 gabor_042 gabor_068 gabor_111_alt gabor_092 gabor_042_alt gabor_068 "2_46_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2000_3000_2150_gabor_patch_orientation_111_092_042_068_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_042_framed gabor_circ blank blank blank blank fixation_cross_white "2_46_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_042_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1842 2992 2192 fixation_cross gabor_150 gabor_023 gabor_087 gabor_068 gabor_150_alt gabor_023 gabor_087_alt gabor_068 "2_47_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2200_gabor_patch_orientation_150_023_087_068_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_113_framed blank blank blank blank fixation_cross_white "2_47_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_113_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2192 2992 2492 fixation_cross gabor_004 gabor_055 gabor_025 gabor_130 gabor_004_alt gabor_055_alt gabor_025 gabor_130 "2_48_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2500_gabor_patch_orientation_004_055_025_130_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_082_framed blank blank blank blank fixation_cross_white "2_48_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_082_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1792 2992 2242 fixation_cross gabor_174 gabor_049 gabor_023 gabor_092 gabor_174_alt gabor_049 gabor_023_alt gabor_092 "2_49_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2250_gabor_patch_orientation_174_049_023_092_target_position_2_4_retrieval_position_2" gabor_circ gabor_049_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_49_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_049_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2242 2992 2442 fixation_cross gabor_152 gabor_002 gabor_027 gabor_088 gabor_152_alt gabor_002_alt gabor_027 gabor_088 "2_50_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2450_gabor_patch_orientation_152_002_027_088_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_027_framed gabor_circ blank blank blank blank fixation_cross_white "2_50_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_027_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 2242 2992 2592 fixation_cross gabor_180 gabor_074 gabor_051 gabor_138 gabor_180 gabor_074_alt gabor_051_alt gabor_138 "2_51_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2250_3000_2600_gabor_patch_orientation_180_074_051_138_target_position_1_4_retrieval_position_2" gabor_circ gabor_120_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_51_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_120_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2092 2992 2442 fixation_cross gabor_052 gabor_124 gabor_173 gabor_109 gabor_052 gabor_124 gabor_173_alt gabor_109_alt "2_52_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2450_gabor_patch_orientation_052_124_173_109_target_position_1_2_retrieval_position_1" gabor_052_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_52_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_052_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1792 2992 2442 fixation_cross gabor_006 gabor_140 gabor_166 gabor_094 gabor_006 gabor_140_alt gabor_166 gabor_094_alt "2_53_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2450_gabor_patch_orientation_006_140_166_094_target_position_1_3_retrieval_position_1" gabor_055_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_53_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_055_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2042 2992 2442 fixation_cross gabor_161 gabor_139 gabor_180 gabor_028 gabor_161_alt gabor_139 gabor_180_alt gabor_028 "2_54_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2450_gabor_patch_orientation_161_139_180_028_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_074_framed blank blank blank blank fixation_cross_white "2_54_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_074_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1892 2992 1942 fixation_cross gabor_007 gabor_070 gabor_036 gabor_055 gabor_007 gabor_070_alt gabor_036 gabor_055_alt "2_55_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_1950_gabor_patch_orientation_007_070_036_055_target_position_1_3_retrieval_position_1" gabor_007_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_55_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_007_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1992 2992 1892 fixation_cross gabor_006 gabor_159 gabor_089 gabor_054 gabor_006_alt gabor_159 gabor_089 gabor_054_alt "2_56_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_1900_gabor_patch_orientation_006_159_089_054_target_position_2_3_retrieval_position_2" gabor_circ gabor_112_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_56_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_112_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 1842 2992 2592 fixation_cross gabor_061 gabor_129 gabor_103 gabor_082 gabor_061_alt gabor_129 gabor_103_alt gabor_082 "2_57_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1850_3000_2600_gabor_patch_orientation_061_129_103_082_target_position_2_4_retrieval_position_1" gabor_061_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_57_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_061_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2142 2992 2292 fixation_cross gabor_090 gabor_135 gabor_066 gabor_175 gabor_090 gabor_135_alt gabor_066 gabor_175_alt "2_58_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2300_gabor_patch_orientation_090_135_066_175_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_066_framed gabor_circ blank blank blank blank fixation_cross_white "2_58_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_066_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2192 2992 2042 fixation_cross gabor_046 gabor_104 gabor_174 gabor_131 gabor_046_alt gabor_104 gabor_174 gabor_131_alt "2_59_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2050_gabor_patch_orientation_046_104_174_131_target_position_2_3_retrieval_position_2" gabor_circ gabor_153_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_59_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_153_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2092 2992 2542 fixation_cross gabor_068 gabor_034 gabor_151 gabor_123 gabor_068_alt gabor_034 gabor_151 gabor_123_alt "2_60_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2550_gabor_patch_orientation_068_034_151_123_target_position_2_3_retrieval_position_2" gabor_circ gabor_084_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_60_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_084_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 2092 2992 2292 fixation_cross gabor_092 gabor_126 gabor_012 gabor_039 gabor_092_alt gabor_126 gabor_012 gabor_039_alt "2_61_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2100_3000_2300_gabor_patch_orientation_092_126_012_039_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_039_framed blank blank blank blank fixation_cross_white "2_61_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_039_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2242 2992 2592 fixation_cross gabor_031 gabor_114 gabor_053 gabor_005 gabor_031 gabor_114_alt gabor_053_alt gabor_005 "2_62_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2600_gabor_patch_orientation_031_114_053_005_target_position_1_4_retrieval_position_1" gabor_077_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_62_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_077_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1892 2992 2092 fixation_cross gabor_126 gabor_045 gabor_009 gabor_070 gabor_126_alt gabor_045 gabor_009_alt gabor_070 "2_63_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2100_gabor_patch_orientation_126_045_009_070_target_position_2_4_retrieval_position_2" gabor_circ gabor_095_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_63_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_095_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2242 2992 1892 fixation_cross gabor_160 gabor_120 gabor_043 gabor_102 gabor_160_alt gabor_120 gabor_043 gabor_102_alt "2_64_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_1900_gabor_patch_orientation_160_120_043_102_target_position_2_3_retrieval_position_2" gabor_circ gabor_074_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_64_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_074_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1742 2992 2542 fixation_cross gabor_024 gabor_177 gabor_131 gabor_071 gabor_024_alt gabor_177 gabor_131 gabor_071_alt "2_65_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2550_gabor_patch_orientation_024_177_131_071_target_position_2_3_retrieval_position_2" gabor_circ gabor_177_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_65_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_177_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 1792 2992 1992 fixation_cross gabor_081 gabor_004 gabor_045 gabor_162 gabor_081_alt gabor_004_alt gabor_045 gabor_162 "2_66_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1800_3000_2000_gabor_patch_orientation_081_004_045_162_target_position_3_4_retrieval_position_1" gabor_127_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_66_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_127_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2092 2992 2242 fixation_cross gabor_174 gabor_048 gabor_020 gabor_085 gabor_174_alt gabor_048_alt gabor_020 gabor_085 "2_67_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2250_gabor_patch_orientation_174_048_020_085_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_085_framed blank blank blank blank fixation_cross_white "2_67_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_085_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2192 2992 2242 fixation_cross gabor_032 gabor_108 gabor_090 gabor_064 gabor_032_alt gabor_108 gabor_090 gabor_064_alt "2_68_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2250_gabor_patch_orientation_032_108_090_064_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_090_framed gabor_circ blank blank blank blank fixation_cross_white "2_68_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_090_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1992 2992 2342 fixation_cross gabor_135 gabor_178 gabor_055 gabor_012 gabor_135 gabor_178 gabor_055_alt gabor_012_alt "2_69_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2350_gabor_patch_orientation_135_178_055_012_target_position_1_2_retrieval_position_1" gabor_090_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_69_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_090_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 1892 2992 2492 fixation_cross gabor_029 gabor_110 gabor_091 gabor_076 gabor_029_alt gabor_110 gabor_091_alt gabor_076 "2_70_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1900_3000_2500_gabor_patch_orientation_029_110_091_076_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_091_framed gabor_circ blank blank blank blank fixation_cross_white "2_70_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_091_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
};
# baselinePost (at the end of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
};
time = 0;
duration = 5000;
code = "BaselinePost";
port_code = 92;
}; |
c15c5ee5c18b164b1b5a50bf998d55b02ce4c2d0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3636/CH11/EX11.4/Ex11_4.sce | 99037e8a90945d0a0394d3c8afca8f3e7ac06604 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 420 | sce | Ex11_4.sce | clear;
clc;
TJ_max=150 //in C
Tamb=27 //in C
Rth_dp=1.7 //Thermal resistance in C/W
Rth_pa=40 //in C/W
Rth_ps=1 //in C/W
Rth_sa=4 //in C/W
//Calculation
PD1_max=(TJ_max-Tamb)/(Rth_dp+Rth_pa)
PD2_max=(TJ_max-Tamb)/(Rth_dp+Rth_sa+Rth_ps)
mprintf("Case(a):No heat sink used :-Maximum power distribution= %1.2f W\n",PD1_max)
mprintf("Case(b):Heaat sink used :- Maximum power distribution= %2.2f W",PD2_max)
|
49d27a4fc04271ecd4b2d485e1192b20244dfdb6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2990/CH5/EX5.14/Ex5_14.sce | e487dfe1632e2e0fbabda5edd1ca84328c721d27 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 598 | sce | Ex5_14.sce |
funcprot(0);
// Initialization of Variable
function[dms]=degtodms(deg)
d = int(deg)
md = abs(deg - d) * 60
m = int(md)
sd = (md - m) * 60
sd=(round(sd*100)/100)
dms=[d m sd]
endfunction
ZP=37+29.0/60+40.0/3600//colatitde in degrees
ZM=56+24.0/60+50.0/3600//coaltitude in degrees
PM=67+54.0/60+24.0/3600//codeclination in degrees
//calculation
A1=acos((cos(PM*%pi/180)-cos(ZP*%pi/180)*cos(ZM*%pi/180))/(sin(ZP*%pi/180)*sin(ZM*%pi/180)));
A1=A1*180/%pi;
A=360-A1;
A=degtodms(A);
disp(A,"azimuth of sun in degree,minites,seconds respectively");
clear()
|
80fd4eb5cac6987bf7c2def1a9fec2b7b432a611 | 449d555969bfd7befe906877abab098c6e63a0e8 | /534/CH8/EX8.6/8_6_Metal_Duct.sce | 6c3fb77efc16e2b980b342b30101db04a1a57d99 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,243 | sce | 8_6_Metal_Duct.sce | clear;
clc;
printf('FUNDAMENTALS OF HEAT AND MASS TRANSFER \n Incropera / Dewitt / Bergman / Lavine \n EXAMPLE 8.6 Page 516 \n'); //Example 8.6
// Heat Loss from the Duct over the Length L, q
// Heat flux and suface temperature at x=L
//Operating Conditions
m = .05; //[kg/s] mass flow rate of water
Ti = 103+273; //[K] Inlet temp
To = 77+273; //[K] Outlet temperature
D = .15; //[m] Diameter
L = 5; //[m] length
ho = 6; //[W/m^2.K] Heat transfer convective coefficient
Tsurr = 0+273; //[K] Temperature of surrounding
//Table A.4 Air Properties T = 363 K
cp = 1010; //[J/kg.K] specific heat
//Table A.4 Air Properties T = 350 K
k = .030; //[W/m] Thermal Conductivity
u = 20.82*10^-6; //[N.s/m^2] Viscosity
Pr = .7; //Prandtl Number
q = m*cp*(To-Ti);
Re = m*4/(%pi*D*u);
printf("\n As Reynolds Number is %i. The flow is Turbulent.",Re);
//Equation 8.6
n = 0.3;
Nu = .023*Re^.8*Pr^.3;
h = Nu*k/D;
q2 = (To-Tsurr)/[1/h + 1/ho];
Ts = -q2/h+To;
printf("\n\n Heat Loss from the Duct over the Length L, q = %i W \n Heat flux and suface temperature at x=L is %.1f W/m^2 & %.1f degC respectively",q,q2,Ts-273);
//END |
859b5f00b1747c1896cb4479ebf88f91fac289dc | 449d555969bfd7befe906877abab098c6e63a0e8 | /213/CH15/EX15.20/15_20.sce | e184097807c8618320c3d098e16252a1d52f9563 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,214 | sce | 15_20.sce | //To find torque exerted
clc
//Given:
D=240/1000, L=600/1000, r=L/2, l=1.5, GC=500/1000, kG=650/1000 //m
mR=300, mC=250 //kg
N=125 //rpm
theta=30 //degrees
//Solution:
//Refer Fig. 15.25
//Calculating the angular speed of the crank
omega=2*%pi*N/60 //rad/s
//Analytical method:
//Calculating the distance of centre of gravity of the connecting rod from P
l1=l-GC //m
//Calculating the ratio of lengths of the connecting rod and crank
n=l/r
//Calculating the inertia force due to total mass of the reciprocating parts at P
FI=(mR+(l-l1)/l*mC)*omega^2*r*(cosd(theta)+cosd(2*theta)/n) //N
//Calculating the corresponding torque due to FI
TI=FI*r*(sind(theta)+sind(2*theta)/(2*sqrt(n^2-(sind(theta))^2))) //N-m
//Calculating the equivalent length of a simple pendulum when swung about an axis through P
L=((kG)^2+(l1)^2)/l1 //m
//Calculating the correcting torque
TC=mC*l1*(l-L) //N-m
//Calculating the torque due to the weight of the connecting rod at C
TW=mC*9.81*(l1/n)*cosd(theta) //N-m
//Calculating the total torque exerted on the crankshaft
Tt=TI+TC+TW //Total torque exerted on the crankshaft, N-m
//Results:
printf("\n\n Total torque exerted on the crankshaft = %.1f N-m.\n\n",Tt) |
f8f240ff289800392624c77e83e536a5f4a64561 | 449d555969bfd7befe906877abab098c6e63a0e8 | /32/CH17/EX17.04/17_04.sce | 27410ab3de43d1f0db56ed1fa7b60dc7f7661e65 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 718 | sce | 17_04.sce | //pathname=get_absolute_file_path('17.04.sce')
//filename=pathname+filesep()+'17.04-data.sci'
//exec(filename)
//Specific fuel consumption(in kg/kW.h):
m1=0.25
//Brake mean effective pressure(in kPa):
pbmep=1.5*10^3
//Speed of engine(in rpm):
N=100
//Bore of cylinder(in m):
D=0.85
//Stroke(in m):
L=2.20
//Calorific value of diesel(in kJ/kg):
C=43*10^3
//Brake power of engine(in kW):
BP=pbmep*L*(%pi*D^2/4)*N/60
printf("\n RESULT \n")
printf("\nBrake power = %f MW",BP/100)
//Fuel consumption(in kg/hr):
m=m1*BP
//Heat from fuel(in kJ/s):
q=m*C/3600
//Brake thermal efficiency:
nb=BP/q*100
printf("\nFuel consumption rate = %f kg/hr",m)
printf("\nBrake thermal efficiency = %f percent",nb) |
e60582fb18806e1217e912ad8bb646ae8abbecbf | 449d555969bfd7befe906877abab098c6e63a0e8 | /2087/CH4/EX4.54/example4_54.sce | 0629f55773490b436acfda6ce47df82fff2da768 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 957 | sce | example4_54.sce |
//example 4.54
//calculate Total rainfall in catchment
//run-off by rainfall of 3.3cm in 3hrs
clc;funcprot(0);
//given
A=[36 18 66]; //area of catchment
fi=[0.9 1.1 0.5]; //fi index
r1=[0.6 0.9 1.0]; //rainfall in first hour
r2=[2.4 2.1 2.0]; //rainfall in second hour
r3=[1.3 1.5 0.9]; //rainfall in third hour
t36=r1(1)+r2(1)+r3(1);
t18=r1(2)+r2(2)+r3(2);
t66=r1(3)+r2(3)+r3(3);
p=(t36*A(1)+t18*A(2)+t66*A(3))/(A(1)+A(2)+A(3));
mprintf("Total rainfall in catchment=%f cm.",p);
ro1=[0 0 0.5];ro2=[1.5 1.0 1.5];ro3=[0.4 0.4 0.4]; //rainfall-fi
t1=ro1(1)+ro2(1)+ro3(1);
t2=ro1(2)+ro2(2)+ro3(2);
t3=ro1(3)+ro2(3)+ro3(3);
run=(A(1)*t1+A(2)*t2+A(3)*t3)/(A(1)+A(2)+A(3)); //run-off from entire catchment
mprintf("\nrun-off by rainfall of 3.3cm in 3hrs=%f cm.",run);
fia=(fi(1)*A(1)+fi(2)*A(2)+fi(3)*A(3))/(A(1)+A(2)+A(3));
tr=(1.1-fia)*3;
mprintf("\nTotal run-off=%f cm.",tr);
|
e32f3e1c0d5417052389c6724c1d3f3b05f8966e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2741/CH2/EX2.1/Chapter2_Example1.sce | a4e343dbaab44d43c71607327d5306dbbdc1fdc5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 593 | sce | Chapter2_Example1.sce | clc
clear
//Input data
l=1;//The thickness of the crystal in cm
w=5890d-8;//The wavelength of light used in cm
t2=50;//The final temperature of the crystal in degree centigrade
t1=20;//The initial temperature of the crystal in degree centigrade
p=14;//The number of fringes that crossed the field of view
//Calculations
t=t2-t1;//The temperature difference in degree centigrade
a=(p*w)/(2*l*t);//The coefficient of linear expansion of the crystal in per degree centigrade
//output
printf('The coefficient of linear expansion of the crystal is %3.4g /degree centigrade',a)
|
59f8e79da70464a4d4b7d7ef30c080af7e9c7872 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2609/CH6/EX6.19/Ex6_19.sce | e94fcb2314ce3e662116c5fe71036152f0a41853 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,144 | sce | Ex6_19.sce | //Ex 6.19
clc;
clear;
close;
format('v',6);
//Data given
Rf=15;//kohm
RT1=4.7;//kohm
R1=56;//kohm
R2=6.8;//kohm
R3=10;//kohm
R4=1;//kohm
R5=1;//kohm
CB=1;//micro F
CT=0.05;//mic
VCC=15;//V
V1=-15;//V////Voltage given through the resistance(R1) 56 kohm
disp("Part (i)");
Vin=2;//V
Vo=Rf/R1*(-V1)-Rf/R2*Vin;//V
disp(Vo,"Voltage Vo(V)");
N_VCC=0;//V////-VCC////voltage given to the 12th pin of IC
V7=N_VCC+3;//V
disp(V7,"Voltage V7(V)");
I=(V7-Vo)/RT1;//mA
disp(I,"Current I(mA)");
Rmult=R4*R5/(R4+R5)+R3;//kohm////on pin 3
disp(Rmult,"Total resistance on pin 3, Rmult(kohm)");
format('v',4);
f0=0.32*I*10^-3/(CT*10^-6)/1000;//kHz
disp(f0,"Oscillation frequency(kHz)");
disp("Part (ii)");
format('v',4);
Vin=5;//V
Vo=Rf/R1*(-V1)-Rf/R2*Vin;//V
disp(Vo,"Voltage Vo(V)");
N_VCC=0;//V////-VCC////voltage given to the 12th pin of IC
V7=N_VCC+3;//V
disp(V7,"Voltage V7(V)");
I=(V7-Vo)/RT1;//mA
format('v',6);
disp(I,"Current I(mA)");
Rmult=R4*R5/(R4+R5)+R3;//kohm////on pin 3
disp(Rmult,"Total resistance on pin 3, Rmult(kohm)");
f0=0.32*I*10^-3/(CT*10^-6)/1000;//kHz
disp(f0,"Oscillation frequency(kHz)");
|
587d888cb0c50bb690d65a3b7beafc223003ae5f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3769/CH13/EX13.34/Ex13_34.sce | 239a221732a0c17cda447a6c008f0d3f849830b6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 429 | sce | Ex13_34.sce | clear
//Given
C=100*10**-12 //F
L=100*10**-6 //H
Ev=10
R=100.0 //ohm
//Calculation
//
fr=1/(2*%pi*sqrt(L*C))
Iv=Ev/R
Vl=Iv*2*%pi*fr*L
Vc=Iv/(2.0*%pi*fr*C)
//Result
printf("\n (i) Resonant frequency is %0.2f *10**6 HZ",fr*10**-6)
printf("\n (ii) Current at resonance is %0.3f A", Iv)
printf("\n (iii) Voltage across L and C is %0.3f V", Vc)
|
71b356987e345c2fddf45a504e391d1640db5c4c | 449d555969bfd7befe906877abab098c6e63a0e8 | /929/CH2/EX2.4/Example2_4.sce | f06daee3b51b6fad1fdd99e7d08a7460ca2ab167 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 616 | sce | Example2_4.sce | //Example 2.4
clear;
clc;
Vsat=15;//Saturation Voltage
vL=10;
iL=10^(-3);//Load Current
vI=Vsat;//Assuming Vsat as the input Voltage
R1=vI/iL;//(Tolerance-1%)
//vL<=(R1/(R1+R2))*Vsat, Vsat=15V ->10<=(R1/(R1+R2))*15 or 10=(R1/(R1+R2))*13 (approx)
//->R2=((13*R1)/vL)-R1
R2=((13*R1)/vL)-R1;//(Tolerance-1%)
R3=R1;//(Tolerance-1%)
R4=R2;//(Tolerance-1%)
printf("Designed Current Source using Grounded Load Converter :");
printf("\nR1=%.f kohms",R1*10^(-3));
printf("\nR2=%.1f kohms",R2*10^(-3));
printf("\nR3=%.f kohms",R3*10^(-3));
printf("\nR4=%.1f kohms",R4*10^(-3)); |
2f0470a3f5b7057555ddebedadc907be258a9ae2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1943/CH10/EX10.9/Ex10_9.sce | 12ff71e5edf6b0de1bb780f84ce93a5ff88c515e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,639 | sce | Ex10_9.sce |
clc
clear
//Input data
n=4//Number of units
P=70000//Power in kVA
f=50//Frequency in Hz
p=10//No.of pair of poles
h=505//Gross head in m
tn=94//Transmission efficiency in percent
po=260//Power in MW
e=91//Efficiency in percent
nn=0.98//Nozzle efficiency
Cv=0.98//Coefficient of velocity
x=0.48//Vb=0.48 V
dd=25//Nozzle diameter is 25% bigger than jet diameter
a=165//Angle of buckets in degrees
de=99.75//Discharge efficiency in percent
//Calculations
N=(120*f)/(p*2)//Synchronous speed in r.p.m
nh=((tn/100)*h)//Net head in m
pt=(po*10^3)/n//Power developed per turbine in kW
ip=(pt/(e/100))//Input water power in kW
Q=(ip/(9.81*nh))//Discharge in m^3/s
Qj=(Q/n)//Discharge per jet in m^3/s
V1=Cv*sqrt(2*9.81*nh)//Velocity in m/s
d=sqrt((4/3.14)*(Qj/V1))//Diameter of jet in m
nd=(1+(dd/100))*d//Nozzle tip diameter in m
Vb=(x*V1)//Velocity in m/s
D=((Vb*60)/(3.14*N))//Pitch circle diameter of the wheel in m
Ns=((N*sqrt(po*10^3))/nh^(5/4))//Specific speed
jr=(D/d)//Jet ratio
nob=(jr/2)+15//Number of buckets
nobb=ceil(nob)//Rounding off to next integer
W=((V1-Vb)*(1-(nn*cosd(a)))*Vb)/9.81//Workdone per kg in kg.m/kg
nth=((W/nh)*de)//Hydraulic efficiency in percent
//Output
printf('(a) the discharge of the turbine is %3.2f m^3/s \n (b) the jet diameter is %3.3f m \n (c) the nozzle tip diameter is %3.3f m \n (d) the pitch circle diameter of the wheel is %3.2f m \n (e) the specific speed is %3.2f \n (f) the number of buckets on the wheel are %3.0f \n (g) the workdone per kg of water on the wheel is %3.2f kg.m/kg \n (h) the hydraulic efficiency is %3.0f percent',Q,d,nd,D,Ns,nobb,W,nth)
|
410e09c54bfc4815cd0d6bfd0b6036538c58a78f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1739/CH8/EX8.4/Exa8_4.sce | da5d698c9934da0d20176cad1b2f1ac412e82649 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 176 | sce | Exa8_4.sce | //Exa 8.4
clc;
clear;
close;
//Given data :
E=4.5*10^-21;//in Joule
R=0.9;//in A/W
P=20;//in uWatt
Ip=R*P;//in uA
disp(Ip,"Photocurrent generated in micro Ampere : "); |
671e02f87b7a7d92c9147720596a084550ecf0b8 | dc1af20bca10db33d1adcbf61d5fe874eb6eab07 | /PluginTesting/environment/NO_TEST/NO_TEST.tst | 22b520e2b6f37df0361c7a604509e56555ccee6d | [] | no_license | TimSVector/PointOfSales_v2 | 2d1130516cfc5d77f2e5d0f60adcde96374f6fc2 | ef630f05850715568725cf94cc0e497146a049d4 | refs/heads/master | 2023-08-04T10:51:50.031346 | 2023-08-03T20:50:28 | 2023-08-03T20:50:28 | 133,404,783 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 661 | tst | NO_TEST.tst | -- VectorCAST 19.sp1 (06/26/19)
-- Test Case Script
--
-- Environment : NO_TEST
-- Unit(s) Under Test: manager
--
-- Script Features
TEST.SCRIPT_FEATURE:C_DIRECT_ARRAY_INDEXING
TEST.SCRIPT_FEATURE:CPP_CLASS_OBJECT_REVISION
TEST.SCRIPT_FEATURE:MULTIPLE_UUT_SUPPORT
TEST.SCRIPT_FEATURE:MIXED_CASE_NAMES
TEST.SCRIPT_FEATURE:STANDARD_SPACING_R2
TEST.SCRIPT_FEATURE:OVERLOADED_CONST_SUPPORT
TEST.SCRIPT_FEATURE:UNDERSCORE_NULLPTR
TEST.SCRIPT_FEATURE:FULL_PARAMETER_TYPES
TEST.SCRIPT_FEATURE:STRUCT_DTOR_ADDS_POINTER
TEST.SCRIPT_FEATURE:STRUCT_FIELD_CTOR_ADDS_POINTER
TEST.SCRIPT_FEATURE:STATIC_HEADER_FUNCS_IN_UUTS
TEST.SCRIPT_FEATURE:VCAST_MAIN_NOT_RENAMED
--
|
88e11413bfd35cfee344ed5ac7389f088884568c | dd74ff0f4455fe5c6e686a3d1adf644d088df841 | /src/testing/06082021.tst | 9fcdeca5f3898ea63bd02e2f234254fdb7a3c30e | [] | no_license | alexandriapawlik/flux-dashboard | 2234fb585f0d021c0bb357ca0f250bf042c53913 | 34f45fcca2627c17ad77ff38bada884d206a16e9 | refs/heads/main | 2023-06-23T14:40:55.951436 | 2021-07-23T18:43:17 | 2021-07-23T18:43:17 | 373,291,377 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 119 | tst | 06082021.tst | 2021-05-17 02:02:56,k,1a,10.0
2021-06-10 06:05:10,z,2a,12.1
2021-05-30 12:02:56,y,6a,10.0
2021-06-08 10:05:10,z,7a,12.1 |
d8a1fb20a4b57b48f078cf4741b9193bb25df6ad | 449d555969bfd7befe906877abab098c6e63a0e8 | /1808/CH5/EX5.24/Chapter5_Exampl24.sce | 2a741646b32111af0bfa34d6a015aa95bf285bcd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 617 | sce | Chapter5_Exampl24.sce | clc
clear
//INPUT DATA
t1=293;//temperature in K
p2=10;//pressure in bar
p1=1;//pressure in bar
n=1.2;//index of compressor
m=1;//mass pf air
R=0.287;//gas constant
g=1.4;//constant
//CALCULATIONS
t2=t1*((p2/p1)^((n-1)/n));//temperature in K
wd=m*R*(t2-t1)/(n-1);//workdone during compression per kg of air
Q=((g-n)/(g-1))*wd;//heat transferred during compression per kg of air
//OUTPUT
printf('(i)Temperature at the end of the compressor is %3.2f K \n (ii)workdone during compression per kg of air %3.3f kJ/kg \n (iii)heat transferred during compression per kg of air %3.2f kJ/kg',t2,wd,Q)
|
585256c8f95b77a32379291763f1c18237be839c | 449d555969bfd7befe906877abab098c6e63a0e8 | /980/CH15/EX15.13/15_13.sce | 7a867edb7e82c4b96c422880c8c9b439072c191c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 110 | sce | 15_13.sce | clc;
clear;
format('e',11);
Nmax=2*10^12;
fcr=9*sqrt(Nmax);
disp(fcr,"the critical frequency(in Hz)=");
|
01f5b0217a5ad9dd7fbd03782e1901c055217827 | 449d555969bfd7befe906877abab098c6e63a0e8 | /926/CH3/EX3.8/Chapter3_Example8.sce | 110a96fb711d6137995b78ee3b8f55756a216804 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,318 | sce | Chapter3_Example8.sce | //Hougen O.A., Watson K.M., Ragatz R.A., 2004. Chemical process principles Part-1: Material and Energy Balances(II Edition). CBS Publishers & Distributors, New Delhi, pp 504
//Chapter-3, Illustration 8, Page 61
//Title: Calculation of density of air
//=============================================================================
clear
clc
//INPUT
N = 1; //Total no moles of air in g mole
n = [.21,.79]; //No of moles of O2 and N2 respectively in g mole
MW = [32,28]; //Moleculaw weight of O2 and N2 respectively in g/g mole
T = 70; //Given temperature in dergee F
P1 = 741; //Given pressure in mm Hg
T2 = 492; //Temperature at standard conditions in degree R
P2 = 760; //Pressure at standard conditions in mm Hg
V2 = 22.41; //Volume at standard conditions in liters
//CAlCULATIONS
w1 = n(1)*MW(1); //Weight of O2 in grams
w2 = n(2)*MW(2); //Weight of N2 in grams
W = w1+w2; //Total weight of air in grams
T1 = T+460; //Given temperature in dergree R
V1 = V2*(P2/P1)*(T1/T2); //Volume of air at given conditions in liters
rho = W/V1; //Dendity of air at given conditions in grams per liter
//OUTPUT
mprintf('\n The density of air at %3.0f mm Hg and %2.0f degree F is %4.3f grams per liter', P1,T,rho);
//==========================END OF PROGRAM=====================================
|
9e20b1c541abb722b7e166ca7b57ad8115bb8c26 | 676ffceabdfe022b6381807def2ea401302430ac | /solvers/ADRSolver/Tests/Helmholtz_3DHomo2D_FFT.tst | 75867a5e1efd8d2af6c52f99b07ba9f2de7414aa | [
"MIT"
] | permissive | mathLab/ITHACA-SEM | 3adf7a49567040398d758f4ee258276fee80065e | 065a269e3f18f2fc9d9f4abd9d47abba14d0933b | refs/heads/master | 2022-07-06T23:42:51.869689 | 2022-06-21T13:27:18 | 2022-06-21T13:27:18 | 136,485,665 | 10 | 5 | MIT | 2019-05-15T08:31:40 | 2018-06-07T14:01:54 | Makefile | UTF-8 | Scilab | false | false | 607 | tst | Helmholtz_3DHomo2D_FFT.tst | <?xml version="1.0" encoding="utf-8"?>
<test>
<description>3D-Homogeneous-2D Helmholtz/Steady Diffusion (FFT)</description>
<executable>ADRSolver</executable>
<parameters>Helmholtz_3DHomo2D_FFT.xml</parameters>
<files>
<file description="Session File">Helmholtz_3DHomo2D_FFT.xml</file>
</files>
<metrics>
<metric type="L2" id="1">
<value variable="u" tolerance="1e-12">1.00372e-06</value>
</metric>
<metric type="Linf" id="2">
<value variable="u" tolerance="1e-12"> 6.32758e-06</value>
</metric>
</metrics>
</test>
|
1c896783466317922627d143e21cdb448941fe74 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1670/CH10/EX10.7/10_7.sce | 5bd62026160631d3dff14b5874ddffd1f3538940 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 300 | sce | 10_7.sce | //Example 10.7
//Modified Euler Method
//Page no. 312
clc;clear;close;
deff('y=f(x,y)','y=x+abs(sqrt(y))')
y(1)=1;
h=0.2;
for i=1:4
printf('\ny(%g) = %g\n',(i-1)*h,y(i))
y(i+1)=y(i)+h*f((i-1)*h+h/2,y(i)+h*f((i-1)*h,y(i))/2)
end
disp("Computation Error in book solved example 10.7") |
25a9e18a349e4e4fe960d5214e2ac0135e20c237 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3669/CH2/EX2.1/1.sce | 9525d9e009c4c98731d36c007b683faa5785510d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 341 | sce | 1.sce |
//Variable declaration
r=0.1249; //atomic radius(nm)
n=2; //number of atoms
//Calculation
a=4*r/sqrt(3); //edge length(m)
V=a**3; //volume(nm**3)
v=4*%pi*r**3*n/3; //volume of atoms(nm**3)
Fv=V-v; //free volume/unit cell(nm**3)
//Result
printf('free volume/unit cell is %0.3f nm**3 \n',(Fv)) |
edbde2bcbe723f195a6ab8daf5244528e7de52f7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3802/CH12/EX12.3/Ex12_3.sce | 500460b64d6420fb7b417eff98ce9cc23d76871d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 847 | sce | Ex12_3.sce | //Book Name:Fundamentals of Electrical Engineering
//Author:Rajendra Prasad
//Publisher: PHI Learning Private Limited
//Edition:Third ,2014
//Ex12_3.sce
clc;
clear;
P=36; //power in kilowatt
Vl=440;
f=50;
efficiency=0.89;
pf1=0.85;
pf2=0.95;
P_not=P/3;
P_input=P_not/efficiency;
Q1=P_input*tand(acosd(pf1));
Q2=P_input*tand(acosd(pf2));
Qc=Q1-Q2;
kVA=3*Qc;
printf("\n Total kVA of the capacitors for raising power factor to 0.95 is %2.2f kVAR \n",kVA)
V=Vl/sqrt(3);
Xc=V^2/(Qc*1e3);
printf("\n(a)")
C_star=1/(2*%pi*f*Xc);
printf("\n Required capacitance per phase for star connected capacitors=%3.3f micro-farad \n",C_star/1e-6)
printf("\n(b)")
C_delta=C_star/3;
printf("\n Required capacitance per phase for delta connected capacitors=%2.2f micro-farad \n",C_delta/1e-6)
//Answer vary dueto round off error
|
53532157be57965fb257e5bb52b7dc0de33ec21e | 449d555969bfd7befe906877abab098c6e63a0e8 | /3754/CH27/EX27.10/27_10.sce | a78b7e63b815035c6c464cc29b522a8a5f3ac4e1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 410 | sce | 27_10.sce | clear//
//Variables
RL = 8.0 //Load resistance (in ohm)
a = 10.0 //Turns ratio
ICQ = 500.0 * 10**-3 //Collector current (in Ampere)
//Calculation
R1L = a**2 * RL //Effective load (in ohm)
Poac = 1.0/2* ICQ**2 * R1L //Maximum power delieverd (in watt)
//Result
printf("\n The maximum power delievered to load is %0.3f W.",Poac)
|
6c66c1437cf4a2368597dfd9926fa0a1099ebb77 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1826/CH2/EX2.25/ex2_25.sce | 22c78d2944851119419f68046dd1e4495e64a04e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 181 | sce | ex2_25.sce | // Example 2.25, page no-45
clear
clc
theta=12//in degrees
lam=2.82*10^-10//m
n=1
d=n*lam/(2*sin(theta*%pi/180))
printf("The interplanar spacing is %.3f *10^-10 m",d*10^10)
|
19379412d74cd478a8e1cde50dec1fdf598493c2 | 72d11c27bb14e3f2b2c2defe8f6bc394f7c72863 | /PID.sce | 25354e631a505b3eb2c62fc34186ad72ed39eaa9 | [] | no_license | amendes/PID | 3348dcfd05ee22b0811572643e1ef9fd4f4f4faf | 44a592526759c28457d365e863a75fc244169635 | refs/heads/master | 2021-04-03T06:53:11.915219 | 2018-03-10T00:13:35 | 2018-03-10T00:13:35 | 124,605,888 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,358 | sce | PID.sce | function [a, u]=f()
kp=2.5, ki=0.00025, kd=0.50;
error_p=0, error_d=0, error_i=0;
i=1, dt=1.0;
//This bound value helps the software to achieve a close enough SP, set point
bound=3;
ref=40
encoder_count=10;
while(dt < 600)
//DPI errors
error_d = error_p;
error_p = (ref - encoder_count);
//Pulling up the terms *dt*ki from the main Equation U(i) to the Integral error smoothes the switching at dt = 400
error_i = error_i + error_p*dt*ki;
//Equation of PID controller
u(i) = kp*error_p + error_i + ((error_p - error_d)*kd)/dt;
//Actuation of the PV of the system
if(u(i)>bound)
encoder_count = encoder_count + 2;
end
if(u(i)<-bound)
encoder_count = encoder_count - 2;
end
if((u(i) < bound) & (u(i) > -bound) )
encoder_count = encoder_count;
end
if(dt == 400)
encoder_count = 100;
end
//PV vector for ploting purporses
a(i) = encoder_count;
i = i + 1;
dt = dt + 1;
end
//Black line for PV and Blue line for CV
plot2d([a u]);
// PV - process variable; CV - Control Variable
endfunction
|
af262837ac03baed5ad804b5b3454261e75ab46c | 95beaf56de829d390a567f241221c582c4b682ed | /projet/KSVD_MP.sce | 5b826349c0a73e6c866ebb17db8f8a500d8bbc27 | [] | no_license | the-mousaillon/compressive-sensing | 85d5d5ce814ad8ec20271a3b932144e35e640041 | bfa3acf166be6a8141d1eb2064523e7de8f19db7 | refs/heads/master | 2020-04-17T15:02:05.840745 | 2019-03-20T12:55:21 | 2019-03-20T12:55:21 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,887 | sce | KSVD_MP.sce |
clear
// chargement des données
data = csvRead("/Users/nbreizh/Documents/compressive sensing/tp/data.csv")
[M,N] = size(data)
// normalization des données
for i=1:N
data(:,i) = data(:,i)/norm(data(:,i))
end
function y= selection_atome(dic, R)
s = size(dic)
m=1
maxi=abs(dic(:,1)'*R)/norm(dic(:,1))
for i=2:s(2)
tmp = abs(dic(:,i)'*R)/norm(dic(:,i))
if tmp > maxi then
maxi=tmp
m=i
end
end
y=m
endfunction
function y = matching_pursuit(dic, X, K)
[M,N] = size(dic)
alpha = zeros(N,1)
R=X
for i=1:K
m = selection_atome(dic, R)
zmK = ((dic(:,m)'*R))/(norm(dic(:,m))^2)
R = R - zmK*dic(:,m)
alpha(m) = alpha(m) + zmK
end
y = alpha
endfunction
// ss est l'odre de parcimonie souhaitée
function [D,Alpha]=KSVD(X, K, L)
[N,l]=size(X);
MAX_ITR=round(K/10);
D=X(:,1:K);
s=sqrt(diag(D'*D));
for i=1:K
D(:,i)=D(:,i)/s(i);
end
Alpha=zeros(K,l);
for j=1:L
for i_vect=1:l
Alpha(:,i_vect)=matching_pursuit(D, X(:,i_vect), MAX_ITR);
end
for i_col=1:K
idx_k=find(Alpha(i_col,:)<>0);
if length(idx_k)>0 then l
E_k=X-D*Alpha+D(:,i_col)*Alpha(i_col,:);
Omega=zeros(l,length(idx_k));
for inz=1:length(idx_k)
Omega(idx_k(inz),inz)=1;
end
E_kR=E_k*Omega;
[U,delta,V]=svd(E_kR);
D(:,i_col)=U(:,1);
Alpha(i_col,idx_k)=delta(1,1)*V(:,1)';
else
g=grand(1,1,"uin",1,l);
D(:,i_col)=X(:,g)/norm(X(:,g));
end
end
end
endfunction
// Apprentissage à l'aide du stomp
N = 99
K = 100
L = 10
[D,Alpha]=KSVD(data, K,L);
// On arrondi Alpha pour mieux voir
|
f191cc22fe7751d785c51764db294b101d7d517b | 449d555969bfd7befe906877abab098c6e63a0e8 | /587/CH10/EX10.2/example10_2.sce | e949f861b71e6cfd07f810d9e7f462a3c128229d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 845 | sce | example10_2.sce | clear;
clc;
//Example10.2[Peak Heat Flux in Nucleate Boiling]
D=0.01;//[m]
Tsat=100;//Saturation Temperature[degree Celcius]
sigma=0.0589;//[N/m]
//Properties of water at saturation temperature
rho_l=957.9;//[kg/m^3]
rho_v=0.6;//[kg/m^3]
h_fg=2257*10^3;//[J/kg]
mu_l=0.282*10^(-3);//[kg/m.s]
Pr_l=1.75;//Prandtl number
Cp_l=4217;//[J/kg.degree Celcius]
Csf=0.0130,n=1.0;
g=9.81;//[m/s^2]
//Solution:-
L_=(D/2)*((g*(rho_l-rho_v)/sigma)^(1/2));//dimensionless Parameter
//For this value of L_ we have
C_cr=0.12;//Constant
q_max=C_cr*h_fg*((sigma*g*(rho_v^2)*(rho_l-rho_v))^(1/4));//[W/m^2]
disp("W/m^2",q_max,"The maximum or critical heat flux is")
Ts=(((q_max/(mu_l*h_fg*((g*(rho_l-rho_v)/sigma)^(1/2))))^(1/3))*(Csf*h_fg*Pr_l^n)/Cp_l)+Tsat;//[degree Celcius]
disp("degree Celcius",round(Ts),"The surface temperature is") |
4b0cc99534256d66abb34890599b82dc4d0a5091 | 89fe42f1d4907c16ae1152649fc53a6d7910387c | /Cortos/M.tst | 677e91da03fe950c62f02229e0445bd40075e8e2 | [] | no_license | MarlonRoches/Arqui1 | f83545b06761f1bd6c48d26221f8dfc486c57f43 | 5bc55296e70c979a4f75f8243923f778be833efa | refs/heads/main | 2023-07-09T15:37:11.432356 | 2021-08-14T03:56:41 | 2021-08-14T03:56:41 | 355,042,852 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,387 | tst | M.tst | load Screen.hdl;
output-file Screen.out;
output-list in load address out;
set in -1, set load 1,set address 65,eval, output;
set in -1, set load 1,set address 97,eval, output;
set in -1, set load 1,set address 129,eval, output;
set in -1, set load 1,set address 161,eval, output;
set in -1, set load 1,set address 193,eval, output;
set in -1, set load 1,set address 225,eval, output;
set in -1, set load 1,set address 257,eval, output;
set in -1, set load 1,set address 289,eval, output;
set in -1, set load 1,set address 321,eval, output;
set in -1, set load 1,set address 353,eval, output;
set in -1, set load 1,set address 385,eval, output;
set in -1, set load 1,set address 417,eval, output;
set in -1, set load 1,set address 449,eval, output;
set in -1, set load 1,set address 481,eval, output;
set in -1, set load 1,set address 513,eval, output;
set in -1, set load 1,set address 545,eval, output;
set in -1, set load 1,set address 577,eval, output;
set in -1, set load 1,set address 609,eval, output;
set in -1, set load 1,set address 641,eval, output;
set in -1, set load 1,set address 673,eval, output;
set in -1, set load 1,set address 705,eval, output;
set in -1, set load 1,set address 737,eval, output;
set in -1, set load 1,set address 769,eval, output;
set in -1, set load 1,set address 801,eval, output;
set in -1, set load 1,set address 833,eval, output;
set in -1, set load 1,set address 865,eval, output;
set in -1, set load 1,set address 897,eval, output;
set in -1, set load 1,set address 929,eval, output;
set in -1, set load 1,set address 66,eval, output;
set in -1, set load 1,set address 98,eval, output;
set in -1, set load 1,set address 130,eval, output;
set in -1, set load 1,set address 131,eval, output;
set in -1, set load 1,set address 163,eval, output;
set in -1, set load 1,set address 195,eval, output;
set in -1, set load 1,set address 196,eval, output;
set in -1, set load 1,set address 228,eval, output;
set in -1, set load 1,set address 260,eval, output;
set in -1, set load 1,set address 229,eval, output;
set in -1, set load 1,set address 261,eval, output;
set in -1, set load 1,set address 293,eval, output;
set in -1, set load 1,set address 230,eval, output;
set in -1, set load 1,set address 262,eval, output;
set in -1, set load 1,set address 294,eval, output;
set in -1, set load 1,set address 326,eval, output;
set in -1, set load 1,set address 231,eval, output;
set in -1, set load 1,set address 263,eval, output;
set in -1, set load 1,set address 295,eval, output;
set in -1, set load 1,set address 168,eval, output;
set in -1, set load 1,set address 200,eval, output;
set in -1, set load 1,set address 232,eval, output;
set in -1, set load 1,set address 137,eval, output;
set in -1, set load 1,set address 169,eval, output;
set in -1, set load 1,set address 201,eval, output;
set in -1, set load 1,set address 106,eval, output;
set in -1, set load 1,set address 138,eval, output;
set in -1, set load 1,set address 170,eval, output;
set in -1, set load 1,set address 107,eval, output;
set in -1, set load 1,set address 139,eval, output;
set in -1, set load 1,set address 171,eval, output;
set in -1, set load 1,set address 203,eval, output;
set in -1, set load 1,set address 235,eval, output;
set in -1, set load 1,set address 267,eval, output;
set in -1, set load 1,set address 299,eval, output;
set in -1, set load 1,set address 331,eval, output;
set in -1, set load 1,set address 363,eval, output;
set in -1, set load 1,set address 395,eval, output;
set in -1, set load 1,set address 427,eval, output;
set in -1, set load 1,set address 459,eval, output;
set in -1, set load 1,set address 491,eval, output;
set in -1, set load 1,set address 523,eval, output;
set in -1, set load 1,set address 555,eval, output;
set in -1, set load 1,set address 587,eval, output;
set in -1, set load 1,set address 619,eval, output;
set in -1, set load 1,set address 651,eval, output;
set in -1, set load 1,set address 683,eval, output;
set in -1, set load 1,set address 715,eval, output;
set in -1, set load 1,set address 747,eval, output;
set in -1, set load 1,set address 779,eval, output;
set in -1, set load 1,set address 811,eval, output;
set in -1, set load 1,set address 843,eval, output;
set in -1, set load 1,set address 875,eval, output;
set in -1, set load 1,set address 907,eval, output;
set in -1, set load 1,set address 939,eval, output;
|
4a6f1d65cb2b899f96ef4b4c101cf6e11ecf7d70 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1913/CH2/EX2.15/ex15.sce | cd784de4936decf23feca632842c5c4dd7dcbb66 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 703 | sce | ex15.sce | clc
clear
//Input data
m1=5000;//Steam flow rate in kg/hr
Q1=-250;//Heat loss from the turbine insulation to surroundings in kj/min
C1=40;//Velocity of steam at entrance in m/s
h1=2500;//Enthalpy of the steam at entrance in kJ/kg
C2=90;//Velocity of the steam at the Exit in m/s
h2=2030;//Enthalpy of the steam at exit in kj/kg
Z=0;//Change in potential energy is neglected in m
g=9.81;//Gravitational constant in m/s^2
//Calculations
m=m1/3600;//Steam flow rate in kg/s
Q=Q1/60;//Heat loss from the turbine to the surroundings
P=m*(((C1^2-C2^2)/(2*1000))+(g*Z)+(h1-h2))+Q;//Power developed by the turbine in kW
//Output
printf('The power developed by the turbine P = %3.3f kW ',P)
|
75e16168bb526d403a213ed25853e02f2e673601 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1472/CH13/EX13.5.b/13_5b.sce | 67663737f95c323abb62625cdcac0b071b891bec | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 455 | sce | 13_5b.sce | clc
//initialization of varaibles
disp("From table 3,")
v1=3.223 //cu ft/lb
P1=150 //psia
T1=400+460 //R
P2=15 //psia
n=1.15
//calculations
v2=v1*(P1/P2)^(1/n)
T2=213 //F
W=144*(P2*v2-P1*v1)*0.00129/(1-n)
u1=1129.8 //B/lb
v2=23.9
vg=26.29
vfg=26.27
dx=(vg-v2)/vfg
u2=996.1
Q=(u2-u1)+W
//results
printf("Final specific volume = %.1f cu ft/lb",v2)
printf("\n Final temperature = %d F",T2)
printf("\n Heat transferred = %.1f B/lb",Q)
|
96a47a1d0ccb3d539e289f072fa527f5563d2c2d | 449d555969bfd7befe906877abab098c6e63a0e8 | /3784/CH4/EX4.7/Ex4_7.sce | ed02af6ef417b46df2509fe4627f4f001608263f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 493 | sce | Ex4_7.sce | clc
//Variable Initialisation
Ra=0.08//Armature resistance in ohm
Ea=450//Input Voltage to armature in volts
Ia=275//Armature Current in Ampere
If=3//Field Current in Ampere
K=1.527//Voltage constant
d=0.65//Duty ratio
//Solution
Pin=d*Ea*Ia
E0=d*Ea
Eb=E0-(Ia*Ra)
W=Eb/(K*If)
N=W*60/(2*%pi)
T=K*If*Ia
printf('\n\n The Input power from Generator Source=%0.1f Watt\n\n',Pin)
printf('\n\n The Speed of Motor=%0.1f rpm\n\n',N)
printf('\n\n The Torque developed=%0.1f N-m\n\n',T)
|
4a934aa72ca99dd11231891ba7bbf9712573b863 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2384/CH9/EX9.11/ex9_11.sce | 3a227d18d71bec156d9a53f934e81a31f897443c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 474 | sce | ex9_11.sce | // Exa 9.11
clc;
clear;
close;
format('v',6)
// Given data
Io = 10;// in A
phi_o= acosd(0.25);// in °
V1 = 400;// in V
f = 50;// in Hz
N1 =500;
Im = Io*sind(phi_o);// in A
disp(Im,"The magnetizing component of no load current in A is");
Pi = V1*Io*cosd(phi_o);// in W
disp(Pi,"The iron loss in W is");
E1 = V1;// in V
//E1 v= 4.44*f*phi_m*N1;
phi_m = E1/(4.44*f*N1);// in Wb
phi_m=phi_m*10^3;// in mWb
disp(phi_m,"The maximum value of flux in mWb is");
|
874ff406c9ae83399d29188c5d7b89defa30f9f0 | c04fb432166e4832950820b66362a26c125b608a | /trip-tests/trip5.tst | a052fd3e4720f52fc0ae67f8508ad99cf181b23d | [] | no_license | andreaowu/Graphs | 6d7d7ce1483e01e0c1bf4657f2f4087cbe328046 | 485dae6c2d173c2844898440fad9306ec77e1962 | refs/heads/master | 2021-01-25T04:58:12.978046 | 2013-12-04T01:09:45 | 2013-12-04T01:09:45 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 63 | tst | trip5.tst | java trip.Main -m trip-tests/trip5.txt trip-tests/trip5.request |
c346b129baec1a5a63b53cf671571477f5bcd7b0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1199/CH2/EX2.29/2_29.sci | 9a91b195548fc09bf2ed71232c760180a0b78e76 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 383 | sci | 2_29.sci | // 2.29
clc;
C=500*10^-12;
R20=10000*(1-0.05*(20-25));
f20=1/(2*%pi*R20*C);
printf("Frequency of oscillation at 20 degree C = %.2f Hz ",f20)
R25=10000*(1-0.05*(25-25));
f25=1/(2*%pi*R25*C);
printf("\nFrequency of oscillation at 25 degree C = %.2f Hz ",f25)
R30=10000*(1-0.05*(30-25));
f30=1/(2*%pi*R30*C);
printf("\nFrequency of oscillation at 30 degree C = %.2f Hz ",f30) |
717830c844453a016101ba5ad582666af8cfbda1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1871/CH1/EX1.10/Ch01Ex10.sce | 7ca19f90583458c2ca6f8cc9ac1d0c89ce4569ca | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 551 | sce | Ch01Ex10.sce | // Scilab code Ex1.10: Pg:36 (2008)
clc;clear;
m = 9.13e-031; // Mass of an electron, kg
e = 1.6e-019; // Charge of electron, coulomb
V = 20000; // Potential difference applied between cathode and anode, volt
// Since (1/2)*m*v^2 = e*V, solving for v
v = sqrt(2*e*V/m); // Maximum speed of electrons striking the anti cathode, m/s
printf("\nThe maximum speed of electrons striking anticathode in an X-ray tube = %4.2e m/s", v);
// Result
// The maximum speed of electrons striking anticathode in an X-ray tube = 8.37e+007 m/s |
5a080ec8327f4996ae93883e7f625d3f3cd6fe91 | 717ddeb7e700373742c617a95e25a2376565112c | /569/CH5/EX5.26/5_26.sci | 6febecf60bc88a56c89a70d40efe82e084081074 | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 146 | sci | 5_26.sci | // Calculating the temperature
clc;
ET=27.07+0.8;
Disp(ET,'Required e.m.f.(mV)')
disp('temperature corresponding to 27.87 mV is 620 degree C') |
1659586c85ebfccd1a956aa7dd49639341d51cba | 449d555969bfd7befe906877abab098c6e63a0e8 | /2858/CH9/EX9.8/Ex9_8.sce | 9ee170211cc3b55da3a10a6078ce76ec2816b596 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 391 | sce | Ex9_8.sce | //example 9.8
clc; funcprot(0);
pi=%pi;
Gamma=105;
Cov=14;
B=15/12;
Ka=0.26;
phi=35*pi/180;
H=37.5/12;
h=15/12;
t=6/12;
Gc=150;//gamma concrete
W=H*t*Gc;
k=4.5;//kp*cos(delta)
Pu=1/2*Gamma*H^2*(k-Ka*cos(phi));
disp(Pu,"force in lb/ft");
Pus=[(Cov+1)/(Cov+H/h)]*Pu;
disp(Pus,"force in lb/ft");
Be=0.227*(H+h)+B;
Pu=Pus*Be;
disp(Pu,"resistance of anchor plate i lb/ft")
|
9bebade079e6852682f11923a5656ded80842eec | 91bba043768342a4e23ee3a4ff1aa52fe67f7826 | /cs/142/3/tests/test23.tst | 639e6154d0e41dbef41db1b01e09627aeea474dd | [] | no_license | MaxNanasy/old-homework | 6beecc3881c953c93b847f1d0d93a64ec991d6de | 48b7997a49a8f111344f30787c178e1661db04bd | refs/heads/master | 2016-09-08T04:37:44.932977 | 2010-03-02T00:48:59 | 2010-03-02T00:48:59 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 147 | tst | test23.tst | type newType = short;
const newType2 = 10;
var newType : newType2;
void newType (int a, short b, newType2 c) {
PRINT SYMBOL TABLE
}
|
f11756824d6cbf269cdb99601c949ad86d1b2962 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3683/CH14/EX14.1/Ex14_1.sce | 37602cbc6b11b85ef18b96f64c6c8d5d13b540a9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 347 | sce | Ex14_1.sce | b=250//width, in mm
d=500//effective depth, in mm
Ast=4*0.785*20^2//four 20 mm dia bars, in sq mm
fck=15//in MPa
fy=250//in MPa
Xu=round(0.87*fy*Ast/0.36/fck/b)//in mm
Xc=0.531*d//in mm
//as Xu<Xc, it is under-reinforced section, hence OK
Mu=0.87*fy*Ast*(d-0.416*Xu)/10^6//in kN-m
mprintf("Moment of resistance of the beam=%f kN-m", Mu)
|
6b2f3fcf8769169f5084cff9e737cd672c58db74 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2825/CH12/EX12.2/Ex12_2.sce | 2b0962709f25430eb54565af9ab6a9e2c0aab669 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 512 | sce | Ex12_2.sce | //Ex12_2 Pg-588
clc
RL=3.3*10^(3) //load resistor in ohm
R=5.6*10^(3) //resistor R in ohm
C=0.001*10^(-6) //capacitance in farad
disp("For oscillations to be maintained in a RC oscillator, ")
hfe=(23+(29*R/RL)+(4*RL/R)) //transistor current gain
printf(" = %.f \n",hfe)
disp("Frequency of oscillations,")
f=1/(2*%pi*C*sqrt((4*R*RL)+(6*R^2)))
//frequency of oscillation (textbook answer is wrong
// because of the used of wrong value of C)
printf(" = %.1f Hz",f)
|
05497872a3394ca989698ff89ad77accfa8e0f63 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1697/CH3/EX3.20/Exa3_20.sce | 7f75a75491675b4a84b6dd19e36622a2ca5b59ca | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 266 | sce | Exa3_20.sce | //Exa 3.20
clc;
clear;
close;
//given data
Gdb=44;//gain in dB
G=10^(Gdb/10);//gain unitless
OmegaB=4*%pi/G;//n steradian
THETA3db=sqrt(4*OmegaB/%pi);//in Radian
disp(THETA3db,"Beamwidth THETA3db in degree : ");
//Note : Answer in the book is not accurate. |
d6fc8687edaf73197472ee6eb1015f9aa1ae5f81 | 6e257f133dd8984b578f3c9fd3f269eabc0750be | /ScilabFromTheoryToPractice/Computing/testconnecteursbooleens.sce | 8141dfa0d23c10822c9f41ae334702b8bbf55f46 | [] | 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 | 114 | sce | testconnecteursbooleens.sce | A=%T,B=%F
A&B // conjunction
A|B // disjunction
~A // negation
type(A),typeof(A) // boolean type
|
c700cbba6a67afb2c2d8bc4d8ae3fad26c6b955e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2921/CH14/EX14.4/Ex14_4.sce | 6522ab95dfcbf2da3976d027cb6a8f830955acc5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 773 | sce | Ex14_4.sce | clc;
clear;
mprintf('MACHINE DESIGN \n Timothy H. Wentzell, P.E. \n EXAMPLE-14.4 Page No.321\n');
P=5.31;
mprintf('\n Horsepower rating = %f hp.',P);
Nti=12;
N1=1800;
N2=900;
//Output sprocket
Nto=(N1/N2)*Nti;
mprintf('\n Number of tooth on output sprocket = %f.',Nto);
//Surface speed
Pc=0.5;
D1=Pc*Nti/%pi;
n=1800;
Vm=%pi*D1*n/12;
mprintf('\n Surface speed = %f ft/min.',Vm);
mprintf('\n Type of lubrication - Bath or disc lubrication');
//Length of chain
C=10;
D2=Pc*Nto/%pi;
L1=2*C+1.57*(D1+D2)+(D2-D1)^2/(4*C);
//Use 29 or 30 inch chain
L=30;
mprintf('\n Length of chain = %f in.', L);
hp=5.31;
T=63000*hp/n;
F=2*T/D1;
mprintf('\n Force in chain = %f lb.',F);
//Comparism with ultimate strength 3700 lb - not a valid comparison because of speed etc.
|
8bedc188e50cb10df7e09ce762b2f8baebc705c6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /980/CH6/EX6.15/6_15.sce | d0e84f7cbb7ba654594d738db70ea85c078cc4a7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 337 | sce | 6_15.sce | clc;
clear;
format('v',11);
disp("The impurity is type 3 so the dopped material is a P-type semiconductor adn hence nh=3*10^23");
nh=3*10^23;
Mh=0.05; //Mh=mobility of holes
sigma=nh*Mh*1.6*10^-19; //as nh>>ne,because of impurity.
disp(sigma,"The conductivity of the material(in mho/m)=");
|
d9bc21f3abc2f68d1917c88c4dabfc50a8c1bee4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3819/CH1/EX1.13/Ex1_13.sce | c8ff859a797e9738e979867c671cd00d1594bc54 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 329 | sce | Ex1_13.sce | // A Textbook of Fluid Mecahnics and Hydraulic Machines - By R K Bansal
// Chapter 1-Properties of Fluid
// Problem 1.13
//Given Data Set in the Problem
y=poly(0,"y")
u=3*y/4-y^2
visc=8.5/10
//Calculations
du_dy=(horner(derivat(u),0.15))
ss=visc*du_dy
mprintf("The shear stress at y=0.15 m is %f N/m^2 \n",ss)
|
4f0876f45612a19571ca319d5252685bbde9d379 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2282/CH6/EX6.1/ex6_1.sce | ce6adaa375a9278828b4eb0df6185cb2dbdc9429 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 743 | sce | ex6_1.sce | // Example 6.1, page no-230
clear
clc
t=20 //TDMA frame length in ms
lc=352 //length of carrier and clock recovery frequency in bits
lu1=48 //length of unique word in bits
lo=510 //length of order wire channel in bits
lm= 256 //length of management channel in bits
lt=320 // length of transmit timming channel in bits
ls1=24 // length of service channel in bits
gt=64 // Guard time in bits
rb=2 // reference burst
lr=lc+lu1+lo+lm+lt
tb=lc+lu1+lo+ls1
tob=(lr*rb)+(tb*t)+((t+rb)*gt)
printf("(a)\nThe length of reference burst(from given data) is %d bits\n\n(b)\nThe length of traffic burst premable(from given data)is %d bits\n\n(c)\nTotal number of overhead bits is %d bits",lr,tb,tob)
|
a347486a040091e35a6c83eaffc95ad0720425ec | 449d555969bfd7befe906877abab098c6e63a0e8 | /1427/CH18/EX18.8/18_8.sce | 21431e5a13522552bcd90c6c009f1e68e08f045e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 396 | sce | 18_8.sce | //ques-18.8
//Calculating heat of combustion of ethene at constant pressure
clc
T=17;//temperature (in degree celsius)
E=-332.19;//heat of combustion at constant volume (in kcal)
R=0.001987;//in kcal/K/mol
n=2-(1+3);//difference in gaseous vapours
H=E+n*R*(T+273);//heat of combustion at constant pressure
printf("Heat of combustion of ethene at constant pressure is %.3f kcal/mol.",H);
|
7caa2516edf0dc0662e2402978da987b4cf535c4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2939/CH1/EX1.13/Ex1_13.sce | f21faa004fce54dcb71596618ae211543fafd0ec | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 351 | sce | Ex1_13.sce |
//Ex1_13
clc;
//Given:
e=200; // in Mev
m=0.235; // weight of uranium atom in Kg
enthalpy=393.5; // in KJ/mol
Na=6.02*10^23;
//solution:
e1=e*1.6*10^-19*10^6;
atoms=Na/m;
e2=atoms*e1;//energy released in J
m1=(e2*12)/(393.5*1000*1000);// in Kg
m2=m1/1000;// in tons
printf("\n The amount of coal required in Kg is = %f", m2)
|
b98f0c4264193e201c707ad3a69f7c6a6958fff5 | 67310b5d7500649b9d53cf62226ec2d23468413c | /tags/archive/TestCaseGenerator-Plugin-OpeningSequenceCoverage/trunk/tests/large-system-tests/inputs/jEdit/ground_truth/OpeningSequenceCoverage/length-1/max-150/t36.tst | 4b1aa81af66078771fde2f2cc6fc66b327874a43 | [] | no_license | csnowleopard/guitar | e09cb77b2fe8b7e38d471be99b79eb7a66a5eb02 | 1fa5243fcf4de80286d26057db142b5b2357f614 | refs/heads/master | 2021-01-19T07:53:57.863136 | 2013-06-06T15:26:25 | 2013-06-06T15:26:25 | 10,353,457 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 661 | tst | t36.tst | <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<TestCase>
<Step>
<EventId>e30</EventId>
<ReachingStep>false</ReachingStep>
</Step>
<Step>
<EventId>e50</EventId>
<ReachingStep>false</ReachingStep>
</Step>
<Step>
<EventId>e62</EventId>
<ReachingStep>false</ReachingStep>
</Step>
<Step>
<EventId>e39</EventId>
<ReachingStep>false</ReachingStep>
</Step>
<Step>
<EventId>e48</EventId>
<ReachingStep>false</ReachingStep>
</Step>
<Step>
<EventId>e23</EventId>
<ReachingStep>false</ReachingStep>
</Step>
</TestCase>
|
fa04fab7732fdbdf8f56d5b0f89dd46703fac33a | 94c9fb094976265935872b32b6e6a4fd9454ef31 | /tp_reg_mod_simp.sce | 545807e0e82920fdbe8703a8e80e0efcef91bbe7 | [] | no_license | dtbinh/tp-scilab | 6d2373af479d9cb1d1494f3ccc5abcae0697b8ac | 4c41c77eb4a4021022fa91614cfe4f7a4417f4e5 | refs/heads/master | 2021-01-10T12:23:53.166922 | 2013-12-19T17:23:18 | 2013-12-19T17:23:18 | 49,208,752 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 293 | sce | tp_reg_mod_simp.sce | // MODELE SIMPLE X = beta_0 + beta_1 r1 + eps
M = [ones(r1) r1]; // matrice des regresseurs
// Pour obtenir les estimations de beta, sigma^2, et la p-valeur du
// test de nullité de beta_1 au niveau alpha (à préciser)
alpha=0.05; // niveau du test
[gam,sigma2,pval]=regression(M,X,alpha);
|
243ee6a42456040e82bef86d719827b34ec495c0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2192/CH7/EX7.10/7_10.sce | 89f3c178af51c49029427c9a30b2999f4d2031ec | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 287 | sce | 7_10.sce | clc,clear
printf('Example 7.10\n\n')
CE_Cu=32.8; CE_H=1//chemical equivalents
ECE_H =0.01044*10^-3 //electrochemical equivalents
ECE_Cu = ECE_H * (CE_Cu/CE_H)
//copper
T=1*60*60 //time in seconds
I=40
m=ECE_Cu *I*T
printf('Weight of deposited copper = %.2f grams',m)
|
1aa5b03329d6f88ee1ecb3adf2954c6ecfb340f3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /991/CH1/EX1.2/Example1_2.sce | 36635ff35ce6d2b9643a6b4c6f30c15c545e0b26 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 528 | sce | Example1_2.sce | //Example 1.2.
format(7)
E1=-13.6; //energy of 10th state
E10=-13.6/10^2; //enery in the ground state
lamda=12400/(E10-E1); //wavelength of emitted photon
disp("The wavelength in Armstrong units is given by, lamda = 12400 / E2-E1")
disp("Since the hydrogen atoms goes from n=10 state to the ground state, lamda = 12400 / E10-E1")
disp("The energy of the 10th state is E10 = -13.6 / 10^2 = -0.136 eV")
disp("The energy in the ground state is E1 = -13.6 eV")
disp(lamda,"Wavelenth of the emitted photon is(Armstrong) ="); |
be55e05d4a087b7a99d45969d22f741b5a24c394 | 5603e11f01bc96062816e3912d5edc58c73b636e | /projects/00/Not/Not.tst | b3cf8efb75d6b50258963b8197b37ae048fad8a9 | [] | no_license | oxygen0605/nand2tetris | 8b4fa48abf37ac44e3ea9424cc3be69316e2de3e | 62d7dee9ca14b6ee4372f8b7ef242a40186986a0 | refs/heads/master | 2022-05-30T13:30:04.283784 | 2020-05-05T09:00:08 | 2020-05-05T09:00:08 | 261,405,625 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 128 | tst | Not.tst | load Not.hdl,
output-file NotOut.txt,
output-list a%B3.1.3 out%B3.1.3;
set a 0, eval, output;
set a 1, eval, output;
|
b7ab9808c957ff7b40b337b03a414e775a0b0aff | 449d555969bfd7befe906877abab098c6e63a0e8 | /746/DEPENDENCIES/12_01.sci | aee1d5c02b851250cff2931ce34199b8fe5fddd6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 464 | sci | 12_01.sci | //Mach number at entry:
M1=0.3;
//Temperature at entry(in K):
T1=335;
//Pressure at entry(in kPa):
p1=650;
//Area at entry(in m^2):
A1=0.001;
//Mach number at exit:
M2=0.8;
///Value of k:
k=1.4;
//For the Mach no:0.3:
//T/T0:
t1=0.9823,
//p/p0:
P1=0.9395;
//d/d0:
den1=0.9564;
//A/A*:
a1=2.035;
//For the Mach no:0.8:
// T/T0:
t2=0.8865;
//p/p0:
P2=0.6560;
//d/d0:
den2=0.7400;
//A/A*:
a2=1.038;
//Gas Constant(in N-m/kg-K):
R=287; |
94d7364c3014c95039dfe09e03029b35827ff73d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1436/CH1/EX1.6/ex1_6.sce | 3bd0e80cb80c06510b697989d374398fa4bdeb84 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | ex1_6.sce | // Example 1.6, page no-54
clear
clc
ref_jun=100
mV_100=0.645
mV_1000=9.585
mV_1200=11.947
op1=mV_1000-mV_100
op2=mV_1200-mV_100
printf("Millivolt to be fed checking 1000 C = %.3f mV",op1)
printf("\nMillivolt to be fed checking 1200 C = %.3f mV",op2)
|
c2f2a65b92dc777ce9638a49c9a27869dc1b9021 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3875/CH1/EX1.1/Ex1_1.sce | e017a533aa38603f1622ee0050bda257d14995bd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 404 | sce | Ex1_1.sce | clc ;
clear ;
m=100*10^-3 //flat disc mass in kg
t=60 //time period of oscillation in sec
omega=10 //frequency in Hz
//Calculation
damp_omega=log(2)/60 //amplitude of damped oscillator for A/C = 1/2 in rad/s
c= 2*m*damp_omega
tau= 1/damp_omega
mprintf("Resistive force = %0.2e newton-s/meter \n",c)
mprintf("Relaxation time = %2.2f s",tau) //The answer provided in the textbook is wrong.
|
7ecce3ba6c4db83c7a8f3611a5691e4aca1a8ab5 | 717ddeb7e700373742c617a95e25a2376565112c | /1340/CH6/EX6.9/6_9.sce | 7665d737030386f3d26502704344666a218c211d | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 664 | sce | 6_9.sce |
clc;s=%s;
syms K ;
G = s^3+18*s^2+77*s+K;
disp(G);
co0 = coeffs(G,'s',0);
co1 = coeffs(G,'s',1);
co2 = coeffs(G,'s',2);
co3 = coeffs(G,'s',3);
R =[co0 co1 co2 co3];
N = length(R);
routh = [R([4,2]);R([3,1])];
routh = [routh;-det(routh(1:2,1:2))/routh(2,1) 0];
routh = [routh;-det(routh(2:3,1:2))/routh(3,1) 0];
disp(routh);
printf("For K>1386 system is unstable. \n");
printf("For K = 1386 system is marginally stable. \n");
printf("For 0<K<1386 system is stable.")
routh(3,1)=0;//for marginally stable
K = 1386;
disp(K,"Marginal value of K:")
aux = 18*s^2+1386;
Wn = roots(aux);
disp(abs(Wn(1)),"frequency of oscillation in rad/sec:");
|
5b2392093957036828fd4a8b18a31c92eeb55010 | 449d555969bfd7befe906877abab098c6e63a0e8 | /548/CH6/EX6.5/6_05.sce | 65adb28125c34a0ae293f7b4f2bad07d922c7d22 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 745 | sce | 6_05.sce | pathname=get_absolute_file_path('6_05.sce')
filename=pathname+filesep()+'6_05data.sci'
exec(filename)
clf();
V=linspace(40,300,500);
i = 1;
Cl = 0;Cd = 0;Cl_Cd =0;Thrust = 0;Vo=0;
while(i<=length(V))
Cl(i) = 2*W/(D*S*V(i)^2);
Cd(i) = Cdo + Cl(i)^2/(%pi*e*AR);
Cl_Cd(i) = Cl(i)/Cd(i);
Vo(i)=V(i)*(D/Do)^0.5;//corresponding velocity points at sea level
Thrust(i) = W/Cl_Cd(i)/1000;//unit KN
Power(i)=Thrust(i)*Vo(i)//unit KN-m/s
Pa(i)=D*Tf*Vo(i)/(Do*1000);//power(KN-m/s) at height 6706.5 m corresponding to velocity
i = i+1;
end
xlabel("Velocity (m/s)");
ylabel("Power (KN-m/s)");
plot2d(Vo,Power,4);
plot2d(Vo,Pa,5)
printf("\nmaximum velocity for CJ-1 approx 210m/s(as seen from graph)") |
e3b230384869ec559e9fac450fdd6a175f5a2a9b | 09697f1820407362408542dc147b6c5a0281dd5a | /9(B).sce | 0dd058921a9a6e68aa731fb4ddcc14e77da4be20 | [] | no_license | muitnet/DISCRETE-MATHEMATICS | f326ee3cc12958cee3100473c3cccd9c908c314f | 4598a406de5e29190ac04d1f3a722452494403cc | refs/heads/master | 2020-06-11T20:49:50.821691 | 2016-12-05T12:53:32 | 2016-12-05T12:53:32 | 75,624,408 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 249 | sce | 9(B).sce | D=[1 ,2 ,5 ,7 ,10 ,14 ,35 ,70];
a = 2; //a and b belong to D
b = 14;
V= int32([a,b]);
thelcm =lcm(V)
V= int32([a,b]);
thegcd =gcd(V)
abar =70/a
bbar =70/b
j=[abar ,b];
h=[a, bbar ];
V=int32([j])
lcm1=lcm(V)
K= int32([h])
lcm2 =lcm(K)
|
af14e9a77d4842ea44e07c501d278d36fb9112ad | 449d555969bfd7befe906877abab098c6e63a0e8 | /1418/CH27/EX27.21/EX27_21.sce | 220f7cd06bad3d48daf6f91d334984c84d8a179d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,398 | sce | EX27_21.sce | //EXAMPLE 27.21
//DC GENERATORS
clc;
funcprot(0);
//Variable Initialisation
I=1500;.........//Total load in Amperes
Ra1=0.5;.........//Armature resistance of first generator in Ohms
emf1=400;.......//EMF of first generator in Volts
Ra2=0.04;.......//Armature resistance of second generator in Ohms
emf2=440;.....//EMF of second generator in Ohms
Rf1=100;........//Shunt field resistance of first generator in Ohms
Rf2=80;..........//Shunt field resistance of second generator in Ohms
V=((Ra1*(emf2-(I*Ra2)))+(Ra2*emf1))/((Ra1*(1+(Ra2/Rf2)))+(Ra2*(1+(Ra1/Rf1))));......//Terminal voltage in Volts
r=round(V*10)/10;......//Rounding of decimal places
disp(r,"Terminal voltage in Volts:");
I1=(emf1-((1+(Ra1/Rf1))*r))/Ra1;.......//Output current of first generator in Amperes
r1=round(I1*10)/10;....//Rounding of decimal places
I2=I-r1;............//Output current of second generator in Amperes
disp(r1,"Output current of first generator in Amperes:");
disp(I2,"Output current of second generator in Amperes:");
Po1=r*r1/1000;........//Output of first generator in Kilo Watts
r2=round(Po1*100)/100;.......//Rounding of decimal places
Po2=r*I2/1000;..........//Output of first generator in Kilo Watts
r3=round(Po2*10)/10;......//Rounding of decimal places
disp(r2,"Output of first generator in Kilo Watts:");
disp(r3,"Output of first generator in Kilo Watts:");
|
cea686fc5636f0607707faa3caa520f6b3b60bb0 | eb7eeb04a23a477e06f3c0e3d099889caee468b4 | /src/examples/scilab/scilab_wave_ws/waveparams.sce | d19b6df7ed13a2276a023271c300299b6340865a | [] | no_license | mikeg64/iome | 55699b7d7b3d5c1b006d9c82efe5136b8c909dfd | cc1c94433133e32776dcf16704ec4ec337b1b4a0 | refs/heads/master | 2020-03-30T15:57:33.056341 | 2016-04-13T09:24:27 | 2016-04-13T09:24:27 | 151,387,236 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 900 | sce | waveparams.sce |
//Read input
usevtk=0;
wavetype=1; //travelling
nsteps=96000;
maxamplitude=20;
wavenumber(1)=10;
wavenumber(2)=5;
wavefreq=8;
delta(1)=0.01;
delta(2)=0.01;
nmax(1)=100;
nmax(2)=100;
deltat=0.05;
steeringenabled=1;
finishsteering=0;
//params2
tstep=1;
jobname='steerjob1';
//chdir( jobname);
outfile='.out';
formfile='.form';
params1=struct('wavetype',wavetype,'nsteps',nsteps,'maxamplitude',maxamplitude,'wavenumber',wavenumber,'wavefreq',wavefreq,'delta',delta,'nmax',nmax,'deltat',deltat);
params2=struct('tstep',tstep,'jobname',jobname,'steeringenabled',steeringenabled,'finishsteering',finishsteering);
metadata.directory='out';
metadata.author='MikeG';
metadata.sdate=date();
metadata.platform='felix';
metadata.desc='A simple test of steering';
metadata.name='intsaas1';
elist=list(2);
elist(1)='localhost';
elist(2)=8080;
elist(3)=0;
|
a192b7bd233830193c6b3206b4bc8bc95a7d4e4c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1376/CH3/EX3.3/3_3.sci | f564c815e3c2450091fa71fff3b1c2ea98370a74 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 119 | sci | 3_3.sci | //3.3
clc;
Is=150*10^-6;
I=50*10^-6;
R=4*10^3;
Rt=R*I/Is;
printf("\nthe value of total resistance=%.2f ohm",Rt)
|
61a49c0fe13a2140bb55cf227defb66603c044c0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2072/CH18/EX18.6/Ex18_6.sce | 71a7af3a528271f5117548bd06c367986beffba1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 199 | sce | Ex18_6.sce | //Example 18.6
clc
R=8*10^5//in ohms
C=5*10^-6//in Farad
t=R*C
disp(t,"Constant of the circuit in s=")
Q=C*12
disp(Q,"Charge in columb=")
q=0.632*Q
disp(q,"Charge in columb when capacitance 63.2%=") |
ce5c6fb97d2321f84ce96d82f94543eea49b35d4 | 978b15852ad0d9219e0cd69e9da3a9140b84aa97 | /TPs_CN/testExo4.sce | 47f5524ade3bf104655b1a773db2fec7bd652de7 | [] | no_license | nadine867/TP_CN | cd2acc700471c7f595ada5f2b799b43ca44590ce | fcf09074e27723ca3e9b1eec870386c848b190f9 | refs/heads/master | 2023-02-03T04:07:38.525606 | 2020-12-18T20:23:55 | 2020-12-18T20:23:55 | 316,060,516 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 194 | sce | testExo4.sce | s =100
rand("seed",s)
n=100;
Ad=rand(n,n);
A=triu(Ad);
xex = rand(n,1);
b = A*xex;
x = usolve(A,b);
fErrorB = norm(xex-x,2)/norm(xex,2)
bErrorB = norm(b-A*x,2)/norm(b,2)
|
74098cc49d2595552cc84da02ffac5c682b3e047 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set5/s_Electrical_And_Electronics_Engineering_Materials_J._B._Gupta_1730.zip/Electrical_And_Electronics_Engineering_Materials_J._B._Gupta_1730/CH1/EX1.4/Exa1_4.sce | 85e90bbac5fb8b1608c8c5270328e06e127b6a33 | [] | no_license | hohiroki/Scilab_TBC | cb11e171e47a6cf15dad6594726c14443b23d512 | 98e421ab71b2e8be0c70d67cca3ecb53eeef1df6 | refs/heads/master | 2021-01-18T02:07:29.200029 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 325 | sce | Exa1_4.sce | errcatch(-1,"stop");mode(2);//Exa4
;
;
//given data :
//wavelength
lamda=1.539; //in Angstrum
//angle
theta=22.5; // in degree
n=1;//(first order)
// Formula n*lamda=2*d*sin(theta) , so
// interplaner distance,
d=lamda/(2*sin(theta*%pi/180));
disp("Interplaner distance is : "+string(d)+" Angstrum")
exit();
|
b2d8abc9285d4b480d5fc253d10dfd2ecd903f49 | 7e8e8788ae9567cb4005effcf05a3172225c09c6 | /lab 3/lab3.sce | 05abe69dc91ca4109fea32435a515afbbb458bcf | [] | no_license | MammalBubble/TAU | d1562ff8f04447d6815a0104e3d70b52b8f3784f | 3b9c64133520c211e77b4806ff5761e3d963d771 | refs/heads/master | 2021-05-21T02:43:11.674589 | 2020-05-22T19:11:41 | 2020-05-22T19:11:41 | 252,506,891 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 980 | sce | lab3.sce |
function []=to_latex(str,NAME,DIR)
if ~isdef("DIR")
DIR="";
end
format(6,1)
str=string(str)
csvWrite(str,DIR+NAME+".tex")
endfunction
//ввод
DIR='D:\U4ebka\теория систем и ОАУ\ОАУ\lab 3\'
phi=input('phi '); to_latex(phi,'phi',DIR)
f=input('f '); to_latex(f,'f',DIR)
delta=input('delta '); to_latex(delta,'delta',DIR)
V=input('V '); to_latex(V,'V',DIR)
F=input('F '); to_latex(F,'F',DIR)
//==========
omega=f*2*%pi; to_latex(omega,'omega',DIR)
A=phi/%pi*180; to_latex(A,'A',DIR)
//disp(omega,'omega= ',A,'A= ')
//g=4sint + 3cos4t
//g1=4sint g1`=4cost g1``=-4sint=-g1 g1`(0)=4
//g2=3cos4t g2`=-12sin4t g2``=-48cos4t=-16g2 g2`(0)=12
g='$g(t)=4\sin t+3\cos 4t$'; to_latex(g,'g',DIR)
g1='$g_1=4\sin t\\\dot{g_1}=4\cos t\\ \ddot{g_1}=-4sin t=-g_1\\ \dot{g_1}(0)=4$'; to_latex(g1,'g1',DIR)
g2='$g_2=3\cos 4t\\\dot{g_2}=-12\sin 4t\\ \ddot{g_2}=-48cos 4t=-16g_2\\ g_2(0)=3$'; to_latex(g2,'g2',DIR)
|
afd5878ae8842a43499543d0be56346c152f33d0 | 3592fbcb99d08024f46089ba28a6123aeb81ff3c | /main/predControl/testRectification.sce | 57faef61dd14ccd81575747fb2ef56ab455ce59d | [] | no_license | clairedune/sciGaitanLib | a29ab61206b726c6f0ac36785ea556adc9ef03b9 | 7498b0d707a24c170fc390f7413359ad1bfefe9f | refs/heads/master | 2020-12-11T01:51:13.640472 | 2015-01-28T13:52:26 | 2015-01-28T13:52:26 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,900 | sce | testRectification.sce | //--------------------------------------------------//
// main program
//
// author Claire Dune
// date 07/07/2011
//
// Given a real position cMo an estimated position cmMo
// Compute the feature s and sm
// Compute the interaction matrix L
// try to estimate the displacement between cMo and cmMo using the measured features
//--------------------------------------------------//
// sampling time
Te = 0.01;
// Real pose in X Y Z Rx Ry Rz
posecMoRxyz = [0.2 0.1 2 0 0 0 ];
posecMoThetaU = thetaUFromRxRyRz(posecMoRxyz);
cMo = homogeneousMatrixFromPos(posecMoRxyz); // convert pose vector into homogeneous matrix
oMc = inv(cMo);
// Disturb the real position with random noise
//disturbance = rand(posecMoRxyz,'normal')/100;
disturbance = [-0.0068342 -0.0072095 0.0081451 0.0032402 -0.0018848 0.0042416 ];
disp('Apply an error on the first pose estimation');
disp(disturbance);
// compute the disturbance in thetaU
distThetaU = vThetaUFromVRxRyRz(disturbance);
disp('Same disturbance but in thetaU')
disp(distThetaU);
// Model pose
cmMc = homogeneousMatrixFromPos(disturbance);
// object in measured camera
cmMo = cmMc*cMo;
posecmMo = pFromHomogeneousMatrix(cmMo);
// measured camera in real object
oMcm = oMc * inv(cmMc)
poseoMcm = pFromHomogeneousMatrix(oMcm);
poseoMcmThetaU = vThetaUFromVRxRyRz(poseoMcm');
// camera in real obect
poseoMc = pFromHomogeneousMatrix(oMc);
poseoMcThetaU = vThetaUFromVRxRyRz(poseoMc');
// compute the velocity corresponding to this disturbance
vdist = expMapInverseThetaU(cmMc,Te);
disp('the velocity Utheta corresponding to this motion is')
disp(vdist);
vdistRxRyRz = expMapInverseRxRyRz(cmMc,Te);
disp('the velocity Rxyz corresponding to this motion is')
disp(vdistRxRyRz);
// difference of real pose and measured one
disp('poseoMc-poseoMcm')
disp(poseoMc'-poseoMcm')
// difference between real pose and measured one
disp('poseoMcThetaU-poseoMcmThetaU')
disp(poseoMcThetaU-poseoMcmThetaU)
// Object
NbPts = 4;
[oP cP s] = mire4pointsInCam(0.20,cMo); // build the 3d points in the object and in the camera frame
Z = cP(3:3:$); // compute the point depth
[oP cmP sm] = mire4pointsInCam(0.20,cmMo);
Zm = cmP(3:3:$);
//Desired position
global Zdes_global;
global sdes_global;
posecdesMo = [0 0 1 0 0 0 ];
cdesMo = homogeneousMatrixFromPos(posecdesMo); // convert pose vector into homogeneous matrix
[oP cdesP sdes]= mire4pointsInCam(0.20,cdesMo); // build the 3d points in the object and in the camera frame
Zdes_global = cdesP(3:3:$); // compute the point depth
sdes_global = sdes;
Z = [2.5;2.2;2.4;2.1];
//----------------------------------------------------------------
//
// Try to identify the error starting from the measure of s
//
//----------------------------------------------------------------
// Around s
Lc = matIntMireC(s,Z);
Ld = matIntMireD(s,Z);
Lm = matIntMireM(s,Z);
Lp = matIntMireP(s,Z);
// Around sm
//Lcm = matIntMireC(sm,Zm);
//Ldm = matIntMireD(sm,Zm);
//Lmm = matIntMireM(sm,Zm);
//Lpm = matIntMireP(sm,Zm);
// temptative
epsilon = pinv(Lc)*(s-sm);
epsilon = (abs(epsilon)>1E-8).*epsilon;
disp('epsilon')
disp(epsilon');
//cmMc = computeMotion(vCorr',Te);
cmMc2 = homogeneousMatrixFromPos(epsilon);
posecmMc= pFromHomogeneousMatrix(cmMc2);
posecMcm= pFromHomogeneousMatrix(inv(cmMc2));
disp('cmMc')
disp(posecmMc')
disp('cMcm')
disp(posecMcm')
oMc2 = oMcm*cmMc2;
posec2Mo = pFromHomogeneousMatrix(inv(oMc2));
disp('Pose estimee')
disp(posec2Mo')
//-----------------------------------------------------------------//
// Finish the process
//-----------------------------------------------------------------//
disp('-------The End------')
xset("pixmap",0);
disp('pause before ending')
pause
|
8d40a6e960254d9f1c63df23b56b41d71fe69974 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3472/CH24/EX24.1/Example24_1.sce | 6ca53dff15483c25cd9c27df4a2c4a91f7361073 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,851 | sce | Example24_1.sce | // A Texbook on POWER SYSTEM ENGINEERING
// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
// DHANPAT RAI & Co.
// SECOND EDITION
// PART II : TRANSMISSION AND DISTRIBUTION
// CHAPTER 17: ELECTRIC POWER SUPPLY SYSTEMS
// EXAMPLE : 17.1 :
// Page number 422-423
clear ; clc ; close ; // Clear the work space and console
// Given data
no_phase = 3.0 // Number of phases in ac transmission system
V = 380.0*10**3 // Voltage b/w lines(V)
load = 100.0 // Load(MW)
PF = 0.9 // Power factor
l = 150.0 // Line length(km)
n = 0.92 // Efficiency
r = 0.045 // Resistance(ohm/km/sq.cm)
w_cu_1 = 0.01 // Weight of 1 cm^3 copper(kg)
// Calculations
// Case(i)
P_loss = (1-n)*load // Power loss in the line(MW)
I_L = load*10**6/(3**0.5*V*PF) // Line current(A)
loss_cu = P_loss/no_phase*10**6 // I^2*R loss per conductor(W)
R = loss_cu/I_L**2 // Resistance per conductor(ohm)
R_km = R/l // Resistance per conductor per km(ohm)
area = r/R_km // Conductor area(Sq.cm)
volume = area*100.0 // Volume of copper per km run(cm^3)
W_cu_km = volume*w_cu_1 // Weight of copper per km run(kg)
W_cu = no_phase*l*1000*W_cu_km // Weight of copper for 3 conductors of 150 km(kg)
// Case(ii)
W_cu_dc = 1.0/2*PF**2*W_cu // Weight of copper conductor in dc(kg)
// Results
disp("PART II - EXAMPLE : 17.1 : SOLUTION :-")
printf("\nWeight of copper required for a three-phase transmission system = %.f kg", W_cu)
printf("\nWeight of copper required for the d-c transmission system = %.f kg \n", W_cu_dc)
printf("\nNOTE: Changes in the obtained answer from that of textbook is due to more precision")
|
461025445352d53494e8fef760ba77382eb26425 | 449d555969bfd7befe906877abab098c6e63a0e8 | /182/CH9/EX9.7/example9_7.sce | 55bf2d6de824cb891c3dcecf447811ae69380958 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 690 | sce | example9_7.sce | //to find the raise time of the displayed waveform
// example 9-7 in page 262
clc;
//Data given
Rs=3.3e+3; Ci=15D-12;//source resistance in ohm and input capacitance in farad
tri=[109e-9 327e-9];//input raise times in seconds for which trd is to be determined
//calculations
tuo=2.2*Rs*Ci;//tuo is the rise time in seconds imposed by the ossciloscope
for n=1:2
trd=sqrt(tri(n)^2+tuo^2); // displayed raise time in seconds
printf("the displayed raise time for input pulse raise time %d ns=%d ns\n",tri(n)*10^9,trd*10^9);
end
//result
//the displayed raise time for input pulse raise time 109 ns=154 ns
//the displayed raise time for input pulse raise time 327 ns=344 ns |
5cfd70ae2692ce2d5b5461b9b90e3fb8d8922a1e | 449d555969bfd7befe906877abab098c6e63a0e8 | /3523/CH16/EX16.7.3/Ex16_3.sce | 890ebaa6472d69d48ca6434b3237919a04cae444 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 721 | sce | Ex16_3.sce | clear all
clc
close
Vs=200*1e3//Supply voltage
f=50//Frequency in Hz
n=12//Number of stages
C=0.15*1e-6//Each stage capacitance in F
iload=5*1e-3//Load current in A
//Ripple voltage in V
dv=iload/(f*C*2)*n*(n+1)
printf('Ripple voltage in V %f',dv)
//Voltage drop in V
Vdrop=iload/(f*C)*(2*n^3/3+n^2/2-n/6+n*(n+1)/4)
printf('Voltage drop in V %f',Vdrop)
//Average output voltage in V
V_av=2*n*sqrt(2)*Vs-Vdrop
printf('Avarage voltage in V %f',V_av)
//Ripple factor in percentage
RF=Vdrop/(2*n*Vs*sqrt(2))*100
printf('Ripple voltage in percentage %f',RF)
//Otimum number of stages
nopt=sqrt(sqrt(2)*f*C*Vs/iload)
printf('Optimum number of stgaes for minimum voltage drop %f',int(nopt))
|
71a4e3d4a86141801d534b2f66a14b3bba0a7ef6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3784/CH5/EX5.15/Ex5_15.sce | 280a9a6774b238bbb53b9eb612b377946f7bc0d6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 977 | sce | Ex5_15.sce | clc
//variable Initialisation
Vm=400 //Terminal Voltage Of Motor In Volt
F=50 //Supply Frequency
P=6 //Number Of Pole
R1=0.6 //Resistnce Of Motor in Ohm
R2=0.5 //Resistnce Of Motor in Ohm
X1=1.3 //Reactance in Ohm
X2=1.3 //Reactance in Ohm
Xm=50 //Reactance In Ohm
Nr=950 //Speed Of Rotor In RPM
//Solution
Ns=(120*F)/(P)
Wms=((2*%pi)/60)*(Ns)
S=(Ns-Nr)/Ns
Vph=Vm/sqrt(3)
I2=(Vph)/sqrt(((R1+(R2/S))^2)+((X1+X2)^2))
Im=Vph/Xm
I1=Im+I2
Z1=(%i*(Xm)*((R2/S)+%i*(X2)))/((R2/S)+(%i*(X2+Xm)))
Zf=R1+%i*(X1)+(Z1)
Z2=%i*Xm*((R2/(2-S))+(%i*(X2)))/((R2/(2-S))+(%i*(X2+Xm)))
Zb=R1+%i*(X1)+(Z2)
Z3=Zf+Zb
Znew=abs(Z3)
I=Vph/Znew
Tp=(3*((I)^2)*((Xm)^2)*(R2/S))/((Wms)*(((R2/S)^2)+((X2+Xm)^2)))
Tn=-((3*((I)^2)*((Xm)^2)*(R2/(2-S)))/((Wms)*(((R2/(2-S))^2)+((X2+Xm)^2))))
T=Tp+Tn
Wm=Wms*(1-S)
Tl=(8.4/1000)*(Wm^2)//Given
printf('\n\n The Motor Speed=%0.1f rpm\n\n',Ns)
printf('\n\n The motor Current=%0.1f Amp\n\n',I)
disp("Since T=Tl,Motor will run Safely")
|
318f284edf903978cc688f4679b361e10da3cfb6 | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/CONT/UW80JVR/ATWM1_Working_Memory_MEG_UW80JVR_Session1/ATWM1_Working_Memory_MEG_Salient_Uncued_Run1.sce | 6e3463a9af5d70cbb3993ecfa0d161ec777c7448 | [] | no_license | atwm1/Presentation | 65c674180f731f050aad33beefffb9ba0caa6688 | 9732a004ca091b184b670c56c55f538ff6600c08 | refs/heads/master | 2020-04-15T14:04:41.900640 | 2020-02-14T16:10:11 | 2020-02-14T16:10:11 | 56,771,016 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 48,405 | sce | ATWM1_Working_Memory_MEG_Salient_Uncued_Run1.sce | # ATWM1 MEG Experiment
scenario = "ATWM1_Working_Memory_MEG_salient_uncued_run1";
#scenario_type = fMRI; # Fuer Scanner
#scenario_type = fMRI_emulation; # Zum Testen
scenario_type = trials; # for MEG
#scan_period = 2000; # TR
#pulses_per_scan = 1;
#pulse_code = 1;
pulse_width=6;
default_monitor_sounds = false;
active_buttons = 2;
response_matching = simple_matching;
button_codes = 10, 20;
default_font_size = 36;
default_font = "Arial";
default_background_color = 0 ,0 ,0 ;
write_codes=true; # for MEG only
begin;
#Picture definitions
box { height = 382; width = 382; color = 0, 0, 0;} frame1;
box { height = 369; width = 369; color = 255, 255, 255;} frame2;
box { height = 30; width = 4; color = 0, 0, 0;} fix1;
box { height = 4; width = 30; color = 0, 0, 0;} fix2;
box { height = 30; width = 4; color = 255, 0, 0;} fix3;
box { height = 4; width = 30; color = 255, 0, 0;} fix4;
box { height = 369; width = 369; color = 42, 42, 42;} background;
TEMPLATE "StimuliDeclaration.tem" {};
trial {
sound sound_incorrect;
time = 0;
duration = 1;
} wrong;
trial {
sound sound_correct;
time = 0;
duration = 1;
} right;
trial {
sound sound_no_response;
time = 0;
duration = 1;
} miss;
# Start of experiment (MEG only) - sync with CTF software
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
} expStart;
time = 0;
duration = 1000;
code = "ExpStart";
port_code = 80;
};
# baselinePre (at the beginning of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
}default;
time = 0;
duration = 10000;
#mri_pulse = 1;
code = "BaselinePre";
port_code = 91;
};
TEMPLATE "ATWM1_Working_Memory_MEG.tem" {
trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4;
42 61 292 292 399 125 1942 2992 2342 fixation_cross gabor_176 gabor_112 gabor_067 gabor_156 gabor_176_alt gabor_112 gabor_067_alt gabor_156 "1_1_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2350_gabor_patch_orientation_176_112_067_156_target_position_1_3_retrieval_position_1" gabor_129_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_1_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_129_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1792 2992 2042 fixation_cross gabor_002 gabor_046 gabor_151 gabor_173 gabor_002_alt gabor_046_alt gabor_151 gabor_173 "1_2_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2050_gabor_patch_orientation_002_046_151_173_target_position_1_2_retrieval_position_2" gabor_circ gabor_046_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_2_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_046_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2042 2992 2042 fixation_cross gabor_150 gabor_125 gabor_060 gabor_019 gabor_150_alt gabor_125 gabor_060_alt gabor_019 "1_3_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2050_gabor_patch_orientation_150_125_060_019_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_060_framed gabor_circ blank blank blank blank fixation_cross_white "1_3_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_060_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 1992 2992 2092 fixation_cross gabor_175 gabor_110 gabor_040 gabor_069 gabor_175 gabor_110_alt gabor_040_alt gabor_069 "1_4_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_UncuedRetriev_300_300_399_2000_3000_2100_gabor_patch_orientation_175_110_040_069_target_position_2_3_retrieval_position_1" gabor_175_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_4_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_175_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1842 2992 2242 fixation_cross gabor_080 gabor_121 gabor_048 gabor_159 gabor_080_alt gabor_121 gabor_048_alt gabor_159 "1_5_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2250_gabor_patch_orientation_080_121_048_159_target_position_1_3_retrieval_position_1" gabor_080_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_5_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_080_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1742 2992 2092 fixation_cross gabor_093 gabor_057 gabor_127 gabor_176 gabor_093_alt gabor_057 gabor_127 gabor_176_alt "1_6_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2100_gabor_patch_orientation_093_057_127_176_target_position_1_4_retrieval_position_1" gabor_093_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_6_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_093_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1992 2992 2142 fixation_cross gabor_008 gabor_140 gabor_052 gabor_030 gabor_008 gabor_140 gabor_052_alt gabor_030_alt "1_7_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2150_gabor_patch_orientation_008_140_052_030_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_030_framed blank blank blank blank fixation_cross_white "1_7_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_030_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1892 2992 2492 fixation_cross gabor_011 gabor_065 gabor_171 gabor_154 gabor_011 gabor_065_alt gabor_171_alt gabor_154 "1_8_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2500_gabor_patch_orientation_011_065_171_154_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_171_framed gabor_circ blank blank blank blank fixation_cross_white "1_8_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_171_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1792 2992 1942 fixation_cross gabor_129 gabor_082 gabor_005 gabor_162 gabor_129_alt gabor_082 gabor_005_alt gabor_162 "1_9_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_1950_gabor_patch_orientation_129_082_005_162_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_005_framed gabor_circ blank blank blank blank fixation_cross_white "1_9_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_005_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1892 2992 2342 fixation_cross gabor_025 gabor_153 gabor_111 gabor_084 gabor_025_alt gabor_153 gabor_111 gabor_084_alt "1_10_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2350_gabor_patch_orientation_025_153_111_084_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_084_framed blank blank blank blank fixation_cross_white "1_10_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_084_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1842 2992 2492 fixation_cross gabor_123 gabor_095 gabor_141 gabor_051 gabor_123_alt gabor_095 gabor_141 gabor_051_alt "1_11_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2500_gabor_patch_orientation_123_095_141_051_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_005_framed blank blank blank blank fixation_cross_white "1_11_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_005_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 1892 2992 1892 fixation_cross gabor_154 gabor_065 gabor_093 gabor_172 gabor_154 gabor_065_alt gabor_093_alt gabor_172 "1_12_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_UncuedRetriev_300_300_399_1900_3000_1900_gabor_patch_orientation_154_065_093_172_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_172_framed blank blank blank blank fixation_cross_white "1_12_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_172_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1892 2992 2292 fixation_cross gabor_093 gabor_150 gabor_068 gabor_130 gabor_093 gabor_150_alt gabor_068_alt gabor_130 "1_13_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2300_gabor_patch_orientation_093_150_068_130_target_position_2_3_retrieval_position_2" gabor_circ gabor_015_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_13_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_015_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2092 2992 2392 fixation_cross gabor_175 gabor_141 gabor_006 gabor_156 gabor_175_alt gabor_141 gabor_006_alt gabor_156 "1_14_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2400_gabor_patch_orientation_175_141_006_156_target_position_1_3_retrieval_position_1" gabor_125_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_14_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_125_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2192 2992 2442 fixation_cross gabor_106 gabor_046 gabor_029 gabor_158 gabor_106 gabor_046_alt gabor_029_alt gabor_158 "1_15_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2450_gabor_patch_orientation_106_046_029_158_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_029_framed gabor_circ blank blank blank blank fixation_cross_white "1_15_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_029_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1742 2992 2542 fixation_cross gabor_145 gabor_124 gabor_062 gabor_169 gabor_145 gabor_124 gabor_062_alt gabor_169_alt "1_16_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2550_gabor_patch_orientation_145_124_062_169_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_034_framed blank blank blank blank fixation_cross_white "1_16_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_034_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2092 2992 2342 fixation_cross gabor_006 gabor_028 gabor_142 gabor_057 gabor_006 gabor_028_alt gabor_142_alt gabor_057 "1_17_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2350_gabor_patch_orientation_006_028_142_057_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_094_framed gabor_circ blank blank blank blank fixation_cross_white "1_17_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_094_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 2242 2992 2242 fixation_cross gabor_127 gabor_172 gabor_063 gabor_009 gabor_127_alt gabor_172 gabor_063_alt gabor_009 "1_18_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_UncuedRetriev_300_300_399_2250_3000_2250_gabor_patch_orientation_127_172_063_009_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_009_framed blank blank blank blank fixation_cross_white "1_18_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_009_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1942 2992 2192 fixation_cross gabor_007 gabor_141 gabor_066 gabor_088 gabor_007 gabor_141_alt gabor_066_alt gabor_088 "1_19_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2200_gabor_patch_orientation_007_141_066_088_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_116_framed gabor_circ blank blank blank blank fixation_cross_white "1_19_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_116_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2192 2992 2392 fixation_cross gabor_156 gabor_091 gabor_031 gabor_074 gabor_156_alt gabor_091 gabor_031 gabor_074_alt "1_20_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2400_gabor_patch_orientation_156_091_031_074_target_position_1_4_retrieval_position_1" gabor_156_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_20_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_156_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2142 2992 1892 fixation_cross gabor_110 gabor_179 gabor_071 gabor_089 gabor_110_alt gabor_179 gabor_071 gabor_089_alt "1_21_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_1900_gabor_patch_orientation_110_179_071_089_target_position_1_4_retrieval_position_1" gabor_160_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_21_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_160_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2092 2992 2092 fixation_cross gabor_102 gabor_068 gabor_173 gabor_041 gabor_102_alt gabor_068 gabor_173 gabor_041_alt "1_22_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2100_gabor_patch_orientation_102_068_173_041_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_086_framed blank blank blank blank fixation_cross_white "1_22_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_086_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 2042 2992 2592 fixation_cross gabor_107 gabor_062 gabor_044 gabor_077 gabor_107_alt gabor_062_alt gabor_044 gabor_077 "1_23_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_UncuedRetriev_300_300_399_2050_3000_2600_gabor_patch_orientation_107_062_044_077_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_125_framed blank blank blank blank fixation_cross_white "1_23_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_125_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1742 2992 2442 fixation_cross gabor_077 gabor_126 gabor_151 gabor_106 gabor_077_alt gabor_126 gabor_151_alt gabor_106 "1_24_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2450_gabor_patch_orientation_077_126_151_106_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_151_framed gabor_circ blank blank blank blank fixation_cross_white "1_24_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_151_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1742 2992 1892 fixation_cross gabor_157 gabor_070 gabor_098 gabor_113 gabor_157_alt gabor_070_alt gabor_098 gabor_113 "1_25_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_1900_gabor_patch_orientation_157_070_098_113_target_position_1_2_retrieval_position_2" gabor_circ gabor_024_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_25_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_024_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2142 2992 2542 fixation_cross gabor_156 gabor_174 gabor_132 gabor_100 gabor_156_alt gabor_174_alt gabor_132 gabor_100 "1_26_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2550_gabor_patch_orientation_156_174_132_100_target_position_1_2_retrieval_position_1" gabor_017_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_26_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_017_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1842 2992 2392 fixation_cross gabor_170 gabor_089 gabor_024 gabor_006 gabor_170_alt gabor_089_alt gabor_024 gabor_006 "1_27_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2400_gabor_patch_orientation_170_089_024_006_target_position_1_2_retrieval_position_2" gabor_circ gabor_089_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_27_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_089_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 2042 2992 1992 fixation_cross gabor_049 gabor_107 gabor_078 gabor_032 gabor_049_alt gabor_107 gabor_078_alt gabor_032 "1_28_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_UncuedRetriev_300_300_399_2050_3000_2000_gabor_patch_orientation_049_107_078_032_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_032_framed blank blank blank blank fixation_cross_white "1_28_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_032_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1742 2992 2042 fixation_cross gabor_137 gabor_081 gabor_098 gabor_169 gabor_137 gabor_081_alt gabor_098_alt gabor_169 "1_29_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2050_gabor_patch_orientation_137_081_098_169_target_position_2_3_retrieval_position_2" gabor_circ gabor_081_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_29_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_081_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 2242 2992 2192 fixation_cross gabor_094 gabor_061 gabor_042 gabor_013 gabor_094 gabor_061_alt gabor_042 gabor_013_alt "1_30_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_UncuedRetriev_300_300_399_2250_3000_2200_gabor_patch_orientation_094_061_042_013_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_177_framed gabor_circ blank blank blank blank fixation_cross_white "1_30_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_177_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2192 2992 2542 fixation_cross gabor_163 gabor_073 gabor_008 gabor_036 gabor_163 gabor_073_alt gabor_008_alt gabor_036 "1_31_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2550_gabor_patch_orientation_163_073_008_036_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_008_framed gabor_circ blank blank blank blank fixation_cross_white "1_31_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_008_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1992 2992 1992 fixation_cross gabor_011 gabor_073 gabor_162 gabor_036 gabor_011_alt gabor_073 gabor_162_alt gabor_036 "1_32_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2000_gabor_patch_orientation_011_073_162_036_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_117_framed gabor_circ blank blank blank blank fixation_cross_white "1_32_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_117_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1892 2992 2042 fixation_cross gabor_003 gabor_088 gabor_065 gabor_110 gabor_003 gabor_088 gabor_065_alt gabor_110_alt "1_33_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2050_gabor_patch_orientation_003_088_065_110_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_020_framed gabor_circ blank blank blank blank fixation_cross_white "1_33_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_020_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1742 2992 2342 fixation_cross gabor_144 gabor_036 gabor_108 gabor_087 gabor_144 gabor_036_alt gabor_108_alt gabor_087 "1_34_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2350_gabor_patch_orientation_144_036_108_087_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_108_framed gabor_circ blank blank blank blank fixation_cross_white "1_34_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_108_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1842 2992 2142 fixation_cross gabor_153 gabor_067 gabor_048 gabor_123 gabor_153_alt gabor_067_alt gabor_048 gabor_123 "1_35_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2150_gabor_patch_orientation_153_067_048_123_target_position_1_2_retrieval_position_1" gabor_016_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_35_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_016_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1892 2992 2142 fixation_cross gabor_149 gabor_175 gabor_043 gabor_027 gabor_149 gabor_175 gabor_043_alt gabor_027_alt "1_36_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2150_gabor_patch_orientation_149_175_043_027_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_043_framed gabor_circ blank blank blank blank fixation_cross_white "1_36_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_043_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1992 2992 2192 fixation_cross gabor_083 gabor_125 gabor_001 gabor_166 gabor_083 gabor_125 gabor_001_alt gabor_166_alt "1_37_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2200_gabor_patch_orientation_083_125_001_166_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_001_framed gabor_circ blank blank blank blank fixation_cross_white "1_37_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 2192 2992 2092 fixation_cross gabor_109 gabor_130 gabor_067 gabor_041 gabor_109_alt gabor_130_alt gabor_067 gabor_041 "1_38_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_UncuedRetriev_300_300_399_2200_3000_2100_gabor_patch_orientation_109_130_067_041_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_067_framed gabor_circ blank blank blank blank fixation_cross_white "1_38_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_067_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2092 2992 2542 fixation_cross gabor_060 gabor_096 gabor_011 gabor_043 gabor_060 gabor_096 gabor_011_alt gabor_043_alt "1_39_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2550_gabor_patch_orientation_060_096_011_043_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_178_framed blank blank blank blank fixation_cross_white "1_39_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_178_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2242 2992 2392 fixation_cross gabor_070 gabor_052 gabor_134 gabor_113 gabor_070_alt gabor_052 gabor_134_alt gabor_113 "1_40_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2400_gabor_patch_orientation_070_052_134_113_target_position_1_3_retrieval_position_1" gabor_023_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_40_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_023_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 1992 2992 1942 fixation_cross gabor_173 gabor_084 gabor_063 gabor_117 gabor_173_alt gabor_084 gabor_063_alt gabor_117 "1_41_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_UncuedRetriev_300_300_399_2000_3000_1950_gabor_patch_orientation_173_084_063_117_target_position_1_3_retrieval_position_2" gabor_circ gabor_134_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_41_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_134_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1992 2992 1892 fixation_cross gabor_179 gabor_099 gabor_023 gabor_073 gabor_179_alt gabor_099 gabor_023_alt gabor_073 "1_42_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_1900_gabor_patch_orientation_179_099_023_073_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_163_framed gabor_circ blank blank blank blank fixation_cross_white "1_42_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_163_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1792 2992 1942 fixation_cross gabor_042 gabor_126 gabor_017 gabor_149 gabor_042_alt gabor_126_alt gabor_017 gabor_149 "1_43_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_1950_gabor_patch_orientation_042_126_017_149_target_position_1_2_retrieval_position_2" gabor_circ gabor_080_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_43_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_080_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2142 2992 1992 fixation_cross gabor_103 gabor_059 gabor_145 gabor_177 gabor_103 gabor_059 gabor_145_alt gabor_177_alt "1_44_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2000_gabor_patch_orientation_103_059_145_177_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_127_framed blank blank blank blank fixation_cross_white "1_44_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_127_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1942 2992 2192 fixation_cross gabor_056 gabor_168 gabor_027 gabor_101 gabor_056 gabor_168 gabor_027_alt gabor_101_alt "1_45_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2200_gabor_patch_orientation_056_168_027_101_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_101_framed blank blank blank blank fixation_cross_white "1_45_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_101_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1792 2992 2342 fixation_cross gabor_046 gabor_026 gabor_092 gabor_112 gabor_046 gabor_026_alt gabor_092 gabor_112_alt "1_46_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2350_gabor_patch_orientation_046_026_092_112_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_112_framed blank blank blank blank fixation_cross_white "1_46_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_112_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1792 2992 2292 fixation_cross gabor_054 gabor_119 gabor_007 gabor_095 gabor_054_alt gabor_119 gabor_007 gabor_095_alt "1_47_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2300_gabor_patch_orientation_054_119_007_095_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_143_framed blank blank blank blank fixation_cross_white "1_47_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_143_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 2242 2992 2092 fixation_cross gabor_161 gabor_008 gabor_027 gabor_144 gabor_161 gabor_008_alt gabor_027 gabor_144_alt "1_48_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_UncuedRetriev_300_300_399_2250_3000_2100_gabor_patch_orientation_161_008_027_144_target_position_2_4_retrieval_position_1" gabor_161_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_48_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_161_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2042 2992 2292 fixation_cross gabor_001 gabor_083 gabor_063 gabor_111 gabor_001 gabor_083_alt gabor_063 gabor_111_alt "1_49_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2300_gabor_patch_orientation_001_083_063_111_target_position_2_4_retrieval_position_2" gabor_circ gabor_129_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_49_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_129_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 2142 2992 2042 fixation_cross gabor_097 gabor_166 gabor_080 gabor_049 gabor_097_alt gabor_166_alt gabor_080 gabor_049 "1_50_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_UncuedRetriev_300_300_399_2150_3000_2050_gabor_patch_orientation_097_166_080_049_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_033_framed gabor_circ blank blank blank blank fixation_cross_white "1_50_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_033_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2192 2992 1942 fixation_cross gabor_116 gabor_063 gabor_010 gabor_096 gabor_116 gabor_063 gabor_010_alt gabor_096_alt "1_51_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_1950_gabor_patch_orientation_116_063_010_096_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_145_framed gabor_circ blank blank blank blank fixation_cross_white "1_51_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_145_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1842 2992 1992 fixation_cross gabor_174 gabor_109 gabor_023 gabor_093 gabor_174_alt gabor_109_alt gabor_023 gabor_093 "1_52_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2000_gabor_patch_orientation_174_109_023_093_target_position_1_2_retrieval_position_1" gabor_129_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_52_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_129_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2142 2992 2292 fixation_cross gabor_040 gabor_058 gabor_093 gabor_012 gabor_040_alt gabor_058 gabor_093_alt gabor_012 "1_53_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2300_gabor_patch_orientation_040_058_093_012_target_position_1_3_retrieval_position_1" gabor_040_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_53_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_040_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1942 2992 2592 fixation_cross gabor_081 gabor_163 gabor_054 gabor_097 gabor_081 gabor_163_alt gabor_054_alt gabor_097 "1_54_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2600_gabor_patch_orientation_081_163_054_097_target_position_2_3_retrieval_position_2" gabor_circ gabor_163_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_54_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_163_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 2042 2992 2492 fixation_cross gabor_148 gabor_014 gabor_077 gabor_040 gabor_148_alt gabor_014 gabor_077 gabor_040_alt "1_55_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_UncuedRetriev_300_300_399_2050_3000_2500_gabor_patch_orientation_148_014_077_040_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_077_framed gabor_circ blank blank blank blank fixation_cross_white "1_55_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_077_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1892 2992 2442 fixation_cross gabor_034 gabor_090 gabor_018 gabor_166 gabor_034 gabor_090_alt gabor_018_alt gabor_166 "1_56_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2450_gabor_patch_orientation_034_090_018_166_target_position_2_3_retrieval_position_2" gabor_circ gabor_090_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_56_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_090_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2242 2992 2192 fixation_cross gabor_103 gabor_082 gabor_131 gabor_161 gabor_103_alt gabor_082_alt gabor_131 gabor_161 "1_57_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2200_gabor_patch_orientation_103_082_131_161_target_position_1_2_retrieval_position_1" gabor_054_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_57_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_054_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1792 2992 2142 fixation_cross gabor_117 gabor_146 gabor_040 gabor_056 gabor_117 gabor_146 gabor_040_alt gabor_056_alt "1_58_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2150_gabor_patch_orientation_117_146_040_056_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_056_framed blank blank blank blank fixation_cross_white "1_58_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_056_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 1842 2992 2592 fixation_cross gabor_153 gabor_080 gabor_041 gabor_168 gabor_153_alt gabor_080 gabor_041_alt gabor_168 "1_59_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_UncuedRetriev_300_300_399_1850_3000_2600_gabor_patch_orientation_153_080_041_168_target_position_1_3_retrieval_position_2" gabor_circ gabor_128_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_59_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_128_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1792 2992 2242 fixation_cross gabor_157 gabor_128 gabor_178 gabor_068 gabor_157_alt gabor_128 gabor_178_alt gabor_068 "1_60_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2250_gabor_patch_orientation_157_128_178_068_target_position_1_3_retrieval_position_1" gabor_157_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_60_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_157_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2092 2992 2242 fixation_cross gabor_135 gabor_108 gabor_093 gabor_070 gabor_135 gabor_108_alt gabor_093_alt gabor_070 "1_61_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2250_gabor_patch_orientation_135_108_093_070_target_position_2_3_retrieval_position_2" gabor_circ gabor_154_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_61_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_154_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1942 2992 2592 fixation_cross gabor_059 gabor_103 gabor_082 gabor_121 gabor_059 gabor_103 gabor_082_alt gabor_121_alt "1_62_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2600_gabor_patch_orientation_059_103_082_121_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_121_framed blank blank blank blank fixation_cross_white "1_62_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_121_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2192 2992 1992 fixation_cross gabor_157 gabor_073 gabor_032 gabor_006 gabor_157_alt gabor_073 gabor_032 gabor_006_alt "1_63_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2000_gabor_patch_orientation_157_073_032_006_target_position_1_4_retrieval_position_1" gabor_112_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_63_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_112_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2092 2992 2492 fixation_cross gabor_111 gabor_145 gabor_024 gabor_129 gabor_111 gabor_145 gabor_024_alt gabor_129_alt "1_64_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2500_gabor_patch_orientation_111_145_024_129_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_129_framed blank blank blank blank fixation_cross_white "1_64_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_129_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2242 2992 1892 fixation_cross gabor_057 gabor_028 gabor_115 gabor_080 gabor_057_alt gabor_028 gabor_115_alt gabor_080 "1_65_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_1900_gabor_patch_orientation_057_028_115_080_target_position_1_3_retrieval_position_1" gabor_008_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_65_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_008_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2042 2992 2442 fixation_cross gabor_021 gabor_105 gabor_079 gabor_053 gabor_021 gabor_105 gabor_079_alt gabor_053_alt "1_66_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2450_gabor_patch_orientation_021_105_079_053_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_079_framed gabor_circ blank blank blank blank fixation_cross_white "1_66_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_079_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 2142 2992 2142 fixation_cross gabor_174 gabor_008 gabor_123 gabor_093 gabor_174 gabor_008_alt gabor_123 gabor_093_alt "1_67_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_UncuedRetriev_300_300_399_2150_3000_2150_gabor_patch_orientation_174_008_123_093_target_position_2_4_retrieval_position_1" gabor_036_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_67_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_036_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1842 2992 2292 fixation_cross gabor_165 gabor_012 gabor_034 gabor_101 gabor_165_alt gabor_012 gabor_034_alt gabor_101 "1_68_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2300_gabor_patch_orientation_165_012_034_101_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_083_framed gabor_circ blank blank blank blank fixation_cross_white "1_68_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_083_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1942 2992 1942 fixation_cross gabor_089 gabor_171 gabor_121 gabor_048 gabor_089_alt gabor_171 gabor_121_alt gabor_048 "1_69_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_1950_gabor_patch_orientation_089_171_121_048_target_position_1_3_retrieval_position_1" gabor_089_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_69_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_089_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 1742 2992 2242 fixation_cross gabor_054 gabor_014 gabor_085 gabor_029 gabor_054 gabor_014_alt gabor_085 gabor_029_alt "1_70_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_UncuedRetriev_300_300_399_1750_3000_2250_gabor_patch_orientation_054_014_085_029_target_position_2_4_retrieval_position_1" gabor_104_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_70_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_104_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
};
# baselinePost (at the end of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
};
time = 0;
duration = 5000;
code = "BaselinePost";
port_code = 92;
}; |
ffe36f88827b58f01eee39b4e157a8be45c7f574 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3845/CH22/EX22.1/Ex22_1.sce | 7fa60d937267d3afe79e2fea3cdb71c2c99e6981 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 340 | sce | Ex22_1.sce | //Example 22.1
q=20*10^-9;//Charge (C)
v=10;//Velocity (m/s)
b=5*10^-5;//Earth's magnetic field strength (T)
theta=90;//Angle between velocity and field direction (deg)
F=q*v*b*sind(theta);//Force (N)
printf('Force on the rod = %0.1e N',F)
//Openstax - College Physics
//Download for free at http://cnx.org/content/col11406/latest
|
d35953147d272cbace0564ab329aabd4c1b1a2ca | 449d555969bfd7befe906877abab098c6e63a0e8 | /1670/CH5/EX5.53/5_53.sce | 431ce19bc6891f2a58bea09b8f08906be9a2c2d8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 690 | sce | 5_53.sce | //Example 5.53
//Spline Interpolation
//Page no. 206
clc;close;clear;
xi=[1,2,3];
yi=[-3,4,23];
h=1;n=2;
x=poly(0,'x')
m(2)=(6*(yi(3)-2*yi(2)+yi(1)))/4
m(1)=0;m(3)=0;
function [y]=S(i,x)
y=m(i)*(xi(i+1)-x)^3/(6*h)
y=y+m(i+1)*(x-xi(i))^3/(6*h)
y=y+(yi(i)/h-(m(i)*h)/6)*(xi(i+1)-x)
y=y+(yi(i+1)/h-(m(i+1)*h)/6)*(-xi(i)+x)
endfunction
for i=1:2
S1(i)=S(i);
end
printf('\n The required Spline is : \n')
disp(' ','2<x<=3',S1(2),'S2 = ',' ','1<=x<=2',S1(1),'S1 = ');
x=1.5;
if x>=1 & x<=2 then
i=1;
else x>2 & x<=3
i=2;
end
disp(S(i,x),'y(1.5) = ')
x=1;h1=0.01;
for i=1:1
Sd(i,x)=(S(i,x+h1)-S(i,x))/h1
end
disp(Sd(1,1),'y`(1) = ') |
2468c5bfc490eb78f36d6b6ca755c350c0b6f17f | 449d555969bfd7befe906877abab098c6e63a0e8 | /858/CH4/EX4.22/example_22.sce | 8508ea21fee5aca31eb2843da078b5a1031b9d61 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 672 | sce | example_22.sce | clc
clear
printf("example 4.22 page number 163\n\n")
//to find minimum fluidization velocity
d=120*10^-6 //in m
density=2500 //particle density in kg/m3
e_min=0.45;
density_water=1000 //in kg/m3
viscosity=0.9*10^-3; //in Pa-s
umf=(d^2*(density-density_water)*9.8*e_min^3)/(150*viscosity*(1-e_min));
printf("minimum fludization velocity = %f m/s",umf)
Re_mf=(d*umf*density_water)/(viscosity*(1-e_min));
//given that uo/umf=10
function[f] = F(e)
f = e^3+1.657*e-1.675;
endfunction
//initial guess
x = 10;
e = fsolve(x,F);
printf("\n\ne = %f",e)
length_ratio=(1-e_min)/(1-e);
printf("\n\nratio of heights = %f",length_ratio)
|
c0048e19476060320ae4ace439934786fd681269 | 01ecab2f6eeeff384acae2c4861aa9ad1b3f6861 | /xcos_blocks/dac.sci | 54d72e8ed7f365352eceeff40088542e46ffeb7a | [] | no_license | jhasler/rasp30 | 9a7c2431d56c879a18b50c2d43e487d413ceccb0 | 3612de44eaa10babd7298d2e0a7cddf4a4b761f6 | refs/heads/master | 2023-05-25T08:21:31.003675 | 2023-05-11T16:19:59 | 2023-05-11T16:19:59 | 62,917,238 | 3 | 3 | null | null | null | null | UTF-8 | Scilab | false | false | 2,439 | sci | dac.sci | function [x,y,typ]=dac(job,arg1,arg2)
// Copyright INRIA
x=[];y=[];typ=[];
select job
case 'plot' then
standard_draw(arg1)
case 'getinputs' then //** GET INPUTS
[x,y,typ]=standard_inputs(arg1)
case 'getoutputs' then
[x,y,typ]=standard_outputs(arg1)
case 'getorigin' then
[x,y]=standard_origin(arg1)
case 'set' then
x=arg1;
graphics=arg1.graphics
model=arg1.model
exprs=graphics.exprs
while %t do //add the number of data pts to take
[ok,name,out_num,value,exprs]=scicos_getvalue('Set DC Voltage Parameters',['Name of DC Source';'Number of Inputs';'Value'],list("str",-1,'vec',1,'col',-1),exprs)
if ~ok then break,end
if length(value) ~= out_num then
message('The number of input voltage values that you have entered does not match the number of DAC blocks.');
ok=%f;
end
for ck_val=1:length(value)
if(value(ck_val) < 0.14) then
message(msprintf('No voltage less than 0.14 is valid\nThe value you chose is: %d',value(ck_val)));
ok=%f;
end
if(value(ck_val) > 2.5) then
message(msprintf('No voltage greater than 2.5 is valid\nThe value you chose is: %d', value(ck_val)));
ok=%f;
end
end
if ok then
model.ipar = out_num;
model.out= out_num;
model.rpar= value;
model.opar=list(name)
model.sim=list('dac_c',5)
graphics.exprs=exprs;
x.graphics=graphics;
x.model=model
break;
end
end
case 'define' then
name = 'input'
value =1.5
out_num = 1
model=scicos_model()
model.sim=list('dac_c',5)
model.out= out_num
model.out2= 1
model.outtyp=-1
model.rpar= value
model.ipar = out_num
model.opar=list(name)
model.blocktype='d'
model.dep_ut=[%t %t]
exprs=[name;sci2exp(out_num);sci2exp(value)]
gr_i=['txt='' DAC '';';'xstringb(orig(1),orig(2),txt,sz(1),sz(2),''fill'')']
x=standard_define([3 2],model, exprs,gr_i)
end
endfunction
|
3084225c12a5635093c1dc76c987ea6692693266 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3772/CH16/EX16.6/Ex16_6.sce | 11d213674decd290e225835d972e3d6d7178f052 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 762 | sce | Ex16_6.sce | // Problem 16.6,Page no.370
clc;clear;
close;
t=12 //mm //thickness of plate
d=18 //mm //Diameter of rivet
p=8 //cm //%pitch of rivet
sigma_t=460 //MPa //Tensile stress
sigma_s=320 //MPa //shearing stress
sigma_b=640 //MPa //bearing stress
n=2 //No. of rivet
//Calculation
P_t=(p-d*10**-1)*t*10**-1*10**-4*sigma_t*10**6 //N //Strength of plate in tearing
P_s=n*2*%pi*4**-1*d**2*10**-6*sigma_s*10**6 //N //Shearing strength of rivet pr %pitch length
P_b=n*d*10**-3*t*10**-3*sigma_b*10**6 //N //Bearing strength per %pitch length
//The joint will fail at a pull of P_b
S=p*t*sigma_t*10**6*10**-5 //N //strength of solid plate
rho=P_b*S**-1*100 //Efficiency of joint
//Result
printf("Pull per pitch length at which joint will fail is %.2f",P_b);printf(" N")
|
d4211920ac2126ce1157733494d31d5a984d8410 | 449d555969bfd7befe906877abab098c6e63a0e8 | /215/CH16/EX16.1/ex16_1.sce | 2a112bd84c97819b6d8ca337cb42932f7a24d7f6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 340 | sce | ex16_1.sce | clc
//Example 16.1
disp('Given')
disp('L=2.5mH Q0=5 C=0.01uF')
L=2.5*10^-3; Q0=5; C=0.01*10^-6;
w0=1/sqrt(L*C)
printf("w0= %3.1f krad/s \n",w0*10^-3);
f0=w0/(2*%pi)
alpha=w0/(2*Q0)
printf("alpha= %3.1f Np/s \n",alpha);
wd=sqrt(w0^2-alpha^2)
printf("wd= %3.1f krad/s \n",wd*10^-3);
R=Q0/(w0*C)
printf("R= %3.2f ohm \n",R*10^-3); |
a0fdd021adcea29e8054039a6a569c8470ae4a08 | f6134e0a162a059c42ec3ef8de2a63941d73936c | /Scilab_code/Pruning_strategy/insideHalfSphere.sci | bdd876205b5566eab21b727af4940be6f6a0d4ee | [] | no_license | mxch18/SRL-WRT_pathPlanning | 38a1701934a4a0e919a6c1c7990092b242df72da | 6992febbbe103814d2cef5351a0e8917b183a2b0 | refs/heads/master | 2020-03-23T06:43:54.155192 | 2018-09-26T17:26:56 | 2018-09-26T17:26:56 | 141,226,032 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 232 | sci | insideHalfSphere.sci | function ins = insideHalfSphere(point,centre,radius,direction)
//checks if the point is inside the halfsphere defined by the 3 last args
vec = point-centre;
ins = (norm(vec)<=radius)&(vec*direction'>0);
endfunction
|
2d256f2ad4180a874a723f117e35b726dcf13b3e | 449d555969bfd7befe906877abab098c6e63a0e8 | /3159/CH7/EX7.1/Ex7_1.sce | 03a44b98e572bf544aee3aa7038d0474b9f295cc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 309 | sce | Ex7_1.sce | // Find degrees of freedom of a system of two components
clc
c = 2 // number of components
printf("\n Example 7.1")
for n = 1:4
p = (c-1) +2 // Total variables
f = c-n+2 // degree of freedom
printf("\n\n Degree of freedom for two components when \n number of phases is %d is %d",n,f)
end
|
c1519d519572b9f95e16df9aba3a95a01e302af7 | b9117a375dfd4994834bffe24f28414f4599c02e | /test/trans_alternate.tst | 72b2a76f15380f9b7d8b04dd1aa81722a4e0095d | [] | no_license | mdolgun/NLPParser | 2a7e1ab5f820c902ecb7ecd05a90a9caca7fb4bf | 54d8494a8799efb94ff0dfa21c8c46292dd9cb22 | refs/heads/master | 2021-07-16T08:32:55.973580 | 2020-10-17T20:28:51 | 2020-10-17T20:28:51 | 218,727,320 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 348 | tst | trans_alternate.tst | ###grammar
S -> continue Obj | go on Obj : Obj -ye devam et | Obj -yi sürdür
Obj -> observing | watching : seyretme | izleme
###input
continue observing
###enum
seyretmeye devam et
izlemeye devam et
seyretmeyi sürdür
izlemeyi sürdür
###input
go on watching
###enum
seyretmeye devam et
izlemeye devam et
seyretmeyi sürdür
izlemeyi sürdür
|
b208dc93d7db9a0a453c219a37375d05609147ff | 449d555969bfd7befe906877abab098c6e63a0e8 | /1760/CH4/EX4.13/EX4_13.sce | f7bfc4d6a10a55ae19e63bd9a610f62d4fae8efb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 378 | sce | EX4_13.sce | //Example 4-13 PG NO-235
X=[1 -0.5 2;-0.5 3.5 -4;-0.5 -1 0];
X1=[2 -0.5 -0.5;-4 3.5 -1;0 -1 2.5 ]
X2=[1 -0.5 -0.5;-0.5 3.5 -1;-0.5 -1 2.5];
V=det([X1-X]/X2); //V=VA-VC
disp('i) VOLTAGE (V) is = '+string (V) +' V ');
I2=0.5*1.566;
disp('i) Current (I2) is = '+string (I2) +' A ');
|
dfe98acbf529105e8e1a292c6226bcbd7793acfa | 449d555969bfd7befe906877abab098c6e63a0e8 | /2627/CH10/EX1.3/Ex_B_1_3.sce | 7bc10557ed4dd18a933a0f35e60d3e782220eac0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 322 | sce | Ex_B_1_3.sce | //Part B Ex 1.3
clc;clear;close;
format('v',5);
Av=10;//voltage gain
Ri=%inf;//ohm
Ro=0;//ohm
Vs=2;//V(Sensor voltage)
Rs=100;//ohm(Sensor resistance)
RL=50;//ohm
//Vi=Vs*Ri/(Rs+Ri) leads to Vi approximately equals to Vs as Ri=%inf
Vi=Vs;//V
Vo=Av*Vi*RL/(Ro+RL);//V
disp(Vo,"Output voltage of amplifier(V)");
|
8f24f83705ecc7c4251e8404853f63d0e0b745ec | 449d555969bfd7befe906877abab098c6e63a0e8 | /3710/CH8/EX8.13/Ex8_13.sce | eba00e017572c0a734c94518b95754d1101347bd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 644 | sce | Ex8_13.sce | //Example 8.13, Page Number 399
//The Function fpround(dependency) is used to round a floating point number x to n decimal places
//Transmission loss from lateral misalignment
clc;
l=0.1 //where l=D/2a and occurs due to lateral misalignment where D is the lateral displacement and a is the fiber core radius
//From equation 8.40
T=(2/%pi)*(acos(l)-l*(sqrt(1-(l**2))))
L=-10*log10(T) //L is the Transmission loss in dB
L=fpround(L,2)
mprintf("The Total Transmission loss is %.2f dB\n",L)
//Including Fresnel loss from the previous example
LT=L+0.33
mprintf(" The Total Transmission loss including Fresnel loss is %.2f dB",LT)
|
a49a727a8293fbeeb2439175e41e2d6a50aaf02b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1172/CH3/EX3.21/Example3_21.sce | dc3334cc6099b7b0e1dd78c86d077467ce9cd8ca | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 560 | sce | Example3_21.sce | clc
//Given that
lambda1 = 1.321 // wavelength of L- alpha line for platinum
lambda2 = 4.174 // wavelength of l - alpha line of unknown substance
z1= 78// atomic number of platinum
c = 3e8 // speed of light in m/s
b = 7.4 // constant for L - alpha line
//Sample Problem 21 page No. 146
printf("\n\n\n # Problem 21 # \n")
printf("\n Standard formula Used \n sqrt(nu1)= a*(Z-b)")
z2 = b + (z1 - b) * sqrt(lambda1 / lambda2) //calculation of the unknown substance has atomic number
printf ("\n The unknown substance has atomic number %d. ", z2)
|
1bc00a79cfc5bbc1e7aa1c4b4d5d1b251526d7c9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /964/CH7/EX7.3/7_3.sce | 037a09ed02cb0f1b027f766c5575039da6888dab | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,162 | sce | 7_3.sce | clc;
clear;
function y=f(x)
y=x^5-3.5*x^4+2.75*x^3+2.125*x^2-3.875*x+1.25
endfunction
r=-1;
s=-1;
es=1;//%
n=6;
count=1;
ear=100;
eas=100;
a=[1.25 -3.875 2.125 2.75 -3.5 1];
while (ear>es) and (eas>es)
b(n)=a(n);
b(n-1)=a(n-1)+r*b(n);
for i=n-2:-1:1
b(i)=a(i)+r*b(i+1)+s*b(i+2);
end
c(n)=b(n);
c(n-1)=b(n-1)+r*c(n);
for i=(n-2):-1:2
c(i)=b(i)+r*c(i+1)+s*c(i+2);
end
//c(3)*dr+c(4)*ds=-b(2)
//c(2)*dr+c(3)*ds=-b(1)
ds=((-b(1))+(b(2)*c(2)/c(3)))/(c(3)-(c(4)*c(2 )/c(3)));
dr=(-b(2)-c(4)*ds)/c(3);
r=r+dr;
s=s+ds;
ear=abs(dr/r)*100;
eas=abs(ds/s)*100;
disp(count,"Iteration:")
disp(dr,"delata r:")
disp(ds,"delata s:")
disp(r,"r:")
disp(s,"s:")
disp(ear,"Error in r:")
disp(eas,"Error in s:")
disp("-----------------------------------------------------")
count=count+1;
end
x1=(r+(r^2 + 4*s)^0.5)/2;
x2=(r-(r^2 + 4*s)^0.5)/2;
bracket=[x1 x2];
disp(bracket,"The roots are:")
disp("x^3 - 4*x^2 + 5.25*x - 2.5","The quotient is:")
disp("-----------------------------------------------------")
|
a240565bf9e30f3b8b9cf4b0e2ec2d849b9b9d2f | 449d555969bfd7befe906877abab098c6e63a0e8 | /199/CH7/EX7.1/Example_7_1.sce | 158007ab14a8bb71d5108ffb608394bf5b9156da | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 454 | sce | Example_7_1.sce | // Chapter7
// Page.No-256
// Example_7_1
// Design of low pass filter
// Given
clear;clc;
fh=1*10^3; // Cut-off frequency
C=0.01*10^-6; // Assumption
R=1/(2*%pi*fh*C);
printf("\n Resistance R is = %.1f ohm \n",R) // Result
printf("\n Use 20 kohm POT as R \n")
R1=10*10^3; // Assumption
printf("\n Resistance R1 is = %.1f ohm \n",R1)
Rf=R1; // Sice passband gain is 2,R1 and Rf must be equal
printf("\n Resistance Rf is = %.1f ohm \n",Rf)
|
2d10ce5bcda11ffccd44b0d9a6c36dfdc1b8943f | 3b9a879e67cbab4a5a4a5081e2e9c38b3e27a8cc | /Área 1/Revisão P1/DigitosSignificativosMetodoJacobiGauss.sce | 324bf0540f0a73cbc888e1a8427bb6e43d1bfa7a | [
"MIT"
] | permissive | JPedroSilveira/numerical-calculus-with-scilab | 32e04e9b1234a0a82275f86aa2d6416198fa6c81 | 190bc816dfaa73ec2efe289c34baf21191944a53 | refs/heads/master | 2023-05-10T22:39:02.550321 | 2021-05-11T17:17:09 | 2021-05-11T17:17:09 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,075 | sce | DigitosSignificativosMetodoJacobiGauss.sce | function [resultado] = erro_relativo(x, xl)
resultado = abs((x-xl)/x)
endfunction
function [resultado] = digitos_significativos(x, xl)
erro_rel = erro_relativo(x,xl)
resultado = 0
while erro_rel <= 5*10^(resultado * (-1))
resultado = resultado + 1
end
resultado = resultado - 1
endfunction
function [x] = solveU(U,b)
n = size(U,1)
x(n) = b(n)/U(n,n)
for i = n-1:-1:1
x(i) = (b(i)-U(i,i+1:n)*x(i+1:n))/U(i,i)
end
endfunction
function [x] = solveL(L,b)
n = size(L,1)
x(1) = b(1)/L(1,1)
for i=2:n
x(i)=(b(i)-L(i,1:i-1)*x(1:i-1))/L(i,i)
end
endfunction
function [L,A] = fatoraLU(A)
n = size(A,1)
L = eye(n,n)
for j = 1:n-1
for i = j+1:n
L(i,j) = A(i,j)/A(j,j)
A(i,j+1:n) = A(i,j+1:n) - L(i,j)*A(j,j+1:n)
A(i,j) = 0 //Força para evitar erros de arredondamento
end
end
endfunction
function [x] = resolve(A,b)
[L,U] = fatoraLU(A)
y = solveL(L,b)
x = solveU(U,y)
endfunction
function [x,deltax,k] = jacobi(A,b,x,tol,N)
n = size(A,1)
xnew = x //Para inicializar o tamanho de xnew com o tamanho de x
convergiu = %F
k = 1
while k<=N & ~convergiu
xnew(1) = (b(1) - A(1,2:n)*x(2:n))/A(1,1)
for i = 2:n-1
xnew(i) = (b(i) - A(i,1:i-1)*x(1:i-1) - A(i,i+1:n)*x(i+1:n))/A(i,i)
end
xnew(n) = (b(n) - A(n,1:n-1)*x(1:n-1))/A(n,n)
deltax = max(abs(x-xnew))
if tol ~= -1 then
if deltax < tol then
convergiu = %T
end
end
k = k+1
x = xnew //atualiza x
end
if tol ~= -1 & ~convergiu then
error('Não convergiu')
end
endfunction
function [x,deltax,k] = gauss_seidel(A,b,x,tol,N)
n = size(A,1)
xnew = x //Para inicializar o tamanho de xnew com o tamanho de x
convergiu = %F
k = 1
while k<=N & ~convergiu
xnew(1) = (b(1) - A(1,2:n)*x(2:n))/A(1,1)
for i = 2:n-1
//Muda apenas o uso do xnew em vez de x nesta equação e na última comparado com o método de Jacobi
xnew(i) = (b(i) - A(i,1:i-1)*xnew(1:i-1) - A(i,i+1:n)*x(i+1:n))/A(i,i)
end
//Muda o uso do xnew aqui também
xnew(n) = (b(n) - A(n,1:n-1)*xnew(1:n-1))/A(n,n)
deltax = max(abs(x-xnew))
if tol ~= -1 then
if deltax < tol then
convergiu = %T
end
end
k = k+1
x = xnew //atualiza x
end
if tol ~= -1 & ~convergiu then
error('Não convergiu')
end
endfunction
function [resultadoJ] = digitos_significativos_jacobi(A,b,x,k,n)
[xlJ,deltaxJ,k] = jacobi(A,b,x,-1,k)
xstarJ = resolve(A,b)
resultadoJ = digitos_significativos(xstarJ(n),xlJ(n))
endfunction
function [resultadoG,xstarG,xlG] = digitos_significativos_gauss_seidel(A,b,x,k,n)
[xlG,deltaxG,k] = gauss_seidel(A,b,x,-1,k)
xstarG = resolve(A,b)
resultadoG = digitos_significativos(xstarG(n),xlG(n))
endfunction
|
e2448c00d9ccf948198050d73dae7f30b10cafed | 6e257f133dd8984b578f3c9fd3f269eabc0750be | /ScilabFromTheoryToPractice/Programming/testnum2pos.sce | 8f4c51cb5232835bcd83c5c0cf012c07deb40cec | [] | 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 | 329 | sce | testnum2pos.sce | exec('scilab-base-program-num2pos.sce',-1) //to delete
// entry number 1 -> position (1,1)
[i,j]=num2pos(1)
// entry number 9 -> position (9,1)
[i,j]=num2pos(9)
// entry number 18 -> position (9,2)
[i,j]=num2pos(18)
// entry number 73 -> position (1,9)
[i,j]=num2pos(73)
// entry number -> position (9,9)
[i,j]=num2pos(81)
|
f1e36e05e6fd9a39ce13799fb6ed6bff30315afb | 449d555969bfd7befe906877abab098c6e63a0e8 | /2006/CH15/EX15.2/ex15_2.sce | 37ba9ac04ac34381a5a69a13c49410b7dca30807 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 735 | sce | ex15_2.sce | clc;
T0=298; // Given temperature in kelvin
R_1=8.314; // Universal gas constant in kJ/kg mol K
// (a).CO+1/2 O2 = CO2
// From table of properties of combustion
del_hfco2=-393509;// Enthalpy of heat
del_hfco=-110525;// Enthalpy of heat
s_co2=213.795;// Entropy of heat
s_co=197.652;// Entropy of heat
s_o2=205.142;// Entropy of heat
del_Ga=(del_hfco2-del_hfco-T0*(s_co2-s_co-(1/2*s_o2)));
Ka=exp (abs (del_Ga)/(R_1*1000*T0));
disp ("(a).CO+1/2 O2 = CO2");
printf ("\n The equilibrium constant at 298 K = %0.3f (Error in textbook) \n",Ka);
// (b).2CO + O2 = 2CO2
Kb=exp (2*abs (del_Ga)/(R_1*1000*T0));
disp ("(b).2CO + O2 = 2CO2");
printf ("\nThe equilibrium constant at 298 K = %0.3f (Error in textbook)",Kb);
|
67c202ef82b875b2ee151840dd9381a0db7b7da6 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/ngram/5.12_8.tst | 0e660eb54793adbf0e06b5df20be23d08a3931d8 | [] | 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 | 429,444 | tst | 5.12_8.tst | 12 328:1 356:1 418:1 881:1 2265:1 2580:1 3460:1 4258:1 4550:1 5864:1 6414:1 6516:1 6932:1 7250:1 7394:1 7419:1 7488:1 7947:1 9066:1 11151:1 11333:1 12548:1 12859:1 13128:1 14575:1 14903:1 15672:1 16005:1 16678:1 16720:1 16766:1 17076:1 17492:23 18333:1 20796:1 21173:1 21236:1 21242:1 21987:1 22502:1 22876:1 24324:1 25877:1 26666:1 27137:1
12 74:1 328:1 356:1 418:2 861:1 881:1 994:1 1287:1 1344:1 1564:1 1565:1 1864:1 2080:1 2256:1 2265:1 2338:1 2354:1 2501:1 2580:1 2583:1 2756:1 3160:1 3402:1 3460:1 3674:1 3726:1 4145:1 4258:1 4550:1 4814:1 5045:1 5133:1 5141:2 5188:1 5274:1 5864:1 5917:1 6003:1 6096:1 6115:1 6117:1 6362:1 6414:1 6516:1 6932:1 7146:1 7250:1 7263:1 7328:1 7329:1 7352:1 7394:2 7419:1 7488:1 7522:1 7550:1 7947:1 8707:1 8796:1 9066:1 9481:1 9583:1 9876:1 10145:1 10148:1 10155:1 10473:1 10961:1 11096:1 11151:1 11194:1 11333:1 11488:1 12445:1 12548:2 12815:1 12859:1 12902:1 13128:1 13166:1 13386:1 13534:1 13691:1 13919:1 14176:1 14480:1 14575:1 14733:1 14812:1 14903:1 14962:1 14970:1 15070:1 15265:1 15381:1 15408:1 15672:1 16005:1 16158:1 16367:1 16486:1 16586:1 16678:1 16720:1 16766:1 17076:1 17284:1 17492:93 17914:1 18032:1 18269:1 18333:1 18584:1 18778:1 18849:1 18915:1 19078:1 19274:1 19388:1 19623:1 20131:1 20290:1 20415:1 20421:1 20577:1 20796:1 20894:1 21173:2 21236:1 21242:1 21329:1 21632:1 21709:1 21904:1 21975:1 21987:1 22176:1 22309:1 22333:1 22340:1 22438:1 22502:1 22876:1 23003:1 23052:1 23191:1 23245:1 23277:1 23866:1 24324:1 24730:1 24734:1 24899:1 24928:1 25071:1 25488:1 25515:1 25587:1 25704:1 25728:1 25790:1 25835:1 25877:1 26184:1 26275:1 26352:1 26609:1 26647:1 26666:1 26990:1 27050:1 27137:2 27696:1
12 74:1 328:1 356:1 418:2 441:1 861:1 881:1 994:1 1287:1 1344:1 1459:1 1564:1 1565:1 1864:1 2080:1 2256:1 2265:1 2338:1 2354:1 2501:1 2580:1 2583:1 2756:1 3160:1 3402:1 3460:1 3674:1 3726:1 3916:1 4145:1 4258:1 4550:1 4814:2 5045:1 5118:1 5133:1 5141:2 5163:1 5188:3 5274:1 5527:1 5864:1 5917:1 6003:1 6008:1 6096:1 6115:1 6117:1 6362:1 6414:1 6516:1 6932:1 7146:1 7250:1 7263:1 7328:1 7329:1 7352:1 7394:2 7419:1 7488:1 7522:1 7550:1 7947:1 8707:1 8796:1 9066:1 9133:1 9481:1 9583:1 9876:1 10145:1 10148:1 10155:1 10365:1 10473:1 10573:1 10961:1 11096:1 11151:1 11194:1 11333:1 11488:1 11999:1 12337:1 12356:1 12445:1 12548:2 12815:1 12859:1 12902:1 13128:1 13166:1 13386:1 13534:1 13691:1 13919:1 14176:1 14475:1 14479:1 14480:1 14575:1 14595:1 14733:1 14774:1 14812:1 14903:1 14962:1 14970:1 15070:1 15265:1 15381:1 15408:1 15672:1 15864:1 16005:1 16158:1 16240:1 16367:1 16486:1 16586:1 16678:1 16720:1 16744:1 16766:1 16786:1 17076:1 17284:1 17341:1 17492:116 17555:1 17914:1 18032:1 18145:1 18269:1 18333:1 18584:1 18778:1 18849:1 18915:1 19078:1 19274:1 19388:1 19623:1 20131:1 20290:1 20415:1 20421:1 20577:1 20796:1 20894:1 21072:1 21173:2 21236:1 21242:1 21329:1 21439:1 21632:1 21709:1 21904:1 21975:1 21987:1 22176:1 22309:1 22333:1 22340:1 22438:1 22502:1 22762:1 22876:1 23003:1 23052:1 23191:1 23245:1 23277:1 23866:1 24324:1 24730:1 24734:1 24759:1 24899:1 24928:1 25071:1 25387:1 25488:1 25515:1 25587:1 25704:1 25728:1 25790:1 25835:1 25877:1 26184:1 26275:1 26352:1 26609:1 26647:1 26666:1 26898:1 26990:1 27050:1 27137:2 27696:2
12 74:1 328:1 356:1 418:2 441:1 861:1 881:1 994:1 1249:1 1287:1 1344:1 1354:1 1459:1 1564:1 1565:1 1691:1 1795:1 1831:1 1848:1 1864:1 2080:1 2197:1 2256:1 2261:1 2265:1 2338:1 2354:1 2501:1 2580:1 2583:1 2589:1 2756:1 3160:1 3232:1 3244:1 3402:1 3460:1 3674:1 3713:1 3726:1 3806:1 3844:1 3876:1 3916:1 4145:1 4258:1 4346:1 4472:1 4550:1 4710:1 4814:3 5045:2 5118:1 5133:1 5141:2 5163:1 5188:4 5274:1 5402:1 5527:1 5788:1 5864:1 5917:1 6003:1 6008:1 6096:1 6115:1 6117:2 6362:1 6414:1 6516:1 6578:1 6932:1 7146:1 7250:1 7263:1 7328:1 7329:1 7352:1 7394:3 7419:1 7488:1 7522:1 7550:1 7947:1 8247:1 8630:1 8707:1 8796:1 8990:1 9066:1 9133:1 9175:1 9481:2 9583:1 9747:1 9876:1 10145:1 10148:1 10155:1 10359:1 10365:2 10380:1 10419:1 10473:1 10488:1 10526:1 10573:1 10714:1 10750:1 10767:1 10866:1 10918:1 10961:1 11053:1 11096:1 11151:1 11194:1 11333:1 11344:1 11488:1 11999:1 12075:1 12337:1 12356:1 12445:1 12548:2 12632:1 12815:1 12859:1 12902:1 13128:1 13166:1 13386:1 13498:1 13534:1 13678:1 13691:1 13915:1 13919:3 13956:1 14150:1 14176:1 14342:1 14475:1 14479:1 14480:1 14575:1 14595:1 14733:1 14774:1 14812:2 14903:1 14962:1 14970:1 15070:1 15265:1 15381:1 15408:1 15413:1 15652:1 15672:1 15864:1 16005:1 16111:1 16158:1 16240:1 16258:1 16367:1 16379:1 16486:1 16586:1 16678:1 16718:1 16720:1 16744:1 16766:1 16768:1 16786:1 17022:1 17076:1 17284:1 17291:1 17341:1 17492:180 17555:1 17669:1 17793:1 17914:1 18032:1 18145:1 18269:1 18333:1 18584:1 18778:1 18849:1 18892:1 18915:1 18983:1 19078:1 19214:1 19274:1 19358:1 19388:1 19435:1 19487:1 19510:1 19612:1 19623:1 20131:1 20290:1 20401:1 20415:1 20421:2 20488:1 20577:1 20796:1 20864:1 20894:1 21072:1 21173:2 21236:1 21242:1 21329:1 21337:1 21345:1 21439:1 21632:1 21709:1 21904:1 21975:1 21987:1 22176:1 22309:1 22333:1 22340:1 22438:1 22502:1 22572:1 22762:1 22876:1 23003:1 23052:1 23191:1 23240:1 23245:1 23250:1 23277:1 23535:1 23866:1 23902:1 23987:1 24324:1 24598:1 24655:1 24730:1 24734:1 24759:1 24809:1 24899:1 24928:3 25071:1 25387:1 25434:1 25488:1 25515:1 25537:1 25587:1 25704:1 25728:1 25790:1 25835:1 25877:1 26184:1 26275:1 26312:1 26322:1 26352:1 26468:1 26609:1 26647:1 26666:1 26681:1 26821:1 26898:1 26990:1 27050:1 27078:1 27095:1 27137:2 27497:1 27557:2 27696:3
12 74:1 111:1 202:1 328:1 356:1 378:1 418:2 441:1 725:1 861:1 867:1 881:1 994:1 1088:1 1192:1 1240:1 1249:1 1287:1 1344:1 1354:1 1459:1 1564:1 1565:1 1660:1 1691:1 1795:1 1831:1 1848:1 1864:1 2080:1 2197:1 2200:1 2235:1 2256:1 2261:1 2262:1 2265:1 2338:1 2354:1 2501:1 2580:1 2583:1 2589:1 2756:1 2927:1 3160:1 3232:1 3244:1 3402:1 3426:1 3460:1 3674:1 3713:1 3726:1 3806:2 3844:2 3876:1 3916:1 4030:1 4145:1 4258:1 4281:1 4346:1 4472:1 4550:1 4710:1 4814:3 5045:2 5118:1 5133:1 5141:2 5163:1 5188:5 5274:1 5402:1 5527:1 5788:1 5864:1 5917:1 6003:1 6008:1 6096:1 6115:1 6117:2 6260:1 6362:1 6414:1 6516:1 6578:1 6932:1 7146:1 7250:1 7263:1 7328:1 7329:1 7352:1 7394:4 7419:1 7488:1 7522:1 7550:1 7947:1 8091:1 8247:2 8630:1 8707:1 8796:1 8883:1 8990:1 9066:1 9133:1 9175:1 9244:1 9250:1 9481:2 9583:1 9747:1 9876:1 9882:1 10145:1 10148:1 10155:2 10359:1 10365:2 10380:1 10419:1 10473:1 10488:2 10526:1 10573:1 10714:1 10750:1 10767:1 10866:1 10918:1 10961:1 11053:1 11096:1 11151:1 11194:1 11333:1 11344:1 11488:1 11999:1 12075:1 12272:1 12337:1 12356:1 12445:1 12548:2 12632:1 12698:1 12815:1 12827:1 12859:1 12902:1 13128:1 13166:1 13386:1 13483:1 13498:1 13534:1 13678:1 13691:1 13874:1 13915:1 13919:3 13956:1 14150:1 14176:1 14342:1 14467:1 14475:1 14479:1 14480:1 14534:1 14575:1 14595:1 14733:1 14774:1 14812:2 14903:1 14962:1 14970:1 15070:1 15193:1 15265:1 15381:1 15408:1 15413:1 15652:1 15672:1 15864:1 16005:1 16111:1 16158:1 16240:1 16258:1 16367:1 16379:1 16486:1 16586:1 16668:1 16678:1 16718:1 16720:1 16744:1 16766:1 16768:1 16786:1 16961:1 17022:1 17076:1 17284:1 17291:1 17341:1 17492:217 17555:1 17669:1 17793:1 17914:1 18032:1 18145:1 18269:1 18333:1 18584:1 18676:1 18778:1 18849:1 18892:1 18915:1 18958:1 18983:1 19078:1 19214:1 19274:1 19297:1 19358:1 19388:1 19435:1 19487:1 19510:1 19612:1 19623:1 20131:1 20290:1 20401:2 20415:1 20421:2 20488:1 20577:1 20796:1 20864:1 20894:1 20994:1 21072:1 21173:2 21236:1 21241:1 21242:1 21329:1 21337:1 21345:1 21439:1 21632:1 21709:1 21904:1 21975:1 21987:1 22157:1 22176:1 22309:1 22333:1 22340:1 22405:1 22438:1 22502:1 22572:1 22762:1 22876:1 23003:1 23052:1 23191:1 23240:1 23245:1 23250:1 23277:1 23535:1 23735:1 23866:1 23873:1 23902:1 23904:1 23987:1 24271:1 24324:1 24430:1 24598:1 24655:1 24730:1 24734:1 24759:1 24809:1 24899:1 24928:3 25071:1 25387:1 25434:1 25488:1 25515:1 25537:1 25587:1 25704:1 25728:1 25788:1 25790:1 25793:1 25835:1 25877:1 26068:1 26184:1 26275:1 26312:1 26322:1 26352:1 26442:1 26468:1 26609:1 26647:2 26666:1 26681:1 26821:1 26898:1 26990:1 27050:1 27078:1 27095:1 27137:2 27497:1 27557:2 27696:3
12 74:1 111:1 141:1 202:1 328:1 356:1 378:1 418:2 441:1 603:1 725:1 861:1 867:1 881:1 888:2 994:1 1088:1 1192:1 1240:1 1249:1 1287:1 1344:1 1354:1 1459:1 1564:1 1565:1 1625:1 1660:1 1691:1 1795:1 1831:1 1848:1 1864:1 1897:1 2007:1 2080:1 2191:1 2197:2 2200:1 2235:1 2249:1 2256:1 2261:1 2262:1 2265:1 2270:1 2338:1 2339:1 2354:1 2501:1 2580:1 2583:1 2589:1 2741:1 2756:1 2927:1 2928:1 3160:1 3223:1 3232:1 3244:1 3402:1 3426:1 3460:1 3500:1 3607:1 3674:1 3713:1 3726:1 3806:2 3844:2 3876:1 3916:1 4030:1 4145:1 4163:1 4258:1 4281:1 4346:1 4472:1 4550:1 4710:1 4814:3 4828:1 4838:1 5045:2 5118:1 5133:1 5141:2 5163:2 5188:6 5242:1 5274:1 5402:1 5527:1 5705:1 5777:1 5788:1 5794:1 5864:1 5917:1 5994:1 6003:1 6008:1 6096:1 6110:1 6115:1 6117:2 6260:1 6362:1 6414:1 6516:1 6545:1 6578:1 6656:1 6932:1 6964:1 7146:1 7155:1 7250:1 7263:1 7328:2 7329:1 7352:1 7394:6 7419:1 7422:1 7488:1 7522:1 7550:1 7871:1 7947:1 8091:1 8207:1 8247:2 8433:1 8599:1 8630:1 8707:1 8733:1 8796:1 8883:1 8990:1 9006:1 9066:1 9133:1 9175:1 9244:1 9250:1 9433:2 9481:2 9583:1 9747:1 9876:1 9882:1 10145:1 10148:1 10155:2 10359:1 10365:2 10380:1 10419:1 10473:1 10488:2 10526:1 10573:1 10714:1 10740:1 10750:1 10767:1 10777:1 10866:1 10918:2 10961:1 11053:1 11096:1 11125:1 11151:1 11194:1 11333:1 11344:1 11443:1 11488:1 11785:1 11999:1 12001:1 12075:1 12272:1 12337:1 12356:1 12396:1 12445:1 12548:2 12632:1 12698:1 12815:2 12827:1 12857:1 12859:1 12902:1 13010:1 13128:1 13166:1 13320:1 13386:1 13483:1 13498:1 13499:1 13534:1 13678:1 13691:1 13874:1 13915:1 13919:3 13956:1 14150:1 14170:1 14176:1 14245:1 14342:1 14429:1 14467:1 14475:1 14479:1 14480:1 14534:1 14575:1 14595:1 14602:1 14733:2 14754:1 14774:1 14782:1 14812:2 14903:1 14962:1 14970:1 15070:1 15141:1 15193:2 15265:1 15297:1 15381:1 15408:1 15413:1 15610:1 15652:1 15672:1 15864:1 16005:1 16111:1 16158:1 16240:1 16258:1 16367:1 16379:1 16486:1 16586:1 16668:1 16678:1 16718:1 16720:1 16744:1 16766:1 16767:1 16768:1 16786:1 16803:1 16961:1 17022:1 17076:1 17284:1 17291:1 17328:1 17341:1 17492:293 17555:1 17669:1 17793:1 17914:1 18032:1 18145:1 18269:2 18333:1 18485:1 18584:1 18672:1 18676:1 18776:1 18778:1 18849:2 18892:1 18915:1 18958:1 18983:1 19078:1 19214:1 19240:1 19274:1 19297:1 19358:1 19388:1 19435:1 19487:1 19510:1 19612:1 19623:1 19651:1 20131:1 20196:1 20251:1 20290:1 20401:2 20415:1 20421:2 20446:1 20488:1 20577:1 20610:1 20796:1 20864:1 20894:1 20994:2 21072:1 21173:2 21236:1 21241:1 21242:1 21329:1 21337:1 21345:1 21430:1 21435:1 21439:1 21632:1 21709:1 21904:1 21919:1 21975:1 21987:1 22119:1 22157:1 22176:1 22309:1 22333:1 22340:1 22405:1 22438:1 22502:1 22572:1 22737:1 22762:1 22838:1 22876:1 23003:2 23052:1 23128:1 23191:1 23240:1 23245:1 23250:1 23277:1 23535:1 23675:1 23694:1 23735:1 23866:2 23873:2 23902:1 23904:1 23987:1 24008:1 24271:1 24324:1 24430:1 24598:1 24655:1 24730:1 24734:1 24759:1 24809:1 24899:2 24928:3 25000:1 25071:1 25387:1 25434:1 25473:1 25488:1 25515:1 25537:1 25539:1 25545:1 25587:1 25704:1 25728:1 25788:1 25790:1 25793:1 25835:1 25866:1 25877:1 25912:1 26068:1 26174:1 26184:1 26275:1 26312:1 26322:1 26352:1 26442:1 26446:1 26468:1 26498:1 26609:2 26647:3 26666:1 26681:1 26821:1 26853:1 26898:1 26990:1 27050:1 27078:1 27095:1 27133:1 27137:2 27479:1 27489:1 27497:1 27557:2 27696:3
12 74:1 111:1 141:1 202:1 328:1 356:1 378:1 418:2 441:1 603:1 725:1 861:1 867:1 881:1 888:2 994:1 1054:1 1088:1 1192:1 1240:1 1249:1 1287:1 1344:1 1354:1 1397:1 1459:1 1564:1 1565:1 1625:1 1660:1 1691:1 1795:1 1831:1 1848:1 1864:1 1897:1 2007:1 2080:1 2148:1 2191:1 2197:2 2200:1 2235:1 2249:1 2256:1 2261:1 2262:1 2265:1 2270:1 2338:1 2339:1 2354:1 2501:1 2526:1 2580:1 2583:1 2589:1 2620:1 2741:2 2756:1 2927:1 2928:1 3160:1 3223:1 3232:1 3244:1 3402:1 3426:1 3460:1 3500:1 3607:1 3674:1 3713:1 3725:1 3726:1 3806:2 3844:2 3876:1 3916:1 4030:1 4145:1 4163:1 4180:1 4258:1 4281:1 4346:1 4472:1 4550:1 4581:1 4605:1 4710:1 4814:3 4828:1 4830:1 4838:1 4879:1 5045:2 5118:1 5133:1 5141:2 5163:3 5188:6 5242:1 5274:1 5382:1 5402:1 5496:1 5527:1 5665:1 5705:1 5777:1 5788:1 5794:1 5864:1 5917:1 5994:1 6003:1 6008:1 6096:1 6110:1 6115:1 6117:2 6260:1 6362:1 6414:1 6493:1 6516:1 6545:2 6578:1 6656:1 6798:1 6932:1 6964:1 7117:1 7146:1 7155:1 7250:1 7263:1 7328:2 7329:1 7352:1 7394:6 7419:1 7422:1 7488:1 7522:1 7550:1 7733:1 7871:1 7905:1 7947:1 8091:1 8207:1 8247:2 8259:1 8433:1 8599:1 8630:1 8707:1 8733:1 8796:1 8883:1 8990:1 9006:1 9066:1 9133:1 9175:1 9244:1 9250:1 9287:1 9433:2 9481:2 9583:1 9650:1 9747:1 9876:1 9882:1 9999:1 10059:1 10135:1 10145:1 10148:1 10155:2 10359:1 10365:2 10380:1 10419:1 10473:1 10488:2 10526:1 10573:1 10633:1 10714:1 10740:1 10750:1 10767:1 10777:1 10866:1 10889:1 10918:2 10961:1 11053:1 11096:1 11125:1 11151:1 11194:1 11333:1 11344:1 11443:1 11488:1 11512:1 11785:1 11855:1 11979:1 11980:1 11999:1 12001:1 12009:1 12075:1 12272:1 12337:1 12356:1 12396:1 12445:1 12548:2 12632:1 12648:1 12698:1 12815:2 12827:1 12857:1 12859:1 12902:1 13010:1 13128:1 13166:1 13320:1 13386:1 13483:1 13498:1 13499:1 13534:1 13606:1 13678:1 13691:1 13846:1 13874:1 13915:1 13919:3 13956:1 14150:1 14170:1 14176:1 14245:1 14342:1 14429:1 14467:1 14475:1 14479:1 14480:1 14534:1 14575:1 14595:1 14602:1 14733:2 14754:1 14770:1 14774:1 14782:1 14812:2 14903:1 14962:1 14970:1 15070:1 15120:1 15141:1 15193:2 15265:1 15297:1 15381:1 15408:1 15413:1 15579:1 15610:1 15652:1 15672:1 15864:1 16005:1 16111:1 16158:1 16240:1 16258:1 16282:1 16367:1 16379:1 16486:1 16586:1 16668:1 16678:1 16718:1 16720:1 16744:1 16766:1 16767:1 16768:1 16786:1 16803:1 16961:1 16990:1 17022:1 17076:1 17284:1 17291:1 17328:1 17341:1 17492:336 17555:1 17669:1 17793:1 17914:1 18032:1 18145:1 18269:2 18333:1 18485:2 18584:1 18672:1 18676:1 18776:1 18778:1 18849:2 18892:1 18915:1 18958:1 18983:1 19078:1 19214:1 19240:1 19274:1 19297:1 19358:1 19388:1 19435:1 19487:1 19510:1 19558:1 19612:1 19623:1 19647:1 19651:2 19706:1 20131:1 20196:1 20251:1 20290:1 20401:2 20415:1 20421:2 20446:1 20488:1 20577:1 20610:1 20613:1 20796:1 20864:1 20894:1 20994:2 21072:1 21121:1 21173:2 21236:1 21241:1 21242:1 21252:1 21329:1 21337:1 21345:1 21430:1 21435:1 21439:1 21632:1 21709:1 21777:1 21904:1 21919:1 21975:1 21987:1 22119:1 22157:1 22176:1 22309:1 22333:1 22340:1 22351:1 22405:1 22438:1 22502:1 22572:1 22578:1 22737:1 22762:1 22838:1 22876:1 23003:2 23052:1 23128:2 23191:1 23240:1 23245:1 23250:1 23277:1 23535:1 23675:1 23694:1 23735:1 23866:2 23873:2 23878:1 23902:1 23904:1 23987:1 24008:1 24171:1 24271:1 24324:1 24330:1 24397:1 24430:2 24598:1 24655:1 24730:1 24734:1 24759:1 24809:1 24839:1 24899:2 24928:3 25000:1 25071:1 25161:1 25349:1 25387:1 25434:1 25473:1 25488:1 25515:1 25537:1 25539:1 25545:1 25587:1 25704:1 25728:1 25778:1 25788:1 25790:1 25793:1 25835:1 25866:1 25877:1 25912:1 26068:1 26092:1 26174:1 26184:1 26275:1 26312:1 26322:1 26352:1 26442:1 26446:1 26468:1 26482:1 26498:1 26531:1 26609:2 26647:3 26666:1 26681:1 26821:1 26853:1 26898:1 26990:1 27050:1 27078:1 27095:1 27133:1 27137:2 27180:1 27372:1 27479:1 27489:1 27497:1 27557:2 27696:3
12 43:1 74:1 111:1 141:1 202:1 328:1 356:1 378:1 418:3 441:1 603:1 725:1 861:1 867:1 881:1 888:2 994:1 1019:1 1054:1 1088:1 1192:1 1240:1 1249:1 1287:1 1344:1 1354:1 1397:1 1459:1 1564:1 1565:1 1625:1 1656:1 1660:1 1691:1 1795:1 1831:1 1848:1 1864:1 1897:1 2006:1 2007:1 2080:1 2148:1 2191:1 2197:2 2200:1 2235:1 2249:1 2253:1 2256:1 2261:1 2262:1 2265:1 2270:1 2307:1 2338:1 2339:1 2354:1 2501:1 2526:1 2580:1 2583:1 2589:1 2620:1 2699:3 2741:2 2756:1 2927:1 2928:1 3160:1 3174:1 3191:1 3223:1 3232:1 3244:1 3402:1 3426:1 3460:1 3500:1 3607:1 3674:1 3713:1 3725:1 3726:1 3806:2 3844:2 3876:1 3916:1 3921:1 4030:1 4145:1 4163:1 4180:1 4258:1 4281:1 4346:1 4404:1 4472:1 4550:1 4581:1 4605:1 4710:1 4814:3 4828:1 4830:1 4838:1 4850:1 4879:1 5045:2 5118:1 5133:1 5141:2 5163:3 5188:6 5242:1 5274:1 5335:1 5355:1 5382:1 5402:1 5496:1 5527:1 5665:1 5705:1 5777:1 5788:1 5794:1 5864:1 5917:1 5994:1 6003:1 6008:1 6096:1 6110:1 6115:1 6117:2 6260:1 6362:1 6414:1 6455:1 6493:1 6516:1 6545:2 6578:1 6614:1 6656:1 6798:1 6878:2 6932:1 6958:1 6964:1 6990:1 7117:1 7146:1 7155:1 7198:1 7250:1 7263:1 7328:2 7329:1 7352:1 7394:6 7419:1 7422:1 7432:1 7480:1 7488:1 7522:2 7550:1 7733:1 7871:1 7905:1 7916:1 7947:1 8091:1 8204:1 8207:1 8221:1 8247:2 8259:1 8335:1 8433:1 8483:1 8523:1 8599:1 8630:1 8707:1 8732:1 8733:1 8750:3 8787:1 8796:1 8866:1 8883:1 8990:1 9006:1 9066:1 9133:1 9147:1 9175:1 9244:1 9250:1 9287:1 9433:2 9481:2 9583:1 9650:1 9665:1 9747:1 9808:1 9876:1 9882:1 9995:1 9999:1 10059:1 10135:1 10145:1 10148:1 10155:2 10162:1 10359:1 10365:2 10380:1 10419:1 10473:1 10488:2 10519:1 10526:1 10573:1 10633:1 10714:1 10740:1 10750:1 10767:1 10777:1 10812:1 10866:1 10889:1 10918:2 10961:1 11053:1 11096:1 11125:1 11151:1 11194:1 11333:1 11344:1 11443:1 11488:1 11512:1 11581:1 11761:1 11785:1 11855:1 11869:1 11972:1 11976:1 11979:1 11980:1 11999:1 12001:1 12009:1 12075:1 12209:1 12272:1 12337:1 12356:1 12360:1 12376:1 12396:1 12445:1 12533:1 12548:2 12632:1 12648:1 12698:1 12815:2 12827:1 12857:1 12859:1 12881:1 12902:1 12986:1 13010:1 13081:1 13128:1 13148:2 13166:1 13320:1 13330:1 13386:1 13483:1 13498:1 13499:1 13534:1 13606:1 13678:1 13691:1 13709:1 13758:1 13846:1 13874:1 13915:1 13919:3 13956:1 14150:1 14170:1 14176:1 14245:1 14342:1 14355:1 14429:1 14467:1 14475:1 14479:1 14480:1 14534:1 14575:1 14595:1 14602:1 14733:2 14754:1 14770:1 14774:1 14782:1 14797:1 14812:2 14903:1 14962:1 14970:1 15021:1 15070:1 15120:1 15121:1 15141:1 15193:2 15261:1 15265:1 15287:1 15297:1 15381:1 15390:1 15408:1 15413:1 15532:1 15555:1 15579:1 15610:1 15652:1 15672:1 15860:1 15864:1 16005:1 16066:1 16109:1 16111:1 16158:1 16240:1 16258:1 16282:1 16367:1 16379:1 16443:1 16451:1 16486:1 16586:1 16616:1 16668:1 16678:1 16718:1 16720:1 16744:1 16766:1 16767:1 16768:1 16786:1 16803:1 16961:1 16990:1 16991:1 17022:1 17076:1 17284:1 17291:2 17298:1 17328:1 17341:1 17492:396 17555:1 17669:1 17793:1 17914:1 18032:1 18145:1 18269:2 18333:1 18485:2 18494:1 18525:1 18584:1 18672:1 18676:1 18776:1 18778:1 18849:2 18892:1 18915:1 18958:1 18983:1 19078:1 19214:1 19240:1 19274:1 19297:1 19358:1 19388:1 19435:1 19487:1 19510:1 19558:1 19612:1 19623:1 19647:1 19651:2 19706:1 19809:1 20131:1 20196:1 20251:1 20290:1 20401:2 20415:1 20421:2 20446:1 20488:1 20577:1 20610:1 20613:1 20659:1 20776:1 20796:1 20841:1 20864:1 20894:1 20994:2 21072:1 21121:1 21173:3 21185:1 21236:1 21241:1 21242:1 21252:1 21315:1 21329:1 21337:1 21345:1 21430:1 21435:1 21439:1 21632:1 21709:1 21777:1 21904:1 21919:1 21968:1 21975:1 21987:1 22024:1 22074:1 22119:1 22148:1 22157:1 22176:1 22309:1 22323:1 22333:1 22340:1 22351:1 22405:1 22438:1 22502:1 22572:1 22578:1 22586:1 22707:3 22737:1 22762:1 22838:1 22876:1 22963:1 23003:2 23052:1 23128:2 23191:1 23240:1 23245:1 23250:1 23277:1 23535:1 23675:1 23694:1 23735:1 23866:2 23873:2 23878:1 23902:1 23904:1 23918:1 23987:1 24008:1 24085:1 24171:1 24271:2 24324:1 24330:1 24397:1 24430:2 24598:2 24655:1 24730:1 24734:1 24759:1 24809:1 24839:1 24899:2 24928:3 25000:1 25071:1 25161:1 25349:1 25387:1 25434:1 25473:2 25488:1 25515:1 25537:1 25539:1 25543:1 25545:1 25587:1 25704:1 25728:1 25778:1 25788:1 25790:1 25793:1 25835:1 25866:1 25877:1 25912:1 26013:1 26068:1 26071:1 26092:1 26174:1 26184:1 26275:1 26280:3 26312:1 26322:1 26352:1 26442:1 26446:3 26468:1 26482:1 26498:1 26531:1 26609:2 26647:3 26666:1 26681:1 26821:1 26853:1 26898:1 26977:1 26981:1 26990:1 27050:1 27078:1 27095:1 27133:1 27137:2 27180:1 27250:1 27372:1 27479:1 27489:1 27497:1 27557:2 27696:3
12 37:1 43:1 74:1 111:1 141:1 202:1 294:1 328:1 356:2 378:1 418:3 441:1 535:1 603:1 725:1 861:1 867:1 881:1 888:2 893:1 903:1 994:1 1019:1 1054:1 1088:1 1192:1 1195:1 1240:1 1249:1 1287:1 1344:1 1354:1 1397:3 1459:1 1564:1 1565:1 1625:1 1656:1 1660:1 1691:1 1795:1 1831:2 1848:1 1864:1 1897:1 2006:1 2007:1 2080:1 2148:1 2191:1 2197:2 2200:1 2235:1 2249:1 2253:1 2256:1 2261:1 2262:1 2265:1 2270:1 2307:1 2338:1 2339:1 2354:1 2368:1 2451:1 2501:1 2526:1 2580:1 2583:1 2589:1 2620:1 2699:3 2741:2 2756:1 2857:1 2927:1 2928:1 3160:1 3174:1 3191:1 3223:1 3232:1 3244:1 3399:1 3402:1 3426:1 3460:2 3500:1 3607:1 3674:1 3713:1 3725:1 3726:1 3753:1 3806:2 3844:2 3876:1 3916:1 3921:1 3992:1 4030:1 4145:1 4163:1 4180:1 4258:1 4281:1 4346:1 4404:1 4472:1 4550:1 4581:1 4605:1 4710:2 4814:3 4828:1 4830:1 4838:1 4850:1 4879:1 5045:2 5118:1 5133:1 5141:2 5163:4 5188:6 5242:1 5274:1 5335:1 5355:1 5382:1 5402:1 5496:1 5527:1 5665:1 5669:1 5705:1 5750:1 5752:2 5777:1 5779:1 5788:1 5794:1 5813:1 5864:1 5917:1 5994:1 6003:1 6008:1 6096:1 6110:1 6115:1 6117:2 6260:2 6362:1 6414:2 6455:1 6493:1 6516:1 6545:3 6578:1 6614:1 6656:1 6798:1 6878:2 6932:1 6958:1 6964:1 6990:1 7117:1 7143:1 7146:1 7155:1 7180:1 7198:1 7250:1 7263:1 7328:2 7329:1 7346:1 7352:1 7356:1 7394:6 7419:2 7422:1 7432:1 7480:1 7488:2 7522:2 7550:1 7733:1 7852:1 7871:1 7905:1 7916:1 7947:1 8062:1 8091:1 8204:1 8207:1 8221:1 8247:2 8259:1 8335:1 8433:1 8483:1 8490:1 8523:1 8587:1 8599:1 8630:1 8707:1 8732:1 8733:1 8750:3 8787:1 8796:1 8866:1 8883:2 8965:1 8990:1 9006:1 9066:1 9133:1 9147:1 9175:1 9220:1 9244:1 9250:1 9287:1 9433:2 9481:2 9583:1 9650:1 9665:1 9747:1 9808:1 9876:1 9882:2 9995:1 9999:1 10059:2 10135:1 10145:1 10148:1 10155:2 10162:1 10359:1 10365:2 10380:1 10386:1 10419:1 10473:1 10488:3 10519:1 10526:1 10537:1 10573:1 10595:1 10633:1 10714:1 10740:1 10750:1 10767:1 10777:1 10812:1 10866:1 10889:1 10918:2 10961:1 11008:1 11053:1 11077:1 11096:1 11125:1 11151:1 11194:1 11333:1 11344:1 11443:1 11477:1 11488:1 11512:1 11581:1 11630:1 11761:1 11785:1 11855:1 11869:1 11972:1 11976:1 11979:1 11980:1 11999:1 12001:1 12009:1 12075:1 12185:1 12209:1 12272:1 12337:1 12356:1 12360:1 12376:1 12396:1 12445:1 12533:1 12548:2 12603:1 12632:1 12648:1 12664:1 12698:1 12718:1 12815:2 12827:1 12851:1 12857:1 12859:1 12881:1 12902:1 12986:1 13010:1 13081:1 13114:1 13128:1 13148:2 13166:1 13320:1 13330:1 13386:1 13483:1 13498:1 13499:1 13534:1 13606:1 13678:1 13691:1 13709:1 13758:1 13846:1 13874:2 13915:1 13919:3 13956:1 14049:1 14150:1 14170:1 14176:1 14245:1 14342:1 14355:1 14429:1 14462:1 14467:1 14475:1 14476:1 14479:1 14480:1 14534:1 14575:1 14595:1 14602:2 14733:2 14754:1 14770:1 14774:1 14782:1 14786:1 14797:1 14812:2 14903:1 14962:1 14970:1 15021:1 15070:1 15120:1 15121:1 15141:1 15193:2 15261:1 15265:1 15287:1 15297:1 15381:1 15390:1 15408:1 15413:1 15532:1 15555:1 15579:1 15610:1 15635:1 15652:1 15672:1 15712:1 15860:1 15864:1 16005:1 16066:1 16109:1 16111:1 16158:1 16240:1 16258:1 16282:1 16367:1 16379:1 16443:1 16451:1 16468:1 16486:1 16563:1 16586:1 16616:1 16668:1 16678:2 16716:1 16718:1 16720:1 16721:1 16744:1 16766:1 16767:1 16768:1 16786:1 16803:1 16961:1 16973:1 16990:1 16991:1 17022:1 17076:1 17284:1 17291:2 17298:1 17328:1 17341:1 17360:1 17492:437 17520:1 17555:1 17669:1 17793:1 17914:1 18032:1 18145:1 18269:2 18333:1 18366:1 18485:2 18494:1 18525:1 18584:1 18606:1 18672:1 18676:1 18776:1 18778:1 18849:2 18892:1 18915:1 18958:1 18983:1 18995:1 19078:1 19097:1 19109:1 19214:1 19240:1 19274:1 19297:1 19358:1 19388:1 19435:1 19465:1 19487:1 19510:1 19558:1 19612:1 19623:1 19647:2 19651:2 19706:1 19809:1 19934:1 20131:1 20196:1 20251:1 20290:1 20401:2 20415:1 20421:2 20446:1 20488:1 20577:1 20591:1 20610:1 20613:1 20659:1 20762:1 20776:1 20796:2 20841:1 20864:1 20894:1 20994:2 21011:1 21030:1 21072:1 21121:1 21173:3 21185:1 21236:1 21241:1 21242:1 21252:1 21260:1 21315:1 21329:1 21337:1 21345:1 21430:1 21435:1 21439:1 21632:1 21709:1 21777:1 21904:1 21919:1 21968:1 21975:1 21987:1 22024:1 22074:1 22119:1 22148:1 22157:2 22176:1 22208:1 22309:1 22323:1 22333:1 22340:1 22351:1 22405:1 22409:1 22438:1 22502:1 22572:1 22578:1 22586:1 22707:3 22737:1 22762:1 22838:1 22876:1 22963:1 22967:1 23003:2 23052:1 23128:2 23191:1 23240:1 23245:1 23247:1 23250:1 23271:1 23277:1 23415:1 23535:1 23554:1 23633:1 23675:1 23694:1 23735:1 23866:2 23873:2 23878:1 23902:1 23904:1 23914:1 23918:1 23964:1 23987:1 24008:1 24085:1 24171:1 24271:2 24324:1 24330:1 24352:1 24397:1 24430:2 24598:2 24655:1 24730:1 24734:1 24759:1 24809:1 24839:1 24899:2 24928:3 25000:1 25045:1 25071:1 25161:1 25349:1 25387:1 25434:1 25473:2 25488:1 25515:1 25537:1 25539:1 25543:1 25545:1 25587:1 25635:1 25663:1 25704:1 25728:1 25778:1 25788:1 25790:1 25793:1 25835:1 25866:1 25877:1 25912:1 26013:1 26068:1 26071:1 26092:1 26174:1 26184:1 26275:1 26280:3 26312:1 26322:1 26352:1 26429:1 26442:1 26446:3 26451:1 26468:1 26482:1 26498:1 26531:1 26609:2 26647:3 26666:2 26681:1 26821:1 26853:1 26872:1 26898:1 26968:1 26977:1 26981:1 26990:1 27050:1 27078:1 27095:1 27133:1 27137:2 27180:1 27250:1 27372:1 27479:1 27489:1 27497:1 27499:1 27557:2 27696:3
12 37:1 43:1 74:1 111:1 141:1 202:1 209:1 282:1 294:1 328:1 356:2 378:1 418:3 441:1 535:1 603:1 725:1 861:1 867:1 881:1 888:2 893:1 903:1 990:1 994:1 1019:1 1054:1 1088:1 1192:1 1195:1 1203:1 1240:1 1249:1 1277:1 1287:1 1301:1 1344:1 1354:1 1397:3 1459:1 1493:1 1564:1 1565:1 1625:1 1656:1 1660:1 1691:1 1791:1 1795:1 1815:1 1831:2 1848:1 1864:1 1890:1 1897:1 1905:1 1922:1 2006:1 2007:1 2080:1 2148:1 2191:1 2197:2 2200:1 2208:1 2235:1 2249:1 2253:1 2256:1 2258:1 2261:1 2262:1 2265:1 2270:2 2272:1 2287:1 2307:1 2338:1 2339:1 2354:1 2368:1 2451:1 2501:1 2526:1 2580:1 2583:1 2589:1 2620:1 2699:3 2741:2 2756:1 2857:1 2927:1 2928:1 2951:1 2957:1 3135:1 3160:1 3174:1 3191:2 3223:1 3232:1 3244:1 3399:1 3402:1 3426:1 3460:2 3500:1 3607:1 3674:1 3703:1 3713:1 3725:1 3726:1 3753:1 3806:2 3844:2 3849:1 3876:1 3916:1 3921:1 3932:1 3992:1 4030:1 4145:1 4163:1 4180:1 4258:1 4281:1 4346:1 4357:1 4404:1 4472:1 4494:1 4550:1 4581:1 4605:1 4710:2 4814:3 4828:1 4830:1 4838:1 4850:1 4879:1 5045:2 5118:1 5133:1 5141:2 5163:4 5188:6 5242:1 5274:1 5335:1 5355:2 5382:1 5402:1 5407:1 5496:1 5511:1 5527:1 5665:1 5669:1 5705:1 5750:1 5752:2 5777:1 5779:1 5788:1 5794:1 5813:1 5864:1 5917:1 5994:1 6003:1 6008:1 6092:1 6096:1 6110:1 6115:2 6117:2 6246:1 6260:2 6362:1 6414:2 6455:1 6493:1 6516:2 6545:3 6578:1 6614:1 6656:1 6798:1 6878:2 6932:1 6958:1 6964:1 6975:1 6990:1 7117:1 7143:1 7146:2 7155:1 7180:1 7198:1 7250:1 7263:1 7328:3 7329:2 7346:1 7352:1 7356:1 7394:9 7419:2 7422:1 7432:1 7480:1 7488:2 7522:2 7550:1 7725:1 7733:1 7811:1 7852:1 7871:1 7905:1 7916:1 7947:1 8062:1 8072:1 8091:1 8204:1 8207:1 8221:1 8247:2 8259:1 8335:1 8366:1 8433:1 8483:1 8490:1 8523:1 8587:1 8599:1 8630:1 8707:1 8732:1 8733:1 8750:3 8787:1 8796:1 8866:1 8880:1 8883:2 8965:1 8990:1 9006:1 9066:1 9108:1 9133:1 9147:2 9175:1 9220:1 9244:1 9250:1 9287:2 9433:2 9481:2 9484:1 9523:1 9583:1 9650:1 9665:1 9747:1 9808:1 9876:1 9882:2 9995:1 9999:1 10059:2 10135:1 10145:1 10148:1 10155:3 10162:1 10182:1 10359:1 10365:2 10380:1 10386:1 10419:1 10473:1 10488:3 10519:1 10526:1 10537:1 10573:1 10595:1 10633:1 10714:1 10740:1 10750:1 10767:1 10777:1 10812:1 10866:1 10889:1 10918:2 10961:1 10978:1 11008:1 11053:1 11077:1 11096:1 11125:1 11151:1 11194:1 11333:1 11344:1 11443:1 11477:1 11488:1 11512:1 11549:1 11581:2 11630:1 11756:1 11761:1 11785:1 11855:1 11869:1 11972:2 11976:1 11979:1 11980:1 11999:1 12001:1 12009:1 12075:1 12185:1 12209:1 12272:1 12337:1 12355:1 12356:1 12360:1 12376:1 12396:1 12445:1 12515:1 12533:1 12548:2 12603:1 12632:1 12648:1 12664:1 12698:1 12718:1 12815:2 12827:1 12851:1 12857:1 12859:1 12881:1 12902:1 12986:1 13010:1 13081:1 13114:1 13128:1 13148:2 13164:1 13166:1 13320:1 13330:2 13386:1 13399:1 13483:1 13498:1 13499:1 13502:1 13534:1 13606:1 13628:1 13678:1 13691:1 13709:1 13758:1 13846:1 13874:2 13915:1 13919:3 13956:1 14049:1 14150:1 14160:1 14170:1 14176:1 14245:1 14342:1 14355:1 14429:1 14462:1 14467:1 14475:1 14476:1 14479:1 14480:1 14520:1 14534:1 14575:1 14595:1 14602:2 14733:2 14754:1 14770:1 14773:1 14774:1 14782:1 14786:1 14797:1 14812:2 14903:1 14962:2 14970:1 15021:1 15070:1 15120:1 15121:1 15140:1 15141:1 15193:2 15261:1 15265:1 15287:2 15297:1 15381:1 15390:1 15408:1 15413:1 15504:1 15532:1 15555:1 15579:1 15610:1 15635:1 15652:1 15672:1 15712:1 15714:1 15860:1 15864:1 15898:1 16005:1 16066:1 16109:1 16111:1 16158:1 16240:1 16258:1 16282:1 16309:1 16367:1 16379:1 16443:1 16447:1 16451:1 16456:1 16468:1 16486:1 16563:1 16586:1 16616:1 16668:1 16678:2 16716:1 16718:1 16720:1 16721:1 16744:1 16766:1 16767:1 16768:1 16786:1 16803:1 16961:1 16966:1 16973:1 16990:1 16991:1 17022:1 17076:1 17094:1 17284:1 17291:2 17298:1 17328:1 17341:1 17360:1 17492:467 17520:1 17555:1 17669:1 17793:1 17914:1 18003:1 18032:1 18087:1 18145:1 18269:2 18333:1 18366:1 18380:1 18485:2 18494:1 18525:1 18584:1 18606:1 18672:1 18676:1 18776:1 18778:1 18849:2 18892:1 18915:1 18958:1 18983:1 18995:1 19078:1 19097:1 19109:1 19214:1 19240:1 19274:1 19297:1 19358:1 19388:1 19426:1 19435:1 19465:1 19487:1 19510:1 19558:1 19596:1 19612:1 19623:1 19647:2 19648:1 19651:2 19706:1 19809:1 19934:1 20131:1 20196:1 20251:1 20290:1 20401:2 20415:1 20421:2 20446:1 20488:1 20577:1 20591:1 20610:1 20613:1 20659:1 20762:1 20776:1 20796:2 20841:1 20864:1 20894:1 20988:1 20994:2 21007:1 21011:1 21030:1 21040:1 21072:1 21121:1 21159:1 21173:3 21185:1 21236:1 21241:1 21242:1 21252:1 21260:1 21315:1 21329:1 21337:1 21345:1 21430:1 21435:1 21439:1 21554:1 21632:1 21709:2 21777:1 21904:1 21919:1 21927:1 21968:1 21975:1 21987:1 22024:1 22074:1 22119:1 22148:1 22157:2 22176:1 22189:1 22208:1 22309:1 22323:1 22333:1 22340:1 22351:1 22405:1 22409:1 22438:1 22502:1 22572:1 22578:1 22586:1 22679:1 22707:3 22737:1 22762:1 22838:1 22876:1 22956:1 22963:1 22967:1 23000:1 23003:3 23052:1 23128:2 23191:1 23240:1 23245:1 23247:1 23250:1 23271:1 23277:1 23373:1 23415:1 23535:1 23554:1 23608:1 23633:1 23675:2 23694:1 23735:1 23866:2 23873:2 23878:1 23898:1 23902:1 23904:1 23914:1 23918:1 23964:1 23987:1 24008:1 24085:1 24171:1 24271:2 24324:1 24330:1 24352:1 24397:1 24430:2 24463:1 24466:1 24598:2 24655:1 24721:1 24730:1 24734:1 24759:1 24809:1 24839:1 24861:1 24899:2 24928:3 25000:1 25045:1 25071:1 25079:1 25161:1 25349:1 25387:1 25434:1 25473:2 25488:1 25515:1 25537:1 25539:1 25543:1 25545:1 25587:1 25635:1 25663:1 25704:2 25728:1 25778:1 25788:1 25790:1 25793:1 25811:1 25835:1 25866:1 25877:1 25912:1 26013:2 26068:1 26071:1 26084:1 26092:1 26174:1 26184:1 26275:1 26280:3 26312:1 26322:1 26352:1 26429:1 26442:1 26446:3 26451:1 26468:1 26482:1 26498:1 26531:1 26609:3 26647:4 26666:2 26681:1 26821:1 26853:1 26872:1 26898:1 26968:1 26977:1 26981:1 26990:1 27050:1 27078:1 27095:1 27118:1 27133:1 27137:2 27180:1 27250:1 27372:1 27479:1 27489:1 27497:1 27499:1 27557:2 27691:1 27696:3
12 37:1 43:1 74:1 111:1 141:1 202:1 209:1 282:1 294:1 328:1 356:2 378:1 418:3 441:1 535:1 603:1 725:1 861:1 867:1 881:1 888:2 893:1 903:1 990:1 994:1 1019:1 1054:1 1088:1 1192:1 1195:1 1203:1 1240:1 1249:1 1277:1 1287:1 1301:1 1344:1 1354:1 1397:3 1459:1 1493:1 1535:2 1564:1 1565:1 1625:1 1656:1 1660:1 1691:1 1791:1 1795:1 1815:1 1831:2 1848:1 1864:1 1890:1 1897:1 1905:1 1922:1 2006:1 2007:1 2080:1 2148:1 2191:2 2197:2 2200:1 2208:1 2235:1 2249:1 2253:1 2256:1 2258:1 2261:1 2262:1 2265:1 2270:2 2272:1 2287:1 2307:1 2338:1 2339:1 2354:1 2368:1 2451:1 2501:1 2526:1 2580:1 2583:1 2589:1 2620:1 2699:3 2741:2 2756:1 2857:1 2927:1 2928:1 2951:1 2957:1 3135:1 3160:1 3174:1 3191:2 3223:1 3232:1 3244:1 3260:1 3399:1 3402:1 3426:1 3460:2 3500:1 3607:1 3674:1 3703:1 3713:1 3725:1 3726:1 3753:1 3806:2 3844:2 3849:1 3876:1 3916:1 3921:1 3932:1 3992:1 4030:1 4145:1 4163:2 4180:1 4258:1 4281:1 4346:1 4357:1 4404:1 4472:1 4494:1 4550:1 4581:1 4605:1 4710:2 4814:3 4828:1 4830:1 4838:1 4850:1 4879:1 5045:2 5118:1 5133:1 5141:2 5163:4 5188:6 5242:1 5274:1 5335:1 5355:2 5382:1 5402:1 5407:1 5496:1 5511:1 5527:1 5665:1 5669:1 5705:1 5750:1 5752:2 5777:1 5779:1 5788:1 5794:1 5813:1 5864:1 5917:1 5994:1 6003:1 6008:1 6092:1 6096:1 6110:1 6115:2 6117:2 6246:1 6260:2 6362:1 6414:2 6455:1 6493:1 6516:2 6545:3 6578:1 6614:1 6656:1 6798:1 6878:2 6932:1 6958:1 6964:1 6975:1 6990:1 7117:1 7143:1 7146:2 7155:1 7180:1 7198:1 7250:1 7263:1 7328:3 7329:2 7346:1 7352:1 7356:1 7394:9 7419:2 7422:1 7432:1 7480:1 7488:2 7522:2 7550:1 7725:1 7733:1 7811:1 7852:1 7871:1 7905:1 7916:1 7947:1 8062:1 8072:1 8091:1 8204:1 8207:1 8221:1 8247:2 8259:1 8335:1 8366:1 8433:1 8483:1 8490:1 8523:1 8587:1 8599:1 8630:1 8707:1 8732:1 8733:1 8750:3 8787:1 8796:1 8866:1 8880:1 8883:2 8965:1 8990:1 9006:1 9066:1 9108:1 9133:1 9147:2 9175:1 9220:1 9244:1 9250:1 9287:2 9433:2 9481:2 9484:1 9523:1 9583:1 9650:1 9665:1 9747:1 9808:1 9876:1 9882:2 9995:1 9999:1 10054:1 10059:2 10066:1 10135:1 10145:1 10148:1 10155:3 10162:1 10182:1 10359:1 10365:2 10380:1 10386:1 10419:1 10473:1 10488:3 10519:1 10526:1 10537:1 10573:1 10595:1 10633:1 10714:1 10740:1 10750:1 10767:1 10777:1 10812:1 10866:1 10889:1 10918:2 10961:1 10978:1 11008:1 11053:1 11077:1 11096:1 11125:1 11151:1 11194:1 11333:1 11344:1 11443:2 11477:2 11488:1 11512:1 11549:1 11581:2 11630:1 11756:1 11761:1 11785:1 11789:1 11855:1 11869:1 11972:2 11976:1 11979:1 11980:1 11999:1 12001:1 12009:1 12075:1 12185:1 12209:1 12272:1 12292:1 12337:1 12355:1 12356:1 12360:1 12376:1 12396:1 12445:1 12515:1 12533:1 12548:2 12603:1 12632:1 12639:1 12648:1 12664:1 12698:1 12718:1 12815:2 12827:1 12851:1 12852:1 12857:1 12859:1 12881:1 12902:1 12986:1 13010:1 13081:1 13114:1 13128:1 13148:2 13164:1 13166:1 13320:1 13330:2 13386:1 13399:1 13483:1 13498:1 13499:1 13502:1 13534:1 13606:1 13628:1 13678:1 13691:1 13709:1 13758:1 13846:1 13874:2 13915:1 13919:3 13956:1 14049:1 14150:1 14160:1 14170:1 14176:1 14245:1 14342:1 14355:1 14429:1 14462:1 14467:1 14475:1 14476:1 14479:1 14480:1 14520:1 14534:1 14575:1 14595:1 14602:2 14733:2 14754:1 14770:1 14773:1 14774:1 14782:1 14786:1 14797:1 14812:2 14820:1 14903:1 14962:2 14970:1 15021:1 15070:1 15120:1 15121:1 15140:1 15141:1 15193:2 15261:1 15265:1 15287:2 15297:1 15381:1 15390:1 15408:1 15413:1 15504:1 15532:1 15555:1 15579:1 15610:1 15635:1 15652:1 15672:1 15712:1 15714:1 15860:1 15864:1 15898:1 16005:1 16035:1 16066:1 16109:1 16111:1 16158:1 16240:1 16258:1 16282:1 16309:1 16367:1 16379:1 16443:1 16447:1 16451:1 16456:1 16468:1 16486:1 16563:1 16586:1 16608:1 16616:1 16668:1 16678:2 16716:1 16718:1 16720:1 16721:1 16744:1 16766:1 16767:1 16768:1 16786:1 16803:1 16961:1 16966:1 16973:1 16990:1 16991:1 17022:1 17076:1 17094:1 17284:1 17291:2 17298:1 17328:1 17341:1 17360:1 17492:523 17520:1 17555:1 17669:1 17793:1 17914:1 18003:1 18032:1 18087:1 18145:1 18269:3 18333:1 18366:1 18380:1 18485:2 18494:1 18525:1 18584:1 18606:1 18672:1 18676:1 18776:1 18778:1 18849:2 18892:1 18915:1 18958:1 18983:1 18995:1 19078:1 19097:1 19109:1 19214:1 19240:1 19274:1 19297:1 19358:1 19388:1 19426:1 19435:1 19465:1 19487:1 19510:1 19558:1 19596:1 19612:1 19623:1 19647:2 19648:1 19651:2 19706:1 19809:2 19934:1 20131:1 20196:1 20251:1 20290:1 20401:2 20415:1 20421:2 20446:1 20488:1 20577:1 20591:1 20610:1 20613:1 20659:1 20762:1 20776:1 20796:2 20841:1 20864:1 20894:1 20988:1 20994:2 21007:1 21011:1 21030:1 21040:1 21072:1 21121:1 21159:1 21173:3 21185:1 21236:1 21241:1 21242:1 21252:1 21260:1 21315:1 21329:1 21337:1 21345:1 21430:2 21435:1 21439:1 21554:1 21632:1 21709:2 21777:1 21904:1 21919:1 21927:1 21968:1 21975:1 21987:1 22024:1 22074:1 22119:1 22148:1 22157:2 22176:1 22189:1 22208:1 22309:1 22323:1 22333:1 22340:1 22351:1 22405:1 22409:1 22438:1 22502:1 22572:1 22578:1 22586:1 22679:1 22707:3 22737:1 22762:1 22838:1 22876:1 22935:1 22956:1 22963:1 22967:1 23000:1 23003:3 23052:1 23128:2 23191:1 23240:1 23245:1 23247:1 23250:1 23271:1 23277:1 23373:1 23415:1 23535:1 23554:1 23608:1 23633:1 23675:2 23694:1 23735:1 23866:2 23873:2 23878:1 23898:1 23902:1 23904:1 23914:1 23918:1 23964:1 23986:1 23987:1 24008:1 24085:1 24171:1 24271:2 24324:1 24330:1 24352:1 24397:1 24430:2 24463:1 24466:1 24598:2 24655:1 24721:1 24730:1 24734:1 24759:1 24809:1 24839:1 24861:1 24899:2 24928:3 25000:1 25045:1 25071:1 25079:1 25161:1 25349:1 25387:1 25434:1 25473:2 25488:1 25515:1 25537:1 25539:1 25543:1 25545:1 25587:1 25623:1 25635:1 25663:1 25704:2 25710:1 25728:1 25778:1 25788:1 25790:1 25793:1 25811:1 25835:1 25866:1 25877:1 25912:1 26013:2 26068:1 26071:1 26084:1 26092:1 26174:1 26184:1 26275:1 26280:3 26312:1 26322:1 26352:1 26429:1 26442:1 26446:3 26451:1 26468:1 26482:1 26498:2 26531:1 26609:3 26647:4 26666:2 26681:1 26709:1 26821:1 26853:1 26872:1 26898:1 26968:1 26977:1 26981:1 26990:1 27050:1 27078:1 27095:1 27118:1 27133:1 27137:2 27180:1 27250:1 27372:1 27479:2 27489:1 27497:1 27499:1 27557:2 27691:1 27696:3
12 37:1 43:1 74:1 111:1 141:1 202:1 209:1 282:1 294:1 328:1 356:2 378:2 418:3 441:1 535:1 603:1 725:1 861:1 867:1 881:1 888:2 893:1 903:1 990:1 994:1 1019:1 1054:1 1088:1 1192:1 1195:1 1203:1 1240:1 1249:1 1277:2 1287:1 1301:1 1344:1 1354:1 1397:4 1454:1 1457:1 1459:1 1493:1 1535:2 1564:1 1565:1 1568:1 1625:1 1656:1 1660:1 1668:1 1691:1 1695:1 1730:1 1791:1 1795:1 1815:1 1831:2 1839:1 1848:1 1864:1 1890:1 1891:1 1897:1 1905:1 1922:1 2006:1 2007:2 2010:1 2058:1 2080:1 2148:1 2191:2 2197:2 2200:1 2208:1 2235:1 2246:1 2249:2 2253:2 2256:1 2258:1 2261:1 2262:1 2265:1 2270:2 2272:1 2287:1 2307:1 2338:2 2339:1 2354:1 2368:1 2381:1 2451:1 2501:1 2526:1 2580:1 2583:1 2589:1 2620:1 2699:3 2741:2 2756:1 2846:1 2857:1 2927:1 2928:1 2951:1 2957:1 3135:1 3160:1 3174:1 3191:2 3223:1 3232:1 3244:1 3260:1 3322:1 3368:1 3399:1 3402:1 3426:1 3460:2 3500:1 3607:1 3674:1 3703:1 3713:1 3725:1 3726:1 3753:1 3806:2 3844:2 3849:1 3876:1 3916:1 3921:1 3932:1 3992:1 4030:1 4104:2 4145:1 4163:2 4180:1 4258:1 4281:1 4346:1 4357:1 4404:1 4472:1 4494:1 4550:1 4581:1 4605:1 4710:4 4738:1 4814:3 4828:1 4830:1 4838:1 4850:1 4879:1 4993:1 5045:2 5118:1 5133:1 5141:2 5163:4 5188:7 5242:1 5274:1 5335:1 5355:2 5382:1 5402:1 5407:1 5496:1 5511:1 5527:1 5665:1 5669:1 5705:1 5750:1 5752:2 5777:1 5779:1 5788:1 5794:1 5813:1 5864:1 5917:1 5994:1 6003:1 6008:1 6092:1 6096:1 6110:1 6113:1 6115:2 6117:2 6246:1 6260:2 6362:1 6414:2 6455:1 6493:1 6516:2 6545:3 6578:1 6614:1 6656:1 6798:1 6878:2 6932:1 6949:1 6958:1 6964:1 6975:1 6990:1 7117:1 7143:2 7144:1 7146:2 7155:1 7180:1 7198:1 7250:1 7263:1 7293:1 7328:3 7329:2 7346:1 7352:1 7356:1 7394:11 7410:1 7419:2 7422:1 7432:1 7480:1 7488:2 7522:2 7550:1 7614:1 7689:1 7725:2 7733:1 7811:1 7852:1 7871:1 7905:1 7916:1 7947:1 8062:1 8072:1 8091:1 8204:1 8207:1 8221:1 8247:2 8259:1 8335:1 8366:1 8433:1 8483:1 8490:1 8511:1 8523:1 8587:1 8599:1 8630:1 8707:1 8732:1 8733:1 8750:3 8787:1 8796:1 8866:1 8880:1 8883:2 8931:1 8965:1 8990:1 9006:1 9066:1 9108:1 9133:1 9136:1 9147:2 9153:1 9175:1 9220:1 9244:1 9250:1 9254:1 9287:2 9433:2 9481:2 9484:1 9523:1 9583:1 9650:1 9665:1 9747:1 9808:1 9831:1 9876:1 9882:2 9995:1 9999:1 10054:1 10059:3 10066:1 10135:1 10145:1 10148:1 10155:3 10162:1 10182:1 10359:1 10365:2 10380:1 10386:1 10419:1 10473:1 10488:3 10519:1 10526:1 10537:1 10573:1 10595:1 10633:1 10714:1 10740:1 10750:1 10767:1 10777:1 10812:1 10866:1 10888:1 10889:1 10918:2 10961:1 10978:1 11008:1 11053:1 11061:1 11074:1 11077:1 11080:1 11096:1 11125:1 11151:1 11194:1 11333:1 11344:1 11443:2 11477:2 11488:1 11512:1 11549:1 11581:2 11630:1 11756:1 11761:1 11785:1 11789:1 11855:1 11869:1 11972:2 11976:1 11979:1 11980:1 11999:1 12001:1 12009:1 12075:1 12185:1 12209:1 12244:1 12272:1 12292:1 12337:1 12355:1 12356:1 12360:1 12376:1 12396:1 12445:1 12515:1 12533:1 12548:2 12603:1 12632:1 12639:1 12648:1 12664:1 12698:1 12718:1 12815:2 12827:1 12851:1 12852:1 12857:1 12859:1 12881:1 12902:1 12986:1 13010:1 13081:1 13114:1 13128:1 13148:2 13164:1 13166:1 13320:1 13330:2 13386:1 13399:1 13483:1 13498:1 13499:1 13502:1 13534:1 13577:1 13606:1 13628:1 13678:1 13686:1 13691:1 13709:1 13758:1 13846:1 13874:2 13915:1 13919:3 13956:1 14049:1 14150:1 14160:1 14170:1 14176:1 14245:1 14342:1 14355:1 14429:1 14462:1 14467:1 14475:1 14476:1 14479:1 14480:1 14512:1 14520:1 14534:1 14575:1 14595:1 14602:2 14678:1 14733:2 14754:1 14770:1 14773:1 14774:1 14782:1 14786:1 14797:1 14812:2 14820:1 14898:1 14903:1 14962:2 14970:1 15021:1 15070:1 15120:1 15121:1 15140:1 15141:1 15180:1 15193:2 15261:1 15265:1 15287:2 15297:1 15381:1 15390:1 15408:1 15413:1 15504:1 15532:1 15555:1 15579:1 15610:1 15635:1 15652:1 15672:1 15712:1 15714:1 15860:1 15864:1 15898:1 16005:1 16035:1 16066:1 16109:1 16111:1 16158:1 16240:1 16258:1 16282:1 16309:1 16367:1 16379:1 16443:1 16447:1 16451:1 16456:1 16468:1 16486:1 16563:1 16586:1 16608:1 16616:1 16668:1 16678:2 16716:1 16718:1 16720:1 16721:1 16744:1 16766:1 16767:1 16768:1 16786:1 16803:1 16961:1 16966:1 16973:1 16990:1 16991:1 17022:1 17076:1 17094:1 17284:1 17291:2 17298:1 17328:1 17341:1 17360:1 17492:572 17520:1 17555:1 17599:1 17669:1 17793:1 17902:1 17914:1 18003:1 18032:1 18087:1 18145:1 18269:3 18333:1 18366:1 18380:1 18485:2 18494:1 18525:1 18584:1 18606:1 18672:1 18676:1 18776:1 18778:1 18849:2 18856:1 18892:1 18915:1 18958:1 18983:1 18995:1 19061:1 19078:1 19097:1 19109:1 19214:1 19240:1 19274:1 19297:1 19358:1 19388:2 19426:1 19435:1 19465:1 19487:1 19510:1 19558:1 19596:1 19612:1 19623:1 19647:2 19648:1 19651:2 19706:1 19809:2 19934:1 20033:1 20131:1 20196:1 20234:1 20251:1 20290:1 20401:2 20415:1 20421:2 20422:1 20446:1 20488:1 20577:1 20580:1 20591:1 20610:1 20613:1 20659:1 20762:1 20776:1 20796:2 20841:1 20864:1 20894:1 20988:1 20994:2 21007:1 21011:1 21030:1 21040:1 21072:1 21121:1 21159:2 21173:3 21185:1 21236:1 21241:1 21242:1 21252:1 21260:1 21305:1 21315:1 21320:1 21329:1 21337:1 21345:1 21430:2 21435:1 21439:1 21554:1 21632:1 21709:3 21777:1 21904:1 21919:1 21927:1 21968:1 21975:1 21987:1 22024:1 22074:1 22119:1 22148:1 22157:2 22176:1 22189:1 22208:1 22309:1 22323:1 22333:1 22340:1 22351:1 22405:1 22409:1 22438:1 22502:1 22572:1 22578:1 22586:1 22679:1 22707:3 22737:1 22762:1 22838:1 22876:1 22935:1 22956:1 22963:1 22967:1 23000:1 23003:3 23052:1 23128:2 23191:1 23240:1 23245:1 23247:1 23250:1 23271:1 23277:1 23373:1 23415:1 23535:1 23554:1 23608:1 23633:1 23675:2 23694:1 23711:1 23735:1 23866:2 23873:2 23878:1 23879:1 23898:1 23902:1 23904:1 23914:1 23918:1 23964:1 23986:1 23987:1 24008:1 24085:1 24171:1 24271:3 24324:1 24330:1 24352:1 24397:1 24430:2 24436:1 24443:1 24463:1 24466:1 24598:2 24655:1 24721:1 24730:1 24734:1 24759:1 24809:1 24839:1 24861:1 24899:2 24928:3 25000:1 25045:1 25071:1 25079:1 25161:1 25349:1 25387:1 25434:1 25473:2 25488:1 25515:1 25537:1 25539:1 25543:1 25545:1 25587:1 25623:1 25635:1 25641:1 25663:1 25704:2 25710:1 25728:1 25767:1 25778:1 25788:1 25790:1 25793:1 25811:1 25835:1 25866:1 25877:1 25912:1 26013:2 26068:1 26071:1 26084:1 26092:1 26174:1 26184:1 26275:1 26280:3 26312:1 26322:1 26352:1 26429:1 26442:1 26446:3 26451:1 26468:1 26482:1 26498:2 26531:1 26609:3 26647:4 26666:2 26681:1 26709:1 26821:1 26853:1 26872:1 26898:1 26968:1 26977:1 26981:1 26990:1 27050:1 27078:1 27095:1 27118:1 27133:1 27137:2 27180:1 27250:1 27372:1 27479:2 27489:1 27497:1 27499:1 27557:2 27691:1 27696:3
12 37:1 43:1 74:1 111:1 141:1 165:1 179:1 202:1 209:1 282:1 294:1 328:1 356:2 378:2 418:3 441:1 535:1 603:1 725:1 861:1 867:1 881:1 888:2 893:1 903:1 990:1 994:1 1019:1 1054:1 1073:1 1088:1 1192:1 1195:1 1203:1 1240:1 1249:1 1277:2 1287:1 1301:1 1344:2 1354:1 1397:4 1454:1 1457:2 1459:1 1493:1 1535:2 1564:1 1565:1 1568:1 1625:1 1656:1 1660:1 1668:1 1691:1 1695:1 1730:1 1791:1 1795:1 1815:1 1831:2 1839:1 1848:1 1864:1 1890:1 1891:1 1897:1 1905:1 1922:2 2006:1 2007:2 2010:1 2058:1 2080:1 2148:1 2191:2 2197:2 2200:1 2208:1 2235:1 2246:1 2249:2 2253:2 2256:1 2258:1 2261:1 2262:1 2265:1 2270:2 2272:1 2287:1 2307:1 2338:2 2339:1 2354:1 2368:1 2381:1 2451:1 2459:1 2501:1 2526:2 2580:1 2583:1 2589:1 2620:1 2699:3 2741:2 2756:1 2846:1 2857:2 2927:1 2928:1 2951:1 2957:1 3008:1 3021:1 3053:1 3135:1 3160:1 3174:1 3191:2 3223:1 3232:1 3244:1 3260:1 3322:1 3368:1 3399:1 3402:1 3426:1 3431:1 3460:2 3500:1 3607:1 3674:1 3703:1 3713:1 3725:1 3726:1 3753:1 3806:2 3844:2 3849:1 3876:1 3916:1 3921:1 3932:2 3972:1 3992:1 4030:1 4104:2 4145:1 4163:2 4180:1 4258:1 4281:1 4346:1 4357:1 4404:1 4472:1 4494:1 4550:1 4581:1 4605:1 4700:1 4710:4 4738:1 4814:3 4828:1 4830:1 4838:1 4850:1 4879:1 4993:1 5045:2 5118:1 5133:1 5141:2 5163:5 5188:7 5242:1 5274:1 5335:1 5355:2 5382:1 5402:1 5407:1 5496:1 5511:1 5527:1 5665:1 5669:1 5705:1 5750:1 5752:2 5777:1 5779:1 5788:1 5794:1 5813:1 5864:1 5868:1 5917:1 5994:1 6003:1 6008:1 6092:1 6096:1 6110:1 6113:1 6115:2 6117:2 6120:1 6246:1 6260:2 6362:1 6414:2 6455:1 6493:1 6516:2 6545:3 6578:1 6614:1 6656:1 6798:1 6877:1 6878:2 6932:1 6949:1 6958:1 6964:1 6975:1 6990:1 7117:1 7143:2 7144:1 7146:2 7155:1 7180:1 7198:1 7250:1 7263:1 7293:1 7328:3 7329:2 7336:1 7346:1 7352:1 7356:1 7394:11 7410:1 7419:2 7422:1 7432:1 7480:1 7488:2 7522:2 7550:1 7614:1 7689:1 7725:2 7733:1 7811:1 7852:1 7871:1 7905:1 7916:1 7947:1 7961:1 8062:1 8072:1 8091:1 8204:1 8207:1 8221:1 8247:2 8259:1 8335:1 8366:1 8433:1 8483:1 8490:1 8511:1 8523:1 8587:1 8599:1 8630:1 8688:1 8707:1 8732:1 8733:1 8750:3 8787:1 8796:1 8813:1 8841:1 8866:1 8880:1 8883:2 8931:1 8965:1 8990:1 9006:1 9066:1 9108:1 9133:1 9136:1 9147:2 9153:1 9175:1 9190:1 9191:2 9203:1 9220:1 9244:1 9250:1 9254:1 9264:1 9287:3 9303:1 9433:2 9481:2 9484:1 9523:1 9583:1 9599:1 9650:1 9665:1 9747:1 9808:1 9831:1 9876:1 9882:2 9995:1 9999:1 10054:1 10059:3 10066:1 10072:1 10135:1 10145:1 10148:1 10155:3 10162:1 10182:1 10359:1 10365:2 10380:1 10386:1 10419:1 10473:1 10488:3 10519:1 10526:1 10537:1 10573:1 10595:1 10627:1 10633:1 10714:1 10740:1 10750:1 10767:1 10777:1 10781:1 10812:1 10866:1 10888:1 10889:1 10918:2 10961:1 10978:1 10989:1 11008:1 11053:1 11061:1 11074:1 11077:1 11080:1 11096:1 11125:1 11151:1 11169:1 11189:1 11194:1 11244:1 11333:1 11344:1 11443:2 11477:2 11488:1 11494:1 11512:1 11549:1 11581:2 11630:1 11756:1 11761:1 11785:1 11789:1 11855:1 11869:1 11972:2 11976:1 11979:1 11980:1 11999:1 12000:1 12001:1 12009:1 12075:1 12185:1 12209:1 12244:1 12272:1 12292:1 12337:1 12355:1 12356:1 12360:1 12376:1 12396:1 12438:1 12445:1 12515:1 12533:1 12548:2 12603:1 12632:1 12639:1 12648:1 12664:1 12698:1 12718:1 12815:2 12827:1 12851:1 12852:1 12857:1 12859:1 12881:1 12902:1 12986:1 13010:1 13081:1 13114:1 13128:1 13148:2 13164:1 13166:1 13320:1 13330:2 13386:1 13399:1 13483:1 13498:1 13499:1 13502:1 13534:1 13577:1 13606:1 13628:1 13678:1 13686:1 13691:1 13709:1 13758:1 13846:1 13874:2 13915:1 13919:3 13956:1 14049:1 14150:1 14160:1 14170:1 14176:1 14245:1 14342:1 14355:1 14409:1 14429:1 14462:1 14467:1 14475:1 14476:1 14479:1 14480:1 14512:1 14520:1 14534:1 14575:1 14595:1 14602:2 14678:1 14733:2 14754:1 14769:1 14770:1 14773:1 14774:1 14782:1 14786:1 14797:1 14812:2 14820:1 14898:1 14903:1 14962:2 14970:1 15021:1 15070:1 15120:1 15121:1 15131:1 15140:1 15141:1 15180:1 15193:2 15261:1 15265:1 15287:2 15297:1 15381:1 15390:1 15407:1 15408:1 15413:1 15504:1 15532:1 15555:1 15579:1 15610:1 15635:1 15652:1 15672:1 15712:1 15714:2 15860:1 15864:1 15898:1 15950:1 16005:1 16035:1 16066:1 16109:1 16111:1 16154:1 16158:1 16240:1 16258:1 16282:1 16309:1 16367:1 16379:1 16383:1 16443:1 16447:1 16451:1 16456:1 16468:1 16469:1 16486:1 16563:1 16586:1 16608:1 16616:1 16668:1 16678:2 16716:1 16718:1 16720:1 16721:1 16744:1 16766:1 16767:1 16768:1 16786:1 16803:1 16961:1 16966:2 16973:1 16990:1 16991:1 17022:1 17076:1 17094:1 17284:1 17291:3 17298:1 17328:1 17341:1 17360:1 17365:1 17486:1 17492:610 17520:1 17555:1 17599:1 17669:1 17793:1 17902:1 17914:1 18003:1 18032:1 18087:1 18145:1 18269:4 18333:1 18366:1 18380:2 18485:2 18494:1 18525:1 18584:1 18606:1 18672:1 18676:1 18776:1 18778:1 18849:2 18856:1 18892:1 18915:1 18921:1 18958:1 18983:1 18995:1 19044:1 19057:1 19061:1 19078:1 19097:1 19109:1 19214:1 19240:1 19274:1 19297:1 19358:1 19388:2 19426:1 19435:1 19465:1 19487:1 19510:1 19558:1 19596:1 19612:1 19623:1 19647:2 19648:1 19651:2 19706:1 19809:2 19934:1 20033:1 20131:1 20196:1 20234:1 20251:1 20290:1 20370:1 20401:2 20415:1 20421:2 20422:1 20446:1 20481:1 20488:1 20577:1 20580:1 20591:1 20610:1 20613:1 20659:1 20762:1 20776:1 20796:2 20841:1 20864:1 20894:1 20988:1 20994:2 21007:1 21011:1 21030:1 21040:1 21072:1 21121:1 21159:2 21173:3 21185:1 21236:1 21241:1 21242:1 21252:1 21260:1 21305:1 21315:1 21320:1 21329:1 21337:1 21345:1 21430:2 21435:1 21439:1 21554:1 21632:1 21709:4 21731:1 21777:1 21904:1 21919:1 21927:1 21968:1 21975:1 21987:1 22024:1 22074:1 22119:1 22148:1 22157:2 22176:1 22189:1 22208:1 22309:1 22323:1 22333:1 22340:1 22351:1 22405:1 22409:1 22438:1 22502:1 22572:1 22578:1 22586:1 22679:1 22707:3 22737:1 22762:1 22779:1 22838:1 22876:1 22935:1 22956:1 22963:1 22967:1 23000:1 23003:3 23007:1 23052:1 23128:2 23191:1 23240:1 23245:1 23247:1 23250:1 23271:1 23277:1 23373:2 23415:1 23535:1 23554:1 23608:1 23633:1 23675:2 23694:1 23711:1 23735:1 23738:1 23751:1 23866:2 23873:2 23878:1 23879:1 23898:1 23902:1 23904:1 23914:1 23918:1 23964:1 23986:1 23987:1 24008:1 24085:1 24171:1 24271:4 24324:1 24330:1 24352:2 24397:1 24430:2 24436:1 24442:1 24443:1 24463:1 24466:1 24598:3 24638:1 24655:1 24721:1 24730:1 24734:1 24759:1 24809:1 24836:1 24839:1 24861:1 24899:2 24928:3 25000:1 25045:1 25071:1 25079:1 25134:1 25161:1 25248:1 25281:1 25349:1 25387:1 25434:1 25473:2 25488:1 25515:1 25537:1 25539:1 25543:1 25545:1 25587:1 25593:1 25623:1 25635:1 25641:1 25663:1 25704:2 25710:1 25724:1 25728:1 25767:1 25778:2 25780:1 25788:1 25790:1 25793:1 25804:1 25811:1 25835:1 25866:1 25871:1 25877:1 25912:1 26013:2 26049:1 26068:1 26070:1 26071:1 26084:1 26092:1 26174:1 26184:1 26275:1 26280:3 26312:1 26322:1 26348:1 26352:1 26429:1 26442:1 26446:3 26451:1 26468:1 26482:2 26498:2 26531:1 26609:3 26647:4 26666:2 26681:1 26709:1 26821:1 26853:1 26872:1 26898:1 26968:1 26977:1 26981:1 26990:1 27050:1 27078:1 27095:1 27118:1 27133:1 27137:2 27180:1 27250:1 27372:1 27479:2 27489:1 27497:1 27499:1 27529:1 27557:2 27691:1 27696:3 27758:1
12 37:1 43:1 74:1 111:1 141:1 165:1 179:2 202:1 209:1 282:1 294:1 328:1 356:2 378:2 413:1 418:3 441:1 528:1 535:1 603:1 725:1 861:2 867:1 881:1 888:2 893:1 903:1 990:1 994:1 1019:1 1054:1 1073:1 1088:1 1132:1 1192:1 1195:1 1203:1 1240:1 1249:1 1277:2 1287:1 1301:1 1344:2 1354:1 1397:4 1454:1 1457:2 1459:1 1493:1 1516:1 1535:2 1564:2 1565:1 1568:1 1625:1 1656:1 1660:1 1668:1 1691:1 1695:1 1730:1 1768:1 1791:1 1795:1 1815:1 1831:2 1839:1 1848:1 1864:1 1890:1 1891:1 1897:1 1905:1 1922:2 1941:1 2006:1 2007:2 2010:1 2058:1 2080:1 2089:1 2148:1 2191:2 2197:2 2200:1 2208:1 2235:1 2244:1 2245:1 2246:1 2249:2 2253:2 2256:1 2258:1 2261:1 2262:1 2265:1 2270:2 2272:1 2287:1 2307:1 2338:2 2339:1 2354:2 2368:1 2381:1 2451:1 2459:1 2501:1 2526:2 2580:1 2583:1 2589:1 2620:1 2699:3 2741:2 2756:1 2846:2 2857:2 2927:1 2928:1 2951:1 2957:1 3008:1 3021:1 3053:1 3084:1 3135:1 3160:1 3174:1 3191:2 3207:1 3223:1 3232:1 3244:1 3260:1 3322:1 3368:1 3399:1 3402:1 3426:1 3431:1 3460:2 3500:1 3534:1 3607:1 3674:1 3703:1 3713:1 3725:1 3726:2 3753:1 3805:1 3806:2 3844:2 3849:1 3876:1 3916:1 3921:1 3932:2 3972:1 3992:1 4030:1 4104:2 4145:1 4163:2 4180:1 4258:1 4281:1 4346:1 4357:1 4404:1 4472:1 4494:1 4506:1 4521:1 4550:1 4581:1 4605:1 4700:1 4710:4 4738:1 4814:4 4828:1 4830:1 4838:1 4845:1 4850:1 4879:1 4891:1 4993:1 5045:2 5118:1 5133:1 5141:2 5163:5 5188:7 5242:1 5274:1 5335:1 5355:2 5382:1 5402:1 5407:1 5452:1 5496:1 5511:1 5527:2 5665:1 5669:1 5705:1 5750:1 5752:2 5777:1 5779:1 5788:1 5794:1 5813:1 5840:1 5864:1 5868:1 5917:1 5994:1 6003:1 6008:1 6092:1 6096:1 6098:1 6110:1 6113:1 6115:2 6117:3 6120:1 6246:1 6260:2 6283:1 6362:1 6414:2 6455:1 6490:1 6493:1 6516:2 6545:3 6566:1 6578:1 6614:1 6656:1 6798:1 6877:1 6878:2 6932:1 6949:1 6958:1 6964:1 6975:1 6990:1 7117:1 7143:2 7144:1 7146:2 7155:1 7180:1 7198:1 7250:1 7263:1 7293:1 7328:3 7329:2 7336:1 7346:1 7352:1 7356:1 7394:13 7410:2 7419:2 7422:1 7432:1 7480:1 7488:2 7489:2 7522:2 7550:1 7614:1 7689:1 7725:2 7733:1 7811:1 7852:1 7871:1 7905:1 7916:1 7947:1 7961:1 8062:1 8072:1 8091:1 8140:1 8204:1 8207:1 8221:1 8244:1 8247:2 8259:1 8287:1 8335:1 8366:1 8433:1 8483:1 8490:1 8511:1 8523:1 8587:1 8599:1 8630:1 8688:1 8707:1 8732:1 8733:1 8750:3 8787:1 8796:1 8813:1 8841:1 8866:1 8880:1 8883:2 8931:1 8965:1 8990:1 8998:1 9006:1 9066:1 9108:1 9133:1 9136:1 9147:2 9153:1 9175:1 9190:1 9191:2 9203:1 9220:1 9244:1 9250:1 9254:1 9264:1 9287:3 9303:1 9433:2 9481:2 9484:1 9523:1 9583:1 9599:1 9617:1 9650:1 9661:1 9665:1 9747:1 9808:1 9831:1 9876:1 9882:2 9961:1 9995:1 9999:1 10054:1 10059:3 10066:1 10072:1 10135:1 10145:1 10148:1 10155:5 10162:1 10182:1 10359:1 10365:2 10380:1 10386:1 10419:1 10442:1 10473:1 10488:3 10519:1 10524:1 10526:1 10537:1 10573:1 10595:1 10627:1 10633:1 10714:1 10740:1 10750:1 10767:1 10777:1 10781:1 10812:1 10866:2 10888:1 10889:1 10905:1 10918:2 10961:1 10978:1 10989:1 11008:1 11053:1 11061:1 11074:1 11077:1 11080:1 11096:1 11125:1 11151:1 11169:1 11189:1 11194:1 11244:1 11333:1 11344:1 11443:2 11477:2 11488:2 11494:1 11512:1 11549:1 11581:2 11630:1 11710:2 11756:1 11761:1 11785:1 11789:1 11855:1 11869:1 11972:2 11976:1 11979:1 11980:1 11999:1 12000:1 12001:1 12009:1 12049:1 12075:1 12185:1 12209:1 12244:1 12272:1 12292:1 12337:1 12355:1 12356:1 12360:1 12376:1 12396:1 12410:1 12438:1 12445:1 12515:1 12533:1 12548:2 12570:1 12603:1 12632:2 12639:1 12648:1 12664:1 12698:1 12718:1 12815:2 12827:1 12851:1 12852:1 12857:1 12859:1 12881:1 12902:1 12986:1 13010:1 13081:1 13094:2 13114:1 13128:1 13148:2 13164:1 13166:1 13172:1 13320:1 13330:2 13386:1 13399:1 13483:1 13498:1 13499:1 13502:1 13527:1 13534:1 13577:1 13606:1 13628:1 13678:1 13686:1 13691:1 13709:1 13758:1 13846:1 13873:1 13874:2 13915:1 13919:3 13956:1 14049:1 14150:1 14160:1 14170:1 14176:1 14245:1 14342:1 14355:1 14409:1 14429:1 14462:1 14467:1 14475:1 14476:1 14479:1 14480:1 14512:1 14520:1 14534:1 14575:1 14595:1 14602:2 14637:1 14663:1 14678:1 14733:2 14754:1 14769:1 14770:1 14773:1 14774:1 14782:1 14786:1 14797:1 14812:2 14820:1 14898:1 14903:1 14923:1 14962:2 14970:1 15021:1 15070:1 15120:1 15121:1 15131:1 15140:1 15141:1 15174:1 15180:1 15193:2 15261:1 15265:1 15287:2 15297:1 15323:1 15381:1 15390:1 15407:1 15408:1 15413:1 15504:1 15532:1 15555:1 15579:1 15610:1 15635:1 15652:1 15672:1 15712:1 15714:2 15860:1 15864:1 15898:1 15905:1 15950:1 16005:1 16035:1 16066:1 16109:1 16111:1 16132:1 16154:1 16158:1 16240:1 16258:1 16263:1 16282:1 16289:1 16309:2 16367:1 16379:1 16383:1 16392:1 16443:1 16447:1 16451:1 16456:1 16468:1 16469:1 16486:1 16563:1 16586:1 16608:1 16616:1 16668:1 16678:2 16716:1 16718:1 16720:1 16721:1 16744:1 16766:1 16767:1 16768:1 16786:1 16802:1 16803:1 16823:1 16961:1 16966:2 16973:1 16990:1 16991:1 17022:1 17076:1 17094:1 17284:1 17291:4 17298:1 17328:1 17341:1 17360:1 17365:1 17471:1 17486:1 17492:677 17497:1 17520:1 17555:1 17599:1 17628:1 17669:1 17793:1 17902:1 17914:1 18003:1 18032:1 18087:1 18145:1 18269:4 18333:1 18366:1 18380:2 18485:2 18494:1 18525:1 18584:1 18592:1 18606:2 18672:1 18676:1 18776:1 18778:1 18849:2 18856:1 18892:1 18915:1 18921:1 18928:1 18958:1 18983:1 18995:1 19044:1 19057:1 19061:1 19078:1 19097:1 19109:1 19214:1 19240:1 19274:1 19297:1 19358:1 19388:2 19426:1 19435:1 19465:1 19487:1 19510:1 19515:1 19558:1 19596:1 19612:1 19623:1 19647:2 19648:1 19651:2 19706:1 19809:2 19934:1 20033:1 20131:1 20139:1 20174:1 20196:1 20216:1 20234:1 20251:1 20290:1 20370:1 20401:2 20415:1 20421:3 20422:1 20446:1 20481:1 20488:1 20577:2 20580:1 20591:1 20610:1 20613:1 20625:1 20627:1 20659:1 20762:1 20776:1 20796:2 20841:1 20864:1 20894:1 20988:1 20994:2 21007:1 21011:1 21030:1 21040:1 21072:1 21082:1 21121:1 21159:2 21173:3 21185:1 21236:1 21241:1 21242:1 21252:1 21260:1 21305:1 21315:1 21320:1 21329:1 21337:1 21345:1 21430:2 21435:1 21439:1 21478:1 21554:1 21632:2 21709:4 21731:1 21777:1 21895:1 21904:1 21919:1 21927:1 21954:1 21968:1 21975:1 21987:1 22024:1 22074:1 22119:1 22137:1 22148:1 22157:2 22176:1 22189:1 22208:1 22224:1 22309:1 22323:1 22333:1 22340:1 22351:1 22405:1 22409:1 22438:1 22502:1 22568:1 22572:1 22578:1 22586:1 22678:1 22679:1 22707:3 22737:1 22762:1 22779:1 22830:1 22838:1 22876:1 22935:1 22956:1 22963:1 22967:1 23000:1 23003:3 23007:1 23052:1 23094:1 23111:1 23128:2 23191:1 23240:1 23245:1 23247:1 23250:1 23271:1 23277:1 23315:1 23373:2 23415:1 23535:1 23554:1 23608:1 23633:1 23675:2 23694:1 23711:1 23735:1 23738:2 23751:1 23783:1 23866:2 23873:2 23878:1 23879:1 23898:1 23902:1 23904:1 23914:1 23918:1 23935:1 23964:1 23986:1 23987:1 24008:1 24085:1 24171:1 24271:4 24324:1 24330:1 24352:2 24367:1 24397:1 24430:2 24436:1 24442:1 24443:1 24463:1 24466:1 24533:1 24598:4 24638:1 24655:1 24721:1 24730:1 24734:1 24759:1 24809:1 24836:1 24839:1 24861:1 24899:2 24928:3 25000:1 25045:1 25071:1 25079:1 25134:1 25161:1 25248:1 25277:2 25281:1 25338:1 25349:1 25387:1 25434:1 25473:2 25488:1 25515:1 25537:1 25539:1 25543:1 25545:1 25587:1 25593:1 25623:1 25635:1 25641:1 25663:1 25704:2 25710:1 25724:1 25728:1 25767:1 25778:2 25780:1 25788:1 25790:1 25793:1 25804:1 25811:1 25835:1 25866:1 25871:1 25877:1 25912:1 26013:2 26049:1 26068:1 26070:1 26071:1 26084:1 26092:1 26174:1 26184:1 26275:1 26280:3 26312:1 26322:1 26337:1 26348:1 26352:2 26429:1 26442:1 26446:3 26451:1 26468:1 26482:2 26498:2 26531:1 26609:3 26647:4 26666:2 26681:1 26709:1 26821:1 26853:1 26872:1 26898:1 26968:1 26977:1 26981:1 26990:1 27050:1 27078:1 27095:1 27118:1 27133:1 27137:2 27180:1 27232:1 27250:1 27358:1 27372:1 27479:2 27489:1 27497:1 27499:1 27529:1 27538:1 27557:2 27691:1 27696:4 27730:1 27758:1
12 37:1 43:1 52:1 57:1 74:1 111:1 141:1 165:1 179:2 202:1 209:1 282:1 294:1 328:1 356:2 363:1 378:2 413:1 418:3 441:1 528:1 535:1 603:1 637:1 725:1 790:1 861:2 867:1 881:1 888:2 893:1 903:1 952:1 990:1 994:1 1019:1 1037:1 1054:1 1073:1 1088:1 1132:1 1192:1 1195:1 1203:2 1240:1 1249:1 1277:2 1287:1 1301:1 1344:2 1354:1 1397:4 1448:1 1454:1 1457:3 1459:1 1493:1 1516:1 1535:2 1564:2 1565:1 1568:1 1625:1 1656:1 1660:1 1668:4 1691:1 1695:1 1730:1 1768:1 1791:1 1795:1 1815:1 1831:2 1839:1 1848:1 1864:1 1890:2 1891:1 1897:1 1905:1 1922:2 1941:1 2006:1 2007:2 2010:1 2030:1 2058:1 2080:1 2089:1 2148:1 2191:2 2197:2 2200:1 2208:1 2235:1 2236:1 2244:1 2245:1 2246:1 2249:3 2253:2 2256:1 2258:1 2261:1 2262:1 2265:1 2270:3 2272:1 2287:1 2307:1 2338:2 2339:1 2354:2 2368:1 2381:1 2451:1 2459:1 2501:1 2526:2 2580:1 2583:1 2589:1 2620:1 2699:3 2741:2 2756:1 2769:1 2846:3 2857:2 2912:1 2919:1 2927:1 2928:1 2951:1 2957:1 3008:1 3021:1 3053:1 3084:1 3113:1 3135:1 3160:1 3174:1 3191:2 3207:1 3223:1 3232:1 3244:1 3260:1 3322:1 3368:1 3399:1 3402:1 3407:1 3426:1 3431:1 3460:2 3500:1 3529:1 3534:1 3586:1 3607:1 3674:1 3703:1 3713:1 3725:1 3726:2 3753:1 3805:1 3806:2 3844:2 3849:1 3876:1 3916:1 3921:1 3932:2 3972:1 3992:1 4030:1 4104:5 4107:1 4117:1 4145:1 4163:2 4180:1 4258:1 4267:1 4281:1 4310:1 4346:1 4357:1 4375:1 4404:1 4423:1 4472:1 4494:1 4506:1 4521:1 4550:1 4581:1 4605:1 4656:1 4700:1 4710:4 4733:1 4738:1 4814:4 4828:2 4830:1 4838:1 4845:1 4850:1 4879:1 4891:1 4993:1 5045:2 5118:1 5133:1 5141:2 5163:5 5188:7 5242:1 5274:1 5335:1 5355:2 5382:1 5402:1 5407:1 5452:1 5481:1 5496:1 5511:1 5527:2 5665:1 5669:1 5705:1 5750:1 5752:2 5755:1 5777:1 5779:1 5788:1 5794:1 5813:1 5840:1 5864:1 5868:1 5917:1 5994:1 6003:1 6008:1 6016:1 6092:1 6096:1 6098:1 6110:1 6113:1 6115:2 6117:3 6120:1 6246:1 6260:2 6283:1 6362:1 6414:2 6428:1 6455:1 6486:1 6490:1 6493:1 6516:2 6545:3 6566:1 6578:1 6614:1 6629:1 6656:1 6798:1 6877:1 6878:2 6932:1 6949:1 6958:1 6964:1 6975:1 6990:1 7117:1 7143:2 7144:1 7146:2 7155:1 7180:1 7198:1 7211:1 7250:2 7263:1 7293:1 7295:1 7328:4 7329:3 7336:1 7346:1 7352:1 7356:1 7394:15 7410:3 7419:2 7422:1 7432:1 7480:1 7488:2 7489:2 7522:2 7550:1 7614:1 7689:1 7725:2 7733:1 7811:1 7852:1 7871:3 7902:1 7905:1 7916:1 7947:1 7961:1 8062:1 8072:1 8091:1 8140:1 8204:1 8206:1 8207:1 8219:1 8221:1 8244:1 8247:2 8259:1 8287:2 8335:1 8366:1 8433:1 8483:1 8490:1 8511:1 8523:1 8587:1 8599:1 8630:1 8688:1 8707:1 8732:1 8733:1 8740:1 8750:3 8787:1 8796:1 8813:1 8841:1 8866:1 8880:1 8883:2 8931:1 8965:1 8990:1 8998:1 9006:1 9066:2 9108:1 9133:1 9136:1 9147:2 9153:1 9175:1 9190:1 9191:2 9203:1 9220:1 9244:1 9250:1 9254:1 9264:1 9287:3 9303:1 9433:2 9481:2 9484:1 9523:1 9583:1 9599:1 9617:1 9650:1 9661:1 9665:1 9747:1 9808:1 9831:1 9876:1 9882:2 9961:1 9995:2 9999:1 10020:1 10054:1 10059:3 10066:1 10072:1 10135:1 10145:1 10148:1 10155:5 10162:1 10182:1 10359:1 10365:2 10380:1 10386:1 10419:1 10442:1 10448:1 10473:1 10488:3 10519:1 10524:1 10526:1 10537:1 10543:1 10547:1 10573:1 10595:1 10627:1 10633:1 10714:1 10740:1 10750:1 10767:1 10777:1 10781:1 10812:1 10866:2 10888:1 10889:1 10905:1 10918:2 10961:1 10978:1 10989:1 11008:1 11053:1 11061:1 11074:1 11077:1 11080:1 11096:1 11125:1 11151:1 11169:1 11189:1 11194:1 11244:1 11333:1 11344:1 11443:2 11477:2 11488:2 11494:1 11512:1 11549:1 11565:1 11581:2 11630:1 11710:2 11756:1 11761:1 11785:1 11789:1 11855:1 11869:1 11972:2 11976:1 11979:2 11980:1 11999:1 12000:1 12001:1 12009:1 12049:1 12075:1 12174:1 12185:1 12209:1 12244:1 12272:1 12292:1 12337:1 12355:2 12356:2 12360:1 12376:1 12396:1 12410:1 12438:1 12445:1 12515:1 12522:1 12533:1 12548:2 12570:1 12575:1 12603:1 12632:2 12639:1 12648:1 12664:1 12698:1 12718:1 12815:2 12827:1 12851:1 12852:1 12857:1 12859:2 12881:1 12902:1 12986:1 13010:1 13081:1 13094:2 13114:1 13128:2 13148:2 13164:1 13166:1 13172:1 13204:1 13274:1 13320:1 13330:2 13386:1 13399:1 13483:1 13498:1 13499:1 13502:1 13527:1 13534:1 13577:1 13606:1 13628:1 13678:1 13686:1 13691:1 13695:1 13709:1 13758:1 13846:1 13848:1 13873:1 13874:2 13915:1 13919:3 13956:1 14049:1 14050:1 14150:1 14160:1 14170:1 14176:1 14245:1 14342:1 14355:1 14409:1 14429:1 14462:1 14467:1 14475:1 14476:1 14479:1 14480:1 14512:1 14520:1 14534:1 14575:1 14595:1 14602:2 14637:1 14663:1 14678:1 14733:2 14754:2 14769:1 14770:1 14773:1 14774:1 14782:1 14786:1 14797:1 14812:2 14820:1 14898:1 14903:1 14923:2 14962:2 14970:1 15021:1 15048:1 15070:1 15120:1 15121:1 15131:1 15140:1 15141:1 15174:1 15180:1 15193:2 15261:1 15265:1 15287:2 15297:2 15307:1 15323:1 15370:1 15381:1 15390:1 15407:1 15408:1 15413:1 15504:1 15532:1 15555:1 15579:1 15610:1 15635:2 15652:1 15672:1 15689:1 15712:1 15714:2 15860:1 15864:1 15898:1 15905:1 15950:1 16005:1 16035:1 16066:1 16109:1 16111:1 16132:1 16154:1 16158:1 16240:1 16258:1 16263:1 16282:1 16289:1 16309:2 16367:1 16379:1 16383:1 16392:1 16443:1 16447:1 16451:1 16456:1 16468:1 16469:1 16486:1 16563:1 16575:1 16586:1 16608:1 16616:1 16630:1 16668:1 16678:2 16716:1 16718:1 16720:1 16721:1 16744:1 16766:2 16767:1 16768:1 16786:1 16802:1 16803:1 16823:1 16961:1 16966:2 16973:1 16990:1 16991:1 17022:1 17028:1 17076:1 17094:1 17284:1 17291:4 17298:1 17328:1 17341:1 17360:1 17365:1 17471:1 17486:1 17492:725 17497:1 17520:1 17555:1 17599:1 17628:1 17669:1 17793:1 17902:1 17914:1 17938:1 18003:1 18032:1 18087:1 18145:1 18269:4 18333:1 18366:1 18380:2 18423:1 18485:2 18494:1 18525:1 18584:1 18592:1 18606:2 18622:1 18672:1 18676:1 18757:1 18776:1 18778:1 18849:2 18856:1 18892:1 18915:1 18921:2 18928:1 18958:1 18983:1 18995:1 19044:1 19057:1 19061:1 19078:1 19097:1 19109:1 19214:1 19240:1 19274:1 19277:1 19297:1 19358:1 19388:2 19426:1 19435:1 19465:1 19487:1 19488:1 19510:1 19515:1 19518:1 19525:1 19558:1 19596:1 19612:1 19623:1 19647:2 19648:1 19651:2 19706:1 19758:1 19809:2 19928:1 19934:1 20033:1 20131:1 20139:1 20143:1 20174:1 20196:1 20216:1 20234:1 20251:1 20290:1 20370:1 20401:2 20415:1 20421:3 20422:1 20446:1 20481:1 20488:1 20577:2 20580:1 20591:1 20610:2 20613:1 20624:1 20625:1 20627:1 20659:1 20762:1 20776:1 20796:2 20841:1 20864:1 20894:1 20988:1 20994:2 21007:1 21011:1 21030:1 21040:1 21067:1 21072:1 21082:1 21120:1 21121:1 21132:1 21159:2 21173:3 21185:1 21236:1 21241:1 21242:1 21252:1 21260:1 21305:1 21315:1 21320:1 21329:1 21337:1 21345:1 21430:2 21435:1 21439:1 21478:1 21554:1 21568:1 21593:1 21632:2 21709:4 21731:1 21777:1 21895:1 21904:1 21909:1 21919:1 21927:1 21954:1 21967:1 21968:1 21975:1 21987:1 22024:1 22074:1 22119:1 22137:1 22148:1 22157:2 22176:1 22189:1 22202:1 22208:1 22215:1 22224:1 22248:1 22309:1 22323:1 22333:1 22340:1 22351:1 22405:1 22409:1 22438:1 22449:1 22502:1 22568:1 22572:1 22578:1 22586:1 22678:1 22679:1 22707:3 22728:1 22737:1 22762:1 22779:1 22797:1 22830:1 22838:1 22876:1 22935:1 22956:1 22963:1 22967:1 23000:1 23003:3 23007:1 23052:1 23094:1 23111:1 23128:2 23191:1 23240:1 23245:1 23247:1 23250:1 23271:1 23277:1 23315:1 23373:2 23415:1 23486:1 23535:1 23554:1 23608:1 23628:1 23633:1 23675:2 23694:1 23711:1 23735:1 23738:2 23751:1 23766:1 23783:1 23866:2 23873:2 23878:1 23879:1 23898:1 23901:1 23902:1 23904:1 23914:1 23918:1 23935:1 23964:1 23986:1 23987:1 24008:1 24085:1 24141:1 24171:1 24271:4 24273:1 24324:1 24330:1 24352:2 24367:1 24397:1 24430:2 24436:1 24442:1 24443:1 24463:1 24466:1 24533:1 24598:4 24638:1 24655:1 24721:1 24730:1 24734:1 24759:1 24809:1 24836:1 24839:1 24861:1 24899:2 24928:3 25000:1 25045:1 25071:1 25079:1 25134:1 25161:1 25248:1 25277:2 25281:1 25338:1 25349:1 25370:1 25387:1 25434:1 25473:2 25488:1 25515:1 25537:1 25539:1 25543:1 25545:1 25587:1 25593:1 25623:1 25635:1 25641:1 25663:1 25704:2 25710:1 25724:1 25728:1 25767:1 25778:2 25780:1 25788:1 25790:1 25793:1 25798:1 25804:1 25811:1 25835:1 25866:1 25871:1 25877:2 25912:1 25961:1 26013:2 26049:1 26068:1 26070:1 26071:1 26084:1 26092:1 26166:1 26174:1 26184:1 26275:1 26280:3 26312:1 26322:1 26337:1 26348:1 26352:2 26429:1 26442:1 26446:5 26451:1 26468:1 26482:2 26498:2 26531:1 26545:1 26598:1 26609:3 26647:5 26666:2 26681:1 26709:1 26821:1 26853:1 26872:1 26898:1 26968:1 26977:1 26981:1 26990:1 27006:1 27050:1 27078:1 27095:1 27118:1 27133:1 27137:2 27180:2 27190:1 27232:1 27250:1 27358:1 27372:1 27431:1 27479:2 27489:1 27497:1 27499:1 27526:1 27529:1 27538:1 27557:2 27691:1 27696:4 27730:1 27758:1
12 37:1 43:1 52:1 57:2 74:1 111:1 141:1 165:1 179:2 182:1 202:1 209:1 210:1 282:1 294:1 328:1 356:2 363:1 378:2 388:1 413:1 418:3 441:1 528:1 535:1 603:1 637:1 698:1 725:1 790:1 861:2 867:1 881:1 888:2 893:1 903:1 952:1 990:1 994:1 1019:1 1037:1 1054:1 1073:1 1088:1 1132:1 1192:1 1195:1 1203:2 1240:1 1249:1 1277:2 1287:1 1301:1 1331:1 1344:2 1354:1 1397:4 1448:1 1454:1 1457:3 1459:1 1493:1 1516:1 1535:2 1564:2 1565:1 1568:1 1625:1 1656:1 1660:1 1668:4 1691:1 1695:1 1730:1 1768:1 1791:1 1795:1 1815:1 1831:2 1839:1 1848:1 1864:1 1890:2 1891:1 1897:1 1905:1 1922:2 1941:1 2006:1 2007:2 2010:1 2030:1 2058:1 2080:1 2089:1 2148:1 2191:2 2197:2 2200:1 2208:1 2235:1 2236:1 2244:1 2245:1 2246:1 2249:3 2253:2 2256:1 2258:1 2261:1 2262:1 2265:1 2270:3 2272:1 2287:2 2307:1 2338:2 2339:1 2354:2 2368:1 2381:1 2418:1 2451:1 2459:1 2501:1 2526:3 2575:1 2580:1 2583:1 2589:1 2620:1 2699:3 2741:2 2756:1 2769:1 2846:3 2857:2 2860:1 2912:1 2919:1 2927:1 2928:1 2951:1 2957:1 3008:1 3021:1 3053:1 3084:1 3113:1 3135:1 3160:1 3174:1 3191:2 3207:1 3223:1 3232:1 3244:1 3260:1 3322:1 3368:1 3399:1 3402:1 3407:1 3426:1 3431:1 3460:2 3500:1 3529:1 3534:1 3559:1 3586:1 3607:1 3674:1 3703:1 3713:1 3725:1 3726:2 3753:1 3805:1 3806:2 3844:2 3849:1 3876:1 3916:1 3921:1 3932:2 3972:1 3992:1 4023:1 4030:1 4104:5 4107:1 4117:1 4145:1 4163:2 4180:1 4258:1 4267:1 4281:1 4310:1 4346:1 4357:1 4375:1 4404:1 4423:1 4472:1 4494:1 4506:1 4521:1 4550:2 4581:1 4605:1 4656:1 4700:1 4710:4 4733:1 4738:1 4814:4 4828:2 4830:1 4833:1 4838:1 4845:1 4850:1 4879:1 4891:1 4993:1 5045:2 5112:1 5118:1 5133:1 5141:2 5163:5 5188:7 5242:1 5274:1 5335:1 5355:2 5382:1 5402:1 5407:1 5452:1 5481:1 5484:1 5496:1 5511:1 5527:2 5665:1 5669:1 5705:1 5750:1 5752:2 5755:1 5777:1 5779:1 5788:1 5794:1 5813:1 5840:1 5864:1 5868:1 5917:1 5994:1 6003:1 6008:1 6016:1 6092:1 6096:1 6098:1 6102:1 6110:1 6113:1 6115:2 6117:5 6120:1 6246:1 6260:2 6283:1 6362:1 6414:2 6428:1 6455:1 6486:1 6490:1 6493:1 6516:2 6545:3 6566:1 6578:1 6614:1 6629:1 6656:1 6798:1 6877:1 6878:2 6924:1 6932:1 6949:1 6958:1 6964:1 6974:1 6975:1 6990:1 7117:2 7143:2 7144:1 7146:2 7155:1 7180:1 7198:1 7211:1 7250:2 7263:1 7293:1 7295:1 7328:5 7329:4 7336:1 7346:1 7352:1 7356:1 7384:1 7394:15 7410:3 7419:2 7422:1 7432:1 7480:1 7488:2 7489:2 7522:2 7550:1 7614:1 7689:1 7725:2 7733:1 7811:1 7852:1 7871:3 7902:1 7905:1 7916:1 7947:1 7961:1 8062:1 8072:1 8091:1 8140:1 8204:1 8206:1 8207:1 8219:1 8221:1 8244:1 8247:2 8259:1 8287:2 8335:1 8366:1 8433:1 8483:1 8490:1 8511:1 8523:1 8587:1 8599:1 8630:1 8659:1 8688:1 8707:1 8732:1 8733:1 8740:1 8750:3 8787:1 8796:1 8813:1 8841:1 8866:1 8880:1 8883:2 8931:1 8965:1 8990:1 8998:1 9006:1 9066:2 9108:1 9133:1 9136:1 9147:2 9153:1 9175:1 9190:1 9191:2 9203:2 9220:1 9244:1 9250:1 9254:1 9264:1 9287:3 9303:2 9397:1 9433:2 9480:1 9481:3 9484:1 9523:1 9583:1 9599:1 9617:1 9650:1 9661:1 9665:1 9747:1 9797:1 9808:1 9831:1 9876:1 9882:2 9961:1 9995:2 9999:1 10020:1 10054:1 10059:3 10066:1 10072:1 10135:1 10145:1 10148:1 10155:5 10162:1 10182:1 10359:1 10365:2 10380:1 10386:1 10419:1 10442:1 10448:1 10473:1 10488:3 10519:1 10524:1 10526:1 10537:1 10543:1 10547:1 10573:1 10595:1 10627:1 10633:1 10714:1 10740:1 10750:1 10767:1 10777:1 10781:1 10812:1 10866:2 10888:1 10889:1 10905:1 10918:2 10961:1 10978:1 10989:1 11008:1 11053:1 11061:1 11074:1 11077:1 11080:1 11096:1 11125:1 11126:1 11151:1 11169:1 11189:1 11194:1 11244:1 11310:1 11333:1 11344:1 11443:2 11477:2 11488:2 11494:1 11512:1 11529:1 11549:1 11565:1 11581:2 11630:1 11710:2 11731:1 11756:1 11761:1 11775:1 11785:1 11789:1 11855:1 11869:1 11902:1 11972:2 11976:1 11979:2 11980:1 11999:1 12000:1 12001:1 12009:1 12049:1 12070:1 12075:1 12139:1 12174:1 12185:1 12209:1 12244:1 12269:1 12272:1 12292:1 12337:1 12355:2 12356:2 12360:2 12376:1 12396:1 12410:1 12438:1 12445:1 12507:1 12515:1 12522:1 12533:1 12548:2 12570:1 12575:1 12603:1 12632:2 12639:1 12648:1 12664:1 12698:1 12718:1 12815:2 12827:1 12851:1 12852:1 12857:1 12859:2 12881:1 12902:1 12986:1 13010:1 13081:1 13094:2 13114:1 13128:2 13148:2 13164:2 13166:1 13172:1 13204:1 13274:1 13320:1 13330:2 13386:1 13399:1 13483:1 13498:1 13499:1 13502:1 13527:1 13534:1 13553:1 13577:1 13606:1 13628:1 13678:1 13686:1 13691:1 13695:1 13709:1 13758:1 13846:1 13848:1 13873:1 13874:2 13915:1 13919:3 13956:1 14049:1 14050:1 14150:1 14160:1 14170:1 14176:1 14245:1 14342:1 14355:1 14409:1 14429:1 14462:1 14467:1 14475:1 14476:1 14479:1 14480:1 14512:1 14520:1 14534:1 14575:1 14595:1 14602:2 14637:1 14663:1 14678:1 14733:2 14754:2 14769:1 14770:1 14773:1 14774:1 14782:1 14786:1 14797:1 14812:2 14820:1 14898:1 14903:1 14923:2 14962:2 14970:1 14982:1 15021:1 15048:1 15070:1 15120:1 15121:1 15131:1 15140:2 15141:1 15174:1 15180:1 15193:2 15261:1 15265:1 15287:2 15297:2 15307:1 15323:1 15370:1 15381:1 15390:1 15407:1 15408:1 15413:1 15504:1 15532:1 15555:1 15579:1 15610:1 15629:1 15635:3 15652:1 15672:1 15689:1 15712:1 15714:2 15860:1 15864:1 15898:1 15905:1 15950:1 16005:1 16035:1 16066:1 16089:1 16109:1 16111:1 16132:1 16154:1 16158:1 16179:1 16240:1 16258:1 16261:1 16263:1 16282:1 16289:1 16309:2 16367:1 16379:1 16383:1 16392:1 16443:1 16447:1 16451:1 16456:1 16468:1 16469:1 16486:1 16563:1 16575:1 16586:1 16604:1 16608:1 16616:1 16630:1 16668:1 16678:2 16716:1 16718:1 16720:1 16721:1 16744:1 16766:2 16767:1 16768:1 16786:1 16802:1 16803:1 16823:1 16848:1 16961:1 16966:2 16973:1 16990:1 16991:1 17021:1 17022:1 17028:1 17076:1 17094:1 17284:1 17291:4 17298:1 17328:1 17341:1 17360:1 17365:1 17471:1 17486:1 17492:773 17497:1 17520:1 17555:1 17599:1 17628:1 17669:1 17793:1 17902:1 17914:1 17938:1 18003:1 18032:1 18087:1 18145:1 18269:4 18333:1 18366:1 18380:2 18423:1 18485:2 18494:1 18525:1 18584:1 18592:1 18606:2 18622:1 18667:1 18672:1 18676:1 18757:1 18776:1 18778:1 18849:2 18856:1 18892:1 18915:1 18921:2 18928:1 18958:1 18983:1 18995:1 19044:1 19057:1 19061:1 19078:1 19097:1 19109:1 19208:1 19214:1 19240:1 19253:1 19274:1 19277:1 19297:1 19358:1 19388:2 19426:1 19435:1 19465:1 19485:1 19487:1 19488:1 19510:1 19515:1 19518:1 19525:1 19558:1 19596:1 19612:1 19623:1 19647:2 19648:1 19651:2 19706:1 19708:1 19758:1 19785:1 19809:2 19928:1 19934:1 19968:1 20033:1 20096:1 20131:1 20139:1 20143:1 20174:1 20196:1 20216:1 20234:1 20247:1 20251:1 20290:1 20370:1 20401:2 20415:1 20421:5 20422:1 20446:1 20481:1 20488:1 20577:2 20580:1 20591:1 20610:2 20613:1 20624:1 20625:1 20627:1 20659:1 20727:1 20762:1 20776:1 20796:2 20841:1 20864:1 20894:1 20988:1 20994:2 21007:2 21011:1 21025:1 21030:1 21040:1 21067:1 21072:1 21082:1 21111:1 21120:1 21121:1 21132:1 21159:2 21173:3 21185:2 21236:1 21241:1 21242:1 21252:1 21260:1 21305:1 21315:1 21320:1 21329:1 21337:1 21345:1 21430:2 21435:1 21439:1 21478:1 21554:1 21568:1 21593:1 21632:2 21709:4 21731:1 21777:1 21895:1 21904:1 21909:1 21919:1 21927:1 21954:1 21967:1 21968:1 21975:1 21987:1 22024:1 22074:1 22097:1 22119:1 22137:1 22148:1 22157:2 22176:1 22189:1 22202:1 22208:1 22215:1 22224:1 22248:1 22291:1 22309:1 22323:1 22333:1 22340:1 22351:1 22405:1 22409:1 22438:1 22449:1 22502:1 22568:1 22572:1 22578:1 22586:1 22678:1 22679:1 22707:3 22728:1 22737:1 22762:1 22779:1 22797:1 22830:1 22838:1 22876:1 22885:1 22935:1 22956:1 22963:1 22967:1 23000:1 23003:5 23007:1 23052:1 23094:1 23103:1 23111:1 23128:2 23191:1 23240:1 23245:1 23247:1 23250:1 23271:1 23277:1 23315:1 23373:2 23415:1 23486:1 23535:1 23554:1 23608:1 23628:1 23633:1 23675:2 23694:1 23711:1 23735:1 23738:2 23751:1 23766:1 23783:1 23864:1 23866:2 23873:2 23878:1 23879:1 23898:1 23901:1 23902:1 23904:1 23914:1 23918:1 23935:1 23964:1 23986:1 23987:1 24008:1 24063:1 24085:1 24141:1 24171:1 24268:1 24271:4 24273:1 24324:1 24330:1 24352:2 24367:1 24397:1 24430:2 24436:1 24442:1 24443:1 24463:1 24466:2 24533:1 24598:4 24638:1 24643:1 24655:1 24721:1 24730:1 24734:1 24759:1 24809:1 24836:1 24839:1 24861:1 24899:2 24928:3 25000:1 25045:1 25071:1 25079:1 25134:1 25161:1 25248:1 25277:2 25281:1 25338:1 25347:1 25349:1 25370:1 25387:1 25434:1 25460:1 25473:2 25488:1 25515:1 25537:1 25539:1 25543:1 25545:1 25587:1 25593:1 25623:1 25635:1 25641:1 25663:1 25704:2 25710:1 25724:1 25728:1 25767:1 25778:2 25780:1 25788:1 25790:1 25793:1 25798:1 25804:1 25811:1 25835:1 25866:1 25871:1 25877:2 25912:1 25961:1 26013:2 26049:1 26068:1 26070:1 26071:1 26084:1 26092:1 26166:1 26174:1 26184:1 26275:1 26280:3 26312:1 26322:1 26337:1 26348:1 26352:2 26429:1 26442:1 26446:5 26451:1 26468:1 26482:2 26498:2 26531:1 26545:1 26598:1 26609:4 26647:6 26666:2 26681:1 26709:1 26821:1 26853:1 26872:1 26898:1 26968:1 26977:1 26981:1 26984:1 26990:1 27006:1 27026:1 27050:1 27078:1 27095:1 27118:1 27122:1 27133:1 27137:2 27180:2 27190:1 27232:1 27250:1 27358:1 27360:1 27372:1 27431:1 27479:2 27489:1 27497:1 27499:1 27526:1 27529:1 27538:1 27557:2 27691:1 27696:4 27730:1 27758:1
12 37:1 43:1 52:1 57:2 74:1 111:1 141:1 165:1 179:2 182:1 202:1 209:1 210:1 277:1 282:1 294:1 328:1 356:2 363:1 378:2 388:1 413:1 418:3 441:2 528:1 535:1 603:1 637:1 698:1 725:1 790:1 861:2 867:1 881:1 888:3 893:1 903:1 941:1 952:1 990:1 994:1 1019:1 1037:1 1054:1 1073:1 1088:1 1132:1 1192:1 1195:1 1203:2 1240:1 1249:1 1277:2 1287:1 1301:1 1331:1 1344:2 1354:1 1397:4 1448:1 1450:1 1454:1 1457:3 1459:1 1493:1 1516:1 1535:2 1564:2 1565:1 1568:1 1625:1 1656:1 1660:1 1668:4 1691:1 1695:1 1730:1 1768:1 1791:1 1795:1 1815:1 1831:2 1839:1 1848:1 1864:1 1890:2 1891:1 1897:1 1905:1 1922:2 1941:1 2006:1 2007:2 2010:1 2030:1 2039:1 2058:1 2080:1 2089:1 2148:1 2191:2 2197:2 2200:1 2208:1 2235:1 2236:1 2244:1 2245:2 2246:1 2249:3 2253:2 2256:1 2258:1 2261:1 2262:1 2264:1 2265:1 2270:3 2272:1 2287:2 2307:1 2338:3 2339:1 2354:2 2368:1 2381:1 2418:1 2451:1 2459:1 2501:1 2526:3 2545:1 2575:1 2580:1 2583:1 2589:1 2620:1 2699:3 2703:1 2721:1 2741:2 2756:1 2769:1 2846:3 2857:2 2860:1 2912:1 2919:1 2927:1 2928:1 2951:1 2957:1 3000:1 3008:1 3021:1 3053:1 3084:1 3113:1 3135:1 3160:1 3174:1 3191:2 3207:1 3223:1 3232:1 3244:1 3260:1 3322:1 3368:1 3399:1 3402:1 3407:1 3426:1 3431:1 3460:2 3500:1 3512:1 3529:1 3534:1 3559:1 3586:1 3607:1 3674:1 3675:1 3703:1 3713:1 3725:1 3726:2 3753:1 3805:1 3806:2 3844:2 3849:1 3876:1 3916:1 3921:1 3932:2 3972:1 3992:1 4023:1 4030:1 4104:5 4107:2 4117:1 4145:1 4163:2 4180:1 4239:1 4258:1 4267:1 4281:1 4310:1 4346:1 4357:1 4375:1 4404:1 4423:1 4472:1 4494:1 4506:1 4521:1 4550:2 4581:1 4605:1 4656:1 4700:1 4710:4 4733:1 4738:1 4814:4 4828:3 4830:2 4833:1 4838:1 4845:2 4850:1 4879:1 4891:1 4915:1 4993:1 5045:2 5112:1 5118:1 5133:1 5141:2 5163:5 5188:7 5242:1 5274:1 5335:1 5355:2 5382:1 5402:1 5407:1 5452:1 5481:1 5484:1 5496:1 5511:1 5527:2 5534:1 5639:1 5665:1 5669:1 5705:1 5750:1 5752:2 5755:1 5777:1 5779:1 5788:1 5794:1 5813:1 5840:1 5864:1 5868:1 5917:1 5994:1 6003:1 6008:1 6016:1 6092:1 6096:1 6098:1 6101:1 6102:1 6110:1 6113:1 6115:2 6117:5 6120:1 6246:1 6254:1 6260:2 6283:1 6362:1 6414:2 6428:1 6436:1 6455:1 6486:1 6490:1 6493:1 6516:2 6545:3 6566:1 6578:1 6614:1 6629:1 6656:1 6798:1 6877:1 6878:2 6924:1 6932:1 6949:1 6958:1 6964:1 6974:1 6975:1 6990:1 7117:2 7143:2 7144:1 7146:3 7155:1 7180:1 7198:1 7211:1 7250:2 7263:1 7293:1 7295:1 7328:7 7329:5 7336:1 7346:1 7352:1 7356:1 7384:1 7394:16 7410:3 7419:2 7422:1 7432:1 7480:1 7488:2 7489:2 7522:2 7550:1 7594:1 7614:1 7689:1 7725:2 7733:1 7811:1 7852:1 7871:3 7902:1 7905:1 7916:1 7947:1 7961:1 8062:1 8072:1 8091:1 8140:1 8204:1 8206:1 8207:1 8219:1 8221:1 8238:1 8244:1 8247:2 8259:1 8287:2 8335:1 8366:1 8433:1 8483:1 8490:1 8511:1 8523:1 8587:1 8591:1 8599:1 8630:1 8659:1 8688:2 8707:1 8732:1 8733:1 8740:1 8750:3 8787:1 8796:1 8813:1 8841:1 8843:1 8866:1 8880:1 8883:2 8931:1 8965:1 8990:1 8998:1 9006:1 9066:3 9108:1 9133:1 9136:1 9147:2 9153:1 9161:1 9175:1 9190:1 9191:2 9203:2 9220:1 9244:1 9250:1 9254:1 9264:1 9287:3 9303:2 9397:1 9433:2 9480:1 9481:3 9484:1 9523:1 9583:1 9599:1 9617:1 9650:1 9661:1 9665:1 9747:1 9797:1 9808:1 9831:1 9839:1 9876:1 9882:2 9961:1 9995:2 9999:1 10020:1 10054:1 10059:3 10066:1 10072:1 10135:1 10145:1 10148:1 10155:5 10162:1 10182:1 10214:1 10359:1 10365:2 10380:1 10386:1 10419:1 10424:1 10442:1 10448:1 10473:1 10488:3 10519:1 10524:1 10526:1 10537:1 10543:1 10547:1 10573:1 10595:1 10627:1 10633:1 10714:1 10740:1 10750:1 10767:1 10777:1 10781:1 10812:1 10866:2 10883:1 10888:1 10889:1 10905:1 10918:2 10961:1 10978:1 10989:1 11008:1 11053:1 11061:1 11074:1 11077:1 11080:1 11096:1 11125:1 11126:1 11151:1 11169:1 11189:1 11194:1 11244:1 11310:1 11333:1 11344:1 11443:2 11477:2 11488:2 11494:1 11512:1 11529:1 11549:1 11565:1 11581:2 11630:1 11710:2 11731:1 11756:1 11761:1 11775:1 11785:1 11789:1 11855:1 11869:1 11902:1 11972:2 11976:1 11979:2 11980:1 11999:1 12000:1 12001:2 12009:1 12049:1 12070:2 12075:1 12139:1 12174:1 12185:1 12209:1 12244:1 12269:1 12272:1 12292:1 12337:1 12355:2 12356:2 12360:2 12376:1 12381:1 12396:1 12402:1 12410:1 12438:1 12445:1 12507:1 12515:1 12522:1 12533:1 12548:2 12570:1 12575:2 12603:1 12632:2 12639:1 12648:1 12664:1 12698:1 12718:1 12815:2 12827:1 12851:1 12852:1 12857:1 12859:3 12881:1 12902:1 12986:1 13010:1 13013:1 13081:1 13094:2 13114:1 13128:2 13134:1 13148:2 13164:2 13166:1 13172:1 13204:1 13274:1 13320:1 13330:2 13386:1 13399:1 13483:1 13498:1 13499:1 13502:1 13527:1 13534:1 13553:1 13577:1 13606:1 13628:1 13678:1 13686:1 13691:1 13695:1 13709:1 13758:1 13812:1 13846:1 13848:1 13873:1 13874:2 13915:1 13919:3 13956:1 14045:1 14049:2 14050:1 14150:1 14155:1 14160:1 14170:1 14176:1 14245:1 14342:1 14355:1 14409:1 14429:1 14462:1 14467:1 14475:1 14476:1 14479:1 14480:1 14497:1 14512:1 14520:1 14534:1 14575:1 14595:1 14602:2 14637:1 14663:1 14678:1 14733:2 14754:3 14769:1 14770:1 14773:1 14774:1 14782:2 14786:1 14797:1 14812:2 14820:1 14843:1 14898:1 14903:1 14923:2 14962:2 14970:1 14982:1 15021:1 15048:2 15070:1 15120:1 15121:1 15131:1 15140:2 15141:1 15174:1 15180:1 15193:2 15261:1 15265:1 15287:2 15297:2 15307:1 15323:1 15370:1 15381:1 15390:1 15407:1 15408:1 15413:1 15504:1 15532:1 15555:1 15579:1 15610:1 15629:1 15635:3 15652:1 15672:1 15689:1 15712:1 15714:2 15860:1 15864:1 15898:1 15905:1 15936:1 15950:1 15957:1 16005:1 16035:1 16066:1 16089:1 16109:1 16111:1 16132:1 16154:1 16158:1 16179:1 16240:1 16258:1 16261:1 16263:1 16282:1 16289:2 16309:2 16367:1 16379:1 16383:1 16392:1 16443:1 16447:1 16451:1 16456:1 16468:1 16469:1 16486:1 16563:1 16575:1 16586:1 16604:1 16608:1 16616:1 16630:1 16668:1 16678:2 16716:1 16718:1 16720:1 16721:1 16744:1 16766:2 16767:1 16768:1 16783:1 16786:1 16802:1 16803:1 16823:1 16848:1 16961:1 16966:2 16973:2 16990:1 16991:1 17021:1 17022:1 17028:1 17076:1 17094:1 17127:1 17284:1 17291:4 17298:1 17328:1 17341:1 17360:1 17365:1 17471:1 17486:1 17492:823 17497:1 17520:1 17555:1 17599:1 17628:1 17669:1 17793:1 17902:1 17914:1 17938:1 18003:1 18032:1 18087:1 18145:1 18161:1 18269:4 18333:1 18366:1 18380:2 18383:1 18423:1 18485:2 18494:1 18525:1 18535:1 18584:1 18592:1 18606:2 18622:1 18651:1 18667:1 18672:2 18676:1 18757:1 18776:1 18778:1 18849:2 18856:1 18892:1 18915:1 18921:2 18928:1 18958:1 18983:1 18995:1 19044:1 19057:1 19061:1 19078:1 19097:1 19109:1 19208:1 19214:1 19240:1 19253:1 19274:1 19277:1 19297:1 19358:1 19388:2 19426:1 19435:1 19465:1 19485:1 19487:1 19488:1 19510:1 19515:1 19518:1 19525:1 19558:1 19596:1 19612:1 19623:1 19647:2 19648:1 19651:2 19706:1 19708:1 19758:1 19785:1 19809:2 19928:1 19934:1 19968:1 20033:1 20091:1 20096:1 20131:1 20139:1 20143:1 20174:1 20196:1 20216:1 20234:1 20247:1 20251:1 20290:1 20370:1 20401:2 20415:1 20421:5 20422:1 20446:1 20477:1 20481:1 20488:1 20577:2 20580:1 20583:1 20591:1 20610:3 20613:1 20624:1 20625:1 20627:1 20659:1 20716:1 20727:1 20762:1 20776:1 20796:2 20823:1 20841:1 20864:1 20894:1 20988:1 20994:2 21007:2 21011:1 21025:1 21030:1 21040:1 21067:1 21072:1 21080:1 21082:1 21111:1 21120:1 21121:1 21132:1 21159:2 21173:3 21185:2 21236:1 21241:1 21242:1 21252:1 21260:1 21280:1 21305:1 21315:1 21320:1 21323:1 21329:1 21337:1 21345:1 21430:2 21435:1 21439:1 21478:1 21554:1 21568:1 21593:1 21632:2 21709:4 21731:1 21777:1 21895:1 21904:1 21909:1 21919:1 21927:1 21954:1 21967:1 21968:1 21975:1 21987:1 22024:1 22074:1 22097:1 22119:1 22137:1 22148:1 22157:2 22176:1 22189:1 22202:1 22208:1 22215:1 22224:1 22248:1 22291:1 22309:1 22323:1 22333:1 22340:1 22351:1 22405:1 22409:1 22438:1 22449:1 22471:1 22502:1 22568:1 22572:1 22578:1 22586:1 22678:1 22679:1 22707:3 22718:1 22728:1 22737:1 22762:1 22779:1 22797:1 22830:1 22838:1 22876:1 22885:1 22935:1 22956:1 22963:1 22967:1 23000:1 23003:6 23007:1 23052:1 23094:1 23103:1 23111:1 23121:1 23128:2 23191:1 23194:1 23240:1 23245:1 23247:1 23250:1 23271:1 23277:1 23315:1 23373:2 23415:1 23486:1 23535:1 23554:1 23608:1 23628:1 23633:1 23637:1 23675:2 23694:1 23711:1 23718:1 23735:1 23738:2 23751:1 23766:1 23783:1 23864:1 23866:3 23873:2 23878:1 23879:1 23898:1 23901:1 23902:1 23904:1 23914:1 23918:1 23935:1 23964:2 23986:1 23987:1 24008:1 24063:1 24085:1 24141:1 24153:1 24171:1 24268:1 24271:4 24273:1 24324:1 24330:1 24352:2 24367:1 24397:1 24430:2 24436:1 24442:1 24443:1 24463:1 24466:2 24533:1 24598:4 24638:1 24643:1 24655:1 24675:1 24721:1 24730:1 24734:1 24759:1 24809:1 24836:1 24839:1 24861:1 24899:2 24928:3 25000:1 25045:1 25071:1 25079:1 25134:1 25161:1 25219:1 25248:1 25277:2 25281:1 25338:1 25347:1 25349:1 25370:1 25387:1 25434:1 25460:1 25473:2 25488:1 25515:1 25537:1 25539:1 25543:1 25545:1 25587:1 25593:1 25623:1 25635:2 25641:1 25663:1 25704:2 25710:1 25724:1 25728:1 25767:1 25769:1 25778:2 25780:1 25788:1 25790:1 25793:1 25798:1 25804:1 25811:1 25835:1 25866:2 25871:1 25877:2 25912:1 25961:1 26013:2 26049:1 26068:1 26070:1 26071:1 26084:1 26092:1 26166:1 26174:1 26184:1 26250:1 26275:1 26280:3 26312:1 26322:1 26337:1 26348:1 26352:2 26429:1 26442:1 26446:5 26451:1 26468:1 26482:2 26498:2 26531:1 26545:1 26565:1 26598:1 26609:5 26647:7 26652:1 26666:2 26681:1 26709:1 26821:1 26853:1 26872:1 26898:1 26912:1 26968:1 26977:1 26981:1 26984:1 26990:1 27006:1 27026:1 27050:1 27062:1 27078:1 27095:1 27118:1 27122:1 27133:1 27137:2 27180:2 27190:1 27232:1 27250:1 27358:1 27360:1 27372:2 27431:1 27479:2 27489:1 27497:1 27499:1 27526:1 27529:1 27538:1 27557:2 27691:1 27696:4 27730:1 27758:1
12 37:1 43:1 52:1 57:2 74:1 111:1 141:1 165:1 179:2 182:1 202:1 209:1 210:1 277:1 282:1 294:1 328:1 356:2 363:2 378:2 388:1 413:1 418:3 441:2 528:1 535:1 603:1 637:1 698:1 725:1 790:1 861:2 867:1 881:1 888:3 893:1 903:1 941:1 952:1 990:1 994:1 1019:1 1037:1 1054:1 1073:1 1088:1 1125:1 1132:1 1192:1 1195:1 1203:2 1240:1 1249:2 1277:2 1287:1 1301:1 1331:1 1344:2 1354:1 1369:1 1397:4 1448:1 1450:1 1454:1 1457:3 1459:1 1493:1 1516:1 1535:2 1564:2 1565:1 1568:1 1574:1 1625:1 1656:1 1660:1 1668:4 1691:1 1695:1 1730:1 1768:1 1791:1 1795:1 1815:1 1831:2 1839:1 1848:1 1864:1 1890:2 1891:1 1897:1 1905:1 1922:2 1941:1 2006:1 2007:2 2010:1 2030:1 2039:1 2058:1 2080:1 2089:1 2148:1 2191:3 2197:2 2200:1 2208:1 2235:1 2236:1 2244:1 2245:2 2246:1 2249:3 2253:2 2256:1 2258:1 2261:1 2262:1 2264:1 2265:1 2270:3 2272:1 2287:2 2307:1 2338:3 2339:1 2354:2 2368:1 2381:1 2418:1 2451:1 2459:1 2487:1 2501:1 2526:3 2545:1 2575:1 2580:1 2583:1 2589:1 2620:1 2699:3 2703:1 2721:1 2741:2 2756:1 2769:1 2846:3 2857:2 2860:1 2912:1 2919:1 2927:1 2928:1 2937:1 2951:1 2957:1 3000:1 3008:1 3021:1 3053:1 3084:1 3113:1 3135:1 3160:1 3174:1 3191:2 3207:1 3223:1 3232:2 3244:1 3260:1 3322:1 3368:1 3399:1 3402:1 3407:1 3426:1 3431:1 3460:2 3500:1 3512:1 3529:1 3534:1 3559:1 3586:1 3607:1 3648:1 3674:1 3675:1 3703:1 3713:1 3725:1 3726:2 3741:1 3753:1 3805:1 3806:2 3844:2 3849:1 3876:1 3916:1 3921:1 3932:2 3972:1 3992:1 4023:1 4030:1 4104:5 4107:2 4113:1 4117:1 4145:1 4163:3 4175:1 4180:1 4192:1 4239:1 4258:1 4267:1 4281:1 4310:1 4346:1 4357:1 4375:1 4404:1 4423:1 4472:1 4494:1 4506:1 4521:1 4550:2 4581:1 4605:1 4656:1 4700:1 4710:6 4733:1 4738:1 4814:4 4828:3 4830:2 4833:1 4838:1 4845:2 4850:1 4856:1 4879:1 4891:1 4915:1 4993:1 5045:2 5112:1 5118:1 5133:1 5141:2 5162:1 5163:5 5188:7 5242:1 5274:1 5335:1 5355:2 5361:1 5382:1 5402:1 5407:1 5452:1 5470:1 5481:1 5484:1 5496:1 5511:1 5527:2 5534:1 5639:1 5665:1 5669:1 5705:1 5750:1 5752:3 5755:1 5777:1 5779:1 5788:1 5794:1 5813:1 5840:1 5864:1 5868:1 5917:1 5994:1 6003:1 6008:1 6016:1 6092:1 6096:1 6098:1 6101:1 6102:1 6110:1 6113:1 6115:2 6117:6 6120:1 6169:1 6246:1 6254:1 6260:2 6283:1 6362:1 6414:2 6428:1 6436:1 6455:1 6472:1 6486:1 6490:1 6493:1 6516:2 6545:3 6566:1 6578:1 6614:1 6629:1 6656:1 6762:1 6798:1 6877:1 6878:2 6924:1 6932:1 6949:1 6958:1 6964:1 6974:1 6975:1 6990:1 7117:2 7143:2 7144:1 7146:3 7155:1 7180:1 7198:1 7211:1 7250:2 7263:1 7293:1 7295:1 7328:7 7329:5 7336:1 7346:1 7352:1 7356:1 7384:1 7394:16 7410:3 7419:2 7422:1 7432:1 7480:1 7488:2 7489:2 7522:2 7550:1 7594:1 7614:1 7629:1 7651:1 7689:1 7725:2 7733:1 7811:1 7852:1 7871:3 7902:1 7905:1 7916:1 7947:1 7961:1 8008:1 8062:1 8072:1 8091:1 8133:1 8140:1 8167:1 8204:1 8206:1 8207:1 8219:1 8221:1 8238:1 8244:1 8247:2 8259:1 8287:2 8335:1 8366:1 8433:1 8483:1 8490:1 8511:1 8523:1 8587:1 8591:1 8599:1 8630:1 8659:1 8676:1 8688:2 8707:1 8732:1 8733:1 8740:1 8750:3 8787:1 8796:1 8813:1 8841:1 8843:1 8866:1 8880:1 8883:2 8931:1 8948:1 8965:1 8990:1 8998:1 9006:1 9066:3 9108:1 9133:1 9136:1 9147:2 9153:1 9161:1 9175:1 9190:1 9191:2 9203:2 9220:1 9244:1 9250:1 9254:1 9257:1 9264:1 9287:3 9303:2 9397:1 9433:2 9480:1 9481:3 9484:1 9523:1 9526:1 9583:1 9599:1 9617:1 9650:1 9661:1 9665:1 9747:1 9797:1 9808:1 9831:1 9839:1 9876:1 9882:2 9961:1 9995:2 9999:1 10020:1 10054:1 10059:3 10066:1 10072:1 10135:1 10145:1 10148:1 10155:5 10162:1 10182:1 10214:1 10266:1 10359:1 10365:2 10380:1 10386:1 10419:1 10424:1 10442:1 10448:1 10473:1 10488:3 10519:1 10524:1 10526:1 10537:1 10543:1 10547:1 10573:1 10583:1 10595:1 10627:1 10633:1 10710:1 10714:1 10740:1 10750:1 10767:1 10777:1 10781:1 10812:1 10866:2 10883:1 10888:1 10889:1 10905:1 10918:2 10961:1 10978:1 10989:1 11008:1 11053:2 11061:1 11074:1 11076:1 11077:1 11080:1 11096:1 11125:1 11126:1 11151:1 11169:1 11189:1 11194:1 11244:1 11310:1 11333:1 11344:1 11443:3 11477:2 11488:2 11494:1 11512:1 11529:1 11549:1 11565:1 11581:2 11630:1 11710:2 11731:1 11756:1 11761:1 11775:1 11785:1 11789:1 11855:1 11869:1 11902:1 11928:1 11972:2 11976:1 11979:2 11980:1 11999:1 12000:1 12001:2 12009:1 12049:1 12058:1 12070:2 12075:1 12139:1 12174:1 12185:1 12209:1 12244:1 12269:1 12272:1 12292:1 12337:1 12355:2 12356:2 12360:2 12376:1 12381:1 12396:1 12402:1 12410:1 12438:1 12443:1 12445:1 12507:1 12515:1 12522:1 12533:1 12548:2 12570:1 12575:2 12603:1 12632:2 12639:1 12648:1 12664:1 12698:1 12718:1 12815:3 12827:1 12851:1 12852:2 12857:1 12859:3 12881:1 12902:1 12986:1 13010:2 13013:1 13081:1 13094:2 13114:1 13128:2 13134:1 13148:2 13164:2 13166:1 13172:1 13204:1 13274:1 13320:2 13330:2 13386:1 13399:1 13483:1 13498:1 13499:1 13502:1 13527:1 13534:1 13553:1 13577:1 13606:1 13628:1 13678:1 13686:1 13691:1 13695:1 13709:1 13758:1 13812:1 13846:1 13848:1 13873:1 13874:2 13915:1 13919:3 13956:1 14045:1 14049:2 14050:1 14150:1 14155:1 14160:1 14170:1 14176:1 14245:1 14342:1 14355:1 14409:1 14429:1 14462:1 14467:1 14475:1 14476:1 14479:1 14480:1 14497:1 14512:1 14520:1 14534:1 14575:1 14595:1 14602:2 14637:1 14663:1 14678:1 14733:3 14754:3 14769:1 14770:1 14773:1 14774:1 14782:2 14786:1 14797:1 14812:2 14820:1 14843:1 14898:1 14903:1 14923:2 14962:2 14970:1 14982:1 15021:1 15048:2 15070:1 15120:1 15121:1 15131:1 15140:2 15141:1 15174:1 15180:1 15193:2 15261:1 15265:1 15287:2 15297:2 15307:1 15323:1 15370:1 15381:1 15390:1 15407:1 15408:1 15413:1 15504:1 15532:1 15555:1 15579:1 15610:1 15629:1 15635:3 15652:1 15672:1 15689:1 15712:1 15714:2 15846:1 15860:1 15864:1 15898:1 15905:1 15936:1 15950:1 15957:1 16005:1 16035:1 16066:1 16089:1 16109:1 16111:1 16132:1 16154:1 16158:1 16164:1 16179:1 16240:1 16258:1 16261:1 16263:1 16282:1 16289:2 16309:2 16367:1 16379:1 16383:1 16392:1 16443:1 16447:1 16451:1 16456:1 16468:1 16469:1 16486:1 16563:1 16575:1 16586:1 16604:1 16608:1 16616:1 16630:1 16668:1 16678:2 16716:1 16718:1 16720:1 16721:1 16743:1 16744:1 16766:2 16767:1 16768:1 16783:1 16786:1 16802:1 16803:1 16823:1 16848:1 16961:1 16966:2 16973:2 16990:1 16991:1 17021:1 17022:1 17028:1 17076:1 17094:1 17127:1 17186:1 17284:1 17291:4 17298:1 17326:1 17328:1 17341:1 17360:1 17365:1 17471:1 17486:1 17492:913 17497:1 17520:1 17555:1 17599:1 17628:1 17669:1 17793:1 17846:1 17902:1 17914:1 17938:1 18003:1 18032:1 18087:1 18145:1 18161:1 18198:1 18269:5 18333:1 18366:1 18380:2 18383:1 18423:1 18485:2 18494:1 18507:1 18525:1 18535:1 18584:1 18592:1 18606:2 18619:1 18622:1 18651:1 18667:1 18672:2 18676:1 18757:1 18776:1 18778:1 18849:3 18856:1 18892:1 18915:1 18921:2 18928:1 18958:1 18983:1 18995:1 19044:1 19057:1 19061:1 19078:1 19097:1 19109:1 19208:1 19214:1 19240:1 19253:1 19274:1 19277:1 19297:1 19358:1 19388:2 19426:1 19435:1 19465:1 19485:1 19487:1 19488:1 19510:1 19515:1 19518:1 19525:1 19558:1 19596:1 19612:1 19623:2 19624:1 19647:2 19648:1 19651:2 19706:1 19708:1 19710:1 19758:1 19785:1 19809:2 19928:1 19934:1 19957:1 19968:1 20033:2 20091:1 20096:1 20109:1 20131:1 20139:1 20143:1 20174:1 20196:1 20216:1 20234:1 20247:1 20251:1 20290:1 20370:1 20401:2 20415:1 20421:5 20422:1 20433:1 20446:1 20477:1 20481:1 20488:1 20577:2 20580:1 20583:1 20591:1 20610:3 20613:1 20624:1 20625:1 20627:1 20659:1 20716:1 20727:1 20762:1 20776:1 20796:2 20804:1 20823:1 20841:1 20864:1 20894:1 20923:1 20988:1 20994:2 21004:1 21007:2 21011:1 21025:1 21030:1 21040:1 21067:1 21072:1 21080:1 21082:1 21111:1 21120:1 21121:1 21132:1 21159:2 21173:3 21185:2 21236:1 21241:1 21242:1 21252:1 21260:1 21280:1 21305:1 21315:1 21320:1 21323:1 21329:1 21337:1 21345:1 21430:3 21435:1 21439:1 21478:1 21554:1 21568:1 21593:1 21632:2 21692:1 21709:4 21731:1 21777:1 21895:1 21904:1 21909:1 21919:2 21927:1 21954:1 21967:1 21968:1 21975:1 21987:1 22024:1 22055:1 22074:1 22097:1 22119:1 22137:1 22148:1 22157:2 22176:1 22189:1 22202:1 22208:1 22215:1 22224:1 22248:1 22291:1 22309:1 22323:1 22333:1 22340:1 22351:1 22405:1 22409:1 22438:1 22449:1 22471:1 22502:1 22568:1 22572:1 22578:1 22586:1 22678:1 22679:1 22707:3 22718:1 22728:1 22737:1 22762:1 22779:1 22797:1 22830:1 22838:1 22876:1 22885:1 22935:1 22956:2 22963:1 22967:2 23000:1 23003:6 23007:1 23052:1 23094:1 23103:1 23111:1 23121:1 23128:2 23191:1 23194:1 23240:1 23245:1 23247:1 23250:1 23271:1 23277:1 23315:1 23373:2 23415:1 23426:1 23486:1 23535:1 23554:1 23608:1 23628:1 23633:1 23637:1 23675:2 23694:1 23711:1 23718:1 23735:1 23738:2 23751:1 23766:1 23783:1 23864:1 23865:1 23866:3 23873:2 23878:1 23879:1 23898:1 23901:1 23902:1 23904:1 23913:1 23914:1 23918:1 23935:1 23964:2 23986:1 23987:1 24008:1 24063:1 24085:1 24141:1 24153:1 24171:1 24268:1 24271:4 24273:1 24298:1 24324:1 24330:1 24352:2 24367:1 24397:1 24430:2 24436:1 24442:1 24443:1 24463:1 24466:2 24533:1 24598:4 24638:1 24643:1 24655:1 24675:1 24720:1 24721:1 24730:1 24734:1 24759:1 24809:1 24836:1 24839:1 24861:1 24899:3 24928:3 25000:1 25033:1 25045:1 25071:1 25079:1 25134:1 25161:1 25219:1 25248:1 25277:2 25281:1 25338:1 25347:1 25349:1 25370:1 25387:1 25434:1 25460:1 25473:2 25488:1 25515:1 25537:1 25539:1 25543:1 25545:1 25587:1 25593:1 25623:1 25635:2 25641:1 25663:1 25704:2 25710:1 25720:1 25724:1 25728:1 25767:1 25769:1 25778:2 25780:1 25788:1 25790:1 25793:1 25798:1 25804:1 25811:1 25835:1 25866:2 25871:1 25877:2 25912:1 25961:1 26013:2 26049:1 26068:1 26070:1 26071:1 26084:2 26092:1 26166:1 26174:1 26184:1 26250:1 26275:1 26280:3 26312:1 26322:1 26337:1 26348:1 26352:2 26400:1 26429:1 26442:1 26446:5 26451:1 26468:1 26482:2 26498:3 26531:1 26545:1 26565:1 26575:1 26598:1 26609:5 26647:7 26652:1 26655:1 26666:2 26681:1 26709:1 26821:1 26853:1 26872:1 26898:1 26909:1 26912:1 26968:1 26977:1 26981:1 26984:1 26990:1 27006:1 27026:1 27050:1 27062:1 27078:1 27095:1 27118:1 27122:1 27133:1 27137:2 27180:2 27190:1 27232:1 27250:1 27358:1 27360:1 27368:1 27372:2 27431:1 27479:3 27489:1 27497:1 27499:1 27526:1 27529:1 27538:1 27557:2 27691:1 27696:4 27730:1 27758:1
12 37:1 43:1 52:1 57:2 74:1 111:1 141:1 165:1 179:2 182:1 202:1 209:1 210:1 277:1 282:1 294:1 328:1 356:2 363:2 378:2 388:1 413:1 418:3 441:2 528:1 535:1 603:1 637:1 698:1 725:1 790:1 861:2 867:1 881:1 888:3 893:1 903:1 941:1 952:1 990:1 994:1 1019:1 1037:1 1054:1 1073:1 1088:1 1125:1 1132:1 1192:1 1195:1 1203:2 1240:1 1249:2 1277:2 1287:1 1301:1 1331:1 1344:2 1354:1 1369:1 1397:4 1448:1 1450:1 1454:1 1457:3 1459:1 1493:1 1516:1 1535:2 1564:2 1565:1 1568:1 1574:1 1625:1 1656:1 1660:1 1668:4 1691:1 1695:1 1730:1 1768:1 1791:1 1795:1 1815:1 1831:2 1839:1 1848:1 1864:1 1890:2 1891:1 1897:1 1905:1 1922:2 1941:1 2006:1 2007:2 2010:1 2030:1 2039:1 2058:1 2080:1 2089:1 2148:1 2164:1 2191:3 2197:2 2200:1 2208:1 2235:1 2236:1 2244:1 2245:2 2246:1 2249:3 2253:2 2256:1 2258:1 2261:1 2262:1 2264:1 2265:1 2270:3 2272:1 2281:1 2287:2 2307:1 2338:3 2339:1 2354:2 2368:1 2381:1 2418:1 2451:1 2459:1 2487:1 2501:1 2523:1 2526:3 2545:1 2575:1 2580:1 2583:1 2589:1 2620:1 2640:1 2699:3 2703:1 2721:1 2741:2 2745:1 2756:1 2769:1 2846:3 2857:2 2860:1 2912:1 2919:1 2927:1 2928:1 2937:1 2951:1 2957:1 3000:1 3008:1 3021:1 3053:1 3084:1 3113:1 3135:1 3160:1 3174:1 3191:2 3207:1 3223:1 3232:2 3244:1 3260:1 3322:1 3368:1 3399:1 3402:1 3407:1 3426:1 3431:1 3460:2 3500:1 3512:1 3529:1 3534:1 3559:1 3586:1 3607:1 3648:1 3674:1 3675:1 3703:1 3713:1 3725:1 3726:2 3741:1 3753:1 3805:1 3806:2 3844:2 3849:1 3876:1 3916:1 3921:1 3932:2 3972:1 3992:1 4023:1 4030:1 4104:5 4107:2 4113:1 4117:1 4145:1 4163:3 4175:1 4180:1 4192:1 4239:2 4258:1 4267:1 4281:1 4310:1 4346:1 4357:1 4375:1 4404:1 4416:1 4423:1 4472:1 4494:1 4506:1 4521:1 4526:1 4550:2 4581:1 4605:1 4656:1 4700:1 4710:6 4733:1 4738:1 4814:4 4828:3 4830:2 4833:1 4838:1 4845:2 4850:1 4856:1 4879:1 4891:1 4915:1 4993:1 5045:2 5112:1 5118:1 5133:1 5141:2 5162:1 5163:5 5188:7 5242:1 5274:1 5335:1 5355:2 5361:1 5382:1 5402:1 5407:1 5452:1 5470:1 5476:1 5481:1 5484:1 5496:1 5511:1 5527:2 5534:1 5639:1 5665:1 5669:1 5705:1 5750:1 5752:3 5755:1 5777:1 5779:1 5788:1 5794:1 5813:1 5840:1 5864:1 5868:1 5917:1 5994:1 6003:1 6008:1 6016:1 6092:1 6096:1 6098:1 6101:1 6102:1 6110:1 6113:1 6115:2 6117:6 6120:1 6169:1 6246:1 6254:1 6260:2 6283:1 6362:1 6375:1 6414:2 6428:1 6436:1 6455:1 6472:1 6486:1 6490:1 6493:1 6516:2 6545:3 6566:1 6578:1 6614:1 6629:1 6656:1 6762:1 6798:1 6877:1 6878:2 6924:1 6932:1 6949:1 6958:1 6964:1 6974:1 6975:1 6990:1 7117:2 7143:2 7144:1 7146:3 7155:1 7180:1 7198:1 7211:1 7250:2 7263:1 7293:1 7295:1 7328:7 7329:5 7336:1 7337:1 7346:1 7352:1 7356:1 7384:1 7394:17 7410:3 7419:2 7422:1 7432:1 7480:1 7488:2 7489:2 7522:2 7550:1 7594:1 7614:1 7629:1 7651:1 7689:1 7725:2 7733:1 7811:1 7852:1 7871:3 7902:1 7905:1 7916:1 7947:1 7961:1 8008:1 8062:1 8072:1 8091:1 8124:1 8133:1 8140:1 8167:1 8204:1 8206:1 8207:1 8219:1 8221:1 8238:1 8244:1 8247:2 8259:1 8287:2 8335:1 8366:1 8433:1 8483:1 8490:1 8491:1 8511:1 8523:1 8587:1 8591:1 8599:1 8630:1 8659:1 8676:1 8688:2 8707:1 8732:1 8733:1 8740:1 8750:3 8787:1 8796:1 8810:1 8813:1 8841:1 8843:1 8866:1 8880:1 8883:2 8931:1 8948:1 8965:1 8990:1 8998:1 9006:1 9066:3 9108:1 9133:1 9136:1 9147:2 9153:1 9161:1 9175:1 9190:1 9191:2 9203:2 9220:1 9244:1 9250:1 9254:1 9257:1 9264:1 9287:3 9303:2 9397:1 9433:2 9480:1 9481:3 9484:1 9523:1 9526:1 9583:1 9599:1 9617:1 9650:1 9661:1 9665:1 9693:1 9747:1 9797:1 9808:1 9831:1 9839:1 9876:1 9882:2 9961:1 9995:2 9999:1 10020:1 10054:1 10059:3 10066:1 10072:1 10135:1 10145:1 10148:1 10155:5 10162:1 10182:1 10210:1 10214:1 10237:1 10266:1 10359:1 10365:2 10380:1 10386:1 10419:1 10424:1 10442:1 10448:1 10473:1 10488:3 10519:1 10524:1 10526:1 10537:1 10543:1 10547:1 10573:1 10583:1 10595:1 10627:1 10633:2 10710:1 10714:1 10740:1 10750:1 10767:1 10777:1 10781:1 10812:1 10866:2 10883:2 10888:1 10889:1 10905:1 10918:2 10961:1 10978:1 10989:1 11008:1 11053:2 11061:1 11071:1 11074:1 11076:1 11077:1 11080:1 11096:1 11125:1 11126:1 11151:1 11169:1 11189:1 11194:1 11244:1 11310:1 11333:1 11344:1 11443:3 11477:2 11488:2 11494:1 11512:1 11529:1 11549:1 11565:1 11581:2 11630:1 11710:2 11731:1 11756:1 11761:1 11775:1 11785:1 11789:1 11855:2 11869:1 11902:1 11928:1 11972:2 11976:1 11979:2 11980:1 11999:1 12000:1 12001:2 12009:1 12049:1 12058:1 12070:2 12075:1 12139:1 12174:1 12185:1 12209:1 12244:1 12269:1 12272:1 12292:1 12337:1 12355:2 12356:2 12360:2 12376:1 12381:1 12386:1 12396:1 12402:1 12410:1 12438:1 12443:1 12445:1 12507:1 12515:1 12522:1 12533:1 12548:2 12570:1 12575:2 12603:1 12632:2 12639:1 12648:1 12664:1 12698:1 12718:1 12815:3 12827:1 12851:1 12852:2 12857:1 12859:3 12881:1 12902:1 12986:1 13010:2 13013:1 13081:1 13094:2 13114:1 13128:2 13134:1 13148:2 13164:2 13166:1 13172:1 13204:1 13274:1 13320:2 13330:2 13386:1 13399:1 13483:1 13498:1 13499:1 13502:1 13527:1 13534:1 13553:1 13577:1 13606:1 13628:1 13678:1 13686:1 13691:1 13695:1 13709:1 13758:1 13812:1 13846:1 13848:1 13873:1 13874:2 13915:1 13919:3 13956:1 14045:1 14049:2 14050:1 14150:1 14155:1 14160:1 14170:1 14176:1 14245:1 14342:1 14355:1 14409:1 14429:1 14462:1 14467:1 14475:1 14476:1 14479:1 14480:1 14497:1 14512:1 14520:1 14534:1 14575:1 14595:1 14602:2 14637:1 14663:1 14678:1 14733:3 14754:3 14769:1 14770:1 14773:1 14774:1 14782:2 14786:1 14797:1 14812:2 14820:1 14843:1 14898:1 14903:1 14923:2 14962:2 14970:1 14982:1 15021:1 15048:2 15070:1 15120:1 15121:1 15131:1 15140:2 15141:1 15174:1 15180:1 15193:2 15261:1 15265:1 15287:2 15297:2 15307:1 15323:1 15370:1 15381:1 15390:1 15407:1 15408:1 15413:2 15504:1 15532:1 15555:1 15579:1 15610:1 15629:1 15635:3 15652:1 15672:1 15689:1 15712:1 15714:2 15846:1 15860:1 15864:1 15898:1 15905:1 15936:1 15950:1 15957:1 16005:1 16035:1 16066:1 16089:1 16109:1 16111:1 16132:1 16154:1 16158:1 16164:1 16179:1 16240:1 16258:1 16261:1 16263:1 16282:1 16289:2 16309:2 16367:1 16379:1 16383:1 16392:1 16443:1 16447:1 16451:1 16456:1 16468:1 16469:1 16486:1 16563:1 16575:1 16586:1 16604:1 16608:1 16616:1 16630:1 16668:1 16678:2 16685:1 16716:1 16718:1 16720:1 16721:1 16743:1 16744:1 16766:2 16767:1 16768:1 16783:1 16786:1 16802:1 16803:1 16823:1 16848:1 16961:1 16966:2 16973:2 16990:1 16991:1 17021:1 17022:1 17028:1 17076:1 17094:1 17127:1 17186:1 17284:1 17291:4 17298:1 17326:1 17328:1 17341:1 17360:1 17365:1 17471:1 17486:1 17492:947 17497:1 17520:1 17555:1 17599:1 17628:1 17669:1 17793:1 17846:1 17902:1 17914:1 17933:1 17938:1 18003:1 18032:1 18087:1 18145:1 18161:1 18198:1 18269:5 18333:1 18366:1 18380:2 18383:1 18423:1 18471:1 18485:2 18494:1 18503:1 18507:1 18525:1 18535:1 18584:1 18592:1 18606:2 18619:1 18622:1 18651:1 18667:1 18672:2 18676:1 18757:1 18776:1 18778:1 18849:3 18856:1 18892:1 18915:1 18921:2 18928:1 18958:1 18983:1 18995:1 19044:1 19057:1 19061:1 19078:1 19097:1 19109:1 19202:1 19208:1 19214:1 19240:1 19253:1 19274:1 19277:1 19297:1 19358:1 19388:2 19426:1 19435:1 19465:1 19485:1 19487:1 19488:1 19510:1 19515:1 19518:1 19525:1 19558:1 19596:1 19612:1 19623:2 19624:1 19647:2 19648:1 19651:2 19706:1 19708:1 19710:1 19758:1 19785:1 19809:2 19928:1 19934:1 19957:1 19968:1 20033:2 20091:1 20096:1 20109:1 20131:1 20139:1 20143:1 20174:1 20196:1 20216:1 20234:1 20247:1 20251:1 20290:1 20370:1 20401:2 20415:1 20421:5 20422:1 20433:1 20446:1 20477:2 20481:1 20488:1 20577:2 20580:1 20583:1 20591:1 20610:3 20613:1 20624:1 20625:1 20627:1 20659:1 20716:1 20727:1 20762:1 20776:1 20796:2 20804:1 20823:1 20841:1 20864:1 20894:1 20923:1 20988:1 20994:2 21004:1 21007:2 21011:1 21025:1 21030:1 21040:1 21067:1 21072:1 21080:1 21082:1 21111:1 21120:1 21121:1 21132:1 21159:2 21173:3 21185:2 21233:1 21236:1 21241:1 21242:1 21252:1 21260:1 21280:1 21305:1 21315:1 21320:1 21323:1 21329:1 21337:1 21345:1 21430:3 21435:1 21439:1 21478:1 21554:1 21568:1 21587:1 21593:1 21632:2 21692:1 21709:4 21731:1 21777:1 21895:1 21904:1 21909:1 21919:2 21927:1 21954:1 21967:1 21968:1 21975:1 21987:1 22024:1 22055:1 22074:1 22097:1 22119:1 22137:1 22148:1 22157:2 22176:1 22188:1 22189:1 22202:1 22208:1 22215:1 22224:1 22248:1 22291:1 22309:1 22323:1 22333:1 22340:1 22351:1 22405:1 22409:1 22438:1 22449:1 22471:1 22502:1 22568:1 22572:1 22578:1 22586:1 22678:1 22679:1 22707:3 22718:1 22728:1 22737:1 22762:1 22779:1 22797:1 22830:1 22838:1 22876:1 22885:1 22935:1 22956:2 22963:1 22967:2 23000:1 23003:6 23007:1 23052:1 23094:1 23103:1 23111:1 23121:1 23128:2 23191:1 23194:1 23224:1 23240:1 23245:1 23247:1 23250:1 23271:1 23277:1 23315:1 23373:2 23415:1 23416:1 23426:1 23486:1 23535:1 23554:1 23608:1 23628:1 23633:1 23637:1 23675:3 23694:1 23711:1 23718:1 23735:1 23738:2 23751:1 23766:1 23783:1 23864:1 23865:1 23866:3 23873:2 23878:1 23879:1 23898:1 23901:1 23902:1 23904:1 23913:1 23914:1 23918:1 23935:1 23964:2 23966:1 23986:1 23987:1 24008:1 24063:1 24085:1 24141:1 24153:1 24171:1 24268:1 24271:4 24273:1 24298:1 24324:1 24330:1 24352:2 24367:1 24397:1 24430:2 24436:1 24442:1 24443:1 24463:1 24466:2 24533:1 24542:1 24598:4 24638:1 24643:1 24655:1 24675:1 24720:1 24721:1 24730:1 24734:1 24759:1 24809:1 24836:1 24839:1 24861:1 24899:3 24928:3 24957:1 24965:1 25000:1 25033:1 25045:1 25071:1 25079:1 25134:1 25161:1 25219:1 25248:1 25277:2 25281:1 25296:1 25338:1 25347:1 25349:1 25370:1 25387:1 25434:1 25460:1 25473:2 25488:1 25515:1 25537:1 25539:1 25543:1 25545:1 25587:1 25593:1 25623:1 25635:2 25641:1 25663:1 25704:2 25710:1 25720:1 25724:1 25728:1 25767:1 25769:1 25778:2 25780:1 25788:1 25790:1 25793:1 25798:1 25804:1 25811:1 25835:1 25866:3 25871:1 25877:2 25912:1 25961:1 26013:2 26049:1 26068:1 26070:1 26071:1 26084:2 26092:1 26166:1 26174:1 26184:1 26250:1 26275:1 26280:3 26312:1 26322:1 26337:1 26348:1 26352:2 26400:1 26429:1 26442:1 26446:5 26451:1 26468:1 26482:2 26498:3 26531:1 26545:1 26565:1 26575:1 26598:1 26609:5 26647:7 26652:1 26655:1 26666:2 26681:1 26709:1 26821:1 26853:1 26872:1 26898:1 26909:1 26912:1 26968:1 26977:1 26981:1 26984:1 26990:1 27006:1 27026:1 27050:1 27062:1 27078:1 27095:1 27118:1 27122:1 27133:1 27137:2 27180:2 27190:1 27232:1 27250:1 27358:1 27360:1 27368:1 27372:2 27431:1 27479:3 27489:1 27497:1 27499:1 27526:1 27529:1 27538:1 27557:2 27641:1 27691:1 27696:4 27730:1 27758:1
12 37:1 43:1 52:1 57:2 74:1 92:1 111:1 141:1 165:1 179:2 182:1 202:1 209:1 210:1 277:1 282:1 294:1 328:2 356:2 363:2 378:2 388:1 413:1 418:3 441:2 528:1 535:1 603:1 637:1 698:1 725:1 790:1 861:2 867:1 881:1 888:3 893:1 903:1 941:1 952:1 981:1 990:1 994:1 1019:1 1037:1 1054:1 1073:1 1088:1 1125:1 1132:1 1192:1 1195:1 1203:2 1240:1 1249:2 1277:2 1287:1 1301:1 1331:1 1344:3 1354:1 1369:1 1397:4 1448:1 1450:1 1454:1 1457:3 1459:1 1493:1 1516:1 1535:2 1564:2 1565:1 1568:1 1574:1 1625:1 1656:1 1660:1 1668:4 1691:1 1695:1 1730:1 1768:1 1791:1 1795:1 1815:1 1831:2 1839:1 1848:1 1864:2 1890:2 1891:1 1897:1 1905:1 1922:2 1941:1 2006:1 2007:2 2010:1 2030:1 2039:1 2058:1 2080:1 2089:1 2148:1 2164:1 2191:4 2197:2 2200:1 2208:1 2235:1 2236:1 2244:1 2245:2 2246:1 2249:3 2253:2 2256:2 2258:1 2261:1 2262:1 2264:1 2265:1 2270:3 2272:1 2281:1 2287:2 2307:1 2338:4 2339:1 2354:2 2368:1 2381:1 2418:1 2451:1 2459:1 2487:1 2501:1 2523:1 2526:3 2545:1 2575:1 2580:1 2583:1 2589:1 2620:1 2640:1 2699:3 2703:1 2721:1 2741:2 2745:1 2756:1 2769:1 2846:3 2857:2 2860:1 2912:1 2919:1 2927:1 2928:1 2937:1 2951:1 2957:1 3000:1 3008:1 3021:1 3053:1 3080:1 3084:1 3113:1 3135:1 3143:1 3160:1 3174:1 3191:2 3207:1 3223:1 3232:2 3244:1 3257:1 3260:1 3322:1 3368:1 3399:1 3402:1 3407:1 3426:1 3431:1 3460:2 3500:1 3512:1 3529:1 3534:1 3559:1 3586:1 3607:1 3648:1 3674:1 3675:1 3703:1 3713:1 3725:1 3726:2 3741:1 3753:1 3805:1 3806:2 3844:2 3849:1 3876:1 3916:1 3921:1 3932:2 3972:1 3992:1 4023:1 4030:1 4104:5 4107:2 4113:1 4117:1 4145:1 4163:4 4175:1 4180:1 4192:1 4239:2 4258:1 4267:1 4281:1 4310:1 4346:1 4357:1 4375:1 4404:1 4416:1 4423:1 4472:1 4494:1 4506:1 4521:1 4526:1 4550:2 4579:1 4581:1 4605:1 4656:1 4700:1 4710:6 4733:1 4738:1 4814:4 4828:3 4830:2 4833:1 4838:1 4845:2 4850:2 4856:1 4879:1 4891:1 4915:1 4993:1 5045:2 5112:1 5118:1 5133:1 5141:3 5162:1 5163:5 5188:7 5242:1 5274:1 5335:1 5355:2 5361:1 5382:1 5402:1 5407:1 5438:1 5452:1 5470:1 5476:1 5481:1 5484:1 5496:1 5511:1 5527:2 5534:1 5639:1 5665:1 5669:1 5705:1 5750:1 5752:3 5755:1 5777:1 5779:1 5788:1 5794:1 5813:1 5840:1 5864:1 5868:1 5917:1 5960:1 5994:1 6003:1 6008:1 6016:1 6092:1 6096:1 6098:1 6101:1 6102:1 6110:1 6113:1 6115:2 6117:6 6120:1 6169:1 6246:1 6254:1 6260:2 6283:1 6362:1 6375:1 6414:2 6428:1 6436:1 6455:1 6472:1 6486:1 6490:1 6493:1 6516:2 6545:3 6566:1 6578:1 6614:1 6629:1 6656:1 6762:1 6798:1 6877:1 6878:2 6924:1 6932:1 6949:1 6958:1 6964:1 6974:1 6975:1 6990:1 7117:2 7131:1 7143:3 7144:1 7146:3 7155:1 7180:1 7198:1 7211:1 7250:2 7263:1 7293:1 7295:1 7328:7 7329:5 7336:1 7337:1 7346:1 7352:1 7356:1 7367:1 7384:1 7394:18 7410:3 7419:2 7422:1 7432:1 7460:1 7480:1 7488:2 7489:2 7522:2 7550:1 7594:1 7614:1 7629:1 7651:1 7689:1 7725:2 7733:1 7811:1 7852:2 7871:3 7902:1 7905:1 7916:1 7947:1 7961:1 8008:1 8062:1 8072:1 8091:1 8124:1 8133:1 8140:1 8167:1 8204:1 8206:1 8207:1 8219:1 8221:1 8238:1 8244:1 8247:2 8259:1 8287:2 8335:1 8366:1 8433:1 8483:1 8490:1 8491:1 8511:1 8523:1 8587:1 8591:1 8599:2 8630:1 8659:1 8676:1 8688:2 8707:1 8732:1 8733:1 8740:1 8750:3 8787:1 8796:2 8810:1 8813:1 8841:1 8843:1 8866:1 8880:1 8883:2 8930:1 8931:1 8948:1 8965:1 8990:1 8998:1 9006:1 9019:1 9066:3 9108:1 9133:1 9136:1 9147:2 9153:1 9161:1 9175:1 9190:1 9191:2 9203:2 9220:1 9244:1 9250:1 9254:1 9257:1 9264:1 9287:3 9303:3 9397:1 9433:2 9480:1 9481:3 9484:1 9523:1 9526:1 9583:1 9599:1 9617:1 9650:1 9661:1 9665:1 9693:1 9747:1 9797:1 9808:1 9831:1 9839:1 9876:1 9882:2 9961:1 9995:2 9999:1 10020:1 10054:1 10059:3 10066:1 10072:1 10135:1 10145:1 10148:1 10155:5 10162:1 10182:1 10210:1 10214:1 10237:1 10266:1 10359:1 10365:2 10380:1 10386:1 10419:1 10424:1 10442:1 10448:1 10473:1 10488:3 10519:1 10524:1 10526:1 10537:1 10543:1 10547:1 10573:1 10583:1 10595:1 10627:1 10633:2 10710:1 10714:1 10740:1 10750:1 10767:1 10777:1 10781:1 10812:1 10866:2 10883:2 10888:1 10889:1 10905:1 10918:2 10961:1 10978:1 10989:1 11008:2 11053:2 11061:1 11071:1 11074:1 11076:1 11077:1 11080:1 11096:1 11125:1 11126:1 11130:1 11148:1 11151:1 11169:1 11189:1 11194:1 11244:1 11310:1 11333:1 11344:1 11443:4 11477:2 11488:2 11494:1 11512:1 11529:1 11549:1 11565:1 11581:2 11630:1 11710:2 11731:1 11756:1 11761:1 11775:1 11785:1 11789:1 11855:2 11869:1 11902:1 11928:1 11972:2 11976:1 11979:2 11980:1 11999:1 12000:1 12001:2 12009:1 12049:1 12058:1 12070:2 12075:1 12139:1 12174:1 12185:1 12209:1 12244:1 12269:1 12272:1 12292:1 12337:1 12355:2 12356:3 12360:2 12376:1 12381:1 12386:1 12396:1 12402:1 12410:1 12438:1 12443:1 12445:1 12507:1 12515:1 12522:1 12533:1 12548:2 12570:1 12575:2 12603:1 12632:2 12639:1 12648:1 12664:1 12698:1 12718:1 12721:1 12815:3 12827:1 12851:1 12852:2 12857:1 12859:3 12881:1 12902:1 12939:1 12986:1 13008:1 13010:2 13013:1 13081:1 13094:2 13114:1 13128:2 13134:1 13148:2 13164:2 13166:1 13172:1 13204:1 13274:1 13276:1 13320:2 13330:2 13386:2 13399:1 13483:1 13498:1 13499:1 13502:1 13517:1 13527:1 13534:1 13553:1 13577:1 13606:1 13628:1 13678:1 13686:1 13691:1 13695:1 13709:1 13758:1 13812:1 13846:1 13848:1 13873:1 13874:2 13915:1 13919:3 13956:1 14045:1 14049:2 14050:1 14150:1 14155:1 14160:1 14170:1 14176:1 14245:1 14342:1 14355:1 14409:1 14429:1 14462:2 14467:1 14475:1 14476:1 14479:1 14480:1 14497:1 14512:1 14520:1 14534:1 14575:1 14595:1 14602:2 14637:1 14663:1 14678:1 14708:1 14733:3 14754:3 14769:1 14770:1 14773:1 14774:1 14782:2 14786:1 14797:1 14812:2 14820:1 14843:1 14898:1 14903:1 14923:2 14962:2 14970:1 14982:1 15021:1 15048:2 15070:1 15120:1 15121:1 15131:1 15140:2 15141:1 15174:1 15180:1 15193:2 15261:1 15265:1 15287:2 15297:2 15307:1 15323:1 15370:1 15381:1 15390:1 15407:1 15408:2 15413:2 15504:1 15532:1 15555:1 15579:1 15610:1 15629:1 15635:3 15652:1 15672:1 15689:1 15712:1 15714:2 15846:1 15860:1 15864:1 15898:1 15905:1 15936:1 15950:1 15957:1 16005:1 16035:1 16066:1 16089:1 16109:1 16111:1 16132:1 16154:1 16158:1 16164:1 16179:1 16240:1 16258:1 16261:1 16263:1 16282:1 16289:2 16309:2 16367:1 16379:1 16383:1 16392:1 16443:1 16447:1 16451:1 16456:1 16468:1 16469:1 16486:1 16563:1 16575:1 16586:1 16604:1 16608:1 16616:1 16630:1 16668:1 16678:2 16685:1 16713:1 16716:1 16718:1 16720:1 16721:1 16729:1 16743:1 16744:1 16766:2 16767:1 16768:1 16783:1 16786:1 16802:1 16803:1 16823:1 16848:1 16906:1 16961:1 16966:2 16973:2 16990:1 16991:1 17021:1 17022:1 17028:1 17076:1 17094:1 17127:1 17186:1 17284:1 17291:4 17298:1 17300:1 17326:1 17328:1 17341:1 17360:1 17365:1 17471:1 17486:1 17492:988 17497:1 17520:1 17541:1 17555:1 17599:1 17628:1 17669:1 17793:1 17846:1 17902:1 17914:1 17933:1 17938:1 18003:1 18028:1 18032:1 18055:1 18087:1 18145:1 18161:1 18198:1 18269:6 18333:1 18366:1 18380:2 18383:1 18423:1 18471:1 18485:2 18494:1 18503:1 18507:1 18525:1 18535:1 18584:1 18592:1 18606:2 18619:1 18622:1 18651:1 18667:1 18672:2 18676:1 18740:1 18757:1 18776:1 18778:1 18849:3 18856:1 18892:1 18915:1 18921:2 18928:1 18958:1 18983:1 18985:1 18995:1 19003:1 19044:1 19057:1 19061:1 19078:2 19097:1 19109:1 19202:1 19208:1 19214:1 19240:1 19253:1 19274:1 19277:1 19297:1 19358:1 19388:2 19426:1 19435:1 19465:1 19471:1 19485:1 19487:1 19488:1 19510:1 19515:1 19518:1 19525:1 19558:1 19596:1 19612:1 19623:2 19624:1 19647:2 19648:1 19651:2 19706:1 19708:1 19710:1 19758:1 19785:1 19809:2 19928:1 19934:1 19957:1 19968:1 20033:2 20091:1 20096:1 20109:1 20131:1 20139:1 20143:1 20174:1 20196:1 20216:1 20234:1 20247:1 20251:1 20290:1 20370:1 20401:2 20415:1 20421:5 20422:1 20433:1 20446:1 20477:2 20481:1 20488:1 20571:1 20577:3 20580:1 20583:1 20591:1 20608:1 20610:3 20613:1 20624:1 20625:1 20627:1 20654:1 20659:1 20716:1 20727:1 20762:1 20776:1 20796:2 20804:1 20823:1 20841:1 20864:1 20894:1 20923:1 20988:1 20994:2 21004:1 21007:2 21011:1 21025:1 21030:1 21040:1 21067:1 21072:1 21080:1 21082:1 21111:1 21120:1 21121:1 21132:1 21159:2 21173:3 21185:2 21233:1 21236:1 21241:1 21242:1 21252:1 21260:1 21280:1 21305:1 21315:1 21320:1 21323:1 21329:1 21337:1 21345:1 21430:4 21435:1 21439:1 21478:1 21554:1 21568:1 21587:1 21593:1 21632:2 21656:1 21692:1 21709:4 21731:1 21777:1 21850:1 21895:1 21904:1 21909:1 21919:2 21927:1 21954:1 21967:1 21968:1 21975:1 21987:1 22024:1 22055:1 22074:1 22097:1 22119:1 22137:1 22148:2 22152:1 22157:2 22176:1 22188:1 22189:1 22202:1 22208:1 22215:1 22224:1 22248:1 22291:1 22309:1 22323:1 22333:1 22340:1 22351:1 22382:1 22405:1 22409:1 22438:1 22449:1 22471:1 22502:1 22568:1 22572:1 22578:1 22586:1 22678:1 22679:1 22707:3 22717:1 22718:1 22728:1 22737:1 22762:1 22779:1 22797:1 22830:1 22838:1 22876:2 22885:1 22935:1 22956:2 22963:1 22967:2 23000:1 23003:6 23007:1 23052:1 23094:1 23103:1 23111:1 23121:1 23128:2 23191:1 23194:1 23224:1 23240:1 23245:1 23247:1 23250:1 23271:1 23277:1 23315:1 23373:2 23415:1 23416:1 23426:1 23486:1 23535:1 23554:1 23608:1 23628:1 23633:2 23637:1 23675:3 23694:1 23711:1 23718:1 23735:1 23738:2 23751:1 23766:1 23783:1 23864:1 23865:1 23866:3 23873:2 23878:1 23879:1 23898:1 23901:1 23902:1 23904:1 23913:1 23914:1 23918:1 23935:1 23964:2 23966:1 23986:1 23987:1 24008:1 24063:1 24085:1 24141:1 24153:1 24171:1 24268:1 24271:4 24273:1 24298:1 24324:1 24330:1 24352:2 24367:1 24397:1 24430:2 24436:1 24442:1 24443:1 24463:1 24466:2 24533:2 24542:1 24598:4 24638:1 24643:1 24655:1 24675:1 24720:1 24721:1 24730:1 24734:1 24759:1 24809:1 24836:1 24839:1 24861:1 24899:3 24928:3 24957:1 24965:1 25000:1 25033:1 25045:1 25071:1 25079:1 25134:1 25161:1 25219:1 25248:1 25277:2 25281:1 25296:1 25338:1 25347:1 25349:1 25370:1 25387:1 25393:1 25434:1 25460:1 25473:2 25488:1 25515:1 25537:1 25539:1 25543:1 25545:1 25587:1 25593:1 25623:1 25635:2 25641:1 25662:1 25663:1 25704:2 25710:1 25720:1 25724:1 25728:1 25767:2 25769:1 25778:2 25780:1 25788:1 25790:1 25793:1 25798:1 25804:1 25811:1 25835:2 25866:4 25871:1 25877:2 25912:1 25961:1 26013:2 26049:1 26068:1 26070:1 26071:1 26084:2 26092:1 26166:1 26174:1 26184:1 26250:1 26275:1 26280:3 26312:1 26322:1 26337:1 26348:1 26352:2 26400:1 26429:1 26442:1 26446:5 26451:1 26468:1 26482:2 26498:4 26531:1 26545:1 26565:1 26575:1 26598:1 26609:5 26647:7 26652:1 26655:1 26666:2 26681:1 26709:1 26821:1 26853:1 26872:1 26898:1 26909:1 26912:1 26968:1 26977:1 26981:1 26984:1 26990:1 27006:1 27026:1 27050:2 27062:1 27078:1 27095:1 27118:1 27122:1 27133:1 27137:2 27180:2 27190:1 27232:1 27250:1 27358:1 27360:1 27368:1 27372:2 27431:1 27479:4 27489:2 27497:1 27499:1 27526:1 27529:1 27538:1 27557:2 27641:1 27691:1 27696:4 27730:1 27746:1 27758:1
12 37:1 43:1 52:1 57:2 74:1 92:1 111:1 141:1 165:1 179:2 182:1 202:1 209:1 210:1 277:1 282:1 294:1 328:2 356:2 363:2 378:2 388:1 413:1 418:3 441:2 457:1 528:1 535:1 603:1 637:1 698:1 725:1 790:1 861:2 867:1 881:1 888:3 893:1 903:1 941:1 952:1 981:1 990:1 994:1 1019:1 1037:1 1054:1 1073:1 1088:1 1125:1 1132:1 1192:1 1195:1 1203:2 1240:1 1249:2 1277:2 1287:1 1301:1 1331:1 1344:3 1354:1 1357:1 1369:1 1397:4 1448:1 1450:1 1454:1 1457:3 1459:1 1484:1 1493:1 1516:1 1535:2 1564:2 1565:1 1568:1 1574:1 1625:1 1656:1 1660:1 1668:4 1691:1 1695:1 1730:1 1768:1 1791:1 1795:1 1815:1 1831:2 1839:1 1848:1 1864:2 1890:2 1891:1 1897:1 1905:1 1922:2 1941:1 2006:1 2007:2 2010:1 2030:1 2039:1 2058:1 2080:1 2089:1 2148:1 2164:1 2191:4 2197:2 2200:1 2208:1 2235:1 2236:1 2244:1 2245:2 2246:1 2249:3 2253:2 2256:2 2258:1 2261:1 2262:1 2264:1 2265:1 2270:3 2272:1 2281:1 2287:2 2307:1 2338:4 2339:1 2354:2 2356:1 2368:1 2381:1 2418:1 2451:1 2459:1 2487:1 2501:1 2523:1 2526:3 2545:1 2575:1 2580:1 2583:1 2589:1 2620:1 2640:1 2699:3 2703:1 2721:1 2741:2 2745:1 2756:1 2769:1 2846:3 2857:2 2860:1 2912:1 2919:1 2927:1 2928:1 2937:1 2951:1 2957:1 3000:1 3008:1 3021:1 3053:1 3080:1 3084:1 3113:1 3135:1 3143:1 3160:1 3174:1 3191:2 3207:1 3223:1 3232:2 3244:1 3257:1 3260:1 3322:1 3368:1 3399:1 3402:1 3407:1 3426:1 3431:1 3460:2 3500:1 3512:1 3515:1 3529:1 3534:1 3559:1 3577:1 3586:1 3600:1 3607:1 3648:1 3674:1 3675:1 3703:1 3713:1 3717:1 3721:1 3725:1 3726:2 3741:1 3753:1 3805:1 3806:2 3844:2 3849:1 3876:1 3916:1 3921:1 3932:2 3972:1 3992:1 4023:1 4030:1 4104:5 4107:2 4113:1 4117:1 4145:1 4163:4 4175:1 4180:1 4192:1 4216:1 4239:2 4258:1 4267:1 4281:1 4310:1 4346:1 4357:1 4375:1 4404:1 4406:1 4416:1 4423:1 4431:1 4472:1 4494:1 4506:1 4521:1 4526:1 4550:2 4579:1 4581:1 4605:1 4656:1 4677:1 4700:1 4710:6 4733:1 4738:1 4814:4 4828:3 4830:2 4833:1 4838:1 4845:2 4850:2 4856:1 4879:1 4891:1 4915:1 4993:1 5045:2 5112:1 5118:1 5133:1 5141:3 5162:1 5163:5 5188:8 5242:1 5274:1 5335:1 5355:2 5361:1 5382:1 5402:1 5407:1 5438:1 5452:1 5470:1 5476:1 5481:1 5484:1 5496:1 5511:1 5527:2 5534:1 5639:1 5665:1 5669:1 5705:1 5750:1 5752:3 5755:1 5777:1 5779:1 5787:1 5788:1 5794:1 5813:1 5840:1 5864:1 5868:1 5917:1 5960:1 5994:1 6003:1 6008:1 6016:1 6092:1 6096:1 6098:1 6101:1 6102:1 6110:1 6113:1 6115:2 6117:6 6120:1 6169:1 6246:1 6254:1 6260:2 6283:1 6362:1 6375:1 6414:2 6421:1 6428:1 6436:1 6455:1 6472:1 6486:1 6490:1 6493:1 6516:2 6545:3 6566:1 6578:1 6614:1 6629:1 6656:1 6762:1 6798:1 6877:1 6878:2 6924:1 6932:1 6949:1 6958:1 6964:1 6974:1 6975:1 6990:1 7117:2 7131:1 7143:3 7144:1 7146:3 7155:1 7180:1 7198:1 7211:1 7250:2 7263:1 7293:1 7295:1 7328:7 7329:5 7336:1 7337:1 7346:1 7352:1 7356:1 7367:1 7384:1 7394:18 7410:3 7419:2 7422:1 7432:1 7460:1 7480:1 7488:2 7489:2 7522:2 7550:1 7594:1 7614:1 7629:1 7651:1 7689:1 7725:2 7733:1 7777:1 7811:1 7852:2 7871:3 7902:1 7905:1 7916:1 7947:1 7961:1 7999:1 8008:1 8062:1 8072:1 8091:1 8124:1 8133:1 8140:1 8167:1 8204:1 8206:1 8207:1 8219:1 8221:1 8238:1 8244:1 8247:2 8259:1 8287:2 8320:1 8335:1 8366:1 8433:1 8483:2 8490:1 8491:1 8511:1 8523:1 8587:1 8591:1 8599:2 8630:1 8659:1 8676:1 8688:2 8707:1 8732:1 8733:1 8740:1 8750:3 8787:1 8796:2 8810:1 8813:1 8841:1 8843:1 8866:1 8880:1 8883:2 8930:1 8931:1 8948:1 8965:1 8990:1 8995:1 8998:1 9006:1 9019:1 9066:3 9108:1 9133:1 9136:1 9147:2 9153:1 9161:1 9175:2 9190:1 9191:2 9203:2 9220:1 9244:1 9250:1 9254:1 9257:1 9264:1 9287:3 9303:3 9397:1 9433:3 9480:1 9481:3 9484:1 9523:1 9526:1 9583:1 9594:1 9598:1 9599:1 9617:1 9650:1 9661:1 9665:1 9693:1 9747:1 9797:1 9808:1 9831:1 9839:1 9876:1 9882:2 9954:1 9961:1 9995:2 9999:1 10020:1 10054:1 10059:3 10066:1 10072:1 10112:1 10135:1 10145:1 10148:1 10155:5 10162:1 10182:1 10210:1 10214:1 10237:1 10266:1 10359:1 10365:2 10380:1 10386:1 10419:1 10424:1 10442:1 10448:1 10473:1 10488:3 10519:1 10524:1 10526:1 10537:1 10543:1 10547:1 10573:1 10583:1 10595:1 10627:1 10633:2 10710:1 10714:1 10740:1 10750:1 10767:1 10777:1 10781:1 10812:1 10866:2 10883:2 10888:1 10889:1 10905:1 10918:2 10961:1 10978:1 10989:1 11008:2 11053:2 11061:1 11071:1 11074:1 11076:1 11077:1 11080:1 11096:1 11125:1 11126:1 11130:1 11148:1 11151:1 11169:1 11189:1 11194:1 11244:1 11310:1 11333:1 11344:1 11443:4 11464:1 11465:1 11477:2 11488:2 11494:1 11512:1 11529:1 11549:1 11565:1 11581:2 11630:1 11710:2 11731:1 11756:1 11761:1 11775:1 11785:1 11789:1 11855:2 11869:1 11902:1 11910:1 11913:1 11928:1 11972:2 11976:1 11979:2 11980:1 11999:1 12000:1 12001:2 12009:1 12049:1 12058:1 12070:2 12075:1 12139:1 12174:1 12185:1 12209:1 12244:1 12269:1 12272:1 12292:1 12337:1 12355:2 12356:3 12360:2 12376:1 12381:1 12386:1 12396:1 12402:1 12410:1 12438:1 12443:1 12445:1 12507:1 12515:1 12522:1 12533:1 12548:2 12570:1 12575:2 12603:1 12632:2 12639:1 12648:1 12664:1 12698:1 12718:1 12721:1 12815:3 12827:1 12851:1 12852:2 12857:1 12859:3 12881:1 12902:1 12939:1 12986:1 12997:1 13008:1 13010:2 13013:1 13081:1 13094:2 13114:1 13128:2 13134:1 13148:2 13164:2 13166:1 13172:1 13204:1 13274:1 13276:1 13320:2 13330:2 13386:2 13399:1 13483:1 13498:1 13499:1 13502:1 13517:1 13527:1 13534:1 13553:1 13577:1 13606:1 13628:1 13678:1 13686:1 13691:1 13695:1 13705:1 13709:1 13718:1 13758:1 13774:1 13812:1 13846:1 13848:1 13873:1 13874:2 13915:1 13919:3 13924:1 13956:1 14029:1 14045:1 14049:2 14050:1 14150:1 14155:1 14160:1 14170:1 14176:1 14245:1 14317:1 14342:1 14355:1 14365:1 14409:1 14429:1 14462:2 14467:1 14475:1 14476:1 14479:1 14480:1 14497:1 14512:1 14520:1 14534:1 14575:1 14595:1 14602:2 14637:1 14663:1 14678:1 14708:1 14733:3 14754:3 14769:1 14770:1 14773:1 14774:1 14782:2 14786:1 14797:1 14812:2 14820:1 14843:1 14898:1 14903:1 14923:2 14962:2 14970:1 14982:1 15021:1 15048:2 15070:1 15120:1 15121:1 15131:1 15140:2 15141:1 15174:1 15180:1 15193:2 15261:1 15265:1 15287:2 15297:2 15307:1 15323:1 15370:1 15381:1 15390:1 15406:1 15407:1 15408:2 15413:2 15427:1 15504:1 15524:1 15532:1 15555:1 15579:1 15610:1 15629:1 15635:3 15652:1 15672:1 15689:1 15712:1 15714:2 15846:1 15860:1 15864:1 15898:1 15905:1 15936:1 15950:1 15957:1 16005:1 16035:1 16066:1 16089:1 16109:1 16111:1 16132:1 16154:1 16158:1 16164:1 16179:1 16240:1 16258:1 16261:1 16263:1 16282:1 16289:2 16309:2 16367:1 16379:1 16383:1 16392:1 16443:1 16447:1 16451:1 16456:1 16468:1 16469:1 16486:1 16563:1 16575:1 16586:1 16604:1 16608:1 16616:1 16630:1 16668:1 16678:2 16685:1 16713:1 16716:1 16718:1 16720:1 16721:1 16729:1 16743:1 16744:1 16766:2 16767:1 16768:1 16783:1 16786:1 16802:1 16803:1 16823:1 16848:1 16906:1 16961:1 16966:2 16973:2 16990:1 16991:1 17021:1 17022:1 17028:1 17076:1 17094:1 17127:1 17140:1 17186:1 17284:1 17291:4 17298:1 17300:1 17326:1 17328:1 17341:1 17360:1 17365:1 17471:1 17486:1 17492:1045 17497:1 17520:1 17541:1 17555:1 17599:1 17628:1 17669:1 17793:1 17846:1 17902:1 17914:1 17933:1 17938:1 18003:1 18028:1 18032:1 18055:1 18087:1 18110:1 18145:1 18161:1 18185:1 18198:1 18269:6 18333:1 18366:1 18380:2 18383:1 18423:1 18471:1 18485:2 18494:1 18503:1 18507:1 18525:1 18535:1 18584:1 18592:1 18606:2 18619:1 18622:1 18651:1 18667:1 18672:2 18676:1 18740:1 18757:1 18776:1 18778:1 18849:3 18856:1 18892:1 18915:1 18921:2 18928:1 18958:1 18983:1 18985:1 18995:1 19003:1 19005:1 19044:1 19057:1 19061:1 19078:2 19097:1 19109:1 19202:1 19208:1 19214:1 19240:1 19253:1 19274:1 19277:1 19278:1 19297:1 19358:1 19388:2 19426:1 19435:1 19465:1 19471:1 19485:1 19487:1 19488:1 19510:1 19515:1 19518:1 19525:1 19558:2 19596:1 19612:1 19623:2 19624:1 19647:2 19648:1 19651:2 19706:1 19708:1 19710:1 19758:1 19785:1 19809:2 19928:1 19934:1 19957:1 19968:1 20033:2 20091:1 20096:1 20109:1 20131:1 20139:1 20143:1 20174:1 20196:1 20216:1 20234:1 20247:1 20251:1 20290:1 20370:1 20401:2 20415:1 20421:5 20422:1 20433:1 20446:1 20477:2 20481:1 20488:1 20571:1 20577:3 20580:1 20583:1 20591:1 20608:1 20610:3 20613:1 20624:1 20625:1 20627:1 20654:1 20659:1 20716:1 20727:1 20762:1 20776:1 20796:2 20804:1 20823:1 20841:1 20864:1 20894:1 20923:1 20988:1 20994:2 21004:1 21007:2 21011:1 21025:1 21030:1 21040:1 21067:1 21072:1 21080:1 21082:1 21111:1 21120:1 21121:1 21132:1 21159:2 21173:3 21185:2 21233:1 21236:1 21241:1 21242:1 21252:1 21260:1 21280:1 21305:1 21315:1 21320:1 21323:1 21329:1 21337:1 21345:1 21430:4 21435:1 21439:1 21478:1 21554:1 21568:2 21587:1 21593:1 21632:2 21656:1 21692:1 21709:4 21731:1 21777:1 21850:1 21895:1 21904:1 21909:1 21919:2 21927:1 21954:1 21967:1 21968:1 21975:1 21987:1 22024:1 22055:1 22074:1 22097:1 22119:1 22137:1 22148:2 22152:1 22157:2 22176:1 22188:1 22189:1 22202:1 22208:1 22215:1 22224:1 22248:1 22283:1 22291:1 22309:1 22323:1 22333:1 22340:1 22351:1 22382:1 22405:1 22409:1 22438:1 22449:1 22471:1 22502:1 22568:1 22572:1 22578:1 22586:1 22678:1 22679:1 22707:3 22717:1 22718:1 22728:1 22737:1 22762:1 22779:1 22797:1 22830:1 22838:1 22876:2 22885:1 22935:1 22956:2 22963:1 22967:2 23000:1 23003:6 23007:1 23052:1 23094:1 23103:1 23111:1 23121:1 23128:2 23191:1 23194:1 23224:1 23240:1 23245:1 23247:1 23250:1 23271:1 23277:1 23315:1 23373:2 23415:1 23416:1 23426:1 23486:1 23535:1 23554:1 23608:1 23628:1 23633:2 23637:1 23675:3 23694:1 23711:1 23718:1 23735:1 23738:2 23751:1 23766:1 23783:1 23791:1 23850:1 23864:1 23865:1 23866:3 23873:2 23878:1 23879:1 23898:1 23901:1 23902:1 23904:1 23913:1 23914:1 23918:2 23935:1 23964:2 23966:1 23986:1 23987:1 24008:1 24063:1 24085:1 24141:1 24153:1 24171:1 24228:1 24268:1 24271:4 24273:1 24298:1 24324:1 24330:1 24352:2 24367:1 24397:1 24430:2 24436:1 24442:1 24443:1 24463:1 24466:2 24533:2 24542:1 24598:4 24638:1 24643:1 24655:1 24675:1 24720:1 24721:1 24730:1 24734:1 24759:1 24809:1 24836:1 24839:1 24861:1 24899:3 24928:3 24957:1 24965:1 25000:1 25033:1 25045:1 25071:1 25079:1 25134:1 25161:1 25219:1 25248:1 25277:2 25281:1 25296:1 25338:1 25347:1 25349:1 25370:1 25387:1 25393:1 25434:1 25460:1 25473:2 25488:1 25515:1 25537:1 25539:1 25543:1 25545:1 25587:1 25593:1 25623:1 25635:2 25641:1 25662:1 25663:1 25704:2 25706:1 25710:1 25720:1 25724:1 25728:1 25767:3 25769:1 25778:2 25780:1 25788:1 25790:1 25793:1 25798:1 25804:1 25811:1 25835:2 25866:4 25871:1 25877:2 25912:1 25961:1 26013:2 26049:1 26068:1 26070:1 26071:1 26084:2 26092:1 26166:1 26174:1 26184:1 26250:1 26275:1 26280:3 26312:1 26322:1 26337:1 26348:1 26352:2 26400:1 26409:1 26429:1 26442:1 26446:5 26451:1 26468:1 26482:2 26498:4 26531:1 26545:1 26565:1 26575:1 26598:1 26609:5 26647:7 26652:1 26655:1 26666:2 26681:1 26709:1 26723:1 26821:1 26853:1 26872:1 26898:1 26909:1 26912:1 26968:1 26977:1 26981:1 26984:1 26990:1 27006:1 27026:1 27050:2 27062:1 27078:1 27086:1 27095:1 27118:1 27122:1 27133:1 27137:2 27180:2 27190:1 27232:1 27250:1 27358:1 27360:1 27368:1 27372:2 27431:1 27473:1 27479:4 27489:2 27497:1 27499:1 27526:1 27529:1 27538:1 27557:2 27641:1 27691:1 27696:4 27730:1 27746:1 27758:1
12 1:1 37:1 43:1 52:1 57:2 74:1 92:1 111:1 141:1 165:1 179:2 182:1 202:1 209:1 210:1 277:1 282:1 294:1 328:2 356:2 363:2 378:2 388:1 413:1 418:3 441:2 457:1 528:1 535:1 603:1 637:1 698:1 725:1 790:1 861:3 867:1 881:1 888:3 893:1 903:1 941:1 952:1 981:1 990:1 994:1 1019:1 1037:1 1054:1 1073:1 1088:1 1104:1 1125:1 1132:1 1192:1 1195:1 1203:2 1240:1 1249:2 1277:2 1287:1 1301:1 1310:1 1331:1 1344:3 1354:1 1357:1 1369:1 1397:4 1448:1 1450:1 1454:1 1457:3 1459:1 1484:1 1493:1 1516:1 1535:2 1564:2 1565:1 1568:1 1574:1 1625:1 1656:1 1660:1 1668:4 1691:1 1695:1 1730:1 1768:1 1791:1 1795:1 1810:1 1815:1 1831:2 1839:1 1848:1 1864:2 1890:2 1891:1 1897:1 1905:1 1922:2 1941:1 2006:1 2007:2 2010:1 2030:1 2039:1 2058:1 2080:1 2089:1 2148:1 2164:1 2191:4 2197:2 2200:1 2208:1 2235:1 2236:1 2244:1 2245:2 2246:1 2249:3 2253:2 2256:2 2258:1 2261:1 2262:1 2264:1 2265:1 2270:4 2272:1 2281:1 2287:2 2307:1 2338:4 2339:1 2354:2 2356:1 2368:1 2381:1 2418:1 2451:1 2459:1 2487:1 2501:1 2514:1 2523:1 2526:3 2545:1 2575:1 2580:1 2583:1 2589:1 2620:1 2640:1 2662:1 2699:3 2703:1 2721:1 2741:2 2745:1 2756:1 2769:1 2846:4 2857:2 2860:1 2912:1 2919:1 2927:1 2928:1 2937:1 2951:1 2957:1 3000:1 3008:1 3021:1 3053:1 3080:1 3084:1 3113:1 3135:1 3143:1 3160:1 3174:1 3191:2 3207:1 3223:1 3232:2 3244:1 3257:1 3260:1 3322:1 3368:1 3399:1 3402:1 3407:1 3426:1 3431:1 3460:2 3500:1 3512:1 3515:1 3529:1 3534:1 3559:1 3568:1 3577:2 3586:1 3600:1 3607:1 3648:1 3674:1 3675:1 3703:1 3713:1 3717:1 3721:1 3725:1 3726:2 3741:1 3753:1 3763:1 3805:1 3806:2 3844:2 3849:1 3876:1 3916:1 3921:1 3932:2 3972:1 3992:1 4023:2 4030:1 4104:5 4107:2 4113:1 4117:1 4145:1 4163:4 4175:1 4180:1 4192:1 4216:1 4239:2 4258:1 4267:1 4281:1 4310:1 4346:1 4357:1 4375:1 4404:1 4406:1 4416:1 4423:1 4431:1 4472:1 4494:2 4506:1 4521:1 4526:1 4550:3 4579:1 4581:1 4605:1 4656:1 4677:1 4700:1 4710:6 4733:1 4738:1 4749:1 4814:5 4828:3 4830:2 4833:1 4838:1 4845:2 4850:2 4856:1 4879:1 4891:1 4915:1 4993:1 4996:1 5045:2 5112:1 5118:1 5133:1 5141:3 5158:1 5162:1 5163:5 5188:8 5242:1 5274:1 5335:1 5355:2 5361:1 5382:1 5402:1 5407:1 5438:1 5452:1 5470:1 5476:1 5481:1 5484:1 5496:1 5511:1 5527:2 5534:1 5639:1 5665:1 5669:1 5705:1 5750:1 5752:4 5755:1 5777:1 5779:1 5787:1 5788:1 5794:1 5813:1 5840:1 5864:1 5868:1 5903:1 5917:2 5960:1 5994:1 6003:1 6008:1 6016:1 6076:1 6092:3 6096:1 6098:1 6101:1 6102:1 6110:1 6113:1 6115:2 6117:6 6120:1 6169:1 6246:1 6254:1 6260:2 6283:1 6362:1 6375:1 6414:2 6421:1 6428:1 6436:1 6455:1 6472:1 6486:1 6490:1 6493:1 6516:2 6545:3 6566:1 6578:1 6614:1 6629:1 6656:1 6762:1 6798:1 6877:1 6878:2 6924:1 6932:1 6949:1 6958:1 6964:1 6974:1 6975:1 6990:1 7117:2 7131:1 7143:3 7144:2 7146:3 7155:1 7180:1 7198:1 7211:1 7250:2 7263:1 7293:1 7295:1 7328:7 7329:5 7336:1 7337:1 7346:1 7352:1 7356:1 7367:1 7384:1 7394:19 7410:4 7419:2 7422:1 7432:1 7460:1 7480:1 7488:2 7489:2 7522:2 7550:1 7594:1 7614:1 7629:1 7651:1 7689:1 7725:2 7733:1 7770:1 7777:1 7811:1 7852:2 7871:3 7902:1 7905:1 7916:1 7947:1 7961:1 7999:1 8008:1 8062:1 8072:1 8091:1 8124:1 8133:1 8140:1 8166:1 8167:1 8204:1 8206:1 8207:1 8219:1 8221:1 8238:1 8244:1 8247:2 8259:1 8262:1 8285:1 8287:2 8320:1 8335:1 8366:1 8433:1 8483:2 8490:1 8491:1 8511:2 8523:1 8587:1 8591:1 8599:2 8630:1 8659:1 8676:1 8688:2 8692:1 8707:1 8732:1 8733:1 8740:1 8750:3 8787:1 8796:2 8810:1 8813:1 8841:2 8843:2 8866:1 8880:1 8883:2 8930:1 8931:1 8948:1 8965:1 8990:1 8995:1 8998:1 9006:1 9019:1 9031:1 9066:3 9108:1 9133:1 9136:1 9147:2 9153:1 9161:1 9175:2 9190:1 9191:2 9198:1 9203:2 9220:1 9244:1 9250:1 9254:1 9257:1 9264:1 9287:3 9303:3 9397:1 9433:3 9480:1 9481:3 9484:1 9523:1 9526:1 9583:1 9594:2 9598:1 9599:1 9617:1 9650:1 9661:1 9665:1 9693:1 9747:1 9778:1 9797:1 9802:1 9808:1 9831:1 9839:1 9876:2 9882:2 9954:1 9961:2 9963:1 9995:2 9999:1 10020:1 10054:1 10059:3 10063:1 10066:1 10072:1 10112:1 10135:1 10145:1 10148:1 10155:5 10162:1 10163:1 10182:1 10210:1 10214:1 10215:1 10237:1 10266:1 10357:1 10359:1 10365:2 10380:1 10386:1 10419:1 10424:1 10442:1 10448:1 10473:1 10488:3 10519:1 10524:1 10526:1 10537:1 10543:1 10547:1 10573:1 10583:1 10595:1 10627:1 10633:2 10710:1 10714:1 10740:1 10750:1 10767:1 10777:1 10781:1 10812:3 10866:2 10883:2 10888:1 10889:1 10905:1 10918:2 10961:1 10975:1 10978:1 10989:1 10992:1 11008:2 11053:2 11061:1 11071:1 11074:1 11076:1 11077:1 11080:1 11096:1 11125:1 11126:1 11130:1 11148:1 11151:1 11169:1 11189:1 11194:1 11244:1 11284:1 11310:1 11333:1 11344:1 11443:4 11464:1 11465:1 11477:2 11488:2 11494:1 11507:1 11512:1 11529:1 11549:1 11565:1 11569:1 11581:2 11630:1 11710:2 11731:1 11756:1 11761:1 11775:1 11785:1 11789:1 11855:2 11869:1 11902:1 11910:1 11913:1 11928:1 11972:2 11976:1 11979:2 11980:1 11999:1 12000:1 12001:2 12009:1 12049:1 12058:1 12070:2 12075:1 12139:1 12174:1 12185:1 12209:1 12244:1 12269:1 12272:1 12292:1 12337:1 12355:2 12356:3 12360:2 12376:1 12381:1 12386:1 12396:1 12402:1 12410:1 12438:1 12443:1 12445:1 12507:1 12515:2 12522:1 12533:1 12548:2 12570:1 12575:2 12603:1 12632:2 12639:1 12648:1 12664:1 12698:1 12718:1 12721:1 12815:3 12827:1 12851:1 12852:2 12857:1 12859:3 12881:2 12902:1 12939:1 12949:1 12986:1 12997:1 13008:1 13010:2 13013:1 13081:1 13093:1 13094:2 13114:1 13128:2 13134:1 13148:2 13164:2 13166:1 13172:1 13204:1 13274:1 13276:1 13320:2 13330:2 13370:1 13386:2 13399:1 13483:1 13498:1 13499:1 13502:1 13517:1 13527:1 13534:1 13553:1 13577:1 13592:1 13606:1 13628:1 13678:1 13686:1 13691:1 13695:1 13705:1 13709:1 13718:1 13758:1 13774:2 13812:1 13846:1 13848:1 13873:1 13874:2 13904:1 13915:1 13919:3 13924:1 13956:1 14029:1 14045:1 14049:2 14050:1 14150:1 14155:2 14160:1 14170:1 14176:1 14245:1 14317:1 14342:1 14355:1 14365:1 14409:1 14429:1 14462:2 14467:1 14475:1 14476:1 14479:1 14480:1 14497:1 14512:1 14520:1 14534:1 14575:1 14595:1 14602:2 14637:1 14663:1 14678:1 14708:1 14733:3 14754:3 14763:1 14769:1 14770:1 14773:1 14774:1 14782:2 14786:1 14797:1 14812:3 14820:1 14843:1 14898:1 14903:1 14923:2 14962:2 14970:1 14982:1 15021:1 15048:2 15070:2 15120:1 15121:1 15131:1 15140:2 15141:1 15174:1 15180:1 15193:2 15261:1 15265:1 15287:2 15297:2 15307:1 15323:1 15348:1 15370:1 15381:1 15390:1 15406:1 15407:1 15408:2 15413:2 15427:1 15504:1 15524:2 15532:1 15555:1 15579:1 15610:1 15629:1 15635:3 15652:1 15672:1 15689:1 15712:1 15714:2 15846:1 15860:1 15864:1 15898:1 15905:1 15936:1 15950:1 15957:1 16005:1 16035:1 16066:1 16089:1 16109:1 16111:1 16132:1 16154:1 16158:1 16164:1 16179:1 16240:1 16258:1 16261:1 16263:1 16282:1 16289:2 16309:2 16367:1 16371:1 16379:1 16383:1 16392:1 16443:1 16447:1 16451:1 16456:1 16468:1 16469:1 16486:2 16563:1 16575:1 16586:1 16604:1 16608:1 16616:1 16630:1 16657:1 16668:1 16678:2 16685:1 16713:1 16716:1 16718:1 16720:1 16721:1 16729:1 16743:1 16744:1 16766:2 16767:1 16768:1 16783:1 16786:1 16802:1 16803:1 16823:1 16848:1 16850:1 16906:1 16961:1 16966:2 16973:2 16990:1 16991:1 17021:1 17022:1 17028:1 17076:1 17094:1 17127:1 17140:2 17186:1 17284:1 17291:4 17298:1 17300:1 17326:1 17328:1 17341:1 17360:1 17365:1 17471:1 17486:1 17492:1112 17497:1 17520:1 17541:1 17555:1 17599:1 17628:1 17668:1 17669:1 17793:1 17815:1 17846:1 17902:1 17914:1 17933:1 17938:1 18003:2 18020:1 18028:1 18032:1 18055:1 18087:1 18107:1 18110:2 18145:1 18161:1 18185:1 18198:1 18269:6 18333:1 18366:1 18380:2 18383:1 18423:1 18471:1 18485:2 18494:1 18503:1 18507:1 18525:1 18535:1 18584:2 18592:1 18606:2 18619:1 18622:1 18651:1 18667:1 18672:2 18676:1 18740:1 18757:1 18776:1 18778:1 18849:3 18856:1 18892:1 18915:2 18921:2 18928:1 18929:1 18958:1 18983:1 18985:1 18995:1 19001:1 19003:1 19005:1 19044:1 19057:1 19061:1 19078:2 19097:1 19109:1 19202:1 19208:1 19214:1 19240:1 19253:1 19274:1 19277:1 19278:1 19297:1 19358:1 19388:2 19426:1 19435:1 19465:1 19471:1 19485:1 19487:1 19488:1 19510:1 19515:1 19518:1 19525:1 19558:2 19596:2 19612:1 19623:2 19624:1 19647:2 19648:1 19651:2 19706:1 19708:1 19710:1 19758:1 19785:1 19809:2 19928:1 19934:1 19957:1 19968:1 20033:2 20091:1 20096:1 20109:1 20131:1 20139:1 20143:1 20174:1 20196:1 20216:1 20234:1 20247:1 20251:1 20290:1 20370:1 20401:2 20415:1 20421:5 20422:1 20433:1 20446:1 20477:2 20481:1 20488:1 20529:1 20571:1 20577:3 20580:1 20583:1 20591:1 20608:1 20610:3 20613:1 20624:1 20625:2 20627:1 20654:1 20659:1 20716:1 20727:1 20762:1 20776:1 20796:2 20804:1 20823:1 20841:1 20864:1 20894:2 20923:1 20975:1 20988:1 20994:2 21004:1 21007:2 21011:1 21017:1 21025:1 21030:1 21040:1 21053:1 21067:1 21072:1 21080:1 21082:1 21111:1 21120:1 21121:1 21132:1 21159:2 21173:3 21185:2 21233:1 21236:1 21241:1 21242:1 21252:1 21254:1 21260:1 21280:1 21305:1 21313:1 21315:1 21320:1 21323:1 21329:1 21337:1 21345:1 21430:4 21435:1 21439:1 21478:1 21503:1 21516:2 21554:2 21568:2 21587:1 21593:1 21632:2 21656:1 21692:1 21709:4 21731:1 21777:1 21850:1 21895:1 21904:1 21909:1 21919:2 21927:1 21954:1 21967:1 21968:1 21975:1 21987:1 22024:1 22055:1 22074:1 22097:1 22119:1 22137:1 22148:2 22152:1 22157:2 22176:1 22188:1 22189:1 22202:1 22208:2 22215:1 22224:1 22248:1 22283:1 22291:1 22309:1 22323:1 22333:1 22340:1 22351:1 22382:1 22405:1 22409:1 22438:1 22449:1 22471:1 22502:1 22568:1 22572:1 22578:1 22586:1 22678:1 22679:1 22707:3 22717:1 22718:1 22728:1 22737:1 22762:1 22779:1 22797:1 22830:1 22838:1 22876:2 22885:1 22935:1 22956:2 22963:1 22967:2 23000:1 23003:6 23007:1 23052:1 23094:1 23103:1 23111:1 23121:1 23128:2 23191:1 23194:1 23222:1 23224:1 23240:1 23245:2 23247:1 23250:1 23271:1 23277:1 23315:1 23373:2 23383:1 23415:1 23416:1 23426:1 23486:1 23535:1 23554:1 23608:1 23628:1 23633:2 23637:1 23675:3 23694:1 23711:1 23718:1 23735:1 23738:2 23751:1 23766:1 23783:1 23791:1 23850:1 23864:1 23865:1 23866:3 23873:2 23878:1 23879:1 23897:1 23898:1 23901:1 23902:1 23904:1 23913:2 23914:1 23918:2 23935:1 23964:2 23966:1 23986:1 23987:1 24008:1 24063:1 24085:1 24141:1 24153:1 24171:1 24188:1 24228:1 24268:1 24271:4 24273:1 24298:1 24324:1 24330:1 24352:2 24367:1 24397:1 24430:2 24436:1 24442:1 24443:1 24463:1 24466:2 24533:2 24542:1 24598:4 24638:1 24643:2 24655:1 24675:1 24720:1 24721:1 24730:1 24734:1 24759:1 24809:1 24836:1 24839:1 24861:1 24899:3 24928:3 24957:1 24965:1 24993:1 25000:1 25033:1 25045:1 25071:2 25079:2 25134:1 25161:1 25219:1 25248:1 25277:2 25281:1 25296:1 25338:1 25347:1 25349:1 25370:1 25387:1 25393:1 25434:1 25460:1 25473:2 25488:1 25515:1 25537:1 25539:1 25543:1 25545:1 25587:1 25593:1 25623:1 25635:2 25641:1 25662:1 25663:1 25704:2 25706:1 25710:1 25719:1 25720:1 25724:1 25728:1 25767:3 25769:1 25778:2 25780:1 25788:1 25790:1 25793:1 25798:1 25804:1 25811:1 25835:2 25866:4 25871:1 25874:1 25877:2 25878:1 25912:1 25961:1 26013:2 26049:1 26068:2 26070:1 26071:1 26084:2 26092:1 26166:1 26174:1 26184:1 26218:1 26250:1 26275:1 26280:3 26312:1 26322:1 26337:1 26348:1 26352:2 26400:1 26409:1 26429:1 26442:1 26446:5 26451:1 26468:1 26482:2 26498:4 26531:1 26545:1 26548:1 26565:1 26575:1 26576:1 26598:1 26609:5 26647:8 26652:1 26655:1 26666:2 26681:1 26709:1 26723:1 26821:1 26853:1 26872:1 26898:1 26909:1 26912:1 26968:1 26977:1 26981:1 26984:1 26990:1 27006:1 27026:1 27050:2 27062:1 27078:1 27086:1 27095:1 27118:1 27122:1 27133:1 27137:2 27180:2 27190:1 27232:1 27250:1 27358:1 27360:1 27368:1 27372:2 27431:1 27473:1 27479:4 27489:2 27497:1 27499:1 27526:1 27529:1 27538:1 27557:2 27608:1 27633:1 27641:1 27691:1 27696:4 27730:1 27746:1 27758:1
12 1:1 37:1 38:1 43:1 52:1 57:2 74:1 92:1 111:1 141:1 165:1 179:2 182:1 195:1 202:1 209:1 210:1 277:1 282:1 294:1 328:2 356:2 363:2 378:2 388:1 413:1 418:3 430:1 441:2 457:1 528:1 535:1 603:2 637:1 648:1 698:1 725:1 790:1 794:1 861:3 867:1 881:1 888:4 893:1 903:1 941:1 952:1 981:1 990:1 994:1 1019:1 1037:1 1054:1 1073:1 1082:1 1088:1 1104:1 1125:1 1132:1 1192:1 1195:1 1203:2 1240:1 1249:2 1277:2 1287:1 1301:1 1310:1 1331:1 1344:3 1354:1 1357:1 1369:1 1397:4 1448:1 1450:1 1454:1 1457:4 1459:1 1484:1 1493:1 1516:1 1535:2 1562:1 1564:2 1565:1 1568:1 1574:1 1623:1 1625:1 1656:1 1660:1 1668:4 1691:1 1695:1 1730:1 1768:1 1791:1 1795:1 1810:1 1815:1 1831:2 1839:1 1848:1 1864:2 1890:2 1891:1 1897:1 1905:1 1922:2 1941:1 2006:1 2007:2 2010:1 2030:1 2039:1 2058:1 2063:1 2080:1 2089:1 2148:1 2164:1 2191:4 2197:2 2200:1 2208:1 2210:1 2235:1 2236:1 2244:1 2245:2 2246:2 2249:3 2253:2 2256:2 2258:1 2261:1 2262:1 2264:1 2265:1 2270:4 2272:1 2276:1 2281:1 2287:2 2307:1 2338:4 2339:1 2354:2 2356:1 2368:1 2381:1 2418:1 2451:1 2459:1 2487:1 2501:1 2514:1 2523:1 2526:3 2545:1 2575:1 2580:1 2583:1 2589:1 2620:1 2640:1 2662:1 2699:3 2703:1 2721:1 2741:2 2745:1 2756:2 2769:1 2807:1 2846:4 2857:2 2860:1 2912:1 2919:1 2927:1 2928:1 2937:1 2951:1 2957:1 2972:1 3000:1 3008:1 3021:1 3053:1 3080:1 3084:1 3113:1 3135:1 3143:1 3160:1 3174:1 3191:2 3207:1 3223:1 3232:2 3244:1 3257:1 3260:1 3322:1 3368:1 3399:1 3402:1 3407:1 3426:1 3431:1 3460:2 3500:1 3512:1 3515:1 3529:1 3534:1 3559:1 3568:1 3577:3 3586:1 3600:1 3607:1 3648:1 3674:1 3675:1 3703:1 3713:1 3717:1 3721:2 3725:1 3726:2 3741:1 3753:1 3763:1 3805:1 3806:2 3832:1 3844:2 3849:1 3876:1 3904:1 3916:1 3921:1 3932:2 3972:1 3992:1 4014:1 4023:2 4030:1 4104:5 4107:2 4113:1 4117:1 4145:1 4163:4 4175:1 4180:1 4192:1 4216:1 4231:1 4239:2 4258:1 4267:1 4281:1 4310:1 4346:1 4357:1 4375:1 4404:1 4406:1 4416:1 4423:1 4431:2 4472:1 4494:2 4506:1 4521:1 4526:1 4550:3 4579:1 4581:1 4605:1 4656:1 4677:1 4700:1 4710:6 4711:1 4733:1 4738:1 4749:1 4814:5 4828:3 4830:2 4833:1 4838:1 4845:2 4850:2 4856:1 4857:1 4860:1 4879:1 4891:1 4915:1 4993:1 4996:1 5045:2 5112:1 5118:1 5130:2 5133:1 5141:3 5158:1 5162:1 5163:5 5188:8 5242:1 5274:1 5335:1 5355:2 5361:1 5382:1 5400:1 5402:1 5407:1 5438:1 5452:1 5470:1 5476:1 5481:1 5484:1 5496:1 5511:1 5527:2 5534:1 5639:1 5663:1 5665:1 5669:1 5705:1 5750:1 5752:5 5755:1 5777:1 5779:1 5787:1 5788:1 5794:1 5813:1 5840:1 5864:1 5868:1 5903:1 5917:2 5960:1 5994:2 6003:1 6008:1 6016:1 6076:1 6092:3 6096:1 6098:1 6101:1 6102:1 6110:1 6113:1 6115:3 6117:7 6120:1 6169:2 6246:1 6254:1 6260:2 6283:1 6362:1 6375:1 6399:1 6414:2 6421:1 6428:1 6436:1 6455:1 6472:1 6486:1 6490:1 6492:1 6493:1 6516:2 6519:1 6545:3 6566:1 6578:1 6614:1 6629:1 6656:1 6714:1 6762:1 6798:1 6877:1 6878:2 6924:1 6932:1 6949:1 6958:1 6964:1 6974:1 6975:1 6990:1 7117:2 7131:1 7143:3 7144:2 7146:3 7155:1 7180:1 7198:1 7211:1 7250:2 7263:1 7290:1 7293:1 7295:1 7328:7 7329:6 7336:1 7337:1 7346:1 7352:1 7356:1 7367:1 7384:1 7394:21 7410:4 7419:2 7422:1 7432:1 7457:1 7460:1 7480:1 7488:2 7489:2 7522:2 7550:1 7594:1 7604:1 7614:1 7629:1 7651:1 7689:1 7725:2 7733:1 7770:1 7777:1 7811:1 7852:2 7871:3 7902:1 7905:1 7916:1 7947:1 7961:1 7999:1 8008:1 8062:1 8072:1 8091:1 8124:1 8133:1 8140:1 8166:1 8167:1 8204:1 8206:1 8207:1 8217:1 8219:1 8221:1 8238:1 8244:1 8247:2 8259:1 8262:1 8285:1 8287:2 8320:1 8335:1 8366:1 8433:1 8483:2 8490:1 8491:1 8511:2 8523:1 8587:1 8591:1 8599:2 8630:1 8659:1 8676:1 8688:2 8689:1 8692:1 8707:1 8713:1 8732:1 8733:1 8740:1 8750:3 8787:1 8796:2 8810:1 8813:1 8841:2 8843:2 8844:1 8866:1 8880:1 8883:2 8930:1 8931:1 8948:1 8965:1 8990:1 8995:1 8998:1 9006:1 9019:1 9031:1 9066:4 9108:1 9109:1 9133:1 9136:1 9147:2 9153:1 9161:1 9175:2 9190:1 9191:2 9198:1 9203:2 9220:1 9244:1 9250:1 9254:2 9257:1 9264:1 9287:3 9303:3 9307:1 9397:1 9433:3 9480:1 9481:3 9484:1 9523:1 9526:2 9583:1 9594:3 9598:1 9599:1 9617:1 9650:1 9661:1 9665:1 9693:1 9747:1 9774:1 9778:1 9797:1 9802:1 9808:1 9831:1 9839:1 9876:2 9882:2 9954:1 9961:2 9963:1 9995:2 9999:1 10018:1 10020:1 10054:1 10059:3 10063:1 10066:1 10072:1 10112:1 10135:1 10145:1 10148:1 10155:5 10162:1 10163:1 10182:1 10210:1 10214:1 10215:1 10237:1 10266:1 10357:1 10359:1 10365:2 10380:1 10386:1 10419:1 10424:1 10442:1 10448:1 10473:1 10488:3 10500:1 10519:1 10524:1 10526:1 10537:1 10543:1 10547:1 10573:1 10583:1 10594:1 10595:1 10627:1 10631:1 10633:2 10700:1 10710:1 10714:1 10740:1 10750:1 10767:1 10777:1 10781:1 10812:4 10855:1 10866:2 10883:2 10888:1 10889:1 10905:1 10918:2 10961:1 10975:1 10978:1 10989:1 10992:1 11008:3 11053:2 11061:1 11071:1 11074:1 11076:1 11077:1 11080:1 11096:2 11125:1 11126:1 11130:1 11148:1 11151:1 11169:1 11189:1 11194:1 11233:1 11244:1 11268:1 11284:1 11310:1 11316:1 11333:1 11344:1 11443:4 11464:1 11465:1 11477:2 11488:2 11494:1 11507:1 11512:1 11529:1 11549:1 11565:1 11569:1 11581:2 11624:1 11630:1 11710:2 11731:1 11752:1 11756:1 11761:1 11775:1 11785:1 11789:1 11855:2 11869:1 11874:1 11902:1 11910:1 11913:1 11928:1 11972:2 11976:1 11979:2 11980:1 11999:1 12000:1 12001:2 12009:1 12049:1 12058:1 12070:2 12075:1 12139:1 12174:1 12185:1 12209:1 12244:1 12269:1 12272:1 12292:1 12337:1 12355:2 12356:3 12360:2 12376:1 12381:1 12386:1 12396:1 12402:1 12410:1 12438:1 12443:1 12445:1 12507:1 12515:2 12522:1 12533:1 12548:2 12570:1 12575:2 12586:1 12603:1 12632:2 12639:1 12648:1 12664:1 12698:1 12718:1 12721:1 12815:3 12827:1 12851:1 12852:2 12857:1 12859:4 12881:2 12902:1 12919:1 12939:1 12949:1 12986:1 12997:2 13008:1 13010:2 13013:1 13015:1 13081:1 13093:1 13094:2 13108:1 13109:1 13114:1 13128:3 13134:1 13148:2 13164:2 13166:1 13172:1 13204:1 13274:1 13276:1 13280:1 13320:2 13330:2 13370:1 13386:2 13399:1 13483:1 13484:1 13498:1 13499:1 13502:1 13517:1 13527:1 13534:1 13553:1 13577:1 13592:1 13606:1 13628:1 13678:1 13686:1 13691:1 13695:1 13705:1 13709:1 13718:1 13758:1 13774:3 13812:1 13846:1 13848:1 13873:1 13874:2 13904:1 13915:1 13919:3 13924:1 13935:1 13956:1 14009:1 14029:1 14045:1 14049:2 14050:1 14150:1 14155:2 14160:1 14170:1 14176:1 14245:1 14253:1 14317:1 14332:1 14342:1 14355:1 14365:1 14409:1 14429:1 14462:2 14467:1 14475:1 14476:1 14479:1 14480:1 14497:1 14512:1 14520:1 14534:1 14575:1 14595:1 14602:2 14637:1 14663:1 14678:1 14708:1 14733:3 14754:3 14763:1 14769:1 14770:1 14773:1 14774:1 14782:3 14786:1 14797:2 14812:3 14820:1 14843:1 14898:1 14903:1 14923:2 14962:2 14970:1 14982:1 15021:1 15048:2 15070:2 15120:1 15121:1 15131:1 15140:2 15141:1 15174:1 15180:1 15193:2 15261:1 15265:1 15287:2 15297:2 15307:1 15323:1 15348:1 15370:1 15381:1 15390:1 15406:1 15407:1 15408:2 15413:2 15427:1 15489:1 15504:1 15524:3 15532:1 15555:1 15579:1 15610:1 15629:1 15635:3 15652:1 15672:1 15689:1 15712:1 15714:2 15846:1 15860:1 15864:1 15898:1 15905:1 15936:1 15950:1 15957:1 16005:1 16035:1 16062:1 16066:1 16089:1 16109:1 16111:1 16132:1 16154:1 16158:1 16164:1 16179:1 16240:1 16258:1 16261:1 16263:1 16282:1 16289:2 16309:2 16367:1 16371:1 16379:1 16383:1 16387:1 16392:1 16443:1 16447:1 16451:1 16456:1 16468:1 16469:1 16486:2 16563:1 16575:1 16586:1 16604:1 16608:1 16616:1 16630:1 16645:1 16657:1 16668:1 16678:2 16685:1 16713:1 16716:1 16718:1 16720:1 16721:1 16729:1 16743:1 16744:1 16766:2 16767:1 16768:1 16783:1 16786:1 16800:1 16802:1 16803:1 16823:1 16848:1 16850:1 16906:1 16961:1 16966:2 16973:2 16990:1 16991:1 17021:1 17022:1 17028:1 17076:1 17094:1 17127:1 17140:3 17186:1 17284:1 17291:4 17298:1 17300:1 17319:1 17326:1 17328:1 17341:1 17360:1 17365:1 17471:1 17486:1 17492:1169 17497:1 17520:1 17541:1 17555:1 17599:1 17628:1 17668:1 17669:1 17793:1 17815:1 17846:1 17902:1 17914:1 17933:1 17938:1 17991:1 18003:2 18020:1 18028:1 18032:1 18055:1 18087:1 18107:1 18110:3 18145:1 18161:1 18185:1 18198:1 18269:6 18333:1 18366:1 18380:2 18383:1 18423:1 18471:1 18485:2 18494:1 18503:1 18507:1 18525:1 18535:1 18544:1 18549:1 18584:2 18592:1 18606:2 18619:1 18622:1 18651:1 18667:1 18672:3 18676:1 18740:1 18757:1 18776:1 18778:1 18849:3 18856:1 18892:1 18915:2 18921:3 18928:1 18929:1 18958:1 18983:2 18985:1 18995:1 19001:1 19003:1 19005:1 19044:1 19057:1 19061:1 19078:2 19097:1 19109:1 19202:1 19208:2 19214:1 19240:1 19253:1 19274:1 19277:1 19278:1 19297:1 19358:1 19388:2 19426:1 19435:1 19465:1 19471:1 19485:1 19487:1 19488:1 19510:1 19515:1 19518:1 19525:1 19558:2 19596:2 19612:1 19623:2 19624:1 19647:2 19648:1 19651:2 19706:1 19708:1 19710:1 19758:1 19785:1 19809:2 19928:1 19934:1 19957:1 19968:1 20033:2 20091:1 20096:1 20109:1 20131:1 20139:1 20143:1 20174:1 20196:1 20216:1 20234:1 20247:1 20251:1 20290:1 20370:1 20401:2 20411:1 20415:1 20421:5 20422:1 20433:2 20446:1 20462:1 20477:2 20481:1 20488:1 20529:1 20571:1 20577:3 20580:1 20583:1 20591:1 20594:1 20608:1 20610:3 20613:1 20624:1 20625:2 20627:1 20654:1 20659:1 20716:1 20727:1 20762:1 20775:1 20776:1 20796:2 20804:1 20823:1 20828:1 20841:1 20864:1 20894:2 20923:1 20975:1 20988:1 20994:2 21004:1 21007:2 21011:2 21017:1 21025:1 21030:1 21040:1 21053:1 21067:1 21072:1 21080:1 21082:1 21111:1 21120:1 21121:1 21132:1 21159:2 21173:3 21185:2 21195:1 21233:1 21236:1 21241:1 21242:1 21252:1 21254:1 21260:1 21280:1 21305:1 21313:1 21315:1 21320:1 21323:1 21329:1 21337:1 21345:1 21430:4 21435:1 21439:1 21478:1 21503:1 21516:2 21554:2 21568:2 21587:1 21593:1 21632:2 21656:1 21692:1 21709:4 21729:1 21731:1 21777:1 21850:1 21895:1 21896:2 21904:1 21909:1 21919:2 21927:1 21954:1 21967:1 21968:1 21975:1 21987:1 22024:1 22055:1 22074:1 22097:1 22119:1 22137:1 22148:2 22152:1 22157:2 22176:1 22188:1 22189:1 22202:1 22208:2 22215:1 22224:1 22248:1 22283:1 22291:1 22309:1 22323:1 22333:1 22340:1 22351:1 22382:1 22405:1 22409:1 22438:1 22449:1 22471:1 22502:1 22568:1 22572:1 22578:1 22586:1 22652:1 22678:1 22679:1 22707:3 22717:1 22718:1 22728:1 22737:1 22759:1 22762:1 22779:1 22797:1 22830:1 22838:1 22876:2 22885:1 22887:1 22935:1 22956:2 22963:1 22967:2 23000:1 23003:6 23007:1 23052:1 23094:1 23103:1 23111:1 23121:1 23128:2 23173:1 23191:1 23194:1 23199:1 23222:1 23224:1 23240:1 23245:2 23247:1 23250:1 23271:1 23277:1 23315:1 23373:2 23383:1 23415:1 23416:1 23426:1 23486:1 23535:1 23554:1 23608:1 23628:1 23633:3 23637:1 23675:4 23694:1 23711:1 23718:1 23735:1 23738:2 23751:1 23766:1 23783:1 23791:1 23822:1 23850:1 23864:1 23865:1 23866:3 23873:2 23878:1 23879:1 23897:1 23898:1 23901:1 23902:1 23904:1 23913:2 23914:1 23918:2 23935:1 23964:2 23966:1 23986:1 23987:1 24008:1 24063:1 24085:1 24141:1 24153:1 24171:1 24188:1 24228:1 24268:1 24271:4 24273:1 24298:1 24324:1 24330:1 24352:2 24367:1 24397:1 24430:2 24436:1 24442:1 24443:1 24463:1 24466:2 24533:2 24542:1 24598:4 24638:1 24643:2 24655:1 24675:1 24720:1 24721:1 24730:1 24734:1 24759:1 24809:1 24836:1 24839:1 24861:1 24899:3 24928:3 24957:1 24965:1 24993:1 25000:1 25033:1 25045:1 25071:2 25079:2 25134:1 25161:1 25219:1 25248:1 25277:2 25281:1 25296:1 25338:1 25347:1 25349:1 25370:1 25387:1 25393:1 25434:1 25460:1 25473:2 25488:1 25515:1 25537:1 25539:1 25543:1 25545:1 25587:1 25593:1 25623:1 25635:2 25641:1 25662:1 25663:1 25704:2 25706:1 25710:1 25719:1 25720:1 25724:1 25728:1 25767:3 25769:1 25778:2 25780:1 25788:1 25790:1 25793:1 25798:1 25804:1 25811:1 25835:2 25866:4 25871:1 25874:1 25877:2 25878:1 25912:1 25961:1 26013:2 26049:1 26068:2 26070:1 26071:1 26072:1 26084:2 26092:1 26131:1 26166:1 26174:1 26184:1 26218:1 26250:1 26275:1 26280:3 26312:1 26322:1 26337:1 26348:1 26352:2 26400:1 26409:1 26429:1 26442:1 26446:6 26451:1 26468:1 26482:2 26498:4 26531:1 26545:1 26548:1 26565:1 26575:1 26576:1 26598:2 26609:5 26647:8 26652:1 26655:1 26659:1 26666:2 26681:1 26709:1 26723:2 26782:1 26821:1 26853:1 26872:1 26898:1 26909:1 26912:1 26968:1 26977:1 26981:1 26984:1 26990:1 27006:1 27026:1 27050:2 27062:1 27078:1 27084:1 27086:1 27095:1 27118:1 27122:1 27133:1 27137:2 27180:2 27190:1 27227:1 27232:1 27250:1 27358:1 27360:1 27368:1 27372:2 27431:1 27473:1 27479:4 27489:2 27497:1 27499:1 27526:1 27529:1 27538:1 27557:2 27565:1 27608:1 27615:1 27625:1 27633:2 27641:1 27691:1 27696:4 27730:1 27746:1 27758:1
12 1:1 37:1 38:1 43:1 52:1 57:2 74:1 87:1 92:1 111:1 141:1 165:1 179:2 182:1 195:1 202:1 209:1 210:1 277:1 282:1 294:1 328:2 356:2 363:2 378:2 388:1 413:1 418:3 430:1 441:2 457:1 528:1 535:1 603:2 637:1 648:1 698:1 725:1 790:1 794:1 861:4 867:1 881:1 888:4 893:1 903:1 941:1 952:1 981:1 990:1 994:1 1019:1 1037:1 1054:1 1073:1 1082:1 1088:1 1104:1 1125:1 1132:1 1140:1 1192:1 1195:1 1203:2 1240:1 1249:2 1277:2 1287:1 1301:1 1310:1 1331:1 1344:3 1354:1 1357:1 1369:1 1397:4 1448:1 1450:1 1454:1 1457:4 1459:1 1482:1 1484:1 1493:1 1516:1 1534:1 1535:2 1562:1 1564:2 1565:1 1568:1 1574:1 1623:1 1625:1 1656:2 1660:1 1668:4 1691:1 1695:1 1696:1 1730:1 1768:1 1791:1 1795:1 1810:1 1815:1 1831:2 1834:1 1839:1 1848:1 1864:2 1890:2 1891:1 1897:1 1905:1 1922:2 1941:1 2006:1 2007:2 2010:1 2030:1 2039:1 2058:1 2063:1 2080:1 2089:1 2148:1 2164:1 2191:4 2197:2 2200:1 2208:1 2210:1 2235:1 2236:1 2244:1 2245:2 2246:2 2249:3 2253:2 2256:2 2258:1 2261:1 2262:1 2264:1 2265:1 2270:4 2272:1 2276:1 2281:1 2287:2 2307:1 2338:4 2339:1 2354:2 2356:1 2368:1 2381:1 2418:1 2451:1 2459:1 2487:1 2501:1 2514:1 2523:1 2526:4 2545:1 2575:1 2580:1 2583:1 2589:1 2620:1 2640:1 2662:1 2699:4 2703:1 2721:1 2741:2 2745:1 2756:2 2769:1 2807:1 2846:4 2857:2 2860:1 2912:1 2919:1 2927:1 2928:1 2937:1 2951:1 2957:1 2972:1 3000:1 3008:1 3021:1 3053:1 3080:1 3084:1 3113:1 3135:1 3143:1 3160:1 3174:1 3191:2 3207:1 3223:1 3232:2 3244:2 3247:1 3257:1 3260:1 3322:1 3368:1 3399:1 3402:1 3407:1 3426:1 3431:1 3460:2 3500:1 3504:1 3512:1 3515:1 3529:1 3534:1 3559:1 3568:1 3577:4 3586:1 3591:1 3600:1 3607:1 3648:2 3674:1 3675:1 3697:1 3703:1 3713:1 3717:1 3721:3 3725:1 3726:2 3741:1 3753:1 3763:1 3805:1 3806:2 3832:1 3844:2 3849:1 3876:1 3888:1 3904:1 3916:1 3921:1 3932:2 3972:1 3992:1 4014:1 4023:2 4030:1 4104:5 4107:2 4113:1 4117:1 4145:1 4163:4 4175:1 4180:1 4192:1 4216:1 4231:1 4239:2 4258:1 4267:1 4281:1 4310:1 4346:1 4357:1 4375:1 4404:1 4406:1 4414:1 4416:1 4423:1 4431:2 4472:1 4494:2 4506:1 4521:1 4526:1 4550:3 4579:1 4581:1 4605:1 4656:1 4677:1 4700:1 4710:6 4711:1 4733:1 4738:1 4749:1 4814:5 4828:3 4830:2 4833:1 4838:1 4845:2 4850:2 4856:1 4857:1 4860:1 4879:1 4891:1 4915:1 4993:1 4996:1 5045:2 5112:1 5118:1 5130:2 5133:1 5141:3 5158:1 5162:1 5163:6 5188:8 5242:1 5274:1 5335:1 5355:2 5361:1 5382:1 5400:1 5402:1 5407:1 5438:1 5452:1 5470:1 5476:1 5481:1 5484:1 5496:1 5511:1 5527:2 5534:1 5639:1 5663:1 5665:1 5669:1 5705:1 5750:1 5752:5 5755:1 5777:1 5779:1 5787:1 5788:1 5794:1 5797:1 5813:1 5840:1 5864:1 5868:1 5903:1 5917:2 5934:1 5960:1 5994:2 6003:1 6007:1 6008:1 6016:1 6076:1 6092:3 6096:1 6098:1 6101:1 6102:1 6110:1 6113:1 6115:3 6117:7 6120:2 6169:2 6246:2 6254:1 6260:2 6283:1 6362:1 6375:1 6399:1 6414:2 6421:1 6428:1 6436:1 6455:1 6472:1 6486:1 6490:1 6492:1 6493:1 6516:2 6519:1 6545:3 6566:1 6568:1 6578:1 6614:1 6629:1 6656:1 6714:1 6745:1 6762:1 6798:1 6877:2 6878:2 6895:1 6924:1 6932:1 6949:1 6958:1 6964:1 6974:1 6975:2 6990:1 7117:2 7131:1 7143:3 7144:2 7146:3 7155:1 7180:1 7198:1 7211:1 7250:2 7263:1 7290:1 7293:1 7295:1 7328:7 7329:6 7336:1 7337:1 7346:1 7352:1 7356:1 7367:1 7384:1 7394:21 7410:4 7419:2 7422:1 7432:1 7457:1 7460:1 7480:1 7488:2 7489:2 7522:2 7550:1 7594:1 7604:1 7614:1 7629:1 7651:1 7689:1 7725:2 7733:1 7770:1 7777:1 7811:1 7852:2 7871:4 7902:1 7905:1 7916:1 7947:1 7961:1 7999:1 8008:1 8062:1 8072:1 8091:1 8124:1 8133:1 8140:1 8166:1 8167:1 8204:1 8206:1 8207:1 8212:1 8217:1 8219:1 8221:1 8238:1 8244:1 8247:2 8259:1 8262:1 8285:1 8287:2 8320:1 8324:2 8335:1 8366:1 8433:1 8483:2 8490:1 8491:1 8511:2 8523:1 8587:1 8591:1 8599:2 8630:1 8659:1 8676:1 8688:2 8689:1 8692:1 8707:1 8713:1 8732:1 8733:1 8740:1 8750:4 8787:1 8796:2 8810:1 8813:1 8841:2 8843:2 8844:1 8866:1 8880:1 8883:2 8910:1 8930:1 8931:1 8948:1 8965:1 8990:1 8995:1 8998:1 9006:1 9011:1 9019:1 9031:1 9066:4 9108:1 9109:1 9133:1 9136:1 9147:2 9153:1 9161:1 9175:2 9190:1 9191:2 9198:1 9203:2 9220:1 9244:1 9250:1 9254:2 9257:1 9264:1 9287:5 9303:3 9307:1 9312:1 9397:1 9433:3 9480:1 9481:3 9484:1 9492:1 9523:1 9526:2 9583:1 9594:4 9598:1 9599:1 9617:1 9650:1 9661:1 9665:1 9693:1 9747:1 9774:1 9778:1 9797:1 9802:1 9808:1 9831:1 9839:1 9876:2 9882:2 9954:1 9961:2 9963:1 9995:2 9999:1 10018:1 10020:1 10054:1 10059:3 10063:1 10066:1 10072:2 10112:1 10135:1 10145:1 10148:1 10155:5 10162:1 10163:1 10182:2 10210:1 10214:1 10215:1 10237:1 10266:1 10357:2 10359:2 10365:2 10380:1 10386:1 10419:1 10424:1 10442:1 10448:1 10473:1 10488:3 10500:1 10519:1 10524:1 10526:1 10537:1 10543:1 10547:1 10573:1 10583:1 10594:1 10595:1 10627:1 10631:1 10633:2 10700:1 10710:1 10711:1 10714:1 10740:1 10750:1 10767:1 10777:1 10781:1 10812:4 10855:1 10866:2 10883:2 10888:1 10889:1 10905:1 10918:2 10961:1 10975:1 10978:1 10989:1 10992:1 11008:3 11053:2 11054:1 11061:1 11071:1 11074:1 11076:1 11077:1 11080:1 11096:2 11125:1 11126:1 11130:1 11148:1 11151:1 11158:1 11169:1 11189:1 11194:1 11233:1 11244:2 11268:1 11284:1 11310:1 11316:1 11333:1 11344:1 11443:4 11464:1 11465:1 11477:2 11488:2 11494:1 11507:2 11512:1 11529:1 11549:2 11560:1 11565:1 11569:1 11581:2 11624:1 11630:1 11710:2 11731:1 11752:1 11756:1 11761:1 11775:1 11785:1 11789:1 11855:2 11869:1 11874:1 11902:1 11910:1 11913:1 11928:1 11972:2 11976:1 11979:2 11980:1 11999:1 12000:1 12001:2 12009:1 12049:1 12058:1 12070:2 12075:1 12139:1 12174:1 12185:1 12209:1 12244:1 12269:1 12272:1 12292:1 12337:1 12349:1 12355:2 12356:3 12360:2 12376:1 12381:1 12386:1 12396:1 12402:1 12410:1 12438:1 12443:1 12445:1 12507:1 12515:2 12522:1 12533:1 12548:2 12570:1 12575:2 12586:1 12603:1 12632:2 12639:1 12648:1 12664:1 12698:1 12718:1 12721:1 12815:3 12827:1 12851:1 12852:2 12857:1 12859:4 12881:2 12884:1 12902:1 12919:1 12939:1 12949:1 12986:1 12997:3 13008:1 13010:2 13013:1 13015:1 13081:1 13093:1 13094:2 13108:1 13109:1 13114:1 13128:3 13134:1 13148:3 13164:2 13166:1 13172:1 13204:1 13274:1 13276:1 13280:1 13320:2 13330:2 13370:1 13386:2 13399:1 13468:1 13483:1 13484:1 13498:1 13499:1 13502:1 13517:1 13527:1 13534:1 13553:1 13577:1 13592:1 13606:1 13628:1 13678:1 13686:1 13691:1 13695:1 13705:1 13709:1 13718:1 13734:1 13758:1 13774:4 13812:1 13846:1 13848:1 13873:1 13874:2 13904:1 13915:1 13919:3 13924:1 13935:1 13956:1 14009:1 14029:1 14045:1 14049:2 14050:1 14077:1 14150:1 14155:2 14160:2 14170:1 14176:1 14245:1 14253:1 14317:1 14332:1 14342:1 14355:1 14365:1 14409:1 14429:1 14462:2 14467:1 14475:1 14476:1 14479:1 14480:1 14487:1 14497:1 14512:1 14520:2 14534:1 14575:1 14595:1 14602:2 14637:1 14654:1 14663:1 14678:1 14708:1 14733:3 14754:3 14763:1 14769:1 14770:1 14773:1 14774:1 14782:3 14786:1 14790:1 14797:2 14812:4 14820:1 14843:1 14898:1 14903:1 14923:2 14962:2 14970:1 14982:1 15021:1 15048:2 15070:2 15120:1 15121:1 15131:1 15140:2 15141:1 15147:1 15173:1 15174:1 15180:1 15193:2 15261:1 15265:1 15287:2 15295:1 15297:2 15307:1 15323:1 15348:1 15370:1 15381:1 15390:1 15406:1 15407:1 15408:2 15413:2 15427:1 15489:1 15504:2 15524:4 15532:1 15555:1 15579:1 15610:1 15629:1 15635:3 15652:1 15672:1 15689:1 15712:1 15714:2 15846:1 15860:1 15864:1 15898:1 15905:1 15918:1 15936:1 15950:1 15957:1 16005:1 16035:1 16062:1 16066:1 16089:1 16109:1 16111:1 16132:1 16154:1 16158:1 16164:1 16179:1 16240:1 16258:1 16261:1 16263:2 16282:1 16289:2 16309:2 16367:1 16371:1 16379:1 16383:1 16387:1 16392:1 16408:1 16443:1 16447:2 16451:1 16456:1 16468:1 16469:1 16486:2 16512:1 16563:1 16575:1 16586:1 16604:1 16608:1 16616:1 16630:1 16645:1 16657:1 16668:1 16678:2 16685:1 16713:1 16716:1 16718:1 16720:1 16721:1 16729:1 16743:1 16744:1 16766:2 16767:1 16768:1 16783:1 16786:1 16800:1 16802:1 16803:1 16823:1 16848:1 16850:1 16906:1 16937:1 16958:1 16961:1 16966:2 16973:2 16990:1 16991:1 17021:1 17022:1 17028:1 17076:1 17094:2 17127:1 17140:4 17186:1 17284:1 17291:5 17298:1 17300:1 17319:1 17326:1 17328:1 17341:1 17360:1 17365:1 17471:1 17486:1 17492:1249 17497:1 17520:1 17541:1 17551:1 17555:1 17599:1 17628:1 17668:1 17669:1 17793:1 17815:1 17846:1 17902:1 17914:1 17933:1 17938:1 17991:1 18003:2 18020:1 18028:1 18032:1 18055:1 18087:2 18107:1 18108:1 18110:4 18145:1 18161:1 18185:1 18196:1 18198:1 18217:1 18269:6 18333:1 18366:1 18380:2 18383:1 18423:1 18471:1 18485:2 18494:1 18503:1 18507:1 18525:1 18535:1 18544:1 18549:1 18566:1 18584:2 18592:1 18606:2 18619:1 18622:1 18651:1 18667:1 18672:3 18676:1 18740:1 18757:1 18776:1 18778:1 18849:3 18856:1 18892:1 18915:3 18921:3 18928:1 18929:1 18958:1 18983:2 18985:1 18995:1 19001:1 19003:1 19005:1 19044:1 19057:1 19061:1 19078:2 19097:1 19109:1 19115:1 19202:1 19208:2 19214:1 19240:1 19253:1 19274:1 19277:1 19278:1 19297:1 19358:1 19388:2 19426:1 19435:1 19465:1 19471:1 19485:1 19487:1 19488:1 19510:1 19515:1 19518:1 19525:1 19558:2 19596:2 19612:1 19623:2 19624:1 19647:2 19648:1 19651:2 19706:1 19708:1 19710:1 19758:1 19785:1 19809:2 19928:1 19934:1 19957:1 19968:1 20033:2 20091:1 20096:1 20109:1 20131:1 20139:1 20143:1 20174:1 20196:1 20216:1 20231:1 20234:1 20247:1 20251:1 20290:1 20370:2 20401:2 20411:1 20415:1 20421:5 20422:1 20433:2 20446:1 20462:1 20477:2 20481:1 20482:1 20486:1 20488:1 20529:2 20571:1 20577:3 20580:1 20583:1 20591:1 20594:1 20608:1 20610:3 20613:1 20624:1 20625:2 20627:1 20654:1 20659:1 20716:1 20727:1 20762:1 20775:1 20776:1 20796:2 20804:1 20823:1 20828:1 20841:1 20864:1 20894:2 20923:1 20942:1 20975:1 20988:1 20994:2 21004:1 21007:2 21011:2 21017:1 21025:1 21030:1 21040:1 21053:1 21067:1 21072:1 21080:1 21082:1 21111:1 21120:1 21121:1 21132:1 21159:2 21173:3 21185:2 21195:1 21233:1 21236:1 21241:1 21242:1 21252:1 21254:1 21260:1 21280:1 21305:1 21313:1 21315:1 21320:1 21323:1 21329:1 21337:1 21345:1 21430:4 21435:1 21439:1 21444:1 21478:1 21503:1 21516:2 21554:2 21568:2 21579:1 21587:1 21593:1 21632:2 21656:1 21692:1 21709:4 21729:1 21731:1 21777:1 21850:1 21895:1 21896:2 21904:1 21909:1 21919:2 21927:2 21954:1 21967:1 21968:1 21975:1 21987:1 22024:1 22055:1 22074:1 22097:1 22105:1 22119:1 22137:1 22148:2 22152:1 22157:2 22176:1 22188:1 22189:1 22202:1 22208:2 22215:1 22224:1 22248:1 22283:1 22291:1 22309:1 22323:1 22333:1 22340:1 22351:1 22382:1 22405:1 22409:1 22424:1 22438:1 22449:1 22471:1 22502:1 22568:1 22572:1 22578:1 22586:1 22652:1 22678:1 22679:1 22707:3 22717:1 22718:1 22728:1 22737:1 22747:1 22759:1 22762:1 22779:1 22797:1 22830:1 22838:1 22876:2 22885:1 22887:1 22935:1 22956:2 22963:1 22967:2 23000:1 23003:6 23007:1 23052:1 23094:1 23103:1 23111:1 23121:1 23128:2 23173:1 23191:1 23194:1 23199:1 23222:1 23224:1 23240:1 23245:2 23247:1 23250:1 23271:1 23277:1 23315:1 23373:2 23383:1 23415:1 23416:1 23426:1 23486:1 23535:1 23554:1 23608:2 23628:1 23633:3 23637:1 23675:4 23694:1 23711:1 23718:2 23735:1 23738:2 23751:1 23766:1 23783:1 23791:1 23822:1 23850:1 23864:1 23865:1 23866:3 23873:2 23878:1 23879:1 23897:1 23898:1 23901:1 23902:1 23904:1 23913:2 23914:1 23918:2 23935:2 23964:2 23966:1 23986:1 23987:1 24008:1 24063:1 24085:1 24141:1 24143:1 24153:1 24171:1 24188:1 24228:1 24267:1 24268:1 24271:4 24273:1 24298:1 24324:1 24330:1 24352:2 24367:1 24397:1 24430:2 24436:1 24442:1 24443:1 24463:1 24466:2 24490:1 24533:2 24542:1 24598:5 24638:1 24643:2 24655:1 24672:1 24675:1 24720:1 24721:2 24730:1 24734:1 24759:1 24809:1 24836:2 24839:1 24854:1 24856:1 24861:1 24899:3 24928:3 24957:1 24965:1 24993:1 25000:1 25018:1 25033:1 25045:1 25071:2 25079:2 25134:1 25161:1 25219:1 25248:1 25277:2 25281:1 25296:1 25338:1 25347:1 25349:1 25370:1 25387:1 25393:1 25434:1 25460:1 25466:1 25473:2 25488:1 25515:1 25537:1 25539:1 25543:1 25545:1 25587:1 25593:1 25597:1 25623:1 25635:2 25641:1 25662:1 25663:1 25704:2 25706:1 25710:1 25719:1 25720:1 25724:1 25728:1 25767:3 25769:1 25778:3 25780:1 25788:1 25790:1 25793:1 25798:1 25799:1 25804:1 25811:1 25835:2 25866:4 25871:1 25874:1 25877:2 25878:1 25912:1 25961:1 26013:2 26049:1 26068:2 26070:1 26071:1 26072:1 26084:2 26092:1 26131:1 26166:1 26174:1 26184:1 26218:1 26250:1 26275:1 26280:3 26312:1 26322:1 26337:1 26348:1 26352:2 26400:1 26402:1 26409:1 26429:1 26442:1 26446:7 26451:1 26468:1 26482:4 26498:4 26531:1 26545:1 26548:1 26565:1 26575:1 26576:1 26598:2 26609:5 26647:8 26652:1 26655:1 26659:1 26666:2 26681:1 26709:1 26723:2 26782:1 26821:1 26843:1 26853:1 26872:1 26898:1 26909:1 26912:1 26968:1 26977:1 26981:1 26984:1 26990:1 27006:1 27026:1 27029:1 27050:2 27062:1 27078:1 27084:1 27086:1 27095:1 27118:1 27122:1 27133:1 27137:2 27180:2 27190:1 27227:1 27232:1 27250:1 27358:1 27360:1 27368:1 27372:2 27431:1 27473:1 27479:4 27481:1 27489:2 27497:1 27499:1 27526:1 27529:1 27538:1 27557:2 27565:1 27608:1 27615:1 27625:1 27633:2 27641:1 27691:1 27696:4 27704:1 27730:1 27746:1 27758:1
12 1:1 37:1 38:1 43:1 52:1 57:2 74:1 87:2 92:1 111:1 141:1 165:1 179:2 182:1 195:1 202:1 209:1 210:1 277:1 282:1 294:1 313:1 328:2 356:2 363:2 378:2 379:1 388:1 413:1 418:3 430:1 441:2 457:1 528:1 535:1 603:2 637:1 648:1 693:1 698:1 725:1 790:1 794:1 861:4 867:1 881:1 888:4 893:1 903:1 909:1 941:1 949:1 952:1 981:1 990:1 994:1 1019:1 1037:1 1054:1 1069:1 1073:1 1082:1 1088:1 1104:1 1125:1 1132:1 1140:1 1192:1 1193:1 1195:1 1203:2 1240:1 1249:2 1277:2 1287:1 1301:1 1310:1 1331:1 1344:3 1354:1 1357:1 1369:1 1397:4 1448:1 1450:1 1454:1 1457:5 1459:1 1482:1 1484:1 1493:1 1516:1 1534:1 1535:2 1559:1 1562:1 1564:2 1565:1 1568:1 1574:1 1623:2 1625:1 1656:2 1660:1 1668:4 1680:1 1691:1 1695:1 1696:1 1730:1 1768:1 1791:1 1795:1 1810:1 1815:1 1831:2 1834:1 1839:2 1848:1 1864:2 1890:2 1891:1 1897:2 1905:1 1922:2 1941:1 2006:1 2007:2 2010:1 2030:1 2039:1 2058:1 2063:1 2080:1 2089:1 2122:1 2148:1 2164:1 2191:4 2197:2 2200:1 2208:1 2210:1 2235:1 2236:1 2244:1 2245:2 2246:2 2249:3 2253:2 2256:2 2258:1 2261:1 2262:1 2264:1 2265:1 2270:5 2272:1 2276:1 2280:1 2281:1 2287:2 2307:1 2338:4 2339:1 2354:2 2356:1 2368:1 2381:1 2418:1 2451:1 2459:1 2487:1 2501:1 2514:1 2523:1 2526:4 2545:1 2575:1 2580:1 2583:1 2589:1 2620:1 2640:1 2662:1 2699:4 2703:1 2721:1 2724:1 2741:2 2745:1 2756:2 2769:1 2807:1 2846:4 2857:2 2860:1 2912:1 2919:1 2927:1 2928:2 2937:1 2951:1 2957:1 2972:1 3000:1 3008:1 3021:1 3053:1 3080:1 3084:1 3113:1 3135:1 3143:1 3155:1 3160:1 3174:1 3191:2 3207:1 3223:1 3232:2 3244:3 3247:1 3257:1 3260:1 3322:1 3368:1 3399:1 3402:1 3407:1 3426:1 3431:1 3460:2 3497:1 3500:1 3504:1 3512:1 3515:1 3529:1 3534:1 3548:1 3559:1 3568:1 3577:4 3586:1 3591:1 3600:1 3607:1 3648:2 3674:1 3675:1 3697:1 3703:1 3713:1 3717:1 3721:3 3725:1 3726:2 3741:1 3753:1 3763:1 3805:1 3806:2 3825:1 3832:1 3844:2 3849:1 3872:1 3876:1 3888:1 3904:1 3916:1 3921:2 3932:2 3972:1 3992:1 4014:1 4023:2 4030:1 4104:5 4107:2 4113:1 4117:1 4145:1 4163:4 4175:1 4180:1 4192:1 4216:1 4231:1 4239:2 4258:1 4267:1 4281:1 4310:1 4346:1 4356:1 4357:1 4375:1 4404:1 4406:1 4414:1 4416:1 4423:1 4431:2 4472:1 4494:2 4506:1 4521:1 4526:1 4550:3 4579:1 4581:1 4605:1 4656:1 4677:1 4700:1 4710:6 4711:1 4733:1 4738:2 4749:1 4814:5 4820:1 4828:3 4830:2 4833:1 4838:1 4845:2 4850:2 4854:1 4856:1 4857:1 4860:1 4879:1 4891:1 4915:1 4993:1 4996:1 5045:2 5112:1 5118:1 5130:2 5133:1 5141:3 5158:1 5162:1 5163:6 5188:8 5242:1 5269:1 5274:1 5335:1 5355:2 5361:1 5382:1 5400:1 5402:1 5407:1 5438:1 5452:1 5470:1 5473:1 5476:1 5481:1 5484:1 5496:1 5511:1 5527:2 5534:1 5639:1 5663:1 5665:1 5669:1 5705:1 5750:1 5752:5 5755:1 5777:1 5779:1 5787:1 5788:1 5794:1 5797:1 5813:1 5840:1 5864:1 5868:1 5877:1 5903:1 5917:2 5934:1 5960:1 5994:2 6003:1 6007:1 6008:1 6016:1 6069:1 6076:1 6092:4 6096:1 6098:1 6101:1 6102:1 6110:1 6113:1 6115:3 6117:7 6120:2 6169:2 6246:2 6254:1 6260:2 6283:1 6362:1 6375:1 6399:1 6414:2 6421:1 6428:1 6436:1 6455:1 6472:1 6486:1 6490:1 6492:1 6493:1 6516:2 6519:1 6545:3 6566:1 6568:1 6578:1 6614:1 6629:1 6656:1 6714:1 6745:1 6762:1 6798:1 6877:2 6878:2 6895:1 6924:1 6932:1 6949:1 6958:1 6964:1 6974:1 6975:2 6990:1 7047:1 7117:2 7131:1 7143:3 7144:2 7146:3 7155:1 7180:1 7198:1 7211:1 7250:2 7263:1 7290:1 7293:1 7295:1 7328:7 7329:6 7336:1 7337:1 7346:1 7352:1 7356:1 7367:1 7384:1 7394:23 7410:4 7419:2 7422:1 7432:1 7457:1 7460:1 7480:1 7488:2 7489:2 7522:2 7550:1 7594:1 7604:1 7614:1 7629:1 7651:1 7689:1 7725:2 7733:1 7770:1 7777:1 7811:1 7852:2 7871:4 7902:1 7905:1 7916:1 7947:1 7961:1 7999:1 8008:1 8062:1 8072:1 8091:1 8124:1 8133:1 8140:1 8166:1 8167:1 8204:1 8206:1 8207:1 8212:1 8217:1 8219:1 8220:1 8221:1 8238:1 8244:1 8247:2 8259:1 8262:1 8285:1 8287:2 8320:1 8324:2 8335:1 8366:1 8433:1 8483:2 8490:1 8491:1 8511:2 8523:1 8580:1 8587:1 8591:1 8599:2 8630:1 8659:1 8662:1 8663:1 8676:1 8688:2 8689:1 8692:1 8707:1 8713:1 8732:1 8733:1 8740:1 8750:4 8787:1 8796:2 8810:1 8813:1 8841:2 8843:3 8844:1 8866:1 8880:1 8883:2 8910:1 8912:1 8930:1 8931:2 8948:1 8965:1 8990:1 8995:1 8998:1 9006:1 9011:1 9019:1 9031:1 9066:4 9108:1 9109:1 9133:1 9136:1 9147:2 9153:1 9161:1 9175:2 9190:1 9191:2 9198:1 9203:2 9220:1 9244:1 9250:1 9254:2 9257:1 9264:1 9267:1 9287:5 9303:3 9305:1 9307:1 9312:1 9397:1 9433:3 9480:1 9481:3 9484:1 9492:1 9523:1 9526:2 9583:1 9594:4 9598:1 9599:1 9617:1 9650:1 9661:1 9665:1 9693:1 9744:1 9747:1 9774:1 9776:1 9778:1 9797:1 9802:1 9808:1 9831:1 9839:1 9876:2 9882:2 9954:1 9961:2 9963:1 9995:2 9999:1 10018:1 10020:1 10039:1 10054:1 10059:3 10063:1 10066:1 10072:2 10112:1 10135:1 10145:1 10148:1 10155:5 10162:1 10163:1 10182:2 10210:1 10214:1 10215:1 10237:1 10266:1 10357:2 10359:3 10365:2 10380:1 10386:1 10419:1 10424:1 10442:1 10448:1 10473:1 10488:3 10500:1 10519:1 10524:1 10526:1 10537:1 10543:1 10547:1 10573:1 10583:1 10594:1 10595:1 10627:1 10631:1 10633:2 10700:1 10710:1 10711:1 10714:1 10740:1 10750:1 10767:1 10777:1 10781:1 10812:5 10855:1 10866:2 10883:2 10888:1 10889:1 10905:1 10918:2 10961:1 10975:1 10978:1 10987:1 10989:1 10992:1 11008:4 11053:2 11054:1 11061:1 11071:1 11074:1 11076:1 11077:1 11080:1 11096:2 11125:1 11126:1 11130:1 11148:1 11151:1 11158:1 11169:1 11189:1 11194:1 11233:1 11244:2 11268:1 11284:1 11310:1 11316:1 11333:1 11344:1 11424:1 11443:4 11462:1 11464:1 11465:1 11477:2 11488:2 11494:1 11507:2 11512:1 11529:1 11549:2 11560:1 11565:1 11569:1 11581:2 11624:1 11630:1 11710:2 11731:1 11752:1 11756:1 11761:1 11775:1 11785:1 11789:1 11855:2 11869:1 11874:1 11902:1 11910:1 11913:1 11928:1 11972:2 11976:1 11979:2 11980:1 11999:1 12000:1 12001:2 12009:1 12037:1 12049:1 12058:1 12070:2 12075:1 12139:1 12149:1 12174:1 12185:1 12209:1 12244:1 12269:1 12272:1 12292:1 12337:1 12348:1 12349:1 12355:2 12356:3 12360:2 12376:1 12381:1 12386:1 12396:1 12402:1 12410:1 12438:1 12443:1 12445:1 12506:1 12507:1 12515:2 12522:1 12533:1 12548:2 12570:1 12575:2 12586:1 12590:1 12603:1 12632:2 12639:1 12648:1 12664:1 12698:1 12718:1 12721:1 12815:4 12827:1 12851:1 12852:2 12857:1 12859:4 12861:1 12881:2 12884:1 12902:1 12919:1 12939:1 12949:1 12986:1 12997:3 13008:1 13010:2 13013:1 13015:1 13055:1 13081:1 13093:1 13094:2 13108:1 13109:1 13114:1 13128:3 13134:1 13148:3 13164:2 13166:1 13172:1 13195:1 13204:1 13274:1 13276:1 13280:1 13320:2 13330:2 13370:1 13386:2 13399:1 13468:1 13483:1 13484:1 13498:1 13499:1 13502:1 13517:1 13527:1 13534:1 13553:1 13577:1 13592:1 13606:1 13628:1 13678:1 13686:2 13691:1 13695:1 13705:1 13709:1 13718:1 13734:2 13758:1 13774:4 13812:1 13841:1 13846:1 13848:1 13873:1 13874:2 13904:1 13915:1 13919:3 13924:1 13926:1 13935:1 13956:1 14009:1 14029:1 14045:1 14049:2 14050:1 14077:1 14150:1 14155:2 14160:2 14170:1 14176:1 14245:1 14253:1 14317:1 14332:1 14342:1 14355:2 14365:1 14409:1 14429:1 14440:1 14462:2 14467:1 14475:1 14476:1 14479:1 14480:1 14487:1 14497:1 14512:1 14520:2 14526:1 14534:1 14575:1 14595:1 14602:2 14637:1 14654:1 14663:1 14678:1 14708:1 14733:4 14744:1 14749:1 14754:3 14763:1 14769:1 14770:1 14773:1 14774:1 14782:3 14786:1 14790:1 14797:2 14812:4 14820:1 14843:1 14898:2 14903:1 14923:2 14962:2 14970:1 14982:1 15021:1 15048:2 15070:2 15100:1 15120:1 15121:1 15131:1 15140:2 15141:1 15147:1 15173:1 15174:1 15180:1 15193:2 15231:1 15261:1 15265:1 15287:2 15295:1 15297:2 15307:1 15323:1 15348:1 15370:1 15381:1 15390:1 15406:1 15407:1 15408:2 15413:2 15427:1 15489:1 15504:2 15524:4 15532:1 15555:1 15579:1 15610:1 15629:1 15635:3 15652:1 15668:1 15672:1 15689:1 15712:1 15714:2 15846:1 15860:1 15864:1 15898:1 15905:1 15918:1 15936:1 15940:1 15950:1 15957:1 16005:1 16035:1 16062:1 16066:1 16089:1 16109:1 16111:1 16132:1 16154:1 16158:1 16160:1 16164:1 16179:1 16240:1 16258:1 16261:1 16263:2 16282:1 16289:2 16309:2 16367:1 16371:1 16375:1 16379:1 16383:1 16387:1 16392:1 16408:1 16443:1 16447:2 16451:1 16456:1 16468:1 16469:1 16486:2 16512:1 16563:1 16575:1 16586:1 16604:1 16608:1 16616:1 16630:1 16645:1 16657:1 16668:1 16678:2 16685:1 16713:1 16716:1 16718:1 16720:1 16721:1 16729:1 16743:1 16744:1 16750:1 16766:2 16767:1 16768:1 16783:1 16786:1 16800:1 16802:1 16803:1 16823:1 16848:1 16850:1 16891:1 16906:1 16937:1 16958:1 16961:1 16966:2 16973:2 16990:1 16991:1 17021:1 17022:1 17028:1 17076:1 17094:2 17127:1 17140:4 17186:1 17284:1 17288:1 17291:5 17298:1 17300:1 17319:1 17326:1 17328:1 17341:1 17360:1 17365:1 17471:1 17486:1 17492:1349 17497:1 17520:1 17541:1 17551:1 17555:1 17599:1 17628:1 17668:1 17669:1 17793:1 17815:1 17846:1 17902:1 17914:1 17933:1 17938:1 17991:1 18003:2 18020:1 18028:1 18032:1 18042:1 18055:1 18087:2 18107:1 18108:1 18110:4 18145:1 18161:1 18185:1 18196:1 18198:1 18217:1 18269:6 18333:1 18366:1 18380:2 18383:1 18423:1 18471:1 18485:2 18494:1 18503:1 18507:1 18525:1 18535:1 18544:1 18549:1 18566:1 18584:2 18592:1 18606:2 18619:1 18622:1 18651:1 18667:1 18672:3 18676:1 18740:1 18757:1 18776:1 18778:1 18849:4 18856:1 18892:1 18915:3 18921:3 18928:1 18929:1 18958:1 18965:1 18983:2 18985:1 18995:1 19001:1 19003:1 19005:1 19011:1 19033:1 19044:1 19057:1 19061:1 19078:2 19097:1 19109:1 19115:1 19202:1 19208:2 19214:1 19238:1 19240:1 19253:1 19274:1 19277:1 19278:1 19297:1 19358:1 19388:2 19426:1 19435:1 19465:1 19471:1 19485:1 19487:1 19488:1 19493:1 19510:1 19515:1 19518:1 19525:1 19558:2 19596:2 19612:1 19623:2 19624:1 19636:1 19647:2 19648:1 19651:2 19706:1 19708:1 19710:1 19722:1 19758:1 19785:1 19804:1 19809:2 19885:1 19928:1 19934:1 19957:1 19968:1 20018:1 20033:2 20091:1 20096:1 20109:1 20131:1 20139:1 20143:1 20174:1 20196:1 20216:1 20231:1 20234:1 20247:1 20251:1 20290:1 20307:1 20370:2 20401:2 20411:1 20415:1 20421:5 20422:1 20433:2 20446:1 20462:1 20477:2 20481:1 20482:1 20486:1 20488:1 20529:2 20571:1 20577:3 20580:1 20583:1 20591:1 20594:1 20608:1 20609:1 20610:3 20613:1 20624:1 20625:2 20627:1 20654:1 20659:1 20716:1 20727:1 20762:1 20775:1 20776:1 20796:2 20804:1 20823:1 20828:1 20841:1 20864:1 20894:2 20923:1 20942:1 20975:1 20988:1 20994:2 21004:1 21007:2 21011:2 21017:1 21025:1 21030:1 21040:1 21053:1 21067:1 21072:1 21080:1 21082:1 21111:1 21120:1 21121:1 21132:1 21159:2 21173:3 21185:2 21195:1 21233:1 21236:1 21241:1 21242:1 21252:1 21254:1 21260:1 21280:1 21305:1 21313:1 21315:1 21320:1 21323:1 21329:1 21337:1 21345:1 21347:1 21430:4 21435:1 21439:1 21444:1 21478:1 21503:1 21516:2 21554:2 21568:2 21579:1 21587:1 21593:1 21632:2 21656:1 21692:1 21709:4 21729:1 21731:1 21777:1 21850:1 21895:1 21896:2 21904:1 21909:1 21911:1 21919:2 21927:2 21954:1 21967:1 21968:1 21975:1 21987:1 22024:2 22055:1 22074:1 22097:1 22105:1 22119:1 22137:1 22148:2 22152:1 22157:2 22176:1 22188:1 22189:1 22202:1 22208:2 22215:1 22224:1 22248:1 22283:1 22291:1 22309:1 22323:1 22333:1 22340:1 22351:1 22382:1 22405:1 22409:1 22424:1 22438:1 22449:1 22471:1 22502:1 22568:3 22572:1 22578:1 22586:1 22614:1 22634:1 22652:1 22678:1 22679:1 22707:3 22717:1 22718:1 22728:1 22737:1 22747:1 22759:1 22762:1 22779:1 22797:1 22830:1 22838:1 22876:2 22885:1 22887:1 22935:1 22956:2 22963:1 22967:2 23000:1 23003:6 23007:1 23052:1 23094:1 23103:1 23111:1 23119:1 23121:1 23128:2 23138:1 23164:1 23173:1 23191:1 23194:1 23199:1 23222:1 23224:1 23231:1 23240:1 23245:2 23247:1 23250:1 23271:1 23277:1 23286:1 23315:1 23373:2 23383:1 23415:1 23416:1 23426:1 23486:1 23535:1 23554:1 23608:2 23628:1 23633:3 23637:1 23675:4 23694:1 23711:1 23718:2 23735:1 23738:2 23751:1 23766:1 23783:1 23791:1 23822:1 23850:1 23864:1 23865:1 23866:3 23873:2 23878:1 23879:1 23897:1 23898:1 23901:1 23902:1 23904:1 23913:2 23914:1 23918:2 23935:2 23964:2 23966:1 23986:1 23987:1 24008:1 24063:1 24085:1 24091:1 24141:1 24143:1 24153:1 24171:1 24188:1 24228:1 24267:1 24268:1 24271:4 24273:1 24298:1 24324:1 24330:1 24352:2 24367:1 24397:1 24430:2 24436:1 24442:1 24443:1 24463:1 24466:2 24490:1 24533:2 24542:1 24579:1 24598:5 24638:1 24643:2 24655:1 24672:1 24675:1 24720:1 24721:2 24730:1 24734:1 24759:1 24809:1 24836:2 24839:1 24854:1 24856:1 24861:1 24899:4 24928:3 24957:1 24965:1 24993:1 25000:1 25018:1 25033:1 25045:1 25071:2 25079:2 25134:1 25161:1 25219:1 25248:1 25277:2 25281:1 25296:1 25338:1 25347:1 25349:1 25370:1 25387:1 25393:1 25434:1 25460:1 25466:1 25473:2 25488:1 25515:1 25537:1 25539:1 25543:1 25545:1 25587:1 25593:1 25597:1 25623:1 25635:2 25641:1 25662:1 25663:1 25704:2 25706:1 25710:1 25719:1 25720:1 25724:1 25728:1 25767:3 25769:1 25778:3 25780:1 25786:1 25788:1 25790:1 25793:1 25798:1 25799:1 25804:1 25811:1 25835:2 25850:1 25866:4 25871:1 25874:1 25877:2 25878:1 25912:1 25924:1 25961:1 26013:2 26049:1 26068:2 26070:1 26071:1 26072:1 26084:2 26092:1 26125:1 26131:1 26166:1 26174:1 26184:1 26218:1 26250:1 26275:1 26280:3 26312:1 26322:1 26337:1 26348:1 26352:2 26378:1 26400:1 26402:1 26409:1 26422:1 26429:1 26442:1 26446:7 26451:1 26468:1 26482:4 26498:4 26531:1 26545:1 26548:1 26565:1 26575:1 26576:1 26598:2 26609:5 26647:8 26652:1 26655:1 26659:1 26666:2 26681:1 26709:1 26723:2 26782:1 26821:1 26834:1 26843:1 26853:1 26866:1 26872:1 26898:1 26909:1 26912:1 26962:1 26968:1 26977:1 26981:1 26984:2 26990:1 27006:1 27026:1 27029:1 27050:2 27062:1 27078:1 27084:1 27086:1 27095:1 27118:1 27122:1 27133:1 27137:2 27180:2 27190:1 27227:1 27232:1 27250:1 27286:1 27358:1 27360:1 27364:1 27368:1 27372:2 27431:1 27473:1 27479:4 27481:1 27489:2 27497:1 27499:1 27526:1 27529:1 27538:1 27557:2 27565:2 27608:1 27615:1 27625:2 27633:2 27641:1 27643:1 27691:1 27696:4 27704:1 27730:1 27746:1 27756:1 27758:1
12 1:1 37:1 38:1 43:1 52:1 57:2 74:1 87:2 92:1 111:1 141:1 165:1 179:2 182:1 195:1 202:1 209:1 210:1 277:1 282:1 292:1 294:1 313:1 328:2 356:2 363:2 378:2 379:1 388:1 413:1 418:3 430:1 441:2 457:1 528:1 535:1 603:2 637:1 648:1 693:1 698:1 725:1 790:1 794:1 861:4 867:1 881:1 888:4 893:1 903:1 909:1 923:1 941:1 949:2 952:1 981:1 990:1 994:1 1019:1 1037:1 1054:1 1069:1 1073:1 1082:1 1088:1 1104:1 1125:1 1132:1 1140:1 1192:1 1193:1 1195:1 1203:2 1240:1 1249:2 1277:2 1287:1 1301:1 1310:1 1331:2 1344:3 1354:1 1357:1 1369:1 1397:4 1448:1 1450:1 1451:1 1454:1 1457:5 1459:1 1461:1 1482:1 1484:1 1493:1 1516:1 1534:1 1535:2 1559:1 1562:1 1564:2 1565:1 1568:1 1574:1 1623:2 1625:1 1656:2 1660:1 1668:4 1680:1 1691:1 1695:1 1696:1 1730:1 1768:1 1791:1 1795:1 1810:1 1815:1 1831:2 1834:1 1839:2 1848:1 1864:2 1890:2 1891:1 1897:2 1905:1 1909:1 1922:2 1941:1 2006:1 2007:2 2010:1 2030:1 2039:1 2058:1 2063:1 2080:1 2089:1 2096:1 2122:1 2148:1 2164:1 2191:4 2197:2 2200:1 2208:1 2210:2 2235:1 2236:1 2244:2 2245:2 2246:2 2249:3 2253:2 2256:2 2258:1 2261:1 2262:1 2264:1 2265:1 2270:5 2272:1 2276:1 2280:1 2281:1 2287:2 2307:1 2338:4 2339:1 2354:2 2356:1 2368:1 2381:1 2418:2 2451:1 2459:1 2487:1 2501:1 2514:1 2523:1 2526:4 2545:1 2575:1 2580:1 2583:1 2589:1 2620:1 2640:1 2662:1 2699:4 2703:1 2721:1 2724:1 2741:2 2745:1 2756:2 2769:1 2807:1 2815:1 2846:4 2852:1 2857:2 2860:1 2898:1 2912:1 2919:1 2927:1 2928:2 2937:1 2951:1 2957:1 2972:1 3000:1 3008:1 3021:1 3053:1 3080:1 3084:1 3113:1 3135:1 3143:1 3155:1 3160:1 3174:1 3191:2 3207:1 3223:1 3232:2 3244:3 3247:1 3257:1 3260:1 3322:1 3368:1 3399:1 3402:1 3407:1 3426:1 3431:1 3442:1 3460:2 3497:1 3500:1 3504:1 3512:1 3515:1 3529:1 3534:1 3548:1 3559:1 3568:1 3577:4 3586:1 3591:1 3600:1 3607:1 3648:2 3674:1 3675:2 3697:1 3703:1 3713:1 3717:1 3721:3 3725:1 3726:2 3741:1 3753:1 3763:1 3805:1 3806:2 3825:1 3832:1 3844:2 3846:1 3849:1 3872:1 3876:1 3888:1 3904:1 3916:1 3921:2 3932:2 3972:1 3992:1 4014:1 4023:2 4030:1 4072:1 4104:5 4107:2 4113:1 4117:1 4145:1 4163:4 4175:1 4180:1 4192:1 4216:1 4231:1 4239:2 4258:1 4267:1 4281:1 4310:1 4346:1 4356:1 4357:1 4375:1 4404:1 4406:1 4414:1 4416:1 4423:1 4431:2 4472:1 4494:2 4506:1 4521:1 4526:1 4550:3 4578:1 4579:1 4581:1 4605:1 4656:1 4677:1 4700:1 4710:7 4711:1 4733:1 4738:2 4749:1 4814:5 4820:1 4828:3 4830:2 4833:1 4838:1 4841:1 4844:1 4845:2 4850:2 4854:1 4856:1 4857:1 4860:1 4879:1 4891:1 4915:1 4916:1 4993:1 4996:1 5045:2 5112:1 5118:1 5130:2 5133:1 5141:3 5158:1 5162:1 5163:6 5188:8 5242:1 5269:1 5274:1 5335:1 5355:2 5361:1 5382:1 5400:1 5402:1 5407:1 5418:1 5438:1 5452:1 5470:1 5473:1 5476:1 5481:1 5484:1 5496:1 5511:1 5527:2 5534:1 5639:1 5663:1 5665:1 5669:1 5705:1 5750:1 5752:5 5755:1 5777:1 5779:1 5787:1 5788:1 5794:2 5797:1 5813:1 5840:1 5844:1 5864:1 5868:2 5877:1 5903:1 5917:2 5934:1 5960:1 5994:2 6003:1 6007:1 6008:1 6016:1 6069:1 6076:1 6092:4 6096:1 6098:1 6101:1 6102:1 6110:1 6113:1 6115:3 6117:7 6120:2 6169:2 6246:2 6254:1 6260:2 6283:1 6362:1 6375:1 6399:1 6414:2 6421:1 6428:1 6436:1 6455:1 6472:1 6486:1 6490:1 6492:1 6493:1 6516:2 6519:1 6545:3 6566:1 6568:1 6578:1 6614:1 6629:1 6656:1 6714:1 6745:1 6762:1 6798:1 6877:2 6878:2 6895:1 6924:1 6932:1 6949:1 6958:1 6964:1 6974:1 6975:2 6981:1 6990:1 7047:1 7117:3 7131:1 7143:3 7144:2 7146:3 7155:1 7180:1 7198:1 7211:1 7250:2 7263:1 7290:1 7293:1 7295:1 7328:7 7329:6 7336:1 7337:1 7344:1 7346:1 7352:1 7356:1 7367:1 7384:2 7394:25 7410:5 7412:1 7419:2 7422:1 7432:1 7457:1 7460:1 7480:1 7488:2 7489:2 7522:2 7550:1 7594:1 7604:1 7614:2 7629:1 7651:1 7689:1 7693:1 7725:2 7733:1 7770:1 7777:1 7811:1 7852:2 7871:4 7902:1 7905:1 7916:1 7947:1 7961:1 7999:1 8008:1 8062:1 8072:1 8091:1 8124:1 8133:1 8140:1 8166:1 8167:1 8204:1 8206:1 8207:1 8212:1 8217:1 8219:1 8220:1 8221:1 8238:1 8244:1 8247:2 8259:1 8262:1 8285:1 8287:2 8320:1 8324:2 8335:1 8338:1 8366:1 8433:1 8468:1 8483:2 8490:1 8491:1 8511:2 8523:1 8528:1 8580:1 8587:1 8591:1 8599:2 8630:1 8659:1 8662:1 8663:1 8676:1 8688:2 8689:1 8692:1 8707:1 8713:1 8732:1 8733:1 8740:1 8750:4 8787:1 8796:2 8810:1 8813:1 8841:3 8843:3 8844:1 8866:1 8880:1 8883:2 8902:1 8910:1 8912:1 8914:1 8918:1 8930:1 8931:2 8948:1 8965:1 8990:1 8995:1 8998:1 9006:1 9011:1 9019:1 9031:1 9066:5 9108:1 9109:1 9133:1 9136:1 9147:2 9153:1 9161:1 9175:2 9190:1 9191:2 9198:1 9203:2 9220:1 9244:1 9250:1 9254:2 9257:1 9264:1 9267:1 9287:5 9303:3 9305:1 9307:1 9312:1 9397:1 9433:4 9480:1 9481:3 9484:1 9492:1 9523:1 9526:2 9583:1 9594:4 9598:1 9599:2 9617:1 9628:1 9650:1 9661:1 9665:1 9693:1 9744:1 9747:1 9774:1 9776:1 9778:1 9797:1 9802:1 9808:1 9831:1 9839:1 9876:2 9882:2 9954:1 9961:2 9963:1 9995:2 9999:1 10018:1 10020:1 10039:1 10054:1 10059:3 10063:1 10066:1 10072:2 10112:1 10135:1 10145:1 10148:1 10155:5 10162:1 10163:1 10182:2 10210:1 10214:1 10215:1 10237:1 10266:1 10357:2 10359:3 10365:2 10380:1 10386:1 10419:1 10424:1 10442:1 10448:1 10473:1 10488:3 10500:1 10519:1 10524:1 10526:1 10537:1 10543:1 10547:1 10573:1 10578:1 10583:1 10594:1 10595:1 10627:1 10631:1 10633:2 10700:1 10710:1 10711:1 10714:1 10740:1 10750:1 10767:1 10777:1 10781:2 10812:5 10855:1 10866:2 10883:2 10888:1 10889:1 10896:1 10905:1 10918:2 10961:1 10975:1 10978:1 10987:1 10989:1 10992:1 11008:4 11053:2 11054:1 11061:1 11071:1 11074:2 11076:1 11077:1 11080:2 11096:2 11125:1 11126:1 11130:1 11148:1 11151:1 11158:1 11159:1 11169:1 11189:1 11194:1 11233:1 11244:2 11253:1 11268:1 11284:1 11310:1 11316:1 11333:1 11344:1 11364:1 11424:1 11442:1 11443:5 11462:1 11464:1 11465:1 11477:2 11488:2 11494:1 11507:2 11512:1 11529:1 11549:2 11560:1 11565:1 11569:1 11581:2 11607:1 11624:1 11630:1 11710:2 11713:1 11731:1 11752:1 11756:1 11761:1 11775:1 11785:1 11789:1 11855:2 11869:1 11874:1 11902:1 11910:1 11913:1 11928:1 11972:2 11976:1 11979:2 11980:1 11999:1 12000:1 12001:2 12009:1 12037:1 12049:1 12058:1 12063:1 12070:2 12075:1 12139:1 12149:1 12174:1 12185:1 12209:1 12244:1 12269:1 12272:1 12285:1 12292:1 12337:1 12348:1 12349:1 12355:2 12356:3 12360:2 12376:1 12381:1 12386:1 12396:1 12402:1 12403:1 12410:1 12438:1 12443:1 12445:1 12506:1 12507:1 12515:2 12522:1 12533:1 12548:2 12570:1 12575:2 12586:1 12590:1 12603:1 12632:2 12639:1 12648:1 12664:1 12698:1 12718:1 12721:1 12815:4 12827:1 12851:1 12852:2 12857:1 12859:5 12860:1 12861:1 12881:2 12884:1 12902:1 12919:1 12939:1 12949:1 12986:1 12997:3 13008:1 13010:3 13013:1 13015:1 13055:1 13068:1 13081:1 13093:1 13094:2 13108:1 13109:1 13114:1 13128:4 13134:1 13148:3 13164:2 13166:1 13172:1 13195:1 13204:1 13245:1 13274:1 13276:1 13280:1 13320:2 13330:2 13370:1 13386:2 13399:1 13468:1 13483:1 13484:1 13498:1 13499:2 13502:1 13517:1 13527:1 13534:1 13553:1 13577:1 13592:1 13606:1 13628:1 13657:1 13678:1 13686:2 13691:1 13695:1 13705:1 13709:1 13718:1 13734:2 13758:1 13774:4 13812:1 13841:1 13846:1 13848:1 13873:1 13874:2 13904:1 13915:1 13919:3 13924:1 13926:1 13935:1 13956:1 14009:1 14029:1 14045:1 14049:2 14050:1 14057:1 14077:1 14150:1 14155:2 14160:2 14170:1 14176:1 14245:1 14253:1 14317:1 14332:1 14342:1 14354:1 14355:2 14365:1 14409:1 14429:1 14440:1 14462:2 14467:1 14475:1 14476:1 14479:1 14480:1 14487:1 14497:1 14512:1 14520:2 14526:1 14534:1 14575:1 14595:1 14602:2 14637:1 14654:1 14656:1 14663:1 14678:1 14708:1 14733:4 14744:1 14749:1 14754:3 14763:1 14769:1 14770:1 14773:1 14774:1 14782:3 14786:1 14790:1 14797:2 14812:4 14820:1 14843:1 14898:2 14903:1 14923:2 14962:2 14970:1 14982:1 15021:1 15048:2 15070:2 15100:1 15120:1 15121:1 15131:1 15140:2 15141:1 15147:1 15173:1 15174:1 15180:1 15193:2 15231:1 15261:1 15265:1 15287:2 15295:1 15297:2 15307:1 15323:1 15348:1 15370:1 15381:1 15390:1 15406:1 15407:1 15408:2 15413:2 15427:1 15489:1 15504:2 15524:4 15532:1 15555:1 15579:1 15610:1 15629:1 15635:3 15652:1 15668:1 15672:1 15689:1 15712:1 15714:2 15846:1 15860:1 15864:1 15898:1 15905:1 15918:1 15936:1 15940:1 15950:1 15957:1 16005:1 16033:1 16035:1 16062:1 16066:1 16089:1 16109:1 16111:1 16132:1 16145:1 16154:1 16158:1 16160:1 16164:1 16179:1 16240:1 16258:1 16261:1 16263:2 16282:1 16289:2 16309:2 16357:1 16367:1 16371:1 16375:1 16379:1 16383:1 16387:1 16392:1 16408:1 16443:1 16447:2 16451:1 16456:1 16468:1 16469:1 16486:2 16512:1 16563:1 16575:1 16586:1 16604:1 16608:1 16616:1 16630:1 16645:1 16657:1 16668:1 16678:2 16685:1 16713:1 16716:1 16718:1 16720:1 16721:1 16729:1 16743:1 16744:1 16750:1 16766:2 16767:1 16768:1 16783:1 16786:1 16800:1 16802:1 16803:1 16823:1 16848:1 16850:1 16891:1 16906:1 16937:1 16958:1 16961:1 16966:2 16973:2 16990:1 16991:1 17021:1 17022:1 17028:1 17045:1 17050:1 17076:1 17083:1 17094:2 17127:1 17140:4 17166:1 17186:1 17284:1 17288:1 17291:5 17298:1 17300:1 17319:1 17326:1 17328:1 17341:1 17360:1 17365:1 17471:1 17486:1 17492:1424 17497:1 17520:1 17541:1 17551:1 17555:1 17599:1 17628:1 17668:1 17669:1 17793:1 17815:1 17846:1 17902:1 17914:1 17933:1 17938:1 17991:1 18003:2 18020:1 18028:1 18032:1 18042:1 18055:1 18087:2 18107:1 18108:1 18110:4 18145:1 18161:1 18185:1 18196:1 18198:1 18217:1 18269:7 18333:1 18366:1 18380:2 18383:1 18423:1 18471:1 18485:2 18494:1 18503:1 18507:1 18525:1 18535:1 18544:1 18549:1 18566:1 18584:2 18592:1 18594:1 18606:2 18619:1 18622:1 18651:1 18667:1 18672:3 18676:1 18740:1 18757:1 18776:2 18778:1 18849:4 18856:1 18892:1 18915:3 18921:3 18928:1 18929:1 18958:1 18965:1 18983:2 18985:1 18995:1 19001:1 19003:1 19005:1 19011:1 19033:1 19044:1 19057:1 19061:1 19078:2 19080:1 19097:1 19109:1 19115:1 19202:1 19208:2 19214:1 19238:1 19240:1 19253:1 19268:1 19274:1 19277:1 19278:1 19297:1 19358:1 19388:2 19426:1 19435:1 19465:1 19471:1 19485:1 19487:1 19488:1 19493:1 19510:1 19515:1 19518:1 19525:1 19558:2 19596:2 19603:1 19612:1 19623:2 19624:1 19636:1 19647:2 19648:1 19651:2 19706:1 19708:1 19710:1 19722:1 19758:1 19785:1 19804:1 19809:2 19885:1 19928:1 19934:1 19957:1 19968:1 20018:1 20033:2 20077:1 20091:1 20096:1 20109:1 20131:1 20139:1 20143:1 20174:1 20196:1 20216:1 20231:1 20234:1 20247:1 20251:1 20290:1 20307:1 20370:2 20401:2 20411:1 20415:1 20421:5 20422:1 20433:2 20446:1 20462:1 20477:2 20481:1 20482:1 20486:1 20488:1 20529:2 20571:1 20577:3 20580:1 20583:1 20591:1 20594:1 20608:1 20609:1 20610:3 20613:1 20624:1 20625:2 20627:1 20654:1 20659:1 20704:1 20716:1 20727:1 20762:1 20775:1 20776:1 20796:2 20804:1 20823:1 20828:1 20841:1 20864:1 20871:1 20894:2 20923:1 20931:1 20933:1 20942:1 20975:1 20980:1 20988:1 20994:2 21004:1 21007:2 21011:2 21017:1 21025:1 21030:1 21040:1 21053:1 21067:1 21072:1 21080:1 21082:1 21111:1 21120:1 21121:1 21132:1 21159:2 21173:3 21185:2 21195:1 21233:1 21236:1 21241:1 21242:1 21252:1 21254:1 21260:1 21277:1 21280:1 21305:1 21313:1 21315:1 21320:1 21323:1 21329:1 21337:1 21345:1 21347:1 21430:5 21435:1 21439:1 21444:1 21478:1 21503:1 21516:2 21554:2 21568:2 21579:1 21587:1 21593:1 21594:1 21632:2 21656:1 21692:1 21709:4 21729:1 21731:1 21777:1 21850:1 21895:1 21896:2 21904:1 21909:1 21911:1 21919:2 21927:2 21954:1 21967:1 21968:1 21975:1 21987:1 22024:2 22055:1 22074:1 22097:1 22105:1 22119:1 22137:1 22148:2 22152:1 22157:2 22176:1 22188:1 22189:1 22202:1 22208:2 22215:1 22224:1 22248:1 22283:1 22291:1 22309:1 22323:1 22333:1 22340:1 22351:1 22382:1 22405:1 22409:1 22424:1 22438:1 22449:1 22471:1 22502:1 22568:3 22572:1 22578:1 22586:1 22614:1 22634:1 22652:1 22666:1 22678:1 22679:1 22707:3 22717:1 22718:1 22728:1 22737:1 22747:1 22759:1 22762:1 22779:1 22788:1 22797:1 22830:1 22838:1 22876:2 22885:1 22887:1 22935:1 22956:2 22963:1 22967:2 23000:1 23003:6 23007:1 23052:1 23094:1 23103:1 23111:1 23119:1 23121:1 23128:2 23138:1 23164:1 23173:1 23191:1 23194:1 23199:1 23222:1 23224:1 23231:1 23240:1 23245:2 23247:1 23250:1 23271:1 23277:1 23286:1 23315:1 23373:2 23383:1 23415:1 23416:1 23426:1 23486:1 23535:1 23554:1 23608:2 23628:1 23633:3 23637:1 23675:4 23694:1 23711:1 23718:2 23731:1 23735:1 23738:2 23751:1 23766:1 23783:1 23791:1 23821:1 23822:1 23850:1 23864:1 23865:1 23866:3 23873:2 23878:1 23879:1 23897:1 23898:1 23901:1 23902:1 23904:1 23913:2 23914:1 23918:2 23935:2 23964:2 23966:1 23986:1 23987:1 24008:1 24040:1 24063:1 24085:1 24091:1 24119:1 24141:1 24143:1 24153:1 24171:1 24188:1 24228:1 24267:1 24268:1 24271:4 24273:1 24298:1 24324:1 24330:1 24352:2 24367:1 24397:1 24430:2 24436:1 24442:1 24443:1 24463:1 24466:2 24490:1 24533:2 24542:1 24579:1 24598:5 24638:1 24643:2 24655:1 24672:1 24675:1 24720:1 24721:2 24730:1 24734:1 24759:1 24765:1 24809:1 24836:2 24839:1 24854:1 24856:1 24861:1 24899:4 24928:3 24941:1 24957:1 24965:1 24993:1 25000:1 25018:1 25033:1 25045:1 25071:2 25079:2 25134:1 25161:1 25219:1 25248:2 25277:2 25281:2 25296:1 25338:1 25347:1 25349:1 25370:1 25387:1 25393:1 25434:1 25460:1 25466:1 25473:2 25488:1 25515:1 25537:1 25539:1 25543:1 25545:1 25587:1 25593:1 25597:1 25623:1 25635:3 25641:1 25662:1 25663:1 25704:2 25706:1 25710:1 25719:1 25720:1 25724:2 25728:1 25767:3 25769:1 25778:3 25780:1 25786:1 25788:1 25790:1 25793:1 25798:1 25799:1 25804:1 25811:1 25835:2 25850:1 25866:4 25871:1 25874:1 25877:2 25878:1 25912:1 25924:1 25961:1 26013:2 26049:1 26068:2 26070:1 26071:1 26072:1 26084:2 26092:1 26125:1 26131:1 26166:1 26174:1 26184:1 26218:1 26250:1 26275:1 26280:3 26312:1 26322:1 26337:1 26348:1 26352:2 26364:1 26378:1 26400:1 26402:1 26409:1 26422:1 26429:1 26442:1 26446:7 26451:1 26468:1 26482:4 26498:5 26531:1 26545:1 26548:1 26565:1 26574:1 26575:1 26576:1 26598:2 26609:5 26647:8 26652:1 26655:1 26659:1 26666:2 26681:1 26709:1 26723:2 26762:1 26782:1 26821:1 26834:1 26843:1 26853:1 26866:2 26872:1 26898:1 26909:1 26912:1 26962:1 26968:1 26977:1 26981:1 26984:2 26990:1 27006:1 27010:1 27026:1 27029:1 27050:2 27062:1 27078:1 27084:1 27086:1 27095:1 27118:1 27122:1 27133:1 27137:2 27180:2 27190:1 27227:1 27232:1 27250:1 27276:1 27286:1 27358:1 27360:1 27364:1 27368:1 27372:2 27431:1 27433:1 27473:1 27479:4 27481:1 27489:2 27497:1 27499:1 27526:1 27529:1 27538:1 27557:2 27565:2 27608:1 27615:1 27625:2 27633:2 27641:1 27643:1 27691:1 27696:4 27704:1 27730:1 27746:1 27756:2 27758:1
12 1:1 37:1 38:1 43:1 52:1 57:2 74:1 87:2 92:1 111:1 141:1 165:1 179:2 182:1 195:1 202:1 209:1 210:1 277:1 282:1 292:1 294:1 313:1 328:3 356:2 363:3 378:2 379:1 388:1 413:1 418:3 430:1 441:2 457:1 528:1 535:1 603:2 637:1 648:1 693:1 698:1 725:1 790:1 794:1 820:1 861:4 867:1 881:1 888:4 893:1 903:1 909:1 923:1 941:2 949:2 952:1 981:1 990:1 994:1 1019:1 1037:1 1054:1 1068:1 1069:1 1073:1 1082:1 1088:1 1104:1 1125:1 1132:1 1140:1 1192:1 1193:1 1195:1 1203:2 1222:1 1240:1 1249:2 1277:2 1287:1 1301:1 1310:1 1331:2 1344:3 1354:1 1357:1 1369:1 1397:4 1448:1 1450:1 1451:1 1454:1 1457:5 1459:1 1461:1 1482:1 1484:1 1493:1 1513:1 1516:1 1534:2 1535:2 1556:1 1559:1 1562:1 1564:2 1565:1 1568:1 1574:1 1623:2 1625:1 1656:2 1660:1 1668:4 1680:1 1691:1 1695:1 1696:1 1730:1 1768:1 1791:1 1795:1 1810:1 1815:1 1831:2 1834:1 1839:2 1848:1 1864:2 1890:2 1891:1 1897:2 1905:1 1909:1 1922:2 1941:1 2006:1 2007:3 2010:1 2030:1 2039:1 2058:1 2063:1 2080:1 2086:1 2089:1 2096:1 2122:1 2148:1 2164:1 2191:4 2197:2 2200:1 2208:1 2210:2 2235:1 2236:1 2244:2 2245:2 2246:2 2249:4 2253:2 2256:2 2258:1 2261:1 2262:1 2264:2 2265:1 2270:5 2272:1 2276:1 2280:1 2281:1 2287:2 2307:1 2338:4 2339:1 2354:2 2356:1 2368:1 2381:1 2418:2 2451:1 2459:1 2487:1 2501:1 2514:1 2523:1 2526:4 2545:1 2575:1 2580:1 2583:1 2589:1 2620:1 2640:1 2662:1 2699:4 2703:1 2706:1 2721:1 2724:1 2741:2 2745:1 2756:3 2769:1 2807:1 2815:1 2846:4 2852:1 2857:2 2860:1 2898:1 2912:1 2919:1 2927:1 2928:2 2937:1 2951:1 2957:1 2972:1 2990:1 3000:1 3008:1 3021:1 3053:1 3080:1 3084:1 3113:1 3135:1 3143:1 3155:1 3160:1 3174:1 3191:2 3207:1 3223:1 3232:2 3244:3 3247:1 3257:1 3260:1 3322:1 3368:1 3399:1 3402:1 3407:1 3426:1 3431:1 3442:1 3460:2 3497:1 3500:1 3504:1 3512:1 3515:1 3529:1 3534:1 3548:1 3559:1 3568:1 3577:4 3586:1 3591:1 3600:1 3607:1 3648:2 3674:1 3675:2 3697:1 3703:1 3713:1 3717:1 3721:3 3725:1 3726:2 3741:1 3753:1 3763:1 3805:1 3806:2 3825:1 3832:1 3844:2 3846:1 3849:1 3872:1 3876:1 3888:1 3904:1 3913:1 3916:1 3921:2 3932:3 3972:1 3973:1 3992:1 4014:1 4023:2 4030:1 4072:1 4104:5 4107:2 4113:1 4117:1 4145:1 4163:4 4167:1 4175:1 4180:1 4192:1 4216:1 4231:1 4239:2 4258:1 4267:1 4281:1 4310:1 4346:1 4356:1 4357:1 4375:1 4404:1 4406:1 4414:1 4416:1 4423:1 4431:2 4472:1 4494:2 4506:1 4521:1 4526:1 4550:3 4578:1 4579:1 4581:1 4605:1 4656:1 4677:1 4700:1 4710:7 4711:1 4733:1 4738:2 4749:1 4750:1 4814:5 4820:1 4828:3 4830:2 4833:1 4838:1 4841:1 4844:1 4845:2 4850:2 4854:1 4856:1 4857:1 4860:1 4879:1 4891:1 4915:1 4916:1 4993:1 4996:1 5045:2 5057:1 5112:1 5118:1 5130:2 5133:1 5141:3 5158:1 5162:1 5163:6 5188:8 5242:1 5269:1 5274:1 5335:1 5355:2 5361:1 5382:1 5400:1 5402:1 5407:1 5418:1 5438:1 5452:1 5470:2 5473:1 5476:1 5481:1 5484:1 5496:1 5511:1 5527:2 5534:1 5639:1 5663:1 5665:1 5669:1 5705:1 5750:1 5752:5 5755:1 5777:1 5779:1 5787:1 5788:1 5794:2 5797:1 5813:1 5840:1 5844:1 5864:1 5868:2 5877:1 5903:1 5917:2 5934:1 5960:1 5994:2 6003:1 6007:1 6008:1 6016:1 6069:1 6076:1 6092:4 6096:1 6098:1 6101:2 6102:1 6110:1 6113:1 6115:3 6117:7 6120:2 6169:2 6246:2 6254:1 6260:2 6283:1 6362:1 6375:1 6399:1 6414:2 6420:1 6421:1 6428:1 6436:1 6455:1 6472:1 6486:1 6490:1 6492:1 6493:1 6516:2 6519:1 6545:3 6566:1 6568:1 6578:1 6614:1 6629:1 6656:1 6714:1 6745:1 6762:1 6798:1 6877:2 6878:2 6895:1 6924:1 6932:1 6949:1 6958:1 6964:1 6974:1 6975:2 6981:1 6990:1 7047:1 7098:1 7117:3 7131:1 7143:3 7144:2 7146:3 7155:1 7180:1 7198:1 7211:1 7250:2 7263:1 7290:1 7293:1 7295:1 7328:7 7329:6 7336:1 7337:1 7344:1 7346:1 7352:1 7356:1 7367:1 7384:2 7394:27 7410:5 7412:1 7419:2 7422:1 7432:1 7457:1 7460:1 7480:1 7488:2 7489:2 7522:2 7550:1 7594:1 7604:1 7614:2 7629:1 7645:1 7651:1 7689:1 7693:1 7725:2 7733:1 7770:1 7777:1 7811:1 7852:2 7871:4 7902:1 7905:1 7916:1 7947:1 7961:1 7999:1 8008:1 8062:1 8072:1 8091:1 8124:1 8133:1 8140:1 8166:1 8167:1 8204:1 8206:1 8207:1 8212:1 8217:1 8219:1 8220:1 8221:1 8238:1 8244:1 8247:2 8259:1 8262:1 8285:1 8287:2 8320:1 8324:2 8335:1 8338:1 8366:1 8433:1 8468:1 8483:2 8490:1 8491:1 8501:1 8511:2 8523:1 8528:1 8580:1 8587:1 8591:1 8599:2 8630:1 8659:1 8662:1 8663:1 8676:1 8688:2 8689:1 8692:1 8707:1 8713:1 8732:1 8733:1 8740:1 8750:4 8787:1 8796:2 8799:1 8801:1 8810:1 8813:1 8841:3 8843:3 8844:1 8866:1 8880:1 8883:2 8902:1 8910:1 8912:1 8914:1 8918:1 8930:1 8931:2 8948:1 8965:1 8990:1 8995:1 8998:1 9006:1 9011:1 9019:1 9031:1 9066:6 9108:1 9109:1 9133:1 9136:1 9147:2 9153:1 9161:1 9175:2 9190:1 9191:2 9198:1 9203:2 9220:1 9244:1 9250:1 9254:2 9257:1 9264:1 9267:1 9287:5 9303:3 9305:1 9307:1 9312:1 9397:1 9433:4 9480:1 9481:3 9484:1 9492:1 9505:1 9523:1 9526:2 9583:1 9594:4 9598:1 9599:2 9617:1 9628:1 9650:1 9661:1 9665:1 9693:1 9744:1 9747:1 9774:1 9776:1 9778:1 9797:1 9802:1 9808:1 9831:1 9839:1 9876:2 9882:2 9954:1 9961:2 9963:1 9995:2 9999:1 10018:1 10020:1 10024:1 10039:1 10054:1 10057:1 10059:3 10063:1 10066:1 10072:2 10112:1 10135:1 10145:1 10148:1 10155:5 10162:1 10163:1 10182:2 10210:1 10214:1 10215:1 10237:1 10266:1 10357:2 10359:3 10365:2 10380:1 10386:1 10405:1 10419:1 10424:1 10442:1 10448:1 10473:1 10488:3 10500:1 10519:1 10524:1 10526:1 10537:1 10543:1 10547:1 10573:1 10578:1 10583:1 10594:1 10595:1 10627:1 10631:1 10633:2 10700:1 10710:1 10711:1 10714:1 10740:1 10750:1 10767:1 10777:1 10781:2 10812:5 10855:1 10866:2 10883:2 10888:1 10889:1 10896:1 10905:1 10918:2 10961:1 10975:1 10978:1 10987:1 10989:1 10992:2 11008:4 11053:2 11054:1 11061:1 11071:1 11074:2 11076:1 11077:1 11080:2 11096:2 11125:1 11126:1 11130:1 11142:1 11148:1 11151:1 11158:1 11159:1 11169:1 11189:1 11194:1 11233:1 11244:2 11253:1 11268:1 11284:1 11310:1 11316:1 11333:1 11344:1 11352:1 11364:1 11424:1 11442:1 11443:5 11462:1 11464:1 11465:1 11477:2 11488:2 11494:1 11507:2 11512:1 11528:1 11529:1 11549:2 11560:1 11565:1 11569:1 11581:2 11607:1 11624:1 11630:1 11710:2 11713:1 11731:1 11752:1 11756:1 11761:1 11775:1 11785:1 11789:1 11855:2 11869:1 11874:1 11902:1 11910:1 11913:1 11928:1 11972:2 11976:1 11979:2 11980:1 11999:1 12000:1 12001:2 12009:1 12037:1 12049:1 12058:1 12063:1 12070:2 12075:1 12139:1 12149:1 12174:1 12185:1 12209:1 12244:1 12269:1 12272:1 12285:1 12292:1 12337:1 12348:1 12349:1 12355:2 12356:3 12360:2 12376:1 12381:1 12386:1 12396:1 12402:1 12403:1 12410:1 12438:1 12443:1 12445:1 12471:1 12506:1 12507:1 12515:2 12522:1 12533:1 12548:2 12570:1 12575:2 12586:1 12590:1 12603:1 12632:2 12639:1 12648:1 12664:1 12698:1 12718:1 12721:1 12815:4 12827:1 12851:1 12852:2 12857:1 12859:6 12860:1 12861:1 12881:2 12884:1 12902:1 12919:1 12939:1 12949:1 12986:1 12997:3 13008:1 13010:3 13013:1 13015:1 13055:1 13056:1 13068:1 13081:1 13093:1 13094:2 13108:1 13109:1 13114:1 13128:5 13134:1 13148:3 13164:2 13166:1 13172:1 13195:1 13204:1 13245:1 13274:1 13276:1 13280:1 13320:2 13330:2 13370:1 13386:2 13399:1 13437:1 13468:1 13483:1 13484:1 13498:1 13499:2 13502:1 13517:1 13527:1 13534:1 13553:1 13577:1 13592:1 13606:1 13628:1 13657:1 13678:1 13686:2 13691:1 13695:1 13705:1 13709:1 13718:1 13734:2 13758:1 13774:4 13812:1 13841:1 13846:1 13848:1 13854:1 13873:1 13874:2 13904:1 13915:1 13919:3 13924:1 13926:1 13935:1 13956:1 14009:1 14029:1 14045:1 14049:2 14050:1 14057:1 14059:1 14077:1 14150:1 14151:1 14155:2 14160:2 14170:1 14176:1 14245:1 14253:1 14299:1 14317:1 14332:1 14342:1 14354:1 14355:2 14365:1 14409:1 14429:1 14440:1 14462:2 14467:1 14475:1 14476:1 14479:1 14480:1 14487:1 14497:1 14512:1 14520:2 14526:1 14534:1 14575:1 14595:1 14602:2 14637:1 14654:1 14656:1 14663:1 14678:1 14708:1 14733:4 14744:1 14749:1 14754:3 14763:1 14769:1 14770:1 14773:1 14774:1 14782:3 14786:1 14790:1 14797:2 14812:4 14820:1 14843:1 14888:1 14898:2 14903:1 14923:2 14962:2 14970:1 14982:1 15021:1 15048:2 15070:2 15100:1 15118:1 15120:1 15121:1 15131:1 15140:2 15141:1 15147:1 15173:1 15174:1 15180:1 15193:2 15231:1 15261:1 15265:1 15287:2 15295:1 15297:2 15307:1 15323:1 15348:1 15370:1 15381:1 15390:1 15406:1 15407:1 15408:2 15413:2 15427:1 15489:1 15504:2 15524:4 15532:1 15555:1 15572:1 15579:1 15610:1 15629:1 15635:3 15652:1 15668:1 15672:1 15689:1 15712:1 15714:2 15846:1 15860:1 15864:1 15898:2 15905:1 15918:1 15936:1 15940:1 15950:1 15957:1 16005:1 16033:1 16035:1 16062:1 16066:1 16089:1 16100:1 16109:1 16111:1 16132:1 16145:1 16154:1 16158:1 16160:1 16164:1 16179:1 16240:1 16258:1 16261:1 16263:3 16282:1 16289:2 16309:2 16357:1 16367:1 16371:1 16375:1 16379:1 16383:1 16387:1 16390:1 16392:1 16408:1 16443:1 16447:2 16451:1 16456:1 16468:1 16469:1 16486:2 16512:1 16563:1 16575:1 16586:1 16604:1 16608:1 16616:1 16630:1 16645:1 16657:1 16668:1 16675:1 16678:2 16685:1 16713:1 16716:1 16718:1 16720:1 16721:1 16729:1 16743:1 16744:1 16750:1 16766:2 16767:2 16768:1 16783:1 16786:1 16800:1 16802:1 16803:1 16823:1 16848:1 16850:1 16891:1 16906:1 16937:1 16958:1 16961:1 16966:3 16973:2 16990:1 16991:1 17021:1 17022:1 17028:1 17045:1 17050:1 17076:1 17083:1 17094:2 17127:1 17140:4 17166:1 17186:1 17284:1 17288:1 17291:6 17298:1 17300:1 17319:1 17326:1 17328:1 17341:1 17360:1 17365:1 17441:1 17447:1 17471:1 17486:1 17492:1487 17497:1 17520:1 17541:1 17551:1 17555:1 17599:1 17628:1 17668:1 17669:1 17793:1 17815:1 17846:1 17902:1 17914:1 17933:1 17938:1 17991:1 18003:2 18020:1 18028:1 18032:1 18042:1 18055:1 18087:2 18107:1 18108:1 18110:4 18145:1 18161:1 18185:1 18196:1 18198:1 18217:1 18269:7 18333:1 18366:1 18380:3 18383:1 18423:1 18471:1 18485:2 18494:2 18503:1 18507:2 18525:1 18535:1 18544:1 18549:1 18566:1 18584:2 18592:1 18594:1 18606:2 18619:1 18622:1 18651:1 18667:1 18672:3 18676:1 18695:1 18740:1 18757:1 18776:2 18778:1 18849:4 18856:1 18892:1 18915:3 18921:3 18928:1 18929:1 18949:1 18958:1 18965:1 18983:2 18985:1 18995:1 19001:1 19003:1 19005:1 19011:1 19033:1 19044:1 19057:1 19061:1 19078:2 19080:1 19097:1 19109:1 19115:1 19202:1 19208:2 19214:1 19238:1 19240:1 19253:1 19268:1 19274:1 19277:1 19278:1 19297:1 19358:1 19388:2 19426:1 19435:1 19465:1 19471:1 19485:1 19487:1 19488:1 19493:1 19510:1 19515:1 19518:1 19525:1 19558:2 19579:1 19596:2 19603:1 19612:1 19623:2 19624:1 19636:1 19647:2 19648:1 19651:2 19706:1 19708:1 19710:1 19722:1 19758:1 19785:1 19804:1 19809:2 19885:1 19928:1 19934:1 19957:1 19968:1 20018:1 20033:2 20077:1 20091:2 20096:1 20109:1 20131:1 20139:1 20143:1 20174:1 20196:1 20216:1 20231:1 20234:1 20247:1 20251:1 20290:1 20307:1 20370:2 20401:2 20411:1 20415:1 20421:5 20422:1 20433:2 20446:1 20462:1 20477:2 20481:1 20482:1 20483:1 20486:1 20488:1 20529:2 20571:1 20577:3 20580:1 20583:1 20591:1 20594:1 20608:1 20609:1 20610:3 20613:1 20624:1 20625:2 20627:1 20654:1 20659:1 20704:1 20716:1 20727:1 20762:1 20775:1 20776:1 20793:1 20796:2 20804:1 20823:1 20828:1 20841:1 20864:1 20871:1 20894:2 20923:1 20931:1 20933:1 20942:1 20975:1 20980:1 20988:1 20994:2 21004:1 21007:2 21011:2 21017:1 21025:1 21030:1 21040:1 21053:1 21067:1 21072:1 21080:1 21082:1 21111:1 21120:1 21121:1 21132:1 21159:2 21173:3 21185:2 21195:1 21233:1 21236:1 21241:1 21242:1 21252:1 21254:1 21260:1 21277:1 21280:1 21305:1 21313:1 21315:1 21320:1 21323:1 21329:1 21337:2 21345:1 21347:1 21430:5 21435:1 21439:1 21444:1 21449:1 21478:1 21503:1 21516:2 21554:2 21560:1 21568:2 21579:1 21587:1 21593:1 21594:1 21603:1 21632:2 21656:1 21692:1 21709:5 21729:1 21731:1 21777:1 21850:1 21895:1 21896:2 21904:1 21909:1 21911:1 21919:2 21925:1 21927:2 21954:1 21967:1 21968:1 21975:1 21987:2 22024:2 22030:1 22055:1 22074:1 22097:1 22105:1 22119:1 22133:1 22137:1 22148:3 22152:1 22157:2 22176:1 22188:1 22189:1 22202:1 22208:2 22215:1 22224:1 22248:1 22283:1 22291:1 22309:1 22323:1 22333:1 22340:1 22351:1 22382:1 22405:1 22409:1 22424:1 22438:1 22449:1 22471:1 22502:1 22568:3 22572:1 22578:1 22586:1 22614:1 22634:1 22652:1 22666:1 22678:2 22679:1 22707:3 22717:1 22718:1 22728:1 22737:1 22747:1 22759:1 22762:1 22779:1 22788:1 22797:1 22830:1 22838:1 22876:2 22885:1 22887:1 22935:1 22948:1 22956:2 22963:1 22967:2 23000:1 23003:6 23007:1 23052:1 23078:1 23094:1 23103:1 23111:1 23119:1 23121:1 23128:2 23138:1 23164:1 23173:1 23190:1 23191:1 23194:1 23199:1 23222:1 23224:1 23230:1 23231:1 23240:1 23245:2 23247:1 23250:1 23271:1 23277:1 23286:1 23315:1 23373:2 23383:1 23415:1 23416:1 23426:1 23486:1 23535:1 23554:1 23608:2 23628:1 23633:3 23637:1 23675:4 23694:2 23711:1 23718:2 23731:1 23735:1 23738:2 23751:1 23766:1 23783:1 23791:1 23816:1 23821:1 23822:1 23850:1 23864:1 23865:1 23866:3 23873:2 23878:1 23879:1 23897:1 23898:1 23901:1 23902:1 23904:1 23913:2 23914:1 23918:2 23935:3 23964:2 23966:1 23986:1 23987:1 24008:1 24040:1 24063:1 24085:1 24091:1 24119:1 24141:1 24143:1 24153:1 24171:1 24188:1 24228:1 24251:1 24267:1 24268:1 24271:4 24273:1 24298:1 24324:2 24330:1 24352:2 24367:1 24397:1 24430:2 24436:1 24442:1 24443:1 24452:1 24463:1 24466:2 24490:1 24503:1 24533:2 24542:1 24579:1 24598:6 24638:1 24643:2 24655:1 24672:1 24675:1 24708:1 24720:1 24721:2 24730:1 24734:1 24759:1 24765:1 24809:1 24836:2 24839:1 24854:1 24856:1 24861:1 24899:4 24928:3 24941:1 24957:1 24965:1 24988:1 24993:1 25000:1 25018:1 25033:1 25045:1 25071:2 25079:2 25134:1 25161:1 25219:1 25248:2 25277:2 25281:2 25296:1 25338:1 25347:1 25349:1 25370:1 25387:1 25393:1 25434:1 25460:1 25466:1 25473:2 25488:1 25515:1 25537:1 25539:1 25543:1 25545:2 25587:1 25593:1 25597:1 25623:1 25635:3 25641:1 25662:1 25663:1 25704:2 25706:1 25710:1 25719:1 25720:1 25724:2 25728:1 25767:3 25769:1 25778:3 25780:1 25785:1 25786:1 25788:1 25790:1 25793:1 25798:1 25799:1 25804:1 25811:1 25835:2 25850:1 25866:4 25871:1 25874:1 25877:2 25878:1 25912:1 25924:1 25961:1 26013:2 26049:1 26068:2 26070:2 26071:1 26072:1 26084:2 26092:1 26125:1 26131:1 26166:1 26174:1 26184:1 26218:1 26250:1 26275:1 26280:3 26312:1 26322:1 26337:1 26348:1 26352:2 26364:1 26378:1 26400:1 26402:1 26409:1 26422:1 26429:1 26442:1 26446:7 26451:1 26468:1 26482:4 26498:5 26531:1 26545:1 26548:1 26565:1 26574:1 26575:1 26576:1 26598:2 26609:5 26647:8 26652:1 26655:1 26659:1 26666:2 26681:1 26709:1 26723:2 26762:1 26782:1 26821:1 26834:1 26843:1 26853:1 26866:2 26872:1 26898:1 26909:1 26912:1 26962:1 26968:1 26977:1 26981:1 26984:2 26990:1 27006:1 27010:1 27026:1 27029:1 27050:2 27062:1 27078:1 27084:1 27086:1 27095:1 27118:1 27122:1 27133:1 27137:2 27180:2 27190:1 27227:1 27232:1 27250:1 27276:1 27286:1 27358:1 27360:1 27364:1 27368:1 27372:2 27431:1 27433:1 27473:1 27479:4 27481:1 27489:2 27497:1 27499:1 27526:1 27529:1 27538:1 27557:2 27565:2 27608:1 27615:1 27625:2 27633:2 27641:1 27643:1 27691:1 27696:4 27704:1 27730:1 27746:1 27756:2 27758:1
12 1:1 37:1 38:1 43:1 52:1 57:2 74:1 87:2 92:1 111:1 141:1 165:1 179:2 182:1 195:1 202:1 209:1 210:1 277:1 282:1 292:1 294:1 313:1 328:3 356:2 363:3 378:2 379:1 388:1 413:1 418:3 430:1 441:2 457:1 528:1 535:1 603:2 609:1 637:1 648:1 693:1 698:2 700:1 725:1 739:1 790:1 794:1 820:1 861:4 867:1 870:1 881:1 888:4 893:1 903:1 909:1 923:1 941:2 949:2 952:1 981:1 990:1 994:1 1019:1 1037:1 1054:1 1068:1 1069:1 1073:1 1082:1 1088:1 1104:1 1125:1 1132:1 1140:1 1154:1 1192:1 1193:1 1195:1 1203:2 1217:1 1222:1 1240:1 1249:2 1277:2 1287:1 1301:1 1310:1 1331:2 1344:3 1354:1 1357:1 1369:1 1397:5 1448:1 1450:1 1451:1 1454:1 1457:5 1459:1 1461:1 1482:1 1484:1 1493:1 1513:1 1516:1 1534:2 1535:2 1556:1 1559:1 1562:1 1564:2 1565:1 1568:1 1574:1 1623:2 1625:1 1656:2 1660:1 1668:4 1680:2 1691:1 1695:1 1696:1 1730:1 1768:1 1791:1 1795:1 1810:1 1815:1 1831:2 1834:1 1839:2 1848:1 1864:2 1890:2 1891:1 1897:2 1905:1 1909:1 1922:2 1941:1 2006:1 2007:3 2010:1 2030:1 2039:1 2058:1 2063:1 2080:1 2086:1 2089:1 2096:1 2122:1 2148:1 2164:1 2191:4 2197:2 2200:1 2208:1 2210:2 2235:1 2236:1 2244:2 2245:2 2246:2 2249:4 2251:1 2253:2 2256:2 2258:1 2261:1 2262:1 2264:2 2265:1 2266:1 2269:1 2270:5 2272:1 2276:1 2280:1 2281:1 2287:2 2307:1 2338:4 2339:1 2354:2 2356:1 2368:1 2381:1 2418:2 2451:1 2459:1 2487:1 2501:1 2514:1 2523:1 2526:4 2545:1 2575:1 2580:1 2583:1 2589:1 2620:1 2640:1 2662:1 2699:4 2703:1 2706:1 2721:1 2724:1 2741:2 2745:1 2756:3 2769:1 2770:1 2807:1 2815:1 2846:5 2852:1 2857:2 2860:1 2898:1 2912:1 2919:1 2927:1 2928:2 2937:1 2951:1 2957:1 2972:1 2990:1 3000:1 3008:1 3021:1 3053:1 3065:1 3080:1 3084:1 3113:1 3135:1 3143:1 3155:1 3160:1 3174:1 3191:2 3207:1 3223:1 3232:2 3244:3 3247:1 3257:1 3260:1 3322:1 3338:1 3368:1 3399:1 3402:1 3407:1 3426:1 3431:1 3442:1 3460:2 3497:1 3500:1 3504:1 3512:1 3515:1 3529:1 3534:1 3548:1 3559:1 3568:1 3577:4 3586:1 3591:1 3600:1 3607:1 3648:2 3674:1 3675:2 3697:1 3703:1 3713:1 3717:1 3721:3 3725:1 3726:2 3741:1 3753:1 3763:1 3805:1 3806:2 3825:1 3832:1 3844:2 3846:1 3849:1 3872:1 3876:1 3888:1 3904:1 3913:1 3916:1 3921:2 3932:3 3972:1 3973:1 3992:1 4014:1 4023:2 4030:1 4072:1 4104:5 4107:2 4113:1 4117:1 4145:1 4163:4 4167:1 4175:1 4180:1 4192:1 4216:1 4231:1 4239:2 4258:1 4267:1 4281:1 4310:1 4346:1 4356:1 4357:1 4375:1 4404:1 4406:1 4414:1 4416:1 4423:1 4431:2 4472:1 4494:2 4506:1 4521:1 4526:1 4550:3 4578:1 4579:1 4581:1 4605:1 4656:1 4677:1 4700:1 4710:7 4711:1 4733:1 4738:2 4749:1 4750:1 4759:1 4814:5 4820:1 4828:3 4830:2 4833:1 4836:1 4838:1 4841:1 4844:1 4845:2 4850:2 4854:1 4856:1 4857:1 4860:1 4879:1 4891:1 4915:1 4916:1 4943:1 4993:1 4996:1 5045:2 5057:1 5112:1 5118:1 5130:2 5133:1 5141:3 5158:1 5162:1 5163:6 5188:8 5242:1 5269:1 5274:1 5335:1 5355:2 5361:1 5379:1 5382:1 5400:1 5402:1 5407:1 5418:1 5438:1 5452:1 5470:2 5473:1 5476:1 5481:1 5484:1 5496:1 5511:1 5527:2 5534:1 5639:1 5663:1 5665:1 5669:1 5705:1 5750:1 5752:5 5755:1 5777:1 5779:1 5787:1 5788:1 5794:2 5797:1 5813:1 5840:1 5844:1 5864:1 5868:2 5877:1 5903:1 5917:2 5934:1 5960:1 5994:2 6003:1 6007:1 6008:1 6016:1 6069:1 6076:1 6092:4 6096:1 6098:1 6101:2 6102:1 6110:1 6113:1 6115:3 6117:7 6120:2 6158:1 6169:2 6246:2 6254:1 6260:2 6283:1 6362:1 6375:1 6399:1 6414:2 6420:1 6421:1 6428:1 6436:1 6439:1 6455:1 6472:1 6486:1 6490:1 6492:1 6493:1 6516:2 6519:1 6545:3 6566:1 6568:1 6574:1 6578:1 6614:1 6629:1 6656:1 6714:1 6745:1 6762:1 6798:1 6877:2 6878:2 6895:1 6924:2 6932:1 6949:1 6958:1 6964:1 6974:1 6975:2 6981:1 6990:1 7047:1 7098:1 7117:3 7131:1 7143:3 7144:2 7146:3 7155:1 7180:1 7198:1 7211:1 7250:2 7263:1 7290:1 7293:1 7295:1 7328:7 7329:6 7336:1 7337:1 7344:1 7346:1 7351:1 7352:1 7356:1 7367:1 7384:2 7394:28 7410:6 7412:1 7419:2 7422:1 7432:1 7457:1 7460:1 7480:1 7488:2 7489:2 7522:2 7550:1 7594:1 7604:1 7614:2 7629:1 7645:1 7651:1 7689:1 7693:1 7725:2 7733:1 7770:1 7777:1 7811:1 7852:2 7871:4 7902:1 7905:1 7916:1 7947:1 7961:1 7999:1 8008:1 8062:1 8072:1 8091:1 8124:1 8133:1 8140:1 8166:1 8167:1 8204:1 8206:1 8207:1 8212:1 8217:1 8219:1 8220:1 8221:1 8238:1 8244:1 8247:2 8259:1 8262:1 8277:1 8285:1 8287:2 8320:1 8324:2 8335:1 8338:1 8366:1 8433:1 8468:1 8483:2 8490:1 8491:1 8501:1 8511:2 8523:1 8528:1 8580:1 8587:1 8591:1 8599:2 8630:1 8659:1 8662:1 8663:1 8676:1 8688:2 8689:1 8692:1 8707:1 8713:1 8717:1 8732:1 8733:1 8740:1 8750:4 8787:1 8796:2 8799:1 8801:1 8810:1 8813:2 8841:3 8843:3 8844:1 8866:1 8880:1 8883:2 8902:1 8910:1 8912:1 8914:1 8918:1 8930:1 8931:2 8948:1 8965:1 8990:1 8995:1 8998:1 9006:1 9011:1 9019:1 9031:1 9066:6 9108:1 9109:1 9133:1 9136:1 9147:2 9153:1 9161:1 9175:2 9190:1 9191:2 9198:1 9203:2 9220:1 9244:1 9250:1 9254:3 9257:1 9264:1 9267:1 9287:5 9303:3 9305:1 9307:1 9312:1 9369:1 9397:1 9433:4 9480:1 9481:3 9484:1 9492:1 9505:1 9523:1 9526:2 9583:1 9594:4 9598:1 9599:2 9617:1 9628:1 9650:1 9661:1 9665:1 9693:1 9744:1 9747:1 9760:1 9774:1 9776:1 9778:1 9797:1 9802:1 9808:1 9831:1 9839:1 9840:1 9876:2 9882:2 9954:1 9961:2 9963:1 9995:2 9999:1 10018:1 10020:1 10024:1 10027:1 10039:2 10054:1 10057:1 10059:4 10060:1 10063:1 10066:1 10072:2 10112:1 10135:1 10145:1 10148:1 10155:6 10162:1 10163:1 10182:2 10210:1 10214:1 10215:1 10237:1 10266:1 10274:1 10357:2 10359:3 10365:2 10380:1 10386:1 10405:1 10419:1 10424:1 10442:1 10448:1 10473:1 10488:3 10500:1 10519:1 10524:1 10526:1 10537:1 10543:1 10547:1 10573:1 10578:1 10583:1 10594:1 10595:1 10627:1 10631:1 10633:2 10700:1 10710:1 10711:1 10714:1 10740:1 10750:1 10767:1 10777:1 10781:2 10812:5 10855:1 10866:2 10883:2 10888:1 10889:1 10896:1 10905:1 10918:2 10961:1 10975:1 10978:1 10987:1 10989:1 10992:2 11008:4 11053:2 11054:1 11061:1 11071:1 11074:2 11076:1 11077:1 11080:2 11096:2 11125:1 11126:1 11130:1 11142:1 11148:1 11151:1 11158:1 11159:1 11169:1 11189:1 11194:1 11233:1 11244:2 11253:1 11268:1 11284:1 11310:1 11316:1 11333:1 11344:1 11352:1 11364:1 11424:1 11442:1 11443:5 11462:1 11464:1 11465:1 11477:2 11488:2 11494:1 11507:2 11512:1 11528:1 11529:1 11549:2 11560:1 11565:1 11569:1 11581:2 11607:1 11624:1 11630:1 11710:2 11713:1 11731:1 11752:1 11756:1 11761:1 11775:1 11785:1 11789:1 11855:2 11869:1 11874:1 11902:1 11910:1 11913:1 11928:1 11972:2 11976:1 11979:2 11980:1 11999:1 12000:1 12001:2 12009:1 12037:1 12049:1 12058:1 12063:1 12070:2 12075:1 12139:1 12149:1 12174:1 12185:1 12209:1 12244:1 12269:1 12272:1 12285:1 12292:1 12317:1 12337:1 12348:1 12349:1 12355:2 12356:3 12360:2 12376:1 12381:1 12386:1 12396:1 12402:1 12403:1 12410:1 12438:2 12443:1 12445:1 12471:1 12506:1 12507:1 12515:2 12522:1 12533:1 12548:2 12570:1 12575:2 12586:1 12590:2 12603:1 12632:2 12639:1 12648:1 12664:1 12698:1 12718:1 12721:1 12815:4 12827:1 12851:1 12852:2 12857:1 12859:6 12860:1 12861:1 12881:2 12884:1 12902:1 12919:1 12939:1 12949:1 12986:1 12997:3 13008:1 13010:3 13013:1 13015:1 13055:1 13056:1 13068:1 13081:1 13093:1 13094:2 13108:1 13109:1 13114:1 13128:5 13134:1 13148:3 13164:2 13166:1 13172:1 13181:1 13195:1 13204:1 13245:1 13274:1 13276:1 13280:1 13320:2 13330:2 13352:1 13370:1 13386:2 13399:1 13437:1 13468:1 13483:1 13484:1 13498:1 13499:2 13502:1 13517:1 13527:2 13534:1 13547:1 13553:1 13577:1 13592:1 13606:1 13628:1 13657:1 13678:1 13686:2 13691:1 13695:1 13705:1 13709:1 13718:1 13734:2 13758:1 13774:4 13812:1 13841:1 13846:1 13848:1 13854:1 13873:1 13874:2 13904:1 13915:1 13919:3 13924:1 13926:1 13935:1 13956:1 14009:1 14029:1 14045:1 14049:2 14050:1 14057:1 14059:1 14077:1 14150:1 14151:1 14155:2 14160:2 14170:1 14176:1 14200:1 14245:1 14253:1 14299:1 14317:1 14332:1 14342:1 14354:1 14355:2 14365:1 14381:1 14409:1 14429:1 14440:1 14460:1 14462:2 14467:1 14475:1 14476:1 14479:1 14480:1 14487:1 14497:1 14512:1 14520:2 14526:1 14534:1 14575:1 14595:1 14602:2 14637:1 14654:1 14656:1 14663:1 14678:1 14708:1 14733:4 14744:1 14747:1 14749:1 14754:3 14763:1 14769:1 14770:1 14773:1 14774:1 14782:3 14786:1 14790:1 14797:2 14812:4 14820:1 14843:1 14888:1 14898:2 14903:1 14923:2 14962:2 14970:1 14982:1 15021:1 15048:2 15070:2 15100:1 15118:1 15120:1 15121:1 15131:1 15140:2 15141:1 15147:1 15173:1 15174:1 15180:1 15193:2 15231:1 15261:1 15265:1 15287:2 15295:1 15297:2 15307:1 15323:1 15348:1 15370:1 15381:1 15390:1 15406:1 15407:1 15408:2 15413:2 15427:1 15489:1 15504:2 15524:4 15532:1 15555:1 15572:1 15579:1 15610:1 15629:1 15635:3 15652:1 15668:1 15672:1 15689:1 15712:1 15714:2 15846:1 15860:1 15864:1 15898:2 15905:1 15918:1 15936:1 15940:1 15950:1 15957:1 16005:1 16033:1 16035:1 16062:1 16066:1 16089:1 16100:1 16109:1 16111:1 16132:1 16145:1 16154:1 16158:1 16160:1 16164:1 16178:1 16179:1 16240:1 16258:1 16261:1 16263:3 16282:1 16289:2 16309:2 16357:1 16367:1 16371:1 16375:1 16379:1 16383:1 16387:1 16390:1 16392:1 16408:1 16443:1 16447:2 16451:1 16456:1 16464:1 16468:1 16469:1 16486:2 16512:1 16563:1 16575:1 16583:1 16586:1 16604:1 16608:1 16616:1 16630:1 16645:1 16657:1 16668:1 16675:1 16678:2 16685:1 16713:1 16716:1 16718:1 16720:1 16721:1 16729:1 16743:1 16744:1 16750:1 16766:2 16767:2 16768:1 16783:1 16786:1 16800:1 16802:1 16803:1 16823:1 16848:1 16850:1 16891:1 16906:1 16937:1 16958:1 16961:1 16966:3 16973:2 16990:1 16991:1 17021:2 17022:1 17028:1 17045:1 17050:1 17076:1 17083:1 17094:2 17127:1 17140:4 17166:1 17186:1 17284:1 17288:1 17291:6 17298:1 17300:1 17319:1 17326:1 17328:1 17341:1 17360:1 17365:1 17441:1 17447:1 17471:1 17486:1 17492:1519 17497:1 17520:1 17539:1 17541:1 17551:1 17555:1 17599:1 17628:1 17668:1 17669:1 17691:1 17793:1 17815:1 17846:1 17902:1 17914:1 17933:1 17938:1 17991:1 18003:2 18020:1 18028:1 18032:1 18042:1 18055:1 18087:2 18107:1 18108:1 18110:4 18145:1 18161:1 18185:1 18196:1 18198:1 18217:1 18254:1 18269:7 18333:1 18366:1 18380:3 18383:1 18423:1 18471:1 18485:2 18494:2 18503:1 18507:2 18525:1 18535:1 18544:1 18549:1 18566:1 18584:2 18592:1 18594:1 18606:2 18619:1 18622:1 18651:1 18667:1 18672:3 18676:1 18695:1 18740:1 18757:1 18776:2 18778:1 18849:4 18856:1 18892:1 18915:3 18921:3 18928:1 18929:1 18932:1 18949:1 18958:2 18965:1 18983:2 18985:1 18995:1 19001:1 19003:1 19005:1 19011:1 19033:1 19044:1 19057:1 19061:1 19078:2 19080:1 19097:1 19109:1 19115:1 19202:1 19208:2 19214:1 19238:1 19240:1 19242:2 19253:1 19268:1 19274:1 19277:1 19278:1 19297:1 19358:1 19388:2 19426:1 19435:1 19465:1 19471:1 19485:1 19487:1 19488:1 19493:1 19510:1 19515:1 19518:1 19525:1 19558:2 19579:1 19596:2 19603:1 19612:1 19623:2 19624:1 19636:2 19647:2 19648:1 19651:2 19706:1 19708:1 19710:1 19722:1 19758:1 19785:1 19804:1 19809:2 19885:1 19928:1 19934:1 19957:1 19968:2 20018:1 20033:2 20077:1 20091:2 20096:1 20109:1 20131:1 20139:1 20143:1 20174:1 20190:1 20196:1 20216:1 20231:1 20234:1 20247:1 20251:1 20290:1 20307:1 20370:2 20401:2 20411:1 20415:1 20421:5 20422:1 20433:2 20446:1 20462:1 20477:2 20481:1 20482:1 20483:1 20486:1 20488:1 20529:2 20571:1 20577:3 20580:1 20583:1 20591:1 20594:1 20597:1 20608:1 20609:1 20610:3 20613:1 20624:1 20625:2 20627:1 20654:1 20659:1 20704:1 20716:1 20727:1 20762:1 20775:1 20776:1 20793:1 20796:2 20804:1 20823:1 20828:1 20841:1 20864:1 20871:1 20894:2 20923:1 20931:1 20933:1 20942:1 20960:1 20975:1 20980:1 20988:1 20994:2 21004:1 21007:2 21011:2 21017:1 21025:1 21030:1 21040:1 21053:1 21067:1 21072:1 21080:1 21082:2 21111:1 21117:1 21120:1 21121:1 21132:1 21159:2 21173:3 21185:2 21195:1 21233:1 21236:1 21241:1 21242:1 21252:1 21254:1 21260:1 21277:1 21280:1 21305:1 21313:1 21315:1 21320:1 21323:1 21329:1 21337:2 21345:1 21347:1 21430:5 21435:1 21439:1 21444:1 21449:1 21478:1 21503:1 21516:2 21554:2 21560:1 21568:2 21579:1 21587:1 21593:1 21594:1 21603:1 21632:2 21656:1 21692:1 21709:5 21729:1 21731:1 21777:1 21850:1 21895:1 21896:2 21904:1 21909:1 21911:1 21919:2 21923:1 21925:1 21927:2 21954:2 21967:1 21968:1 21975:1 21987:2 22024:2 22030:1 22055:1 22074:1 22097:1 22105:1 22119:1 22133:1 22137:1 22148:3 22152:1 22157:2 22176:1 22188:1 22189:1 22202:1 22208:2 22215:1 22224:1 22248:1 22270:1 22283:1 22291:1 22309:1 22323:1 22333:1 22340:1 22351:1 22382:1 22405:1 22409:1 22424:1 22438:1 22449:1 22471:1 22476:1 22502:1 22568:3 22572:1 22578:1 22586:1 22614:1 22634:2 22652:1 22666:1 22678:2 22679:1 22707:3 22717:1 22718:1 22728:1 22737:1 22747:1 22759:1 22762:1 22779:1 22788:1 22797:1 22830:1 22838:1 22876:2 22885:1 22887:1 22935:1 22948:1 22956:2 22963:1 22967:2 23000:1 23003:6 23007:1 23052:1 23078:1 23094:1 23103:1 23111:1 23119:1 23121:1 23128:2 23138:1 23164:1 23173:1 23190:1 23191:1 23194:1 23199:1 23222:1 23224:1 23230:1 23231:1 23240:1 23245:2 23247:1 23250:1 23271:1 23277:1 23286:1 23315:1 23373:2 23383:1 23415:1 23416:1 23426:1 23486:1 23518:1 23535:1 23554:1 23608:2 23628:1 23633:3 23637:1 23675:4 23694:2 23711:1 23718:2 23731:1 23735:1 23738:2 23751:1 23766:1 23783:1 23791:1 23816:1 23821:1 23822:1 23850:1 23864:1 23865:1 23866:3 23873:2 23878:1 23879:1 23897:1 23898:1 23901:1 23902:1 23904:1 23913:2 23914:1 23918:2 23935:3 23964:2 23966:1 23986:1 23987:1 24008:1 24040:1 24063:1 24085:1 24091:1 24099:1 24119:1 24141:1 24143:1 24151:1 24153:1 24171:1 24188:1 24228:1 24251:1 24267:1 24268:1 24271:4 24273:1 24298:1 24324:2 24330:1 24338:1 24352:2 24367:1 24397:1 24420:1 24430:2 24433:1 24436:1 24442:1 24443:1 24452:1 24463:1 24466:2 24490:1 24503:1 24533:3 24542:1 24579:1 24598:6 24638:1 24643:2 24655:1 24672:1 24675:1 24708:1 24720:1 24721:2 24730:1 24734:1 24759:1 24765:1 24809:1 24836:2 24839:1 24854:1 24856:1 24861:1 24885:1 24899:4 24928:3 24941:1 24957:1 24965:1 24988:1 24993:1 25000:1 25018:1 25033:1 25045:1 25071:2 25079:2 25134:1 25161:1 25219:1 25248:2 25277:2 25281:2 25296:1 25338:1 25347:1 25349:1 25370:1 25387:1 25393:1 25434:1 25460:1 25466:1 25473:2 25488:1 25515:1 25537:1 25539:1 25543:1 25545:2 25587:1 25593:1 25597:1 25623:1 25635:3 25641:1 25662:1 25663:1 25704:2 25706:1 25710:1 25719:1 25720:1 25724:2 25728:1 25767:3 25769:1 25778:3 25780:1 25785:1 25786:1 25788:1 25790:1 25793:1 25798:1 25799:1 25804:1 25811:1 25835:2 25850:1 25866:4 25871:1 25874:1 25877:2 25878:1 25897:1 25912:1 25924:1 25961:1 26013:2 26049:1 26068:2 26070:2 26071:1 26072:1 26084:2 26092:1 26125:1 26131:1 26166:1 26174:1 26184:1 26218:1 26250:1 26275:1 26280:3 26312:1 26322:1 26337:1 26348:1 26352:2 26364:1 26378:1 26400:1 26402:1 26409:1 26422:1 26429:1 26442:1 26446:7 26451:1 26468:1 26482:4 26498:5 26531:1 26545:1 26548:1 26565:1 26574:1 26575:1 26576:1 26598:2 26609:5 26647:8 26652:1 26655:1 26659:1 26666:2 26681:1 26709:1 26723:2 26762:1 26782:1 26821:1 26834:1 26843:1 26853:1 26866:2 26872:1 26898:1 26909:1 26912:1 26913:1 26962:1 26968:1 26977:1 26981:1 26984:2 26990:1 27006:1 27010:1 27026:1 27029:1 27050:2 27062:1 27078:1 27084:1 27086:1 27095:1 27118:1 27122:1 27133:1 27137:2 27180:2 27190:1 27227:1 27232:1 27250:1 27276:1 27286:2 27358:1 27360:1 27364:1 27368:1 27372:2 27431:1 27433:1 27473:1 27479:4 27481:1 27489:2 27497:1 27499:1 27526:1 27529:1 27538:1 27557:2 27565:2 27608:1 27615:1 27625:2 27633:2 27641:1 27643:1 27691:1 27696:4 27704:1 27730:1 27746:1 27756:2 27758:1
12 1:1 37:1 38:1 43:1 52:1 57:2 74:1 87:2 92:1 111:1 141:1 165:1 179:2 182:1 195:1 202:1 209:1 210:1 277:1 282:1 292:1 294:1 313:1 328:4 356:2 363:3 378:2 379:1 388:1 413:1 418:3 430:1 441:2 457:1 528:1 535:1 603:2 609:1 637:1 648:1 693:1 694:1 698:2 700:1 725:1 739:1 790:1 794:1 820:1 861:4 867:1 870:1 881:1 888:4 893:1 903:1 909:1 923:1 941:2 949:2 952:1 981:1 990:1 994:1 1019:1 1022:1 1037:1 1054:1 1068:1 1069:1 1073:1 1082:1 1088:1 1104:1 1125:1 1132:1 1140:1 1154:1 1192:1 1193:1 1195:1 1203:2 1217:2 1222:1 1231:1 1240:1 1249:2 1277:2 1287:1 1301:1 1310:1 1331:2 1344:3 1349:1 1354:1 1357:1 1369:1 1397:5 1448:1 1450:1 1451:1 1454:1 1457:5 1459:1 1461:1 1482:1 1484:1 1493:1 1513:1 1516:1 1534:2 1535:2 1556:1 1559:1 1562:1 1564:2 1565:1 1568:1 1574:1 1623:2 1625:1 1656:2 1660:1 1668:4 1680:2 1691:1 1695:1 1696:1 1730:1 1768:1 1791:1 1795:1 1810:1 1815:1 1831:2 1834:1 1839:2 1848:1 1864:2 1890:2 1891:1 1897:2 1905:1 1909:1 1922:2 1941:1 2006:1 2007:3 2010:1 2030:1 2039:1 2058:1 2063:1 2080:1 2086:1 2089:1 2096:1 2122:2 2148:1 2164:1 2191:4 2197:2 2200:1 2208:1 2210:2 2235:1 2236:1 2244:2 2245:2 2246:2 2249:4 2251:1 2253:2 2256:2 2258:1 2261:1 2262:1 2264:2 2265:1 2266:1 2269:1 2270:5 2272:1 2276:1 2280:1 2281:1 2287:2 2307:1 2338:4 2339:1 2354:2 2356:1 2368:1 2381:1 2418:2 2451:1 2452:1 2459:1 2487:1 2501:1 2514:1 2523:1 2526:4 2545:1 2575:1 2580:1 2583:1 2589:1 2620:1 2640:1 2662:1 2699:4 2703:1 2706:1 2721:1 2724:1 2741:2 2745:1 2756:3 2769:1 2770:1 2807:1 2815:1 2846:5 2852:1 2857:2 2860:1 2898:1 2912:1 2919:1 2927:1 2928:2 2937:1 2951:1 2957:1 2972:1 2990:1 3000:1 3008:1 3021:1 3053:1 3065:1 3080:1 3084:1 3113:1 3135:1 3143:1 3155:1 3160:1 3174:1 3191:2 3207:1 3223:1 3232:2 3244:3 3247:1 3257:1 3260:1 3322:1 3338:1 3368:1 3399:1 3402:1 3407:1 3426:1 3431:1 3442:1 3460:2 3497:1 3500:1 3504:1 3512:1 3515:1 3529:1 3534:1 3548:1 3559:1 3568:1 3577:4 3586:1 3591:1 3600:1 3607:1 3648:2 3674:1 3675:2 3697:1 3703:1 3713:1 3717:1 3721:3 3725:1 3726:2 3741:1 3753:1 3763:1 3805:1 3806:2 3825:1 3832:1 3844:2 3846:1 3849:1 3872:1 3876:1 3888:1 3904:1 3913:1 3916:1 3921:2 3932:3 3972:1 3973:1 3992:1 4014:1 4023:2 4030:1 4072:1 4104:5 4107:2 4113:1 4117:1 4145:1 4163:4 4167:1 4175:1 4180:1 4192:1 4216:1 4231:1 4239:2 4258:1 4267:1 4281:1 4310:1 4346:1 4356:1 4357:1 4375:1 4404:1 4406:1 4414:1 4416:1 4423:1 4431:2 4472:1 4494:2 4506:1 4521:1 4526:1 4550:3 4578:1 4579:1 4581:1 4605:1 4656:1 4677:1 4700:1 4710:7 4711:1 4733:1 4738:2 4749:1 4750:1 4759:1 4814:5 4820:1 4828:3 4830:2 4833:1 4836:1 4838:1 4841:1 4844:1 4845:2 4850:2 4854:1 4856:2 4857:1 4860:1 4879:1 4891:1 4915:1 4916:1 4943:1 4993:1 4996:1 5045:2 5057:1 5112:1 5118:1 5130:2 5133:1 5141:3 5158:1 5162:1 5163:6 5188:8 5242:1 5269:1 5274:1 5335:1 5355:2 5361:1 5379:1 5382:1 5400:1 5402:1 5407:1 5418:1 5438:1 5452:1 5470:2 5473:1 5476:1 5481:1 5484:1 5496:1 5511:1 5527:2 5534:1 5639:1 5663:1 5665:1 5669:1 5705:1 5750:1 5752:5 5755:1 5777:1 5779:1 5787:1 5788:1 5794:2 5797:1 5813:1 5840:1 5844:1 5864:1 5868:2 5877:1 5903:1 5917:2 5934:1 5960:1 5994:2 6003:1 6007:1 6008:1 6016:1 6069:1 6076:1 6092:4 6096:1 6098:1 6101:3 6102:1 6110:1 6113:1 6115:3 6117:7 6120:2 6158:1 6169:2 6246:2 6254:1 6260:2 6283:1 6362:1 6375:1 6399:1 6414:2 6420:1 6421:1 6428:1 6436:1 6439:1 6455:1 6472:1 6486:1 6490:1 6492:1 6493:1 6516:2 6519:1 6545:3 6566:1 6568:1 6574:1 6578:1 6614:1 6629:1 6656:1 6714:1 6745:1 6762:1 6798:1 6877:2 6878:2 6895:1 6924:2 6932:1 6949:1 6958:1 6964:1 6974:1 6975:2 6981:1 6990:1 7047:1 7098:1 7117:3 7131:1 7143:3 7144:2 7146:3 7155:1 7180:1 7198:1 7211:1 7250:2 7263:1 7290:1 7293:1 7295:1 7328:7 7329:6 7336:1 7337:1 7344:1 7346:1 7351:1 7352:1 7356:1 7367:1 7384:2 7394:28 7410:6 7412:1 7419:2 7422:1 7432:1 7457:1 7460:1 7480:1 7488:2 7489:2 7522:2 7550:1 7594:1 7604:1 7614:2 7629:1 7645:1 7651:1 7689:1 7693:1 7725:2 7733:1 7770:1 7777:1 7811:1 7852:2 7871:4 7902:1 7905:1 7916:1 7947:1 7961:1 7999:1 8008:1 8062:1 8072:1 8091:1 8124:1 8133:1 8140:1 8166:1 8167:1 8204:1 8206:1 8207:1 8212:1 8217:1 8219:1 8220:1 8221:1 8238:1 8244:1 8247:2 8259:1 8262:1 8277:1 8285:1 8287:2 8320:1 8324:2 8335:1 8338:1 8366:1 8433:1 8468:1 8483:2 8490:1 8491:1 8501:1 8511:2 8523:1 8528:1 8580:1 8587:1 8591:1 8599:2 8630:1 8659:1 8662:1 8663:1 8676:1 8688:2 8689:1 8692:1 8707:1 8713:1 8717:1 8732:1 8733:1 8740:1 8750:4 8787:1 8796:2 8799:1 8801:1 8810:1 8813:2 8841:3 8843:3 8844:1 8866:1 8880:1 8883:2 8902:1 8910:1 8912:1 8914:1 8918:1 8930:1 8931:2 8948:1 8965:1 8990:1 8995:1 8998:1 9006:1 9011:1 9019:1 9031:1 9066:6 9108:1 9109:1 9133:1 9136:1 9147:2 9153:1 9161:1 9175:2 9190:1 9191:2 9198:1 9203:2 9220:1 9244:1 9250:1 9254:3 9257:1 9264:1 9267:1 9287:5 9303:3 9305:1 9307:1 9312:1 9369:1 9397:1 9433:4 9480:1 9481:3 9484:1 9492:1 9505:1 9523:1 9526:2 9583:1 9594:4 9598:1 9599:2 9617:1 9628:1 9650:1 9661:1 9665:1 9693:1 9744:1 9747:1 9760:1 9774:1 9776:1 9778:1 9797:1 9802:1 9808:1 9831:1 9839:1 9840:1 9876:2 9882:2 9954:1 9961:3 9963:1 9995:2 9999:1 10018:1 10020:1 10024:1 10027:1 10039:2 10054:1 10057:1 10059:4 10060:1 10063:1 10066:1 10072:2 10112:1 10135:1 10145:1 10148:1 10155:6 10162:1 10163:1 10182:2 10210:1 10214:1 10215:1 10237:1 10266:1 10274:1 10357:2 10359:3 10365:2 10380:1 10386:1 10405:1 10419:1 10424:1 10442:1 10448:1 10473:1 10488:3 10500:1 10519:1 10524:1 10526:1 10537:1 10543:1 10547:1 10573:1 10578:1 10583:1 10594:1 10595:1 10627:1 10631:1 10633:2 10700:1 10710:1 10711:1 10714:1 10740:1 10750:1 10767:1 10777:1 10781:2 10812:5 10855:1 10866:2 10883:2 10888:1 10889:1 10896:1 10905:1 10918:2 10961:1 10975:1 10978:1 10987:1 10989:1 10992:2 11008:4 11053:2 11054:1 11061:1 11071:1 11074:2 11076:1 11077:1 11080:2 11096:2 11125:1 11126:1 11130:1 11142:1 11148:1 11151:1 11158:1 11159:1 11169:1 11189:1 11194:1 11233:1 11244:2 11253:1 11268:1 11284:1 11310:1 11316:1 11333:1 11344:1 11352:1 11364:1 11424:1 11442:1 11443:5 11462:1 11464:1 11465:1 11477:2 11488:2 11494:1 11507:2 11512:1 11528:1 11529:1 11549:2 11560:1 11565:1 11569:1 11581:2 11607:1 11624:1 11630:1 11710:2 11713:1 11731:1 11752:1 11756:1 11761:1 11775:1 11785:1 11789:1 11855:2 11869:1 11874:1 11902:1 11910:1 11913:1 11928:1 11972:2 11976:1 11979:2 11980:1 11999:1 12000:1 12001:2 12009:1 12037:1 12049:1 12058:1 12063:1 12070:2 12075:1 12139:1 12149:1 12174:1 12185:1 12209:1 12244:1 12269:1 12272:1 12285:1 12292:1 12317:1 12337:1 12348:1 12349:1 12355:2 12356:3 12360:2 12376:1 12381:1 12386:1 12396:1 12402:1 12403:1 12410:1 12438:2 12443:1 12445:1 12471:1 12506:1 12507:1 12515:2 12522:1 12533:1 12548:2 12570:1 12575:2 12586:1 12590:2 12603:1 12632:2 12639:1 12648:1 12664:1 12698:1 12718:1 12721:1 12815:4 12827:1 12851:1 12852:2 12857:1 12859:6 12860:1 12861:1 12881:2 12884:1 12902:1 12919:1 12939:1 12949:2 12986:1 12997:3 13008:1 13010:3 13013:1 13015:1 13055:1 13056:1 13068:1 13081:1 13093:1 13094:2 13108:1 13109:1 13114:1 13128:5 13134:1 13148:3 13164:2 13166:1 13172:1 13181:1 13195:1 13204:1 13245:1 13274:1 13276:1 13280:1 13320:2 13330:2 13352:1 13370:1 13386:2 13399:1 13437:1 13468:1 13483:1 13484:1 13498:1 13499:2 13502:1 13517:1 13527:2 13534:1 13547:1 13553:1 13577:1 13592:1 13606:1 13628:1 13657:1 13678:1 13686:2 13691:1 13695:1 13705:1 13709:1 13718:1 13734:2 13758:1 13774:4 13812:1 13841:1 13846:1 13848:1 13854:1 13873:1 13874:2 13904:1 13915:1 13919:3 13924:1 13926:1 13935:1 13956:1 14009:1 14017:2 14029:1 14045:1 14049:2 14050:1 14057:1 14059:1 14077:1 14150:1 14151:1 14155:3 14160:2 14170:1 14176:1 14200:1 14245:1 14253:1 14299:1 14317:1 14332:1 14342:1 14354:1 14355:2 14365:1 14381:1 14409:1 14429:1 14440:1 14460:1 14462:2 14467:1 14475:1 14476:1 14479:1 14480:1 14487:1 14497:1 14512:1 14520:2 14526:1 14534:1 14575:1 14595:1 14602:2 14637:1 14654:1 14656:1 14663:1 14678:1 14708:1 14733:4 14744:1 14747:1 14749:1 14754:3 14763:1 14769:1 14770:1 14773:1 14774:1 14782:3 14786:1 14790:1 14797:2 14812:4 14820:1 14843:1 14888:1 14898:2 14903:1 14923:2 14962:2 14970:1 14982:1 15021:1 15048:2 15070:2 15100:1 15118:1 15120:1 15121:1 15131:1 15140:2 15141:1 15147:1 15173:1 15174:1 15180:1 15193:2 15231:1 15261:1 15265:1 15287:2 15295:1 15297:2 15307:1 15323:1 15348:1 15370:1 15381:1 15390:1 15406:1 15407:1 15408:2 15413:2 15427:1 15489:1 15504:2 15524:4 15532:1 15555:1 15572:1 15579:1 15610:1 15629:1 15635:3 15652:1 15668:1 15672:1 15689:1 15712:1 15714:2 15742:1 15846:1 15860:1 15864:1 15898:2 15905:1 15918:1 15936:1 15940:1 15950:1 15957:1 16005:1 16033:1 16035:1 16062:1 16066:1 16089:2 16100:1 16109:1 16111:1 16132:1 16145:1 16154:1 16158:1 16160:1 16164:1 16178:1 16179:1 16240:1 16258:1 16261:1 16263:3 16282:1 16289:2 16309:2 16357:1 16367:1 16371:1 16375:1 16379:1 16383:1 16387:1 16390:1 16392:1 16408:1 16443:1 16447:2 16451:1 16456:1 16464:1 16468:1 16469:1 16486:2 16512:1 16563:1 16575:1 16583:1 16586:1 16604:1 16608:1 16616:1 16630:1 16645:1 16657:1 16668:1 16675:1 16678:2 16685:1 16713:1 16716:1 16718:1 16720:1 16721:1 16729:1 16743:1 16744:1 16750:1 16751:1 16766:2 16767:2 16768:1 16783:1 16786:1 16800:1 16802:1 16803:1 16823:1 16848:1 16850:1 16891:1 16906:1 16937:1 16958:1 16961:1 16966:3 16973:2 16990:1 16991:1 17021:2 17022:1 17028:1 17045:1 17050:1 17076:1 17083:1 17094:2 17127:1 17140:4 17166:1 17186:1 17284:1 17288:1 17291:6 17298:1 17300:1 17312:1 17319:1 17326:1 17328:1 17341:1 17360:1 17365:1 17441:1 17447:1 17471:1 17486:1 17492:1526 17497:1 17520:1 17539:1 17541:1 17551:1 17555:1 17599:1 17628:1 17668:1 17669:1 17691:1 17793:1 17815:1 17846:1 17902:1 17914:1 17933:1 17938:1 17991:1 18003:2 18020:1 18028:1 18032:1 18042:1 18055:1 18087:2 18107:1 18108:1 18110:4 18145:1 18161:1 18185:1 18196:1 18198:1 18217:1 18254:1 18269:7 18333:1 18366:1 18380:3 18383:1 18415:2 18423:1 18471:1 18485:2 18494:2 18503:1 18507:2 18525:1 18535:1 18544:1 18549:1 18566:1 18584:2 18592:1 18594:1 18606:2 18619:1 18622:1 18651:1 18667:1 18672:3 18676:1 18695:1 18740:1 18757:1 18776:2 18778:1 18849:4 18856:1 18892:1 18915:3 18921:3 18928:1 18929:1 18932:1 18949:1 18958:2 18965:1 18983:2 18985:1 18995:1 19001:1 19003:1 19005:1 19011:1 19033:1 19044:1 19057:1 19061:1 19078:2 19080:1 19097:1 19109:1 19115:1 19202:1 19208:2 19214:1 19238:2 19240:1 19242:2 19253:1 19268:1 19274:1 19277:1 19278:1 19297:1 19358:1 19388:2 19426:1 19435:1 19465:1 19471:1 19483:1 19485:1 19487:1 19488:1 19493:1 19510:1 19515:1 19518:1 19525:1 19558:2 19579:1 19596:2 19603:1 19612:1 19623:2 19624:1 19636:2 19647:2 19648:1 19651:2 19706:1 19708:1 19710:1 19722:1 19758:1 19785:1 19804:1 19809:2 19885:1 19928:1 19934:1 19957:1 19968:2 20018:1 20033:2 20077:1 20089:1 20091:2 20096:1 20109:1 20131:1 20139:1 20143:1 20174:1 20190:1 20196:1 20216:1 20231:1 20234:1 20247:1 20251:1 20290:1 20307:1 20370:2 20401:2 20411:1 20415:1 20421:5 20422:1 20433:2 20446:1 20462:1 20477:2 20481:1 20482:1 20483:1 20486:1 20488:1 20529:2 20561:1 20571:1 20577:3 20580:1 20583:1 20591:1 20594:1 20597:1 20608:1 20609:1 20610:3 20613:1 20624:1 20625:2 20627:1 20654:1 20659:1 20694:2 20704:1 20716:1 20727:1 20762:1 20775:1 20776:1 20793:1 20796:2 20804:2 20823:1 20828:1 20841:1 20864:1 20871:1 20894:2 20923:1 20931:1 20933:1 20942:1 20960:1 20975:1 20980:1 20988:1 20994:2 21004:1 21007:2 21011:2 21017:1 21025:1 21030:1 21040:1 21053:1 21067:1 21072:1 21080:1 21082:2 21111:2 21117:1 21120:1 21121:1 21132:1 21159:2 21173:3 21185:2 21195:1 21233:1 21236:1 21241:1 21242:1 21252:1 21254:2 21260:1 21277:1 21280:1 21305:1 21313:1 21315:1 21320:1 21323:1 21329:1 21337:2 21345:1 21347:1 21430:5 21435:1 21438:1 21439:1 21444:1 21449:1 21478:1 21503:1 21516:2 21554:2 21560:1 21568:2 21579:1 21587:1 21593:1 21594:1 21603:1 21632:2 21656:1 21692:2 21709:5 21729:1 21731:1 21777:1 21850:1 21895:1 21896:2 21904:1 21909:1 21911:1 21919:2 21923:1 21925:1 21927:2 21954:2 21967:1 21968:1 21975:1 21987:2 22024:2 22030:1 22055:1 22074:1 22097:1 22105:1 22119:1 22133:1 22137:1 22148:3 22152:1 22157:2 22176:1 22188:1 22189:1 22202:1 22208:2 22215:1 22224:1 22248:1 22270:1 22283:1 22291:1 22309:1 22323:1 22333:1 22340:1 22351:1 22382:1 22405:1 22409:1 22424:1 22438:1 22449:1 22471:1 22476:1 22502:1 22568:3 22572:1 22578:1 22586:1 22614:1 22634:2 22652:1 22666:1 22678:2 22679:1 22707:3 22717:1 22718:1 22728:1 22737:1 22747:1 22759:1 22762:1 22779:1 22788:1 22797:1 22830:1 22838:1 22876:2 22885:1 22887:1 22935:1 22948:1 22956:2 22963:1 22967:2 23000:1 23003:6 23007:1 23052:1 23078:1 23094:1 23103:1 23111:1 23119:1 23121:1 23127:1 23128:2 23138:1 23164:1 23173:1 23190:1 23191:1 23194:1 23199:1 23219:1 23222:1 23224:1 23230:1 23231:1 23240:1 23245:2 23247:1 23250:1 23271:1 23277:1 23286:1 23315:1 23373:2 23383:1 23415:1 23416:1 23426:1 23486:1 23518:1 23535:1 23554:1 23608:2 23628:1 23633:3 23637:1 23675:4 23694:2 23711:1 23718:2 23731:1 23735:1 23738:2 23751:1 23766:1 23783:1 23791:1 23816:1 23821:1 23822:1 23850:1 23864:1 23865:1 23866:3 23873:2 23878:1 23879:1 23897:1 23898:1 23901:1 23902:1 23904:1 23913:2 23914:1 23918:2 23935:3 23964:2 23966:1 23986:1 23987:1 24008:1 24040:1 24063:1 24085:1 24091:1 24099:1 24119:1 24141:1 24143:1 24151:1 24153:1 24171:1 24188:1 24228:1 24251:1 24267:1 24268:1 24271:4 24273:1 24298:1 24324:2 24330:1 24338:1 24352:2 24367:1 24377:1 24397:1 24420:1 24430:2 24433:1 24436:1 24442:1 24443:1 24452:1 24463:1 24466:2 24490:1 24503:1 24533:3 24542:1 24579:1 24598:6 24638:1 24643:2 24655:1 24672:1 24675:1 24708:1 24720:1 24721:2 24730:1 24734:1 24759:1 24765:1 24809:1 24836:2 24839:1 24854:1 24856:1 24861:1 24885:1 24899:4 24928:3 24941:1 24957:1 24965:1 24988:1 24993:1 25000:1 25018:1 25033:1 25045:1 25071:2 25079:2 25134:1 25161:1 25219:1 25248:2 25277:2 25281:2 25296:1 25338:1 25347:1 25349:1 25370:1 25387:1 25393:1 25434:1 25460:1 25466:1 25473:2 25488:1 25515:1 25537:1 25539:1 25543:1 25545:2 25587:1 25593:1 25597:1 25623:1 25635:3 25641:1 25662:1 25663:1 25704:2 25706:1 25710:1 25719:1 25720:1 25724:2 25728:1 25767:3 25769:1 25778:3 25780:1 25785:1 25786:1 25788:1 25790:1 25793:1 25798:1 25799:1 25804:1 25811:1 25835:2 25850:1 25866:4 25871:1 25874:1 25877:2 25878:1 25897:1 25912:1 25924:1 25961:1 26013:2 26049:1 26068:2 26070:2 26071:1 26072:1 26084:2 26092:1 26125:1 26131:1 26166:1 26174:1 26184:1 26218:1 26250:1 26275:1 26280:3 26312:1 26322:1 26337:1 26348:1 26352:2 26364:1 26378:1 26400:1 26402:1 26409:1 26422:1 26429:1 26442:1 26446:7 26451:1 26468:1 26482:4 26498:5 26531:1 26545:1 26548:1 26565:1 26574:1 26575:1 26576:1 26598:2 26609:5 26647:8 26652:1 26655:1 26659:1 26666:2 26681:1 26709:1 26723:2 26762:1 26782:1 26821:1 26834:1 26843:1 26853:1 26866:2 26872:1 26898:1 26909:1 26912:1 26913:1 26962:1 26968:1 26977:1 26981:1 26984:2 26990:1 27001:1 27006:1 27010:1 27026:1 27029:1 27050:2 27062:1 27078:1 27084:1 27086:1 27095:1 27118:1 27122:1 27133:1 27137:2 27180:2 27190:1 27227:1 27232:1 27250:1 27276:1 27286:2 27358:1 27360:1 27364:1 27368:1 27372:2 27431:1 27433:1 27473:1 27479:4 27481:1 27489:2 27497:1 27499:1 27526:1 27529:1 27538:1 27557:2 27565:2 27608:2 27615:1 27625:2 27633:2 27641:1 27643:1 27691:1 27696:4 27704:1 27730:1 27746:1 27756:2 27758:1
12 1:1 37:1 38:1 43:1 52:1 57:2 74:1 87:3 92:1 111:1 141:1 165:1 179:2 182:1 195:1 202:1 209:1 210:1 277:1 282:1 292:1 294:1 313:1 328:4 356:2 363:3 378:2 379:1 388:1 413:1 418:3 423:1 430:1 441:2 457:1 528:1 535:1 603:2 609:1 637:1 648:1 693:1 694:1 698:2 700:1 725:1 739:1 790:1 794:1 820:1 861:4 867:1 870:1 881:1 888:4 893:1 903:2 909:1 923:1 941:2 949:2 952:1 981:1 990:1 994:1 1019:1 1022:1 1037:1 1054:1 1068:1 1069:1 1073:1 1082:1 1088:1 1104:1 1125:1 1132:1 1140:1 1154:1 1192:1 1193:1 1195:1 1203:2 1217:2 1222:1 1231:1 1240:1 1249:2 1277:2 1287:1 1301:1 1310:1 1331:2 1344:3 1349:1 1354:1 1357:1 1369:1 1397:5 1448:1 1450:1 1451:1 1454:1 1457:5 1459:1 1461:1 1482:1 1484:1 1493:1 1513:1 1516:1 1534:2 1535:2 1541:1 1556:1 1559:1 1562:1 1564:2 1565:1 1568:1 1574:1 1623:2 1625:1 1656:2 1660:1 1668:4 1680:2 1691:1 1695:1 1696:1 1730:1 1740:1 1762:1 1768:1 1791:1 1795:1 1810:1 1815:1 1831:2 1834:1 1839:2 1844:1 1848:1 1864:2 1877:1 1890:2 1891:1 1897:2 1905:1 1909:1 1922:2 1941:1 2006:1 2007:3 2010:1 2030:1 2039:1 2058:1 2063:1 2080:1 2086:1 2089:1 2096:1 2122:2 2148:1 2164:1 2169:1 2191:4 2197:2 2200:1 2204:1 2208:1 2210:2 2235:1 2236:1 2244:2 2245:2 2246:2 2249:4 2251:1 2253:2 2256:2 2258:2 2261:1 2262:1 2264:2 2265:1 2266:1 2269:1 2270:5 2272:1 2276:1 2280:1 2281:1 2287:2 2307:1 2338:4 2339:1 2354:2 2356:1 2368:1 2369:1 2381:1 2418:2 2451:1 2452:1 2459:1 2487:1 2501:1 2505:1 2514:1 2523:1 2526:4 2545:1 2575:1 2580:1 2583:1 2589:1 2620:1 2640:1 2662:1 2666:1 2699:4 2703:1 2706:1 2721:1 2724:1 2741:2 2745:1 2756:3 2769:1 2770:1 2807:1 2815:1 2832:1 2846:5 2852:1 2857:2 2860:1 2898:1 2912:1 2919:1 2927:1 2928:2 2937:1 2951:1 2957:1 2972:1 2973:1 2990:1 3000:1 3008:1 3021:1 3053:1 3065:1 3080:1 3084:1 3113:1 3135:1 3143:1 3155:1 3160:1 3174:1 3191:2 3207:1 3223:1 3232:2 3244:5 3247:1 3257:1 3260:1 3322:1 3338:1 3368:1 3399:1 3402:1 3407:1 3426:1 3431:1 3442:1 3460:2 3462:1 3489:1 3497:1 3500:1 3504:1 3512:1 3515:1 3529:1 3534:1 3548:1 3559:1 3568:1 3577:4 3586:1 3591:1 3600:1 3607:1 3648:3 3674:1 3675:2 3697:1 3703:1 3713:1 3717:1 3721:3 3725:1 3726:2 3741:1 3753:1 3763:1 3805:1 3806:2 3825:1 3832:1 3844:2 3846:1 3849:1 3872:1 3876:1 3888:1 3904:1 3913:1 3916:1 3921:2 3932:3 3972:1 3973:1 3992:1 4014:1 4023:2 4030:1 4072:1 4104:5 4107:2 4113:1 4117:1 4123:1 4145:1 4163:4 4167:1 4175:1 4180:1 4192:1 4216:1 4231:1 4239:2 4258:1 4267:1 4281:1 4310:1 4346:1 4356:1 4357:1 4375:1 4386:1 4404:1 4406:1 4414:1 4416:1 4423:1 4431:2 4472:1 4494:2 4506:1 4521:1 4526:1 4550:3 4578:1 4579:1 4581:1 4605:1 4656:1 4677:1 4700:1 4710:7 4711:2 4733:1 4738:2 4749:1 4750:1 4759:1 4814:6 4820:1 4828:3 4830:2 4833:1 4836:1 4838:1 4841:1 4842:1 4844:1 4845:2 4850:2 4854:1 4856:2 4857:1 4860:1 4879:1 4891:1 4915:1 4916:3 4920:1 4934:1 4943:1 4961:1 4993:1 4996:1 5045:2 5057:1 5112:1 5118:1 5130:2 5133:1 5141:3 5158:1 5162:1 5163:6 5188:8 5242:1 5269:1 5274:1 5335:1 5355:2 5361:1 5379:1 5382:1 5400:1 5402:1 5407:1 5418:1 5438:1 5452:1 5469:1 5470:3 5473:1 5475:1 5476:1 5481:1 5484:1 5496:1 5511:1 5527:2 5534:1 5639:1 5663:1 5665:1 5669:1 5705:1 5750:1 5752:5 5755:1 5777:1 5779:1 5787:1 5788:1 5794:2 5797:1 5813:1 5840:1 5844:1 5864:1 5868:2 5877:1 5903:1 5917:2 5934:1 5960:1 5994:2 6003:1 6007:1 6008:1 6016:1 6069:1 6076:1 6092:4 6096:1 6098:1 6101:3 6102:1 6110:1 6113:1 6115:3 6116:1 6117:9 6119:1 6120:2 6158:1 6169:2 6246:2 6254:1 6260:2 6283:1 6318:1 6362:1 6375:1 6399:1 6414:2 6420:1 6421:1 6428:1 6436:1 6439:1 6455:1 6472:1 6486:1 6490:1 6492:1 6493:1 6516:2 6519:1 6545:3 6566:1 6568:1 6574:1 6578:1 6614:1 6629:1 6656:1 6714:1 6745:1 6762:1 6798:1 6877:2 6878:2 6895:1 6924:2 6932:1 6949:1 6958:1 6964:1 6971:1 6974:1 6975:2 6981:1 6990:1 7047:1 7098:1 7117:3 7131:1 7143:3 7144:2 7146:3 7155:1 7180:1 7198:1 7211:1 7250:2 7263:1 7290:1 7293:1 7295:1 7328:7 7329:6 7336:1 7337:1 7344:1 7346:1 7351:1 7352:1 7356:2 7367:1 7384:2 7394:29 7410:6 7412:1 7419:2 7422:1 7432:1 7457:1 7460:1 7480:1 7488:2 7489:2 7522:2 7550:1 7594:1 7604:1 7614:2 7629:1 7645:1 7651:1 7689:1 7693:1 7725:2 7733:1 7770:1 7777:1 7811:1 7852:2 7867:1 7871:4 7902:1 7905:1 7916:1 7947:1 7961:1 7999:1 8001:1 8008:1 8021:1 8062:1 8072:1 8091:1 8124:1 8133:1 8140:1 8166:1 8167:1 8204:1 8206:1 8207:1 8212:1 8217:1 8219:1 8220:1 8221:1 8238:1 8244:1 8247:2 8259:1 8262:1 8277:1 8285:1 8287:2 8320:1 8324:2 8335:1 8338:1 8366:1 8433:1 8468:1 8483:2 8490:1 8491:1 8501:1 8511:2 8523:1 8528:1 8580:1 8587:1 8591:1 8599:2 8630:1 8659:1 8662:1 8663:1 8676:1 8688:2 8689:1 8692:1 8707:1 8713:1 8717:1 8732:1 8733:1 8740:1 8750:4 8787:1 8796:2 8799:1 8801:1 8810:1 8813:2 8816:1 8841:3 8843:3 8844:1 8866:1 8880:1 8883:2 8902:1 8910:1 8912:1 8914:2 8918:1 8922:1 8930:1 8931:2 8948:1 8965:1 8990:1 8995:1 8998:1 9006:1 9011:1 9019:1 9031:1 9066:6 9102:1 9108:1 9109:1 9133:1 9136:1 9147:2 9153:1 9161:1 9162:1 9175:2 9190:1 9191:2 9198:1 9203:2 9220:1 9244:1 9250:1 9254:3 9257:1 9264:1 9267:1 9287:5 9303:3 9305:1 9307:1 9312:1 9369:1 9397:1 9433:4 9469:1 9480:1 9481:4 9484:1 9492:1 9505:1 9523:1 9526:3 9583:1 9594:4 9598:1 9599:2 9617:1 9628:1 9650:1 9661:1 9665:1 9693:1 9744:1 9747:1 9760:1 9774:1 9776:1 9778:1 9797:1 9802:1 9808:1 9831:1 9839:1 9840:1 9876:2 9882:2 9895:1 9954:1 9961:3 9963:1 9995:2 9999:1 10018:1 10020:1 10024:1 10027:1 10039:2 10054:1 10057:1 10059:4 10060:1 10063:1 10066:1 10072:2 10112:1 10135:1 10145:1 10148:1 10155:6 10162:1 10163:1 10182:2 10210:1 10214:1 10215:1 10237:1 10266:1 10274:1 10357:2 10359:4 10365:2 10380:1 10386:1 10405:1 10419:1 10424:1 10442:1 10448:1 10473:1 10488:3 10500:1 10519:1 10524:1 10526:1 10537:1 10543:1 10547:1 10559:1 10573:1 10578:1 10583:1 10594:1 10595:1 10627:1 10631:1 10633:2 10700:1 10710:1 10711:1 10714:1 10740:1 10750:1 10767:1 10777:1 10781:2 10804:1 10812:5 10855:1 10866:2 10883:2 10888:1 10889:1 10896:1 10905:1 10918:2 10961:1 10975:1 10978:1 10987:1 10989:1 10992:2 11008:4 11053:2 11054:1 11061:1 11071:1 11074:2 11076:1 11077:1 11080:2 11092:1 11096:2 11125:1 11126:1 11130:2 11142:1 11148:1 11151:1 11158:1 11159:1 11169:1 11189:1 11194:1 11233:1 11244:2 11253:1 11268:1 11284:1 11310:1 11316:1 11333:1 11344:1 11352:1 11364:1 11371:1 11424:1 11442:1 11443:5 11462:1 11464:1 11465:1 11477:2 11488:2 11494:1 11501:1 11507:2 11512:1 11528:1 11529:1 11549:2 11560:1 11565:1 11569:1 11581:2 11607:1 11624:1 11630:1 11710:2 11713:1 11731:1 11752:1 11756:1 11761:1 11775:1 11785:1 11789:1 11855:2 11869:1 11874:1 11902:1 11910:1 11913:1 11928:1 11972:2 11976:1 11979:2 11980:1 11999:1 12000:1 12001:2 12009:1 12037:1 12049:1 12058:1 12063:1 12070:2 12075:1 12139:1 12149:1 12174:1 12185:1 12209:1 12244:1 12269:1 12272:1 12285:1 12292:1 12317:1 12337:1 12348:1 12349:1 12355:2 12356:3 12360:2 12376:1 12381:1 12386:1 12396:1 12402:1 12403:1 12410:1 12438:2 12443:1 12445:1 12471:1 12506:1 12507:1 12515:2 12522:1 12533:1 12548:2 12570:1 12575:2 12586:1 12590:2 12603:1 12632:2 12639:1 12648:1 12664:1 12698:1 12703:1 12718:1 12721:1 12815:4 12827:1 12851:1 12852:2 12857:1 12859:6 12860:1 12861:1 12881:2 12884:1 12902:2 12919:1 12937:1 12939:1 12949:2 12986:1 12991:1 12997:3 13008:1 13010:3 13013:1 13015:1 13055:1 13056:1 13068:1 13081:1 13093:1 13094:2 13108:1 13109:1 13114:1 13128:5 13134:1 13148:3 13164:2 13166:1 13172:1 13181:1 13195:1 13204:1 13245:1 13274:1 13276:1 13280:1 13320:2 13330:2 13352:1 13370:1 13386:2 13399:1 13437:1 13468:1 13483:1 13484:1 13498:1 13499:2 13502:1 13517:1 13527:2 13534:1 13547:1 13553:1 13577:1 13592:1 13606:1 13628:1 13657:1 13678:1 13686:2 13691:1 13695:1 13705:1 13709:1 13718:1 13734:3 13758:1 13774:4 13812:1 13841:1 13846:1 13848:1 13854:1 13873:1 13874:2 13904:1 13915:1 13919:3 13924:1 13926:1 13935:1 13956:1 13990:1 14009:1 14017:2 14029:1 14045:1 14049:2 14050:1 14057:1 14059:1 14077:1 14112:1 14150:1 14151:1 14155:3 14160:2 14167:1 14170:1 14176:1 14200:1 14245:1 14253:1 14299:1 14317:1 14332:1 14342:1 14354:1 14355:2 14365:1 14381:1 14409:1 14429:1 14440:1 14460:1 14462:2 14467:1 14475:1 14476:1 14479:1 14480:1 14487:1 14497:1 14512:1 14520:2 14526:1 14534:1 14535:1 14575:1 14595:1 14602:2 14637:1 14654:1 14656:1 14663:1 14678:1 14708:1 14733:4 14744:1 14747:1 14749:1 14754:3 14763:1 14769:1 14770:1 14773:1 14774:1 14782:3 14786:1 14790:1 14797:2 14812:4 14820:1 14839:1 14843:1 14878:1 14888:1 14898:2 14903:1 14923:2 14962:2 14970:1 14982:1 15021:1 15048:2 15070:2 15100:1 15118:1 15120:1 15121:1 15131:1 15140:2 15141:1 15147:1 15173:2 15174:1 15180:1 15193:2 15231:1 15261:1 15265:1 15287:2 15295:1 15297:2 15307:1 15323:1 15348:1 15370:1 15381:1 15390:1 15406:1 15407:1 15408:2 15413:2 15427:1 15459:1 15489:1 15504:2 15524:4 15532:1 15555:1 15572:1 15579:1 15610:1 15629:1 15635:3 15652:1 15668:1 15672:1 15689:1 15712:1 15714:2 15742:1 15785:1 15846:1 15860:1 15864:1 15898:2 15901:1 15905:1 15918:1 15936:1 15940:1 15950:1 15957:1 16005:1 16033:1 16035:1 16062:1 16066:1 16089:2 16100:1 16109:1 16111:1 16132:1 16145:1 16154:1 16158:1 16160:1 16164:1 16178:1 16179:1 16240:1 16258:1 16261:1 16263:3 16282:1 16289:2 16309:2 16357:1 16367:1 16371:1 16375:1 16379:1 16383:1 16387:1 16390:1 16392:1 16408:1 16443:1 16447:2 16451:1 16456:1 16464:1 16468:1 16469:1 16486:2 16512:1 16563:1 16575:1 16583:1 16586:1 16604:1 16608:1 16616:1 16630:1 16645:1 16657:1 16668:1 16675:1 16678:2 16685:1 16713:2 16716:1 16718:1 16720:1 16721:1 16729:1 16743:1 16744:1 16750:1 16751:1 16766:2 16767:2 16768:1 16770:1 16783:1 16786:1 16800:1 16802:1 16803:1 16823:1 16848:1 16850:1 16891:1 16898:1 16906:1 16937:1 16958:1 16961:1 16966:3 16973:2 16990:1 16991:1 17021:2 17022:1 17028:1 17045:1 17050:3 17076:1 17083:1 17094:2 17101:1 17127:1 17140:4 17166:1 17186:1 17284:1 17288:1 17291:6 17298:1 17300:1 17312:1 17319:1 17326:1 17328:1 17341:1 17360:1 17365:1 17441:1 17447:1 17471:1 17486:1 17492:1567 17497:1 17520:1 17539:1 17541:1 17551:1 17555:1 17599:1 17628:1 17668:1 17669:1 17691:1 17793:1 17815:1 17846:1 17902:1 17914:1 17933:1 17938:1 17945:1 17991:1 18003:2 18020:1 18028:1 18032:1 18042:1 18055:1 18087:2 18107:1 18108:1 18110:4 18145:1 18161:1 18185:1 18196:1 18198:1 18217:1 18254:1 18269:7 18333:1 18366:1 18380:3 18383:1 18415:3 18423:1 18471:1 18485:2 18494:2 18503:1 18507:2 18525:1 18535:1 18544:1 18549:1 18566:1 18584:2 18592:1 18594:1 18606:2 18619:1 18622:1 18651:1 18667:1 18672:3 18676:1 18695:1 18740:1 18757:1 18773:1 18776:2 18778:1 18849:4 18856:1 18892:1 18915:3 18921:3 18928:1 18929:1 18932:1 18949:1 18958:2 18965:1 18983:2 18985:1 18995:1 19001:1 19003:1 19005:1 19011:1 19033:1 19044:1 19057:1 19061:1 19078:2 19080:1 19097:1 19109:1 19115:1 19202:1 19208:2 19214:1 19238:2 19240:1 19242:2 19253:1 19268:1 19274:1 19277:1 19278:1 19297:1 19358:1 19388:2 19424:1 19426:1 19435:1 19462:1 19465:1 19471:1 19483:1 19485:1 19487:1 19488:1 19493:1 19510:1 19515:1 19518:1 19525:1 19558:2 19579:1 19596:2 19603:1 19612:1 19623:2 19624:1 19636:2 19647:2 19648:1 19651:2 19706:1 19708:1 19710:1 19722:1 19758:1 19785:1 19804:1 19809:2 19885:1 19928:1 19934:1 19957:1 19968:2 20012:1 20018:1 20033:2 20077:1 20089:1 20091:2 20096:1 20109:1 20131:1 20139:1 20143:1 20174:1 20190:1 20196:1 20216:1 20231:1 20234:1 20247:1 20251:1 20290:1 20307:1 20370:2 20401:2 20411:1 20415:1 20421:6 20422:1 20433:3 20446:1 20455:1 20462:1 20477:2 20481:1 20482:1 20483:1 20486:1 20488:1 20529:2 20561:1 20571:1 20577:3 20580:1 20583:1 20591:1 20594:1 20597:1 20608:1 20609:1 20610:3 20613:1 20624:1 20625:2 20627:1 20654:1 20659:1 20694:2 20704:1 20716:1 20727:1 20754:1 20762:1 20775:1 20776:1 20793:1 20796:2 20804:2 20823:1 20828:1 20841:1 20864:1 20871:1 20894:2 20901:1 20913:1 20923:1 20931:1 20933:1 20942:1 20960:1 20975:1 20980:3 20988:1 20994:2 21004:1 21007:2 21011:2 21017:1 21025:1 21030:1 21040:1 21053:1 21067:1 21072:1 21080:1 21082:2 21111:2 21117:1 21120:1 21121:1 21132:1 21159:2 21173:3 21185:2 21195:1 21233:1 21236:1 21241:1 21242:1 21252:1 21254:2 21260:1 21277:1 21280:1 21305:1 21313:1 21315:1 21320:1 21323:1 21329:1 21337:2 21345:1 21347:1 21430:5 21435:1 21438:1 21439:1 21444:1 21449:1 21478:1 21503:1 21516:2 21554:2 21560:1 21568:2 21579:1 21587:1 21593:1 21594:1 21603:1 21632:2 21656:1 21692:2 21709:5 21729:1 21731:1 21777:1 21850:1 21895:1 21896:2 21904:1 21909:1 21911:1 21919:2 21923:1 21925:1 21927:2 21954:2 21967:1 21968:1 21975:1 21987:2 22024:2 22030:1 22055:1 22066:1 22074:1 22097:1 22105:1 22119:1 22133:1 22137:1 22148:3 22152:1 22157:2 22176:1 22188:1 22189:1 22202:1 22208:2 22215:1 22224:1 22248:1 22270:1 22283:1 22291:1 22309:1 22323:1 22333:1 22340:1 22351:1 22382:1 22391:1 22405:1 22409:1 22424:1 22438:1 22449:1 22471:1 22476:1 22502:1 22568:3 22569:1 22572:1 22578:1 22586:1 22614:1 22634:2 22652:1 22666:1 22678:2 22679:1 22707:3 22717:1 22718:1 22728:1 22737:1 22747:1 22759:1 22762:1 22779:1 22788:3 22797:1 22830:1 22838:1 22876:2 22885:1 22887:1 22935:1 22948:1 22956:2 22963:1 22967:2 23000:1 23003:6 23007:1 23052:1 23068:1 23078:1 23094:1 23103:1 23111:1 23119:1 23121:1 23127:1 23128:2 23135:1 23138:1 23156:1 23164:1 23173:1 23190:1 23191:1 23194:1 23199:1 23219:1 23222:1 23224:1 23230:1 23231:1 23240:1 23241:1 23245:3 23247:1 23250:1 23271:1 23277:1 23286:1 23315:1 23373:2 23383:1 23415:1 23416:1 23426:1 23486:1 23518:1 23535:1 23554:1 23608:2 23628:1 23633:3 23637:1 23675:4 23694:2 23711:1 23718:2 23731:1 23735:1 23738:2 23751:1 23766:1 23783:1 23791:1 23816:1 23821:1 23822:1 23850:1 23864:1 23865:1 23866:3 23873:2 23878:1 23879:1 23897:1 23898:1 23901:1 23902:1 23904:1 23913:2 23914:1 23918:2 23935:3 23936:1 23964:2 23966:1 23986:1 23987:1 24008:1 24040:1 24063:1 24085:1 24091:1 24099:1 24119:1 24141:1 24143:1 24151:1 24153:1 24171:1 24188:1 24228:1 24251:1 24267:1 24268:1 24271:4 24273:1 24298:1 24324:2 24330:1 24338:1 24352:2 24367:1 24377:1 24397:1 24420:1 24430:2 24433:1 24436:1 24442:1 24443:1 24452:1 24463:1 24466:2 24490:1 24503:1 24533:3 24542:1 24566:1 24579:1 24598:6 24638:1 24643:2 24655:1 24672:1 24675:1 24708:1 24720:1 24721:2 24730:1 24734:1 24759:1 24765:1 24809:1 24836:2 24839:1 24854:1 24856:1 24861:1 24885:1 24899:4 24928:3 24941:1 24957:1 24965:1 24988:1 24993:1 25000:1 25018:1 25033:1 25045:1 25071:2 25079:2 25134:1 25161:1 25219:1 25248:2 25277:2 25281:2 25296:1 25338:1 25345:1 25347:1 25349:1 25370:1 25387:1 25393:1 25434:1 25460:1 25466:1 25473:2 25488:1 25515:1 25537:1 25539:1 25543:1 25545:2 25587:1 25593:1 25597:1 25623:1 25635:3 25641:1 25662:1 25663:1 25678:1 25704:2 25706:1 25710:1 25719:1 25720:1 25724:2 25728:1 25767:3 25769:1 25770:1 25778:3 25780:1 25785:1 25786:1 25788:1 25790:1 25793:2 25798:1 25799:1 25804:1 25811:1 25835:2 25850:1 25866:4 25871:1 25874:1 25877:2 25878:1 25897:1 25912:1 25924:1 25961:1 26013:2 26049:1 26057:1 26068:2 26070:2 26071:1 26072:1 26084:2 26092:1 26125:1 26131:1 26166:1 26174:1 26184:1 26218:1 26250:1 26275:1 26280:3 26312:1 26322:1 26337:1 26348:1 26352:2 26364:1 26378:1 26400:1 26402:1 26409:1 26422:1 26429:1 26442:1 26446:7 26451:1 26468:1 26482:4 26498:5 26531:1 26545:1 26548:1 26565:1 26574:1 26575:1 26576:1 26598:2 26609:5 26647:8 26652:1 26655:1 26659:1 26666:2 26681:1 26709:1 26723:2 26762:1 26782:1 26821:1 26824:1 26828:1 26834:1 26843:1 26853:1 26866:2 26872:1 26898:1 26909:1 26912:1 26913:1 26962:1 26968:1 26977:1 26981:1 26984:2 26990:1 27001:1 27006:1 27010:1 27026:1 27029:1 27050:2 27062:1 27078:1 27084:1 27086:1 27095:1 27118:1 27122:1 27133:1 27137:2 27180:2 27190:1 27227:1 27232:1 27250:1 27276:1 27286:2 27358:1 27360:1 27364:1 27368:1 27372:2 27418:1 27431:1 27433:1 27473:1 27479:4 27481:1 27489:2 27497:1 27499:1 27526:1 27529:1 27538:1 27557:2 27565:2 27608:2 27615:1 27625:2 27633:2 27641:1 27643:1 27691:1 27696:4 27704:1 27730:1 27746:1 27756:2 27758:1
12 1:1 37:1 38:1 43:1 52:1 57:2 74:1 87:3 92:1 111:1 141:1 165:1 179:2 182:1 195:1 202:1 209:1 210:1 277:1 282:1 292:1 294:1 313:1 328:4 356:2 363:3 378:2 379:1 388:1 413:1 418:3 423:1 430:1 441:2 457:1 528:1 535:1 603:2 609:1 637:1 648:1 693:1 694:1 698:2 700:1 725:1 739:1 790:1 794:1 820:1 861:4 867:1 870:1 881:1 888:4 893:1 903:2 909:1 923:1 941:2 949:2 952:1 981:1 990:1 994:1 1019:1 1022:1 1037:1 1054:1 1068:1 1069:1 1073:1 1082:1 1088:1 1104:1 1125:1 1132:1 1140:1 1154:1 1192:1 1193:1 1195:1 1203:2 1217:2 1222:1 1231:1 1240:1 1249:2 1277:2 1287:1 1301:1 1310:1 1331:2 1344:3 1349:1 1354:1 1357:1 1369:1 1397:5 1448:1 1450:1 1451:2 1454:1 1457:5 1459:1 1461:1 1482:1 1484:1 1493:1 1513:1 1516:1 1534:2 1535:2 1541:1 1556:1 1559:1 1562:1 1564:2 1565:1 1568:1 1574:1 1623:2 1625:1 1656:2 1660:1 1668:4 1680:2 1691:1 1695:2 1696:1 1730:1 1740:1 1762:1 1768:1 1791:1 1795:1 1810:1 1815:1 1831:2 1834:1 1839:3 1844:1 1848:1 1864:2 1877:1 1890:2 1891:1 1897:2 1905:1 1909:1 1922:2 1941:1 2006:1 2007:3 2010:1 2030:1 2039:1 2058:1 2063:1 2080:1 2086:1 2089:1 2096:1 2122:2 2148:1 2164:1 2169:1 2191:4 2197:2 2200:1 2204:1 2208:1 2210:2 2235:1 2236:1 2244:2 2245:2 2246:2 2249:4 2251:1 2253:2 2256:2 2258:2 2261:1 2262:1 2264:2 2265:1 2266:1 2269:1 2270:5 2272:1 2276:1 2280:1 2281:1 2287:2 2307:1 2338:4 2339:1 2354:2 2356:1 2368:1 2369:1 2381:1 2418:2 2451:1 2452:1 2459:1 2487:1 2501:1 2505:1 2514:1 2523:1 2526:4 2545:1 2572:1 2575:1 2580:1 2583:1 2589:1 2620:1 2640:1 2662:1 2666:1 2699:4 2703:1 2706:1 2721:1 2724:1 2741:2 2745:1 2756:3 2769:1 2770:1 2807:1 2815:1 2832:1 2846:5 2852:1 2857:2 2860:1 2898:1 2912:1 2919:1 2927:1 2928:2 2937:1 2951:1 2957:1 2965:1 2972:1 2973:1 2990:1 3000:1 3008:1 3021:1 3053:1 3065:1 3080:1 3083:1 3084:1 3113:1 3135:1 3143:1 3155:1 3160:1 3174:1 3191:2 3207:1 3223:1 3232:2 3244:5 3247:1 3257:1 3260:1 3322:1 3338:1 3368:1 3399:1 3402:1 3407:1 3426:1 3431:1 3442:1 3460:2 3462:1 3489:1 3497:1 3500:1 3504:1 3512:1 3515:1 3529:1 3534:1 3548:1 3559:1 3568:1 3577:4 3586:1 3588:1 3591:1 3600:1 3607:1 3612:1 3648:3 3674:1 3675:2 3697:1 3703:1 3713:1 3717:1 3721:3 3725:1 3726:2 3741:1 3753:1 3763:1 3805:1 3806:2 3825:1 3832:1 3844:2 3846:1 3849:1 3872:1 3876:1 3888:1 3904:1 3913:1 3916:1 3921:2 3932:3 3972:1 3973:1 3992:1 4014:1 4023:2 4030:1 4072:1 4104:5 4107:2 4113:1 4117:1 4123:1 4145:1 4163:4 4165:1 4167:1 4175:1 4180:1 4192:1 4216:1 4231:2 4239:2 4258:1 4267:1 4281:1 4310:1 4346:1 4356:1 4357:1 4375:1 4386:1 4404:1 4406:1 4414:1 4416:1 4423:2 4431:2 4472:1 4494:2 4506:1 4521:1 4526:1 4550:3 4578:1 4579:1 4581:1 4605:1 4656:1 4677:1 4700:1 4710:7 4711:2 4733:1 4738:2 4749:1 4750:1 4759:1 4814:6 4820:1 4828:3 4830:2 4833:1 4836:1 4838:1 4841:1 4842:1 4844:1 4845:2 4850:2 4854:1 4856:2 4857:2 4860:1 4879:1 4891:1 4915:1 4916:3 4920:1 4934:1 4943:1 4961:1 4993:1 4996:1 5045:2 5057:1 5095:1 5112:1 5118:1 5130:2 5133:1 5141:3 5158:1 5162:1 5163:6 5188:8 5242:1 5269:1 5274:1 5335:1 5355:2 5361:1 5379:1 5382:1 5400:1 5402:1 5407:1 5418:1 5438:1 5452:1 5469:1 5470:3 5473:1 5475:1 5476:1 5481:1 5484:1 5496:1 5504:1 5511:1 5527:2 5534:1 5639:1 5663:1 5665:1 5669:1 5705:1 5750:1 5752:6 5755:1 5777:1 5779:1 5787:1 5788:1 5794:2 5797:1 5813:1 5840:1 5844:1 5864:1 5868:2 5877:1 5903:1 5917:2 5934:1 5960:1 5994:2 6003:1 6007:1 6008:1 6016:1 6069:1 6076:2 6092:4 6096:1 6098:1 6101:3 6102:1 6110:1 6113:1 6115:3 6116:1 6117:9 6119:1 6120:2 6158:1 6169:2 6246:2 6254:1 6260:2 6283:1 6318:1 6362:1 6375:1 6399:1 6414:2 6420:1 6421:1 6428:1 6436:1 6439:1 6455:1 6472:1 6486:1 6490:1 6492:1 6493:1 6516:2 6519:1 6536:1 6545:3 6566:1 6568:1 6574:1 6578:1 6614:1 6629:1 6656:1 6714:1 6745:1 6762:1 6764:1 6798:1 6877:4 6878:2 6883:1 6895:1 6924:2 6932:1 6949:1 6958:1 6964:1 6971:1 6974:1 6975:2 6981:1 6990:1 7047:1 7098:1 7117:3 7131:1 7143:3 7144:2 7146:3 7155:1 7180:1 7198:1 7211:1 7250:2 7263:1 7290:2 7293:1 7295:1 7328:7 7329:6 7336:1 7337:1 7344:1 7346:1 7351:1 7352:1 7356:2 7367:1 7384:2 7394:29 7410:6 7412:1 7419:2 7422:1 7432:1 7457:1 7460:1 7480:1 7488:2 7489:2 7522:2 7550:1 7587:1 7594:1 7604:1 7614:2 7629:1 7645:1 7651:1 7689:1 7693:1 7725:2 7733:1 7770:1 7777:1 7811:1 7852:2 7867:1 7871:4 7902:1 7905:1 7916:1 7947:1 7961:1 7999:1 8001:1 8008:1 8021:1 8062:1 8072:1 8091:1 8124:1 8133:1 8140:1 8166:1 8167:1 8204:1 8206:2 8207:1 8212:1 8217:1 8219:1 8220:1 8221:1 8238:1 8244:1 8247:2 8259:1 8262:1 8277:1 8285:1 8287:2 8320:1 8324:2 8335:1 8338:1 8366:1 8433:1 8468:1 8483:2 8490:1 8491:1 8501:1 8511:2 8523:1 8528:1 8580:1 8587:1 8591:1 8599:2 8630:1 8659:1 8662:1 8663:1 8676:1 8688:2 8689:1 8692:1 8707:1 8710:1 8713:1 8717:1 8732:1 8733:1 8740:1 8750:4 8787:1 8796:2 8799:1 8801:1 8810:1 8813:2 8816:1 8824:1 8841:3 8843:3 8844:1 8866:1 8880:1 8883:2 8902:1 8910:1 8912:1 8914:2 8918:1 8922:1 8930:1 8931:2 8948:1 8960:1 8965:1 8978:1 8990:1 8995:1 8998:1 9006:1 9011:1 9019:1 9031:1 9066:6 9102:2 9108:1 9109:1 9132:1 9133:1 9136:1 9147:3 9153:1 9161:1 9162:1 9175:2 9190:1 9191:2 9198:1 9203:2 9220:1 9244:1 9250:1 9254:3 9257:1 9264:1 9267:1 9287:6 9303:3 9305:1 9307:1 9312:1 9369:1 9397:1 9433:4 9469:1 9480:1 9481:4 9484:1 9492:1 9505:1 9510:1 9523:1 9526:3 9583:1 9594:4 9598:1 9599:2 9617:1 9628:1 9650:1 9661:1 9665:1 9693:1 9744:1 9747:1 9760:1 9774:1 9776:1 9778:1 9797:1 9802:1 9808:1 9831:1 9839:1 9840:1 9876:2 9882:2 9895:1 9902:1 9954:1 9961:3 9963:1 9995:3 9999:1 10018:1 10020:1 10024:1 10027:1 10039:2 10054:1 10057:1 10059:4 10060:1 10063:1 10066:1 10072:2 10112:1 10135:1 10145:1 10148:1 10155:6 10162:1 10163:1 10182:2 10210:1 10214:1 10215:1 10237:1 10266:1 10274:1 10357:2 10359:4 10365:2 10380:1 10386:1 10405:1 10419:1 10424:1 10442:1 10448:2 10473:1 10488:3 10500:1 10519:1 10524:1 10526:1 10537:1 10543:1 10547:1 10559:1 10573:1 10578:1 10583:1 10594:1 10595:1 10627:1 10631:1 10633:2 10700:1 10710:1 10711:1 10714:1 10740:1 10750:1 10767:1 10777:1 10781:2 10804:1 10812:5 10855:1 10866:2 10883:2 10888:1 10889:1 10896:1 10905:1 10918:2 10961:1 10975:1 10978:1 10987:1 10989:1 10992:2 10999:1 11008:4 11053:2 11054:1 11061:1 11071:1 11074:2 11076:1 11077:1 11080:2 11092:1 11096:2 11125:1 11126:1 11130:2 11142:1 11148:1 11151:1 11158:1 11159:1 11169:1 11189:1 11194:1 11233:1 11244:2 11253:1 11268:1 11284:1 11310:1 11316:1 11333:1 11344:1 11352:1 11364:1 11371:1 11424:1 11442:1 11443:5 11462:1 11464:1 11465:1 11477:2 11488:2 11494:1 11501:1 11507:2 11512:1 11528:1 11529:1 11549:2 11560:1 11565:1 11569:1 11581:4 11607:1 11624:1 11630:1 11668:1 11710:2 11713:1 11731:1 11752:1 11756:1 11761:1 11775:1 11785:1 11789:1 11855:2 11869:1 11874:1 11902:1 11910:1 11913:1 11928:1 11972:2 11976:1 11977:1 11979:2 11980:1 11999:1 12000:1 12001:2 12009:1 12037:1 12049:1 12058:1 12063:2 12070:2 12075:1 12139:1 12149:1 12174:1 12185:1 12209:1 12244:1 12269:1 12272:1 12285:1 12292:1 12317:1 12337:1 12348:1 12349:1 12355:2 12356:3 12360:2 12376:1 12381:1 12386:1 12396:1 12402:1 12403:2 12410:1 12438:2 12443:1 12445:1 12471:1 12506:1 12507:1 12515:2 12522:1 12533:1 12548:2 12570:1 12575:3 12586:1 12590:2 12603:1 12632:2 12639:1 12648:1 12664:1 12698:1 12703:1 12718:1 12721:1 12815:4 12827:1 12851:1 12852:2 12857:1 12859:6 12860:1 12861:1 12862:1 12881:2 12884:1 12902:2 12919:2 12937:1 12939:1 12949:2 12986:1 12991:1 12997:3 13008:1 13010:3 13013:1 13015:1 13055:1 13056:1 13068:1 13081:1 13093:1 13094:2 13108:2 13109:1 13114:1 13128:5 13134:1 13148:3 13164:2 13166:1 13172:1 13181:1 13195:2 13203:1 13204:1 13245:1 13274:1 13276:1 13280:1 13320:2 13330:4 13352:1 13370:1 13386:2 13399:1 13437:1 13468:1 13483:1 13484:1 13498:1 13499:2 13502:1 13517:1 13527:2 13534:1 13547:1 13553:1 13577:1 13592:1 13606:1 13628:1 13657:1 13678:1 13686:2 13691:1 13695:1 13705:1 13709:1 13718:1 13734:3 13758:1 13774:4 13812:1 13824:1 13841:1 13846:1 13848:1 13854:1 13873:1 13874:2 13904:1 13915:1 13919:3 13924:1 13926:1 13935:1 13956:1 13990:1 14009:1 14017:2 14029:1 14045:1 14049:2 14050:1 14057:1 14059:1 14077:1 14112:1 14150:1 14151:1 14155:3 14160:2 14167:1 14170:1 14176:1 14200:1 14245:1 14253:1 14299:1 14317:1 14332:1 14342:1 14354:1 14355:2 14365:1 14381:1 14409:1 14429:1 14440:1 14460:1 14462:2 14467:1 14475:1 14476:1 14479:2 14480:1 14487:1 14497:1 14512:1 14520:2 14526:1 14534:1 14535:1 14575:1 14588:1 14595:1 14602:2 14637:1 14654:1 14656:1 14663:1 14678:1 14708:1 14733:4 14744:1 14747:1 14749:1 14754:3 14763:1 14769:1 14770:1 14773:1 14774:1 14782:3 14786:1 14790:1 14797:2 14812:4 14820:1 14839:1 14843:1 14878:1 14888:1 14898:2 14903:1 14923:2 14962:2 14970:1 14982:1 15021:1 15048:3 15070:2 15098:1 15100:1 15118:1 15120:1 15121:1 15131:1 15137:1 15140:2 15141:1 15147:1 15173:2 15174:1 15180:1 15193:2 15231:1 15261:1 15265:1 15287:2 15295:1 15297:2 15307:1 15323:1 15348:1 15370:1 15381:1 15390:1 15406:1 15407:1 15408:2 15413:2 15427:1 15459:1 15489:1 15490:1 15504:2 15524:4 15532:1 15555:1 15572:1 15579:1 15610:1 15629:1 15635:3 15652:1 15668:1 15672:1 15689:1 15712:1 15714:2 15742:1 15785:1 15846:1 15860:1 15864:1 15898:2 15901:1 15905:1 15918:1 15936:1 15940:1 15950:1 15957:1 16005:1 16033:1 16035:1 16062:1 16066:1 16089:2 16100:1 16109:1 16111:1 16132:1 16145:1 16154:1 16158:1 16160:1 16164:1 16178:1 16179:1 16240:1 16258:1 16261:1 16263:3 16282:1 16289:2 16309:2 16357:1 16367:1 16371:1 16375:1 16379:1 16383:1 16387:1 16390:1 16392:1 16408:1 16443:1 16447:2 16451:1 16456:1 16464:1 16468:1 16469:1 16486:2 16512:2 16563:1 16575:1 16583:1 16586:1 16604:1 16608:1 16616:1 16630:1 16635:1 16645:1 16657:1 16668:1 16675:1 16678:2 16685:1 16713:2 16716:1 16718:1 16720:1 16721:1 16729:1 16743:1 16744:1 16750:1 16751:1 16766:2 16767:2 16768:1 16770:1 16783:1 16786:2 16800:1 16802:1 16803:1 16808:1 16823:1 16848:1 16850:1 16891:1 16898:1 16906:1 16937:1 16942:1 16958:1 16961:1 16966:3 16973:2 16990:1 16991:1 17021:2 17022:1 17028:1 17045:1 17050:3 17076:1 17083:1 17094:2 17101:1 17127:1 17140:4 17166:2 17186:1 17284:1 17288:1 17291:6 17298:1 17300:1 17312:1 17319:1 17326:1 17328:1 17341:1 17360:1 17365:1 17441:1 17447:1 17471:1 17486:1 17492:1650 17497:1 17520:1 17539:1 17541:1 17551:1 17555:1 17599:1 17628:1 17668:1 17669:1 17690:1 17691:1 17755:1 17793:1 17815:1 17838:1 17846:1 17902:1 17914:1 17933:1 17938:1 17945:1 17991:1 18003:2 18020:1 18028:1 18032:1 18042:1 18055:1 18087:2 18107:1 18108:1 18110:4 18145:1 18161:1 18185:1 18196:1 18198:1 18217:1 18254:1 18269:7 18333:1 18366:1 18380:3 18383:1 18398:1 18415:3 18423:1 18471:1 18485:2 18494:2 18503:1 18507:2 18525:1 18535:1 18544:1 18549:1 18566:1 18584:2 18592:1 18594:1 18605:1 18606:2 18619:1 18622:1 18651:1 18667:1 18672:3 18676:1 18695:1 18720:1 18740:1 18757:1 18773:1 18776:2 18778:1 18849:4 18856:1 18892:1 18915:3 18921:3 18928:1 18929:1 18932:1 18949:1 18958:2 18965:1 18983:2 18985:1 18995:1 19001:1 19003:1 19005:1 19011:1 19033:1 19044:1 19054:1 19057:1 19061:2 19078:2 19080:1 19097:1 19109:1 19115:1 19202:1 19208:2 19214:1 19215:1 19238:2 19240:1 19242:2 19253:1 19268:1 19274:1 19277:1 19278:1 19297:1 19358:1 19388:2 19424:1 19426:1 19435:1 19462:1 19465:1 19471:1 19483:1 19485:1 19487:1 19488:1 19493:1 19510:1 19515:1 19518:1 19525:1 19558:2 19579:1 19596:2 19601:1 19603:1 19612:1 19623:2 19624:1 19636:2 19647:2 19648:1 19651:2 19706:1 19708:1 19710:1 19722:1 19743:1 19758:1 19785:1 19804:1 19809:2 19885:1 19928:1 19934:1 19957:1 19968:2 20012:1 20018:1 20033:2 20077:1 20089:1 20091:2 20096:1 20109:1 20131:1 20139:1 20143:1 20174:1 20190:1 20196:1 20216:1 20231:1 20234:1 20247:1 20251:1 20290:1 20307:1 20370:2 20401:2 20407:1 20411:1 20415:1 20421:6 20422:1 20433:3 20446:1 20455:1 20462:1 20477:2 20481:1 20482:1 20483:1 20486:1 20488:1 20529:2 20561:1 20571:1 20577:3 20580:1 20583:1 20591:1 20594:1 20597:1 20608:1 20609:1 20610:3 20613:1 20624:1 20625:2 20627:1 20654:1 20659:1 20694:2 20704:1 20716:1 20727:1 20754:1 20762:1 20775:2 20776:1 20793:1 20796:2 20803:1 20804:2 20823:1 20828:1 20841:1 20864:1 20871:1 20894:2 20901:1 20913:1 20923:1 20931:1 20933:1 20942:1 20960:1 20975:1 20980:3 20988:1 20994:2 21004:1 21006:1 21007:2 21011:2 21017:1 21025:1 21030:1 21040:1 21053:1 21067:1 21072:1 21080:1 21082:2 21111:2 21117:1 21120:1 21121:1 21132:1 21159:2 21173:3 21185:2 21195:1 21233:1 21236:1 21241:1 21242:1 21252:1 21254:2 21260:1 21277:1 21280:1 21305:1 21313:1 21315:1 21320:1 21323:1 21329:1 21337:2 21345:1 21347:1 21430:5 21435:1 21438:1 21439:1 21444:1 21449:1 21478:1 21503:1 21516:2 21554:2 21560:1 21568:2 21579:1 21587:1 21593:1 21594:1 21603:1 21632:2 21656:1 21692:2 21709:5 21729:1 21730:1 21731:1 21777:1 21850:1 21874:1 21895:1 21896:2 21904:1 21909:1 21911:1 21919:2 21923:1 21925:1 21927:2 21954:2 21967:1 21968:1 21975:1 21987:2 22024:2 22030:1 22040:1 22055:1 22066:1 22074:1 22097:1 22105:1 22119:1 22133:1 22137:1 22148:3 22152:1 22157:2 22176:1 22188:1 22189:1 22202:1 22208:2 22215:1 22224:1 22248:1 22270:1 22283:1 22291:1 22309:1 22323:1 22325:1 22333:1 22340:1 22351:1 22382:1 22387:1 22391:1 22405:1 22409:1 22424:1 22438:1 22449:1 22471:1 22476:1 22502:1 22568:3 22569:1 22572:1 22578:1 22586:1 22614:1 22634:2 22652:1 22666:1 22678:2 22679:1 22707:3 22717:1 22718:1 22728:1 22737:1 22747:1 22759:1 22762:1 22779:1 22788:3 22797:1 22830:1 22838:1 22876:2 22885:1 22887:1 22935:1 22948:1 22956:3 22963:1 22967:2 22988:1 23000:1 23003:6 23007:1 23052:1 23068:1 23078:1 23094:1 23103:1 23111:1 23119:1 23121:1 23127:1 23128:2 23135:1 23138:1 23156:1 23164:1 23173:1 23190:1 23191:1 23194:1 23199:1 23219:1 23222:1 23224:1 23230:1 23231:1 23240:1 23241:1 23245:3 23247:1 23250:1 23271:1 23277:1 23286:1 23315:1 23373:2 23383:1 23415:1 23416:1 23426:1 23486:1 23518:1 23535:1 23554:1 23608:2 23628:1 23633:3 23637:1 23675:4 23694:2 23711:1 23718:2 23731:1 23735:1 23738:2 23751:1 23766:1 23783:1 23791:1 23816:1 23821:1 23822:1 23850:1 23864:1 23865:1 23866:3 23873:2 23878:1 23879:2 23897:1 23898:1 23901:1 23902:1 23904:1 23913:2 23914:1 23918:2 23935:3 23936:1 23960:1 23964:2 23966:1 23986:1 23987:1 24008:1 24040:2 24063:1 24085:1 24091:1 24099:1 24119:1 24141:1 24143:1 24151:1 24153:1 24171:1 24188:1 24228:1 24251:1 24267:1 24268:1 24271:4 24273:1 24298:1 24324:2 24330:1 24338:1 24352:2 24367:1 24377:1 24397:1 24420:1 24430:2 24433:1 24436:1 24442:1 24443:1 24452:1 24463:1 24466:2 24490:1 24503:1 24533:3 24542:1 24566:1 24579:1 24598:6 24638:1 24643:2 24655:1 24672:1 24675:1 24708:1 24720:1 24721:2 24730:1 24734:1 24759:1 24765:1 24809:1 24836:2 24839:1 24854:1 24856:1 24861:1 24865:1 24885:1 24899:4 24928:3 24941:1 24957:1 24965:1 24988:1 24993:1 25000:1 25018:1 25033:1 25045:1 25071:2 25079:2 25134:1 25161:1 25219:1 25248:2 25277:2 25281:2 25296:1 25338:1 25345:1 25347:1 25349:1 25370:1 25387:1 25393:1 25434:1 25452:1 25460:1 25466:1 25473:2 25488:1 25515:1 25537:1 25539:1 25543:1 25545:2 25587:1 25593:1 25597:1 25623:1 25635:3 25641:1 25662:1 25663:1 25678:1 25704:2 25706:1 25710:1 25719:1 25720:1 25724:2 25728:1 25767:3 25769:1 25770:1 25778:3 25780:1 25785:1 25786:1 25788:1 25790:1 25793:2 25798:1 25799:1 25804:1 25811:1 25835:2 25842:1 25850:1 25866:4 25871:1 25874:1 25877:2 25878:1 25897:1 25912:1 25924:1 25961:1 26013:2 26026:1 26049:1 26057:1 26068:2 26070:2 26071:1 26072:1 26084:2 26092:1 26125:1 26131:1 26166:1 26174:1 26184:1 26218:1 26250:1 26275:1 26280:3 26312:1 26322:1 26337:1 26348:1 26352:2 26364:1 26378:1 26400:1 26402:1 26409:1 26422:1 26429:1 26442:1 26446:8 26451:1 26468:1 26482:5 26498:5 26531:1 26545:1 26548:1 26565:1 26574:2 26575:1 26576:1 26598:2 26609:5 26647:8 26652:1 26655:1 26659:1 26666:2 26681:1 26709:1 26723:2 26762:1 26782:1 26821:1 26824:1 26828:1 26834:1 26843:1 26853:1 26866:2 26872:1 26898:1 26909:1 26912:1 26913:1 26962:1 26968:1 26977:1 26981:1 26984:2 26990:1 27001:1 27006:1 27010:1 27026:1 27029:1 27050:2 27062:1 27078:1 27084:1 27086:1 27095:1 27118:1 27122:1 27133:1 27137:2 27180:2 27190:1 27227:1 27232:1 27250:1 27276:1 27286:2 27358:1 27360:1 27364:1 27368:1 27372:2 27418:1 27431:1 27433:1 27473:1 27479:4 27481:1 27489:2 27497:1 27499:1 27526:1 27529:1 27538:1 27557:2 27565:3 27608:2 27615:1 27625:2 27633:3 27641:1 27643:1 27691:1 27696:4 27704:1 27730:1 27746:1 27756:2 27758:1
12 1:1 37:1 38:1 43:1 52:1 57:2 74:1 87:3 92:1 111:1 141:1 165:1 179:2 182:1 195:1 202:1 209:1 210:1 277:1 282:1 292:1 294:1 313:1 328:4 356:2 363:3 378:2 379:1 388:1 413:1 418:3 423:1 430:1 441:2 457:1 528:1 535:1 603:2 609:1 637:1 648:1 666:1 693:1 694:1 698:2 700:1 725:1 739:1 790:1 794:1 820:1 861:5 867:1 870:1 881:1 888:4 893:1 903:2 909:2 923:1 941:2 949:2 952:1 981:1 990:1 994:1 1019:1 1022:1 1037:1 1054:1 1068:1 1069:1 1073:1 1082:1 1088:1 1104:1 1125:1 1132:1 1140:1 1154:1 1167:1 1192:1 1193:1 1195:1 1203:2 1217:2 1222:1 1231:1 1240:1 1249:2 1277:2 1287:1 1301:1 1310:1 1331:2 1344:3 1349:1 1354:1 1357:1 1369:1 1397:5 1448:1 1450:1 1451:2 1454:1 1457:5 1459:1 1461:1 1478:1 1482:1 1484:1 1493:1 1506:1 1513:1 1516:1 1534:2 1535:2 1541:1 1556:1 1559:1 1562:1 1564:2 1565:1 1568:1 1574:1 1623:2 1625:1 1656:2 1660:1 1668:4 1680:2 1683:1 1691:1 1695:2 1696:1 1730:1 1740:1 1762:1 1768:1 1791:1 1795:1 1810:1 1815:1 1831:2 1834:1 1839:3 1844:1 1848:1 1864:2 1877:1 1890:2 1891:1 1897:2 1905:1 1909:1 1922:2 1941:1 1978:1 2006:1 2007:3 2010:1 2030:1 2039:1 2058:1 2063:1 2080:1 2086:1 2089:1 2096:1 2122:2 2148:1 2164:1 2169:1 2191:5 2197:2 2200:1 2204:1 2208:1 2210:2 2235:1 2236:1 2244:2 2245:2 2246:2 2248:1 2249:4 2251:1 2253:2 2256:2 2258:2 2261:1 2262:1 2264:2 2265:1 2266:1 2269:1 2270:5 2272:1 2276:1 2280:1 2281:1 2287:2 2307:1 2338:4 2339:1 2354:2 2356:1 2368:1 2369:1 2381:1 2418:2 2451:1 2452:1 2459:1 2487:1 2501:1 2505:1 2514:2 2523:1 2526:4 2545:1 2550:1 2572:1 2575:1 2580:1 2583:1 2589:1 2620:1 2640:1 2662:1 2666:1 2699:4 2703:1 2706:1 2721:1 2724:1 2741:2 2745:1 2756:4 2769:1 2770:1 2807:1 2815:1 2832:1 2846:5 2852:1 2857:2 2860:1 2898:1 2912:1 2919:1 2927:1 2928:2 2937:1 2951:1 2957:1 2965:1 2972:1 2973:1 2990:1 3000:1 3008:1 3021:1 3053:1 3065:1 3080:1 3083:1 3084:1 3113:1 3135:1 3143:1 3155:1 3160:1 3166:1 3174:1 3191:2 3207:1 3223:1 3232:2 3244:6 3247:1 3257:1 3260:1 3322:1 3338:1 3368:1 3399:1 3402:1 3407:1 3426:1 3431:1 3442:1 3460:2 3462:1 3489:1 3497:1 3500:1 3504:1 3512:1 3515:1 3529:1 3534:1 3548:1 3559:1 3568:1 3577:4 3584:1 3586:1 3588:1 3591:1 3600:1 3607:1 3612:2 3648:3 3674:1 3675:2 3697:1 3703:1 3713:1 3717:1 3721:3 3725:1 3726:2 3741:1 3753:1 3754:1 3763:1 3805:1 3806:2 3825:1 3832:1 3844:2 3846:1 3849:1 3872:1 3876:1 3888:1 3904:1 3913:1 3916:1 3921:2 3932:3 3972:1 3973:1 3992:1 4014:1 4023:2 4030:1 4072:1 4104:5 4107:2 4113:1 4117:1 4123:1 4145:1 4163:5 4165:1 4167:1 4175:1 4180:1 4192:1 4216:1 4231:2 4239:2 4258:1 4267:1 4281:1 4310:1 4346:1 4356:1 4357:1 4375:1 4386:1 4404:1 4406:1 4414:1 4416:1 4423:2 4431:2 4472:1 4494:2 4506:1 4521:1 4526:1 4550:3 4578:1 4579:1 4581:1 4605:1 4656:1 4677:1 4700:1 4710:8 4711:2 4722:1 4733:1 4738:2 4749:1 4750:1 4759:1 4814:6 4820:1 4828:3 4830:2 4833:1 4836:1 4838:1 4841:1 4842:1 4844:1 4845:2 4850:2 4854:1 4856:2 4857:2 4860:1 4879:1 4887:1 4891:1 4915:1 4916:3 4920:1 4934:1 4943:1 4961:1 4993:1 4996:1 5045:2 5057:1 5095:1 5112:1 5118:1 5130:2 5133:1 5141:3 5158:1 5162:1 5163:6 5188:8 5242:1 5269:1 5274:1 5335:1 5355:2 5361:1 5379:1 5382:1 5392:1 5400:1 5402:1 5407:1 5418:1 5438:1 5452:1 5469:1 5470:3 5473:1 5475:1 5476:1 5478:1 5481:1 5484:1 5496:1 5504:1 5511:1 5527:2 5534:1 5639:1 5663:1 5665:1 5669:1 5705:1 5750:1 5752:6 5755:1 5777:1 5779:1 5787:1 5788:1 5794:2 5797:1 5813:1 5840:1 5844:1 5864:1 5868:2 5877:1 5903:1 5917:2 5934:1 5960:1 5994:2 6003:1 6007:1 6008:1 6016:1 6069:1 6076:2 6092:4 6096:2 6098:1 6101:3 6102:1 6109:1 6110:1 6113:1 6115:3 6116:1 6117:9 6119:1 6120:2 6158:1 6169:2 6246:2 6254:1 6260:2 6283:1 6308:1 6318:1 6362:1 6375:1 6399:1 6414:2 6420:1 6421:1 6428:1 6436:1 6439:1 6455:1 6472:1 6486:1 6490:1 6492:1 6493:1 6516:2 6519:1 6536:1 6545:3 6566:1 6568:1 6574:1 6578:1 6614:1 6629:1 6650:1 6656:1 6714:1 6745:1 6762:1 6764:1 6798:1 6877:4 6878:2 6883:1 6895:1 6924:2 6932:1 6949:1 6958:1 6964:1 6971:1 6974:1 6975:2 6981:1 6990:1 7009:1 7047:1 7098:1 7117:3 7131:1 7143:3 7144:2 7146:3 7155:1 7180:1 7198:1 7211:1 7250:2 7263:1 7290:2 7293:1 7295:1 7328:7 7329:6 7336:1 7337:1 7344:1 7346:1 7351:1 7352:1 7356:2 7367:1 7384:2 7394:30 7410:6 7412:1 7419:2 7422:1 7432:1 7457:1 7460:1 7480:1 7488:2 7489:2 7522:2 7550:1 7587:1 7594:1 7604:1 7614:2 7629:1 7633:1 7645:1 7651:1 7689:1 7693:1 7725:2 7733:1 7768:1 7770:1 7777:1 7811:1 7852:2 7867:1 7871:5 7902:1 7905:1 7916:1 7947:1 7961:1 7999:1 8001:1 8008:1 8021:1 8062:1 8072:1 8091:1 8111:1 8124:1 8133:1 8140:1 8166:1 8167:1 8204:2 8206:2 8207:1 8212:1 8217:1 8219:1 8220:1 8221:1 8238:1 8244:1 8247:2 8259:1 8262:1 8277:1 8285:1 8287:2 8320:1 8324:2 8335:1 8338:1 8366:1 8433:1 8450:1 8468:1 8483:2 8490:1 8491:1 8501:1 8511:2 8523:1 8528:1 8580:1 8587:1 8591:1 8599:2 8630:1 8659:1 8662:1 8663:1 8676:1 8688:2 8689:1 8692:1 8707:1 8710:1 8713:1 8717:1 8732:1 8733:1 8740:1 8750:4 8751:1 8787:1 8796:2 8799:1 8801:1 8810:1 8813:2 8816:1 8824:1 8841:3 8843:3 8844:1 8866:1 8880:1 8883:2 8902:1 8910:1 8912:1 8914:2 8918:1 8922:1 8930:1 8931:2 8948:1 8960:1 8965:1 8978:1 8990:1 8995:1 8998:1 9006:1 9011:1 9019:1 9031:1 9055:1 9066:7 9080:1 9102:2 9108:1 9109:1 9132:1 9133:1 9136:1 9147:3 9153:1 9161:1 9162:1 9165:1 9172:1 9175:2 9190:1 9191:2 9198:1 9203:2 9220:1 9244:1 9250:1 9254:3 9257:1 9264:1 9267:1 9287:6 9303:3 9305:1 9307:1 9312:1 9369:1 9397:1 9433:4 9469:1 9480:1 9481:4 9484:1 9492:1 9505:1 9510:1 9523:1 9526:3 9529:1 9583:1 9594:4 9598:1 9599:2 9617:1 9628:1 9650:1 9661:1 9665:1 9693:1 9719:1 9744:1 9747:1 9760:1 9774:1 9776:1 9778:1 9797:1 9802:1 9808:1 9831:1 9839:1 9840:1 9876:2 9882:2 9895:1 9902:1 9954:1 9961:3 9963:1 9995:3 9999:1 10018:1 10020:1 10024:1 10027:1 10039:2 10054:1 10057:1 10059:4 10060:1 10063:1 10066:1 10072:2 10112:1 10135:1 10145:1 10148:1 10155:6 10162:1 10163:1 10182:2 10191:1 10210:1 10214:1 10215:1 10237:1 10266:1 10274:1 10337:1 10357:2 10359:4 10365:2 10380:1 10386:1 10405:1 10419:1 10424:1 10442:1 10448:2 10473:1 10488:3 10500:1 10519:1 10524:1 10526:1 10537:1 10543:1 10547:1 10559:1 10573:1 10578:1 10583:1 10585:1 10594:1 10595:1 10627:1 10631:1 10633:2 10700:2 10710:1 10711:1 10714:1 10740:1 10750:1 10767:1 10777:1 10781:2 10804:1 10812:5 10855:1 10866:2 10883:2 10888:1 10889:1 10896:1 10905:1 10918:2 10961:1 10975:1 10978:1 10987:1 10989:1 10992:2 10999:1 11008:4 11047:1 11053:2 11054:1 11061:1 11071:1 11074:2 11076:1 11077:1 11080:2 11092:1 11096:3 11125:1 11126:1 11130:2 11142:1 11148:1 11151:2 11158:1 11159:1 11169:1 11189:1 11194:1 11233:1 11244:2 11252:1 11253:1 11268:1 11284:1 11310:1 11316:1 11333:1 11344:1 11352:1 11364:1 11371:1 11424:1 11442:1 11443:6 11462:1 11464:1 11465:1 11477:3 11488:2 11494:1 11501:1 11507:2 11512:1 11528:1 11529:1 11549:2 11560:1 11565:1 11569:1 11581:4 11607:1 11624:2 11630:1 11668:1 11710:2 11713:1 11731:1 11752:1 11756:1 11761:1 11775:1 11785:1 11789:1 11855:2 11869:1 11874:1 11902:1 11910:1 11913:1 11928:1 11972:2 11976:1 11977:1 11979:2 11980:1 11999:1 12000:1 12001:2 12009:1 12037:1 12049:1 12058:1 12063:2 12070:2 12075:1 12139:1 12149:1 12174:1 12185:1 12209:1 12244:1 12269:1 12272:1 12285:1 12292:1 12317:1 12337:1 12348:1 12349:1 12355:2 12356:3 12360:2 12376:1 12381:1 12386:1 12396:1 12402:1 12403:2 12410:1 12438:2 12443:1 12445:1 12471:1 12506:1 12507:1 12515:2 12522:1 12533:1 12548:2 12570:1 12575:3 12586:1 12590:2 12603:1 12612:1 12632:2 12639:1 12648:1 12664:1 12698:1 12703:1 12718:1 12721:1 12815:4 12827:1 12844:1 12851:1 12852:2 12857:1 12859:7 12860:1 12861:1 12862:1 12881:2 12884:1 12902:2 12919:2 12937:1 12939:1 12949:2 12986:1 12991:1 12997:3 13008:1 13010:4 13013:1 13015:1 13055:1 13056:1 13068:1 13081:1 13093:1 13094:2 13108:2 13109:1 13114:1 13128:6 13134:1 13148:3 13157:1 13164:2 13166:1 13172:1 13181:1 13195:2 13203:1 13204:1 13245:1 13274:1 13276:1 13280:1 13320:2 13321:1 13330:4 13352:1 13360:1 13370:1 13386:2 13392:1 13399:1 13437:1 13468:1 13483:1 13484:1 13498:1 13499:2 13502:1 13504:1 13517:1 13527:2 13534:1 13537:1 13547:1 13553:1 13562:1 13577:1 13592:1 13606:1 13628:1 13657:1 13678:1 13686:2 13691:2 13695:1 13705:1 13709:1 13718:1 13734:3 13758:1 13763:1 13774:4 13812:1 13824:1 13841:1 13846:1 13848:1 13854:1 13873:1 13874:2 13904:1 13915:1 13919:3 13924:1 13926:1 13935:1 13956:1 13990:1 14009:1 14017:3 14029:1 14045:1 14049:2 14050:1 14057:1 14059:1 14077:1 14112:1 14129:1 14150:1 14151:2 14155:3 14160:2 14167:1 14170:1 14176:1 14200:1 14205:1 14245:1 14253:1 14299:1 14317:1 14332:1 14342:1 14354:1 14355:2 14365:1 14381:1 14409:1 14429:1 14440:1 14460:1 14462:2 14463:1 14467:1 14475:1 14476:1 14479:2 14480:1 14487:1 14497:1 14512:1 14520:2 14526:1 14534:1 14535:1 14575:1 14588:1 14595:1 14602:2 14611:1 14637:1 14654:1 14656:1 14663:1 14678:1 14708:1 14733:4 14736:1 14744:1 14747:1 14749:1 14754:3 14757:1 14763:1 14769:2 14770:1 14773:1 14774:1 14782:3 14786:1 14790:1 14797:2 14812:4 14820:1 14839:1 14843:2 14878:1 14888:1 14898:2 14903:1 14923:2 14962:2 14970:1 14982:1 15001:1 15021:1 15048:3 15070:2 15093:1 15098:1 15100:1 15118:1 15120:1 15121:1 15131:1 15137:1 15140:2 15141:1 15147:1 15173:2 15174:1 15180:1 15193:2 15231:1 15261:1 15265:1 15287:2 15295:1 15297:2 15306:1 15307:1 15323:1 15348:1 15370:1 15381:1 15390:1 15406:1 15407:1 15408:2 15413:2 15427:1 15459:1 15489:1 15490:1 15504:2 15524:4 15532:1 15555:1 15572:1 15579:1 15610:1 15629:1 15635:3 15652:1 15668:1 15672:1 15686:1 15689:1 15712:1 15714:2 15742:1 15764:1 15785:1 15846:1 15860:1 15864:1 15874:1 15898:2 15901:1 15905:1 15918:1 15936:1 15940:1 15950:1 15957:1 16005:1 16033:1 16035:1 16062:1 16066:1 16089:2 16100:1 16109:1 16111:1 16132:1 16145:1 16152:1 16154:1 16158:1 16160:1 16164:1 16178:1 16179:1 16240:1 16258:1 16261:1 16263:3 16282:1 16289:3 16309:2 16357:2 16367:1 16371:1 16375:1 16379:1 16383:1 16387:1 16390:1 16392:1 16408:1 16443:1 16447:2 16451:1 16456:1 16464:1 16468:1 16469:1 16486:2 16512:2 16563:1 16575:1 16583:1 16586:1 16604:1 16608:1 16616:1 16630:1 16635:1 16645:1 16657:1 16668:1 16675:1 16678:2 16685:1 16713:2 16716:1 16718:1 16720:1 16721:1 16729:1 16743:1 16744:1 16750:1 16751:1 16766:2 16767:2 16768:1 16770:1 16780:1 16783:1 16786:2 16787:1 16800:1 16802:1 16803:1 16808:1 16823:1 16848:1 16850:1 16860:1 16873:1 16891:1 16898:1 16906:1 16937:1 16942:1 16958:1 16961:1 16966:3 16973:2 16990:1 16991:1 17021:2 17022:1 17028:1 17043:1 17045:1 17050:3 17076:1 17083:1 17094:2 17101:1 17127:1 17140:4 17166:2 17186:1 17284:1 17288:1 17291:6 17298:1 17300:1 17312:1 17319:1 17326:1 17328:1 17341:1 17360:1 17365:1 17441:1 17447:1 17471:1 17486:1 17492:1737 17497:1 17520:1 17539:1 17541:1 17551:1 17555:1 17599:1 17628:1 17668:1 17669:1 17690:1 17691:1 17755:1 17793:1 17815:1 17838:1 17846:1 17902:1 17912:1 17914:1 17933:1 17938:1 17945:1 17991:1 18003:2 18020:1 18028:1 18032:1 18042:1 18055:1 18087:2 18107:1 18108:1 18110:4 18145:1 18161:1 18185:1 18196:1 18198:1 18217:2 18237:1 18254:1 18269:8 18271:1 18333:1 18366:1 18380:3 18383:1 18398:1 18415:4 18423:1 18449:1 18471:1 18485:2 18494:2 18503:1 18507:2 18525:1 18535:1 18544:1 18549:1 18566:1 18584:2 18590:1 18592:1 18594:1 18605:1 18606:2 18619:1 18622:1 18651:1 18667:1 18672:3 18675:1 18676:1 18695:1 18720:1 18740:1 18757:1 18773:1 18776:2 18778:2 18849:4 18856:1 18892:1 18915:3 18921:3 18928:1 18929:1 18932:1 18949:1 18958:2 18965:1 18983:2 18985:1 18992:1 18995:1 19001:1 19003:1 19005:1 19011:1 19033:1 19044:1 19054:1 19057:1 19061:2 19078:2 19080:1 19097:1 19109:1 19115:1 19202:1 19208:2 19214:1 19215:1 19238:2 19240:1 19242:2 19253:1 19268:1 19274:1 19277:1 19278:1 19297:1 19358:1 19388:2 19416:1 19424:1 19426:1 19435:1 19451:1 19462:1 19465:1 19471:1 19483:1 19485:1 19487:1 19488:1 19493:1 19510:1 19515:1 19518:1 19525:1 19558:2 19579:1 19596:2 19601:1 19603:1 19611:1 19612:1 19623:2 19624:1 19636:2 19647:2 19648:1 19651:2 19706:1 19708:1 19710:1 19722:1 19743:1 19758:1 19759:1 19778:1 19785:1 19804:1 19809:2 19885:1 19928:1 19934:1 19957:1 19968:2 20012:1 20018:1 20033:2 20077:1 20079:1 20089:1 20091:2 20096:1 20109:1 20131:1 20139:1 20143:1 20174:1 20190:1 20196:1 20201:1 20203:1 20216:1 20231:1 20234:1 20247:1 20251:1 20290:1 20307:1 20349:1 20370:2 20376:1 20401:2 20407:1 20411:1 20415:1 20421:6 20422:1 20433:3 20446:1 20455:1 20462:1 20477:2 20481:1 20482:1 20483:1 20486:1 20488:1 20529:2 20561:1 20571:1 20577:3 20580:1 20583:1 20591:1 20594:1 20597:1 20608:1 20609:1 20610:3 20613:1 20624:1 20625:2 20627:1 20654:1 20659:1 20670:1 20694:2 20704:1 20716:1 20727:1 20754:1 20762:1 20775:2 20776:1 20793:1 20796:2 20803:1 20804:2 20823:1 20828:1 20841:1 20864:1 20871:1 20894:2 20901:1 20913:1 20923:1 20931:1 20933:1 20942:1 20960:1 20975:1 20980:3 20988:1 20994:2 21004:1 21006:2 21007:2 21011:2 21017:1 21025:1 21030:1 21040:1 21053:1 21067:1 21072:1 21080:1 21082:2 21111:2 21117:1 21120:1 21121:1 21132:1 21159:2 21173:3 21185:2 21195:1 21223:1 21233:1 21236:1 21241:1 21242:1 21252:1 21254:2 21260:1 21277:1 21280:1 21287:1 21305:1 21313:1 21315:1 21320:1 21323:1 21329:1 21337:2 21345:1 21347:1 21430:6 21435:1 21438:1 21439:1 21444:1 21449:1 21452:1 21478:1 21503:1 21516:2 21554:2 21560:1 21568:2 21579:1 21584:1 21587:1 21593:1 21594:1 21603:1 21632:2 21656:1 21692:2 21709:5 21729:1 21730:1 21731:1 21777:1 21850:1 21874:1 21895:1 21896:2 21904:1 21909:1 21911:1 21919:2 21923:1 21925:1 21927:2 21954:2 21967:1 21968:1 21975:1 21986:1 21987:2 22024:2 22030:1 22040:1 22046:1 22055:2 22066:1 22074:1 22097:1 22105:1 22119:1 22128:1 22133:1 22137:1 22148:3 22152:1 22157:2 22176:1 22188:1 22189:1 22202:1 22208:2 22215:1 22224:1 22248:1 22270:1 22283:1 22291:1 22309:1 22323:1 22325:1 22333:2 22340:1 22351:1 22382:1 22387:1 22391:1 22405:1 22409:1 22424:1 22438:1 22449:1 22471:1 22476:1 22502:1 22568:3 22569:1 22572:1 22578:1 22586:1 22614:1 22634:2 22652:1 22666:1 22678:2 22679:1 22707:3 22717:1 22718:1 22728:1 22737:1 22747:1 22759:1 22762:1 22779:1 22788:3 22797:1 22830:1 22838:1 22876:2 22885:1 22887:1 22935:1 22948:1 22956:4 22963:1 22967:2 22988:1 23000:1 23003:6 23007:1 23052:1 23068:1 23078:1 23094:1 23103:1 23108:1 23111:1 23119:1 23121:1 23127:1 23128:2 23135:1 23138:1 23156:1 23162:1 23164:1 23165:1 23173:1 23190:1 23191:1 23194:1 23199:1 23219:1 23222:1 23224:1 23230:1 23231:1 23240:1 23241:1 23245:3 23247:1 23250:1 23267:1 23269:1 23271:1 23277:1 23286:1 23315:1 23373:2 23383:1 23415:1 23416:1 23426:1 23453:1 23486:1 23518:1 23535:1 23554:1 23608:2 23628:1 23633:3 23637:1 23675:4 23694:2 23711:1 23718:2 23731:1 23735:1 23738:2 23743:1 23751:1 23766:1 23783:1 23791:1 23816:1 23821:1 23822:1 23850:1 23864:1 23865:1 23866:3 23873:2 23878:1 23879:2 23897:1 23898:1 23901:1 23902:1 23904:1 23913:2 23914:1 23918:2 23935:3 23936:1 23960:1 23964:2 23966:1 23986:1 23987:1 24008:1 24040:2 24063:1 24085:1 24091:1 24099:1 24119:1 24141:1 24143:1 24151:1 24153:1 24171:1 24188:1 24228:1 24251:1 24267:1 24268:1 24271:4 24273:1 24298:1 24324:2 24330:1 24338:1 24352:2 24367:1 24377:1 24397:1 24420:1 24430:2 24433:1 24436:1 24442:1 24443:1 24452:1 24463:1 24466:2 24490:1 24503:1 24533:3 24542:1 24566:1 24579:1 24598:6 24638:1 24643:2 24655:1 24672:1 24675:1 24708:1 24720:1 24721:2 24730:1 24731:1 24734:1 24759:1 24765:1 24809:1 24836:2 24839:1 24853:1 24854:1 24856:1 24860:1 24861:1 24865:1 24885:1 24899:4 24928:3 24936:1 24941:1 24957:1 24965:1 24988:1 24993:1 25000:1 25018:1 25033:1 25045:1 25071:2 25079:2 25134:1 25161:1 25219:1 25248:2 25277:2 25281:2 25296:1 25338:1 25345:1 25347:1 25349:1 25370:1 25387:1 25393:1 25434:1 25452:1 25460:1 25466:1 25473:2 25488:1 25515:1 25537:1 25539:1 25543:1 25545:2 25587:1 25593:1 25597:1 25623:1 25635:3 25641:1 25662:1 25663:1 25678:1 25704:2 25706:1 25710:1 25717:1 25719:1 25720:1 25724:2 25728:1 25767:3 25769:1 25770:1 25778:3 25780:1 25785:1 25786:1 25788:1 25790:1 25793:2 25798:1 25799:1 25804:1 25811:1 25835:2 25842:1 25850:1 25866:4 25871:1 25874:1 25877:2 25878:1 25894:1 25897:1 25912:1 25924:1 25961:1 26013:2 26026:1 26049:1 26057:1 26068:2 26070:2 26071:1 26072:1 26084:2 26092:1 26125:1 26131:1 26166:1 26174:1 26184:1 26218:1 26250:1 26266:1 26275:1 26280:3 26312:1 26322:1 26337:1 26348:1 26352:3 26364:1 26378:1 26400:1 26402:1 26409:1 26422:1 26429:2 26442:1 26446:9 26451:1 26468:1 26482:5 26498:6 26504:1 26531:1 26545:1 26548:1 26565:1 26574:2 26575:1 26576:1 26598:2 26609:5 26641:1 26647:8 26652:1 26655:1 26659:1 26666:2 26681:1 26709:1 26723:2 26751:1 26762:1 26782:1 26811:1 26821:1 26824:1 26828:2 26834:1 26843:1 26853:1 26866:2 26872:1 26898:1 26909:1 26912:1 26913:1 26962:1 26968:1 26977:1 26981:2 26984:2 26990:1 27001:1 27006:1 27010:1 27026:1 27029:1 27050:2 27062:1 27078:1 27084:1 27086:1 27095:1 27118:1 27122:1 27133:1 27137:2 27180:2 27190:1 27227:1 27232:1 27250:1 27276:1 27286:2 27358:1 27360:1 27364:1 27368:1 27372:2 27418:1 27431:1 27433:1 27473:1 27479:5 27481:1 27489:2 27497:1 27499:1 27526:1 27529:1 27538:1 27557:2 27565:3 27608:2 27615:1 27625:2 27633:3 27641:1 27643:1 27678:1 27691:1 27696:4 27704:1 27730:1 27746:1 27756:2 27758:1
12 1:1 37:1 38:1 43:1 52:1 57:2 74:1 87:4 92:1 111:1 141:1 165:1 179:2 182:1 195:2 202:1 209:1 210:1 277:1 282:1 292:1 294:1 313:1 328:4 356:2 363:3 378:2 379:1 388:1 413:1 418:3 423:1 430:1 441:2 457:1 528:1 535:1 603:3 609:1 637:1 648:1 666:1 693:1 694:1 698:2 700:1 725:1 739:1 790:1 794:1 820:1 861:5 867:1 870:1 881:1 888:4 893:1 903:2 909:2 923:1 941:2 949:2 952:1 981:1 990:1 994:1 1019:1 1022:1 1037:1 1054:1 1068:1 1069:1 1073:1 1082:1 1088:1 1104:1 1125:1 1132:1 1140:1 1154:1 1167:1 1192:1 1193:1 1195:1 1203:2 1217:2 1222:1 1231:1 1240:1 1249:2 1277:2 1287:1 1301:1 1310:1 1331:2 1344:3 1349:1 1354:1 1357:1 1369:1 1397:5 1448:1 1450:1 1451:3 1454:1 1457:5 1459:1 1461:1 1478:1 1482:1 1484:1 1493:1 1506:1 1513:1 1516:1 1534:2 1535:2 1541:1 1556:1 1559:1 1562:1 1564:2 1565:1 1568:1 1574:1 1623:2 1625:2 1656:2 1660:1 1668:4 1680:2 1683:1 1691:1 1695:2 1696:1 1730:1 1740:1 1762:2 1768:1 1791:1 1795:1 1810:1 1815:1 1831:2 1834:1 1839:3 1844:1 1848:1 1864:2 1877:1 1890:2 1891:1 1897:2 1905:1 1909:1 1922:2 1941:1 1978:1 2006:1 2007:3 2010:1 2030:1 2039:1 2058:1 2060:1 2063:1 2080:1 2086:1 2089:1 2096:1 2122:2 2148:1 2164:1 2169:1 2191:5 2197:2 2200:1 2204:1 2208:1 2210:2 2235:1 2236:1 2244:2 2245:2 2246:2 2248:1 2249:4 2251:1 2253:2 2256:2 2258:2 2261:1 2262:1 2264:2 2265:2 2266:1 2269:1 2270:5 2272:1 2276:1 2280:1 2281:1 2287:2 2307:1 2338:5 2339:1 2354:2 2356:1 2368:1 2369:1 2381:1 2418:2 2451:1 2452:1 2459:1 2487:1 2501:1 2505:1 2514:2 2523:1 2526:4 2545:1 2550:1 2572:1 2575:1 2580:1 2583:1 2589:1 2620:1 2640:1 2662:1 2666:1 2699:4 2703:1 2706:1 2721:1 2724:1 2741:2 2745:1 2756:4 2769:1 2770:1 2807:1 2815:1 2832:1 2846:5 2852:1 2857:2 2860:1 2898:1 2912:1 2919:1 2927:1 2928:2 2937:1 2951:1 2957:1 2965:1 2972:1 2973:1 2990:1 3000:1 3008:1 3021:1 3053:1 3065:1 3080:1 3083:2 3084:1 3113:1 3135:1 3143:1 3155:1 3160:1 3166:1 3174:1 3178:1 3191:2 3207:1 3223:1 3232:2 3244:6 3247:1 3257:1 3260:1 3318:1 3322:1 3338:1 3368:1 3399:1 3402:1 3407:1 3426:1 3431:1 3442:1 3460:2 3462:1 3489:1 3497:1 3500:1 3504:1 3512:1 3515:1 3529:1 3534:1 3548:1 3559:1 3568:1 3577:4 3584:1 3586:1 3588:1 3591:1 3593:1 3600:1 3603:1 3607:1 3612:2 3648:4 3674:1 3675:2 3697:1 3703:1 3713:1 3717:1 3721:3 3725:1 3726:2 3741:1 3753:1 3754:1 3763:1 3805:1 3806:2 3825:1 3832:1 3844:2 3846:1 3849:1 3872:1 3876:1 3878:1 3888:1 3904:1 3913:1 3916:1 3921:2 3932:3 3972:1 3973:1 3992:1 4014:1 4023:2 4030:1 4072:1 4104:5 4107:2 4113:1 4117:1 4123:1 4145:1 4163:5 4165:1 4167:1 4175:1 4180:1 4192:1 4216:1 4231:2 4239:2 4258:1 4267:1 4281:1 4310:1 4346:1 4356:1 4357:1 4375:1 4386:2 4404:1 4406:1 4414:1 4416:1 4423:2 4431:2 4472:1 4494:2 4506:1 4517:1 4521:1 4526:1 4550:3 4578:1 4579:1 4581:1 4603:1 4605:1 4656:1 4677:1 4700:1 4710:8 4711:2 4722:1 4733:1 4738:2 4749:1 4750:1 4759:1 4814:6 4820:1 4823:1 4828:3 4830:2 4833:1 4836:1 4838:1 4841:1 4842:1 4844:1 4845:2 4850:2 4854:1 4856:2 4857:2 4860:1 4879:1 4887:1 4891:1 4915:1 4916:3 4920:1 4934:1 4943:1 4961:1 4993:1 4996:1 5045:2 5057:1 5095:1 5112:1 5118:1 5130:2 5133:1 5141:3 5158:1 5162:1 5163:6 5188:8 5242:1 5269:1 5274:1 5327:1 5335:1 5355:2 5361:1 5379:1 5382:1 5392:1 5400:1 5402:1 5407:1 5418:1 5426:1 5438:1 5452:1 5469:1 5470:3 5473:1 5475:1 5476:2 5478:1 5481:1 5484:1 5496:1 5504:1 5511:1 5519:1 5527:2 5534:1 5639:1 5663:1 5665:1 5669:1 5705:1 5750:2 5752:6 5755:1 5777:1 5779:1 5787:1 5788:1 5794:2 5797:1 5813:1 5840:1 5844:1 5864:1 5868:2 5877:1 5903:1 5906:1 5917:2 5934:1 5960:1 5994:3 6003:1 6007:1 6008:1 6016:1 6069:1 6076:2 6092:4 6096:2 6098:1 6101:3 6102:1 6109:1 6110:1 6113:1 6115:3 6116:1 6117:9 6119:1 6120:2 6158:1 6169:2 6233:1 6246:2 6254:1 6260:2 6283:1 6308:1 6318:1 6362:1 6375:1 6399:1 6414:2 6420:1 6421:1 6428:1 6436:1 6439:1 6455:1 6472:1 6486:1 6490:1 6492:1 6493:1 6516:2 6519:1 6536:1 6545:3 6566:1 6568:1 6569:1 6574:1 6578:1 6613:1 6614:1 6629:1 6650:1 6656:1 6714:1 6745:1 6762:1 6764:1 6780:1 6798:1 6877:6 6878:2 6883:1 6895:1 6924:2 6932:1 6949:1 6958:2 6964:1 6971:1 6974:1 6975:2 6981:1 6990:1 7009:1 7047:1 7098:1 7117:3 7127:1 7131:1 7143:4 7144:2 7146:3 7155:1 7180:1 7198:1 7211:1 7250:2 7263:1 7290:2 7293:1 7295:1 7328:7 7329:6 7336:1 7337:1 7344:1 7346:1 7351:1 7352:1 7356:2 7360:1 7367:1 7384:2 7394:31 7410:6 7412:1 7419:2 7422:1 7432:1 7457:1 7460:1 7480:1 7488:2 7489:2 7522:2 7550:1 7587:2 7594:1 7604:1 7614:2 7629:1 7633:1 7636:1 7645:1 7651:1 7689:1 7693:1 7725:2 7733:1 7768:1 7770:1 7777:1 7811:1 7852:2 7864:1 7867:1 7871:5 7902:1 7905:1 7916:1 7947:1 7961:1 7999:1 8001:1 8008:1 8021:1 8024:1 8062:1 8072:1 8087:1 8091:1 8111:1 8124:1 8133:1 8140:1 8166:1 8167:1 8204:3 8206:2 8207:1 8212:1 8217:1 8219:1 8220:1 8221:1 8238:1 8244:1 8247:2 8259:1 8262:1 8277:1 8285:1 8287:2 8320:1 8324:2 8335:1 8338:1 8366:1 8433:1 8450:1 8468:1 8483:2 8490:1 8491:1 8501:1 8511:2 8523:1 8528:1 8580:1 8587:1 8591:1 8599:2 8630:1 8659:1 8662:1 8663:1 8676:1 8688:2 8689:1 8692:1 8707:1 8710:1 8713:1 8717:1 8732:1 8733:1 8740:1 8750:4 8751:1 8787:1 8796:2 8799:1 8801:1 8810:1 8813:2 8816:1 8824:1 8838:1 8841:3 8843:3 8844:1 8845:1 8866:1 8880:1 8883:2 8902:1 8910:1 8912:1 8914:2 8918:1 8922:1 8930:1 8931:2 8948:1 8960:1 8965:1 8978:1 8990:1 8995:1 8998:1 9006:1 9011:1 9019:1 9031:1 9055:1 9066:7 9080:1 9102:2 9108:1 9109:1 9132:1 9133:1 9136:1 9147:3 9153:1 9161:1 9162:1 9165:1 9172:1 9175:2 9190:1 9191:2 9198:1 9203:2 9220:1 9244:1 9250:1 9254:3 9257:1 9264:1 9267:1 9287:6 9303:3 9305:1 9307:1 9308:1 9312:1 9369:1 9397:1 9433:4 9452:1 9469:1 9480:1 9481:4 9484:1 9492:1 9505:1 9510:1 9523:1 9526:3 9529:1 9583:1 9594:4 9598:1 9599:2 9617:1 9628:1 9650:1 9661:1 9665:1 9693:1 9719:1 9744:1 9747:1 9760:1 9774:1 9776:1 9778:1 9797:1 9802:1 9808:1 9831:1 9839:1 9840:1 9876:2 9882:2 9895:1 9902:1 9954:1 9961:3 9963:1 9995:3 9999:1 10018:1 10020:1 10024:1 10027:1 10039:2 10041:1 10054:1 10057:1 10059:4 10060:1 10063:1 10066:1 10072:2 10112:1 10135:1 10145:1 10148:1 10155:6 10162:1 10163:1 10182:2 10191:1 10210:1 10214:1 10215:1 10237:1 10266:1 10274:1 10337:1 10357:2 10358:1 10359:4 10365:2 10380:1 10386:1 10405:1 10419:1 10424:1 10442:1 10448:2 10473:1 10474:1 10488:3 10496:1 10500:1 10519:1 10524:1 10526:1 10537:1 10543:1 10547:1 10559:1 10573:1 10578:1 10583:1 10585:1 10594:1 10595:1 10627:1 10631:1 10633:2 10700:2 10710:1 10711:1 10714:1 10740:1 10750:1 10767:1 10777:1 10781:2 10804:1 10812:5 10855:1 10866:2 10883:2 10888:1 10889:1 10896:1 10905:1 10918:2 10961:1 10975:1 10978:1 10987:1 10989:1 10992:2 10999:1 11008:4 11047:1 11053:2 11054:1 11061:1 11071:1 11074:2 11076:1 11077:1 11080:2 11092:1 11096:3 11125:1 11126:1 11130:2 11142:1 11148:1 11151:2 11158:1 11159:1 11169:1 11189:1 11194:1 11233:1 11244:2 11252:1 11253:1 11268:1 11284:1 11310:1 11316:1 11318:1 11333:1 11344:1 11352:1 11364:1 11371:1 11424:1 11442:1 11443:6 11462:1 11464:1 11465:1 11477:3 11488:2 11494:1 11501:1 11507:2 11512:1 11528:1 11529:1 11549:2 11560:1 11565:1 11569:1 11581:4 11607:1 11624:2 11630:1 11668:2 11710:2 11713:1 11731:1 11752:1 11756:1 11761:1 11775:1 11785:1 11789:1 11855:2 11869:1 11874:1 11902:1 11910:1 11911:1 11913:1 11928:1 11972:2 11976:1 11977:1 11979:2 11980:1 11981:1 11999:1 12000:1 12001:2 12009:1 12037:1 12049:1 12058:1 12063:3 12070:2 12075:1 12109:1 12139:1 12149:1 12174:1 12185:1 12209:1 12244:1 12269:1 12272:1 12285:1 12292:1 12317:1 12337:1 12348:1 12349:1 12355:2 12356:3 12360:2 12376:1 12381:1 12386:1 12396:1 12402:1 12403:3 12410:1 12438:2 12443:1 12445:1 12471:1 12506:1 12507:1 12515:2 12522:1 12533:1 12548:2 12570:1 12575:3 12586:1 12590:2 12603:1 12612:1 12632:2 12639:1 12648:1 12664:1 12698:1 12703:1 12718:1 12721:1 12815:4 12827:1 12844:1 12851:1 12852:2 12857:1 12859:7 12860:1 12861:1 12862:1 12881:2 12884:1 12902:2 12919:2 12937:1 12939:1 12949:2 12986:1 12991:1 12997:3 13008:1 13010:4 13013:1 13015:1 13055:1 13056:1 13068:1 13081:1 13093:1 13094:2 13108:2 13109:1 13114:1 13128:6 13134:1 13148:3 13157:1 13164:2 13166:1 13172:1 13181:1 13195:2 13203:1 13204:1 13245:1 13274:1 13276:1 13280:1 13320:2 13321:1 13330:4 13352:1 13356:1 13360:1 13370:1 13386:2 13392:1 13399:1 13437:1 13468:1 13483:1 13484:1 13498:1 13499:2 13502:1 13504:1 13517:1 13527:2 13534:1 13537:1 13547:1 13553:1 13562:1 13577:1 13592:1 13606:1 13628:1 13657:1 13678:1 13686:2 13691:2 13695:1 13705:1 13709:1 13718:1 13734:4 13746:1 13758:1 13763:1 13774:4 13812:1 13824:1 13841:1 13846:1 13848:1 13854:1 13873:1 13874:2 13875:1 13904:1 13915:1 13919:4 13924:1 13926:1 13935:1 13956:1 13990:1 14009:1 14017:3 14029:1 14045:1 14049:2 14050:1 14057:1 14059:1 14077:1 14112:1 14129:1 14150:1 14151:2 14155:3 14160:2 14167:1 14170:1 14176:1 14200:1 14205:1 14245:1 14253:1 14299:1 14317:1 14332:1 14342:1 14354:1 14355:2 14365:1 14381:1 14409:1 14429:1 14440:1 14460:1 14462:2 14463:1 14467:1 14475:1 14476:1 14479:2 14480:1 14487:1 14497:1 14512:1 14520:2 14526:1 14534:1 14535:1 14575:1 14588:1 14595:1 14602:2 14611:1 14637:1 14654:1 14656:1 14663:1 14678:1 14708:1 14733:4 14736:1 14744:1 14747:1 14749:1 14754:3 14757:1 14763:1 14769:2 14770:1 14773:1 14774:1 14782:3 14786:1 14790:1 14797:2 14812:4 14820:1 14839:1 14843:2 14878:1 14888:1 14898:2 14903:1 14923:2 14962:2 14970:1 14982:1 15001:1 15021:1 15048:3 15070:2 15093:1 15098:1 15100:1 15118:1 15120:1 15121:1 15131:1 15137:1 15140:2 15141:1 15147:1 15173:3 15174:1 15180:1 15193:2 15231:1 15261:1 15265:1 15287:2 15295:1 15297:2 15306:1 15307:1 15323:1 15348:1 15370:1 15381:1 15390:1 15406:1 15407:1 15408:2 15413:2 15427:1 15459:1 15489:1 15490:1 15504:2 15524:4 15532:1 15555:1 15572:1 15579:1 15610:1 15629:1 15635:3 15652:1 15668:1 15672:1 15686:1 15689:1 15712:1 15714:2 15742:1 15764:1 15785:1 15846:1 15860:1 15864:1 15874:1 15898:2 15901:1 15905:1 15918:1 15936:1 15940:1 15950:1 15957:1 16005:1 16033:1 16035:1 16062:1 16066:1 16089:2 16100:1 16109:1 16111:1 16132:1 16145:1 16152:1 16154:1 16158:1 16160:1 16164:1 16178:1 16179:1 16240:1 16257:1 16258:1 16261:1 16263:3 16282:1 16289:3 16309:2 16357:2 16367:1 16371:1 16375:1 16379:1 16383:1 16387:1 16390:1 16392:1 16408:1 16443:1 16447:2 16451:1 16456:1 16464:1 16468:1 16469:1 16486:2 16512:3 16531:1 16563:1 16575:1 16583:1 16586:1 16604:1 16608:1 16616:1 16630:1 16635:1 16645:1 16657:1 16668:1 16675:1 16678:2 16685:1 16713:2 16716:1 16718:1 16720:1 16721:1 16729:1 16743:1 16744:1 16750:1 16751:1 16766:2 16767:2 16768:1 16770:1 16780:1 16783:1 16784:1 16786:2 16787:1 16800:1 16802:1 16803:1 16808:1 16810:1 16823:1 16848:1 16850:1 16860:1 16873:1 16891:1 16898:1 16906:1 16937:2 16942:1 16958:1 16961:1 16966:3 16973:2 16990:1 16991:1 17021:2 17022:1 17028:1 17043:1 17045:1 17050:3 17076:1 17083:1 17094:2 17101:1 17127:1 17140:4 17166:3 17186:1 17236:1 17284:1 17288:1 17291:6 17298:1 17300:1 17312:1 17319:1 17326:1 17328:1 17341:1 17360:1 17365:1 17441:1 17447:1 17471:1 17486:1 17492:1805 17497:1 17520:1 17539:1 17541:1 17551:1 17555:1 17599:1 17628:1 17668:1 17669:1 17690:1 17691:1 17755:1 17793:1 17815:1 17838:1 17846:1 17902:1 17912:1 17914:1 17933:1 17938:1 17945:1 17991:1 18003:2 18020:1 18028:1 18032:1 18042:1 18055:1 18087:2 18107:1 18108:1 18110:4 18145:1 18161:1 18185:1 18196:1 18198:1 18217:2 18226:1 18237:1 18254:1 18269:8 18271:1 18333:1 18366:1 18380:3 18383:1 18398:1 18415:4 18423:1 18449:1 18471:1 18485:2 18494:2 18503:1 18507:2 18525:2 18535:1 18544:1 18549:1 18566:1 18584:2 18590:1 18592:1 18594:1 18605:1 18606:2 18619:1 18622:1 18651:1 18667:1 18672:3 18675:1 18676:1 18695:1 18720:1 18740:1 18757:1 18773:1 18776:2 18778:2 18849:4 18856:1 18892:1 18915:3 18921:3 18928:1 18929:1 18932:1 18949:1 18958:2 18965:1 18983:2 18985:1 18992:1 18995:1 19001:1 19003:1 19005:1 19011:1 19033:1 19044:1 19054:1 19057:1 19061:2 19078:2 19080:1 19097:1 19109:1 19115:1 19202:1 19208:2 19214:1 19215:1 19238:2 19240:1 19242:2 19253:1 19268:1 19274:1 19277:1 19278:1 19297:1 19358:1 19388:2 19416:1 19424:1 19426:1 19435:1 19451:1 19462:1 19465:1 19471:1 19483:1 19485:1 19487:1 19488:1 19493:1 19510:1 19515:1 19518:1 19525:1 19558:2 19579:1 19596:2 19601:1 19603:1 19611:1 19612:1 19623:2 19624:1 19636:2 19647:2 19648:1 19651:2 19706:1 19708:1 19710:1 19722:1 19743:1 19758:1 19759:1 19778:1 19785:1 19804:1 19809:2 19885:1 19928:1 19934:1 19957:1 19968:2 20012:1 20018:1 20033:2 20077:1 20079:1 20089:1 20091:2 20096:1 20109:1 20131:1 20139:1 20143:1 20174:1 20190:1 20196:1 20201:1 20203:1 20216:1 20231:1 20234:1 20247:1 20251:1 20290:1 20307:1 20349:1 20370:2 20376:1 20401:2 20407:1 20411:1 20415:1 20421:6 20422:1 20433:3 20446:1 20455:1 20462:1 20477:2 20481:1 20482:1 20483:1 20486:1 20488:1 20529:2 20547:1 20561:1 20571:1 20577:3 20580:1 20583:1 20591:1 20594:1 20597:1 20608:1 20609:1 20610:3 20613:1 20624:1 20625:2 20627:1 20654:1 20659:1 20670:1 20694:2 20704:1 20716:1 20727:1 20754:1 20762:1 20775:2 20776:1 20793:1 20796:2 20803:1 20804:2 20823:1 20828:1 20841:1 20864:1 20871:1 20894:2 20901:1 20913:1 20923:1 20931:1 20933:1 20942:1 20960:1 20975:1 20980:3 20988:1 20994:2 21004:1 21006:2 21007:2 21011:2 21017:1 21025:1 21030:1 21040:1 21053:1 21067:1 21072:1 21080:1 21082:2 21111:2 21117:1 21120:1 21121:1 21132:1 21159:2 21173:3 21185:2 21195:1 21223:1 21233:1 21236:1 21241:1 21242:1 21252:1 21254:2 21260:1 21277:1 21280:1 21287:1 21305:1 21313:1 21315:1 21320:1 21323:1 21324:1 21329:1 21337:2 21345:1 21347:1 21430:6 21435:1 21438:1 21439:1 21444:1 21449:1 21452:1 21460:1 21478:1 21503:1 21516:2 21554:2 21560:1 21568:2 21579:1 21584:1 21587:1 21593:1 21594:1 21603:1 21632:2 21656:1 21692:2 21709:5 21729:1 21730:2 21731:1 21777:1 21850:1 21874:1 21895:1 21896:2 21904:1 21909:1 21911:1 21919:2 21923:1 21925:1 21927:2 21954:2 21967:1 21968:1 21975:1 21986:1 21987:2 22024:2 22030:1 22040:1 22046:1 22055:2 22066:1 22074:1 22097:1 22105:1 22119:1 22128:1 22133:1 22137:1 22148:3 22152:1 22157:2 22176:1 22188:1 22189:1 22202:1 22208:2 22215:1 22224:1 22248:2 22270:1 22283:1 22291:1 22309:1 22323:1 22325:1 22333:2 22340:1 22351:1 22382:1 22387:1 22391:1 22405:1 22409:1 22424:1 22438:1 22449:1 22471:1 22476:1 22502:1 22568:3 22569:1 22572:1 22578:1 22586:1 22614:1 22634:2 22652:1 22666:1 22678:2 22679:1 22707:3 22717:1 22718:1 22728:1 22737:1 22747:1 22759:1 22762:1 22779:1 22788:3 22797:1 22830:1 22838:1 22876:2 22885:1 22887:1 22935:1 22948:2 22956:4 22963:1 22967:2 22988:1 23000:1 23003:6 23007:1 23052:1 23068:1 23078:1 23094:1 23103:1 23108:1 23111:1 23119:1 23121:1 23127:1 23128:2 23135:1 23138:1 23156:1 23162:1 23164:1 23165:1 23173:1 23190:1 23191:1 23194:1 23199:1 23219:1 23222:1 23224:1 23230:1 23231:1 23240:1 23241:1 23245:3 23247:1 23250:1 23267:1 23269:1 23271:1 23277:1 23286:1 23315:2 23373:2 23383:1 23415:1 23416:1 23426:1 23452:1 23453:1 23486:1 23518:1 23535:1 23554:1 23608:2 23628:1 23633:3 23637:1 23675:4 23694:2 23711:1 23718:2 23731:1 23735:1 23738:2 23743:1 23751:1 23766:1 23783:1 23791:1 23816:1 23821:1 23822:1 23850:1 23864:1 23865:1 23866:3 23873:2 23878:1 23879:2 23897:1 23898:1 23901:1 23902:1 23904:1 23913:2 23914:1 23918:2 23935:3 23936:1 23960:1 23964:2 23966:1 23986:1 23987:1 24008:1 24040:3 24063:1 24085:1 24091:1 24099:1 24119:1 24141:1 24143:1 24151:1 24153:1 24171:1 24188:1 24228:1 24251:1 24267:1 24268:1 24271:4 24273:1 24298:1 24324:2 24330:1 24338:1 24352:2 24367:1 24377:1 24397:1 24420:1 24430:2 24433:1 24436:1 24442:1 24443:1 24452:1 24463:1 24466:2 24490:1 24503:1 24533:3 24542:1 24566:2 24579:1 24598:6 24638:1 24643:2 24655:1 24672:1 24675:1 24708:1 24720:1 24721:2 24730:1 24731:1 24734:1 24759:1 24765:1 24809:1 24836:2 24839:1 24853:1 24854:1 24856:1 24860:1 24861:1 24865:1 24885:1 24899:4 24928:3 24936:1 24941:1 24957:1 24965:1 24988:1 24993:1 25000:1 25018:1 25033:1 25045:1 25071:2 25079:2 25113:1 25134:1 25161:1 25219:1 25248:2 25277:2 25281:2 25296:1 25338:1 25345:1 25347:1 25349:1 25370:1 25387:1 25393:1 25434:1 25452:2 25460:1 25466:1 25473:2 25488:1 25515:1 25537:1 25539:1 25543:1 25545:2 25587:1 25593:1 25597:1 25623:1 25635:3 25641:1 25662:1 25663:1 25678:1 25704:2 25706:1 25710:1 25717:1 25719:1 25720:1 25724:2 25728:1 25767:4 25769:1 25770:1 25778:3 25780:1 25785:1 25786:1 25788:1 25790:1 25793:2 25798:1 25799:1 25804:1 25811:1 25835:2 25842:1 25850:1 25866:4 25871:1 25874:1 25877:2 25878:1 25894:1 25897:1 25912:1 25924:1 25961:1 26013:2 26026:1 26049:1 26057:1 26068:2 26070:2 26071:1 26072:1 26084:2 26092:1 26125:1 26131:1 26166:1 26174:1 26184:1 26218:1 26250:1 26266:1 26275:1 26280:3 26312:1 26315:1 26322:1 26337:1 26340:1 26348:1 26352:3 26364:1 26378:1 26381:1 26400:1 26402:1 26409:1 26422:1 26429:2 26442:1 26446:10 26451:1 26468:1 26480:1 26482:5 26498:6 26504:1 26531:1 26545:1 26548:1 26565:1 26574:3 26575:1 26576:1 26598:2 26609:5 26641:1 26647:8 26652:1 26655:1 26659:1 26666:2 26681:1 26709:1 26723:2 26751:1 26762:1 26782:1 26811:1 26821:1 26824:1 26828:2 26834:1 26843:1 26853:1 26866:2 26872:1 26898:1 26909:1 26912:1 26913:1 26955:1 26962:1 26968:1 26977:1 26981:2 26984:2 26990:1 27001:1 27006:1 27010:1 27026:1 27029:1 27050:2 27062:1 27078:1 27084:1 27086:1 27095:1 27118:1 27122:1 27133:1 27137:2 27180:2 27190:1 27227:1 27232:1 27250:1 27261:1 27276:1 27286:2 27358:1 27360:1 27364:1 27368:1 27372:2 27418:1 27431:1 27433:1 27473:1 27479:5 27481:1 27489:2 27497:1 27499:1 27526:1 27529:2 27538:1 27557:2 27565:3 27608:2 27615:1 27625:2 27633:3 27641:1 27643:1 27678:1 27691:1 27696:4 27704:1 27730:1 27746:1 27756:2 27758:1
12 1:1 37:1 38:1 43:1 52:1 57:2 74:1 87:4 92:1 111:1 120:1 141:1 165:1 179:2 182:1 195:2 202:1 209:1 210:1 277:1 282:1 292:1 294:1 313:1 328:4 356:2 363:3 378:2 379:1 388:1 413:1 418:3 423:1 430:1 441:2 457:1 528:1 535:1 603:3 609:1 637:1 648:1 666:1 693:1 694:1 698:2 700:1 725:1 739:1 790:1 794:1 820:1 861:5 867:1 870:1 881:1 888:4 893:1 903:2 909:2 923:1 941:2 949:2 952:1 981:1 990:1 994:1 1019:1 1022:1 1037:1 1054:1 1068:1 1069:1 1073:1 1082:1 1088:1 1104:1 1125:1 1132:1 1140:1 1154:1 1167:1 1192:1 1193:1 1195:1 1203:2 1217:2 1222:1 1231:1 1240:1 1249:2 1277:2 1287:1 1301:1 1310:1 1331:2 1344:3 1349:1 1354:1 1357:1 1369:1 1397:5 1448:1 1450:1 1451:3 1454:1 1457:5 1459:1 1461:1 1478:1 1482:1 1484:1 1493:1 1506:1 1513:1 1516:1 1534:2 1535:2 1541:1 1551:1 1556:1 1559:1 1562:1 1564:2 1565:1 1568:1 1574:1 1623:2 1625:2 1656:2 1660:1 1668:4 1680:2 1683:1 1691:1 1695:2 1696:1 1730:1 1740:1 1762:2 1768:1 1791:1 1795:1 1810:1 1815:1 1831:2 1834:1 1839:3 1844:1 1848:1 1864:2 1877:1 1890:2 1891:1 1897:2 1905:1 1909:1 1922:2 1941:1 1950:1 1978:1 2006:1 2007:3 2010:1 2030:1 2039:1 2058:1 2060:2 2063:1 2080:1 2086:1 2089:1 2096:1 2122:2 2148:1 2164:1 2169:1 2191:5 2197:2 2200:1 2204:1 2208:1 2210:2 2219:1 2235:1 2236:1 2244:2 2245:2 2246:2 2248:1 2249:4 2251:2 2253:2 2256:2 2258:2 2261:1 2262:1 2264:2 2265:2 2266:1 2269:1 2270:5 2272:1 2276:1 2280:1 2281:1 2287:2 2307:1 2338:5 2339:1 2354:2 2356:1 2368:1 2369:1 2381:1 2418:2 2451:1 2452:1 2459:1 2487:1 2501:1 2505:1 2514:2 2523:1 2526:4 2545:1 2550:1 2572:1 2575:1 2580:1 2583:1 2589:1 2620:1 2640:1 2662:1 2666:1 2699:4 2703:1 2706:1 2721:1 2724:1 2741:2 2745:1 2756:4 2769:1 2770:1 2807:1 2815:1 2832:1 2846:5 2852:1 2857:2 2860:1 2898:1 2912:1 2919:1 2927:1 2928:2 2937:1 2951:1 2957:1 2965:1 2972:1 2973:1 2990:1 3000:1 3008:1 3021:1 3053:1 3065:1 3080:1 3083:3 3084:1 3113:1 3135:1 3143:1 3155:1 3160:1 3166:1 3174:1 3178:1 3191:2 3207:1 3223:1 3232:2 3244:6 3247:1 3257:1 3260:1 3318:1 3322:1 3338:1 3368:1 3399:1 3402:1 3407:1 3426:1 3431:1 3442:1 3460:2 3462:1 3489:1 3497:1 3500:1 3504:1 3512:1 3515:1 3525:1 3529:1 3534:1 3548:1 3559:1 3568:1 3577:4 3584:1 3586:1 3588:1 3591:1 3593:1 3600:1 3603:1 3607:1 3612:2 3648:4 3674:1 3675:2 3697:1 3703:1 3713:1 3717:1 3721:3 3725:1 3726:2 3741:1 3753:1 3754:1 3763:1 3805:1 3806:3 3813:1 3825:1 3832:1 3844:3 3846:1 3849:1 3872:1 3876:1 3878:1 3888:1 3904:1 3913:1 3916:1 3921:2 3932:3 3972:1 3973:1 3992:1 4014:1 4023:2 4030:1 4072:1 4104:5 4107:3 4113:1 4117:1 4123:1 4145:1 4163:5 4165:1 4167:1 4175:1 4180:1 4192:1 4216:1 4231:2 4239:2 4258:1 4267:1 4281:1 4310:1 4346:1 4356:1 4357:1 4375:1 4386:2 4404:1 4406:1 4414:1 4416:1 4423:2 4431:2 4472:1 4494:2 4506:1 4517:1 4521:1 4526:1 4550:3 4569:1 4578:1 4579:1 4581:1 4603:1 4605:1 4656:1 4677:1 4700:1 4710:8 4711:2 4722:1 4733:1 4738:2 4749:1 4750:1 4759:1 4814:6 4820:1 4823:1 4828:3 4830:2 4833:1 4836:1 4838:1 4841:1 4842:1 4844:1 4845:2 4850:2 4854:1 4856:2 4857:2 4860:1 4879:1 4887:1 4891:1 4915:1 4916:3 4920:1 4934:1 4943:1 4961:1 4993:1 4996:1 5045:2 5057:1 5095:1 5112:1 5118:1 5130:2 5133:1 5141:3 5158:1 5162:1 5163:6 5188:8 5242:1 5269:1 5274:1 5327:1 5335:1 5355:2 5361:1 5379:1 5382:1 5392:1 5400:1 5402:1 5407:1 5418:1 5426:1 5438:1 5452:1 5469:1 5470:3 5473:1 5475:1 5476:2 5478:1 5481:1 5484:1 5496:1 5504:1 5511:1 5519:1 5527:2 5534:1 5639:1 5663:1 5665:1 5669:1 5705:1 5750:2 5752:6 5755:1 5777:1 5779:1 5787:1 5788:1 5794:2 5797:1 5813:1 5840:1 5844:1 5864:1 5868:2 5877:1 5903:1 5906:1 5917:2 5934:1 5960:1 5994:3 6003:1 6007:1 6008:1 6016:1 6069:1 6076:2 6092:4 6096:2 6098:2 6101:3 6102:1 6109:1 6110:1 6113:1 6115:3 6116:1 6117:9 6119:1 6120:2 6158:1 6169:2 6233:1 6246:2 6254:1 6260:2 6283:1 6308:1 6318:1 6362:1 6375:1 6399:1 6414:2 6420:1 6421:1 6428:1 6436:1 6439:1 6455:1 6472:1 6486:1 6490:1 6492:1 6493:1 6516:2 6519:1 6536:1 6545:3 6566:1 6568:1 6569:1 6574:1 6578:1 6613:1 6614:1 6629:1 6650:1 6656:1 6714:1 6745:1 6762:1 6764:1 6780:1 6798:1 6877:6 6878:2 6883:1 6895:1 6924:2 6932:1 6949:1 6958:2 6964:1 6971:1 6974:1 6975:2 6981:1 6990:1 7009:1 7047:1 7098:1 7117:3 7127:2 7131:1 7143:4 7144:2 7146:3 7155:1 7180:1 7198:1 7211:1 7250:2 7263:1 7290:2 7293:1 7294:1 7295:1 7328:7 7329:6 7336:1 7337:1 7344:1 7346:1 7351:1 7352:1 7356:2 7360:1 7367:1 7384:2 7394:32 7410:6 7412:1 7419:2 7422:1 7432:1 7457:1 7460:1 7480:1 7488:2 7489:2 7522:2 7550:1 7587:2 7594:1 7604:1 7614:2 7629:1 7633:1 7636:1 7645:1 7651:1 7689:1 7693:1 7725:2 7733:1 7768:1 7770:1 7777:1 7811:1 7852:2 7864:1 7867:1 7871:5 7902:1 7905:1 7916:1 7947:1 7961:1 7999:1 8001:1 8008:1 8021:1 8024:1 8062:1 8072:1 8087:2 8091:1 8111:1 8124:1 8133:1 8140:1 8166:1 8167:1 8204:3 8206:2 8207:1 8212:1 8217:1 8219:1 8220:1 8221:1 8238:1 8244:1 8247:3 8259:1 8262:1 8277:1 8285:1 8287:2 8320:1 8324:2 8335:1 8338:1 8366:1 8433:1 8450:1 8468:1 8483:2 8490:1 8491:1 8501:1 8511:2 8523:1 8528:1 8580:1 8587:1 8591:1 8599:2 8630:1 8659:1 8662:1 8663:1 8676:1 8688:2 8689:1 8692:1 8707:1 8710:1 8713:1 8717:1 8732:1 8733:1 8740:1 8750:4 8751:1 8787:1 8796:2 8799:1 8801:1 8810:1 8813:2 8816:1 8824:1 8827:1 8838:1 8841:3 8843:3 8844:1 8845:1 8866:1 8880:1 8883:2 8902:1 8910:1 8912:1 8914:2 8918:1 8922:1 8930:1 8931:2 8948:1 8960:1 8965:1 8978:1 8990:1 8995:1 8998:1 9006:1 9011:1 9019:1 9031:1 9055:1 9066:7 9080:1 9102:2 9108:1 9109:2 9132:1 9133:1 9136:1 9147:3 9153:1 9161:1 9162:1 9165:1 9172:1 9175:2 9190:1 9191:2 9198:1 9203:2 9220:1 9244:1 9250:1 9254:3 9257:1 9264:1 9267:1 9287:6 9303:3 9305:1 9307:1 9308:1 9312:1 9369:1 9397:1 9433:4 9452:1 9469:1 9480:1 9481:4 9484:1 9492:1 9505:1 9510:1 9523:1 9526:3 9529:1 9583:1 9594:4 9598:1 9599:2 9617:1 9628:1 9650:1 9661:1 9665:1 9693:1 9719:1 9744:1 9747:1 9760:1 9774:1 9776:1 9778:1 9797:1 9802:1 9808:1 9814:1 9831:1 9839:1 9840:1 9876:2 9882:2 9895:1 9902:1 9954:1 9961:3 9963:1 9995:3 9999:1 10018:1 10020:1 10024:1 10027:1 10039:2 10041:2 10054:1 10057:1 10059:4 10060:1 10063:1 10066:1 10072:2 10112:1 10135:1 10145:1 10148:1 10155:7 10162:1 10163:1 10182:2 10191:1 10210:1 10214:1 10215:2 10237:1 10266:1 10274:1 10337:1 10357:2 10358:1 10359:4 10365:2 10380:1 10386:1 10405:1 10419:1 10424:1 10442:1 10448:2 10453:1 10473:1 10474:1 10488:3 10496:1 10500:1 10519:1 10524:1 10526:1 10537:1 10543:1 10547:1 10559:1 10573:1 10578:1 10583:1 10585:1 10594:1 10595:1 10627:1 10631:1 10633:2 10700:2 10710:1 10711:1 10714:1 10740:1 10750:1 10767:1 10777:1 10781:2 10787:1 10804:1 10812:5 10855:1 10866:2 10883:2 10888:1 10889:1 10896:1 10905:1 10918:2 10961:1 10975:1 10978:1 10987:1 10989:1 10992:2 10999:1 11008:4 11047:1 11053:2 11054:1 11061:1 11071:1 11074:2 11076:1 11077:1 11080:2 11092:1 11096:3 11125:1 11126:1 11130:2 11142:1 11148:1 11151:2 11158:1 11159:1 11169:1 11189:1 11194:1 11233:1 11244:2 11252:1 11253:1 11268:1 11284:1 11310:1 11316:1 11318:1 11333:1 11344:1 11352:1 11364:1 11371:1 11424:1 11442:1 11443:6 11462:1 11464:1 11465:1 11477:3 11488:2 11494:1 11501:1 11507:2 11512:1 11528:1 11529:1 11549:2 11560:1 11565:1 11569:1 11581:4 11607:1 11624:2 11630:1 11663:1 11668:2 11710:2 11713:1 11731:1 11752:1 11756:1 11761:1 11775:1 11785:1 11789:1 11855:2 11869:1 11874:1 11902:1 11910:1 11911:1 11913:1 11928:1 11972:2 11976:1 11977:1 11979:2 11980:1 11981:1 11999:1 12000:1 12001:2 12009:1 12037:1 12049:1 12058:1 12063:3 12070:2 12075:1 12109:1 12139:1 12149:1 12174:1 12185:1 12209:1 12244:1 12269:1 12272:1 12285:1 12292:1 12317:1 12337:1 12348:1 12349:1 12355:2 12356:3 12360:2 12376:1 12381:1 12386:1 12396:1 12402:1 12403:3 12410:1 12438:2 12443:1 12445:1 12471:1 12506:1 12507:1 12515:2 12522:1 12533:1 12548:2 12570:1 12575:3 12586:1 12590:2 12603:1 12612:1 12632:2 12639:1 12648:1 12664:1 12698:1 12703:1 12718:1 12721:1 12815:4 12827:1 12844:1 12851:1 12852:2 12857:1 12859:7 12860:1 12861:1 12862:1 12881:2 12884:1 12902:2 12919:2 12920:1 12937:1 12939:1 12949:2 12956:1 12986:1 12991:1 12997:3 13008:1 13010:4 13013:1 13015:1 13055:1 13056:1 13068:1 13081:1 13093:1 13094:2 13108:2 13109:1 13114:1 13128:6 13134:1 13148:3 13157:1 13164:2 13166:1 13172:1 13181:1 13195:2 13203:1 13204:1 13245:1 13274:1 13276:1 13280:1 13320:2 13321:1 13326:1 13330:4 13352:1 13356:1 13360:1 13370:1 13386:2 13392:1 13399:1 13437:1 13468:1 13483:1 13484:1 13498:1 13499:2 13502:1 13504:1 13517:1 13527:2 13534:1 13537:1 13547:1 13553:1 13562:1 13577:1 13592:1 13597:1 13606:1 13628:1 13657:1 13678:1 13686:2 13691:2 13695:1 13705:1 13709:1 13718:1 13734:4 13746:1 13758:1 13763:1 13774:4 13812:1 13824:1 13841:1 13846:1 13848:1 13854:1 13873:1 13874:2 13875:1 13904:1 13915:1 13919:4 13924:1 13926:1 13935:1 13956:1 13990:1 14009:1 14017:3 14029:1 14045:1 14049:2 14050:1 14057:1 14059:1 14077:1 14112:1 14129:1 14150:1 14151:2 14155:3 14160:2 14167:1 14170:1 14176:1 14200:1 14205:1 14245:1 14253:2 14299:1 14317:1 14332:1 14342:1 14354:1 14355:2 14365:1 14381:1 14409:1 14429:1 14440:1 14460:1 14462:2 14463:1 14467:1 14475:1 14476:1 14479:2 14480:1 14487:1 14497:1 14512:1 14520:2 14526:1 14528:1 14534:1 14535:1 14575:1 14588:1 14595:1 14602:2 14611:1 14637:1 14654:1 14656:1 14663:1 14678:1 14708:1 14733:4 14736:1 14744:1 14747:1 14749:1 14754:3 14757:1 14763:1 14769:2 14770:1 14773:1 14774:1 14782:3 14786:1 14790:1 14797:2 14812:4 14820:1 14835:1 14839:1 14843:2 14878:1 14888:1 14898:2 14903:1 14923:2 14962:2 14970:1 14982:1 15001:1 15021:1 15048:3 15070:2 15093:1 15098:1 15100:1 15118:1 15120:1 15121:1 15131:1 15137:1 15140:2 15141:1 15147:1 15173:3 15174:1 15180:1 15193:2 15231:1 15261:1 15265:1 15287:2 15295:1 15297:2 15306:1 15307:1 15323:1 15348:1 15370:1 15381:1 15390:1 15406:1 15407:1 15408:2 15413:2 15427:1 15459:1 15489:1 15490:1 15504:2 15524:4 15532:1 15555:1 15572:1 15579:1 15610:1 15629:1 15635:3 15652:1 15668:1 15672:1 15686:1 15689:1 15712:1 15714:2 15742:1 15764:1 15785:1 15846:1 15860:1 15864:1 15874:1 15898:2 15901:1 15905:1 15918:1 15936:1 15940:1 15950:1 15957:1 16005:1 16033:1 16035:1 16062:1 16066:1 16089:2 16100:1 16109:1 16111:1 16132:1 16145:1 16152:1 16154:1 16158:1 16160:1 16164:1 16178:1 16179:1 16200:1 16240:1 16257:1 16258:1 16261:1 16263:3 16282:1 16289:3 16309:2 16357:2 16367:1 16371:1 16375:1 16379:1 16383:1 16387:1 16390:1 16392:1 16408:1 16443:1 16447:2 16451:1 16456:1 16464:1 16468:1 16469:1 16486:2 16512:4 16531:1 16547:1 16563:1 16575:1 16583:1 16586:1 16604:1 16608:1 16616:1 16630:1 16635:1 16645:1 16657:1 16668:1 16675:1 16678:2 16685:1 16713:2 16716:1 16718:1 16720:1 16721:1 16729:1 16743:1 16744:1 16750:1 16751:1 16766:2 16767:2 16768:1 16770:1 16780:1 16783:1 16784:1 16786:2 16787:1 16800:1 16802:1 16803:1 16808:1 16810:1 16823:1 16848:1 16850:1 16860:1 16873:1 16891:2 16898:1 16906:1 16937:2 16942:1 16958:1 16961:1 16966:3 16973:2 16990:1 16991:1 17021:2 17022:1 17028:1 17043:1 17045:1 17050:3 17076:1 17083:1 17094:2 17101:1 17127:1 17140:4 17166:3 17186:1 17236:1 17284:1 17288:1 17291:6 17298:1 17300:1 17312:1 17319:1 17326:1 17328:1 17341:1 17360:1 17365:1 17441:1 17447:1 17471:1 17486:1 17492:1851 17497:1 17520:1 17539:1 17541:1 17551:1 17555:1 17599:1 17628:1 17668:1 17669:1 17690:1 17691:1 17755:1 17793:1 17815:1 17838:1 17846:1 17902:1 17912:1 17914:1 17933:1 17938:1 17945:1 17991:1 18003:2 18020:1 18028:1 18032:1 18042:1 18055:1 18087:2 18107:1 18108:1 18110:4 18131:1 18145:1 18161:1 18185:1 18196:1 18198:1 18217:2 18226:1 18237:1 18254:1 18269:8 18271:1 18333:1 18366:1 18380:3 18383:1 18398:1 18415:4 18423:1 18449:1 18471:1 18485:2 18494:2 18503:1 18507:2 18525:2 18535:1 18544:1 18549:1 18566:1 18584:2 18590:1 18592:1 18594:1 18605:1 18606:2 18619:1 18622:1 18651:1 18667:1 18672:3 18675:1 18676:1 18695:1 18720:1 18740:1 18757:1 18773:1 18776:2 18778:2 18849:4 18856:1 18892:1 18915:3 18921:3 18928:1 18929:1 18932:1 18949:1 18958:2 18965:1 18983:2 18985:1 18992:1 18995:1 19001:1 19003:1 19005:1 19011:1 19033:1 19044:1 19054:1 19057:1 19061:2 19078:2 19080:1 19097:1 19109:1 19115:1 19202:1 19208:2 19214:1 19215:1 19238:2 19240:1 19242:2 19253:1 19268:1 19274:1 19277:1 19278:1 19297:1 19358:1 19388:2 19416:1 19424:1 19426:1 19435:1 19451:1 19462:1 19465:1 19471:1 19483:1 19485:1 19487:1 19488:1 19493:1 19510:1 19515:1 19518:1 19525:1 19558:2 19579:1 19596:2 19601:1 19603:1 19611:1 19612:1 19623:2 19624:1 19636:2 19647:2 19648:1 19651:2 19706:1 19708:1 19710:1 19722:1 19743:1 19758:1 19759:1 19778:1 19785:1 19804:1 19809:2 19885:1 19928:1 19934:1 19957:1 19968:2 20012:1 20018:1 20033:2 20077:1 20079:1 20089:1 20091:2 20096:1 20109:1 20131:1 20139:1 20143:1 20174:1 20190:1 20196:1 20201:1 20203:1 20216:1 20231:1 20234:1 20247:1 20251:1 20290:1 20307:1 20349:1 20370:2 20376:1 20401:3 20407:1 20411:1 20415:1 20421:6 20422:1 20433:3 20446:1 20455:1 20462:1 20477:2 20481:1 20482:1 20483:1 20486:1 20488:1 20529:2 20547:1 20561:1 20571:1 20577:3 20580:1 20583:1 20591:1 20594:1 20597:1 20608:1 20609:1 20610:3 20613:1 20624:1 20625:2 20627:1 20654:1 20659:1 20670:1 20694:2 20704:1 20716:1 20727:1 20729:1 20754:1 20762:1 20775:2 20776:1 20793:1 20796:2 20803:1 20804:2 20823:1 20828:1 20841:1 20864:1 20871:1 20894:2 20901:1 20913:1 20923:1 20931:1 20933:1 20942:1 20960:1 20975:1 20980:3 20988:1 20994:2 21004:1 21006:2 21007:2 21011:2 21017:1 21025:1 21030:1 21040:1 21053:1 21067:1 21072:1 21080:1 21082:2 21111:2 21117:1 21120:1 21121:1 21132:1 21159:2 21173:3 21185:2 21195:1 21223:1 21233:1 21236:1 21241:1 21242:1 21252:1 21254:2 21260:1 21277:1 21280:1 21287:1 21305:1 21313:1 21315:1 21320:1 21323:1 21324:1 21329:1 21337:2 21345:1 21347:1 21430:6 21435:1 21438:1 21439:1 21444:1 21449:1 21452:1 21460:1 21478:1 21503:1 21516:2 21554:2 21560:1 21568:2 21579:1 21584:1 21587:1 21593:1 21594:1 21603:1 21632:2 21656:1 21692:2 21709:5 21729:1 21730:3 21731:1 21777:1 21850:1 21874:1 21895:1 21896:2 21904:1 21909:1 21911:1 21919:2 21923:1 21925:1 21927:2 21954:2 21967:1 21968:1 21975:1 21986:1 21987:2 22024:2 22030:1 22040:1 22046:1 22055:2 22066:1 22074:1 22097:1 22105:1 22119:1 22128:1 22133:1 22137:1 22148:3 22152:1 22157:2 22176:1 22188:1 22189:1 22202:1 22208:2 22215:1 22224:1 22248:2 22270:1 22283:1 22291:1 22309:1 22323:1 22325:1 22333:2 22340:1 22351:1 22382:1 22387:1 22391:1 22405:1 22409:1 22424:1 22438:1 22449:1 22471:1 22476:1 22502:1 22568:3 22569:1 22572:1 22578:1 22586:1 22614:1 22634:2 22652:1 22666:1 22678:2 22679:1 22707:3 22717:1 22718:1 22728:1 22737:1 22747:1 22759:1 22762:1 22779:1 22788:3 22797:1 22830:1 22838:1 22876:2 22885:1 22887:1 22935:1 22948:2 22956:4 22963:1 22967:2 22988:1 23000:1 23003:6 23007:1 23052:1 23068:1 23078:1 23094:1 23103:1 23108:1 23111:1 23119:1 23121:1 23127:1 23128:2 23135:1 23138:1 23156:1 23162:1 23164:1 23165:1 23173:1 23190:1 23191:1 23194:1 23199:1 23219:1 23222:1 23224:1 23230:1 23231:1 23240:1 23241:1 23245:3 23247:1 23250:1 23267:1 23269:1 23271:1 23277:1 23286:1 23315:2 23373:2 23383:1 23415:1 23416:1 23426:1 23452:1 23453:1 23486:1 23518:1 23535:1 23554:1 23608:2 23628:1 23633:3 23637:1 23675:4 23694:2 23711:1 23718:2 23731:1 23735:1 23738:2 23743:1 23751:1 23766:1 23783:1 23791:1 23816:1 23821:1 23822:1 23850:1 23864:1 23865:1 23866:3 23873:2 23878:1 23879:2 23897:1 23898:1 23901:1 23902:1 23904:1 23913:2 23914:1 23918:2 23935:3 23936:1 23960:1 23964:2 23966:1 23986:1 23987:1 24008:1 24040:3 24063:1 24085:1 24091:1 24099:1 24119:1 24141:1 24143:1 24151:1 24153:1 24171:1 24188:1 24204:1 24228:1 24251:1 24267:1 24268:1 24271:4 24273:1 24298:1 24324:2 24330:1 24338:1 24352:2 24367:1 24377:1 24397:1 24420:1 24430:2 24433:1 24436:1 24442:1 24443:1 24452:1 24463:1 24466:2 24490:1 24503:1 24533:3 24542:1 24566:2 24579:1 24598:6 24638:1 24643:2 24655:1 24672:1 24675:1 24708:1 24720:1 24721:2 24730:1 24731:1 24734:1 24759:1 24765:1 24809:1 24836:2 24839:1 24853:1 24854:1 24856:1 24860:1 24861:1 24865:1 24885:1 24899:4 24928:3 24936:1 24941:1 24957:1 24965:1 24988:1 24993:1 25000:1 25018:1 25033:1 25045:1 25071:2 25079:2 25113:1 25134:1 25161:1 25219:1 25248:2 25277:2 25281:2 25296:1 25338:1 25345:1 25347:1 25349:1 25370:1 25387:1 25393:1 25434:1 25452:3 25460:1 25466:1 25473:2 25488:1 25515:1 25537:1 25539:1 25543:1 25545:2 25587:1 25593:1 25597:1 25623:1 25635:3 25641:1 25662:1 25663:1 25678:1 25704:2 25706:1 25710:1 25717:1 25719:1 25720:1 25724:2 25728:1 25767:4 25769:1 25770:1 25778:3 25780:1 25785:1 25786:1 25788:1 25790:1 25793:2 25798:1 25799:1 25804:1 25811:1 25835:2 25842:1 25850:1 25866:4 25871:1 25874:1 25877:2 25878:1 25894:1 25897:1 25912:1 25924:1 25961:1 26013:2 26026:1 26049:1 26057:1 26068:2 26070:2 26071:1 26072:1 26084:2 26092:1 26125:1 26131:1 26166:1 26174:1 26184:1 26218:1 26250:1 26266:1 26275:1 26280:3 26312:1 26315:1 26322:1 26337:1 26340:1 26348:1 26352:3 26364:1 26378:1 26381:1 26400:1 26402:1 26409:1 26422:1 26429:2 26442:1 26446:10 26451:1 26468:1 26480:1 26482:5 26498:6 26504:1 26531:1 26545:1 26548:1 26565:1 26574:3 26575:1 26576:1 26598:2 26609:5 26641:1 26647:8 26652:1 26655:1 26659:1 26666:2 26681:1 26709:1 26723:2 26751:1 26762:1 26782:1 26811:1 26821:1 26824:1 26828:2 26834:1 26843:1 26853:1 26866:2 26872:1 26898:1 26909:1 26912:1 26913:1 26955:1 26962:1 26968:1 26977:1 26981:2 26984:2 26990:1 27001:1 27006:1 27010:1 27026:1 27029:1 27050:2 27062:1 27078:1 27084:1 27086:1 27095:1 27118:1 27122:1 27133:1 27137:2 27180:2 27190:1 27227:1 27232:1 27250:1 27261:1 27276:1 27286:2 27358:1 27360:1 27364:1 27368:1 27372:2 27418:1 27431:1 27433:1 27473:1 27479:5 27481:1 27489:2 27497:1 27499:1 27526:1 27529:2 27538:1 27557:2 27565:3 27608:2 27615:1 27625:2 27633:3 27641:1 27643:2 27678:1 27691:1 27696:4 27704:1 27730:1 27746:1 27756:2 27758:1
12 1:1 34:1 37:1 38:1 43:1 52:1 57:2 74:1 87:4 92:1 111:1 120:1 141:1 165:1 179:2 182:1 195:2 200:1 202:1 209:1 210:1 277:1 282:1 292:1 294:1 313:1 328:4 356:2 363:3 378:2 379:1 388:1 413:1 418:3 423:1 430:1 441:2 457:1 528:1 535:1 553:1 603:3 609:1 637:1 648:1 666:1 693:1 694:1 698:2 700:2 725:1 739:1 790:1 794:1 820:1 861:5 867:1 870:1 881:1 888:4 893:1 903:2 909:2 923:1 941:2 949:2 952:1 981:1 990:1 994:1 1019:1 1022:1 1037:1 1054:1 1068:1 1069:1 1073:1 1082:1 1088:1 1104:1 1125:1 1132:1 1140:1 1154:1 1167:1 1192:1 1193:1 1195:1 1203:2 1217:3 1222:1 1231:1 1240:1 1249:2 1277:2 1287:1 1301:1 1310:1 1331:2 1344:3 1349:1 1354:1 1357:1 1369:1 1397:5 1448:1 1450:1 1451:3 1454:1 1457:5 1459:1 1461:1 1478:1 1482:1 1484:1 1493:1 1506:1 1513:1 1516:1 1534:2 1535:2 1541:1 1551:1 1556:1 1559:1 1562:1 1564:2 1565:1 1568:1 1574:1 1623:2 1625:2 1656:2 1660:1 1668:4 1680:2 1683:1 1691:1 1695:2 1696:1 1730:1 1740:1 1762:2 1768:1 1791:1 1795:1 1810:1 1815:1 1817:1 1831:2 1834:1 1839:3 1844:1 1848:1 1864:2 1877:1 1890:2 1891:1 1897:2 1905:1 1909:1 1922:2 1941:1 1950:1 1978:1 2006:1 2007:3 2010:1 2030:1 2039:1 2058:1 2060:2 2063:1 2080:1 2086:1 2089:1 2096:1 2122:3 2148:1 2164:1 2169:1 2191:5 2197:2 2200:1 2204:1 2208:1 2210:2 2219:1 2235:1 2236:1 2244:2 2245:2 2246:2 2248:1 2249:4 2251:2 2253:2 2256:2 2258:2 2261:1 2262:1 2264:2 2265:2 2266:1 2269:1 2270:5 2272:1 2276:1 2280:1 2281:1 2287:2 2307:1 2338:5 2339:1 2354:2 2356:1 2368:1 2369:1 2381:1 2418:2 2423:1 2451:1 2452:1 2459:1 2487:1 2501:1 2505:1 2514:2 2523:1 2526:4 2545:1 2550:1 2572:1 2575:1 2580:1 2583:1 2589:1 2620:1 2640:1 2662:1 2666:1 2694:1 2699:4 2703:1 2706:1 2721:1 2724:1 2741:2 2745:1 2756:4 2769:2 2770:1 2807:1 2815:1 2832:1 2846:5 2852:1 2857:2 2860:1 2898:1 2912:1 2919:1 2927:1 2928:2 2937:1 2951:1 2957:1 2965:1 2972:1 2973:1 2990:1 3000:1 3008:1 3021:1 3053:1 3065:1 3080:1 3083:3 3084:1 3113:1 3135:1 3143:1 3154:1 3155:1 3160:1 3166:1 3174:1 3178:1 3191:2 3207:1 3223:1 3232:2 3244:8 3247:1 3257:1 3260:1 3318:1 3322:1 3338:1 3368:1 3370:1 3399:1 3402:1 3407:1 3426:1 3431:1 3442:1 3460:2 3462:1 3489:1 3497:1 3500:1 3504:1 3512:1 3515:1 3525:1 3529:1 3534:1 3548:1 3559:1 3568:1 3577:4 3584:1 3586:1 3588:1 3591:1 3593:1 3600:1 3603:1 3607:1 3612:2 3648:4 3674:1 3675:2 3697:1 3703:1 3713:1 3717:1 3721:3 3725:1 3726:2 3741:1 3746:1 3753:1 3754:1 3763:1 3805:1 3806:3 3813:1 3825:1 3832:1 3844:3 3846:1 3849:1 3872:1 3876:1 3878:1 3888:1 3904:1 3913:1 3916:1 3921:2 3932:3 3972:1 3973:1 3992:1 4014:1 4023:2 4030:1 4072:1 4079:1 4104:5 4107:3 4113:1 4117:1 4123:1 4145:1 4163:5 4165:1 4167:1 4175:1 4180:1 4192:1 4216:1 4231:2 4239:2 4258:1 4267:1 4281:1 4310:1 4346:1 4356:1 4357:1 4375:1 4386:2 4404:1 4406:1 4414:1 4416:1 4423:2 4431:2 4472:1 4494:2 4506:1 4517:1 4521:1 4525:1 4526:1 4533:1 4550:3 4569:1 4578:1 4579:1 4581:1 4597:1 4603:1 4605:1 4656:1 4677:1 4700:1 4710:10 4711:2 4722:1 4730:1 4733:1 4738:2 4749:1 4750:1 4759:1 4814:6 4820:1 4823:1 4828:3 4830:2 4833:1 4836:1 4838:1 4841:1 4842:1 4844:1 4845:2 4850:3 4854:1 4856:2 4857:2 4860:2 4879:1 4887:1 4891:1 4915:1 4916:3 4920:1 4934:1 4943:1 4961:1 4993:1 4996:1 5045:2 5056:1 5057:1 5095:1 5112:1 5118:1 5130:3 5133:1 5141:3 5158:1 5162:1 5163:6 5188:8 5242:1 5269:1 5274:2 5327:1 5335:1 5355:2 5361:1 5379:1 5382:1 5392:1 5400:1 5401:1 5402:1 5407:1 5418:1 5426:1 5438:1 5452:1 5469:1 5470:3 5473:1 5475:1 5476:2 5478:1 5481:1 5484:1 5496:1 5504:1 5511:1 5519:1 5527:2 5534:1 5639:1 5663:1 5665:1 5669:1 5705:1 5750:2 5752:7 5755:1 5777:1 5779:1 5787:1 5788:1 5794:2 5797:1 5813:1 5840:1 5844:1 5864:1 5868:3 5877:1 5903:1 5906:1 5917:2 5934:1 5960:1 5994:3 6003:1 6007:1 6008:1 6016:1 6069:1 6076:2 6092:4 6096:2 6098:2 6101:3 6102:1 6109:1 6110:1 6113:1 6115:3 6116:1 6117:9 6119:1 6120:2 6158:1 6169:2 6233:1 6246:2 6254:1 6260:2 6283:1 6305:2 6308:1 6318:1 6362:1 6375:1 6399:1 6414:2 6420:1 6421:1 6428:1 6436:1 6439:1 6455:1 6472:1 6486:1 6490:1 6492:1 6493:1 6515:1 6516:2 6519:1 6536:1 6545:4 6566:1 6568:1 6569:1 6574:1 6578:1 6613:1 6614:1 6629:1 6650:1 6656:1 6714:1 6745:1 6749:1 6762:1 6764:1 6780:1 6798:1 6877:6 6878:2 6883:1 6895:1 6924:2 6932:1 6949:1 6958:2 6964:1 6971:1 6974:1 6975:2 6981:1 6990:1 7009:1 7047:1 7098:1 7117:3 7127:2 7131:1 7143:4 7144:2 7146:4 7155:1 7180:1 7198:1 7211:1 7216:1 7250:2 7263:1 7290:2 7293:1 7294:1 7295:1 7328:8 7329:6 7336:1 7337:1 7344:1 7346:1 7351:1 7352:1 7356:2 7360:1 7367:1 7384:2 7394:32 7410:6 7412:1 7419:2 7422:1 7432:1 7457:1 7460:1 7480:1 7488:2 7489:2 7522:2 7550:1 7587:2 7594:1 7604:1 7614:2 7629:1 7633:1 7636:1 7645:1 7651:1 7689:1 7693:1 7725:2 7733:1 7768:1 7770:1 7777:1 7778:1 7811:1 7852:2 7864:1 7867:1 7871:6 7902:1 7905:1 7916:1 7947:1 7961:1 7995:1 7999:1 8001:1 8008:1 8021:1 8024:1 8062:1 8072:1 8087:2 8091:1 8111:1 8124:1 8133:1 8140:1 8166:1 8167:1 8204:3 8206:2 8207:1 8212:1 8217:1 8219:1 8220:1 8221:1 8238:1 8244:1 8247:3 8259:1 8262:1 8277:1 8285:1 8287:2 8320:1 8322:1 8324:2 8328:1 8335:1 8338:1 8366:1 8433:1 8450:1 8468:1 8483:2 8490:1 8491:1 8501:1 8511:2 8523:1 8528:1 8580:1 8587:1 8591:1 8599:2 8630:1 8659:1 8662:1 8663:1 8676:1 8688:2 8689:1 8690:1 8692:1 8707:1 8710:1 8713:1 8717:1 8732:1 8733:1 8740:1 8750:4 8751:1 8787:1 8796:2 8799:1 8801:1 8810:1 8813:2 8816:1 8824:1 8827:1 8838:1 8841:3 8843:3 8844:1 8845:1 8866:1 8880:1 8883:2 8902:1 8910:1 8912:1 8914:2 8918:1 8922:1 8930:1 8931:2 8948:1 8960:1 8965:1 8978:1 8990:1 8995:1 8998:1 9006:1 9011:1 9019:1 9031:1 9055:1 9066:7 9080:1 9102:2 9108:1 9109:2 9132:1 9133:1 9136:1 9147:3 9153:1 9161:1 9162:1 9165:1 9172:1 9175:2 9190:1 9191:2 9198:1 9203:2 9220:1 9244:1 9250:1 9254:3 9257:1 9264:1 9267:1 9287:6 9303:3 9305:1 9307:1 9308:1 9312:1 9369:1 9397:1 9433:4 9452:1 9469:1 9480:1 9481:4 9484:1 9492:1 9505:1 9510:1 9523:1 9526:3 9529:1 9538:1 9583:1 9594:4 9598:1 9599:2 9601:1 9617:1 9627:1 9628:1 9650:1 9661:1 9665:1 9693:1 9719:1 9744:1 9747:1 9760:1 9774:1 9776:1 9778:1 9797:1 9802:1 9808:1 9814:1 9831:1 9839:1 9840:1 9846:1 9876:2 9882:2 9895:1 9902:1 9954:1 9961:3 9963:1 9995:3 9999:1 10018:1 10020:1 10024:1 10027:1 10039:2 10041:2 10054:1 10057:1 10059:4 10060:1 10063:1 10066:1 10072:2 10112:1 10135:1 10145:1 10148:1 10155:7 10162:1 10163:1 10182:2 10191:1 10210:1 10214:1 10215:2 10237:1 10266:1 10274:1 10337:1 10357:2 10358:1 10359:5 10365:2 10380:1 10386:1 10405:1 10419:1 10424:1 10442:1 10448:2 10453:1 10473:1 10474:1 10488:3 10496:1 10500:2 10519:1 10524:1 10526:1 10537:1 10543:1 10547:1 10559:1 10573:1 10578:1 10583:1 10585:1 10594:1 10595:1 10627:1 10631:1 10633:2 10700:2 10710:1 10711:1 10714:1 10740:1 10750:1 10767:1 10777:1 10781:2 10787:1 10804:1 10812:5 10855:1 10866:2 10883:2 10888:1 10889:1 10896:1 10905:1 10918:2 10961:1 10975:2 10978:1 10987:1 10989:1 10992:2 10999:1 11008:4 11047:2 11053:2 11054:1 11061:1 11070:1 11071:1 11074:2 11076:1 11077:1 11080:2 11092:1 11096:3 11125:1 11126:1 11130:2 11142:1 11148:1 11151:2 11158:1 11159:1 11169:2 11189:1 11194:1 11233:1 11244:2 11252:1 11253:1 11268:1 11284:1 11299:1 11310:1 11316:1 11318:1 11333:1 11344:1 11352:1 11364:1 11371:1 11424:1 11442:1 11443:6 11462:1 11464:1 11465:1 11477:3 11488:2 11494:1 11501:1 11507:2 11512:1 11528:1 11529:1 11549:2 11560:1 11565:1 11569:1 11581:4 11607:1 11624:2 11630:1 11663:1 11665:1 11668:2 11676:1 11710:2 11713:1 11731:1 11752:1 11756:1 11757:1 11761:1 11775:1 11785:1 11789:1 11855:2 11869:1 11874:1 11902:1 11910:1 11911:1 11913:1 11928:1 11972:2 11976:1 11977:1 11979:2 11980:1 11981:1 11999:1 12000:1 12001:2 12009:1 12037:1 12049:1 12058:1 12063:3 12070:2 12075:1 12109:1 12139:1 12149:1 12174:1 12185:1 12209:1 12244:1 12269:1 12272:1 12285:1 12292:1 12317:1 12337:1 12348:1 12349:1 12355:2 12356:3 12360:2 12376:1 12381:1 12386:1 12396:1 12402:1 12403:3 12410:1 12438:2 12443:1 12445:1 12471:1 12506:1 12507:1 12515:2 12522:1 12533:1 12548:2 12570:1 12575:3 12586:1 12590:2 12603:1 12612:1 12632:2 12639:1 12648:1 12664:1 12698:1 12703:1 12718:1 12721:1 12815:4 12827:1 12844:1 12851:1 12852:2 12857:1 12859:7 12860:1 12861:1 12862:1 12881:2 12884:1 12902:2 12919:2 12920:1 12937:1 12939:1 12949:2 12956:1 12986:1 12991:1 12997:3 13003:1 13008:1 13010:4 13013:2 13015:1 13055:1 13056:1 13068:1 13070:1 13081:1 13093:1 13094:2 13108:2 13109:1 13114:1 13128:6 13134:1 13148:3 13157:1 13164:2 13166:1 13172:1 13181:1 13195:2 13203:1 13204:1 13245:1 13274:1 13276:1 13280:1 13320:2 13321:1 13326:1 13330:4 13352:1 13356:1 13360:1 13370:1 13386:2 13392:1 13399:1 13437:1 13468:1 13483:1 13484:1 13498:1 13499:2 13502:1 13504:1 13517:1 13527:2 13534:1 13537:1 13547:1 13553:1 13562:1 13577:1 13592:1 13597:1 13606:1 13628:1 13657:1 13678:1 13686:2 13691:2 13695:2 13705:1 13709:1 13718:1 13734:4 13746:1 13758:1 13763:1 13774:4 13776:1 13812:1 13824:1 13841:1 13846:1 13848:1 13854:1 13873:1 13874:2 13875:1 13904:1 13915:1 13919:4 13924:1 13926:1 13935:1 13956:1 13990:1 14009:1 14017:3 14029:1 14045:1 14049:2 14050:1 14057:1 14059:1 14077:1 14112:1 14129:1 14150:1 14151:2 14155:3 14160:2 14167:1 14170:1 14176:1 14200:1 14205:1 14245:1 14253:2 14299:1 14317:1 14332:1 14342:1 14354:1 14355:2 14365:1 14381:1 14409:1 14429:1 14440:1 14460:1 14462:2 14463:1 14467:1 14475:1 14476:2 14479:2 14480:1 14487:1 14497:1 14512:1 14520:2 14526:1 14528:1 14534:1 14535:1 14575:1 14588:1 14595:1 14602:2 14611:1 14637:1 14654:1 14656:1 14663:1 14678:1 14701:1 14708:1 14733:4 14736:1 14744:1 14747:1 14749:1 14754:3 14757:1 14763:1 14769:2 14770:1 14773:1 14774:1 14782:3 14786:1 14790:1 14797:2 14812:4 14820:1 14835:1 14839:1 14843:2 14878:1 14888:1 14898:2 14903:1 14919:1 14923:2 14962:2 14970:1 14982:1 15001:1 15021:1 15048:3 15070:2 15093:1 15098:1 15100:1 15118:1 15120:1 15121:1 15131:2 15137:1 15140:3 15141:1 15147:1 15173:3 15174:1 15180:1 15193:2 15231:1 15232:1 15261:1 15265:1 15287:3 15295:1 15297:2 15299:1 15306:1 15307:1 15323:1 15348:1 15370:1 15381:1 15390:1 15406:1 15407:1 15408:2 15413:2 15427:1 15459:1 15489:1 15490:1 15504:2 15524:4 15532:1 15555:1 15561:1 15572:1 15579:1 15610:1 15629:1 15635:3 15652:1 15668:1 15672:1 15686:1 15689:1 15712:1 15714:2 15742:1 15764:1 15785:1 15846:1 15860:1 15864:1 15874:1 15898:2 15901:1 15905:1 15918:1 15936:1 15940:1 15950:1 15957:1 16005:1 16033:1 16035:1 16062:1 16066:1 16089:2 16100:1 16109:1 16111:1 16132:1 16145:1 16152:1 16154:1 16158:1 16160:1 16164:2 16178:1 16179:1 16200:1 16240:1 16257:1 16258:1 16261:1 16263:3 16282:1 16289:3 16309:2 16357:2 16367:1 16371:1 16375:1 16379:1 16383:1 16387:1 16390:1 16392:1 16408:1 16443:1 16447:2 16451:1 16456:1 16464:1 16468:1 16469:1 16486:2 16512:4 16531:1 16546:1 16547:1 16563:1 16571:1 16575:1 16583:1 16586:1 16604:1 16608:1 16616:1 16630:1 16635:1 16645:1 16657:1 16668:1 16675:1 16678:2 16685:1 16713:3 16716:1 16718:1 16720:1 16721:1 16729:1 16743:1 16744:1 16750:1 16751:1 16766:2 16767:2 16768:1 16770:1 16780:1 16783:1 16784:1 16786:2 16787:1 16800:1 16802:1 16803:1 16808:1 16810:1 16823:1 16848:1 16850:1 16860:1 16873:1 16891:2 16898:1 16906:1 16937:2 16942:1 16958:1 16961:1 16966:3 16973:2 16990:1 16991:1 17021:2 17022:1 17028:1 17043:1 17045:1 17050:3 17076:1 17083:1 17094:2 17101:1 17127:1 17140:4 17166:3 17186:1 17236:1 17284:1 17288:1 17291:6 17298:1 17300:1 17312:1 17319:1 17326:1 17328:1 17341:1 17360:1 17365:2 17441:1 17447:1 17471:1 17486:1 17492:1945 17497:1 17520:1 17538:1 17539:1 17541:1 17551:1 17555:1 17599:1 17628:1 17668:1 17669:1 17690:1 17691:1 17755:1 17793:1 17794:1 17815:1 17838:1 17846:1 17902:1 17912:1 17914:1 17933:1 17938:1 17945:1 17991:1 18003:2 18020:1 18028:1 18032:1 18042:1 18055:1 18087:2 18107:1 18108:1 18110:4 18131:1 18145:1 18161:1 18185:1 18196:1 18198:1 18217:2 18226:1 18237:1 18254:1 18269:8 18271:1 18333:1 18366:1 18380:3 18383:1 18398:1 18415:4 18423:1 18449:1 18471:1 18485:2 18494:2 18503:1 18507:2 18525:2 18535:1 18544:2 18549:1 18566:1 18584:2 18590:1 18592:1 18594:1 18605:1 18606:2 18619:1 18622:1 18651:1 18667:1 18672:3 18675:1 18676:1 18695:1 18720:1 18740:1 18757:1 18773:1 18776:2 18778:2 18849:4 18856:1 18892:1 18915:3 18921:3 18928:1 18929:1 18932:1 18949:1 18958:2 18965:1 18983:2 18985:1 18992:1 18995:1 19001:1 19003:1 19005:1 19011:1 19033:1 19044:1 19054:1 19057:1 19061:2 19078:2 19080:1 19097:1 19098:1 19109:1 19115:1 19202:1 19208:2 19214:1 19215:1 19238:3 19240:1 19242:2 19253:1 19268:1 19274:1 19277:1 19278:1 19297:1 19358:1 19388:2 19416:1 19424:1 19426:1 19435:1 19451:1 19462:1 19465:1 19471:1 19483:1 19485:1 19487:1 19488:1 19493:1 19510:1 19515:1 19518:1 19525:1 19558:2 19579:1 19596:2 19601:1 19603:1 19611:1 19612:1 19623:2 19624:1 19636:2 19647:2 19648:1 19651:2 19706:1 19708:1 19710:1 19722:1 19743:1 19758:1 19759:1 19761:1 19778:1 19785:1 19804:1 19809:2 19885:1 19928:1 19934:1 19957:1 19968:2 20012:1 20018:1 20033:2 20077:1 20079:1 20089:1 20091:2 20096:1 20109:1 20131:1 20139:1 20143:1 20174:1 20190:1 20196:1 20201:1 20203:1 20216:1 20231:1 20234:1 20247:1 20251:1 20252:1 20263:1 20290:1 20307:1 20349:1 20370:2 20376:1 20401:3 20407:1 20411:1 20415:1 20421:6 20422:1 20433:3 20446:1 20455:1 20462:2 20477:2 20481:1 20482:1 20483:1 20486:1 20488:1 20529:2 20547:1 20561:1 20571:1 20577:3 20580:1 20583:1 20591:1 20594:1 20597:1 20608:1 20609:1 20610:3 20613:1 20624:1 20625:2 20627:1 20654:1 20656:1 20659:1 20670:1 20694:2 20704:1 20716:1 20727:1 20729:1 20754:1 20762:1 20775:2 20776:1 20793:1 20796:2 20803:1 20804:2 20823:1 20828:2 20841:1 20864:1 20871:1 20894:2 20901:1 20913:1 20923:1 20931:1 20933:1 20942:1 20960:1 20975:1 20980:3 20988:1 20994:2 21002:1 21004:1 21006:2 21007:2 21011:2 21017:1 21025:1 21030:1 21040:1 21053:1 21067:1 21072:1 21080:1 21082:2 21111:2 21117:1 21120:1 21121:1 21132:1 21159:2 21173:3 21185:2 21195:1 21223:1 21233:1 21236:1 21241:1 21242:1 21252:1 21254:2 21260:1 21277:1 21280:1 21287:1 21305:1 21313:1 21315:1 21320:1 21323:1 21324:1 21329:1 21337:2 21345:1 21347:1 21430:6 21435:1 21438:1 21439:1 21444:1 21449:1 21452:1 21460:1 21478:1 21503:1 21516:2 21554:2 21560:1 21568:2 21579:1 21584:1 21587:1 21593:1 21594:1 21603:1 21632:2 21656:1 21692:2 21709:5 21729:1 21730:3 21731:1 21777:1 21850:1 21874:1 21895:1 21896:3 21904:1 21909:1 21911:1 21919:2 21923:1 21925:1 21927:2 21954:2 21967:1 21968:1 21975:1 21986:1 21987:2 22024:2 22030:1 22040:1 22046:1 22055:3 22060:1 22066:1 22074:1 22097:1 22105:1 22119:1 22128:1 22133:1 22137:1 22148:3 22152:1 22157:2 22176:1 22188:1 22189:1 22202:1 22208:2 22215:1 22219:1 22224:1 22248:2 22270:1 22283:1 22291:1 22309:1 22323:1 22325:1 22333:2 22340:1 22351:1 22382:1 22387:1 22391:1 22405:1 22409:1 22424:1 22438:1 22449:1 22471:2 22476:1 22502:1 22544:1 22568:3 22569:1 22571:1 22572:1 22578:1 22586:1 22614:1 22634:2 22652:1 22663:1 22666:1 22678:2 22679:1 22707:3 22717:1 22718:1 22728:1 22737:1 22747:1 22759:1 22762:1 22779:1 22788:3 22797:1 22830:2 22838:1 22876:2 22885:1 22887:1 22935:1 22948:2 22956:4 22963:1 22967:2 22988:1 23000:1 23003:6 23007:1 23052:1 23068:1 23078:1 23094:1 23103:1 23108:1 23111:1 23119:1 23121:1 23127:1 23128:2 23135:1 23138:1 23156:1 23162:1 23164:1 23165:1 23173:1 23190:1 23191:1 23194:1 23199:1 23219:1 23222:1 23224:1 23230:1 23231:1 23240:1 23241:1 23245:3 23247:1 23250:1 23267:1 23269:1 23271:1 23277:1 23286:1 23315:2 23373:2 23383:1 23415:1 23416:1 23426:1 23452:1 23453:1 23486:1 23518:1 23535:1 23554:1 23608:2 23628:1 23633:3 23637:1 23648:1 23675:4 23694:2 23711:1 23718:2 23731:1 23735:1 23738:2 23743:1 23751:1 23766:1 23783:1 23791:1 23816:1 23821:1 23822:1 23842:1 23850:1 23864:1 23865:1 23866:3 23872:1 23873:2 23878:1 23879:2 23897:1 23898:1 23901:1 23902:1 23904:1 23913:2 23914:1 23918:2 23935:3 23936:1 23949:1 23960:1 23964:2 23966:1 23986:1 23987:1 24008:1 24040:3 24063:1 24085:1 24091:1 24099:1 24119:1 24141:1 24143:1 24151:1 24153:1 24157:1 24171:1 24188:1 24204:1 24228:1 24251:1 24267:1 24268:1 24271:4 24273:1 24298:1 24324:2 24330:1 24338:1 24352:2 24367:1 24377:1 24397:1 24420:1 24430:2 24433:1 24436:1 24437:1 24442:1 24443:1 24452:1 24463:1 24466:2 24490:1 24503:1 24533:3 24542:1 24566:2 24579:1 24598:6 24638:1 24643:2 24655:1 24672:1 24675:1 24708:1 24712:1 24720:1 24721:2 24730:1 24731:1 24734:1 24759:1 24765:1 24809:1 24836:2 24839:1 24853:1 24854:1 24856:1 24860:1 24861:1 24865:1 24885:1 24899:4 24928:3 24936:1 24941:1 24957:1 24965:1 24988:1 24993:1 25000:1 25018:1 25033:1 25045:1 25071:2 25079:2 25107:1 25113:1 25134:1 25161:1 25219:1 25248:2 25274:1 25277:2 25281:3 25296:1 25338:1 25345:1 25347:1 25349:1 25370:1 25387:1 25393:1 25413:1 25434:1 25452:3 25460:1 25466:1 25473:2 25488:1 25515:1 25521:1 25537:1 25539:1 25543:1 25545:2 25587:1 25593:1 25597:1 25623:1 25635:3 25641:1 25662:1 25663:1 25678:1 25704:2 25706:1 25710:1 25717:1 25719:1 25720:1 25724:2 25728:1 25767:4 25769:1 25770:1 25778:3 25780:1 25785:1 25786:1 25788:1 25790:1 25793:2 25798:1 25799:1 25804:1 25811:1 25835:2 25842:1 25850:1 25866:4 25871:1 25874:1 25877:2 25878:1 25894:1 25897:1 25912:1 25924:1 25961:1 26013:2 26026:1 26028:1 26049:1 26057:1 26068:2 26070:2 26071:1 26072:1 26084:2 26092:1 26125:1 26131:1 26166:1 26174:1 26184:1 26218:1 26250:1 26266:1 26275:1 26280:3 26312:1 26315:2 26322:1 26337:1 26340:1 26348:1 26352:3 26364:1 26378:1 26381:1 26400:1 26402:1 26409:1 26422:1 26429:2 26442:1 26444:1 26446:10 26451:1 26468:1 26480:1 26482:5 26498:6 26504:1 26531:1 26545:1 26548:1 26565:1 26574:3 26575:1 26576:1 26598:2 26609:5 26641:1 26647:9 26652:1 26655:1 26659:1 26666:2 26681:1 26709:1 26723:2 26751:1 26762:1 26782:1 26811:1 26821:1 26824:1 26828:2 26834:1 26835:1 26843:1 26853:1 26866:2 26872:1 26898:1 26909:2 26912:1 26913:1 26955:1 26962:1 26968:1 26977:1 26981:2 26984:2 26990:1 27001:1 27006:1 27010:1 27026:1 27029:1 27050:2 27062:1 27078:1 27084:1 27086:1 27095:1 27118:1 27122:1 27133:1 27137:2 27180:2 27190:1 27227:1 27232:1 27250:1 27261:1 27276:1 27286:2 27298:1 27358:1 27360:1 27364:1 27368:1 27372:2 27418:1 27431:1 27433:1 27435:1 27473:1 27479:5 27481:1 27489:2 27497:1 27499:1 27522:1 27526:1 27529:2 27538:1 27557:2 27565:3 27608:2 27615:1 27625:2 27633:3 27641:2 27643:2 27678:1 27691:1 27696:4 27704:1 27730:1 27746:1 27756:2 27758:1
12 1:1 34:1 37:1 38:1 43:1 52:1 57:2 74:1 87:4 92:1 111:1 120:1 141:1 165:1 179:2 182:1 195:2 200:1 202:1 209:1 210:1 277:1 282:1 292:1 294:1 313:1 328:4 356:2 363:3 378:2 379:1 388:1 413:1 418:3 423:1 430:1 441:2 457:1 528:1 535:1 553:1 603:3 609:1 637:1 648:1 666:1 693:1 694:1 698:2 700:2 725:2 739:1 790:1 794:1 820:1 861:6 867:1 870:1 881:1 888:4 893:1 903:2 909:2 923:2 941:2 949:2 952:1 981:1 990:1 994:1 1019:1 1022:1 1037:1 1054:1 1068:1 1069:1 1073:1 1082:1 1088:1 1104:1 1125:1 1132:1 1140:1 1154:1 1167:1 1192:1 1193:1 1195:1 1203:2 1217:3 1222:1 1231:1 1240:1 1249:2 1277:2 1287:1 1301:1 1310:1 1331:2 1344:3 1349:1 1354:1 1357:1 1369:1 1397:5 1448:1 1450:1 1451:4 1454:1 1457:5 1459:1 1461:1 1478:1 1482:1 1484:1 1493:1 1506:1 1513:1 1516:1 1534:2 1535:2 1541:1 1551:1 1556:1 1559:1 1562:1 1564:2 1565:1 1568:1 1574:1 1586:1 1623:2 1625:2 1656:2 1660:1 1668:4 1680:2 1683:1 1691:1 1695:2 1696:1 1730:1 1740:1 1762:2 1768:1 1791:1 1795:1 1810:1 1815:1 1817:1 1831:2 1834:1 1839:3 1844:1 1848:1 1864:2 1877:1 1890:2 1891:1 1897:2 1905:1 1909:1 1922:2 1941:1 1950:1 1978:1 2006:1 2007:4 2010:1 2030:1 2039:1 2058:1 2060:2 2063:1 2080:1 2086:1 2089:1 2096:1 2122:4 2148:1 2164:1 2169:1 2191:5 2197:2 2200:1 2204:1 2208:1 2210:2 2219:1 2235:1 2236:1 2244:2 2245:2 2246:2 2248:1 2249:5 2251:2 2253:2 2256:2 2258:2 2261:1 2262:1 2264:2 2265:2 2266:1 2269:1 2270:5 2272:1 2276:1 2280:1 2281:1 2287:2 2307:1 2338:6 2339:1 2354:2 2356:1 2368:1 2369:1 2381:1 2418:2 2423:1 2451:1 2452:1 2459:1 2487:1 2501:1 2505:1 2514:2 2523:1 2526:4 2545:1 2550:1 2557:1 2572:1 2575:1 2580:1 2583:1 2589:1 2620:1 2640:1 2662:1 2666:1 2694:1 2699:4 2703:1 2706:1 2721:1 2724:1 2741:2 2745:1 2756:4 2769:2 2770:1 2807:1 2815:1 2832:1 2846:5 2852:1 2857:2 2860:1 2898:1 2912:1 2919:1 2927:1 2928:2 2937:1 2951:1 2957:1 2965:1 2972:1 2973:1 2990:1 3000:1 3008:1 3021:1 3053:1 3065:1 3080:1 3083:3 3084:1 3113:1 3135:1 3143:1 3154:1 3155:1 3160:1 3166:1 3174:1 3178:1 3191:2 3207:1 3223:1 3232:2 3244:8 3247:1 3257:1 3260:1 3318:1 3320:1 3322:1 3338:1 3368:1 3370:1 3399:1 3402:1 3407:1 3426:1 3431:1 3442:1 3460:2 3462:1 3489:1 3497:1 3500:1 3504:1 3512:1 3515:1 3525:1 3529:1 3534:1 3548:1 3559:1 3568:1 3577:4 3584:1 3586:1 3588:1 3591:1 3593:1 3600:1 3603:1 3607:1 3612:2 3648:4 3674:1 3675:2 3697:1 3703:1 3713:1 3717:1 3721:3 3725:1 3726:2 3741:1 3746:1 3753:1 3754:1 3763:1 3805:1 3806:3 3813:1 3825:1 3832:1 3844:3 3846:1 3849:1 3872:1 3876:1 3878:1 3888:1 3904:1 3913:1 3916:1 3921:2 3932:3 3972:1 3973:1 3992:1 4014:1 4023:2 4030:1 4072:1 4079:1 4104:5 4107:3 4113:1 4117:1 4123:1 4145:1 4163:5 4165:1 4167:1 4175:1 4180:1 4192:1 4216:1 4231:2 4239:2 4258:1 4267:1 4281:1 4310:1 4346:1 4356:1 4357:1 4375:1 4386:2 4404:1 4406:1 4414:1 4416:1 4423:2 4431:2 4472:1 4494:2 4506:1 4517:1 4521:1 4525:1 4526:1 4533:1 4550:3 4569:1 4578:1 4579:1 4581:1 4597:1 4603:1 4605:1 4656:1 4668:1 4677:1 4700:1 4710:10 4711:2 4722:1 4730:1 4733:1 4738:2 4749:1 4750:1 4759:1 4814:6 4820:1 4823:1 4828:3 4830:2 4833:1 4836:1 4838:1 4841:1 4842:1 4844:1 4845:2 4850:3 4854:1 4856:3 4857:2 4860:2 4879:1 4887:1 4891:1 4915:1 4916:3 4920:1 4934:1 4943:1 4961:1 4993:1 4996:1 5045:2 5056:1 5057:1 5095:1 5112:1 5118:1 5130:3 5133:1 5141:3 5158:1 5162:1 5163:6 5188:8 5242:1 5269:1 5274:2 5327:1 5335:1 5355:2 5357:1 5361:1 5379:1 5382:1 5392:1 5400:1 5401:1 5402:1 5407:1 5418:1 5426:1 5438:1 5452:1 5469:1 5470:3 5473:1 5475:1 5476:2 5478:1 5481:1 5484:1 5496:1 5504:1 5511:1 5519:1 5527:2 5534:1 5639:1 5663:1 5665:1 5669:1 5705:1 5750:2 5752:7 5755:1 5777:1 5779:1 5787:1 5788:1 5794:2 5797:1 5813:1 5840:1 5844:1 5864:1 5868:3 5877:1 5903:1 5906:1 5917:2 5934:1 5960:1 5994:3 6003:1 6007:1 6008:1 6016:1 6069:1 6076:2 6092:4 6096:2 6098:2 6101:3 6102:1 6109:1 6110:1 6113:1 6115:4 6116:1 6117:9 6119:1 6120:2 6122:1 6158:1 6169:2 6233:1 6246:2 6254:1 6260:2 6283:1 6305:2 6308:1 6318:1 6362:1 6375:1 6399:1 6414:2 6420:1 6421:1 6428:1 6436:1 6439:1 6455:1 6472:1 6486:1 6490:1 6492:1 6493:1 6515:1 6516:2 6519:1 6536:1 6545:4 6566:1 6568:1 6569:1 6574:1 6578:1 6613:1 6614:1 6629:1 6650:1 6656:1 6714:1 6745:1 6749:1 6762:1 6764:1 6780:1 6798:1 6826:1 6877:6 6878:2 6883:1 6895:1 6924:2 6932:1 6949:1 6958:2 6964:1 6971:1 6974:1 6975:2 6981:1 6990:1 6996:1 7009:1 7047:1 7098:1 7117:3 7127:2 7131:1 7143:5 7144:2 7146:4 7155:1 7180:1 7198:1 7211:1 7216:1 7250:2 7263:1 7274:1 7290:2 7293:1 7294:1 7295:1 7328:8 7329:6 7336:1 7337:1 7344:1 7346:1 7351:1 7352:1 7356:2 7360:1 7367:1 7384:2 7394:33 7410:6 7412:1 7419:2 7422:1 7432:1 7457:1 7460:1 7480:1 7488:2 7489:2 7522:2 7550:1 7587:2 7594:1 7604:1 7614:2 7629:1 7633:1 7636:1 7645:1 7651:1 7689:1 7693:1 7725:2 7733:1 7768:1 7770:1 7777:1 7778:1 7811:1 7852:2 7864:1 7867:1 7871:6 7902:1 7905:1 7916:1 7947:1 7961:1 7995:1 7999:1 8001:1 8008:1 8021:1 8024:1 8062:1 8072:1 8087:2 8091:1 8111:1 8124:1 8133:1 8140:1 8166:1 8167:1 8204:3 8206:2 8207:1 8212:1 8217:1 8219:1 8220:1 8221:1 8238:1 8244:1 8247:3 8259:1 8262:1 8277:1 8285:1 8287:2 8320:1 8322:1 8324:2 8328:1 8335:1 8338:1 8366:1 8433:1 8437:1 8450:1 8468:1 8483:2 8490:1 8491:1 8501:1 8511:2 8523:1 8528:1 8580:1 8587:1 8591:1 8599:2 8630:1 8659:1 8662:1 8663:1 8676:1 8688:2 8689:1 8690:1 8692:1 8707:1 8710:1 8713:1 8717:1 8732:1 8733:1 8740:1 8750:4 8751:1 8787:1 8796:2 8799:1 8801:1 8810:1 8813:2 8816:1 8824:1 8827:1 8838:1 8841:3 8843:3 8844:1 8845:1 8866:1 8880:1 8883:2 8902:1 8910:1 8912:1 8914:2 8918:1 8922:1 8930:1 8931:2 8948:1 8960:1 8965:1 8978:1 8984:1 8990:1 8995:2 8998:1 9006:1 9011:1 9019:1 9031:1 9055:1 9066:7 9080:1 9102:2 9108:1 9109:2 9132:1 9133:1 9136:1 9147:3 9153:1 9161:1 9162:1 9165:1 9172:1 9175:2 9190:1 9191:2 9198:1 9203:2 9220:1 9244:1 9250:2 9254:3 9257:1 9264:1 9267:1 9287:7 9303:3 9305:1 9307:1 9308:1 9312:1 9369:1 9397:1 9433:4 9452:1 9469:1 9480:1 9481:4 9484:1 9492:1 9505:1 9510:1 9523:1 9526:3 9529:1 9538:1 9583:1 9594:4 9598:1 9599:2 9601:1 9617:1 9627:1 9628:1 9650:1 9661:1 9665:1 9693:1 9719:1 9744:1 9747:1 9760:1 9774:1 9776:1 9778:1 9797:1 9802:1 9808:1 9814:1 9831:1 9839:1 9840:1 9846:1 9876:2 9882:2 9895:1 9902:1 9954:1 9961:3 9963:1 9995:3 9999:1 10018:1 10020:1 10024:1 10027:1 10039:2 10041:2 10054:1 10057:1 10059:4 10060:1 10063:1 10066:1 10072:2 10112:1 10135:1 10145:1 10148:1 10155:7 10162:1 10163:1 10182:2 10191:1 10210:1 10214:1 10215:2 10237:1 10266:1 10274:1 10337:1 10357:2 10358:1 10359:5 10365:2 10380:1 10386:1 10405:1 10419:1 10424:1 10442:1 10448:2 10453:1 10473:1 10474:1 10488:3 10496:1 10500:2 10519:1 10524:1 10526:1 10537:1 10543:1 10547:1 10559:1 10573:1 10578:1 10583:1 10585:1 10594:1 10595:1 10627:1 10631:1 10633:2 10700:2 10710:1 10711:1 10714:1 10740:1 10750:1 10767:1 10777:1 10781:2 10787:1 10804:1 10812:5 10855:1 10866:2 10883:2 10888:1 10889:1 10896:1 10905:1 10910:2 10918:2 10961:1 10975:2 10978:1 10987:1 10989:1 10992:2 10999:1 11008:4 11047:2 11053:2 11054:1 11061:1 11070:1 11071:1 11074:2 11076:1 11077:1 11080:2 11092:1 11096:3 11125:1 11126:1 11130:2 11142:1 11148:1 11151:2 11158:1 11159:1 11169:2 11189:1 11194:1 11233:1 11244:2 11252:1 11253:1 11268:1 11284:1 11299:1 11310:1 11316:1 11318:1 11333:1 11344:1 11352:1 11364:1 11371:1 11424:1 11442:1 11443:6 11462:1 11464:1 11465:1 11477:3 11488:2 11494:1 11501:1 11507:2 11512:1 11528:1 11529:1 11549:2 11560:1 11565:1 11569:1 11581:4 11607:1 11624:2 11630:1 11663:1 11665:1 11668:2 11676:1 11710:2 11713:1 11731:1 11752:1 11756:1 11757:1 11761:1 11775:1 11785:1 11789:1 11855:2 11869:1 11874:1 11902:1 11910:1 11911:1 11913:1 11928:1 11972:2 11976:1 11977:1 11979:2 11980:1 11981:1 11999:1 12000:1 12001:2 12009:1 12037:1 12049:1 12058:1 12063:4 12070:2 12075:1 12109:1 12125:1 12139:1 12149:1 12174:1 12185:1 12209:1 12244:1 12269:1 12272:1 12285:1 12292:1 12317:1 12337:1 12348:1 12349:1 12355:2 12356:4 12360:2 12376:1 12381:1 12386:1 12396:1 12402:1 12403:4 12410:1 12438:2 12443:1 12445:1 12471:1 12506:1 12507:1 12515:2 12522:1 12533:1 12548:2 12570:1 12575:3 12586:1 12590:2 12603:1 12612:1 12632:2 12639:1 12648:1 12664:1 12698:1 12703:1 12718:1 12721:1 12815:4 12827:1 12844:1 12851:1 12852:2 12857:1 12859:7 12860:1 12861:1 12862:1 12881:2 12884:1 12902:2 12919:2 12920:1 12937:1 12939:1 12949:2 12956:1 12959:2 12986:1 12991:1 12997:3 13003:1 13008:1 13010:4 13013:2 13015:1 13055:1 13056:1 13068:1 13070:1 13081:1 13093:1 13094:2 13108:2 13109:1 13114:1 13128:6 13134:1 13148:3 13157:1 13164:2 13166:1 13172:1 13181:1 13195:2 13203:1 13204:1 13245:1 13274:1 13276:1 13280:1 13320:2 13321:1 13326:1 13330:4 13352:1 13356:1 13360:1 13370:1 13386:2 13392:1 13399:1 13437:1 13468:1 13483:1 13484:1 13498:1 13499:2 13502:1 13504:1 13517:1 13527:2 13534:1 13537:1 13547:1 13553:1 13562:1 13577:1 13592:1 13597:1 13606:1 13628:1 13657:1 13678:1 13686:2 13691:2 13695:2 13705:1 13709:1 13718:1 13734:4 13746:1 13758:1 13763:1 13774:4 13776:1 13812:1 13824:1 13841:1 13846:1 13848:1 13854:1 13873:1 13874:2 13875:1 13904:1 13915:1 13919:4 13924:1 13926:1 13934:2 13935:1 13956:1 13990:1 14009:1 14017:3 14029:1 14045:1 14049:2 14050:1 14057:1 14059:1 14077:1 14112:1 14129:1 14150:1 14151:2 14155:3 14160:2 14167:1 14170:1 14176:1 14200:1 14205:1 14245:1 14253:2 14299:1 14317:1 14332:1 14342:1 14354:1 14355:2 14365:1 14381:1 14409:1 14429:1 14440:1 14460:1 14462:2 14463:1 14467:1 14475:1 14476:2 14479:2 14480:1 14487:1 14497:1 14512:1 14520:2 14526:1 14528:1 14534:1 14535:1 14575:1 14588:1 14595:1 14602:2 14611:1 14637:1 14654:1 14656:1 14663:1 14678:1 14701:1 14708:1 14733:4 14736:1 14744:1 14747:1 14749:1 14754:3 14757:1 14763:1 14769:2 14770:1 14773:1 14774:1 14782:3 14786:1 14790:1 14797:2 14812:4 14820:1 14835:1 14839:1 14843:2 14878:1 14888:1 14898:2 14903:1 14919:1 14923:2 14962:2 14970:1 14982:1 15001:1 15021:1 15048:3 15070:2 15093:1 15098:1 15100:1 15118:1 15120:1 15121:1 15131:2 15137:1 15140:3 15141:1 15147:1 15173:3 15174:1 15180:1 15193:2 15231:1 15232:1 15261:1 15265:1 15287:3 15295:1 15297:2 15299:1 15306:1 15307:1 15323:1 15348:1 15370:1 15381:1 15388:1 15390:1 15406:1 15407:1 15408:2 15413:2 15427:1 15459:1 15489:1 15490:1 15504:2 15524:4 15532:1 15555:1 15561:1 15572:1 15579:1 15610:1 15629:1 15635:3 15652:1 15668:1 15672:1 15686:1 15689:1 15712:1 15714:2 15742:1 15764:1 15785:1 15846:1 15860:1 15864:1 15874:1 15898:4 15901:1 15905:1 15918:1 15936:1 15940:1 15950:1 15957:1 16005:1 16033:1 16035:1 16062:1 16066:1 16089:2 16100:1 16109:1 16111:1 16132:1 16145:1 16152:1 16154:1 16158:1 16160:1 16164:2 16178:1 16179:1 16197:1 16200:1 16240:1 16257:1 16258:1 16261:1 16263:3 16282:1 16289:3 16309:2 16317:1 16357:2 16367:1 16371:1 16372:1 16375:1 16379:1 16383:1 16387:1 16390:1 16392:1 16408:1 16443:1 16447:2 16451:1 16456:1 16464:1 16468:1 16469:1 16474:1 16486:2 16512:4 16531:1 16546:1 16547:1 16563:1 16571:1 16575:1 16583:1 16586:1 16604:1 16608:1 16616:1 16630:1 16635:1 16645:1 16657:1 16668:1 16675:1 16678:2 16685:1 16713:3 16716:1 16718:1 16720:1 16721:1 16729:1 16743:1 16744:1 16750:1 16751:1 16766:2 16767:3 16768:1 16770:1 16780:1 16783:1 16784:1 16786:2 16787:1 16800:1 16802:1 16803:1 16808:1 16810:1 16823:1 16848:1 16850:1 16860:1 16873:1 16891:2 16898:1 16906:1 16937:2 16942:1 16958:1 16961:1 16966:3 16973:2 16990:1 16991:1 17021:2 17022:1 17028:1 17043:1 17045:1 17050:3 17076:1 17083:1 17094:2 17101:1 17127:1 17140:4 17166:4 17186:1 17236:1 17284:1 17288:1 17291:7 17298:1 17300:1 17312:1 17319:1 17326:1 17328:1 17341:1 17360:1 17365:2 17433:1 17441:1 17447:1 17471:1 17486:1 17492:2017 17497:1 17520:1 17538:1 17539:1 17541:1 17551:1 17555:1 17599:1 17628:1 17668:1 17669:1 17690:1 17691:1 17755:1 17793:1 17794:1 17815:1 17838:1 17846:1 17902:1 17912:2 17914:1 17933:1 17938:1 17945:1 17991:1 18003:2 18020:1 18028:1 18032:1 18042:1 18055:1 18087:2 18107:1 18108:1 18110:4 18131:1 18145:1 18161:1 18185:1 18196:1 18198:1 18217:2 18226:1 18237:1 18254:1 18269:8 18271:1 18333:1 18366:1 18380:3 18383:1 18398:1 18415:4 18423:1 18449:1 18471:1 18480:1 18485:2 18494:2 18503:1 18507:2 18525:2 18535:1 18544:2 18549:1 18566:1 18584:2 18590:1 18592:1 18594:1 18605:1 18606:2 18619:1 18622:1 18651:1 18667:1 18672:3 18675:1 18676:1 18695:1 18720:1 18740:1 18757:1 18773:1 18776:2 18778:2 18849:4 18856:1 18892:1 18915:3 18921:3 18928:1 18929:1 18932:1 18949:1 18958:2 18965:1 18974:1 18983:2 18985:1 18992:1 18995:1 19001:1 19003:1 19005:1 19011:1 19033:1 19044:1 19054:1 19057:1 19061:2 19078:2 19080:1 19097:1 19098:1 19109:1 19115:1 19202:1 19208:2 19214:1 19215:1 19238:3 19240:1 19242:2 19253:1 19268:1 19274:1 19277:1 19278:1 19297:1 19358:1 19382:1 19388:2 19416:1 19424:1 19426:1 19435:1 19451:1 19462:1 19465:1 19471:1 19483:1 19485:1 19487:1 19488:1 19493:1 19510:1 19515:1 19518:1 19525:1 19558:2 19579:1 19596:2 19601:1 19603:1 19611:1 19612:1 19623:2 19624:1 19636:2 19647:2 19648:1 19651:2 19706:1 19708:1 19710:1 19722:1 19743:1 19758:1 19759:1 19761:1 19778:1 19785:1 19804:1 19809:2 19877:1 19885:1 19928:1 19934:1 19957:1 19968:2 20012:1 20018:1 20033:2 20077:1 20079:1 20089:1 20091:2 20096:1 20109:1 20131:1 20139:1 20143:1 20174:1 20190:1 20196:1 20201:1 20203:1 20216:1 20231:1 20234:1 20247:1 20251:1 20252:1 20263:1 20290:1 20307:1 20349:1 20370:2 20376:1 20397:1 20401:3 20407:1 20411:1 20415:1 20421:6 20422:1 20433:3 20446:1 20455:1 20462:2 20477:2 20481:1 20482:1 20483:1 20486:1 20488:1 20529:2 20547:1 20561:1 20571:1 20577:3 20580:1 20583:1 20591:1 20594:1 20597:1 20608:1 20609:1 20610:3 20613:1 20624:1 20625:2 20627:1 20654:1 20656:1 20659:1 20660:1 20670:1 20694:2 20704:1 20716:1 20727:1 20729:1 20754:1 20762:1 20775:2 20776:1 20793:1 20796:2 20803:1 20804:3 20823:1 20828:2 20841:1 20864:1 20871:1 20894:2 20901:1 20913:1 20923:1 20931:1 20933:1 20942:1 20960:1 20975:1 20980:3 20988:1 20994:2 21002:1 21004:1 21006:2 21007:2 21011:2 21017:1 21025:1 21030:1 21040:1 21053:1 21067:2 21072:1 21080:1 21082:2 21111:2 21117:1 21120:1 21121:1 21132:1 21159:2 21173:3 21185:2 21195:1 21223:1 21233:1 21236:1 21241:1 21242:1 21252:1 21254:2 21260:1 21277:1 21280:1 21287:1 21305:1 21313:1 21315:1 21320:1 21323:1 21324:1 21329:1 21337:2 21345:1 21347:1 21430:6 21435:1 21438:1 21439:1 21444:1 21449:1 21450:1 21452:1 21460:1 21478:1 21503:1 21516:2 21554:2 21560:1 21568:2 21579:1 21584:1 21587:1 21593:1 21594:1 21603:1 21632:2 21656:1 21692:2 21709:5 21729:1 21730:3 21731:2 21777:1 21850:1 21874:1 21895:1 21896:3 21904:1 21909:1 21911:1 21919:2 21923:1 21925:1 21927:2 21954:2 21967:1 21968:1 21975:1 21986:1 21987:2 22024:2 22030:1 22040:1 22046:1 22055:3 22060:1 22066:1 22074:1 22097:1 22105:1 22119:1 22128:1 22133:1 22137:1 22148:3 22152:1 22157:2 22176:1 22188:1 22189:1 22200:1 22202:1 22208:2 22215:1 22219:1 22224:1 22248:2 22270:1 22283:1 22291:1 22309:1 22323:1 22325:1 22333:2 22340:1 22351:1 22382:1 22387:1 22391:1 22405:1 22409:1 22424:1 22438:1 22449:1 22471:2 22476:1 22502:1 22538:1 22544:1 22568:3 22569:1 22571:1 22572:1 22578:1 22586:1 22614:1 22634:2 22647:1 22652:1 22663:1 22666:1 22678:2 22679:1 22707:3 22717:1 22718:1 22728:1 22737:1 22747:1 22759:1 22762:1 22779:1 22788:3 22797:1 22830:2 22838:1 22876:2 22885:1 22887:1 22935:1 22948:2 22956:4 22963:1 22967:2 22988:1 23000:1 23003:6 23007:1 23052:1 23068:1 23078:1 23094:1 23103:1 23108:1 23111:1 23119:1 23121:1 23127:1 23128:2 23135:1 23138:1 23156:1 23162:1 23164:1 23165:1 23173:1 23190:1 23191:1 23194:1 23199:1 23219:1 23222:1 23224:1 23230:1 23231:1 23240:1 23241:1 23245:3 23247:1 23250:1 23267:1 23269:1 23271:1 23277:1 23286:1 23315:2 23373:2 23383:1 23415:1 23416:1 23426:1 23452:1 23453:1 23486:1 23518:1 23535:1 23554:1 23608:2 23628:1 23633:3 23637:1 23648:1 23675:4 23694:3 23711:1 23718:2 23731:1 23735:2 23738:2 23743:1 23751:1 23766:1 23783:1 23791:1 23816:1 23821:1 23822:1 23842:1 23850:1 23864:1 23865:1 23866:3 23872:1 23873:2 23878:1 23879:2 23897:1 23898:1 23901:1 23902:1 23904:1 23913:2 23914:1 23918:2 23935:3 23936:1 23949:1 23960:1 23964:2 23966:1 23986:1 23987:1 24008:1 24012:1 24040:4 24063:1 24085:1 24091:1 24099:1 24119:1 24141:1 24143:1 24151:1 24153:1 24157:1 24171:1 24188:1 24204:1 24228:1 24251:1 24267:1 24268:1 24271:4 24273:1 24298:1 24324:2 24330:1 24338:1 24352:2 24367:1 24377:1 24397:1 24420:1 24430:2 24433:1 24436:1 24437:1 24442:1 24443:1 24452:1 24463:1 24466:2 24490:1 24503:1 24533:3 24542:1 24566:2 24579:1 24598:7 24638:1 24643:2 24655:1 24672:1 24675:1 24708:1 24712:1 24720:1 24721:2 24730:1 24731:1 24734:1 24759:1 24765:1 24809:1 24836:2 24839:1 24853:1 24854:1 24856:2 24860:1 24861:1 24865:1 24885:1 24899:4 24928:3 24936:1 24941:1 24957:1 24965:1 24988:1 24993:1 25000:1 25018:1 25033:1 25045:1 25071:2 25079:2 25107:1 25113:1 25134:1 25161:1 25219:1 25248:2 25274:1 25277:2 25281:3 25296:1 25338:1 25345:1 25347:1 25349:1 25370:1 25387:1 25393:1 25413:1 25434:1 25452:3 25460:1 25466:1 25473:2 25488:1 25515:1 25521:1 25537:1 25539:1 25543:1 25545:3 25587:1 25593:1 25597:1 25623:1 25635:3 25641:1 25662:1 25663:1 25678:1 25704:2 25706:1 25710:1 25717:1 25719:1 25720:1 25724:2 25728:1 25767:5 25769:1 25770:1 25778:3 25780:1 25785:1 25786:1 25788:1 25790:1 25793:2 25798:1 25799:1 25804:1 25811:1 25835:2 25842:1 25850:1 25866:4 25871:1 25874:1 25877:2 25878:1 25894:1 25897:1 25912:1 25924:1 25961:1 26013:2 26026:1 26028:1 26049:1 26057:1 26068:3 26070:2 26071:1 26072:1 26084:2 26092:1 26125:1 26131:1 26166:1 26174:1 26184:1 26218:1 26250:1 26266:1 26275:1 26280:3 26312:1 26315:2 26322:1 26337:1 26340:1 26348:1 26352:4 26364:1 26378:1 26381:1 26400:1 26402:1 26409:1 26422:1 26429:2 26435:2 26442:1 26444:1 26446:10 26451:1 26468:1 26480:1 26482:6 26498:6 26504:1 26531:1 26545:1 26548:1 26565:1 26574:4 26575:1 26576:1 26598:2 26609:5 26641:1 26647:9 26652:1 26655:1 26659:1 26666:2 26681:1 26709:1 26723:2 26751:1 26762:1 26782:1 26811:1 26821:1 26824:1 26828:2 26834:1 26835:1 26843:1 26853:1 26866:2 26872:1 26898:1 26909:2 26912:1 26913:1 26955:1 26962:1 26968:1 26977:1 26981:2 26984:2 26990:1 27001:1 27006:1 27010:1 27026:1 27029:1 27050:2 27062:1 27078:1 27084:1 27086:1 27095:1 27113:2 27118:1 27122:1 27133:1 27137:2 27180:2 27190:1 27205:1 27227:1 27232:1 27250:1 27261:1 27276:1 27286:2 27298:1 27358:1 27360:1 27364:1 27368:1 27372:2 27418:1 27431:1 27433:1 27435:1 27473:1 27479:5 27481:1 27489:2 27497:1 27499:1 27522:1 27526:1 27529:2 27538:1 27557:2 27565:3 27608:2 27615:1 27625:2 27633:3 27641:2 27643:2 27678:1 27691:1 27696:4 27704:1 27730:1 27746:1 27756:2 27758:1
12 1:1 34:1 37:1 38:1 43:1 52:1 57:2 74:1 87:4 92:1 111:1 120:1 141:1 159:1 165:1 179:2 182:1 195:2 200:1 202:1 209:1 210:1 277:1 282:1 292:1 294:1 313:1 328:4 356:2 363:3 378:2 379:1 388:1 413:1 418:3 423:1 430:1 441:2 457:1 528:1 535:1 553:1 603:3 609:1 637:1 648:2 666:1 693:1 694:1 698:2 700:2 725:2 739:1 790:1 794:1 820:1 861:7 867:1 870:1 874:1 881:1 888:4 893:1 903:2 909:2 923:2 941:2 949:2 950:1 952:1 981:1 990:1 994:1 1019:1 1022:1 1037:1 1054:1 1068:1 1069:1 1073:1 1082:1 1088:1 1104:1 1125:1 1132:1 1140:1 1154:1 1167:1 1192:1 1193:2 1195:1 1203:2 1217:3 1222:1 1231:1 1240:1 1249:2 1277:2 1287:1 1301:1 1310:1 1331:2 1344:3 1349:1 1354:1 1357:1 1367:1 1369:1 1397:5 1448:1 1450:1 1451:5 1454:1 1457:7 1459:1 1461:1 1462:1 1478:1 1482:1 1484:1 1493:1 1506:1 1513:1 1516:1 1534:2 1535:2 1541:1 1551:1 1556:1 1559:1 1562:1 1564:2 1565:3 1568:1 1574:1 1586:1 1623:2 1625:2 1656:2 1660:1 1668:4 1680:2 1683:1 1691:1 1695:2 1696:1 1730:2 1740:1 1762:2 1768:1 1791:1 1795:1 1810:1 1815:1 1817:1 1831:2 1834:1 1839:3 1844:1 1848:1 1864:2 1877:1 1890:2 1891:1 1897:2 1905:1 1909:1 1922:2 1941:1 1950:1 1978:1 2006:1 2007:4 2010:1 2030:1 2039:1 2058:1 2060:2 2063:1 2080:1 2086:1 2089:1 2096:1 2122:4 2148:1 2164:1 2169:1 2188:1 2191:5 2197:2 2200:1 2204:1 2208:1 2210:2 2219:1 2235:1 2236:1 2244:2 2245:2 2246:2 2248:1 2249:5 2251:2 2253:2 2256:2 2258:2 2261:1 2262:1 2264:2 2265:2 2266:1 2269:1 2270:5 2272:1 2276:1 2280:1 2281:1 2287:2 2307:1 2338:6 2339:1 2354:2 2356:1 2368:1 2369:1 2381:1 2418:2 2423:1 2451:1 2452:1 2459:1 2487:1 2501:1 2505:1 2514:2 2523:1 2526:4 2545:1 2550:1 2557:1 2572:1 2575:1 2580:1 2583:1 2589:1 2620:1 2640:1 2662:1 2666:1 2694:1 2699:4 2703:1 2706:1 2721:1 2724:1 2741:2 2745:1 2756:4 2769:2 2770:1 2807:1 2815:1 2832:1 2846:5 2852:1 2857:2 2860:1 2898:1 2912:1 2919:1 2927:1 2928:2 2937:1 2951:1 2957:1 2965:1 2972:1 2973:1 2990:1 3000:1 3008:1 3021:1 3053:1 3065:1 3080:1 3083:3 3084:1 3113:1 3135:1 3143:1 3154:1 3155:1 3160:1 3166:1 3174:1 3178:1 3191:2 3207:1 3223:1 3232:2 3244:8 3247:1 3257:1 3260:1 3318:1 3320:1 3322:1 3338:1 3368:1 3370:1 3399:1 3402:1 3407:1 3426:1 3431:1 3442:1 3460:2 3462:1 3489:1 3497:1 3500:1 3504:1 3512:1 3515:1 3525:1 3529:1 3534:1 3548:1 3559:1 3568:1 3577:4 3584:1 3586:1 3588:1 3591:1 3593:1 3600:1 3603:1 3607:1 3612:2 3648:4 3674:1 3675:2 3697:1 3703:1 3713:1 3717:1 3721:3 3725:1 3726:2 3733:1 3741:1 3746:1 3753:1 3754:1 3763:1 3805:1 3806:3 3813:1 3825:1 3832:1 3844:3 3846:1 3849:1 3866:1 3872:1 3876:1 3878:1 3888:1 3904:1 3906:1 3913:1 3916:1 3921:2 3932:3 3972:1 3973:1 3992:1 4014:1 4023:2 4030:1 4072:1 4079:1 4104:5 4107:3 4113:1 4117:1 4123:1 4145:1 4163:5 4165:1 4167:1 4175:1 4180:1 4192:1 4216:1 4231:2 4239:2 4258:1 4267:1 4281:1 4310:2 4346:1 4356:1 4357:1 4375:1 4386:2 4404:1 4406:1 4414:1 4416:1 4423:2 4431:2 4472:1 4494:2 4506:1 4517:1 4521:1 4524:1 4525:1 4526:1 4533:1 4550:3 4569:1 4578:1 4579:1 4581:1 4597:1 4603:1 4605:1 4656:1 4668:1 4677:1 4700:1 4710:10 4711:3 4722:1 4730:1 4732:2 4733:1 4738:2 4749:1 4750:1 4759:1 4814:6 4820:1 4823:1 4828:3 4830:2 4833:1 4836:1 4838:1 4841:1 4842:1 4844:1 4845:2 4850:3 4854:1 4856:3 4857:2 4860:2 4879:1 4887:1 4891:1 4915:1 4916:3 4920:1 4934:1 4943:1 4948:1 4961:1 4993:1 4996:1 5045:2 5056:1 5057:1 5095:1 5112:1 5118:1 5130:3 5133:1 5141:3 5158:1 5162:1 5163:6 5188:8 5242:1 5269:1 5274:2 5327:1 5335:1 5355:2 5357:1 5361:1 5379:1 5382:1 5392:1 5400:1 5401:1 5402:1 5407:1 5418:1 5426:1 5438:1 5452:1 5469:1 5470:3 5473:1 5475:1 5476:2 5478:1 5481:1 5484:1 5496:1 5504:1 5511:1 5519:1 5527:2 5534:1 5639:1 5663:1 5665:1 5669:1 5705:1 5750:2 5752:7 5755:1 5777:1 5779:1 5787:1 5788:1 5794:2 5797:1 5813:1 5840:1 5844:1 5864:1 5868:3 5877:1 5903:1 5906:1 5917:2 5934:1 5960:1 5994:4 6003:1 6007:1 6008:1 6016:1 6024:1 6069:1 6076:2 6092:4 6096:2 6098:2 6101:3 6102:1 6109:1 6110:1 6113:1 6115:5 6116:1 6117:9 6119:1 6120:3 6122:1 6158:1 6169:2 6233:1 6246:2 6254:1 6260:2 6283:2 6305:2 6308:1 6318:1 6362:1 6375:1 6399:1 6414:2 6420:1 6421:1 6428:1 6436:2 6439:1 6455:1 6472:1 6486:1 6490:1 6492:2 6493:1 6515:1 6516:2 6519:1 6533:2 6536:1 6545:4 6566:1 6568:1 6569:1 6574:1 6578:1 6613:1 6614:1 6629:1 6650:1 6656:1 6714:1 6745:1 6749:1 6762:1 6764:1 6780:1 6798:1 6826:1 6877:6 6878:2 6883:1 6895:1 6924:2 6932:1 6949:1 6958:2 6964:1 6971:1 6974:1 6975:2 6981:1 6990:1 6996:1 7009:1 7047:1 7098:1 7117:3 7127:2 7130:1 7131:1 7143:5 7144:2 7146:4 7155:1 7180:1 7183:1 7198:1 7211:1 7216:1 7250:2 7263:1 7274:1 7290:2 7293:1 7294:1 7295:1 7328:8 7329:6 7336:1 7337:1 7344:1 7346:1 7351:1 7352:1 7356:2 7360:1 7367:1 7384:2 7394:33 7410:6 7412:1 7419:2 7422:1 7432:1 7457:1 7460:1 7480:1 7488:2 7489:2 7522:2 7550:1 7587:2 7594:1 7604:1 7614:2 7629:1 7633:1 7636:1 7640:1 7645:1 7651:1 7689:1 7693:1 7725:2 7733:1 7768:1 7770:1 7773:1 7777:1 7778:1 7811:1 7852:2 7864:1 7867:1 7871:6 7902:1 7905:1 7916:1 7947:1 7961:1 7995:1 7999:1 8001:1 8008:1 8021:1 8024:1 8062:1 8072:1 8087:2 8091:1 8094:1 8111:1 8124:1 8133:1 8140:1 8166:1 8167:1 8204:3 8206:2 8207:1 8212:1 8217:1 8219:1 8220:1 8221:1 8224:1 8238:1 8244:1 8247:3 8249:1 8259:1 8262:1 8277:1 8285:1 8287:2 8320:1 8322:1 8324:2 8328:1 8335:1 8338:1 8366:1 8433:1 8437:1 8450:1 8468:1 8483:2 8490:1 8491:1 8501:1 8511:2 8523:1 8528:1 8580:1 8587:1 8591:1 8599:2 8630:1 8659:1 8662:1 8663:1 8676:1 8688:2 8689:1 8690:1 8692:1 8707:1 8710:1 8713:1 8717:1 8732:1 8733:1 8740:1 8750:4 8751:1 8767:1 8787:1 8796:2 8799:1 8801:1 8810:1 8813:2 8816:1 8824:1 8827:1 8838:1 8841:3 8843:3 8844:1 8845:1 8866:1 8880:1 8883:2 8902:1 8910:1 8912:1 8914:2 8918:1 8922:1 8930:1 8931:2 8948:1 8960:1 8965:1 8978:1 8984:1 8990:1 8995:2 8998:1 9006:1 9007:1 9011:1 9019:1 9031:1 9055:1 9066:7 9080:1 9102:2 9108:1 9109:2 9132:1 9133:1 9136:1 9147:3 9153:1 9161:1 9162:1 9165:1 9172:1 9175:2 9190:1 9191:2 9192:1 9198:1 9203:2 9220:1 9244:1 9250:2 9254:3 9257:1 9264:1 9267:2 9287:7 9302:1 9303:3 9305:1 9307:1 9308:1 9312:1 9369:1 9397:1 9433:4 9452:1 9469:1 9480:1 9481:4 9484:1 9492:1 9505:1 9510:1 9523:1 9526:3 9529:1 9538:1 9583:1 9594:4 9598:1 9599:2 9601:1 9617:1 9627:1 9628:1 9650:1 9661:1 9665:1 9693:1 9719:1 9744:1 9747:1 9760:1 9774:1 9776:1 9778:1 9797:1 9802:1 9808:1 9814:1 9831:1 9839:1 9840:1 9846:1 9855:1 9876:2 9882:2 9895:1 9902:1 9954:1 9961:3 9963:1 9995:3 9999:1 10018:1 10020:1 10024:1 10027:1 10039:2 10041:2 10054:1 10057:1 10059:4 10060:1 10063:1 10066:1 10072:2 10112:1 10135:1 10145:3 10148:1 10155:7 10162:1 10163:1 10182:2 10191:1 10210:1 10214:1 10215:2 10237:1 10266:1 10274:1 10337:1 10357:2 10358:1 10359:5 10365:2 10380:1 10386:1 10405:1 10419:1 10424:1 10442:1 10448:2 10453:1 10473:1 10474:2 10488:3 10496:1 10500:2 10519:1 10524:1 10526:1 10537:1 10543:1 10547:1 10559:1 10573:1 10578:1 10583:1 10585:1 10594:1 10595:1 10627:1 10631:1 10633:2 10700:2 10710:1 10711:1 10714:1 10740:1 10750:1 10767:1 10777:1 10781:2 10787:1 10804:1 10812:5 10855:1 10866:2 10883:2 10888:1 10889:1 10896:1 10905:1 10910:2 10918:2 10961:1 10975:2 10978:1 10987:1 10989:1 10992:2 10999:1 11008:4 11047:2 11053:2 11054:1 11061:1 11070:1 11071:1 11074:2 11076:1 11077:1 11080:2 11092:1 11096:3 11125:1 11126:1 11130:2 11142:1 11148:1 11151:2 11158:1 11159:1 11169:2 11189:1 11194:1 11233:1 11244:2 11252:1 11253:1 11268:1 11284:1 11299:1 11310:1 11316:1 11318:1 11332:1 11333:1 11344:1 11352:1 11364:1 11371:1 11424:1 11442:1 11443:6 11462:1 11464:1 11465:1 11477:3 11488:2 11494:1 11501:1 11507:2 11512:1 11528:1 11529:1 11549:2 11560:1 11565:1 11569:1 11581:4 11607:1 11624:2 11630:1 11663:1 11665:1 11668:2 11676:1 11710:2 11713:1 11731:1 11752:1 11756:1 11757:1 11761:1 11775:1 11784:1 11785:1 11789:1 11855:2 11869:1 11874:1 11902:1 11910:1 11911:1 11913:1 11928:1 11972:2 11976:1 11977:1 11979:2 11980:1 11981:1 11999:1 12000:1 12001:2 12009:1 12037:1 12049:1 12058:1 12063:5 12070:2 12075:1 12109:1 12125:1 12139:1 12149:1 12174:1 12185:1 12209:1 12244:1 12269:1 12272:1 12285:1 12292:1 12317:1 12337:1 12348:1 12349:1 12355:2 12356:4 12360:2 12376:1 12381:1 12386:1 12396:1 12402:1 12403:5 12410:1 12427:1 12438:2 12443:1 12445:3 12471:1 12506:1 12507:1 12515:2 12522:1 12533:1 12548:2 12570:1 12575:3 12586:1 12590:2 12603:1 12612:1 12632:2 12639:1 12648:1 12664:1 12698:1 12703:1 12718:1 12721:1 12815:4 12827:1 12844:1 12851:1 12852:2 12857:1 12859:7 12860:1 12861:1 12862:1 12881:2 12884:1 12902:2 12919:2 12920:1 12937:1 12939:1 12949:2 12956:1 12959:2 12986:1 12991:1 12997:3 13003:1 13008:1 13010:4 13013:2 13015:1 13055:1 13056:1 13068:1 13070:1 13081:1 13093:1 13094:2 13108:2 13109:1 13114:1 13128:6 13134:1 13148:3 13157:1 13164:2 13166:1 13172:1 13181:1 13195:2 13203:1 13204:1 13245:1 13274:1 13276:1 13280:1 13320:2 13321:1 13326:1 13330:4 13352:1 13356:1 13360:1 13370:1 13386:2 13392:1 13399:1 13437:1 13468:1 13483:1 13484:1 13498:1 13499:2 13502:1 13504:2 13517:1 13527:2 13534:1 13537:1 13547:1 13553:1 13562:1 13577:1 13592:1 13597:1 13606:1 13628:1 13657:1 13678:1 13686:2 13691:2 13695:2 13705:1 13709:1 13718:1 13734:4 13746:1 13758:1 13763:1 13774:4 13776:1 13812:1 13824:1 13841:1 13846:1 13848:1 13854:1 13873:1 13874:2 13875:1 13904:1 13915:1 13919:4 13924:1 13926:1 13934:2 13935:1 13956:1 13990:1 14009:1 14017:3 14029:1 14045:1 14047:1 14049:2 14050:1 14057:1 14059:1 14077:1 14112:1 14125:1 14129:1 14133:1 14150:1 14151:2 14155:3 14160:2 14167:1 14170:1 14176:1 14200:1 14205:1 14245:1 14253:2 14299:1 14317:1 14332:1 14342:1 14354:1 14355:2 14365:1 14381:1 14409:1 14429:1 14440:1 14452:1 14460:1 14462:2 14463:1 14467:1 14475:1 14476:2 14479:2 14480:1 14487:1 14497:1 14512:1 14520:2 14523:1 14526:1 14528:1 14534:1 14535:1 14575:1 14588:1 14595:1 14602:2 14611:1 14637:1 14654:1 14656:1 14663:1 14678:1 14701:1 14708:1 14733:4 14736:1 14744:1 14747:1 14749:1 14754:3 14757:1 14763:1 14767:1 14769:2 14770:1 14773:1 14774:1 14782:3 14786:1 14790:1 14797:2 14812:4 14820:1 14835:1 14839:1 14843:2 14878:1 14888:1 14898:2 14903:1 14919:1 14923:2 14962:2 14970:1 14982:1 15001:1 15003:1 15021:1 15048:3 15057:1 15070:2 15093:1 15098:1 15100:1 15118:1 15120:1 15121:1 15131:2 15137:1 15140:3 15141:1 15147:1 15173:3 15174:1 15180:1 15193:2 15231:1 15232:1 15261:1 15265:1 15287:3 15295:1 15297:2 15299:1 15306:1 15307:1 15323:1 15348:1 15370:1 15380:1 15381:1 15388:1 15390:1 15406:1 15407:1 15408:2 15413:2 15427:1 15459:1 15489:1 15490:1 15504:2 15524:4 15532:1 15555:1 15561:1 15572:1 15579:1 15610:1 15629:1 15635:3 15652:1 15668:1 15672:1 15686:1 15689:1 15712:1 15714:2 15742:2 15764:1 15785:1 15846:1 15860:1 15864:1 15874:1 15898:4 15901:1 15905:1 15918:1 15936:1 15940:1 15950:1 15953:1 15957:1 16005:1 16033:1 16035:1 16062:1 16066:1 16089:2 16100:1 16109:1 16111:1 16132:1 16145:1 16152:1 16154:1 16158:1 16160:1 16164:2 16178:1 16179:1 16197:1 16200:1 16215:1 16240:1 16257:1 16258:1 16261:1 16263:3 16282:1 16289:3 16309:2 16317:1 16357:2 16367:1 16371:1 16372:1 16375:1 16379:1 16383:1 16387:2 16390:1 16392:1 16408:1 16443:1 16447:2 16450:1 16451:1 16456:1 16464:1 16468:1 16469:1 16474:1 16486:2 16512:4 16531:1 16545:1 16546:1 16547:1 16563:2 16571:1 16575:1 16583:1 16586:1 16604:1 16608:1 16616:1 16630:1 16635:1 16645:1 16657:1 16668:1 16675:1 16678:2 16685:1 16713:3 16716:1 16718:1 16720:1 16721:1 16729:1 16743:1 16744:1 16750:1 16751:1 16766:2 16767:3 16768:1 16770:1 16780:1 16783:1 16784:1 16786:2 16787:1 16800:1 16802:2 16803:1 16808:1 16810:1 16823:1 16848:1 16850:1 16860:1 16873:1 16891:2 16898:1 16906:1 16937:2 16942:1 16958:1 16961:1 16966:3 16973:2 16990:1 16991:1 17021:2 17022:1 17028:1 17043:1 17045:1 17050:3 17076:1 17083:1 17094:2 17101:1 17121:1 17127:1 17140:4 17145:1 17166:5 17186:1 17213:1 17236:1 17284:1 17288:1 17291:7 17296:1 17298:1 17300:1 17312:1 17319:1 17326:1 17328:1 17341:1 17360:1 17365:2 17433:1 17441:1 17447:1 17471:2 17486:1 17492:2096 17497:1 17515:1 17520:1 17538:1 17539:1 17541:1 17551:1 17555:1 17594:1 17599:1 17628:1 17668:1 17669:1 17690:1 17691:1 17755:1 17793:1 17794:1 17815:1 17838:1 17846:1 17902:2 17912:2 17914:1 17933:1 17938:1 17945:1 17991:1 18000:1 18003:2 18020:1 18028:1 18032:1 18042:1 18055:1 18087:2 18107:1 18108:1 18110:4 18131:1 18145:1 18161:1 18185:1 18196:1 18198:1 18217:2 18226:1 18237:1 18254:1 18269:8 18271:1 18333:1 18366:1 18380:3 18383:1 18398:1 18415:4 18423:1 18449:1 18471:1 18480:1 18485:2 18494:2 18503:1 18507:2 18525:2 18535:1 18542:1 18544:2 18547:1 18549:1 18566:1 18584:2 18590:1 18592:1 18594:1 18603:1 18605:1 18606:2 18619:1 18622:1 18651:1 18667:1 18672:3 18675:1 18676:1 18695:1 18720:1 18740:1 18757:1 18773:1 18776:2 18778:2 18849:4 18856:1 18892:1 18915:4 18921:4 18928:1 18929:1 18932:1 18949:1 18958:2 18965:1 18974:1 18983:2 18985:1 18992:1 18995:1 19001:1 19003:1 19005:1 19011:1 19033:1 19044:1 19054:1 19057:1 19061:2 19078:2 19080:1 19097:1 19098:1 19109:1 19115:1 19202:1 19208:2 19214:1 19215:1 19238:3 19240:1 19242:2 19253:1 19268:1 19274:1 19277:1 19278:1 19297:1 19358:1 19382:1 19384:1 19388:2 19416:1 19424:1 19426:1 19435:1 19451:1 19462:1 19465:1 19469:1 19471:1 19483:1 19485:1 19487:1 19488:2 19493:1 19508:1 19510:1 19515:1 19518:1 19525:1 19558:2 19579:1 19593:1 19596:2 19601:1 19603:1 19611:1 19612:1 19623:2 19624:1 19636:2 19647:2 19648:1 19651:2 19706:1 19708:1 19710:1 19721:1 19722:1 19743:1 19758:1 19759:1 19761:1 19778:1 19785:1 19804:1 19809:2 19877:1 19885:1 19928:1 19934:1 19956:1 19957:1 19962:1 19968:2 20010:1 20012:1 20018:1 20033:2 20077:1 20079:1 20089:1 20091:2 20096:1 20109:1 20114:1 20131:1 20138:1 20139:2 20143:1 20174:1 20190:1 20196:1 20201:1 20203:1 20216:1 20220:1 20231:1 20234:1 20247:1 20251:1 20252:1 20263:1 20290:1 20307:1 20349:1 20370:2 20376:1 20397:1 20401:3 20407:1 20411:2 20415:1 20421:6 20422:1 20433:3 20438:1 20446:1 20455:1 20462:2 20477:2 20481:1 20482:1 20483:1 20486:1 20488:1 20529:2 20547:1 20561:1 20571:1 20577:3 20580:2 20583:1 20591:1 20594:1 20597:1 20608:1 20609:1 20610:3 20613:1 20624:1 20625:2 20627:1 20654:1 20656:1 20659:1 20660:1 20670:1 20694:2 20704:1 20711:1 20716:1 20727:1 20729:1 20754:1 20762:1 20775:2 20776:1 20793:1 20796:2 20803:1 20804:3 20823:1 20828:2 20841:1 20864:1 20871:1 20894:2 20901:1 20913:1 20923:1 20931:1 20933:1 20942:1 20960:1 20975:1 20980:3 20988:1 20994:2 21002:1 21004:1 21006:2 21007:2 21011:2 21017:1 21025:1 21030:1 21040:1 21053:1 21067:2 21072:1 21080:1 21082:2 21111:2 21117:1 21120:1 21121:1 21132:2 21159:2 21173:3 21185:2 21195:1 21223:1 21233:1 21236:1 21241:1 21242:1 21252:1 21254:2 21260:1 21277:1 21280:1 21287:1 21305:1 21313:1 21315:1 21320:1 21323:1 21324:1 21329:1 21337:2 21345:1 21347:1 21430:6 21435:1 21438:1 21439:1 21444:1 21449:1 21450:1 21452:1 21460:1 21478:1 21503:1 21516:2 21554:2 21560:1 21568:2 21579:1 21584:1 21587:1 21593:1 21594:1 21603:1 21632:2 21656:1 21692:2 21709:5 21729:1 21730:3 21731:2 21777:1 21788:1 21850:1 21874:1 21895:1 21896:3 21904:1 21909:2 21911:1 21919:2 21923:1 21925:1 21927:2 21954:2 21967:1 21968:1 21975:1 21986:1 21987:2 22024:2 22030:1 22040:1 22046:1 22055:3 22060:1 22066:1 22074:1 22097:1 22105:1 22119:1 22128:1 22133:1 22137:2 22148:3 22152:1 22157:2 22176:1 22188:1 22189:1 22200:1 22202:1 22208:3 22215:1 22219:1 22224:1 22248:2 22270:1 22283:1 22291:1 22309:1 22323:1 22325:1 22333:2 22340:1 22351:1 22382:1 22387:1 22391:1 22405:1 22409:1 22424:1 22438:1 22449:1 22471:2 22476:1 22502:1 22538:1 22544:1 22568:3 22569:1 22571:1 22572:1 22578:1 22586:1 22614:1 22616:1 22634:2 22647:1 22652:1 22663:1 22666:1 22678:2 22679:1 22707:3 22717:1 22718:1 22728:1 22737:1 22747:1 22759:1 22762:1 22779:1 22788:3 22797:1 22830:2 22838:1 22876:2 22885:1 22887:1 22935:1 22948:2 22956:5 22963:1 22967:2 22988:1 23000:1 23003:6 23007:1 23052:1 23068:1 23078:1 23094:1 23103:1 23108:1 23111:1 23119:1 23121:1 23127:2 23128:2 23135:1 23138:1 23156:1 23162:1 23164:1 23165:1 23173:1 23190:1 23191:1 23194:1 23199:1 23219:1 23222:1 23224:1 23230:1 23231:1 23240:1 23241:1 23245:3 23247:1 23250:1 23267:1 23269:1 23271:1 23277:1 23286:1 23315:2 23373:2 23383:1 23415:1 23416:1 23426:1 23452:1 23453:1 23486:1 23518:1 23535:1 23554:1 23608:2 23628:1 23633:3 23637:1 23648:1 23675:4 23694:3 23711:1 23718:2 23731:1 23735:2 23738:2 23743:1 23751:1 23766:1 23783:1 23785:1 23791:1 23816:1 23821:1 23822:1 23842:1 23850:1 23864:1 23865:1 23866:3 23872:1 23873:2 23878:1 23879:2 23897:1 23898:1 23901:1 23902:1 23904:1 23913:2 23914:1 23918:2 23935:3 23936:1 23949:1 23960:1 23964:2 23966:1 23986:1 23987:1 24008:1 24012:1 24040:5 24063:1 24064:1 24085:2 24091:1 24099:1 24119:1 24141:1 24143:1 24151:1 24153:1 24157:1 24171:1 24188:1 24204:1 24223:1 24228:1 24251:1 24267:1 24268:1 24271:4 24273:1 24298:1 24324:2 24330:1 24338:1 24352:2 24367:2 24377:1 24397:1 24420:1 24430:2 24433:1 24436:1 24437:1 24442:1 24443:1 24452:1 24463:1 24466:2 24490:1 24503:1 24533:3 24542:1 24566:2 24579:1 24598:7 24638:1 24643:2 24655:1 24672:1 24675:1 24708:1 24712:1 24720:1 24721:2 24730:1 24731:1 24734:1 24759:1 24765:1 24809:1 24836:2 24839:1 24853:1 24854:1 24856:2 24860:1 24861:1 24865:1 24885:1 24899:4 24928:3 24936:1 24941:1 24957:1 24965:1 24988:1 24993:1 25000:1 25018:1 25033:1 25045:1 25071:2 25079:2 25107:1 25113:1 25134:1 25161:1 25219:1 25248:2 25274:1 25277:2 25281:3 25296:1 25317:1 25331:1 25338:1 25345:1 25346:1 25347:1 25349:1 25370:1 25387:1 25393:1 25413:1 25434:1 25452:3 25460:1 25466:1 25473:2 25488:1 25515:2 25521:1 25537:1 25539:1 25543:1 25545:3 25584:1 25587:1 25593:2 25597:1 25622:1 25623:1 25635:3 25641:1 25662:1 25663:1 25678:1 25704:2 25706:1 25710:1 25717:1 25719:1 25720:1 25724:2 25728:1 25767:5 25769:1 25770:1 25778:3 25780:1 25785:1 25786:2 25788:1 25790:1 25793:2 25798:1 25799:1 25804:1 25811:1 25835:2 25842:1 25850:1 25866:4 25871:1 25874:1 25877:2 25878:1 25894:1 25897:1 25912:1 25924:1 25961:1 26013:2 26026:1 26028:1 26049:1 26057:1 26068:3 26070:2 26071:1 26072:1 26084:2 26092:1 26125:1 26131:1 26166:1 26174:1 26184:3 26218:1 26250:1 26266:1 26275:1 26280:3 26312:1 26315:2 26322:1 26337:1 26340:1 26348:1 26352:4 26364:1 26378:1 26381:1 26400:1 26402:1 26409:1 26422:1 26429:2 26435:2 26442:1 26444:1 26446:10 26451:1 26468:1 26480:1 26482:6 26498:6 26504:1 26531:1 26545:1 26548:1 26565:1 26574:5 26575:1 26576:1 26598:2 26609:5 26641:1 26647:9 26652:1 26655:1 26659:1 26666:2 26681:1 26709:1 26723:2 26751:1 26762:1 26782:1 26811:1 26821:1 26824:1 26828:2 26834:1 26835:1 26843:1 26853:1 26866:2 26872:1 26898:1 26909:2 26912:1 26913:1 26955:1 26962:1 26968:1 26977:2 26981:3 26984:2 26990:1 27001:1 27006:1 27010:1 27026:1 27027:1 27029:1 27050:2 27062:1 27078:1 27084:1 27086:1 27095:1 27113:2 27118:1 27122:1 27133:1 27137:2 27180:2 27190:1 27205:1 27227:1 27232:1 27250:1 27261:1 27276:1 27286:2 27298:1 27358:1 27360:1 27364:1 27368:1 27372:2 27418:1 27431:1 27433:1 27435:1 27473:1 27479:5 27481:1 27489:2 27497:1 27499:1 27522:1 27526:1 27529:2 27538:1 27557:2 27565:4 27608:2 27615:1 27625:2 27633:3 27641:2 27643:2 27665:1 27678:1 27691:1 27696:4 27704:1 27730:1 27746:1 27756:2 27758:1
12 1:1 34:1 37:1 38:1 43:1 52:1 57:2 74:1 87:4 92:1 111:1 120:1 141:1 159:1 165:1 179:2 182:1 195:2 200:1 202:1 209:1 210:1 277:1 282:1 292:1 294:1 313:1 328:4 356:2 363:3 378:2 379:1 388:1 413:1 418:3 423:1 430:1 441:2 457:1 528:1 535:1 553:1 603:3 609:1 637:1 648:2 666:1 693:1 694:1 698:2 700:2 725:2 739:1 790:1 794:1 820:1 861:7 867:1 870:1 874:1 881:1 888:4 893:1 897:1 903:2 909:2 923:2 941:2 949:2 950:1 952:1 981:1 990:1 994:1 1019:1 1022:1 1037:1 1053:1 1054:1 1068:1 1069:1 1073:1 1082:1 1088:1 1104:1 1125:1 1132:1 1140:1 1154:1 1167:1 1192:1 1193:2 1195:1 1203:2 1217:3 1222:1 1231:1 1240:1 1249:2 1277:2 1287:1 1301:1 1310:1 1331:2 1344:3 1349:1 1354:1 1357:1 1367:1 1369:1 1397:5 1448:1 1450:1 1451:5 1454:1 1457:8 1459:1 1461:1 1462:1 1478:1 1482:1 1484:1 1493:1 1506:1 1513:1 1516:1 1534:2 1535:2 1541:1 1551:1 1556:1 1559:1 1562:1 1564:2 1565:3 1568:1 1574:1 1586:1 1623:2 1625:2 1656:2 1660:1 1668:4 1680:2 1683:1 1691:1 1695:2 1696:1 1730:2 1740:1 1762:2 1768:1 1791:1 1795:1 1810:1 1815:1 1817:1 1831:2 1834:1 1839:3 1844:1 1848:1 1864:2 1877:1 1890:2 1891:1 1893:1 1897:2 1905:1 1909:1 1922:2 1941:1 1950:1 1978:1 2006:1 2007:4 2010:1 2030:1 2039:1 2058:1 2060:2 2063:1 2080:1 2086:1 2089:1 2096:1 2122:4 2148:1 2164:1 2169:1 2188:1 2191:6 2197:3 2200:1 2204:1 2208:1 2210:2 2219:1 2235:1 2236:1 2244:2 2245:2 2246:2 2248:1 2249:5 2251:2 2253:2 2256:2 2258:2 2261:1 2262:1 2264:2 2265:2 2266:1 2269:1 2270:6 2272:1 2276:1 2280:1 2281:2 2287:2 2307:1 2338:6 2339:1 2354:2 2356:1 2368:1 2369:1 2381:1 2418:2 2423:1 2451:1 2452:1 2458:1 2459:1 2487:1 2501:1 2505:1 2514:2 2523:1 2526:4 2545:1 2550:1 2557:1 2572:1 2575:1 2580:1 2583:1 2589:1 2620:1 2640:1 2643:1 2662:1 2666:1 2694:1 2699:4 2703:1 2706:1 2721:1 2724:1 2741:2 2745:1 2756:4 2757:1 2769:2 2770:1 2807:1 2815:1 2832:1 2846:5 2852:1 2857:2 2860:1 2898:2 2912:1 2919:1 2927:1 2928:2 2937:1 2951:1 2957:1 2965:1 2972:1 2973:1 2990:1 3000:1 3008:1 3021:1 3023:1 3053:1 3065:1 3080:1 3083:3 3084:1 3113:1 3135:1 3143:1 3154:1 3155:1 3160:1 3166:1 3174:1 3178:2 3191:2 3207:1 3223:1 3232:2 3244:8 3247:1 3257:1 3260:1 3318:1 3320:1 3322:1 3338:1 3368:1 3370:1 3399:1 3402:1 3407:1 3426:1 3431:1 3442:1 3460:2 3462:1 3489:1 3497:1 3500:1 3504:1 3512:1 3515:1 3520:1 3525:1 3529:1 3534:1 3548:1 3559:1 3568:1 3577:4 3584:1 3586:1 3588:1 3591:1 3593:1 3600:1 3603:1 3607:1 3612:2 3647:1 3648:4 3674:1 3675:2 3697:1 3703:1 3713:1 3717:1 3721:3 3725:1 3726:2 3733:1 3741:1 3746:1 3753:1 3754:1 3763:1 3805:1 3806:3 3813:1 3825:1 3832:1 3844:3 3846:1 3849:1 3866:1 3872:1 3876:1 3878:1 3888:1 3904:1 3906:1 3913:1 3916:1 3921:2 3932:3 3972:1 3973:1 3992:1 4014:1 4023:2 4030:2 4072:1 4079:1 4104:5 4107:3 4113:1 4117:1 4123:1 4145:1 4163:5 4165:1 4167:1 4175:1 4180:1 4192:1 4216:1 4231:2 4239:2 4258:1 4267:1 4281:1 4310:2 4346:1 4356:1 4357:1 4375:1 4386:2 4404:1 4406:1 4414:1 4416:1 4419:1 4423:2 4431:2 4472:1 4494:2 4506:1 4517:1 4521:1 4524:1 4525:1 4526:1 4533:1 4550:3 4569:1 4578:1 4579:1 4581:1 4597:1 4603:1 4605:1 4656:1 4668:1 4677:1 4700:1 4710:11 4711:3 4722:1 4730:1 4732:2 4733:1 4738:2 4749:1 4750:1 4759:1 4814:6 4820:1 4823:1 4828:3 4830:2 4833:1 4836:1 4838:1 4841:1 4842:1 4844:1 4845:2 4850:3 4854:1 4856:3 4857:2 4860:2 4879:1 4887:1 4891:1 4915:1 4916:4 4920:1 4934:1 4943:1 4948:1 4961:1 4993:1 4996:1 5045:2 5056:1 5057:1 5095:1 5112:1 5118:1 5130:3 5133:1 5141:3 5158:1 5162:1 5163:6 5188:8 5221:1 5242:1 5269:1 5274:2 5327:2 5335:1 5355:2 5357:1 5361:1 5379:1 5382:1 5392:1 5400:1 5401:1 5402:1 5407:1 5418:1 5426:1 5438:1 5452:1 5469:1 5470:3 5473:1 5475:1 5476:2 5478:1 5481:1 5484:1 5496:1 5504:1 5511:1 5519:1 5527:2 5534:1 5639:1 5663:1 5665:1 5669:1 5705:1 5750:2 5752:7 5755:1 5777:1 5779:1 5787:1 5788:1 5794:2 5797:1 5813:1 5840:1 5842:1 5844:1 5864:1 5868:3 5877:1 5879:1 5903:1 5906:1 5917:2 5934:1 5960:1 5994:4 6003:1 6007:1 6008:1 6016:1 6024:1 6069:1 6076:2 6092:4 6096:2 6098:2 6101:3 6102:1 6109:1 6110:1 6113:1 6115:5 6116:1 6117:10 6119:1 6120:3 6122:1 6158:1 6169:2 6233:1 6246:2 6254:1 6260:2 6283:2 6305:2 6308:1 6318:1 6362:1 6375:1 6399:1 6414:2 6420:1 6421:1 6428:1 6436:2 6439:1 6455:1 6472:1 6486:1 6490:1 6492:2 6493:1 6515:1 6516:2 6519:1 6533:2 6536:1 6545:4 6566:1 6568:1 6569:1 6574:1 6578:1 6613:1 6614:1 6629:1 6650:1 6656:1 6714:1 6724:1 6745:1 6749:1 6762:1 6764:1 6780:1 6798:1 6826:1 6877:6 6878:2 6883:1 6895:1 6924:2 6932:1 6949:1 6958:2 6964:1 6971:1 6974:1 6975:2 6981:1 6990:1 6996:1 7009:1 7047:1 7098:1 7117:3 7127:2 7130:1 7131:1 7143:5 7144:2 7146:4 7155:1 7180:1 7183:1 7198:1 7210:1 7211:1 7216:1 7250:2 7263:1 7274:1 7290:2 7293:1 7294:1 7295:1 7328:8 7329:6 7336:1 7337:1 7344:1 7346:1 7351:1 7352:1 7356:2 7360:1 7367:1 7384:2 7394:35 7410:6 7412:2 7419:2 7422:1 7432:1 7457:1 7460:1 7480:1 7488:2 7489:2 7522:2 7550:1 7587:2 7594:1 7604:1 7614:2 7629:2 7633:1 7636:1 7640:1 7645:1 7651:1 7689:1 7693:1 7725:2 7733:1 7768:1 7770:1 7773:1 7777:1 7778:1 7811:1 7852:2 7864:1 7867:1 7871:7 7902:1 7905:1 7916:1 7947:1 7961:1 7995:1 7999:1 8001:1 8008:1 8021:1 8024:1 8062:1 8072:1 8087:2 8091:1 8094:1 8111:1 8124:1 8133:1 8140:1 8166:1 8167:1 8204:3 8206:2 8207:1 8212:1 8213:1 8217:1 8219:1 8220:1 8221:1 8224:1 8238:1 8244:1 8247:3 8249:1 8259:1 8262:1 8277:1 8285:1 8287:2 8320:1 8322:1 8324:2 8328:1 8335:1 8338:1 8366:1 8389:1 8433:1 8437:1 8446:1 8450:1 8468:1 8483:2 8490:1 8491:1 8501:1 8511:2 8523:1 8528:1 8580:1 8587:1 8591:1 8599:2 8630:1 8659:1 8662:1 8663:1 8676:1 8688:2 8689:1 8690:1 8692:1 8707:1 8710:1 8713:1 8717:1 8732:1 8733:1 8740:1 8750:4 8751:1 8767:1 8780:1 8787:1 8796:2 8799:1 8801:1 8810:1 8813:2 8816:1 8824:1 8827:1 8838:1 8841:3 8843:3 8844:1 8845:1 8866:1 8880:1 8883:2 8902:1 8910:1 8912:1 8914:2 8918:1 8922:1 8930:1 8931:2 8948:1 8960:1 8965:1 8978:1 8984:1 8990:1 8995:2 8998:1 9006:1 9007:1 9011:1 9014:1 9019:1 9031:1 9055:1 9066:7 9080:1 9102:2 9108:1 9109:2 9132:1 9133:1 9136:1 9147:3 9153:1 9161:1 9162:1 9165:1 9172:1 9175:2 9190:1 9191:2 9192:1 9198:1 9203:2 9220:1 9244:1 9250:2 9254:3 9257:1 9264:1 9267:2 9287:8 9302:1 9303:3 9305:1 9307:1 9308:1 9312:1 9369:1 9397:1 9433:4 9452:1 9469:1 9479:1 9480:1 9481:5 9484:1 9492:1 9505:1 9510:1 9523:1 9526:3 9529:1 9538:1 9583:1 9594:4 9598:1 9599:2 9601:1 9617:1 9627:1 9628:1 9650:1 9661:1 9665:1 9693:1 9719:1 9744:1 9747:1 9760:1 9774:1 9776:1 9778:1 9797:1 9802:1 9808:1 9814:1 9831:1 9839:1 9840:1 9846:1 9855:1 9876:2 9882:2 9895:1 9902:1 9954:1 9961:3 9963:1 9995:3 9999:1 10018:1 10020:1 10024:1 10027:1 10039:2 10041:2 10054:1 10057:1 10059:4 10060:1 10063:1 10066:1 10072:2 10112:1 10135:1 10145:3 10148:1 10155:7 10162:1 10163:1 10182:2 10191:1 10210:1 10214:1 10215:2 10237:1 10266:1 10274:1 10337:1 10357:2 10358:1 10359:5 10365:2 10380:1 10381:1 10386:1 10405:1 10419:1 10424:1 10442:1 10448:2 10453:1 10473:1 10474:2 10488:3 10496:1 10500:2 10519:1 10524:1 10526:1 10537:1 10543:1 10547:1 10559:1 10573:1 10578:1 10583:1 10585:1 10594:1 10595:1 10627:1 10631:1 10633:2 10700:2 10710:1 10711:1 10714:1 10740:1 10750:1 10767:1 10777:1 10781:2 10787:1 10804:1 10812:5 10855:1 10866:2 10883:2 10888:1 10889:1 10896:1 10905:1 10910:2 10918:3 10961:1 10975:2 10978:1 10987:2 10989:1 10992:2 10999:1 11008:4 11026:1 11047:2 11053:2 11054:1 11061:1 11070:1 11071:1 11074:2 11075:1 11076:1 11077:1 11080:2 11092:1 11096:3 11125:1 11126:1 11130:2 11142:1 11148:1 11151:2 11158:1 11159:1 11169:2 11189:1 11194:1 11233:1 11244:2 11252:1 11253:2 11268:1 11284:1 11299:1 11310:1 11316:1 11318:2 11332:1 11333:1 11344:1 11352:1 11364:1 11371:1 11424:1 11442:1 11443:6 11462:1 11464:1 11465:1 11477:3 11488:2 11494:1 11501:1 11507:2 11512:1 11528:1 11529:1 11549:2 11560:1 11565:1 11569:1 11581:4 11607:1 11624:2 11630:1 11663:1 11665:1 11668:2 11676:1 11710:2 11713:1 11731:1 11752:1 11756:1 11757:1 11761:1 11775:1 11784:1 11785:1 11789:1 11855:2 11869:1 11874:1 11902:1 11910:1 11911:1 11913:1 11928:1 11972:2 11976:1 11977:1 11979:2 11980:1 11981:1 11982:1 11999:1 12000:1 12001:2 12009:1 12037:1 12049:1 12058:1 12063:5 12070:2 12075:1 12109:1 12125:1 12139:1 12149:1 12174:1 12185:1 12209:1 12244:1 12269:1 12272:1 12285:1 12292:1 12317:1 12337:1 12348:1 12349:1 12355:2 12356:4 12360:2 12376:1 12381:1 12385:1 12386:1 12396:1 12402:1 12403:5 12410:1 12427:1 12438:2 12443:1 12445:3 12471:1 12506:1 12507:1 12515:2 12522:1 12533:1 12548:2 12570:1 12575:3 12586:1 12590:2 12603:1 12612:1 12632:2 12639:1 12648:1 12664:1 12698:1 12703:1 12718:1 12719:1 12721:1 12815:4 12827:1 12844:1 12851:1 12852:2 12857:1 12859:7 12860:1 12861:1 12862:1 12881:2 12884:1 12902:2 12919:2 12920:1 12929:1 12937:1 12939:1 12949:2 12956:1 12959:2 12986:1 12991:1 12997:3 13003:1 13008:1 13010:4 13013:2 13015:1 13055:1 13056:1 13068:1 13070:1 13081:1 13093:1 13094:2 13108:2 13109:1 13114:1 13128:6 13134:1 13148:3 13157:1 13164:2 13166:1 13172:1 13181:1 13195:2 13203:1 13204:1 13245:1 13257:1 13274:1 13276:1 13280:1 13320:2 13321:1 13326:1 13330:4 13352:1 13356:1 13360:1 13370:1 13386:2 13392:1 13399:1 13437:1 13468:1 13483:1 13484:1 13498:1 13499:2 13502:1 13504:2 13517:1 13527:2 13534:1 13537:1 13547:1 13553:1 13562:1 13577:1 13592:1 13597:1 13606:1 13628:1 13657:1 13678:1 13686:2 13691:2 13695:2 13705:1 13709:1 13718:1 13734:4 13746:1 13758:1 13763:1 13774:4 13776:1 13812:1 13824:1 13841:1 13846:1 13848:1 13854:1 13873:1 13874:2 13875:1 13886:1 13904:1 13915:1 13919:4 13924:1 13926:1 13934:2 13935:1 13956:2 13990:1 14009:1 14017:3 14029:1 14045:1 14047:1 14049:2 14050:1 14057:1 14059:1 14077:1 14112:1 14125:1 14129:1 14133:1 14150:1 14151:2 14155:3 14160:2 14167:1 14170:1 14176:1 14200:1 14205:1 14245:1 14253:2 14299:1 14317:1 14332:1 14342:1 14354:1 14355:2 14365:1 14381:1 14409:1 14429:1 14440:1 14452:1 14460:1 14462:2 14463:1 14467:1 14475:1 14476:2 14479:2 14480:1 14487:1 14497:1 14512:1 14520:2 14523:1 14526:1 14528:1 14534:2 14535:1 14575:1 14588:1 14595:1 14602:2 14611:1 14637:1 14654:1 14656:1 14663:1 14678:1 14701:1 14708:1 14733:4 14736:1 14744:1 14747:1 14749:1 14754:3 14757:1 14763:1 14767:1 14769:2 14770:1 14773:1 14774:1 14782:3 14786:1 14790:1 14797:2 14812:4 14820:1 14835:1 14839:1 14843:2 14878:1 14888:1 14898:2 14903:1 14919:1 14923:2 14962:2 14970:1 14982:1 15001:1 15003:1 15021:1 15048:3 15057:1 15070:2 15088:1 15093:1 15098:1 15100:1 15118:1 15120:1 15121:1 15131:2 15137:1 15140:3 15141:1 15147:1 15152:1 15173:4 15174:1 15180:1 15193:2 15231:1 15232:1 15261:1 15265:1 15287:3 15295:1 15297:2 15299:1 15306:1 15307:1 15308:1 15323:1 15348:1 15370:1 15380:1 15381:1 15388:1 15390:1 15406:1 15407:1 15408:2 15413:2 15427:1 15459:1 15489:1 15490:1 15504:2 15524:4 15532:1 15555:1 15561:1 15572:1 15579:1 15610:1 15629:1 15635:3 15652:1 15668:1 15672:1 15686:1 15689:1 15712:1 15714:2 15719:1 15742:2 15764:1 15785:1 15787:1 15846:1 15860:1 15864:1 15874:1 15898:4 15901:1 15905:1 15918:1 15936:1 15940:1 15950:1 15953:1 15957:1 16005:1 16033:1 16035:1 16062:1 16066:1 16089:2 16100:1 16109:1 16111:1 16132:1 16145:1 16152:1 16154:1 16158:1 16160:1 16164:2 16178:1 16179:1 16197:1 16200:1 16215:1 16240:1 16257:1 16258:1 16261:1 16263:3 16282:1 16289:3 16309:2 16317:1 16357:2 16367:1 16371:1 16372:1 16375:1 16379:1 16383:1 16387:2 16390:1 16392:1 16408:1 16443:1 16447:2 16450:1 16451:1 16456:1 16464:1 16468:1 16469:1 16474:1 16486:2 16512:4 16531:1 16545:1 16546:1 16547:1 16563:2 16571:1 16575:1 16583:1 16586:1 16604:1 16608:1 16616:1 16630:1 16631:1 16635:1 16645:1 16657:1 16668:1 16675:1 16678:2 16685:1 16713:3 16716:1 16718:1 16720:1 16721:1 16729:1 16743:1 16744:1 16750:1 16751:1 16766:2 16767:3 16768:1 16770:1 16780:1 16783:1 16784:1 16786:2 16787:1 16800:1 16802:2 16803:1 16808:1 16810:1 16823:1 16848:1 16850:3 16860:2 16873:1 16891:2 16898:1 16906:1 16937:2 16942:1 16958:1 16961:1 16966:3 16973:2 16990:1 16991:1 17021:2 17022:1 17028:1 17043:1 17045:1 17050:4 17076:1 17083:1 17094:2 17101:1 17121:1 17127:1 17140:4 17145:1 17166:5 17186:1 17197:1 17213:1 17236:1 17284:1 17288:1 17291:7 17296:1 17298:1 17300:1 17312:1 17319:1 17326:1 17328:1 17341:1 17360:1 17365:2 17433:1 17441:1 17447:1 17471:2 17486:1 17492:2142 17497:1 17515:1 17520:1 17538:1 17539:1 17541:1 17551:1 17555:1 17594:1 17599:1 17628:1 17668:1 17669:1 17690:1 17691:1 17755:1 17793:1 17794:1 17815:1 17838:1 17846:1 17902:2 17912:2 17914:1 17933:1 17938:1 17945:1 17991:1 18000:1 18003:2 18020:1 18028:1 18032:1 18042:1 18055:1 18087:2 18107:1 18108:1 18110:4 18131:1 18145:1 18161:1 18185:1 18196:1 18198:1 18217:2 18226:1 18237:2 18241:1 18254:1 18269:8 18271:1 18333:1 18366:1 18380:3 18383:1 18398:1 18415:4 18423:1 18449:1 18471:1 18480:1 18485:2 18494:2 18503:1 18507:2 18525:2 18535:1 18542:1 18544:2 18547:1 18549:1 18562:1 18566:1 18584:2 18590:1 18592:1 18594:1 18603:1 18605:1 18606:2 18619:1 18622:1 18651:1 18667:1 18672:3 18675:1 18676:1 18695:1 18720:1 18738:1 18740:1 18757:1 18773:1 18776:2 18778:2 18849:4 18856:1 18892:1 18915:4 18921:4 18928:1 18929:1 18932:1 18947:1 18949:1 18958:2 18965:1 18974:1 18983:2 18985:1 18992:1 18995:1 19001:1 19003:1 19005:1 19011:1 19025:1 19033:1 19044:1 19054:1 19057:1 19061:2 19078:2 19080:1 19097:1 19098:1 19109:1 19115:1 19202:1 19208:2 19214:1 19215:1 19238:3 19240:1 19242:2 19253:1 19268:1 19274:1 19277:2 19278:1 19297:1 19305:1 19358:1 19382:1 19384:1 19388:2 19416:1 19424:1 19426:1 19435:1 19451:1 19462:1 19465:1 19469:1 19471:1 19483:1 19485:1 19487:1 19488:2 19490:1 19493:1 19508:1 19510:1 19515:1 19518:1 19525:1 19558:2 19579:1 19593:1 19596:3 19601:1 19603:2 19611:1 19612:1 19623:2 19624:1 19636:2 19647:2 19648:1 19651:2 19706:1 19708:1 19710:1 19721:1 19722:1 19743:1 19758:1 19759:1 19761:1 19778:1 19785:1 19804:1 19809:2 19877:1 19885:1 19928:1 19934:1 19956:1 19957:1 19962:1 19968:2 20010:1 20012:1 20018:1 20033:2 20077:1 20079:1 20089:1 20091:2 20096:1 20109:1 20114:1 20131:1 20138:1 20139:2 20143:1 20174:1 20190:1 20196:1 20201:1 20203:1 20216:1 20220:1 20231:1 20234:1 20247:1 20251:1 20252:1 20263:1 20290:1 20307:1 20325:1 20349:2 20370:2 20376:1 20397:1 20401:3 20407:1 20411:2 20415:1 20421:7 20422:1 20433:3 20438:1 20446:1 20455:1 20462:2 20477:2 20481:1 20482:1 20483:1 20486:1 20488:1 20529:2 20547:1 20561:1 20571:1 20577:3 20580:2 20583:1 20591:1 20594:1 20597:1 20608:1 20609:1 20610:3 20613:1 20624:1 20625:2 20627:1 20654:1 20656:1 20659:1 20660:1 20670:1 20694:2 20704:1 20711:1 20716:1 20727:1 20729:1 20754:1 20762:1 20775:2 20776:1 20793:1 20796:2 20803:1 20804:3 20823:1 20828:2 20841:1 20864:1 20871:1 20894:2 20901:1 20913:1 20923:1 20931:1 20933:1 20942:1 20960:1 20975:1 20980:4 20988:1 20994:2 21002:1 21004:1 21006:2 21007:2 21011:2 21017:1 21025:1 21030:1 21040:1 21053:1 21067:2 21072:1 21080:1 21082:2 21111:2 21117:1 21120:1 21121:1 21132:2 21159:2 21173:3 21185:2 21195:1 21223:1 21233:1 21236:1 21241:1 21242:1 21252:1 21254:2 21260:1 21277:1 21280:1 21287:1 21305:1 21313:1 21315:1 21320:1 21323:1 21324:1 21329:1 21337:2 21345:1 21347:1 21430:6 21435:1 21438:1 21439:1 21444:2 21449:1 21450:1 21452:1 21460:1 21478:1 21503:1 21516:2 21554:2 21560:1 21568:2 21579:1 21584:1 21587:1 21593:1 21594:1 21603:1 21632:2 21656:1 21678:1 21692:2 21709:5 21729:1 21730:3 21731:2 21777:1 21788:1 21850:1 21874:1 21895:1 21896:3 21904:1 21909:2 21911:1 21919:2 21923:1 21925:1 21927:2 21954:2 21967:1 21968:1 21975:1 21986:1 21987:2 22024:2 22030:1 22040:1 22046:1 22055:3 22060:1 22066:1 22074:1 22097:1 22105:1 22119:1 22128:1 22133:1 22137:2 22148:3 22152:1 22157:2 22176:1 22188:1 22189:1 22200:1 22202:1 22208:3 22215:1 22219:1 22224:1 22248:2 22251:1 22270:1 22283:1 22291:1 22309:1 22323:1 22325:1 22333:2 22340:1 22351:1 22382:1 22387:1 22391:1 22405:1 22409:1 22424:1 22425:1 22438:1 22449:1 22471:2 22476:1 22502:1 22538:1 22544:1 22568:4 22569:1 22571:1 22572:1 22578:1 22586:1 22614:1 22616:1 22634:2 22647:1 22652:1 22663:1 22666:1 22678:2 22679:1 22707:3 22717:1 22718:1 22728:1 22737:1 22747:1 22759:1 22762:1 22779:1 22788:4 22797:1 22830:2 22838:1 22876:2 22885:2 22887:1 22935:1 22948:2 22956:5 22963:1 22967:2 22988:1 23000:1 23003:6 23007:1 23052:1 23068:1 23078:1 23094:1 23103:1 23108:1 23111:1 23119:1 23121:1 23127:2 23128:2 23135:1 23138:1 23156:1 23162:1 23164:1 23165:1 23173:1 23190:1 23191:1 23194:1 23199:1 23219:1 23222:1 23224:1 23230:1 23231:1 23240:1 23241:1 23245:3 23247:1 23250:1 23267:1 23269:2 23271:1 23277:1 23286:1 23315:2 23373:2 23383:1 23415:1 23416:1 23426:1 23452:1 23453:1 23486:1 23518:1 23535:1 23554:1 23608:2 23628:1 23633:3 23637:1 23648:1 23675:4 23694:3 23711:1 23718:2 23731:1 23735:2 23738:2 23743:1 23751:1 23766:1 23783:1 23785:1 23791:1 23816:1 23821:1 23822:1 23842:1 23850:1 23864:1 23865:1 23866:3 23872:1 23873:2 23878:1 23879:2 23897:1 23898:1 23901:1 23902:1 23904:1 23913:2 23914:1 23918:2 23935:3 23936:1 23949:1 23960:1 23964:2 23966:1 23986:1 23987:1 24008:1 24012:1 24040:5 24063:1 24064:1 24085:2 24091:1 24099:1 24119:1 24141:1 24143:1 24151:1 24153:1 24157:1 24171:1 24188:1 24204:1 24223:1 24228:1 24251:1 24267:1 24268:1 24271:4 24273:1 24298:1 24324:2 24330:1 24338:1 24352:2 24367:2 24377:1 24397:1 24420:1 24430:2 24433:1 24436:1 24437:1 24442:1 24443:1 24452:1 24463:1 24466:2 24490:1 24503:1 24533:3 24542:1 24566:2 24579:1 24598:7 24638:1 24643:2 24655:1 24672:1 24675:1 24708:1 24712:1 24720:1 24721:2 24730:1 24731:1 24734:1 24759:1 24765:1 24809:1 24836:2 24839:1 24853:1 24854:1 24856:2 24860:2 24861:1 24865:1 24885:1 24899:4 24928:3 24936:1 24941:1 24957:1 24965:1 24988:1 24993:1 25000:1 25018:1 25033:1 25045:1 25071:2 25079:2 25107:1 25113:1 25134:1 25161:1 25219:1 25248:2 25274:1 25277:2 25281:3 25296:1 25317:1 25331:1 25338:1 25345:1 25346:1 25347:1 25349:1 25370:1 25387:1 25393:1 25413:1 25434:1 25452:3 25460:1 25466:1 25473:2 25474:1 25488:1 25515:2 25521:1 25537:1 25539:1 25543:1 25545:3 25584:1 25587:1 25593:2 25597:1 25622:1 25623:1 25635:3 25641:1 25662:1 25663:1 25678:1 25704:2 25706:1 25710:1 25717:1 25719:1 25720:1 25724:2 25728:1 25767:5 25769:1 25770:1 25778:3 25780:1 25785:1 25786:2 25788:1 25790:1 25793:2 25798:1 25799:1 25804:1 25811:1 25835:2 25842:1 25850:1 25866:4 25871:1 25873:1 25874:1 25877:2 25878:1 25894:1 25897:1 25912:1 25921:1 25924:1 25961:1 26013:2 26026:1 26028:1 26049:1 26057:1 26068:3 26070:2 26071:1 26072:1 26084:2 26092:1 26125:1 26131:1 26166:1 26174:1 26184:3 26218:1 26250:1 26266:1 26275:1 26280:3 26312:1 26315:2 26322:1 26337:1 26340:1 26348:1 26352:4 26364:1 26378:1 26381:1 26400:1 26402:1 26409:1 26422:1 26429:2 26435:2 26442:2 26444:1 26446:11 26451:1 26468:1 26480:1 26482:7 26498:6 26504:1 26531:1 26545:1 26548:1 26565:1 26574:5 26575:1 26576:1 26598:2 26609:5 26617:1 26641:1 26647:9 26652:1 26655:1 26659:1 26666:2 26681:1 26709:1 26723:2 26751:1 26762:1 26782:1 26792:1 26811:1 26821:1 26824:1 26828:2 26834:1 26835:1 26843:1 26853:1 26866:2 26872:1 26898:1 26902:1 26909:2 26912:1 26913:1 26955:1 26962:1 26968:1 26977:2 26981:4 26984:2 26990:1 27001:1 27006:1 27010:1 27026:1 27027:1 27029:1 27050:2 27062:1 27078:1 27084:1 27086:1 27095:1 27113:2 27118:1 27122:1 27133:1 27137:2 27180:2 27190:1 27205:1 27227:1 27232:1 27250:1 27261:1 27276:1 27286:2 27298:1 27358:1 27360:1 27364:1 27368:1 27372:2 27418:1 27431:1 27433:1 27435:1 27473:1 27479:6 27481:2 27489:2 27497:1 27499:1 27522:1 27526:1 27529:2 27538:1 27557:2 27565:4 27608:2 27615:1 27625:2 27633:3 27641:2 27643:2 27665:1 27678:1 27691:1 27696:4 27704:1 27730:1 27746:1 27756:2 27758:1
12 1:1 34:1 37:1 38:1 43:1 52:1 57:2 74:1 87:4 92:1 111:1 120:1 141:1 159:1 165:1 179:2 182:1 195:2 200:1 202:1 209:1 210:1 277:1 282:1 292:1 294:1 313:1 328:4 356:2 363:3 378:2 379:1 388:1 413:1 418:3 423:1 430:1 441:2 457:1 528:1 535:1 553:1 603:3 609:1 637:1 648:2 666:1 693:1 694:1 698:2 700:2 725:2 739:1 790:1 794:1 820:1 861:7 867:1 870:1 874:1 881:1 888:4 893:1 897:1 903:2 909:2 923:2 941:2 946:1 949:2 950:1 952:1 981:1 990:1 994:1 1019:1 1022:1 1037:1 1053:1 1054:1 1068:1 1069:1 1073:1 1082:1 1088:1 1104:1 1125:1 1132:1 1140:1 1154:1 1167:1 1192:1 1193:2 1194:1 1195:1 1203:2 1217:3 1222:1 1231:1 1240:1 1249:2 1277:2 1287:1 1298:1 1301:1 1310:1 1331:2 1344:3 1349:1 1354:1 1357:1 1367:1 1369:1 1371:1 1397:5 1448:1 1450:1 1451:5 1454:1 1457:8 1459:1 1461:1 1462:1 1478:1 1482:1 1484:1 1493:1 1506:1 1513:1 1516:1 1534:2 1535:2 1541:1 1551:1 1556:1 1559:1 1562:1 1564:2 1565:3 1568:1 1574:1 1586:1 1623:2 1625:2 1656:2 1660:1 1668:4 1680:2 1683:1 1691:1 1695:2 1696:1 1730:3 1740:1 1762:2 1768:1 1791:1 1795:1 1810:1 1815:1 1817:1 1831:2 1834:1 1839:3 1844:1 1848:1 1864:2 1877:1 1890:2 1891:1 1893:1 1897:2 1905:1 1909:1 1922:2 1941:1 1950:1 1978:1 2006:1 2007:4 2010:1 2030:1 2039:1 2058:1 2060:2 2063:1 2080:1 2086:1 2089:1 2096:1 2122:4 2148:1 2164:1 2169:1 2188:1 2191:6 2197:3 2200:1 2204:1 2208:1 2210:3 2219:1 2235:1 2236:1 2244:2 2245:2 2246:2 2248:1 2249:5 2251:2 2253:2 2256:2 2258:2 2261:1 2262:1 2264:2 2265:2 2266:1 2269:1 2270:6 2272:1 2276:1 2280:1 2281:2 2287:2 2296:1 2307:1 2338:6 2339:1 2354:2 2356:2 2368:1 2369:1 2381:1 2418:2 2423:1 2451:1 2452:1 2458:1 2459:1 2487:1 2501:1 2505:1 2514:2 2523:1 2526:4 2545:1 2550:1 2557:1 2572:1 2575:1 2580:1 2583:1 2589:1 2620:1 2640:1 2643:1 2662:1 2666:1 2694:1 2699:4 2703:1 2706:1 2721:1 2724:1 2741:2 2745:1 2756:4 2757:1 2769:2 2770:1 2807:1 2815:1 2832:1 2846:5 2852:1 2857:2 2860:1 2898:3 2912:1 2919:1 2927:1 2928:2 2937:1 2951:1 2957:1 2965:1 2972:1 2973:1 2990:1 3000:1 3008:1 3021:1 3023:2 3053:1 3065:1 3080:1 3083:3 3084:1 3113:1 3135:1 3143:1 3154:1 3155:1 3160:1 3166:1 3174:1 3178:2 3191:2 3207:1 3223:1 3232:2 3244:8 3247:1 3257:1 3260:1 3318:1 3320:1 3322:1 3329:1 3338:1 3368:1 3370:1 3399:1 3402:1 3407:1 3426:1 3431:1 3442:1 3460:2 3462:1 3489:1 3497:1 3500:1 3504:1 3512:1 3515:1 3520:1 3525:1 3529:1 3534:1 3548:1 3559:1 3568:1 3577:4 3584:1 3586:1 3588:1 3591:1 3593:1 3600:1 3603:1 3607:1 3612:2 3647:1 3648:5 3674:1 3675:2 3676:1 3697:2 3703:1 3713:1 3717:1 3721:3 3725:1 3726:2 3733:1 3741:1 3746:1 3753:1 3754:1 3763:1 3805:1 3806:3 3813:1 3825:1 3832:1 3844:3 3846:1 3849:1 3866:1 3872:1 3876:1 3878:1 3888:1 3904:1 3906:1 3913:1 3916:1 3921:3 3932:3 3972:1 3973:1 3987:1 3992:1 4014:1 4023:2 4030:2 4044:1 4072:1 4079:1 4104:5 4107:3 4113:1 4117:1 4123:1 4145:1 4163:5 4165:2 4167:1 4175:1 4180:1 4192:1 4216:1 4231:2 4239:2 4258:1 4267:1 4281:1 4310:2 4346:1 4356:1 4357:1 4375:3 4386:2 4404:1 4406:1 4414:1 4416:1 4419:1 4423:3 4431:2 4472:1 4494:2 4506:1 4517:1 4521:1 4524:1 4525:1 4526:1 4533:1 4550:4 4569:1 4578:1 4579:1 4581:1 4597:1 4603:1 4605:1 4656:1 4668:1 4677:1 4700:1 4710:12 4711:3 4722:1 4730:1 4732:2 4733:1 4738:2 4749:1 4750:1 4759:1 4814:6 4820:1 4823:1 4828:3 4830:2 4833:1 4836:2 4838:1 4841:1 4842:1 4844:1 4845:2 4850:3 4854:1 4856:3 4857:2 4860:2 4879:1 4887:1 4891:1 4915:1 4916:4 4920:1 4934:1 4943:1 4948:1 4961:1 4993:1 4996:1 5045:2 5056:1 5057:1 5095:1 5112:1 5118:1 5130:3 5133:1 5141:3 5158:1 5162:1 5163:6 5188:8 5221:1 5242:1 5269:1 5274:2 5327:2 5335:1 5355:2 5357:1 5361:1 5379:1 5382:1 5392:1 5400:1 5401:1 5402:1 5407:1 5418:1 5426:1 5438:1 5452:1 5469:1 5470:3 5473:1 5475:1 5476:2 5478:1 5481:1 5484:1 5496:1 5504:1 5511:1 5519:1 5527:2 5534:1 5639:1 5663:1 5665:1 5669:1 5705:1 5750:2 5752:7 5755:1 5777:1 5779:1 5787:1 5788:1 5794:2 5797:1 5813:2 5840:1 5842:1 5844:1 5864:1 5868:3 5877:1 5879:2 5903:1 5906:1 5917:2 5934:1 5960:1 5994:4 6003:1 6007:1 6008:1 6016:1 6024:1 6069:1 6076:2 6092:4 6096:2 6098:2 6101:3 6102:1 6109:1 6110:1 6113:1 6115:5 6116:1 6117:10 6119:1 6120:3 6122:1 6143:1 6158:1 6169:2 6233:1 6246:3 6254:1 6260:2 6276:1 6283:2 6305:2 6308:1 6318:1 6362:1 6375:1 6399:2 6414:2 6418:1 6420:1 6421:1 6428:1 6436:2 6439:1 6455:1 6472:1 6486:1 6490:1 6492:2 6493:1 6515:1 6516:2 6519:1 6533:2 6536:1 6545:4 6566:1 6568:1 6569:1 6574:1 6578:1 6613:1 6614:1 6629:1 6650:1 6656:1 6714:1 6724:1 6745:1 6749:1 6762:1 6764:1 6780:1 6798:1 6826:1 6877:6 6878:2 6883:1 6895:1 6920:1 6924:2 6932:1 6949:1 6958:2 6964:1 6971:1 6974:1 6975:3 6981:1 6990:1 6996:1 7009:1 7047:1 7098:1 7117:3 7127:2 7130:1 7131:1 7143:5 7144:2 7146:4 7155:1 7169:1 7180:1 7183:1 7198:1 7210:1 7211:1 7216:1 7250:2 7263:1 7274:1 7290:2 7293:1 7294:1 7295:1 7328:11 7329:8 7336:1 7337:1 7344:1 7346:1 7351:1 7352:1 7356:2 7360:1 7367:1 7384:2 7394:36 7410:6 7412:3 7419:2 7422:1 7432:1 7457:1 7460:1 7480:1 7488:2 7489:2 7522:2 7550:1 7587:2 7594:1 7604:1 7614:3 7629:2 7633:1 7636:1 7640:1 7645:1 7651:1 7689:1 7693:1 7725:2 7733:1 7768:1 7770:1 7773:1 7777:1 7778:1 7811:1 7852:2 7864:1 7867:1 7871:7 7902:1 7905:1 7916:1 7947:1 7961:1 7991:1 7995:1 7999:1 8001:1 8008:1 8021:1 8024:1 8062:1 8072:1 8087:2 8091:1 8094:1 8111:1 8124:1 8133:1 8140:1 8166:1 8167:1 8204:3 8206:2 8207:1 8212:1 8213:1 8217:2 8219:1 8220:1 8221:1 8224:1 8238:1 8244:1 8247:3 8249:1 8259:1 8262:1 8277:1 8285:1 8287:2 8320:1 8322:1 8324:3 8328:1 8335:1 8338:1 8363:1 8366:1 8389:1 8433:1 8437:1 8446:2 8450:1 8468:1 8483:2 8490:1 8491:1 8501:1 8511:2 8523:1 8528:1 8580:1 8587:1 8591:1 8599:2 8630:1 8659:1 8662:1 8663:1 8676:1 8688:2 8689:1 8690:1 8692:1 8707:1 8710:1 8713:1 8717:1 8732:1 8733:1 8740:1 8745:1 8750:4 8751:1 8767:1 8780:1 8787:1 8796:2 8799:1 8801:1 8810:1 8813:2 8816:1 8824:1 8827:1 8838:1 8841:4 8843:3 8844:1 8845:1 8866:1 8880:2 8883:2 8902:1 8910:1 8912:1 8914:2 8918:1 8922:1 8930:1 8931:2 8948:1 8960:1 8965:1 8978:1 8984:1 8990:1 8995:2 8998:1 9006:1 9007:1 9011:1 9014:1 9019:1 9031:1 9055:1 9066:7 9080:1 9097:1 9102:2 9108:1 9109:2 9124:1 9132:1 9133:1 9136:1 9147:3 9153:1 9161:1 9162:1 9165:1 9172:1 9175:2 9190:1 9191:2 9192:1 9198:1 9203:2 9220:1 9244:1 9250:2 9254:3 9257:1 9264:1 9267:2 9287:8 9302:1 9303:3 9305:1 9307:1 9308:1 9312:1 9369:1 9397:1 9416:1 9433:4 9452:1 9469:1 9479:1 9480:1 9481:5 9484:1 9492:2 9505:1 9510:1 9523:1 9526:3 9529:1 9538:1 9583:1 9594:4 9598:1 9599:2 9601:1 9602:1 9617:1 9627:1 9628:1 9650:1 9661:1 9665:1 9693:1 9719:1 9744:1 9747:1 9760:1 9774:1 9776:1 9778:1 9797:1 9802:1 9808:1 9814:1 9831:1 9839:1 9840:1 9846:1 9855:1 9876:2 9882:2 9895:1 9902:1 9954:1 9961:3 9963:1 9995:3 9999:1 10018:1 10020:1 10024:1 10027:1 10039:2 10041:2 10053:1 10054:1 10057:1 10059:4 10060:1 10063:1 10066:1 10072:2 10112:1 10135:1 10145:3 10148:1 10155:7 10162:1 10163:1 10182:3 10191:1 10210:1 10214:1 10215:2 10237:1 10266:1 10274:1 10337:1 10357:2 10358:2 10359:5 10365:2 10380:1 10381:1 10386:1 10405:1 10419:1 10424:1 10442:1 10448:3 10453:1 10473:1 10474:2 10488:3 10496:1 10500:2 10519:1 10524:1 10526:1 10537:1 10543:1 10547:1 10559:1 10573:1 10578:1 10583:1 10585:1 10594:1 10595:1 10627:1 10631:2 10633:2 10700:2 10710:1 10711:1 10714:1 10740:1 10750:1 10767:1 10777:1 10781:2 10787:1 10804:1 10812:6 10855:1 10866:2 10883:2 10888:1 10889:1 10896:1 10905:1 10910:2 10918:3 10961:1 10975:2 10978:1 10987:3 10989:1 10992:2 10999:1 11008:4 11026:1 11047:2 11053:2 11054:1 11061:1 11070:1 11071:1 11074:3 11075:1 11076:1 11077:1 11080:2 11086:1 11092:1 11096:3 11125:1 11126:1 11130:2 11142:1 11148:1 11151:2 11158:1 11159:1 11169:2 11189:1 11194:1 11233:1 11244:2 11252:1 11253:2 11268:1 11284:1 11299:1 11310:1 11316:2 11318:2 11332:1 11333:1 11344:1 11352:1 11364:1 11371:1 11424:1 11442:2 11443:6 11462:1 11464:1 11465:1 11477:3 11488:2 11494:1 11501:1 11507:2 11512:1 11528:1 11529:1 11549:3 11560:1 11565:1 11569:1 11581:4 11607:2 11624:2 11630:1 11663:1 11665:1 11668:2 11676:1 11710:2 11713:1 11731:1 11752:1 11756:1 11757:1 11761:1 11775:1 11784:1 11785:1 11789:1 11855:2 11869:1 11874:1 11902:1 11910:1 11911:1 11913:1 11928:1 11972:2 11976:1 11977:1 11979:2 11980:1 11981:1 11982:1 11999:1 12000:1 12001:2 12009:1 12037:1 12049:1 12058:1 12063:5 12070:2 12075:1 12109:1 12125:1 12139:1 12149:1 12174:1 12185:1 12209:1 12244:1 12269:1 12272:1 12285:1 12292:1 12301:1 12317:1 12337:1 12348:1 12349:1 12355:2 12356:4 12360:3 12376:1 12381:1 12385:1 12386:1 12396:1 12402:1 12403:5 12410:1 12427:1 12438:2 12443:1 12445:3 12471:1 12506:1 12507:1 12515:2 12522:1 12533:1 12548:2 12557:1 12570:1 12575:3 12586:1 12590:2 12603:1 12612:1 12632:2 12639:1 12648:1 12664:1 12698:1 12703:1 12718:1 12719:1 12721:1 12815:4 12827:1 12844:1 12846:1 12851:1 12852:2 12857:1 12859:7 12860:1 12861:1 12862:1 12881:2 12884:1 12902:2 12919:2 12920:1 12929:1 12937:1 12939:1 12949:2 12956:1 12959:2 12986:1 12991:1 12997:3 13003:1 13008:1 13010:4 13013:2 13015:2 13055:1 13056:1 13068:1 13070:1 13081:1 13093:1 13094:2 13108:2 13109:1 13114:1 13128:6 13134:1 13148:3 13157:1 13164:2 13166:1 13172:1 13181:1 13195:2 13203:1 13204:2 13245:1 13257:1 13274:1 13276:1 13280:1 13320:2 13321:1 13326:1 13330:4 13352:1 13356:1 13360:1 13370:1 13386:2 13392:1 13399:1 13437:1 13468:1 13483:1 13484:1 13498:1 13499:2 13502:1 13504:2 13517:1 13527:2 13534:1 13537:1 13547:1 13553:1 13562:1 13577:1 13592:1 13597:1 13606:1 13628:1 13657:1 13678:1 13686:2 13691:2 13695:2 13705:1 13709:1 13718:1 13734:4 13746:1 13758:1 13763:1 13774:4 13776:1 13812:1 13824:1 13841:1 13846:1 13848:1 13854:1 13873:1 13874:2 13875:1 13886:1 13904:1 13915:1 13919:4 13924:1 13926:1 13934:2 13935:1 13956:3 13982:1 13990:1 14009:1 14017:3 14029:1 14045:1 14047:1 14049:2 14050:2 14057:1 14059:1 14077:1 14112:1 14125:1 14129:1 14133:1 14150:1 14151:2 14155:3 14160:3 14167:1 14170:1 14176:1 14200:1 14205:1 14245:1 14253:2 14299:1 14317:1 14332:1 14342:1 14354:1 14355:2 14365:1 14381:1 14409:1 14429:1 14440:2 14452:1 14460:1 14462:2 14463:1 14467:1 14475:1 14476:2 14479:2 14480:1 14487:1 14497:1 14512:1 14520:3 14523:1 14526:1 14528:1 14534:2 14535:1 14575:1 14588:1 14595:1 14602:2 14611:1 14637:1 14654:1 14656:1 14663:1 14678:1 14701:1 14708:1 14733:4 14736:1 14744:1 14747:1 14749:1 14754:3 14757:1 14763:1 14767:2 14769:2 14770:1 14773:1 14774:1 14782:3 14786:1 14790:1 14797:2 14812:4 14820:1 14835:1 14839:1 14843:2 14878:1 14888:1 14898:2 14903:1 14919:1 14923:2 14962:2 14970:1 14982:1 15001:1 15003:1 15021:1 15048:3 15057:1 15070:2 15088:1 15093:1 15098:1 15100:1 15118:1 15120:1 15121:1 15131:2 15137:1 15140:3 15141:1 15147:1 15152:1 15173:5 15174:1 15180:1 15193:2 15231:1 15232:1 15261:1 15265:1 15287:3 15295:1 15297:2 15299:1 15306:1 15307:1 15308:1 15323:1 15348:1 15370:1 15380:1 15381:1 15388:1 15390:2 15406:1 15407:1 15408:2 15413:2 15427:1 15459:1 15489:1 15490:1 15504:3 15524:4 15532:1 15555:1 15561:1 15572:1 15579:1 15610:1 15629:1 15635:3 15652:1 15668:1 15672:1 15686:1 15689:1 15712:1 15714:2 15719:2 15742:2 15764:1 15785:1 15787:1 15846:1 15860:1 15864:1 15874:1 15898:4 15901:1 15905:1 15918:1 15936:1 15940:1 15950:1 15953:1 15957:1 16005:1 16033:1 16035:1 16062:1 16066:1 16089:2 16100:1 16101:1 16109:1 16111:1 16132:1 16144:1 16145:1 16152:1 16154:1 16158:1 16160:1 16164:2 16178:1 16179:1 16197:1 16200:1 16215:1 16240:1 16257:1 16258:1 16261:1 16263:3 16282:1 16289:3 16309:2 16317:1 16357:2 16367:1 16371:1 16372:1 16375:1 16379:1 16383:1 16387:2 16390:1 16392:1 16408:1 16443:1 16447:3 16450:1 16451:1 16456:1 16464:1 16468:1 16469:2 16474:1 16486:2 16512:4 16531:1 16545:1 16546:1 16547:1 16563:2 16571:1 16575:1 16583:1 16586:1 16604:1 16608:1 16616:1 16630:1 16631:1 16635:2 16637:1 16645:1 16657:1 16668:1 16675:1 16678:2 16685:1 16713:3 16716:1 16718:1 16720:1 16721:1 16729:1 16743:1 16744:1 16750:1 16751:1 16766:2 16767:3 16768:1 16770:1 16780:1 16783:1 16784:1 16786:2 16787:1 16800:1 16802:2 16803:1 16808:2 16810:1 16823:1 16848:1 16850:4 16860:3 16873:1 16891:2 16898:1 16906:1 16937:2 16942:1 16958:1 16961:1 16966:3 16973:2 16990:1 16991:1 17021:2 17022:1 17028:1 17043:1 17045:1 17050:4 17076:1 17083:1 17094:3 17101:1 17121:1 17127:1 17140:4 17145:1 17166:5 17186:1 17197:1 17213:1 17236:1 17284:1 17288:1 17291:7 17296:1 17298:1 17300:1 17312:1 17319:1 17326:1 17328:1 17341:1 17360:1 17365:2 17416:1 17433:1 17441:1 17447:1 17471:2 17486:1 17492:2197 17497:1 17515:1 17520:1 17538:1 17539:1 17541:1 17551:1 17555:1 17594:1 17599:1 17628:1 17668:1 17669:1 17690:1 17691:1 17704:1 17755:1 17793:1 17794:1 17815:1 17838:1 17846:1 17902:2 17912:2 17914:1 17933:1 17938:1 17945:1 17991:1 18000:1 18003:2 18020:1 18028:1 18032:1 18042:1 18055:1 18087:3 18107:1 18108:1 18110:4 18131:1 18145:1 18161:1 18185:1 18196:2 18198:1 18217:2 18226:1 18237:3 18241:1 18254:1 18269:8 18271:1 18333:1 18366:1 18380:3 18383:1 18398:1 18415:4 18423:1 18449:1 18471:1 18480:1 18485:2 18494:2 18503:1 18507:2 18525:2 18535:1 18542:1 18544:2 18547:1 18549:1 18562:1 18566:1 18584:2 18590:1 18592:1 18594:1 18603:1 18605:1 18606:2 18619:1 18622:3 18651:1 18667:1 18671:1 18672:3 18675:1 18676:1 18695:1 18720:1 18738:1 18740:1 18757:1 18773:1 18776:2 18778:2 18849:4 18856:1 18879:1 18892:2 18915:4 18921:4 18928:1 18929:1 18932:1 18947:1 18949:1 18958:2 18965:1 18974:1 18983:2 18985:1 18992:1 18995:1 19001:1 19003:1 19005:1 19011:1 19025:1 19033:1 19044:1 19054:1 19057:1 19061:2 19078:2 19080:2 19097:1 19098:1 19109:1 19115:1 19202:1 19208:2 19214:1 19215:1 19238:3 19240:1 19242:2 19253:1 19268:1 19274:1 19277:2 19278:1 19297:1 19305:1 19358:1 19382:1 19384:1 19388:2 19416:1 19424:1 19426:1 19435:1 19451:1 19462:1 19465:1 19469:1 19471:1 19483:1 19485:1 19487:1 19488:2 19490:1 19493:1 19508:1 19510:1 19515:1 19518:1 19525:1 19558:2 19579:1 19593:1 19596:3 19599:1 19601:1 19603:3 19611:1 19612:1 19623:2 19624:1 19636:2 19647:2 19648:1 19651:2 19706:1 19708:1 19710:1 19721:1 19722:1 19743:1 19758:1 19759:1 19761:1 19778:1 19785:1 19804:1 19809:3 19877:1 19885:1 19928:1 19934:1 19956:1 19957:1 19962:1 19968:2 20010:1 20012:1 20018:1 20033:2 20077:1 20079:1 20089:1 20091:2 20096:1 20109:1 20114:1 20131:1 20138:1 20139:2 20143:1 20174:1 20190:1 20194:1 20196:1 20201:1 20203:1 20216:1 20220:1 20231:1 20234:1 20247:1 20251:1 20252:1 20263:1 20290:1 20307:1 20325:1 20349:3 20370:2 20376:1 20397:1 20401:3 20407:1 20411:2 20415:1 20421:7 20422:1 20433:3 20438:1 20446:1 20455:1 20462:2 20477:2 20481:1 20482:1 20483:1 20486:1 20488:1 20529:2 20547:1 20561:1 20571:1 20577:3 20580:2 20583:1 20591:1 20594:1 20597:1 20608:1 20609:1 20610:3 20613:1 20624:1 20625:2 20627:1 20654:1 20656:1 20659:1 20660:1 20670:1 20694:2 20704:1 20711:1 20716:1 20727:1 20729:1 20754:1 20762:1 20775:2 20776:1 20793:1 20796:2 20803:1 20804:3 20823:1 20828:2 20841:1 20864:1 20871:1 20894:2 20901:1 20913:1 20923:1 20931:1 20933:1 20942:1 20960:1 20963:1 20973:1 20975:1 20980:4 20988:1 20994:2 21002:1 21004:1 21006:2 21007:2 21011:2 21017:1 21025:1 21030:1 21040:1 21053:1 21067:2 21072:1 21080:1 21082:2 21111:2 21117:1 21120:1 21121:1 21132:2 21159:2 21173:3 21185:3 21195:1 21223:1 21233:1 21236:1 21241:1 21242:1 21252:1 21254:2 21260:1 21277:1 21280:1 21287:1 21305:1 21313:1 21315:1 21320:1 21323:1 21324:1 21329:1 21337:2 21345:1 21347:1 21430:6 21435:1 21438:1 21439:1 21444:2 21449:1 21450:1 21452:1 21460:1 21478:1 21503:1 21516:2 21554:2 21560:1 21568:2 21579:1 21584:1 21587:1 21593:1 21594:1 21603:1 21632:2 21656:1 21678:1 21692:2 21709:5 21729:1 21730:3 21731:2 21777:1 21788:1 21850:1 21874:1 21895:1 21896:3 21904:1 21909:2 21911:1 21919:2 21923:1 21925:1 21927:3 21954:2 21967:1 21968:1 21975:1 21986:1 21987:2 21994:1 22024:2 22030:1 22040:1 22046:1 22055:3 22060:1 22066:1 22074:1 22097:1 22105:2 22119:1 22128:1 22133:1 22137:2 22148:3 22152:1 22157:2 22176:1 22188:1 22189:1 22200:1 22202:1 22208:3 22215:1 22219:1 22224:1 22248:2 22251:1 22270:1 22283:1 22291:1 22309:1 22323:1 22325:1 22333:2 22340:1 22351:1 22382:1 22387:1 22391:1 22405:1 22409:1 22424:1 22425:1 22438:1 22449:1 22471:2 22476:1 22502:1 22538:1 22544:1 22568:5 22569:1 22571:1 22572:1 22578:1 22586:1 22614:1 22616:1 22634:2 22647:1 22652:1 22663:1 22666:1 22678:2 22679:1 22707:3 22717:1 22718:1 22728:1 22737:1 22747:1 22759:2 22762:1 22779:1 22788:4 22797:3 22830:2 22838:1 22876:2 22885:2 22887:1 22935:1 22948:2 22956:5 22963:1 22967:2 22988:1 23000:1 23003:6 23007:1 23052:1 23068:1 23078:1 23094:1 23103:1 23108:1 23111:1 23119:1 23121:1 23127:2 23128:2 23135:1 23138:1 23156:1 23162:1 23164:1 23165:1 23173:1 23190:1 23191:1 23194:1 23199:1 23219:1 23222:1 23224:1 23230:1 23231:1 23240:1 23241:1 23245:3 23247:1 23250:1 23267:1 23269:2 23271:1 23277:1 23286:1 23315:2 23373:2 23383:1 23415:1 23416:1 23426:1 23452:1 23453:1 23486:1 23513:1 23518:1 23535:1 23554:1 23608:3 23628:1 23633:3 23637:1 23648:1 23675:4 23694:3 23711:1 23718:2 23731:1 23735:2 23738:2 23743:1 23751:2 23766:1 23783:1 23785:1 23791:1 23816:1 23821:1 23822:1 23842:1 23850:1 23864:1 23865:1 23866:4 23872:1 23873:2 23878:1 23879:2 23897:1 23898:1 23899:1 23901:1 23902:1 23904:1 23913:2 23914:1 23918:2 23929:1 23935:3 23936:1 23949:1 23960:1 23964:2 23966:1 23974:1 23986:1 23987:1 24008:1 24012:1 24040:5 24063:1 24064:1 24085:2 24091:1 24099:1 24119:1 24141:1 24143:1 24151:1 24153:1 24157:1 24171:1 24188:2 24204:1 24223:1 24228:1 24251:1 24267:1 24268:1 24271:4 24273:1 24298:1 24324:2 24330:1 24338:1 24352:2 24367:2 24377:1 24397:1 24420:1 24430:2 24433:1 24436:1 24437:1 24442:1 24443:1 24452:1 24463:1 24466:2 24490:1 24503:1 24533:3 24542:1 24566:2 24579:1 24598:7 24638:1 24643:2 24655:1 24672:1 24675:1 24708:1 24712:1 24720:1 24721:3 24730:1 24731:1 24734:1 24746:1 24759:1 24765:1 24773:1 24809:1 24836:2 24839:1 24853:1 24854:1 24856:2 24860:2 24861:1 24865:1 24885:1 24899:4 24928:3 24936:1 24941:1 24957:1 24965:1 24988:1 24993:1 25000:1 25018:1 25026:1 25033:1 25045:1 25071:2 25079:2 25107:1 25113:1 25134:1 25161:1 25219:1 25248:2 25274:1 25277:2 25281:3 25296:1 25317:1 25331:1 25338:1 25345:1 25346:1 25347:1 25349:1 25370:1 25387:1 25393:1 25413:1 25434:1 25452:3 25460:1 25466:1 25473:2 25474:1 25488:1 25515:2 25521:1 25537:1 25539:1 25543:1 25545:3 25584:1 25587:1 25593:2 25597:2 25622:1 25623:1 25635:3 25641:1 25662:1 25663:1 25678:1 25704:2 25706:1 25710:1 25717:1 25719:1 25720:1 25724:2 25728:1 25742:1 25767:5 25769:1 25770:1 25778:3 25780:1 25785:1 25786:2 25788:1 25790:1 25793:2 25798:2 25799:1 25804:1 25811:1 25835:2 25842:1 25850:1 25866:4 25871:1 25873:1 25874:1 25877:2 25878:1 25894:1 25897:1 25912:1 25921:1 25924:1 25961:1 25965:1 26013:2 26026:1 26028:1 26049:1 26057:1 26068:3 26070:2 26071:1 26072:1 26084:2 26092:1 26125:1 26131:1 26166:1 26174:1 26184:3 26218:1 26250:1 26266:1 26275:1 26280:3 26312:1 26315:2 26322:1 26337:1 26340:1 26348:1 26352:4 26364:1 26378:1 26381:1 26400:1 26402:1 26409:1 26422:1 26429:2 26435:2 26442:2 26444:1 26446:12 26451:1 26468:1 26480:1 26482:7 26498:6 26504:1 26531:1 26545:1 26548:1 26565:1 26574:5 26575:1 26576:1 26598:4 26609:5 26617:2 26641:1 26647:12 26652:1 26655:1 26659:1 26666:2 26681:1 26709:1 26723:2 26751:1 26762:1 26782:1 26792:1 26811:1 26821:1 26824:1 26828:2 26834:1 26835:1 26843:1 26853:1 26866:2 26872:1 26892:1 26898:1 26902:2 26909:2 26912:1 26913:1 26955:1 26962:1 26968:1 26977:2 26981:5 26984:2 26990:1 27001:1 27006:1 27010:1 27026:1 27027:1 27029:1 27050:2 27062:1 27078:1 27084:1 27086:1 27095:1 27113:2 27118:1 27122:1 27133:1 27137:2 27180:2 27190:2 27201:1 27205:1 27227:1 27232:1 27250:1 27261:1 27276:1 27286:2 27298:1 27358:1 27360:1 27364:1 27368:1 27372:2 27418:1 27431:1 27433:1 27435:1 27473:1 27479:6 27481:2 27489:2 27497:1 27499:1 27522:1 27526:1 27529:2 27538:1 27557:2 27565:4 27608:2 27615:1 27625:2 27633:3 27641:2 27643:2 27665:1 27678:1 27691:1 27696:4 27704:1 27730:1 27746:1 27756:2 27758:1
12 1:1 34:1 37:1 38:1 43:1 52:1 57:2 74:1 87:4 92:1 111:1 120:1 141:1 159:1 165:1 179:2 182:1 195:2 200:1 202:1 208:1 209:1 210:1 277:1 282:1 292:1 294:1 313:1 328:4 356:2 363:3 378:2 379:1 388:1 413:1 418:3 423:1 430:1 441:2 457:1 528:1 535:1 553:1 603:3 609:1 637:1 648:2 666:1 693:1 694:1 698:2 700:2 725:2 739:1 790:2 794:1 820:1 861:7 867:1 870:1 874:1 881:1 888:4 893:1 897:1 903:2 909:2 923:2 941:2 946:2 949:2 950:1 952:1 981:1 990:1 994:1 1019:1 1022:1 1037:1 1053:1 1054:1 1068:1 1069:1 1073:1 1082:1 1088:1 1104:1 1125:1 1132:1 1140:1 1154:1 1167:1 1192:1 1193:2 1194:1 1195:1 1203:2 1217:3 1222:1 1228:1 1231:1 1240:1 1249:2 1277:2 1287:1 1298:1 1301:1 1310:1 1331:2 1344:3 1349:1 1354:1 1357:1 1367:1 1369:1 1371:1 1397:6 1448:1 1450:1 1451:5 1454:1 1457:8 1459:1 1461:1 1462:1 1478:1 1482:1 1484:1 1493:1 1506:1 1513:1 1516:1 1534:2 1535:2 1541:1 1551:1 1556:1 1559:1 1562:1 1564:2 1565:3 1568:1 1574:1 1586:1 1623:2 1625:2 1656:2 1660:1 1668:4 1680:2 1683:1 1691:1 1695:2 1696:1 1730:3 1740:1 1762:2 1768:1 1791:1 1795:1 1810:1 1815:1 1817:1 1831:2 1834:1 1839:3 1844:1 1848:1 1864:2 1877:1 1890:2 1891:1 1893:1 1897:2 1905:1 1909:1 1922:2 1941:1 1950:1 1978:1 2006:1 2007:4 2010:1 2030:1 2039:1 2058:1 2060:3 2063:1 2080:1 2086:1 2089:1 2096:1 2122:4 2148:1 2164:1 2169:1 2188:1 2191:6 2197:3 2200:1 2204:1 2208:1 2210:3 2219:1 2235:1 2236:1 2244:2 2245:2 2246:2 2248:1 2249:5 2251:2 2253:2 2256:2 2258:2 2261:1 2262:1 2264:2 2265:2 2266:1 2269:1 2270:6 2272:1 2276:1 2280:1 2281:2 2287:2 2296:1 2307:1 2338:6 2339:1 2354:2 2356:2 2368:1 2369:1 2381:1 2418:2 2423:1 2451:1 2452:1 2458:1 2459:1 2487:1 2501:1 2505:1 2514:2 2523:1 2526:4 2545:1 2550:1 2557:1 2572:1 2575:1 2580:1 2583:1 2589:1 2620:1 2640:1 2643:1 2662:1 2666:1 2694:1 2699:4 2703:1 2706:1 2715:2 2721:1 2724:1 2741:2 2745:1 2756:4 2757:1 2769:2 2770:1 2807:1 2815:1 2832:1 2846:5 2852:1 2857:2 2860:1 2898:5 2912:1 2919:1 2927:1 2928:2 2937:1 2951:1 2957:1 2965:1 2972:1 2973:1 2990:1 3000:1 3008:1 3021:1 3023:2 3053:1 3065:1 3080:1 3083:3 3084:1 3113:1 3135:1 3143:1 3154:1 3155:1 3160:1 3166:1 3174:1 3178:2 3191:2 3207:1 3223:1 3232:2 3244:8 3247:1 3257:1 3260:1 3318:1 3320:1 3322:1 3329:1 3338:1 3368:1 3370:1 3399:1 3402:1 3407:1 3426:1 3431:1 3442:1 3460:2 3462:1 3489:1 3497:1 3500:1 3504:1 3512:1 3515:1 3520:1 3525:1 3529:1 3534:1 3548:1 3559:1 3568:1 3577:4 3584:1 3586:1 3588:1 3591:1 3593:1 3600:1 3603:1 3607:1 3612:2 3647:1 3648:5 3674:1 3675:2 3676:1 3697:2 3703:1 3713:1 3717:1 3721:3 3725:1 3726:2 3733:1 3741:1 3746:1 3753:1 3754:1 3763:1 3805:1 3806:3 3813:1 3825:1 3832:1 3844:3 3846:1 3849:1 3866:1 3872:1 3876:1 3878:1 3888:1 3904:1 3906:1 3913:1 3916:1 3921:3 3932:3 3972:1 3973:1 3987:1 3992:1 4014:1 4023:2 4030:2 4044:1 4072:1 4079:1 4104:5 4107:3 4113:1 4117:1 4123:1 4145:1 4163:5 4165:2 4167:1 4175:1 4180:1 4192:1 4202:2 4216:1 4231:2 4239:2 4251:1 4258:1 4267:1 4271:1 4281:1 4310:2 4327:1 4346:1 4356:1 4357:1 4375:3 4386:2 4404:1 4406:1 4414:1 4416:1 4419:1 4423:3 4431:2 4472:1 4494:2 4506:1 4517:1 4521:1 4524:1 4525:1 4526:1 4533:1 4550:4 4569:1 4578:1 4579:1 4581:1 4597:1 4603:1 4605:1 4656:1 4668:1 4677:1 4700:1 4710:12 4711:3 4722:1 4730:1 4732:2 4733:1 4738:2 4749:1 4750:1 4759:1 4761:2 4814:6 4820:1 4823:1 4828:3 4830:2 4833:1 4836:2 4838:1 4841:1 4842:1 4844:1 4845:2 4850:3 4854:1 4856:3 4857:2 4860:2 4879:1 4887:1 4891:1 4915:1 4916:4 4920:1 4934:1 4943:1 4948:1 4961:1 4993:1 4996:1 5045:2 5056:1 5057:1 5095:1 5112:1 5118:1 5130:3 5133:1 5141:3 5158:1 5162:1 5163:6 5177:1 5188:8 5221:1 5242:1 5269:1 5274:2 5327:2 5335:1 5355:2 5357:1 5361:1 5379:1 5382:1 5392:1 5400:1 5401:1 5402:1 5407:1 5418:1 5426:1 5438:1 5452:1 5469:1 5470:3 5473:1 5475:1 5476:2 5478:1 5481:1 5484:1 5494:1 5496:1 5504:1 5511:1 5519:1 5527:2 5534:1 5639:1 5663:1 5665:1 5669:1 5705:1 5750:2 5752:8 5755:1 5777:1 5779:1 5787:1 5788:1 5794:2 5797:1 5804:1 5813:2 5840:1 5842:1 5844:1 5864:1 5868:3 5877:1 5879:2 5903:1 5906:1 5917:2 5934:1 5960:1 5994:4 6003:1 6007:1 6008:1 6016:1 6024:1 6069:1 6076:2 6092:4 6096:2 6098:2 6101:3 6102:1 6109:1 6110:1 6113:1 6115:5 6116:1 6117:10 6119:1 6120:3 6122:1 6143:1 6158:1 6169:2 6233:1 6246:3 6254:1 6260:2 6276:1 6283:2 6305:2 6308:1 6318:1 6362:1 6375:1 6387:1 6399:2 6414:2 6418:1 6420:1 6421:1 6428:1 6436:2 6439:1 6455:1 6472:1 6486:1 6490:1 6492:2 6493:1 6515:1 6516:2 6519:1 6533:2 6536:1 6545:4 6566:1 6568:1 6569:1 6574:1 6578:1 6613:1 6614:1 6629:1 6650:1 6656:1 6705:1 6714:1 6724:1 6745:1 6748:1 6749:1 6762:1 6764:1 6780:1 6798:1 6826:1 6877:6 6878:2 6883:1 6895:1 6920:1 6924:2 6932:1 6949:1 6958:3 6964:1 6971:1 6974:1 6975:3 6981:1 6990:1 6996:1 7009:1 7047:1 7098:1 7117:3 7127:3 7130:1 7131:1 7143:5 7144:2 7146:4 7151:1 7155:1 7168:1 7169:1 7180:1 7183:1 7198:1 7210:1 7211:1 7216:1 7250:2 7263:1 7274:1 7290:2 7293:1 7294:1 7295:1 7328:12 7329:8 7336:1 7337:1 7344:1 7346:1 7351:1 7352:1 7356:2 7360:1 7367:1 7384:2 7394:36 7410:6 7412:5 7419:2 7422:1 7432:1 7457:1 7460:1 7480:1 7488:2 7489:2 7522:2 7550:1 7587:2 7594:1 7604:1 7610:2 7614:3 7629:2 7633:1 7636:1 7640:1 7645:1 7651:1 7681:1 7689:1 7693:1 7725:2 7733:1 7768:1 7770:1 7773:1 7777:1 7778:1 7811:1 7852:2 7864:1 7867:1 7871:7 7902:1 7905:1 7916:1 7947:1 7961:1 7991:1 7995:1 7999:1 8001:1 8008:1 8021:1 8024:1 8062:1 8072:1 8087:3 8091:1 8094:1 8111:1 8124:1 8133:1 8140:1 8166:1 8167:1 8187:1 8204:3 8206:2 8207:1 8210:1 8212:1 8213:1 8217:2 8218:1 8219:1 8220:1 8221:1 8224:1 8238:1 8244:1 8247:3 8249:1 8259:1 8262:1 8277:2 8285:1 8287:2 8320:1 8322:1 8324:3 8328:1 8335:1 8338:1 8363:1 8366:1 8389:1 8424:1 8433:1 8437:1 8446:2 8450:1 8468:1 8483:2 8490:1 8491:1 8501:1 8511:2 8523:1 8528:1 8577:1 8580:1 8587:1 8591:1 8599:2 8630:1 8659:1 8662:1 8663:1 8676:1 8688:2 8689:1 8690:1 8692:1 8707:1 8710:1 8713:1 8717:1 8732:1 8733:1 8740:1 8745:1 8750:4 8751:1 8767:1 8780:1 8787:1 8796:2 8799:1 8801:1 8810:1 8813:2 8816:1 8824:1 8827:1 8838:1 8841:4 8843:3 8844:1 8845:1 8866:1 8875:1 8880:2 8883:2 8902:1 8910:1 8912:1 8914:2 8918:1 8922:1 8930:1 8931:2 8948:1 8960:1 8965:1 8978:1 8984:1 8990:1 8995:2 8998:1 9006:1 9007:1 9011:1 9014:1 9019:1 9031:1 9055:1 9066:7 9080:1 9097:1 9102:2 9108:1 9109:2 9124:1 9132:1 9133:1 9136:1 9147:3 9153:1 9161:1 9162:1 9165:1 9172:1 9175:2 9190:1 9191:2 9192:1 9198:1 9203:2 9220:1 9244:1 9250:2 9254:3 9257:1 9264:1 9267:2 9287:8 9302:1 9303:3 9305:1 9307:1 9308:1 9312:1 9369:1 9397:1 9416:2 9433:4 9452:1 9469:1 9479:1 9480:1 9481:5 9484:1 9492:2 9505:1 9510:1 9523:1 9526:3 9529:1 9538:1 9583:1 9594:4 9598:1 9599:2 9601:1 9602:1 9617:1 9627:1 9628:1 9650:1 9661:1 9665:1 9673:1 9693:1 9719:1 9744:1 9747:1 9760:1 9774:1 9776:1 9778:1 9797:1 9802:1 9808:1 9814:1 9831:1 9839:1 9840:1 9846:1 9855:1 9876:2 9882:2 9895:1 9902:1 9954:1 9961:3 9963:1 9995:3 9999:1 10018:1 10020:1 10024:1 10027:1 10039:2 10041:3 10053:1 10054:1 10057:1 10059:5 10060:1 10063:1 10066:1 10072:2 10112:1 10135:1 10145:3 10148:1 10155:7 10162:1 10163:1 10182:3 10191:1 10210:1 10214:1 10215:2 10237:1 10266:1 10274:1 10337:1 10357:2 10358:3 10359:5 10365:2 10380:1 10381:1 10386:1 10405:1 10419:1 10424:1 10442:1 10448:3 10453:1 10473:1 10474:2 10488:3 10496:1 10500:2 10519:1 10524:1 10526:1 10537:1 10543:1 10547:1 10559:1 10573:1 10578:1 10583:1 10585:1 10594:1 10595:1 10627:1 10631:2 10633:2 10700:2 10710:1 10711:1 10714:1 10740:1 10750:1 10767:1 10777:1 10781:2 10787:1 10804:1 10812:6 10855:1 10866:2 10883:2 10888:1 10889:1 10896:1 10905:1 10910:2 10918:3 10961:1 10975:2 10978:1 10987:3 10989:1 10992:2 10999:1 11008:4 11026:1 11047:2 11053:2 11054:1 11061:1 11070:1 11071:1 11074:3 11075:1 11076:1 11077:1 11080:2 11086:1 11092:1 11096:3 11125:1 11126:1 11130:2 11142:1 11148:1 11151:2 11158:1 11159:1 11169:2 11189:1 11194:1 11233:1 11244:2 11252:1 11253:2 11268:1 11284:1 11299:1 11310:1 11316:2 11318:2 11332:1 11333:1 11344:1 11352:1 11364:1 11371:1 11424:1 11442:2 11443:6 11462:1 11464:1 11465:1 11477:3 11488:2 11494:1 11501:1 11507:2 11512:1 11528:1 11529:1 11549:3 11560:1 11565:1 11569:1 11581:4 11597:2 11607:3 11624:2 11630:1 11663:1 11665:1 11668:2 11676:1 11710:2 11713:1 11731:1 11752:1 11756:1 11757:1 11761:1 11775:1 11784:1 11785:1 11789:1 11855:2 11869:1 11874:1 11902:1 11910:1 11911:1 11913:1 11928:1 11972:2 11976:1 11977:1 11979:2 11980:1 11981:1 11982:1 11999:1 12000:1 12001:2 12009:1 12037:1 12049:1 12058:1 12063:5 12070:2 12075:1 12109:1 12125:1 12139:1 12149:1 12174:1 12185:1 12209:1 12244:1 12269:1 12272:1 12285:1 12292:1 12301:1 12317:1 12337:1 12348:1 12349:1 12355:2 12356:4 12360:3 12376:1 12381:1 12385:1 12386:1 12396:1 12402:1 12403:5 12410:1 12427:1 12438:2 12443:1 12445:3 12471:1 12506:1 12507:1 12515:2 12522:1 12533:1 12548:2 12557:1 12570:1 12575:3 12586:1 12590:2 12603:1 12612:1 12632:2 12639:1 12648:1 12664:1 12698:1 12703:1 12718:1 12719:1 12721:1 12815:4 12827:1 12844:1 12846:1 12851:1 12852:2 12857:1 12859:7 12860:1 12861:1 12862:1 12881:2 12884:1 12902:2 12919:3 12920:1 12929:1 12937:1 12939:1 12949:2 12956:1 12959:2 12986:1 12991:1 12997:3 13003:1 13008:1 13010:4 13013:2 13015:2 13055:1 13056:1 13068:1 13070:1 13081:1 13093:1 13094:2 13108:2 13109:1 13114:1 13128:6 13134:1 13148:3 13157:1 13164:2 13166:1 13172:1 13181:1 13195:2 13203:1 13204:2 13226:1 13245:1 13257:1 13274:1 13276:1 13280:1 13320:2 13321:1 13326:1 13330:4 13352:1 13356:1 13360:1 13370:1 13386:2 13392:1 13399:1 13437:1 13468:1 13483:1 13484:1 13498:1 13499:2 13502:1 13504:2 13517:1 13527:2 13534:1 13537:1 13547:1 13553:1 13562:1 13577:1 13592:1 13597:1 13606:1 13628:1 13657:1 13678:1 13686:2 13691:2 13695:2 13705:1 13709:1 13718:1 13734:4 13746:1 13758:1 13763:1 13774:4 13776:1 13812:1 13824:1 13834:1 13841:1 13846:1 13848:1 13854:1 13873:1 13874:2 13875:1 13886:1 13904:1 13915:1 13919:4 13924:1 13926:1 13934:2 13935:1 13956:3 13982:1 13990:1 14009:1 14017:3 14029:1 14045:1 14047:1 14049:2 14050:2 14057:1 14059:1 14077:1 14087:2 14112:1 14125:1 14129:1 14133:1 14150:1 14151:2 14155:3 14160:3 14167:1 14170:1 14176:1 14200:1 14205:1 14245:1 14253:2 14299:1 14317:1 14332:1 14342:1 14354:1 14355:2 14365:1 14381:1 14409:1 14429:1 14440:2 14452:1 14460:1 14462:2 14463:1 14467:1 14475:1 14476:2 14479:2 14480:1 14487:1 14497:1 14512:1 14520:3 14523:1 14526:1 14528:1 14534:2 14535:1 14575:1 14588:1 14595:1 14602:2 14611:1 14637:1 14654:1 14656:1 14663:1 14678:1 14701:1 14708:1 14733:4 14736:1 14744:1 14747:1 14749:1 14754:3 14757:1 14763:1 14767:2 14769:2 14770:1 14773:1 14774:1 14782:3 14786:1 14790:1 14797:2 14812:4 14820:1 14835:1 14839:1 14843:2 14853:1 14878:1 14888:1 14898:2 14903:1 14919:1 14923:2 14962:2 14970:1 14982:1 15001:1 15003:1 15021:1 15048:3 15057:1 15070:2 15088:1 15093:1 15098:1 15100:1 15118:1 15120:1 15121:1 15131:2 15137:1 15140:4 15141:1 15147:1 15152:1 15173:5 15174:1 15180:1 15193:2 15231:1 15232:1 15261:1 15265:1 15287:3 15295:1 15297:2 15299:1 15306:1 15307:1 15308:1 15323:1 15348:1 15370:1 15380:1 15381:1 15388:1 15390:2 15406:1 15407:1 15408:2 15413:2 15427:1 15459:1 15489:1 15490:1 15504:3 15524:4 15532:1 15555:1 15561:1 15572:1 15579:1 15610:1 15629:1 15635:3 15652:1 15668:1 15672:1 15686:1 15689:1 15712:1 15714:2 15719:2 15735:1 15742:2 15764:1 15785:1 15787:2 15846:1 15860:1 15864:1 15874:1 15898:4 15901:1 15905:1 15918:1 15936:1 15940:1 15950:1 15953:1 15957:1 16005:1 16033:1 16035:1 16062:1 16066:1 16089:2 16100:1 16101:1 16109:1 16111:1 16132:1 16144:1 16145:1 16149:1 16152:1 16154:1 16158:1 16160:1 16164:2 16178:1 16179:1 16197:1 16200:1 16215:1 16240:1 16257:1 16258:1 16261:1 16263:3 16282:1 16289:3 16309:2 16317:1 16357:2 16367:1 16371:1 16372:1 16375:1 16379:1 16383:1 16387:2 16390:1 16392:1 16408:1 16443:1 16447:3 16450:1 16451:1 16456:1 16464:1 16468:1 16469:2 16474:1 16486:2 16512:4 16531:1 16545:1 16546:1 16547:1 16563:2 16571:1 16575:1 16578:2 16583:1 16586:1 16604:1 16608:1 16616:1 16630:1 16631:1 16635:2 16637:1 16645:1 16657:1 16668:1 16675:1 16678:2 16685:1 16713:3 16716:1 16718:1 16720:1 16721:1 16729:1 16743:1 16744:1 16750:1 16751:1 16766:2 16767:3 16768:1 16770:1 16780:1 16783:1 16784:1 16786:2 16787:1 16800:1 16802:2 16803:1 16808:2 16810:1 16823:1 16847:1 16848:1 16850:5 16860:3 16873:1 16891:2 16898:1 16906:1 16937:2 16942:1 16958:1 16961:1 16964:1 16966:3 16973:2 16990:1 16991:1 17021:2 17022:1 17028:1 17043:1 17045:1 17050:4 17076:1 17083:1 17094:3 17101:1 17121:1 17127:1 17140:4 17145:1 17166:5 17186:1 17193:1 17197:1 17213:1 17236:1 17284:1 17288:1 17291:7 17296:1 17298:1 17300:1 17312:1 17319:1 17326:1 17328:1 17341:1 17360:1 17365:2 17416:1 17433:1 17437:1 17441:1 17447:1 17471:2 17486:1 17492:2243 17497:1 17515:1 17520:1 17538:1 17539:1 17541:1 17551:1 17555:1 17594:1 17599:1 17628:1 17668:1 17669:1 17690:1 17691:1 17704:1 17755:1 17793:1 17794:1 17815:1 17838:1 17846:1 17902:2 17912:2 17914:1 17933:1 17938:1 17945:1 17991:1 18000:1 18003:2 18020:1 18028:1 18032:1 18042:1 18055:1 18087:3 18107:1 18108:1 18110:4 18131:1 18145:1 18161:1 18185:1 18196:2 18198:1 18217:2 18226:1 18237:3 18241:1 18254:1 18269:8 18271:1 18333:1 18366:1 18380:3 18383:1 18398:1 18415:4 18423:1 18449:1 18471:1 18480:1 18485:2 18494:2 18503:1 18507:2 18525:3 18535:1 18542:1 18544:2 18547:1 18549:1 18562:2 18566:1 18584:2 18590:1 18592:1 18594:1 18603:1 18605:1 18606:2 18619:1 18622:3 18651:1 18667:1 18671:1 18672:3 18675:1 18676:1 18695:1 18720:1 18738:1 18740:1 18757:1 18773:1 18776:2 18778:2 18849:4 18856:1 18879:1 18892:2 18915:4 18921:4 18928:1 18929:1 18932:1 18947:1 18949:1 18958:2 18965:1 18974:1 18983:2 18985:1 18992:1 18995:1 19001:1 19003:1 19005:1 19011:1 19025:2 19033:1 19044:1 19054:1 19057:1 19061:2 19078:2 19080:3 19097:1 19098:1 19109:1 19115:1 19202:1 19208:2 19214:1 19215:1 19238:3 19240:1 19242:2 19253:1 19268:1 19274:1 19277:2 19278:1 19297:1 19305:1 19358:1 19382:1 19384:1 19388:2 19412:1 19416:1 19424:1 19426:1 19435:1 19451:1 19462:1 19465:1 19469:1 19471:1 19483:1 19485:1 19487:1 19488:2 19490:1 19493:1 19508:1 19510:1 19515:1 19518:1 19525:1 19558:2 19579:1 19593:1 19596:3 19599:1 19601:1 19603:4 19611:1 19612:1 19623:2 19624:1 19636:2 19647:3 19648:1 19651:2 19706:1 19708:1 19710:1 19717:1 19721:1 19722:1 19743:1 19758:1 19759:1 19761:1 19778:1 19785:1 19804:1 19809:3 19877:1 19885:1 19928:1 19934:1 19956:1 19957:1 19962:1 19968:2 20010:1 20012:1 20018:1 20033:2 20077:1 20079:1 20089:1 20091:2 20096:1 20109:1 20114:1 20131:1 20138:1 20139:2 20143:1 20174:1 20190:1 20194:1 20196:1 20201:1 20202:1 20203:1 20216:1 20220:1 20231:1 20234:1 20247:1 20251:1 20252:1 20263:1 20290:1 20307:1 20325:1 20349:3 20370:2 20376:1 20397:1 20401:3 20407:1 20411:2 20415:1 20421:7 20422:1 20433:3 20438:1 20446:1 20455:1 20462:2 20477:2 20481:1 20482:1 20483:1 20486:1 20488:1 20529:2 20547:1 20561:1 20571:1 20577:3 20580:2 20583:1 20591:1 20594:1 20597:1 20608:1 20609:1 20610:3 20613:1 20624:1 20625:2 20627:1 20654:1 20656:1 20659:1 20660:1 20670:1 20694:2 20704:1 20711:1 20716:1 20727:1 20729:1 20754:1 20762:1 20775:2 20776:1 20793:1 20796:2 20803:1 20804:3 20823:1 20828:2 20841:1 20864:1 20871:1 20894:2 20901:1 20913:1 20923:1 20931:1 20933:1 20942:1 20960:1 20963:1 20973:1 20975:1 20980:4 20988:1 20994:2 21002:1 21004:1 21006:2 21007:3 21011:3 21017:1 21025:1 21030:1 21040:1 21053:1 21067:2 21072:1 21080:1 21082:2 21111:2 21117:2 21120:1 21121:1 21132:2 21159:2 21173:3 21185:3 21195:1 21223:1 21233:1 21236:1 21241:1 21242:1 21252:1 21254:2 21260:1 21277:1 21280:1 21287:1 21305:1 21313:1 21315:1 21320:1 21323:1 21324:1 21329:1 21337:2 21345:1 21347:1 21430:6 21435:1 21438:1 21439:1 21444:3 21449:1 21450:1 21452:1 21460:1 21478:1 21503:1 21516:2 21554:2 21560:1 21568:2 21579:1 21584:1 21587:1 21593:1 21594:1 21603:1 21632:2 21656:1 21678:1 21692:2 21709:5 21729:1 21730:3 21731:2 21777:1 21788:1 21850:1 21874:1 21895:1 21896:3 21904:1 21909:2 21911:1 21919:2 21923:1 21925:1 21927:3 21954:2 21967:1 21968:1 21975:1 21986:1 21987:2 21994:1 22024:2 22030:1 22040:1 22046:1 22055:3 22060:1 22066:1 22074:1 22097:1 22105:2 22119:1 22128:1 22133:1 22137:2 22148:3 22152:1 22157:2 22176:1 22188:1 22189:1 22200:1 22202:1 22208:3 22215:1 22219:1 22224:1 22248:2 22251:1 22270:1 22283:1 22291:1 22309:1 22323:1 22325:1 22333:2 22340:1 22351:1 22382:1 22387:1 22391:1 22405:1 22409:1 22424:1 22425:1 22438:1 22449:1 22471:2 22476:1 22502:1 22538:1 22544:1 22568:5 22569:1 22571:1 22572:1 22578:1 22586:1 22614:1 22616:1 22634:2 22647:1 22652:1 22663:1 22666:1 22678:2 22679:1 22707:3 22709:2 22717:1 22718:1 22728:1 22737:1 22747:1 22759:2 22762:1 22779:1 22788:4 22797:3 22830:2 22838:1 22876:2 22885:2 22887:1 22935:1 22948:2 22956:5 22963:1 22967:2 22981:1 22988:1 23000:1 23003:6 23007:1 23052:1 23068:1 23078:1 23094:1 23103:1 23108:1 23111:1 23119:1 23121:1 23127:2 23128:2 23135:1 23138:1 23140:1 23156:1 23162:1 23164:1 23165:1 23173:1 23190:1 23191:1 23194:1 23199:1 23219:1 23222:1 23224:1 23230:1 23231:1 23240:1 23241:1 23245:3 23247:1 23250:1 23267:1 23269:2 23271:1 23277:1 23286:1 23315:2 23343:1 23373:2 23383:1 23415:1 23416:1 23426:1 23452:1 23453:1 23466:1 23486:1 23513:1 23518:1 23523:2 23535:1 23554:1 23608:3 23628:1 23633:3 23637:1 23648:1 23675:4 23694:3 23711:1 23718:2 23731:1 23735:2 23738:2 23743:1 23751:2 23766:1 23783:1 23785:1 23791:1 23816:1 23821:1 23822:1 23842:1 23850:1 23864:1 23865:1 23866:4 23870:1 23872:1 23873:2 23878:1 23879:2 23897:1 23898:1 23899:1 23901:2 23902:1 23904:1 23913:2 23914:1 23918:2 23929:1 23935:3 23936:1 23949:1 23960:1 23964:2 23966:1 23974:1 23986:1 23987:1 24006:1 24008:1 24012:1 24040:5 24063:1 24064:1 24085:2 24091:1 24099:1 24119:1 24141:1 24143:1 24151:1 24153:1 24157:1 24171:1 24188:2 24204:2 24223:1 24228:1 24251:1 24267:1 24268:1 24271:4 24273:1 24298:1 24324:2 24330:2 24338:1 24352:2 24367:2 24377:1 24397:1 24420:1 24430:2 24433:1 24436:1 24437:1 24442:1 24443:1 24447:1 24452:1 24463:1 24466:2 24490:1 24503:1 24533:3 24542:1 24566:2 24579:1 24598:7 24638:1 24643:2 24655:1 24672:1 24675:1 24698:1 24708:1 24712:1 24720:1 24721:3 24730:1 24731:1 24734:1 24746:1 24759:1 24765:1 24773:1 24809:1 24836:2 24839:1 24853:1 24854:1 24856:2 24860:2 24861:1 24865:1 24885:1 24899:4 24928:3 24936:1 24941:1 24957:1 24965:1 24988:1 24993:1 25000:1 25018:1 25026:1 25033:1 25045:1 25071:2 25079:2 25107:1 25113:1 25134:1 25161:1 25219:1 25248:2 25274:1 25277:2 25281:3 25296:1 25302:1 25317:1 25331:1 25338:1 25345:1 25346:1 25347:1 25349:1 25370:1 25387:1 25393:1 25413:1 25434:1 25452:3 25460:1 25466:1 25473:2 25474:1 25488:1 25515:2 25521:1 25537:1 25539:1 25543:1 25545:3 25584:1 25587:1 25593:2 25597:2 25622:1 25623:1 25635:3 25641:1 25662:1 25663:1 25678:1 25704:2 25706:1 25710:1 25717:1 25719:1 25720:1 25724:2 25728:1 25742:1 25767:5 25769:1 25770:1 25778:3 25780:1 25785:1 25786:2 25788:1 25790:1 25793:2 25798:2 25799:1 25804:1 25811:1 25835:2 25842:1 25850:1 25866:4 25871:1 25873:1 25874:1 25877:2 25878:1 25894:1 25897:1 25912:1 25921:1 25924:1 25961:1 25965:1 26013:2 26026:1 26028:1 26049:1 26057:1 26068:3 26070:2 26071:1 26072:1 26084:2 26092:1 26125:1 26131:1 26166:1 26174:1 26184:3 26218:1 26250:1 26266:1 26275:1 26280:3 26312:1 26315:2 26322:1 26337:1 26340:1 26348:1 26352:4 26364:1 26378:1 26381:1 26400:1 26402:1 26409:1 26422:1 26429:2 26435:2 26442:2 26444:1 26446:14 26451:1 26468:1 26480:1 26482:7 26498:6 26504:1 26531:1 26545:1 26548:1 26565:1 26574:5 26575:1 26576:1 26598:4 26609:5 26617:2 26641:1 26647:13 26652:1 26655:1 26659:1 26666:2 26681:1 26709:1 26723:2 26751:1 26762:1 26782:1 26792:1 26811:1 26821:1 26824:1 26828:2 26834:1 26835:1 26843:1 26853:1 26866:2 26872:1 26892:1 26898:1 26902:2 26909:2 26912:1 26913:1 26955:1 26962:1 26968:1 26977:2 26981:5 26984:2 26990:1 27001:2 27006:1 27010:1 27026:1 27027:1 27029:1 27050:2 27062:1 27078:1 27084:1 27086:1 27095:1 27113:2 27118:1 27122:1 27133:1 27137:2 27180:2 27190:2 27201:1 27205:1 27227:1 27232:1 27250:1 27261:1 27276:1 27286:2 27298:1 27358:1 27360:1 27364:1 27368:1 27372:2 27418:1 27431:1 27433:1 27435:1 27473:1 27479:6 27481:2 27489:2 27497:1 27499:1 27522:1 27526:1 27529:2 27531:2 27538:1 27557:2 27565:4 27608:2 27615:1 27625:2 27633:3 27641:2 27643:2 27665:1 27678:1 27691:1 27696:4 27704:1 27730:1 27746:1 27756:2 27758:1
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.