blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 6 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2 values | repo_name stringlengths 6 87 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 15 values | visit_date timestamp[us]date 2016-08-04 09:00:04 2023-09-05 17:18:33 | revision_date timestamp[us]date 1998-12-11 00:15:10 2023-09-02 05:42:40 | committer_date timestamp[us]date 2005-04-26 09:58:02 2023-09-02 05:42:40 | github_id int64 436k 586M ⌀ | star_events_count int64 0 12.3k | fork_events_count int64 0 6.3k | gha_license_id stringclasses 7 values | gha_event_created_at timestamp[us]date 2012-11-16 11:45:07 2023-09-14 20:45:37 ⌀ | gha_created_at timestamp[us]date 2010-03-22 23:34:58 2023-01-07 03:47:44 ⌀ | gha_language stringclasses 36 values | src_encoding stringclasses 17 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 5 10.4M | extension stringclasses 15 values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
5ce79d33f6b0373abed2af051709ac36e4bbc041 | 449d555969bfd7befe906877abab098c6e63a0e8 | /42/CH4/EX4.13/sadiku_4_13.sce | 221a3575651b97ad1a4dc2a346c0a972d77a0061 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 134 | sce | sadiku_4_13.sce | clear;
clc;
p1=-5*10^-9, p2=9*10^-9;
r1=2,r2=-3,e=10^-9/(36*%pi);
V=(1/(4*%pi*e))*((p1*abs(r1)/r1^3)+(p2*abs(r2)/r2^3));
disp(V); |
aeb97bb4e89afca283cef4430b1d02f795ece705 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3755/CH5/EX5.4/Ex5_4.sce | dd316b672a23def46bce1a00d6f75e2c175068ca | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 237 | sce | Ex5_4.sce | clear
//
//
//
//Variable declaration
T=10^7; //temperature(K)
b=0.292; //value of b(cmK)
//Calculations
lamda_m=b/T; //wavelength(cm)
//Result
printf("\n wavelength is %0.3f angstrom",lamda_m*10^8)
|
27e19be9d064f3dead90aa35e7d64cb222d87185 | 449d555969bfd7befe906877abab098c6e63a0e8 | /629/CH12/EX12.6/example12_6.sce | f50a6ce4569484c8964168d5057e50e2f7948521 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 608 | sce | example12_6.sce | clear
clc
//Example 12.6 ENTROPY INCREASE ACROSS SHOCK WAVE
//To find Approx Value
function [A]= approx (V,n)
A= round(V*10^n)/10^n; //V-Value, n-to what place
funcprot (0)
endfunction
k=1.4;
M1=1.5;
//Downstream Mach number
M2=approx(sqrt(((k-1)*M1^2+2)/(2*k*M1^2-(k-1))),3)
//Pressure ratio, (p21=p2/p1)
p21=approx([(1+k*M1^2)/(1+k*M2^2)],2)
//Temperature ratio, (T21=T2/T1)
T21=approx((1+[(k-1)/2]*M1^2)/(1+[(k-1)/2]*M2^2),2)
R=287; //[J/kg.K]
//Entropy change
del_s=R*log((T21^(k/(k-1))/p21)) //[J/kg.K]
printf("\n The change in entropy across the wave = %.1f J/kg.K.\n",del_s) |
c40c471b957c7842dfb286e1162c207d73132629 | d1d50d0e28187ba6034dbcc740aaa20488408d12 | /Tests/gridsim_multi_test.tst | 141097883bce8e6bcf371328d6f3e73d96de00ad | [] | no_license | sunspec/svp_energy_lab | 54cb4357202d3d1110a2d565067e7080312f5dc3 | 4937ce7509a0d027e54f44edd4e4568242e17419 | refs/heads/master | 2023-04-29T09:34:53.506932 | 2021-01-23T00:14:57 | 2021-01-23T00:14:57 | 85,247,070 | 10 | 18 | null | 2022-01-18T01:03:33 | 2017-03-16T22:27:53 | Python | UTF-8 | Scilab | false | false | 1,393 | tst | gridsim_multi_test.tst | <scriptConfig name="gridsim_multi_test" script="gridsim_multi">
<params>
<param name="gridsim_1.ametek.phases" type="int">1</param>
<param name="gridsim_2.ametek.phases" type="int">1</param>
<param name="gridsim_1.ametek.freq" type="float">60.0</param>
<param name="gridsim_2.ametek.freq" type="float">60.0</param>
<param name="gridsim_1.ametek.i_max" type="float">100.0</param>
<param name="gridsim_2.ametek.i_max" type="float">100.0</param>
<param name="gridsim_2.ametek.v_nom" type="float">277.2</param>
<param name="gridsim_1.ametek.v_nom" type="float">277.2</param>
<param name="gridsim_2.ametek.v_max" type="float">300.0</param>
<param name="gridsim_1.ametek.v_max" type="float">300.0</param>
<param name="gridsim_2.mode" type="string">Ametek</param>
<param name="gridsim_1.mode" type="string">Ametek</param>
<param name="gridsim_2.auto_config" type="string">Disabled</param>
<param name="gridsim_1.auto_config" type="string">Disabled</param>
<param name="profile.profile_name" type="string">FW Profile</param>
<param name="gridsim_2.ametek.comm" type="string">Serial</param>
<param name="gridsim_1.ametek.comm" type="string">Serial</param>
<param name="gridsim_2.ametek.serial_port" type="string">com1</param>
<param name="gridsim_1.ametek.serial_port" type="string">com1</param>
</params>
</scriptConfig>
|
592bcf58e3932a613c8bff436963d8de1abb59ff | d167200e784b8019615f6b37b5a46b91ec43b98d | /macros/lab2rgb.sci | c69e9863cd90627ff53c97c5be0d871a68bd0b97 | [] | no_license | AshishMantosh/FOSSEE-Image-Processing-Toolbox | ee9c1a00f97627f372fae1d7d851c4905ac9d83e | e4fbe1891e13e4dc9b62513f0aef2b101638f084 | refs/heads/master | 2021-01-01T19:05:15.966438 | 2017-07-27T07:16:11 | 2017-07-27T07:16:11 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,543 | sci | lab2rgb.sci | // Copyright (C) 2015 - IIT Bombay - FOSSEE
//
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
// Author: Tess Zacharias, Ashish Manatosh Barik
// Organization: FOSSEE, IIT Bombay
// Email: toolbox@scilab.in
//
function [output] = lab2rgb(pstData)
// This function converts CIE 1976 L*a*b* to RGB.
//
// Calling Sequence
// [output] = lab2rgb(pstData)
//
// Parameters
// pstData : The color values to convert, specified as a list of values.
// output : The converted color values, returned as an array of the same shape as the input.
//
// Description
// Convert CIE 1976 L*a*b* to RGB.
//
// Examples
// // Convert a color value in L*a*b* color space to the Adobe RGB (1998) color space.
// a = list(70, 5, 10);
// b = lab2rgb(a);
//
// Examples
// // Convert a color value in L*a*b* color space to the Adobe RGB (1998) color space.
// a = list(71, 50, 10);
// b = lab2rgb(a);
//
// Examples
// // Convert a color value in L*a*b* color space to the Adobe RGB (1998) color space.
// a = list(7.3, 5.53, 10);
// b = lab2rgb(a);
//
// Examples
// // Convert a color value in L*a*b* color space to the Adobe RGB (1998) color space.
// a = list(70, 5, 10.6656);
// b = lab2rgb(a);
//
// Examples
// // Convert a color value in L*a*b* color space to the Adobe RGB (1998) color space.
// a = list(70, 5.45, 10.45);
// b = lab2rgb(a);
//
// Examples
// // Convert a color value in L*a*b* color space to the Adobe RGB (1998) color space.
// a = list(7.343, 5.34, 10);
// b = lab2rgb(a);
//
// Examples
// // Convert a color value in L*a*b* color space to the Adobe RGB (1998) color space.
// a = list(70, 500, 1012);
// b = lab2rgb(a);
//
// Examples
// // Convert a color value in L*a*b* color space to the Adobe RGB (1998) color space.
// a = list(701.2, 5, 10);
// b = lab2rgb(a);
//
// Examples
// // Convert a color value in L*a*b* color space to the Adobe RGB (1998) color space.
// a = list(70, 5.545, 1.0);
// b = lab2rgb(a);
//
// Examples
// // Convert a color value in L*a*b* color space to the Adobe RGB (1998) color space.
// a = list(23, 51, 18);
// b = lab2rgb(a);
//
// Authors
// Tess Zacharias
// Ashish Manatosh Barik
out = raw_lab2rgb(pstData)
channels = size(out)
for i = 1:channels
output(:, :, i) = (out(i))
end
output = double(output)
endfunction
|
88564e73da9eabd7f30fc44d06ae19bfb658a8e4 | a12c936b0e7bc46c8a362d80f5bf785ade423b5b | /PosicaoFalsa.sce | 2351645bfabd51a805153ac8da2bc2293efef439 | [] | no_license | moreirapenna2/Trabalho1CN | bdf68a26a88f5bd5f90d968a21a8cd5774438a98 | 30d69b1fa8879b8f598ee6735faa507a929d6c9b | refs/heads/master | 2020-08-02T02:51:10.133915 | 2019-09-27T01:48:43 | 2019-09-27T01:48:43 | 211,214,049 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 846 | sce | PosicaoFalsa.sce | function posicaoFalsa(a,b,f)
N = 100; //numero maximo de iteracoes
TOL = 1.e-4; //erro
i = 1 //quantidade de iteracoes
FA = f(a)
finalOutput = [i, a, b, a + (b-a)/2, f(a + (b-a)/2)]
printf("%-20s %-20s %-20s %-20s %-20s \n","Iteracao","A","B","X","Y")
while(i <= N), //enquanto puder iterar
p = (a*f(b)-b*f(a))/(f(b) - f(a)) //calcula pela formula
FP = f(p)
if(FP == 0 | abs(f(p)) < TOL) then //se esta dentro da tolerancia
break
else
printf("%-20.8g %-20.8g %-20.8g %-20.8g %-20.8g\n", i, a, b, p, f(p))
end
i = i + 1
if(FA*FP > 0) then //escolhe o proximo
a = p
else
b = p
end
end
endfunction
|
264c98ec07435e9b276001197c4a463483a037d2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3685/CH15/EX15.5/Ex15_5.sce | 488ca095a2cd3f9d7fb4836bf11f163ab499c828 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 539 | sce | Ex15_5.sce | clc
W1 = 0.0058 // Humidity ratio for first stream
W2 = 0.0187 // Humidity ratio for second stream
h1 = 35 // Enthalpy of first stream in kJ/kg
h2 = 90// Enthalpy of second stream in kJ/kg
G12 = 1/2 //ratio
W3 = (W2+G12*W1)/(1+G12) // Final humidity ratio of mixture
h3 = (2/3)*h2 + (1/3)*h1// Final enthalpy of mixture
printf("\n Example 15.5 \n")
printf("\n Final condition of air is given by")
printf("\n W3 = %f kg vap./kg dry air",W3)
printf("\n h3 = %f kJ/kg dry air",h3)
//The answers vary due to round off error
|
9f816de8555de9423a3295010d95347852398492 | 1db0a7f58e484c067efa384b541cecee64d190ab | /macros/peak2rms.sci | 3a8df40117a27fba0573cc9c06e8adeb0480062b | [] | no_license | sonusharma55/Signal-Toolbox | 3eff678d177633ee8aadca7fb9782b8bd7c2f1ce | 89bfeffefc89137fe3c266d3a3e746a749bbc1e9 | refs/heads/master | 2020-03-22T21:37:22.593805 | 2018-07-12T12:35:54 | 2018-07-12T12:35:54 | 140,701,211 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,420 | sci | peak2rms.sci | function out = peak2rms(in,orientation)
//This function calculates the ratio of peak magnitude to the Root Mean Square(RMS) value.
//
//Calling Sequence
//OUT=peak2rms(IN)
//OUT=peak2rms(IN,orientation)
//
//Parameters
//in:Vector or Matrix of real or complex elements.
//orientation: A string with possible values "r", "c" or "m" giving the dimension along which the peak2rms value is to be calculated.
//out:A scalar with real value when input is a vector.When input is a matrix, out is the peak magnitude to RMS value along the orientation specified or the default one when not specified.
//
//Description
//For vector as input, the output is the ratio of peak value to the RMS value. The RMS value can be calculated by taking the square root of mean value of the squared sum of the elements.
//
//When a matrix is given as input the output is peak to RMS ratio in the orientation specified.
//The orientation can be given as string with values "r","c" or "m".
//
//peak2rms(in, 1) calculates the values of ratio of peak to RMS of columns of matrix. The output in this case is a row vector with peak2rms value of each column of in.
//
//peak2rms(in, 2) calculates the values of ratio of peak to RMS of rows of matrix, where the output would be a column vector having peak2rms value of each row of in.
//
//The default orientation is chosen to be the index of first dimension of input greater than 1.Hence peak2rms(in) is equivalent to peak2rms(in, "m").
//
//For an N dimensional array the orientation is the index of first non singleton dimension of the array.
//
//If the elements of matrix are complex the absolute values are considered in the calculation of RMS value.
//
//Examples
//To calculate peak2rms of a vector:
//IN=[6 19 10 25]
//OUT=peak2rms(IN)
//The output is OUT=
// 1.4638501
//1.3887301
//1.119186
//
//Examples
//To calculate peak2rms of rows of matrix:
//IN=[1 3 5;2 4 6;7 8 9]
//OUT=peak2rms(IN,2)
//The output is
//OUT= 1.3719887
//
//Examples
//To calculate peak magnitude to RMS value of sinusoid:
//
//t=0:0.6:9
//IN=cos(6*%pi*t);
//OUT= peak2rms(IN)
//The output is
//OUT= 1.3719887
//See also
//abs
//mean
// max
//sqrt
//isempty
//
//Authors
//Indira Askaukar
//
//Bibliography
//Matlab help document.
//Modified to accept char i/p
//MOdified function to match MATLAB input arguments
//Now for calculating the values of ratio of peak to RMS of columns of matrix use peak2rms(in,1)
//And for calculates the values of ratio of peak to RMS of rows of matrix. use peak2rms(in,2)
//Updated help comments accordingly
//MOdifications done by by Debdeep Dey
if(type(in)=10) then //if i/p is of type char convert it to its ascii value
in=ascii(in);
end
if argn(2)==1
//calculating the Root Mean Square value
a=abs(in)
a=a.^2
s=mean(a,"m")
rmsvalue=sqrt(s)
peak = max(abs(in),"m")
rmsq = rmsvalue
else
//Calculation of the RMS value
if orientation==1 then
orient='r';
else
orient='c';
end
a=abs(in)
a=a.^2
s=mean(a,orient)
rmsvalue=sqrt(s)
[peak,k] = max(abs(in),orient)
rmsq = rmsvalue
end
//Calculation of Ratio of peak to the Root Mean square value
if isempty(peak)
out = rmsq;
else
out = peak ./ rmsq;
end
endfunction
|
1393b3ef9ff6df87f26e7939627ae66bedbda2a0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /881/CH25/EX25.5/exa25_5.sce | 3bfc318c648b770460e48e3e53212413b58073bc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 325 | sce | exa25_5.sce | clc;
//Example 25.5
//Page No 1022
//solution:
B=10*10^6;
N=276*10^-16;
K=1.38*10^-23;
disp("Substituting into equation 25-12, we have");
N0=(N/B);
disp('W/Hz',N0,"N0 = ");
n0=10*log10(N0);
disp('dBW/Hz',n0,"N0 = ");
disp("Rearranging equation 25-12 and solving we get, ");
Te=(N0/K);
disp('K/cycle',Te,"Te = ");
|
127b594064b82a051e0e17755f46eeefcfa850a2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1466/CH24/EX24.1/24_1.sce | 4bb579504055f8c429274cb42de37778643fa52b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 575 | sce | 24_1.sce |
clc
//initialisation of variables
l=2//ft
d=1//ft
A2=0.01446//ft^2
dx=0.1667//ft
cf=0.01
v1=500//ft/sec
T1=600//R
T2=603//R
p1=40//lb/in^2
g=32.2//ft/sec^2
R=53.3
nT2=601.6//R
dv=-20//ft/sec//from curve plotting
//CALCULATIONS
A1=(l*d)/144
dA=A2-A1
mA=(A1+A2)/2
k=dA/mA
mP=2*(1+(2/24))/12
mPA=mP/mA
dT=T2-T1
v2=sqrt(v1*v1-12020*dT)
dv=v2-v1
mT=(T1+T2)/2
mv=(v1+v2)/2
nv2=v1+dv
W=144*p1*A1*v1/(R*T1)
p2=W*R*nT2/(144*A2*v2)
//RESULTS
printf ('\n weight of air flowing per second= %.2f lb/sec',W)
printf ('\n pressure= %.1f lb/in^2',p2-1.5)
|
9c64836ff003dc2e7b1f07f1948a71c2bbfe7ae5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2666/CH13/EX13.14/13_14.sce | 057566b15b682aad61a7b909da9b72fd6d785afa | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 559 | sce | 13_14.sce |
clc
//initialisation of variables
Co=25.5//percent
Co2=6.58//percent
H2=13.20//percent
H20=6.23//percent
N2=48.49*100//percent
CO2=17.70//percent
CO=0.17//percent
O2=0.0268//percent
n=0.7945//mol
e=0.2701//mol
h=0.1935//mol
w=0.21//mol
//CALCULATIONS
D=((CO2*100)+(CO*100))*0.0001//mol
F=((Co*100)+(Co2*100))*0.0001//mol
E=(D*100)/(F*100)//mol
e=N2*E*0.0001//mol
D1=n-e//mol
A1=D1/0.79//mol
A2=A1/E//mols
F1=h/w//cu ft air per cu ft fuel
T=A2/F1*100//percent
//RESULTS
printf('The percent of theoretical air equals=% f percent',T)
|
ad497b77b5dd8039a2ba5149bba0907dad0d98fe | 01ecab2f6eeeff384acae2c4861aa9ad1b3f6861 | /sci2blif/sci2blif_added_blocks/tgate2.sce | 9ab986519d6c2e4687adf69b3aeda9e164b8f297 | [] | 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 | 914 | sce | tgate2.sce | //**************************** TGATE ***********************************
if (blk_name.entries(bl) =='tgate2') then
for ss=1:scs_m.objs(bl).model.ipar(1)
mputl("# tgate "+string(bl)+" "+string(scs_m.objs(bl).model.ipar(2))+" "+string(ss),fd_w);
tgate_str=".subckt tgate2 in[0]=net"+string(blk(blk_objs(bl),2))+"_" + string(ss)+" in[1]=net" + string(blk(blk_objs(bl),3))+"_" + string(ss)+" out=net"+ string(blk(blk_objs(bl),2+numofip))+"_" + string(ss);
mputl(tgate_str,fd_w);
mputl(" ",fd_w);
if scs_m.objs(bl).model.rpar(scs_m.objs(bl).model.ipar(1)*(1-1)+1) == 1 then
plcvpr = %t;
plcloc=[plcloc;'net'+string(blk(blk_objs(bl),2+numofip))+'_'+string(ss),string(scs_m.objs(bl).model.rpar(scs_m.objs(bl).model.ipar(1)*(1-1)+1+2*ss-1))+' '+string(scs_m.objs(bl).model.rpar(scs_m.objs(bl).model.ipar(1)*(1-1)+1+2*ss))+' 0'];
end
end
end
|
3aeb7eefeba5bbb65139a1fd034eed814aa2ed74 | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/MX37.prev.tst | 7884639c1d4580c3cd447be9e5e8e55e2ecc1515 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | gfis/ramath | 498adfc7a6d353d4775b33020fdf992628e3fbff | b09b48639ddd4709ffb1c729e33f6a4b9ef676b5 | refs/heads/master | 2023-08-17T00:10:37.092379 | 2023-08-04T07:48:00 | 2023-08-04T07:48:00 | 30,116,803 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,616 | tst | MX37.prev.tst | chain 2, fact 1 [[-2,-2,0,1],[1,0,2,2],[0,1,-2,-2],[2,2,1,0]] [27,10,-24,-19] => [-93,-59,96,50] => [354,199,-351,-208] ?? [-1314,-764,1317,755]
chain 8, fact 1 [[-2,1,0,-2],[1,2,2,0],[0,-2,-2,1],[2,0,1,2]] [27,10,-24,-19] => [-6,-1,9,-8] => [27,10,-24,-19] => [-6,-1,9,-8] => [27,10,-24,-19] => [-6,-1,9,-8] => [27,10,-24,-19] => [-6,-1,9,-8] => [27,10,-24,-19]
chain 8, fact 1 [[-2,-2,0,1],[2,2,1,0],[0,1,-2,-2],[1,0,2,2]] [27,10,-24,-19] => [-93,50,96,-59] => [27,10,-24,-19] => [-93,50,96,-59] => [27,10,-24,-19] => [-93,50,96,-59] => [27,10,-24,-19] => [-93,50,96,-59] => [27,10,-24,-19]
chain 8, fact 1 [[0,-2,-2,1],[1,2,2,0],[-2,1,0,-2],[2,0,1,2]] [27,10,-24,-19] => [9,-1,-6,-8] => [6,-5,-3,-4] => [12,-10,-9,1] => [39,-26,-36,17] => [141,-85,-138,76] => [522,-305,-519,296] => [1944,-1126,-1941,1117] => [7251,-4190,-7248,4181]
chain 8, fact 1 [[0,1,-2,-2],[1,0,2,2],[-2,-2,0,1],[2,2,1,0]] [27,10,-24,-19] => [96,-59,-93,50] => [27,10,-24,-19] => [96,-59,-93,50] => [27,10,-24,-19] => [96,-59,-93,50] => [27,10,-24,-19] => [96,-59,-93,50] => [27,10,-24,-19]
chain 8, fact 1 [[0,-2,-2,1],[2,0,1,2],[-2,1,0,-2],[1,2,2,0]] [27,10,-24,-19] => [9,-8,-6,-1] => [27,10,-24,-19] => [9,-8,-6,-1] => [27,10,-24,-19] => [9,-8,-6,-1] => [27,10,-24,-19] => [9,-8,-6,-1] => [27,10,-24,-19]
chain 8, fact 1 [[0,1,-2,-2],[2,2,1,0],[-2,-2,0,1],[1,0,2,2]] [27,10,-24,-19] => [96,50,-93,-59] => [354,199,-351,-208] => [1317,755,-1314,-764] => [4911,2830,-4908,-2839] => [18324,10574,-18321,-10583] => [68382,39475,-68379,-39484] => [255201,147335,-255198,-147344] => [952419,549874,-952416,-549883]
elapsed time: nn s
|
951368c7723309b81f5e6a958a02573e7bf0801d | 449d555969bfd7befe906877abab098c6e63a0e8 | /70/CH3/EX3.1.1/3_1_1.sci | 45b6c7be8b7387d5becd51c918c2d77ebf6c9a5d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 184 | sci | 3_1_1.sci | //page 143
clear;
close;
clc;
x1=[2;2;-1];
disp(x1,'x1=');
x2=[-1;2;2];
disp(x2,'x2=');
disp(x1'*x2,'x1''*x2=');
disp('Therefore,X1 is orthogonal to x2 .Both have length of sqrt(14).') |
8cbd1a712c2753d8b78463338b40fb78465f1be9 | fe2124f7f26fcf8acf3fce5bb0a7cb2227c600ae | /Assignment1.sce | 66a5e37bc6599445370bad18622122d64a78b61f | [] | no_license | NYN1/LINEAR_ALGEBRA | 2896c0b18db3c0f497e3251fe65d09eca7907292 | b1394a207c0d09fa1d56e1fa86602f9a80f00f20 | refs/heads/master | 2021-01-16T02:10:49.442248 | 2020-10-26T09:48:17 | 2020-10-26T09:48:17 | 242,938,928 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,562 | sce | Assignment1.sce | disp("enter the matrix")
A = [input("value"), input("value"), input("value"); input("value"), input("value"), input("value"); input("value"), input("value"), input("value")];
disp("the matrix is:")
disp(A)
function Gauss(A)
n= 3;
for i=2:n
for j=2:n
A(i,j) = A(i,j) - A(1,j)*A(i,1)/A(1,1);
end
A(i,1) = 0;
end
for i=3:n
for j=3:n
A(i,j) = A(i,j) - A(2,j)*A(i,2)/A(2,2);
end
A(i,2) = 0;
end
disp("upper triangular matrix is")
disp(A)
disp(A(3,3), A(2,2), A(1,1), "the pivots are")
endfunction
function LU(A)
U = A;
m = det(U(1,1));
n = det(U(2,1));
a = n/m;
U(2,:) = U(2,:) - U(1,:)/(m/n);
n = det(U(3,1));
b = n/m;
U(3,:) = U(3,:) - U(1,:)/(m/n);
m = det(U(2,2));
n = det(U(3,2));
c = n/m;
U(3,:) = U(3,:) - U(2,:)/(m/n);
disp(U, "the upper triangular matrix is:")
L = [1,0,0;a,1,0;b,c,1];
disp(L, "the lower triangular matrix is:")
endfunction
function Inverse(A)
n = 3;
Aug = [A, eye(n,n)]
for j=1:n-1
for i = j+1:n
Aug(i,j:2*n) = Aug(i,j:2*n) - Aug(i,j)/Aug(j,j)*Aug(j,j:2*n);
end
end
for j=n: -1:2
Aug(1:j-1,:) = Aug(1:j-1,:) - Aug(1:j-1,j)/Aug(j,j)*Aug(j,:);
end
for j = 1:n
Aug(j,:) = Aug(j, :)/ Aug(j,j);
end
I = Aug(:,n+1:2*n);
disp(I, "the inverse of the matrix is:")
endfunction
|
b9a8cb1660bb408057283b67a857669f44c3390b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3871/CH6/EX6.9/Ex6_9.sce | 1c7e59fa02bd620a66a2ac868799ff2fa7c061e8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 965 | sce | Ex6_9.sce | //===========================================================================
//chapter 6 example 9
clc;clear all;
//variable declaration
Rm = 25; //instrument resistance in Ω
V = 25*10^-3; //full-scale deflection voltage in V
V1 = 10; //voltage to be measured in V
t = 10;
alphac = 0.004;
alpham = 0.00015;
//calculations
Im = V/(Rm); //full-scale deflection in mA
R = (V1/(Im))-Rm; //external resistance in Ω
Rt = Rm+R;
Rm1 = Rm*(1+(alphac*t)); //instrument resistance with 10°C rise in temperature in Ω
R1 = R*(1+(alpham*t)); //series resistance with 10°C rise in temperature in Ω
R2 = Rm1+R1; //total resistance in the voltmeter circuit in Ω
V2 = V1*(Rt/(R2)); //reading of voltmeter at 10°C rise in temerature in V
er = ((V2-V1)/(V1))*100; //percentage error in %
//reult
mprintf('percentage error = %3.2f percentage",er);
|
2c573b698e1098a41f99ea92c44564bb52eda565 | 8b2aa0460ec6250a29ed3fb32790e0211478b29a | /src/teste.sce | 0f789dea71fd9c56eebe2e3fde22fe0f650c67f5 | [] | no_license | samverneck/RealTimeMonitor | 41f37735570aa91cab7765f0800547987f0eb72c | f2ea3d70df9fbeed651b0f0b367b09b9fa84b6fa | refs/heads/master | 2020-12-02T18:09:27.752225 | 2017-06-21T19:52:00 | 2017-06-21T19:52:00 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 699 | sce | teste.sce | clc
com =-1;
error_number = 999;
while (error_number <> 0)
com = com+1;
try
%serial_port=openserial(com,"9600,n,8,1");
catch
disp(['Não pode ler serial'])
end
[error_message,error_number]=lasterror(%t)
disp("ERROR")
disp(error_message)
disp(error_number)
if com == 10 then
break
end
end
disp("SUCESSO")
disp("COM"+string(com))
//closeserial(%serial_port);
//com = 3;
//try
// %serial_port=openserial(com,"9600,n,8,1");
//catch
// disp(['Não pode ler serial'])
//end
//[error_message,error_number]=lasterror(%t)
//disp("ERROR")
//disp(error_message)
//disp(error_number)
//disp(error_number==0)
//closeserial(%serial_port);
|
56b6a436fd50f2a3d81ae76302a706aa223f225c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2534/CH3/EX3.8/Ex3_8.sce | a2e0f9cea11f2cd411e644f800164a5d3ac944cf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 277 | sce | Ex3_8.sce | //Ex3_8
clc
Vpp = 4.2*10*10^-3//peak to peak voltage of sinusoidal signal //notation not used in textbook
Vm = Vpp/2//maximum positive voltage
Vrms = Vm/(2^.5)//root mean square value of voltage
disp("Vm = "+string(Vm)+"V")
disp("Vrms = Vm/(2^.5) = "+string(Vrms)+"V")
|
7a031d1f616e2f4ba9455fddeed9cac944fe9409 | 7e147da98cfbca04072f9e02934170836ab04c97 | /SCILAB_ASSIGNMENT/UNIT_1/LU_Decomposition.sce | 0b47f76ec86091aa22a15f921494a48dea479a76 | [] | no_license | Srujan-KN/LINEAR-ALGEBRA | 4256a8216edb3d7c6804a2c25fd73bfc0ed31a15 | a0975ae0884bd21f0694310c1fd0d018d3dda7dd | refs/heads/master | 2021-01-01T03:04:46.947038 | 2020-04-08T19:11:12 | 2020-04-08T19:11:12 | 239,154,101 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 770 | sce | LU_Decomposition.sce | clc;clear;
A=[0 0 0; 0 0 0 ; 0 0 0]
A(1,1)=input("Enter a11:")
A(1,2)=input("Enter a12:")
A(1,3)=input("Enter a13:")
A(2,1)=input("Enter a21:")
A(2,2)=input("Enter a22:")
A(2,3)=input("Enter a23:")
A(3,1)=input("Enter a31:")
A(3,2)=input("Enter a32:")
A(3,3)=input("Enter a33:")
function[U,L]=LU_decomposition(A)
U=A;
disp (A, 'The given matrix is A=')
m = det (U (1,1) ) ;
n = det (U (2,1));
a=n/m;
U (2,:) = U (2,:)-U (1 ,:)/(m/n);
n = det (U (3 ,1) ) ;
b = n /m ;
U (3 ,:) = U (3 ,:) - U (1,: ) / ( m / n ) ;
m = det (U (2,2));
n = det (U (3,2));
c = n /m ;
U (3,:) = U (3,:)-U (2.,:)/(m/n);
disp (U, 'The upper triangular matrix is U =');
L = [1,0 ,0; a ,1,0; b,c, 1];
disp(L, 'The lower triangular matrix is L=');
endfunction
|
3af099a1c77bd9830a97fda383344edc4c6d1e70 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1640/CH5/EX5.23/5_23.sce | 2c68246e8da89ff36aaaed7c8c3c21c0c8c7f06b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 298 | sce | 5_23.sce | clc
//initialisation of variables
p= 60 //lb/in^2
l= 300 //ft
D= 2.5 //in
d= 7/8 //in
f= 0.018
g= 32.2 //ft/sec^2
w= 62.4 //lb/ft^3
//CALCULATIONS
r= (D/d)^4
V= sqrt(2*g*144*p/(w*(r+0.5+(4*f*l/(D/12)))))
Q= V*(%pi*(D/12)^2)/4
//RESULTS
printf ('Volume of flow = %.3f cu ft/sec ',Q)
|
db23354002d4eb4f359321c9065795fa5235fd04 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1445/CH1/EX1.27/Ex1_27.sce | 847f14639d54e99faa887a6ff77903a148970212 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 679 | sce | Ex1_27.sce | //CHAPTER 1- D.C. CIRCUIT ANALYSIS AND NETWORK THEOREMS
//Example 27
clc;
disp("CHAPTER 1");
disp("EXAMPLE 27");
//VARIABLE INITIALIZATION
I1=5; //current source in Amperes
vb=100; //voltage source in Volts
r1=20; //in Ohms
r2=10; //in Ohms
r3=20; //in Ohms
//SOLUTION
va=I1*r1; //by applying node analysis at point 'a'
vth=va-vb; //Thevenin voltage vth=vab
rth=r1+((r3*0)/(r3+0)); //Thevenin resistance
I=vth/(rth+r2);
disp(sprintf("By Thevenin Theorem, the value of I is %d A",I));
//END
|
4afd7ab823ae170a8665fde599a5454b284cb9ff | 449d555969bfd7befe906877abab098c6e63a0e8 | /3669/CH14/EX14.11/11.sce | 7ce285f6e75035a905e84f7243abdc0ed40b7d61 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 269 | sce | 11.sce |
//Variable declaration
D5=0.3; //diameter of 5th ring(cm)
D15=0.62; //diameter of 15th ring(cm)
//Calculation
D_25=2*(D15**2)-(D5**2);
D25=sqrt(D_25); //diameter of 25th ring(cm)
//Result
printf('diameter of 25th ring is %0.3f cm \n',(D25)) |
a73e207a9820bb4a817f758f6e145c354fc9feab | 449d555969bfd7befe906877abab098c6e63a0e8 | /3856/CH6/EX6.6/Ex6_6.sce | cc9d01b21d7df8c893720719609c18c539e91e31 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 517 | sce | Ex6_6.sce | //To calculate the Molar Enthalpy of Vapourisation
//Example 6.6
clc;
clear;
T=[20,30,40,50,60,70];
p=[17.54,31.82,55.32,92.51,149.38,233.7];
for i=1:6
x(i)=1/(T(i)+273);
end
for i=1:6
y(i)=log(p(i));
end
plot(x,y);
xlabel("K/T", "fontsize", 2);//Putting the x-axis as K/T
ylabel("ln(p)", "fontsize", 2);//Putting the y-axis as ln(Kp)
m=-(y(2)-y(1))/(x(2)-x(1));
R=8.314;
delH=R*m/1000;
printf("Molar Enthalpy of Vapourization of Water = %.1f kJ mol^-1",delH);
|
07d9f3bf7e9cbf3c4f6965220b2757f7103a60f7 | c49a028f382c3baddcd641c1972dd72bb60eaadc | /exp_5_1.sce | 18faf9f566b9edce9e998f4b891faa234aeffa91 | [] | no_license | BhautikDonga/SCILAB | 484fcc9ac58885a4ccc549ccc85e2a4a507d5d0a | b330ca555276eb57c1e88ffc745ecfa3b8ebfa0c | refs/heads/master | 2020-04-07T15:48:23.036273 | 2018-12-05T01:27:34 | 2018-12-05T01:27:34 | 158,501,669 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 344 | sce | exp_5_1.sce | str = input("Enter which types of graph you want: ");
n_ind= input("Enter starting index: ");
p_ind= input("Enter ending index: ");
de_adv= input("Enter delay or advance you want: (+ve for delay and -ve for advance ");
exec("graphs.sce");
[n,Xn]= graphs(str,n_ind,p_ind,de_adv);
figure(1);
plot2d3(n,Xn);
xlabel("n");
ylabel("Xn");
|
c7a4db731b0509c2b5c58c4425d5093e624cbbec | 449d555969bfd7befe906877abab098c6e63a0e8 | /3885/CH5/EX5.26/Ex5_26.sci | d8e13f3b9be1f491321d0a2619863a985821b011 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 497 | sci | Ex5_26.sci | //control systems by Nagoor Kani A
//Edition 3
//Year of publication 2015
//Scilab version 6.0.0
//operating systems windows 10
// Example 5.26
clc;
clear;
s=poly(0,'s')//defines s as poly nomial variable
h=syslin('c',(s+15)/(s*(s+1)*(s+5)))//the given transfer function assigned to variable h assume K=1
scf()
evans(h)
//the characterstic equation is (s^3+6s^2+5s)+Ks+15K
//put s=jw and equating real and imaginary parts to calculate K
K=30/(-4.5)
disp(K,'yhe value of K is;')
|
aa475073708bd95d3e1322d3a013e8385f69bdbc | cf9492ae71b5e6d3cac882f982c31e137a27d049 | /sound-diff.sce | c736fcbc97a6301c3e257c21d3b9e432436103ec | [
"Apache-2.0"
] | permissive | moueza/scilab-sound-diff | 589e0b4c1f25eff467b157a2d40e77b2185a0e65 | 97de0c4b0e96c59e3cd6d66abfc366bfcc92a937 | refs/heads/main | 2023-05-27T02:38:28.864728 | 2021-06-12T22:49:40 | 2021-06-12T22:49:40 | 376,297,889 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 376 | sce | sound-diff.sce | y = loadwave("SCI/modules/sound/demos/chimes.wav");
//playsnd(y) // Play it once at the default 22050 Hz sampling rate
//sleep(5)
//playsnd(y, 3e4) // Play it once at 30 kHz sampling rate
//sleep(5)
//playsnd(y,, 3) // Play it 3 times at the default sampling rate
//sleep(5)
playsnd(y, 44100, 3) // Play it 3 times at 44.1 kHZ sampling rate
|
11cff43aa190d447a8115b454b9a7a7ba59420e8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1067/CH44/EX44.07/44_07.sce | 33340f06a98a8bb7b10574a753760fdd01476586 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 314 | sce | 44_07.sce | clear;
clc;
pm=500;
d=8;
pd=pm*sind(d);
pd=round(pd*10)/10;
mprintf("the power developed=%fMW",pd);
d=d*%pi/180;
v=asind(cos(3.14-d))+31.9;
p=pm*sind(-v);
p=round(p);
pz=p-pd;
mprintf("permissible sudden action loading without loss of transient stability with initial rotor angle 8degree = %fMW",pz);
|
c432d078a345d5e7b341b47577a5c7fbf4d3532a | 37f57796881df6af34e54643be20364e6dfbc3ec | /medida.sci | 234d4289249e0c06f9794627e5531ba4a7a44dc7 | [] | no_license | rodrigopff/quantica | 87a9bf84010c7422c5749fc6ea5cffca141ee819 | b3502f08c3a403507f9c13e744030fd80356b216 | refs/heads/master | 2022-01-01T14:01:28.149054 | 2021-12-29T13:56:34 | 2021-12-29T13:56:34 | 10,487,435 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,947 | sci | medida.sci | //***************************************************************
//Calcula a formula de medida de um q-bit num estado emaranhado
//***************************************************************
//######################
//SEÇÃO DE CONSTANTES #
//######################
//Matrizes de Pauli
omegaX= [0 1;1 0]
omegaY= [0 -%i;%i 0]
omegaZ= [1 0;0 -1]
//Mapa de Matrizes Pauli indexada pela posição de 1 a 3
listaMatrizesPauli=list(omegaX,omegaY,omegaZ)
//###############################
// SEÇÃO DE FUNÇÕES DE CÁLCULO #
//###############################
//Função que extrai a raiz quadrada de uma matriz de um estado quântico emaranhado
//Criar um tratamento para tratar a diagonalização de matrizes que é pré-requisito para que uma Matriz possua raiz quandrada.
function [raizMatriz] = raizRO (roab)
raizMatriz=sqrtm(roab)
endfunction
//Função que calcula o produto tensorial entre os estados sigma_xyz_A e a matriz identidade Ib
//function [produto_Tensorial] = calculaTensorial(sigmaXYZ_A, Ib)
function [produtoTensorial] = calculaTensorial(listaMatrizesTensorial)
//produto_Tensorial
produtoTensorial=1 //elemento neutro da multiplicação como escalar
for i= 1:length(listaMatrizesTensorial)
produtoTensorial=produtoTensorial.*.listaMatrizesTensorial(i)
end
endfunction
//Função que aplica sigma-Pauli-XYZ ao primeiro par do estado quântico
function [sigmaXYZ_A] = aplicaPauliA (pauliMatriz,estadoQuantico)
sigmaXYZ_A = pauliMatriz*estadoQuantico
endfunction
//Função que multiplica N matrizes
function [produtoMatriz]= produtoMatrizes (listaMatrizesProduto)
produtoMatriz=1 //elemento neutro da multiplicação como escalar
for i= 1:length(listaMatrizesProduto)
produtoMatriz=produtoMatriz*listaMatrizesProduto(i)
end
endfunction
//Função que calcula a matriz Identidade de um vetor de estado quantico
function [Id] = Ident(vetorEstado)
Id=eye(length(vetorEstado), length(vetorEstado))
endfunction
//Função que itera sobre as aplicações de Pauli com x=1,y=2 e z=3
//function () =
//endfunction
//Função que calcula a matriz Wab
// parametro de entrada:
// matriz |phi><phi| , estado quantico do primeiro q-bit, estado quantico do segundo q-bit
// parametro
//Caucula a matrizW
function [listaResultado] = calculaMatrizW (roab,estadoQuanticoA,estadoQuanticoB)
//Indexar os indices i,j correspondentes às operações x,y,z
//Serão utilizado dois dois for's aninhados. Talvez isto possa ser melhorado realizando uma refatoração de código
listaResultados=[]
//Itera sobre i variando de x a z (de 1 a 3). Verifica se esta variação pode ser maior que 3 para outras medidas para parametrizar os laços abaixo
for i=1:3
for j=1:3
matrizW=trace(produtoMatrizes(list(raizRO(roab),calculaTensorial(list(listaMatrizesPauli(i),Ident(estadoQuanticoB))),raizRO(roab),calculaTensorial(list(listaMatrizesPauli(j),Ident(estadoQuanticoB))))))
listaResultado(i,j)=matrizW
//matrizW=trace(produtoMatrizes(list(raizRO(roab),calculaTensorial(list(aplicaPauliA(listaMatrizesPauli(i),estadoQuanticoA),Ident(estadoQuanticoB))),raizRO(roab),calculaTensorial(list(aplicaPauliA(listaMatrizesPauli(j),estadoQuanticoA),Ident(estadoQuanticoB))))))
end
end
//trace (ProdutoMatrizes(raizRO(roab),calculaTensorial(,Ident(estadoQuanticoB)),raizRO(roab),calculaTensorial(,Ident(estadoQuanticoB))))
//trace(raizRO(roab)*calculaTensorial(,Ident(estadoQuanticoB))*raizRO(roab)*calculaTensorial(,Ident(estadoQuanticoB)))
endfunction
//function[tes1] = teste1 ()
// tes1=teste2('Chamando de teste1 ......')
//endfunction
//function[tes2] = teste2 (b)
// tes2=b
//endfunction
//#######################################
// SEÇÃO DE FUNÇÕES DE ENTRADA E SAÍDA #
//#######################################
|
5b95443d479d94cb867376602ff3a606067fbed3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3137/CH16/EX16.61/Ex16_61.sce | 5f83c79947ab261b7632db0bfa6794a3f51b9d9f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 249 | sce | Ex16_61.sce | //Initilization of variables
r=15/12 //ft
W=600 //lb
theta=25 //degrees
//calculations
ax=(r*W*sind(theta))/((1/r)*14.5+r*18.6) //ft/s^2
F=(W*sind(theta))-18.6*9.09 //lb
//Result
clc
printf('The solution is F=%f lb and ax=%f ft/s^2',F,ax)
|
b75fec7212b0ac030581d30b75260ec79da5f301 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3850/CH37/EX37.1/Ex37_1.sce | 5aa9dfa6a58f976d4f689c7cea40e87ce348661d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 416 | sce | Ex37_1.sce |
//To Calculate the Intensity of Magnetization of Bar Magnet
//Example 37.1
clear;
clc;
m=6.6*10^-3;//Mass of bar magnet (made of steel) in kg
rho=7.9*10^3;//Density of steel in kg/m^3
M=2.5;//Magnetic Moment of Bar Magnet in A-m^2
V=m/rho;//Volume of bar magnet in m^3
I=M/V;//Intensity of Magnetization in A/m
printf("Intensity of magnetization of bar magnet = %.1f*10^6 A/m",I*10^-6);
|
b02b610d0679abbd3981f68e7e1e1c25fb20d92b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2453/CH3/EX3.8/3_8.sce | a793ffc763125030fa6fae99195452fc221538fc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 3_8.sce | //To calculate the wavelength
m = 9.1*10^-31; //mass of electron, kg
h = 6.626*10^-34; //planck's constant
e = 1.6*10^-19;
E = 2000; //energy, eV
E = E*e; //energy, J
lamda = h/sqrt(2*m*E); //wavelength, m
lamda_nm = lamda*10^9; //velength, nm
printf("wavelength is %5.4f nm",lamda_nm);
|
981efc34729eab83ce816f98706d7a3500124f5f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3710/CH5/EX5.4/Ex5_4.sce | dadcd54b7d873cfe6d3eb1a73c6bd07b1f0501fd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex5_4.sce | //Example 5.4, Page Number 205
//The Function fpround(dependency) is used to round a floating point number x to n decimal places
clc;
n2=3.6 //Refractive Index for GaAs
n1=1 //Refractive Index for Air
//From Fresnels Equation
R=((n2-n1)/(n2+n1))**2
R=fpround(R,2)
mprintf("The Reflectance at a GaAs/Air Interface is %0.2f",R);
|
cfff1df53daf64748d7a093b5d241fc97cb97e63 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1979/CH6/EX6.6/Ex6_6.sce | 650b5309705e4e6c62c8172ddd506b7ccbfd55f1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 787 | sce | Ex6_6.sce | //Chapter-6, Example 6.6, Page 239
//=============================================================================
clc;
//Input parameters
p1=0.5;//reflection coefficient at port 1
p2=0.6;//reflection coefficient at port 2
p3=1;//reflection coefficient at port 3
p4=0.8;//reflection coefficient at port 4
//[S]=[0,0,0.707,0.707;0,0,0.5,-0.707;0.707,0.707,0,0;-0.707,0.707,0,0];//S matrix of magic Tee
//solving for b1,b2,b3,b4 we get it as
//calculations
b1=0.6566;
b2=0.7576;
b3=0.6536;
b4=0.0893;
P1=(b1)^2;//power at port1 in watts
disp(P1);
P2=(b2)^2;//power at port2 in watts
disp(P2);
P3=(b3)^2;//power at port3 in watts
disp(P3);
P4=(b4)^2;//power at port4 in watts
disp(P4);
//=================================END OF PROGRAM==============================
|
cc0a6b4a5e2cb7a104a7905a23f4f290ae163cfb | fdc5047b7bf8122bad1e621df236b0481226c36e | /exemplos/xls-link-0.5.0-src/tests/unit_tests/xls_Quit.tst | 2bc9aec3f549cb3b52576e3c73c6b798bb73f7aa | [] | no_license | jpbevila/virtualHartSci | aea3c6ba23d054670eb193f441ea7de982b531cc | a3f5be6041d230bd9f0fd67e5d7efa71f41cfca5 | refs/heads/main | 2023-07-26T23:05:28.044194 | 2021-09-09T11:50:59 | 2021-09-09T11:50:59 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 587 | tst | xls_Quit.tst | // ====================================================================
// Allan CORNET
// DIGITEO 2008 - 2010
// ====================================================================
// <-- CLI SHELL MODE -->
// ====================================================================
ierr = execstr('xls_Quit(1)','errcatch');
assert_checkfalse(ierr == 0);
r = xls_NewExcel();
assert_checktrue(r);
r = xls_AddWorkbook();
assert_checktrue(r);
xls_SetWorksheet(1);
r = xls_Close();
assert_checktrue(r);
r = xls_Quit();
assert_checktrue(r);
r = xls_Quit();
assert_checkfalse(ierr == 0);
|
8677b8c3573e29b2ad5bbf4b21aa88f0827f0d30 | 449d555969bfd7befe906877abab098c6e63a0e8 | /61/CH2/EX2.4/ex2_4.sce | 1ad0cb0f697eb1b408ec8817139c50658b7d00b0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 187 | sce | ex2_4.sce | //Ex2.4
//Average value of output of full wave rectifier
V_p=15; //Peak voltage
V_avg=(2*V_p)/%pi;
disp(V_avg,'Average value of output of full wave rectifier in volts') //Result |
1f030183ee51a0b45e90455015a3e66684893f87 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2459/CH13/EX13.8/Ex13_8.sce | 719e13db251e74d73b1ea9d74f6948e19d524256 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 565 | sce | Ex13_8.sce | //chapter13
//example13.8
//page282
del_Ib=10d-3 // mA
del_Ic=1 // mA
del_Vbe=0.02 // V
Rc=5 // kilo ohm
Rl=10 // kilo ohm
Ai=del_Ic/del_Ib
Rin=del_Vbe/del_Ib
R_AC=Rc*Rl/(Rc+Rl)
Av=Ai*R_AC/Rin
Ap=Av*Ai
printf("current gain = %.3f \n",Ai)
printf("input impedence = %.3f kilo ohm \n",Rin)
printf("ac load = %.3f kilo ohm \n",R_AC)
printf("voltage gain = %.3f \n",Av)
printf("power gain = %.3f \n",Ap)
// the accurate answer for voltage gain = 166.667 and for power gain = 16666.667 but in book they are given as 165 and 16500 respectively.
|
aa800aef72bc526160fd27e3b964a46782e8d120 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1394/CH6/EX6.2.1/Ex6_2_1.sce | b887bda8006932e89d0fd9d4a7ed8515881e5899 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex6_2_1.sce |
clc
//initialization of variables
pKa = 4.756
DH = 9.31*10^-5 // cm^2/sec
DCH3COO = 1.09*10^-5 //cm^2/sec
D2 = 1.80*10^-5 //cm^2/sec
Ct = 10 // moles/lit
//Calculations
K = 10^pKa // litres/mol
D1 = 2/((1/DH)+(1/DCH3COO))
D = 2/((1/D1)+(1/D2))*10^5// Diffusion co efficient in x*10^-5 cm^2/sec
//Results
printf("The diffusion coefficient of acetic acid in water is %.1f x10^-5 cm^2/sec",D)
|
da187285ca9b285256351b061a5fc25b7ee79799 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2126/CH5/EX5.9/9.sce | 2acface67c4e4777bfb95d6d01ccb2ebc1c8531a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,367 | sce | 9.sce | clc
clear
//Input data
Mx=3 //Mach number before the shock
Tx=27+273 //Temperature before the shock in K
Px=1 //Pressure before the shock in bar
k=1.4 //Adiabatic constant
R=287 //Specific gas constant in J/kg-K
//Calculation
My=0.475 //Mach number after the shock from gas tables @Mx
p1=10.333 //Static pressure ratio after and before the shock from gas tables @My
Py=p1*Px //Static pressure after shock in bar
t1=2.679 //Temperature ratio after and before the shock from gas tables @My
Ty=Tx*t1 //Temperature ratio after the shock in K
p2=12.061 //Stagnation pressure after shock to Static pressure before shock from gas tables @My
Poy=p2*Px //Stagnation pressure after shock in bar
p3=0.328 //Stagnation pressure ratio after and before the shock from gas tables @My
Pox=Poy/p3 //Stagnation pressure before shock in kPa
ay=sqrt(k*R*Ty) //Velocity of sound after the shock in m/s
Cy=ay*My //Velocity of air after the shock in m/s
ds=R*log(1/p3) //Change in entropy in J/kg-K
e=(Py-Px)/Px //Strength of shock
//Output
printf('(I)Downstream of the shock:\n (A)Pressure is %3.3f bar\n (B)Temperature is %3.1f K\n (C)Gas velocity is %3.2f m/s\n (D)Mach number is %3.3f\n (II)Total head pressure ratio is %3.3f\n (III)Entropy change across the shock is %3.3f J/kg-K\n (IV)Strength of the shock is %3.3f',Py,Ty,Cy,My,p3,ds,e)
|
c06bf6d2f08fb6c15911b9c1b97b1ef02f02a386 | a6e16f8b4e3e9dfb7a8b6f323b7e35fb82537222 | /Pascal/Matthias Berger/PROFILER/TESTFILE/KOMPOSER.TST | a2290e94bc8c47a6e012e6286b230ef82e594706 | [] | no_license | pjones1063/Atari_ST_Sources | 59cd4af5968d20eb3bf16836fc460f018aa05e7c | fe7d2d16d3919274547efbd007f5e0ec1557396d | refs/heads/master | 2020-09-04T20:21:44.756895 | 2019-10-30T12:54:05 | 2019-10-30T12:54:05 | 219,878,695 | 2 | 0 | null | 2019-11-06T00:40:39 | 2019-11-06T00:40:39 | null | WINDOWS-1250 | Scilab | false | false | 11,658 | tst | KOMPOSER.TST | { Profiler-Testversion zu B:\DEMOS.PAS\KOMPOSER.PAS }
CONST ___ = 80;
___2 =4;
VAR __ : INTEGER ;
VAR _ : ARRAY [1..___] OF REAL ;
VAR _2 : ARRAY [1..___2] OF REAL ;
VAR _h : STRING;
VAR _f : TEXT;
{ 7. Bundeswettbewerb Informatik 1988/1989 }
{ 1. Runde,Aufgabe 1 ; Autor M.Berger }
{ Hinweise am Ende des Files beachten ! }
CONST MAX_LAENGE_MOTIV=20;
MAX_ANZAHL_TOENE=10;
MAX_ANZAHL_SCHRITTE=20;
TYPE ABBILDUNGSREGEL_DEF=RECORD
ALT:CHAR;
NEU:CHAR;
END;
WANDLUNGS_ART=(THEMA,VARIATION);
VAR SATZFORM:ARRAY[1..MAX_ANZAHL_SCHRITTE]OF
WANDLUNGS_ART;
ANZAHL_SCHRITTE:INTEGER;
ABBILDUNGSREGEL:ARRAY[1..MAX_ANZAHL_TOENE]
OF ABBILDUNGSREGEL_DEF;
ANZAHL_TOENE:INTEGER;
MOTIV:ARRAY[1..MAX_LAENGE_MOTIV]OF
CHAR;
MOTIVLAENGE:INTEGER;
PRESTOFAKTOR:REAL;
ANZAHL_SAETZE:INTEGER;
TONDAUER:REAL;
I:INTEGER;
PROCEDURE EINGABE;
VAR I:INTEGER;
X:CHAR;
BEGIN _[25] := _[25] + 1 ; _2[1] := _2[1] + 1 ;
CLRSCR ; WRITELN('Computer-Composition (bwINF 7 [88/89];Aufgabe 1)') ;
WRITELN ; WRITELN ;
ANZAHL_TOENE:=0; _[6]:=_[6]+1;
IF ANZAHL_TOENE<_[7] THEN _[7]:=ANZAHL_TOENE;
IF ANZAHL_TOENE>_[8] THEN _[8]:=ANZAHL_TOENE; ;
REPEAT _[31] := _[31] + 1 ;
ANZAHL_TOENE:=ANZAHL_TOENE+1; _[6]:=_[6]+1;
IF ANZAHL_TOENE<_[7] THEN _[7]:=ANZAHL_TOENE;
IF ANZAHL_TOENE>_[8] THEN _[8]:=ANZAHL_TOENE; ;
WRITE(' Bitte Ton angeben : ') ;
READ(KBD,ABBILDUNGSREGEL[ANZAHL_TOENE].ALT); _[6]:=_[6]+1;
IF ANZAHL_TOENE<_[7] THEN _[7]:=ANZAHL_TOENE;
IF ANZAHL_TOENE>_[8] THEN _[8]:=ANZAHL_TOENE; _[5]:=_[5]+1; ;
WRITE(ABBILDUNGSREGEL[ANZAHL_TOENE].ALT); _[6]:=_[6]+1;
IF ANZAHL_TOENE<_[7] THEN _[7]:=ANZAHL_TOENE;
IF ANZAHL_TOENE>_[8] THEN _[8]:=ANZAHL_TOENE; _[5]:=_[5]+1; ;
IF ABBILDUNGSREGEL[ANZAHL_TOENE].ALT<>' ' THEN BEGIN _[32] := _[32] + 1 ;
WRITE(' ; Wird abgebildet auf : ') ;
READ(KBD,ABBILDUNGSREGEL[ANZAHL_TOENE].NEU); _[6]:=_[6]+1;
IF ANZAHL_TOENE<_[7] THEN _[7]:=ANZAHL_TOENE;
IF ANZAHL_TOENE>_[8] THEN _[8]:=ANZAHL_TOENE; _[5]:=_[5]+1; ;
WRITE(ABBILDUNGSREGEL[ANZAHL_TOENE].NEU); _[6]:=_[6]+1;
IF ANZAHL_TOENE<_[7] THEN _[7]:=ANZAHL_TOENE;
IF ANZAHL_TOENE>_[8] THEN _[8]:=ANZAHL_TOENE; _[5]:=_[5]+1; ;
END ;
WRITELN; _[6]:=_[6]+1; IF ANZAHL_TOENE<_[7] THEN _[7]:=ANZAHL_TOENE;
IF ANZAHL_TOENE>_[8] THEN _[8]:=ANZAHL_TOENE; _[5]:=_[5]+1; ;
UNTIL(ANZAHL_TOENE=MAX_ANZAHL_TOENE)OR
(ABBILDUNGSREGEL[ANZAHL_TOENE].ALT=' '); _[5]:=_[5]+1; _[6]:=_[6]+1;
IF ANZAHL_TOENE<_[7] THEN _[7]:=ANZAHL_TOENE;
IF ANZAHL_TOENE>_[8] THEN _[8]:=ANZAHL_TOENE; ;
ANZAHL_TOENE:=ANZAHL_TOENE-1; _[6]:=_[6]+1;
IF ANZAHL_TOENE<_[7] THEN _[7]:=ANZAHL_TOENE;
IF ANZAHL_TOENE>_[8] THEN _[8]:=ANZAHL_TOENE; ;
WRITELN ;
MOTIVLAENGE:=0; _[10]:=_[10]+1;
IF MOTIVLAENGE<_[11] THEN _[11]:=MOTIVLAENGE;
IF MOTIVLAENGE>_[12] THEN _[12]:=MOTIVLAENGE; ;
REPEAT _[33] := _[33] + 1 ;
MOTIVLAENGE:=MOTIVLAENGE+1; _[10]:=_[10]+1;
IF MOTIVLAENGE<_[11] THEN _[11]:=MOTIVLAENGE;
IF MOTIVLAENGE>_[12] THEN _[12]:=MOTIVLAENGE; ;
WRITE(' Bitte Ton des Themas angeben : ') ;
READ(KBD,MOTIV[MOTIVLAENGE]); _[10]:=_[10]+1;
IF MOTIVLAENGE<_[11] THEN _[11]:=MOTIVLAENGE;
IF MOTIVLAENGE>_[12] THEN _[12]:=MOTIVLAENGE; _[9]:=_[9]+1; ; WRITELN(
MOTIV[MOTIVLAENGE]); _[10]:=_[10]+1;
IF MOTIVLAENGE<_[11] THEN _[11]:=MOTIVLAENGE;
IF MOTIVLAENGE>_[12] THEN _[12]:=MOTIVLAENGE; _[9]:=_[9]+1; ;
UNTIL(MOTIV[MOTIVLAENGE]=' ')OR(MOTIVLAENGE>MAX_LAENGE_MOTIV);
_[10]:=_[10]+1; IF MOTIVLAENGE<_[11] THEN _[11]:=MOTIVLAENGE;
IF MOTIVLAENGE>_[12] THEN _[12]:=MOTIVLAENGE; _[9]:=_[9]+1; ;
MOTIVLAENGE:=MOTIVLAENGE-1; _[10]:=_[10]+1;
IF MOTIVLAENGE<_[11] THEN _[11]:=MOTIVLAENGE;
IF MOTIVLAENGE>_[12] THEN _[12]:=MOTIVLAENGE; ;
WRITELN ;
ANZAHL_SCHRITTE:=0; _[2]:=_[2]+1;
IF ANZAHL_SCHRITTE<_[3] THEN _[3]:=ANZAHL_SCHRITTE;
IF ANZAHL_SCHRITTE>_[4] THEN _[4]:=ANZAHL_SCHRITTE; ;
REPEAT _[34] := _[34] + 1 ;
ANZAHL_SCHRITTE:=ANZAHL_SCHRITTE+1; _[2]:=_[2]+1;
IF ANZAHL_SCHRITTE<_[3] THEN _[3]:=ANZAHL_SCHRITTE;
IF ANZAHL_SCHRITTE>_[4] THEN _[4]:=ANZAHL_SCHRITTE; ;
WRITE(' Soll Thema (u)nver„ndert bleiben oder (v)ariiert werden ') ;
READ(KBD,X); _[30]:=_[30]+1; ;
WRITELN(X); _[30]:=_[30]+1; ;
IF UPCASE(X)='V' THEN BEGIN _[35] := _[35] + 1 ;
SATZFORM[ANZAHL_SCHRITTE]:=VARIATION; _[2]:=_[2]+1;
IF ANZAHL_SCHRITTE<_[3] THEN _[3]:=ANZAHL_SCHRITTE;
IF ANZAHL_SCHRITTE>_[4] THEN _[4]:=ANZAHL_SCHRITTE; _[1]:=_[1]+1; END ;
IF UPCASE(X)='U' THEN BEGIN _[36] := _[36] + 1 ;
SATZFORM[ANZAHL_SCHRITTE]:=THEMA; _[2]:=_[2]+1;
IF ANZAHL_SCHRITTE<_[3] THEN _[3]:=ANZAHL_SCHRITTE;
IF ANZAHL_SCHRITTE>_[4] THEN _[4]:=ANZAHL_SCHRITTE; _[1]:=_[1]+1; END ;
; _[30]:=_[30]+1; UNTIL((UPCASE(X)<>'V')AND(UPCASE(X)<>'U'))OR
(ANZAHL_SCHRITTE>MAX_ANZAHL_SCHRITTE); _[2]:=_[2]+1;
IF ANZAHL_SCHRITTE<_[3] THEN _[3]:=ANZAHL_SCHRITTE;
IF ANZAHL_SCHRITTE>_[4] THEN _[4]:=ANZAHL_SCHRITTE; _[30]:=_[30]+1; ;
ANZAHL_SCHRITTE:=ANZAHL_SCHRITTE-1; _[2]:=_[2]+1;
IF ANZAHL_SCHRITTE<_[3] THEN _[3]:=ANZAHL_SCHRITTE;
IF ANZAHL_SCHRITTE>_[4] THEN _[4]:=ANZAHL_SCHRITTE; ;
WRITELN ;
WRITE(' Bitte Anzahl S„tze angeben : ') ;
READLN(ANZAHL_SAETZE); _[16]:=_[16]+1;
IF ANZAHL_SAETZE<_[17] THEN _[17]:=ANZAHL_SAETZE;
IF ANZAHL_SAETZE>_[18] THEN _[18]:=ANZAHL_SAETZE; ;
WRITE(' Bitte Tondauer im ersten Satz angeben : ') ;
READLN(TONDAUER); _[19]:=_[19]+1; IF TONDAUER<_[20] THEN _[20]:=TONDAUER;
IF TONDAUER>_[21] THEN _[21]:=TONDAUER; ;
WRITE(' Bitte Prestofaktor angeben : ') ;
READLN(PRESTOFAKTOR); _[13]:=_[13]+1;
IF PRESTOFAKTOR<_[14] THEN _[14]:=PRESTOFAKTOR;
IF PRESTOFAKTOR>_[15] THEN _[15]:=PRESTOFAKTOR; ;
;IF _2[1] > _[26] THEN _[26] := _2[1]; _2[1]:=_2[1]-1; END ;
PROCEDURE GIB_SAETZE_AUS;
VAR I,U:INTEGER;
X:CHAR;
PROCEDURE BILDE_SATZ(SCHACHTELUNG,VARIATIONEN:INTEGER);
FUNCTION VARIIERT(NOTE:CHAR):CHAR;
VAR I:INTEGER;
X:CHAR;
BEGIN _[54] := _[54] + 1 ; _2[2] := _2[2] + 1 ;
FOR I:=1 TO ANZAHL_TOENE DO BEGIN _[61] := _[61] + 1 ;
IF ABBILDUNGSREGEL[I].ALT=NOTE THEN BEGIN _[62] := _[62] + 1 ; X:=
ABBILDUNGSREGEL[I].NEU; _[57]:=_[57]+1; IF I<_[58] THEN _[58]:=I;
IF I>_[59] THEN _[59]:=I; _[5]:=_[5]+1; _[60]:=_[60]+1; END ;
VARIIERT:=X; _[60]:=_[60]+1; _[56]:=_[56]+1; _[57]:=_[57]+1;
IF I<_[58] THEN _[58]:=I; IF I>_[59] THEN _[59]:=I; _[5]:=_[5]+1; END ;
_[6]:=_[6]+1; IF ANZAHL_TOENE<_[7] THEN _[7]:=ANZAHL_TOENE;
IF ANZAHL_TOENE>_[8] THEN _[8]:=ANZAHL_TOENE; _[57]:=_[57]+1;
IF I<_[58] THEN _[58]:=I; IF I>_[59] THEN _[59]:=I; ;
;IF _2[2] > _[55] THEN _[55] := _2[2]; _2[2]:=_2[2]-1; END ;
VAR I,U:INTEGER;
X:CHAR;
BEGIN _[46] := _[46] + 1 ; _2[3] := _2[3] + 1 ;
IF SCHACHTELUNG>0 THEN BEGIN _[70] := _[70] + 1 ;
FOR I:=1 TO ANZAHL_SCHRITTE DO BEGIN _[71] := _[71] + 1 ;
IF SATZFORM[I]=THEMA THEN BEGIN _[72] := _[72] + 1 ;
BILDE_SATZ(SCHACHTELUNG-1,VARIATIONEN)
; _[51]:=_[51]+1; IF VARIATIONEN<_[52] THEN _[52]:=VARIATIONEN;
IF VARIATIONEN>_[53] THEN _[53]:=VARIATIONEN; _[48]:=_[48]+1;
IF SCHACHTELUNG<_[49] THEN _[49]:=SCHACHTELUNG;
IF SCHACHTELUNG>_[50] THEN _[50]:=SCHACHTELUNG;
END ELSE BEGIN _[73] := _[73] + 1 ;
BILDE_SATZ(SCHACHTELUNG-1,VARIATIONEN+1)
; _[51]:=_[51]+1; IF VARIATIONEN<_[52] THEN _[52]:=VARIATIONEN;
IF VARIATIONEN>_[53] THEN _[53]:=VARIATIONEN; _[48]:=_[48]+1;
IF SCHACHTELUNG<_[49] THEN _[49]:=SCHACHTELUNG;
IF SCHACHTELUNG>_[50] THEN _[50]:=SCHACHTELUNG; END ; _[63]:=_[63]+1;
IF I<_[64] THEN _[64]:=I; IF I>_[65] THEN _[65]:=I; _[1]:=_[1]+1; END ;
_[2]:=_[2]+1; IF ANZAHL_SCHRITTE<_[3] THEN _[3]:=ANZAHL_SCHRITTE;
IF ANZAHL_SCHRITTE>_[4] THEN _[4]:=ANZAHL_SCHRITTE; _[63]:=_[63]+1;
IF I<_[64] THEN _[64]:=I; IF I>_[65] THEN _[65]:=I;
END ELSE BEGIN _[74] := _[74] + 1 ;
FOR I:=1 TO MOTIVLAENGE DO BEGIN _[75] := _[75] + 1 ;
X:=MOTIV[I]; _[63]:=_[63]+1; IF I<_[64] THEN _[64]:=I;
IF I>_[65] THEN _[65]:=I; _[9]:=_[9]+1; _[69]:=_[69]+1; ;
IF VARIATIONEN>0 THEN BEGIN _[76] := _[76] + 1 ;
FOR U:=1 TO VARIATIONEN DO BEGIN _[77] := _[77] + 1 ;
X:=VARIIERT(X); _[69]:=_[69]+1; END ; _[51]:=_[51]+1;
IF VARIATIONEN<_[52] THEN _[52]:=VARIATIONEN;
IF VARIATIONEN>_[53] THEN _[53]:=VARIATIONEN; _[66]:=_[66]+1;
IF U<_[67] THEN _[67]:=U; IF U>_[68] THEN _[68]:=U; END ;
WRITE(X); _[69]:=_[69]+1; _[51]:=_[51]+1;
IF VARIATIONEN<_[52] THEN _[52]:=VARIATIONEN;
IF VARIATIONEN>_[53] THEN _[53]:=VARIATIONEN; ;
END; _[10]:=_[10]+1; IF MOTIVLAENGE<_[11] THEN _[11]:=MOTIVLAENGE;
IF MOTIVLAENGE>_[12] THEN _[12]:=MOTIVLAENGE; _[63]:=_[63]+1;
IF I<_[64] THEN _[64]:=I; IF I>_[65] THEN _[65]:=I; ;
WRITE(' ') ;
END; _[48]:=_[48]+1; IF SCHACHTELUNG<_[49] THEN _[49]:=SCHACHTELUNG;
IF SCHACHTELUNG>_[50] THEN _[50]:=SCHACHTELUNG; ;
;IF _2[3] > _[47] THEN _[47] := _2[3]; _2[3]:=_2[3]-1; END ;
BEGIN _[37] := _[37] + 1 ; _2[4] := _2[4] + 1 ;
FOR I:=1 TO ANZAHL_SAETZE DO BEGIN _[78] := _[78] + 1 ;
CLRSCR ; WRITE('Computer-Composition : -') ;
FOR U:=1 TO MOTIVLAENGE DO BEGIN _[79] := _[79] + 1 ; WRITE(MOTIV[U]);
_[42]:=_[42]+1; IF U<_[43] THEN _[43]:=U; IF U>_[44] THEN _[44]:=U;
_[9]:=_[9]+1; END ; _[10]:=_[10]+1;
IF MOTIVLAENGE<_[11] THEN _[11]:=MOTIVLAENGE;
IF MOTIVLAENGE>_[12] THEN _[12]:=MOTIVLAENGE; _[42]:=_[42]+1;
IF U<_[43] THEN _[43]:=U; IF U>_[44] THEN _[44]:=U; ;
WRITE('- ; Satz ',I,' ; Tondauer : '); _[39]:=_[39]+1;
IF I<_[40] THEN _[40]:=I; IF I>_[41] THEN _[41]:=I; ;
IF I>1 THEN BEGIN _[80] := _[80] + 1 ; TONDAUER:=TONDAUER/PRESTOFAKTOR;
_[13]:=_[13]+1; IF PRESTOFAKTOR<_[14] THEN _[14]:=PRESTOFAKTOR;
IF PRESTOFAKTOR>_[15] THEN _[15]:=PRESTOFAKTOR; _[19]:=_[19]+1;
IF TONDAUER<_[20] THEN _[20]:=TONDAUER;
IF TONDAUER>_[21] THEN _[21]:=TONDAUER; END ;
WRITELN(TONDAUER:3:2); _[19]:=_[19]+1;
IF TONDAUER<_[20] THEN _[20]:=TONDAUER;
IF TONDAUER>_[21] THEN _[21]:=TONDAUER; _[39]:=_[39]+1;
IF I<_[40] THEN _[40]:=I; IF I>_[41] THEN _[41]:=I; ;
WRITELN ; WRITE(' ') ;
BILDE_SATZ(I,0); _[39]:=_[39]+1; IF I<_[40] THEN _[40]:=I;
IF I>_[41] THEN _[41]:=I; ;
READ(KBD,X); _[45]:=_[45]+1; ;
END; _[16]:=_[16]+1; IF ANZAHL_SAETZE<_[17] THEN _[17]:=ANZAHL_SAETZE;
IF ANZAHL_SAETZE>_[18] THEN _[18]:=ANZAHL_SAETZE; _[39]:=_[39]+1;
IF I<_[40] THEN _[40]:=I; IF I>_[41] THEN _[41]:=I; ;
;IF _2[4] > _[38] THEN _[38] := _2[4]; _2[4]:=_2[4]-1; END ;
BEGIN FOR __:= 1 TO ___ DO _[__]:=0; FOR __:= 1 TO ___2 DO _2[__]:=-1;
_[3]:=1.9E+999;_[4]:=-1.9E+999;_[7]:=1.9E+999;_[8]:=-1.9E+999;
_[11]:=1.9E+999;_[12]:=-1.9E+999;_[14]:=1.9E+999;_[15]:=-1.9E+999;
_[17]:=1.9E+999;_[18]:=-1.9E+999;_[20]:=1.9E+999;_[21]:=-1.9E+999;
_[23]:=1.9E+999;_[24]:=-1.9E+999;_[28]:=1.9E+999;_[29]:=-1.9E+999;
_[40]:=1.9E+999;_[41]:=-1.9E+999;_[43]:=1.9E+999;_[44]:=-1.9E+999;
_[49]:=1.9E+999;_[50]:=-1.9E+999;_[52]:=1.9E+999;_[53]:=-1.9E+999;
_[58]:=1.9E+999;_[59]:=-1.9E+999;_[64]:=1.9E+999;_[65]:=-1.9E+999;
_[67]:=1.9E+999;_[68]:=-1.9E+999;
EINGABE ;
GIB_SAETZE_AUS ;
;ASSIGN(_f,'B:\TESTFILE.TST\KOMPOSER.WRT');
REWRITE(_f);
WRITELN(_f,'(c)1989mkbmeersaukleintier');
WRITELN(_f,'B:\DEMOS.PAS\KOMPOSER.PAS');
WRITELN(_f,'ja');
WRITELN(_f,'80.0');
FOR __ := 1 TO ___ DO BEGIN
STR(_[__],_h);
WRITELN(_f,_h); END;
CLOSE(_f);
WRITELN;WRITELN;
WRITELN('-> Profile-Testlauf beendet. Werte in B:\TESTFILE.TST\KOMPOSER.WRT');
WRITELN('-> Bitte profile_2.prg starten. ');
END.
|
30462ced66b838120d7dbeedd60d063b2fd5d30c | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set14/s_Linear_Integrated_Circuits_S._Salivahanan_And_V._S._K._Bhaaskaran_1106.zip/Linear_Integrated_Circuits_S._Salivahanan_And_V._S._K._Bhaaskaran_1106/CH1/EX1.2/ex1_2.sce | 4fc3b7b33f8aa183f1b73ab4ac00db7e63958208 | [] | 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 | 209 | sce | ex1_2.sce | errcatch(-1,"stop");mode(2);// Example 1.2, page no-23
Rs=30
R=1000
luponw=R/Rs
printf('L upon W =100/3')
printf("\n1kohm resistor can be fabricated by using a pattern of 100 mil* 3 mil")
exit();
|
67897cb4143bb88b63b22ea7ae9fdd8ac4c2b1aa | 449d555969bfd7befe906877abab098c6e63a0e8 | /409/CH2/EX2.3/Example2_3.sce | c48f1ab31389b8f4f69010a71bb21ef05ac776f7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 239 | sce | Example2_3.sce | clear;
clc;
// Example 2.3
printf('Example 2.3\n\n');
//Page no. 46
// Solution
//Basis 7.5 g mol of NaOH
m_NaOH = 40.0 ;//[lb]
lb = 454 ;//[g mol]
n = 7.50*1*m_NaOH/(lb*1);
printf('Number of pounds of NaOH is %.3f lb.\n',n); |
b9a456d4f82b5e1c3a5b6c46ed6b1ad1edb7d303 | 449d555969bfd7befe906877abab098c6e63a0e8 | /623/CH1/EX1.1.11/U1_C1_11.sce | ff2627a44478400417608f443e950297c234ed26 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 583 | sce | U1_C1_11.sce | //Variable initialization
E=0.25 //Energy of photon (MeV)
Theta=(120*%pi)/180; //Scattering angle of photon (radian)
a=0.51 //Value of m0*c^2 (Mev)
//Calculation of energy of the photon
E_dash=E/(1+(E/a)*(1-cos(Theta))); //Energy of the scattered photon (MeV)
printf("\nEnergy of the scattered photon = %.3f Mev",E_dash);
|
f58b91d3422d962ee91239dbcac3082a4216be82 | 449d555969bfd7befe906877abab098c6e63a0e8 | /343/CH1/EX1.14/ex1_14.sce | d549cd8fa2c1b15c45c5a1c7607d09390da3ee28 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 233 | sce | ex1_14.sce | R1=1; // Assigning values to resistors
R2=2;
R3=1;
R4=1;
R=R3+R4; // Simplifying the network
Req=1+(1/((1/R2)+(1/R)));
V=100;
I=V/Req;
I2=I*(R/(R+R2));
disp("Amperes",I2,"Ammeter reading") |
91a212d38d649c893eba93481ce5c53eb0927d18 | 417f69e36190edf7e19a030d2bb6aa4f15bb390c | /SMTTests/tests/ok_array2.tst | 1e20b23e30ad52ef24eb160973aa8ca7bd89301b | [] | no_license | IETS3/jSMTLIB | aeaa7ad19be88117c7454d807a944e8581184a66 | c724ac63056101bfeeb39cc3f366c8719aa23f7b | refs/heads/master | 2020-12-24T12:41:17.664907 | 2019-01-04T10:47:43 | 2019-01-04T10:47:43 | 76,446,229 | 1 | 0 | null | 2016-12-14T09:46:41 | 2016-12-14T09:46:41 | null | UTF-8 | Scilab | false | false | 541 | tst | ok_array2.tst | ; check the array axioms
(set-logic QF_AX)
(declare-sort I 0)
(declare-sort V 0)
(declare-fun a () (Array I V))
(declare-fun i () I)
(declare-fun j () I)
(declare-fun v () V)
(push 1)
(assert (not (= v (select (store a i v) i))))
(check-sat) ; should be unsat
(pop 1)
(push 1)
(assert (not (= (select a i) (select a j))))
(assert (= i j))
(check-sat) ; should be unsat
(pop 1)
(push 1)
(assert (not (= i j)))
(assert (not (= v (select a i))))
(assert (not (= (select a i) (select (store a j v) i))))
(check-sat) ; should be unsat
(pop 1)
|
5fe926dd23b2bbc865db2a26cfb34e68aa872701 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1430/CH7/EX7.9/exa7_9.sce | 1504575acff94cbd073a667ca86e4f3a18feb854 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,471 | sce | exa7_9.sce | // Example 7.9
// Power-Factor Correction with Parallel Loads
V_l=780; // Generator Line voltage
f=60; // Cyclic frequency (Hz)
Z1_del= complex(30,60); // Load 1; balanced delta impedance
Z2_wye=complex(30,0);// Load 2; balanced wye with impedance
// Equivalent wye impedance of the delta load is ,
Z1_wye=Z1_del/3;
// Potential at equivalent neutral N1 of the delta load equals the potential at
// N2 in the wye load
// Hence from figure 7.24(b)
Z_wye=(Z1_wye*Z2_wye)/(Z1_wye+Z2_wye);// Equivalent wye impedance per phase
V_phi= V_l/sqrt(3); // Phase voltage from line voltage
I_rms=V_phi/abs(Z_wye); // RMS current for one phase of the combined load
P_phi=real(Z_wye)*I_rms^2; // Real power
Q_phi=imag(Z_wye)*I_rms^2; // Reactive power
// For balanced condition ,the three capacitor must be equal and arranged in a
// delta or wye configuration
C_del=Q_phi/(2*%pi*f*V_l^2); // For delta configuration
C_wye= 3*C_del; // For wye configuration
Q_C=-Q_phi; // Condition for connecting capacitor
// Total Average power supplied by the generator
P=3*P_phi;
I_l=P/(sqrt(3)*V_l);// RMS line current
disp(C_del,"Capacitance for power factor correction in delta configuration(in farad)=")
disp(C_wye,"Capacitance for power factor correction in wye configuration(in farad)=")
disp(P,"Total average power supplied by the generator(in Watt)=")
disp(I_l,"RMS line current(in Amps)=")
// NOTE- Computed Values for C_del and C_wye in Textbook is wrong.
|
7d1dffad9c9a975c8852f7e52101cc17b65763c3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3507/CH9/EX9.6/Ex9_6.sce | 2a6c9bc3417df92742b0175fd2771e661feb8dba | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 258 | sce | Ex9_6.sce | //chapter9
//example9.6
//page147
V=20 // V
V_D_Ge=0.3 // V
// when voltage is applied, Ge diode turns on first and 0.3 V is maintained across circuit so Si diode never turns on. So
V_A=V-V_D_Ge
printf("voltage V_A at point A = %.3f V \n",V_A)
|
0710e5371e7d00cc10d834de418288d64fd67c08 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3827/CH4/EX4.4/EX4_4.sce | 863c0dc601c49de947c883a902346ea27bf0546d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 984 | sce | EX4_4.sce | //EX4_4: Adder to add two 2-bit binary numbers and produce 3-bit sum
//clears the screen
clc
//clears already existing variables
clear
disp(' A | B | C | D | X | Y | Z |')
disp('----------------------------')
disp(' 0 | 0 | 0 | 0 | 0 | 0 | 0 |')
disp(' 0 | 0 | 0 | 1 | 0 | 0 | 1 |')
disp(' 0 | 0 | 1 | 0 | 0 | 1 | 0 |')
disp(' 0 | 0 | 1 | 1 | 0 | 1 | 1 |')
disp(' 0 | 1 | 0 | 0 | 0 | 0 | 1 |')
disp(' 0 | 1 | 0 | 1 | 0 | 1 | 0 |')
disp(' 0 | 1 | 1 | 0 | 0 | 1 | 1 |')
disp(' 0 | 1 | 1 | 1 | 1 | 0 | 0 |')
disp(' 1 | 0 | 0 | 0 | 0 | 1 | 0 |')
disp(' 1 | 0 | 0 | 1 | 0 | 1 | 1 |')
disp(' 1 | 0 | 1 | 0 | 1 | 0 | 0 |')
disp(' 1 | 0 | 1 | 1 | 1 | 0 | 1 |')
disp(' 1 | 1 | 0 | 0 | 0 | 1 | 1 |')
disp(' 1 | 1 | 0 | 1 | 1 | 0 | 0 |')
disp(' 1 | 1 | 1 | 0 | 1 | 0 | 1 |')
disp(' 1 | 1 | 1 | 1 | 1 | 1 | 0 |')
disp('X(A,B,C,D) = Σm(7, 10, 11, 13, 14, 15)')
disp('Y(A,B,C,D) = Σm(2, 3, 5, 6, 8, 9, 12, 15)')
disp('Z(A,B,C,D) = Σm(1, 3, 4, 6, 9, 11, 12, 14)')
|
8c2b179385e07caa8363b7942cd85a4452e77cec | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/bow/bow.20_7.tst | bd51bd11dfdeb28d32ce60dcd2f015f0c033f734 | [] | 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 | 4,866 | tst | bow.20_7.tst | 20 1:0.09090909090909091 2:0.3333333333333333 7:1.0 21:0.3333333333333333 22:0.0625 27:0.031746031746031744 28:1.0 45:0.5 55:1.0 72:0.5 91:0.25 93:0.5 94:1.0 104:0.3333333333333333 149:1.0 298:0.3333333333333333 299:1.0 308:1.0 509:1.0 576:1.0 796:1.0 1178:1.0 1253:1.0
20 2:0.3333333333333333 7:0.5 21:0.3333333333333333 22:0.25 40:0.2 72:0.5 233:0.5 274:1.0 299:2.0 411:1.0 509:2.0 547:1.0 709:1.0 796:2.0 1037:1.0 1178:3.0 1591:1.0
20 2:0.3333333333333333 21:0.16666666666666666 22:0.0625 28:1.0 40:0.2 56:1.0 77:0.3333333333333333 104:0.3333333333333333 136:1.0 281:0.5 298:0.3333333333333333 431:0.5 783:1.0 854:1.0 1397:1.0
20 6:1.0 22:0.0625 299:1.0 509:1.0 666:1.0 1178:1.0 1294:1.0 1407:1.0
20 4:0.14285714285714285 15:1.0 27:0.015873015873015872 45:0.5 93:0.5 149:0.5 1724:1.0
20 28:1.0 40:0.2 45:0.5 66:0.5 117:1.0 285:1.0
20 49:0.07142857142857142 70:0.25 251:0.5 418:1.0 495:1.0 1613:0.5
20 22:0.0625 28:1.0 49:0.07142857142857142 104:0.3333333333333333
20 21:0.16666666666666666 22:0.0625 27:0.015873015873015872 36:0.25 37:1.0 49:0.07142857142857142 66:0.25 67:1.0 86:1.0 97:0.5 111:1.0 117:1.0 157:0.25 376:1.0 444:1.0 1220:0.1111111111111111 1703:1.0
20 7:0.5 11:1.0 22:0.125 36:0.5 49:0.07142857142857142 104:0.3333333333333333 143:1.0 157:0.25 172:0.5 229:1.0 264:0.25 651:1.0 944:1.0 986:1.0 1000:1.0 1267:0.5 1338:1.0 1397:1.0
20 7:0.5 21:0.16666666666666666 22:0.125 28:1.0 40:0.2 45:0.5 49:0.07142857142857142 104:0.3333333333333333 219:1.0 1117:1.0 1751:1.0 1752:1.0
20 4:0.14285714285714285 27:0.031746031746031744 28:1.0 47:0.3333333333333333 172:0.5 378:1.0 566:1.0 936:1.0
20 22:0.0625 36:0.25 39:1.0 93:0.5 134:1.0 351:1.0 1550:0.5 1751:1.0
20 11:1.0 21:0.3333333333333333 22:0.0625 36:0.75 44:1.0 49:0.07142857142857142 104:1.6666666666666667 124:2.0 172:0.5 274:1.0 587:1.5 1257:1.0 1271:1.0 1281:1.0
20 22:0.125 28:1.0 49:0.14285714285714285 132:0.5 172:0.5 281:0.5 318:1.0 711:1.0 1613:0.5
20 21:0.16666666666666666 104:0.3333333333333333 157:0.25 195:1.0 1298:1.0
20 14:1.0 21:0.16666666666666666 22:0.0625 27:0.015873015873015872 40:0.4 45:0.5 47:0.3333333333333333 85:1.0 91:0.25 93:0.5 104:0.6666666666666666 105:1.0 116:2.0 157:0.25 290:1.0 509:1.0 833:2.0 895:1.0 947:1.0 1103:0.3333333333333333 1133:1.0 1136:1.0 1139:1.0 1252:0.3333333333333333 1378:1.0 1480:1.0 1655:1.0 1857:1.0
20 4:0.14285714285714285 7:0.5 15:1.0 21:0.16666666666666666 22:0.0625 27:0.015873015873015872 47:0.3333333333333333 72:0.5 91:0.25 104:0.3333333333333333 224:1.0 509:1.0 1066:2.0 1103:0.3333333333333333 1133:1.0 1136:3.0 1139:1.0 1140:1.0 1257:1.0 1353:1.0 1356:1.0 1555:1.0 1581:1.0 1710:1.0 1874:1.0
20 1:0.09090909090909091 2:0.3333333333333333 4:0.14285714285714285 22:0.0625 47:0.3333333333333333 72:0.5 374:1.0 863:1.0 1103:0.3333333333333333 1104:2.0 1139:1.0 1806:1.0
20 103:1.0 1695:1.0
20 21:0.16666666666666666 40:0.2 97:0.5 201:1.0 211:0.5 1655:1.0 1759:1.0 1857:1.0
20 7:0.5 22:0.0625 40:0.2 229:1.0 895:1.0
20 104:0.3333333333333333 285:1.0 591:1.0 1136:1.0 1298:1.0
20 1:0.09090909090909091 7:0.5 21:0.16666666666666666 22:0.0625 40:0.2 54:0.16666666666666666 55:1.0 104:0.3333333333333333 192:1.0 299:2.0 509:2.0 594:1.0 1563:1.0 1868:1.0
20 1:0.09090909090909091 7:1.0 22:0.0625 45:0.5 72:0.5 172:0.5 299:1.0 509:1.0 1356:1.0 1358:1.0 1508:1.0 1575:1.0 1868:1.0
20 1:0.18181818181818182 36:0.25 104:0.3333333333333333 171:1.0 321:1.0 509:1.0 1210:1.0 1376:1.0 1564:1.0
20 1:0.09090909090909091 2:0.3333333333333333 22:0.125 45:0.5 72:0.5 91:0.25 94:1.0 244:1.0 281:0.5 285:1.0 298:0.3333333333333333 303:1.0 421:1.0 509:1.0 819:1.0 892:0.5 1319:1.0 1363:1.0 1415:1.0 1555:1.0
20 35:1.0 40:0.2 77:0.3333333333333333 89:1.0 93:0.5 199:1.0 279:0.5 281:0.5 299:1.0 437:1.0 457:1.0 509:1.0 892:0.5 1189:1.0 1806:1.0 1807:1.0
20 21:0.16666666666666666 66:0.25 157:0.25 431:0.5 1066:1.0 1136:3.0 1178:1.0 1356:1.0
20 1:0.09090909090909091 55:1.0 70:0.25 72:0.5 87:1.0 257:1.0 1076:1.0 1343:1.0 1799:1.0
20 21:0.16666666666666666 66:0.25 157:0.25 279:0.5 1093:0.5 1166:1.0 1484:1.0
20 104:0.3333333333333333 136:1.0 431:0.5 1076:1.0
20 1:0.09090909090909091 7:0.5 66:0.25 72:0.5 257:1.0 374:1.0 1183:1.0 1187:1.0 1188:1.0 1356:1.0
20 22:0.0625 47:0.3333333333333333 66:0.5 72:1.0 104:0.3333333333333333 107:0.25 251:0.5 902:1.0 1052:1.0 1066:1.0 1094:1.0 1121:1.0 1166:1.0 1671:1.0
20 7:0.5 72:0.5 91:0.25 128:0.5 195:1.0 311:0.5 390:1.0 882:1.0 1057:1.0 1088:1.0 1136:1.0 1180:1.0
20 136:1.0 149:0.5 449:1.0 799:1.0 1586:1.0
20 22:0.0625 47:0.3333333333333333 104:0.3333333333333333 136:1.0 157:0.25 431:0.5 895:1.0 1066:1.0 1138:1.0 1508:1.0
20 7:1.0 22:0.0625 47:0.3333333333333333 65:1.0 94:2.0 104:0.3333333333333333 157:0.25 227:1.0 299:1.0 835:1.0 882:1.0 1052:1.0 1066:1.0 1106:1.0 1166:1.0
20 22:0.0625 66:0.25 104:0.3333333333333333
20 22:0.0625 45:0.5 66:0.25 77:0.3333333333333333 136:1.0 279:0.5 431:0.5 884:1.0 1109:3.0
|
5c324681a8b3f39fe9775c841cf1e0e5ccdfa46a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1652/CH16/EX16.3/16_3.sce | 8111a02afbf8a1891160b9cf1c77422719834b89 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 164 | sce | 16_3.sce | clc
//Initialization of variables
t=242 //sec
P=229 //mm
P0=363 //mm
//calculations
k=(1/P -1/P0)/t
//results
printf("rate constant= %.2e sec^-1 mm^-1",k)
|
56b7b33053ac6824b5bc89568c7acbfb40561250 | b26239033e0d21476c77ff50326b32231c2a3b00 | /Workspace/missionA4.sce | d196d3f608e4cf7f66679deca96e68e26a15e5c0 | [] | no_license | SmartGuyy/Exolife | 1c9a5bfdb8b16523e9681170fe4cb2cb12613e3a | eb477766dffe7edd9022d0cf46028980489c6277 | refs/heads/master | 2021-06-17T03:56:00.785128 | 2017-03-17T09:39:04 | 2017-03-17T09:39:04 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,168 | sce | missionA4.sce | //addition
img_input1=readpbm("C:\Users\DimitriXPS\Documents\GitHub\Exolife\Exolife\Images\Mission 4\Jupiter1.pbm");
img_input2=readpbm("C:\Users\DimitriXPS\Documents\GitHub\Exolife\Exolife\Images\Mission 4\Jupiter2.pbm");
sizex = size(img_input1, 1)
sizey = size(img_input1, 2)
for i = 2:sizex-1
for j = 2:sizey-1
if img_input1(i,j) == 255 then
img_input1(i,j) = img_input2(i,j);
elseif img_input1(i,j) == 0 then
img_input1(i,j) = img_input2(i,j);
else
img_input1(i,j) = img_input1(i,j);
end,
if (img_input1(i,j) == 255) & ((img_input1(i-1,j-1) == 0) | (img_input1(i-1,j) == 0) | (img_input1(i-1,j+1) == 0) | (img_input1(i,j-1) == 0) | (img_input1(i,j+1) == 0) | (img_input1(i+1,j-1) == 0) | (img_input1(i+1,j) == 0) | (img_input1(i+1,j+1) == 0)) then
img_input1(i,j) = 0;
end,
end,
end
sizex = size(img_input1, 1)
sizey = size(img_input1, 2)
for i = 2:sizex-1
for j = 2:sizey-1
if img_input1(i,j) == 255 then
img_input1(i,j) = img_input2(i,j);
elseif img_input1(i,j) == 0 then
img_input1(i,j) = img_input2(i,j);
else
img_input1(i,j) = img_input1(i,j);
end,
if (img_input1(i,j) == 255) & ((img_input1(i-1,j-1) == 0) | (img_input1(i-1,j) == 0) | (img_input1(i-1,j+1) == 0) | (img_input1(i,j-1) == 0) | (img_input1(i,j+1) == 0) | (img_input1(i+1,j-1) == 0) | (img_input1(i+1,j) == 0) | (img_input1(i+1,j+1) == 0)) then
img_input1(i,j) = 0;
end,
if img_input1(i,j) == 255 then
img_input1(i,j) = ( img_input1(i-1,j) + img_input1(i+1,j)) /2;
end,
if img_input1(i,j) == 0 & img_input1(i-1,j-1) <> 0 & img_input1(i-1,j)<> 0 & img_input1(i-1,j+1)<> 0 & img_input1(i+1,j-1)<> 0 & img_input1(i+1,j)<> 0 & img_input1(i+1,j+1)<> 0 then
img_input1(i,j) = ( img_input1(i-1,j) + img_input1(i+1,j)) /2;
end,
end,
end
display_gray(img_input1);
|
4ae3382ba59a26671b6e6633630f21abbd12c485 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1280/CH9/EX9.1/9_1.sce | 5569458d0ee2dd0d5dd981ce34229b6af861adf7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 189 | sce | 9_1.sce | clc
//initialisation of variables
t= 4 //hr
Ihp= 8 //ihp
Ohp= 5 //hp
//CALCULATIONS
Hl= t*2544*(Ihp-Ohp)
//RESULTS
printf ('total Btu heat loss over a period of 4hr = %.f Btu',Hl)
|
823d6a6031260b73c2c13e2b2baeb1c46a6dfe01 | 449d555969bfd7befe906877abab098c6e63a0e8 | /317/CH7/EX7.6/example6.sce | a5623989e3afc1675f11aa8756348701a07fb96c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 638 | sce | example6.sce | // find whether transistor remains in saturated region
// Electronic Principles
// By Albert Malvino , David Bates
// Seventh Edition
// The McGraw-Hill Companies
// Example 7-6, page 235
clear;clc; close;
// Given data
Vcc=20;// collector supply voltage in volts
Vbb=10;// base voltage in volts
Rc=10*10^3;// collector resistance in ohms
Rb=1*10^6;// base resistance in ohms
Bdc=50;
// Calculations
Ib=Vbb/Rb;// base current in amperes
Ic=Bdc*Ib;// collector current in amperes
Vce=Vcc-(Ic*Rc);// collector-emitter voltage in volts
disp("Volts",Vce,"collector-emitter voltage")
// Result
// as Vce>0 ,the transistor is not saturated
|
9e39791df83d124f644a40ebd13077f5027a0f41 | 2e494112a7fd2c06f9bedfc7be770d24e2350e2b | /1857_1.sce | 5cc0ed320992ad485ce693068696d64cb7a4a0fb | [] | no_license | NipunBhat/SCILAB | d6d8b0ff0318acabbca724b8a3325cd4487ecfe3 | db25212389eaae4de650b6d4118240c3dbf4f860 | refs/heads/master | 2022-09-25T23:50:48.302369 | 2020-06-04T05:31:45 | 2020-06-04T05:31:45 | 269,266,496 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,584 | sce | 1857_1.sce | function GaussElim(A,b,n)
for i = 1 : n-1
for j = i+1 : n
factor = A(i,j) / A(j,j);
for k = i : n
A(i,k) = A(i,k) - (factor*A(i,j));
end
b(j) = b(j) - (factor*b(i));
end
end
x(n)=b(n)/A(n,n);
for i=n-1:-1:1
sum=0;
for j=i+1:n
sum=sum+A(i,j)*x(j);
end
x(i)=(b(i)-sum)/A(i,i);
end
disp([A,b],"Reduced Matrix:");
disp(x,"Solution(x):");
endfunction
function LU(A,n)
L = eye(n, n);
for i = 1 : n-1
for j = i+1 : n
factor=A(i,j)/A(i,i);
L(i,j) = factor;
for k=i:n
A(j,k)=A(j,k)-factor*A(i,k);
end
end
end
disp(L,"L = ");
disp(A,"U = ");
endfunction
function Inverse(A,n)
aug = [A , eye(n,n)];
for i = 1:n-1
for j = i+1:n
aug(j,i:2*n)=aug(j,i:2*n)-aug(j,i)/aug(i,i) * aug(i,i:2*n);
end
end
for i = n:-1:2
aug(1:i-1,:) = aug(1: i-1,:) - aug(1:i-1,i)/aug(i,i) * aug(i,:);
end
for i = 1:n
aug(i,:) = aug(i,:)/aug(i,i);
end
B = aug(:,n+1:2*n);
disp(B,"Inverse of the matrix = ");
endfunction
n = input("Enter the size of the matrix:");
A = x_matrix("Enter the elements of the coefficient matrix",zeros(n,n));
b = x_matrix("Enter the elements of the coefficient matrix",zeros(n,1));
disp([A b],"Augmented matrix:")
GaussElim(A,b,n)
LU(A,n)
Inverse(A,n)
|
4b9ccdd8d121012ae6a8cabb4ab198052b9e444a | 449d555969bfd7befe906877abab098c6e63a0e8 | /881/CH1/EX1.16/exa1_16.sce | 24351d77b5a6e958c0b9f2b77ff7439f0e59daa9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,190 | sce | exa1_16.sce | clc;
//Example 1.16
//Page no 30
disp("Given: For a non ideal amplifier and the following parameters ");
disp("Input signal power = 2 x 10^-10 W");
disp("Input noise power = 2 x 10^-18 W");
disp("Power Gain = 1 x 10^6");
disp("Internal noise = 6 x 10^-12 W");
//Solution
ip=2*(10^-10);
in=2*(10^-18);
G=1*(10^6);
Nd= 6*(10^-12);
//(a)
sn=(ip/in);
SN=10*log10(round(sn));
disp('dB',round(SN),"S/N = ");
//(b)
disp("(b)The output noise power is the sum of the internal noise and the amplified input noise, therefore ");
No=(G*in)+Nd;
disp('W',No,"Nout = ");
disp("The output power is simply the product of the input power and the power gain. ");
Po=G*ip;
disp('W',Po,"Pout = ");
disp("For the output signal and noise power levels calculated and substituting in equation 1-22, the output S/N is ");
sn1=(Po/No);
SN1=10*log10(round(sn1));
disp('dB',round(SN1),"S/N = ");
//(C)
disp("(c)The noise factor is found by substituting the result from step (a) and (b) into equation 1-25 ");
F=([round(sn)]/[round(sn1)]);
disp(F,"F = ");
disp("and the noise figure is calculated from equation 1-26(refer pgno 25) ");
NF=10*log10(round(F));
disp('dB',round(NF),"NF = ");
|
8cee410dddabae08f8a2d278a6fd688ba1061561 | 449d555969bfd7befe906877abab098c6e63a0e8 | /32/CH19/EX19.01/19_01.sce | eed30b1e342aa788b71486dac8f61194cb346efc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,253 | sce | 19_01.sce | //pathname=get_absolute_file_path('19.01.sce')
//filename=pathname+filesep()+'19.01-data.sci'
//exec(filename)
//Specific heat of gases(in kJ/kg.K):
Cpg=1.13 //kJ/kg.K
Cpa=1.005 //kJ/kg.K
rg=1.33
ra=1.4
C=41.84*10^3 //kJ/kg of fuel
//Temperatures(in K):
T1=272
T3=1000
//Compression efficiency:
nc=0.84
p3=3
p2=3
p1=0.5
p5=0.4
//Turbine efficiency:
nt=0.82
//Nozzle efficiency:
nn=0.92
//Speed(in m/s):
Ca=200
//Temperature at state 2(in K):
T2=T1*(p2/p1)^((ra-1)/ra)
//Temperature at state 2'(in K):
T2a=T1+(T2-T1)/nc
//Compressive work(in kW):
Wc=Cpa*(T2a-T1)
printf("\n RESULT \n")
printf("\nPower required for compressor = %f kW/kg",Wc)
//Air fuel ratio:
r=(C-Cpg*T3)/(Cpg*T3-Cpa*T2a)
printf("\nAir fuel ratio = %f",r)
//Temperature at state 4'(in K):
T4a=T3-Cpa/Cpg*(T2a-T1)/(1+r)
T4a=810.46
T4=T3-(T3-T4a)/nt
//Pressure of gas leaving turbine(in bar):
p4=p3*(T4/T3)^(rg/(rg-1))
printf("\nPressure of gas leaving turbine = %f bar",p4)
//Temperature at state 5(in K):
T5=T4a*(p5/p4)^((rg-1)/rg)
//Temperature at state 5'(in K):
T5a=T4a-nn*(T4a-T5)
//Exit jet velocity(in m/s):
C5a=sqrt(2*Cpg*(T4a-T5a)*10^3)
Ce=C5a
//Thrust per kg of air per second:
T=(1+1/r)*Ce-Ca
printf("\nThrust = %f N/kg/s",T) |
c9b0391f7281ffe7467b29d1bf5855ebdde27180 | 8b33899f15bd0509e32f6c06319b7b1557c745f5 | /d1.sci | d92beb436ac147e94dd2d3bcbd2e842b3e8173d0 | [] | no_license | c00kiemon5ter/NumericalAnalysis | fd162663f6a9a4cc6c648e41a1412fa71e83a75c | 1ff51ff805017100ebb87a98b5fef7acca3d0692 | refs/heads/master | 2021-01-01T19:15:21.559444 | 2014-06-25T09:39:25 | 2014-06-25T09:39:25 | 8,290,126 | 1 | 1 | null | 2014-06-25T09:39:25 | 2013-02-19T12:51:16 | Scilab | UTF-8 | Scilab | false | false | 1,816 | sci | d1.sci | // Exercise D1
// ------------
// Implement the 1/3 simpson and 3/8 simpson methods
// ---------------------------------------------------------
function r=Simpson13(a,b,n) // a,b upper and lower limits of the integral and n the compartments
if modulo(n,2) != 0 // It must consist of 2K consecutive compartments. Meaning that n must be an even number
n = n + 1; // if it's not then increase it by one
end;
h = (b-a)/n; // set the step
head = h/3;
firstAndLast = f(a) + f(b);
increase = h;
x = a;
summa = 0;
for i=1:n-1
x = x + increase;
if modulo(i,2) == 0 then
summa = summa + (2 * f(x));
else
summa = summa + (4*f(x));
end;
end;
r = [head * (summa + firstAndLast)] ;
endfunction
// ---------------------------------------------------------
function r=Simpson38(a,b,n) // a,b upper and lower limits of the integral and n the compartments
if modulo(n,3) != 0 // It must consist of 3K consecutive compartments. Meaning that n must be an even number
n = n + (3 - modulo(n,3)) // if it's not then increase it by one
end;
h = (b-a)/(n); // set the step
head = (3*h)/8;
firstAndLast = f(a) + f(b);
increase = h;
x = a;
summa = 0;
for i=1:n-1
x = x + increase;
if modulo(i,3) == 0 then
summa = summa + (2 * f(x));
else
summa = summa + (3 * f(x));
end;
end;
r = [head * (summa + firstAndLast)] ;
endfunction
// ---------------------------------------------------------
function r=f(x)
r = x * sin(x);
endfunction
// ---------------------------------------------------------
|
f4d7480a5b9efaebea5718c40213ffc11fbd7448 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2204/CH1/EX1.4/ex1_4.sce | 25c974d8a38be64f8b1a78b673bff1c415c72cee | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 509 | sce | ex1_4.sce | // Exa 1.4
clc;
clear;
close;
// Given data
V = 10;// in V
V_BE = 0.715;// in V
R = 5.6;// in k ohm
I = (V-V_BE)/(R);// in mA
bita = 100;
I_C1 = (bita/(4+bita))*I;// in mA
disp(I_C1,"For transistor Q1, the collector current in mA is");
I_C2 = I_C1;// in mA
disp(I_C2,"For transistor Q2, the collector current in mA is");
I_C3 = I_C1;// in mA
disp(I_C3,"For transistor Q3, the collector current in mA is");
I_C4 = I_C1;// in mA
disp(I_C4,"For transistor Q4, the collector current in mA is");
|
4cb371d4b11c5e66978644160ad8b48fa455af3f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3269/CH2/EX2.8/Ex2_8.sce | 11951088dd882f0f5be65b2dfa7411e2bee8f9ae | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 856 | sce | Ex2_8.sce | // Example 2.8
clear all;
clc;
disp('The reaction is Tritium(d,n)Helium-4');
// Using standard data table of mass in amu
M_H3 = 3.016049; // Atomic mass of Tritium
M_He4 = 4.002604; // Atomic mass of Helium
M_d = 2.014102; // Atomic mass of Deuterium
M_n = 1.008665; // Atomic mass of neutron
// Calculation of total mass of reactants
tot_reac = M_H3+M_d;
// Calculation of total mass of products
tot_prod = M_He4+M_n;
// Calculation
Q = tot_reac-tot_prod;
// Expressing in MeV by using 1 amu = 931.5 MeV
Q_mev = Q*931.5;
// Result
printf(" \n Q value for the reaction = %5.3f MeV",Q_mev);
if Q_mev > 0 then
printf("\n The reaction is exothermic. \n");
else
printf("\n The reaction is endothermic. \n");
end
|
2cccc10b12ed7261e7cc188cff601cb87bb0d629 | 449d555969bfd7befe906877abab098c6e63a0e8 | /770/CH10/EX10.21/10_21.sce | c06e366ae21089fe30a50ded32e28c901cda1d72 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,893 | sce | 10_21.sce | clear;
clc;
//Example - 10.21
//Page number - 362
printf("Example - 10.21 and Page number - 362\n\n");
//Given
P = 2.76*10^(6);//[N/m^(2)] - Pressure
T = 310.93;//[K] - Temperature
R = 8.314;//[J/mol*K] - Universal gas constant
// For n-butane
Tc = 425.18;//[K] - Critical temperature
Pc = 37.97;//[bar] - Critical pressure
Pc = Pc*10^(5);//[Pa]
w = 0.193;
den = 0.61;//[g/cm^(3)]
mol_wt = 58;//[g/mol] - Molecular weight of butane
// log(P_sat) = 15.7374 - 2151.63/(T-36.24)
P_sat = exp(15.7374 - 2151.63/(T-36.24));//[mm Hg]
P_sat = (P_sat/760)*101325;//[N/m^(2)]
//(1)
// Let us determine the second virial coefficient at 310.93 K
Tr = T/Tc;// Reduced temperature
B_0 = 0.083-(0.422/(Tr)^(1.6));
B_1 = 0.139-(0.172/(Tr)^(4.2));
//We know,(B*Pc)/(R*Tc) = B_0 + (w*B_1)
B = ((B_0+(w*B_1))*(R*Tc))/Pc;//[m^(3)/mol]
// Fugacity under saturated conditions is given by
// log(f_sat/P_sat) = (B*P_sat)/(R*T)
f_sat = P_sat*(exp((B*P_sat)/(R*T)));//[N/m^(2)]
// The molar volume is given by
V_liq = (1/(den*1000))*(mol_wt/1000);//[m^(3)/mol]
f = f_sat*exp(V_liq*(P-P_sat)/(R*T));
printf(" (1).The fugacity of n-butane is %e N/m^(2)\n\n",f);
//(2)
// For van der Walls equation of state
a = (27*R^(2)*Tc^(2))/(64*Pc);//[Pa-m^(6)/mol^(2)]
b = (R*Tc)/(8*Pc);//[m^(3)/mol]
// The cubic form of van der Walls equation of state is given by,
// V^(3) - (b + (R*T)/P)*V^(2) + (a/P)*V - (a*b)/P = 0
// At 100 C and 1 atm
deff('[y]=f(V)','y=V^(3)-(b+(R*T)/P)*V^(2)+(a/P)*V-(a*b)/P');
V_1 = fsolve(0.1,f);
V_1 = fsolve(10,f);
V_1 = fsolve(100,f);
// The above equation has only 1 real root, other two roots are imaginary
V = V_1;//[m^(3)/mol]
// log(f/P) = log((R*T)/(P*(V-b))) + b/(V-b) -(2*a)/(R*T*V)
f_2 = P*(exp(log((R*T)/(P*(V-b))) + b/(V-b) -(2*a)/(R*T*V)));
printf(" (2).The fugacity of n-butane is %e N/m^(2)\n\n",f_2);
|
65cfc0cc86c8e663e3df0bbf5bf03483f8068fc1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2777/CH6/EX6.1/Ex6_1.sce | 8eace61814c75cd4b69c973953ba4825a19828fe | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,200 | sce | Ex6_1.sce |
// ELECTRICAL MACHINES
// R.K.Srivastava
// First Impression 2011
// CENGAGE LEARNING INDIA PVT. LTD
// CHAPTER : 6 : SYNCHRONOUS MACHINES
// EXAMPLE : 6.1
clear ; clc ; close ; // Clear the work space and console
// GIVEN DATA
f = 50; // Generating Frequency in Hertz
// CALCULATIONS
// For Case(a)
Ns_a = 3000; // Synchronous speed in RPM
p_a = (120*f)/Ns_a; // Number of poles
// For Case(b)
Ns_b = 1000; // Synchronous speed in RPM
p_b = (120*f)/Ns_b; // Number of poles
// For Case(c)
Ns_c = 300; // Synchronous speed in RPM
p_c = (120*f)/Ns_c; // Number of poles
// For Case(d)
Ns_d = 40; // Synchronous speed in RPM
p_d = (120*f)/Ns_d; // Number of poles
// DISPLAY RESULTS
disp("EXAMPLE : 6.1 : SOLUTION :-") ;
printf("\n For Case(a) Ns = %.f, p = %.f \n ",Ns_a,p_a);
printf("\n For Case(b) Ns = %.f, p = %.f \n ",Ns_b,p_b);
printf("\n For Case(c) Ns = %.f, p = %.f \n ",Ns_c,p_c);
printf("\n For Case(d) Ns = %.f, p = %.f \n ",Ns_d,p_d);
|
81b95ffdfceffa2109da749b878d712d4cd6a731 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.5/macros/scicos/color.tst | accd363dcb7ef70f73d151dc16945a3e0a0e8186 | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 954 | tst | color.tst | xsetech([0 0 1 1],[0 0 1 1])
orig=[0 0]
sz=[1 1]
thick=xget('thickness');xset('thickness',2);
xrect(orig(1)+sz(1)/10,orig(2)+(1-1/10)*sz(2),sz(1)*8/10,sz(2)*8/10);
xx=[orig(1)+sz(1)/5,orig(1)+sz(1)/5;
orig(1)+(1-1/5)*sz(1),orig(1)+sz(1)/5];
yy=[orig(2)+sz(2)/5,orig(2)+sz(2)/5;
orig(2)+sz(2)/5,orig(2)+(1-1/5)*sz(2)];
xarrows(xx,yy);
t=(0:0.3:2*%pi)'
xx=orig(1)+(1/5+3*t/(10*%pi))*sz(1);
yy=orig(2)+(1/4.3+(sin(t)+1)*3/10)*sz(2);
xpoly(xx,yy,'lines');
xset('thickness',thick)
orig=[0.5 0.5]
wd=xget('wdim').*[1.016,1.12];
thick=xget('thickness');xset('thickness',2);
p=wd(2)/wd(1);p=1;
rx=sz(1)*p/2;ry=sz(2)/2;
xarcs([orig(1)+0.05*sz(1);
orig(2)+0.95*sz(2);
0.9*sz(1)*p;
0.9*sz(2);
0;
360*64],default_color(-1));
xset('thickness',1);
xx=[orig(1)+rx orig(1)+rx;
orig(1)+rx orig(1)+rx+0.6*rx*cos(%pi/6)];
yy=[orig(2)+ry orig(2)+ry ;
orig(2)+1.8*ry orig(2)+ry+0.6*ry*sin(%pi/6)];
xsegs(xx,yy,10);
xset('thickness',thick);
|
1efb817f9bc070f768c020244e4bba22f2d53132 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1076/CH4/EX4.5/4_5.sce | 0e27babec29ca4d053066dc3730c3bf6c7912d18 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 193 | sce | 4_5.sce | clear;
clc;
a=.26;
b=.15;
c=.35;
y=[(1+b) b;-(1+a) (1+c)];
z=[1+a;a];
v=round(inv(y)*z*1e3)*1e-3;
t=v(1,1);
u=v(2,1);
n=(t+u+1)/(3*u);
mprintf("the string efficiency is =%.2f",n);
|
0a910cc18aa8650938e511c2c2d66e06d265599e | 449d555969bfd7befe906877abab098c6e63a0e8 | /22/CH4/EX4.2/ch4ex2.sce | eade38b3a7175f32407ea37a8bdae7ec4ae76747 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 264 | sce | ch4ex2.sce | //signals and systems
//(a) laplace transform x(t) = del(t)
syms t s;
y =laplace('0',t,s)
disp(y)
//(b) Laplace Transform x(t) = u(t)
y1 =laplace('1',t,s);
disp(y1)
//(c) laplace transform x(t) = cos(w0*t)u(t)
y2 =laplace('cos(w0*t)',t,s);
disp(y2) |
8c96eea366a29b8366077df0e87d9b43c04fb17e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2297/CH6/EX6.7/Ex6_7.sce | b9a4a33569a1390663d02ec70781518f29f9ac27 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 601 | sce | Ex6_7.sce | //Example 6.7// resistance
clc;
clear;
close;
format('v',6)
n=1000;//turns in rpm
ra=0.3;//armature resistance in ohms
rf=40;//field resistance in ohms
it=5;//field current in amperes
if1=4;//field current in amperes
e1=220;//emf in volts
e2=200;//emf in volts
ia=35;//armature current in amperes
eb=(e1-(ia*ra));//emf in volts
x=((eb-e2)/(it*if1));//additional field current in amperes
ce=e1-e2;//change in emf in volts
ix=if1+x;//total current in amperes
rt=(e1/ix);//total resistance in ohms
adr=rt-rf;//additional resistance required in ohms
disp(adr,"additional resistance required is,(Ohm)=")
|
bd135b58fbaff2b3f984a97f1d95b1e73fb54389 | 59b742e36fbe9d77cb51ec949c6625f665133d2b | /Resultados/results_LocGlo_29/results/29/g20-4/result4s0.tst | a930d6df8349d7df805b4c5b708a4e5b813a2236 | [] | no_license | Tiburtzio/TFG | 3132fd045de3a0e911e2c9e23e9c46e1075a3274 | 864ce4dd00b7f8fe90eafa65b11d799c5907177e | refs/heads/master | 2023-01-03T12:44:56.269655 | 2020-10-24T18:37:02 | 2020-10-24T18:37:02 | 275,638,403 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 779 | tst | result4s0.tst | @relation unknow
@attribute left-weight real[1.0,5.0]
@attribute left-distance real[1.0,5.0]
@attribute right-weight real[1.0,5.0]
@attribute right-distance real[1.0,5.0]
@attribute class{L,B,R}
@inputs left-weight,left-distance,right-weight,right-distance
@outputs class
@data
R R
R R
R R
R R
R R
R R
R R
L L
B L
R R
R R
R R
R R
B L
R R
R R
R L
R R
L L
L L
R R
B R
L L
L L
R L
R L
B L
R R
R R
R R
R R
R R
R R
R R
L L
L L
L L
R R
L L
L L
L R
L L
L L
L L
L L
L L
L L
B L
R R
R R
R R
L L
R R
L L
R R
L L
L L
L L
L L
R R
R R
R R
L L
L L
L L
R L
R R
R R
R R
R R
B R
R R
L L
R R
L L
L L
R R
L L
L L
L L
L L
L L
L L
L L
L L
L L
L L
L L
R R
R R
L L
L R
L R
R R
R R
R R
R R
L L
B L
L L
B L
R R
L L
L L
L L
L L
L L
R R
R R
R R
R R
B L
R R
R R
L L
L L
L L
B R
R R
R R
L L
R R
L L
L L
L L
|
490c0b8fbed38b9a228d8004432b32ff84038f33 | 449d555969bfd7befe906877abab098c6e63a0e8 | /147/CH13/EX13.12/Example13_12.sce | 6871971786a30b5810ee847f5820c35fc20008a8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 552 | sce | Example13_12.sce | //Rated Power Pr, Turn ratio a, Open cicuit Voltage, Current and Power Vo, Io and Po
//Short cicuit Voltage, current and power Vs, Is and Ps
close();
clear;
clc;
Pr = 25000;//VA
a = 2;
Vo = 220;
Io = 9.6;
Po = 710;//W
Vs = 42;
Is = 57;
Ps = 1030;
Rc2 = Vo^2/Po;
Ic2 = Vo/Po;
Im2 = (Io^2-Ic2^2)^(1/2);
Xm2 = Vo/Im2;
Zs1 = Vs/Is;
Rs1 = Ps/Is^2;
Xs1 = (Zs1^2 - Rs1^2)^(1/2);
Rs2 = Rs1/a^2;
Xs2 = Xs1/a^2;
mprintf('Values of cicuit constants are:\nRc2 = %0.1f ohm\nXm2 = %0.2f ohm\nRs2 = %0.3f ohm \nXs2 = %0.3f ohm',Rc2,Xm2,Rs2,Xs2); |
9e3f1e72a19bbf1d65e68277879544e3ffd0add8 | ed07691c163198cbaa7dc102fa302c75d5f21b0d | /04/sort/Sort.tst | f2768ef64f88f0508d774d0fc007d1189246d9f2 | [] | no_license | Laetitiay/Nand | dce68fbbeb41f218ac9c697564963b7932d6d2b8 | 3c5e1893492e82d1e1d4e33a23461919b16b7a06 | refs/heads/main | 2023-01-06T22:23:03.738349 | 2020-11-04T19:05:49 | 2020-11-04T19:05:49 | 303,808,703 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,446 | tst | Sort.tst | // This file is part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by Nisan and Schocken, MIT Press.
// File name: projects/04/mult/Mult.tst
load Sort.asm,
output-file Sort.out,
compare-to Sort.cmp,
output-list RAM[14]%D2.7.2 RAM[15]%D2.7.2 RAM[2048]%D2.7.2 ;
set PC 0, set RAM[14] 2048, set RAM[15] 1, set RAM[2048] 15;
repeat 30000 {ticktock;} output;
output-list RAM[14]%D2.7.2 RAM[15]%D2.7.2 RAM[3500]%D2.7.2 RAM[3501]%D2.7.2 ;
set PC 0, set RAM[14] 3500, set RAM[15] 2, set RAM[3500] 15, set RAM[3501] 3;
repeat 30000 {ticktock;} output;
output-list RAM[14]%D2.7.2 RAM[15]%D2.7.2 RAM[3600]%D2.7.2 RAM[3601]%D2.7.2 RAM[3602]%D2.7.2 RAM[3603]%D2.7.2 RAM[3604]%D2.7.2 ;
set PC 0, set RAM[14] 3600, set RAM[15] 5, set RAM[3600] -6252, set RAM[3601] 10156, set RAM[3602] 3966, set RAM[3603] -12297, set RAM[3604] 1745;
repeat 30000 {ticktock;} output;
output-list RAM[14]%D2.7.2 RAM[15]%D2.7.2 RAM[6000]%D2.7.2 RAM[6001]%D2.7.2 RAM[6002]%D2.7.2 RAM[6003]%D2.7.2 RAM[6004]%D2.7.2 RAM[6005]%D2.7.2 RAM[6006]%D2.7.2 RAM[6007]%D2.7.2 RAM[6008]%D2.7.2 RAM[6009]%D2.7.2 ;
set PC 0, set RAM[14] 6000, set RAM[15] 10, set RAM[6000] -3550, set RAM[6001] -9409, set RAM[6002] 12359, set RAM[6003] 2771, set RAM[6004] -1225, set RAM[6005] -14096, set RAM[6006] 12665, set RAM[6007] -3794, set RAM[6008] -243, set RAM[6009] -6271;
repeat 30000 {ticktock;} output;
output-list RAM[14]%D2.7.2 RAM[15]%D2.7.2 RAM[6001]%D2.7.2 RAM[6002]%D2.7.2 RAM[6003]%D2.7.2 RAM[6004]%D2.7.2 RAM[6005]%D2.7.2 RAM[6006]%D2.7.2 RAM[6007]%D2.7.2 RAM[6008]%D2.7.2 RAM[6009]%D2.7.2 RAM[6010]%D2.7.2 ;
set PC 0, set RAM[14] 6001, set RAM[15] 10, set RAM[6001] -16202, set RAM[6002] -5235, set RAM[6003] -13563, set RAM[6004] -9831, set RAM[6005] 8107, set RAM[6006] -7007, set RAM[6007] -9231, set RAM[6008] -11561, set RAM[6009] 9766, set RAM[6010] 8375;
repeat 30000 {ticktock;} output;
output-list RAM[14]%D2.7.2 RAM[15]%D2.7.2 RAM[16363]%D2.7.2 RAM[16364]%D2.7.2 RAM[16365]%D2.7.2 RAM[16366]%D2.7.2 RAM[16367]%D2.7.2 RAM[16368]%D2.7.2 RAM[16369]%D2.7.2 RAM[16370]%D2.7.2 RAM[16371]%D2.7.2 RAM[16372]%D2.7.2 ;
set PC 0, set RAM[14] 16363, set RAM[15] 10, set RAM[16363] -3769, set RAM[16364] -10618, set RAM[16365] -6579, set RAM[16366] 9734, set RAM[16367] -185, set RAM[16368] -2715, set RAM[16369] -16004, set RAM[16370] 13078, set RAM[16371] 4943, set RAM[16372] -113;
repeat 30000 {ticktock;} output;
|
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")
|
01d534ce015ba6fcaf8a700b97dd5717822f9acd | 1db0a7f58e484c067efa384b541cecee64d190ab | /macros/ifftn.sci | 3d26c047d37d6263227261e5e5f7ea5583411cb8 | [] | no_license | sonusharma55/Signal-Toolbox | 3eff678d177633ee8aadca7fb9782b8bd7c2f1ce | 89bfeffefc89137fe3c266d3a3e746a749bbc1e9 | refs/heads/master | 2020-03-22T21:37:22.593805 | 2018-07-12T12:35:54 | 2018-07-12T12:35:54 | 140,701,211 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,035 | sci | ifftn.sci | function y = ifftn(A, varargin)
//Compute the inverse N-dimensional discrete Fourier transform of A using a Fast Fourier Transform (FFT) algorithm.
//Calling Sequence
//Y = ifftn(A)
//Y = ifftn(A, size)
//Parameters
//A: Matrix
//Description
//Compute the inverse N-dimensional discrete Fourier transform of A using a Fast Fourier Transform (FFT) algorithm. The optional vector argument SIZE may be used specify the dimensions of the array to be used. If an element of SIZE is smaller than the corresponding dimension of A, then the dimension of A is truncated prior to performing the inverse FFT. Otherwise, if an element of SIZE is larger than the corresponding dimension then A is resized and padded with zeros.
//Examples
//ifftn([2,3,4])
//ans =
// 3. - 0.5 - 0.2886751i - 0.5 + 0.2886751i
funcprot(0);
funcprot(0);
rhs = argn(2)
if(rhs<1 | rhs>2)
error("Wrong number of input arguments.");
end
select(rhs)
case 1 then
y = callOctave("ifftn",A);
case 2 then
y = callOctave("ifftn",A, varargin(1));
end
endfunction
|
dab46803419af6341c2e70632206d744840936bf | 449d555969bfd7befe906877abab098c6e63a0e8 | /3718/CH5/EX5.11/Ex5_11.sce | 4f03204d29db0bc599dcbb22e030176c6e840915 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 261 | sce | Ex5_11.sce | //Chapter 5: Chemical Kinetics and Catalysis
//Problem: 11
clc;
//Declaration of Variables
a = 1 //in mole
x = 3 / 4.0 // reaction completed
// Solution
K = (2.303 / 6) * log10(1 / (1 - x))
mprintf("The rate constant is :%.3f / min",K)
|
351610d52152314a8624e66dbbfc8ac3a37ed4f6 | c206e3f57b0a6f75bd1feefefecd29398746c358 | /scripts/subsamplematrix.sci | 77ece72f9c3ad17b1fe9fb1952996fe774f65930 | [] | no_license | danielfcollier/scilab-image-processing-scripts | e092a7c1a6a0ade906c020218a9571290245e40f | 43d78cb06dc6c27ab8663f351e4c172d038280ce | refs/heads/main | 2023-04-12T20:05:52.840157 | 2021-04-27T18:56:06 | 2021-04-27T18:56:06 | 362,219,761 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 283 | sci | subsamplematrix.sci | function [S1,S2]=subsamplematrix(M1,M2,R);
R=floor(R);
N1=floor(M1/R);
N2=floor(M2/R);
S1=zeros(N1,M1);
S2=zeros(M2,N2);
Sp1=floor((M1-R*N1)/2);
Sp2=floor((M2-R*N2)/2);
for r=1:R
S1((Sp1+r-1)*N1+1 : R*N1+1 : N1*M1)=1/R;
S2( r+Sp2 : M2+R : N2*M2)=1/R;
end
endfunction
|
ff58d5681022356f6b0a3862392946a20e1f5cd5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3785/CH6/EX6.14/Ex6_14.sce | 9d2de4083240a1e3e1a9b6a080e077388b0f375d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 343 | sce | Ex6_14.sce | // Example 6_14
clc;funcprot(0);
// Given data
// L=10h;
Lbyh=10;
// Calculation
// Re=(V*h)/nu;
Re=Lbyh*(12/1.328)^2;// Reynolds number
printf("For flow velocities having Vh/v «%3.1f. the pressure drop would be given by (a),while for Vh/v »%3.1f it would be given by (b).",Re,Re);
// The answer provided in the text book is wrong |
ee8802c82b5e3b8023cd413bb6979863cd7b1fc3 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/ngram/5.1_12.tst | 7b3d9facc689afa2dcbea43297ee7e6be50b2a31 | [] | 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 | 703,352 | tst | 5.1_12.tst | 1 55:1 120:1 327:1 382:1 395:2 544:2 604:1 723:1 764:1 794:1 822:2 882:1 912:1 1154:1 1279:1 1405:1 1437:1 1456:1 1584:1 2046:1 2513:1 2654:1 2752:1 3149:1 3384:1 3608:1 3668:1 3734:1 3766:1 3837:1 3977:1 4045:1 4443:1 4565:1 4601:1 4687:1 4698:1 4716:1 5008:1 5394:1 5610:1 5735:1 6063:1 6344:1 6507:1 7138:1 7307:1 7380:1 7440:1 7608:1 7631:1 7706:1 7855:1 7860:1 8127:1 8407:1 8429:1 8609:1 8905:1 9325:1 9354:1 9485:1 9720:1 9739:1 9823:1 9881:1 10191:1 10265:1 10411:1 10635:1 10644:1 10693:1 10734:1 10934:1 11283:1 11381:1 11506:1 11720:1 11736:1 11824:1 11882:1 11904:1 12100:1 12257:1 12290:1 12590:1 12633:1 12831:1 13277:1 13383:1 13720:1 13768:1 14211:1 14666:1 15434:1 15513:1 15522:1 15613:1 15689:1 15980:1 16034:1 16232:1 16331:1 16483:1 16616:1 16710:1 16934:1 17192:1 17276:121 17795:1 18297:1 18303:1 18326:1 18582:1 18658:1 18756:1 19013:1 19133:1 19254:1 19349:1 19359:1 19537:1 19798:1 19976:1 20061:1 20134:1 20149:1 20177:1 20205:1 20328:1 20400:1 20532:1 20553:1 20656:1 20779:1 20796:1 20900:1 21134:1 21150:1 21220:1 21370:1 21469:1 21501:1 21642:1 21686:1 22136:1 22726:1 22862:1 23721:1 23775:1 24233:1 24416:1 24443:1 24944:1 25185:1 25841:1 25856:1 26098:1 26230:1 26368:1 26757:1 27031:1
1 55:1 120:1 233:1 280:1 327:1 372:1 382:1 395:2 397:1 544:2 604:1 723:1 764:1 789:2 794:1 802:1 822:2 873:2 874:1 875:1 882:1 912:1 953:2 1154:1 1279:1 1405:1 1437:1 1456:2 1559:1 1568:1 1584:1 1600:1 1724:1 1931:1 2027:2 2046:1 2143:1 2157:1 2172:2 2173:2 2294:1 2413:1 2513:1 2526:1 2535:1 2545:1 2557:1 2562:2 2654:1 2738:1 2752:1 2856:1 3006:1 3149:1 3384:2 3549:1 3608:1 3668:1 3734:1 3766:2 3810:1 3837:1 3864:1 3910:1 3977:1 4027:1 4045:1 4249:1 4256:1 4355:1 4380:1 4443:1 4565:1 4567:1 4574:1 4601:1 4685:1 4687:1 4695:1 4696:1 4698:1 4706:1 4716:1 4789:2 5008:1 5287:1 5394:2 5406:2 5509:1 5516:1 5610:1 5680:1 5696:1 5735:2 6063:1 6327:1 6344:1 6389:1 6507:1 6537:1 6563:1 6812:1 6945:1 6971:1 7081:1 7138:1 7154:2 7213:5 7229:1 7276:1 7307:1 7380:2 7440:1 7608:1 7631:1 7643:1 7654:1 7706:1 7855:1 7860:2 8034:1 8038:1 8041:1 8127:1 8233:1 8407:1 8429:1 8605:1 8609:1 8858:1 8865:1 8905:1 8956:1 9005:1 9186:1 9201:1 9289:1 9325:1 9354:1 9485:1 9490:1 9665:2 9715:1 9720:1 9739:1 9823:1 9881:1 9900:1 10080:1 10191:1 10240:1 10265:1 10282:1 10406:1 10411:1 10556:1 10592:1 10635:1 10644:2 10646:1 10693:1 10734:1 10746:1 10818:1 10934:1 11214:1 11283:1 11381:1 11382:1 11506:1 11547:1 11720:1 11736:1 11774:1 11824:1 11882:1 11904:1 12091:1 12100:1 12110:1 12257:1 12290:1 12346:1 12590:1 12633:1 12728:1 12831:1 13005:1 13025:1 13064:1 13261:1 13277:1 13383:2 13563:1 13690:1 13720:1 13731:1 13768:1 13804:1 13850:1 13891:1 14211:1 14579:2 14666:1 14876:1 14958:1 15068:1 15251:1 15328:1 15434:1 15513:1 15522:1 15613:1 15689:1 15898:1 15980:1 16034:2 16202:1 16212:1 16218:1 16232:1 16305:1 16331:1 16483:1 16508:1 16616:1 16710:1 16815:1 16934:1 17087:3 17192:1 17276:228 17302:1 17684:1 17754:1 17795:1 17862:1 17970:1 17992:1 17999:1 18075:1 18123:1 18141:1 18295:1 18297:1 18303:1 18308:1 18326:1 18332:1 18422:1 18501:1 18504:1 18536:1 18582:1 18658:1 18735:1 18756:1 18962:1 18996:1 19013:1 19039:1 19085:1 19133:1 19245:1 19254:1 19349:1 19359:1 19421:1 19537:1 19798:1 19821:1 19976:1 19978:1 20061:1 20134:1 20149:1 20177:1 20205:1 20210:1 20252:1 20316:1 20328:1 20352:1 20368:1 20400:1 20417:1 20532:1 20553:1 20588:1 20634:1 20647:1 20656:1 20666:1 20772:1 20779:1 20796:1 20887:2 20900:1 20968:1 21005:1 21134:1 21150:1 21220:1 21309:1 21370:1 21453:1 21469:1 21501:1 21502:1 21559:1 21642:1 21686:1 21848:1 22014:1 22019:1 22074:1 22078:1 22136:1 22403:1 22457:2 22467:1 22564:1 22710:1 22718:1 22726:1 22862:1 22880:1 22943:1 23197:1 23292:1 23721:1 23739:2 23775:1 24055:1 24165:3 24233:1 24263:1 24289:1 24416:1 24443:1 24446:1 24472:1 24710:1 24944:1 24966:1 24994:1 25081:1 25125:1 25185:2 25487:1 25491:1 25804:1 25841:1 25856:1 25871:3 25905:1 25913:1 26005:1 26022:2 26098:1 26194:1 26214:1 26230:1 26368:2 26527:1 26655:1 26696:1 26757:1 26787:1 26848:1 26862:1 26923:1 26978:1 27031:2
1 55:1 120:1 138:1 157:1 233:1 238:1 280:1 306:1 315:2 327:2 372:1 382:1 395:3 397:1 544:2 604:1 723:1 764:1 789:2 794:1 802:1 822:3 873:2 874:2 875:1 882:1 912:1 915:1 953:2 1154:1 1195:1 1279:1 1405:1 1437:1 1454:1 1456:2 1530:1 1542:1 1559:1 1568:1 1584:1 1592:1 1600:1 1675:1 1681:1 1723:1 1724:2 1931:1 1978:1 2027:3 2037:1 2046:1 2107:1 2126:2 2143:1 2157:2 2158:1 2172:2 2173:2 2294:1 2350:1 2413:1 2444:1 2513:1 2526:1 2535:1 2545:1 2557:1 2562:2 2641:1 2654:1 2738:2 2749:1 2752:1 2856:1 2907:1 2934:1 2948:1 3006:2 3149:3 3384:2 3484:1 3501:1 3549:1 3559:1 3576:1 3596:1 3608:1 3626:1 3668:1 3734:1 3765:2 3766:2 3810:1 3837:1 3839:1 3864:1 3910:1 3977:1 4027:1 4045:1 4104:1 4149:1 4156:1 4249:1 4256:1 4355:1 4371:1 4380:1 4443:2 4459:1 4565:2 4567:1 4574:1 4601:1 4684:1 4685:2 4687:1 4695:1 4696:1 4698:1 4706:1 4716:2 4764:1 4789:2 4930:1 5002:1 5008:1 5171:1 5188:1 5287:1 5302:1 5313:1 5369:1 5394:2 5406:2 5503:1 5509:1 5516:1 5538:1 5549:1 5610:1 5620:1 5680:1 5696:2 5735:2 5812:1 5912:1 6063:1 6177:1 6292:1 6301:1 6327:1 6344:1 6389:1 6507:1 6537:1 6563:1 6595:1 6765:1 6812:1 6875:1 6945:1 6971:1 6989:1 7012:1 7051:1 7081:1 7138:1 7154:2 7173:1 7213:7 7229:3 7276:1 7278:1 7307:1 7309:1 7331:1 7380:2 7410:1 7440:1 7453:1 7608:1 7631:1 7643:1 7654:1 7706:1 7777:1 7855:1 7860:2 8034:1 8038:1 8041:1 8061:1 8127:1 8196:1 8233:1 8316:1 8347:2 8361:1 8395:1 8407:1 8429:1 8455:1 8605:1 8609:1 8629:1 8681:1 8858:1 8865:1 8905:1 8919:1 8956:1 9005:1 9061:1 9186:1 9201:1 9289:1 9296:1 9325:1 9354:1 9485:1 9490:2 9497:1 9520:1 9588:2 9665:2 9715:1 9720:1 9739:1 9769:1 9823:1 9864:1 9881:1 9900:1 10080:1 10191:1 10240:1 10265:3 10268:1 10276:1 10282:1 10406:1 10411:1 10556:1 10592:1 10635:1 10644:2 10646:1 10693:1 10718:1 10734:1 10746:1 10818:1 10831:1 10847:1 10934:1 10951:1 10962:1 10968:1 11006:1 11214:1 11220:1 11283:1 11365:1 11381:1 11382:1 11406:1 11506:1 11547:1 11705:1 11720:1 11736:1 11774:1 11824:1 11882:1 11904:1 12091:1 12100:1 12110:1 12208:1 12257:1 12290:1 12346:1 12436:1 12590:2 12633:1 12728:1 12732:1 12741:1 12765:1 12787:1 12831:1 12926:1 13005:2 13025:1 13064:1 13237:1 13261:1 13277:1 13383:2 13470:1 13499:1 13563:1 13690:1 13720:1 13731:1 13768:1 13771:2 13804:1 13850:1 13891:1 13977:1 13984:1 14211:1 14564:1 14579:2 14593:1 14666:1 14703:1 14719:1 14876:1 14958:1 15064:1 15068:1 15251:1 15328:1 15370:1 15434:1 15446:1 15470:1 15513:1 15522:1 15544:1 15613:1 15689:1 15706:1 15778:1 15898:1 15980:1 16034:2 16055:1 16202:1 16212:1 16218:1 16232:2 16293:1 16305:1 16331:1 16368:1 16483:1 16508:1 16557:1 16616:1 16710:1 16720:1 16740:1 16815:1 16862:1 16879:1 16934:1 17071:1 17087:3 17192:1 17276:380 17289:1 17302:1 17552:1 17684:2 17754:1 17795:1 17862:1 17970:1 17992:1 17999:1 18047:1 18075:1 18116:1 18123:1 18141:1 18295:2 18297:1 18303:1 18308:1 18326:1 18332:1 18374:1 18422:1 18501:1 18504:1 18536:1 18538:1 18582:1 18658:1 18707:1 18735:1 18756:1 18962:1 18996:2 19013:1 19039:1 19057:1 19085:1 19133:1 19183:1 19201:1 19245:1 19254:1 19334:1 19349:1 19359:1 19421:1 19439:1 19459:1 19521:1 19522:1 19537:1 19629:1 19790:1 19798:1 19821:1 19927:1 19959:1 19976:1 19978:1 20061:1 20075:1 20134:1 20149:1 20177:1 20205:1 20210:1 20252:1 20316:1 20328:1 20334:1 20352:2 20368:1 20400:1 20417:1 20532:1 20553:1 20588:1 20633:1 20634:1 20647:1 20655:1 20656:1 20666:1 20772:1 20779:1 20780:1 20796:1 20844:1 20887:2 20900:1 20963:1 20968:1 21005:1 21134:1 21150:2 21220:1 21234:1 21309:1 21370:1 21434:1 21453:1 21469:1 21501:1 21502:1 21512:1 21559:1 21613:1 21642:1 21686:1 21694:1 21794:1 21848:1 21864:1 22014:1 22019:1 22053:1 22074:1 22078:1 22136:1 22320:1 22328:1 22403:1 22457:2 22467:1 22564:1 22612:1 22640:1 22646:1 22675:1 22710:1 22718:3 22726:1 22739:1 22862:1 22868:1 22880:1 22907:1 22943:1 22946:1 23197:1 23261:1 23292:1 23426:1 23721:1 23739:2 23775:1 23826:1 23889:1 23895:1 23923:1 23932:1 24024:1 24055:1 24165:3 24233:1 24263:1 24289:1 24408:1 24416:1 24427:1 24443:1 24446:1 24471:1 24472:1 24600:1 24710:1 24713:1 24944:1 24966:1 24994:1 25026:1 25081:1 25125:2 25185:2 25207:1 25213:1 25260:1 25370:1 25487:1 25491:1 25532:1 25804:1 25809:1 25841:1 25856:1 25871:3 25892:1 25905:1 25913:1 26005:1 26012:1 26022:3 26098:1 26174:1 26194:1 26214:1 26222:1 26229:1 26230:1 26265:1 26368:2 26527:1 26655:1 26696:1 26757:1 26787:1 26848:1 26855:1 26862:1 26883:1 26910:1 26923:1 26978:1 27031:2
1 55:1 120:1 138:1 144:1 157:1 233:1 238:1 280:1 306:1 315:2 317:1 327:2 334:1 372:1 382:1 395:3 397:1 532:1 544:2 604:1 723:1 764:1 789:3 794:1 802:1 822:3 837:2 873:3 874:2 875:3 880:1 882:1 912:1 915:1 953:2 1109:1 1154:1 1195:1 1279:1 1405:1 1419:1 1437:1 1448:1 1454:1 1456:2 1530:1 1542:1 1559:1 1568:1 1584:1 1592:1 1600:1 1653:1 1675:1 1681:1 1723:1 1724:2 1870:1 1899:1 1931:1 1978:1 2027:4 2037:1 2046:1 2051:1 2107:1 2126:2 2143:1 2148:1 2157:2 2158:1 2172:3 2173:2 2277:1 2294:1 2350:1 2413:1 2444:1 2513:1 2526:1 2535:1 2545:1 2557:1 2562:3 2641:1 2654:2 2738:2 2749:1 2752:1 2773:2 2856:1 2907:1 2934:1 2948:1 3006:2 3149:3 3384:3 3484:1 3493:1 3501:1 3549:1 3559:1 3576:1 3596:1 3608:1 3626:1 3668:1 3687:1 3734:1 3765:2 3766:2 3810:1 3837:1 3839:1 3864:1 3875:1 3910:1 3977:1 4008:1 4027:1 4045:1 4104:1 4149:1 4156:1 4225:1 4249:1 4256:1 4355:1 4371:1 4380:1 4397:1 4420:1 4443:2 4459:1 4565:2 4567:1 4574:1 4601:1 4684:1 4685:2 4687:1 4695:1 4696:1 4698:1 4704:1 4706:1 4716:2 4721:1 4764:1 4789:2 4903:1 4930:1 5002:1 5008:1 5171:1 5188:1 5287:1 5302:1 5313:1 5369:1 5394:2 5406:2 5503:1 5509:1 5516:1 5538:1 5549:1 5610:1 5620:1 5636:1 5680:1 5692:1 5696:3 5715:1 5735:2 5787:1 5812:1 5912:1 6063:1 6177:1 6292:1 6295:1 6301:1 6327:1 6344:1 6378:1 6389:1 6507:1 6525:1 6530:1 6537:1 6563:1 6595:1 6670:1 6724:1 6765:1 6812:1 6875:1 6931:1 6945:1 6971:1 6989:1 7012:1 7051:1 7081:1 7114:1 7138:2 7154:3 7173:2 7176:2 7183:1 7199:1 7213:10 7229:3 7231:2 7276:1 7278:1 7307:1 7309:1 7320:1 7331:1 7380:2 7410:1 7440:1 7453:1 7608:1 7631:1 7643:1 7654:1 7706:1 7729:1 7777:1 7855:2 7860:2 8034:1 8038:1 8041:1 8061:1 8127:1 8196:1 8233:1 8271:1 8316:1 8324:1 8347:2 8361:1 8395:1 8407:1 8429:1 8455:2 8477:1 8605:1 8609:2 8629:1 8661:1 8681:1 8802:1 8858:1 8865:1 8905:1 8919:1 8956:1 9005:1 9061:1 9163:1 9186:1 9201:1 9243:1 9289:1 9296:1 9318:1 9325:1 9354:1 9449:1 9485:1 9490:3 9497:1 9520:1 9588:2 9590:1 9665:2 9715:1 9720:1 9722:1 9739:1 9769:1 9823:1 9864:1 9881:1 9900:1 10057:2 10080:1 10106:1 10191:1 10240:1 10265:3 10268:1 10276:1 10282:1 10336:1 10406:1 10411:1 10424:1 10440:1 10556:1 10586:1 10592:1 10627:1 10630:1 10635:1 10644:2 10646:1 10693:1 10718:1 10734:1 10746:1 10759:1 10818:1 10831:1 10847:1 10859:1 10890:1 10934:1 10951:1 10962:1 10968:1 11006:2 11214:1 11220:1 11283:1 11365:1 11381:1 11382:1 11406:2 11506:1 11520:1 11547:1 11705:1 11720:2 11736:1 11774:1 11824:1 11882:1 11904:1 12091:1 12100:1 12110:1 12208:1 12252:1 12257:1 12290:1 12346:1 12389:1 12436:1 12452:1 12590:2 12633:1 12707:1 12728:1 12732:1 12741:1 12765:1 12787:1 12831:1 12926:1 12929:1 13005:3 13025:1 13064:1 13131:1 13237:1 13261:1 13277:1 13383:2 13384:1 13404:1 13470:1 13499:1 13563:1 13690:1 13720:1 13731:1 13768:1 13771:2 13804:1 13850:1 13891:1 13977:1 13984:1 13998:1 14211:1 14240:1 14564:1 14579:2 14593:1 14666:1 14703:1 14719:1 14764:1 14876:1 14904:1 14958:1 15046:1 15064:1 15068:1 15251:1 15328:1 15370:1 15434:1 15446:1 15470:1 15478:1 15513:1 15522:1 15544:1 15585:1 15613:1 15689:1 15706:1 15778:1 15849:1 15898:1 15946:1 15980:1 16034:2 16039:1 16055:1 16183:1 16202:1 16212:1 16218:1 16232:2 16238:2 16293:1 16305:1 16331:1 16368:1 16389:1 16483:1 16508:1 16557:1 16616:1 16684:1 16710:1 16720:1 16740:1 16814:1 16815:1 16862:1 16879:1 16934:1 16999:1 17071:1 17087:5 17103:1 17192:1 17276:470 17285:1 17289:1 17302:1 17353:1 17467:1 17495:1 17552:1 17592:1 17684:2 17754:1 17795:1 17837:1 17862:1 17951:1 17970:1 17992:1 17999:1 18011:1 18047:1 18075:1 18116:1 18123:1 18141:1 18295:2 18297:1 18303:1 18308:1 18326:1 18332:1 18339:1 18343:1 18374:1 18422:1 18501:1 18504:1 18536:1 18538:1 18564:1 18582:1 18658:1 18707:1 18716:1 18735:1 18756:1 18941:1 18962:1 18969:1 18996:3 19013:1 19039:1 19057:1 19085:1 19133:1 19183:1 19201:1 19215:1 19245:1 19254:1 19334:1 19349:1 19359:2 19391:1 19421:1 19439:1 19459:2 19521:1 19522:1 19537:1 19547:1 19629:1 19790:1 19798:1 19821:1 19880:1 19921:1 19927:1 19959:1 19976:1 19978:1 19998:1 20061:1 20066:1 20075:1 20134:1 20149:1 20177:1 20205:1 20210:1 20212:1 20252:1 20316:1 20328:1 20334:1 20352:2 20368:1 20400:1 20417:1 20532:1 20546:1 20553:1 20556:1 20588:1 20592:1 20633:1 20634:1 20647:1 20655:1 20656:1 20666:1 20772:1 20779:1 20780:1 20796:1 20812:1 20844:1 20887:2 20900:1 20962:1 20963:1 20968:2 21005:1 21079:1 21134:1 21150:2 21220:1 21234:1 21309:1 21370:1 21434:1 21453:1 21469:1 21479:1 21488:1 21501:1 21502:1 21512:1 21559:1 21613:1 21642:1 21686:1 21694:1 21794:1 21848:1 21864:1 22014:1 22019:1 22053:1 22074:1 22078:1 22136:1 22230:1 22238:1 22320:1 22328:1 22403:1 22435:1 22457:2 22467:1 22531:1 22564:1 22612:1 22626:1 22640:1 22646:1 22662:2 22675:1 22710:1 22718:3 22726:1 22739:1 22862:1 22868:1 22880:1 22907:1 22943:1 22946:1 23024:1 23077:2 23115:1 23130:1 23197:1 23261:1 23291:2 23292:1 23426:1 23440:1 23721:1 23739:2 23775:1 23826:1 23889:1 23895:1 23923:1 23932:1 24024:1 24055:1 24165:5 24233:1 24263:1 24272:1 24285:1 24289:1 24408:1 24416:1 24427:1 24443:1 24446:1 24471:1 24472:1 24600:1 24643:1 24653:1 24710:1 24713:1 24944:1 24966:1 24994:1 25026:1 25032:1 25081:1 25125:2 25185:2 25207:1 25213:1 25250:1 25255:1 25260:1 25330:1 25346:1 25370:1 25487:1 25491:1 25532:1 25793:1 25804:1 25809:1 25820:1 25841:1 25856:1 25871:3 25892:1 25905:1 25913:1 26005:1 26012:1 26015:1 26022:3 26098:1 26174:1 26194:1 26214:1 26222:1 26229:1 26230:1 26265:1 26305:1 26306:1 26368:3 26527:1 26547:1 26580:1 26655:1 26696:1 26710:1 26757:2 26787:1 26848:1 26855:1 26862:1 26883:1 26910:1 26923:1 26978:1 26987:1 27031:2
1 47:1 50:1 55:1 120:1 138:1 144:1 157:1 233:1 238:1 280:1 306:1 315:2 317:1 327:3 334:1 346:1 372:1 382:1 395:4 397:1 446:1 532:1 544:2 604:1 723:1 764:1 789:3 794:1 802:1 822:3 826:1 837:2 873:3 874:2 875:3 880:1 882:1 912:2 915:2 926:1 953:2 1108:1 1109:1 1154:1 1158:1 1195:1 1279:1 1405:1 1419:1 1437:1 1448:1 1454:2 1456:2 1469:1 1501:1 1526:1 1530:1 1542:1 1555:1 1559:1 1568:1 1584:1 1592:1 1600:1 1653:1 1675:1 1681:1 1696:1 1723:1 1724:2 1759:1 1822:1 1870:1 1899:1 1931:1 1978:1 2027:4 2037:1 2046:1 2051:1 2107:1 2126:2 2143:1 2148:1 2150:1 2157:2 2158:1 2172:3 2173:2 2257:1 2277:1 2294:1 2350:1 2360:1 2413:1 2444:1 2445:1 2478:1 2483:1 2496:1 2505:1 2513:1 2526:1 2535:1 2545:1 2557:1 2562:3 2641:1 2654:2 2738:2 2749:1 2752:2 2773:2 2848:1 2856:1 2907:1 2918:1 2934:2 2948:1 3006:2 3027:1 3149:3 3358:1 3384:3 3425:1 3479:1 3484:1 3493:1 3501:1 3548:1 3549:1 3559:1 3576:1 3596:1 3599:1 3608:1 3626:1 3668:1 3687:1 3716:1 3734:1 3765:2 3766:2 3772:1 3810:1 3813:1 3837:1 3839:1 3864:1 3875:1 3910:1 3977:1 4008:1 4027:1 4045:1 4101:1 4104:1 4149:1 4156:2 4225:1 4249:1 4256:1 4355:1 4363:1 4371:1 4380:1 4397:1 4420:1 4443:2 4459:1 4565:2 4567:1 4574:1 4601:1 4684:1 4685:2 4687:1 4688:1 4695:1 4696:1 4698:1 4701:1 4704:1 4706:1 4716:2 4721:1 4764:1 4789:2 4891:1 4903:1 4930:1 5002:1 5008:1 5140:1 5171:1 5188:1 5287:1 5298:1 5302:1 5313:1 5369:1 5394:3 5406:2 5483:1 5503:1 5509:1 5516:1 5538:1 5549:1 5610:1 5620:1 5636:1 5680:1 5692:1 5696:3 5715:1 5735:2 5787:1 5812:3 5912:1 6051:1 6063:1 6177:1 6191:1 6270:1 6292:1 6295:1 6301:1 6327:1 6344:1 6378:1 6389:1 6479:1 6507:1 6525:1 6530:1 6537:1 6563:1 6595:1 6606:1 6670:1 6702:1 6724:1 6765:1 6812:1 6875:1 6931:1 6945:1 6971:1 6989:1 7012:1 7051:1 7081:1 7114:1 7120:1 7138:2 7153:1 7154:4 7165:1 7173:2 7176:2 7183:1 7199:1 7213:11 7229:3 7231:2 7236:1 7276:1 7278:1 7302:1 7307:1 7309:1 7320:1 7331:1 7380:2 7410:1 7440:1 7453:1 7608:1 7631:1 7643:1 7654:1 7677:1 7706:1 7724:1 7729:1 7777:1 7810:1 7827:1 7855:2 7860:2 7896:1 7918:1 8034:1 8038:1 8041:1 8061:1 8122:1 8127:1 8191:1 8196:1 8233:1 8271:1 8316:1 8324:1 8347:2 8361:1 8395:1 8407:1 8416:1 8429:1 8455:2 8477:1 8589:1 8605:1 8609:2 8629:1 8661:1 8681:1 8734:1 8771:1 8802:1 8858:1 8865:1 8905:1 8919:1 8956:1 9005:1 9024:1 9028:1 9061:1 9163:1 9186:1 9201:1 9243:1 9248:1 9249:1 9289:1 9294:1 9296:1 9318:1 9325:1 9327:1 9354:1 9449:1 9485:1 9490:3 9497:1 9520:1 9588:2 9590:1 9665:2 9715:1 9720:1 9722:1 9739:1 9755:1 9769:1 9823:1 9864:1 9881:1 9886:1 9900:1 9982:1 10047:1 10057:2 10080:1 10106:1 10191:1 10240:1 10265:3 10268:1 10276:1 10282:1 10288:1 10336:1 10345:1 10406:1 10411:1 10424:1 10440:1 10556:1 10586:1 10592:1 10611:1 10627:1 10630:1 10635:1 10644:2 10646:1 10663:1 10693:1 10718:1 10734:3 10746:1 10759:1 10818:1 10831:1 10847:1 10859:1 10890:1 10934:1 10951:1 10962:1 10968:1 11006:2 11206:1 11214:1 11220:1 11283:1 11365:1 11381:1 11382:1 11394:1 11406:2 11415:1 11506:1 11520:1 11542:1 11547:1 11638:1 11662:1 11705:1 11720:2 11736:1 11774:1 11824:1 11882:2 11904:1 11983:1 12045:1 12091:1 12100:1 12110:1 12208:1 12231:1 12252:1 12257:1 12290:1 12325:1 12346:1 12389:1 12410:1 12436:1 12446:1 12452:1 12463:1 12590:3 12633:1 12707:1 12728:1 12732:1 12741:1 12765:1 12787:1 12831:1 12926:1 12929:1 13005:3 13025:1 13064:1 13085:1 13131:1 13237:1 13261:1 13277:1 13383:2 13384:1 13404:1 13442:1 13470:1 13499:1 13548:1 13563:1 13632:1 13637:1 13690:1 13720:1 13731:1 13768:1 13771:2 13804:1 13850:1 13891:1 13977:1 13984:1 13998:1 14211:1 14240:1 14270:1 14345:1 14387:1 14424:1 14564:1 14579:2 14593:1 14666:1 14703:1 14719:1 14726:1 14739:1 14764:2 14857:1 14876:1 14900:1 14904:1 14958:1 15046:1 15052:1 15064:1 15068:1 15074:2 15251:1 15328:1 15370:1 15418:1 15434:1 15446:1 15456:1 15470:3 15478:1 15513:1 15522:1 15544:1 15585:1 15613:1 15671:1 15689:1 15706:1 15778:1 15823:1 15849:1 15898:1 15946:1 15980:1 15992:1 16034:2 16039:1 16055:1 16159:1 16183:1 16202:1 16212:1 16218:1 16232:3 16238:2 16293:1 16294:1 16305:1 16331:1 16368:1 16389:1 16428:1 16451:1 16483:1 16508:1 16518:1 16557:1 16602:1 16616:1 16684:1 16710:1 16720:1 16740:1 16814:1 16815:1 16862:1 16879:1 16934:1 16937:1 16999:1 17071:1 17087:5 17103:1 17184:1 17192:1 17251:1 17276:579 17285:1 17289:1 17302:1 17351:1 17353:1 17467:1 17475:1 17495:1 17552:1 17592:1 17599:1 17684:2 17754:1 17765:1 17795:1 17809:1 17836:1 17837:1 17862:1 17870:1 17951:1 17970:1 17992:1 17999:1 18011:1 18047:2 18075:1 18116:1 18123:1 18141:1 18193:1 18295:2 18297:1 18303:1 18308:1 18326:1 18332:1 18339:1 18343:1 18374:1 18420:1 18422:1 18428:1 18501:1 18504:1 18536:1 18538:1 18564:1 18582:1 18598:1 18658:1 18707:1 18716:1 18735:1 18756:1 18847:1 18933:1 18941:1 18960:1 18962:1 18969:1 18996:3 19013:1 19039:1 19057:1 19085:1 19101:1 19133:1 19183:1 19201:1 19215:1 19245:1 19254:1 19279:1 19334:1 19349:1 19359:3 19391:1 19421:1 19439:1 19459:2 19521:1 19522:1 19537:1 19547:1 19591:1 19627:1 19629:1 19633:1 19636:1 19790:1 19798:1 19806:1 19821:1 19880:1 19921:1 19927:1 19959:1 19976:1 19978:1 19998:1 20061:1 20066:1 20071:1 20075:1 20134:1 20141:1 20149:1 20177:1 20179:1 20205:1 20206:1 20210:1 20212:1 20240:1 20252:1 20316:1 20328:1 20334:1 20352:2 20368:1 20400:1 20417:1 20532:1 20546:1 20553:1 20556:1 20567:1 20588:1 20592:1 20633:1 20634:1 20647:1 20655:1 20656:2 20666:1 20720:1 20754:1 20772:1 20779:2 20780:1 20796:1 20812:1 20844:2 20887:2 20900:1 20962:1 20963:1 20968:2 21005:1 21029:1 21079:1 21130:1 21134:1 21150:3 21220:1 21234:1 21284:1 21309:1 21370:1 21434:1 21453:1 21462:1 21469:1 21479:1 21488:1 21501:1 21502:1 21512:1 21559:1 21613:2 21642:1 21686:1 21694:1 21733:1 21794:1 21846:1 21848:1 21864:1 21916:1 21930:1 22014:1 22019:1 22053:1 22074:1 22078:1 22088:1 22130:1 22136:1 22196:1 22230:1 22238:1 22320:1 22328:2 22403:1 22435:2 22457:2 22467:1 22531:1 22564:1 22612:1 22626:1 22640:1 22646:1 22662:2 22675:1 22710:1 22718:3 22726:1 22739:1 22862:1 22868:1 22880:1 22907:1 22943:1 22946:1 23012:1 23024:1 23077:2 23115:1 23130:1 23169:1 23197:1 23261:1 23291:2 23292:1 23426:1 23440:1 23505:1 23557:1 23700:1 23721:1 23739:2 23775:1 23826:1 23889:1 23895:1 23923:1 23932:1 24024:1 24055:1 24165:5 24233:1 24263:1 24272:1 24275:1 24285:1 24289:1 24310:1 24408:1 24416:1 24427:1 24443:1 24446:1 24471:1 24472:1 24479:1 24592:1 24600:1 24643:1 24653:1 24710:1 24713:1 24737:1 24792:1 24830:1 24889:1 24917:1 24938:1 24944:1 24966:1 24994:1 25026:1 25032:1 25081:1 25125:2 25145:1 25185:2 25195:1 25200:1 25207:1 25213:1 25250:1 25255:1 25260:1 25330:1 25346:1 25370:1 25412:1 25487:1 25491:1 25532:1 25600:1 25793:1 25804:1 25809:1 25820:1 25841:1 25856:1 25871:3 25880:1 25881:1 25892:1 25905:1 25913:1 26005:1 26012:1 26015:2 26022:3 26054:1 26098:1 26174:1 26194:1 26214:1 26222:1 26229:1 26230:1 26265:1 26305:1 26306:1 26368:3 26527:1 26547:1 26557:1 26580:1 26655:1 26696:1 26710:1 26757:2 26787:1 26848:1 26855:1 26862:1 26883:1 26910:1 26923:1 26961:1 26978:1 26987:1 27031:2
1 47:1 50:1 55:1 120:1 138:1 144:1 157:1 233:1 238:1 280:1 306:1 315:2 317:1 327:3 334:1 346:1 372:1 382:1 395:4 397:1 446:1 532:1 544:2 604:1 723:1 764:1 789:3 794:1 802:1 822:3 826:1 837:2 873:3 874:2 875:3 880:1 882:1 912:2 915:2 926:1 953:2 1108:1 1109:1 1154:1 1158:1 1193:1 1195:1 1279:1 1405:1 1419:1 1437:1 1448:1 1454:2 1456:2 1469:1 1501:1 1526:1 1530:1 1542:1 1553:1 1555:1 1559:1 1568:1 1584:1 1592:1 1600:1 1653:1 1675:1 1681:1 1696:1 1723:1 1724:2 1759:1 1822:1 1870:1 1899:1 1931:1 1978:1 1984:1 2027:4 2037:1 2046:1 2051:1 2092:1 2107:1 2126:2 2143:1 2148:1 2150:1 2157:2 2158:1 2172:3 2173:2 2257:1 2277:1 2294:1 2350:1 2360:1 2413:1 2444:1 2445:1 2478:1 2483:1 2496:1 2505:1 2513:1 2526:1 2535:1 2545:1 2557:1 2562:3 2641:1 2654:2 2738:2 2749:1 2752:2 2773:2 2848:1 2856:1 2907:1 2918:1 2934:2 2948:1 3006:2 3027:1 3042:1 3149:3 3328:1 3358:1 3362:1 3384:5 3425:1 3479:1 3484:1 3493:1 3501:1 3548:1 3549:1 3559:1 3576:1 3596:1 3599:1 3608:1 3626:1 3668:1 3687:1 3716:1 3734:1 3765:2 3766:2 3772:1 3810:1 3813:1 3837:1 3839:1 3864:1 3875:1 3910:1 3977:1 4008:1 4027:1 4045:1 4101:1 4104:1 4149:1 4156:2 4225:1 4249:1 4256:1 4355:1 4363:1 4371:1 4380:1 4397:1 4420:1 4443:2 4459:1 4565:2 4567:1 4574:1 4601:1 4684:1 4685:3 4687:1 4688:1 4695:1 4696:1 4698:1 4701:1 4704:1 4706:1 4716:2 4721:1 4764:1 4789:2 4891:1 4903:1 4930:1 5002:1 5008:1 5140:1 5171:1 5188:1 5287:1 5298:1 5302:1 5313:1 5369:1 5394:4 5406:2 5483:1 5503:1 5509:1 5516:1 5538:1 5549:1 5610:1 5619:1 5620:1 5636:1 5680:1 5692:1 5696:3 5715:1 5735:2 5761:1 5787:1 5812:3 5912:1 6051:1 6063:1 6177:1 6191:1 6270:1 6292:1 6295:1 6301:1 6327:1 6336:1 6344:1 6378:1 6389:1 6479:1 6507:1 6525:1 6530:1 6537:1 6563:1 6569:1 6595:1 6606:1 6670:1 6702:1 6724:1 6765:1 6812:1 6875:1 6931:1 6945:1 6971:1 6989:1 7012:1 7020:1 7051:1 7081:1 7114:1 7120:1 7138:2 7153:1 7154:5 7165:1 7173:2 7176:2 7183:1 7199:1 7213:11 7220:1 7229:3 7231:2 7236:1 7276:1 7278:1 7302:1 7307:1 7309:1 7320:1 7331:1 7380:2 7410:1 7440:1 7453:1 7608:1 7631:1 7643:1 7654:1 7677:1 7700:2 7706:1 7724:1 7729:1 7777:1 7810:1 7827:1 7855:2 7860:2 7896:1 7918:1 7930:1 8034:1 8038:1 8041:1 8061:1 8122:1 8127:1 8191:1 8196:1 8233:1 8271:1 8316:1 8324:1 8347:2 8361:1 8395:1 8407:1 8416:1 8429:1 8455:2 8477:1 8589:1 8605:1 8609:2 8629:1 8661:1 8681:1 8734:1 8771:1 8802:1 8858:1 8865:1 8905:1 8919:1 8956:1 9005:1 9024:1 9028:1 9061:1 9163:1 9186:1 9201:1 9210:1 9243:1 9248:1 9249:1 9289:1 9294:1 9296:1 9318:2 9325:1 9327:1 9354:2 9449:1 9485:1 9490:3 9497:1 9520:1 9588:2 9590:1 9665:2 9715:1 9720:1 9722:1 9729:1 9739:1 9742:1 9755:1 9769:1 9823:1 9846:1 9864:1 9881:1 9886:1 9900:1 9982:1 10047:1 10057:2 10080:1 10106:1 10191:1 10240:1 10252:1 10265:3 10268:1 10276:1 10282:1 10283:1 10288:1 10310:1 10336:1 10345:1 10406:1 10411:1 10424:1 10440:1 10556:1 10586:1 10592:1 10611:1 10627:1 10630:1 10635:1 10644:2 10646:1 10663:1 10693:1 10718:1 10734:3 10746:1 10759:1 10799:1 10818:1 10831:1 10847:1 10859:1 10890:1 10934:1 10951:1 10962:1 10968:1 11006:2 11206:1 11214:1 11220:1 11283:1 11365:1 11381:1 11382:1 11394:1 11406:2 11415:1 11506:1 11520:1 11542:1 11547:1 11638:1 11662:1 11705:1 11720:2 11736:1 11774:1 11824:1 11882:2 11904:1 11983:1 12045:1 12091:1 12100:1 12110:1 12208:1 12231:1 12252:1 12257:2 12290:1 12325:1 12346:1 12389:1 12400:1 12410:1 12436:1 12446:1 12452:1 12463:1 12590:3 12633:1 12707:1 12728:1 12732:1 12741:1 12765:1 12787:1 12831:1 12926:1 12929:1 13005:3 13025:1 13064:1 13085:1 13131:1 13237:1 13261:1 13277:1 13383:2 13384:1 13404:1 13410:1 13442:1 13470:1 13499:1 13548:1 13563:1 13632:1 13637:1 13690:1 13720:1 13731:1 13768:1 13771:2 13804:1 13850:1 13891:1 13977:1 13984:1 13998:1 14211:1 14240:1 14270:1 14345:1 14387:1 14424:1 14564:1 14575:1 14579:2 14593:1 14666:1 14703:1 14719:1 14726:1 14739:1 14764:2 14857:1 14876:1 14900:1 14904:1 14958:1 14972:1 15046:1 15052:1 15064:1 15068:1 15074:2 15131:1 15140:1 15251:1 15288:1 15328:1 15370:1 15418:1 15434:1 15446:1 15456:1 15470:3 15478:1 15513:1 15522:1 15544:1 15585:1 15613:1 15671:1 15689:1 15706:1 15778:1 15823:1 15849:1 15898:1 15946:1 15980:1 15987:1 15992:1 16034:2 16039:1 16055:1 16159:1 16183:1 16202:1 16212:1 16218:1 16232:3 16238:2 16293:1 16294:1 16305:1 16331:1 16368:1 16389:1 16428:1 16434:1 16451:1 16483:1 16508:1 16518:1 16557:1 16602:1 16616:1 16684:1 16710:1 16720:1 16740:1 16814:1 16815:1 16862:1 16879:1 16934:1 16937:1 16999:1 17071:1 17087:5 17103:1 17184:1 17192:1 17251:1 17276:610 17285:1 17289:1 17302:1 17351:1 17353:1 17467:1 17475:1 17495:1 17552:1 17592:1 17599:1 17684:2 17754:1 17765:1 17795:1 17809:1 17836:1 17837:1 17862:1 17870:1 17951:1 17970:1 17992:1 17999:1 18011:1 18047:2 18052:1 18075:1 18116:1 18123:1 18141:1 18193:1 18234:1 18295:2 18297:1 18303:1 18308:1 18326:1 18332:1 18339:1 18343:1 18374:1 18381:1 18420:1 18422:1 18428:1 18501:1 18504:1 18536:1 18538:1 18564:1 18582:1 18598:1 18658:1 18707:1 18716:1 18735:1 18756:1 18847:1 18933:1 18941:1 18960:1 18962:1 18969:1 18996:3 19013:1 19039:1 19057:1 19085:1 19101:1 19133:1 19183:1 19201:1 19215:1 19245:1 19254:1 19279:1 19334:1 19349:1 19359:3 19391:1 19421:1 19439:1 19459:2 19521:1 19522:1 19537:2 19547:1 19591:1 19627:1 19629:1 19633:1 19636:1 19757:1 19790:1 19798:1 19806:1 19821:1 19880:1 19921:1 19927:1 19959:1 19976:1 19978:2 19998:1 20001:1 20061:1 20066:1 20071:1 20075:1 20134:1 20141:1 20149:1 20177:1 20179:1 20205:1 20206:1 20210:1 20212:1 20240:1 20252:1 20316:1 20328:1 20334:1 20352:3 20368:1 20400:1 20417:1 20532:1 20546:1 20553:1 20556:1 20567:1 20588:1 20592:1 20633:1 20634:1 20647:1 20655:1 20656:2 20666:1 20719:1 20720:1 20754:1 20772:1 20779:2 20780:1 20796:1 20812:1 20844:2 20887:2 20900:2 20962:1 20963:1 20968:2 20991:1 21005:1 21029:1 21079:1 21130:1 21134:1 21150:3 21220:1 21234:1 21284:1 21309:1 21370:1 21434:1 21453:1 21462:1 21469:1 21479:1 21488:1 21501:1 21502:1 21512:1 21559:1 21613:2 21642:1 21650:1 21686:1 21694:1 21695:1 21733:1 21794:1 21846:1 21848:1 21864:1 21916:1 21930:1 22014:1 22019:1 22053:1 22074:1 22078:1 22088:1 22130:1 22136:1 22196:1 22230:1 22238:1 22282:1 22320:1 22328:2 22403:1 22435:2 22457:2 22467:1 22531:1 22564:1 22612:1 22626:1 22640:1 22646:1 22662:2 22675:1 22710:1 22718:3 22726:1 22739:1 22862:1 22868:1 22880:1 22907:1 22943:1 22946:1 23012:1 23024:1 23041:1 23077:2 23115:1 23130:1 23169:1 23197:1 23261:1 23291:2 23292:1 23426:1 23440:1 23505:1 23557:1 23700:1 23721:1 23739:2 23775:1 23826:1 23889:1 23895:1 23923:1 23932:1 24024:1 24027:1 24055:1 24092:1 24165:5 24233:1 24263:1 24272:1 24275:1 24285:1 24289:1 24310:1 24408:1 24416:1 24427:1 24443:1 24446:1 24471:1 24472:1 24479:1 24592:1 24600:1 24643:1 24653:1 24710:1 24713:1 24737:1 24747:1 24792:1 24830:1 24889:1 24917:1 24938:1 24944:1 24966:1 24994:1 25026:1 25032:1 25081:1 25125:2 25145:1 25185:2 25195:1 25200:1 25207:1 25213:1 25250:1 25255:1 25260:1 25330:1 25346:1 25370:1 25412:1 25487:1 25491:1 25532:1 25600:1 25630:1 25717:1 25793:1 25804:1 25809:1 25820:1 25841:1 25856:1 25871:3 25880:1 25881:1 25892:1 25905:1 25913:1 26005:1 26012:1 26015:3 26022:3 26054:1 26098:1 26174:1 26194:1 26214:1 26222:1 26229:1 26230:1 26265:1 26305:1 26306:1 26368:3 26527:1 26547:1 26557:1 26580:1 26655:1 26696:1 26710:1 26757:2 26787:1 26848:1 26855:1 26862:1 26883:1 26910:1 26923:1 26961:1 26978:1 26987:1 27031:2
1 13:1 47:1 50:1 55:1 120:1 138:1 144:1 157:1 233:1 238:1 280:1 306:1 315:2 317:1 327:3 334:1 346:1 372:1 382:1 395:5 397:1 446:1 532:1 544:2 604:1 723:1 764:1 789:3 794:1 802:1 822:3 826:1 837:2 873:3 874:2 875:3 880:1 882:1 894:1 912:2 915:2 926:1 953:2 1108:2 1109:1 1154:1 1158:1 1193:1 1195:1 1279:1 1292:1 1405:1 1419:1 1437:1 1448:1 1454:2 1456:2 1469:1 1501:1 1526:1 1530:1 1542:1 1553:1 1555:1 1559:1 1568:1 1584:1 1592:1 1600:1 1653:1 1675:1 1681:1 1684:1 1688:1 1696:2 1723:1 1724:2 1759:1 1807:1 1822:1 1866:1 1870:1 1897:1 1899:1 1931:1 1956:1 1978:1 1984:1 2027:4 2037:1 2046:1 2051:1 2092:1 2107:1 2126:2 2143:1 2148:1 2150:1 2157:2 2158:1 2170:1 2172:4 2173:2 2248:1 2257:1 2277:1 2294:1 2350:1 2360:1 2367:1 2413:1 2435:1 2439:1 2444:1 2445:1 2478:1 2483:1 2496:1 2505:1 2513:1 2526:1 2535:1 2545:1 2557:1 2562:3 2563:1 2591:1 2641:1 2654:2 2738:2 2749:1 2752:2 2773:2 2848:1 2856:1 2907:1 2918:2 2934:2 2948:1 3006:2 3027:1 3042:1 3089:1 3149:3 3328:1 3358:1 3362:1 3384:5 3399:1 3425:1 3479:1 3484:1 3493:1 3501:1 3548:1 3549:1 3559:1 3576:1 3596:1 3599:1 3608:1 3610:1 3626:1 3648:1 3668:1 3670:1 3687:1 3716:1 3734:1 3765:2 3766:2 3772:1 3810:2 3813:1 3837:1 3839:1 3864:1 3875:1 3910:1 3977:1 4008:1 4027:1 4045:1 4101:1 4104:1 4114:1 4133:1 4149:1 4156:2 4225:1 4249:1 4256:1 4355:1 4363:1 4371:1 4380:1 4397:1 4420:1 4443:2 4459:1 4565:2 4567:1 4574:1 4601:1 4684:1 4685:3 4687:1 4688:1 4695:1 4696:1 4698:1 4701:1 4704:1 4706:1 4716:2 4721:1 4764:1 4789:2 4891:1 4903:1 4930:1 5002:1 5008:1 5061:1 5088:1 5121:1 5140:1 5157:1 5171:1 5188:1 5197:1 5287:1 5298:1 5302:1 5313:1 5369:1 5394:4 5406:2 5483:1 5503:1 5509:1 5516:1 5538:1 5549:1 5610:1 5612:1 5619:1 5620:1 5636:1 5680:1 5692:1 5696:4 5715:1 5735:2 5761:1 5787:1 5812:3 5901:1 5906:1 5912:1 6051:1 6063:1 6115:1 6177:1 6191:1 6270:1 6292:1 6295:1 6301:1 6316:1 6327:1 6336:1 6338:1 6344:1 6378:1 6389:1 6426:1 6479:1 6491:1 6507:1 6525:1 6530:1 6537:1 6563:2 6569:1 6595:1 6596:1 6606:1 6657:1 6670:1 6702:1 6724:1 6765:1 6812:1 6875:1 6931:1 6945:1 6955:1 6971:1 6988:1 6989:1 7012:1 7020:1 7051:1 7081:1 7114:1 7120:1 7138:2 7153:1 7154:5 7165:1 7173:2 7176:2 7183:1 7199:1 7213:12 7220:1 7229:3 7231:2 7236:1 7270:1 7276:1 7278:1 7302:1 7307:1 7309:1 7320:1 7331:1 7380:2 7410:1 7440:1 7453:1 7483:1 7490:1 7608:1 7631:1 7643:1 7654:1 7677:1 7700:3 7706:1 7724:1 7729:1 7773:1 7777:1 7810:1 7827:1 7855:2 7860:2 7868:1 7896:1 7918:1 7920:1 7930:1 8034:1 8038:1 8041:1 8061:1 8122:1 8127:1 8191:1 8196:1 8233:1 8234:1 8271:1 8285:1 8316:1 8320:1 8324:1 8347:2 8361:1 8395:1 8407:1 8416:1 8429:1 8455:2 8477:1 8516:1 8589:1 8605:1 8609:2 8629:1 8661:1 8681:1 8692:1 8734:1 8771:1 8802:1 8807:1 8823:1 8858:1 8865:1 8905:1 8919:2 8956:1 9005:1 9024:1 9028:1 9061:1 9163:1 9186:1 9201:1 9210:1 9243:1 9248:1 9249:1 9289:1 9294:1 9296:1 9301:1 9318:2 9325:2 9327:1 9354:2 9434:1 9449:1 9485:1 9490:4 9497:1 9520:1 9588:2 9590:1 9665:2 9715:2 9720:1 9722:1 9729:1 9739:1 9742:1 9755:1 9769:1 9803:1 9823:1 9846:1 9864:1 9881:1 9886:1 9900:1 9926:1 9982:1 10047:1 10057:2 10080:1 10106:1 10140:1 10191:1 10224:1 10239:1 10240:2 10252:1 10264:1 10265:3 10268:1 10276:1 10282:1 10283:1 10288:1 10310:1 10336:1 10345:1 10373:1 10376:1 10406:1 10411:1 10424:1 10440:1 10556:1 10586:1 10592:1 10611:1 10627:1 10630:1 10635:1 10644:2 10646:1 10663:1 10667:1 10693:2 10718:1 10734:3 10746:1 10759:1 10799:1 10818:2 10831:1 10847:1 10859:1 10890:1 10934:1 10951:1 10962:1 10968:1 10988:1 11006:2 11009:1 11118:1 11166:1 11206:1 11214:1 11220:1 11283:1 11365:1 11381:1 11382:1 11394:1 11406:2 11415:1 11506:1 11520:1 11542:1 11547:1 11638:1 11662:1 11705:1 11720:2 11736:1 11774:1 11824:1 11882:2 11904:1 11983:1 12045:1 12091:1 12100:1 12110:1 12134:1 12208:1 12231:1 12252:1 12257:2 12290:1 12325:1 12346:1 12389:1 12400:1 12410:1 12436:1 12446:1 12452:1 12463:2 12533:1 12590:3 12633:1 12707:1 12728:1 12732:1 12741:2 12765:1 12787:1 12831:1 12887:1 12926:1 12929:1 12941:1 13005:4 13025:1 13064:1 13085:1 13131:1 13237:1 13261:2 13277:1 13383:2 13384:1 13404:1 13410:1 13442:1 13470:1 13499:1 13548:1 13563:2 13632:2 13637:1 13690:1 13720:1 13731:1 13768:1 13771:2 13804:1 13850:1 13891:1 13902:1 13977:1 13984:1 13998:1 14204:1 14211:1 14240:1 14270:1 14345:1 14387:1 14397:1 14424:2 14564:1 14575:1 14579:2 14593:1 14666:1 14703:1 14719:1 14726:1 14739:1 14764:2 14857:2 14876:2 14900:1 14904:1 14958:1 14962:1 14972:1 15029:1 15046:1 15052:1 15062:1 15064:1 15068:1 15074:2 15131:2 15133:1 15137:1 15140:1 15251:1 15288:1 15328:1 15370:1 15418:1 15434:1 15445:1 15446:1 15456:1 15470:3 15478:1 15501:1 15513:1 15522:1 15534:1 15544:1 15585:1 15613:2 15618:1 15671:1 15689:1 15706:1 15778:2 15823:1 15849:1 15898:1 15946:1 15980:1 15987:1 15992:1 16034:2 16039:1 16055:1 16072:1 16159:1 16183:1 16202:1 16212:1 16218:1 16232:3 16238:2 16293:1 16294:1 16305:1 16331:1 16368:1 16389:1 16428:1 16434:1 16451:1 16483:1 16508:1 16518:1 16557:1 16602:1 16616:1 16684:1 16710:1 16720:1 16740:1 16814:1 16815:1 16862:1 16879:1 16934:1 16937:1 16999:1 17050:1 17071:1 17087:5 17103:1 17184:1 17192:1 17243:1 17251:1 17276:659 17285:1 17289:1 17302:1 17351:1 17353:1 17467:1 17475:1 17495:1 17552:1 17592:1 17599:1 17684:2 17748:1 17754:1 17765:1 17795:1 17809:1 17836:1 17837:1 17862:1 17870:1 17896:1 17904:1 17951:1 17970:1 17992:1 17999:1 18011:1 18047:2 18052:1 18075:1 18101:1 18116:1 18123:1 18141:1 18159:1 18193:1 18234:1 18295:2 18297:1 18303:1 18308:1 18326:1 18332:1 18339:1 18343:1 18374:1 18381:1 18420:1 18422:1 18428:1 18501:1 18504:1 18536:1 18538:1 18564:1 18582:1 18598:1 18658:1 18707:1 18716:1 18735:1 18756:1 18838:1 18847:1 18868:1 18933:1 18941:1 18960:1 18962:1 18969:1 18996:3 19013:1 19039:1 19057:1 19085:1 19101:1 19133:1 19183:1 19201:1 19215:1 19245:1 19254:1 19279:1 19334:1 19349:1 19359:3 19391:1 19394:1 19421:1 19439:1 19459:2 19521:1 19522:1 19537:2 19547:1 19591:1 19627:1 19629:1 19633:1 19636:1 19757:1 19790:1 19791:1 19798:1 19806:1 19821:1 19830:1 19873:1 19880:1 19896:1 19921:1 19927:1 19934:1 19959:2 19960:1 19976:1 19978:2 19998:1 20001:1 20061:1 20066:1 20071:1 20075:1 20134:1 20141:1 20149:1 20177:1 20179:1 20205:1 20206:1 20210:1 20212:1 20240:1 20252:1 20316:2 20328:1 20334:1 20352:3 20368:1 20400:1 20417:1 20532:1 20546:1 20553:1 20556:1 20567:1 20588:1 20592:1 20633:1 20634:1 20647:1 20655:1 20656:2 20666:1 20692:1 20719:2 20720:1 20754:1 20772:1 20779:2 20780:1 20796:1 20812:1 20844:2 20879:1 20887:2 20900:2 20962:1 20963:1 20968:2 20991:1 21005:1 21029:1 21079:1 21116:1 21130:1 21134:2 21150:3 21176:1 21220:1 21234:1 21284:1 21309:1 21340:1 21370:1 21434:1 21453:1 21462:1 21469:1 21479:1 21488:1 21501:1 21502:1 21512:1 21559:1 21586:1 21613:2 21642:1 21650:1 21686:1 21694:1 21695:1 21733:1 21794:1 21800:1 21846:1 21848:1 21862:1 21864:1 21916:1 21930:1 22014:1 22019:1 22053:1 22074:1 22078:1 22088:1 22130:1 22136:1 22196:1 22230:1 22238:1 22282:2 22320:1 22328:2 22345:1 22403:1 22435:2 22457:2 22467:1 22531:1 22559:1 22564:1 22612:1 22626:1 22632:1 22640:1 22646:1 22662:2 22675:1 22710:1 22718:3 22726:1 22739:1 22862:1 22868:1 22880:1 22886:1 22907:1 22943:1 22946:1 22974:1 23012:1 23024:1 23041:1 23077:2 23115:1 23130:1 23158:1 23169:1 23197:1 23217:1 23261:1 23291:2 23292:1 23426:1 23440:1 23505:1 23557:1 23635:1 23700:1 23721:1 23739:2 23775:1 23786:1 23826:1 23889:1 23895:1 23923:1 23932:1 24024:1 24025:1 24027:1 24055:1 24092:1 24161:1 24165:5 24233:1 24251:1 24263:1 24272:1 24275:2 24285:1 24289:1 24310:1 24408:1 24416:1 24427:2 24443:1 24446:1 24471:1 24472:1 24479:1 24592:1 24600:1 24643:1 24653:1 24658:1 24710:1 24713:1 24720:1 24737:1 24747:1 24792:1 24830:1 24889:1 24917:1 24938:1 24944:1 24966:1 24972:1 24994:1 25022:1 25026:1 25032:1 25081:1 25125:2 25145:1 25185:2 25195:1 25200:1 25207:1 25213:1 25250:1 25255:1 25260:1 25267:1 25330:1 25346:1 25370:1 25412:1 25487:1 25491:2 25532:1 25600:1 25630:1 25644:1 25717:1 25793:1 25804:1 25808:1 25809:1 25820:1 25822:1 25841:1 25856:1 25871:3 25880:1 25881:1 25892:1 25905:1 25909:1 25913:1 26005:1 26012:1 26015:3 26022:3 26054:1 26098:1 26174:1 26194:1 26214:1 26222:1 26229:1 26230:1 26265:1 26305:1 26306:1 26368:3 26527:1 26547:1 26557:1 26580:1 26655:1 26696:1 26710:1 26745:1 26757:2 26787:1 26848:1 26855:1 26862:1 26879:1 26883:1 26910:1 26923:1 26961:1 26978:1 26987:1 27031:2
1 13:1 47:1 50:1 55:1 89:1 120:1 138:1 144:1 157:1 182:1 233:1 238:1 280:1 306:1 315:2 317:1 327:3 334:1 346:1 372:1 382:1 395:5 397:1 445:1 446:1 532:1 544:2 604:1 723:1 751:1 764:1 789:3 794:1 802:1 822:3 826:1 837:2 873:3 874:2 875:3 878:1 880:1 882:1 894:2 912:2 915:2 926:1 953:2 1017:1 1108:3 1109:1 1154:1 1158:1 1193:1 1195:1 1279:1 1292:1 1405:1 1419:1 1437:1 1448:2 1454:2 1456:2 1469:1 1501:1 1526:1 1530:1 1542:1 1553:1 1555:1 1559:1 1568:1 1584:1 1592:1 1600:1 1653:2 1675:1 1681:1 1684:1 1688:1 1696:2 1723:1 1724:2 1759:1 1807:1 1822:2 1866:1 1870:1 1897:1 1899:1 1931:1 1956:1 1976:1 1978:1 1984:1 2027:4 2037:1 2046:1 2051:1 2092:1 2103:1 2107:1 2126:2 2143:1 2148:1 2150:1 2157:2 2158:1 2170:1 2172:5 2173:2 2248:1 2257:1 2277:1 2294:1 2350:1 2360:1 2367:1 2413:1 2417:1 2435:1 2439:1 2444:1 2445:1 2478:1 2479:1 2483:1 2496:1 2505:1 2513:1 2526:1 2535:2 2545:1 2557:1 2562:3 2563:2 2591:1 2641:1 2654:2 2738:2 2749:1 2752:2 2773:2 2774:1 2779:1 2839:1 2848:1 2856:1 2907:1 2918:2 2934:2 2948:1 3006:2 3027:1 3042:1 3089:1 3149:4 3328:1 3358:1 3362:1 3384:7 3399:1 3405:1 3425:1 3479:1 3484:1 3493:1 3501:1 3548:1 3549:1 3552:1 3559:1 3576:1 3596:1 3599:1 3608:1 3610:1 3626:1 3648:1 3668:1 3670:1 3673:1 3687:1 3700:1 3716:2 3734:1 3765:2 3766:2 3772:1 3808:1 3810:2 3813:1 3837:1 3839:1 3864:1 3875:1 3910:1 3977:1 4008:1 4027:1 4045:4 4101:1 4104:1 4114:1 4133:1 4149:1 4156:2 4225:1 4249:1 4256:1 4276:1 4355:1 4363:1 4371:1 4380:1 4397:1 4420:1 4443:2 4459:1 4565:2 4567:1 4574:1 4601:1 4684:1 4685:3 4687:2 4688:1 4695:1 4696:1 4698:1 4701:1 4703:1 4704:1 4706:1 4709:1 4716:2 4721:1 4764:1 4789:2 4891:1 4903:1 4930:1 5002:1 5008:1 5061:1 5088:2 5121:1 5140:1 5157:1 5171:1 5188:1 5197:1 5220:1 5284:1 5287:1 5298:2 5302:1 5313:1 5317:1 5369:2 5394:4 5406:2 5468:1 5483:1 5503:1 5509:1 5516:1 5538:1 5549:1 5590:1 5610:1 5612:1 5619:1 5620:1 5636:1 5680:1 5692:1 5696:4 5715:1 5735:2 5761:1 5787:1 5812:3 5901:1 5906:1 5912:1 6051:1 6063:1 6115:1 6177:1 6191:1 6270:1 6292:1 6295:1 6301:1 6316:2 6327:1 6336:1 6338:1 6344:1 6355:1 6378:1 6389:1 6426:1 6442:1 6479:1 6491:1 6507:1 6525:1 6530:1 6537:1 6563:3 6569:1 6595:1 6596:1 6606:1 6623:1 6657:1 6670:1 6702:1 6724:1 6765:1 6812:1 6875:1 6931:1 6945:1 6955:1 6971:1 6988:1 6989:1 7012:1 7020:1 7045:1 7051:1 7081:1 7114:1 7120:1 7138:2 7153:1 7154:5 7165:1 7173:2 7176:2 7183:1 7199:1 7213:13 7220:1 7229:3 7231:2 7236:1 7270:1 7276:1 7278:1 7302:1 7307:1 7309:1 7320:1 7331:1 7380:2 7410:1 7440:1 7453:1 7483:1 7490:1 7608:1 7631:1 7643:1 7654:1 7677:1 7700:3 7706:1 7724:1 7729:1 7773:1 7777:1 7810:1 7825:1 7827:1 7855:2 7860:2 7868:1 7894:1 7896:1 7918:1 7920:1 7930:1 8034:1 8038:1 8041:1 8061:1 8087:1 8122:1 8127:1 8191:1 8196:1 8233:1 8234:1 8271:1 8285:1 8316:1 8320:1 8324:1 8347:2 8361:1 8395:1 8407:1 8416:1 8423:1 8429:1 8455:2 8477:1 8516:2 8589:1 8603:1 8605:1 8609:2 8629:1 8661:1 8681:1 8692:1 8734:1 8771:1 8802:1 8807:1 8823:1 8858:1 8865:1 8901:1 8905:1 8919:3 8956:1 9005:1 9024:1 9028:1 9061:1 9163:1 9186:1 9201:1 9210:1 9243:1 9248:1 9249:1 9289:1 9294:1 9296:1 9301:1 9318:2 9325:2 9327:1 9354:2 9434:1 9449:1 9485:1 9490:4 9497:1 9520:1 9588:2 9590:1 9651:1 9665:2 9715:3 9720:1 9722:1 9729:1 9739:1 9742:1 9747:1 9755:1 9769:1 9803:1 9823:1 9846:1 9864:1 9881:1 9886:2 9900:1 9926:1 9982:1 10047:1 10057:2 10080:1 10106:1 10140:1 10191:1 10224:1 10239:1 10240:2 10252:1 10264:1 10265:4 10268:1 10276:1 10282:1 10283:1 10288:1 10310:1 10336:2 10345:1 10372:1 10373:1 10376:1 10406:1 10411:1 10424:1 10440:1 10515:1 10556:1 10586:1 10592:1 10611:1 10627:1 10630:1 10635:1 10644:2 10646:1 10663:2 10667:1 10693:2 10718:1 10734:3 10746:1 10759:1 10799:1 10818:2 10831:1 10847:1 10859:1 10890:1 10934:1 10951:1 10962:1 10968:1 10988:1 11006:2 11009:1 11118:1 11166:1 11184:1 11206:1 11214:1 11220:1 11283:1 11365:1 11381:1 11382:1 11394:1 11406:2 11415:1 11478:1 11506:1 11520:1 11542:1 11547:1 11638:1 11662:1 11705:1 11720:2 11736:1 11774:1 11824:1 11882:2 11904:1 11983:1 12045:1 12091:1 12100:1 12110:1 12134:1 12151:1 12208:1 12231:1 12252:1 12257:2 12290:1 12306:1 12325:1 12346:1 12389:1 12400:1 12410:1 12436:1 12446:1 12452:1 12463:2 12506:1 12533:1 12590:3 12633:1 12705:1 12707:1 12728:1 12732:1 12741:3 12765:1 12787:1 12831:1 12887:2 12926:1 12929:1 12941:1 12960:1 12986:1 13005:5 13025:1 13064:1 13085:1 13131:1 13237:1 13261:3 13277:1 13320:1 13383:2 13384:1 13404:1 13410:1 13442:1 13470:1 13499:1 13524:1 13548:1 13563:2 13632:2 13637:1 13690:1 13720:1 13731:1 13768:1 13771:2 13804:1 13850:1 13891:1 13892:1 13902:1 13977:1 13984:1 13998:1 14204:1 14211:1 14240:1 14245:1 14248:1 14270:1 14345:1 14387:1 14397:1 14424:2 14564:1 14575:1 14579:2 14593:1 14658:1 14666:1 14703:1 14719:1 14726:1 14739:1 14764:2 14857:2 14876:2 14900:1 14904:1 14958:1 14962:2 14972:2 15029:1 15046:1 15052:1 15062:1 15064:1 15068:1 15074:2 15131:2 15133:1 15137:1 15140:1 15206:1 15251:1 15288:1 15328:1 15370:1 15418:1 15434:1 15445:1 15446:1 15455:1 15456:1 15470:3 15478:1 15501:1 15513:1 15522:1 15534:1 15544:1 15585:1 15613:2 15618:1 15671:1 15689:1 15706:1 15778:2 15823:1 15849:1 15898:1 15946:1 15980:1 15987:1 15992:1 16034:2 16039:1 16055:1 16072:1 16159:1 16183:1 16202:1 16212:1 16218:1 16232:3 16238:2 16293:1 16294:1 16305:1 16331:1 16368:1 16389:1 16428:1 16434:1 16451:1 16483:1 16508:1 16518:1 16557:1 16594:1 16602:1 16616:1 16684:1 16710:1 16720:1 16740:1 16814:1 16815:1 16862:1 16879:1 16934:1 16937:1 16951:1 16999:1 17050:1 17071:1 17087:5 17103:1 17184:1 17192:1 17243:1 17251:1 17276:683 17285:1 17289:1 17302:1 17351:1 17353:1 17467:1 17475:1 17495:1 17552:1 17592:1 17599:1 17684:2 17748:1 17754:1 17765:1 17795:1 17809:1 17836:1 17837:2 17862:1 17870:1 17896:1 17904:1 17951:1 17970:1 17992:1 17999:1 18011:1 18047:2 18052:1 18054:1 18075:1 18101:1 18116:1 18123:1 18141:1 18159:1 18193:1 18234:1 18240:1 18295:2 18297:1 18303:1 18308:1 18326:1 18332:1 18339:1 18343:1 18374:1 18381:1 18420:1 18422:1 18428:1 18501:1 18504:1 18536:1 18538:1 18564:1 18582:1 18598:1 18604:1 18658:1 18707:1 18716:1 18735:1 18756:1 18838:1 18847:1 18848:1 18868:1 18933:1 18941:1 18960:1 18962:1 18969:1 18996:3 19013:1 19039:1 19057:1 19085:1 19101:2 19133:1 19183:1 19190:1 19201:1 19215:1 19245:1 19254:1 19279:1 19331:1 19334:1 19349:1 19359:3 19391:1 19394:1 19421:1 19439:1 19459:2 19521:1 19522:1 19537:2 19547:1 19591:1 19627:1 19629:1 19633:1 19636:1 19757:1 19785:1 19790:1 19791:1 19798:1 19806:1 19821:1 19830:1 19873:1 19880:1 19896:1 19921:1 19927:1 19934:1 19959:2 19960:1 19976:1 19978:2 19998:1 20001:1 20017:1 20061:1 20066:1 20071:1 20075:1 20125:1 20134:1 20141:1 20149:1 20151:1 20177:1 20179:1 20205:1 20206:1 20210:1 20212:1 20240:1 20252:1 20316:3 20325:1 20326:1 20328:1 20334:1 20352:3 20368:1 20400:1 20417:1 20532:1 20546:1 20553:1 20556:1 20567:1 20572:1 20588:1 20592:1 20633:1 20634:1 20647:1 20655:1 20656:2 20666:1 20692:1 20719:4 20720:1 20754:1 20772:1 20779:2 20780:1 20796:1 20812:1 20844:2 20879:1 20887:2 20900:2 20962:1 20963:1 20968:2 20991:1 21005:1 21029:1 21079:1 21116:1 21130:1 21134:2 21150:3 21163:1 21176:1 21220:1 21234:1 21284:1 21309:1 21340:1 21370:1 21434:1 21453:1 21462:1 21469:1 21479:1 21488:1 21501:1 21502:1 21512:1 21559:1 21586:1 21613:2 21642:1 21650:1 21686:1 21694:1 21695:1 21733:1 21772:1 21794:1 21800:1 21846:1 21848:1 21862:2 21864:1 21916:1 21930:1 22014:1 22019:1 22053:1 22074:1 22078:1 22088:1 22130:1 22136:1 22196:1 22230:1 22238:1 22282:2 22320:1 22328:2 22345:1 22403:1 22412:1 22435:2 22457:2 22467:1 22531:1 22559:1 22564:1 22612:1 22626:1 22632:1 22640:1 22646:1 22662:2 22675:1 22710:1 22718:3 22726:1 22739:1 22862:1 22868:1 22880:1 22886:1 22907:1 22943:1 22946:1 22974:1 23012:1 23024:1 23041:1 23077:2 23115:1 23130:1 23139:1 23158:1 23161:1 23169:1 23197:1 23217:1 23261:1 23291:2 23292:1 23375:1 23426:1 23440:1 23505:1 23557:1 23635:1 23700:1 23721:1 23739:2 23775:1 23786:1 23826:1 23889:1 23895:1 23923:1 23932:1 24024:1 24025:1 24027:1 24055:1 24092:2 24149:1 24161:1 24165:5 24233:1 24251:1 24263:1 24272:1 24275:3 24285:1 24289:1 24310:1 24408:1 24416:1 24427:2 24443:4 24446:1 24471:1 24472:1 24479:1 24521:1 24592:1 24600:1 24643:1 24653:1 24658:1 24710:1 24713:1 24720:1 24737:1 24747:1 24792:1 24830:1 24889:1 24917:1 24938:1 24944:1 24966:1 24972:1 24994:1 25022:1 25026:1 25031:1 25032:1 25081:1 25125:2 25145:1 25185:2 25195:1 25200:1 25207:1 25213:1 25250:1 25255:1 25260:1 25267:1 25281:1 25330:1 25346:1 25370:1 25412:1 25487:1 25491:2 25532:1 25600:1 25630:1 25644:1 25717:1 25793:1 25804:1 25808:1 25809:1 25820:1 25822:1 25841:1 25856:1 25871:3 25880:1 25881:1 25892:1 25905:1 25909:1 25913:1 26005:1 26012:1 26015:3 26022:3 26054:1 26067:1 26098:1 26174:1 26194:1 26214:1 26221:1 26222:1 26229:1 26230:1 26265:1 26305:1 26306:1 26368:3 26527:1 26547:1 26557:1 26580:1 26655:1 26664:1 26696:1 26710:1 26733:1 26745:1 26757:2 26787:1 26793:1 26832:1 26848:1 26855:1 26862:1 26879:1 26883:1 26910:1 26923:1 26961:2 26978:1 26987:1 27031:2
1 13:1 47:1 50:1 55:1 89:1 120:1 138:2 144:1 157:1 182:1 233:1 238:1 264:1 280:1 306:1 315:2 317:1 327:3 334:3 346:1 362:1 372:1 382:1 395:5 397:2 445:1 446:1 532:1 544:2 568:1 604:1 683:1 723:1 751:1 764:1 789:3 794:1 802:2 822:4 826:1 837:2 854:1 873:3 874:2 875:4 878:1 880:2 882:1 894:2 912:2 915:2 926:1 953:2 1017:1 1108:3 1109:1 1125:1 1154:1 1158:1 1193:1 1195:1 1266:1 1279:1 1292:1 1316:1 1324:1 1346:1 1405:1 1419:1 1437:1 1448:2 1454:2 1456:2 1469:1 1501:1 1526:1 1530:1 1542:2 1553:1 1555:1 1559:1 1568:1 1571:1 1584:1 1592:1 1600:1 1653:2 1675:1 1681:1 1684:2 1687:1 1688:1 1696:3 1723:1 1724:2 1759:1 1807:1 1809:1 1822:2 1866:1 1870:1 1897:1 1899:1 1931:1 1956:1 1976:1 1978:1 1984:1 2004:1 2027:5 2037:1 2046:1 2051:1 2092:1 2103:1 2107:1 2126:2 2143:1 2148:1 2150:1 2157:2 2158:1 2159:1 2167:2 2170:1 2172:5 2173:2 2226:1 2248:1 2257:1 2275:1 2277:1 2294:1 2350:1 2360:1 2367:1 2405:1 2413:1 2417:1 2435:1 2439:1 2444:1 2445:1 2478:1 2479:1 2483:1 2496:1 2505:1 2513:1 2526:1 2529:2 2535:2 2545:1 2557:1 2562:3 2563:2 2589:1 2591:1 2641:1 2654:2 2671:1 2716:1 2738:2 2749:1 2752:2 2773:2 2774:1 2779:1 2839:1 2848:1 2856:1 2907:1 2918:3 2934:2 2948:1 3006:2 3014:1 3027:1 3042:1 3089:1 3149:5 3277:1 3291:1 3328:1 3358:1 3362:1 3384:7 3399:1 3403:1 3405:1 3425:1 3479:1 3484:1 3493:1 3501:1 3548:1 3549:1 3552:1 3559:1 3565:1 3576:1 3596:1 3599:1 3603:1 3608:1 3610:1 3626:1 3648:1 3668:1 3670:1 3673:1 3687:1 3700:1 3716:2 3734:1 3765:2 3766:2 3772:1 3808:1 3810:2 3813:1 3818:1 3837:1 3839:1 3864:1 3875:1 3891:1 3910:1 3977:1 4008:1 4027:1 4045:4 4101:1 4104:1 4114:1 4133:1 4149:1 4156:2 4202:1 4225:2 4249:1 4256:1 4276:1 4355:1 4363:1 4371:1 4380:1 4397:1 4420:1 4443:2 4459:1 4469:1 4565:3 4567:1 4574:1 4601:1 4684:1 4685:3 4687:2 4688:1 4690:1 4695:1 4696:1 4698:1 4701:1 4703:1 4704:1 4706:1 4709:1 4716:3 4721:1 4764:1 4789:2 4891:1 4903:1 4930:1 5002:1 5008:1 5061:1 5088:2 5121:1 5140:1 5157:1 5171:1 5188:1 5197:1 5220:1 5284:1 5287:1 5298:2 5302:1 5313:1 5316:1 5317:1 5321:1 5369:2 5394:4 5406:2 5468:1 5483:1 5503:1 5509:1 5516:1 5538:1 5549:1 5590:1 5610:1 5612:1 5619:1 5620:1 5636:1 5680:1 5692:1 5693:1 5696:5 5715:1 5735:2 5761:1 5787:1 5812:3 5890:1 5897:1 5901:1 5906:1 5912:1 6046:1 6051:1 6052:1 6063:1 6115:1 6177:1 6191:1 6270:1 6292:1 6295:1 6301:1 6316:2 6323:1 6327:1 6336:1 6338:1 6344:1 6355:1 6378:1 6389:1 6426:2 6442:1 6479:1 6491:1 6507:1 6525:1 6529:1 6530:1 6537:1 6563:4 6569:1 6595:1 6596:1 6606:1 6609:1 6623:1 6631:1 6657:1 6670:1 6702:1 6724:1 6752:1 6765:1 6812:1 6875:1 6931:1 6945:1 6955:1 6971:1 6988:1 6989:2 7002:1 7012:1 7020:1 7045:1 7051:1 7081:1 7114:1 7120:1 7138:2 7153:1 7154:5 7165:1 7170:1 7173:2 7176:2 7183:1 7198:1 7199:1 7213:15 7220:1 7229:4 7231:2 7236:1 7270:1 7276:1 7278:1 7301:2 7302:1 7307:1 7309:1 7320:1 7331:1 7358:1 7380:2 7410:1 7440:1 7453:1 7483:1 7490:1 7559:1 7608:1 7631:1 7643:1 7654:1 7677:1 7700:4 7706:1 7724:1 7729:1 7773:1 7777:1 7781:1 7810:1 7825:2 7827:1 7855:3 7860:2 7868:1 7894:1 7896:1 7918:1 7920:1 7930:1 8034:1 8038:1 8041:1 8061:1 8076:1 8087:1 8122:1 8127:1 8162:1 8191:1 8196:1 8233:1 8234:1 8244:1 8271:1 8272:1 8285:1 8293:1 8316:1 8320:1 8324:1 8347:2 8361:1 8395:1 8407:1 8416:1 8423:1 8425:1 8429:1 8455:2 8477:1 8516:2 8566:1 8570:1 8589:1 8603:1 8605:1 8609:2 8629:1 8661:1 8681:1 8683:1 8692:1 8734:1 8771:1 8795:1 8802:1 8807:1 8823:1 8858:1 8865:1 8901:1 8905:1 8919:5 8956:1 9005:1 9024:1 9028:1 9061:1 9163:1 9186:1 9201:1 9210:1 9243:1 9248:1 9249:1 9289:1 9294:1 9296:1 9301:1 9318:2 9325:3 9327:1 9354:2 9398:1 9434:1 9449:2 9485:1 9490:5 9493:1 9497:1 9520:1 9588:2 9590:1 9628:1 9646:1 9649:1 9651:1 9665:2 9702:1 9715:3 9720:1 9722:1 9729:1 9739:1 9742:1 9747:1 9755:1 9769:1 9771:1 9803:1 9819:1 9823:1 9846:1 9864:1 9881:1 9886:2 9900:2 9926:1 9982:1 9991:1 10047:1 10057:2 10080:1 10106:1 10140:1 10191:1 10224:1 10239:1 10240:2 10252:1 10264:1 10265:5 10268:1 10276:1 10282:1 10283:1 10288:1 10310:1 10336:2 10345:1 10372:1 10373:1 10376:1 10406:1 10411:1 10424:1 10440:1 10515:1 10556:1 10586:1 10592:1 10611:1 10627:1 10630:1 10635:1 10644:2 10646:1 10663:2 10667:1 10693:2 10694:1 10718:1 10734:3 10746:1 10756:1 10759:1 10799:1 10818:2 10831:1 10847:1 10859:1 10890:1 10932:1 10934:1 10951:1 10962:1 10968:1 10988:1 11006:2 11009:1 11118:1 11166:1 11184:1 11206:1 11214:1 11220:1 11283:1 11365:1 11381:1 11382:1 11394:1 11406:2 11412:1 11415:1 11478:1 11506:1 11520:1 11542:1 11547:1 11638:1 11662:1 11705:1 11718:1 11720:2 11736:1 11774:1 11824:1 11882:2 11904:1 11983:1 12045:1 12091:1 12100:1 12110:1 12134:1 12151:1 12208:1 12231:1 12252:1 12254:1 12257:2 12290:1 12306:1 12325:1 12346:1 12389:1 12400:1 12410:1 12413:1 12436:1 12437:1 12446:1 12452:1 12463:4 12506:1 12533:1 12559:1 12590:3 12633:1 12685:1 12705:1 12707:1 12728:1 12732:1 12741:5 12765:1 12787:1 12831:1 12887:2 12926:1 12929:1 12941:1 12960:1 12986:1 13005:6 13025:2 13064:1 13085:1 13103:1 13131:1 13161:1 13237:1 13261:3 13277:1 13320:1 13383:2 13384:1 13404:1 13410:1 13442:1 13470:1 13499:1 13524:1 13548:1 13563:2 13632:2 13637:1 13680:1 13690:1 13720:1 13731:1 13768:1 13771:2 13804:1 13807:1 13850:1 13891:1 13892:2 13902:1 13977:1 13984:1 13998:1 14155:1 14204:1 14211:1 14226:1 14240:1 14245:1 14248:1 14270:1 14274:1 14345:1 14387:1 14397:1 14424:2 14486:1 14564:1 14575:1 14579:2 14593:1 14609:1 14658:1 14666:1 14703:1 14719:2 14726:1 14739:1 14764:2 14847:1 14857:4 14872:1 14876:2 14900:1 14904:1 14958:1 14962:2 14972:2 15029:1 15046:1 15052:1 15062:1 15064:1 15068:1 15074:2 15117:1 15131:2 15133:1 15137:1 15140:1 15143:1 15206:1 15232:1 15251:1 15255:1 15288:1 15328:1 15370:1 15418:1 15434:1 15445:1 15446:1 15455:1 15456:1 15470:3 15478:1 15501:1 15513:1 15522:1 15534:1 15544:1 15585:1 15613:3 15618:1 15671:1 15678:1 15689:1 15706:1 15778:2 15823:1 15849:1 15898:1 15946:1 15980:1 15987:1 15992:1 16034:2 16039:1 16055:1 16072:1 16116:1 16159:1 16163:1 16183:1 16202:1 16212:1 16218:1 16232:3 16238:2 16293:1 16294:1 16305:1 16316:1 16331:1 16368:1 16389:1 16428:1 16434:1 16451:1 16483:1 16508:1 16518:1 16557:1 16594:1 16602:1 16616:1 16684:1 16710:1 16720:1 16740:1 16814:1 16815:1 16833:1 16862:1 16879:1 16934:1 16937:1 16951:1 16999:1 17050:1 17071:1 17087:5 17097:1 17103:1 17184:1 17192:1 17204:1 17243:1 17251:1 17276:769 17285:1 17289:1 17302:1 17351:1 17353:1 17467:1 17475:1 17495:1 17552:1 17592:1 17599:1 17684:2 17697:1 17717:1 17748:1 17754:1 17765:1 17787:1 17795:1 17809:1 17836:1 17837:2 17855:1 17862:1 17870:1 17895:1 17896:1 17904:1 17951:1 17966:1 17970:1 17992:2 17999:1 18011:1 18047:2 18052:1 18054:1 18075:1 18101:1 18116:1 18123:1 18141:1 18159:1 18187:1 18193:1 18234:1 18240:1 18271:1 18282:1 18295:2 18297:1 18303:1 18308:1 18326:1 18332:1 18339:1 18343:1 18374:1 18381:1 18420:1 18422:1 18428:1 18501:1 18503:1 18504:1 18529:1 18536:1 18538:1 18548:1 18556:2 18564:1 18582:1 18598:1 18604:1 18638:1 18658:1 18665:1 18690:1 18707:1 18716:1 18735:1 18756:1 18821:1 18838:1 18847:1 18848:1 18868:1 18933:1 18937:1 18941:1 18960:1 18962:1 18969:1 18996:4 19013:1 19039:1 19057:1 19085:1 19101:2 19133:1 19183:1 19190:1 19201:2 19215:1 19245:1 19254:1 19279:1 19311:1 19331:1 19334:1 19349:1 19359:3 19391:1 19394:1 19421:1 19439:1 19459:2 19521:1 19522:1 19537:2 19547:1 19564:1 19591:1 19627:1 19629:1 19633:1 19636:2 19697:1 19757:1 19785:1 19790:1 19791:1 19798:1 19806:1 19821:1 19830:1 19873:1 19880:1 19896:1 19921:1 19927:1 19934:1 19959:2 19960:1 19976:1 19978:2 19989:1 19998:1 20001:1 20017:1 20028:1 20061:1 20066:1 20071:1 20075:1 20125:1 20134:1 20141:1 20149:1 20151:1 20177:1 20179:1 20205:1 20206:1 20210:1 20212:1 20240:1 20252:1 20316:3 20325:1 20326:1 20328:1 20334:1 20352:3 20368:1 20400:1 20417:1 20481:1 20503:1 20524:1 20532:1 20546:1 20553:1 20556:1 20567:1 20572:1 20588:1 20592:1 20633:1 20634:1 20647:1 20655:1 20656:2 20662:1 20666:1 20692:1 20719:4 20720:1 20733:1 20754:1 20772:1 20779:2 20780:1 20796:1 20812:1 20844:2 20879:1 20887:3 20900:2 20905:1 20962:1 20963:1 20968:2 20991:1 21005:1 21029:1 21079:1 21116:1 21130:1 21134:2 21150:3 21163:1 21176:1 21220:1 21234:1 21284:1 21303:1 21309:1 21311:1 21340:1 21370:1 21434:1 21453:1 21462:1 21469:1 21479:1 21488:1 21501:1 21502:1 21512:1 21559:1 21586:1 21613:2 21642:1 21650:1 21686:1 21694:1 21695:1 21733:1 21772:1 21777:1 21794:1 21800:1 21846:1 21848:1 21862:2 21864:1 21916:1 21917:1 21930:1 22014:1 22019:1 22053:1 22074:1 22078:1 22088:1 22130:1 22136:1 22196:1 22230:1 22238:1 22282:2 22320:1 22328:2 22345:1 22403:1 22412:1 22435:2 22457:2 22467:1 22531:1 22559:1 22564:1 22578:1 22612:1 22626:1 22632:1 22640:1 22646:1 22662:2 22675:1 22710:1 22718:3 22726:1 22739:1 22862:1 22868:1 22880:1 22886:1 22907:1 22943:1 22946:1 22974:1 22992:1 23012:1 23024:1 23041:1 23077:2 23115:1 23130:1 23139:1 23158:1 23161:1 23169:1 23170:1 23197:1 23217:1 23261:1 23291:2 23292:1 23316:1 23375:1 23426:1 23440:1 23505:1 23532:1 23557:1 23635:2 23700:1 23721:1 23739:2 23775:1 23786:1 23826:1 23889:1 23895:1 23923:1 23932:1 24024:1 24025:1 24027:1 24055:1 24092:2 24149:1 24161:1 24165:5 24233:1 24251:1 24263:1 24272:1 24275:3 24285:1 24286:3 24289:1 24310:1 24372:1 24408:1 24416:1 24424:1 24427:2 24443:4 24446:1 24471:1 24472:1 24479:1 24521:1 24592:1 24600:1 24643:1 24653:1 24658:1 24710:1 24713:1 24720:1 24721:1 24737:1 24747:1 24773:1 24792:1 24830:1 24889:1 24917:1 24938:1 24944:1 24966:1 24972:1 24994:1 25019:1 25022:1 25026:1 25031:1 25032:1 25081:1 25125:3 25145:1 25185:2 25195:1 25200:1 25207:1 25213:1 25250:1 25255:1 25256:1 25260:1 25267:1 25281:1 25330:1 25346:1 25370:1 25412:1 25454:1 25487:1 25491:2 25532:1 25600:1 25630:1 25644:1 25702:1 25717:1 25793:2 25804:1 25808:1 25809:1 25820:1 25822:1 25828:1 25841:1 25856:1 25871:3 25880:1 25881:1 25892:1 25905:1 25909:1 25913:1 26005:1 26012:1 26015:3 26022:3 26028:1 26054:1 26067:1 26098:1 26174:1 26194:1 26214:1 26221:1 26222:1 26229:1 26230:2 26265:1 26301:1 26305:1 26306:1 26368:3 26527:1 26544:1 26547:1 26557:1 26580:1 26655:1 26664:2 26696:1 26710:1 26733:1 26745:1 26757:2 26759:1 26787:1 26793:1 26832:1 26848:1 26855:1 26862:1 26879:1 26883:2 26910:1 26923:1 26961:2 26978:1 26987:1 26990:1 27031:2
1 13:1 47:1 50:1 55:1 89:1 120:1 138:2 144:1 157:1 182:2 233:1 238:1 264:1 280:1 306:1 315:2 317:1 327:3 334:3 346:2 362:1 372:1 382:1 395:5 397:2 445:1 446:1 532:1 544:2 568:1 604:1 683:1 723:1 751:1 764:1 789:3 794:1 802:3 822:4 826:1 837:2 854:1 873:3 874:2 875:4 878:1 880:2 882:1 894:2 912:2 915:2 926:1 953:2 1017:1 1108:3 1109:1 1116:1 1125:1 1154:1 1158:1 1193:1 1195:1 1266:1 1279:1 1292:1 1316:1 1324:1 1346:1 1405:1 1419:1 1437:1 1448:2 1454:2 1456:2 1469:1 1501:1 1514:1 1526:1 1530:1 1542:2 1553:1 1555:1 1559:1 1568:1 1571:1 1584:1 1592:1 1600:1 1653:2 1675:1 1681:1 1684:2 1687:1 1688:1 1696:4 1723:1 1724:2 1759:1 1807:1 1809:1 1822:2 1866:1 1870:1 1892:1 1897:1 1899:1 1907:1 1925:1 1931:1 1956:1 1976:1 1978:1 1984:1 1990:1 2004:1 2027:5 2037:1 2046:1 2051:1 2092:1 2103:1 2107:1 2123:1 2126:2 2143:1 2148:2 2150:1 2157:2 2158:1 2159:1 2167:2 2170:1 2172:5 2173:2 2185:1 2226:1 2248:1 2257:1 2275:1 2277:1 2294:1 2342:1 2350:1 2360:1 2367:1 2405:1 2413:1 2417:1 2435:2 2439:1 2444:1 2445:1 2457:1 2478:1 2479:1 2483:1 2496:1 2505:1 2513:2 2526:1 2529:2 2535:2 2545:1 2557:1 2562:3 2563:2 2589:1 2591:1 2641:1 2654:2 2662:1 2671:1 2716:1 2738:2 2749:1 2752:2 2773:2 2774:1 2779:1 2839:1 2848:1 2856:1 2907:1 2917:1 2918:3 2934:2 2948:1 3006:2 3014:1 3027:1 3042:2 3089:1 3149:6 3277:1 3291:1 3328:1 3358:2 3362:1 3384:7 3399:1 3403:1 3405:1 3425:1 3479:1 3484:1 3493:1 3501:1 3548:1 3549:1 3552:1 3559:1 3565:1 3576:1 3596:1 3599:1 3603:1 3608:1 3610:1 3626:1 3648:1 3668:1 3670:1 3673:1 3687:1 3700:1 3716:2 3734:1 3765:2 3766:2 3772:1 3808:1 3810:2 3813:1 3818:1 3837:1 3839:1 3864:1 3875:1 3891:1 3910:1 3937:1 3977:1 4008:1 4027:1 4045:4 4101:1 4104:1 4114:1 4133:1 4149:1 4156:2 4177:1 4202:1 4225:2 4249:1 4256:1 4276:1 4355:1 4363:1 4371:1 4380:1 4397:1 4420:1 4443:2 4456:1 4459:1 4469:1 4523:1 4565:3 4567:1 4574:1 4601:1 4684:1 4685:3 4687:2 4688:1 4690:1 4695:1 4696:1 4698:1 4701:1 4703:1 4704:1 4706:1 4709:1 4716:3 4721:1 4764:1 4789:2 4891:1 4903:1 4930:1 5002:1 5008:1 5061:1 5088:2 5101:1 5121:1 5140:1 5157:1 5171:1 5188:1 5197:1 5220:1 5284:1 5287:1 5298:2 5302:1 5313:1 5316:1 5317:1 5321:1 5369:2 5394:4 5406:2 5468:1 5483:1 5503:1 5509:1 5516:1 5522:1 5538:1 5549:1 5590:1 5610:1 5612:1 5619:1 5620:1 5636:1 5680:1 5692:1 5693:1 5696:5 5715:1 5735:2 5761:1 5787:1 5812:3 5890:1 5897:1 5901:1 5906:1 5912:1 5997:1 6046:1 6051:2 6052:1 6063:1 6115:1 6177:1 6191:2 6270:1 6292:1 6295:1 6301:1 6316:3 6323:1 6327:1 6336:1 6338:1 6344:1 6355:1 6378:1 6389:1 6426:2 6442:1 6479:1 6483:1 6491:1 6507:1 6525:1 6529:1 6530:1 6537:1 6553:1 6563:4 6569:1 6595:1 6596:1 6606:1 6609:1 6623:1 6631:2 6657:1 6670:1 6702:1 6724:1 6752:1 6765:1 6812:1 6875:1 6931:1 6945:1 6951:1 6955:1 6971:1 6988:1 6989:2 7002:1 7012:1 7020:1 7045:1 7051:1 7081:1 7114:1 7120:1 7138:2 7153:1 7154:5 7165:1 7170:1 7173:2 7176:2 7183:1 7198:1 7199:1 7213:17 7220:1 7229:4 7231:2 7236:2 7270:1 7276:1 7278:1 7301:2 7302:2 7307:1 7309:1 7320:1 7331:1 7358:1 7380:2 7392:1 7410:1 7440:1 7453:1 7454:1 7483:1 7490:1 7559:1 7608:1 7631:1 7643:1 7654:1 7677:1 7700:5 7706:1 7724:1 7729:1 7773:1 7777:1 7781:1 7810:1 7821:1 7825:2 7827:1 7830:1 7844:1 7855:3 7860:2 7868:1 7894:1 7896:1 7918:1 7920:1 7930:1 8034:1 8038:1 8041:1 8061:1 8076:1 8087:1 8090:1 8122:1 8127:1 8162:1 8191:1 8196:1 8233:1 8234:1 8244:1 8271:1 8272:1 8285:1 8293:1 8316:1 8320:1 8324:1 8347:2 8360:1 8361:1 8395:1 8407:1 8416:1 8423:1 8425:1 8429:1 8455:2 8477:1 8516:2 8566:1 8570:1 8589:1 8603:1 8605:1 8609:2 8629:1 8661:1 8681:1 8683:1 8692:2 8734:2 8771:1 8795:1 8802:1 8807:1 8823:1 8858:1 8865:1 8901:1 8905:1 8919:5 8956:1 9005:1 9024:1 9028:1 9032:1 9061:1 9096:1 9163:1 9186:1 9201:1 9210:1 9243:1 9248:1 9249:1 9289:1 9294:1 9296:1 9301:1 9318:2 9325:3 9327:1 9354:2 9398:1 9434:1 9449:2 9453:1 9485:1 9490:5 9493:1 9497:1 9520:1 9588:2 9590:1 9628:1 9646:1 9649:1 9651:1 9665:2 9702:1 9715:3 9720:1 9722:1 9729:1 9739:1 9742:1 9747:1 9755:2 9769:1 9771:1 9803:1 9819:1 9823:1 9846:1 9864:1 9881:1 9886:2 9900:2 9910:1 9926:1 9953:1 9982:1 9991:1 10047:1 10057:2 10080:1 10106:1 10140:1 10191:1 10224:1 10239:1 10240:2 10246:2 10252:1 10261:1 10264:1 10265:5 10268:1 10276:1 10282:1 10283:1 10288:1 10310:1 10336:2 10345:1 10372:1 10373:1 10376:1 10406:1 10411:1 10424:1 10440:1 10515:1 10556:1 10586:1 10592:1 10611:1 10627:1 10630:1 10635:1 10644:2 10646:1 10663:2 10667:1 10693:3 10694:1 10707:1 10718:1 10734:3 10746:1 10756:1 10759:1 10799:1 10818:2 10831:1 10847:1 10859:1 10890:1 10932:1 10934:1 10950:1 10951:1 10962:1 10968:1 10969:1 10988:1 11006:2 11009:1 11118:1 11166:1 11184:1 11206:1 11214:1 11220:1 11243:2 11283:1 11301:1 11327:1 11365:1 11381:1 11382:1 11394:1 11406:2 11412:1 11415:1 11478:1 11506:1 11520:1 11542:1 11547:1 11638:1 11662:1 11705:1 11718:1 11720:2 11736:1 11774:1 11824:1 11839:1 11882:2 11904:1 11936:1 11983:1 12045:1 12091:1 12100:1 12110:1 12134:1 12151:1 12208:1 12231:1 12252:1 12254:1 12257:4 12269:1 12290:1 12306:1 12325:1 12346:1 12389:1 12400:1 12410:1 12413:1 12436:1 12437:1 12446:1 12452:1 12463:4 12506:1 12533:1 12559:1 12590:3 12633:1 12668:1 12685:1 12705:1 12707:1 12728:1 12732:1 12741:5 12765:1 12787:1 12831:1 12887:2 12926:1 12929:1 12941:1 12960:1 12986:1 13005:6 13025:2 13064:1 13085:1 13103:1 13131:1 13161:1 13237:1 13261:3 13277:1 13320:1 13383:2 13384:1 13404:1 13410:1 13442:1 13452:1 13470:1 13499:1 13524:1 13548:1 13563:2 13578:1 13632:2 13637:1 13679:1 13680:1 13690:1 13720:1 13731:1 13756:1 13768:1 13771:2 13804:1 13807:1 13850:1 13891:1 13892:2 13902:1 13977:1 13984:1 13998:1 14155:1 14204:1 14211:1 14226:1 14240:1 14245:1 14248:1 14270:1 14274:1 14345:1 14387:1 14397:1 14424:2 14486:1 14564:1 14575:1 14579:2 14593:1 14609:1 14658:1 14666:1 14703:1 14719:2 14726:1 14739:1 14764:2 14847:1 14857:4 14872:1 14876:2 14900:1 14904:1 14958:1 14962:2 14972:2 15029:1 15046:1 15052:1 15062:1 15064:1 15068:1 15074:2 15117:1 15131:2 15133:1 15135:1 15137:1 15140:1 15143:1 15206:1 15232:1 15251:1 15255:1 15288:1 15328:1 15370:1 15418:1 15434:1 15445:1 15446:1 15455:1 15456:1 15470:3 15478:1 15501:1 15513:1 15522:1 15534:1 15544:1 15585:1 15588:1 15613:3 15618:1 15671:1 15678:1 15689:1 15706:1 15720:1 15778:2 15823:1 15849:1 15898:1 15946:1 15980:1 15987:1 15992:1 16034:2 16039:1 16055:1 16072:1 16116:1 16159:1 16163:1 16183:1 16202:1 16212:1 16218:1 16232:3 16238:2 16293:1 16294:1 16305:1 16316:1 16331:1 16368:1 16389:1 16428:1 16434:1 16451:1 16483:1 16508:1 16513:1 16518:2 16557:1 16594:1 16602:1 16616:1 16684:1 16710:1 16720:1 16740:1 16814:1 16815:1 16833:1 16862:1 16879:1 16934:1 16937:1 16951:1 16999:1 17050:1 17071:1 17087:5 17097:1 17103:2 17184:1 17192:1 17204:1 17243:1 17251:1 17276:886 17285:1 17289:1 17302:1 17351:1 17353:1 17374:1 17467:1 17475:1 17495:1 17526:1 17552:1 17592:1 17599:1 17684:2 17697:1 17707:1 17717:1 17748:1 17754:1 17765:1 17787:1 17795:1 17809:1 17836:1 17837:2 17855:1 17862:1 17870:1 17876:1 17895:1 17896:1 17904:1 17951:1 17966:1 17970:1 17992:2 17999:1 18011:1 18047:2 18052:1 18054:1 18075:1 18101:1 18116:1 18123:1 18141:1 18159:1 18187:1 18193:1 18234:1 18240:1 18271:1 18282:1 18295:2 18297:1 18303:1 18308:1 18326:1 18332:1 18339:1 18343:1 18349:1 18374:1 18381:1 18382:1 18420:1 18422:1 18428:2 18501:1 18503:1 18504:1 18529:1 18536:1 18538:1 18548:1 18556:2 18564:1 18582:1 18598:1 18604:1 18638:1 18658:1 18665:1 18690:1 18707:1 18716:1 18735:1 18756:1 18821:1 18838:1 18847:1 18848:1 18868:1 18933:1 18937:1 18941:1 18960:1 18962:1 18969:1 18996:4 19013:1 19039:1 19057:1 19085:1 19101:2 19133:1 19183:1 19190:1 19201:2 19215:1 19245:1 19254:1 19279:1 19311:1 19331:1 19334:1 19349:1 19359:3 19391:1 19394:1 19421:1 19439:1 19459:2 19484:2 19506:2 19521:1 19522:1 19537:2 19545:1 19547:1 19564:1 19591:1 19627:1 19629:1 19633:1 19636:2 19697:1 19757:1 19785:1 19790:1 19791:1 19798:1 19806:1 19821:1 19830:1 19873:1 19880:1 19896:1 19921:1 19927:1 19931:1 19934:1 19959:2 19960:1 19976:1 19978:2 19989:1 19998:1 20001:1 20017:1 20028:1 20061:1 20066:1 20071:1 20075:1 20125:1 20134:1 20141:1 20149:1 20151:1 20177:1 20179:1 20205:1 20206:1 20210:1 20212:1 20240:1 20252:1 20316:3 20325:1 20326:1 20328:1 20334:1 20352:3 20368:1 20400:1 20417:1 20481:1 20503:1 20524:1 20532:1 20546:1 20553:1 20556:1 20567:1 20572:1 20588:1 20592:1 20633:1 20634:1 20647:1 20655:1 20656:2 20662:1 20666:1 20692:1 20719:4 20720:1 20733:1 20754:1 20772:1 20779:2 20780:1 20796:1 20812:1 20844:2 20879:1 20887:3 20900:3 20905:1 20919:1 20962:1 20963:1 20968:2 20976:1 20991:1 21005:1 21029:1 21079:1 21116:1 21130:1 21134:2 21150:3 21163:1 21176:1 21220:1 21234:1 21284:1 21303:1 21309:1 21311:1 21340:1 21370:1 21434:1 21453:1 21462:1 21469:1 21479:1 21488:1 21501:1 21502:1 21512:1 21559:1 21586:1 21613:2 21642:1 21650:1 21686:1 21694:1 21695:1 21733:1 21743:1 21772:1 21773:1 21777:1 21794:1 21800:1 21846:2 21848:1 21862:2 21864:1 21916:1 21917:1 21930:1 22014:1 22019:1 22053:1 22074:1 22078:1 22088:1 22130:1 22136:1 22196:1 22230:1 22238:1 22282:2 22304:1 22320:1 22328:2 22345:1 22403:1 22407:1 22412:1 22435:2 22457:2 22467:1 22478:1 22522:1 22531:1 22550:1 22559:1 22564:1 22578:1 22612:1 22626:1 22627:1 22632:1 22640:1 22646:1 22662:2 22675:1 22710:1 22718:3 22726:1 22739:1 22827:1 22862:1 22868:1 22880:1 22886:1 22907:1 22943:1 22946:1 22974:1 22992:1 23012:1 23024:1 23041:1 23077:2 23101:1 23115:1 23130:1 23139:1 23158:2 23161:1 23169:1 23170:1 23197:1 23217:1 23261:1 23291:3 23292:1 23316:1 23375:1 23426:1 23440:1 23497:1 23505:1 23532:1 23557:1 23635:2 23639:1 23695:1 23700:1 23721:1 23739:2 23775:1 23784:1 23786:1 23826:1 23845:1 23889:1 23895:1 23923:1 23932:1 24024:1 24025:1 24027:1 24055:1 24092:2 24138:1 24149:1 24161:1 24165:5 24185:1 24233:1 24251:1 24263:1 24272:1 24275:3 24280:1 24285:2 24286:3 24289:1 24310:1 24357:1 24372:1 24408:1 24416:1 24424:1 24427:2 24443:4 24446:1 24471:1 24472:1 24479:1 24521:1 24592:1 24600:1 24643:1 24653:1 24658:1 24710:1 24713:1 24720:1 24721:1 24733:1 24737:1 24747:1 24773:1 24792:1 24830:1 24889:1 24917:1 24938:1 24944:1 24966:1 24972:1 24994:1 25019:1 25022:1 25026:1 25031:1 25032:1 25059:1 25073:1 25081:1 25125:3 25132:1 25145:1 25185:2 25195:1 25200:1 25207:1 25213:1 25250:1 25255:1 25256:1 25260:1 25267:2 25281:1 25330:1 25346:1 25370:1 25412:1 25454:1 25487:1 25491:2 25532:1 25600:1 25630:1 25644:1 25702:1 25717:1 25793:2 25804:1 25808:1 25809:1 25820:1 25822:1 25828:1 25841:1 25856:1 25863:2 25871:3 25880:1 25881:1 25892:1 25905:1 25909:1 25913:1 26005:1 26012:1 26015:3 26022:3 26028:1 26054:2 26067:1 26098:1 26174:1 26194:1 26214:1 26221:1 26222:1 26229:1 26230:2 26236:1 26265:1 26301:1 26305:1 26306:2 26368:3 26527:1 26544:1 26547:1 26557:1 26558:1 26580:1 26655:1 26664:2 26696:1 26710:1 26733:1 26745:1 26757:2 26759:1 26787:1 26793:1 26832:1 26848:1 26855:1 26862:1 26879:1 26883:2 26910:1 26923:1 26940:1 26957:1 26961:2 26978:1 26987:1 26990:1 27031:2
1 13:1 47:1 50:1 55:1 89:1 120:1 138:2 144:1 157:1 182:2 233:1 238:2 255:2 264:1 280:1 306:1 315:2 317:1 327:3 334:3 346:2 362:1 372:1 382:1 395:5 397:2 445:1 446:1 532:1 544:2 568:1 588:1 604:1 683:1 723:1 751:1 764:1 789:3 794:1 802:3 808:1 822:5 826:1 837:3 854:1 873:3 874:2 875:5 878:1 880:2 882:1 894:2 912:2 915:3 926:1 953:2 1017:1 1108:3 1109:1 1116:1 1122:1 1125:1 1154:1 1158:1 1173:1 1193:1 1195:1 1228:1 1244:1 1266:1 1279:1 1292:1 1316:1 1324:1 1346:1 1364:1 1405:1 1419:1 1437:1 1448:2 1454:2 1456:2 1469:1 1501:1 1514:1 1526:1 1530:2 1542:2 1553:1 1555:1 1559:1 1568:1 1571:1 1584:1 1592:1 1600:1 1634:1 1653:2 1675:1 1681:1 1684:2 1687:1 1688:1 1696:5 1723:1 1724:2 1759:1 1807:1 1809:1 1822:2 1866:1 1870:1 1892:1 1897:1 1899:1 1907:1 1925:1 1931:1 1956:1 1959:1 1976:1 1978:1 1984:1 1990:1 2004:1 2027:5 2037:1 2046:1 2051:1 2078:1 2092:1 2103:1 2107:1 2123:1 2126:2 2143:1 2148:2 2150:1 2157:2 2158:1 2159:1 2167:2 2170:1 2172:5 2173:2 2185:1 2224:1 2226:1 2248:1 2257:1 2275:1 2277:1 2294:1 2296:1 2342:1 2350:1 2360:1 2367:1 2405:1 2413:1 2417:1 2435:2 2439:1 2444:1 2445:1 2454:1 2457:1 2478:1 2479:1 2483:1 2496:1 2505:1 2513:2 2526:1 2529:2 2535:2 2545:1 2557:1 2562:3 2563:2 2589:1 2591:1 2641:1 2654:2 2662:1 2671:1 2716:1 2738:2 2749:1 2752:3 2773:2 2774:1 2777:1 2779:1 2811:1 2839:1 2848:1 2856:1 2907:1 2917:1 2918:4 2934:2 2948:1 3006:2 3014:1 3027:1 3042:2 3089:1 3149:6 3277:1 3283:1 3291:1 3328:1 3358:2 3362:1 3384:8 3399:1 3403:1 3405:1 3425:1 3479:1 3480:1 3484:1 3493:1 3501:1 3548:1 3549:1 3552:1 3559:1 3565:1 3576:1 3596:1 3599:1 3603:1 3608:1 3610:1 3626:1 3648:2 3668:1 3670:1 3673:1 3678:1 3687:2 3700:1 3716:2 3734:1 3765:2 3766:3 3772:1 3808:1 3810:2 3813:1 3818:1 3837:1 3839:1 3864:1 3866:1 3875:1 3891:1 3910:1 3937:1 3944:1 3950:1 3977:1 3992:1 4008:1 4027:1 4045:4 4101:1 4104:1 4114:1 4133:1 4149:1 4156:2 4177:1 4202:1 4225:2 4249:1 4252:1 4256:1 4267:1 4276:1 4355:1 4363:1 4371:1 4377:1 4380:1 4397:1 4420:1 4437:1 4443:2 4456:1 4459:1 4469:1 4523:1 4565:3 4567:1 4574:1 4601:1 4684:1 4685:3 4687:2 4688:1 4690:1 4695:1 4696:1 4698:1 4701:1 4703:1 4704:1 4706:1 4709:2 4716:3 4721:1 4764:1 4789:2 4891:1 4903:1 4930:1 5002:1 5008:1 5061:1 5088:2 5101:1 5121:1 5140:1 5157:2 5171:1 5188:1 5197:1 5220:1 5284:1 5287:1 5298:2 5302:1 5313:1 5314:1 5316:1 5317:1 5321:1 5369:2 5394:4 5406:2 5468:1 5483:1 5503:1 5509:1 5516:1 5522:1 5538:1 5549:1 5590:1 5610:2 5612:1 5619:1 5620:1 5636:1 5680:1 5692:1 5693:1 5696:5 5715:1 5735:2 5761:1 5787:1 5812:4 5890:1 5897:1 5901:1 5906:1 5912:1 5997:1 6046:1 6051:2 6052:1 6063:1 6106:1 6115:1 6177:1 6191:2 6270:1 6292:1 6295:1 6301:1 6316:3 6323:1 6327:1 6336:1 6338:1 6344:1 6355:1 6378:1 6389:1 6426:2 6442:1 6465:1 6479:1 6483:1 6491:1 6507:1 6525:1 6529:1 6530:1 6537:1 6553:1 6563:5 6569:2 6595:1 6596:1 6606:1 6609:1 6623:1 6631:2 6657:1 6670:1 6702:1 6707:1 6716:1 6724:1 6752:1 6765:1 6812:1 6875:1 6931:1 6945:1 6951:1 6955:1 6971:2 6988:1 6989:2 7002:1 7012:1 7020:2 7028:1 7045:1 7051:1 7081:1 7114:1 7120:1 7138:2 7153:1 7154:6 7165:1 7170:1 7173:3 7176:2 7183:1 7198:2 7199:1 7200:1 7213:17 7220:1 7229:4 7231:2 7236:2 7270:1 7276:1 7278:1 7301:2 7302:2 7307:1 7309:1 7320:1 7331:1 7358:1 7380:2 7392:1 7410:1 7440:1 7453:1 7454:1 7483:1 7490:1 7559:1 7608:1 7631:1 7643:1 7654:1 7677:1 7700:8 7706:1 7724:1 7729:1 7773:1 7777:1 7781:1 7810:1 7821:1 7825:2 7827:1 7830:1 7844:1 7855:3 7860:2 7868:1 7894:1 7896:1 7918:1 7920:1 7930:1 8034:1 8038:1 8041:1 8061:1 8076:1 8087:1 8090:1 8122:1 8127:1 8162:1 8191:1 8196:1 8233:1 8234:1 8244:1 8271:1 8272:1 8285:1 8293:1 8316:1 8320:1 8324:2 8347:2 8360:1 8361:1 8377:1 8395:1 8407:1 8416:1 8423:1 8425:1 8429:1 8436:1 8455:2 8477:1 8506:1 8516:2 8566:1 8570:1 8589:1 8596:1 8603:1 8605:1 8609:2 8629:1 8661:1 8672:1 8681:1 8683:1 8692:2 8734:2 8771:1 8795:1 8802:1 8807:1 8823:2 8858:1 8865:1 8901:1 8905:1 8919:5 8956:1 9005:1 9024:1 9028:1 9032:1 9034:1 9061:1 9096:1 9163:1 9186:1 9201:1 9210:1 9243:1 9248:1 9249:1 9289:1 9294:1 9296:1 9301:1 9318:2 9325:3 9327:1 9354:2 9398:1 9434:1 9449:2 9453:1 9485:1 9490:5 9492:1 9493:1 9497:1 9520:1 9588:2 9590:1 9628:1 9646:1 9649:1 9651:1 9663:1 9665:2 9702:1 9715:4 9720:1 9722:1 9729:1 9739:1 9742:1 9747:1 9755:2 9769:1 9771:1 9803:1 9810:1 9819:1 9823:1 9837:1 9846:1 9864:1 9877:1 9881:1 9886:2 9900:2 9910:1 9926:1 9953:1 9982:1 9983:1 9991:1 10047:1 10057:3 10080:1 10106:2 10140:1 10191:1 10201:1 10224:1 10225:1 10239:1 10240:2 10246:2 10252:1 10261:1 10264:1 10265:5 10268:1 10276:1 10282:1 10283:1 10288:1 10289:1 10310:1 10336:2 10345:1 10372:1 10373:1 10376:1 10406:1 10411:1 10424:1 10436:1 10440:1 10515:1 10556:1 10586:1 10592:1 10611:1 10627:1 10630:1 10635:1 10644:2 10646:1 10663:2 10667:1 10693:3 10694:1 10707:1 10718:1 10734:3 10746:1 10756:1 10759:1 10799:1 10818:2 10831:1 10847:1 10859:1 10890:1 10932:1 10934:1 10950:1 10951:1 10962:1 10968:1 10969:1 10988:1 11006:2 11009:2 11118:1 11166:1 11184:1 11206:1 11214:1 11220:1 11243:2 11283:1 11301:1 11327:1 11365:1 11381:1 11382:1 11394:1 11406:2 11412:1 11415:1 11478:1 11506:1 11520:1 11542:1 11547:1 11638:1 11662:1 11705:1 11718:1 11720:2 11736:1 11774:1 11824:1 11839:1 11882:3 11904:1 11936:1 11980:1 11983:1 12045:1 12081:1 12090:1 12091:1 12100:1 12110:1 12134:1 12151:1 12208:1 12231:1 12252:1 12254:1 12257:4 12269:1 12290:1 12306:1 12325:1 12346:1 12389:1 12399:1 12400:1 12410:1 12413:1 12436:1 12437:1 12446:1 12452:1 12463:4 12506:1 12533:1 12559:1 12590:3 12616:1 12633:1 12668:1 12685:1 12705:1 12707:1 12714:1 12728:2 12732:1 12737:1 12741:5 12760:1 12765:1 12787:1 12831:1 12887:2 12926:1 12929:1 12941:1 12960:1 12986:1 13005:6 13025:2 13064:1 13085:1 13103:1 13131:1 13161:1 13197:1 13237:1 13261:3 13277:1 13320:1 13383:2 13384:1 13404:1 13410:1 13442:1 13452:1 13470:1 13499:1 13524:1 13548:1 13563:2 13578:1 13632:2 13637:1 13679:1 13680:1 13690:1 13720:1 13731:1 13756:1 13768:1 13771:2 13804:1 13807:1 13850:1 13891:1 13892:2 13902:1 13977:1 13984:1 13998:1 14032:1 14155:1 14204:1 14211:1 14226:1 14240:1 14245:1 14248:1 14270:1 14274:1 14311:1 14345:1 14387:1 14397:1 14419:1 14424:2 14486:1 14564:1 14575:1 14579:2 14593:1 14609:1 14639:1 14658:1 14666:1 14703:1 14719:2 14726:1 14737:1 14739:1 14764:2 14847:1 14857:4 14872:1 14876:3 14900:1 14904:1 14943:1 14958:1 14962:2 14972:2 14990:1 14994:1 15029:1 15046:1 15052:1 15062:1 15064:1 15068:1 15074:2 15117:1 15122:1 15128:1 15130:1 15131:2 15133:1 15135:1 15137:1 15139:1 15140:1 15143:1 15206:1 15232:1 15251:1 15255:1 15288:1 15328:1 15370:1 15418:1 15434:1 15445:1 15446:1 15455:1 15456:1 15470:3 15478:1 15501:1 15513:1 15522:1 15534:1 15544:1 15585:1 15588:1 15613:3 15618:1 15671:1 15678:1 15689:1 15706:1 15720:1 15778:2 15823:1 15849:1 15898:1 15946:1 15980:1 15987:1 15992:1 16034:2 16039:1 16055:1 16072:1 16116:1 16159:1 16163:1 16183:1 16187:1 16202:1 16212:1 16218:1 16232:3 16238:2 16293:1 16294:1 16305:1 16316:1 16331:1 16368:1 16389:1 16428:1 16434:1 16451:1 16453:1 16482:1 16483:1 16508:1 16513:1 16518:2 16557:1 16594:1 16602:1 16616:1 16684:1 16710:1 16720:1 16740:1 16814:1 16815:1 16833:1 16862:1 16879:1 16934:1 16937:1 16951:1 16999:1 17050:1 17071:1 17087:5 17097:1 17103:2 17128:1 17184:1 17192:1 17204:1 17243:1 17251:1 17276:922 17285:1 17289:1 17302:1 17351:1 17353:1 17374:1 17467:1 17474:1 17475:1 17495:1 17526:1 17552:1 17592:1 17599:1 17684:2 17697:1 17707:1 17717:1 17748:1 17754:1 17765:1 17787:1 17795:1 17809:1 17836:1 17837:2 17855:1 17859:1 17862:1 17870:1 17876:1 17895:1 17896:1 17904:1 17927:1 17951:1 17966:1 17970:1 17992:2 17999:1 18011:1 18047:2 18052:1 18054:1 18075:2 18101:1 18116:1 18123:1 18141:1 18159:1 18187:1 18193:1 18234:1 18240:1 18271:1 18282:1 18295:2 18297:1 18303:1 18308:1 18323:1 18326:1 18332:1 18339:1 18343:1 18349:1 18374:1 18381:1 18382:1 18420:1 18422:1 18428:2 18474:1 18501:1 18503:1 18504:1 18519:1 18529:1 18536:1 18538:1 18548:1 18556:3 18564:1 18582:1 18598:1 18604:1 18638:1 18658:1 18665:1 18690:1 18707:1 18716:2 18718:1 18735:1 18756:1 18821:1 18838:1 18847:1 18848:1 18868:1 18905:1 18933:1 18937:1 18941:1 18960:1 18962:1 18969:1 18996:4 19013:1 19039:1 19057:1 19085:1 19101:2 19133:1 19183:1 19190:1 19201:2 19215:1 19245:1 19254:1 19279:1 19311:1 19331:1 19334:1 19349:1 19359:3 19391:1 19394:1 19421:1 19439:1 19459:2 19478:1 19484:2 19506:2 19521:1 19522:1 19537:2 19545:1 19547:1 19564:1 19591:1 19627:1 19629:1 19633:1 19636:2 19697:1 19757:1 19785:1 19790:1 19791:1 19798:1 19806:1 19821:1 19830:1 19873:1 19880:1 19896:1 19921:1 19927:1 19931:2 19934:1 19959:2 19960:1 19976:1 19978:2 19989:1 19998:1 20001:1 20017:1 20028:1 20061:1 20066:1 20071:1 20075:1 20125:1 20134:1 20141:1 20149:1 20151:1 20177:1 20179:1 20205:1 20206:1 20210:1 20212:1 20240:1 20252:1 20316:3 20322:1 20325:1 20326:1 20328:1 20334:1 20352:3 20368:1 20400:1 20417:1 20481:1 20503:1 20524:1 20532:1 20546:1 20553:1 20556:1 20567:1 20572:1 20588:1 20592:1 20633:1 20634:2 20647:1 20655:1 20656:2 20662:1 20666:1 20692:1 20719:5 20720:1 20733:1 20754:1 20772:1 20779:2 20780:1 20796:1 20812:1 20844:2 20879:1 20887:3 20900:3 20905:1 20919:1 20962:1 20963:1 20968:2 20976:1 20991:1 21005:1 21029:1 21079:1 21116:1 21130:1 21134:2 21150:3 21163:1 21176:1 21218:1 21220:1 21234:1 21284:1 21303:1 21309:1 21311:1 21340:2 21370:2 21434:1 21453:2 21456:1 21462:1 21469:1 21479:1 21488:1 21501:1 21502:1 21512:1 21520:1 21559:1 21586:1 21613:2 21642:1 21647:1 21650:1 21686:1 21694:1 21695:1 21733:1 21743:1 21772:1 21773:1 21777:1 21794:1 21800:1 21846:2 21848:1 21862:2 21864:1 21865:1 21916:1 21917:1 21930:1 22014:1 22019:1 22053:1 22074:1 22078:1 22088:1 22130:1 22136:1 22196:1 22230:1 22238:1 22282:2 22304:1 22320:1 22328:2 22345:1 22380:1 22391:1 22403:1 22407:1 22412:1 22435:3 22457:2 22467:1 22478:1 22522:1 22530:1 22531:1 22550:1 22559:1 22564:2 22578:1 22612:1 22626:1 22627:1 22632:1 22640:1 22646:1 22662:3 22675:1 22710:1 22713:1 22718:3 22726:1 22739:1 22827:1 22862:1 22868:1 22880:1 22886:1 22907:1 22943:1 22946:1 22974:1 22992:1 23012:1 23024:1 23041:1 23077:3 23101:1 23115:1 23130:1 23139:1 23158:2 23161:1 23169:1 23170:1 23188:1 23197:1 23217:1 23261:1 23291:3 23292:1 23316:1 23375:1 23426:1 23440:1 23481:1 23497:1 23505:1 23514:1 23532:1 23557:1 23601:1 23635:2 23639:1 23695:1 23700:1 23721:1 23739:2 23775:1 23784:1 23786:1 23803:1 23826:1 23845:1 23889:1 23895:1 23909:1 23923:1 23932:1 24024:1 24025:1 24027:1 24055:1 24092:2 24138:1 24140:1 24149:2 24161:1 24165:5 24185:1 24233:1 24251:1 24263:1 24272:1 24275:3 24280:1 24285:2 24286:3 24289:1 24310:1 24357:1 24372:1 24408:1 24416:1 24424:1 24427:2 24443:4 24446:1 24471:1 24472:1 24479:1 24521:1 24592:1 24600:1 24643:1 24653:1 24658:1 24676:1 24710:1 24713:1 24720:1 24721:1 24733:1 24737:1 24747:1 24773:1 24774:1 24792:1 24830:1 24889:1 24917:1 24938:1 24944:1 24966:1 24972:1 24976:1 24994:1 25019:1 25022:1 25026:1 25031:1 25032:1 25059:1 25073:1 25081:1 25125:3 25132:1 25145:1 25185:2 25195:1 25200:1 25207:1 25213:1 25250:1 25251:1 25254:1 25255:1 25256:1 25260:1 25267:2 25281:1 25299:1 25330:1 25346:1 25370:1 25412:1 25454:1 25487:1 25491:2 25532:1 25572:1 25600:1 25630:1 25644:1 25702:1 25717:1 25777:1 25793:2 25804:1 25808:1 25809:1 25820:1 25822:1 25828:1 25841:1 25856:1 25863:2 25871:3 25880:1 25881:1 25892:1 25905:1 25909:1 25913:1 25965:1 26005:1 26012:1 26015:4 26022:3 26028:1 26054:2 26067:1 26081:1 26098:1 26174:1 26194:1 26213:1 26214:1 26221:1 26222:1 26229:1 26230:2 26236:1 26265:1 26301:1 26305:1 26306:2 26368:3 26452:1 26527:1 26544:1 26547:1 26557:1 26558:1 26580:1 26655:2 26664:2 26696:1 26710:1 26733:1 26745:1 26757:2 26759:1 26787:1 26793:1 26832:1 26848:1 26855:1 26862:1 26879:1 26883:2 26910:1 26920:1 26923:1 26940:1 26957:1 26961:2 26978:1 26987:1 26988:1 26990:1 27031:2
1 13:1 47:1 50:1 55:1 89:1 120:1 138:2 144:1 157:1 182:2 233:1 238:2 255:2 264:1 280:1 306:1 315:2 317:1 327:3 334:3 346:2 362:1 372:1 382:1 395:5 397:2 445:1 446:1 532:1 544:2 568:1 588:1 604:1 683:1 723:1 745:1 751:1 764:1 789:3 794:1 802:3 808:1 822:6 826:1 837:3 854:1 873:3 874:2 875:5 878:1 880:2 882:1 894:2 912:2 915:3 926:1 953:2 1017:1 1108:3 1109:1 1116:1 1122:1 1125:1 1154:1 1158:1 1173:1 1193:1 1195:1 1228:1 1244:1 1266:1 1279:1 1292:1 1316:1 1324:1 1346:1 1364:1 1405:1 1419:1 1437:1 1448:2 1454:2 1456:2 1469:1 1501:1 1514:1 1526:1 1530:2 1542:2 1553:1 1555:1 1559:1 1568:1 1571:1 1584:1 1592:1 1600:1 1606:1 1615:1 1634:1 1653:2 1675:1 1681:1 1684:2 1687:1 1688:1 1696:5 1723:1 1724:2 1759:1 1807:1 1809:1 1822:2 1866:1 1870:1 1892:1 1897:1 1899:1 1907:1 1925:1 1931:1 1956:1 1959:1 1976:1 1978:1 1984:1 1990:1 2004:1 2027:5 2037:1 2046:1 2051:1 2078:1 2092:1 2103:2 2107:1 2123:1 2126:2 2143:1 2148:2 2150:1 2157:2 2158:1 2159:1 2167:2 2170:1 2172:5 2173:2 2185:1 2224:1 2226:3 2248:1 2257:1 2275:1 2277:1 2294:1 2296:1 2342:1 2350:1 2360:1 2367:1 2405:1 2413:1 2417:1 2435:2 2439:1 2444:1 2445:1 2454:1 2457:1 2478:2 2479:1 2483:1 2496:1 2503:1 2505:1 2513:2 2526:1 2529:3 2535:3 2545:1 2557:1 2562:3 2563:2 2589:1 2591:1 2641:1 2654:2 2662:2 2671:1 2716:1 2738:2 2749:1 2752:4 2773:2 2774:1 2777:1 2779:1 2811:2 2839:1 2848:1 2856:1 2907:1 2917:1 2918:4 2934:2 2948:1 3006:2 3014:1 3027:1 3042:2 3089:1 3149:6 3277:1 3283:1 3291:1 3328:1 3358:2 3362:1 3384:8 3399:1 3403:2 3405:1 3425:1 3479:1 3480:1 3484:1 3493:1 3501:1 3548:1 3549:1 3552:1 3559:1 3565:1 3576:1 3596:1 3599:1 3603:1 3608:1 3610:1 3626:1 3648:2 3668:1 3670:1 3673:1 3678:1 3687:2 3700:1 3716:2 3734:2 3765:2 3766:3 3772:1 3808:1 3810:2 3813:1 3818:1 3837:1 3839:1 3864:1 3866:1 3875:1 3891:1 3910:1 3937:1 3941:1 3944:1 3950:1 3977:1 3981:1 3992:1 4008:1 4027:1 4045:4 4101:1 4104:1 4114:1 4133:1 4149:1 4156:2 4177:1 4202:1 4225:2 4246:1 4249:1 4252:1 4256:1 4257:1 4267:1 4276:1 4304:1 4355:1 4363:1 4371:1 4377:1 4380:1 4397:1 4420:1 4437:1 4443:2 4456:1 4459:1 4469:2 4475:1 4523:1 4565:3 4567:1 4574:1 4601:1 4684:1 4685:3 4687:2 4688:1 4690:1 4695:1 4696:1 4698:1 4701:1 4703:2 4704:1 4706:1 4708:1 4709:2 4716:3 4721:1 4764:1 4776:1 4789:2 4891:1 4903:1 4930:1 5002:1 5008:1 5061:1 5088:2 5101:1 5121:1 5140:1 5157:2 5171:1 5188:1 5197:1 5220:1 5284:1 5287:1 5298:2 5302:1 5313:1 5314:1 5316:1 5317:1 5321:1 5369:2 5394:4 5406:2 5468:1 5483:1 5503:1 5509:1 5516:1 5522:1 5538:1 5549:1 5590:1 5594:1 5610:2 5612:1 5619:1 5620:1 5636:1 5680:1 5692:1 5693:1 5696:7 5715:1 5735:2 5761:1 5787:1 5812:4 5890:1 5897:1 5901:1 5906:1 5912:1 5997:1 6046:1 6051:2 6052:2 6063:1 6106:1 6115:1 6177:1 6191:2 6270:1 6292:1 6295:1 6301:1 6316:3 6323:1 6327:1 6336:1 6338:1 6344:1 6355:1 6378:1 6389:1 6426:2 6442:1 6465:1 6479:1 6483:1 6491:1 6507:1 6525:1 6529:1 6530:1 6537:1 6553:1 6563:6 6569:2 6595:1 6596:1 6606:1 6609:1 6610:1 6623:2 6631:3 6657:1 6670:1 6678:1 6702:1 6707:1 6716:1 6724:1 6752:1 6765:1 6812:1 6875:1 6931:1 6940:1 6945:1 6951:1 6955:1 6971:2 6988:1 6989:2 7002:1 7012:1 7020:2 7028:1 7045:1 7051:1 7053:1 7081:1 7114:1 7120:1 7138:2 7153:1 7154:6 7165:1 7170:1 7173:3 7176:2 7183:1 7198:2 7199:1 7200:1 7213:17 7214:1 7220:1 7229:4 7231:2 7236:2 7270:1 7276:1 7278:1 7301:2 7302:2 7307:1 7309:1 7320:1 7331:1 7358:1 7380:2 7392:1 7410:1 7440:1 7453:1 7454:1 7483:1 7490:1 7559:1 7608:1 7631:1 7643:1 7654:1 7677:1 7700:9 7706:1 7724:2 7729:1 7773:1 7777:1 7781:1 7810:1 7821:1 7825:2 7827:1 7830:1 7844:1 7855:3 7860:2 7868:1 7894:1 7896:1 7918:1 7920:1 7930:1 7966:1 7969:1 8034:1 8038:1 8041:1 8061:1 8076:2 8087:1 8090:1 8122:1 8127:1 8145:1 8162:1 8191:1 8196:1 8233:1 8234:1 8244:1 8271:1 8272:1 8285:1 8293:1 8316:1 8320:1 8324:2 8347:2 8360:1 8361:1 8370:1 8377:1 8395:1 8407:1 8416:1 8423:1 8425:1 8429:1 8436:1 8455:2 8477:1 8505:1 8506:1 8516:2 8566:1 8570:2 8589:1 8596:1 8603:1 8605:1 8609:2 8629:1 8661:1 8672:1 8681:1 8683:1 8692:2 8734:2 8770:1 8771:1 8795:1 8802:1 8807:1 8823:2 8835:1 8858:1 8865:1 8901:1 8905:1 8919:5 8924:1 8956:1 9005:1 9024:1 9028:1 9032:1 9034:1 9061:1 9096:1 9163:1 9173:1 9186:1 9201:1 9210:1 9243:1 9248:1 9249:1 9289:1 9294:1 9296:1 9301:1 9318:2 9325:3 9327:1 9354:2 9398:1 9434:1 9449:2 9453:1 9485:1 9490:7 9492:1 9493:1 9497:1 9520:1 9588:2 9590:1 9628:1 9646:1 9649:1 9651:1 9661:1 9663:1 9665:2 9702:1 9715:4 9720:1 9722:1 9729:1 9739:1 9742:1 9747:1 9755:2 9769:1 9771:1 9803:1 9810:1 9819:1 9823:2 9837:1 9846:1 9864:1 9866:1 9877:1 9881:1 9886:2 9900:3 9910:1 9926:1 9953:2 9964:1 9982:1 9983:1 9991:1 10026:1 10047:1 10057:3 10080:1 10093:1 10106:2 10140:1 10180:1 10191:1 10201:1 10224:1 10225:1 10239:1 10240:2 10246:2 10252:1 10261:1 10264:1 10265:5 10268:1 10276:1 10282:1 10283:1 10288:1 10289:1 10310:1 10336:2 10345:1 10372:1 10373:1 10376:1 10406:1 10411:1 10424:1 10436:1 10440:1 10515:1 10556:1 10586:1 10592:1 10611:1 10627:1 10630:1 10635:1 10644:2 10646:1 10663:2 10667:1 10693:3 10694:1 10707:1 10718:1 10734:3 10746:1 10756:1 10759:1 10799:1 10813:1 10818:2 10831:1 10847:1 10859:1 10890:1 10906:1 10932:1 10934:1 10950:1 10951:1 10962:1 10968:1 10969:1 10988:1 11006:2 11009:2 11031:1 11118:1 11141:1 11166:1 11184:1 11206:1 11214:1 11220:1 11243:2 11283:1 11301:1 11321:1 11327:1 11365:1 11381:1 11382:1 11394:1 11406:2 11412:1 11415:1 11478:1 11506:1 11520:1 11542:1 11547:1 11638:2 11662:1 11705:1 11718:1 11720:2 11736:1 11774:1 11824:1 11839:1 11882:4 11904:1 11923:1 11929:1 11936:1 11943:1 11980:1 11983:1 12045:1 12081:1 12090:1 12091:1 12100:1 12110:1 12134:1 12151:2 12208:1 12231:1 12252:1 12254:1 12257:4 12269:1 12290:1 12306:1 12323:1 12325:1 12346:1 12389:1 12399:1 12400:1 12410:1 12413:1 12436:1 12437:1 12446:1 12452:1 12463:5 12506:1 12533:1 12559:1 12590:3 12616:2 12633:1 12668:1 12685:1 12705:1 12707:1 12714:1 12728:2 12732:1 12737:1 12741:5 12760:1 12765:1 12787:1 12831:1 12887:2 12926:1 12929:1 12941:1 12960:1 12986:1 13005:6 13025:2 13032:1 13064:1 13085:1 13103:1 13131:1 13161:1 13197:1 13237:1 13261:3 13277:1 13320:1 13383:2 13384:1 13404:1 13410:1 13442:1 13452:1 13470:1 13499:1 13524:1 13548:1 13563:2 13578:2 13632:2 13637:2 13679:1 13680:1 13690:1 13720:1 13731:1 13756:1 13768:1 13771:2 13804:1 13807:1 13850:1 13891:2 13892:2 13902:1 13977:1 13984:1 13998:1 14032:1 14155:1 14204:1 14211:1 14226:1 14240:1 14245:1 14248:1 14270:1 14274:1 14295:1 14311:1 14315:1 14345:1 14387:1 14397:1 14419:1 14424:2 14484:1 14486:1 14564:1 14575:1 14579:2 14593:1 14609:1 14639:1 14658:1 14666:1 14703:1 14719:2 14726:1 14737:1 14739:2 14764:2 14847:1 14857:5 14872:1 14876:3 14900:1 14904:1 14943:1 14958:1 14962:2 14972:2 14990:1 14994:1 15029:1 15046:1 15052:1 15062:1 15064:1 15068:1 15074:2 15117:1 15122:1 15128:1 15130:1 15131:2 15132:1 15133:1 15135:1 15137:1 15139:1 15140:1 15143:1 15206:1 15232:1 15251:1 15255:1 15288:1 15328:1 15370:1 15418:1 15434:1 15445:1 15446:1 15455:1 15456:1 15470:3 15478:1 15501:1 15513:1 15522:1 15534:1 15544:1 15585:2 15588:1 15613:3 15618:1 15671:1 15678:2 15689:1 15706:1 15720:1 15778:2 15823:1 15849:1 15898:1 15946:1 15980:1 15987:1 15992:1 16034:2 16039:1 16055:1 16072:1 16116:1 16159:1 16163:1 16183:1 16187:1 16202:1 16212:1 16218:1 16224:1 16232:3 16238:2 16250:1 16293:1 16294:1 16305:1 16316:1 16331:1 16368:1 16389:1 16428:1 16434:1 16451:1 16453:1 16482:1 16483:1 16508:1 16513:1 16518:2 16557:1 16594:1 16602:1 16616:1 16684:1 16710:1 16720:1 16740:1 16814:1 16815:1 16833:1 16862:1 16879:1 16934:1 16937:1 16951:1 16999:2 17050:1 17071:1 17087:6 17097:1 17103:2 17128:1 17184:1 17192:1 17204:1 17243:1 17251:1 17276:955 17285:1 17289:1 17302:1 17351:1 17353:1 17374:1 17467:1 17469:1 17474:1 17475:1 17495:1 17515:1 17526:1 17552:1 17592:1 17599:2 17684:2 17697:1 17707:1 17717:1 17748:1 17754:1 17765:1 17787:1 17795:1 17803:1 17809:1 17817:1 17836:1 17837:2 17855:2 17859:1 17862:1 17870:1 17876:1 17895:1 17896:1 17904:1 17917:1 17927:1 17951:1 17966:1 17970:1 17992:2 17999:1 18011:1 18047:2 18052:1 18054:1 18070:1 18075:3 18101:1 18116:1 18123:1 18141:1 18159:1 18187:1 18193:1 18194:1 18234:1 18240:1 18271:1 18282:1 18295:2 18297:1 18303:1 18308:1 18323:1 18326:1 18332:1 18339:1 18343:1 18349:1 18374:1 18381:1 18382:1 18420:1 18422:1 18428:2 18474:1 18501:1 18503:1 18504:1 18519:1 18529:1 18536:1 18538:1 18548:1 18556:3 18564:1 18582:1 18598:1 18604:1 18638:1 18658:1 18665:1 18690:1 18707:1 18716:2 18718:2 18735:1 18756:1 18821:1 18838:1 18847:1 18848:1 18868:1 18905:1 18933:1 18937:2 18941:1 18960:1 18962:1 18969:1 18996:4 19013:1 19039:1 19057:1 19085:1 19101:2 19133:1 19140:1 19183:1 19190:1 19201:2 19215:1 19245:1 19254:1 19279:1 19311:1 19331:2 19334:1 19349:1 19359:3 19391:1 19394:1 19421:1 19439:1 19459:2 19478:1 19484:2 19506:2 19521:1 19522:1 19537:2 19545:1 19547:1 19564:1 19591:1 19627:1 19629:1 19633:1 19636:2 19697:1 19757:1 19785:1 19790:1 19791:1 19798:1 19806:1 19821:1 19830:1 19873:1 19880:1 19896:1 19921:1 19927:1 19931:2 19934:1 19959:2 19960:1 19976:1 19978:2 19989:1 19998:2 20001:1 20017:1 20028:1 20061:1 20066:1 20071:1 20075:1 20125:1 20134:1 20141:1 20149:1 20151:2 20177:1 20179:1 20205:1 20206:1 20210:1 20212:1 20240:1 20252:1 20316:3 20322:1 20325:1 20326:1 20328:1 20334:1 20352:3 20368:1 20396:1 20400:1 20417:1 20481:1 20503:1 20524:1 20532:1 20546:1 20553:1 20556:1 20567:1 20572:2 20588:1 20592:1 20633:1 20634:3 20647:1 20655:1 20656:2 20662:1 20666:1 20692:1 20719:5 20720:1 20733:1 20754:1 20772:1 20779:2 20780:1 20787:1 20796:1 20812:1 20844:2 20879:1 20887:3 20889:1 20900:3 20905:1 20919:1 20924:1 20962:1 20963:1 20968:2 20976:1 20991:1 21005:1 21029:1 21079:1 21115:1 21116:1 21130:1 21134:2 21150:3 21163:1 21176:1 21218:1 21220:1 21234:1 21284:1 21303:2 21309:1 21311:1 21340:2 21370:2 21434:1 21453:2 21456:1 21462:2 21469:2 21479:1 21488:1 21501:1 21502:1 21512:1 21520:1 21559:1 21586:1 21613:2 21642:1 21647:1 21650:1 21674:1 21686:1 21694:1 21695:1 21733:1 21743:1 21772:1 21773:1 21777:1 21792:1 21794:1 21800:1 21845:1 21846:2 21848:1 21862:2 21864:1 21865:1 21916:1 21917:1 21930:1 22014:1 22019:1 22053:1 22074:1 22078:1 22088:1 22130:1 22136:1 22196:1 22230:1 22238:1 22263:1 22282:2 22304:1 22320:1 22328:2 22345:1 22380:1 22391:1 22403:1 22407:1 22412:1 22435:3 22457:2 22467:1 22478:1 22522:1 22530:1 22531:1 22550:1 22553:1 22559:1 22564:2 22578:1 22612:1 22626:1 22627:1 22632:1 22640:1 22642:1 22646:1 22662:5 22675:1 22688:1 22710:1 22713:1 22718:3 22726:1 22739:1 22827:1 22862:1 22868:1 22880:1 22886:1 22901:1 22907:1 22943:1 22946:1 22974:1 22992:1 23012:1 23024:2 23041:1 23077:5 23101:1 23105:1 23115:1 23130:1 23139:1 23158:2 23161:1 23169:1 23170:1 23188:1 23197:1 23217:1 23261:1 23291:3 23292:1 23316:1 23375:1 23406:1 23426:1 23440:1 23481:1 23497:1 23505:1 23514:1 23532:1 23557:1 23601:1 23635:2 23639:1 23695:2 23700:1 23721:1 23739:2 23775:1 23784:1 23786:1 23803:1 23826:1 23845:1 23889:1 23895:1 23909:1 23923:1 23932:1 24024:1 24025:1 24027:1 24055:1 24092:2 24129:1 24138:1 24140:1 24149:2 24161:1 24165:6 24166:1 24185:1 24233:1 24251:1 24263:1 24272:2 24275:3 24280:1 24285:2 24286:3 24289:1 24310:1 24357:1 24372:1 24408:1 24416:1 24424:1 24427:2 24443:4 24446:1 24471:1 24472:1 24479:1 24521:1 24592:1 24600:1 24643:1 24653:1 24658:1 24676:1 24710:1 24713:1 24720:1 24721:1 24733:1 24737:1 24747:1 24773:1 24774:1 24792:2 24830:1 24889:1 24917:1 24938:1 24944:2 24954:1 24966:1 24972:1 24976:1 24994:1 25019:1 25022:1 25026:1 25031:1 25032:1 25059:1 25073:1 25081:1 25125:3 25132:1 25145:1 25185:2 25191:1 25195:1 25200:1 25207:1 25213:1 25224:1 25250:1 25251:1 25254:1 25255:1 25256:1 25260:1 25267:2 25281:1 25299:1 25330:1 25346:1 25370:1 25412:1 25454:1 25487:1 25491:2 25532:1 25572:1 25600:1 25630:1 25644:1 25702:1 25717:1 25777:1 25791:1 25793:3 25804:1 25808:1 25809:1 25820:1 25822:1 25828:1 25841:1 25856:1 25863:2 25871:3 25880:1 25881:1 25892:1 25905:1 25909:1 25913:1 25964:1 25965:1 26005:1 26012:1 26015:4 26022:3 26028:1 26054:2 26067:1 26081:1 26098:1 26163:1 26174:1 26194:1 26213:1 26214:1 26221:1 26222:1 26229:1 26230:2 26236:1 26265:1 26301:1 26305:1 26306:3 26368:3 26452:1 26527:1 26538:1 26539:1 26544:2 26547:1 26557:1 26558:1 26580:1 26655:2 26664:2 26690:1 26696:2 26710:1 26733:1 26745:1 26757:2 26759:1 26787:1 26793:1 26832:1 26848:1 26855:1 26862:1 26879:1 26883:2 26910:1 26920:1 26923:1 26940:1 26957:1 26961:2 26973:1 26978:1 26987:1 26988:1 26990:1 27031:2
1 13:1 47:1 50:1 55:1 89:1 120:1 138:3 144:1 157:1 182:2 233:1 238:2 255:2 264:1 280:1 306:1 315:2 317:1 327:3 334:3 346:2 362:1 372:1 382:1 395:5 397:2 445:1 446:1 532:1 544:2 568:1 588:1 604:1 683:1 723:1 745:1 751:1 764:1 789:3 794:1 802:3 808:1 822:7 826:2 837:3 854:1 873:4 874:2 875:5 878:1 880:2 882:1 894:2 912:2 915:3 926:1 953:2 1017:1 1108:3 1109:2 1116:1 1122:1 1125:1 1154:1 1158:1 1173:1 1193:1 1195:1 1228:1 1244:1 1266:1 1279:1 1292:1 1316:1 1324:1 1346:1 1364:1 1405:1 1419:1 1437:1 1448:3 1454:2 1456:2 1469:1 1501:1 1514:1 1526:1 1530:2 1542:2 1553:1 1555:1 1559:1 1568:1 1571:1 1584:1 1592:1 1600:1 1606:1 1615:1 1634:1 1653:3 1675:1 1681:1 1684:2 1687:1 1688:1 1696:5 1723:1 1724:2 1759:1 1807:1 1809:1 1822:2 1866:1 1870:1 1892:1 1897:1 1899:1 1904:1 1907:1 1925:1 1931:1 1956:1 1959:1 1976:1 1978:1 1984:1 1990:1 2004:1 2027:6 2037:1 2046:1 2051:1 2078:1 2092:1 2103:2 2107:1 2123:1 2126:2 2143:1 2148:2 2150:1 2157:2 2158:1 2159:1 2161:1 2167:2 2170:2 2172:5 2173:2 2185:1 2224:1 2226:3 2248:1 2257:1 2274:1 2275:1 2277:1 2294:1 2296:1 2333:1 2342:1 2350:1 2360:1 2367:1 2405:1 2413:1 2417:1 2435:2 2439:1 2444:1 2445:1 2454:1 2457:1 2478:3 2479:1 2483:1 2496:1 2503:1 2505:1 2513:2 2526:1 2529:3 2535:3 2545:1 2557:1 2562:3 2563:2 2589:1 2591:2 2641:1 2654:2 2662:2 2671:1 2716:1 2738:2 2749:1 2752:6 2773:2 2774:1 2777:1 2779:1 2811:2 2839:2 2848:1 2856:1 2907:1 2917:1 2918:4 2934:2 2948:1 2989:1 3006:2 3014:1 3027:2 3042:2 3089:1 3128:1 3149:6 3277:1 3283:1 3291:1 3328:1 3358:2 3362:1 3384:9 3399:1 3403:2 3405:1 3425:1 3479:1 3480:1 3484:1 3489:1 3493:1 3501:1 3548:1 3549:1 3552:1 3559:1 3565:1 3576:1 3596:1 3599:1 3603:1 3608:1 3610:1 3626:1 3648:2 3664:1 3668:2 3670:1 3673:1 3678:1 3687:2 3700:1 3716:2 3734:2 3765:2 3766:3 3772:1 3808:1 3810:2 3813:1 3818:1 3837:1 3839:1 3864:1 3866:1 3875:1 3891:1 3910:1 3937:1 3941:1 3944:1 3950:1 3977:1 3981:1 3992:1 4008:1 4027:1 4045:4 4101:1 4104:1 4114:1 4133:1 4149:1 4156:2 4177:1 4202:1 4225:2 4246:1 4249:1 4252:1 4256:1 4257:2 4267:1 4276:1 4304:1 4355:1 4363:1 4371:1 4377:1 4380:1 4397:1 4420:1 4437:1 4443:2 4456:1 4459:1 4469:2 4475:1 4523:1 4565:3 4567:1 4574:1 4601:1 4684:1 4685:3 4687:2 4688:2 4690:1 4693:1 4695:1 4696:1 4698:1 4701:1 4703:2 4704:1 4706:1 4708:2 4709:2 4716:3 4721:1 4764:1 4776:1 4789:2 4891:1 4903:1 4930:1 4973:1 4977:1 5002:1 5008:1 5061:1 5088:2 5101:1 5121:1 5140:1 5157:2 5171:1 5188:1 5197:1 5220:1 5284:1 5287:1 5298:2 5302:1 5313:1 5314:1 5316:1 5317:1 5321:1 5369:2 5394:4 5406:2 5468:1 5483:1 5503:1 5509:1 5516:1 5522:1 5538:1 5549:1 5590:1 5594:1 5610:3 5612:1 5613:1 5619:1 5620:1 5636:1 5680:1 5692:1 5693:1 5696:7 5715:1 5735:2 5761:1 5787:1 5812:4 5872:1 5890:1 5897:1 5901:1 5906:1 5911:1 5912:1 5923:1 5997:1 6010:1 6046:1 6051:3 6052:2 6063:1 6106:1 6115:1 6177:1 6191:2 6270:1 6292:1 6295:1 6301:1 6316:3 6323:1 6327:1 6336:1 6338:1 6344:1 6355:1 6378:1 6389:1 6426:2 6442:1 6465:1 6476:1 6479:1 6483:1 6491:1 6507:1 6525:1 6529:1 6530:1 6537:1 6553:1 6563:6 6569:2 6595:1 6596:1 6606:1 6609:1 6610:1 6623:2 6631:3 6657:1 6670:1 6678:1 6702:1 6707:1 6716:1 6724:1 6752:1 6765:1 6812:1 6875:1 6931:1 6940:1 6945:1 6951:2 6955:1 6971:2 6974:1 6988:1 6989:2 7002:1 7012:1 7020:2 7028:1 7045:1 7051:1 7053:1 7081:1 7114:1 7120:1 7138:2 7153:2 7154:6 7165:1 7170:1 7173:3 7176:2 7183:1 7198:2 7199:2 7200:1 7213:18 7214:1 7220:1 7229:4 7231:2 7236:2 7270:1 7276:1 7278:1 7301:2 7302:2 7307:1 7309:1 7320:1 7331:1 7358:1 7380:2 7392:1 7410:1 7440:1 7453:1 7454:2 7483:1 7490:1 7559:1 7608:1 7631:1 7643:1 7654:1 7677:1 7700:10 7706:1 7724:2 7729:1 7773:1 7777:1 7781:1 7810:1 7821:1 7825:2 7827:1 7830:1 7844:1 7855:3 7860:2 7868:1 7894:1 7896:1 7918:1 7920:1 7930:1 7966:1 7969:1 8034:1 8038:1 8041:1 8061:1 8076:3 8087:1 8090:1 8122:1 8127:1 8145:1 8146:1 8162:1 8191:1 8196:1 8233:1 8234:1 8244:1 8271:1 8272:1 8285:1 8293:1 8316:1 8320:1 8324:2 8347:2 8360:1 8361:1 8370:1 8377:1 8394:1 8395:1 8407:1 8416:1 8423:1 8425:1 8429:1 8436:1 8455:2 8477:1 8505:1 8506:1 8516:2 8566:1 8570:2 8589:1 8596:1 8603:1 8605:1 8609:2 8629:1 8661:1 8672:1 8681:1 8683:1 8689:1 8692:2 8734:3 8770:1 8771:1 8795:1 8802:1 8807:1 8823:2 8835:1 8858:1 8865:1 8901:1 8905:1 8919:5 8924:1 8956:1 8981:1 9005:1 9024:1 9028:1 9032:1 9034:1 9061:1 9066:1 9096:1 9163:1 9173:1 9186:1 9201:1 9210:1 9243:1 9248:1 9249:1 9289:1 9294:1 9296:1 9301:2 9318:2 9325:3 9327:1 9354:2 9371:1 9398:1 9434:1 9449:2 9453:1 9485:1 9490:7 9492:1 9493:1 9497:1 9520:1 9588:2 9590:1 9628:1 9643:1 9644:1 9646:1 9649:1 9651:1 9661:1 9663:1 9665:2 9702:1 9715:4 9720:1 9722:1 9723:1 9729:1 9739:1 9742:1 9747:1 9755:3 9769:1 9771:1 9803:1 9810:1 9819:1 9823:2 9837:1 9846:1 9864:1 9866:1 9877:1 9881:1 9886:2 9900:3 9910:1 9926:1 9953:2 9964:1 9982:1 9983:1 9991:1 9995:1 10026:1 10047:1 10057:3 10080:1 10093:1 10106:2 10140:1 10180:1 10191:1 10201:1 10224:1 10225:1 10239:1 10240:2 10246:2 10252:1 10261:1 10264:2 10265:5 10268:1 10276:1 10282:1 10283:1 10288:1 10289:1 10293:1 10310:1 10336:2 10345:1 10372:1 10373:1 10376:1 10406:1 10411:1 10424:1 10436:1 10440:1 10515:1 10556:1 10586:1 10592:1 10611:1 10627:1 10630:1 10635:1 10644:2 10646:1 10663:2 10667:1 10678:1 10693:5 10694:1 10707:1 10718:1 10734:3 10746:2 10756:1 10759:1 10799:1 10813:1 10818:2 10831:1 10847:1 10859:1 10890:1 10906:1 10932:1 10934:1 10950:1 10951:1 10962:1 10968:1 10969:1 10988:1 11006:2 11009:2 11031:1 11118:1 11141:1 11166:1 11184:1 11206:1 11214:1 11220:1 11243:2 11283:1 11301:1 11321:1 11327:1 11365:1 11381:1 11382:1 11394:1 11406:2 11412:1 11415:1 11476:1 11478:1 11502:1 11506:1 11520:1 11542:1 11547:1 11557:1 11638:2 11662:1 11705:1 11718:1 11720:2 11736:1 11774:1 11824:1 11839:1 11859:1 11882:5 11886:1 11904:1 11923:1 11929:1 11936:1 11943:1 11980:1 11983:1 12045:1 12081:1 12090:1 12091:1 12100:1 12110:1 12134:1 12151:2 12208:1 12231:1 12252:1 12254:1 12257:4 12269:1 12290:1 12306:1 12323:1 12325:1 12346:1 12387:1 12389:1 12399:1 12400:1 12410:1 12413:1 12436:1 12437:1 12446:1 12452:1 12463:6 12506:1 12533:1 12559:1 12590:3 12616:3 12633:1 12668:1 12685:1 12694:1 12705:1 12707:1 12714:1 12728:2 12732:1 12737:1 12741:5 12760:1 12765:1 12787:1 12831:1 12887:2 12926:1 12929:1 12941:1 12960:1 12978:1 12986:1 13005:6 13025:2 13032:1 13064:1 13085:1 13103:1 13131:1 13161:1 13197:1 13237:1 13261:3 13277:1 13320:1 13383:2 13384:1 13404:1 13410:1 13442:1 13452:1 13470:1 13499:1 13524:1 13548:1 13563:2 13578:3 13585:1 13632:2 13637:2 13679:1 13680:1 13690:1 13720:1 13731:1 13756:2 13768:1 13771:2 13804:1 13807:1 13850:1 13891:2 13892:2 13902:1 13977:1 13979:1 13984:1 13998:1 14032:1 14155:1 14204:1 14211:1 14226:1 14240:1 14245:1 14248:1 14270:1 14274:1 14295:1 14311:1 14315:1 14345:1 14387:1 14397:1 14419:1 14424:2 14484:1 14486:1 14564:1 14575:1 14579:2 14593:1 14609:1 14639:1 14658:1 14666:1 14703:1 14719:2 14726:1 14737:1 14739:2 14764:2 14847:1 14857:6 14872:1 14876:3 14900:1 14904:1 14943:1 14958:1 14962:2 14972:2 14990:1 14994:1 15029:1 15046:1 15052:1 15062:1 15064:1 15068:1 15074:2 15117:1 15122:1 15128:1 15130:1 15131:2 15132:1 15133:1 15135:1 15137:1 15139:1 15140:2 15143:1 15204:1 15206:1 15232:1 15251:1 15255:1 15256:1 15279:1 15288:1 15328:1 15370:1 15418:1 15434:1 15445:1 15446:1 15455:1 15456:1 15466:1 15470:3 15478:2 15496:1 15501:1 15513:1 15522:1 15534:1 15544:1 15585:3 15588:1 15613:3 15618:1 15671:1 15678:2 15689:1 15706:1 15720:1 15778:2 15823:1 15849:1 15898:1 15946:1 15950:1 15980:1 15987:1 15992:1 16022:1 16034:2 16039:1 16055:1 16072:1 16116:1 16119:1 16159:1 16163:1 16183:1 16187:1 16202:1 16212:1 16218:1 16224:1 16232:3 16238:2 16250:1 16293:1 16294:1 16305:1 16315:1 16316:1 16331:1 16368:1 16389:1 16428:1 16434:1 16451:1 16453:1 16482:1 16483:1 16484:1 16508:1 16513:1 16518:2 16557:1 16594:1 16602:1 16616:1 16684:1 16710:1 16720:1 16740:1 16814:1 16815:1 16833:1 16862:1 16879:1 16934:1 16937:1 16951:1 16999:3 17050:1 17071:1 17087:6 17097:1 17103:2 17128:1 17184:3 17192:1 17204:1 17243:1 17251:1 17263:1 17276:1006 17285:1 17289:1 17302:1 17351:1 17353:1 17374:1 17467:1 17469:1 17474:1 17475:2 17495:1 17515:1 17526:1 17552:1 17592:1 17599:2 17654:1 17684:2 17697:1 17707:1 17717:1 17748:1 17754:1 17765:1 17787:1 17795:1 17803:1 17809:1 17817:1 17836:2 17837:2 17855:2 17859:1 17862:1 17870:2 17876:1 17895:1 17896:1 17904:1 17917:1 17927:2 17951:1 17966:1 17970:1 17992:2 17999:1 18011:1 18043:1 18047:2 18052:1 18054:1 18070:1 18075:4 18101:1 18116:1 18123:1 18141:1 18156:1 18159:1 18187:1 18193:1 18194:1 18234:1 18240:1 18271:1 18282:1 18295:2 18297:1 18303:1 18308:1 18323:1 18326:1 18332:1 18339:1 18343:1 18349:1 18374:1 18381:1 18382:1 18420:1 18422:1 18428:2 18474:1 18501:1 18503:1 18504:1 18519:1 18529:1 18536:1 18538:1 18548:1 18556:3 18564:1 18582:1 18598:1 18604:1 18638:1 18658:1 18665:1 18690:1 18707:1 18716:2 18718:2 18735:2 18756:1 18805:1 18821:1 18835:1 18838:1 18847:1 18848:1 18868:1 18905:1 18933:1 18937:2 18941:1 18960:1 18962:1 18969:1 18996:5 19013:1 19039:1 19057:1 19085:1 19101:2 19133:1 19140:1 19183:2 19190:1 19201:2 19215:1 19245:1 19254:1 19279:1 19311:1 19331:2 19334:1 19349:1 19359:3 19391:1 19394:1 19421:1 19439:1 19459:2 19478:1 19484:2 19506:2 19521:1 19522:1 19537:2 19545:1 19547:1 19564:1 19591:1 19627:1 19629:1 19633:1 19636:2 19697:1 19757:1 19785:1 19790:1 19791:1 19798:1 19806:1 19821:1 19830:1 19873:1 19880:1 19896:1 19921:1 19927:1 19931:2 19934:1 19959:2 19960:1 19976:1 19978:2 19989:1 19998:3 20001:1 20017:1 20028:1 20041:1 20061:1 20066:1 20071:1 20075:1 20125:1 20134:1 20141:1 20149:1 20151:2 20154:1 20177:1 20179:1 20205:1 20206:1 20210:2 20212:1 20240:1 20252:1 20316:3 20322:1 20325:1 20326:1 20328:1 20334:1 20337:1 20352:3 20368:1 20396:2 20400:1 20417:1 20481:1 20503:1 20524:1 20532:1 20546:1 20553:1 20556:1 20567:1 20572:2 20588:1 20592:1 20611:1 20628:1 20633:1 20634:4 20647:1 20655:1 20656:2 20662:1 20666:1 20676:1 20692:1 20719:5 20720:1 20733:1 20754:1 20772:1 20779:2 20780:1 20787:1 20796:1 20812:1 20844:2 20879:1 20887:3 20889:1 20900:3 20905:1 20919:1 20924:1 20962:1 20963:1 20968:2 20976:1 20991:1 21005:1 21029:1 21079:1 21100:1 21115:1 21116:1 21130:1 21134:2 21150:3 21163:1 21176:1 21218:1 21220:1 21234:1 21284:1 21303:2 21309:1 21311:1 21340:2 21370:2 21434:1 21453:2 21456:1 21462:4 21469:2 21479:1 21488:1 21501:1 21502:1 21512:1 21520:1 21559:1 21586:1 21613:2 21642:1 21647:1 21650:1 21674:1 21686:1 21694:1 21695:1 21730:1 21733:1 21743:1 21772:1 21773:1 21777:1 21792:1 21794:1 21800:1 21845:1 21846:3 21848:1 21862:2 21864:1 21865:1 21916:1 21917:1 21930:1 22014:1 22019:1 22053:1 22074:1 22078:1 22088:1 22130:1 22136:1 22196:1 22230:1 22238:1 22263:1 22282:2 22304:1 22320:1 22328:2 22345:1 22380:1 22391:1 22403:1 22407:1 22412:1 22435:3 22457:2 22467:1 22478:1 22522:1 22530:1 22531:1 22550:1 22553:1 22559:1 22564:2 22578:1 22612:1 22626:1 22627:1 22632:1 22640:1 22642:1 22646:1 22662:6 22675:1 22685:1 22688:1 22710:1 22713:1 22718:3 22726:1 22739:1 22827:1 22862:1 22868:1 22880:1 22886:2 22901:1 22907:1 22943:1 22946:1 22974:1 22992:1 23012:2 23024:2 23041:1 23077:6 23101:1 23105:1 23115:1 23130:1 23139:1 23158:2 23161:1 23169:1 23170:1 23188:1 23197:1 23217:1 23261:1 23291:3 23292:1 23316:1 23373:1 23375:1 23404:1 23406:1 23426:1 23440:1 23481:1 23497:1 23503:1 23505:1 23514:1 23532:1 23557:1 23601:1 23609:1 23635:2 23639:1 23695:2 23700:1 23721:1 23739:2 23775:1 23784:1 23786:1 23803:1 23826:1 23845:1 23889:1 23895:1 23909:1 23923:1 23932:1 24024:1 24025:1 24027:1 24055:1 24061:1 24092:2 24129:1 24138:1 24140:1 24149:2 24161:1 24165:6 24166:1 24185:1 24220:1 24233:1 24251:1 24263:1 24272:2 24275:3 24280:2 24285:2 24286:3 24289:1 24310:1 24357:1 24372:1 24408:1 24416:1 24424:1 24427:2 24443:4 24446:1 24471:1 24472:1 24479:1 24521:1 24553:1 24592:1 24600:1 24643:1 24653:1 24658:1 24676:1 24710:1 24713:1 24720:1 24721:1 24733:1 24737:1 24747:1 24773:1 24774:2 24792:2 24809:1 24830:1 24889:1 24917:1 24938:1 24944:2 24954:1 24966:1 24972:1 24976:1 24994:1 25019:1 25022:1 25026:1 25031:1 25032:1 25059:1 25073:1 25081:1 25125:3 25132:1 25145:1 25185:2 25191:1 25195:1 25200:1 25207:1 25213:1 25224:1 25250:1 25251:1 25254:1 25255:1 25256:1 25260:1 25267:2 25277:1 25281:1 25295:1 25299:1 25329:1 25330:1 25346:1 25370:1 25412:1 25454:1 25479:1 25487:1 25491:2 25532:1 25572:1 25600:1 25630:1 25644:1 25702:1 25717:1 25777:1 25791:1 25793:3 25804:1 25808:1 25809:1 25820:1 25822:1 25828:1 25841:1 25856:1 25863:2 25871:3 25880:1 25881:1 25892:2 25905:1 25909:1 25913:1 25964:1 25965:1 26005:1 26012:1 26015:4 26022:3 26028:1 26054:3 26067:1 26081:1 26098:1 26163:1 26174:1 26194:1 26213:1 26214:1 26221:1 26222:1 26229:1 26230:2 26236:1 26265:2 26301:1 26305:1 26306:4 26368:3 26452:1 26527:1 26538:1 26539:1 26544:2 26547:1 26557:1 26558:1 26580:1 26612:1 26655:2 26664:2 26690:1 26696:2 26710:1 26733:1 26745:1 26750:1 26757:2 26759:1 26787:1 26793:1 26832:1 26848:1 26855:1 26862:1 26879:1 26883:3 26910:1 26920:1 26923:1 26940:1 26957:1 26961:2 26973:1 26978:1 26987:1 26988:1 26990:1 27031:2
1 13:1 47:1 50:1 55:1 89:1 120:1 137:1 138:3 144:1 157:1 165:1 169:1 182:2 222:1 233:1 238:2 255:2 264:1 280:1 306:1 315:3 317:2 327:3 334:3 346:2 362:1 372:1 382:1 395:5 397:2 412:1 445:1 446:1 532:1 544:2 568:1 578:1 588:1 604:1 630:1 683:1 723:1 745:1 751:1 764:1 789:3 794:1 802:3 808:1 822:7 826:2 837:3 854:1 873:4 874:2 875:6 878:1 880:2 882:1 894:2 912:2 915:3 926:1 953:2 972:1 1017:1 1108:3 1109:2 1116:1 1122:1 1125:1 1154:1 1158:1 1173:1 1193:1 1195:1 1228:1 1244:1 1264:1 1266:1 1279:1 1292:1 1316:1 1324:1 1346:1 1364:1 1371:1 1379:1 1392:1 1402:1 1405:1 1419:1 1437:1 1448:3 1454:3 1456:2 1469:1 1490:1 1501:1 1514:1 1526:1 1530:2 1542:2 1553:1 1555:1 1559:1 1568:1 1571:1 1584:1 1592:1 1600:1 1606:1 1615:1 1634:1 1653:3 1675:1 1681:1 1684:2 1687:1 1688:1 1696:5 1723:2 1724:2 1759:1 1807:1 1809:1 1822:2 1866:1 1870:1 1892:1 1897:1 1899:1 1904:1 1907:1 1925:1 1931:1 1956:1 1959:1 1976:1 1978:1 1984:1 1990:1 2004:1 2027:7 2037:1 2046:1 2051:1 2078:1 2092:1 2103:2 2107:1 2123:1 2126:2 2143:1 2148:2 2150:1 2157:2 2158:2 2159:1 2161:1 2167:2 2170:2 2172:5 2173:2 2185:1 2224:1 2226:3 2248:1 2257:1 2274:1 2275:1 2277:1 2294:1 2296:1 2328:1 2333:1 2342:1 2350:1 2360:1 2367:1 2405:1 2413:1 2417:1 2435:2 2437:1 2439:3 2444:1 2445:1 2454:1 2457:1 2478:3 2479:1 2483:1 2496:2 2503:1 2505:1 2513:2 2520:1 2526:1 2529:3 2535:3 2545:1 2557:1 2562:3 2563:2 2589:1 2591:2 2638:1 2640:1 2641:1 2654:2 2662:2 2671:1 2716:1 2738:2 2749:1 2752:7 2773:2 2774:1 2777:1 2779:1 2811:3 2839:2 2848:1 2856:1 2907:1 2917:1 2918:4 2934:2 2948:1 2989:1 3006:2 3014:1 3027:2 3042:2 3089:1 3128:1 3149:6 3277:1 3283:1 3291:1 3328:1 3358:2 3362:1 3384:9 3399:1 3403:2 3405:1 3425:1 3479:1 3480:1 3484:1 3489:1 3493:1 3501:1 3548:1 3549:1 3552:1 3559:1 3562:1 3565:1 3576:1 3596:1 3599:1 3603:2 3608:1 3610:1 3626:2 3631:1 3648:2 3664:1 3668:2 3670:1 3673:1 3678:1 3687:2 3700:1 3716:2 3734:2 3765:2 3766:3 3772:1 3808:1 3810:2 3813:1 3818:1 3837:1 3839:2 3864:1 3866:1 3875:1 3891:1 3910:1 3932:1 3937:1 3941:1 3944:1 3950:1 3954:1 3977:1 3981:1 3992:1 4008:1 4027:1 4045:4 4075:1 4081:1 4101:1 4104:1 4114:1 4127:2 4133:1 4149:1 4156:2 4177:1 4194:1 4202:1 4225:2 4246:1 4249:1 4252:1 4256:1 4257:2 4267:1 4276:1 4304:1 4355:1 4363:2 4371:1 4377:1 4380:1 4397:1 4420:1 4437:1 4443:2 4456:1 4459:1 4469:2 4475:1 4523:1 4565:5 4567:1 4574:1 4601:1 4684:1 4685:3 4687:2 4688:2 4690:1 4693:1 4695:1 4696:1 4698:1 4701:1 4703:3 4704:1 4706:1 4708:2 4709:2 4716:3 4721:1 4764:1 4776:1 4789:2 4891:1 4903:1 4930:1 4973:1 4977:1 5002:1 5008:1 5018:1 5061:1 5088:2 5101:1 5121:1 5140:1 5157:2 5171:1 5188:1 5197:1 5220:1 5230:1 5284:1 5287:1 5292:1 5298:2 5302:1 5313:1 5314:1 5316:2 5317:1 5321:1 5369:2 5394:4 5406:2 5468:1 5483:1 5485:1 5503:1 5509:1 5516:1 5522:1 5538:1 5549:1 5576:1 5590:1 5594:1 5610:3 5612:1 5613:1 5619:1 5620:1 5636:1 5673:1 5680:1 5692:1 5693:1 5696:7 5715:1 5735:2 5761:1 5787:2 5812:4 5824:1 5872:1 5890:1 5897:1 5901:1 5906:1 5911:1 5912:1 5923:1 5997:1 6010:1 6046:1 6051:3 6052:2 6063:1 6106:1 6115:1 6124:1 6177:1 6191:2 6270:1 6292:1 6295:1 6301:1 6316:3 6323:1 6327:1 6336:1 6338:1 6344:1 6355:1 6378:1 6389:1 6426:2 6442:1 6465:1 6476:1 6479:1 6483:1 6491:1 6507:1 6525:1 6529:1 6530:1 6537:1 6553:1 6563:6 6569:2 6595:1 6596:1 6606:1 6609:1 6610:1 6623:2 6626:1 6631:4 6657:1 6670:1 6678:1 6702:1 6707:1 6716:1 6724:1 6752:1 6765:1 6812:1 6875:1 6931:1 6940:1 6945:1 6951:3 6955:1 6971:2 6974:1 6988:1 6989:2 7002:1 7012:1 7020:2 7028:1 7045:1 7051:1 7053:1 7081:1 7114:1 7120:1 7138:2 7153:3 7154:6 7165:1 7170:1 7173:3 7176:2 7183:1 7198:2 7199:2 7200:1 7213:19 7214:1 7220:1 7222:1 7229:4 7231:3 7236:2 7270:1 7276:1 7278:1 7297:1 7301:2 7302:2 7307:1 7309:1 7320:1 7331:1 7358:1 7380:2 7392:1 7410:1 7440:1 7453:1 7454:3 7483:1 7490:1 7559:1 7608:1 7631:1 7643:1 7654:1 7677:1 7700:11 7706:1 7724:2 7729:1 7732:1 7773:1 7776:1 7777:1 7781:1 7810:1 7821:1 7825:2 7827:1 7830:1 7844:1 7855:3 7860:2 7868:1 7894:1 7896:1 7918:1 7920:1 7930:1 7966:1 7969:1 8034:1 8038:1 8041:1 8061:1 8076:3 8087:1 8090:1 8122:1 8127:1 8145:1 8146:1 8162:1 8191:1 8196:1 8233:1 8234:1 8244:1 8271:1 8272:1 8285:1 8293:1 8316:1 8319:1 8320:1 8324:2 8347:2 8360:1 8361:1 8370:1 8377:1 8394:1 8395:1 8407:1 8416:1 8423:1 8425:1 8429:1 8436:1 8455:3 8477:1 8505:1 8506:1 8516:2 8566:1 8570:2 8589:1 8596:1 8603:1 8605:1 8609:2 8629:1 8661:1 8672:1 8681:1 8683:1 8689:1 8692:3 8734:3 8770:1 8771:1 8795:1 8802:1 8807:1 8823:2 8835:1 8858:1 8865:1 8901:1 8905:1 8919:5 8924:1 8956:1 8981:1 9005:1 9024:1 9028:1 9032:2 9034:1 9061:1 9066:1 9096:1 9163:1 9173:1 9186:1 9200:1 9201:1 9210:1 9243:1 9248:1 9249:1 9289:1 9294:1 9296:1 9301:2 9318:2 9325:3 9327:1 9354:2 9371:1 9372:1 9398:1 9410:1 9434:1 9444:1 9449:2 9453:1 9481:1 9485:1 9490:7 9492:1 9493:1 9497:1 9520:1 9540:1 9588:2 9590:1 9628:1 9643:1 9644:1 9646:1 9649:1 9651:1 9661:1 9663:1 9665:2 9702:1 9715:4 9720:1 9722:1 9723:1 9729:1 9739:1 9742:1 9747:1 9755:3 9769:1 9771:1 9787:1 9803:1 9810:1 9819:1 9823:2 9837:1 9846:1 9864:1 9866:1 9877:1 9881:1 9886:2 9900:3 9910:1 9926:1 9953:2 9964:1 9982:1 9983:1 9991:1 9995:1 10026:1 10047:1 10057:3 10080:1 10093:1 10106:2 10140:1 10180:1 10191:1 10201:1 10224:1 10225:1 10239:1 10240:2 10246:2 10252:1 10261:1 10264:2 10265:5 10268:1 10276:1 10282:1 10283:1 10288:1 10289:1 10293:1 10310:1 10321:1 10336:2 10345:1 10372:1 10373:1 10376:1 10406:1 10411:1 10424:1 10436:1 10440:1 10466:1 10515:1 10556:1 10586:1 10592:1 10611:1 10614:1 10627:1 10630:2 10635:1 10644:2 10646:1 10663:2 10667:1 10678:1 10693:6 10694:1 10707:1 10718:1 10734:3 10742:1 10746:2 10756:1 10759:1 10799:1 10813:1 10818:2 10831:1 10847:1 10859:1 10890:1 10906:1 10932:3 10934:1 10950:1 10951:1 10962:1 10968:1 10969:1 10988:1 11006:3 11009:2 11031:1 11118:1 11141:1 11166:3 11184:1 11206:1 11214:1 11220:1 11227:1 11243:2 11283:1 11301:1 11306:1 11321:1 11327:1 11365:1 11380:2 11381:1 11382:1 11394:1 11406:2 11412:1 11415:1 11418:1 11424:1 11476:1 11478:1 11502:1 11506:1 11520:1 11542:1 11547:1 11557:1 11638:2 11662:1 11705:1 11718:1 11720:2 11736:1 11774:1 11824:1 11839:1 11859:1 11882:5 11886:1 11904:1 11923:1 11929:1 11936:1 11943:1 11980:2 11983:1 12039:1 12045:1 12081:1 12090:1 12091:1 12100:1 12110:1 12134:1 12151:2 12208:1 12231:1 12252:1 12254:2 12257:4 12269:1 12290:1 12306:1 12323:1 12325:1 12346:1 12352:1 12385:1 12387:1 12389:1 12399:1 12400:1 12410:2 12413:1 12436:1 12437:1 12446:1 12452:1 12463:6 12469:1 12506:1 12533:1 12559:1 12590:3 12616:3 12633:1 12668:1 12685:1 12692:1 12694:1 12705:1 12707:1 12714:1 12728:2 12732:1 12737:1 12741:5 12760:1 12765:1 12787:1 12831:1 12887:2 12926:1 12929:1 12939:1 12941:1 12960:1 12978:1 12986:1 13005:6 13025:2 13032:1 13041:1 13064:1 13085:1 13103:1 13131:1 13161:1 13197:1 13211:1 13237:1 13261:3 13277:1 13320:1 13383:2 13384:1 13391:1 13404:1 13410:1 13442:1 13452:1 13470:1 13480:1 13499:1 13524:1 13548:1 13563:2 13578:3 13585:1 13632:2 13637:2 13679:1 13680:1 13690:1 13720:1 13731:1 13756:2 13768:1 13771:2 13804:1 13807:1 13850:1 13891:2 13892:2 13902:1 13977:1 13979:1 13984:1 13998:1 14032:1 14155:1 14182:1 14204:1 14211:1 14226:1 14240:1 14245:1 14248:1 14270:1 14274:1 14295:1 14311:1 14315:1 14345:1 14387:1 14397:1 14419:1 14424:2 14460:1 14484:1 14486:1 14552:1 14564:1 14575:1 14579:2 14593:1 14606:1 14609:1 14639:1 14658:1 14666:1 14703:1 14719:2 14726:1 14737:1 14739:2 14764:2 14847:1 14853:1 14857:6 14872:1 14876:3 14900:1 14904:1 14943:1 14958:1 14962:2 14972:2 14990:1 14994:1 15029:1 15046:1 15052:1 15062:1 15064:1 15068:1 15074:2 15117:1 15122:1 15128:1 15130:1 15131:2 15132:2 15133:1 15135:2 15137:1 15139:1 15140:2 15143:1 15144:1 15204:1 15206:1 15232:1 15251:1 15255:1 15256:1 15279:1 15288:1 15328:1 15370:1 15418:1 15434:1 15445:1 15446:1 15455:1 15456:1 15466:1 15470:3 15478:2 15496:1 15501:1 15513:1 15522:1 15534:1 15544:1 15585:3 15588:1 15613:3 15618:1 15671:1 15678:2 15689:1 15706:1 15720:1 15778:3 15811:1 15823:1 15849:1 15878:1 15895:1 15898:1 15946:1 15950:1 15980:1 15987:1 15992:1 16022:1 16034:2 16039:1 16055:1 16072:1 16116:1 16119:1 16159:1 16163:1 16183:1 16187:1 16202:1 16212:1 16218:1 16224:1 16232:3 16238:2 16250:1 16284:1 16293:1 16294:1 16305:1 16315:1 16316:1 16331:1 16368:1 16389:2 16416:1 16428:1 16434:1 16451:1 16453:1 16482:1 16483:1 16484:1 16508:1 16513:1 16518:2 16557:1 16594:1 16602:1 16616:1 16684:1 16710:1 16720:1 16740:2 16814:2 16815:1 16833:1 16862:1 16879:1 16934:1 16937:1 16951:1 16981:1 16999:3 17050:1 17071:1 17087:6 17097:1 17103:3 17128:1 17142:1 17184:3 17192:1 17204:1 17218:1 17243:1 17251:2 17263:1 17276:1151 17285:1 17289:1 17302:1 17351:1 17353:1 17374:1 17467:1 17469:1 17474:1 17475:2 17495:1 17515:1 17526:1 17552:1 17592:1 17599:2 17654:1 17684:2 17697:1 17707:1 17717:1 17748:1 17754:1 17765:1 17787:1 17795:1 17803:1 17809:1 17817:1 17836:2 17837:2 17855:2 17859:1 17862:1 17870:2 17876:1 17895:1 17896:1 17904:1 17917:1 17927:2 17951:1 17966:1 17970:1 17992:2 17999:1 18011:1 18043:1 18047:3 18052:1 18054:1 18062:1 18070:1 18075:4 18090:1 18101:1 18116:1 18123:1 18141:1 18156:1 18159:1 18187:1 18193:1 18194:1 18234:1 18240:1 18271:1 18282:1 18295:2 18297:1 18301:1 18303:1 18308:1 18323:1 18326:1 18332:1 18339:1 18343:1 18349:1 18374:1 18381:1 18382:1 18420:1 18422:1 18428:2 18430:1 18474:1 18495:1 18501:1 18503:1 18504:1 18508:1 18519:1 18529:1 18536:1 18538:1 18548:1 18556:3 18564:1 18580:1 18582:1 18598:1 18603:1 18604:1 18628:1 18638:1 18653:1 18658:1 18665:1 18690:1 18691:1 18707:1 18716:2 18718:3 18735:2 18738:1 18756:1 18805:1 18817:1 18821:1 18835:1 18838:1 18847:1 18848:1 18868:1 18875:1 18905:1 18933:1 18937:2 18941:1 18960:1 18962:1 18969:1 18996:6 19013:1 19039:1 19057:1 19085:1 19101:2 19112:1 19125:1 19128:1 19133:1 19140:1 19183:2 19189:1 19190:1 19201:2 19215:1 19243:2 19245:1 19254:1 19279:1 19311:2 19331:3 19334:1 19349:1 19359:3 19391:1 19394:1 19412:1 19421:1 19439:1 19447:1 19459:2 19478:1 19484:2 19506:2 19521:1 19522:1 19537:2 19545:1 19547:1 19564:1 19577:1 19591:1 19627:1 19629:1 19633:2 19636:2 19697:1 19757:1 19773:1 19785:1 19790:1 19791:1 19798:1 19806:1 19821:1 19830:1 19873:1 19880:1 19896:1 19921:1 19927:1 19931:2 19934:1 19959:2 19960:1 19976:1 19978:2 19989:1 19998:3 20001:1 20017:1 20028:1 20041:1 20049:1 20061:1 20066:1 20071:1 20075:1 20125:1 20134:1 20141:1 20149:1 20151:2 20154:1 20177:1 20179:1 20205:1 20206:1 20210:2 20212:1 20240:1 20252:1 20316:3 20322:1 20325:1 20326:1 20328:1 20334:1 20337:1 20352:3 20368:1 20381:1 20396:2 20400:1 20417:1 20444:1 20481:1 20503:1 20524:1 20532:1 20546:1 20553:1 20556:1 20567:1 20572:3 20588:1 20592:1 20611:1 20628:2 20632:1 20633:1 20634:4 20647:1 20655:1 20656:2 20662:1 20666:1 20676:1 20692:1 20719:5 20720:1 20733:1 20754:1 20772:1 20779:2 20780:1 20787:1 20796:1 20812:1 20844:2 20879:1 20887:3 20889:1 20900:3 20905:2 20919:1 20924:1 20938:1 20962:1 20963:1 20968:2 20976:1 20991:1 21005:1 21029:1 21079:1 21100:1 21115:1 21116:1 21130:1 21134:2 21138:1 21150:3 21163:1 21176:1 21218:1 21220:1 21234:1 21284:1 21303:2 21309:1 21311:1 21340:3 21370:2 21434:1 21453:2 21456:1 21462:4 21469:2 21479:1 21484:1 21488:1 21501:1 21502:1 21512:1 21520:1 21559:1 21586:1 21613:2 21635:1 21642:1 21647:1 21650:1 21674:1 21686:1 21694:1 21695:1 21730:1 21733:1 21743:1 21755:1 21772:1 21773:1 21777:1 21792:1 21794:1 21800:1 21845:1 21846:3 21848:1 21862:2 21863:1 21864:1 21865:1 21916:1 21917:1 21930:1 21991:1 22014:1 22019:1 22053:1 22074:1 22076:1 22078:1 22088:1 22130:1 22136:1 22196:1 22230:1 22238:1 22263:1 22282:2 22296:1 22304:1 22320:1 22328:3 22345:1 22380:1 22391:1 22403:1 22407:1 22412:1 22435:3 22457:2 22459:1 22467:1 22478:1 22522:1 22530:1 22531:1 22550:1 22553:1 22559:1 22564:2 22578:1 22612:1 22626:1 22627:1 22632:1 22640:1 22642:1 22646:1 22662:6 22675:1 22685:1 22688:1 22710:1 22713:1 22718:3 22726:1 22739:1 22827:1 22856:1 22862:1 22868:1 22880:1 22886:2 22901:1 22907:1 22943:1 22946:1 22974:1 22992:1 22993:1 23012:2 23018:1 23024:2 23041:1 23077:6 23101:1 23105:1 23106:1 23115:1 23130:1 23139:1 23158:2 23161:1 23169:1 23170:1 23188:1 23197:1 23217:1 23261:1 23291:3 23292:1 23316:1 23373:1 23375:1 23404:1 23406:1 23426:1 23440:1 23481:1 23497:1 23503:2 23505:1 23514:1 23532:1 23557:1 23601:1 23609:1 23631:1 23635:2 23639:1 23666:1 23695:2 23700:1 23721:1 23739:2 23774:1 23775:1 23784:1 23786:1 23803:1 23826:1 23845:1 23889:1 23895:1 23909:1 23923:1 23932:1 24009:1 24024:1 24025:1 24027:1 24055:1 24061:1 24092:2 24101:1 24126:1 24129:1 24138:1 24140:1 24149:2 24161:1 24165:6 24166:1 24177:1 24185:1 24220:1 24231:1 24233:1 24251:1 24263:1 24272:2 24275:3 24280:3 24285:2 24286:4 24289:1 24310:1 24357:1 24372:1 24408:1 24416:1 24420:1 24424:1 24427:2 24443:4 24444:1 24446:1 24471:1 24472:1 24479:1 24500:1 24521:1 24553:1 24570:1 24592:1 24600:1 24643:1 24653:1 24658:3 24676:1 24710:1 24713:1 24715:1 24720:1 24721:1 24733:1 24737:1 24747:1 24773:1 24774:2 24792:2 24809:1 24830:1 24889:1 24917:1 24938:1 24944:2 24954:1 24966:1 24972:1 24976:1 24994:1 25005:1 25019:1 25022:1 25026:1 25031:1 25032:1 25059:1 25073:1 25081:1 25125:3 25132:1 25145:1 25185:2 25191:1 25195:1 25200:1 25207:1 25213:1 25214:1 25224:1 25250:1 25251:1 25254:1 25255:1 25256:1 25260:1 25267:2 25277:1 25281:1 25295:1 25299:1 25302:1 25329:1 25330:1 25346:1 25370:1 25412:1 25454:1 25479:1 25487:1 25491:2 25532:1 25572:1 25600:1 25630:1 25644:1 25693:1 25702:1 25717:1 25777:1 25791:1 25793:3 25804:1 25808:1 25809:1 25820:1 25822:1 25828:1 25829:2 25841:1 25856:1 25863:2 25871:3 25880:1 25881:1 25892:2 25905:1 25909:1 25913:1 25964:1 25965:1 26005:1 26012:2 26015:4 26022:3 26028:1 26054:4 26067:1 26081:1 26098:1 26163:1 26174:1 26194:1 26213:1 26214:1 26221:1 26222:1 26229:1 26230:2 26236:1 26265:2 26301:1 26305:1 26306:5 26368:3 26452:1 26527:1 26538:1 26539:1 26544:2 26547:1 26557:1 26558:1 26580:1 26612:1 26655:2 26664:2 26690:1 26696:2 26710:1 26733:1 26745:1 26750:1 26757:2 26759:1 26787:1 26793:1 26832:1 26848:1 26855:1 26862:1 26879:1 26883:3 26910:1 26920:1 26923:1 26940:1 26957:1 26961:2 26973:1 26978:1 26979:1 26986:1 26987:1 26988:1 26990:1 27031:2
1 13:1 47:1 50:1 55:1 89:1 120:1 137:1 138:3 144:1 157:1 165:1 169:1 182:2 222:1 233:1 238:4 255:2 264:1 280:1 306:1 315:3 317:2 327:3 334:3 346:2 362:1 372:1 382:1 395:5 397:2 404:1 412:1 445:1 446:1 532:1 544:2 568:1 578:1 588:1 604:1 630:1 683:1 723:1 745:1 751:1 764:1 789:3 794:1 802:3 808:1 822:7 826:2 837:3 854:1 873:4 874:2 875:6 878:1 880:2 882:1 894:2 912:2 915:3 926:1 953:2 972:1 1002:1 1013:1 1017:1 1108:3 1109:2 1116:1 1122:1 1125:1 1154:1 1158:1 1173:2 1193:1 1195:1 1228:1 1244:1 1264:1 1266:1 1279:1 1292:1 1316:1 1324:1 1346:1 1364:1 1371:1 1379:1 1392:1 1402:1 1405:1 1419:1 1437:1 1448:3 1454:4 1456:2 1469:1 1490:1 1501:1 1514:1 1526:1 1530:2 1542:2 1553:1 1555:1 1559:1 1568:1 1571:1 1584:1 1592:1 1600:1 1606:1 1615:1 1634:2 1653:3 1675:1 1681:1 1684:2 1687:1 1688:1 1696:5 1723:2 1724:2 1737:1 1759:2 1807:1 1809:1 1822:2 1866:1 1870:1 1892:2 1897:1 1899:1 1904:1 1907:1 1925:1 1931:1 1956:1 1959:1 1976:1 1978:1 1984:1 1988:1 1990:1 2004:1 2027:7 2037:1 2046:1 2051:1 2078:1 2092:1 2103:2 2107:1 2123:1 2126:2 2142:1 2143:1 2148:2 2150:1 2157:2 2158:2 2159:1 2161:1 2167:3 2170:2 2172:5 2173:2 2185:1 2219:1 2224:1 2226:3 2248:1 2257:1 2274:1 2275:1 2277:1 2294:1 2296:1 2328:1 2333:1 2342:1 2350:1 2360:1 2367:1 2377:1 2405:1 2413:1 2417:1 2432:1 2435:2 2437:1 2439:3 2444:1 2445:1 2454:1 2457:1 2478:3 2479:1 2483:1 2496:2 2503:1 2505:1 2513:2 2520:1 2526:1 2529:3 2535:3 2545:1 2557:1 2562:3 2563:2 2589:1 2591:2 2638:1 2640:1 2641:1 2654:2 2659:1 2662:3 2671:1 2716:1 2738:2 2749:1 2752:7 2773:2 2774:1 2777:1 2779:1 2786:1 2811:4 2836:2 2839:2 2848:1 2856:1 2907:1 2917:1 2918:4 2934:2 2948:1 2989:1 3006:2 3014:1 3027:2 3042:2 3057:1 3089:1 3128:1 3149:6 3277:1 3283:1 3286:1 3291:1 3328:1 3358:2 3362:1 3384:10 3399:1 3403:2 3405:1 3406:1 3425:1 3479:1 3480:1 3484:1 3489:2 3493:1 3501:1 3548:1 3549:1 3552:1 3559:1 3562:1 3565:1 3576:1 3596:1 3599:1 3603:2 3608:1 3610:1 3626:2 3631:1 3648:2 3664:1 3668:2 3670:1 3673:1 3678:1 3687:2 3700:1 3716:2 3734:2 3765:2 3766:3 3772:1 3808:1 3810:2 3813:1 3818:1 3837:1 3839:2 3864:1 3866:1 3875:1 3891:1 3910:1 3932:1 3937:2 3941:1 3944:1 3950:1 3954:1 3977:1 3981:1 3992:1 4008:1 4027:1 4045:4 4075:1 4081:1 4101:1 4104:1 4114:1 4127:2 4133:1 4149:1 4156:2 4177:2 4194:1 4202:1 4225:2 4246:1 4249:1 4252:1 4256:1 4257:2 4267:1 4276:1 4304:1 4327:1 4355:1 4363:2 4371:1 4377:1 4380:1 4397:1 4420:1 4437:1 4443:2 4456:1 4459:1 4469:2 4475:1 4523:1 4565:6 4567:1 4574:1 4601:1 4613:1 4623:1 4684:1 4685:3 4687:2 4688:2 4690:1 4693:1 4695:1 4696:1 4698:1 4701:1 4703:3 4704:2 4706:1 4708:2 4709:2 4716:3 4721:1 4764:1 4776:1 4789:2 4891:1 4903:1 4930:1 4973:1 4977:1 5002:1 5008:1 5018:1 5061:1 5066:1 5088:2 5101:1 5121:1 5140:1 5157:2 5171:1 5188:1 5197:1 5220:1 5230:1 5284:1 5287:1 5292:1 5298:2 5302:1 5313:2 5314:1 5316:2 5317:1 5321:1 5336:1 5369:2 5394:4 5406:2 5468:1 5483:1 5485:1 5503:1 5509:1 5516:1 5522:1 5538:1 5549:1 5568:1 5569:1 5576:1 5590:2 5594:1 5610:3 5612:1 5613:1 5619:1 5620:1 5636:1 5673:1 5680:1 5692:1 5693:1 5696:7 5715:1 5735:2 5761:1 5787:2 5812:4 5824:1 5872:1 5890:1 5897:1 5901:1 5906:1 5911:1 5912:1 5923:2 5924:1 5997:1 6010:1 6046:1 6051:3 6052:2 6063:1 6106:1 6115:1 6124:1 6148:1 6154:1 6177:1 6191:2 6199:1 6270:1 6292:1 6295:1 6301:1 6316:3 6323:1 6327:1 6336:1 6338:1 6344:1 6355:1 6378:1 6389:1 6426:2 6442:1 6465:1 6476:1 6479:1 6483:1 6491:1 6507:1 6525:1 6529:1 6530:1 6537:1 6553:1 6563:6 6569:2 6595:1 6596:1 6606:1 6609:1 6610:1 6623:2 6626:1 6631:4 6637:1 6657:1 6670:1 6678:1 6702:1 6707:1 6716:2 6724:1 6752:1 6765:1 6812:1 6875:1 6931:1 6940:1 6945:1 6951:3 6955:1 6971:2 6974:2 6988:1 6989:2 7002:1 7012:1 7020:2 7028:1 7045:1 7051:1 7053:1 7081:1 7114:1 7120:1 7138:2 7153:3 7154:6 7165:1 7170:1 7173:3 7176:2 7178:1 7183:1 7198:2 7199:2 7200:1 7213:22 7214:1 7220:1 7222:1 7228:1 7229:4 7231:3 7236:2 7270:1 7276:1 7278:1 7287:1 7297:1 7301:2 7302:2 7307:1 7309:1 7320:1 7331:1 7358:1 7380:2 7388:1 7392:1 7410:1 7440:1 7453:1 7454:3 7483:1 7490:1 7559:1 7608:1 7631:1 7643:1 7654:1 7677:1 7700:12 7706:1 7724:2 7729:1 7732:1 7773:1 7776:1 7777:1 7781:1 7810:1 7821:2 7825:2 7827:1 7830:1 7844:1 7855:4 7860:2 7868:1 7894:2 7896:1 7918:1 7920:1 7930:1 7958:1 7966:1 7969:1 8034:1 8038:1 8041:1 8061:1 8076:3 8087:1 8090:1 8122:1 8127:1 8145:1 8146:1 8162:1 8191:1 8196:1 8233:1 8234:1 8244:1 8271:1 8272:1 8285:1 8293:1 8316:1 8319:1 8320:1 8324:2 8347:2 8360:1 8361:1 8370:1 8377:1 8394:1 8395:1 8407:1 8415:1 8416:1 8423:1 8425:1 8429:1 8436:1 8455:3 8477:1 8505:1 8506:2 8516:2 8566:1 8570:2 8589:1 8596:1 8603:1 8605:1 8609:2 8629:1 8661:1 8672:1 8681:1 8683:1 8689:1 8692:3 8734:3 8770:1 8771:1 8795:1 8802:1 8807:1 8823:2 8835:1 8858:1 8865:1 8901:1 8905:1 8919:6 8924:1 8956:1 8981:1 9005:1 9024:1 9028:1 9032:2 9034:1 9061:1 9066:1 9096:1 9163:1 9173:1 9186:1 9200:1 9201:1 9210:1 9243:1 9248:1 9249:1 9289:1 9294:1 9296:1 9301:2 9318:2 9325:3 9327:1 9354:2 9371:1 9372:1 9396:1 9398:1 9410:1 9415:1 9434:1 9444:1 9449:3 9453:1 9481:1 9485:1 9490:7 9492:1 9493:1 9497:1 9520:1 9540:1 9587:1 9588:2 9590:1 9628:1 9643:1 9644:1 9646:1 9649:1 9651:1 9661:1 9663:1 9665:2 9702:1 9715:4 9720:1 9722:1 9723:1 9729:1 9732:1 9739:1 9742:1 9747:1 9755:3 9769:1 9771:1 9787:1 9803:1 9810:1 9819:1 9823:2 9837:1 9846:1 9864:1 9866:1 9877:1 9881:1 9886:2 9889:1 9899:1 9900:3 9910:1 9920:1 9926:1 9953:3 9954:1 9964:1 9982:1 9983:1 9991:1 9995:1 10026:1 10047:1 10057:3 10071:1 10080:1 10093:1 10106:2 10140:1 10180:1 10191:1 10201:1 10224:1 10225:1 10239:1 10240:2 10246:2 10252:1 10261:1 10264:2 10265:5 10268:1 10276:1 10282:1 10283:1 10288:1 10289:2 10293:1 10310:1 10321:1 10336:2 10345:1 10372:1 10373:1 10376:1 10406:1 10411:1 10424:1 10436:1 10440:1 10466:1 10515:1 10556:1 10586:1 10592:1 10611:1 10614:1 10627:1 10630:2 10635:1 10644:2 10646:1 10648:1 10663:2 10667:1 10678:1 10693:6 10694:1 10707:1 10718:1 10734:3 10742:1 10746:2 10756:1 10759:1 10788:1 10799:1 10813:1 10818:2 10831:1 10847:1 10859:1 10890:1 10906:1 10932:3 10934:1 10937:1 10950:1 10951:1 10962:1 10968:1 10969:1 10977:1 10988:1 11006:3 11009:2 11031:1 11118:1 11141:1 11166:3 11184:1 11206:1 11214:1 11220:1 11227:1 11243:2 11283:1 11301:1 11306:1 11321:1 11327:1 11365:1 11372:1 11380:3 11381:1 11382:1 11394:1 11406:2 11412:1 11415:1 11418:1 11424:1 11476:1 11478:1 11502:1 11506:1 11520:1 11542:1 11547:1 11557:1 11638:2 11662:1 11705:1 11718:1 11720:2 11721:1 11736:1 11774:1 11824:1 11831:1 11839:1 11859:1 11882:5 11886:1 11904:1 11923:1 11929:1 11936:2 11943:1 11964:1 11980:2 11983:1 12039:1 12045:1 12081:1 12090:1 12091:1 12100:1 12110:1 12134:1 12151:2 12208:1 12231:1 12252:1 12254:2 12257:4 12269:1 12290:1 12306:1 12323:1 12325:1 12346:1 12351:1 12352:1 12385:1 12387:1 12389:1 12399:2 12400:1 12410:2 12413:1 12436:1 12437:1 12446:1 12452:1 12463:6 12469:1 12506:1 12508:1 12533:1 12559:1 12590:3 12616:4 12633:1 12642:1 12668:2 12685:1 12692:1 12694:1 12705:1 12707:1 12714:1 12728:2 12732:1 12737:1 12741:6 12742:1 12760:1 12765:1 12787:1 12831:1 12887:2 12926:1 12929:1 12939:1 12941:1 12960:1 12978:1 12986:1 13005:7 13025:2 13032:1 13041:1 13064:1 13085:1 13103:1 13131:1 13161:1 13197:1 13211:1 13237:1 13245:1 13261:3 13277:1 13320:1 13383:2 13384:1 13391:1 13404:1 13410:1 13442:1 13452:1 13470:1 13480:1 13499:1 13524:1 13548:1 13563:2 13567:1 13578:3 13585:2 13632:2 13637:2 13679:1 13680:1 13690:1 13720:1 13731:1 13756:2 13768:1 13771:2 13804:1 13807:1 13850:1 13891:2 13892:2 13902:1 13977:1 13979:1 13984:1 13998:1 14032:1 14155:1 14182:1 14204:1 14211:1 14212:1 14226:1 14240:1 14245:1 14248:1 14270:1 14274:1 14295:1 14311:1 14315:1 14345:1 14387:1 14397:1 14419:1 14424:2 14435:1 14460:1 14484:1 14486:1 14552:1 14564:1 14575:1 14579:2 14593:1 14606:1 14609:1 14639:1 14658:1 14666:1 14703:1 14719:2 14726:1 14737:1 14739:2 14764:2 14819:1 14847:1 14853:1 14857:6 14872:1 14876:3 14900:1 14904:1 14943:1 14958:1 14962:2 14972:2 14990:2 14994:1 15029:1 15030:1 15046:1 15052:1 15062:1 15064:1 15068:1 15074:2 15117:1 15122:1 15128:1 15130:2 15131:2 15132:2 15133:1 15135:2 15137:1 15139:1 15140:2 15143:1 15144:1 15204:1 15206:1 15232:1 15251:1 15255:1 15256:1 15279:1 15288:1 15289:1 15328:1 15370:1 15418:1 15434:1 15445:1 15446:1 15455:1 15456:1 15466:1 15470:3 15478:2 15496:1 15501:1 15509:1 15513:1 15522:1 15534:1 15544:1 15585:3 15588:1 15613:3 15618:1 15671:1 15678:2 15689:1 15695:1 15706:1 15720:1 15722:1 15778:3 15811:1 15823:1 15849:1 15878:1 15895:1 15898:1 15936:1 15946:1 15950:1 15973:1 15980:1 15987:1 15992:1 16022:1 16034:2 16039:1 16055:1 16072:1 16116:1 16119:1 16159:1 16163:1 16183:1 16187:1 16202:1 16212:1 16218:1 16224:1 16232:3 16238:2 16244:1 16250:1 16284:1 16293:1 16294:1 16305:1 16315:1 16316:1 16331:1 16368:1 16369:1 16389:2 16416:1 16427:1 16428:1 16434:1 16451:1 16453:1 16482:1 16483:1 16484:1 16508:1 16513:1 16518:2 16557:1 16594:1 16602:1 16616:1 16684:1 16709:1 16710:1 16720:1 16740:2 16814:2 16815:1 16833:1 16862:1 16879:1 16934:1 16937:1 16951:1 16981:1 16999:3 17050:1 17071:1 17087:7 17097:1 17099:1 17103:3 17128:1 17142:1 17184:3 17192:1 17204:1 17218:1 17243:1 17251:2 17263:1 17276:1238 17285:1 17289:1 17302:1 17351:1 17353:1 17374:1 17467:1 17469:1 17474:1 17475:2 17495:1 17515:1 17526:1 17552:1 17592:1 17599:2 17654:1 17684:2 17697:1 17699:1 17707:1 17717:1 17748:1 17754:1 17765:1 17787:1 17795:1 17803:1 17809:1 17817:1 17836:2 17837:2 17855:2 17859:1 17862:1 17870:2 17876:1 17895:1 17896:1 17904:1 17917:1 17927:2 17951:1 17966:1 17970:1 17992:2 17999:1 18011:1 18043:1 18047:3 18052:1 18054:1 18062:1 18070:1 18075:4 18090:1 18101:1 18115:1 18116:1 18123:1 18141:1 18156:1 18159:1 18187:1 18193:1 18194:1 18234:1 18240:1 18271:1 18282:1 18295:2 18297:1 18301:1 18303:1 18308:1 18323:1 18326:1 18332:1 18339:1 18343:1 18349:1 18374:1 18381:1 18382:1 18420:1 18422:1 18428:2 18430:1 18474:1 18495:1 18501:1 18503:1 18504:1 18508:1 18519:1 18529:1 18534:1 18536:1 18538:1 18548:1 18556:3 18564:1 18580:1 18582:1 18598:1 18603:1 18604:1 18628:1 18638:1 18645:1 18653:1 18658:1 18665:1 18690:1 18691:1 18707:1 18716:2 18718:4 18735:2 18738:1 18756:1 18805:1 18817:1 18821:1 18835:1 18838:1 18847:1 18848:1 18868:1 18875:1 18905:2 18933:1 18937:2 18941:1 18949:1 18960:1 18962:1 18969:1 18996:6 19013:1 19022:1 19039:1 19057:1 19085:1 19101:2 19112:1 19125:1 19128:1 19133:1 19140:1 19183:3 19189:2 19190:1 19201:2 19215:1 19243:2 19245:1 19254:1 19279:1 19311:2 19331:3 19334:1 19349:2 19359:3 19391:1 19394:1 19412:1 19421:1 19439:1 19447:1 19450:1 19459:2 19478:1 19484:2 19506:2 19521:1 19522:1 19523:1 19537:2 19545:1 19547:1 19564:1 19577:1 19591:1 19627:1 19629:1 19633:2 19636:2 19697:1 19757:1 19773:1 19785:1 19790:1 19791:1 19798:1 19806:1 19812:1 19821:2 19823:1 19830:1 19873:1 19880:1 19896:1 19921:1 19927:1 19931:2 19934:1 19959:2 19960:1 19965:1 19976:1 19978:2 19989:1 19998:3 20001:1 20017:1 20028:1 20041:1 20049:1 20061:1 20066:1 20071:1 20075:1 20125:1 20134:1 20138:1 20141:1 20149:1 20151:2 20154:1 20166:1 20177:1 20179:1 20205:1 20206:1 20210:2 20212:1 20240:1 20252:1 20316:3 20322:1 20325:1 20326:1 20328:1 20334:1 20337:1 20352:3 20368:1 20381:1 20396:2 20400:1 20417:1 20444:1 20481:1 20503:1 20524:1 20532:1 20546:1 20553:1 20556:1 20567:1 20572:3 20588:1 20592:1 20593:1 20611:1 20628:2 20632:1 20633:1 20634:4 20647:1 20655:1 20656:2 20662:1 20666:1 20676:1 20692:1 20719:6 20720:1 20733:1 20754:1 20772:1 20779:2 20780:1 20787:1 20796:1 20812:1 20842:1 20844:2 20879:1 20887:3 20889:1 20900:3 20905:2 20919:1 20924:1 20938:1 20940:1 20962:1 20963:1 20968:2 20976:1 20991:1 21005:1 21029:1 21079:1 21100:1 21115:1 21116:1 21130:1 21134:2 21138:1 21140:1 21150:3 21163:1 21176:1 21218:2 21220:1 21234:1 21284:1 21303:2 21309:1 21311:1 21340:3 21370:2 21434:1 21453:3 21456:1 21462:4 21469:2 21479:1 21484:1 21488:1 21500:1 21501:1 21502:1 21512:1 21520:2 21559:1 21586:1 21613:2 21635:1 21642:1 21647:1 21650:1 21674:1 21686:1 21694:1 21695:1 21730:1 21733:1 21743:1 21755:1 21772:1 21773:1 21777:1 21792:1 21794:1 21800:1 21845:1 21846:3 21848:1 21862:2 21863:1 21864:1 21865:1 21869:1 21916:1 21917:1 21930:1 21991:1 22014:1 22019:1 22053:1 22074:1 22076:1 22078:1 22088:1 22130:1 22136:1 22196:1 22230:1 22238:1 22263:1 22282:2 22296:1 22304:1 22320:1 22328:4 22345:1 22380:1 22389:1 22391:1 22403:1 22407:1 22412:1 22435:3 22457:2 22459:1 22467:1 22478:1 22522:1 22530:1 22531:1 22550:1 22553:1 22559:1 22564:3 22578:1 22612:2 22626:1 22627:1 22632:1 22640:1 22642:1 22646:1 22662:6 22675:1 22685:1 22688:1 22710:1 22713:1 22718:3 22726:1 22739:1 22827:1 22856:1 22862:1 22868:1 22880:1 22886:2 22901:1 22907:1 22923:1 22943:1 22946:1 22953:1 22974:1 22992:1 22993:1 23012:2 23018:1 23024:2 23041:1 23077:6 23101:1 23105:1 23106:1 23115:1 23130:1 23139:1 23158:2 23161:1 23169:1 23170:1 23188:1 23197:1 23217:1 23261:1 23291:3 23292:1 23316:1 23373:1 23375:1 23404:2 23406:1 23426:1 23440:1 23481:1 23497:1 23503:2 23505:1 23514:1 23532:1 23557:1 23601:1 23609:1 23631:1 23635:2 23639:1 23652:1 23666:1 23695:3 23700:1 23721:1 23739:2 23774:1 23775:1 23784:1 23786:1 23803:1 23826:1 23845:1 23889:1 23895:1 23909:1 23923:1 23932:1 24009:1 24024:1 24025:1 24027:1 24055:1 24061:1 24092:2 24101:1 24126:1 24129:1 24138:1 24140:1 24149:2 24161:1 24165:7 24166:1 24177:1 24185:1 24220:2 24231:1 24233:1 24251:1 24263:1 24272:2 24275:3 24280:3 24285:2 24286:4 24289:1 24310:1 24357:1 24372:1 24408:1 24416:1 24420:1 24424:1 24427:2 24443:4 24444:1 24446:1 24471:1 24472:1 24479:1 24500:1 24521:1 24553:1 24570:1 24592:1 24600:1 24643:1 24653:1 24658:3 24676:1 24710:1 24713:1 24715:1 24720:1 24721:1 24733:1 24737:1 24747:1 24773:1 24774:2 24792:2 24809:1 24830:1 24889:1 24917:1 24938:1 24944:2 24954:1 24966:1 24972:1 24976:2 24994:1 25005:1 25019:1 25022:1 25026:1 25031:1 25032:1 25059:1 25073:1 25081:1 25125:3 25132:1 25145:1 25185:2 25191:1 25195:1 25200:1 25207:1 25213:1 25214:1 25224:1 25250:1 25251:1 25254:1 25255:1 25256:1 25260:1 25267:2 25277:1 25281:1 25291:1 25295:1 25299:1 25302:1 25329:1 25330:1 25346:1 25370:1 25412:1 25454:1 25479:1 25487:1 25491:2 25532:1 25572:1 25600:1 25630:1 25644:1 25693:1 25702:1 25717:1 25777:1 25791:1 25793:3 25804:1 25808:1 25809:1 25820:1 25822:1 25828:1 25829:3 25841:1 25856:1 25861:1 25863:2 25871:3 25880:1 25881:1 25892:3 25905:1 25909:1 25913:1 25964:1 25965:1 26005:1 26012:2 26015:4 26022:3 26028:1 26054:4 26067:1 26080:1 26081:1 26098:1 26123:1 26163:1 26174:1 26194:1 26213:1 26214:1 26221:1 26222:1 26229:1 26230:2 26236:1 26265:3 26301:1 26305:1 26306:5 26368:3 26452:1 26527:1 26538:1 26539:1 26544:2 26547:1 26557:1 26558:1 26580:1 26612:1 26655:3 26664:2 26690:1 26696:2 26710:1 26733:1 26745:1 26750:1 26757:2 26759:1 26787:1 26790:1 26793:2 26832:1 26848:1 26855:1 26862:1 26879:1 26883:3 26889:1 26910:1 26920:1 26923:1 26940:1 26957:1 26961:2 26973:1 26978:1 26979:1 26986:1 26987:1 26988:1 26990:1 27031:2
1 13:1 47:1 50:1 55:1 89:1 120:1 137:1 138:3 144:1 157:1 165:1 169:1 182:3 192:1 222:1 233:1 238:4 255:2 264:1 280:1 306:1 315:3 317:2 327:3 334:3 346:2 362:1 372:1 382:1 395:5 397:2 404:1 412:1 445:1 446:1 532:1 544:2 568:1 578:1 588:1 604:1 630:1 683:1 711:1 723:1 745:1 751:1 764:1 789:3 794:1 798:1 802:3 808:1 822:7 826:2 837:3 854:1 873:4 874:2 875:6 878:1 880:2 882:1 894:2 912:3 915:3 926:1 953:2 972:1 1002:1 1013:1 1017:1 1037:1 1108:3 1109:2 1116:1 1122:1 1125:1 1154:1 1158:1 1173:2 1193:1 1195:1 1228:1 1244:1 1264:1 1266:1 1279:1 1292:1 1316:1 1324:1 1346:1 1364:1 1371:1 1379:1 1392:1 1402:1 1405:1 1419:1 1437:1 1448:3 1454:4 1456:2 1469:1 1490:1 1501:1 1514:1 1523:1 1526:1 1530:2 1542:2 1553:1 1555:1 1559:1 1568:1 1571:1 1584:1 1592:1 1596:1 1600:1 1606:1 1615:1 1634:2 1653:3 1675:1 1681:1 1684:2 1687:1 1688:1 1696:5 1723:2 1724:2 1737:1 1759:2 1764:1 1801:1 1807:1 1809:1 1822:2 1866:1 1870:1 1892:2 1897:1 1899:1 1904:1 1907:1 1925:1 1931:1 1956:1 1959:1 1976:1 1978:1 1984:1 1988:1 1990:1 2004:1 2027:7 2037:1 2046:1 2051:1 2078:1 2092:2 2103:2 2107:1 2120:1 2123:1 2126:2 2142:1 2143:1 2148:2 2150:1 2154:1 2157:2 2158:2 2159:1 2161:1 2167:3 2170:2 2172:5 2173:2 2185:1 2219:1 2224:1 2226:3 2248:1 2257:1 2274:1 2275:1 2277:1 2294:1 2296:1 2328:1 2333:1 2342:1 2350:1 2360:1 2367:1 2377:1 2405:1 2413:1 2417:1 2432:1 2435:2 2437:1 2439:4 2444:1 2445:1 2454:1 2457:1 2478:4 2479:1 2483:1 2496:2 2503:1 2504:1 2505:1 2513:2 2520:1 2526:1 2529:4 2535:3 2545:1 2557:1 2562:3 2563:2 2574:1 2589:1 2591:2 2638:1 2640:1 2641:2 2654:2 2659:1 2662:3 2671:1 2716:1 2738:2 2749:1 2752:9 2773:2 2774:1 2777:1 2779:1 2786:1 2791:1 2811:5 2836:2 2839:2 2848:1 2856:1 2898:1 2907:1 2917:1 2918:4 2934:2 2939:1 2948:1 2989:1 3006:2 3014:1 3027:2 3042:2 3057:1 3089:1 3128:1 3129:1 3149:6 3193:1 3277:1 3283:1 3286:1 3291:1 3328:1 3358:2 3362:1 3384:10 3399:1 3403:2 3405:1 3406:1 3425:1 3429:1 3479:1 3480:1 3484:1 3489:2 3493:1 3501:1 3548:1 3549:1 3552:1 3559:1 3562:1 3565:1 3576:1 3596:1 3599:1 3603:2 3608:1 3610:1 3626:2 3631:1 3648:2 3664:1 3668:2 3670:1 3673:1 3678:1 3687:2 3700:1 3716:2 3734:2 3765:3 3766:3 3772:1 3808:1 3810:2 3813:1 3818:1 3837:1 3839:2 3864:1 3866:1 3875:1 3891:1 3910:1 3932:1 3937:2 3941:1 3944:1 3950:1 3954:1 3977:1 3981:1 3992:1 4008:1 4027:1 4045:6 4075:1 4081:1 4101:1 4104:1 4114:1 4127:2 4133:1 4149:1 4156:2 4177:2 4194:1 4202:1 4225:2 4246:1 4249:1 4252:1 4256:1 4257:2 4267:1 4276:1 4304:1 4327:1 4355:2 4363:2 4371:1 4377:1 4380:1 4397:1 4420:1 4437:1 4443:2 4456:1 4459:1 4468:1 4469:2 4475:1 4523:1 4565:7 4567:1 4574:1 4576:1 4601:1 4613:1 4623:1 4664:1 4684:1 4685:3 4687:2 4688:2 4690:1 4693:1 4695:1 4696:1 4698:1 4701:1 4703:3 4704:2 4706:1 4708:2 4709:2 4716:3 4721:1 4764:1 4776:1 4789:2 4891:1 4903:1 4930:1 4973:1 4977:1 5002:1 5008:1 5018:1 5061:1 5066:1 5088:2 5101:1 5121:1 5140:1 5157:2 5163:1 5171:1 5188:1 5197:1 5220:1 5230:1 5284:1 5287:1 5292:1 5298:2 5302:1 5313:2 5314:1 5316:2 5317:1 5320:1 5321:1 5336:1 5369:2 5394:4 5406:2 5468:1 5483:1 5485:1 5503:1 5509:1 5516:1 5522:1 5538:1 5549:1 5568:1 5569:1 5576:1 5590:2 5594:1 5610:3 5612:1 5613:1 5619:1 5620:1 5636:1 5673:1 5680:1 5692:1 5693:1 5696:8 5715:1 5735:2 5761:1 5787:2 5812:5 5824:1 5869:1 5872:1 5890:1 5897:1 5901:1 5905:1 5906:1 5911:1 5912:1 5915:1 5923:2 5924:1 5958:1 5997:1 6010:1 6046:1 6051:3 6052:2 6063:1 6106:1 6115:1 6124:1 6148:1 6154:1 6177:1 6191:2 6199:1 6222:1 6270:1 6292:1 6295:1 6298:1 6301:1 6316:4 6323:1 6327:1 6336:1 6338:1 6344:1 6355:1 6378:1 6389:1 6426:2 6442:1 6465:1 6476:1 6479:1 6483:2 6491:1 6507:1 6525:1 6529:1 6530:1 6537:1 6553:1 6563:6 6569:2 6595:1 6596:1 6606:1 6609:1 6610:1 6623:2 6626:1 6631:4 6637:1 6657:1 6658:1 6670:1 6678:1 6702:1 6707:1 6716:2 6724:1 6752:1 6765:1 6812:1 6875:1 6879:1 6931:1 6940:1 6945:1 6951:3 6955:1 6971:4 6974:2 6988:1 6989:2 6998:1 7002:1 7012:1 7020:2 7028:1 7045:1 7051:1 7053:1 7081:1 7114:1 7120:1 7138:2 7153:3 7154:6 7165:1 7170:1 7173:3 7176:2 7178:1 7183:1 7198:2 7199:2 7200:1 7213:24 7214:1 7220:1 7222:1 7228:1 7229:5 7231:3 7236:2 7270:1 7276:1 7278:1 7287:1 7297:1 7301:2 7302:2 7307:1 7309:1 7320:1 7331:1 7358:1 7380:2 7388:1 7392:1 7410:1 7440:1 7453:1 7454:3 7483:1 7490:1 7559:1 7591:1 7608:1 7631:1 7643:1 7654:1 7677:1 7700:12 7706:1 7724:2 7729:1 7732:1 7773:1 7776:1 7777:1 7781:1 7810:1 7821:2 7825:2 7827:1 7830:1 7844:1 7855:4 7860:2 7868:1 7894:2 7896:1 7918:1 7920:1 7930:1 7958:1 7966:1 7969:1 8033:1 8034:1 8038:1 8041:1 8061:1 8076:3 8087:1 8090:1 8122:1 8127:1 8145:1 8146:1 8162:1 8191:1 8196:1 8233:1 8234:1 8240:1 8244:1 8271:1 8272:1 8285:1 8293:1 8316:1 8319:1 8320:1 8324:2 8347:2 8353:1 8360:2 8361:1 8370:1 8377:1 8394:1 8395:1 8407:1 8415:2 8416:1 8423:1 8425:1 8429:1 8436:1 8455:3 8477:1 8505:1 8506:3 8516:2 8561:1 8566:1 8570:2 8589:1 8596:1 8603:1 8605:1 8609:2 8629:1 8661:1 8672:1 8681:1 8683:1 8689:1 8692:3 8715:1 8734:3 8770:1 8771:1 8795:1 8802:1 8807:1 8823:2 8835:1 8858:1 8865:1 8888:1 8901:1 8905:1 8919:6 8924:1 8956:1 8975:1 8981:1 9005:1 9024:1 9028:1 9031:1 9032:2 9034:1 9061:1 9066:1 9096:1 9099:1 9142:1 9163:1 9173:2 9186:1 9200:1 9201:1 9210:1 9243:1 9248:1 9249:1 9289:1 9294:1 9296:1 9301:2 9318:2 9325:3 9327:1 9354:2 9371:1 9372:1 9396:1 9398:1 9410:1 9415:1 9434:1 9444:1 9449:3 9453:1 9481:1 9485:1 9490:8 9492:1 9493:1 9497:1 9520:1 9540:1 9587:1 9588:2 9590:1 9628:1 9643:1 9644:1 9646:1 9649:1 9651:1 9661:1 9663:1 9665:2 9702:1 9715:4 9720:1 9722:1 9723:1 9729:1 9732:1 9739:1 9742:1 9747:1 9755:3 9769:1 9771:1 9787:1 9803:1 9810:1 9819:1 9823:2 9837:1 9846:1 9864:1 9866:1 9877:1 9881:1 9886:2 9889:2 9899:1 9900:3 9910:1 9920:1 9926:1 9953:3 9954:1 9964:1 9982:1 9983:1 9991:1 9995:1 10026:1 10035:1 10047:1 10057:3 10071:1 10080:1 10093:1 10106:2 10140:1 10180:1 10191:1 10201:1 10224:1 10225:1 10239:1 10240:2 10242:1 10246:2 10252:1 10261:1 10264:2 10265:5 10268:1 10276:1 10282:1 10283:2 10288:1 10289:3 10293:1 10310:2 10321:1 10336:2 10345:1 10372:1 10373:1 10376:1 10406:1 10411:1 10424:1 10436:1 10440:1 10466:1 10515:1 10532:1 10556:1 10586:1 10592:1 10611:1 10614:1 10627:1 10630:2 10633:1 10635:1 10644:2 10646:1 10648:1 10663:2 10667:1 10678:1 10693:7 10694:1 10707:1 10718:1 10734:3 10742:1 10746:2 10756:1 10759:1 10788:2 10799:2 10803:1 10813:1 10818:2 10831:1 10847:1 10859:1 10863:1 10890:1 10906:1 10932:3 10934:1 10937:1 10950:1 10951:1 10956:1 10962:1 10968:1 10969:1 10977:1 10988:1 11006:3 11009:2 11031:1 11055:1 11073:1 11118:1 11141:1 11166:4 11184:1 11206:1 11214:1 11220:1 11227:1 11243:2 11283:1 11301:1 11306:1 11321:1 11327:1 11365:1 11372:1 11380:4 11381:1 11382:1 11394:1 11406:2 11412:1 11415:1 11418:1 11424:1 11476:1 11478:1 11502:1 11506:1 11520:1 11542:1 11547:1 11557:1 11635:1 11638:2 11662:1 11695:1 11705:1 11718:1 11720:2 11721:1 11736:2 11774:1 11824:1 11831:1 11839:1 11859:1 11882:6 11886:1 11904:1 11923:1 11929:1 11936:2 11943:1 11964:1 11980:2 11983:1 12016:1 12039:1 12045:1 12081:1 12090:1 12091:1 12100:1 12110:1 12134:1 12151:2 12208:1 12231:1 12252:1 12254:2 12257:4 12269:1 12290:1 12306:1 12323:1 12325:2 12346:1 12351:1 12352:1 12385:1 12387:1 12389:1 12399:2 12400:1 12410:2 12413:1 12436:1 12437:1 12446:1 12452:1 12463:7 12469:1 12506:1 12508:1 12533:1 12557:1 12559:1 12590:3 12613:1 12616:4 12633:1 12642:1 12668:2 12685:1 12692:1 12694:1 12703:1 12705:1 12707:1 12714:1 12721:1 12728:3 12732:1 12737:1 12741:6 12742:1 12760:1 12763:1 12765:1 12787:1 12831:1 12887:2 12926:1 12929:1 12939:1 12941:1 12960:1 12978:1 12986:1 13005:7 13025:2 13032:1 13041:1 13064:1 13085:1 13103:1 13131:1 13161:1 13197:1 13211:1 13237:1 13245:1 13261:3 13277:1 13320:1 13380:1 13383:2 13384:1 13391:1 13404:1 13410:1 13442:1 13452:2 13470:1 13480:1 13499:1 13524:1 13548:1 13563:2 13567:1 13578:3 13585:2 13630:1 13632:2 13637:2 13679:1 13680:1 13690:1 13720:1 13731:1 13756:2 13768:1 13771:2 13804:1 13807:1 13850:1 13891:2 13892:2 13902:1 13912:1 13977:1 13979:1 13984:1 13998:1 14032:1 14155:1 14182:1 14204:1 14211:1 14212:1 14226:1 14240:1 14245:1 14248:1 14270:1 14274:1 14295:1 14311:1 14315:1 14345:1 14387:1 14397:1 14419:1 14424:2 14435:1 14460:1 14484:1 14486:1 14552:1 14564:2 14575:1 14579:2 14593:1 14606:1 14609:1 14612:1 14639:1 14658:1 14666:1 14703:1 14719:2 14726:1 14737:1 14739:2 14764:2 14819:1 14847:1 14853:1 14857:7 14872:1 14876:3 14900:1 14904:1 14943:1 14958:1 14962:2 14972:2 14990:2 14994:1 15029:1 15030:1 15046:1 15052:1 15062:1 15064:1 15068:1 15074:2 15117:1 15122:1 15128:1 15130:2 15131:2 15132:2 15133:1 15135:2 15137:1 15139:1 15140:2 15143:1 15144:1 15151:1 15204:1 15206:1 15232:1 15251:1 15255:1 15256:1 15279:1 15288:2 15289:1 15328:1 15370:1 15418:1 15430:1 15434:1 15445:1 15446:1 15455:1 15456:1 15466:1 15470:3 15478:2 15496:1 15501:1 15509:1 15513:1 15522:1 15534:1 15544:1 15585:3 15588:1 15613:3 15618:1 15671:1 15678:2 15689:1 15695:2 15706:1 15720:1 15722:2 15756:1 15778:3 15811:1 15823:1 15849:1 15878:1 15879:1 15895:1 15898:1 15936:1 15946:1 15950:1 15973:1 15980:1 15987:1 15992:1 16022:1 16034:2 16039:1 16055:1 16072:1 16116:1 16119:1 16159:1 16163:1 16183:1 16187:1 16202:1 16212:1 16218:1 16224:1 16232:3 16238:2 16244:1 16250:1 16284:1 16293:1 16294:1 16305:1 16315:1 16316:1 16331:1 16368:1 16369:1 16389:2 16416:1 16427:1 16428:1 16434:1 16451:1 16453:1 16482:1 16483:1 16484:1 16508:1 16513:1 16518:2 16557:1 16594:1 16602:1 16616:1 16684:1 16709:1 16710:1 16720:1 16740:2 16814:2 16815:1 16833:1 16844:1 16862:1 16879:1 16934:1 16937:1 16951:1 16981:1 16999:3 17050:1 17071:1 17087:7 17097:1 17099:1 17103:3 17128:1 17142:1 17156:1 17184:4 17192:1 17204:1 17218:1 17243:1 17251:2 17263:1 17276:1325 17285:1 17289:1 17302:1 17351:1 17353:1 17374:2 17465:1 17467:1 17469:1 17472:1 17474:1 17475:2 17495:1 17515:1 17526:1 17552:1 17592:1 17599:2 17654:1 17684:2 17697:1 17699:1 17707:2 17717:1 17737:1 17748:1 17754:1 17765:1 17787:1 17791:2 17795:1 17803:1 17809:1 17817:1 17836:2 17837:2 17855:2 17859:1 17862:1 17870:2 17876:1 17895:1 17896:1 17904:1 17917:2 17927:2 17951:1 17966:1 17970:1 17971:1 17992:2 17999:1 18011:1 18043:1 18047:3 18052:1 18054:1 18062:1 18070:1 18075:4 18090:1 18101:1 18115:2 18116:1 18123:1 18141:1 18156:1 18159:1 18183:1 18187:1 18193:1 18194:1 18228:1 18234:1 18240:1 18271:1 18282:1 18295:2 18297:1 18301:1 18303:1 18308:1 18323:1 18326:1 18332:1 18339:1 18343:1 18349:1 18374:1 18381:1 18382:1 18420:1 18422:1 18428:2 18430:1 18474:1 18495:1 18499:1 18501:1 18503:1 18504:1 18508:1 18519:1 18529:1 18534:1 18536:1 18538:1 18548:1 18556:3 18564:1 18580:1 18582:1 18598:1 18603:1 18604:1 18628:1 18638:1 18645:1 18653:1 18658:1 18665:1 18690:1 18691:1 18707:1 18716:2 18718:5 18726:1 18735:2 18738:1 18756:1 18805:1 18817:1 18821:1 18835:1 18838:1 18847:1 18848:1 18868:1 18875:1 18905:2 18933:1 18937:2 18941:1 18949:1 18960:1 18962:1 18969:1 18996:6 19013:1 19022:1 19039:1 19057:1 19085:1 19101:2 19112:1 19125:1 19128:1 19132:1 19133:1 19140:1 19183:3 19189:2 19190:1 19201:2 19215:1 19243:2 19245:1 19254:1 19279:1 19311:2 19331:3 19334:1 19349:2 19359:3 19391:1 19394:1 19412:1 19421:1 19439:1 19447:1 19450:1 19459:2 19478:1 19484:2 19506:2 19521:1 19522:1 19523:1 19537:2 19545:1 19547:1 19552:1 19564:1 19577:1 19591:1 19614:1 19627:1 19629:1 19633:2 19636:2 19697:1 19757:1 19770:1 19773:1 19785:1 19790:1 19791:1 19798:1 19806:1 19812:1 19821:2 19823:1 19830:1 19873:1 19880:1 19896:1 19919:1 19921:1 19927:1 19931:2 19934:1 19959:2 19960:1 19965:1 19976:1 19978:2 19989:1 19998:3 20001:1 20017:2 20028:1 20041:1 20049:1 20061:1 20063:1 20066:1 20071:1 20075:1 20125:1 20134:1 20138:1 20141:1 20149:1 20151:2 20154:1 20166:1 20177:1 20179:1 20205:1 20206:1 20210:2 20212:1 20240:1 20252:1 20316:3 20322:1 20325:1 20326:1 20328:1 20334:1 20337:1 20341:1 20352:3 20368:1 20381:1 20396:2 20400:1 20417:1 20444:1 20481:1 20503:1 20524:1 20532:1 20546:1 20553:1 20556:1 20567:1 20572:3 20588:2 20592:1 20593:1 20611:1 20628:2 20632:1 20633:1 20634:4 20647:1 20655:1 20656:3 20662:1 20666:1 20676:1 20692:1 20719:6 20720:1 20733:1 20754:1 20772:1 20779:3 20780:1 20787:1 20796:1 20812:1 20842:1 20844:2 20879:1 20887:3 20889:1 20900:3 20905:2 20919:1 20924:1 20938:1 20940:1 20962:1 20963:1 20968:2 20976:1 20991:1 21005:1 21029:1 21079:1 21100:1 21115:1 21116:1 21130:1 21134:2 21138:1 21140:1 21150:3 21163:1 21176:1 21218:2 21220:1 21234:1 21235:1 21266:1 21284:1 21303:2 21309:1 21311:1 21340:3 21370:2 21434:1 21453:3 21456:1 21462:5 21469:2 21479:1 21484:1 21488:1 21500:1 21501:1 21502:1 21512:1 21520:2 21559:1 21586:1 21613:2 21635:1 21642:1 21647:1 21650:1 21674:1 21686:1 21694:1 21695:1 21730:1 21733:1 21743:1 21755:1 21772:1 21773:1 21777:1 21792:1 21794:1 21800:1 21845:1 21846:3 21848:1 21862:2 21863:1 21864:1 21865:1 21869:1 21916:1 21917:1 21930:1 21991:1 22014:1 22019:1 22053:1 22074:1 22076:1 22078:1 22088:1 22130:1 22136:1 22196:1 22230:2 22238:1 22263:1 22282:2 22296:1 22304:1 22320:1 22328:4 22345:1 22352:1 22380:1 22382:1 22389:1 22391:1 22403:1 22407:1 22412:1 22435:3 22457:2 22459:1 22467:1 22478:1 22522:1 22530:1 22531:1 22550:1 22553:1 22559:1 22564:3 22578:2 22612:3 22626:1 22627:1 22632:1 22640:1 22642:1 22646:1 22662:6 22675:1 22685:1 22688:1 22693:1 22710:1 22713:1 22718:3 22726:1 22739:1 22755:1 22827:1 22856:1 22862:1 22868:1 22876:1 22880:1 22886:2 22901:1 22907:1 22923:1 22943:1 22946:1 22953:1 22974:1 22992:1 22993:1 23012:2 23018:1 23024:2 23041:1 23077:6 23078:1 23101:1 23105:1 23106:1 23115:1 23130:1 23139:1 23158:2 23161:1 23169:1 23170:1 23188:1 23197:1 23217:1 23222:1 23261:1 23291:3 23292:1 23316:1 23373:1 23375:1 23378:1 23404:2 23406:1 23426:1 23440:1 23481:1 23497:1 23503:2 23505:1 23514:1 23528:1 23532:1 23557:1 23601:1 23609:1 23631:1 23635:2 23639:1 23652:1 23666:1 23695:3 23700:1 23704:1 23721:2 23739:2 23774:1 23775:1 23784:1 23786:1 23803:1 23826:1 23845:2 23889:1 23895:1 23909:1 23923:1 23932:1 24009:1 24024:1 24025:1 24027:1 24055:1 24061:1 24092:2 24101:1 24126:1 24129:1 24138:1 24140:1 24149:2 24161:1 24165:7 24166:2 24177:1 24185:1 24220:2 24231:1 24233:1 24251:1 24256:1 24263:1 24272:2 24275:3 24280:3 24285:2 24286:4 24289:1 24310:1 24350:1 24357:1 24372:1 24408:1 24416:1 24420:1 24424:1 24425:1 24427:2 24443:5 24444:1 24446:1 24471:1 24472:1 24479:1 24500:1 24521:1 24553:1 24570:1 24592:1 24600:1 24643:1 24653:1 24655:1 24658:4 24675:1 24676:1 24710:1 24713:1 24715:1 24720:1 24721:1 24733:1 24737:1 24747:1 24773:1 24774:2 24792:2 24809:1 24830:1 24889:1 24917:1 24938:1 24944:3 24954:1 24966:1 24972:1 24976:2 24994:1 25005:2 25019:1 25022:1 25026:1 25031:1 25032:1 25059:1 25073:2 25081:1 25125:3 25132:1 25145:1 25185:2 25191:1 25195:1 25200:1 25207:1 25213:1 25214:1 25224:1 25250:1 25251:1 25254:1 25255:1 25256:1 25260:1 25267:2 25277:1 25281:1 25291:1 25295:1 25299:1 25302:1 25329:1 25330:1 25346:1 25370:1 25412:1 25454:1 25479:1 25487:1 25491:2 25532:1 25538:1 25572:1 25600:1 25630:1 25644:1 25693:1 25702:1 25717:1 25777:1 25791:1 25793:3 25804:2 25808:1 25809:1 25820:1 25822:1 25828:1 25829:4 25841:1 25856:1 25861:2 25863:2 25871:4 25880:1 25881:1 25892:3 25905:2 25909:1 25913:1 25941:1 25964:1 25965:1 26005:1 26012:2 26015:4 26022:3 26028:1 26054:4 26067:1 26080:1 26081:1 26098:1 26123:1 26163:1 26174:1 26194:1 26213:1 26214:1 26221:1 26222:1 26229:1 26230:2 26236:1 26265:3 26301:1 26305:1 26306:5 26368:3 26452:1 26527:1 26538:1 26539:1 26544:2 26547:1 26557:1 26558:1 26580:1 26612:1 26655:3 26664:2 26690:1 26696:2 26710:1 26733:1 26745:1 26750:1 26757:2 26759:1 26787:1 26790:1 26793:2 26832:1 26848:1 26855:1 26862:1 26879:1 26883:3 26889:1 26910:1 26920:1 26923:1 26940:1 26957:1 26961:2 26973:1 26978:1 26979:1 26986:1 26987:1 26988:1 26990:1 27031:3
1 13:1 35:1 47:1 50:1 55:1 89:1 120:1 137:1 138:3 144:1 157:1 165:1 169:1 182:4 192:1 222:1 233:1 238:4 255:2 264:1 280:1 306:1 315:3 317:2 327:3 334:3 339:1 346:2 362:1 372:1 382:1 395:5 397:2 404:1 412:1 445:1 446:1 532:1 544:2 568:1 578:1 588:1 604:1 630:1 683:1 711:1 723:1 745:1 751:1 764:1 789:4 794:1 798:1 802:3 808:1 822:7 826:2 837:3 854:1 873:4 874:2 875:6 877:1 878:1 880:2 882:1 894:2 912:3 915:3 926:1 953:2 972:1 1002:1 1013:1 1017:1 1037:1 1108:3 1109:2 1116:1 1122:1 1125:1 1154:1 1158:1 1173:2 1193:2 1195:1 1228:1 1244:1 1264:1 1266:1 1279:1 1292:1 1316:1 1324:1 1325:1 1346:1 1364:1 1371:1 1379:1 1392:1 1402:1 1405:1 1419:1 1437:1 1448:4 1454:5 1456:2 1469:1 1490:1 1501:1 1514:1 1523:1 1526:1 1530:2 1542:2 1553:1 1555:1 1559:1 1568:1 1571:1 1584:1 1592:1 1596:1 1600:1 1606:1 1615:1 1634:2 1653:4 1675:1 1681:1 1684:2 1687:1 1688:1 1696:5 1723:2 1724:2 1737:1 1757:1 1759:2 1764:1 1801:1 1807:1 1809:1 1822:2 1866:1 1870:1 1892:2 1897:1 1899:1 1904:1 1907:1 1925:1 1931:1 1956:1 1959:1 1976:1 1978:1 1984:1 1988:1 1990:1 2004:1 2027:7 2037:1 2046:1 2051:1 2078:1 2092:2 2103:2 2107:1 2120:1 2123:1 2126:2 2142:1 2143:1 2148:2 2150:1 2154:1 2157:2 2158:2 2159:1 2161:1 2167:3 2170:2 2172:5 2173:2 2185:1 2196:1 2219:1 2224:1 2226:3 2248:1 2257:1 2274:1 2275:1 2277:1 2285:1 2294:1 2296:1 2328:1 2333:1 2342:1 2350:1 2360:1 2367:1 2377:1 2405:1 2413:1 2417:1 2432:1 2435:2 2437:1 2439:5 2444:1 2445:1 2454:1 2457:1 2478:4 2479:1 2483:1 2496:2 2503:1 2504:1 2505:1 2513:3 2520:1 2526:1 2529:4 2535:3 2545:1 2557:1 2562:3 2563:2 2574:1 2589:1 2591:2 2638:1 2640:1 2641:2 2654:2 2659:1 2662:3 2667:1 2671:1 2716:1 2738:2 2749:1 2752:9 2773:2 2774:1 2777:1 2779:1 2786:1 2791:1 2811:6 2836:2 2839:2 2848:1 2856:1 2898:1 2907:1 2917:1 2918:4 2934:2 2939:1 2948:1 2989:1 2993:1 2998:1 3006:2 3014:1 3027:2 3042:2 3057:1 3089:1 3090:1 3128:1 3129:1 3134:1 3149:6 3193:1 3277:1 3283:1 3286:1 3291:1 3328:1 3358:2 3362:1 3384:10 3399:1 3403:2 3405:1 3406:1 3425:1 3429:1 3479:1 3480:1 3484:1 3489:2 3493:1 3501:1 3548:1 3549:1 3552:1 3559:1 3562:1 3565:1 3569:1 3576:1 3596:1 3599:1 3603:2 3608:1 3610:1 3626:2 3631:1 3648:2 3664:1 3668:2 3670:1 3673:1 3678:1 3687:2 3700:1 3716:2 3734:2 3765:3 3766:3 3772:1 3808:1 3810:2 3813:1 3818:1 3837:1 3839:2 3864:1 3866:1 3875:1 3891:1 3910:1 3932:1 3937:2 3941:1 3944:1 3950:1 3954:1 3977:1 3981:1 3992:1 4008:1 4027:1 4045:7 4075:2 4081:1 4090:1 4101:1 4104:1 4114:1 4127:2 4133:1 4149:1 4156:2 4177:2 4194:1 4202:1 4225:2 4246:1 4249:1 4252:1 4256:1 4257:2 4267:1 4276:1 4304:1 4327:1 4331:1 4355:2 4363:2 4371:1 4377:2 4380:1 4397:1 4420:1 4437:1 4443:2 4456:2 4459:1 4468:1 4469:2 4475:1 4523:1 4565:7 4567:1 4574:1 4576:1 4601:1 4613:1 4623:1 4664:1 4684:1 4685:3 4687:2 4688:2 4690:1 4693:1 4695:1 4696:1 4698:1 4701:1 4703:3 4704:3 4706:1 4708:2 4709:2 4716:3 4721:1 4764:1 4776:1 4789:2 4820:1 4891:1 4903:1 4930:1 4973:1 4977:1 5002:1 5008:1 5018:1 5061:1 5066:1 5088:2 5101:1 5121:1 5140:1 5157:2 5163:1 5171:1 5188:1 5197:1 5220:1 5230:1 5284:1 5287:1 5292:1 5298:2 5302:1 5313:2 5314:1 5316:2 5317:1 5320:1 5321:1 5336:1 5369:2 5379:1 5394:4 5406:2 5468:1 5483:1 5485:1 5503:1 5509:1 5516:1 5522:1 5538:1 5549:1 5568:1 5569:1 5576:1 5590:2 5594:1 5610:3 5612:1 5613:1 5619:1 5620:1 5636:1 5673:1 5680:1 5692:1 5693:1 5696:9 5715:1 5735:2 5761:1 5772:1 5787:2 5797:1 5812:5 5824:1 5869:1 5872:1 5890:1 5897:1 5901:1 5905:1 5906:1 5911:1 5912:1 5915:1 5923:3 5924:1 5958:1 5997:1 6010:1 6046:1 6051:3 6052:2 6063:1 6106:1 6115:1 6124:1 6148:1 6154:1 6177:1 6191:2 6199:1 6222:1 6270:1 6292:1 6295:1 6298:1 6301:1 6316:6 6323:1 6327:1 6336:1 6338:1 6344:1 6355:1 6378:1 6389:1 6426:2 6442:1 6465:1 6476:1 6479:1 6483:2 6491:1 6507:1 6525:1 6529:1 6530:1 6537:1 6553:1 6563:6 6569:2 6595:1 6596:1 6606:1 6609:1 6610:1 6623:2 6624:1 6626:1 6631:4 6634:1 6637:1 6657:1 6658:1 6670:1 6678:1 6702:1 6707:1 6716:2 6724:1 6735:1 6752:1 6765:1 6812:1 6875:1 6879:1 6931:1 6940:1 6945:1 6951:3 6955:1 6971:4 6974:2 6988:1 6989:2 6998:1 7002:1 7012:1 7020:2 7028:1 7045:1 7051:1 7053:1 7081:1 7114:1 7120:1 7138:2 7153:3 7154:6 7165:1 7170:1 7173:3 7176:2 7178:1 7183:1 7198:2 7199:2 7200:1 7213:24 7214:1 7220:1 7222:1 7228:1 7229:5 7231:3 7236:2 7270:1 7276:1 7278:1 7287:1 7297:1 7301:2 7302:2 7307:1 7309:1 7320:1 7331:1 7358:1 7380:2 7388:1 7392:1 7410:1 7440:1 7453:1 7454:3 7483:1 7490:1 7559:1 7591:1 7600:1 7608:1 7631:1 7643:1 7654:1 7677:1 7700:14 7706:1 7724:2 7729:1 7731:1 7732:1 7773:1 7776:1 7777:1 7781:1 7810:1 7821:2 7825:2 7827:1 7830:1 7844:1 7855:4 7860:2 7868:1 7894:2 7896:1 7918:1 7920:1 7930:1 7958:1 7966:1 7969:1 8033:1 8034:1 8038:1 8041:1 8061:1 8076:3 8087:1 8090:2 8122:1 8127:1 8145:1 8146:1 8162:1 8191:1 8196:1 8233:1 8234:1 8240:1 8244:1 8271:1 8272:1 8285:1 8293:1 8316:1 8319:1 8320:1 8324:2 8347:2 8353:1 8360:2 8361:1 8370:1 8377:1 8394:1 8395:1 8407:1 8415:3 8416:1 8423:1 8425:1 8429:1 8436:1 8455:3 8477:1 8505:1 8506:4 8516:2 8561:1 8566:1 8570:2 8589:1 8596:1 8603:1 8605:1 8609:2 8629:1 8661:1 8672:1 8681:1 8683:1 8689:1 8692:3 8715:1 8734:3 8770:1 8771:1 8795:1 8802:1 8807:1 8823:2 8835:1 8858:1 8865:1 8888:1 8901:1 8905:1 8913:1 8919:6 8924:1 8956:2 8975:1 8981:1 9005:1 9024:1 9028:1 9031:1 9032:2 9034:1 9061:1 9066:1 9096:1 9099:1 9142:2 9163:1 9173:2 9186:1 9200:1 9201:1 9210:1 9242:1 9243:1 9248:1 9249:1 9289:1 9294:1 9296:1 9301:4 9318:2 9325:3 9327:1 9354:2 9371:1 9372:1 9396:1 9398:1 9410:1 9415:2 9434:1 9444:1 9449:3 9453:1 9481:1 9485:1 9490:9 9492:1 9493:1 9497:1 9520:1 9540:1 9587:1 9588:2 9590:1 9628:1 9643:1 9644:1 9646:1 9649:1 9651:1 9661:1 9663:1 9665:2 9702:1 9715:4 9720:1 9722:1 9723:1 9729:1 9732:1 9739:1 9742:1 9747:1 9755:3 9769:1 9771:1 9787:1 9803:1 9810:1 9819:1 9823:2 9837:1 9846:1 9864:1 9866:1 9877:1 9881:1 9886:2 9889:2 9899:1 9900:3 9910:1 9920:1 9926:1 9943:1 9953:3 9954:1 9964:1 9982:1 9983:1 9991:3 9995:1 10026:1 10035:2 10047:1 10057:3 10071:1 10080:1 10093:1 10106:2 10140:1 10180:1 10191:1 10201:1 10224:1 10225:1 10239:1 10240:2 10242:1 10246:2 10252:1 10261:1 10264:4 10265:5 10268:1 10276:1 10282:2 10283:2 10288:1 10289:3 10293:1 10310:2 10321:1 10336:2 10345:1 10372:1 10373:1 10376:1 10406:1 10411:1 10424:1 10436:1 10440:1 10466:1 10515:1 10532:1 10556:1 10586:1 10592:1 10611:1 10614:1 10627:1 10630:2 10633:1 10635:1 10644:2 10646:1 10648:1 10663:2 10667:1 10678:1 10693:8 10694:1 10696:1 10707:1 10718:1 10734:3 10742:1 10746:2 10756:1 10759:1 10788:2 10799:2 10803:1 10813:1 10818:2 10831:1 10847:1 10859:1 10863:1 10890:1 10906:1 10932:3 10934:1 10937:1 10950:1 10951:1 10956:1 10957:1 10962:1 10968:1 10969:1 10977:1 10988:1 10992:1 11006:3 11009:2 11031:1 11055:1 11073:1 11118:1 11141:1 11166:5 11184:1 11206:1 11214:1 11220:1 11227:1 11243:2 11263:1 11283:1 11301:1 11306:1 11321:1 11327:1 11365:1 11372:1 11380:4 11381:1 11382:1 11394:1 11406:2 11412:1 11415:1 11418:1 11424:1 11476:1 11478:1 11502:1 11506:1 11520:1 11542:1 11547:1 11557:1 11635:1 11638:2 11662:1 11695:1 11705:1 11718:1 11720:2 11721:1 11736:2 11774:1 11824:1 11831:1 11839:1 11859:1 11882:6 11886:1 11899:1 11904:1 11923:1 11929:1 11936:2 11943:1 11964:1 11980:2 11983:1 12016:1 12039:1 12045:1 12081:1 12090:1 12091:1 12100:1 12110:1 12134:1 12151:2 12208:1 12231:1 12252:1 12254:2 12257:4 12269:1 12290:1 12306:2 12323:1 12325:2 12346:1 12351:1 12352:1 12385:1 12387:1 12389:1 12399:3 12400:1 12410:2 12413:1 12436:1 12437:1 12446:1 12452:1 12463:7 12469:1 12506:1 12508:1 12515:1 12533:1 12547:1 12557:1 12559:1 12590:3 12613:1 12616:4 12633:1 12642:1 12668:2 12685:1 12692:1 12694:1 12703:1 12705:1 12707:1 12714:1 12721:1 12728:3 12732:1 12737:1 12741:6 12742:1 12760:1 12763:1 12765:1 12787:1 12831:1 12842:1 12887:2 12926:1 12929:1 12939:1 12941:1 12946:1 12960:1 12978:1 12986:1 13005:7 13025:2 13032:1 13041:1 13064:1 13085:1 13103:1 13131:1 13161:1 13197:1 13211:1 13237:1 13245:1 13261:3 13277:1 13320:1 13380:1 13383:2 13384:1 13391:1 13404:1 13410:1 13442:1 13452:2 13470:1 13480:1 13499:1 13524:1 13548:1 13563:2 13567:1 13578:3 13585:2 13630:1 13632:2 13637:2 13679:1 13680:1 13690:1 13713:1 13720:1 13731:1 13756:2 13768:1 13771:2 13804:1 13807:1 13850:1 13891:2 13892:2 13902:1 13912:1 13977:1 13979:1 13984:1 13998:1 14032:1 14094:1 14155:1 14182:1 14204:1 14211:1 14212:1 14226:1 14240:1 14245:1 14248:1 14270:1 14274:1 14295:1 14311:1 14315:1 14345:1 14387:1 14397:1 14419:1 14424:2 14435:1 14460:1 14484:1 14486:1 14552:1 14564:2 14575:1 14579:2 14593:1 14606:1 14609:1 14612:1 14639:1 14658:1 14666:1 14703:1 14719:2 14726:1 14737:1 14739:2 14764:2 14819:1 14847:1 14853:1 14857:7 14872:1 14876:3 14900:1 14904:1 14943:1 14958:1 14962:2 14972:2 14990:2 14994:1 15008:1 15029:1 15030:1 15046:1 15052:1 15062:1 15064:1 15068:1 15074:2 15117:1 15122:1 15128:2 15130:2 15131:2 15132:2 15133:1 15135:2 15137:1 15139:1 15140:2 15143:1 15144:1 15147:1 15151:1 15161:1 15204:1 15206:2 15232:1 15251:1 15255:1 15256:1 15279:1 15288:2 15289:1 15328:1 15336:1 15370:1 15418:1 15430:1 15434:1 15445:1 15446:1 15455:1 15456:1 15466:1 15470:3 15478:2 15495:1 15496:1 15501:1 15509:1 15513:1 15522:1 15534:1 15544:1 15585:3 15588:1 15613:3 15618:1 15671:1 15672:1 15678:2 15689:1 15695:2 15706:1 15720:1 15722:2 15756:2 15778:3 15811:1 15823:1 15849:1 15878:1 15879:1 15895:1 15898:1 15936:1 15946:1 15950:1 15973:1 15980:1 15987:1 15992:1 16022:1 16034:2 16039:1 16055:1 16072:1 16116:1 16119:1 16159:1 16163:1 16183:1 16187:1 16202:1 16212:1 16218:1 16224:1 16232:3 16238:2 16240:2 16244:1 16250:1 16284:1 16288:1 16293:1 16294:1 16305:1 16315:1 16316:1 16331:1 16368:1 16369:1 16389:2 16403:1 16416:1 16427:1 16428:1 16434:1 16451:1 16453:1 16482:1 16483:1 16484:1 16508:1 16513:1 16518:2 16557:1 16594:1 16602:1 16616:1 16684:1 16709:1 16710:1 16720:1 16740:2 16814:2 16815:1 16833:1 16844:1 16862:1 16879:1 16934:1 16937:1 16951:1 16981:1 16999:3 17050:1 17071:1 17087:9 17097:2 17099:1 17103:3 17128:1 17142:1 17156:1 17184:4 17192:1 17204:1 17218:1 17243:1 17251:2 17263:1 17276:1388 17285:1 17289:1 17302:1 17351:1 17353:1 17374:2 17465:1 17467:1 17469:1 17472:1 17474:1 17475:2 17495:1 17515:1 17526:1 17552:1 17592:1 17599:2 17654:1 17684:2 17697:1 17699:1 17707:2 17717:1 17737:1 17748:1 17754:1 17765:1 17787:1 17791:2 17795:1 17803:1 17809:1 17817:1 17836:2 17837:2 17855:2 17859:1 17862:1 17870:2 17876:1 17895:2 17896:1 17904:1 17917:2 17927:2 17951:1 17966:1 17970:1 17971:1 17992:2 17999:1 18011:1 18043:1 18047:3 18052:1 18054:1 18062:1 18070:1 18075:4 18085:1 18090:1 18101:1 18115:2 18116:1 18123:1 18141:1 18156:1 18159:1 18183:1 18187:1 18193:1 18194:1 18228:1 18233:1 18234:1 18240:1 18271:1 18282:1 18295:2 18297:1 18301:1 18303:1 18308:1 18323:1 18326:1 18332:1 18339:1 18343:1 18349:1 18374:1 18381:1 18382:1 18420:1 18422:1 18428:2 18430:1 18474:1 18495:1 18499:1 18501:1 18503:1 18504:1 18508:1 18519:1 18529:1 18534:2 18536:1 18538:1 18548:1 18556:4 18564:2 18580:1 18582:1 18598:1 18603:1 18604:1 18628:1 18638:1 18645:1 18653:1 18658:1 18665:1 18690:1 18691:1 18707:1 18716:2 18718:6 18719:1 18726:1 18735:2 18738:1 18756:1 18805:1 18817:1 18821:1 18835:1 18838:1 18847:1 18848:1 18868:1 18875:1 18905:2 18919:1 18933:1 18937:2 18941:1 18949:1 18960:1 18962:1 18969:1 18996:6 19013:1 19022:1 19039:1 19057:1 19085:1 19101:3 19112:1 19117:1 19125:1 19128:1 19132:1 19133:1 19140:1 19183:3 19189:2 19190:1 19201:2 19215:2 19243:2 19245:1 19254:1 19279:1 19311:2 19331:3 19334:1 19349:2 19359:3 19385:1 19391:1 19394:1 19412:1 19421:1 19439:1 19443:1 19447:1 19450:1 19459:2 19478:1 19484:2 19506:2 19515:1 19516:1 19521:1 19522:1 19523:1 19537:2 19545:1 19547:1 19552:1 19564:1 19577:1 19591:1 19614:1 19627:1 19629:1 19633:2 19636:2 19697:1 19757:1 19770:1 19773:1 19785:1 19790:1 19791:1 19798:1 19806:1 19812:1 19821:2 19823:1 19830:1 19873:1 19880:1 19896:1 19919:1 19921:1 19927:1 19931:2 19934:1 19954:1 19959:2 19960:1 19965:1 19976:1 19978:2 19989:1 19998:3 20001:1 20017:2 20028:1 20041:1 20049:1 20061:1 20063:1 20066:1 20071:1 20075:1 20125:1 20134:1 20138:1 20141:1 20149:1 20151:2 20154:1 20166:2 20177:1 20179:1 20205:1 20206:1 20210:2 20212:1 20240:1 20252:1 20316:3 20322:1 20325:1 20326:1 20328:1 20334:1 20337:1 20341:2 20352:3 20368:1 20381:1 20396:2 20400:1 20403:1 20417:1 20444:1 20481:1 20492:1 20503:1 20524:1 20532:1 20546:1 20553:1 20556:1 20567:1 20572:3 20587:1 20588:2 20592:2 20593:1 20611:1 20628:2 20632:1 20633:1 20634:4 20647:1 20655:1 20656:3 20662:1 20666:1 20676:1 20692:1 20719:6 20720:1 20733:1 20754:1 20772:1 20779:3 20780:1 20787:1 20796:1 20812:1 20842:1 20844:2 20879:1 20887:3 20889:1 20900:3 20905:2 20919:1 20924:1 20938:1 20940:1 20962:1 20963:1 20968:2 20976:1 20991:1 21005:1 21029:1 21079:1 21100:1 21115:1 21116:1 21130:1 21134:2 21138:1 21140:1 21150:3 21163:1 21176:1 21218:2 21220:1 21234:1 21235:1 21263:1 21266:1 21284:1 21303:2 21309:1 21311:1 21340:3 21370:2 21434:1 21453:3 21456:1 21462:5 21469:2 21479:1 21484:1 21488:2 21500:1 21501:1 21502:1 21512:1 21520:2 21551:1 21559:1 21586:1 21613:2 21635:1 21642:1 21647:1 21650:1 21674:1 21686:1 21694:1 21695:1 21730:1 21733:2 21743:1 21755:1 21772:2 21773:1 21777:1 21792:1 21794:1 21800:1 21845:1 21846:3 21848:1 21862:2 21863:1 21864:1 21865:1 21869:1 21916:1 21917:1 21930:1 21991:1 22014:1 22019:1 22053:1 22074:1 22076:1 22078:1 22088:1 22130:1 22136:1 22196:1 22230:2 22238:1 22263:1 22282:2 22296:1 22304:1 22320:1 22328:5 22345:1 22352:1 22380:1 22382:1 22389:1 22391:2 22403:1 22407:1 22412:1 22435:3 22457:2 22459:1 22467:1 22478:1 22522:1 22530:1 22531:1 22550:1 22553:1 22559:1 22564:3 22578:2 22612:3 22626:1 22627:1 22632:1 22640:1 22642:1 22646:1 22662:6 22675:1 22685:1 22688:1 22693:1 22710:1 22713:1 22718:3 22726:1 22739:1 22755:1 22827:1 22856:1 22862:1 22868:1 22876:1 22880:1 22886:2 22895:1 22901:1 22907:1 22923:1 22943:1 22946:1 22953:1 22974:1 22992:1 22993:1 23012:2 23018:1 23024:2 23041:1 23077:6 23078:1 23101:1 23105:1 23106:1 23115:1 23130:1 23139:1 23144:1 23158:2 23161:1 23169:1 23170:1 23188:1 23197:1 23217:1 23222:1 23261:1 23291:3 23292:1 23316:1 23373:1 23375:2 23378:1 23404:2 23406:1 23426:1 23440:1 23481:1 23497:1 23503:2 23505:1 23514:1 23528:1 23532:1 23557:1 23601:1 23609:1 23631:1 23635:2 23639:2 23652:1 23666:1 23695:3 23700:1 23704:1 23721:2 23739:2 23774:1 23775:1 23784:1 23786:1 23803:1 23826:1 23845:2 23889:1 23895:1 23909:1 23923:1 23932:1 23999:1 24009:1 24024:1 24025:1 24027:1 24055:1 24061:1 24092:2 24101:1 24126:1 24129:1 24138:1 24140:1 24149:2 24161:1 24165:9 24166:2 24177:1 24185:1 24220:2 24231:1 24233:1 24251:1 24256:1 24263:1 24272:3 24275:3 24280:3 24285:2 24286:4 24289:1 24310:1 24350:1 24357:1 24372:1 24377:1 24408:1 24416:1 24420:1 24424:1 24425:1 24427:2 24443:6 24444:1 24446:1 24471:1 24472:1 24479:1 24500:1 24521:1 24553:1 24570:1 24592:1 24600:1 24643:1 24653:1 24655:1 24658:5 24675:1 24676:1 24710:1 24713:1 24715:1 24720:1 24721:1 24733:1 24737:1 24740:1 24747:1 24773:1 24774:2 24792:2 24809:1 24830:1 24844:1 24889:1 24917:1 24928:1 24938:1 24944:3 24949:1 24953:1 24954:1 24966:1 24972:1 24976:2 24994:1 25005:2 25019:1 25022:1 25026:1 25031:1 25032:1 25059:1 25073:2 25081:1 25125:3 25129:1 25132:1 25145:1 25185:2 25191:1 25195:1 25200:1 25207:1 25213:1 25214:1 25224:1 25250:1 25251:1 25254:1 25255:1 25256:1 25260:1 25267:2 25277:1 25281:1 25291:1 25295:1 25299:1 25302:1 25329:1 25330:1 25346:1 25370:1 25412:1 25454:1 25479:1 25487:1 25491:2 25532:1 25538:1 25572:1 25600:1 25630:1 25644:1 25693:1 25702:1 25717:2 25775:1 25777:1 25791:1 25793:3 25804:2 25808:1 25809:1 25820:1 25822:1 25828:1 25829:4 25841:1 25856:1 25861:2 25863:2 25869:1 25871:4 25880:1 25881:1 25892:3 25905:3 25909:1 25913:1 25941:1 25964:1 25965:1 26005:1 26012:2 26015:4 26022:3 26028:1 26054:4 26067:1 26080:1 26081:1 26098:1 26123:1 26163:1 26174:1 26194:1 26213:1 26214:1 26221:1 26222:1 26229:1 26230:2 26236:1 26244:1 26265:3 26301:1 26305:1 26306:5 26315:1 26368:3 26452:1 26527:1 26538:1 26539:1 26544:2 26547:2 26557:1 26558:1 26580:1 26612:1 26655:3 26664:2 26690:2 26696:2 26710:1 26733:1 26745:1 26750:1 26757:2 26759:1 26787:1 26790:1 26793:2 26810:1 26832:1 26848:1 26855:1 26862:1 26879:1 26883:3 26889:1 26910:1 26920:1 26923:1 26940:1 26957:1 26961:2 26973:1 26978:1 26979:2 26986:1 26987:1 26988:1 26990:1 26996:1 27031:3
1 13:1 35:1 47:1 50:1 55:1 89:1 120:1 137:1 138:3 144:1 157:1 165:1 169:2 182:4 192:1 222:1 233:1 238:5 255:2 264:1 280:1 306:1 315:3 317:2 327:3 334:3 339:1 346:2 362:1 372:1 382:1 395:5 397:2 404:1 412:1 445:1 446:1 511:1 532:1 544:2 552:1 568:1 578:1 582:1 588:1 604:1 630:1 683:1 711:1 723:1 745:2 751:1 764:1 789:4 794:1 798:1 802:3 808:1 822:7 826:2 837:3 854:1 873:4 874:2 875:6 877:1 878:1 880:2 882:1 894:2 912:3 915:3 926:1 953:2 972:1 1002:1 1013:2 1017:1 1037:1 1108:3 1109:2 1116:1 1122:1 1125:1 1154:1 1158:1 1173:2 1187:1 1193:2 1195:1 1228:1 1244:1 1264:1 1266:1 1279:1 1292:1 1316:1 1324:1 1325:1 1346:1 1364:1 1371:1 1379:1 1392:1 1397:1 1402:1 1405:1 1419:1 1437:1 1448:4 1454:5 1456:2 1469:1 1490:1 1501:1 1514:1 1523:1 1526:1 1530:2 1542:2 1553:1 1555:1 1559:1 1568:1 1571:1 1584:1 1592:1 1596:1 1600:1 1606:1 1615:1 1634:2 1653:4 1663:1 1675:1 1681:1 1684:2 1687:1 1688:1 1696:5 1723:3 1724:2 1737:1 1757:1 1759:3 1764:1 1801:1 1807:1 1809:1 1822:2 1866:1 1870:1 1892:2 1897:1 1899:1 1904:1 1907:2 1925:1 1931:1 1956:1 1959:1 1976:1 1978:1 1984:1 1988:2 1990:1 2004:1 2027:7 2037:1 2046:1 2051:1 2078:1 2092:2 2103:3 2107:1 2120:1 2123:1 2126:2 2142:2 2143:1 2148:3 2150:1 2154:1 2157:2 2158:2 2159:1 2161:1 2167:3 2170:2 2172:5 2173:2 2185:1 2196:1 2219:1 2224:1 2226:3 2248:1 2257:1 2274:1 2275:1 2277:1 2285:1 2294:1 2296:1 2328:1 2333:1 2342:1 2350:1 2360:1 2367:1 2377:1 2390:1 2405:1 2413:1 2417:1 2432:2 2435:2 2437:1 2439:5 2444:1 2445:1 2454:1 2457:1 2478:4 2479:1 2483:1 2496:2 2503:1 2504:1 2505:1 2513:3 2520:1 2526:1 2529:5 2535:4 2545:1 2557:1 2562:3 2563:2 2574:1 2589:1 2591:2 2638:1 2640:1 2641:2 2654:2 2659:1 2662:3 2667:1 2671:1 2716:1 2738:2 2749:1 2752:9 2773:2 2774:1 2776:1 2777:1 2779:1 2786:1 2791:2 2811:7 2836:2 2839:2 2848:1 2856:1 2898:1 2907:1 2917:1 2918:4 2934:2 2939:1 2948:1 2989:1 2993:1 2998:1 3006:2 3014:1 3027:2 3042:2 3057:1 3089:1 3090:1 3128:1 3129:1 3134:1 3149:6 3193:1 3263:1 3277:1 3283:1 3286:1 3291:1 3328:1 3358:2 3362:1 3384:10 3399:1 3403:2 3405:1 3406:1 3425:1 3429:1 3479:1 3480:1 3484:1 3489:2 3493:1 3501:1 3548:1 3549:1 3552:1 3559:1 3562:1 3565:1 3569:1 3576:1 3581:1 3596:1 3599:1 3603:2 3608:1 3610:1 3626:2 3631:1 3648:2 3664:1 3668:2 3670:1 3673:1 3678:1 3687:2 3700:1 3716:2 3734:2 3756:1 3765:3 3766:3 3772:1 3808:1 3810:2 3813:1 3818:1 3837:1 3839:2 3864:1 3866:1 3875:1 3891:1 3910:1 3924:1 3932:1 3937:2 3941:1 3944:1 3950:1 3954:1 3977:1 3981:1 3992:1 4008:1 4025:1 4027:1 4045:7 4075:2 4081:1 4090:1 4101:1 4104:1 4114:1 4127:2 4133:1 4149:1 4156:2 4177:2 4194:1 4202:1 4225:2 4246:1 4249:1 4252:1 4256:1 4257:2 4267:1 4276:1 4304:1 4327:1 4331:1 4355:2 4363:2 4371:1 4377:2 4380:1 4397:1 4420:1 4437:1 4440:1 4443:2 4456:2 4459:1 4468:1 4469:2 4475:1 4523:1 4565:8 4567:1 4574:1 4576:1 4601:1 4613:1 4623:1 4664:1 4684:1 4685:3 4687:4 4688:2 4690:1 4693:1 4695:1 4696:1 4698:1 4701:1 4703:3 4704:3 4706:1 4708:2 4709:2 4716:3 4721:1 4764:1 4776:1 4789:2 4820:1 4891:1 4903:1 4930:1 4973:1 4977:1 5002:1 5008:1 5018:1 5061:1 5066:2 5088:2 5101:1 5121:1 5140:1 5157:2 5163:1 5171:1 5188:1 5197:1 5220:1 5230:1 5284:1 5287:1 5292:1 5298:2 5302:1 5313:3 5314:1 5316:2 5317:1 5320:1 5321:1 5336:1 5369:3 5379:1 5394:5 5406:2 5468:1 5483:1 5485:1 5503:1 5509:1 5516:1 5522:1 5538:1 5549:1 5568:1 5569:1 5576:2 5590:2 5594:1 5610:3 5612:1 5613:1 5619:1 5620:1 5636:1 5673:1 5680:1 5688:1 5692:1 5693:1 5696:9 5715:1 5735:2 5761:1 5772:1 5787:2 5797:1 5812:5 5824:1 5869:1 5872:1 5890:1 5897:1 5901:1 5905:1 5906:1 5911:1 5912:1 5915:1 5923:3 5924:2 5958:1 5997:1 6010:1 6046:1 6051:3 6052:2 6063:1 6106:1 6115:1 6124:1 6148:1 6154:1 6177:1 6191:2 6199:1 6222:1 6270:1 6292:1 6295:1 6298:1 6301:1 6316:6 6323:1 6327:1 6336:1 6338:1 6344:1 6355:2 6378:1 6389:1 6426:2 6442:1 6465:1 6476:1 6479:1 6483:2 6491:1 6507:1 6525:1 6529:1 6530:1 6537:1 6546:1 6553:1 6563:6 6569:2 6595:1 6596:1 6606:1 6609:1 6610:2 6623:3 6624:1 6626:1 6631:4 6634:1 6637:1 6657:1 6658:1 6670:1 6678:1 6702:1 6707:1 6716:2 6724:1 6735:1 6752:1 6765:1 6812:1 6875:1 6879:1 6931:1 6940:1 6945:1 6951:3 6955:1 6971:4 6974:2 6988:1 6989:2 6998:1 7002:1 7012:1 7020:2 7028:1 7045:1 7051:1 7053:1 7081:1 7114:1 7120:1 7138:2 7153:3 7154:6 7165:1 7170:1 7173:3 7176:2 7178:2 7183:1 7198:2 7199:2 7200:1 7213:26 7214:1 7220:1 7222:1 7228:1 7229:5 7231:3 7236:2 7270:1 7276:1 7278:1 7287:1 7297:1 7301:2 7302:2 7307:1 7309:1 7320:1 7331:1 7358:1 7380:2 7388:1 7392:1 7410:1 7440:1 7451:1 7453:1 7454:3 7483:1 7490:1 7501:1 7559:1 7591:1 7600:1 7608:1 7631:1 7643:1 7654:1 7677:1 7700:16 7706:1 7724:2 7726:1 7729:1 7731:1 7732:1 7773:2 7776:1 7777:1 7781:1 7810:1 7821:2 7825:2 7827:1 7830:1 7844:1 7855:4 7860:2 7868:1 7894:2 7896:1 7918:1 7920:1 7930:1 7957:1 7958:1 7966:1 7969:1 8028:1 8033:1 8034:1 8038:1 8041:1 8061:1 8076:3 8087:1 8090:2 8122:1 8127:1 8145:1 8146:1 8162:1 8191:1 8196:1 8233:1 8234:1 8240:1 8244:1 8271:1 8272:1 8285:1 8293:1 8316:1 8319:1 8320:1 8324:2 8347:2 8353:1 8360:2 8361:1 8370:1 8377:1 8394:1 8395:1 8407:1 8415:3 8416:1 8423:1 8425:1 8429:1 8436:1 8455:3 8477:1 8505:2 8506:4 8516:2 8551:1 8561:1 8566:1 8570:2 8589:1 8596:1 8603:1 8605:1 8609:2 8629:1 8661:1 8672:1 8681:1 8683:1 8689:1 8692:4 8715:1 8734:3 8770:1 8771:1 8795:1 8802:1 8807:1 8823:2 8835:1 8858:1 8865:1 8888:1 8901:1 8905:1 8913:1 8919:6 8924:1 8956:2 8975:1 8981:1 9005:1 9024:1 9028:1 9031:1 9032:2 9034:1 9061:1 9066:1 9096:1 9099:1 9142:2 9163:1 9173:2 9186:1 9200:1 9201:1 9210:1 9242:1 9243:1 9248:1 9249:1 9289:1 9294:1 9296:1 9301:4 9318:2 9325:3 9327:1 9354:2 9371:1 9372:1 9396:1 9398:1 9410:1 9415:2 9434:1 9444:1 9449:3 9453:1 9481:1 9485:1 9490:9 9492:1 9493:1 9497:1 9519:1 9520:1 9540:1 9587:1 9588:2 9590:1 9628:1 9643:1 9644:1 9646:1 9649:1 9651:3 9661:1 9663:1 9665:2 9702:1 9715:4 9720:1 9722:1 9723:1 9729:1 9732:1 9739:1 9742:1 9747:1 9755:3 9769:1 9771:1 9787:1 9803:1 9810:1 9819:1 9823:2 9837:1 9846:1 9864:1 9866:2 9877:1 9881:1 9886:3 9889:2 9899:1 9900:3 9910:1 9920:1 9926:1 9943:1 9953:3 9954:1 9964:1 9982:1 9983:1 9991:3 9995:1 10013:1 10026:1 10035:2 10047:1 10057:3 10071:1 10080:1 10093:1 10106:2 10140:1 10180:1 10191:1 10201:1 10224:1 10225:1 10239:1 10240:2 10242:1 10246:2 10252:1 10261:1 10264:4 10265:5 10268:1 10276:1 10282:2 10283:2 10288:1 10289:3 10293:1 10310:2 10321:1 10336:2 10345:1 10372:1 10373:1 10376:1 10406:1 10411:1 10424:1 10436:1 10440:1 10466:1 10515:1 10532:1 10556:1 10586:1 10592:1 10611:1 10614:1 10617:1 10627:1 10630:2 10632:1 10633:1 10635:1 10644:2 10646:1 10648:2 10657:1 10663:2 10667:1 10678:1 10693:9 10694:1 10696:1 10707:1 10718:1 10734:3 10742:1 10746:2 10756:1 10759:1 10788:2 10799:2 10803:1 10813:1 10818:2 10831:1 10847:1 10859:1 10863:1 10890:1 10906:1 10932:3 10934:1 10937:1 10950:1 10951:2 10956:1 10957:1 10960:1 10962:1 10968:1 10969:1 10977:1 10988:1 10991:1 10992:1 11006:3 11009:2 11031:1 11055:1 11073:1 11118:1 11135:1 11141:1 11166:5 11184:1 11206:1 11214:1 11220:1 11227:1 11243:2 11263:1 11283:1 11301:1 11306:1 11321:1 11327:1 11365:1 11372:1 11380:4 11381:1 11382:1 11394:1 11406:2 11412:1 11415:1 11418:1 11424:1 11476:1 11478:1 11502:1 11506:1 11520:1 11542:1 11547:1 11557:1 11635:1 11638:2 11662:1 11695:1 11705:1 11718:1 11720:2 11721:1 11736:2 11758:1 11774:1 11824:1 11831:1 11839:1 11859:1 11882:6 11886:1 11899:1 11904:1 11923:1 11929:1 11936:2 11943:1 11964:1 11980:2 11983:1 11989:1 12016:1 12039:1 12045:1 12081:1 12090:1 12091:1 12100:1 12110:1 12134:1 12151:3 12208:1 12231:1 12252:1 12254:2 12257:4 12269:1 12290:1 12306:3 12323:1 12325:2 12346:1 12351:2 12352:1 12385:1 12387:1 12389:1 12399:4 12400:1 12410:2 12413:1 12436:1 12437:1 12446:1 12452:1 12463:8 12469:1 12506:2 12508:1 12515:1 12533:1 12547:1 12557:1 12559:1 12590:3 12613:1 12616:5 12633:1 12642:1 12668:2 12685:1 12692:1 12694:1 12703:1 12705:1 12707:1 12714:1 12721:1 12728:3 12732:1 12737:1 12741:6 12742:1 12760:1 12763:1 12765:1 12787:1 12831:1 12842:1 12887:2 12926:1 12929:1 12932:1 12939:1 12941:1 12946:1 12960:1 12978:1 12986:1 13005:7 13025:2 13032:1 13041:1 13064:1 13085:1 13103:1 13131:1 13161:1 13197:1 13211:1 13237:1 13245:1 13261:3 13277:1 13320:1 13380:1 13383:2 13384:1 13391:1 13404:1 13410:1 13442:1 13452:2 13470:1 13480:1 13499:1 13524:2 13548:1 13554:1 13556:1 13563:2 13567:1 13578:3 13585:2 13630:1 13632:2 13637:2 13679:1 13680:1 13690:1 13713:1 13720:1 13731:1 13756:2 13768:1 13771:2 13804:1 13807:1 13850:1 13891:2 13892:2 13902:1 13912:1 13977:1 13979:1 13984:1 13997:1 13998:1 14032:1 14087:1 14094:1 14115:1 14155:1 14182:1 14204:1 14211:1 14212:1 14226:1 14240:1 14245:2 14248:1 14270:1 14274:1 14295:1 14311:1 14315:1 14318:1 14345:1 14387:1 14391:1 14397:2 14409:1 14419:1 14424:2 14435:1 14460:1 14484:1 14486:1 14552:1 14564:2 14575:1 14579:2 14593:1 14606:1 14609:1 14612:1 14639:1 14658:2 14666:1 14703:1 14719:2 14726:1 14737:1 14739:2 14753:1 14764:2 14819:1 14847:1 14853:1 14857:7 14872:1 14876:3 14900:1 14904:1 14943:1 14958:1 14962:2 14972:2 14976:1 14990:2 14994:1 15008:1 15029:1 15030:1 15046:1 15052:1 15062:1 15064:1 15068:1 15074:2 15117:1 15122:1 15128:3 15130:2 15131:2 15132:3 15133:1 15135:2 15137:1 15139:1 15140:2 15143:1 15144:1 15147:1 15151:1 15161:1 15204:1 15206:2 15232:1 15251:1 15255:1 15256:1 15279:1 15288:2 15289:1 15328:1 15336:1 15370:1 15418:1 15430:1 15434:1 15445:1 15446:1 15455:1 15456:1 15466:1 15470:3 15478:2 15487:1 15495:1 15496:1 15501:2 15509:1 15513:1 15522:2 15534:1 15544:1 15585:4 15588:1 15613:3 15618:1 15671:1 15672:1 15678:2 15689:1 15695:2 15706:1 15720:1 15722:2 15756:2 15778:4 15811:1 15823:1 15849:1 15878:1 15879:1 15895:1 15898:1 15936:2 15946:1 15950:1 15973:1 15980:1 15987:2 15992:1 16022:1 16034:2 16039:1 16055:1 16072:1 16116:1 16119:1 16159:1 16163:1 16183:1 16187:1 16202:1 16212:1 16218:1 16224:1 16232:3 16238:2 16240:2 16244:1 16250:2 16284:1 16288:1 16293:1 16294:1 16305:1 16315:1 16316:1 16331:1 16368:1 16369:1 16389:2 16403:1 16416:1 16427:1 16428:1 16434:1 16451:1 16453:1 16482:1 16483:1 16484:1 16508:1 16513:1 16518:2 16557:1 16594:2 16602:1 16616:1 16684:1 16709:1 16710:1 16720:1 16740:2 16814:2 16815:1 16833:1 16844:1 16862:1 16879:1 16907:1 16934:1 16937:1 16951:1 16981:1 16999:4 17050:1 17071:1 17087:9 17097:2 17099:1 17103:3 17128:1 17142:1 17156:1 17184:4 17192:1 17204:1 17218:1 17243:1 17251:2 17263:1 17276:1461 17285:1 17289:1 17302:1 17351:1 17353:1 17374:2 17465:1 17467:1 17469:1 17472:1 17474:1 17475:2 17495:1 17515:1 17526:1 17552:1 17592:1 17595:1 17599:2 17654:1 17684:2 17697:1 17699:1 17707:2 17717:1 17737:1 17748:2 17754:1 17765:1 17787:1 17791:2 17795:1 17803:1 17809:1 17817:1 17836:2 17837:2 17855:2 17859:1 17862:1 17870:2 17876:1 17895:2 17896:1 17904:1 17917:2 17927:2 17951:1 17966:1 17970:1 17971:1 17992:2 17999:1 18011:1 18043:1 18047:3 18052:1 18054:2 18062:1 18070:1 18075:4 18085:1 18090:1 18101:1 18104:1 18115:2 18116:1 18123:1 18141:1 18156:1 18159:1 18183:1 18187:1 18193:1 18194:1 18228:1 18233:1 18234:1 18240:1 18271:1 18282:1 18295:2 18297:1 18301:1 18303:1 18308:1 18323:1 18326:1 18332:1 18339:1 18343:1 18349:1 18374:1 18381:1 18382:1 18420:1 18422:1 18428:2 18430:1 18474:1 18495:1 18499:1 18501:1 18503:1 18504:1 18508:1 18519:1 18529:1 18534:2 18536:1 18538:1 18548:1 18556:4 18564:2 18580:1 18582:1 18598:1 18603:1 18604:3 18628:1 18638:1 18645:1 18653:1 18658:1 18665:1 18690:1 18691:1 18707:1 18716:2 18718:7 18719:1 18726:1 18735:2 18738:1 18756:1 18805:1 18817:1 18821:1 18835:1 18838:1 18847:1 18848:1 18868:1 18875:1 18905:3 18919:1 18933:1 18937:2 18941:1 18949:1 18960:1 18962:1 18969:1 18996:6 19013:1 19022:1 19039:1 19057:1 19085:1 19101:3 19112:1 19117:1 19125:1 19128:1 19132:1 19133:1 19140:1 19183:3 19189:2 19190:2 19201:2 19215:2 19243:3 19245:1 19254:1 19279:2 19284:1 19293:1 19311:2 19331:3 19334:1 19349:2 19359:3 19385:1 19391:1 19394:1 19412:1 19421:1 19439:1 19443:1 19447:1 19450:1 19459:2 19478:1 19484:2 19506:2 19515:1 19516:1 19521:1 19522:1 19523:2 19537:2 19545:1 19547:1 19552:1 19564:1 19577:1 19591:1 19614:1 19620:1 19627:1 19629:1 19633:2 19636:2 19697:1 19757:1 19770:1 19773:1 19785:2 19790:1 19791:1 19798:1 19806:1 19812:1 19821:2 19823:1 19830:1 19873:1 19880:1 19896:1 19919:1 19921:1 19927:1 19931:2 19934:1 19954:1 19959:2 19960:1 19965:1 19976:1 19978:2 19989:1 19998:4 20001:1 20017:2 20028:1 20041:1 20049:1 20061:1 20063:1 20066:1 20071:1 20075:1 20125:1 20134:1 20138:2 20141:1 20149:1 20151:3 20154:1 20166:2 20177:1 20179:1 20205:1 20206:1 20210:2 20212:1 20240:1 20252:1 20316:3 20321:1 20322:1 20325:2 20326:1 20328:1 20334:1 20337:1 20341:2 20352:3 20368:1 20381:1 20396:2 20400:1 20403:1 20417:1 20444:1 20481:1 20492:1 20503:1 20524:1 20532:1 20546:1 20553:1 20556:1 20567:1 20572:3 20587:1 20588:2 20592:2 20593:1 20611:1 20628:2 20632:1 20633:1 20634:4 20647:1 20655:1 20656:4 20662:1 20666:1 20676:1 20692:1 20693:1 20719:7 20720:1 20733:1 20754:1 20772:1 20779:3 20780:1 20787:1 20796:1 20812:1 20842:1 20844:2 20879:1 20887:3 20889:1 20900:3 20905:2 20919:1 20924:1 20938:1 20940:2 20962:1 20963:1 20968:2 20976:1 20991:1 21005:1 21029:1 21062:1 21074:1 21079:1 21100:1 21115:2 21116:1 21130:1 21134:2 21138:1 21140:2 21150:3 21163:2 21176:1 21218:2 21220:1 21234:1 21235:1 21263:1 21266:1 21284:1 21303:2 21306:1 21309:1 21311:1 21340:3 21370:2 21434:1 21453:3 21456:1 21462:5 21469:2 21479:1 21484:1 21488:2 21500:1 21501:1 21502:1 21512:1 21520:3 21551:1 21559:1 21586:1 21613:2 21635:1 21642:1 21647:1 21650:1 21674:2 21686:1 21694:1 21695:1 21730:1 21733:2 21743:1 21755:1 21772:3 21773:1 21777:1 21792:1 21794:1 21800:1 21845:1 21846:3 21848:1 21861:1 21862:2 21863:1 21864:1 21865:1 21869:1 21916:1 21917:1 21930:1 21981:1 21991:1 22014:1 22019:1 22053:1 22074:1 22076:1 22078:1 22088:1 22130:1 22136:1 22176:1 22196:1 22230:2 22238:1 22263:1 22282:2 22296:2 22304:1 22320:1 22328:5 22345:1 22352:1 22380:1 22382:1 22389:1 22391:2 22400:1 22403:1 22407:1 22412:1 22435:3 22457:2 22459:1 22467:1 22469:1 22478:1 22522:1 22530:1 22531:1 22550:1 22553:1 22559:1 22564:3 22578:2 22612:4 22626:1 22627:1 22632:1 22640:1 22642:1 22646:1 22662:7 22675:1 22685:1 22688:1 22693:1 22710:1 22713:1 22718:3 22726:1 22739:1 22755:1 22827:1 22856:1 22862:1 22868:1 22876:1 22880:1 22886:2 22895:1 22901:1 22907:1 22923:1 22943:1 22946:1 22953:1 22974:1 22992:1 22993:1 23012:2 23018:1 23024:2 23041:1 23077:7 23078:1 23101:1 23105:1 23106:1 23115:1 23130:1 23139:1 23144:1 23158:2 23161:1 23169:1 23170:1 23188:1 23197:1 23217:1 23222:1 23261:1 23291:3 23292:1 23307:1 23316:1 23373:1 23375:3 23378:1 23404:2 23406:1 23426:1 23432:1 23436:1 23440:1 23446:1 23481:1 23497:1 23503:2 23505:1 23514:1 23528:1 23532:1 23557:1 23601:1 23609:1 23631:1 23635:2 23639:2 23652:1 23666:1 23695:3 23700:1 23704:1 23721:3 23739:2 23774:1 23775:1 23784:1 23786:1 23803:1 23826:1 23845:2 23889:1 23895:1 23909:1 23923:1 23932:1 23943:1 23999:1 24009:1 24024:1 24025:1 24027:1 24055:1 24061:1 24092:2 24101:1 24126:1 24129:1 24138:1 24140:1 24149:2 24161:1 24165:9 24166:2 24177:1 24185:1 24220:2 24231:1 24233:1 24251:1 24256:1 24263:1 24272:3 24275:3 24280:3 24285:2 24286:4 24289:1 24310:1 24350:1 24357:1 24372:1 24377:1 24408:1 24416:1 24420:1 24424:1 24425:1 24427:2 24443:6 24444:1 24446:1 24471:1 24472:1 24479:1 24500:1 24502:1 24521:1 24553:1 24570:1 24592:1 24596:1 24600:1 24622:1 24643:1 24653:1 24655:1 24658:5 24675:1 24676:1 24710:1 24713:1 24715:1 24720:1 24721:1 24733:1 24737:1 24740:1 24747:1 24773:1 24774:2 24792:2 24809:1 24830:1 24839:1 24844:1 24870:1 24889:1 24917:1 24928:1 24938:1 24944:3 24949:1 24953:1 24954:1 24966:1 24972:1 24976:2 24994:1 25005:2 25019:1 25022:1 25026:1 25031:2 25032:1 25059:1 25073:2 25081:1 25110:1 25125:3 25129:1 25132:1 25145:1 25185:2 25191:1 25195:1 25200:1 25207:1 25213:1 25214:1 25224:1 25250:1 25251:1 25254:1 25255:1 25256:1 25260:1 25267:2 25277:1 25281:1 25291:1 25295:1 25299:1 25302:1 25329:1 25330:1 25346:1 25370:1 25412:1 25454:1 25479:1 25487:1 25491:2 25532:1 25538:1 25572:1 25600:1 25630:1 25644:1 25693:1 25702:1 25717:2 25775:1 25777:1 25791:1 25793:3 25804:2 25808:1 25809:1 25820:1 25822:1 25828:1 25829:4 25841:1 25856:1 25861:2 25863:2 25869:1 25871:4 25875:1 25880:1 25881:1 25888:1 25892:3 25905:3 25909:1 25913:1 25941:1 25964:1 25965:1 26005:1 26012:2 26015:4 26022:3 26028:1 26054:4 26067:1 26080:1 26081:1 26098:1 26123:1 26163:1 26174:1 26194:1 26213:1 26214:1 26221:1 26222:1 26229:1 26230:2 26236:1 26244:1 26265:3 26301:1 26305:1 26306:5 26315:1 26340:1 26368:3 26452:1 26527:1 26538:1 26539:1 26544:2 26547:2 26557:1 26558:1 26565:1 26580:1 26612:1 26655:3 26664:2 26690:2 26696:2 26710:1 26733:1 26745:1 26750:1 26751:1 26757:2 26759:1 26787:1 26790:2 26793:2 26810:1 26832:1 26848:1 26855:1 26862:1 26879:1 26883:3 26889:1 26910:1 26920:1 26923:1 26940:1 26957:1 26961:2 26973:1 26978:1 26979:2 26986:2 26987:1 26988:1 26990:1 26996:1 27031:3
1 13:1 35:1 47:1 50:1 55:1 89:1 120:1 137:1 138:3 144:1 157:1 165:1 169:2 182:5 192:1 222:1 233:1 238:5 255:2 264:1 280:1 306:1 315:3 317:2 327:3 334:3 339:1 346:2 362:1 372:1 382:1 395:5 397:2 404:1 412:1 445:1 446:1 511:1 515:1 532:1 544:2 552:1 568:1 578:1 582:1 588:1 604:1 630:1 683:1 711:1 723:1 745:2 751:1 764:1 789:4 794:1 798:1 802:3 808:1 822:7 826:3 837:3 854:2 873:4 874:2 875:6 877:1 878:1 880:2 882:1 894:2 912:3 915:3 926:1 953:2 972:1 1002:1 1013:2 1017:1 1037:1 1108:3 1109:2 1116:1 1122:1 1125:1 1154:1 1158:1 1173:2 1187:1 1193:2 1195:1 1228:1 1244:1 1264:1 1266:1 1279:1 1292:1 1316:1 1324:1 1325:2 1346:1 1364:1 1371:1 1379:1 1392:1 1397:1 1402:1 1405:1 1419:1 1437:1 1448:4 1454:5 1456:2 1469:1 1490:1 1501:1 1510:1 1514:1 1523:1 1526:1 1530:2 1542:2 1553:1 1555:1 1559:1 1568:1 1571:1 1584:1 1592:1 1596:1 1600:1 1606:1 1615:1 1634:2 1635:1 1653:4 1663:1 1675:1 1681:1 1684:2 1687:1 1688:1 1696:5 1723:3 1724:2 1737:1 1757:1 1759:3 1764:1 1794:1 1801:1 1807:1 1809:1 1822:2 1866:1 1870:1 1881:1 1892:2 1897:1 1899:1 1904:1 1907:2 1925:1 1931:1 1956:1 1959:1 1976:1 1978:1 1984:1 1988:2 1990:1 2004:1 2027:7 2037:1 2046:1 2051:1 2078:1 2092:2 2103:3 2107:1 2120:1 2123:1 2126:2 2142:2 2143:1 2147:1 2148:3 2150:1 2154:1 2157:2 2158:2 2159:1 2161:1 2167:4 2170:2 2172:5 2173:3 2185:1 2196:1 2219:1 2224:1 2226:3 2248:1 2257:1 2274:1 2275:1 2277:1 2285:1 2294:1 2296:1 2328:1 2333:1 2342:1 2350:1 2351:1 2360:1 2367:1 2377:2 2388:1 2390:1 2405:1 2413:1 2417:1 2432:2 2435:2 2437:1 2439:5 2444:1 2445:1 2454:1 2457:1 2478:4 2479:1 2483:1 2496:2 2503:1 2504:1 2505:1 2513:3 2520:1 2526:1 2529:5 2535:4 2545:1 2547:1 2557:1 2562:3 2563:2 2574:1 2589:1 2591:2 2597:1 2638:1 2640:2 2641:2 2654:2 2659:1 2662:3 2667:1 2671:1 2716:1 2738:2 2749:1 2752:9 2773:2 2774:1 2776:1 2777:1 2779:1 2786:1 2791:2 2811:8 2836:2 2839:2 2848:1 2856:1 2898:1 2907:1 2917:1 2918:4 2934:2 2939:1 2948:1 2989:1 2993:1 2998:1 3006:2 3014:1 3027:2 3042:2 3057:1 3089:1 3090:1 3128:1 3129:1 3134:1 3149:6 3193:1 3263:1 3277:1 3283:1 3286:1 3291:1 3328:1 3358:2 3362:1 3384:10 3399:1 3403:2 3405:1 3406:1 3425:1 3429:1 3479:1 3480:1 3484:1 3489:2 3493:1 3501:1 3548:1 3549:1 3552:1 3559:1 3562:1 3565:1 3569:1 3576:1 3581:1 3596:1 3599:1 3603:2 3608:1 3610:1 3626:2 3631:1 3648:2 3663:1 3664:1 3668:2 3670:1 3673:1 3678:1 3687:2 3700:1 3716:2 3734:2 3756:1 3765:3 3766:3 3772:1 3808:1 3810:2 3813:1 3818:1 3837:1 3839:2 3864:1 3866:1 3875:1 3891:1 3910:1 3924:1 3932:1 3937:2 3941:1 3944:1 3950:1 3954:1 3977:1 3981:1 3992:1 4008:1 4025:1 4027:1 4045:7 4075:2 4081:1 4090:1 4101:1 4104:1 4114:2 4127:2 4133:1 4149:1 4156:2 4177:2 4194:1 4202:1 4225:2 4246:1 4249:1 4252:1 4256:1 4257:2 4267:1 4276:1 4304:1 4327:1 4331:1 4355:3 4363:2 4371:1 4377:2 4380:1 4397:2 4420:1 4437:1 4440:1 4443:2 4456:2 4459:1 4468:1 4469:2 4475:1 4523:1 4565:8 4567:1 4574:1 4576:1 4586:1 4601:1 4613:1 4623:1 4664:1 4684:1 4685:3 4687:4 4688:2 4690:1 4693:1 4695:1 4696:1 4698:1 4701:1 4703:3 4704:3 4706:1 4708:2 4709:2 4716:3 4721:1 4764:1 4776:1 4789:2 4796:1 4820:1 4891:1 4903:1 4930:1 4973:1 4977:1 5002:2 5008:1 5018:1 5061:1 5066:2 5088:2 5101:1 5121:1 5140:1 5157:2 5163:1 5171:1 5180:1 5188:1 5197:1 5220:1 5230:1 5252:1 5284:1 5287:1 5292:1 5298:2 5302:1 5313:3 5314:1 5316:2 5317:1 5320:1 5321:1 5336:1 5369:3 5379:1 5394:5 5406:2 5468:1 5483:1 5485:1 5503:1 5509:1 5516:1 5522:1 5538:1 5549:1 5562:1 5568:1 5569:1 5576:2 5590:2 5594:1 5610:3 5612:1 5613:1 5619:1 5620:1 5636:1 5673:1 5680:1 5688:1 5692:1 5693:1 5696:9 5715:1 5735:2 5761:1 5772:1 5787:2 5797:1 5812:5 5817:1 5824:1 5869:1 5872:1 5890:1 5897:1 5901:1 5905:1 5906:1 5911:1 5912:1 5915:1 5923:3 5924:2 5958:1 5997:1 6010:1 6046:1 6051:4 6052:2 6063:1 6106:1 6115:1 6124:1 6148:1 6154:1 6177:1 6191:2 6199:1 6222:1 6270:1 6292:1 6295:1 6298:1 6301:1 6316:7 6323:1 6327:1 6329:1 6336:1 6338:1 6344:1 6355:2 6378:1 6389:1 6424:1 6426:2 6442:1 6465:1 6476:1 6479:1 6483:2 6491:1 6507:1 6525:1 6529:1 6530:1 6537:1 6545:1 6546:1 6553:1 6563:6 6569:2 6595:1 6596:1 6606:1 6609:1 6610:2 6623:3 6624:1 6626:1 6631:4 6634:1 6637:1 6657:1 6658:1 6670:1 6678:1 6702:1 6707:2 6716:2 6724:1 6735:1 6752:1 6765:1 6798:1 6812:1 6824:1 6871:1 6875:1 6879:1 6917:1 6931:1 6940:1 6945:1 6951:3 6955:1 6971:4 6974:2 6988:1 6989:2 6998:1 7002:1 7012:1 7020:2 7028:1 7045:1 7051:1 7053:1 7081:1 7114:1 7120:1 7138:2 7153:3 7154:6 7165:1 7170:1 7173:3 7176:2 7178:2 7183:1 7198:2 7199:2 7200:1 7213:29 7214:1 7220:1 7222:1 7228:1 7229:5 7231:3 7236:2 7270:1 7276:1 7278:1 7287:1 7297:1 7301:2 7302:2 7307:1 7309:1 7320:1 7331:1 7358:1 7360:1 7380:2 7388:1 7392:1 7410:1 7440:1 7451:1 7453:1 7454:3 7483:1 7490:1 7501:1 7559:1 7591:1 7600:1 7608:1 7628:1 7631:1 7643:1 7654:1 7677:1 7700:16 7706:1 7724:2 7726:1 7729:1 7731:2 7732:1 7773:2 7776:1 7777:1 7781:1 7810:1 7821:2 7825:2 7827:1 7830:1 7844:1 7854:1 7855:4 7860:2 7868:1 7894:2 7896:1 7918:1 7920:1 7930:1 7957:1 7958:1 7966:1 7969:1 8028:1 8033:1 8034:1 8038:1 8041:1 8061:1 8076:3 8087:1 8090:2 8109:1 8115:1 8122:1 8127:1 8145:1 8146:1 8162:1 8191:1 8196:1 8233:1 8234:1 8240:1 8244:1 8271:1 8272:1 8285:1 8293:1 8316:1 8319:1 8320:1 8324:3 8347:2 8353:1 8360:2 8361:1 8370:1 8377:1 8394:1 8395:1 8407:1 8415:3 8416:1 8423:1 8425:1 8429:1 8436:1 8455:3 8477:1 8505:2 8506:4 8516:2 8551:1 8561:1 8566:1 8570:2 8589:1 8596:1 8603:1 8605:1 8607:1 8609:2 8629:1 8661:1 8672:1 8681:1 8683:1 8689:1 8692:4 8715:1 8734:4 8770:1 8771:1 8795:1 8802:1 8807:1 8823:2 8835:1 8858:1 8865:1 8888:1 8901:1 8905:1 8913:1 8919:6 8924:1 8956:2 8975:1 8981:1 9005:1 9024:1 9028:1 9031:1 9032:2 9034:1 9061:1 9066:1 9096:1 9099:1 9107:1 9142:2 9163:1 9173:2 9186:1 9200:1 9201:1 9210:1 9242:1 9243:1 9248:1 9249:1 9289:1 9294:1 9296:1 9301:5 9318:2 9325:3 9327:1 9354:2 9371:1 9372:1 9396:1 9398:1 9410:1 9415:2 9427:1 9434:1 9444:1 9449:3 9453:1 9481:1 9485:1 9490:9 9492:1 9493:1 9497:2 9519:1 9520:1 9540:1 9587:1 9588:2 9590:1 9597:1 9622:1 9628:1 9643:1 9644:1 9646:1 9649:1 9651:3 9661:1 9663:1 9665:2 9702:1 9715:4 9720:1 9722:1 9723:1 9729:1 9732:1 9739:1 9742:1 9747:1 9755:4 9769:1 9771:1 9787:1 9803:1 9810:1 9819:1 9823:2 9837:1 9846:1 9864:1 9866:2 9877:1 9881:1 9886:3 9889:2 9899:1 9900:3 9910:1 9920:1 9926:1 9943:2 9953:3 9954:1 9964:1 9982:1 9983:1 9991:3 9995:1 10013:1 10026:1 10035:3 10047:1 10057:4 10071:1 10080:1 10093:1 10106:2 10140:1 10180:1 10191:1 10201:1 10224:1 10225:1 10239:1 10240:2 10242:1 10246:2 10252:1 10261:1 10264:5 10265:5 10268:1 10276:1 10282:2 10283:2 10288:1 10289:3 10293:1 10310:2 10321:1 10336:2 10345:1 10372:1 10373:1 10376:1 10406:1 10411:1 10424:1 10436:1 10440:1 10466:1 10515:1 10532:1 10556:1 10586:1 10592:1 10611:1 10614:1 10617:1 10627:1 10630:2 10632:1 10633:1 10635:1 10644:2 10646:1 10648:2 10657:1 10663:2 10667:1 10678:1 10693:9 10694:1 10696:1 10707:1 10718:1 10734:3 10742:1 10746:2 10756:1 10759:1 10788:2 10799:2 10803:1 10813:1 10818:2 10831:1 10847:1 10859:1 10863:1 10890:1 10906:1 10932:3 10934:1 10937:1 10950:1 10951:2 10956:1 10957:1 10960:1 10962:1 10968:1 10969:1 10977:1 10988:1 10991:1 10992:1 11006:3 11009:2 11031:1 11055:1 11073:1 11118:1 11135:1 11141:1 11166:5 11184:1 11188:1 11201:1 11206:1 11214:1 11220:1 11227:1 11243:2 11263:1 11283:1 11301:1 11306:1 11314:1 11321:1 11327:1 11365:1 11372:1 11380:4 11381:1 11382:1 11394:1 11406:2 11412:1 11415:1 11418:1 11424:1 11476:1 11478:1 11502:1 11506:1 11520:1 11542:1 11547:1 11557:1 11635:1 11638:2 11662:1 11695:1 11705:1 11718:1 11720:2 11721:1 11736:2 11758:1 11774:1 11824:1 11831:1 11839:1 11859:1 11882:6 11886:1 11899:1 11904:1 11923:1 11928:1 11929:1 11936:2 11943:1 11964:1 11980:2 11983:1 11989:1 12016:1 12039:1 12045:1 12081:1 12090:1 12091:1 12100:1 12110:1 12134:1 12151:3 12161:1 12208:1 12231:1 12252:1 12254:2 12257:4 12269:1 12274:1 12290:1 12306:3 12323:1 12325:2 12346:1 12351:2 12352:1 12385:1 12387:1 12389:1 12399:4 12400:1 12410:2 12413:1 12436:1 12437:1 12446:1 12452:1 12463:8 12469:1 12506:2 12508:1 12515:1 12533:1 12547:1 12557:1 12559:1 12590:3 12613:1 12616:5 12633:1 12642:1 12668:2 12685:1 12692:1 12694:1 12703:1 12705:1 12707:1 12714:1 12721:1 12728:3 12732:1 12734:1 12737:1 12741:6 12742:1 12760:1 12763:1 12765:1 12787:1 12831:1 12842:1 12887:2 12926:1 12929:1 12932:1 12939:1 12941:1 12946:1 12960:1 12978:1 12986:1 13005:7 13025:2 13032:1 13041:1 13064:1 13085:1 13103:1 13131:1 13161:1 13188:1 13197:1 13211:1 13237:1 13245:2 13261:3 13277:1 13309:1 13320:1 13380:1 13383:2 13384:1 13391:1 13404:1 13410:1 13442:1 13452:2 13470:1 13480:1 13499:1 13524:2 13548:1 13554:1 13556:1 13563:2 13567:1 13578:3 13585:2 13630:1 13632:2 13637:2 13679:1 13680:1 13690:1 13713:1 13720:1 13731:1 13756:3 13768:1 13771:2 13804:1 13807:1 13850:1 13891:2 13892:2 13902:1 13912:1 13932:1 13977:1 13979:1 13984:1 13997:1 13998:1 14032:1 14087:1 14094:1 14115:1 14155:1 14182:1 14204:1 14211:1 14212:1 14226:1 14240:1 14245:2 14248:1 14270:1 14274:1 14295:1 14311:1 14315:1 14318:1 14345:1 14387:1 14391:1 14397:2 14409:1 14419:1 14424:2 14435:1 14460:1 14484:1 14486:1 14552:1 14564:2 14575:1 14579:2 14593:1 14605:1 14606:1 14609:1 14612:1 14639:1 14658:2 14666:1 14703:1 14719:2 14726:1 14737:1 14739:2 14753:1 14764:2 14819:1 14847:1 14853:1 14857:7 14872:1 14876:3 14900:1 14904:1 14943:1 14958:1 14962:2 14972:2 14976:1 14990:2 14994:1 15008:1 15029:1 15030:1 15046:1 15052:1 15062:1 15064:1 15068:1 15074:2 15117:1 15122:1 15128:3 15130:2 15131:2 15132:3 15133:1 15135:2 15137:1 15139:1 15140:2 15143:1 15144:1 15147:1 15151:1 15161:1 15204:1 15206:2 15232:1 15251:1 15255:1 15256:1 15279:1 15288:2 15289:1 15307:1 15328:1 15336:1 15370:1 15418:1 15430:1 15434:1 15445:1 15446:2 15455:1 15456:1 15466:1 15470:3 15478:2 15487:1 15495:1 15496:1 15501:2 15509:1 15513:1 15522:2 15534:1 15544:1 15585:4 15588:1 15613:3 15618:1 15671:1 15672:1 15678:2 15689:1 15695:2 15706:1 15720:1 15722:2 15756:2 15778:4 15811:1 15823:1 15849:1 15878:1 15879:1 15895:1 15898:1 15936:2 15946:1 15950:1 15973:1 15980:1 15987:2 15992:1 16022:1 16034:2 16039:1 16055:1 16072:1 16116:1 16119:1 16159:1 16163:1 16183:1 16187:1 16202:1 16212:1 16218:1 16224:1 16232:3 16238:2 16240:2 16244:1 16250:2 16284:1 16288:1 16293:1 16294:1 16305:1 16315:1 16316:1 16331:1 16368:1 16369:1 16389:2 16403:1 16416:1 16427:1 16428:1 16434:1 16451:1 16453:1 16482:1 16483:1 16484:1 16508:1 16513:1 16518:2 16557:1 16594:2 16602:1 16616:1 16684:1 16709:1 16710:1 16720:1 16740:2 16814:2 16815:1 16823:1 16833:1 16844:1 16862:1 16879:1 16907:1 16934:1 16937:1 16951:1 16981:1 16999:4 17050:1 17071:1 17087:9 17097:2 17099:1 17103:3 17128:1 17142:1 17156:1 17184:4 17192:1 17204:1 17218:1 17243:1 17251:2 17263:2 17276:1527 17285:1 17289:1 17302:1 17347:1 17351:1 17353:1 17374:2 17421:1 17465:1 17467:1 17469:1 17472:1 17474:1 17475:2 17495:1 17515:1 17526:1 17552:1 17592:1 17595:1 17599:2 17654:1 17684:2 17697:1 17699:1 17707:2 17717:1 17737:1 17748:2 17754:1 17765:1 17787:1 17791:2 17795:1 17803:1 17809:1 17817:1 17836:2 17837:2 17855:2 17859:1 17862:1 17870:2 17876:1 17895:2 17896:1 17904:1 17917:2 17927:2 17951:1 17966:1 17970:1 17971:1 17992:2 17999:1 18011:1 18043:1 18047:3 18052:1 18054:2 18062:1 18070:1 18075:4 18085:1 18090:1 18101:1 18104:1 18115:2 18116:1 18123:1 18141:1 18156:1 18159:1 18163:1 18183:1 18187:1 18193:1 18194:1 18228:1 18233:1 18234:1 18240:1 18271:1 18282:1 18295:2 18297:1 18301:1 18303:1 18308:1 18323:1 18326:1 18332:1 18339:1 18343:1 18349:1 18371:1 18374:1 18381:1 18382:1 18420:1 18422:2 18428:2 18430:1 18474:1 18492:1 18495:1 18499:1 18501:1 18503:1 18504:1 18508:1 18519:1 18529:1 18534:2 18536:1 18538:1 18548:1 18556:4 18564:2 18580:1 18582:1 18598:1 18603:1 18604:3 18628:1 18638:1 18645:1 18653:1 18658:1 18665:1 18690:1 18691:1 18707:1 18716:3 18718:8 18719:2 18726:1 18735:2 18738:1 18756:1 18805:1 18817:1 18821:1 18835:1 18838:1 18847:1 18848:1 18868:1 18875:1 18905:3 18919:1 18933:1 18937:2 18941:1 18949:1 18960:1 18962:1 18969:1 18996:6 19013:1 19022:1 19039:1 19040:1 19057:1 19085:1 19101:3 19112:1 19117:1 19119:1 19125:1 19128:1 19132:1 19133:1 19140:1 19183:3 19189:2 19190:2 19201:2 19215:2 19243:3 19245:1 19254:1 19261:1 19279:2 19284:1 19293:1 19311:2 19331:3 19334:1 19344:1 19349:2 19359:3 19385:2 19391:1 19394:1 19412:1 19421:1 19439:1 19443:2 19447:1 19450:1 19459:2 19478:1 19484:2 19506:2 19515:1 19516:1 19521:1 19522:1 19523:2 19537:2 19545:1 19547:1 19552:1 19564:1 19577:1 19591:1 19614:1 19620:1 19627:1 19629:1 19633:2 19636:2 19661:1 19697:1 19757:1 19770:1 19773:1 19782:1 19785:2 19790:1 19791:1 19798:1 19806:1 19812:1 19821:2 19823:1 19830:1 19873:1 19880:1 19896:1 19919:1 19921:1 19927:1 19931:2 19934:1 19954:1 19959:2 19960:1 19965:1 19976:1 19978:2 19989:1 19998:4 20001:1 20017:2 20028:1 20041:1 20049:1 20061:1 20063:1 20066:1 20071:1 20075:1 20125:1 20134:1 20138:2 20141:1 20149:1 20151:3 20154:1 20156:1 20166:2 20177:1 20179:1 20205:1 20206:1 20210:2 20212:1 20240:1 20252:1 20316:3 20321:1 20322:1 20325:2 20326:1 20328:1 20334:1 20337:1 20341:2 20352:3 20368:1 20381:1 20396:2 20400:1 20403:1 20417:1 20444:1 20481:1 20492:1 20503:1 20524:1 20532:1 20546:1 20553:1 20556:1 20567:1 20572:3 20587:1 20588:2 20592:2 20593:1 20611:1 20628:2 20632:1 20633:1 20634:4 20647:1 20655:1 20656:4 20662:1 20666:1 20676:1 20692:1 20693:1 20719:7 20720:1 20733:1 20754:1 20772:1 20779:3 20780:1 20787:1 20796:1 20812:1 20842:1 20844:2 20864:1 20879:1 20887:3 20889:1 20900:3 20905:2 20919:1 20924:1 20938:1 20940:2 20962:1 20963:1 20968:2 20976:1 20991:1 21005:1 21029:1 21062:1 21074:1 21079:1 21100:1 21115:2 21116:1 21130:1 21134:2 21138:1 21140:2 21150:3 21163:2 21176:1 21203:1 21218:2 21220:1 21234:1 21235:1 21263:1 21266:1 21284:1 21303:2 21306:1 21309:1 21311:1 21340:3 21370:2 21434:1 21453:3 21456:1 21462:5 21469:2 21479:1 21484:1 21488:3 21498:1 21500:1 21501:1 21502:1 21512:1 21520:3 21551:1 21559:1 21586:1 21599:1 21613:2 21635:1 21642:1 21647:1 21650:1 21674:2 21686:1 21694:1 21695:1 21730:1 21733:2 21743:1 21755:1 21772:3 21773:1 21777:1 21792:1 21794:1 21800:1 21845:1 21846:4 21848:1 21861:1 21862:2 21863:1 21864:1 21865:1 21869:1 21916:1 21917:1 21930:1 21981:1 21991:1 22014:1 22019:1 22053:1 22068:2 22074:1 22076:1 22078:1 22088:1 22125:1 22130:1 22136:1 22176:1 22196:1 22218:1 22230:2 22238:1 22263:1 22282:2 22296:2 22304:1 22320:1 22328:5 22345:1 22352:1 22358:1 22380:1 22382:1 22389:1 22391:2 22400:1 22402:1 22403:1 22407:1 22412:1 22435:3 22457:2 22459:1 22467:1 22469:1 22478:1 22522:1 22530:1 22531:1 22550:1 22553:1 22559:1 22564:3 22575:1 22578:2 22612:4 22626:1 22627:1 22629:1 22632:1 22640:1 22642:1 22646:1 22662:7 22675:1 22685:1 22688:1 22693:1 22695:1 22710:1 22713:1 22718:3 22726:1 22739:1 22755:1 22827:1 22856:1 22862:1 22868:1 22876:1 22880:1 22886:2 22895:1 22901:1 22903:1 22907:1 22923:1 22943:1 22946:1 22953:1 22974:2 22987:1 22992:1 22993:1 23012:2 23018:1 23024:2 23041:1 23077:7 23078:1 23101:1 23105:1 23106:1 23115:1 23130:1 23139:1 23144:1 23158:2 23161:1 23169:1 23170:1 23181:1 23188:1 23197:1 23217:1 23222:1 23261:1 23291:5 23292:1 23307:1 23316:1 23373:1 23375:3 23378:1 23404:2 23406:1 23426:1 23432:1 23436:1 23440:1 23446:1 23481:1 23497:1 23503:2 23505:1 23514:2 23528:1 23532:1 23557:1 23601:1 23609:1 23617:1 23631:1 23635:2 23639:2 23652:1 23664:1 23666:1 23695:3 23700:1 23704:1 23721:3 23739:2 23774:1 23775:1 23784:1 23786:1 23803:1 23826:1 23845:2 23889:1 23895:1 23909:1 23923:1 23932:1 23943:1 23999:2 24009:1 24024:1 24025:1 24027:1 24055:1 24061:1 24092:2 24101:1 24104:1 24126:1 24129:1 24138:1 24140:1 24149:2 24161:1 24165:9 24166:2 24177:1 24185:1 24195:1 24220:2 24231:1 24233:1 24251:1 24256:1 24263:1 24272:3 24275:3 24280:3 24285:2 24286:4 24289:1 24310:1 24350:1 24357:1 24372:1 24377:1 24400:1 24408:1 24416:1 24420:1 24424:1 24425:1 24427:2 24443:6 24444:1 24446:1 24471:1 24472:1 24479:1 24500:1 24502:1 24521:1 24553:1 24570:1 24592:1 24596:1 24600:1 24622:1 24643:1 24653:1 24655:1 24658:5 24675:1 24676:1 24710:1 24713:1 24715:1 24720:1 24721:1 24733:1 24737:1 24740:1 24747:1 24773:1 24774:2 24784:1 24792:2 24809:1 24830:1 24839:1 24844:2 24870:1 24889:1 24917:1 24928:1 24938:1 24944:3 24949:1 24953:1 24954:1 24966:1 24972:1 24976:2 24994:1 25005:2 25019:1 25022:1 25026:1 25031:2 25032:1 25059:1 25070:1 25073:2 25081:1 25110:1 25125:3 25129:1 25132:1 25145:1 25185:2 25191:1 25195:1 25200:1 25207:1 25213:1 25214:1 25224:1 25250:1 25251:1 25254:1 25255:1 25256:1 25260:1 25267:2 25277:1 25281:1 25291:1 25295:1 25299:1 25302:1 25329:1 25330:1 25346:1 25370:1 25412:1 25454:1 25479:1 25487:1 25491:2 25532:1 25538:1 25560:1 25572:1 25600:1 25630:1 25644:1 25693:1 25702:2 25717:2 25739:1 25775:1 25777:1 25791:1 25793:3 25804:2 25808:1 25809:1 25820:1 25822:1 25828:1 25829:4 25841:1 25856:1 25861:2 25863:2 25869:1 25871:4 25875:1 25880:1 25881:1 25888:1 25892:3 25905:3 25909:1 25913:1 25941:1 25964:1 25965:1 26005:1 26012:2 26015:4 26022:3 26028:1 26054:4 26067:1 26080:1 26081:1 26098:1 26123:1 26163:1 26174:1 26194:1 26213:1 26214:1 26221:1 26222:1 26229:1 26230:2 26236:1 26244:1 26265:3 26301:1 26305:1 26306:5 26315:1 26340:1 26368:3 26452:1 26527:1 26538:1 26539:1 26544:2 26547:3 26553:1 26557:1 26558:1 26565:1 26580:1 26612:1 26655:3 26664:2 26690:2 26696:2 26710:1 26733:1 26745:1 26750:1 26751:1 26757:2 26759:1 26787:1 26790:2 26793:2 26810:1 26832:1 26843:1 26848:1 26855:1 26862:1 26879:1 26883:3 26889:1 26910:1 26920:1 26923:1 26940:1 26957:1 26961:2 26973:1 26978:1 26979:2 26986:2 26987:2 26988:1 26990:1 26996:1 27031:4
1 13:1 35:1 39:1 47:1 50:1 55:1 89:1 120:1 137:1 138:3 139:1 144:1 157:1 165:1 169:2 182:5 192:1 222:1 233:1 238:5 255:3 264:1 280:1 306:1 315:3 317:2 327:3 334:3 339:1 346:2 362:1 372:1 382:1 395:5 397:2 404:1 412:1 445:1 446:1 511:1 515:1 532:1 544:2 552:1 568:1 578:1 582:2 588:1 604:1 630:1 683:1 711:1 723:1 726:1 745:2 751:1 764:1 789:4 794:1 798:1 800:1 802:3 808:1 822:9 826:4 837:3 854:2 873:4 874:2 875:6 877:1 878:1 880:2 882:1 894:2 912:3 915:3 926:1 953:2 972:1 1002:1 1013:2 1017:1 1037:1 1108:3 1109:2 1116:1 1122:1 1125:1 1154:1 1158:1 1173:2 1187:1 1193:2 1195:1 1228:1 1244:1 1264:1 1266:1 1279:1 1292:1 1316:1 1324:1 1325:2 1346:1 1364:1 1371:1 1379:1 1392:1 1397:1 1402:1 1405:1 1419:1 1437:1 1448:4 1454:5 1456:2 1465:1 1469:1 1490:1 1501:1 1510:1 1514:1 1523:1 1526:1 1530:2 1542:2 1553:1 1555:1 1559:1 1568:1 1571:1 1580:1 1584:1 1592:1 1596:1 1600:1 1606:1 1615:1 1619:1 1634:2 1635:1 1653:4 1663:1 1675:1 1681:1 1684:2 1687:1 1688:1 1696:5 1723:3 1724:2 1737:1 1757:1 1759:3 1764:1 1794:1 1801:1 1807:1 1809:1 1822:2 1866:1 1870:2 1875:1 1881:1 1892:2 1897:1 1899:1 1904:1 1907:2 1925:1 1931:1 1956:1 1959:1 1976:1 1978:1 1984:1 1988:2 1990:1 2004:1 2027:7 2037:1 2046:1 2051:1 2071:1 2078:1 2092:2 2103:3 2107:1 2120:1 2123:1 2126:2 2142:2 2143:1 2147:2 2148:3 2150:1 2154:1 2157:2 2158:2 2159:1 2161:2 2167:4 2170:3 2172:5 2173:4 2185:1 2196:1 2219:1 2224:1 2226:3 2229:1 2248:1 2257:1 2274:1 2275:1 2277:1 2285:1 2293:1 2294:1 2296:1 2328:1 2333:1 2342:1 2350:1 2351:1 2360:1 2367:1 2377:3 2388:1 2390:1 2405:1 2413:1 2417:1 2432:2 2435:2 2437:1 2439:5 2443:1 2444:1 2445:1 2454:1 2457:1 2478:4 2479:1 2483:1 2496:2 2503:1 2504:1 2505:1 2513:4 2520:1 2526:1 2529:5 2535:4 2537:1 2545:1 2547:1 2555:1 2557:1 2562:3 2563:2 2574:1 2589:1 2591:2 2597:1 2638:1 2640:2 2641:2 2654:2 2659:1 2662:3 2667:1 2671:1 2691:1 2716:1 2738:2 2745:1 2749:1 2752:9 2773:2 2774:1 2776:1 2777:1 2779:1 2786:1 2791:2 2811:9 2836:2 2839:2 2848:1 2856:1 2898:1 2907:1 2917:1 2918:4 2934:2 2939:1 2948:1 2989:1 2993:1 2998:1 3006:2 3014:1 3027:2 3042:2 3057:1 3089:1 3090:1 3128:1 3129:1 3134:1 3149:6 3193:1 3263:1 3277:1 3283:1 3286:1 3291:1 3328:1 3358:2 3362:1 3384:10 3399:1 3403:2 3405:1 3406:1 3425:1 3429:1 3479:1 3480:1 3484:1 3489:2 3493:1 3501:1 3548:1 3549:1 3552:1 3554:1 3559:2 3562:1 3565:1 3569:1 3576:1 3581:1 3596:1 3599:1 3603:2 3608:1 3610:1 3626:2 3628:1 3631:1 3648:2 3663:1 3664:1 3668:2 3670:1 3673:1 3678:2 3687:2 3700:1 3716:2 3734:2 3756:1 3765:3 3766:3 3772:1 3808:1 3810:2 3813:1 3818:1 3837:1 3839:2 3864:1 3866:1 3875:1 3891:1 3910:1 3924:1 3932:1 3937:2 3941:1 3944:1 3950:1 3954:2 3977:1 3981:1 3992:1 4008:1 4025:1 4027:1 4045:7 4075:2 4081:1 4090:1 4101:1 4104:1 4114:2 4127:2 4133:1 4149:1 4152:1 4156:2 4177:2 4194:1 4202:1 4203:1 4225:2 4246:1 4249:1 4252:1 4256:1 4257:2 4267:1 4276:1 4304:1 4327:1 4331:1 4355:3 4363:2 4371:1 4377:2 4380:1 4397:2 4420:1 4437:1 4440:1 4443:2 4456:3 4459:1 4468:1 4469:2 4475:1 4523:1 4565:8 4567:1 4574:1 4576:1 4586:1 4601:1 4613:1 4623:1 4664:1 4684:1 4685:4 4687:4 4688:2 4690:1 4693:1 4695:1 4696:1 4698:1 4701:1 4703:4 4704:3 4706:1 4708:2 4709:3 4716:3 4721:1 4764:1 4776:1 4789:2 4796:1 4820:1 4891:1 4903:1 4930:1 4973:1 4977:1 5002:2 5008:1 5018:1 5061:1 5066:2 5088:2 5101:1 5121:1 5140:1 5157:2 5163:1 5171:1 5180:1 5188:1 5197:1 5220:1 5230:1 5252:1 5284:1 5287:1 5292:1 5298:2 5302:1 5313:3 5314:1 5316:2 5317:1 5320:1 5321:1 5336:1 5337:1 5369:3 5379:1 5394:5 5403:1 5406:2 5468:1 5483:1 5485:1 5503:1 5509:1 5516:1 5522:1 5538:1 5549:1 5562:1 5568:1 5569:1 5576:2 5590:2 5594:1 5610:3 5612:1 5613:1 5619:1 5620:1 5629:1 5636:1 5673:1 5680:1 5688:1 5692:1 5693:1 5696:9 5715:1 5735:2 5761:1 5772:1 5787:2 5797:1 5812:5 5817:1 5824:1 5869:1 5872:1 5890:1 5897:1 5901:1 5905:1 5906:1 5911:1 5912:1 5915:1 5923:3 5924:2 5958:1 5997:1 6010:1 6046:1 6051:4 6052:2 6063:1 6106:1 6115:1 6124:1 6133:1 6148:1 6154:1 6177:1 6191:2 6199:2 6213:1 6222:1 6270:1 6292:1 6295:1 6298:1 6301:1 6316:7 6323:1 6327:1 6329:1 6336:1 6338:1 6344:1 6355:2 6378:1 6389:1 6424:1 6426:2 6442:1 6465:1 6476:1 6479:1 6483:2 6491:1 6507:1 6525:1 6529:1 6530:1 6537:1 6545:1 6546:1 6553:1 6563:6 6569:2 6595:1 6596:1 6600:1 6606:1 6609:1 6610:2 6623:3 6624:1 6626:1 6631:4 6634:1 6637:1 6657:1 6658:1 6670:1 6678:1 6702:1 6707:2 6716:2 6724:1 6735:1 6752:1 6755:1 6765:1 6798:1 6812:1 6824:1 6871:1 6875:1 6879:1 6917:1 6931:1 6936:1 6940:1 6945:1 6951:3 6955:1 6971:4 6974:2 6988:1 6989:2 6998:1 7002:1 7012:1 7020:2 7028:1 7045:1 7051:1 7053:1 7066:1 7081:1 7114:1 7120:1 7138:2 7153:3 7154:6 7165:1 7170:1 7173:3 7176:2 7178:2 7183:1 7198:2 7199:2 7200:1 7213:32 7214:1 7220:1 7222:1 7228:1 7229:5 7231:3 7236:2 7270:1 7276:1 7278:1 7287:1 7297:1 7301:2 7302:2 7307:1 7309:1 7320:1 7331:1 7358:1 7360:1 7380:2 7388:1 7392:1 7410:1 7440:1 7451:1 7453:1 7454:3 7483:1 7490:1 7501:1 7559:1 7591:1 7600:1 7604:1 7608:1 7628:1 7631:1 7643:1 7654:1 7663:1 7677:1 7700:17 7706:1 7724:3 7726:1 7729:1 7731:2 7732:1 7773:2 7776:1 7777:1 7781:1 7810:1 7821:2 7825:2 7827:1 7830:1 7844:1 7854:1 7855:4 7860:2 7868:1 7894:2 7896:1 7918:1 7920:1 7930:1 7957:1 7958:1 7966:1 7969:1 8028:1 8033:1 8034:1 8038:1 8039:1 8041:1 8061:1 8076:4 8087:1 8090:3 8109:1 8115:1 8122:1 8127:1 8145:1 8146:1 8162:1 8191:1 8196:1 8233:1 8234:1 8240:1 8244:1 8271:1 8272:1 8285:1 8293:1 8316:1 8319:1 8320:1 8324:3 8347:2 8353:1 8360:2 8361:1 8370:1 8377:1 8394:1 8395:1 8407:1 8415:3 8416:1 8423:1 8425:1 8429:1 8436:1 8455:3 8477:1 8505:3 8506:4 8516:2 8551:1 8561:1 8566:1 8570:2 8589:1 8596:1 8603:1 8605:1 8607:1 8609:2 8629:1 8661:1 8672:1 8681:2 8683:1 8689:1 8692:4 8715:1 8734:4 8770:1 8771:1 8795:1 8802:1 8807:1 8823:2 8835:1 8852:1 8858:1 8865:1 8888:1 8901:1 8905:1 8913:1 8919:6 8924:1 8956:2 8975:1 8981:1 9005:1 9024:1 9028:1 9031:1 9032:2 9034:1 9061:1 9066:1 9096:1 9099:1 9107:1 9142:2 9163:1 9173:2 9186:1 9200:1 9201:1 9210:1 9242:1 9243:1 9248:1 9249:1 9266:1 9289:1 9294:1 9296:1 9301:5 9318:3 9325:3 9327:1 9354:2 9371:1 9372:1 9396:1 9398:1 9410:1 9415:2 9427:1 9434:1 9444:1 9449:3 9453:1 9481:1 9485:1 9490:9 9492:1 9493:1 9497:2 9519:1 9520:1 9540:1 9587:1 9588:2 9590:1 9597:1 9622:1 9628:1 9643:1 9644:1 9646:1 9649:1 9651:3 9661:1 9663:1 9665:2 9702:1 9715:4 9720:1 9722:1 9723:1 9729:1 9732:1 9739:1 9742:1 9747:1 9755:4 9769:1 9771:1 9787:1 9803:1 9810:1 9819:1 9823:2 9837:1 9846:1 9864:1 9866:2 9877:1 9881:1 9886:4 9889:2 9899:1 9900:3 9910:1 9920:1 9926:1 9943:2 9953:3 9954:1 9964:1 9982:1 9983:1 9991:3 9995:1 10013:1 10026:1 10035:3 10047:1 10057:4 10071:1 10080:1 10092:1 10093:1 10106:2 10140:1 10180:1 10191:1 10201:1 10206:1 10224:1 10225:1 10239:1 10240:2 10242:1 10246:2 10252:1 10261:1 10264:5 10265:5 10268:1 10276:1 10282:2 10283:2 10288:1 10289:3 10293:1 10310:2 10321:1 10336:2 10345:1 10372:1 10373:1 10376:1 10406:1 10411:1 10424:1 10436:1 10440:1 10466:1 10515:1 10518:1 10532:1 10556:1 10586:1 10592:1 10611:1 10614:1 10617:1 10627:1 10630:2 10632:1 10633:1 10635:1 10644:2 10646:1 10648:2 10657:1 10663:2 10667:1 10678:1 10693:9 10694:1 10696:1 10707:1 10718:1 10734:3 10742:1 10746:2 10756:1 10759:1 10788:2 10799:2 10803:1 10813:1 10818:2 10831:1 10847:1 10859:1 10863:1 10890:1 10906:1 10932:3 10934:1 10937:1 10950:1 10951:2 10956:1 10957:1 10960:1 10962:1 10968:1 10969:1 10977:1 10988:1 10991:1 10992:1 11006:3 11009:2 11031:1 11055:1 11073:1 11118:1 11135:1 11141:1 11166:5 11173:1 11184:1 11188:1 11201:1 11206:1 11214:1 11220:1 11227:1 11243:2 11263:1 11283:1 11301:1 11306:1 11314:1 11321:1 11327:1 11365:1 11372:1 11380:4 11381:1 11382:1 11394:1 11406:2 11412:1 11415:1 11418:1 11424:1 11476:1 11478:1 11502:1 11506:1 11520:1 11542:1 11547:1 11557:1 11635:1 11638:3 11662:1 11695:1 11705:1 11718:1 11720:2 11721:1 11736:2 11745:1 11758:1 11774:1 11824:1 11831:1 11839:1 11847:1 11859:1 11882:7 11886:1 11899:1 11904:1 11923:1 11928:1 11929:1 11936:2 11943:1 11964:1 11980:2 11983:1 11989:1 12016:1 12039:1 12045:1 12081:1 12090:1 12091:2 12100:1 12110:1 12134:1 12151:3 12161:1 12208:1 12231:1 12252:1 12254:2 12257:4 12269:1 12274:1 12290:1 12306:3 12323:1 12325:2 12346:1 12351:2 12352:1 12385:1 12387:1 12389:1 12399:4 12400:1 12410:2 12413:1 12436:1 12437:1 12446:1 12452:1 12463:10 12469:1 12506:2 12508:1 12515:1 12533:1 12544:1 12547:1 12557:1 12559:1 12590:3 12613:1 12616:5 12633:1 12642:1 12668:2 12685:1 12692:1 12694:1 12703:1 12705:1 12707:1 12714:1 12721:1 12728:3 12729:1 12732:1 12734:1 12736:1 12737:1 12741:6 12742:1 12760:1 12763:1 12765:1 12787:1 12814:1 12831:1 12842:1 12887:2 12926:1 12929:1 12932:1 12939:1 12941:1 12946:1 12960:1 12978:1 12986:1 13005:7 13025:2 13032:1 13041:1 13064:1 13085:1 13103:1 13131:1 13161:1 13180:1 13188:1 13197:1 13211:1 13237:1 13245:2 13261:3 13277:1 13309:1 13320:1 13380:1 13383:2 13384:2 13391:1 13404:1 13406:1 13410:2 13442:1 13452:2 13470:1 13480:1 13499:1 13524:2 13548:1 13554:1 13556:1 13563:2 13567:1 13578:3 13585:2 13630:1 13632:2 13637:2 13641:1 13679:1 13680:1 13690:1 13713:1 13720:1 13731:1 13756:3 13768:1 13771:2 13804:1 13807:1 13850:1 13891:2 13892:2 13895:1 13902:1 13912:1 13932:1 13977:1 13979:1 13984:1 13997:1 13998:1 14032:1 14087:1 14094:1 14115:1 14155:1 14182:1 14204:1 14211:1 14212:1 14213:1 14226:1 14240:1 14245:2 14248:1 14270:1 14274:1 14295:2 14311:1 14315:1 14318:1 14345:1 14362:1 14387:1 14391:1 14397:2 14409:1 14419:1 14424:2 14435:1 14460:1 14484:1 14486:1 14552:1 14553:1 14564:2 14575:1 14579:3 14584:1 14586:1 14593:1 14605:1 14606:1 14609:1 14612:1 14639:1 14658:2 14666:1 14703:2 14719:2 14726:1 14737:1 14739:3 14753:1 14764:2 14819:1 14847:1 14853:1 14857:9 14872:1 14876:3 14900:1 14904:1 14943:1 14958:1 14962:2 14972:2 14976:1 14990:2 14994:1 15008:1 15029:1 15030:1 15046:1 15052:1 15062:1 15064:1 15068:1 15074:2 15117:1 15122:1 15128:3 15130:2 15131:2 15132:3 15133:1 15135:2 15137:1 15139:1 15140:3 15143:1 15144:1 15147:1 15151:1 15161:1 15204:1 15206:2 15232:1 15251:1 15255:1 15256:1 15279:1 15288:2 15289:1 15307:1 15328:1 15336:1 15370:1 15418:1 15430:1 15434:1 15445:1 15446:2 15455:1 15456:1 15466:1 15470:3 15478:2 15487:1 15495:1 15496:1 15501:2 15509:1 15513:1 15522:2 15534:1 15544:1 15585:5 15588:1 15613:3 15618:1 15671:1 15672:1 15678:2 15689:1 15695:2 15705:1 15706:1 15720:1 15722:2 15756:2 15778:4 15802:1 15811:1 15823:1 15849:1 15878:1 15879:1 15895:1 15898:1 15936:2 15946:1 15950:1 15973:1 15980:1 15987:2 15992:1 16022:1 16034:2 16039:1 16055:1 16072:1 16116:1 16119:1 16159:1 16163:1 16183:1 16187:1 16202:1 16212:1 16218:1 16224:1 16232:3 16238:2 16240:2 16244:1 16250:3 16284:1 16288:1 16293:1 16294:1 16298:1 16305:1 16315:1 16316:1 16331:1 16368:1 16369:1 16389:2 16403:1 16416:2 16427:1 16428:1 16434:1 16435:1 16451:1 16453:1 16482:1 16483:1 16484:1 16508:1 16513:1 16518:2 16557:1 16594:2 16602:1 16616:1 16684:1 16709:1 16710:1 16720:1 16740:2 16814:2 16815:1 16823:1 16833:1 16844:1 16862:1 16879:1 16907:1 16934:1 16937:1 16951:1 16981:1 16999:5 17050:1 17071:1 17087:9 17097:2 17099:1 17103:3 17128:1 17142:1 17156:1 17184:4 17192:2 17204:1 17218:1 17243:1 17251:2 17263:2 17276:1599 17285:1 17289:1 17302:1 17347:1 17351:1 17353:1 17374:2 17421:1 17465:1 17467:1 17469:1 17472:1 17474:2 17475:2 17495:1 17515:1 17526:1 17551:1 17552:1 17592:1 17595:1 17599:2 17654:1 17684:2 17697:1 17699:1 17707:2 17717:1 17737:1 17748:2 17754:1 17765:1 17787:1 17791:2 17795:1 17803:1 17809:1 17817:1 17836:2 17837:2 17855:2 17859:1 17862:1 17870:2 17876:1 17895:2 17896:1 17904:1 17913:1 17917:2 17927:3 17951:1 17966:1 17970:1 17971:1 17992:2 17999:1 18011:1 18043:1 18047:3 18052:1 18054:2 18062:1 18070:1 18075:4 18085:1 18090:1 18101:1 18104:1 18115:2 18116:1 18123:1 18141:1 18156:1 18159:1 18163:1 18178:1 18183:1 18187:1 18193:1 18194:1 18228:1 18233:1 18234:1 18240:1 18271:1 18282:1 18294:1 18295:2 18297:1 18301:1 18303:1 18308:1 18323:1 18326:1 18332:1 18339:1 18343:1 18349:1 18371:1 18374:1 18381:1 18382:1 18420:1 18422:2 18427:1 18428:2 18430:1 18474:1 18492:1 18495:1 18499:1 18501:1 18503:1 18504:1 18508:1 18519:1 18521:1 18529:2 18534:2 18536:1 18538:1 18548:1 18556:4 18564:2 18580:1 18582:1 18598:1 18603:1 18604:3 18628:1 18638:1 18639:1 18645:1 18653:1 18658:1 18665:1 18690:1 18691:1 18707:1 18716:3 18718:9 18719:2 18726:1 18735:3 18738:1 18756:1 18792:1 18805:1 18817:1 18821:1 18835:1 18838:1 18847:1 18848:1 18868:1 18875:1 18905:3 18919:1 18933:1 18937:2 18941:1 18949:1 18960:1 18962:1 18969:1 18996:6 19013:1 19022:1 19039:1 19040:1 19057:1 19085:2 19101:3 19112:1 19117:1 19119:1 19125:1 19128:1 19132:1 19133:1 19140:1 19175:1 19183:3 19189:2 19190:2 19201:2 19215:2 19243:3 19245:1 19254:1 19261:1 19279:2 19284:1 19293:1 19311:2 19331:3 19334:1 19344:1 19349:2 19359:3 19385:2 19391:1 19394:1 19412:1 19415:1 19421:1 19439:2 19443:2 19447:1 19450:1 19459:2 19478:1 19484:2 19506:2 19515:1 19516:1 19521:1 19522:1 19523:2 19537:2 19545:1 19547:1 19552:1 19558:1 19564:1 19577:1 19591:1 19614:1 19620:1 19627:1 19629:1 19633:2 19636:2 19661:1 19697:1 19757:1 19770:1 19773:1 19782:1 19785:2 19790:1 19791:1 19798:1 19806:1 19812:1 19821:2 19823:1 19830:1 19866:1 19873:1 19880:1 19896:1 19919:1 19921:1 19927:1 19931:2 19934:1 19936:1 19954:1 19959:2 19960:1 19965:1 19976:1 19978:2 19989:1 19998:5 20001:1 20017:2 20028:1 20041:1 20049:1 20061:1 20063:1 20066:1 20067:1 20071:1 20075:1 20125:1 20134:1 20138:2 20141:1 20149:1 20151:3 20154:1 20156:1 20166:2 20177:1 20179:1 20205:1 20206:1 20210:2 20212:1 20240:1 20252:1 20316:3 20321:1 20322:1 20325:2 20326:2 20328:1 20334:1 20337:1 20341:2 20352:4 20362:1 20368:1 20381:1 20396:2 20400:1 20403:1 20417:1 20444:1 20481:1 20492:1 20503:1 20524:1 20532:1 20546:1 20553:1 20556:1 20567:1 20570:1 20572:3 20587:1 20588:2 20592:2 20593:1 20611:1 20628:2 20632:1 20633:1 20634:4 20647:1 20655:1 20656:4 20662:1 20666:1 20676:1 20692:1 20693:1 20719:7 20720:1 20733:1 20754:1 20772:1 20779:3 20780:1 20787:1 20796:1 20812:1 20842:1 20844:2 20864:1 20879:1 20887:3 20889:1 20900:3 20905:2 20914:1 20919:1 20924:1 20938:1 20940:2 20955:1 20962:1 20963:1 20968:2 20976:1 20991:1 21005:1 21026:1 21029:1 21062:1 21073:1 21074:1 21079:1 21100:1 21115:3 21116:1 21130:1 21134:2 21138:1 21140:2 21150:3 21163:2 21176:1 21203:1 21215:1 21216:1 21218:2 21220:1 21234:1 21235:1 21263:1 21266:1 21282:1 21284:1 21303:2 21306:1 21309:1 21311:1 21340:3 21370:3 21434:1 21453:3 21456:1 21462:5 21469:2 21479:1 21484:1 21488:3 21498:2 21500:1 21501:1 21502:1 21512:1 21520:3 21551:1 21559:1 21586:1 21599:1 21613:2 21635:1 21642:1 21647:1 21650:1 21674:2 21682:1 21686:1 21694:1 21695:1 21703:1 21709:1 21730:2 21733:2 21743:1 21755:1 21772:3 21773:1 21777:1 21792:1 21794:1 21800:1 21845:1 21846:4 21848:1 21861:1 21862:2 21863:1 21864:1 21865:1 21869:1 21898:1 21916:1 21917:1 21930:1 21981:1 21991:1 22014:1 22019:1 22053:1 22068:2 22074:1 22076:1 22078:1 22088:1 22125:1 22130:1 22136:1 22176:1 22196:1 22218:1 22230:2 22238:1 22263:1 22282:2 22296:2 22304:1 22320:1 22328:5 22345:1 22352:1 22358:1 22380:1 22382:1 22389:1 22391:2 22400:1 22402:1 22403:1 22407:1 22412:1 22435:3 22457:2 22459:1 22467:1 22469:1 22478:1 22522:1 22530:1 22531:1 22550:1 22553:1 22559:1 22564:3 22575:1 22578:2 22612:4 22626:1 22627:1 22629:1 22632:1 22640:1 22642:1 22646:1 22662:8 22675:1 22685:1 22688:1 22693:1 22695:1 22710:1 22713:1 22718:3 22726:1 22739:1 22755:1 22827:1 22856:1 22862:1 22868:1 22876:1 22880:2 22886:2 22895:1 22901:1 22903:1 22907:1 22923:1 22943:1 22946:1 22953:1 22974:2 22987:2 22992:1 22993:1 23012:2 23018:1 23024:2 23041:1 23077:8 23078:1 23101:1 23105:1 23106:1 23115:1 23130:1 23139:1 23144:1 23158:2 23161:1 23169:1 23170:1 23181:1 23188:1 23197:1 23202:1 23217:1 23222:1 23261:1 23291:5 23292:1 23307:1 23316:1 23373:1 23375:3 23378:1 23404:2 23406:1 23426:1 23432:1 23436:1 23440:1 23446:1 23481:1 23497:1 23503:2 23505:1 23514:2 23528:1 23532:1 23557:1 23601:1 23609:1 23617:1 23631:1 23635:2 23639:3 23642:1 23652:1 23664:1 23666:1 23695:3 23700:1 23704:1 23721:3 23739:2 23774:1 23775:1 23784:1 23786:1 23803:1 23826:1 23845:2 23889:1 23895:1 23909:1 23923:1 23932:1 23943:1 23999:2 24009:1 24024:1 24025:1 24027:1 24055:1 24061:1 24092:2 24101:1 24104:1 24126:1 24129:1 24138:2 24140:1 24149:2 24161:1 24165:9 24166:2 24177:1 24185:1 24195:1 24220:2 24231:1 24233:1 24251:1 24256:1 24263:1 24272:3 24275:3 24280:3 24285:2 24286:4 24289:1 24310:1 24350:1 24357:1 24372:1 24377:1 24400:2 24408:1 24416:1 24420:1 24424:1 24425:1 24427:2 24443:6 24444:1 24446:1 24471:1 24472:1 24479:1 24500:1 24502:1 24521:1 24553:1 24570:1 24592:1 24596:1 24600:1 24622:1 24625:1 24643:1 24653:1 24655:1 24658:5 24675:1 24676:1 24710:1 24713:1 24715:1 24720:1 24721:1 24733:1 24737:1 24740:1 24747:1 24773:1 24774:2 24784:1 24792:3 24809:1 24830:1 24839:1 24844:2 24870:1 24889:1 24917:1 24928:1 24938:1 24944:3 24949:1 24953:1 24954:1 24966:1 24972:1 24976:2 24994:1 25005:2 25019:1 25022:1 25026:1 25031:2 25032:1 25059:1 25070:1 25073:2 25081:1 25109:1 25110:1 25125:3 25129:1 25132:2 25145:1 25185:2 25191:1 25195:1 25200:1 25207:1 25213:1 25214:1 25224:2 25250:1 25251:1 25254:1 25255:1 25256:1 25260:1 25267:2 25277:1 25281:1 25291:1 25295:1 25299:1 25302:1 25329:1 25330:1 25346:1 25370:1 25412:1 25454:1 25479:1 25487:1 25491:2 25532:1 25538:1 25560:1 25572:1 25600:2 25630:1 25644:1 25693:1 25698:1 25702:2 25717:2 25739:1 25775:1 25777:1 25791:1 25793:3 25804:2 25808:1 25809:1 25820:1 25822:1 25828:1 25829:4 25841:1 25856:1 25861:2 25863:2 25869:1 25871:4 25875:1 25880:1 25881:1 25888:1 25892:3 25905:3 25909:1 25913:1 25941:1 25964:1 25965:1 26005:1 26012:2 26015:4 26022:3 26028:1 26054:4 26067:1 26080:1 26081:1 26098:1 26123:1 26125:1 26163:1 26174:1 26194:1 26213:1 26214:1 26221:1 26222:1 26229:1 26230:2 26236:1 26244:1 26265:3 26301:1 26305:1 26306:5 26315:1 26340:1 26368:3 26452:1 26527:1 26538:1 26539:1 26544:2 26547:3 26553:1 26557:1 26558:1 26565:1 26580:1 26612:1 26655:3 26664:2 26690:2 26696:2 26710:1 26733:1 26745:1 26750:2 26751:1 26757:2 26759:1 26787:1 26790:2 26793:2 26806:1 26810:1 26832:1 26843:1 26848:1 26855:1 26862:1 26879:1 26883:3 26889:1 26910:1 26920:1 26923:1 26940:1 26957:1 26961:2 26973:1 26978:1 26979:2 26986:2 26987:2 26988:1 26990:1 26996:1 27031:4
1 13:1 35:1 39:1 47:1 50:1 55:1 89:1 120:1 137:1 138:3 139:1 144:1 157:1 165:1 169:2 182:5 192:1 222:1 233:1 238:6 255:3 264:1 280:1 306:1 315:3 317:2 327:3 334:3 339:1 346:2 362:1 372:1 382:1 395:5 397:2 404:1 412:1 445:1 446:1 500:1 511:1 515:1 532:1 544:2 552:1 568:1 578:1 582:2 588:1 604:1 630:1 665:1 683:1 711:1 723:1 726:1 745:2 751:1 764:1 789:5 794:1 798:1 800:1 802:3 808:1 822:9 826:4 837:3 854:2 872:1 873:4 874:2 875:6 877:1 878:1 880:2 882:1 894:2 912:3 915:3 926:1 953:2 958:1 972:1 1002:1 1013:2 1017:1 1037:1 1059:1 1061:1 1108:3 1109:2 1116:1 1122:1 1125:1 1154:1 1158:2 1173:2 1187:1 1193:2 1195:1 1228:1 1244:1 1264:1 1266:1 1269:1 1279:1 1292:1 1316:1 1324:1 1325:2 1346:1 1364:1 1371:2 1379:1 1392:1 1397:1 1402:1 1405:2 1419:1 1437:1 1448:4 1454:5 1456:2 1465:1 1469:1 1490:2 1501:1 1510:1 1514:1 1523:1 1526:1 1530:2 1542:2 1553:1 1555:1 1559:1 1568:1 1571:1 1580:1 1584:1 1587:1 1592:1 1596:1 1600:1 1606:1 1615:1 1619:1 1634:2 1635:1 1653:4 1663:1 1675:1 1681:1 1684:2 1687:1 1688:1 1696:5 1703:1 1723:3 1724:2 1737:1 1757:1 1759:3 1764:1 1794:1 1801:1 1807:1 1809:1 1822:2 1866:1 1870:2 1875:1 1881:1 1892:2 1897:1 1899:1 1904:1 1907:2 1925:1 1931:1 1956:1 1959:1 1976:1 1978:1 1984:1 1988:2 1990:1 2004:1 2027:8 2037:1 2046:1 2051:1 2053:1 2071:1 2078:1 2092:2 2103:3 2107:1 2119:1 2120:1 2123:1 2126:2 2142:2 2143:1 2147:2 2148:3 2150:1 2154:1 2157:2 2158:2 2159:1 2161:2 2167:4 2170:3 2172:5 2173:4 2185:1 2196:1 2219:1 2224:1 2226:3 2229:1 2248:1 2257:1 2274:1 2275:1 2277:1 2285:1 2293:1 2294:1 2296:1 2328:1 2333:1 2342:1 2350:1 2351:1 2360:1 2367:1 2377:3 2388:1 2390:1 2405:1 2413:1 2417:1 2432:2 2435:2 2437:1 2439:5 2443:1 2444:1 2445:1 2454:1 2457:1 2478:4 2479:1 2483:1 2496:2 2503:1 2504:1 2505:1 2513:6 2520:1 2526:1 2529:5 2535:4 2537:1 2545:1 2547:1 2555:1 2557:1 2562:3 2563:2 2574:1 2589:1 2591:2 2597:1 2638:1 2640:2 2641:2 2654:2 2659:1 2662:3 2667:2 2671:1 2691:1 2716:1 2738:2 2745:1 2749:1 2752:10 2773:2 2774:1 2776:1 2777:1 2779:1 2786:1 2791:2 2811:9 2813:1 2836:2 2839:2 2848:1 2856:1 2866:1 2893:1 2898:1 2907:1 2917:1 2918:4 2934:3 2939:1 2948:1 2970:1 2989:1 2993:1 2998:1 3006:2 3014:1 3027:2 3042:2 3057:1 3089:1 3090:1 3128:1 3129:2 3134:1 3149:6 3193:1 3225:2 3263:1 3264:1 3277:1 3283:1 3286:1 3291:1 3328:1 3343:1 3358:2 3362:1 3383:1 3384:10 3399:1 3403:2 3405:1 3406:1 3425:1 3429:1 3438:1 3477:1 3479:1 3480:1 3484:1 3489:3 3493:1 3501:1 3548:1 3549:1 3552:1 3554:1 3559:2 3562:1 3565:1 3569:1 3576:1 3581:1 3596:1 3599:1 3603:2 3608:1 3610:1 3626:2 3628:1 3631:1 3648:2 3663:1 3664:1 3668:4 3670:1 3673:1 3678:2 3687:2 3700:1 3715:1 3716:2 3732:1 3734:2 3738:1 3756:1 3765:3 3766:3 3772:2 3808:1 3810:2 3813:1 3818:1 3837:1 3839:2 3864:1 3866:2 3875:1 3891:1 3910:1 3924:1 3932:1 3937:2 3941:1 3944:1 3950:1 3954:2 3977:1 3981:1 3992:1 4008:1 4025:1 4027:1 4045:7 4075:3 4081:1 4090:1 4101:1 4104:1 4114:2 4127:2 4133:1 4149:1 4152:1 4156:2 4177:2 4194:1 4202:1 4203:1 4225:2 4246:1 4249:1 4252:1 4256:1 4257:2 4267:1 4276:1 4304:1 4314:1 4327:1 4331:1 4355:3 4363:2 4371:1 4377:2 4380:1 4397:2 4420:1 4437:1 4440:2 4443:2 4456:3 4459:1 4468:1 4469:2 4475:1 4523:1 4549:1 4565:8 4567:1 4574:1 4576:1 4586:1 4601:1 4613:1 4623:1 4664:1 4669:1 4684:1 4685:4 4687:4 4688:2 4690:1 4693:1 4695:1 4696:1 4698:1 4700:1 4701:1 4703:4 4704:3 4706:1 4708:2 4709:4 4716:3 4721:1 4764:1 4776:1 4789:2 4796:1 4820:1 4891:1 4903:1 4930:1 4973:1 4977:1 5002:2 5008:2 5018:1 5061:1 5066:2 5088:3 5101:1 5121:1 5140:1 5146:1 5157:2 5163:1 5171:1 5180:1 5188:1 5197:1 5220:1 5230:1 5252:1 5284:1 5287:1 5292:1 5298:2 5302:1 5313:4 5314:1 5316:2 5317:1 5320:1 5321:1 5336:1 5337:1 5369:3 5379:1 5380:1 5394:5 5403:1 5406:2 5468:1 5483:1 5485:1 5503:1 5509:1 5516:1 5522:1 5538:1 5549:1 5562:1 5568:1 5569:1 5576:2 5590:2 5594:1 5610:5 5612:1 5613:1 5619:1 5620:1 5629:1 5636:1 5668:1 5673:1 5680:1 5688:1 5692:1 5693:1 5696:9 5715:1 5735:2 5761:1 5772:1 5787:2 5797:1 5812:5 5817:1 5824:1 5869:1 5872:1 5890:1 5897:1 5901:1 5905:2 5906:2 5911:1 5912:1 5915:1 5921:2 5923:3 5924:2 5958:1 5997:1 6010:1 6046:1 6051:4 6052:2 6063:1 6106:1 6115:1 6124:1 6133:1 6148:1 6154:1 6177:1 6191:2 6199:2 6208:1 6213:1 6222:1 6270:1 6292:1 6295:1 6298:1 6301:1 6316:7 6323:2 6327:1 6329:1 6336:1 6338:1 6344:1 6355:2 6378:1 6389:1 6424:1 6426:2 6442:1 6465:1 6476:1 6479:1 6483:2 6491:1 6507:1 6525:1 6529:1 6530:1 6537:1 6545:1 6546:1 6553:1 6563:6 6569:2 6595:1 6596:1 6600:1 6606:1 6609:1 6610:2 6623:3 6624:1 6626:1 6631:4 6634:1 6637:1 6657:1 6658:1 6670:1 6678:1 6702:1 6707:2 6716:2 6724:1 6735:1 6752:1 6755:1 6765:1 6798:1 6812:1 6824:1 6871:1 6875:1 6879:1 6917:1 6931:1 6936:1 6940:1 6945:1 6951:3 6955:1 6971:4 6974:2 6988:1 6989:2 6998:1 7002:1 7012:1 7020:2 7028:1 7045:1 7051:1 7053:1 7066:1 7081:1 7114:1 7120:1 7138:2 7153:3 7154:6 7165:1 7170:1 7173:3 7176:2 7178:2 7183:1 7198:2 7199:2 7200:1 7213:33 7214:1 7220:1 7222:1 7228:1 7229:5 7231:3 7236:2 7270:1 7276:1 7278:1 7287:1 7297:1 7301:2 7302:2 7307:1 7309:1 7320:1 7331:1 7358:1 7360:1 7380:2 7388:1 7392:1 7410:1 7440:1 7451:1 7453:1 7454:3 7483:1 7490:1 7501:2 7559:1 7591:1 7600:1 7604:1 7608:1 7628:1 7631:1 7639:1 7643:1 7654:1 7663:1 7677:1 7700:18 7706:1 7724:3 7726:1 7729:1 7731:2 7732:1 7773:2 7776:1 7777:1 7781:1 7810:1 7821:2 7825:2 7827:1 7830:1 7844:1 7854:1 7855:4 7860:2 7868:1 7894:2 7896:1 7902:1 7918:1 7920:1 7930:1 7957:1 7958:1 7966:1 7969:1 8028:1 8033:1 8034:1 8038:1 8039:1 8041:1 8061:1 8076:4 8087:1 8090:3 8109:1 8115:1 8122:1 8127:2 8130:1 8145:1 8146:1 8162:2 8191:1 8196:1 8233:1 8234:1 8240:1 8244:1 8271:1 8272:1 8285:1 8293:1 8316:1 8319:1 8320:1 8324:3 8347:2 8353:1 8360:2 8361:1 8370:1 8377:1 8394:1 8395:1 8407:1 8415:3 8416:1 8417:1 8423:1 8425:1 8429:1 8436:1 8455:4 8477:1 8505:3 8506:4 8516:2 8551:1 8561:1 8566:1 8570:2 8589:1 8596:1 8603:1 8605:1 8607:1 8609:2 8629:1 8661:1 8672:1 8681:2 8683:1 8689:1 8692:4 8715:2 8734:4 8770:1 8771:1 8795:1 8802:1 8807:1 8823:2 8835:1 8852:1 8858:1 8865:1 8888:1 8901:1 8905:1 8913:1 8919:6 8924:1 8956:2 8975:1 8981:1 9005:1 9024:1 9028:1 9031:1 9032:2 9034:2 9061:1 9066:1 9096:1 9099:1 9107:1 9142:2 9163:1 9173:2 9186:1 9200:1 9201:1 9210:1 9242:1 9243:1 9248:1 9249:1 9262:1 9266:1 9289:1 9294:1 9296:1 9301:5 9318:3 9325:3 9327:1 9354:2 9371:1 9372:1 9396:1 9398:1 9410:1 9415:2 9427:1 9434:1 9444:1 9449:3 9453:1 9481:1 9485:1 9490:9 9492:1 9493:1 9497:2 9501:1 9519:1 9520:1 9535:1 9540:1 9587:1 9588:2 9590:1 9597:1 9622:1 9628:1 9643:1 9644:1 9646:1 9649:1 9651:3 9661:1 9663:1 9665:2 9702:1 9715:4 9720:1 9722:1 9723:1 9729:1 9732:1 9739:1 9742:1 9747:1 9755:4 9769:1 9771:1 9787:1 9803:1 9810:1 9817:1 9819:1 9823:2 9837:2 9846:1 9864:1 9866:2 9877:1 9881:1 9886:4 9889:2 9899:1 9900:3 9910:1 9920:1 9926:1 9943:2 9953:3 9954:1 9964:1 9982:1 9983:1 9991:3 9995:1 10013:1 10026:1 10035:3 10047:1 10057:4 10071:1 10080:1 10092:1 10093:1 10106:2 10140:1 10180:1 10191:1 10201:1 10206:1 10224:1 10225:1 10239:1 10240:2 10242:1 10245:1 10246:2 10252:1 10261:1 10264:5 10265:5 10268:1 10276:1 10282:2 10283:2 10288:1 10289:3 10293:1 10310:2 10321:1 10336:2 10345:1 10372:1 10373:1 10376:1 10406:1 10411:1 10424:1 10436:1 10440:1 10466:1 10515:1 10518:1 10532:1 10556:1 10586:1 10592:1 10597:1 10611:2 10614:1 10617:1 10627:1 10630:2 10632:1 10633:1 10635:1 10644:2 10646:1 10648:2 10657:1 10663:2 10667:1 10678:1 10693:10 10694:1 10696:1 10707:1 10718:1 10734:3 10742:1 10745:1 10746:2 10756:1 10759:1 10788:2 10799:2 10803:1 10813:2 10818:2 10831:1 10847:1 10859:1 10863:1 10890:1 10906:1 10932:3 10934:1 10937:1 10950:1 10951:2 10956:1 10957:1 10960:1 10962:1 10968:1 10969:1 10977:1 10988:1 10991:1 10992:1 11006:3 11009:2 11031:1 11055:1 11073:1 11100:1 11118:1 11135:1 11141:1 11166:5 11173:1 11184:1 11188:1 11189:1 11201:1 11206:1 11214:1 11220:1 11227:1 11243:2 11263:1 11283:1 11301:1 11306:1 11314:1 11321:1 11327:1 11365:1 11372:1 11380:5 11381:1 11382:1 11394:1 11406:2 11412:1 11415:1 11418:1 11424:1 11476:1 11478:1 11502:1 11506:1 11520:1 11542:1 11547:1 11557:1 11635:1 11638:3 11662:1 11695:1 11705:1 11718:1 11720:2 11721:1 11736:2 11745:1 11758:1 11774:1 11824:1 11831:1 11836:1 11839:1 11847:1 11859:1 11882:8 11886:1 11899:1 11904:1 11923:1 11928:1 11929:1 11936:2 11943:1 11959:1 11964:1 11980:2 11981:1 11983:1 11989:1 12016:1 12039:1 12045:1 12048:1 12081:1 12090:1 12091:2 12100:1 12110:1 12112:1 12134:1 12151:3 12161:1 12208:1 12231:1 12252:1 12254:2 12257:4 12269:1 12274:1 12290:1 12306:3 12323:1 12325:2 12346:1 12351:3 12352:1 12385:1 12386:1 12387:1 12389:1 12399:4 12400:1 12410:2 12413:1 12436:1 12437:1 12446:1 12452:1 12463:10 12469:1 12506:2 12508:1 12515:1 12533:1 12544:1 12547:1 12557:1 12559:1 12590:3 12613:1 12616:6 12617:1 12633:1 12642:1 12645:1 12668:2 12685:1 12692:1 12694:1 12703:1 12705:1 12707:1 12714:1 12721:1 12728:4 12729:1 12732:1 12734:1 12736:2 12737:1 12741:6 12742:1 12760:1 12763:1 12765:1 12787:1 12814:1 12831:1 12842:1 12887:3 12926:1 12929:1 12932:1 12939:1 12941:1 12946:1 12960:1 12978:2 12986:1 12999:1 13005:7 13025:2 13032:1 13041:1 13064:1 13076:1 13085:1 13103:1 13131:1 13161:1 13180:1 13188:1 13197:1 13211:1 13237:1 13245:2 13261:3 13277:1 13288:1 13309:1 13320:1 13380:1 13383:2 13384:2 13391:1 13404:1 13406:1 13410:2 13412:1 13442:1 13452:2 13470:1 13479:1 13480:1 13499:1 13524:2 13548:1 13554:1 13556:1 13563:2 13567:1 13578:3 13585:2 13630:1 13632:2 13637:2 13641:1 13679:1 13680:1 13690:1 13713:1 13720:1 13731:1 13756:3 13768:1 13771:2 13804:1 13807:1 13850:1 13891:2 13892:2 13895:1 13902:1 13912:1 13932:1 13977:1 13979:2 13984:1 13997:1 13998:1 14032:1 14087:1 14094:1 14115:1 14155:1 14182:1 14204:1 14211:1 14212:1 14213:1 14226:1 14240:1 14245:2 14248:1 14270:1 14274:1 14295:2 14311:1 14315:1 14318:1 14334:1 14345:1 14354:1 14362:1 14387:1 14391:1 14397:2 14409:1 14419:1 14424:2 14435:1 14460:1 14467:1 14484:1 14486:1 14489:1 14552:1 14553:1 14564:2 14575:1 14579:3 14584:1 14586:1 14593:1 14605:2 14606:1 14609:1 14612:1 14639:1 14658:2 14666:1 14703:2 14719:3 14726:1 14737:1 14739:3 14753:1 14764:2 14782:1 14802:1 14819:1 14847:1 14853:1 14857:9 14872:1 14876:3 14900:2 14904:1 14943:1 14958:1 14962:2 14972:2 14976:1 14990:2 14994:1 15008:1 15029:1 15030:1 15046:1 15052:1 15062:1 15064:1 15068:1 15074:2 15117:1 15122:1 15128:3 15130:2 15131:2 15132:4 15133:1 15135:2 15137:1 15139:1 15140:3 15143:1 15144:1 15147:1 15151:1 15161:1 15204:1 15206:2 15232:1 15251:1 15255:1 15256:1 15279:1 15284:1 15288:2 15289:1 15307:1 15328:1 15336:1 15370:1 15418:1 15430:1 15434:1 15445:1 15446:2 15455:1 15456:1 15466:1 15470:4 15478:2 15487:1 15495:1 15496:1 15501:2 15509:1 15513:1 15522:3 15534:1 15544:1 15585:6 15588:1 15611:1 15613:3 15618:1 15671:1 15672:1 15678:2 15689:1 15695:2 15705:1 15706:1 15720:1 15722:2 15756:2 15778:4 15802:1 15811:1 15823:1 15849:1 15878:1 15879:2 15895:1 15898:1 15936:2 15946:1 15950:1 15973:1 15980:1 15987:2 15992:1 16022:1 16034:2 16039:1 16055:1 16072:1 16116:1 16119:1 16159:1 16163:1 16183:1 16187:1 16199:2 16202:1 16212:1 16213:2 16218:1 16224:1 16232:3 16238:2 16240:2 16244:1 16250:3 16284:1 16288:1 16293:1 16294:1 16298:1 16305:1 16315:1 16316:1 16331:1 16368:1 16369:1 16389:2 16403:1 16416:2 16427:1 16428:1 16434:1 16435:1 16451:1 16453:1 16482:1 16483:1 16484:1 16508:1 16513:1 16518:2 16557:1 16578:1 16594:2 16602:1 16616:1 16684:1 16709:1 16710:1 16720:1 16740:2 16814:2 16815:1 16823:1 16833:1 16844:1 16862:1 16879:1 16907:1 16934:1 16937:2 16951:1 16981:1 16999:6 17050:1 17071:1 17087:11 17097:2 17099:1 17103:3 17128:1 17142:1 17156:1 17184:4 17192:2 17204:1 17218:1 17243:1 17251:2 17263:2 17276:1678 17285:1 17289:1 17302:1 17347:1 17351:1 17353:1 17374:2 17420:1 17421:1 17445:1 17465:1 17467:1 17469:1 17472:2 17474:2 17475:2 17495:1 17515:1 17526:1 17551:1 17552:1 17592:1 17595:1 17599:2 17608:1 17644:1 17654:1 17684:2 17697:1 17699:1 17707:2 17717:1 17737:1 17748:2 17754:1 17765:1 17787:1 17791:2 17795:1 17803:1 17809:1 17817:1 17836:2 17837:2 17855:2 17859:1 17862:1 17870:2 17876:1 17895:2 17896:1 17904:1 17913:1 17917:2 17927:3 17951:1 17966:1 17970:2 17971:1 17992:2 17999:1 18009:1 18011:1 18043:1 18047:4 18052:1 18054:2 18062:1 18070:1 18075:4 18085:1 18090:1 18101:1 18104:1 18115:2 18116:1 18123:1 18141:1 18156:1 18159:1 18163:1 18178:1 18183:1 18187:1 18193:1 18194:1 18197:1 18228:1 18233:1 18234:1 18240:1 18271:1 18282:1 18294:1 18295:2 18297:1 18301:1 18303:1 18308:1 18323:1 18326:1 18328:1 18332:1 18339:1 18343:1 18349:1 18359:1 18371:1 18374:1 18381:1 18382:1 18420:1 18422:3 18427:1 18428:2 18430:1 18474:1 18492:1 18495:1 18499:1 18501:1 18503:2 18504:1 18508:1 18519:1 18521:1 18529:2 18534:2 18536:1 18538:1 18548:1 18556:4 18564:2 18580:1 18582:1 18598:1 18603:1 18604:3 18628:1 18638:1 18639:1 18645:1 18653:1 18658:1 18665:1 18690:1 18691:1 18707:1 18716:3 18718:9 18719:2 18726:1 18735:3 18738:1 18756:1 18784:1 18792:1 18805:1 18811:1 18817:1 18821:1 18835:1 18838:1 18847:1 18848:1 18866:1 18868:1 18875:1 18905:4 18919:1 18933:1 18937:2 18941:1 18949:1 18960:1 18962:1 18969:2 18996:6 19013:1 19022:1 19039:1 19040:1 19057:1 19085:2 19101:3 19112:1 19117:1 19119:1 19125:1 19128:1 19132:1 19133:1 19140:1 19143:1 19175:2 19183:3 19189:2 19190:2 19201:2 19204:1 19215:2 19243:3 19245:1 19254:2 19261:1 19279:2 19284:1 19293:1 19311:2 19317:1 19331:3 19334:1 19344:1 19349:2 19359:3 19385:2 19391:1 19394:1 19412:1 19415:1 19421:1 19439:2 19443:2 19447:1 19450:1 19459:2 19478:1 19484:2 19506:2 19515:1 19516:1 19521:1 19522:1 19523:3 19537:2 19545:1 19546:1 19547:1 19552:1 19558:1 19564:1 19577:1 19591:1 19595:1 19614:1 19620:1 19627:1 19629:1 19633:2 19636:2 19661:1 19697:1 19757:1 19770:2 19773:1 19782:1 19785:2 19790:1 19791:1 19794:1 19798:1 19806:1 19812:1 19821:2 19823:1 19830:1 19866:1 19873:1 19880:1 19896:1 19919:1 19921:1 19922:1 19927:1 19931:2 19934:1 19936:1 19954:1 19959:2 19960:1 19965:1 19976:1 19978:2 19989:1 19998:6 20001:1 20009:1 20017:2 20028:1 20041:1 20049:1 20061:1 20063:1 20066:1 20067:1 20071:1 20075:1 20125:1 20134:1 20138:2 20141:1 20142:1 20147:1 20149:1 20151:3 20154:1 20156:1 20166:2 20177:1 20179:1 20205:1 20206:1 20210:2 20212:2 20240:1 20252:1 20316:3 20321:1 20322:2 20325:2 20326:2 20328:1 20334:1 20337:1 20341:2 20352:4 20362:1 20368:1 20381:1 20396:2 20400:2 20403:1 20417:1 20444:1 20471:1 20481:1 20492:1 20503:1 20524:1 20532:1 20546:1 20553:1 20556:1 20567:1 20570:1 20572:3 20587:1 20588:2 20592:2 20593:1 20599:1 20611:1 20628:2 20632:1 20633:1 20634:4 20647:1 20655:1 20656:5 20662:1 20666:1 20676:1 20692:1 20693:1 20719:7 20720:1 20733:1 20754:1 20772:1 20779:3 20780:1 20787:1 20796:1 20812:1 20842:1 20844:2 20864:1 20879:1 20887:3 20889:1 20900:3 20905:2 20914:1 20919:1 20924:1 20938:1 20940:2 20955:1 20962:1 20963:1 20968:3 20976:1 20991:1 21005:1 21026:1 21029:1 21062:1 21073:1 21074:1 21079:1 21100:2 21115:3 21116:2 21130:1 21134:2 21138:1 21140:3 21150:3 21163:2 21176:1 21203:1 21215:1 21216:1 21218:2 21220:1 21234:1 21235:1 21263:1 21266:1 21282:1 21284:1 21303:2 21306:1 21309:1 21311:1 21340:3 21370:3 21434:1 21453:3 21456:1 21462:5 21469:2 21479:1 21484:1 21488:3 21498:2 21500:1 21501:1 21502:1 21512:1 21520:4 21551:1 21559:1 21586:1 21599:1 21613:2 21635:1 21642:1 21647:1 21650:1 21674:2 21682:1 21686:1 21694:1 21695:1 21703:1 21709:1 21730:2 21733:2 21743:1 21755:1 21772:3 21773:1 21777:2 21792:1 21794:1 21800:1 21845:1 21846:4 21848:1 21861:1 21862:2 21863:1 21864:1 21865:1 21867:1 21869:1 21898:1 21916:1 21917:1 21930:1 21981:1 21991:1 22014:1 22019:1 22053:1 22068:2 22074:1 22076:1 22078:1 22088:1 22125:1 22130:1 22136:1 22176:1 22196:1 22218:1 22230:2 22238:1 22260:1 22263:1 22282:2 22296:2 22304:1 22320:1 22328:5 22345:1 22352:1 22358:1 22380:1 22382:1 22389:1 22391:2 22400:1 22402:1 22403:1 22407:1 22412:1 22435:3 22457:2 22459:1 22467:1 22469:1 22478:1 22522:1 22530:1 22531:1 22550:1 22553:1 22559:1 22564:3 22565:1 22571:1 22575:1 22578:2 22581:1 22612:4 22626:1 22627:1 22629:1 22632:1 22640:1 22642:1 22644:1 22646:1 22662:8 22663:1 22675:1 22685:1 22688:1 22693:1 22695:1 22705:1 22710:1 22713:1 22718:3 22726:1 22739:1 22755:1 22827:1 22856:1 22862:1 22868:1 22876:2 22880:2 22886:2 22895:1 22901:2 22903:1 22907:1 22923:1 22943:1 22946:1 22953:1 22963:1 22974:2 22987:2 22992:1 22993:1 23012:2 23018:1 23024:2 23041:1 23077:9 23078:1 23101:1 23105:1 23106:1 23115:1 23130:1 23139:1 23144:1 23158:2 23161:1 23169:1 23170:1 23181:1 23188:1 23197:1 23202:1 23217:1 23222:1 23261:1 23291:6 23292:1 23307:1 23316:1 23363:1 23373:1 23375:3 23378:1 23404:2 23406:1 23426:1 23432:1 23436:2 23440:1 23446:1 23481:1 23497:1 23503:2 23505:1 23514:2 23528:1 23532:1 23557:1 23601:1 23609:1 23617:1 23631:1 23635:2 23639:3 23642:1 23652:1 23664:1 23666:1 23695:3 23700:1 23704:1 23721:4 23739:2 23774:1 23775:1 23784:1 23786:1 23803:1 23826:1 23845:2 23889:1 23895:1 23909:1 23923:1 23932:1 23943:1 23999:2 24009:1 24024:1 24025:1 24027:1 24055:1 24061:1 24092:3 24101:1 24104:1 24126:1 24129:1 24138:2 24140:1 24149:2 24161:1 24165:11 24166:2 24177:1 24185:1 24195:1 24220:2 24231:1 24233:1 24251:1 24256:1 24259:1 24263:1 24272:3 24275:3 24280:3 24285:2 24286:4 24289:1 24310:1 24350:1 24357:1 24372:1 24377:1 24400:2 24408:1 24416:1 24420:1 24424:1 24425:1 24427:2 24443:6 24444:1 24446:1 24471:1 24472:1 24479:1 24500:1 24502:1 24521:1 24524:1 24553:1 24570:1 24592:1 24596:1 24600:1 24622:1 24625:1 24643:1 24653:1 24655:1 24658:5 24675:1 24676:1 24710:1 24713:1 24715:1 24720:1 24721:1 24733:1 24737:1 24740:1 24747:1 24773:1 24774:2 24784:1 24792:3 24809:1 24830:1 24839:1 24844:2 24870:1 24889:1 24892:1 24917:1 24928:1 24938:1 24944:3 24949:1 24953:1 24954:1 24964:1 24966:1 24972:1 24976:2 24994:1 25005:2 25019:1 25022:1 25026:1 25031:2 25032:1 25059:1 25068:1 25070:1 25073:2 25081:1 25109:1 25110:1 25125:3 25129:1 25132:2 25145:1 25185:2 25191:1 25195:1 25200:1 25207:2 25213:1 25214:1 25224:2 25239:1 25250:1 25251:1 25254:1 25255:1 25256:1 25260:1 25267:2 25277:1 25281:1 25291:2 25295:1 25299:1 25302:1 25329:1 25330:1 25346:2 25370:1 25412:1 25454:1 25479:1 25487:1 25491:2 25532:1 25538:1 25543:1 25560:1 25572:1 25600:2 25630:1 25644:1 25693:1 25698:1 25702:2 25717:2 25739:1 25775:1 25777:1 25791:1 25793:3 25804:2 25808:1 25809:1 25820:1 25822:1 25828:1 25829:5 25841:1 25843:1 25856:1 25861:2 25863:2 25867:1 25869:1 25871:4 25875:1 25880:1 25881:1 25888:1 25892:3 25905:3 25909:1 25913:1 25941:1 25946:1 25964:1 25965:1 26005:1 26012:2 26015:4 26022:3 26028:1 26054:4 26067:1 26080:1 26081:1 26098:1 26099:1 26123:1 26125:1 26163:1 26174:1 26194:1 26213:1 26214:1 26221:1 26222:1 26229:1 26230:2 26236:1 26244:1 26265:3 26301:1 26305:1 26306:5 26315:1 26340:1 26368:3 26452:1 26527:1 26538:1 26539:1 26540:1 26544:2 26547:3 26553:1 26557:1 26558:1 26565:1 26580:1 26612:1 26655:3 26664:2 26690:2 26696:2 26706:1 26710:1 26733:1 26745:1 26750:2 26751:1 26757:2 26759:1 26787:1 26790:3 26793:2 26806:1 26810:1 26832:1 26843:1 26848:1 26855:1 26862:1 26879:1 26883:3 26889:1 26910:1 26920:2 26923:1 26940:1 26957:1 26961:2 26973:1 26978:1 26979:3 26986:2 26987:2 26988:1 26990:1 26996:1 27031:4 27034:1
1 13:1 35:1 39:1 47:1 50:1 55:1 89:1 120:1 137:1 138:3 139:1 144:1 157:1 165:1 169:2 182:5 192:1 222:1 233:1 238:6 255:3 264:1 280:1 306:1 315:3 317:2 327:3 334:3 339:1 346:2 362:1 372:1 382:1 395:5 397:2 404:1 412:1 445:1 446:1 500:1 511:1 515:2 532:1 544:2 552:1 568:1 578:1 582:2 584:1 588:1 604:1 630:1 665:1 683:1 711:1 723:1 726:1 745:2 751:1 764:1 789:5 794:1 798:1 800:1 802:3 808:1 822:9 826:4 837:3 854:2 868:1 872:1 873:4 874:2 875:6 877:1 878:1 880:2 882:1 894:2 912:3 915:3 926:1 953:2 958:1 972:1 1002:1 1013:2 1017:1 1035:1 1037:1 1059:1 1061:1 1064:1 1108:3 1109:2 1114:1 1116:1 1122:1 1125:1 1154:1 1158:2 1173:2 1187:1 1193:2 1195:1 1228:1 1244:1 1262:1 1264:1 1266:1 1269:1 1279:1 1292:1 1316:1 1324:1 1325:2 1346:1 1364:1 1366:1 1371:2 1379:1 1392:1 1397:1 1402:1 1405:2 1419:1 1437:1 1445:1 1448:4 1454:5 1456:2 1465:1 1469:1 1490:2 1499:1 1501:1 1510:1 1514:1 1523:1 1526:1 1530:2 1542:2 1553:1 1555:1 1559:1 1568:1 1571:1 1580:1 1584:1 1587:1 1592:1 1596:1 1600:1 1606:1 1615:1 1619:1 1634:2 1635:1 1653:4 1663:1 1675:1 1681:1 1684:2 1687:1 1688:1 1696:6 1703:1 1723:3 1724:2 1737:1 1757:1 1759:4 1761:1 1764:1 1794:1 1801:2 1807:1 1809:1 1822:2 1866:1 1870:3 1875:1 1881:1 1885:1 1892:2 1897:1 1899:1 1904:1 1907:2 1925:1 1931:1 1938:1 1956:1 1959:1 1976:1 1978:1 1984:1 1988:2 1990:1 2004:1 2027:8 2037:1 2046:1 2051:1 2053:1 2071:1 2078:1 2092:2 2103:3 2107:1 2119:1 2120:1 2123:1 2126:2 2142:2 2143:2 2147:2 2148:3 2150:1 2154:2 2157:2 2158:2 2159:1 2161:2 2167:4 2170:3 2172:5 2173:4 2185:1 2196:1 2219:1 2224:1 2226:3 2229:1 2248:1 2257:1 2274:1 2275:1 2277:1 2285:1 2293:1 2294:1 2296:1 2328:1 2333:1 2342:1 2350:1 2351:1 2360:1 2367:1 2377:3 2388:1 2390:1 2405:1 2413:1 2417:1 2432:3 2435:2 2437:1 2439:5 2443:1 2444:1 2445:1 2454:1 2457:1 2478:4 2479:1 2483:1 2496:2 2503:1 2504:1 2505:1 2506:1 2513:6 2520:1 2526:1 2529:5 2535:4 2537:1 2545:1 2547:1 2555:1 2557:1 2562:3 2563:2 2574:1 2589:1 2591:2 2597:2 2638:1 2640:2 2641:2 2654:2 2659:1 2662:3 2667:2 2671:1 2691:1 2716:1 2738:2 2745:1 2749:1 2752:11 2773:2 2774:1 2776:1 2777:1 2779:1 2786:2 2791:2 2811:10 2813:1 2836:2 2839:2 2848:1 2856:1 2866:1 2893:1 2898:1 2902:1 2907:1 2917:1 2918:5 2934:3 2939:1 2948:1 2970:1 2989:1 2993:1 2998:1 3006:2 3014:1 3027:2 3042:2 3057:1 3089:1 3090:1 3128:1 3129:2 3130:1 3134:1 3149:6 3193:1 3225:2 3263:1 3264:1 3265:1 3277:1 3283:1 3286:1 3291:1 3328:1 3343:1 3358:2 3362:1 3383:1 3384:10 3399:1 3403:2 3405:1 3406:1 3425:1 3429:1 3438:1 3477:1 3479:1 3480:1 3484:1 3489:3 3493:1 3501:1 3548:1 3549:1 3552:1 3554:1 3559:2 3562:1 3565:1 3569:1 3576:1 3581:1 3596:1 3599:1 3603:2 3608:1 3610:1 3626:2 3628:1 3631:1 3648:2 3663:1 3664:1 3668:4 3670:1 3673:1 3678:2 3687:2 3700:1 3715:1 3716:2 3732:1 3734:2 3738:1 3756:1 3765:4 3766:3 3772:2 3808:1 3810:2 3813:1 3818:1 3837:1 3839:2 3857:1 3864:1 3866:2 3875:1 3891:1 3910:1 3924:1 3932:1 3937:3 3940:1 3941:1 3944:2 3950:1 3954:2 3977:1 3981:1 3992:1 4008:1 4025:1 4027:1 4045:7 4075:3 4081:1 4090:1 4101:1 4104:1 4114:2 4127:2 4133:1 4149:1 4152:1 4156:2 4177:3 4194:1 4202:1 4203:1 4225:2 4246:1 4249:1 4252:1 4256:1 4257:2 4267:1 4276:1 4304:1 4314:1 4327:1 4331:1 4355:3 4363:2 4371:1 4377:2 4380:1 4397:3 4420:2 4437:1 4440:2 4443:2 4456:3 4459:1 4468:1 4469:2 4475:1 4523:1 4549:1 4565:9 4567:1 4574:1 4576:1 4586:1 4601:1 4613:1 4623:1 4664:1 4669:1 4684:1 4685:4 4687:4 4688:2 4690:1 4693:1 4695:1 4696:1 4698:1 4700:1 4701:1 4703:4 4704:3 4706:1 4708:2 4709:4 4716:3 4721:1 4764:1 4776:1 4789:2 4796:1 4820:1 4891:1 4903:1 4930:1 4973:1 4977:1 5002:2 5008:2 5018:1 5061:1 5066:2 5088:3 5101:1 5121:1 5140:1 5146:1 5157:2 5163:1 5171:1 5180:1 5188:1 5197:1 5220:1 5230:1 5252:1 5254:1 5284:1 5287:1 5292:1 5298:2 5302:1 5313:4 5314:1 5316:2 5317:1 5320:2 5321:1 5336:1 5337:1 5369:3 5379:1 5380:1 5394:5 5403:1 5406:2 5468:1 5481:1 5483:1 5485:1 5503:1 5509:1 5510:1 5516:1 5522:1 5538:1 5549:1 5562:1 5568:1 5569:1 5576:2 5590:2 5594:1 5610:5 5612:1 5613:1 5619:1 5620:2 5629:1 5632:1 5636:1 5668:1 5673:1 5680:1 5688:1 5692:1 5693:1 5696:9 5715:1 5735:2 5761:1 5772:1 5787:2 5797:1 5812:5 5817:1 5824:1 5869:1 5872:1 5890:1 5897:1 5898:1 5901:1 5905:2 5906:3 5911:1 5912:1 5915:1 5921:2 5923:3 5924:2 5958:1 5997:1 6010:1 6046:1 6051:4 6052:2 6063:1 6106:1 6115:1 6124:1 6133:1 6148:1 6154:1 6177:1 6191:2 6199:2 6208:1 6213:1 6222:1 6270:1 6292:1 6295:1 6298:1 6301:1 6316:7 6323:2 6327:1 6329:1 6336:1 6338:1 6344:1 6355:2 6375:1 6378:1 6389:1 6424:1 6426:3 6437:1 6442:1 6448:2 6465:1 6470:1 6476:1 6479:1 6483:2 6491:1 6507:1 6525:1 6529:1 6530:1 6537:1 6545:1 6546:1 6553:1 6563:6 6569:2 6595:1 6596:1 6600:1 6606:1 6609:1 6610:2 6623:3 6624:1 6626:1 6631:5 6634:1 6637:1 6657:1 6658:1 6670:1 6678:1 6702:1 6707:3 6716:2 6724:1 6735:1 6752:1 6755:1 6765:1 6798:1 6812:1 6824:1 6871:1 6875:1 6879:1 6917:1 6931:1 6935:1 6936:1 6940:1 6945:1 6951:3 6955:1 6971:4 6974:2 6988:1 6989:2 6998:1 7002:1 7012:1 7020:2 7028:1 7045:1 7051:1 7053:1 7066:1 7081:1 7114:1 7120:1 7138:2 7153:3 7154:6 7165:1 7170:1 7173:3 7176:2 7178:3 7183:1 7198:2 7199:2 7200:1 7213:34 7214:1 7220:1 7222:1 7228:1 7229:5 7231:3 7236:2 7270:1 7276:1 7278:1 7287:1 7297:1 7301:3 7302:2 7307:1 7309:1 7320:1 7322:1 7331:1 7358:1 7360:1 7380:2 7388:1 7392:1 7410:1 7440:1 7451:1 7453:1 7454:3 7483:1 7490:1 7491:1 7501:2 7549:1 7559:1 7569:1 7591:1 7600:1 7604:1 7608:1 7628:1 7631:1 7639:1 7643:1 7644:1 7654:1 7663:1 7677:1 7700:18 7706:1 7724:3 7726:1 7729:1 7731:2 7732:1 7773:2 7776:1 7777:1 7781:1 7810:1 7821:2 7825:2 7827:1 7830:1 7844:1 7854:1 7855:4 7860:2 7868:1 7894:2 7896:1 7902:1 7918:1 7920:1 7930:1 7937:1 7939:1 7957:1 7958:1 7966:1 7969:1 8028:1 8033:1 8034:1 8038:1 8039:1 8041:1 8048:1 8061:1 8064:1 8076:4 8087:1 8090:3 8109:1 8115:1 8122:1 8127:2 8130:1 8145:1 8146:1 8162:2 8191:1 8196:1 8233:1 8234:1 8240:1 8244:1 8271:1 8272:1 8285:1 8293:1 8316:1 8319:1 8320:1 8324:3 8347:2 8353:1 8360:2 8361:1 8370:1 8377:1 8394:1 8395:1 8407:1 8415:3 8416:1 8417:1 8423:1 8425:1 8429:1 8436:1 8455:4 8477:1 8505:3 8506:5 8516:2 8551:1 8561:1 8566:1 8570:2 8589:1 8596:1 8603:1 8605:1 8607:2 8609:2 8629:1 8661:1 8672:1 8681:2 8683:1 8689:1 8692:4 8715:2 8734:4 8770:1 8771:1 8795:1 8802:1 8807:1 8823:2 8835:2 8852:1 8858:1 8865:1 8888:1 8901:1 8905:1 8913:1 8919:6 8924:2 8956:2 8975:2 8981:1 9005:1 9024:1 9028:1 9031:2 9032:2 9034:2 9061:1 9066:1 9096:1 9099:1 9107:1 9142:2 9163:1 9173:2 9186:1 9200:1 9201:1 9210:1 9242:1 9243:1 9248:1 9249:1 9262:1 9266:1 9289:1 9294:1 9296:1 9301:5 9318:3 9325:3 9327:1 9336:1 9354:2 9371:1 9372:1 9396:1 9398:1 9410:1 9415:2 9427:1 9434:1 9444:1 9449:3 9453:1 9481:1 9485:1 9490:9 9492:1 9493:1 9497:2 9501:1 9519:1 9520:1 9535:1 9540:1 9587:1 9588:2 9590:1 9597:1 9622:1 9628:1 9643:1 9644:1 9646:1 9649:1 9651:3 9661:1 9663:1 9665:2 9702:1 9715:4 9720:1 9722:1 9723:1 9729:1 9732:1 9739:1 9742:1 9747:1 9755:4 9769:1 9771:1 9787:1 9803:1 9810:1 9817:1 9819:1 9823:2 9837:2 9846:1 9864:1 9866:2 9877:1 9881:1 9886:4 9889:2 9899:1 9900:3 9910:1 9920:1 9926:1 9943:2 9953:3 9954:1 9964:1 9982:1 9983:1 9991:3 9995:1 10013:1 10026:1 10035:3 10047:1 10057:4 10071:1 10080:1 10092:1 10093:1 10106:2 10140:1 10180:1 10191:1 10201:1 10206:1 10224:1 10225:1 10239:1 10240:2 10242:1 10245:1 10246:2 10252:1 10261:1 10264:5 10265:5 10268:1 10276:1 10282:2 10283:2 10288:1 10289:3 10293:1 10310:3 10321:1 10336:2 10345:1 10372:1 10373:1 10376:1 10392:1 10406:1 10411:1 10424:1 10434:1 10436:1 10440:1 10466:1 10515:1 10518:1 10532:2 10556:1 10586:1 10592:1 10597:1 10611:2 10614:1 10617:1 10627:1 10630:2 10632:1 10633:1 10635:1 10644:2 10646:1 10648:2 10657:1 10663:2 10667:1 10678:1 10693:10 10694:1 10696:1 10707:1 10718:1 10734:3 10742:1 10745:2 10746:2 10756:1 10759:1 10788:2 10799:2 10803:1 10813:2 10818:2 10831:1 10847:1 10859:1 10863:1 10890:1 10906:1 10932:3 10934:1 10937:1 10950:1 10951:2 10956:2 10957:1 10960:1 10962:1 10968:1 10969:1 10977:1 10988:1 10991:1 10992:1 11006:3 11009:2 11031:1 11055:1 11073:1 11100:1 11118:1 11135:1 11141:1 11166:5 11173:1 11184:1 11188:2 11189:1 11201:1 11206:1 11214:1 11220:1 11227:1 11243:2 11263:1 11283:1 11301:1 11306:1 11314:1 11321:1 11327:1 11365:1 11372:1 11380:5 11381:1 11382:2 11394:1 11406:2 11412:1 11415:1 11418:1 11424:1 11476:1 11478:1 11502:1 11506:1 11520:1 11542:1 11547:1 11557:1 11635:1 11638:3 11662:1 11689:1 11695:1 11705:1 11718:1 11720:2 11721:1 11736:2 11745:1 11758:1 11774:1 11824:1 11831:1 11836:1 11839:1 11840:1 11847:1 11859:1 11882:8 11886:2 11899:2 11904:1 11923:1 11928:1 11929:1 11936:2 11943:1 11959:1 11964:1 11980:2 11981:1 11983:1 11989:1 12016:1 12039:1 12045:1 12048:1 12081:1 12090:1 12091:2 12100:1 12110:1 12112:1 12134:1 12151:3 12161:1 12208:1 12231:1 12252:1 12254:2 12257:4 12269:1 12274:2 12283:1 12290:1 12306:3 12323:1 12325:2 12346:1 12351:3 12352:1 12385:1 12386:1 12387:1 12389:1 12399:4 12400:1 12410:2 12413:1 12428:1 12436:1 12437:1 12446:1 12452:1 12463:11 12469:1 12506:2 12508:1 12515:1 12533:1 12544:1 12547:1 12557:1 12559:1 12590:3 12613:1 12616:6 12617:1 12633:1 12642:1 12645:1 12668:2 12685:1 12692:1 12694:1 12703:2 12705:1 12707:1 12714:1 12721:1 12728:5 12729:1 12732:1 12734:1 12736:2 12737:1 12741:6 12742:1 12760:1 12763:1 12765:1 12787:1 12814:1 12831:1 12842:1 12887:3 12926:1 12929:1 12932:1 12939:1 12941:1 12946:1 12960:1 12978:2 12986:1 12999:1 13005:7 13025:2 13032:1 13041:1 13064:1 13076:1 13085:1 13103:1 13131:1 13161:1 13173:1 13180:1 13188:1 13197:1 13211:1 13237:1 13245:2 13261:3 13277:1 13288:1 13309:1 13320:1 13380:1 13383:2 13384:2 13391:1 13404:1 13406:1 13410:2 13412:1 13442:1 13452:2 13470:1 13479:1 13480:1 13499:1 13524:2 13548:1 13554:1 13556:1 13563:2 13567:1 13578:3 13585:2 13630:1 13632:2 13637:2 13641:1 13679:1 13680:1 13690:1 13713:1 13720:1 13731:1 13756:3 13768:1 13771:2 13804:1 13807:1 13850:1 13891:2 13892:2 13895:1 13902:1 13912:1 13932:1 13977:1 13979:3 13984:1 13997:1 13998:1 14032:1 14087:1 14094:1 14115:1 14155:1 14182:1 14204:1 14211:1 14212:1 14213:1 14226:1 14240:1 14245:2 14248:1 14270:1 14274:1 14295:2 14311:1 14315:1 14318:1 14334:1 14345:1 14354:1 14362:1 14387:1 14391:1 14397:2 14409:1 14419:1 14424:2 14435:1 14460:1 14467:1 14484:1 14486:1 14489:1 14552:1 14553:1 14564:2 14575:1 14579:3 14584:1 14586:1 14593:1 14605:2 14606:1 14609:1 14612:1 14626:1 14639:1 14658:2 14666:1 14703:2 14719:3 14726:1 14737:1 14739:3 14753:1 14764:2 14782:1 14802:1 14819:1 14847:1 14853:1 14857:10 14872:1 14876:3 14900:2 14904:1 14943:1 14958:1 14962:2 14972:2 14976:1 14990:2 14994:1 15008:1 15015:1 15029:1 15030:1 15046:1 15052:1 15062:1 15064:1 15068:1 15074:2 15117:1 15122:1 15128:3 15130:2 15131:2 15132:4 15133:1 15135:2 15137:1 15139:1 15140:3 15143:1 15144:1 15147:1 15151:1 15161:1 15204:1 15206:2 15232:1 15251:1 15255:1 15256:1 15279:1 15284:1 15288:2 15289:1 15307:1 15328:1 15336:1 15370:1 15418:1 15430:1 15434:1 15445:1 15446:2 15455:1 15456:1 15466:1 15470:4 15478:2 15487:1 15495:1 15496:1 15501:2 15509:1 15513:1 15522:3 15526:1 15534:1 15544:1 15585:6 15588:1 15611:1 15613:3 15618:1 15671:1 15672:1 15678:2 15689:1 15695:2 15705:1 15706:1 15720:1 15722:2 15756:2 15778:4 15802:1 15811:1 15823:1 15849:1 15878:2 15879:2 15895:1 15898:1 15936:2 15946:1 15950:1 15973:1 15980:1 15987:2 15992:1 16022:1 16034:2 16039:1 16055:1 16072:1 16116:1 16119:1 16159:1 16163:1 16183:1 16187:1 16199:2 16202:1 16212:1 16213:2 16218:1 16224:1 16232:3 16238:2 16240:2 16244:1 16250:3 16284:1 16288:1 16293:1 16294:1 16298:1 16305:1 16315:1 16316:1 16331:1 16368:1 16369:1 16389:2 16403:1 16416:2 16427:1 16428:1 16434:1 16435:1 16451:1 16453:1 16482:1 16483:1 16484:1 16508:1 16513:1 16518:2 16557:1 16578:1 16594:2 16602:1 16616:1 16684:1 16709:1 16710:1 16720:1 16740:2 16814:2 16815:1 16823:1 16833:1 16844:1 16862:1 16879:1 16907:1 16934:1 16937:2 16951:1 16981:1 16999:6 17050:1 17071:1 17087:11 17097:2 17099:1 17103:3 17128:1 17142:1 17156:1 17184:4 17192:2 17204:2 17218:1 17243:1 17251:2 17263:2 17276:1728 17285:1 17289:1 17302:1 17347:1 17351:1 17353:1 17374:2 17420:1 17421:1 17445:1 17465:1 17467:1 17469:1 17472:2 17474:2 17475:2 17495:1 17515:1 17526:1 17551:1 17552:1 17592:1 17595:1 17599:2 17608:1 17644:1 17654:2 17684:2 17697:1 17699:1 17707:2 17717:1 17737:1 17748:2 17754:1 17765:1 17787:1 17791:2 17795:1 17803:1 17809:1 17817:1 17836:2 17837:2 17855:2 17859:1 17862:1 17870:2 17876:1 17895:2 17896:1 17904:1 17913:1 17917:2 17927:3 17951:1 17966:1 17970:2 17971:1 17992:2 17999:1 18009:1 18011:1 18043:1 18047:4 18052:1 18054:2 18062:1 18070:1 18075:4 18085:1 18090:1 18101:1 18104:1 18115:2 18116:1 18123:1 18141:1 18156:1 18159:1 18163:1 18178:1 18183:1 18187:2 18193:1 18194:1 18197:1 18228:1 18233:1 18234:1 18240:1 18271:1 18282:1 18294:1 18295:2 18296:1 18297:1 18301:1 18303:1 18308:1 18323:1 18326:1 18328:1 18332:1 18339:1 18343:1 18349:1 18359:1 18371:1 18374:1 18381:1 18382:1 18390:1 18420:1 18422:3 18427:1 18428:3 18430:1 18474:1 18492:1 18495:1 18499:1 18501:1 18503:2 18504:1 18508:1 18519:1 18521:1 18529:2 18533:1 18534:2 18536:2 18538:1 18548:1 18556:4 18564:2 18580:1 18582:1 18598:1 18603:1 18604:3 18627:1 18628:1 18638:1 18639:1 18645:1 18653:1 18658:1 18665:1 18690:1 18691:1 18707:1 18716:3 18718:10 18719:2 18726:1 18735:3 18738:1 18756:1 18784:1 18792:1 18805:1 18811:1 18817:1 18821:1 18835:1 18838:1 18847:1 18848:1 18866:1 18868:1 18875:1 18905:4 18919:1 18933:1 18937:2 18941:1 18949:1 18960:1 18962:1 18969:2 18996:6 19013:1 19022:1 19039:1 19040:1 19057:1 19085:2 19101:3 19112:1 19117:1 19119:1 19125:1 19128:1 19132:1 19133:1 19140:1 19143:1 19175:2 19183:3 19189:2 19190:2 19201:2 19204:1 19215:2 19243:3 19245:1 19254:2 19261:1 19279:2 19284:1 19293:1 19311:2 19317:1 19331:3 19334:1 19344:1 19349:2 19359:3 19385:2 19391:1 19394:1 19412:1 19415:1 19421:1 19439:2 19443:2 19447:1 19450:1 19451:1 19459:2 19478:1 19484:2 19506:2 19515:1 19516:1 19521:1 19522:1 19523:3 19537:2 19545:1 19546:1 19547:1 19552:1 19558:1 19564:1 19577:1 19591:1 19595:1 19614:1 19620:1 19627:1 19629:1 19633:2 19636:2 19661:1 19697:1 19757:1 19770:2 19773:1 19782:2 19785:2 19790:1 19791:1 19794:1 19795:1 19798:1 19806:1 19812:2 19821:2 19823:1 19830:1 19845:1 19866:1 19873:1 19880:1 19896:1 19919:1 19921:1 19922:1 19927:1 19931:2 19934:1 19936:1 19954:1 19959:2 19960:1 19963:1 19965:1 19976:1 19978:2 19989:1 19998:6 20001:1 20009:1 20017:2 20028:1 20041:1 20049:1 20061:1 20063:1 20066:1 20067:1 20071:1 20075:1 20125:1 20134:1 20138:2 20141:1 20142:1 20147:1 20149:1 20151:3 20154:1 20156:1 20166:2 20177:1 20179:1 20182:1 20205:1 20206:1 20210:2 20212:3 20240:1 20252:1 20316:3 20321:1 20322:2 20325:2 20326:2 20328:1 20334:1 20337:1 20341:2 20352:4 20362:1 20368:1 20381:1 20396:2 20400:2 20403:1 20417:1 20444:1 20471:1 20473:2 20481:1 20492:1 20497:1 20503:1 20524:1 20532:1 20534:1 20546:1 20553:1 20556:1 20567:1 20570:1 20572:3 20578:1 20587:1 20588:3 20592:2 20593:1 20599:1 20611:1 20628:2 20632:1 20633:1 20634:4 20647:1 20655:1 20656:5 20662:1 20666:1 20676:1 20692:1 20693:1 20719:7 20720:1 20733:1 20754:1 20772:1 20779:3 20780:1 20787:1 20796:1 20812:1 20842:1 20844:2 20864:1 20879:1 20887:3 20889:1 20900:3 20905:3 20914:1 20919:1 20924:1 20938:1 20940:3 20955:1 20962:1 20963:1 20968:3 20976:1 20991:1 21005:1 21026:1 21029:1 21062:1 21073:1 21074:1 21079:1 21100:2 21115:3 21116:2 21130:1 21134:2 21138:1 21140:3 21150:3 21163:2 21176:1 21203:1 21215:1 21216:1 21218:2 21220:1 21234:1 21235:1 21263:1 21266:1 21282:1 21284:1 21303:2 21306:1 21309:2 21311:1 21340:3 21370:3 21434:1 21453:3 21456:1 21462:5 21469:2 21479:1 21484:1 21488:3 21498:2 21500:1 21501:1 21502:1 21512:1 21520:4 21551:1 21559:1 21586:1 21599:1 21613:2 21624:1 21635:1 21642:1 21647:1 21650:1 21674:2 21682:1 21686:1 21694:1 21695:1 21703:1 21709:1 21730:2 21733:2 21742:1 21743:1 21755:1 21772:3 21773:1 21777:2 21792:1 21794:1 21800:1 21845:1 21846:4 21848:1 21861:1 21862:2 21863:1 21864:1 21865:1 21867:1 21869:1 21898:1 21913:1 21916:1 21917:1 21930:1 21981:2 21991:1 22014:2 22019:1 22053:1 22068:2 22074:1 22076:1 22078:1 22088:1 22125:1 22130:1 22136:1 22146:1 22176:1 22196:1 22218:1 22230:2 22238:1 22260:1 22263:1 22282:2 22296:2 22304:1 22320:1 22328:5 22345:1 22352:1 22358:2 22380:1 22382:1 22389:1 22391:2 22400:1 22402:1 22403:1 22407:1 22412:1 22435:3 22457:2 22459:1 22467:1 22469:1 22478:1 22502:1 22522:1 22530:1 22531:1 22550:1 22553:1 22559:1 22564:3 22565:1 22571:1 22575:1 22578:2 22581:1 22582:1 22612:5 22626:1 22627:1 22629:1 22632:1 22640:1 22642:1 22644:1 22646:1 22662:8 22663:1 22675:1 22685:1 22688:2 22693:1 22695:1 22705:1 22710:1 22713:1 22718:3 22726:1 22739:1 22755:1 22827:1 22856:1 22862:1 22868:1 22876:2 22880:2 22886:2 22895:1 22901:2 22903:1 22907:1 22923:1 22943:1 22946:1 22953:1 22963:1 22974:2 22987:2 22992:1 22993:1 23012:2 23018:1 23024:2 23041:1 23077:9 23078:2 23101:1 23105:1 23106:1 23115:1 23130:1 23139:1 23144:1 23158:2 23161:1 23169:1 23170:1 23181:1 23188:1 23197:1 23202:1 23217:1 23222:1 23261:1 23291:7 23292:1 23307:1 23316:2 23363:1 23373:1 23375:3 23378:1 23404:2 23406:1 23426:1 23432:1 23436:2 23440:1 23446:1 23481:1 23497:1 23503:2 23505:1 23514:2 23528:1 23532:1 23557:1 23601:1 23609:1 23613:1 23617:1 23631:1 23635:2 23639:3 23642:1 23651:1 23652:1 23664:1 23666:1 23695:3 23700:1 23704:1 23721:4 23738:1 23739:2 23774:1 23775:1 23784:1 23786:1 23803:1 23826:1 23845:2 23889:1 23895:1 23909:1 23923:1 23932:1 23943:1 23999:2 24009:1 24024:1 24025:1 24027:1 24055:1 24061:1 24092:3 24101:1 24104:1 24126:1 24129:1 24138:2 24140:1 24149:2 24161:1 24165:11 24166:2 24177:1 24185:1 24193:1 24195:1 24206:1 24220:2 24231:1 24233:1 24251:1 24256:1 24259:1 24263:1 24272:3 24275:3 24280:3 24285:2 24286:4 24289:1 24290:1 24310:1 24350:1 24357:1 24372:1 24377:1 24400:2 24408:1 24416:1 24420:1 24424:1 24425:1 24427:2 24443:6 24444:1 24446:1 24471:1 24472:1 24479:1 24500:1 24502:1 24521:1 24524:1 24553:1 24570:1 24592:1 24596:1 24600:1 24622:1 24625:1 24643:1 24653:1 24655:1 24658:5 24675:1 24676:1 24710:1 24713:1 24715:1 24720:1 24721:1 24733:1 24737:1 24740:1 24747:1 24773:2 24774:2 24784:1 24792:3 24809:1 24830:1 24839:1 24844:2 24870:1 24889:1 24892:1 24917:1 24928:1 24938:1 24944:3 24949:1 24953:1 24954:1 24964:1 24966:1 24972:1 24976:2 24994:1 25005:2 25019:1 25022:1 25026:1 25031:2 25032:1 25059:1 25068:1 25070:1 25073:2 25081:1 25109:1 25110:1 25125:3 25129:1 25132:2 25145:1 25177:1 25185:2 25191:1 25195:1 25200:1 25207:2 25213:1 25214:1 25224:2 25239:1 25250:1 25251:1 25254:1 25255:1 25256:1 25260:1 25267:2 25277:1 25281:2 25291:2 25295:1 25299:1 25302:1 25329:1 25330:1 25346:2 25370:1 25412:1 25454:1 25479:1 25487:1 25491:2 25514:1 25532:1 25538:1 25543:1 25560:1 25572:1 25600:2 25630:1 25644:1 25693:1 25698:1 25702:2 25717:2 25739:1 25752:1 25775:1 25777:1 25791:1 25793:3 25801:1 25804:2 25808:1 25809:1 25820:1 25822:1 25828:1 25829:5 25841:1 25843:1 25856:1 25861:2 25863:2 25867:1 25869:1 25871:5 25875:1 25880:1 25881:1 25888:1 25892:3 25893:1 25905:3 25909:1 25913:1 25941:1 25946:1 25964:1 25965:1 25983:1 26005:1 26012:2 26015:4 26022:4 26028:1 26054:4 26067:1 26080:1 26081:1 26092:1 26098:1 26099:1 26123:1 26125:1 26163:1 26174:1 26194:1 26213:1 26214:1 26221:1 26222:1 26229:1 26230:2 26236:1 26244:1 26265:3 26301:1 26305:1 26306:5 26312:1 26315:1 26325:2 26340:1 26368:3 26401:1 26452:1 26527:1 26538:1 26539:1 26540:1 26544:2 26547:3 26553:1 26557:1 26558:1 26565:1 26580:1 26612:1 26655:3 26664:2 26690:2 26696:2 26706:1 26710:1 26733:1 26745:1 26750:2 26751:1 26757:2 26759:1 26787:1 26790:3 26793:2 26806:1 26810:1 26832:1 26843:1 26848:1 26855:1 26862:1 26879:1 26883:3 26889:1 26891:1 26910:1 26920:2 26923:1 26940:1 26957:1 26961:2 26973:1 26978:1 26979:3 26986:2 26987:2 26988:1 26990:1 26996:1 27031:4 27034:1
1 13:1 35:1 39:1 47:1 50:1 55:1 89:1 120:1 137:1 138:3 139:1 144:1 150:1 157:1 165:1 169:2 182:5 192:1 222:1 233:1 238:6 255:3 264:1 280:1 306:1 315:3 317:3 327:3 334:3 339:1 346:2 362:2 372:1 382:1 395:5 397:3 404:1 412:1 445:1 446:1 472:1 500:1 511:1 515:2 532:1 544:3 552:1 568:1 578:1 582:2 584:1 588:1 604:2 630:1 665:1 678:1 683:1 711:1 723:1 726:1 745:2 751:1 764:1 789:5 794:1 798:1 800:1 802:3 808:1 822:9 826:4 837:3 854:2 868:1 872:1 873:4 874:2 875:6 877:1 878:1 880:2 882:1 894:2 912:3 915:3 926:1 953:2 958:1 972:1 1002:1 1013:2 1017:1 1035:1 1037:1 1059:2 1061:1 1064:1 1108:3 1109:2 1114:1 1116:1 1122:1 1125:1 1141:1 1154:1 1158:2 1173:2 1187:1 1193:2 1195:1 1228:1 1244:1 1262:1 1264:1 1266:1 1269:1 1279:1 1292:1 1316:1 1324:1 1325:2 1346:1 1364:1 1366:1 1371:2 1379:1 1392:1 1397:1 1402:1 1405:2 1419:1 1437:1 1445:1 1448:4 1454:7 1456:2 1465:1 1469:1 1490:2 1499:1 1501:1 1510:1 1514:1 1523:1 1526:1 1530:2 1542:2 1553:1 1555:1 1559:1 1568:1 1571:1 1580:1 1584:1 1587:1 1592:1 1596:1 1600:1 1606:1 1615:1 1619:1 1634:2 1635:1 1652:1 1653:5 1659:1 1663:1 1675:1 1681:1 1684:2 1687:1 1688:1 1696:6 1703:1 1723:3 1724:2 1737:1 1757:1 1759:4 1761:1 1764:1 1794:1 1801:2 1807:1 1809:1 1822:2 1866:1 1870:4 1875:1 1881:1 1885:1 1892:2 1897:1 1899:1 1904:1 1907:2 1925:1 1931:1 1938:1 1956:1 1959:1 1976:1 1978:1 1984:1 1988:2 1990:1 2004:1 2027:8 2037:1 2046:1 2051:1 2053:1 2071:1 2078:1 2092:2 2103:3 2107:1 2119:1 2120:1 2123:1 2126:2 2142:2 2143:2 2147:2 2148:4 2150:1 2154:2 2157:2 2158:2 2159:1 2160:1 2161:2 2167:4 2170:3 2172:5 2173:4 2185:1 2196:1 2219:1 2224:1 2226:3 2229:1 2248:1 2257:1 2274:1 2275:1 2277:1 2285:1 2293:1 2294:1 2296:1 2328:1 2333:1 2342:1 2350:1 2351:1 2360:1 2367:1 2377:3 2388:1 2390:1 2405:1 2413:1 2417:1 2432:3 2435:2 2437:1 2439:5 2443:1 2444:1 2445:1 2454:1 2457:1 2478:4 2479:1 2483:1 2496:2 2503:1 2504:1 2505:1 2506:1 2513:6 2520:1 2526:1 2529:5 2535:4 2537:1 2545:1 2547:1 2555:1 2557:1 2562:3 2563:2 2574:1 2589:1 2591:2 2597:2 2602:1 2638:1 2640:2 2641:2 2654:2 2659:1 2662:3 2667:2 2671:1 2691:1 2716:1 2738:2 2745:1 2749:1 2752:12 2773:2 2774:1 2776:1 2777:1 2779:1 2786:2 2791:2 2811:12 2813:1 2836:2 2839:2 2848:1 2856:1 2866:1 2893:1 2898:1 2902:1 2907:1 2917:1 2918:5 2934:3 2939:1 2948:1 2970:1 2989:1 2993:1 2998:1 3006:2 3014:1 3027:2 3042:2 3057:1 3089:1 3090:1 3128:1 3129:2 3130:1 3134:1 3149:6 3193:1 3225:2 3263:1 3264:1 3265:1 3277:1 3283:1 3285:1 3286:1 3291:1 3305:1 3328:1 3343:1 3358:2 3362:1 3383:1 3384:10 3399:1 3403:2 3405:1 3406:1 3409:1 3425:1 3429:1 3438:1 3477:1 3479:1 3480:1 3484:1 3489:3 3493:1 3501:1 3548:1 3549:1 3552:1 3554:1 3559:2 3562:1 3565:1 3569:1 3576:1 3581:1 3596:1 3599:1 3603:2 3608:1 3610:1 3626:2 3628:1 3631:1 3648:2 3663:1 3664:1 3668:4 3670:1 3673:2 3678:2 3687:2 3700:2 3715:1 3716:2 3732:1 3734:2 3738:1 3756:1 3765:6 3766:3 3772:2 3808:1 3810:2 3813:1 3818:1 3837:1 3839:2 3857:1 3864:1 3866:2 3875:1 3891:1 3910:1 3924:1 3932:1 3937:3 3940:1 3941:1 3944:2 3950:1 3954:2 3977:1 3981:1 3992:1 4008:1 4025:1 4027:1 4045:7 4075:3 4081:1 4090:1 4101:1 4104:1 4114:2 4127:2 4133:1 4149:1 4152:1 4156:2 4177:3 4194:1 4202:1 4203:1 4211:1 4225:2 4246:1 4249:1 4252:1 4256:1 4257:2 4267:1 4276:1 4304:1 4314:2 4327:1 4331:1 4355:4 4363:2 4371:1 4377:2 4380:1 4397:4 4420:2 4437:1 4440:2 4443:3 4456:3 4459:1 4468:1 4469:2 4475:1 4496:1 4523:1 4549:1 4565:10 4567:1 4574:1 4576:1 4586:1 4601:1 4613:1 4623:1 4664:1 4669:2 4684:1 4685:4 4687:5 4688:2 4690:1 4693:1 4695:1 4696:1 4698:1 4700:1 4701:1 4703:4 4704:3 4706:1 4708:2 4709:4 4716:3 4721:1 4733:1 4764:1 4776:1 4789:2 4796:1 4820:1 4891:1 4903:1 4917:1 4930:1 4973:1 4977:1 5002:2 5008:2 5018:1 5061:1 5066:2 5088:3 5101:1 5121:1 5140:1 5146:1 5157:2 5163:1 5171:1 5180:1 5188:1 5197:1 5220:1 5230:1 5252:1 5254:1 5284:1 5287:1 5292:1 5298:2 5302:1 5313:4 5314:1 5316:2 5317:1 5320:2 5321:1 5336:1 5337:1 5369:3 5379:1 5380:1 5394:6 5403:1 5406:2 5468:1 5481:1 5483:1 5485:1 5503:1 5509:1 5510:1 5516:1 5522:2 5538:1 5549:1 5562:1 5568:1 5569:1 5576:2 5590:2 5594:1 5610:5 5612:1 5613:1 5619:1 5620:2 5628:1 5629:1 5632:1 5636:1 5668:1 5673:1 5678:1 5680:1 5688:1 5692:1 5693:1 5696:10 5715:1 5735:2 5742:1 5761:1 5772:1 5787:3 5797:1 5812:5 5817:1 5824:1 5869:1 5872:1 5890:1 5897:1 5898:1 5901:1 5905:2 5906:3 5911:1 5912:1 5915:2 5921:2 5923:3 5924:2 5958:1 5997:1 6010:1 6046:1 6051:4 6052:2 6063:1 6106:1 6115:1 6124:1 6133:1 6148:1 6154:1 6177:1 6191:2 6199:2 6208:1 6213:1 6222:1 6270:1 6292:1 6295:1 6298:1 6301:1 6316:7 6323:2 6327:1 6329:1 6336:1 6338:1 6344:1 6355:2 6375:1 6378:1 6385:1 6387:1 6389:1 6424:1 6426:3 6437:1 6442:1 6448:2 6465:1 6470:1 6476:1 6479:1 6483:2 6491:1 6507:1 6525:1 6529:1 6530:1 6537:1 6545:1 6546:1 6553:1 6563:6 6569:2 6595:1 6596:1 6600:1 6606:1 6609:1 6610:2 6623:3 6624:1 6626:1 6631:5 6634:1 6637:1 6657:1 6658:1 6670:1 6678:1 6702:1 6707:3 6716:2 6724:1 6735:1 6752:2 6755:1 6757:1 6765:1 6788:1 6798:1 6806:1 6812:1 6824:1 6871:1 6875:1 6879:1 6917:1 6931:1 6935:2 6936:1 6940:1 6945:1 6951:3 6955:1 6971:4 6974:2 6988:1 6989:2 6998:1 7002:1 7012:1 7020:2 7028:1 7045:1 7051:1 7053:1 7066:1 7067:1 7076:1 7081:1 7114:1 7120:1 7138:2 7153:3 7154:6 7165:1 7170:1 7173:3 7176:2 7178:3 7183:1 7198:2 7199:2 7200:1 7213:36 7214:1 7220:1 7222:1 7228:1 7229:5 7231:3 7236:2 7270:1 7276:1 7278:1 7287:1 7297:1 7301:3 7302:2 7307:1 7309:1 7320:1 7322:1 7331:1 7341:1 7358:1 7360:1 7380:2 7388:1 7392:1 7410:1 7440:1 7451:1 7453:1 7454:3 7483:1 7489:1 7490:1 7491:1 7501:2 7549:1 7559:1 7569:1 7591:1 7592:1 7600:1 7604:1 7608:1 7628:1 7631:1 7639:1 7643:1 7644:2 7654:1 7663:1 7677:1 7700:18 7706:1 7724:3 7726:1 7729:1 7731:2 7732:1 7773:3 7776:1 7777:1 7781:1 7810:1 7821:2 7825:2 7827:1 7830:1 7844:1 7854:1 7855:4 7860:2 7868:1 7894:2 7896:1 7902:1 7906:1 7918:1 7920:1 7930:1 7937:1 7939:1 7957:1 7958:1 7966:1 7969:1 8028:1 8033:1 8034:1 8038:1 8039:1 8041:1 8048:1 8061:1 8064:1 8076:4 8087:2 8090:3 8109:1 8115:1 8122:1 8127:2 8130:1 8145:1 8146:1 8162:2 8191:1 8196:1 8233:1 8234:1 8240:1 8244:1 8271:1 8272:1 8285:1 8293:1 8316:1 8319:1 8320:1 8324:3 8347:2 8353:1 8360:2 8361:1 8370:1 8377:1 8394:1 8395:1 8407:1 8415:3 8416:1 8417:1 8423:1 8425:1 8429:1 8436:1 8444:1 8455:4 8477:1 8500:1 8505:5 8506:5 8516:2 8551:1 8561:1 8566:1 8570:2 8589:1 8596:1 8603:1 8605:1 8607:2 8609:2 8629:1 8644:1 8661:1 8672:1 8681:2 8683:1 8689:1 8692:4 8694:1 8715:2 8734:4 8770:1 8771:1 8795:1 8802:1 8807:1 8823:2 8835:2 8840:1 8852:1 8858:1 8865:1 8888:1 8901:1 8905:1 8913:1 8919:7 8924:2 8956:3 8975:3 8981:1 9005:1 9024:1 9028:1 9031:3 9032:2 9034:2 9061:1 9066:1 9096:1 9099:1 9107:1 9142:2 9163:1 9173:2 9186:1 9196:1 9200:1 9201:1 9210:1 9242:1 9243:1 9248:1 9249:1 9262:1 9266:1 9289:1 9294:1 9296:1 9298:1 9301:5 9318:3 9325:3 9327:2 9336:1 9354:2 9371:1 9372:1 9396:1 9398:1 9410:1 9415:2 9427:1 9434:1 9444:1 9449:3 9453:1 9481:1 9485:1 9490:10 9492:1 9493:1 9497:2 9501:1 9519:1 9520:1 9535:1 9540:1 9572:1 9587:1 9588:2 9590:1 9597:1 9622:1 9628:1 9643:1 9644:1 9646:1 9649:1 9651:3 9661:1 9663:1 9665:2 9702:1 9715:4 9720:1 9722:1 9723:1 9729:1 9732:1 9739:1 9742:1 9747:1 9755:4 9769:1 9771:1 9787:1 9803:1 9810:1 9817:1 9819:1 9823:2 9827:1 9837:2 9846:1 9864:1 9866:2 9877:1 9879:1 9881:1 9886:5 9889:2 9899:1 9900:3 9905:1 9910:1 9920:1 9926:1 9943:2 9953:3 9954:1 9964:1 9982:1 9983:1 9991:3 9995:1 10013:1 10026:1 10028:1 10035:3 10047:1 10057:4 10071:1 10080:1 10092:1 10093:1 10106:2 10140:1 10180:1 10191:1 10201:1 10206:1 10224:1 10225:1 10239:1 10240:2 10242:1 10245:1 10246:2 10252:1 10261:1 10264:5 10265:5 10268:1 10276:1 10282:2 10283:2 10287:1 10288:1 10289:3 10293:1 10310:3 10313:1 10321:1 10336:2 10345:1 10372:1 10373:1 10376:2 10392:1 10406:1 10411:1 10424:1 10434:1 10436:1 10440:1 10466:1 10493:1 10515:1 10518:1 10532:2 10556:1 10575:1 10586:1 10592:1 10597:1 10611:2 10614:1 10617:1 10627:1 10630:2 10632:1 10633:1 10635:1 10644:2 10646:1 10647:1 10648:2 10657:1 10663:2 10667:1 10678:1 10693:11 10694:1 10696:1 10707:1 10718:1 10734:3 10742:1 10745:2 10746:2 10756:1 10759:1 10788:2 10799:2 10803:1 10813:2 10818:2 10831:1 10847:1 10859:1 10863:1 10890:1 10906:1 10924:1 10932:3 10934:1 10937:1 10950:1 10951:2 10956:2 10957:1 10960:1 10962:1 10968:1 10969:1 10977:1 10988:1 10991:1 10992:1 10998:1 11006:3 11009:2 11031:1 11055:1 11073:1 11100:1 11118:1 11120:1 11135:1 11141:1 11166:5 11173:1 11184:1 11188:2 11189:1 11201:1 11206:1 11214:1 11220:1 11227:1 11243:2 11261:1 11263:1 11283:1 11301:1 11306:1 11314:1 11321:1 11327:1 11333:1 11365:1 11372:1 11380:5 11381:1 11382:2 11394:1 11406:2 11412:1 11415:1 11418:1 11424:1 11476:1 11478:1 11479:1 11502:1 11506:1 11513:1 11520:1 11542:1 11547:1 11557:1 11635:1 11638:3 11662:2 11674:1 11689:1 11695:1 11705:1 11718:1 11720:2 11721:1 11736:2 11745:1 11758:1 11774:1 11824:1 11831:1 11836:1 11839:1 11840:2 11847:1 11859:1 11882:8 11886:3 11899:2 11904:1 11915:1 11923:1 11928:1 11929:1 11936:2 11943:1 11954:1 11959:1 11964:1 11980:2 11981:1 11983:1 11989:1 12016:1 12039:1 12045:1 12048:1 12081:1 12090:1 12091:2 12100:1 12101:1 12110:1 12112:1 12134:1 12151:3 12161:1 12208:1 12231:1 12252:1 12254:2 12257:4 12269:1 12274:2 12283:2 12290:1 12306:5 12323:1 12325:2 12346:1 12351:3 12352:1 12385:1 12386:1 12387:1 12389:1 12399:4 12400:1 12410:2 12413:1 12428:1 12436:1 12437:1 12446:1 12452:1 12463:11 12469:1 12506:2 12508:1 12515:1 12533:1 12544:1 12547:1 12557:1 12559:1 12590:3 12613:1 12616:6 12617:1 12633:1 12642:1 12645:1 12668:2 12685:1 12692:1 12694:1 12703:2 12705:1 12707:1 12714:1 12719:1 12721:1 12728:6 12729:1 12732:1 12734:1 12736:2 12737:1 12741:7 12742:1 12760:1 12761:1 12763:1 12765:1 12787:1 12814:1 12831:1 12842:1 12887:3 12926:1 12929:1 12932:1 12939:1 12941:1 12946:1 12960:1 12978:2 12986:1 12999:1 13005:7 13025:2 13032:1 13041:1 13064:1 13076:1 13077:1 13085:1 13103:1 13111:1 13131:1 13161:1 13173:1 13180:1 13188:1 13197:1 13211:1 13237:1 13245:2 13261:3 13277:1 13288:1 13309:1 13320:1 13380:1 13383:2 13384:3 13391:1 13404:1 13406:1 13410:2 13412:1 13442:1 13452:2 13470:1 13479:1 13480:1 13499:1 13524:2 13548:1 13554:1 13556:1 13563:2 13567:1 13578:3 13585:2 13630:1 13632:2 13637:2 13641:1 13679:1 13680:1 13690:1 13713:1 13720:1 13731:1 13756:3 13768:1 13771:2 13804:1 13807:1 13850:1 13891:2 13892:2 13895:1 13902:1 13912:1 13932:1 13977:1 13979:3 13984:1 13997:1 13998:1 14032:1 14087:1 14094:2 14115:1 14155:1 14182:1 14187:1 14204:1 14211:1 14212:1 14213:1 14226:1 14240:1 14245:2 14248:1 14270:1 14274:1 14295:2 14311:1 14315:1 14318:1 14334:1 14345:1 14354:1 14362:1 14387:1 14391:1 14397:3 14409:1 14419:1 14424:2 14435:1 14460:1 14467:1 14484:1 14486:1 14489:2 14552:1 14553:1 14564:2 14575:1 14579:3 14584:1 14586:1 14593:1 14605:3 14606:1 14609:1 14612:1 14624:1 14626:1 14639:1 14658:2 14666:1 14703:2 14709:1 14719:3 14726:1 14737:1 14739:3 14753:1 14764:2 14782:1 14802:1 14819:1 14847:1 14853:1 14857:10 14872:1 14876:3 14900:2 14904:1 14943:1 14958:1 14962:2 14972:2 14976:1 14990:2 14994:1 15008:1 15015:1 15029:1 15030:1 15046:1 15052:1 15062:1 15064:1 15068:1 15074:2 15100:1 15117:1 15122:1 15128:3 15130:2 15131:2 15132:4 15133:1 15135:2 15137:1 15139:1 15140:3 15143:1 15144:1 15147:1 15151:1 15161:1 15204:1 15206:2 15232:1 15251:1 15255:1 15256:1 15279:1 15284:1 15288:2 15289:1 15307:1 15328:1 15336:1 15370:1 15418:1 15430:1 15434:2 15445:1 15446:2 15455:1 15456:1 15466:1 15470:5 15475:1 15478:2 15487:1 15495:1 15496:1 15501:2 15505:1 15509:1 15513:1 15522:3 15526:2 15534:1 15544:1 15585:7 15588:1 15611:1 15613:3 15618:1 15671:1 15672:1 15678:2 15689:1 15695:2 15705:1 15706:1 15720:1 15722:2 15756:2 15778:4 15791:1 15802:1 15811:1 15823:1 15849:1 15878:2 15879:2 15895:1 15898:1 15936:2 15946:1 15950:1 15973:1 15980:1 15987:2 15992:1 16006:1 16022:1 16034:2 16039:1 16055:1 16072:1 16116:1 16119:1 16159:1 16163:1 16183:1 16187:1 16199:2 16202:1 16212:1 16213:2 16218:1 16224:1 16232:3 16238:2 16240:2 16244:1 16250:4 16284:1 16287:1 16288:1 16293:1 16294:1 16298:1 16305:1 16315:1 16316:1 16331:1 16368:1 16369:1 16389:3 16392:1 16403:1 16416:2 16427:1 16428:1 16434:1 16435:1 16451:1 16453:1 16482:1 16483:1 16484:1 16508:1 16513:1 16518:2 16554:1 16557:1 16578:1 16594:2 16602:1 16616:1 16684:1 16709:1 16710:1 16720:1 16740:2 16814:2 16815:1 16823:1 16833:1 16844:1 16862:1 16879:1 16907:1 16934:1 16937:2 16951:1 16981:1 16999:7 17025:1 17050:1 17071:1 17087:11 17097:2 17099:1 17103:3 17128:1 17142:1 17156:1 17184:4 17192:2 17204:2 17218:1 17243:1 17251:2 17263:2 17276:1883 17285:1 17289:1 17301:1 17302:1 17347:1 17351:1 17353:1 17374:2 17420:1 17421:1 17445:1 17465:1 17467:1 17469:1 17472:2 17474:2 17475:2 17495:1 17515:1 17526:1 17551:1 17552:1 17592:1 17595:1 17599:2 17608:1 17644:1 17654:3 17684:2 17697:1 17699:1 17707:2 17717:1 17737:1 17748:2 17754:1 17765:1 17787:1 17791:2 17795:1 17803:1 17809:1 17817:1 17836:2 17837:2 17855:2 17859:1 17862:1 17870:2 17876:1 17895:2 17896:1 17904:1 17913:1 17917:2 17927:3 17951:1 17966:1 17970:2 17971:1 17978:1 17992:2 17999:1 18009:1 18011:1 18043:1 18047:4 18052:1 18054:2 18062:1 18070:1 18075:4 18085:1 18090:1 18101:1 18104:2 18115:2 18116:1 18123:1 18141:1 18156:1 18159:1 18163:1 18178:1 18183:1 18187:2 18193:1 18194:1 18197:1 18228:1 18233:1 18234:1 18240:1 18271:1 18282:2 18294:1 18295:2 18296:1 18297:1 18301:1 18303:1 18308:1 18323:1 18326:1 18328:1 18332:1 18339:1 18343:1 18349:1 18359:1 18371:1 18374:1 18381:1 18382:1 18390:1 18420:1 18422:4 18427:1 18428:3 18430:1 18474:1 18492:1 18495:1 18499:1 18501:1 18503:2 18504:1 18508:1 18519:1 18521:1 18529:2 18533:1 18534:2 18536:2 18538:1 18548:1 18556:4 18564:2 18580:1 18582:1 18598:1 18603:1 18604:3 18627:1 18628:1 18638:1 18639:1 18645:1 18653:1 18658:1 18665:1 18685:1 18690:1 18691:1 18707:1 18716:3 18718:12 18719:2 18726:1 18735:3 18738:1 18756:1 18784:1 18792:1 18805:1 18811:1 18817:1 18821:1 18835:1 18838:1 18847:1 18848:1 18866:1 18868:1 18875:1 18905:4 18919:1 18933:1 18937:2 18941:1 18949:1 18960:1 18962:1 18969:2 18996:6 19013:1 19022:1 19039:1 19040:1 19057:1 19085:2 19101:3 19112:1 19117:1 19119:1 19125:1 19128:1 19132:1 19133:1 19140:1 19143:1 19175:2 19183:3 19189:2 19190:2 19201:2 19204:1 19209:1 19215:2 19243:3 19245:1 19254:2 19261:1 19279:2 19284:1 19293:1 19311:2 19317:1 19331:3 19334:1 19344:1 19349:2 19359:3 19385:2 19391:1 19394:1 19412:1 19415:1 19421:1 19439:2 19443:2 19447:1 19450:1 19451:1 19459:2 19478:1 19484:2 19506:2 19515:1 19516:1 19521:1 19522:1 19523:3 19537:2 19545:1 19546:1 19547:1 19552:1 19558:1 19564:1 19577:1 19581:1 19591:1 19595:1 19614:1 19620:1 19627:1 19629:1 19633:2 19636:2 19648:1 19661:1 19697:1 19757:1 19770:2 19773:1 19782:2 19785:2 19790:1 19791:1 19794:1 19795:1 19798:1 19806:1 19812:2 19821:2 19823:1 19830:1 19845:1 19866:1 19873:1 19880:1 19896:1 19897:1 19919:1 19921:1 19922:1 19927:1 19931:2 19934:1 19936:1 19951:1 19954:1 19959:2 19960:1 19963:1 19965:1 19976:1 19978:2 19989:1 19998:7 20001:1 20009:1 20017:2 20028:1 20041:1 20049:1 20061:1 20063:1 20066:1 20067:1 20071:1 20075:1 20125:2 20134:1 20138:2 20141:1 20142:1 20147:1 20149:1 20151:3 20154:1 20156:1 20166:2 20177:1 20179:1 20182:1 20205:1 20206:1 20210:2 20212:3 20240:1 20252:1 20316:3 20321:1 20322:2 20325:2 20326:2 20328:1 20329:1 20334:1 20337:1 20341:2 20352:4 20362:1 20368:1 20381:1 20396:2 20400:2 20403:1 20417:1 20444:1 20471:1 20473:2 20481:1 20492:1 20497:1 20503:1 20524:1 20529:1 20532:1 20534:1 20546:1 20553:1 20556:1 20567:1 20570:1 20572:3 20578:1 20587:1 20588:3 20592:2 20593:1 20599:1 20611:1 20628:2 20632:1 20633:1 20634:4 20647:1 20655:1 20656:5 20662:1 20666:1 20676:1 20692:1 20693:1 20719:7 20720:1 20733:1 20754:1 20772:1 20779:3 20780:1 20787:1 20796:1 20812:1 20842:1 20844:2 20864:1 20879:1 20887:4 20889:1 20900:3 20905:3 20914:1 20919:1 20924:1 20938:1 20940:3 20955:1 20962:1 20963:2 20968:3 20976:1 20991:1 21005:1 21026:1 21029:1 21062:1 21072:1 21073:1 21074:1 21079:1 21100:2 21115:4 21116:2 21130:1 21134:2 21138:1 21140:3 21150:3 21163:2 21176:1 21203:1 21215:1 21216:1 21218:2 21220:1 21234:1 21235:1 21257:1 21263:1 21266:1 21282:1 21284:1 21296:1 21303:2 21306:1 21309:2 21311:1 21340:3 21370:3 21385:1 21434:1 21453:3 21456:1 21462:5 21469:2 21479:1 21484:1 21488:3 21498:2 21500:1 21501:1 21502:1 21512:1 21520:4 21551:1 21559:1 21586:1 21599:1 21613:2 21624:1 21635:1 21642:1 21647:1 21650:1 21674:2 21682:1 21686:2 21694:1 21695:1 21703:1 21709:1 21730:2 21733:3 21742:1 21743:1 21755:1 21772:3 21773:1 21777:2 21792:1 21794:1 21800:1 21845:1 21846:4 21848:1 21861:1 21862:2 21863:1 21864:1 21865:1 21867:1 21869:1 21898:1 21913:1 21916:1 21917:1 21930:1 21981:2 21991:1 22014:2 22019:1 22053:1 22066:1 22068:2 22074:1 22076:1 22078:1 22088:1 22125:1 22130:1 22136:1 22146:1 22176:1 22196:1 22218:1 22230:2 22238:1 22260:1 22263:1 22282:2 22296:2 22304:1 22320:1 22328:7 22345:1 22352:1 22358:2 22380:1 22382:1 22389:1 22391:2 22400:1 22402:1 22403:1 22407:1 22412:1 22435:3 22457:2 22459:1 22467:1 22469:1 22478:1 22502:1 22522:1 22530:1 22531:1 22550:1 22553:1 22559:1 22564:3 22565:1 22571:1 22575:1 22578:2 22581:1 22582:1 22612:5 22626:1 22627:1 22629:1 22632:1 22640:1 22642:1 22644:1 22646:1 22662:8 22663:2 22675:1 22685:1 22688:2 22693:1 22695:1 22705:1 22709:1 22710:1 22713:1 22718:3 22726:2 22739:1 22755:1 22827:1 22853:1 22856:1 22862:1 22868:1 22876:2 22880:2 22886:2 22890:1 22895:1 22901:2 22903:2 22907:1 22923:1 22929:1 22943:1 22946:1 22953:1 22963:1 22974:2 22987:2 22992:1 22993:1 23012:2 23018:1 23024:2 23041:1 23077:10 23078:2 23101:1 23105:1 23106:1 23115:1 23130:1 23139:1 23144:1 23158:2 23161:1 23169:1 23170:1 23181:1 23188:1 23197:1 23202:1 23217:1 23222:1 23261:1 23291:9 23292:1 23307:1 23316:2 23363:1 23373:1 23375:5 23378:1 23404:2 23406:1 23426:1 23432:1 23436:2 23440:1 23446:1 23481:1 23497:1 23503:2 23505:1 23514:2 23528:1 23532:1 23545:1 23557:1 23601:1 23609:1 23613:1 23617:1 23631:1 23635:2 23639:3 23642:1 23648:1 23651:1 23652:1 23664:1 23666:1 23695:3 23700:1 23704:1 23721:4 23738:1 23739:2 23774:1 23775:1 23784:1 23786:1 23803:1 23826:1 23845:2 23889:1 23895:1 23909:1 23923:1 23932:1 23943:1 23999:2 24009:1 24024:1 24025:1 24027:1 24055:1 24061:1 24092:3 24101:1 24104:1 24126:1 24129:1 24138:2 24140:1 24149:2 24161:1 24165:11 24166:2 24177:1 24185:1 24193:1 24195:1 24206:1 24220:2 24231:1 24233:1 24245:1 24251:1 24255:1 24256:1 24259:1 24263:1 24272:3 24275:3 24280:3 24285:2 24286:4 24289:1 24290:1 24310:1 24350:1 24357:1 24372:1 24377:1 24400:2 24408:1 24416:1 24420:1 24424:1 24425:1 24427:2 24443:6 24444:1 24446:1 24471:1 24472:1 24479:1 24500:1 24502:1 24521:1 24524:1 24553:1 24570:1 24592:1 24596:1 24600:2 24622:1 24625:1 24643:1 24648:1 24653:1 24655:1 24658:5 24675:1 24676:1 24710:1 24713:1 24715:1 24720:1 24721:1 24733:1 24737:1 24740:1 24747:1 24773:2 24774:2 24784:1 24792:3 24809:1 24830:1 24839:1 24844:2 24870:1 24889:1 24892:1 24917:1 24928:1 24938:1 24944:3 24949:1 24953:1 24954:1 24964:1 24966:1 24972:1 24976:2 24994:1 25005:2 25019:2 25022:1 25026:1 25031:2 25032:1 25059:1 25068:1 25070:1 25073:2 25081:1 25109:1 25110:1 25125:4 25129:1 25132:2 25145:1 25177:1 25185:2 25191:1 25195:1 25200:1 25207:2 25213:1 25214:1 25224:2 25239:1 25250:1 25251:1 25254:1 25255:1 25256:1 25260:1 25267:2 25277:1 25281:2 25291:2 25295:1 25299:1 25302:1 25329:1 25330:1 25339:1 25346:2 25370:1 25389:1 25412:1 25454:1 25479:1 25487:1 25491:2 25514:2 25532:1 25538:1 25543:2 25560:1 25572:1 25600:2 25630:1 25644:1 25693:1 25698:1 25702:2 25717:2 25739:1 25752:1 25775:1 25777:1 25791:1 25793:3 25801:1 25804:2 25808:1 25809:2 25820:1 25822:1 25828:1 25829:5 25841:1 25843:1 25856:1 25861:2 25863:2 25867:1 25869:1 25871:5 25875:1 25880:1 25881:1 25888:1 25892:3 25893:1 25905:3 25909:1 25913:1 25941:1 25946:1 25964:1 25965:1 25983:1 26005:1 26012:2 26015:4 26022:4 26028:1 26054:4 26067:1 26071:1 26080:1 26081:1 26092:1 26098:1 26099:1 26123:1 26125:2 26163:1 26174:1 26194:1 26213:1 26214:1 26221:1 26222:1 26229:1 26230:2 26236:1 26244:1 26265:3 26301:1 26305:1 26306:6 26312:1 26315:1 26325:2 26340:1 26368:3 26401:1 26411:1 26452:1 26527:1 26538:1 26539:1 26540:1 26544:2 26547:3 26553:1 26557:1 26558:1 26565:1 26580:1 26612:1 26655:3 26664:2 26690:2 26696:2 26706:1 26710:1 26733:1 26745:1 26750:2 26751:1 26757:2 26759:1 26785:1 26787:1 26790:3 26793:2 26806:1 26810:1 26832:1 26843:1 26848:1 26855:1 26862:1 26879:1 26883:3 26889:1 26891:1 26910:1 26920:2 26923:1 26940:1 26957:1 26961:2 26973:1 26978:1 26979:3 26986:2 26987:3 26988:1 26990:1 26996:1 27031:5 27034:1
1 13:1 35:1 39:1 47:1 50:1 55:1 89:1 120:1 137:1 138:3 139:1 144:1 150:1 157:1 165:1 169:3 182:5 192:1 209:1 222:1 233:1 238:6 255:3 264:1 280:1 306:1 315:3 317:3 327:3 334:3 339:1 346:2 362:2 372:1 382:1 395:5 397:3 404:1 412:1 445:1 446:1 472:1 500:1 511:1 515:2 532:1 544:3 552:1 568:1 578:1 582:2 584:1 588:1 604:2 630:1 665:1 678:1 683:1 711:1 723:1 726:1 745:2 751:1 764:1 789:5 794:1 798:1 800:1 802:4 808:1 822:10 826:4 837:3 854:2 868:1 872:1 873:4 874:2 875:6 877:1 878:1 880:2 882:1 894:2 912:3 915:4 926:1 953:2 958:1 972:1 1002:1 1013:2 1017:1 1035:1 1037:1 1059:2 1061:1 1064:1 1108:3 1109:2 1114:1 1116:1 1122:1 1125:1 1141:1 1154:1 1158:2 1170:1 1173:2 1187:1 1193:2 1195:1 1228:1 1244:1 1262:1 1264:1 1266:1 1269:1 1279:1 1292:1 1316:1 1324:1 1325:2 1345:1 1346:2 1364:1 1366:1 1371:2 1379:1 1392:1 1397:1 1402:1 1405:2 1419:1 1437:1 1445:1 1448:4 1454:7 1456:2 1465:1 1469:1 1490:2 1499:1 1501:1 1510:1 1514:1 1523:1 1526:1 1530:2 1538:1 1542:2 1553:1 1555:1 1559:1 1568:1 1571:2 1580:1 1584:1 1587:1 1592:1 1596:1 1600:1 1606:1 1615:1 1619:1 1634:2 1635:1 1652:1 1653:5 1659:1 1663:1 1675:1 1681:1 1684:2 1687:1 1688:1 1696:6 1703:1 1723:4 1724:2 1737:1 1757:2 1759:4 1761:1 1764:1 1794:1 1801:2 1806:2 1807:1 1809:1 1822:2 1866:1 1870:4 1875:1 1881:1 1885:1 1892:2 1897:1 1899:1 1904:1 1907:2 1925:1 1931:1 1938:1 1956:1 1959:1 1976:2 1978:1 1983:1 1984:1 1988:2 1990:1 2004:1 2027:9 2037:1 2046:1 2051:1 2053:1 2071:1 2078:1 2092:2 2103:3 2107:1 2119:1 2120:1 2123:1 2126:2 2142:2 2143:2 2147:2 2148:4 2150:1 2154:2 2157:2 2158:2 2159:1 2160:1 2161:3 2167:4 2170:3 2172:5 2173:5 2185:1 2196:1 2219:1 2224:1 2226:3 2229:1 2234:1 2248:1 2257:1 2274:1 2275:1 2277:1 2285:1 2293:1 2294:1 2296:1 2328:1 2333:1 2342:1 2350:1 2351:1 2360:1 2367:1 2377:3 2388:1 2390:1 2405:1 2413:1 2417:1 2432:3 2435:2 2437:1 2439:5 2443:1 2444:1 2445:1 2454:1 2457:1 2478:4 2479:1 2483:1 2496:2 2503:1 2504:1 2505:1 2506:1 2513:6 2520:1 2526:1 2529:5 2535:4 2537:1 2545:1 2547:1 2555:2 2557:1 2562:3 2563:2 2574:1 2589:1 2591:2 2597:2 2602:1 2638:1 2640:2 2641:2 2654:2 2659:1 2662:3 2667:2 2671:1 2686:1 2691:1 2716:1 2738:3 2745:1 2749:1 2752:13 2773:2 2774:1 2776:1 2777:1 2779:1 2786:2 2791:2 2811:13 2813:1 2836:2 2839:2 2848:1 2856:1 2866:1 2893:1 2898:1 2902:1 2907:1 2917:1 2918:5 2934:3 2939:1 2948:1 2970:1 2979:1 2989:1 2993:1 2998:1 3006:2 3014:1 3027:2 3042:3 3057:1 3089:1 3090:1 3128:1 3129:2 3130:1 3134:1 3149:6 3193:1 3225:2 3263:1 3264:1 3265:1 3277:1 3283:1 3285:1 3286:1 3291:1 3305:1 3328:1 3343:1 3358:2 3362:1 3383:1 3384:11 3399:1 3403:2 3405:1 3406:2 3409:1 3425:1 3429:1 3438:1 3477:1 3479:1 3480:1 3484:1 3489:3 3490:1 3493:1 3501:1 3523:1 3548:1 3549:1 3552:1 3554:1 3559:2 3562:1 3565:1 3569:1 3576:1 3581:1 3596:1 3599:1 3603:2 3608:1 3610:1 3626:2 3628:1 3631:1 3640:1 3648:2 3663:1 3664:1 3668:4 3670:1 3673:2 3678:2 3687:2 3700:2 3715:1 3716:2 3732:1 3734:2 3738:1 3756:1 3765:6 3766:3 3772:2 3808:1 3810:2 3813:1 3818:1 3837:1 3839:2 3857:1 3864:1 3866:2 3875:1 3891:2 3910:1 3924:1 3932:1 3937:3 3940:1 3941:1 3944:2 3950:1 3954:2 3977:1 3981:1 3992:1 4008:1 4025:1 4027:1 4045:7 4075:3 4081:1 4090:1 4101:1 4104:1 4114:2 4127:2 4133:1 4149:1 4152:1 4156:2 4177:3 4194:1 4202:1 4203:1 4211:1 4225:2 4246:1 4249:1 4252:1 4256:1 4257:2 4267:1 4276:1 4292:1 4304:1 4314:3 4327:1 4331:1 4355:4 4363:2 4371:1 4377:2 4380:1 4397:4 4420:2 4437:1 4440:2 4443:3 4456:3 4459:1 4468:1 4469:2 4475:1 4496:1 4523:1 4549:1 4565:11 4567:1 4574:1 4576:1 4586:1 4601:1 4613:1 4623:1 4664:1 4669:2 4684:1 4685:4 4687:5 4688:2 4690:1 4693:1 4695:1 4696:1 4698:1 4700:1 4701:1 4703:5 4704:4 4706:1 4708:2 4709:5 4715:1 4716:3 4721:1 4733:1 4764:1 4776:1 4789:2 4796:1 4820:1 4891:1 4903:1 4917:1 4930:1 4937:2 4973:1 4977:1 5002:2 5008:2 5018:1 5061:1 5066:2 5088:3 5101:1 5121:1 5140:1 5146:1 5157:2 5163:1 5171:1 5180:1 5188:1 5197:1 5220:1 5230:1 5252:1 5254:1 5284:2 5287:1 5292:1 5298:2 5302:1 5313:4 5314:1 5316:2 5317:1 5320:2 5321:1 5336:1 5337:1 5369:3 5379:2 5380:1 5394:6 5403:1 5406:2 5468:1 5481:1 5483:1 5485:1 5503:1 5507:1 5509:1 5510:1 5516:1 5522:2 5538:1 5549:1 5562:1 5568:1 5569:2 5576:2 5590:2 5594:1 5610:5 5612:1 5613:1 5619:1 5620:2 5628:1 5629:1 5632:1 5636:1 5668:1 5673:1 5678:1 5680:1 5688:1 5692:1 5693:1 5696:10 5715:1 5735:2 5742:1 5761:1 5772:1 5787:3 5797:1 5812:6 5817:1 5824:1 5869:1 5872:1 5890:1 5897:1 5898:1 5901:1 5905:2 5906:3 5911:1 5912:1 5915:2 5921:2 5923:3 5924:2 5958:1 5997:1 6010:1 6046:1 6051:4 6052:2 6063:1 6106:1 6115:1 6124:1 6133:1 6148:1 6154:1 6177:1 6191:2 6199:2 6208:1 6213:1 6222:1 6270:1 6281:1 6292:1 6295:1 6298:1 6301:1 6316:7 6323:2 6327:2 6329:1 6336:1 6338:1 6344:1 6355:2 6375:1 6378:1 6385:1 6387:1 6389:1 6424:1 6426:3 6437:1 6442:1 6448:2 6465:1 6470:1 6476:1 6479:1 6483:2 6491:1 6507:1 6525:1 6529:1 6530:1 6537:1 6545:1 6546:1 6553:1 6563:6 6569:2 6595:1 6596:1 6600:1 6606:1 6609:1 6610:2 6618:1 6623:3 6624:1 6626:1 6631:5 6634:1 6637:1 6657:1 6658:1 6670:1 6678:1 6702:1 6707:3 6716:3 6724:1 6735:1 6752:2 6755:1 6757:1 6765:1 6788:1 6798:1 6806:1 6812:1 6824:1 6868:1 6871:1 6875:1 6879:1 6917:1 6931:1 6935:2 6936:1 6940:1 6945:1 6951:3 6955:1 6971:4 6972:1 6974:2 6988:1 6989:2 6998:1 7002:1 7012:1 7020:2 7023:1 7028:1 7045:1 7051:1 7053:1 7066:1 7067:1 7076:1 7081:1 7102:1 7114:1 7120:1 7138:2 7153:3 7154:6 7165:2 7170:1 7173:4 7176:2 7178:3 7183:1 7198:2 7199:2 7200:1 7213:37 7214:1 7220:1 7222:1 7228:1 7229:6 7231:3 7236:2 7270:1 7276:1 7278:1 7287:1 7297:1 7301:3 7302:2 7307:1 7309:1 7320:1 7322:1 7331:1 7341:1 7358:1 7360:1 7380:2 7388:1 7392:1 7410:1 7440:1 7451:1 7453:1 7454:3 7483:1 7489:1 7490:1 7491:1 7501:2 7549:1 7559:1 7569:1 7591:1 7592:1 7600:1 7604:1 7608:1 7628:1 7631:1 7639:1 7643:1 7644:2 7654:1 7663:1 7677:1 7700:19 7706:1 7724:3 7726:2 7729:1 7731:2 7732:1 7773:3 7776:1 7777:1 7781:1 7810:1 7821:2 7825:2 7827:1 7830:1 7844:1 7854:1 7855:4 7860:2 7868:1 7894:2 7896:1 7902:1 7906:1 7918:1 7920:1 7930:1 7937:1 7939:1 7957:1 7958:1 7966:1 7969:1 8028:1 8033:1 8034:1 8038:1 8039:1 8041:1 8048:1 8061:1 8064:1 8076:4 8087:2 8090:3 8109:1 8115:1 8122:1 8127:2 8130:1 8145:1 8146:1 8162:2 8191:1 8196:1 8233:1 8234:1 8240:1 8244:1 8271:1 8272:1 8285:1 8293:1 8316:1 8319:1 8320:1 8324:3 8347:2 8353:1 8360:2 8361:1 8370:1 8377:1 8394:1 8395:1 8407:1 8415:3 8416:1 8417:1 8423:1 8425:1 8429:1 8436:1 8444:1 8455:4 8477:1 8500:1 8505:6 8506:5 8516:2 8517:1 8551:1 8561:1 8566:1 8570:2 8589:1 8596:1 8603:1 8605:1 8607:2 8609:2 8629:1 8635:1 8644:1 8661:1 8672:1 8681:2 8683:1 8689:1 8692:5 8694:1 8715:2 8721:1 8734:4 8770:1 8771:1 8795:1 8802:1 8807:1 8823:2 8835:2 8840:1 8852:1 8858:1 8865:1 8888:1 8901:1 8905:1 8913:1 8919:7 8924:2 8956:3 8965:1 8975:3 8981:1 9005:1 9024:1 9028:1 9031:3 9032:3 9034:2 9061:1 9066:1 9096:1 9099:1 9107:1 9142:2 9163:1 9173:2 9186:1 9196:1 9200:1 9201:1 9210:1 9242:1 9243:1 9248:1 9249:1 9262:1 9266:1 9289:1 9294:1 9296:1 9298:1 9301:5 9318:3 9325:3 9327:2 9336:1 9354:2 9371:1 9372:1 9396:1 9398:1 9410:1 9415:2 9427:1 9434:1 9444:1 9449:3 9453:1 9481:1 9485:1 9490:10 9492:1 9493:2 9497:2 9501:1 9519:1 9520:1 9535:1 9540:1 9572:1 9587:1 9588:2 9590:1 9597:1 9622:1 9628:1 9643:1 9644:1 9646:1 9649:1 9651:4 9661:1 9663:1 9665:2 9702:1 9715:4 9720:1 9722:1 9723:1 9729:1 9732:1 9739:1 9742:1 9747:1 9749:1 9755:4 9769:1 9771:1 9787:1 9803:1 9810:1 9817:1 9819:1 9823:2 9827:1 9837:2 9846:1 9864:1 9866:2 9877:1 9879:1 9881:1 9886:5 9889:2 9899:1 9900:3 9905:1 9910:1 9920:1 9926:1 9943:2 9953:3 9954:2 9964:1 9982:1 9983:1 9991:3 9995:1 10013:1 10026:1 10028:1 10035:3 10047:1 10057:4 10071:1 10080:1 10092:1 10093:1 10106:2 10140:1 10180:1 10191:1 10201:1 10206:1 10224:1 10225:1 10239:1 10240:2 10242:1 10245:1 10246:2 10252:1 10261:1 10264:5 10265:5 10268:1 10276:1 10282:2 10283:2 10287:1 10288:1 10289:3 10293:1 10310:3 10313:1 10321:1 10336:2 10345:1 10372:1 10373:1 10376:2 10392:1 10406:1 10411:1 10424:1 10434:1 10436:1 10440:1 10466:1 10493:1 10515:1 10518:1 10530:1 10532:2 10556:1 10575:1 10586:1 10592:1 10597:2 10611:2 10614:1 10617:1 10627:1 10630:2 10632:1 10633:1 10635:2 10644:3 10646:1 10647:1 10648:2 10657:1 10663:2 10667:1 10678:1 10693:13 10694:1 10696:1 10707:1 10718:1 10730:1 10734:3 10742:1 10745:2 10746:2 10756:1 10759:1 10788:2 10799:2 10803:1 10813:2 10818:2 10831:1 10847:1 10859:1 10863:1 10890:1 10906:1 10924:1 10932:3 10933:1 10934:1 10937:1 10950:1 10951:2 10956:2 10957:1 10960:1 10962:1 10968:1 10969:1 10977:1 10988:1 10991:1 10992:1 10995:1 10998:1 11003:2 11006:3 11009:2 11031:1 11055:1 11073:1 11100:1 11118:1 11120:1 11135:1 11141:1 11166:5 11173:1 11184:1 11188:2 11189:1 11201:1 11206:1 11214:1 11220:2 11227:1 11243:2 11261:1 11263:1 11283:1 11301:2 11306:1 11314:1 11321:1 11327:1 11333:1 11365:1 11372:1 11380:5 11381:1 11382:2 11394:1 11406:2 11412:1 11415:1 11418:1 11424:1 11476:1 11478:1 11479:1 11502:1 11506:1 11513:1 11520:1 11534:1 11542:1 11547:1 11557:1 11635:1 11638:3 11662:2 11674:1 11689:1 11695:1 11705:1 11718:1 11720:2 11721:1 11736:3 11745:1 11758:1 11774:1 11824:1 11831:1 11836:1 11839:1 11840:2 11847:1 11859:1 11882:9 11886:3 11899:2 11904:1 11915:1 11923:1 11928:1 11929:1 11936:2 11943:1 11954:1 11959:1 11964:1 11980:2 11981:1 11983:1 11989:1 12016:1 12039:1 12045:1 12048:1 12069:1 12081:1 12090:1 12091:2 12100:1 12101:1 12110:1 12112:1 12134:1 12151:3 12161:1 12208:1 12231:1 12252:1 12254:2 12257:4 12269:1 12274:2 12283:2 12290:1 12306:5 12323:1 12325:2 12346:1 12351:3 12352:1 12385:1 12386:1 12387:1 12389:1 12399:4 12400:1 12410:2 12413:1 12428:1 12436:1 12437:1 12446:1 12452:1 12463:11 12469:1 12474:1 12506:2 12508:1 12515:2 12533:1 12544:1 12547:1 12557:1 12559:1 12590:3 12613:1 12616:6 12617:1 12633:1 12642:1 12645:1 12668:2 12685:1 12692:1 12694:1 12703:2 12705:1 12707:1 12714:1 12719:1 12721:1 12728:6 12729:1 12732:1 12734:1 12736:2 12737:1 12741:7 12742:2 12760:1 12761:1 12763:1 12765:1 12787:1 12814:1 12831:1 12842:1 12872:1 12887:3 12919:1 12926:1 12929:1 12932:1 12939:1 12941:1 12946:1 12960:1 12978:2 12986:1 12999:1 13005:7 13025:2 13032:1 13041:1 13064:1 13076:1 13077:1 13085:1 13103:1 13111:1 13131:1 13161:1 13173:1 13180:1 13188:1 13197:1 13211:1 13237:1 13245:2 13261:4 13277:1 13288:1 13309:1 13320:1 13380:1 13383:3 13384:3 13391:1 13404:1 13406:1 13410:2 13412:1 13442:1 13452:2 13470:1 13479:1 13480:1 13499:1 13524:2 13535:1 13548:1 13554:1 13556:1 13563:2 13567:1 13578:3 13585:2 13630:1 13632:2 13637:2 13641:1 13679:1 13680:1 13690:1 13713:1 13720:1 13723:1 13731:1 13756:3 13768:1 13771:2 13804:1 13807:1 13850:1 13891:2 13892:2 13895:1 13902:1 13912:1 13932:1 13977:1 13979:3 13984:1 13997:1 13998:1 14004:1 14032:1 14087:1 14094:2 14115:1 14155:1 14170:1 14182:1 14187:1 14204:1 14211:1 14212:1 14213:1 14226:1 14240:1 14245:2 14248:1 14270:1 14274:1 14295:2 14311:2 14315:1 14318:1 14334:1 14345:2 14354:1 14362:1 14378:1 14387:1 14391:1 14397:3 14409:1 14419:1 14424:2 14435:1 14460:1 14467:1 14484:1 14486:1 14489:2 14552:1 14553:1 14564:2 14575:1 14579:3 14584:1 14586:1 14593:1 14605:3 14606:1 14609:1 14612:1 14624:1 14626:1 14639:1 14658:2 14666:2 14703:2 14706:1 14709:1 14719:3 14726:1 14737:1 14739:3 14753:1 14764:2 14782:1 14802:1 14819:1 14841:1 14847:1 14853:1 14857:10 14872:1 14876:3 14900:2 14904:1 14943:1 14958:1 14962:2 14972:2 14976:1 14990:2 14994:1 15008:1 15015:1 15029:1 15030:1 15046:1 15052:1 15062:1 15064:1 15068:1 15074:2 15100:1 15117:1 15122:1 15128:3 15130:2 15131:2 15132:5 15133:1 15135:2 15137:1 15139:1 15140:3 15143:1 15144:1 15147:1 15151:1 15161:1 15204:1 15206:2 15232:1 15251:1 15255:1 15256:1 15279:1 15284:1 15288:2 15289:1 15307:1 15328:1 15336:1 15370:1 15418:1 15430:1 15434:2 15445:1 15446:2 15455:1 15456:1 15466:1 15470:5 15475:1 15478:2 15487:1 15495:1 15496:1 15501:2 15505:1 15509:2 15513:1 15522:3 15526:2 15534:1 15544:1 15585:8 15588:1 15611:1 15613:3 15618:1 15671:1 15672:1 15678:2 15689:1 15695:2 15705:1 15706:1 15720:1 15722:2 15756:2 15778:5 15791:1 15802:1 15811:1 15823:1 15849:1 15878:2 15879:2 15895:1 15898:1 15936:2 15946:1 15950:1 15973:1 15980:1 15987:2 15992:1 16006:1 16022:1 16034:2 16039:1 16055:1 16072:1 16116:1 16119:1 16159:1 16163:1 16183:1 16187:1 16199:2 16202:1 16212:1 16213:2 16218:1 16224:1 16232:3 16238:2 16240:2 16244:2 16250:5 16284:1 16287:1 16288:1 16293:1 16294:1 16298:1 16305:1 16315:1 16316:1 16331:1 16368:1 16369:1 16389:3 16392:1 16403:1 16416:2 16427:1 16428:1 16434:1 16435:1 16451:1 16453:1 16482:1 16483:1 16484:1 16508:1 16513:1 16518:2 16554:1 16557:1 16578:1 16594:2 16602:1 16616:1 16646:1 16684:1 16709:1 16710:1 16720:1 16740:2 16814:2 16815:1 16823:1 16833:1 16838:1 16844:1 16862:1 16879:1 16907:1 16934:1 16937:2 16951:1 16981:1 16999:8 17025:1 17050:1 17071:1 17087:12 17097:2 17099:1 17103:5 17128:2 17142:1 17156:1 17184:4 17192:2 17204:2 17218:1 17243:1 17251:2 17263:2 17276:2028 17285:1 17289:1 17301:1 17302:1 17347:1 17351:1 17353:1 17374:2 17420:1 17421:1 17445:1 17465:1 17467:1 17469:1 17472:2 17474:3 17475:2 17495:1 17515:1 17526:1 17535:1 17551:1 17552:1 17592:1 17595:1 17599:2 17608:1 17644:1 17654:3 17684:2 17697:1 17699:1 17707:2 17709:1 17717:1 17737:1 17748:2 17754:1 17765:1 17787:1 17791:2 17795:1 17803:1 17809:1 17817:1 17836:2 17837:2 17855:2 17859:1 17862:1 17870:2 17876:1 17895:2 17896:1 17904:1 17913:1 17917:2 17927:4 17951:1 17966:1 17970:2 17971:1 17978:1 17992:3 17999:1 18009:1 18011:1 18043:1 18047:4 18052:1 18054:2 18062:2 18070:1 18075:4 18085:1 18090:1 18101:1 18104:2 18115:2 18116:1 18123:1 18141:1 18156:1 18159:1 18163:1 18178:1 18183:1 18187:2 18193:1 18194:1 18197:1 18228:1 18233:1 18234:1 18240:1 18271:1 18282:2 18294:1 18295:2 18296:1 18297:1 18301:1 18303:1 18308:1 18323:1 18326:1 18328:1 18332:1 18339:1 18343:1 18349:1 18359:1 18371:1 18374:1 18381:1 18382:1 18390:1 18416:1 18420:1 18422:4 18427:1 18428:3 18430:1 18474:1 18477:1 18492:1 18495:1 18499:1 18501:1 18503:2 18504:1 18508:2 18519:1 18521:1 18529:2 18533:1 18534:2 18536:2 18538:1 18548:1 18556:4 18564:2 18580:1 18582:1 18596:1 18598:1 18603:1 18604:4 18627:1 18628:1 18638:1 18639:1 18645:1 18653:1 18658:1 18665:2 18685:1 18690:1 18691:1 18707:1 18716:3 18718:13 18719:2 18726:1 18735:3 18738:1 18756:1 18784:1 18792:1 18805:1 18811:1 18817:1 18821:1 18835:1 18838:1 18847:1 18848:1 18866:1 18868:1 18875:1 18905:4 18919:2 18933:1 18937:2 18941:1 18949:2 18960:1 18962:1 18969:2 18996:6 19005:1 19013:1 19022:1 19039:1 19040:1 19057:1 19080:1 19085:2 19101:3 19112:1 19117:1 19119:1 19125:1 19128:1 19132:1 19133:1 19140:1 19143:2 19175:2 19183:3 19189:2 19190:2 19201:2 19204:1 19207:1 19209:1 19215:2 19243:4 19245:2 19254:2 19261:1 19279:2 19284:1 19293:1 19311:2 19317:1 19324:2 19331:4 19334:1 19344:1 19349:2 19359:3 19385:2 19391:1 19394:1 19412:1 19415:1 19421:1 19422:1 19431:1 19439:2 19443:2 19447:1 19450:1 19451:1 19459:2 19478:1 19484:2 19506:2 19515:1 19516:1 19521:1 19522:1 19523:3 19537:2 19545:1 19546:1 19547:1 19551:1 19552:1 19558:2 19564:1 19577:1 19581:1 19591:1 19595:1 19614:1 19620:1 19627:1 19629:1 19633:2 19636:2 19648:1 19661:1 19697:1 19757:1 19770:2 19773:1 19782:2 19785:2 19790:1 19791:1 19794:1 19795:1 19798:1 19806:1 19812:2 19821:3 19823:1 19830:1 19845:1 19866:1 19873:1 19880:1 19896:1 19897:1 19919:1 19921:1 19922:1 19927:1 19931:2 19934:1 19936:1 19951:1 19954:1 19959:2 19960:1 19963:2 19965:1 19976:1 19978:2 19989:1 19998:8 20001:1 20009:1 20010:2 20017:2 20028:1 20041:1 20049:1 20061:1 20063:1 20066:1 20067:1 20071:1 20075:1 20125:2 20134:1 20138:2 20141:1 20142:1 20147:1 20149:1 20151:3 20154:1 20156:1 20166:2 20177:1 20179:1 20182:1 20205:1 20206:1 20210:2 20212:3 20240:1 20248:1 20252:1 20316:3 20321:1 20322:3 20325:2 20326:2 20328:1 20329:1 20334:1 20337:1 20340:1 20341:2 20352:4 20362:1 20368:1 20381:1 20396:2 20400:2 20403:2 20417:1 20444:1 20471:2 20473:2 20481:1 20492:1 20497:1 20503:1 20523:1 20524:1 20529:1 20532:1 20534:1 20546:1 20553:1 20556:1 20567:1 20570:1 20572:4 20578:1 20587:1 20588:3 20592:3 20593:1 20599:1 20611:1 20628:2 20632:1 20633:1 20634:4 20647:1 20655:1 20656:6 20662:1 20666:1 20670:1 20676:1 20692:1 20693:1 20719:7 20720:1 20733:1 20754:1 20772:1 20779:3 20780:1 20787:1 20796:1 20812:1 20813:1 20842:1 20844:2 20864:1 20879:1 20887:4 20889:1 20900:3 20905:3 20914:1 20919:1 20924:1 20938:1 20940:3 20955:1 20962:1 20963:2 20968:3 20976:1 20982:1 20991:1 21005:1 21026:1 21029:1 21062:1 21072:1 21073:1 21074:1 21079:1 21090:1 21100:2 21115:5 21116:2 21130:1 21134:2 21138:1 21140:3 21150:3 21163:2 21176:1 21203:1 21215:1 21216:1 21218:2 21220:1 21234:1 21235:1 21257:1 21263:1 21266:1 21282:1 21284:1 21296:1 21303:2 21306:1 21309:2 21311:1 21340:3 21370:3 21385:1 21434:1 21453:3 21456:2 21462:5 21469:2 21479:1 21484:1 21488:3 21498:2 21500:1 21501:1 21502:1 21512:1 21520:4 21551:1 21559:1 21580:1 21586:1 21599:1 21613:2 21624:1 21635:1 21642:1 21647:1 21650:1 21674:2 21682:1 21686:2 21694:1 21695:1 21703:1 21709:1 21726:1 21730:2 21733:3 21742:1 21743:1 21755:1 21772:3 21773:2 21777:2 21792:1 21794:1 21800:1 21845:1 21846:4 21848:1 21853:1 21861:1 21862:2 21863:1 21864:1 21865:1 21867:1 21869:1 21898:1 21913:1 21916:1 21917:1 21930:1 21981:2 21991:1 22014:2 22019:1 22053:1 22066:1 22068:2 22074:1 22076:1 22078:1 22088:1 22102:1 22125:1 22130:1 22136:1 22146:1 22176:1 22196:1 22218:1 22230:2 22238:1 22260:2 22263:1 22282:2 22296:3 22304:1 22320:1 22328:7 22345:1 22352:1 22358:2 22380:1 22382:1 22389:1 22391:2 22400:1 22402:1 22403:1 22407:1 22412:1 22435:3 22457:2 22459:1 22467:1 22469:1 22478:1 22502:1 22522:1 22530:1 22531:1 22550:1 22553:1 22559:1 22564:3 22565:1 22571:1 22575:1 22578:2 22581:1 22582:1 22612:5 22626:1 22627:1 22629:1 22632:1 22640:1 22642:1 22644:1 22646:1 22662:8 22663:3 22675:1 22685:1 22688:2 22693:1 22695:1 22705:1 22709:1 22710:1 22713:1 22718:3 22726:2 22739:1 22755:1 22827:1 22853:1 22856:1 22862:1 22868:1 22870:1 22876:2 22880:2 22886:2 22890:1 22895:1 22901:2 22903:2 22907:1 22923:1 22929:1 22943:1 22946:1 22953:1 22963:1 22974:2 22987:2 22992:1 22993:1 23012:2 23018:1 23024:2 23041:1 23077:11 23078:2 23101:1 23105:1 23106:1 23115:1 23130:1 23136:2 23139:1 23144:1 23158:2 23161:1 23162:1 23169:1 23170:1 23181:1 23188:1 23197:1 23202:1 23217:1 23222:1 23261:1 23291:9 23292:1 23307:1 23316:2 23329:1 23363:1 23373:1 23375:5 23378:1 23404:2 23406:1 23426:1 23432:1 23436:2 23440:1 23446:1 23481:1 23497:1 23503:2 23505:1 23514:2 23528:1 23532:1 23545:1 23557:1 23601:1 23602:1 23609:1 23613:1 23617:1 23631:1 23635:2 23639:3 23642:1 23648:1 23651:1 23652:1 23664:1 23666:1 23669:1 23695:3 23700:1 23704:1 23706:1 23721:4 23738:1 23739:2 23756:1 23774:1 23775:1 23784:1 23786:1 23803:1 23826:1 23840:1 23845:2 23889:1 23895:1 23909:1 23923:1 23932:1 23943:1 23999:2 24009:1 24024:1 24025:1 24027:1 24055:1 24061:1 24092:3 24101:1 24104:1 24126:1 24129:1 24138:2 24140:1 24149:2 24161:1 24165:12 24166:2 24177:1 24185:1 24193:1 24195:1 24206:1 24220:2 24231:1 24233:1 24245:1 24251:1 24255:1 24256:1 24259:1 24263:1 24272:3 24275:3 24280:3 24285:2 24286:4 24289:1 24290:1 24310:1 24350:1 24357:1 24363:1 24372:1 24377:1 24400:2 24408:2 24416:1 24420:1 24424:1 24425:1 24427:2 24443:6 24444:1 24446:1 24471:1 24472:1 24479:1 24500:1 24502:1 24521:1 24524:1 24553:1 24570:1 24592:1 24596:1 24600:2 24622:1 24625:1 24643:1 24648:1 24653:1 24655:1 24658:5 24675:1 24676:1 24710:1 24713:1 24715:1 24720:1 24721:1 24733:1 24737:1 24740:1 24747:1 24773:2 24774:2 24784:1 24792:3 24809:1 24830:1 24839:1 24844:2 24870:1 24889:1 24892:1 24917:1 24928:2 24938:1 24944:3 24949:1 24953:1 24954:1 24964:1 24966:1 24972:1 24976:2 24994:1 25005:2 25019:2 25022:1 25026:1 25031:2 25032:1 25059:1 25068:1 25070:1 25073:2 25081:1 25109:1 25110:1 25125:5 25129:1 25132:2 25145:1 25147:1 25177:1 25185:2 25191:1 25195:1 25200:1 25207:2 25213:1 25214:1 25224:2 25232:1 25239:1 25250:1 25251:1 25254:1 25255:1 25256:1 25260:1 25267:2 25277:1 25281:2 25291:2 25295:1 25299:1 25302:1 25329:1 25330:1 25339:1 25346:2 25370:1 25389:1 25412:1 25454:2 25479:1 25487:1 25491:2 25514:2 25532:1 25538:1 25543:3 25560:1 25572:1 25600:2 25630:1 25644:1 25693:1 25698:1 25702:2 25717:2 25739:1 25752:1 25775:1 25777:1 25791:1 25793:3 25801:1 25804:2 25808:1 25809:2 25820:1 25822:1 25828:1 25829:5 25841:1 25843:1 25856:1 25861:2 25863:2 25867:1 25869:1 25871:5 25875:1 25880:1 25881:1 25888:1 25892:3 25893:1 25905:3 25909:1 25913:1 25941:1 25946:1 25964:1 25965:1 25983:1 26005:1 26012:2 26015:4 26022:4 26028:1 26054:4 26067:1 26071:1 26080:1 26081:1 26092:1 26098:1 26099:1 26123:1 26125:2 26163:1 26174:1 26194:1 26213:1 26214:1 26221:1 26222:1 26229:1 26230:2 26236:1 26244:1 26265:3 26301:1 26305:1 26306:6 26312:1 26315:1 26325:2 26340:1 26368:4 26401:1 26411:1 26452:1 26527:1 26538:1 26539:1 26540:1 26541:1 26544:2 26547:3 26553:1 26557:1 26558:1 26565:1 26580:1 26612:1 26655:3 26664:2 26690:2 26696:2 26706:1 26710:1 26733:1 26745:1 26750:2 26751:1 26757:2 26759:1 26785:1 26787:1 26790:3 26793:2 26806:1 26810:1 26832:1 26837:1 26843:1 26848:1 26855:1 26862:1 26879:1 26883:3 26889:1 26891:1 26910:1 26920:2 26923:1 26940:1 26957:2 26961:2 26973:1 26978:1 26979:3 26986:3 26987:3 26988:1 26990:1 26996:1 27031:5 27034:1
1 13:1 35:1 39:1 47:1 50:1 55:1 89:1 120:1 137:1 138:3 139:1 144:1 150:2 157:1 165:1 169:3 182:5 192:1 209:1 222:1 233:1 238:7 255:3 264:1 280:2 306:1 315:3 317:3 327:3 334:3 339:1 346:2 362:2 372:1 382:1 395:5 397:3 404:1 412:1 445:1 446:1 472:2 500:1 511:1 515:2 532:1 544:3 552:1 568:1 578:1 582:2 584:1 588:1 604:2 630:1 665:1 678:1 683:1 711:1 723:2 726:1 743:1 745:2 751:1 764:1 789:5 794:1 798:1 800:1 802:4 808:1 822:10 826:4 837:3 854:2 868:1 872:1 873:4 874:2 875:6 877:1 878:1 880:2 882:1 894:2 912:3 915:4 926:1 953:2 958:1 972:1 1002:1 1013:2 1017:1 1035:1 1037:1 1059:2 1061:1 1064:1 1108:3 1109:2 1114:1 1116:1 1122:2 1125:1 1126:1 1141:1 1154:1 1158:2 1170:1 1173:2 1187:1 1193:2 1195:1 1227:1 1228:1 1244:1 1262:1 1264:1 1266:1 1269:1 1279:1 1292:1 1316:1 1324:1 1325:2 1345:1 1346:2 1364:1 1366:1 1371:2 1379:1 1392:1 1397:1 1402:1 1405:2 1419:1 1437:1 1445:1 1448:4 1454:7 1456:2 1465:1 1469:1 1490:2 1499:1 1501:1 1510:1 1514:1 1523:1 1526:1 1530:2 1538:1 1542:2 1549:1 1553:1 1555:1 1559:1 1568:1 1571:2 1580:1 1584:1 1587:1 1592:1 1596:1 1600:1 1606:1 1615:1 1619:1 1634:2 1635:1 1652:1 1653:5 1659:1 1663:1 1675:1 1681:1 1684:2 1687:1 1688:2 1696:6 1703:1 1723:4 1724:2 1737:1 1749:1 1757:2 1759:4 1761:1 1764:1 1787:1 1794:1 1801:2 1806:2 1807:1 1809:1 1822:2 1866:1 1870:5 1875:1 1881:1 1885:1 1892:2 1897:1 1899:1 1904:1 1907:2 1925:1 1931:1 1938:1 1956:1 1959:1 1976:2 1978:1 1983:1 1984:1 1988:2 1990:1 2004:1 2027:9 2037:1 2046:1 2051:1 2053:1 2071:1 2078:1 2092:2 2103:3 2107:1 2119:1 2120:1 2123:1 2126:2 2142:2 2143:2 2147:2 2148:4 2150:1 2154:2 2157:2 2158:2 2159:1 2160:1 2161:4 2167:4 2170:3 2172:5 2173:6 2185:1 2196:1 2216:1 2219:1 2224:1 2226:3 2229:1 2234:1 2248:1 2257:1 2274:1 2275:1 2277:1 2285:1 2293:1 2294:1 2296:1 2328:1 2333:1 2342:1 2350:1 2351:1 2360:1 2367:1 2377:3 2388:1 2390:1 2405:1 2413:1 2417:1 2432:3 2435:2 2437:1 2439:5 2443:1 2444:1 2445:1 2454:1 2457:1 2478:4 2479:1 2483:1 2496:2 2503:1 2504:1 2505:1 2506:1 2513:6 2520:1 2526:2 2529:5 2535:4 2537:1 2545:2 2547:1 2555:2 2557:1 2562:3 2563:2 2574:2 2589:1 2591:2 2597:3 2602:1 2638:1 2640:2 2641:2 2654:3 2659:1 2662:4 2667:2 2671:1 2686:1 2691:1 2716:1 2738:3 2745:1 2749:1 2752:13 2773:2 2774:1 2776:1 2777:1 2779:1 2786:2 2791:2 2811:14 2813:1 2836:2 2839:3 2848:1 2856:1 2866:1 2893:1 2898:1 2902:1 2907:1 2917:1 2918:5 2934:3 2939:1 2948:1 2970:1 2979:1 2989:1 2993:1 2998:1 3006:2 3014:1 3027:2 3042:3 3057:1 3089:1 3090:1 3128:1 3129:2 3130:1 3134:1 3149:6 3193:1 3216:1 3225:2 3263:1 3264:1 3265:1 3277:1 3283:1 3285:1 3286:1 3291:1 3305:1 3328:1 3343:1 3358:2 3362:1 3383:1 3384:12 3399:1 3403:2 3405:2 3406:2 3409:1 3425:1 3429:1 3430:1 3438:1 3477:1 3479:1 3480:1 3484:1 3489:3 3490:1 3493:1 3501:1 3523:1 3548:1 3549:1 3552:1 3554:1 3559:2 3562:1 3565:1 3569:1 3576:1 3581:1 3596:1 3599:1 3603:2 3608:1 3610:1 3626:2 3628:1 3631:1 3640:1 3648:2 3663:1 3664:1 3668:4 3670:1 3673:2 3678:2 3687:2 3700:2 3715:1 3716:2 3732:1 3734:2 3738:1 3756:1 3765:6 3766:3 3772:2 3808:1 3810:2 3813:1 3818:1 3837:1 3839:2 3857:1 3864:1 3866:2 3870:1 3875:1 3891:2 3900:1 3910:2 3924:1 3932:1 3937:3 3940:1 3941:1 3944:2 3950:1 3954:2 3977:1 3981:1 3992:1 4008:1 4025:1 4027:2 4029:1 4045:7 4075:3 4081:1 4090:1 4101:1 4104:1 4114:2 4127:2 4133:1 4149:1 4152:1 4156:2 4169:1 4177:3 4194:1 4202:1 4203:1 4211:1 4225:2 4246:1 4249:1 4252:1 4256:1 4257:3 4259:1 4267:1 4276:1 4292:1 4304:1 4314:4 4327:1 4331:1 4355:4 4363:2 4371:1 4377:3 4380:1 4397:4 4420:2 4437:1 4440:2 4443:3 4456:3 4459:1 4468:1 4469:2 4475:1 4496:2 4511:1 4523:1 4549:1 4565:11 4567:1 4574:1 4576:1 4586:1 4601:1 4613:1 4623:1 4629:1 4664:1 4669:2 4684:1 4685:4 4687:5 4688:2 4690:1 4693:1 4695:1 4696:1 4698:1 4700:1 4701:1 4703:5 4704:4 4706:1 4708:2 4709:6 4715:1 4716:3 4721:1 4733:1 4764:1 4776:1 4789:2 4796:1 4820:1 4853:1 4891:1 4903:1 4917:1 4930:1 4937:2 4973:1 4977:1 5002:2 5008:2 5018:1 5061:1 5066:2 5088:3 5101:1 5121:1 5140:1 5146:1 5157:2 5163:1 5171:1 5180:1 5188:1 5197:1 5220:1 5230:1 5252:1 5254:1 5284:2 5287:1 5292:1 5298:2 5302:1 5313:5 5314:1 5316:2 5317:1 5320:2 5321:1 5336:1 5337:1 5369:3 5379:2 5380:1 5383:1 5394:6 5403:1 5406:2 5468:1 5481:1 5483:1 5485:1 5503:1 5507:1 5509:1 5510:1 5516:1 5522:2 5538:1 5544:1 5549:1 5562:1 5568:1 5569:2 5576:2 5590:2 5594:1 5610:5 5612:1 5613:1 5619:1 5620:2 5628:1 5629:1 5632:1 5636:1 5668:1 5673:1 5678:1 5680:1 5682:1 5688:1 5692:1 5693:1 5696:12 5715:1 5735:3 5742:1 5761:1 5772:1 5787:3 5797:1 5812:6 5817:1 5824:1 5854:1 5869:1 5872:1 5890:1 5897:1 5898:1 5901:1 5905:2 5906:3 5911:1 5912:1 5915:2 5921:2 5923:3 5924:2 5958:1 5997:1 6008:1 6010:1 6046:1 6051:4 6052:2 6063:1 6106:1 6115:1 6124:1 6133:1 6148:1 6154:1 6177:1 6191:2 6199:2 6208:1 6213:1 6222:1 6270:1 6281:1 6292:1 6295:1 6298:1 6301:1 6316:7 6323:2 6327:2 6329:1 6336:1 6338:1 6344:1 6355:2 6375:1 6378:1 6385:1 6387:1 6389:1 6424:1 6426:3 6437:2 6442:1 6448:2 6465:1 6470:1 6476:1 6479:1 6483:2 6491:1 6507:1 6525:1 6529:1 6530:1 6537:1 6545:1 6546:1 6553:1 6563:6 6569:2 6588:1 6595:1 6596:1 6600:1 6606:1 6609:2 6610:2 6618:1 6623:3 6624:1 6626:1 6631:5 6634:1 6637:1 6657:1 6658:1 6660:1 6670:1 6678:1 6702:1 6707:4 6716:3 6724:1 6732:1 6735:1 6752:2 6755:1 6757:1 6765:1 6788:1 6798:1 6806:1 6812:1 6824:1 6868:1 6871:1 6875:1 6879:1 6917:1 6931:1 6935:2 6936:2 6940:2 6945:1 6951:3 6955:1 6971:4 6972:1 6974:2 6988:1 6989:3 6998:1 7002:1 7012:1 7020:2 7023:1 7028:1 7045:1 7051:1 7053:1 7066:1 7067:1 7076:1 7081:1 7102:1 7114:1 7120:1 7138:3 7153:3 7154:6 7165:2 7170:1 7173:4 7176:2 7178:3 7183:1 7192:1 7198:4 7199:2 7200:1 7213:38 7214:2 7220:1 7222:1 7228:1 7229:6 7231:4 7236:2 7270:1 7276:1 7278:1 7287:1 7297:1 7301:3 7302:2 7307:1 7309:1 7320:1 7322:1 7331:2 7341:1 7358:1 7360:1 7380:2 7388:1 7392:1 7410:1 7440:1 7451:1 7453:1 7454:3 7483:1 7489:1 7490:1 7491:1 7501:2 7549:1 7559:1 7569:1 7591:1 7592:1 7600:1 7604:1 7608:1 7628:1 7631:1 7639:1 7643:1 7644:2 7654:1 7663:1 7677:1 7678:1 7700:20 7706:1 7724:3 7726:2 7729:1 7731:2 7732:1 7773:3 7776:1 7777:1 7781:1 7810:1 7821:2 7825:2 7827:1 7830:1 7844:1 7854:1 7855:4 7860:3 7868:1 7894:2 7896:1 7902:1 7906:1 7918:1 7920:1 7930:1 7937:1 7939:1 7957:1 7958:1 7966:2 7968:1 7969:1 8028:1 8033:1 8034:1 8038:1 8039:1 8041:1 8048:1 8061:1 8064:1 8076:5 8087:2 8090:3 8109:1 8115:1 8122:1 8127:2 8130:1 8131:1 8145:1 8146:1 8162:2 8191:1 8196:1 8233:1 8234:1 8240:1 8244:1 8271:1 8272:1 8285:1 8293:1 8316:1 8319:1 8320:1 8324:3 8347:2 8353:1 8360:2 8361:1 8370:1 8377:1 8394:1 8395:1 8407:1 8415:3 8416:1 8417:1 8423:1 8425:1 8429:1 8436:1 8444:1 8455:4 8477:1 8484:1 8500:1 8505:7 8506:5 8516:2 8517:1 8551:1 8561:1 8566:1 8570:2 8589:1 8596:1 8603:2 8605:2 8607:3 8609:2 8629:1 8635:1 8644:1 8661:1 8672:1 8681:2 8683:1 8689:1 8692:5 8694:1 8715:3 8721:1 8734:4 8770:1 8771:1 8795:1 8802:1 8807:1 8823:2 8835:3 8840:1 8852:1 8858:1 8865:1 8888:1 8901:1 8905:1 8913:1 8919:7 8924:2 8956:3 8964:1 8965:1 8975:3 8981:1 9005:1 9024:1 9028:1 9031:3 9032:3 9034:2 9038:1 9056:1 9061:1 9066:1 9096:1 9099:1 9107:1 9142:2 9163:1 9173:2 9186:1 9196:1 9200:1 9201:1 9210:1 9242:1 9243:1 9248:1 9249:1 9262:1 9266:1 9289:1 9294:1 9296:1 9298:1 9301:5 9318:3 9325:3 9327:2 9336:1 9354:2 9371:2 9372:1 9396:1 9398:1 9410:1 9415:2 9427:1 9434:1 9444:1 9449:3 9453:1 9481:1 9485:1 9490:12 9492:1 9493:2 9497:2 9501:1 9519:1 9520:1 9535:1 9540:1 9572:1 9587:1 9588:2 9590:1 9597:1 9622:1 9628:1 9643:1 9644:1 9646:1 9649:1 9651:4 9661:1 9663:1 9665:2 9702:1 9715:4 9720:1 9722:1 9723:1 9729:1 9732:2 9739:1 9742:1 9747:1 9749:1 9755:4 9769:1 9771:1 9787:1 9803:1 9804:1 9810:1 9817:1 9819:1 9823:2 9827:1 9837:2 9846:1 9864:1 9866:2 9877:1 9879:1 9881:1 9886:5 9889:2 9899:1 9900:3 9905:1 9910:1 9920:1 9926:1 9943:2 9953:4 9954:2 9964:1 9979:1 9982:1 9983:1 9991:3 9995:1 10013:1 10026:1 10028:1 10035:3 10047:1 10057:5 10071:1 10080:1 10092:1 10093:1 10106:2 10140:1 10180:1 10191:1 10201:1 10206:1 10224:1 10225:1 10239:1 10240:2 10242:2 10245:1 10246:2 10252:1 10254:1 10261:1 10264:5 10265:5 10268:1 10276:1 10282:2 10283:2 10287:1 10288:1 10289:3 10293:1 10310:3 10313:1 10321:1 10336:2 10345:1 10372:1 10373:1 10376:2 10392:1 10406:1 10411:1 10424:1 10434:1 10436:1 10440:1 10466:1 10493:1 10499:1 10515:1 10518:1 10530:1 10532:2 10556:1 10575:1 10586:1 10592:1 10597:2 10611:2 10614:2 10617:1 10627:1 10630:2 10632:1 10633:1 10635:2 10644:3 10646:1 10647:1 10648:2 10657:1 10663:3 10667:2 10678:1 10693:13 10694:1 10696:1 10707:1 10718:1 10730:1 10734:3 10742:1 10745:2 10746:2 10756:1 10759:1 10788:2 10799:2 10803:1 10813:2 10818:2 10831:1 10847:1 10859:1 10863:1 10890:1 10906:1 10924:1 10932:3 10933:1 10934:1 10937:1 10950:1 10951:2 10956:2 10957:1 10960:1 10962:1 10968:1 10969:1 10977:1 10979:1 10988:1 10991:1 10992:1 10995:1 10998:1 11003:2 11006:3 11009:2 11031:1 11040:1 11055:1 11073:1 11100:1 11118:1 11120:1 11135:1 11141:1 11159:1 11166:5 11173:1 11184:2 11188:2 11189:1 11201:1 11206:1 11214:1 11220:2 11227:1 11243:2 11261:1 11263:1 11283:1 11301:2 11306:1 11314:1 11321:1 11327:2 11333:1 11365:1 11372:1 11380:5 11381:2 11382:2 11394:1 11406:2 11412:1 11415:1 11418:1 11424:1 11476:1 11478:2 11479:1 11502:1 11506:1 11513:1 11520:1 11534:1 11542:1 11547:1 11557:1 11635:1 11638:3 11662:2 11674:1 11689:1 11695:1 11705:1 11718:1 11720:2 11721:1 11736:3 11745:1 11758:1 11774:1 11824:1 11831:1 11836:1 11839:1 11840:2 11847:1 11859:1 11882:10 11886:3 11899:2 11904:1 11915:1 11923:1 11928:1 11929:2 11936:2 11943:1 11954:1 11959:1 11964:1 11980:2 11981:1 11983:1 11989:1 12016:1 12039:1 12045:1 12048:1 12069:1 12081:1 12090:1 12091:2 12100:2 12101:1 12110:1 12112:1 12134:1 12151:3 12161:1 12208:1 12231:1 12252:1 12254:2 12257:4 12269:1 12274:2 12283:2 12290:1 12306:6 12323:1 12325:2 12346:1 12351:4 12352:1 12385:1 12386:1 12387:1 12389:1 12399:5 12400:1 12410:2 12413:1 12428:1 12436:1 12437:1 12446:1 12452:1 12453:1 12463:12 12469:1 12474:1 12506:2 12508:1 12515:2 12529:1 12533:1 12544:1 12547:1 12557:1 12559:1 12590:3 12613:1 12616:6 12617:1 12633:1 12642:1 12645:1 12668:2 12685:1 12692:1 12694:1 12703:2 12705:1 12707:1 12714:1 12719:1 12721:1 12728:6 12729:1 12732:1 12734:1 12736:2 12737:1 12741:7 12742:2 12760:1 12761:1 12763:1 12765:1 12787:1 12814:1 12831:1 12842:1 12872:1 12887:3 12919:1 12926:1 12929:1 12932:1 12939:1 12941:1 12946:1 12956:1 12960:1 12978:2 12986:1 12999:1 13005:7 13025:2 13032:1 13041:1 13064:1 13076:1 13077:1 13085:1 13090:1 13103:1 13109:1 13111:1 13131:1 13161:1 13173:1 13180:1 13188:1 13197:1 13211:1 13237:1 13245:2 13261:4 13277:1 13288:1 13309:1 13320:1 13380:1 13383:3 13384:3 13391:1 13404:1 13406:1 13410:2 13412:1 13436:1 13442:1 13452:2 13470:1 13479:1 13480:1 13499:1 13524:2 13531:1 13535:1 13548:1 13554:1 13556:1 13563:2 13567:1 13578:3 13585:2 13630:1 13632:2 13637:2 13641:1 13679:2 13680:1 13690:1 13713:1 13720:1 13723:1 13731:1 13756:3 13768:1 13771:2 13804:1 13807:1 13850:1 13891:2 13892:2 13895:1 13902:1 13912:1 13932:1 13977:1 13979:3 13984:1 13997:1 13998:1 14004:1 14032:1 14087:1 14094:2 14115:1 14155:1 14170:1 14182:1 14187:1 14204:1 14211:1 14212:1 14213:2 14226:1 14240:2 14245:2 14248:1 14270:1 14274:1 14295:2 14311:2 14315:1 14318:1 14334:1 14345:2 14354:1 14362:1 14378:1 14387:1 14391:1 14397:3 14409:1 14419:1 14424:2 14435:1 14457:1 14460:1 14467:1 14484:1 14486:1 14489:2 14552:1 14553:1 14564:2 14575:1 14579:3 14584:1 14586:1 14593:1 14605:3 14606:1 14609:1 14612:1 14624:1 14626:1 14639:1 14658:2 14666:2 14703:2 14706:1 14709:1 14719:3 14726:1 14737:1 14739:3 14753:1 14764:2 14782:1 14802:1 14819:1 14841:1 14847:1 14853:1 14857:11 14872:1 14876:3 14878:1 14900:2 14904:1 14943:1 14954:1 14958:1 14962:2 14972:2 14976:1 14990:2 14994:1 15008:1 15015:1 15029:1 15030:2 15046:1 15052:1 15060:1 15062:1 15064:1 15068:1 15074:2 15075:1 15100:1 15117:1 15122:1 15128:4 15130:2 15131:2 15132:5 15133:1 15134:1 15135:2 15137:1 15139:2 15140:3 15143:1 15144:1 15147:1 15151:1 15161:1 15204:1 15206:2 15216:1 15232:1 15251:1 15255:1 15256:1 15279:1 15284:1 15288:2 15289:1 15307:1 15328:1 15336:1 15370:1 15418:1 15430:1 15434:2 15445:1 15446:2 15455:2 15456:1 15466:1 15470:5 15475:1 15478:2 15487:1 15495:1 15496:1 15501:2 15505:1 15509:2 15513:1 15522:3 15526:2 15534:2 15544:1 15553:1 15585:9 15588:1 15611:1 15613:3 15618:1 15656:1 15671:1 15672:1 15678:2 15689:1 15695:3 15705:1 15706:1 15720:1 15722:2 15742:1 15756:2 15778:5 15791:1 15802:1 15811:1 15823:1 15849:1 15878:2 15879:3 15895:1 15898:1 15936:2 15946:1 15950:1 15973:1 15980:1 15987:2 15992:1 16006:1 16022:1 16034:2 16039:1 16041:1 16055:1 16072:1 16116:1 16119:1 16150:1 16159:1 16163:1 16183:1 16187:1 16199:2 16202:1 16212:1 16213:3 16218:1 16224:1 16232:3 16238:2 16240:2 16244:2 16250:6 16284:1 16287:1 16288:1 16293:1 16294:1 16298:1 16305:1 16315:1 16316:1 16331:1 16368:1 16369:1 16389:3 16392:1 16403:1 16416:2 16427:1 16428:1 16434:1 16435:1 16451:1 16453:1 16482:1 16483:1 16484:1 16508:1 16513:1 16518:2 16554:1 16557:1 16576:1 16578:1 16594:2 16600:1 16602:1 16614:1 16616:1 16646:1 16661:1 16684:1 16709:1 16710:1 16720:1 16740:2 16814:2 16815:1 16823:1 16833:1 16838:1 16844:1 16862:1 16879:1 16885:1 16907:1 16934:1 16937:2 16951:1 16981:1 16999:9 17025:1 17050:1 17071:1 17087:13 17097:2 17099:1 17103:5 17128:2 17142:1 17156:1 17184:4 17192:2 17204:2 17218:1 17219:1 17243:1 17251:2 17263:2 17276:2109 17285:1 17289:1 17301:1 17302:1 17347:1 17351:1 17353:1 17374:2 17420:1 17421:1 17445:1 17465:1 17467:1 17469:1 17472:2 17474:3 17475:2 17493:1 17495:1 17515:1 17526:1 17535:1 17551:1 17552:1 17592:1 17595:1 17599:2 17608:1 17644:1 17654:3 17684:2 17697:1 17699:1 17707:2 17709:1 17717:1 17737:1 17748:2 17754:1 17765:1 17776:1 17787:1 17791:2 17795:2 17803:1 17809:1 17817:1 17836:2 17837:2 17855:2 17859:1 17862:1 17870:2 17876:1 17895:2 17896:1 17904:1 17913:1 17917:2 17927:4 17951:1 17966:1 17970:2 17971:1 17978:1 17992:5 17999:1 18009:1 18011:1 18043:1 18047:4 18052:1 18054:2 18062:2 18070:1 18075:4 18085:1 18090:1 18101:1 18104:3 18115:2 18116:1 18123:1 18141:1 18156:1 18159:1 18163:1 18178:1 18182:1 18183:1 18187:2 18193:1 18194:1 18197:1 18228:1 18233:1 18234:1 18240:1 18247:1 18271:1 18282:2 18294:1 18295:2 18296:1 18297:1 18301:1 18303:1 18308:1 18323:1 18326:1 18328:1 18332:1 18339:1 18343:1 18349:1 18359:1 18371:1 18374:1 18381:1 18382:1 18390:1 18416:1 18420:1 18422:4 18427:1 18428:3 18430:1 18474:1 18477:1 18492:1 18495:1 18499:1 18501:1 18503:2 18504:1 18508:2 18519:1 18521:1 18529:2 18533:1 18534:2 18536:2 18538:1 18548:1 18556:4 18564:2 18580:1 18582:1 18596:1 18598:1 18603:1 18604:4 18627:1 18628:1 18638:1 18639:1 18645:1 18653:1 18658:1 18665:2 18685:1 18690:1 18691:1 18707:1 18716:3 18718:14 18719:2 18726:1 18735:3 18738:1 18756:1 18784:1 18792:1 18805:1 18811:1 18817:1 18821:1 18835:1 18838:1 18847:1 18848:1 18866:1 18868:1 18875:1 18905:4 18919:2 18933:1 18937:2 18941:1 18949:2 18960:1 18962:1 18969:2 18996:6 18998:2 19005:1 19013:1 19022:1 19039:1 19040:1 19057:1 19080:1 19085:3 19101:3 19112:1 19117:1 19119:1 19125:1 19128:1 19132:1 19133:1 19140:1 19143:2 19175:2 19183:3 19189:2 19190:2 19201:2 19204:1 19207:1 19209:1 19215:2 19243:4 19245:2 19254:2 19261:1 19279:2 19284:1 19286:1 19293:1 19311:2 19317:1 19324:2 19331:4 19334:1 19344:1 19349:2 19359:3 19385:2 19391:1 19394:1 19412:1 19415:1 19421:1 19422:1 19431:1 19439:2 19443:2 19447:1 19450:2 19451:1 19459:2 19478:1 19484:2 19506:2 19515:1 19516:1 19521:1 19522:1 19523:4 19537:2 19545:1 19546:1 19547:1 19551:1 19552:1 19558:2 19564:1 19577:1 19581:1 19591:1 19595:1 19614:1 19620:1 19627:1 19629:1 19633:2 19636:2 19648:1 19661:1 19697:1 19757:1 19770:2 19773:1 19782:2 19785:2 19790:1 19791:1 19794:1 19795:1 19798:1 19806:1 19812:2 19821:3 19823:1 19830:1 19837:1 19845:1 19866:1 19873:1 19880:1 19896:1 19897:1 19919:1 19921:1 19922:1 19927:1 19931:2 19934:1 19936:1 19951:1 19954:1 19959:2 19960:1 19963:2 19965:1 19976:1 19978:2 19989:1 19998:9 20001:1 20009:1 20010:2 20017:2 20028:1 20041:1 20049:1 20061:1 20063:1 20066:1 20067:1 20071:1 20075:1 20125:2 20134:1 20138:2 20141:1 20142:1 20147:1 20149:1 20151:3 20154:2 20156:1 20166:2 20177:1 20179:1 20182:1 20205:1 20206:1 20210:2 20212:3 20240:1 20248:1 20252:1 20316:3 20321:1 20322:3 20325:2 20326:3 20328:1 20329:1 20334:1 20337:1 20340:1 20341:2 20352:4 20362:1 20368:1 20381:1 20396:2 20400:2 20403:2 20417:1 20444:1 20471:2 20473:2 20481:1 20492:1 20497:1 20503:1 20523:1 20524:1 20529:1 20532:1 20534:1 20544:1 20546:1 20553:1 20556:1 20567:1 20570:1 20572:4 20578:1 20587:1 20588:3 20592:3 20593:1 20599:1 20611:1 20628:2 20632:1 20633:1 20634:4 20647:1 20655:1 20656:7 20662:1 20666:1 20670:1 20676:1 20692:1 20693:1 20719:7 20720:1 20733:1 20754:1 20772:1 20779:3 20780:1 20787:1 20796:1 20812:1 20813:1 20842:1 20844:2 20864:1 20879:1 20887:4 20889:1 20900:3 20905:3 20914:1 20919:1 20924:1 20938:1 20940:3 20955:1 20962:1 20963:2 20968:3 20976:1 20982:1 20991:1 21005:1 21026:1 21029:1 21062:1 21066:1 21072:1 21073:1 21074:1 21079:1 21090:1 21100:2 21115:6 21116:2 21130:2 21134:2 21138:1 21140:4 21150:3 21163:2 21176:1 21203:1 21215:1 21216:1 21218:2 21220:2 21234:1 21235:1 21256:1 21257:1 21261:1 21262:1 21263:1 21266:1 21282:1 21284:1 21296:1 21303:2 21306:1 21309:2 21311:1 21340:3 21370:3 21385:1 21434:1 21453:3 21456:2 21462:5 21469:2 21479:1 21484:1 21488:3 21498:2 21500:2 21501:1 21502:1 21512:1 21520:4 21551:1 21559:1 21580:1 21586:1 21599:1 21613:2 21624:1 21635:1 21642:1 21647:1 21650:1 21674:2 21682:1 21686:2 21694:1 21695:1 21703:1 21708:1 21709:1 21724:1 21726:1 21730:2 21733:3 21742:1 21743:1 21755:1 21772:3 21773:2 21777:2 21792:1 21794:1 21800:1 21845:1 21846:4 21848:1 21853:1 21861:1 21862:2 21863:1 21864:1 21865:1 21867:1 21869:1 21898:1 21913:1 21916:1 21917:1 21930:1 21981:2 21991:1 22014:2 22019:1 22053:1 22066:1 22068:2 22074:1 22076:1 22078:1 22088:1 22102:1 22122:1 22125:1 22130:1 22136:1 22146:1 22176:1 22196:1 22218:1 22230:2 22238:1 22260:2 22263:1 22282:2 22296:3 22304:1 22320:1 22328:7 22345:1 22352:1 22358:3 22380:1 22382:1 22389:1 22391:3 22400:1 22402:1 22403:1 22407:1 22412:1 22435:3 22457:2 22459:1 22467:1 22469:1 22478:1 22502:1 22522:1 22530:1 22531:1 22550:1 22553:1 22559:1 22564:3 22565:1 22571:1 22575:1 22578:2 22581:1 22582:1 22612:5 22626:1 22627:1 22629:1 22632:1 22640:1 22642:1 22644:1 22646:1 22662:8 22663:4 22675:1 22685:1 22688:2 22693:1 22695:1 22705:1 22709:1 22710:1 22713:1 22718:3 22726:2 22739:1 22755:1 22811:1 22827:1 22853:1 22856:1 22862:1 22868:1 22870:1 22876:2 22880:2 22886:2 22890:1 22895:1 22901:2 22903:2 22907:1 22923:1 22929:1 22931:1 22943:2 22946:1 22948:1 22953:1 22963:1 22974:3 22987:2 22992:1 22993:1 23012:2 23018:1 23024:2 23041:1 23077:12 23078:2 23101:1 23105:1 23106:1 23115:1 23130:1 23136:2 23139:1 23144:1 23158:2 23161:1 23162:1 23169:1 23170:1 23181:1 23188:1 23197:1 23202:1 23217:1 23222:1 23261:1 23291:10 23292:1 23307:1 23316:2 23319:1 23329:1 23363:1 23373:1 23375:6 23378:1 23404:2 23406:1 23426:1 23432:1 23436:2 23440:1 23446:1 23481:1 23497:1 23503:2 23505:1 23514:2 23528:1 23532:1 23545:1 23557:1 23601:1 23602:1 23609:1 23613:1 23617:1 23631:1 23635:2 23639:3 23642:1 23648:1 23651:1 23652:1 23664:1 23666:1 23669:1 23695:4 23700:1 23704:1 23706:1 23719:1 23721:5 23738:1 23739:2 23756:1 23774:1 23775:1 23784:1 23786:1 23803:1 23826:1 23840:1 23845:2 23889:1 23895:1 23909:1 23923:1 23932:1 23943:1 23999:2 24009:1 24024:1 24025:1 24027:1 24041:1 24055:1 24061:1 24092:3 24101:1 24104:1 24126:1 24129:1 24138:2 24140:1 24149:2 24161:1 24165:13 24166:2 24177:1 24185:1 24193:1 24195:1 24206:1 24220:2 24230:1 24231:1 24233:1 24245:1 24251:1 24255:1 24256:1 24259:1 24263:1 24272:3 24275:3 24280:3 24285:2 24286:4 24289:1 24290:1 24304:1 24310:1 24350:1 24357:1 24363:1 24372:1 24376:1 24377:2 24400:2 24408:2 24416:1 24420:1 24424:1 24425:1 24427:2 24443:6 24444:1 24446:1 24454:1 24462:1 24471:1 24472:1 24479:1 24500:1 24502:1 24521:1 24524:1 24553:1 24570:1 24592:1 24596:1 24600:2 24622:1 24625:1 24643:1 24648:1 24653:1 24655:1 24658:5 24675:1 24676:1 24710:1 24713:1 24715:1 24720:1 24721:1 24733:1 24737:1 24740:1 24747:1 24768:1 24773:2 24774:2 24784:1 24792:3 24809:1 24830:1 24839:1 24844:2 24870:1 24889:1 24892:1 24917:1 24928:2 24938:1 24944:3 24949:1 24953:1 24954:1 24964:1 24966:1 24972:1 24976:2 24994:1 25000:1 25005:2 25019:2 25022:1 25026:1 25031:2 25032:1 25059:1 25068:1 25070:1 25073:2 25081:1 25109:1 25110:1 25125:5 25129:1 25132:2 25145:1 25147:1 25177:1 25185:2 25191:1 25195:1 25200:1 25207:2 25213:1 25214:1 25224:2 25232:1 25239:1 25250:1 25251:1 25254:1 25255:1 25256:1 25260:1 25267:2 25269:1 25277:1 25281:2 25291:2 25295:1 25299:1 25302:1 25329:1 25330:1 25339:1 25346:2 25370:1 25389:1 25412:1 25454:2 25479:1 25487:1 25491:2 25514:2 25532:1 25536:1 25538:1 25543:4 25560:1 25572:1 25600:3 25630:1 25644:1 25693:1 25698:1 25702:2 25717:2 25731:1 25739:1 25752:1 25775:1 25777:1 25791:2 25793:3 25794:1 25801:1 25804:2 25808:1 25809:2 25820:1 25822:1 25828:1 25829:5 25841:1 25843:1 25856:2 25861:2 25863:2 25867:1 25869:1 25871:5 25875:1 25880:1 25881:1 25888:1 25892:3 25893:1 25905:3 25909:1 25913:1 25941:1 25946:1 25964:1 25965:1 25983:1 26005:1 26012:2 26015:4 26022:4 26028:1 26054:4 26067:1 26071:1 26080:1 26081:1 26092:1 26098:1 26099:1 26123:1 26125:2 26163:1 26174:1 26194:1 26213:1 26214:1 26221:1 26222:1 26229:1 26230:2 26236:1 26244:1 26265:3 26298:1 26301:1 26305:1 26306:6 26312:1 26315:1 26325:2 26340:1 26368:5 26401:1 26411:1 26452:1 26464:1 26512:1 26527:2 26538:1 26539:1 26540:1 26541:1 26544:2 26547:3 26553:1 26557:1 26558:1 26565:1 26580:1 26612:1 26616:1 26655:3 26664:2 26690:2 26696:2 26706:1 26710:1 26733:1 26745:1 26750:3 26751:1 26757:2 26759:1 26785:1 26787:1 26790:4 26793:2 26806:1 26810:1 26832:1 26837:1 26843:1 26848:1 26855:1 26862:1 26879:1 26883:3 26889:1 26891:1 26910:1 26920:2 26923:1 26940:1 26957:2 26961:2 26973:1 26978:1 26979:3 26986:3 26987:3 26988:1 26990:1 26996:1 27031:5 27034:1
1 13:1 35:1 39:1 47:1 50:1 55:1 89:1 120:1 137:1 138:3 139:1 144:1 150:2 157:1 165:1 169:3 182:5 192:1 209:1 222:1 233:1 238:7 255:3 264:1 280:2 306:1 315:4 317:3 327:3 334:3 339:1 346:2 362:2 372:1 382:1 395:5 397:3 404:1 412:1 445:1 446:1 472:2 500:1 511:1 515:2 532:1 544:3 552:1 568:1 578:1 582:2 584:1 588:1 604:2 630:1 665:1 678:1 683:1 711:1 723:2 726:1 743:1 745:2 751:1 764:1 789:5 794:1 798:1 800:1 802:4 808:1 822:13 826:4 837:3 854:3 868:1 872:1 873:4 874:2 875:7 877:1 878:1 880:2 882:1 894:2 912:3 915:4 926:1 953:2 958:1 972:1 1002:1 1013:2 1017:1 1035:1 1037:1 1059:2 1061:1 1064:1 1108:3 1109:2 1114:1 1116:1 1122:2 1125:1 1126:1 1141:1 1150:1 1154:1 1158:2 1170:1 1173:2 1187:1 1193:2 1195:1 1227:1 1228:1 1244:1 1262:1 1264:1 1266:1 1269:1 1279:1 1292:1 1312:1 1316:1 1324:1 1325:2 1345:1 1346:2 1364:1 1366:1 1371:2 1379:1 1392:1 1397:1 1402:1 1405:2 1419:1 1437:1 1445:1 1448:4 1454:7 1456:2 1465:1 1469:1 1490:2 1499:1 1501:1 1510:1 1514:1 1523:1 1526:1 1530:2 1538:1 1542:2 1549:1 1553:1 1555:1 1559:1 1568:1 1571:2 1580:1 1584:1 1587:1 1592:1 1596:1 1600:1 1606:1 1615:1 1619:1 1634:2 1635:1 1652:1 1653:5 1659:1 1663:1 1675:1 1681:1 1684:2 1687:1 1688:2 1696:6 1703:1 1723:4 1724:2 1737:1 1745:1 1749:1 1757:2 1759:4 1761:1 1762:1 1764:1 1787:1 1794:1 1801:2 1806:2 1807:1 1809:1 1822:2 1866:1 1870:6 1875:1 1881:1 1885:1 1892:2 1897:1 1899:1 1904:1 1907:2 1925:1 1931:1 1938:1 1956:1 1959:1 1976:2 1978:1 1983:1 1984:1 1988:2 1990:1 2004:1 2014:1 2027:9 2037:1 2046:1 2051:1 2053:1 2071:1 2078:1 2092:2 2103:3 2107:1 2119:1 2120:1 2123:1 2126:2 2142:2 2143:2 2147:2 2148:4 2150:1 2152:1 2154:2 2157:2 2158:2 2159:1 2160:1 2161:4 2165:1 2167:4 2170:3 2172:5 2173:7 2185:1 2196:1 2216:1 2219:1 2224:1 2226:3 2229:1 2234:1 2246:1 2248:1 2257:1 2274:1 2275:1 2277:1 2285:1 2293:1 2294:1 2296:1 2328:1 2333:1 2342:1 2350:1 2351:1 2360:1 2367:1 2377:3 2388:1 2390:1 2405:1 2413:1 2417:1 2432:3 2435:2 2437:1 2439:6 2443:1 2444:1 2445:1 2454:1 2457:1 2478:4 2479:1 2483:1 2496:2 2503:1 2504:1 2505:1 2506:1 2513:6 2520:1 2526:2 2529:5 2535:4 2537:1 2545:2 2547:1 2553:1 2555:2 2557:1 2562:3 2563:2 2574:2 2589:1 2591:2 2597:3 2602:1 2638:1 2640:2 2641:2 2654:3 2659:1 2662:4 2667:2 2671:1 2686:1 2691:1 2716:2 2738:3 2745:1 2749:1 2752:13 2773:2 2774:1 2776:1 2777:1 2779:1 2786:2 2791:2 2811:15 2813:1 2836:2 2839:3 2848:1 2856:1 2866:1 2893:1 2898:1 2902:1 2907:1 2917:1 2918:5 2934:3 2939:1 2948:1 2970:1 2979:1 2989:1 2993:1 2998:1 3006:2 3014:1 3027:2 3042:3 3057:1 3089:1 3090:2 3128:1 3129:2 3130:1 3134:1 3149:6 3193:1 3216:1 3225:2 3263:1 3264:1 3265:1 3277:1 3283:1 3285:1 3286:1 3291:1 3305:1 3328:1 3343:1 3358:2 3362:1 3383:1 3384:12 3399:1 3403:2 3405:2 3406:2 3409:1 3425:1 3429:1 3430:1 3438:1 3477:1 3479:1 3480:1 3484:1 3489:3 3490:1 3493:2 3501:1 3523:1 3548:1 3549:1 3552:1 3554:1 3559:2 3562:1 3565:2 3569:1 3576:1 3581:1 3596:1 3599:1 3603:2 3608:1 3610:1 3626:2 3628:1 3631:1 3640:1 3648:3 3663:1 3664:1 3668:4 3670:1 3673:2 3678:2 3687:2 3700:2 3715:1 3716:2 3730:1 3732:1 3734:2 3738:1 3756:1 3765:6 3766:3 3772:2 3808:1 3810:2 3813:1 3818:1 3834:1 3837:1 3839:2 3857:1 3864:1 3866:2 3870:1 3875:1 3891:2 3900:1 3910:2 3924:1 3932:1 3937:3 3940:1 3941:1 3944:2 3950:1 3954:2 3977:1 3981:1 3992:1 4008:1 4025:1 4027:2 4029:1 4045:7 4075:3 4081:1 4090:1 4101:1 4104:2 4114:2 4127:2 4133:1 4149:1 4152:1 4156:2 4169:1 4177:3 4194:1 4202:1 4203:1 4211:1 4225:2 4246:1 4249:1 4252:1 4256:1 4257:3 4259:1 4267:1 4276:1 4292:1 4304:1 4314:5 4327:1 4331:1 4355:4 4363:2 4371:1 4377:3 4380:1 4397:4 4420:2 4437:1 4440:2 4443:3 4456:3 4459:1 4468:1 4469:2 4475:1 4496:2 4511:1 4523:1 4549:1 4565:12 4567:1 4574:1 4576:1 4586:1 4601:1 4613:1 4623:1 4629:1 4664:1 4669:2 4684:1 4685:4 4687:5 4688:3 4690:1 4693:1 4695:2 4696:1 4698:1 4700:1 4701:1 4703:6 4704:4 4706:1 4708:2 4709:6 4715:2 4716:3 4721:1 4733:1 4764:1 4776:1 4789:2 4796:1 4820:1 4853:1 4891:1 4903:1 4917:1 4930:1 4937:2 4973:1 4977:1 5002:2 5008:2 5018:1 5061:1 5066:2 5088:3 5101:1 5121:1 5140:1 5146:1 5157:2 5163:1 5171:1 5180:1 5188:1 5197:1 5220:1 5230:1 5252:1 5254:1 5284:2 5287:1 5292:1 5298:2 5302:1 5313:5 5314:1 5316:2 5317:1 5320:2 5321:1 5336:1 5337:1 5369:3 5379:2 5380:1 5383:1 5394:6 5403:1 5406:2 5468:1 5481:1 5483:1 5485:1 5503:1 5507:1 5509:1 5510:1 5516:1 5522:2 5524:1 5538:1 5544:1 5549:1 5562:1 5568:1 5569:2 5576:2 5590:2 5594:1 5610:6 5612:1 5613:1 5619:1 5620:2 5628:1 5629:1 5632:1 5636:1 5668:1 5673:1 5678:1 5680:1 5682:1 5688:1 5692:1 5693:1 5696:12 5715:1 5735:3 5742:1 5761:1 5772:1 5787:3 5797:1 5812:6 5817:1 5824:1 5854:1 5869:1 5872:1 5890:1 5897:1 5898:1 5901:1 5905:2 5906:3 5911:1 5912:1 5915:2 5921:2 5923:3 5924:2 5958:1 5997:1 6008:1 6010:1 6046:1 6051:4 6052:2 6063:1 6106:1 6115:1 6124:1 6133:1 6148:1 6154:1 6177:1 6191:2 6199:2 6208:1 6213:1 6222:1 6270:1 6281:1 6290:2 6292:1 6295:1 6298:1 6301:1 6316:7 6323:2 6327:2 6329:1 6336:1 6338:1 6344:1 6355:2 6375:1 6378:1 6385:1 6387:1 6389:1 6424:1 6426:3 6437:2 6442:1 6448:2 6465:1 6470:1 6476:1 6479:1 6483:2 6491:1 6507:1 6525:1 6529:1 6530:1 6537:1 6545:1 6546:1 6553:1 6563:6 6569:2 6588:1 6595:1 6596:1 6600:1 6606:1 6609:2 6610:2 6618:1 6623:3 6624:1 6626:1 6631:5 6634:1 6637:1 6657:1 6658:1 6660:1 6670:1 6678:1 6702:1 6707:4 6716:3 6724:1 6732:1 6735:1 6752:2 6755:1 6757:1 6765:1 6788:1 6790:1 6798:1 6806:1 6812:1 6824:1 6868:1 6871:1 6875:1 6879:2 6917:1 6931:1 6935:2 6936:3 6940:2 6945:1 6951:3 6955:1 6971:4 6972:1 6974:2 6988:1 6989:3 6998:1 7002:1 7012:1 7020:2 7023:1 7028:1 7038:1 7043:1 7045:1 7051:1 7053:1 7066:1 7067:1 7076:1 7081:1 7102:1 7114:1 7120:1 7138:3 7153:3 7154:6 7165:2 7170:1 7173:4 7176:2 7178:3 7183:1 7192:1 7198:4 7199:2 7200:1 7213:40 7214:2 7220:1 7222:1 7228:1 7229:7 7231:4 7236:2 7270:1 7276:1 7278:1 7287:1 7297:1 7301:3 7302:2 7307:1 7309:1 7320:1 7322:1 7331:2 7341:1 7358:1 7360:1 7380:2 7388:1 7392:1 7410:1 7440:1 7451:1 7453:1 7454:3 7483:1 7489:1 7490:1 7491:1 7501:2 7549:1 7559:1 7569:1 7591:1 7592:1 7600:1 7604:1 7608:1 7628:1 7631:1 7639:1 7643:1 7644:2 7654:1 7663:1 7677:1 7678:1 7700:20 7706:1 7724:3 7726:2 7729:1 7731:2 7732:1 7773:3 7776:1 7777:1 7781:1 7810:1 7821:2 7825:2 7827:1 7830:1 7844:1 7854:1 7855:4 7860:3 7868:1 7894:2 7896:1 7902:1 7906:1 7918:1 7920:1 7930:1 7937:1 7939:1 7957:1 7958:1 7966:2 7968:1 7969:1 8028:1 8033:1 8034:1 8038:1 8039:1 8041:1 8048:1 8061:1 8064:1 8076:5 8087:2 8090:3 8109:1 8115:1 8122:1 8127:2 8130:1 8131:1 8145:1 8146:1 8162:2 8191:1 8196:1 8233:1 8234:1 8240:1 8244:1 8271:1 8272:1 8285:1 8293:1 8316:1 8319:1 8320:1 8324:3 8347:2 8353:1 8360:2 8361:1 8370:1 8377:1 8394:1 8395:1 8407:1 8415:3 8416:1 8417:1 8423:1 8425:1 8429:1 8436:1 8442:1 8444:1 8455:4 8477:1 8484:1 8500:1 8505:8 8506:5 8516:2 8517:1 8551:1 8561:1 8566:1 8570:2 8589:1 8596:1 8603:2 8605:2 8607:3 8609:2 8624:1 8629:1 8635:1 8644:1 8661:1 8672:1 8681:2 8683:1 8689:1 8692:5 8694:1 8715:3 8721:1 8734:4 8770:1 8771:1 8795:1 8802:1 8807:1 8823:3 8835:3 8840:1 8852:1 8858:1 8865:1 8888:1 8901:1 8905:1 8913:1 8919:7 8924:2 8956:3 8964:1 8965:1 8975:3 8981:1 9005:1 9024:1 9028:1 9031:3 9032:3 9034:2 9038:1 9056:1 9061:1 9064:1 9066:1 9096:1 9099:1 9107:1 9117:1 9142:2 9163:1 9173:2 9186:1 9196:1 9200:1 9201:1 9210:1 9242:1 9243:1 9248:1 9249:1 9262:1 9266:1 9289:1 9294:1 9296:1 9298:1 9301:5 9318:3 9325:4 9327:2 9336:1 9354:2 9371:2 9372:1 9396:1 9398:1 9410:1 9415:2 9427:1 9434:1 9444:1 9449:3 9453:1 9481:1 9485:1 9490:12 9492:1 9493:2 9497:2 9501:1 9519:2 9520:1 9535:1 9540:1 9555:1 9572:1 9587:1 9588:2 9590:1 9597:1 9622:1 9628:1 9643:1 9644:1 9646:1 9649:1 9651:4 9661:1 9663:1 9665:2 9702:1 9715:4 9720:1 9722:1 9723:1 9729:1 9732:2 9739:1 9742:1 9747:1 9749:1 9755:4 9769:1 9771:1 9787:1 9797:1 9803:1 9804:1 9810:1 9817:1 9819:1 9823:2 9827:1 9837:2 9846:1 9864:1 9866:2 9877:1 9879:1 9881:1 9886:5 9889:2 9899:2 9900:3 9905:1 9910:1 9920:1 9926:1 9943:2 9953:4 9954:2 9964:1 9979:1 9982:1 9983:1 9991:3 9995:1 10013:1 10026:1 10028:1 10035:3 10047:1 10057:5 10071:1 10080:1 10092:1 10093:1 10106:2 10140:1 10180:1 10191:1 10201:1 10206:1 10224:1 10225:1 10239:1 10240:2 10242:2 10245:1 10246:2 10252:1 10254:1 10261:1 10264:5 10265:5 10268:1 10276:1 10282:2 10283:2 10287:1 10288:1 10289:3 10293:1 10310:3 10313:1 10321:1 10336:2 10345:1 10372:1 10373:1 10376:2 10392:1 10406:1 10411:1 10424:1 10434:1 10436:1 10440:1 10466:1 10493:1 10499:1 10515:1 10518:1 10530:1 10532:2 10556:1 10575:1 10586:1 10592:1 10597:2 10611:3 10614:2 10617:1 10627:1 10630:2 10632:1 10633:1 10635:2 10644:3 10646:1 10647:1 10648:2 10657:1 10663:3 10667:2 10678:1 10693:14 10694:1 10696:1 10707:1 10718:1 10730:1 10734:4 10742:1 10745:2 10746:2 10756:1 10759:1 10786:1 10788:2 10799:2 10803:1 10813:2 10818:2 10831:1 10847:1 10859:1 10863:1 10890:1 10906:1 10924:1 10932:3 10933:1 10934:1 10937:1 10950:1 10951:2 10955:1 10956:2 10957:1 10960:1 10962:1 10968:1 10969:1 10977:1 10979:1 10988:1 10991:1 10992:1 10995:1 10998:1 11003:2 11006:3 11009:2 11031:1 11040:1 11055:1 11073:1 11100:1 11118:1 11120:1 11135:1 11141:1 11159:1 11160:1 11166:5 11173:1 11184:2 11188:2 11189:1 11201:1 11206:1 11214:1 11220:2 11227:1 11243:2 11261:1 11263:1 11283:1 11301:2 11306:1 11314:1 11321:1 11327:2 11333:1 11365:1 11372:1 11380:5 11381:2 11382:2 11394:1 11406:2 11412:1 11415:1 11418:1 11424:1 11476:1 11478:2 11479:1 11502:1 11506:1 11513:1 11520:1 11534:1 11542:1 11547:1 11557:1 11635:1 11638:3 11662:2 11674:1 11689:1 11695:1 11705:1 11718:1 11720:2 11721:1 11736:3 11745:1 11758:1 11774:1 11824:1 11831:1 11836:1 11839:1 11840:2 11847:1 11859:1 11882:11 11886:3 11899:2 11904:1 11915:1 11923:1 11928:1 11929:2 11936:2 11943:1 11954:1 11959:1 11964:1 11965:1 11974:1 11980:2 11981:1 11983:1 11989:1 12016:1 12039:1 12045:1 12048:1 12069:1 12081:1 12090:1 12091:2 12100:2 12101:1 12110:1 12112:1 12134:1 12151:3 12161:1 12208:1 12231:1 12252:1 12254:2 12257:4 12269:1 12274:2 12283:2 12290:1 12306:6 12323:1 12325:2 12346:1 12351:4 12352:1 12385:1 12386:1 12387:1 12389:1 12399:5 12400:1 12410:2 12413:1 12428:1 12436:1 12437:1 12446:1 12452:1 12453:1 12463:14 12469:1 12474:1 12506:2 12508:1 12515:2 12529:1 12533:1 12544:1 12547:1 12557:1 12559:1 12590:3 12613:1 12616:6 12617:1 12633:1 12642:1 12645:1 12668:2 12685:1 12692:1 12694:1 12703:2 12705:1 12707:1 12714:1 12719:1 12721:1 12728:6 12729:1 12732:1 12733:1 12734:1 12736:2 12737:1 12741:7 12742:2 12760:1 12761:1 12763:1 12765:1 12787:1 12814:1 12831:1 12842:1 12854:1 12872:1 12887:3 12919:1 12926:1 12929:1 12932:1 12939:1 12941:1 12946:1 12956:1 12960:1 12978:2 12986:1 12999:1 13005:7 13025:2 13032:1 13041:1 13064:1 13076:1 13077:1 13085:1 13090:1 13103:1 13109:1 13111:1 13131:1 13139:1 13161:1 13173:1 13180:1 13188:1 13197:1 13211:1 13237:1 13245:2 13261:4 13277:1 13288:1 13309:1 13320:1 13380:1 13383:3 13384:3 13391:1 13404:2 13406:1 13410:2 13412:1 13436:1 13442:1 13452:2 13470:1 13479:1 13480:1 13499:1 13524:2 13531:1 13535:1 13548:1 13554:1 13556:1 13563:2 13567:1 13578:3 13585:2 13630:1 13632:2 13637:2 13641:1 13679:2 13680:1 13690:1 13713:1 13720:1 13723:1 13731:1 13756:3 13768:1 13771:2 13804:1 13807:1 13850:1 13885:1 13891:2 13892:2 13895:1 13902:1 13912:1 13932:1 13977:1 13979:3 13984:1 13997:1 13998:1 14004:1 14032:1 14087:1 14092:1 14094:2 14115:1 14155:1 14170:2 14182:1 14187:1 14204:1 14211:1 14212:1 14213:2 14226:1 14240:2 14245:2 14248:1 14270:1 14274:1 14295:2 14311:2 14315:1 14318:1 14334:1 14345:2 14354:1 14362:1 14378:1 14387:1 14391:1 14397:3 14409:3 14419:1 14424:2 14435:2 14457:1 14460:1 14467:1 14484:1 14486:1 14489:2 14552:1 14553:1 14564:2 14575:1 14579:4 14584:1 14586:1 14593:1 14605:3 14606:1 14609:1 14612:1 14624:1 14626:1 14639:1 14658:2 14666:2 14703:2 14706:1 14709:1 14719:3 14726:1 14737:1 14739:3 14753:1 14764:2 14782:1 14802:1 14817:1 14819:1 14841:1 14847:1 14853:1 14857:13 14859:1 14872:1 14876:3 14878:1 14900:3 14904:1 14943:1 14954:1 14958:1 14962:2 14972:2 14976:1 14990:2 14994:1 15008:2 15015:1 15029:1 15030:2 15046:1 15052:1 15060:1 15062:1 15064:1 15068:1 15074:2 15075:1 15100:1 15117:1 15122:1 15128:4 15130:2 15131:2 15132:5 15133:1 15134:1 15135:2 15137:1 15139:2 15140:3 15143:1 15144:1 15147:1 15151:1 15161:1 15204:1 15206:2 15216:1 15232:1 15251:1 15255:1 15256:1 15279:2 15284:1 15288:2 15289:1 15307:1 15328:1 15336:1 15367:1 15370:1 15418:1 15430:1 15434:2 15445:1 15446:2 15455:2 15456:1 15466:1 15470:5 15475:1 15478:2 15487:1 15495:1 15496:1 15501:2 15505:1 15509:2 15513:1 15522:3 15526:2 15534:2 15544:1 15553:1 15585:10 15588:1 15604:1 15606:1 15611:1 15613:4 15618:1 15656:1 15671:1 15672:1 15678:2 15689:1 15695:3 15705:1 15706:1 15720:1 15722:2 15742:1 15756:2 15778:5 15791:1 15802:1 15811:1 15823:1 15841:1 15849:1 15878:2 15879:3 15895:1 15898:1 15936:2 15946:1 15950:1 15973:1 15980:1 15987:2 15992:1 16006:1 16022:1 16034:2 16039:1 16041:1 16055:1 16072:1 16116:1 16119:1 16150:1 16159:1 16163:1 16183:1 16187:1 16199:2 16202:1 16212:1 16213:3 16218:1 16224:1 16232:3 16238:2 16240:2 16244:2 16250:7 16284:1 16287:1 16288:1 16293:1 16294:1 16298:1 16305:1 16315:1 16316:1 16331:1 16368:1 16369:1 16389:3 16392:1 16403:1 16416:2 16427:1 16428:1 16434:1 16435:1 16451:1 16453:1 16482:1 16483:1 16484:1 16508:1 16513:1 16518:2 16554:1 16557:1 16576:1 16578:1 16594:2 16598:1 16600:1 16602:1 16614:1 16616:1 16646:1 16661:1 16684:1 16709:1 16710:1 16720:1 16740:2 16814:2 16815:1 16823:1 16833:1 16838:1 16844:1 16862:1 16879:1 16885:1 16907:1 16934:1 16937:3 16946:1 16951:1 16981:1 16999:10 17025:1 17050:1 17071:1 17087:13 17097:3 17099:1 17103:5 17128:2 17142:1 17156:1 17184:4 17192:2 17204:2 17218:1 17219:1 17243:1 17251:2 17263:2 17276:2134 17285:1 17289:1 17301:1 17302:1 17347:1 17351:1 17353:1 17374:2 17420:1 17421:1 17445:1 17465:1 17467:1 17469:1 17472:2 17474:4 17475:2 17493:1 17495:1 17515:1 17526:1 17535:1 17551:1 17552:1 17592:1 17595:1 17599:2 17608:1 17644:1 17654:3 17684:2 17697:1 17699:1 17707:2 17709:1 17717:1 17737:1 17748:2 17754:1 17765:1 17776:1 17787:1 17791:2 17795:2 17803:1 17809:1 17817:1 17836:2 17837:2 17855:2 17859:1 17862:1 17870:2 17876:1 17895:2 17896:1 17904:1 17913:1 17917:2 17927:7 17949:1 17951:1 17966:1 17970:2 17971:1 17978:1 17992:5 17999:1 18009:1 18011:1 18043:1 18047:4 18052:1 18054:2 18060:1 18062:2 18070:1 18075:4 18085:1 18090:1 18101:1 18104:3 18115:2 18116:1 18123:2 18141:1 18156:3 18159:1 18163:1 18178:1 18182:1 18183:1 18187:2 18193:1 18194:1 18197:1 18228:1 18233:1 18234:1 18240:1 18247:1 18271:1 18282:2 18294:1 18295:2 18296:1 18297:1 18301:1 18303:1 18308:1 18323:1 18326:1 18328:1 18332:1 18339:1 18343:1 18349:1 18359:1 18371:1 18374:1 18381:1 18382:1 18390:1 18416:1 18420:1 18422:4 18427:1 18428:3 18430:1 18474:1 18477:1 18492:1 18495:1 18499:1 18501:1 18503:2 18504:1 18508:2 18519:1 18521:1 18529:2 18533:1 18534:2 18536:2 18538:1 18548:1 18556:4 18564:2 18580:1 18582:1 18596:1 18598:1 18603:1 18604:4 18627:1 18628:1 18638:1 18639:1 18645:1 18653:1 18658:1 18665:2 18685:1 18690:1 18691:1 18707:1 18716:3 18718:15 18719:2 18726:1 18735:4 18738:1 18756:1 18784:1 18792:1 18805:1 18811:1 18817:1 18821:1 18835:1 18838:1 18847:1 18848:1 18866:1 18868:1 18875:1 18905:4 18919:2 18933:1 18937:2 18941:1 18949:2 18960:1 18962:1 18969:2 18996:6 18998:2 19005:1 19013:1 19022:1 19039:1 19040:1 19050:1 19057:1 19080:1 19085:3 19101:3 19112:1 19117:1 19119:1 19125:1 19128:1 19132:1 19133:1 19140:1 19143:2 19175:2 19183:3 19189:2 19190:2 19201:2 19204:1 19207:1 19209:1 19215:2 19243:4 19245:2 19254:2 19261:1 19279:2 19284:1 19286:1 19293:1 19311:2 19317:1 19324:2 19331:5 19334:1 19344:1 19349:2 19359:3 19385:2 19391:1 19394:1 19412:1 19415:1 19421:1 19422:1 19431:2 19439:2 19443:2 19447:1 19450:2 19451:1 19459:2 19478:1 19484:2 19506:2 19515:1 19516:1 19521:1 19522:1 19523:4 19537:2 19545:1 19546:1 19547:1 19551:1 19552:1 19558:2 19564:1 19577:1 19581:1 19591:1 19595:1 19614:1 19620:1 19627:1 19629:1 19633:2 19636:2 19648:1 19661:1 19697:1 19757:1 19770:2 19773:1 19782:2 19785:2 19790:1 19791:1 19794:1 19795:1 19798:1 19806:1 19812:2 19821:3 19823:1 19830:1 19837:1 19845:1 19866:1 19873:1 19880:1 19896:1 19897:1 19919:2 19921:1 19922:1 19927:1 19931:2 19934:1 19936:1 19951:1 19954:1 19959:2 19960:1 19963:2 19965:1 19976:1 19978:2 19989:1 19998:10 20001:1 20009:1 20010:2 20017:2 20028:1 20041:1 20049:1 20061:1 20063:1 20066:1 20067:1 20071:1 20075:1 20125:2 20134:1 20138:2 20141:1 20142:1 20147:1 20149:1 20151:3 20154:2 20156:1 20166:2 20177:1 20179:1 20182:1 20205:1 20206:1 20210:2 20212:3 20240:1 20248:1 20252:1 20316:3 20321:1 20322:3 20325:2 20326:3 20328:1 20329:1 20334:1 20337:2 20340:1 20341:2 20352:5 20362:1 20368:1 20381:1 20396:2 20400:2 20403:2 20417:1 20444:1 20471:2 20473:2 20481:1 20486:1 20492:1 20497:1 20503:1 20523:1 20524:1 20529:1 20532:1 20534:1 20544:1 20546:1 20553:1 20556:1 20567:1 20570:1 20572:5 20578:1 20587:1 20588:3 20592:3 20593:1 20599:1 20611:1 20628:2 20630:1 20632:1 20633:1 20634:4 20647:1 20655:2 20656:8 20662:1 20666:1 20670:1 20676:1 20692:1 20693:1 20719:7 20720:1 20733:1 20754:1 20772:1 20779:3 20780:1 20787:1 20796:1 20812:1 20813:1 20842:1 20844:2 20864:1 20879:1 20887:4 20889:1 20900:3 20905:3 20914:1 20919:1 20924:1 20926:1 20938:1 20940:3 20955:1 20962:1 20963:2 20968:3 20976:1 20982:1 20991:1 21005:1 21026:1 21029:1 21062:1 21066:1 21072:1 21073:1 21074:1 21079:1 21090:1 21100:2 21115:7 21116:2 21130:2 21134:2 21138:1 21140:4 21150:3 21163:2 21176:1 21203:1 21215:1 21216:1 21218:2 21220:2 21234:1 21235:1 21256:1 21257:1 21261:1 21262:1 21263:1 21266:1 21282:1 21284:1 21296:1 21303:2 21306:1 21309:2 21311:1 21340:3 21370:3 21385:1 21434:1 21453:3 21456:2 21462:5 21469:2 21479:1 21484:1 21488:3 21498:2 21500:2 21501:1 21502:2 21512:1 21520:4 21551:1 21559:1 21580:1 21586:1 21599:1 21613:2 21624:1 21635:1 21642:1 21647:1 21650:2 21674:2 21682:1 21686:2 21694:1 21695:1 21703:1 21708:1 21709:1 21724:1 21726:2 21730:2 21733:3 21742:1 21743:1 21755:1 21772:3 21773:2 21777:2 21792:1 21794:1 21800:1 21845:1 21846:4 21848:1 21853:1 21861:1 21862:2 21863:1 21864:1 21865:1 21867:1 21869:1 21898:1 21913:1 21916:1 21917:1 21930:1 21981:2 21991:1 22014:2 22019:1 22053:1 22066:1 22068:2 22074:1 22076:1 22078:1 22088:1 22102:1 22122:1 22125:1 22130:1 22136:1 22146:1 22176:1 22196:1 22218:1 22230:2 22238:1 22260:2 22263:1 22282:2 22296:3 22304:1 22320:1 22328:7 22345:1 22352:1 22358:3 22380:1 22382:1 22389:1 22391:3 22400:1 22402:1 22403:1 22407:1 22412:1 22435:3 22457:2 22459:1 22467:1 22469:1 22478:1 22502:1 22522:1 22530:1 22531:1 22550:1 22553:1 22559:1 22564:3 22565:2 22571:1 22575:1 22578:2 22581:1 22582:1 22612:5 22626:1 22627:1 22629:1 22632:1 22640:1 22642:1 22644:1 22646:1 22662:8 22663:5 22675:1 22685:1 22688:2 22693:1 22695:1 22696:1 22705:1 22709:1 22710:1 22713:1 22718:3 22726:2 22739:1 22755:1 22811:1 22827:1 22853:1 22856:1 22862:1 22868:1 22870:1 22876:2 22880:2 22886:2 22890:1 22895:1 22901:2 22903:2 22907:1 22923:1 22929:1 22931:1 22937:1 22943:2 22946:1 22948:1 22953:1 22963:1 22974:3 22987:2 22992:1 22993:1 23012:2 23018:1 23024:2 23041:1 23077:13 23078:2 23101:1 23105:1 23106:1 23115:1 23130:1 23136:2 23139:1 23144:1 23158:2 23161:1 23162:1 23169:1 23170:1 23181:1 23188:1 23197:1 23202:1 23217:1 23222:1 23261:1 23291:10 23292:1 23307:1 23316:2 23319:1 23329:1 23363:1 23373:1 23375:6 23378:1 23404:2 23406:1 23426:1 23432:1 23436:2 23440:1 23446:1 23481:1 23497:1 23503:2 23505:1 23514:2 23528:1 23532:1 23545:1 23557:1 23601:1 23602:1 23609:1 23613:1 23617:1 23631:1 23635:2 23639:3 23642:1 23648:1 23651:1 23652:1 23664:1 23666:1 23669:1 23695:4 23700:1 23704:1 23706:1 23719:1 23721:6 23738:1 23739:2 23756:1 23768:1 23774:2 23775:1 23784:1 23786:1 23803:1 23826:1 23840:1 23845:2 23889:1 23895:1 23909:1 23923:1 23932:1 23943:1 23999:2 24009:2 24024:1 24025:1 24027:1 24041:1 24055:1 24061:2 24092:4 24101:1 24104:1 24126:1 24129:1 24138:2 24140:1 24149:2 24150:1 24161:1 24165:13 24166:2 24177:1 24185:1 24193:1 24195:1 24206:1 24220:2 24230:1 24231:1 24233:1 24245:1 24251:1 24255:1 24256:1 24259:1 24263:1 24272:4 24275:3 24280:3 24285:2 24286:4 24289:1 24290:1 24304:1 24310:1 24350:1 24357:1 24363:1 24372:1 24376:1 24377:2 24400:2 24408:2 24416:1 24420:1 24424:1 24425:1 24427:2 24443:6 24444:1 24446:1 24454:1 24462:1 24471:1 24472:1 24479:1 24500:1 24502:1 24503:1 24521:1 24524:1 24553:1 24570:1 24592:1 24596:1 24600:2 24622:1 24625:1 24643:1 24648:1 24653:1 24655:1 24658:5 24675:1 24676:1 24710:1 24713:1 24715:1 24720:1 24721:1 24733:1 24737:1 24740:2 24747:1 24768:1 24773:2 24774:2 24784:1 24792:3 24809:1 24830:1 24839:1 24844:2 24870:1 24889:1 24892:1 24917:1 24928:2 24938:1 24944:3 24949:1 24953:1 24954:1 24964:1 24966:1 24972:1 24976:2 24994:1 25000:1 25005:2 25019:2 25022:1 25026:1 25031:2 25032:1 25059:1 25068:1 25070:1 25073:2 25081:1 25109:1 25110:1 25125:5 25129:1 25132:2 25145:1 25147:1 25177:1 25185:2 25191:1 25195:1 25200:1 25207:2 25213:1 25214:1 25224:2 25232:1 25239:1 25250:1 25251:1 25254:1 25255:1 25256:1 25260:1 25267:2 25269:1 25277:1 25281:2 25291:2 25295:1 25299:1 25302:1 25329:1 25330:1 25339:1 25346:2 25370:1 25389:1 25412:1 25454:2 25479:1 25487:1 25491:2 25514:2 25532:1 25536:1 25538:1 25543:5 25560:1 25572:1 25600:4 25630:1 25644:1 25693:1 25698:1 25702:2 25717:2 25731:1 25739:1 25752:1 25775:1 25777:1 25791:2 25793:3 25794:1 25801:1 25804:2 25808:1 25809:2 25820:1 25822:1 25828:1 25829:5 25841:1 25843:1 25856:2 25861:2 25863:2 25867:1 25869:1 25871:5 25875:1 25880:1 25881:1 25888:1 25892:3 25893:1 25905:3 25909:1 25913:2 25941:1 25946:1 25964:1 25965:1 25983:1 26005:1 26012:2 26015:4 26022:4 26028:1 26054:4 26067:1 26071:1 26080:1 26081:1 26092:1 26098:1 26099:1 26123:1 26125:2 26132:1 26163:1 26174:1 26194:1 26213:1 26214:1 26221:1 26222:1 26229:1 26230:2 26236:1 26244:1 26265:3 26298:1 26301:1 26305:1 26306:7 26312:1 26315:1 26325:2 26340:1 26368:5 26401:1 26411:1 26452:1 26464:1 26512:1 26527:2 26538:1 26539:1 26540:2 26541:1 26544:2 26547:3 26553:1 26557:1 26558:1 26565:1 26580:1 26612:1 26616:1 26655:3 26664:2 26690:2 26696:2 26706:1 26710:1 26722:1 26733:1 26745:1 26750:3 26751:1 26757:2 26759:1 26785:1 26787:1 26790:4 26793:2 26806:1 26810:1 26832:1 26837:1 26843:1 26848:1 26855:1 26862:1 26879:1 26883:3 26889:1 26891:1 26910:1 26920:2 26923:1 26940:1 26957:2 26961:2 26973:1 26978:1 26979:3 26986:3 26987:3 26988:1 26990:1 26996:1 27031:5 27034:1
1 13:1 35:1 39:1 47:1 50:1 55:1 89:1 120:1 137:1 138:3 139:1 144:1 150:2 157:1 165:1 169:3 182:5 192:1 209:1 222:1 233:1 238:7 255:3 264:1 280:2 306:1 315:4 317:3 327:3 334:3 339:1 346:2 362:2 372:1 382:1 395:5 397:5 404:1 412:1 445:1 446:1 472:2 500:1 511:1 515:2 532:1 544:3 552:1 568:1 578:1 582:2 584:1 588:1 604:2 630:1 665:1 678:1 683:1 711:1 723:2 726:1 743:1 745:2 751:1 764:1 789:5 794:1 798:1 800:1 802:4 808:1 822:14 826:4 837:3 854:3 868:1 872:1 873:4 874:2 875:7 877:1 878:2 880:2 882:1 894:2 912:4 915:4 926:1 953:2 958:1 972:1 1002:1 1013:2 1017:1 1035:1 1037:1 1053:1 1059:2 1061:1 1064:1 1108:3 1109:2 1114:1 1116:1 1122:2 1125:1 1126:1 1141:1 1150:1 1151:1 1154:1 1158:2 1170:1 1173:2 1187:1 1193:2 1195:1 1227:1 1228:1 1244:1 1262:1 1264:1 1266:1 1269:1 1279:1 1292:1 1312:1 1316:1 1324:1 1325:2 1345:1 1346:2 1364:1 1366:1 1371:3 1379:1 1392:1 1397:1 1402:1 1405:2 1419:1 1427:1 1437:1 1445:1 1448:4 1454:7 1456:2 1465:1 1469:1 1490:2 1499:1 1501:1 1510:1 1514:1 1523:1 1526:1 1530:2 1538:1 1542:2 1549:1 1553:1 1555:1 1559:1 1568:1 1571:2 1580:1 1584:1 1587:1 1592:1 1596:1 1600:1 1606:1 1615:1 1619:1 1634:2 1635:1 1652:1 1653:5 1659:1 1663:1 1675:1 1681:1 1684:2 1687:1 1688:2 1696:6 1703:1 1723:4 1724:2 1737:1 1745:1 1749:1 1757:2 1759:4 1761:1 1762:1 1764:1 1787:1 1794:1 1801:2 1806:2 1807:1 1809:1 1822:2 1825:1 1866:1 1870:7 1875:1 1881:1 1885:1 1892:2 1897:1 1899:2 1904:1 1907:2 1925:1 1931:1 1938:1 1956:1 1959:1 1976:2 1978:1 1983:1 1984:1 1988:2 1990:1 2004:1 2014:1 2027:10 2037:1 2046:1 2051:1 2053:1 2071:1 2078:1 2092:2 2103:3 2107:1 2119:1 2120:1 2123:1 2126:2 2142:2 2143:2 2147:2 2148:5 2150:1 2152:1 2154:2 2157:2 2158:2 2159:1 2160:1 2161:4 2165:1 2167:4 2170:3 2172:5 2173:7 2185:1 2196:1 2216:1 2219:1 2224:1 2226:3 2229:1 2234:1 2246:1 2248:1 2257:1 2274:1 2275:1 2277:1 2285:1 2293:1 2294:1 2296:1 2328:1 2333:1 2342:1 2350:1 2351:1 2360:1 2367:1 2377:3 2388:1 2390:1 2405:1 2413:1 2417:1 2432:3 2435:2 2437:1 2439:6 2443:1 2444:1 2445:1 2454:1 2457:1 2478:4 2479:1 2483:1 2496:2 2503:1 2504:1 2505:1 2506:1 2513:6 2520:1 2526:2 2529:7 2535:4 2537:1 2545:2 2547:1 2553:1 2555:2 2557:1 2562:3 2563:2 2574:2 2589:1 2591:2 2597:3 2602:1 2638:1 2640:2 2641:2 2654:3 2659:1 2662:4 2667:2 2671:1 2686:1 2691:1 2716:2 2738:3 2745:1 2749:1 2752:14 2773:2 2774:1 2776:1 2777:1 2779:1 2786:2 2791:2 2811:16 2813:1 2836:2 2839:3 2848:1 2856:1 2866:1 2893:1 2898:1 2902:1 2907:1 2917:1 2918:5 2934:3 2939:1 2948:1 2970:1 2979:1 2989:1 2993:1 2998:1 3006:2 3014:1 3027:2 3042:3 3057:1 3089:1 3090:2 3128:1 3129:2 3130:1 3134:1 3149:6 3193:1 3216:1 3225:2 3263:1 3264:1 3265:1 3277:1 3283:1 3285:1 3286:1 3291:1 3305:1 3328:1 3343:1 3358:2 3362:1 3383:1 3384:12 3399:1 3403:2 3405:2 3406:2 3409:1 3425:1 3429:1 3430:1 3438:1 3446:1 3477:1 3479:1 3480:1 3484:1 3489:3 3490:1 3493:2 3501:1 3523:1 3548:1 3549:1 3552:1 3554:1 3559:2 3562:1 3565:2 3569:1 3576:1 3581:1 3596:1 3599:1 3603:2 3608:1 3610:1 3626:2 3628:1 3631:1 3640:1 3648:3 3663:1 3664:1 3668:4 3670:1 3673:2 3678:2 3687:2 3700:2 3715:1 3716:2 3730:1 3732:1 3734:2 3738:1 3756:1 3765:6 3766:3 3772:2 3808:1 3810:2 3813:1 3818:1 3834:1 3837:1 3839:2 3857:1 3864:1 3866:2 3870:1 3875:1 3891:2 3900:1 3910:2 3924:1 3932:1 3937:3 3940:1 3941:1 3944:2 3950:1 3954:2 3977:1 3981:1 3992:1 4008:1 4025:1 4027:2 4029:1 4045:7 4075:3 4081:1 4090:1 4101:1 4104:2 4114:2 4127:2 4133:1 4149:1 4152:1 4156:2 4169:1 4177:3 4194:1 4202:1 4203:1 4211:1 4225:2 4246:1 4249:1 4252:1 4256:1 4257:3 4259:1 4267:1 4276:1 4292:3 4304:1 4314:5 4327:1 4331:1 4355:4 4363:2 4371:1 4372:1 4377:3 4380:1 4397:4 4420:2 4437:1 4440:2 4443:3 4456:3 4459:1 4468:1 4469:2 4475:1 4496:2 4511:1 4523:1 4549:1 4565:13 4567:1 4574:1 4576:1 4586:1 4595:1 4601:1 4613:1 4623:1 4629:1 4664:1 4669:2 4684:1 4685:4 4687:6 4688:3 4690:1 4693:2 4695:2 4696:1 4698:1 4700:1 4701:1 4703:6 4704:4 4706:1 4708:2 4709:7 4715:2 4716:4 4721:1 4733:1 4764:1 4776:1 4789:2 4796:1 4820:1 4853:1 4891:1 4903:1 4917:1 4930:1 4937:2 4973:1 4977:1 5002:2 5008:2 5018:1 5061:1 5066:2 5088:3 5101:1 5121:1 5140:1 5146:1 5157:2 5163:1 5171:1 5180:1 5188:1 5197:1 5220:1 5230:1 5252:1 5254:1 5284:2 5287:1 5292:1 5298:2 5302:1 5305:1 5313:5 5314:1 5316:2 5317:1 5320:2 5321:1 5336:1 5337:1 5369:3 5379:2 5380:1 5383:1 5394:6 5403:1 5406:2 5452:1 5468:1 5481:1 5483:1 5485:1 5503:1 5507:1 5509:1 5510:1 5516:1 5522:2 5524:1 5538:1 5544:1 5549:1 5562:1 5568:1 5569:2 5576:2 5590:2 5594:1 5610:6 5612:1 5613:1 5619:1 5620:2 5628:1 5629:1 5632:1 5636:1 5668:1 5673:1 5678:1 5680:1 5682:1 5688:1 5692:1 5693:1 5696:12 5715:1 5735:3 5742:1 5761:1 5772:1 5787:3 5797:1 5812:6 5817:1 5824:1 5854:1 5869:1 5872:1 5890:1 5897:1 5898:1 5901:1 5905:2 5906:3 5911:1 5912:1 5915:2 5921:2 5923:4 5924:3 5958:1 5997:1 6008:1 6010:1 6046:1 6051:4 6052:2 6063:1 6106:1 6115:1 6124:1 6133:1 6148:1 6154:1 6177:1 6191:2 6199:2 6208:1 6213:1 6222:1 6270:1 6281:1 6290:2 6292:1 6295:1 6298:1 6301:1 6316:7 6323:2 6327:2 6329:1 6336:1 6338:1 6344:1 6355:2 6375:1 6378:1 6385:1 6387:1 6389:1 6424:1 6426:3 6437:2 6442:1 6448:2 6465:1 6470:1 6476:1 6479:1 6483:2 6491:1 6507:1 6525:1 6529:1 6530:1 6537:1 6545:1 6546:1 6553:1 6563:6 6569:2 6588:1 6595:1 6596:1 6600:1 6606:1 6609:2 6610:2 6618:1 6623:4 6624:1 6626:1 6631:5 6634:1 6637:1 6657:1 6658:1 6660:1 6670:1 6678:1 6702:1 6707:4 6716:3 6724:1 6732:1 6735:1 6752:2 6755:1 6757:1 6765:1 6788:1 6790:1 6798:1 6806:1 6812:1 6824:1 6868:1 6871:1 6875:1 6879:2 6917:1 6931:1 6935:2 6936:4 6940:2 6945:1 6951:3 6955:1 6971:4 6972:1 6974:2 6988:1 6989:3 6998:1 7002:1 7012:1 7020:2 7023:1 7028:1 7038:1 7043:1 7045:1 7051:1 7053:1 7066:1 7067:1 7076:1 7081:1 7102:1 7114:1 7120:1 7138:3 7153:3 7154:6 7165:2 7170:1 7173:4 7176:2 7178:3 7183:1 7192:1 7198:4 7199:2 7200:1 7213:41 7214:2 7220:1 7222:1 7228:1 7229:7 7231:4 7236:2 7270:1 7276:1 7278:1 7287:1 7297:1 7301:3 7302:2 7307:1 7309:1 7320:1 7322:1 7331:2 7341:3 7358:1 7360:1 7380:2 7388:1 7392:1 7410:2 7440:1 7451:1 7453:1 7454:3 7483:1 7489:1 7490:1 7491:1 7501:2 7540:1 7549:1 7559:1 7569:1 7591:1 7592:1 7600:1 7604:1 7608:1 7628:1 7631:1 7639:1 7643:1 7644:2 7654:1 7663:1 7677:1 7678:1 7700:21 7706:1 7724:3 7726:2 7729:1 7731:2 7732:1 7773:4 7776:1 7777:1 7781:1 7810:1 7821:2 7825:2 7827:1 7830:1 7844:1 7854:1 7855:4 7860:3 7868:1 7894:2 7896:1 7902:1 7906:1 7918:1 7920:1 7930:1 7937:1 7939:1 7957:1 7958:1 7966:2 7968:1 7969:1 8028:1 8033:1 8034:1 8038:1 8039:1 8041:1 8048:1 8061:1 8064:1 8076:5 8087:2 8090:3 8109:1 8115:1 8122:1 8127:2 8130:1 8131:1 8145:1 8146:1 8162:2 8191:1 8196:1 8233:1 8234:1 8240:1 8244:1 8271:1 8272:1 8285:1 8293:1 8316:1 8319:1 8320:1 8324:3 8347:2 8353:1 8360:2 8361:1 8370:1 8377:1 8394:1 8395:1 8407:1 8415:5 8416:1 8417:1 8423:1 8425:1 8429:1 8436:1 8442:1 8444:1 8455:5 8477:1 8484:1 8500:1 8505:9 8506:5 8516:2 8517:1 8551:3 8561:1 8566:1 8570:2 8589:1 8596:1 8603:2 8605:2 8607:3 8609:2 8624:1 8629:1 8635:1 8644:1 8661:1 8672:1 8681:2 8683:1 8689:1 8692:5 8694:1 8715:3 8721:1 8734:4 8770:1 8771:1 8782:1 8795:1 8802:1 8807:1 8823:3 8835:3 8840:1 8852:1 8858:1 8865:1 8888:1 8901:1 8905:1 8913:1 8919:7 8924:2 8956:3 8964:1 8965:1 8975:3 8981:1 9005:1 9024:1 9028:1 9031:3 9032:3 9034:2 9038:1 9056:1 9061:1 9064:1 9066:1 9096:1 9099:1 9107:1 9117:1 9142:2 9163:1 9173:2 9186:1 9196:1 9200:1 9201:1 9210:1 9242:1 9243:1 9248:1 9249:1 9262:1 9266:1 9289:1 9294:1 9296:1 9298:1 9301:5 9318:3 9325:4 9327:2 9336:1 9354:2 9371:3 9372:1 9396:1 9398:1 9410:1 9415:2 9427:1 9434:1 9444:1 9449:3 9453:1 9481:1 9485:1 9490:12 9492:1 9493:2 9497:2 9501:1 9519:2 9520:1 9535:1 9540:1 9555:1 9572:1 9587:1 9588:2 9590:1 9597:1 9607:1 9622:1 9628:1 9643:1 9644:1 9646:1 9649:1 9651:4 9661:1 9663:1 9665:2 9702:1 9715:4 9720:1 9722:1 9723:1 9729:1 9732:2 9739:1 9742:1 9747:1 9749:1 9755:4 9769:1 9771:1 9787:1 9797:1 9803:1 9804:1 9810:1 9817:1 9819:1 9823:2 9827:1 9837:2 9846:1 9864:1 9866:2 9877:1 9879:1 9881:1 9886:7 9889:4 9899:2 9900:3 9905:1 9910:1 9920:2 9926:1 9943:2 9953:4 9954:2 9964:1 9979:1 9982:1 9983:1 9991:3 9995:1 10013:1 10026:1 10028:1 10035:3 10047:1 10057:5 10071:1 10080:1 10092:1 10093:1 10106:2 10140:1 10180:1 10191:1 10201:1 10206:1 10224:1 10225:1 10239:1 10240:2 10242:2 10245:1 10246:2 10252:1 10254:1 10261:1 10264:5 10265:5 10268:1 10276:1 10282:2 10283:2 10287:1 10288:1 10289:3 10293:1 10310:3 10313:1 10318:1 10321:1 10336:2 10345:1 10372:1 10373:1 10376:2 10392:1 10406:1 10411:1 10424:1 10434:1 10436:1 10440:1 10466:1 10493:1 10499:1 10515:1 10518:1 10530:1 10532:2 10556:1 10575:1 10586:1 10592:1 10597:2 10611:3 10614:2 10617:1 10627:1 10630:2 10632:1 10633:1 10635:2 10644:3 10646:1 10647:1 10648:2 10657:1 10663:3 10667:2 10678:1 10693:14 10694:1 10696:1 10707:1 10718:1 10730:1 10734:4 10742:1 10745:2 10746:2 10756:1 10759:1 10769:1 10786:1 10788:2 10799:2 10803:1 10813:2 10818:2 10831:1 10847:1 10859:1 10863:1 10890:1 10906:1 10924:1 10932:3 10933:1 10934:1 10937:1 10950:1 10951:3 10955:1 10956:2 10957:1 10960:1 10962:1 10968:1 10969:1 10977:1 10979:1 10988:1 10991:1 10992:1 10995:1 10998:1 11003:2 11006:4 11009:2 11031:1 11040:1 11055:1 11073:1 11100:1 11118:1 11120:1 11135:1 11141:1 11159:1 11160:1 11166:5 11173:1 11184:2 11188:2 11189:1 11201:1 11206:1 11214:1 11220:2 11227:1 11243:2 11261:1 11263:1 11283:1 11301:2 11306:1 11314:1 11321:1 11327:2 11333:1 11365:1 11372:1 11380:5 11381:2 11382:2 11394:1 11406:2 11412:1 11415:1 11418:1 11424:1 11476:1 11478:2 11479:1 11502:1 11506:1 11513:1 11520:1 11534:1 11542:1 11547:1 11557:1 11635:1 11638:3 11662:2 11674:1 11689:1 11695:1 11705:1 11718:1 11720:2 11721:1 11736:3 11745:1 11758:1 11767:1 11774:1 11824:1 11831:1 11836:1 11839:1 11840:2 11847:1 11859:1 11882:12 11886:3 11899:2 11904:1 11915:1 11923:1 11928:1 11929:2 11936:2 11943:1 11954:1 11959:1 11964:1 11965:1 11974:1 11980:2 11981:1 11983:1 11989:1 12016:1 12034:1 12039:1 12045:2 12048:1 12069:1 12081:1 12090:1 12091:2 12100:2 12101:1 12110:1 12112:1 12134:1 12151:3 12161:1 12163:1 12208:1 12209:1 12231:1 12252:1 12254:2 12257:4 12269:1 12274:2 12283:2 12290:1 12306:6 12323:1 12325:2 12346:1 12351:4 12352:1 12367:1 12385:1 12386:1 12387:1 12389:1 12399:5 12400:1 12410:2 12413:1 12428:1 12436:1 12437:1 12440:2 12446:1 12452:1 12453:1 12463:15 12469:1 12474:1 12506:2 12508:1 12515:2 12529:1 12533:1 12544:1 12547:1 12556:1 12557:1 12559:1 12590:3 12613:1 12616:6 12617:1 12633:1 12642:1 12645:1 12668:2 12685:1 12692:1 12694:1 12703:2 12705:1 12707:1 12714:1 12719:1 12721:1 12728:6 12729:1 12732:1 12733:1 12734:1 12736:2 12737:1 12741:7 12742:2 12760:1 12761:1 12763:1 12765:1 12787:1 12814:1 12831:1 12842:1 12854:1 12872:1 12887:3 12919:1 12926:1 12929:1 12932:1 12939:1 12941:1 12946:1 12956:1 12960:1 12978:2 12986:1 12999:1 13005:7 13025:2 13032:1 13041:1 13064:1 13076:1 13077:1 13085:1 13090:1 13103:1 13109:1 13111:1 13131:1 13139:1 13161:1 13170:1 13173:1 13180:1 13188:1 13197:1 13211:1 13237:1 13245:2 13261:4 13277:1 13288:1 13309:1 13320:1 13380:1 13383:3 13384:3 13391:1 13404:2 13406:1 13410:2 13412:1 13436:1 13442:1 13452:2 13470:1 13479:1 13480:1 13499:1 13524:2 13531:1 13535:1 13548:1 13552:1 13554:1 13556:1 13563:2 13567:1 13578:3 13585:2 13630:1 13632:2 13637:2 13641:1 13679:2 13680:1 13690:1 13713:1 13720:1 13723:1 13731:1 13756:3 13768:1 13771:2 13804:1 13807:1 13850:1 13885:2 13891:2 13892:2 13895:1 13902:1 13912:1 13932:1 13977:1 13979:3 13984:1 13997:1 13998:1 14004:1 14032:1 14087:1 14092:1 14094:2 14115:1 14155:1 14170:2 14182:1 14187:1 14204:1 14211:1 14212:1 14213:2 14226:1 14240:2 14245:3 14248:1 14270:1 14274:1 14275:1 14295:2 14311:2 14315:1 14318:1 14334:1 14345:2 14354:1 14362:1 14378:1 14387:1 14391:1 14397:4 14409:3 14419:1 14424:2 14435:2 14457:1 14460:1 14467:1 14484:1 14486:1 14489:2 14552:1 14553:1 14564:2 14571:1 14575:1 14579:4 14584:1 14586:1 14593:1 14605:3 14606:1 14609:1 14612:1 14624:1 14626:1 14639:1 14658:2 14666:2 14703:2 14706:1 14709:1 14719:3 14726:1 14737:1 14739:3 14753:1 14764:2 14782:1 14802:1 14817:1 14819:1 14841:1 14847:1 14853:1 14857:14 14859:1 14872:1 14876:3 14878:1 14900:3 14904:1 14943:1 14954:1 14958:1 14962:2 14972:2 14976:1 14990:2 14994:1 15008:2 15015:1 15029:1 15030:2 15046:1 15052:1 15060:1 15062:1 15064:1 15068:1 15074:2 15075:1 15100:3 15117:1 15122:1 15128:5 15130:2 15131:2 15132:5 15133:1 15134:1 15135:2 15137:1 15139:2 15140:3 15143:1 15144:1 15147:1 15151:1 15161:1 15204:1 15206:2 15216:1 15232:1 15251:1 15255:1 15256:1 15279:2 15284:1 15288:2 15289:1 15307:1 15328:1 15336:1 15337:1 15367:1 15370:1 15418:1 15430:1 15434:2 15445:1 15446:2 15455:2 15456:1 15466:1 15470:5 15475:1 15478:2 15487:1 15495:1 15496:1 15501:2 15505:2 15509:2 15513:1 15522:3 15526:2 15534:2 15544:1 15553:1 15585:11 15588:1 15604:1 15606:1 15611:1 15613:4 15618:1 15656:1 15671:1 15672:1 15678:2 15689:1 15695:3 15705:1 15706:1 15720:1 15722:2 15742:1 15756:2 15778:5 15791:1 15802:1 15811:1 15823:1 15841:1 15849:1 15878:2 15879:3 15895:1 15898:1 15936:2 15946:1 15950:1 15970:1 15973:1 15980:1 15987:2 15992:1 16006:1 16022:2 16034:2 16039:1 16041:1 16055:1 16072:1 16116:1 16119:1 16150:1 16159:1 16163:1 16183:1 16187:1 16199:2 16202:1 16212:1 16213:3 16218:1 16224:1 16232:3 16238:2 16240:2 16244:2 16250:8 16284:1 16287:2 16288:1 16293:1 16294:1 16298:1 16305:1 16311:1 16315:1 16316:1 16331:1 16368:1 16369:1 16389:3 16392:1 16403:1 16416:2 16427:1 16428:1 16434:1 16435:1 16440:1 16451:1 16453:1 16482:1 16483:1 16484:1 16508:1 16513:1 16518:2 16554:1 16557:1 16576:1 16578:1 16594:2 16598:1 16600:1 16602:1 16614:1 16616:1 16646:1 16661:1 16684:1 16709:1 16710:1 16720:2 16740:2 16814:2 16815:1 16823:1 16833:1 16838:1 16844:1 16862:1 16879:1 16885:1 16907:1 16934:1 16937:3 16946:1 16951:1 16981:1 16986:1 16999:11 17025:1 17050:1 17071:1 17087:13 17097:3 17099:1 17102:1 17103:5 17128:2 17142:1 17156:2 17184:4 17192:2 17204:2 17218:1 17219:1 17243:1 17251:2 17263:2 17276:2183 17285:1 17289:1 17301:1 17302:1 17347:1 17351:1 17353:1 17374:2 17420:1 17421:1 17445:1 17465:1 17467:1 17469:1 17472:2 17474:5 17475:2 17493:1 17495:1 17515:1 17526:1 17535:1 17551:1 17552:1 17592:1 17595:3 17599:2 17608:1 17644:1 17654:3 17684:2 17697:1 17699:1 17707:2 17709:1 17717:1 17737:1 17748:2 17754:1 17765:1 17776:1 17787:1 17791:2 17795:2 17803:1 17809:1 17817:1 17836:2 17837:2 17855:2 17859:1 17862:1 17870:2 17876:1 17895:2 17896:1 17904:1 17913:1 17917:2 17927:8 17949:1 17951:1 17966:1 17970:2 17971:1 17978:1 17992:5 17999:1 18009:1 18011:1 18043:1 18047:4 18052:1 18054:2 18060:1 18062:2 18070:1 18075:4 18085:1 18090:1 18101:1 18104:3 18115:2 18116:1 18123:2 18141:1 18156:3 18159:1 18163:1 18178:1 18182:1 18183:2 18187:2 18193:1 18194:1 18197:1 18228:1 18233:1 18234:1 18240:1 18247:1 18271:1 18282:2 18294:1 18295:2 18296:1 18297:1 18301:1 18303:1 18308:1 18323:1 18326:1 18328:1 18332:1 18339:1 18343:1 18349:1 18359:1 18371:1 18374:1 18381:1 18382:1 18390:1 18416:1 18420:2 18422:4 18427:1 18428:3 18430:1 18474:1 18477:1 18478:1 18492:1 18495:1 18499:1 18501:1 18503:2 18504:1 18508:2 18519:1 18521:1 18525:2 18529:2 18533:1 18534:2 18536:2 18538:1 18548:1 18556:4 18564:2 18580:1 18582:1 18596:1 18598:1 18603:1 18604:4 18627:1 18628:1 18638:1 18639:1 18645:1 18653:1 18658:1 18665:2 18685:1 18690:1 18691:1 18707:1 18716:3 18718:16 18719:2 18726:1 18735:4 18738:1 18756:1 18759:1 18784:1 18792:1 18805:1 18811:1 18817:1 18821:1 18835:1 18838:1 18847:1 18848:1 18866:1 18868:1 18875:1 18905:4 18919:2 18933:1 18937:2 18941:1 18949:2 18960:1 18962:1 18969:2 18996:7 18998:2 19005:1 19013:1 19022:1 19039:1 19040:1 19050:1 19057:1 19080:1 19085:3 19101:3 19112:1 19117:1 19119:1 19125:1 19128:1 19132:1 19133:1 19140:1 19143:2 19175:2 19183:3 19189:2 19190:2 19201:2 19204:2 19207:1 19209:1 19215:2 19243:4 19245:2 19254:2 19261:1 19279:2 19284:1 19286:1 19293:1 19311:2 19317:1 19324:2 19331:5 19334:1 19344:1 19349:2 19359:3 19385:2 19391:1 19394:1 19412:1 19415:1 19421:1 19422:1 19431:2 19439:2 19443:2 19447:1 19450:2 19451:1 19459:2 19478:1 19484:2 19506:2 19515:1 19516:1 19521:1 19522:1 19523:4 19537:2 19542:1 19545:1 19546:1 19547:1 19551:1 19552:1 19558:2 19564:1 19577:1 19581:1 19591:1 19595:1 19614:1 19620:1 19627:1 19629:1 19633:2 19636:2 19648:1 19661:1 19697:1 19756:1 19757:1 19770:2 19773:1 19782:2 19785:2 19790:1 19791:1 19794:1 19795:1 19798:1 19806:1 19812:2 19821:3 19823:1 19830:1 19837:1 19845:1 19866:1 19873:1 19880:1 19896:1 19897:1 19919:2 19921:1 19922:1 19927:1 19931:2 19934:1 19936:1 19951:2 19954:2 19959:2 19960:1 19963:2 19965:1 19976:1 19978:2 19989:1 19998:11 20001:1 20009:1 20010:2 20017:2 20028:1 20041:1 20049:1 20061:1 20063:1 20066:1 20067:1 20071:1 20075:1 20125:2 20134:1 20138:2 20141:1 20142:1 20147:1 20149:1 20151:4 20154:3 20156:1 20166:2 20177:1 20179:1 20182:1 20183:1 20205:1 20206:1 20210:2 20212:3 20240:1 20248:1 20252:1 20316:3 20321:1 20322:4 20325:3 20326:3 20328:1 20329:1 20334:1 20337:2 20340:1 20341:2 20352:5 20362:1 20368:1 20381:1 20396:2 20400:2 20403:2 20417:1 20444:1 20471:2 20473:2 20481:1 20486:1 20492:1 20497:1 20503:1 20523:1 20524:1 20529:1 20532:1 20533:1 20534:1 20544:1 20546:1 20553:1 20556:1 20567:1 20570:1 20572:5 20578:1 20587:1 20588:3 20592:3 20593:1 20599:1 20611:1 20619:1 20628:2 20630:1 20632:1 20633:1 20634:4 20647:1 20655:2 20656:8 20658:1 20662:1 20666:1 20670:1 20675:1 20676:1 20692:1 20693:1 20719:7 20720:1 20733:1 20754:1 20772:1 20779:4 20780:1 20787:1 20796:1 20812:1 20813:1 20842:1 20844:2 20864:1 20879:1 20887:6 20889:1 20900:3 20905:3 20914:1 20919:1 20924:1 20926:1 20938:1 20940:3 20955:1 20962:1 20963:2 20968:3 20976:1 20982:1 20991:1 21005:1 21026:1 21029:1 21062:1 21066:1 21072:1 21073:1 21074:1 21079:1 21090:1 21100:2 21115:8 21116:2 21130:2 21134:2 21138:1 21140:4 21150:3 21163:2 21176:1 21203:1 21215:1 21216:1 21218:2 21220:2 21234:1 21235:1 21256:1 21257:1 21261:1 21262:1 21263:1 21266:1 21282:1 21284:1 21296:1 21303:2 21306:1 21309:2 21311:1 21340:3 21370:3 21385:1 21415:1 21434:1 21453:3 21456:2 21462:5 21469:2 21479:1 21484:1 21488:3 21498:2 21500:2 21501:1 21502:2 21512:1 21520:4 21551:1 21559:1 21580:1 21586:1 21599:1 21613:2 21624:1 21635:1 21642:1 21647:1 21650:2 21674:2 21682:1 21686:2 21694:1 21695:1 21703:1 21708:1 21709:1 21724:1 21726:2 21730:2 21733:3 21742:1 21743:1 21755:1 21772:3 21773:2 21777:2 21792:1 21794:1 21800:1 21845:1 21846:4 21848:1 21853:1 21859:1 21861:1 21862:2 21863:1 21864:1 21865:1 21867:1 21869:1 21898:1 21913:1 21916:1 21917:1 21930:1 21981:2 21991:1 22014:2 22019:1 22053:1 22066:1 22068:2 22074:1 22076:1 22078:1 22088:1 22102:1 22122:1 22125:1 22130:1 22136:1 22146:1 22176:1 22188:1 22196:1 22218:1 22230:2 22238:1 22260:2 22263:1 22282:2 22296:3 22304:1 22320:1 22327:1 22328:7 22345:1 22352:1 22358:3 22380:1 22382:1 22389:1 22391:4 22400:1 22402:1 22403:1 22407:1 22412:1 22435:3 22457:2 22459:1 22467:1 22469:1 22478:1 22502:1 22522:1 22530:1 22531:1 22550:1 22553:1 22559:1 22564:3 22565:2 22571:1 22572:1 22575:1 22578:2 22581:1 22582:1 22592:1 22612:5 22626:1 22627:1 22629:1 22632:1 22640:1 22642:1 22644:1 22646:1 22662:9 22663:5 22675:1 22685:1 22688:2 22693:1 22695:1 22696:1 22705:1 22709:1 22710:1 22713:1 22718:3 22726:2 22739:1 22755:1 22811:1 22827:1 22853:2 22856:1 22862:1 22868:1 22870:1 22876:2 22880:2 22886:2 22890:1 22895:1 22901:2 22903:2 22907:1 22923:1 22929:1 22931:1 22937:1 22942:1 22943:2 22946:1 22948:1 22953:1 22963:1 22974:3 22987:2 22992:1 22993:1 23012:2 23018:1 23024:2 23041:1 23077:14 23078:2 23101:1 23105:1 23106:1 23115:1 23123:1 23130:1 23136:2 23139:1 23144:1 23158:2 23161:1 23162:1 23169:1 23170:1 23181:1 23188:1 23197:1 23202:1 23217:1 23222:1 23261:1 23291:10 23292:1 23307:1 23316:2 23319:1 23329:1 23363:1 23373:1 23375:6 23378:1 23387:1 23404:2 23406:1 23426:1 23432:1 23436:2 23440:1 23446:1 23481:1 23497:1 23503:2 23505:1 23514:2 23528:1 23532:1 23545:1 23557:1 23601:1 23602:1 23609:1 23613:1 23617:1 23631:1 23635:2 23639:3 23642:1 23648:1 23651:1 23652:1 23664:1 23666:1 23669:1 23695:4 23700:1 23704:1 23706:1 23719:1 23721:6 23738:1 23739:2 23756:1 23768:1 23774:2 23775:1 23784:1 23786:1 23803:1 23826:1 23840:1 23845:2 23889:1 23895:1 23909:1 23923:1 23932:1 23943:1 23999:2 24009:2 24019:1 24024:1 24025:1 24027:1 24041:1 24055:1 24061:3 24092:4 24101:1 24104:1 24126:1 24129:1 24138:2 24140:1 24149:2 24150:1 24161:1 24165:14 24166:2 24177:2 24185:1 24193:1 24195:1 24206:1 24220:2 24230:1 24231:1 24233:1 24245:1 24251:1 24255:1 24256:1 24259:1 24263:1 24272:4 24275:3 24280:3 24285:2 24286:4 24289:1 24290:1 24304:1 24310:1 24350:1 24357:1 24363:1 24372:1 24376:1 24377:2 24400:2 24408:2 24416:1 24420:1 24424:1 24425:1 24427:2 24443:6 24444:1 24446:1 24454:1 24462:1 24471:1 24472:1 24479:1 24500:1 24502:1 24503:2 24521:1 24524:1 24553:1 24570:1 24592:1 24596:1 24600:2 24622:1 24625:1 24643:1 24648:1 24653:1 24655:1 24658:5 24675:1 24676:1 24710:1 24713:1 24715:1 24720:1 24721:1 24733:1 24737:1 24740:2 24747:1 24768:1 24773:2 24774:2 24784:1 24792:3 24809:1 24830:1 24839:1 24844:2 24870:1 24889:1 24892:1 24917:1 24928:2 24938:1 24944:3 24949:1 24953:1 24954:1 24964:1 24966:1 24972:1 24976:2 24994:1 25000:1 25005:2 25019:2 25022:1 25026:1 25031:2 25032:1 25059:1 25065:1 25068:1 25070:1 25073:2 25081:1 25109:1 25110:1 25125:5 25129:1 25132:2 25145:1 25147:1 25177:1 25185:2 25191:1 25195:1 25200:2 25207:2 25213:1 25214:1 25224:2 25232:1 25239:1 25242:1 25250:1 25251:1 25254:1 25255:1 25256:1 25260:1 25267:2 25269:1 25277:1 25281:2 25291:2 25295:1 25299:1 25302:1 25329:1 25330:1 25339:1 25346:3 25370:2 25389:1 25412:1 25454:2 25479:1 25487:1 25491:2 25514:2 25532:1 25536:1 25538:2 25543:5 25560:1 25572:1 25600:5 25630:1 25644:1 25693:1 25698:1 25702:2 25717:2 25731:1 25739:1 25752:1 25775:1 25777:1 25791:2 25793:3 25794:1 25801:1 25804:2 25808:1 25809:2 25820:1 25822:1 25828:1 25829:5 25837:1 25841:1 25843:1 25856:2 25861:2 25863:2 25867:1 25869:1 25871:5 25875:1 25880:1 25881:1 25888:1 25892:3 25893:1 25905:3 25909:1 25913:2 25941:1 25946:2 25964:1 25965:1 25983:1 26005:1 26012:3 26015:4 26022:4 26028:1 26054:4 26067:1 26071:1 26080:1 26081:1 26092:1 26098:1 26099:1 26101:1 26123:1 26125:3 26129:1 26132:2 26163:1 26174:1 26194:1 26213:1 26214:1 26221:1 26222:1 26229:1 26230:2 26236:1 26244:1 26265:3 26298:1 26301:1 26305:1 26306:7 26312:1 26315:1 26325:2 26340:1 26368:5 26401:1 26411:1 26452:1 26464:1 26512:1 26527:2 26538:1 26539:1 26540:2 26541:1 26544:2 26547:3 26553:1 26557:1 26558:1 26565:1 26580:1 26612:1 26616:1 26655:3 26664:2 26690:2 26696:2 26706:1 26710:1 26713:1 26722:1 26733:1 26745:1 26750:3 26751:1 26757:2 26759:1 26785:1 26787:1 26790:4 26793:2 26806:1 26810:1 26832:1 26837:1 26843:1 26848:1 26855:1 26862:1 26874:1 26879:1 26883:3 26889:1 26891:1 26910:1 26920:2 26923:1 26940:1 26957:2 26961:2 26973:1 26978:1 26979:3 26986:3 26987:3 26988:1 26990:1 26996:1 27031:5 27034:1
1 13:1 35:1 39:1 47:1 50:1 55:1 89:1 120:1 137:1 138:3 139:1 144:1 150:2 157:1 165:1 169:3 182:5 192:1 209:1 222:1 233:1 238:7 255:3 264:1 280:2 306:1 315:4 317:3 327:3 334:3 339:1 346:2 362:2 372:1 382:1 395:5 397:5 404:1 412:1 442:1 445:1 446:1 472:2 500:1 511:1 515:2 532:1 544:3 552:1 568:1 578:1 582:2 584:1 588:1 604:2 630:1 665:1 678:1 683:1 711:1 723:2 726:1 743:1 745:2 751:1 764:1 789:5 794:1 798:1 800:1 802:4 808:1 822:14 826:4 837:3 854:3 868:1 872:1 873:4 874:2 875:7 877:1 878:2 880:3 882:1 894:2 912:5 915:4 926:1 953:2 958:1 972:1 1002:1 1013:2 1017:1 1035:1 1037:1 1053:1 1059:2 1061:1 1064:1 1108:3 1109:2 1114:1 1116:1 1118:1 1122:2 1125:1 1126:1 1141:1 1150:1 1151:1 1154:1 1158:2 1170:1 1173:2 1187:1 1193:2 1195:1 1227:1 1228:1 1244:1 1262:1 1264:1 1266:1 1269:1 1279:1 1292:1 1312:1 1316:1 1324:1 1325:2 1339:1 1345:1 1346:2 1364:1 1366:1 1371:3 1379:1 1392:1 1397:1 1402:1 1405:2 1419:1 1427:1 1437:1 1445:1 1448:4 1454:7 1456:2 1465:1 1469:1 1490:2 1499:1 1501:1 1510:1 1514:1 1523:1 1526:1 1530:2 1538:1 1542:2 1549:1 1553:1 1555:1 1559:1 1568:1 1571:2 1580:1 1584:1 1587:1 1592:1 1596:1 1600:1 1606:1 1615:1 1619:1 1625:1 1634:2 1635:1 1652:1 1653:5 1659:1 1663:1 1675:1 1681:1 1684:3 1687:1 1688:2 1696:6 1703:1 1723:4 1724:2 1729:1 1737:1 1745:1 1749:1 1757:2 1759:4 1761:1 1762:1 1764:1 1787:1 1794:1 1801:2 1806:2 1807:1 1809:1 1822:2 1825:1 1866:1 1870:8 1875:1 1881:1 1885:1 1892:2 1897:1 1899:2 1904:1 1907:2 1925:1 1931:1 1938:1 1956:1 1959:1 1976:2 1978:1 1983:1 1984:1 1988:2 1990:1 2004:1 2014:1 2027:11 2037:1 2046:1 2051:1 2053:1 2071:1 2078:1 2092:2 2103:3 2107:1 2119:1 2120:1 2123:1 2126:2 2142:2 2143:2 2147:2 2148:5 2150:1 2152:1 2154:2 2157:2 2158:2 2159:1 2160:1 2161:4 2165:1 2167:4 2170:3 2172:5 2173:7 2185:1 2196:1 2216:1 2219:1 2224:1 2226:3 2229:1 2234:1 2246:2 2248:1 2257:1 2274:1 2275:1 2277:1 2285:1 2293:1 2294:1 2296:1 2321:1 2328:1 2333:1 2342:1 2350:1 2351:1 2360:1 2367:1 2377:3 2388:2 2390:1 2403:1 2405:1 2413:1 2417:1 2432:3 2435:2 2437:1 2439:6 2443:1 2444:1 2445:1 2454:1 2457:1 2478:4 2479:1 2480:1 2483:1 2496:2 2503:1 2504:1 2505:1 2506:1 2513:6 2520:1 2526:2 2529:8 2535:4 2537:1 2545:2 2547:1 2553:1 2555:2 2557:1 2562:3 2563:2 2574:2 2589:1 2591:2 2597:3 2602:1 2638:1 2640:2 2641:2 2654:3 2655:1 2659:1 2662:4 2667:2 2671:1 2684:1 2686:1 2691:1 2716:2 2719:1 2738:3 2745:1 2749:1 2752:14 2773:3 2774:1 2776:1 2777:1 2779:1 2786:2 2791:2 2794:1 2811:17 2813:1 2836:2 2839:3 2848:1 2856:1 2866:1 2893:1 2898:1 2902:1 2907:1 2917:1 2918:5 2934:3 2939:1 2948:1 2952:1 2970:1 2979:1 2989:1 2993:1 2998:1 3006:2 3014:1 3027:2 3042:3 3057:1 3089:1 3090:2 3128:1 3129:2 3130:1 3134:1 3149:6 3193:1 3216:1 3225:2 3234:1 3263:1 3264:1 3265:1 3277:1 3283:1 3285:1 3286:1 3291:1 3305:1 3328:1 3343:1 3358:2 3362:1 3383:1 3384:12 3399:1 3403:2 3405:2 3406:2 3409:1 3425:1 3429:1 3430:1 3438:1 3446:1 3477:1 3479:1 3480:1 3484:1 3489:3 3490:1 3493:2 3501:1 3523:1 3548:1 3549:1 3552:1 3554:1 3559:2 3562:1 3565:2 3569:1 3576:1 3581:1 3596:1 3599:1 3603:2 3608:1 3610:1 3626:2 3628:1 3631:1 3640:1 3648:3 3663:1 3664:1 3668:4 3670:1 3673:2 3678:2 3687:3 3700:2 3715:1 3716:2 3730:1 3732:2 3734:2 3738:1 3756:1 3765:6 3766:4 3772:2 3808:1 3810:2 3813:1 3818:1 3834:1 3837:1 3839:2 3857:1 3864:1 3866:2 3870:1 3872:1 3875:1 3891:2 3900:1 3910:2 3924:1 3932:1 3937:3 3940:1 3941:1 3944:2 3946:1 3950:1 3954:2 3977:1 3981:1 3992:1 4008:1 4025:1 4027:2 4029:1 4045:7 4075:3 4081:1 4090:1 4101:1 4104:2 4114:2 4127:2 4133:1 4149:1 4152:1 4156:2 4169:1 4177:3 4194:1 4202:1 4203:1 4211:1 4225:2 4246:1 4249:1 4252:1 4256:1 4257:3 4259:1 4267:1 4276:1 4292:3 4304:1 4314:5 4327:1 4331:1 4355:4 4363:2 4371:1 4372:1 4377:3 4380:1 4397:4 4420:2 4437:1 4440:2 4443:3 4456:3 4459:1 4468:1 4469:2 4475:1 4494:1 4496:2 4511:1 4523:1 4537:1 4549:1 4565:13 4567:1 4574:1 4576:1 4586:1 4595:1 4601:1 4613:1 4623:1 4629:1 4664:1 4669:2 4684:1 4685:4 4687:7 4688:3 4690:1 4693:2 4695:2 4696:1 4698:1 4700:1 4701:1 4703:6 4704:4 4706:1 4708:2 4709:7 4715:2 4716:4 4719:1 4721:1 4733:1 4764:1 4776:1 4789:2 4796:1 4820:1 4853:1 4891:1 4903:1 4917:1 4930:1 4937:2 4973:1 4977:1 5002:3 5008:2 5018:1 5057:1 5061:1 5066:2 5088:3 5101:1 5121:1 5140:1 5146:1 5157:2 5163:1 5171:1 5180:1 5188:1 5197:1 5220:1 5230:1 5252:1 5254:1 5284:2 5287:1 5292:1 5298:2 5302:1 5305:1 5313:5 5314:1 5316:2 5317:1 5320:2 5321:1 5336:1 5337:1 5369:3 5379:2 5380:1 5383:1 5394:6 5403:1 5406:2 5452:1 5468:1 5481:1 5483:1 5485:1 5503:1 5507:1 5509:1 5510:1 5516:1 5522:2 5524:1 5538:1 5544:1 5549:1 5562:1 5568:1 5569:2 5576:2 5590:2 5593:1 5594:1 5610:6 5612:1 5613:1 5619:1 5620:2 5626:1 5628:1 5629:1 5632:1 5633:1 5636:1 5668:1 5673:1 5678:1 5680:1 5682:1 5688:1 5692:1 5693:1 5696:12 5715:1 5735:3 5742:1 5761:1 5772:1 5787:3 5797:1 5812:6 5817:1 5824:1 5854:1 5869:1 5872:1 5890:1 5897:1 5898:1 5901:1 5905:2 5906:3 5908:1 5911:1 5912:1 5915:2 5921:2 5923:4 5924:3 5958:1 5997:1 6008:1 6010:1 6046:1 6051:4 6052:2 6063:1 6072:1 6106:1 6115:1 6124:1 6133:1 6148:1 6154:1 6177:1 6191:2 6199:2 6208:1 6213:1 6222:1 6270:1 6281:1 6290:2 6292:1 6295:1 6298:1 6301:1 6316:7 6323:2 6327:2 6329:1 6336:1 6338:1 6344:1 6355:2 6375:1 6378:1 6379:1 6385:1 6387:1 6389:1 6424:1 6426:3 6437:2 6442:1 6448:2 6465:1 6470:1 6476:1 6479:1 6483:2 6491:1 6507:1 6525:2 6529:1 6530:1 6537:1 6545:1 6546:1 6553:1 6563:6 6569:2 6588:1 6595:1 6596:1 6600:1 6606:1 6609:3 6610:2 6618:1 6623:4 6624:1 6626:1 6631:5 6634:1 6637:1 6657:1 6658:1 6660:1 6670:1 6678:1 6701:1 6702:1 6707:4 6716:3 6724:1 6732:1 6735:1 6752:2 6755:1 6757:1 6765:1 6788:1 6790:1 6798:1 6806:1 6812:1 6824:1 6868:1 6871:1 6875:1 6879:2 6917:1 6931:1 6935:2 6936:5 6940:2 6943:1 6945:1 6951:3 6955:1 6971:4 6972:1 6974:2 6988:1 6989:3 6998:1 7002:1 7012:1 7020:2 7023:1 7028:1 7038:1 7043:1 7045:1 7051:1 7053:1 7066:1 7067:1 7075:1 7076:1 7081:1 7086:1 7090:1 7102:1 7114:1 7120:1 7138:3 7153:3 7154:6 7165:2 7170:1 7173:4 7176:2 7178:3 7183:1 7192:1 7198:4 7199:2 7200:1 7213:41 7214:2 7220:1 7222:1 7228:1 7229:7 7231:5 7236:2 7270:1 7276:1 7278:1 7287:1 7297:1 7301:3 7302:2 7307:1 7309:1 7320:1 7322:1 7331:2 7341:3 7358:1 7360:1 7380:2 7388:1 7392:1 7410:2 7440:1 7451:1 7453:1 7454:3 7483:1 7489:1 7490:1 7491:1 7501:2 7540:1 7549:1 7559:1 7569:1 7591:1 7592:1 7600:1 7604:1 7608:1 7628:1 7631:1 7639:1 7643:1 7644:2 7654:1 7663:1 7677:1 7678:1 7700:22 7706:1 7724:3 7726:2 7729:1 7731:2 7732:1 7773:5 7776:1 7777:1 7781:1 7810:1 7821:2 7825:2 7827:1 7830:1 7844:1 7854:1 7855:4 7860:3 7868:1 7894:2 7896:1 7902:1 7906:1 7918:1 7920:1 7930:1 7937:1 7939:1 7957:1 7958:1 7966:2 7968:1 7969:1 8028:1 8033:1 8034:1 8038:1 8039:1 8041:1 8048:1 8061:1 8064:2 8076:5 8087:2 8090:3 8109:1 8115:1 8122:1 8127:2 8130:1 8131:1 8145:1 8146:1 8162:2 8168:1 8191:1 8196:1 8233:1 8234:1 8240:1 8244:1 8271:1 8272:1 8285:2 8293:1 8316:1 8319:1 8320:1 8324:3 8347:3 8353:1 8360:2 8361:1 8370:1 8377:1 8394:1 8395:1 8407:1 8415:6 8416:1 8417:1 8423:1 8425:1 8429:1 8436:1 8442:1 8444:1 8455:6 8456:1 8477:1 8484:1 8500:1 8505:10 8506:5 8516:2 8517:1 8551:3 8561:1 8566:1 8570:2 8572:1 8589:1 8596:1 8603:2 8605:2 8607:3 8609:2 8624:1 8629:1 8635:1 8644:1 8661:1 8672:1 8681:2 8683:1 8689:1 8692:5 8694:1 8715:3 8721:1 8734:4 8770:1 8771:1 8782:1 8795:1 8802:1 8807:1 8823:3 8835:3 8840:1 8852:1 8858:1 8865:1 8888:1 8901:1 8905:1 8913:1 8919:7 8924:2 8956:3 8964:1 8965:1 8975:3 8981:1 9005:1 9024:1 9028:1 9031:3 9032:3 9034:2 9038:1 9056:1 9061:1 9064:1 9066:1 9096:1 9099:1 9107:1 9117:1 9142:2 9163:1 9173:2 9186:1 9196:1 9200:1 9201:1 9210:1 9242:1 9243:1 9248:1 9249:1 9262:1 9266:1 9289:1 9294:1 9296:1 9298:1 9301:5 9318:4 9325:4 9327:2 9336:1 9354:2 9371:3 9372:1 9378:1 9396:1 9398:1 9410:1 9415:2 9427:1 9434:1 9444:1 9449:3 9453:1 9481:1 9485:1 9490:12 9492:1 9493:2 9497:2 9501:1 9519:2 9520:1 9535:1 9540:1 9555:1 9572:1 9587:1 9588:2 9590:1 9597:1 9607:1 9622:1 9628:1 9643:1 9644:1 9646:1 9649:1 9651:4 9661:1 9663:1 9665:2 9702:1 9715:4 9720:1 9722:1 9723:1 9729:1 9732:2 9739:1 9742:1 9747:1 9749:1 9755:4 9769:1 9771:1 9787:1 9797:1 9803:1 9804:1 9810:1 9817:1 9819:1 9823:2 9827:1 9837:2 9846:1 9853:1 9860:1 9864:1 9866:2 9870:1 9877:1 9879:1 9881:1 9886:7 9889:4 9899:2 9900:3 9905:1 9910:1 9917:1 9920:2 9926:1 9943:2 9953:4 9954:2 9964:1 9979:2 9982:1 9983:1 9991:3 9995:1 10013:1 10026:1 10028:1 10035:3 10047:1 10057:5 10071:1 10080:1 10092:1 10093:1 10106:3 10134:1 10140:1 10180:1 10191:1 10201:1 10206:1 10224:1 10225:1 10239:1 10240:2 10242:2 10245:1 10246:2 10252:1 10254:1 10261:1 10264:5 10265:5 10268:1 10276:1 10282:2 10283:2 10287:1 10288:1 10289:3 10293:1 10310:3 10313:1 10318:1 10321:1 10336:2 10345:1 10372:1 10373:1 10376:3 10392:1 10406:1 10411:1 10424:1 10434:1 10436:1 10440:1 10466:1 10493:1 10499:1 10512:1 10515:1 10518:1 10530:1 10532:2 10556:1 10575:1 10586:1 10592:1 10597:2 10611:3 10614:2 10617:1 10627:1 10630:2 10632:1 10633:1 10635:2 10644:3 10646:1 10647:1 10648:2 10657:1 10663:3 10667:2 10678:1 10693:14 10694:1 10696:1 10707:1 10718:1 10730:1 10734:4 10742:1 10745:2 10746:2 10756:1 10759:2 10769:1 10786:1 10788:2 10799:2 10803:1 10813:2 10818:2 10831:1 10847:1 10859:1 10863:1 10890:1 10906:1 10924:1 10932:3 10933:1 10934:1 10937:1 10950:1 10951:3 10955:1 10956:2 10957:1 10960:1 10962:1 10968:1 10969:1 10977:1 10979:1 10988:1 10991:1 10992:1 10995:1 10998:1 11003:2 11006:5 11009:2 11031:1 11040:1 11055:1 11073:1 11100:1 11118:1 11120:1 11135:1 11141:1 11159:1 11160:1 11166:5 11173:1 11184:2 11188:2 11189:1 11201:1 11206:1 11214:1 11220:2 11227:1 11243:2 11254:2 11261:1 11263:2 11283:1 11301:2 11306:1 11314:1 11321:1 11327:2 11333:1 11365:1 11372:1 11380:5 11381:2 11382:2 11394:1 11406:2 11412:1 11415:1 11418:1 11424:1 11476:1 11478:2 11479:1 11502:1 11506:1 11513:1 11520:1 11534:1 11542:1 11547:1 11557:1 11635:1 11638:3 11662:2 11674:1 11689:1 11695:1 11705:1 11718:1 11720:2 11721:1 11736:3 11745:1 11758:1 11767:1 11774:1 11824:1 11831:1 11836:1 11839:1 11840:2 11847:1 11859:1 11882:13 11886:3 11899:2 11904:1 11915:1 11923:1 11928:1 11929:2 11936:2 11943:1 11954:1 11959:1 11964:1 11965:1 11974:1 11980:2 11981:1 11983:1 11989:1 12016:1 12034:1 12039:1 12045:2 12048:1 12068:1 12069:1 12081:1 12090:1 12091:2 12100:2 12101:1 12110:1 12112:1 12134:1 12151:3 12161:1 12163:1 12208:1 12209:1 12231:1 12252:1 12254:2 12257:4 12269:1 12274:2 12283:2 12290:1 12306:6 12323:1 12325:2 12346:1 12351:4 12352:1 12367:1 12385:1 12386:1 12387:1 12389:1 12399:5 12400:1 12410:2 12413:1 12428:1 12436:1 12437:1 12440:2 12446:1 12452:1 12453:1 12463:15 12469:1 12474:1 12506:2 12508:1 12515:2 12529:1 12533:1 12544:1 12547:1 12556:1 12557:1 12559:1 12590:3 12613:1 12616:6 12617:1 12633:1 12642:1 12645:1 12668:2 12685:1 12692:1 12694:1 12703:2 12705:1 12707:1 12714:1 12719:1 12721:1 12728:6 12729:1 12732:1 12733:1 12734:1 12736:2 12737:1 12741:7 12742:2 12760:1 12761:1 12763:1 12765:1 12787:1 12814:1 12831:1 12842:1 12854:1 12872:1 12878:1 12887:3 12919:1 12926:1 12929:1 12932:1 12939:1 12941:1 12946:1 12956:1 12960:1 12978:2 12986:1 12996:1 12999:1 13005:7 13025:2 13032:1 13041:1 13064:1 13076:1 13077:1 13085:1 13090:1 13103:1 13109:1 13111:1 13118:1 13131:1 13139:1 13161:1 13170:1 13173:1 13180:1 13188:1 13197:1 13211:1 13237:1 13245:2 13261:4 13277:1 13288:1 13309:1 13320:1 13380:1 13383:3 13384:4 13391:1 13404:2 13406:1 13410:2 13412:1 13432:1 13436:1 13442:1 13452:2 13470:1 13479:1 13480:1 13499:1 13524:2 13531:1 13535:1 13548:1 13552:1 13554:1 13556:1 13563:2 13567:1 13578:3 13585:2 13630:1 13632:2 13637:2 13641:1 13679:2 13680:1 13690:1 13713:1 13720:1 13723:1 13731:1 13756:3 13768:1 13771:2 13804:1 13807:1 13850:1 13885:2 13891:2 13892:2 13895:1 13902:1 13912:1 13932:1 13977:1 13979:3 13984:1 13997:1 13998:1 13999:1 14004:1 14032:1 14083:1 14087:1 14092:1 14094:2 14115:1 14155:1 14170:2 14182:1 14187:1 14204:1 14211:1 14212:1 14213:2 14226:1 14240:2 14245:3 14248:1 14270:1 14274:1 14275:1 14295:2 14311:2 14315:1 14318:1 14334:1 14345:2 14354:1 14362:1 14378:1 14385:1 14387:1 14391:1 14397:5 14409:3 14419:1 14424:3 14435:3 14457:1 14460:1 14467:1 14484:1 14486:1 14489:2 14552:1 14553:1 14564:2 14571:1 14575:1 14579:4 14584:1 14586:1 14593:1 14605:4 14606:1 14609:1 14612:1 14624:1 14626:1 14639:1 14658:2 14666:2 14703:2 14706:1 14709:1 14719:3 14726:1 14735:1 14737:1 14739:3 14753:1 14764:2 14782:1 14802:1 14817:1 14819:1 14841:1 14847:1 14853:1 14857:14 14859:1 14872:1 14876:3 14878:1 14900:3 14904:1 14943:1 14954:1 14958:1 14962:2 14972:2 14976:1 14990:2 14994:1 15008:2 15015:1 15029:1 15030:2 15046:1 15052:1 15060:1 15062:1 15064:1 15068:1 15074:2 15075:1 15100:3 15117:1 15122:1 15128:5 15130:2 15131:2 15132:5 15133:1 15134:1 15135:2 15137:1 15139:2 15140:3 15143:1 15144:1 15147:1 15150:1 15151:1 15153:1 15161:1 15204:1 15206:2 15216:1 15232:1 15251:1 15255:1 15256:1 15279:2 15284:1 15288:2 15289:1 15307:1 15328:1 15336:1 15337:1 15367:1 15370:1 15418:1 15430:1 15434:2 15445:1 15446:2 15455:2 15456:1 15466:1 15470:5 15475:1 15478:2 15487:1 15495:1 15496:1 15501:2 15505:3 15509:2 15513:1 15522:3 15526:2 15534:2 15544:1 15553:1 15585:12 15588:1 15604:1 15606:1 15611:1 15613:4 15618:1 15656:1 15671:1 15672:1 15678:2 15689:1 15695:4 15705:1 15706:1 15720:1 15722:2 15742:1 15756:2 15778:5 15791:1 15802:1 15811:1 15823:1 15841:1 15849:1 15878:2 15879:3 15895:1 15898:1 15936:2 15946:1 15950:1 15970:1 15973:1 15980:1 15987:2 15992:1 16006:1 16022:2 16034:2 16039:1 16041:1 16055:1 16072:1 16116:1 16119:1 16150:1 16159:1 16163:1 16183:1 16187:1 16199:2 16202:1 16212:1 16213:3 16218:1 16224:1 16232:3 16238:2 16240:2 16244:2 16250:9 16284:1 16287:2 16288:1 16293:1 16294:1 16298:1 16305:1 16311:1 16315:1 16316:1 16331:1 16368:1 16369:1 16389:3 16392:1 16403:1 16416:2 16427:1 16428:1 16434:1 16435:1 16440:1 16451:1 16453:1 16482:1 16483:1 16484:1 16508:1 16513:1 16518:2 16554:1 16557:1 16576:1 16578:1 16593:1 16594:2 16598:1 16600:1 16602:1 16614:1 16616:1 16646:1 16661:1 16684:1 16709:1 16710:1 16720:2 16740:2 16814:2 16815:1 16823:1 16833:1 16838:1 16844:1 16862:1 16879:1 16885:1 16907:1 16934:1 16937:3 16946:1 16951:1 16981:1 16986:1 16999:12 17009:1 17025:1 17050:1 17071:1 17087:13 17097:3 17099:1 17102:1 17103:5 17128:2 17142:1 17156:2 17184:4 17192:2 17204:2 17218:1 17219:1 17243:2 17251:2 17263:2 17276:2221 17285:1 17289:1 17301:1 17302:1 17347:1 17351:1 17353:1 17374:2 17420:1 17421:1 17445:1 17465:1 17467:1 17469:1 17472:2 17474:5 17475:3 17488:1 17493:1 17495:1 17515:1 17526:1 17535:1 17542:1 17551:1 17552:1 17592:1 17595:3 17599:2 17608:1 17644:1 17653:1 17654:3 17684:2 17697:1 17699:1 17707:2 17709:1 17717:1 17737:1 17748:2 17754:1 17765:1 17776:1 17787:1 17791:2 17795:2 17803:1 17809:1 17817:1 17836:2 17837:2 17855:2 17859:1 17862:1 17870:2 17876:1 17895:2 17896:1 17900:1 17904:1 17905:1 17913:1 17917:2 17927:8 17949:1 17951:1 17966:1 17970:2 17971:1 17978:1 17992:5 17999:1 18009:1 18011:1 18043:1 18047:4 18052:1 18054:2 18060:1 18062:2 18070:1 18075:4 18076:1 18081:1 18085:1 18090:1 18101:1 18104:3 18115:2 18116:1 18123:2 18141:1 18156:3 18159:1 18163:1 18178:1 18182:1 18183:2 18187:2 18193:1 18194:1 18197:1 18218:1 18228:1 18233:1 18234:1 18240:1 18247:1 18271:1 18282:2 18294:1 18295:2 18296:1 18297:1 18301:1 18303:1 18308:1 18323:1 18326:1 18328:1 18332:1 18339:1 18343:1 18349:1 18359:1 18371:1 18374:1 18381:1 18382:1 18390:1 18408:1 18416:1 18420:2 18422:4 18427:1 18428:3 18430:1 18474:1 18477:1 18478:1 18492:1 18495:2 18499:1 18501:1 18503:2 18504:1 18508:2 18519:1 18521:1 18525:3 18529:2 18533:1 18534:2 18536:2 18538:1 18548:1 18556:5 18564:2 18580:1 18582:1 18596:1 18598:1 18603:1 18604:4 18627:1 18628:1 18638:1 18639:1 18645:1 18653:1 18658:1 18665:2 18685:1 18690:1 18691:2 18707:1 18716:3 18718:17 18719:2 18726:1 18735:4 18738:1 18756:1 18759:1 18784:1 18792:1 18805:1 18811:1 18817:1 18821:1 18835:1 18838:1 18847:1 18848:1 18866:1 18868:1 18875:1 18905:4 18919:2 18933:1 18937:2 18941:1 18949:2 18960:1 18962:1 18969:2 18996:8 18998:2 19005:1 19013:1 19022:1 19039:1 19040:1 19050:1 19057:1 19080:1 19085:4 19101:3 19112:1 19117:1 19119:1 19125:1 19128:1 19132:1 19133:1 19140:1 19143:2 19175:2 19183:3 19189:2 19190:2 19201:2 19204:2 19207:1 19209:1 19215:2 19243:4 19245:2 19254:2 19261:1 19279:2 19284:1 19286:1 19293:1 19311:2 19317:1 19324:2 19325:1 19331:5 19334:1 19344:1 19349:2 19359:3 19385:2 19391:1 19394:1 19412:1 19415:1 19421:1 19422:1 19431:2 19439:2 19443:2 19447:1 19450:2 19451:1 19459:2 19478:1 19484:2 19506:2 19515:1 19516:1 19521:1 19522:1 19523:4 19537:2 19542:1 19545:1 19546:1 19547:1 19551:1 19552:1 19558:2 19564:1 19577:1 19581:1 19591:1 19595:1 19614:1 19620:1 19627:1 19629:1 19633:2 19636:2 19648:1 19661:1 19697:1 19756:1 19757:1 19770:2 19773:1 19782:2 19785:2 19790:1 19791:1 19794:1 19795:1 19798:1 19799:1 19806:1 19812:2 19821:3 19823:1 19830:1 19837:1 19845:1 19866:1 19873:1 19880:1 19896:1 19897:1 19919:2 19921:1 19922:1 19927:1 19931:2 19934:1 19936:1 19951:2 19954:2 19959:2 19960:1 19963:2 19965:1 19976:1 19978:2 19989:1 19998:12 20001:1 20009:2 20010:2 20017:2 20028:1 20041:1 20049:1 20051:1 20061:1 20063:1 20066:1 20067:1 20071:1 20072:1 20075:1 20125:2 20134:1 20138:2 20141:1 20142:1 20147:1 20149:1 20151:4 20154:3 20156:1 20166:2 20177:1 20179:1 20182:1 20183:1 20205:1 20206:1 20210:2 20212:4 20240:1 20248:1 20252:1 20316:3 20321:1 20322:4 20325:3 20326:3 20328:1 20329:1 20334:1 20337:2 20340:1 20341:2 20352:5 20360:1 20362:1 20368:1 20381:1 20396:2 20400:2 20403:2 20417:1 20444:1 20471:2 20473:2 20481:1 20486:1 20492:1 20497:1 20503:1 20509:1 20523:1 20524:1 20529:1 20532:1 20533:1 20534:1 20544:1 20546:1 20553:1 20556:1 20567:1 20570:1 20572:5 20578:1 20587:1 20588:3 20592:3 20593:1 20599:1 20611:1 20619:1 20628:2 20630:1 20632:1 20633:1 20634:4 20647:1 20655:2 20656:8 20658:1 20662:1 20666:1 20670:1 20675:1 20676:1 20692:1 20693:1 20719:7 20720:1 20733:1 20754:1 20772:1 20779:5 20780:1 20787:1 20796:1 20812:1 20813:1 20842:1 20844:2 20864:1 20879:1 20886:1 20887:6 20889:1 20900:3 20903:1 20905:3 20914:1 20919:1 20924:1 20926:1 20938:1 20940:3 20955:1 20962:1 20963:2 20968:3 20976:1 20982:1 20991:1 21005:1 21026:1 21029:1 21062:1 21066:1 21072:1 21073:1 21074:1 21079:1 21090:1 21100:2 21115:9 21116:2 21130:2 21134:2 21138:1 21140:4 21149:1 21150:3 21163:2 21176:1 21203:1 21215:1 21216:1 21218:2 21220:2 21234:1 21235:1 21256:1 21257:1 21261:1 21262:1 21263:1 21266:1 21282:1 21284:1 21296:1 21303:2 21306:1 21309:2 21311:1 21340:3 21370:3 21385:1 21415:1 21434:1 21453:3 21456:2 21462:5 21469:2 21479:1 21484:1 21488:3 21498:2 21500:2 21501:1 21502:2 21512:1 21520:4 21551:1 21554:1 21559:1 21580:1 21586:1 21599:1 21613:2 21624:1 21635:1 21642:1 21647:1 21650:2 21674:2 21682:1 21686:2 21694:1 21695:1 21703:1 21708:1 21709:1 21724:1 21726:2 21730:2 21733:3 21742:1 21743:1 21755:1 21757:1 21772:3 21773:2 21777:2 21792:1 21794:1 21800:1 21845:1 21846:4 21848:1 21853:1 21859:1 21861:1 21862:2 21863:1 21864:1 21865:1 21867:1 21869:1 21898:1 21913:1 21916:1 21917:1 21930:1 21974:1 21981:2 21991:1 22014:2 22019:1 22053:1 22066:1 22068:2 22074:1 22076:1 22078:1 22088:1 22102:1 22122:1 22125:1 22130:1 22136:1 22146:1 22176:1 22188:1 22196:1 22218:1 22230:2 22238:1 22260:2 22263:1 22282:2 22296:3 22304:1 22320:1 22327:1 22328:7 22345:1 22352:1 22358:3 22370:1 22380:1 22382:1 22389:1 22391:4 22400:1 22402:1 22403:1 22407:1 22412:1 22435:3 22457:2 22459:1 22467:1 22469:1 22478:1 22502:1 22522:1 22530:1 22531:1 22550:1 22553:1 22559:1 22564:3 22565:2 22571:1 22572:1 22575:1 22578:2 22581:1 22582:1 22592:1 22601:1 22612:6 22626:1 22627:1 22629:1 22632:1 22640:1 22642:1 22644:1 22646:1 22662:9 22663:6 22675:1 22685:1 22688:2 22693:1 22695:1 22696:1 22705:1 22709:1 22710:1 22713:1 22718:3 22726:2 22739:1 22755:1 22811:1 22827:1 22853:2 22856:1 22862:1 22868:1 22870:1 22876:2 22880:2 22886:2 22890:1 22895:1 22901:2 22903:2 22907:1 22923:1 22929:1 22931:1 22937:1 22942:1 22943:2 22946:1 22948:1 22953:1 22963:1 22974:3 22987:2 22992:1 22993:1 23012:2 23018:1 23022:1 23024:2 23041:1 23048:1 23077:15 23078:2 23101:1 23105:1 23106:1 23115:1 23123:1 23130:1 23136:2 23139:1 23144:1 23158:2 23161:1 23162:1 23169:1 23170:1 23181:1 23188:1 23197:1 23202:1 23217:1 23222:1 23261:1 23291:10 23292:1 23307:1 23316:2 23319:1 23329:1 23363:1 23373:1 23375:6 23378:1 23387:1 23398:1 23404:2 23406:1 23426:1 23432:1 23436:2 23440:1 23446:1 23454:1 23481:1 23497:1 23503:2 23505:1 23514:2 23528:1 23532:1 23545:1 23557:1 23601:1 23602:2 23609:1 23613:1 23617:1 23631:1 23635:2 23639:5 23642:1 23648:1 23651:1 23652:1 23664:1 23666:1 23669:1 23695:4 23700:1 23704:1 23706:1 23719:1 23721:6 23738:1 23739:2 23756:1 23768:1 23771:1 23774:2 23775:1 23784:1 23786:1 23803:1 23826:1 23840:1 23845:2 23889:1 23895:1 23909:1 23923:1 23932:1 23943:1 23969:1 23999:2 24009:2 24019:1 24024:1 24025:1 24027:1 24041:1 24055:1 24061:3 24064:1 24092:4 24101:1 24104:1 24126:1 24129:1 24138:2 24140:1 24149:2 24150:1 24161:1 24165:14 24166:2 24177:2 24185:1 24193:1 24195:1 24206:1 24220:2 24230:1 24231:1 24233:1 24245:1 24251:1 24255:1 24256:2 24259:1 24263:1 24272:4 24275:3 24280:3 24285:2 24286:4 24289:1 24290:1 24304:1 24310:1 24350:1 24357:1 24363:1 24372:1 24376:1 24377:2 24400:2 24408:2 24416:1 24420:1 24424:1 24425:1 24427:2 24443:6 24444:1 24446:1 24454:1 24462:1 24471:1 24472:1 24478:1 24479:1 24500:1 24502:1 24503:2 24521:1 24524:1 24553:1 24570:1 24592:1 24596:1 24600:2 24622:1 24625:1 24643:1 24648:1 24653:1 24655:1 24658:5 24675:1 24676:1 24710:1 24713:1 24715:1 24720:1 24721:1 24733:1 24737:1 24740:2 24747:1 24768:1 24773:2 24774:2 24784:1 24792:3 24809:1 24830:1 24839:1 24844:2 24870:1 24889:1 24892:1 24917:1 24928:2 24938:1 24944:3 24949:1 24953:1 24954:1 24964:1 24966:1 24972:1 24976:2 24994:1 25000:1 25005:2 25019:2 25022:1 25026:1 25031:2 25032:1 25059:1 25065:1 25068:1 25070:1 25073:2 25081:1 25109:1 25110:1 25125:5 25129:3 25132:2 25145:1 25147:1 25177:1 25185:2 25191:1 25195:1 25200:2 25207:2 25213:1 25214:1 25224:2 25232:1 25239:1 25242:1 25250:1 25251:1 25254:1 25255:1 25256:1 25260:1 25263:1 25267:2 25269:1 25277:1 25281:2 25291:2 25295:1 25299:1 25302:1 25329:1 25330:1 25339:1 25346:4 25363:1 25370:2 25389:1 25412:1 25454:2 25479:1 25487:1 25491:2 25514:2 25530:1 25532:1 25536:1 25538:3 25543:5 25560:1 25572:1 25600:6 25630:1 25644:1 25693:1 25698:1 25702:2 25717:2 25731:1 25739:1 25752:1 25775:1 25777:1 25791:2 25793:3 25794:1 25801:1 25804:2 25808:1 25809:2 25820:1 25822:1 25828:1 25829:5 25837:1 25841:1 25843:1 25856:2 25861:2 25863:2 25867:1 25869:1 25871:5 25875:1 25880:1 25881:1 25888:1 25892:3 25893:1 25905:3 25909:1 25913:2 25941:1 25946:3 25964:1 25965:1 25983:1 26005:1 26012:3 26015:4 26022:5 26028:1 26054:4 26067:1 26071:1 26080:1 26081:1 26092:1 26098:1 26099:1 26101:1 26123:1 26125:4 26129:1 26132:2 26163:1 26174:1 26194:1 26213:1 26214:1 26221:1 26222:1 26229:1 26230:2 26236:1 26244:1 26265:3 26298:1 26300:1 26301:1 26305:1 26306:7 26312:1 26315:1 26325:2 26340:1 26368:5 26401:1 26411:1 26452:1 26464:1 26512:1 26527:2 26538:1 26539:1 26540:2 26541:1 26544:2 26547:3 26553:1 26557:1 26558:1 26565:1 26580:1 26612:1 26616:1 26655:3 26664:2 26690:2 26696:2 26706:1 26710:1 26713:1 26722:1 26733:1 26745:1 26750:3 26751:1 26757:2 26759:1 26785:1 26787:1 26790:4 26793:2 26806:1 26810:1 26832:1 26837:1 26843:1 26848:1 26855:1 26862:1 26874:1 26879:1 26883:3 26889:1 26891:1 26910:1 26920:2 26923:1 26940:1 26957:2 26961:2 26973:1 26978:1 26979:3 26986:3 26987:3 26988:1 26990:1 26996:1 27031:5 27034:1
1 13:1 35:1 39:1 47:1 50:1 55:1 89:1 120:1 137:1 138:3 139:1 144:1 150:2 157:1 165:1 169:3 182:5 192:1 209:1 222:1 233:1 238:7 255:3 264:1 280:2 306:1 315:4 317:3 327:3 334:3 339:1 346:2 362:2 372:1 382:2 395:5 397:5 404:1 412:1 442:1 445:1 446:1 472:2 500:1 511:1 515:2 532:1 544:3 552:1 568:1 578:1 582:3 584:1 588:1 604:2 612:1 630:1 665:1 678:1 683:1 711:1 723:2 726:1 743:1 745:2 751:1 764:1 789:5 794:1 798:1 800:1 802:4 808:1 822:14 826:4 837:3 854:3 868:1 872:1 873:4 874:2 875:7 877:1 878:2 880:3 882:1 894:2 912:5 915:4 926:1 953:2 958:1 972:1 1002:1 1013:2 1017:1 1035:1 1037:1 1053:1 1059:2 1061:1 1064:1 1108:3 1109:2 1114:1 1116:1 1118:1 1122:2 1125:1 1126:1 1141:1 1150:1 1151:1 1154:1 1158:2 1170:1 1173:2 1180:1 1187:1 1193:2 1195:1 1227:1 1228:1 1244:1 1262:1 1264:1 1266:1 1269:1 1279:1 1292:1 1312:1 1316:1 1324:1 1325:2 1339:1 1345:1 1346:2 1364:1 1366:1 1371:3 1379:1 1392:1 1397:1 1402:1 1404:1 1405:2 1408:1 1419:1 1427:1 1437:1 1445:1 1448:4 1454:7 1456:2 1465:1 1469:1 1490:2 1499:1 1501:1 1510:1 1514:1 1523:1 1526:1 1530:2 1538:1 1542:2 1549:1 1553:1 1555:1 1559:1 1568:1 1571:2 1580:1 1584:1 1587:1 1592:1 1596:1 1600:1 1606:1 1615:1 1619:1 1625:1 1634:2 1635:1 1652:1 1653:5 1659:1 1663:1 1675:1 1681:1 1684:3 1687:1 1688:2 1696:6 1703:1 1723:4 1724:2 1729:1 1737:1 1745:1 1749:1 1757:2 1759:4 1761:1 1762:1 1764:1 1787:1 1794:1 1801:2 1806:2 1807:1 1809:1 1822:2 1825:1 1866:1 1870:8 1875:1 1881:1 1885:1 1892:3 1897:1 1899:2 1904:1 1907:2 1925:1 1931:1 1938:1 1956:1 1959:1 1976:2 1978:1 1983:1 1984:1 1988:2 1990:1 2004:1 2014:1 2027:11 2037:1 2046:1 2051:1 2053:1 2071:1 2077:1 2078:1 2092:2 2103:3 2107:1 2119:1 2120:1 2123:1 2126:2 2142:2 2143:2 2147:2 2148:5 2150:1 2152:1 2154:2 2157:2 2158:2 2159:1 2160:1 2161:4 2165:1 2167:4 2170:3 2172:5 2173:7 2185:1 2196:1 2216:1 2219:1 2224:1 2226:3 2229:1 2234:1 2246:2 2248:1 2257:1 2274:1 2275:1 2277:1 2285:1 2293:1 2294:1 2296:1 2321:1 2328:1 2333:1 2342:1 2350:2 2351:1 2360:1 2367:1 2377:3 2388:2 2390:1 2403:1 2405:1 2413:1 2417:1 2432:3 2435:2 2437:1 2439:6 2443:1 2444:1 2445:1 2454:1 2457:1 2478:4 2479:1 2480:1 2483:1 2496:2 2503:1 2504:1 2505:1 2506:1 2513:6 2520:2 2526:2 2529:8 2535:4 2537:1 2545:2 2547:1 2553:1 2555:2 2557:1 2562:3 2563:2 2574:2 2589:1 2591:2 2597:3 2602:1 2638:1 2640:2 2641:2 2654:3 2655:1 2659:1 2662:4 2667:2 2671:1 2684:1 2686:1 2691:1 2716:2 2719:1 2738:4 2745:1 2749:1 2752:14 2773:3 2774:1 2776:1 2777:1 2779:1 2786:2 2791:2 2794:1 2811:18 2813:1 2826:1 2836:2 2839:3 2848:1 2856:1 2866:1 2893:1 2898:1 2902:1 2907:1 2917:1 2918:5 2934:3 2939:1 2948:1 2952:1 2970:1 2979:1 2989:1 2993:1 2998:1 3006:2 3014:1 3027:2 3042:3 3057:1 3089:1 3090:2 3128:1 3129:2 3130:1 3134:1 3149:6 3193:1 3216:1 3225:2 3234:1 3263:1 3264:1 3265:1 3277:1 3283:1 3285:1 3286:1 3291:1 3305:1 3328:1 3343:1 3358:2 3362:1 3383:1 3384:12 3399:1 3403:2 3405:2 3406:2 3409:1 3425:1 3429:1 3430:1 3438:1 3446:1 3477:1 3479:2 3480:1 3484:1 3489:3 3490:1 3493:2 3501:1 3523:1 3548:1 3549:1 3552:1 3554:1 3559:2 3562:1 3565:2 3569:1 3576:2 3581:1 3596:1 3599:1 3603:2 3608:1 3610:1 3626:2 3628:1 3631:1 3640:1 3648:3 3663:1 3664:1 3668:4 3670:1 3673:2 3677:1 3678:2 3687:3 3698:1 3700:2 3715:1 3716:2 3730:1 3732:2 3734:2 3738:1 3756:1 3765:6 3766:4 3772:2 3808:1 3810:2 3813:1 3818:1 3834:1 3837:1 3839:2 3857:1 3864:1 3866:2 3870:1 3872:1 3875:1 3878:1 3891:2 3900:1 3910:2 3924:1 3932:1 3937:3 3940:1 3941:1 3944:2 3946:1 3950:1 3954:2 3977:1 3981:1 3992:1 4008:1 4025:1 4027:2 4029:1 4045:7 4075:3 4081:1 4090:1 4097:1 4101:1 4104:2 4114:2 4127:2 4133:1 4149:1 4152:1 4156:2 4169:1 4177:3 4194:1 4202:1 4203:1 4211:1 4225:2 4246:1 4249:1 4252:1 4256:1 4257:3 4259:1 4267:1 4276:1 4292:3 4304:1 4314:5 4327:1 4331:1 4355:4 4363:2 4371:1 4372:1 4377:3 4380:1 4397:4 4420:2 4437:1 4440:2 4443:3 4456:3 4459:1 4468:1 4469:2 4475:1 4494:1 4496:2 4511:1 4523:1 4537:1 4549:1 4565:13 4567:1 4574:1 4576:1 4586:1 4595:1 4601:1 4613:1 4623:1 4629:1 4664:1 4669:3 4684:1 4685:4 4687:7 4688:3 4690:1 4693:2 4695:2 4696:1 4698:1 4700:1 4701:2 4703:6 4704:4 4706:1 4708:2 4709:7 4715:2 4716:4 4719:1 4721:1 4733:1 4764:1 4776:1 4789:2 4796:1 4820:1 4853:1 4891:1 4903:1 4917:1 4930:1 4937:2 4973:1 4977:1 5002:3 5008:2 5018:1 5057:1 5061:1 5066:2 5088:3 5101:1 5121:1 5140:1 5146:1 5157:2 5163:1 5171:1 5180:1 5188:1 5197:1 5220:1 5230:1 5252:1 5254:1 5264:1 5284:2 5287:1 5292:1 5298:2 5302:1 5305:1 5313:5 5314:1 5316:2 5317:1 5320:2 5321:1 5336:1 5337:1 5369:3 5379:2 5380:1 5383:1 5394:6 5403:1 5406:2 5452:1 5468:1 5481:1 5483:1 5485:1 5503:1 5507:1 5509:1 5510:1 5516:1 5522:2 5524:1 5538:1 5544:1 5549:1 5562:1 5568:1 5569:2 5576:2 5590:2 5593:1 5594:1 5610:6 5612:1 5613:1 5619:1 5620:2 5626:1 5628:1 5629:1 5632:1 5633:1 5636:1 5668:1 5673:1 5678:1 5680:2 5682:1 5688:1 5692:1 5693:1 5696:12 5715:1 5735:3 5742:1 5761:1 5772:1 5787:3 5797:1 5812:6 5817:1 5824:1 5854:1 5869:1 5872:1 5890:1 5897:1 5898:1 5901:1 5905:2 5906:3 5908:1 5911:1 5912:1 5915:2 5916:1 5921:2 5923:4 5924:3 5958:1 5997:1 6008:1 6010:1 6046:1 6051:4 6052:2 6063:1 6072:1 6106:1 6115:1 6124:1 6133:1 6148:1 6154:1 6177:1 6191:2 6199:2 6208:1 6213:1 6222:1 6270:1 6281:1 6290:2 6292:1 6295:1 6298:1 6301:1 6316:7 6323:2 6327:3 6329:1 6336:1 6338:1 6344:1 6355:2 6375:1 6378:1 6379:1 6385:1 6387:1 6389:1 6424:1 6426:3 6437:2 6442:1 6448:2 6465:1 6470:1 6476:1 6479:1 6483:2 6491:1 6507:1 6525:2 6529:1 6530:1 6537:1 6545:1 6546:1 6553:1 6563:6 6569:2 6588:1 6595:1 6596:1 6600:1 6606:1 6609:3 6610:2 6618:1 6623:4 6624:1 6626:1 6631:5 6634:1 6637:1 6657:1 6658:1 6660:1 6670:1 6678:1 6701:1 6702:1 6707:4 6716:3 6724:1 6732:1 6735:1 6752:2 6755:1 6757:1 6765:1 6788:1 6790:1 6798:1 6806:1 6812:1 6824:1 6850:1 6868:1 6871:1 6875:1 6879:2 6917:1 6931:1 6935:2 6936:5 6940:3 6943:1 6945:1 6951:3 6955:1 6971:4 6972:1 6974:2 6988:1 6989:3 6998:1 7002:1 7012:1 7020:2 7023:1 7028:1 7038:1 7043:1 7045:1 7051:1 7053:1 7066:1 7067:1 7075:1 7076:1 7081:1 7086:1 7090:1 7102:1 7114:1 7120:1 7138:3 7153:3 7154:6 7165:2 7170:1 7173:4 7176:2 7178:3 7183:1 7192:1 7198:4 7199:2 7200:1 7213:41 7214:2 7220:1 7222:1 7228:1 7229:8 7231:5 7236:2 7270:1 7276:1 7278:1 7287:1 7297:1 7301:3 7302:2 7307:1 7309:1 7320:1 7322:1 7331:2 7341:3 7358:1 7360:1 7380:2 7388:1 7392:1 7410:2 7440:1 7451:1 7453:1 7454:3 7483:1 7489:1 7490:1 7491:1 7501:2 7540:1 7549:1 7559:1 7569:1 7591:1 7592:1 7600:1 7604:1 7608:1 7628:1 7631:1 7639:1 7643:1 7644:2 7654:1 7663:1 7677:1 7678:1 7700:22 7706:1 7724:3 7726:2 7729:1 7731:2 7732:1 7758:1 7773:6 7776:1 7777:1 7781:1 7810:1 7821:3 7825:2 7827:1 7830:1 7844:1 7854:1 7855:4 7860:3 7868:1 7874:1 7894:2 7896:1 7902:1 7906:1 7918:1 7920:1 7930:1 7937:1 7939:1 7957:1 7958:1 7966:2 7968:1 7969:1 8028:1 8033:1 8034:1 8038:1 8039:1 8041:1 8048:1 8061:1 8064:2 8076:5 8078:1 8087:2 8090:3 8109:1 8115:1 8122:1 8127:2 8130:1 8131:1 8145:1 8146:1 8162:2 8168:1 8191:1 8196:1 8228:1 8233:1 8234:1 8240:1 8244:1 8271:1 8272:1 8285:3 8293:1 8316:1 8319:1 8320:1 8324:3 8347:3 8353:1 8360:2 8361:1 8370:1 8377:1 8394:1 8395:1 8407:1 8415:6 8416:1 8417:1 8423:1 8425:1 8429:1 8436:1 8442:1 8444:1 8455:6 8456:1 8477:1 8484:1 8500:1 8505:11 8506:5 8516:2 8517:1 8551:3 8554:1 8561:1 8566:1 8570:2 8572:1 8589:1 8596:1 8603:2 8605:2 8607:3 8609:2 8624:1 8629:1 8635:1 8644:1 8661:1 8672:1 8681:2 8683:1 8689:1 8692:5 8694:1 8700:1 8715:3 8721:1 8734:4 8770:1 8771:1 8782:1 8795:1 8802:1 8807:1 8823:3 8832:1 8835:3 8840:1 8852:1 8858:1 8865:1 8888:1 8901:1 8905:1 8913:1 8919:7 8924:2 8956:3 8964:1 8965:1 8975:3 8981:1 9005:1 9024:1 9028:1 9031:3 9032:3 9034:2 9038:1 9056:1 9061:1 9064:1 9066:1 9096:1 9099:1 9107:1 9117:1 9142:2 9163:1 9173:2 9186:1 9196:1 9200:1 9201:1 9210:1 9242:1 9243:1 9248:1 9249:1 9262:1 9266:1 9289:1 9294:1 9296:1 9298:1 9301:5 9318:4 9325:4 9327:2 9336:1 9354:2 9371:3 9372:1 9378:1 9396:1 9398:1 9410:2 9415:2 9427:1 9434:1 9444:1 9449:4 9453:1 9481:1 9485:1 9490:12 9492:1 9493:2 9497:2 9501:1 9519:2 9520:1 9535:1 9540:1 9555:1 9572:1 9587:1 9588:2 9590:1 9597:1 9607:1 9622:1 9628:1 9643:1 9644:1 9646:1 9649:1 9651:4 9661:1 9663:1 9665:2 9702:1 9715:4 9720:1 9722:1 9723:1 9729:1 9732:2 9739:1 9742:1 9747:1 9749:1 9755:4 9769:1 9771:1 9787:1 9797:1 9803:1 9804:1 9810:1 9817:1 9819:2 9823:2 9827:1 9837:2 9839:1 9846:1 9853:1 9860:1 9864:1 9866:2 9870:1 9877:2 9879:1 9881:1 9886:7 9889:4 9899:2 9900:3 9905:1 9910:1 9917:1 9920:2 9926:1 9943:2 9953:4 9954:2 9964:1 9979:2 9982:1 9983:1 9991:3 9995:1 10013:1 10026:1 10028:1 10035:3 10047:1 10054:1 10057:5 10071:1 10080:1 10092:1 10093:1 10106:3 10134:1 10140:1 10146:1 10180:1 10191:1 10201:1 10206:1 10224:1 10225:1 10239:1 10240:2 10242:2 10245:1 10246:2 10252:1 10254:1 10261:1 10264:5 10265:5 10268:1 10276:1 10282:2 10283:2 10287:1 10288:1 10289:4 10293:1 10310:3 10313:3 10318:1 10321:1 10336:2 10345:1 10372:1 10373:1 10376:3 10392:1 10406:1 10411:1 10424:1 10434:1 10436:1 10440:1 10466:1 10493:1 10499:1 10512:1 10515:1 10518:1 10530:1 10532:2 10556:1 10575:1 10586:1 10592:1 10597:2 10611:3 10614:2 10617:1 10627:2 10630:2 10632:1 10633:1 10635:2 10644:3 10646:1 10647:1 10648:2 10657:1 10663:3 10667:2 10678:1 10693:14 10694:1 10696:1 10707:1 10718:1 10730:1 10734:4 10742:1 10745:2 10746:2 10756:1 10759:2 10769:1 10786:1 10788:2 10799:2 10803:1 10813:2 10818:2 10831:1 10847:1 10859:1 10863:1 10890:1 10906:1 10924:1 10932:3 10933:1 10934:1 10937:1 10950:1 10951:3 10955:1 10956:2 10957:1 10960:1 10962:1 10968:1 10969:1 10977:1 10979:1 10988:1 10991:1 10992:1 10995:1 10998:1 11003:2 11006:5 11009:2 11031:1 11040:1 11055:1 11073:1 11100:1 11118:1 11120:1 11135:2 11141:1 11159:1 11160:1 11166:5 11173:1 11184:2 11188:2 11189:1 11201:1 11206:1 11214:1 11220:2 11227:1 11243:2 11254:2 11261:1 11263:2 11283:1 11301:2 11306:1 11314:1 11321:1 11327:2 11333:1 11365:1 11372:1 11380:5 11381:2 11382:2 11394:1 11406:2 11412:1 11415:1 11418:1 11424:1 11476:1 11478:2 11479:1 11502:1 11506:1 11513:1 11520:1 11534:1 11542:1 11547:1 11557:1 11635:1 11638:3 11662:2 11674:1 11689:1 11695:1 11705:1 11718:1 11720:2 11721:1 11736:3 11745:1 11758:1 11767:1 11774:1 11824:1 11831:1 11836:1 11839:1 11840:2 11847:1 11859:1 11863:1 11882:13 11886:3 11899:2 11904:1 11915:1 11923:1 11928:1 11929:2 11936:2 11943:1 11952:1 11954:1 11959:1 11964:1 11965:1 11974:1 11980:2 11981:1 11983:1 11989:1 12016:1 12034:1 12039:1 12045:2 12048:1 12068:1 12069:1 12081:1 12090:1 12091:2 12100:2 12101:1 12110:1 12112:1 12134:1 12151:3 12161:1 12163:1 12208:1 12209:1 12231:1 12245:1 12252:1 12254:2 12257:4 12269:1 12274:2 12283:2 12290:1 12306:6 12323:1 12325:2 12346:1 12351:4 12352:1 12367:1 12385:1 12386:1 12387:1 12389:1 12399:7 12400:1 12410:2 12413:1 12428:1 12436:1 12437:1 12440:2 12446:1 12452:1 12453:1 12463:15 12469:1 12474:1 12490:1 12506:2 12508:1 12515:3 12529:1 12533:1 12544:1 12547:1 12556:1 12557:1 12559:1 12590:3 12613:1 12616:6 12617:1 12633:1 12640:1 12642:1 12645:1 12668:3 12685:1 12692:1 12694:1 12696:1 12703:2 12705:1 12707:1 12714:1 12719:1 12721:1 12728:6 12729:1 12732:1 12733:1 12734:1 12736:2 12737:1 12741:7 12742:2 12760:1 12761:1 12763:1 12765:1 12787:1 12805:1 12814:1 12831:1 12842:2 12854:1 12872:1 12878:1 12887:3 12919:1 12926:1 12929:1 12932:1 12939:1 12941:1 12946:1 12956:1 12960:1 12978:2 12986:1 12996:1 12999:1 13005:7 13025:2 13032:1 13041:1 13064:1 13076:1 13077:2 13085:1 13090:1 13103:1 13109:1 13111:1 13118:1 13131:1 13139:1 13161:1 13170:1 13173:1 13180:1 13188:1 13197:1 13211:1 13237:1 13245:2 13261:4 13277:1 13288:1 13309:1 13320:1 13380:1 13383:3 13384:4 13391:1 13404:2 13406:1 13410:2 13412:1 13432:1 13436:1 13442:1 13452:2 13470:1 13479:1 13480:1 13499:1 13509:1 13524:2 13531:1 13535:1 13548:1 13552:1 13554:1 13556:1 13563:2 13567:1 13578:3 13585:2 13595:1 13630:1 13632:2 13637:2 13641:1 13679:2 13680:1 13690:1 13713:1 13720:1 13723:1 13731:1 13756:3 13768:1 13771:2 13774:1 13804:1 13807:1 13847:1 13850:1 13885:2 13891:2 13892:2 13895:1 13902:1 13912:1 13932:1 13977:1 13979:3 13984:1 13997:1 13998:1 13999:1 14004:1 14032:1 14083:1 14087:1 14092:1 14094:2 14115:1 14155:1 14170:2 14182:1 14187:1 14204:1 14211:1 14212:1 14213:2 14226:1 14240:2 14245:3 14248:1 14270:1 14274:1 14275:1 14295:2 14311:2 14315:1 14318:1 14334:1 14345:2 14354:1 14362:1 14378:1 14380:1 14385:1 14387:1 14391:1 14397:6 14409:3 14419:1 14424:3 14435:3 14457:1 14460:1 14467:1 14484:1 14486:1 14489:2 14552:2 14553:1 14564:2 14571:1 14575:1 14579:4 14584:1 14586:1 14593:1 14605:4 14606:1 14609:1 14612:1 14624:1 14626:1 14639:1 14658:2 14666:2 14703:2 14706:1 14709:1 14719:3 14726:1 14735:1 14737:1 14739:3 14753:1 14764:2 14782:1 14802:1 14817:1 14819:1 14841:1 14847:1 14853:1 14857:14 14859:1 14872:1 14876:3 14878:1 14900:3 14904:1 14943:1 14954:1 14958:1 14962:2 14972:2 14976:1 14990:2 14994:1 15008:2 15015:1 15029:1 15030:2 15046:1 15052:1 15060:1 15062:1 15064:1 15068:1 15074:2 15075:1 15100:3 15103:1 15117:1 15122:1 15128:5 15130:2 15131:2 15132:5 15133:1 15134:1 15135:2 15137:1 15139:2 15140:3 15143:1 15144:1 15147:1 15150:1 15151:1 15153:1 15161:1 15201:1 15204:1 15206:2 15216:1 15232:1 15251:1 15255:1 15256:1 15279:2 15284:1 15288:2 15289:1 15307:1 15328:1 15336:1 15337:1 15367:1 15370:1 15418:1 15430:1 15434:2 15445:1 15446:2 15455:2 15456:1 15466:1 15470:5 15475:1 15478:2 15487:1 15495:1 15496:1 15501:2 15504:1 15505:4 15509:2 15513:1 15522:3 15526:2 15534:2 15544:1 15553:1 15585:13 15588:1 15604:1 15606:1 15611:1 15613:4 15618:1 15656:1 15671:1 15672:1 15678:2 15689:1 15695:4 15705:1 15706:1 15720:1 15722:2 15742:1 15756:2 15761:1 15778:5 15791:1 15802:1 15811:1 15823:1 15841:1 15849:1 15878:2 15879:3 15895:1 15898:1 15936:2 15945:1 15946:1 15950:1 15970:1 15973:1 15980:1 15987:2 15992:1 16006:1 16014:1 16022:2 16034:2 16039:1 16041:2 16047:1 16055:1 16072:1 16116:1 16119:1 16150:1 16159:1 16163:1 16183:1 16187:1 16199:2 16202:1 16212:1 16213:3 16218:1 16224:1 16232:3 16238:2 16240:2 16244:2 16250:10 16284:1 16287:2 16288:1 16293:2 16294:1 16298:1 16305:1 16311:1 16315:1 16316:1 16331:1 16368:1 16369:1 16389:3 16392:1 16403:1 16416:2 16427:1 16428:1 16434:1 16435:1 16440:1 16451:1 16453:1 16482:1 16483:1 16484:1 16508:1 16513:1 16518:2 16554:1 16557:1 16576:1 16578:1 16593:1 16594:2 16598:1 16600:1 16602:1 16614:1 16616:1 16646:1 16661:1 16684:1 16709:1 16710:1 16720:2 16740:2 16814:2 16815:1 16823:1 16833:1 16838:1 16844:1 16862:1 16879:1 16885:1 16907:1 16934:1 16937:3 16946:1 16951:1 16981:1 16986:1 16999:14 17009:1 17025:1 17050:1 17071:1 17087:13 17097:3 17099:1 17102:1 17103:5 17128:2 17142:1 17156:2 17184:4 17192:2 17204:2 17218:1 17219:1 17243:3 17251:2 17263:2 17276:2256 17285:1 17289:1 17301:1 17302:1 17347:1 17351:1 17353:1 17374:2 17389:1 17420:1 17421:1 17445:1 17465:1 17467:1 17469:1 17472:2 17474:5 17475:3 17488:1 17493:1 17495:1 17515:1 17526:1 17535:1 17542:1 17551:1 17552:1 17592:1 17595:3 17599:2 17608:1 17644:1 17653:1 17654:3 17684:2 17697:1 17699:1 17707:2 17709:1 17717:1 17735:1 17737:1 17748:2 17754:1 17765:1 17776:1 17787:1 17791:2 17795:2 17803:1 17809:1 17817:1 17836:2 17837:2 17855:2 17859:1 17862:1 17870:2 17876:1 17895:2 17896:1 17900:1 17904:1 17905:1 17913:1 17917:2 17927:8 17949:1 17951:1 17966:1 17970:2 17971:1 17978:2 17992:5 17999:1 18009:1 18011:1 18043:1 18047:4 18052:1 18054:2 18060:1 18062:2 18070:1 18075:4 18076:1 18081:1 18085:1 18090:1 18101:1 18104:3 18115:2 18116:1 18123:3 18141:1 18156:3 18159:1 18163:1 18178:1 18182:1 18183:2 18187:2 18193:1 18194:1 18197:1 18218:1 18228:1 18233:1 18234:1 18240:1 18247:1 18271:1 18282:2 18294:1 18295:2 18296:1 18297:1 18301:1 18303:1 18308:1 18323:1 18326:1 18328:1 18332:1 18339:1 18343:1 18349:1 18359:1 18371:1 18374:1 18381:1 18382:1 18390:1 18408:1 18416:1 18420:2 18422:4 18427:1 18428:3 18430:1 18474:1 18477:1 18478:1 18492:1 18495:2 18499:1 18501:1 18503:2 18504:1 18508:2 18519:1 18521:1 18525:3 18529:2 18533:1 18534:2 18536:2 18538:1 18548:1 18556:5 18564:2 18580:1 18582:1 18596:1 18598:1 18603:2 18604:4 18627:1 18628:1 18638:1 18639:1 18645:1 18653:1 18658:1 18665:2 18685:1 18690:1 18691:2 18707:1 18716:3 18718:18 18719:2 18726:1 18735:5 18738:1 18756:1 18759:1 18784:1 18792:1 18793:1 18805:1 18811:1 18817:1 18821:1 18835:1 18838:1 18847:1 18848:1 18866:1 18868:1 18875:1 18905:4 18919:2 18933:1 18937:2 18941:1 18949:2 18960:1 18962:1 18969:2 18996:8 18998:2 19005:1 19013:1 19022:1 19039:1 19040:1 19050:1 19057:1 19080:1 19082:1 19085:4 19101:3 19112:1 19117:1 19119:1 19125:1 19128:1 19132:1 19133:1 19140:1 19143:2 19175:2 19183:3 19189:2 19190:2 19201:2 19204:2 19207:1 19209:1 19215:2 19221:1 19243:4 19245:2 19254:2 19261:1 19279:2 19284:1 19286:1 19293:1 19311:2 19317:1 19324:2 19325:1 19331:5 19334:1 19338:2 19344:1 19349:2 19359:3 19385:2 19391:1 19394:1 19412:1 19415:1 19421:2 19422:1 19431:2 19439:2 19443:2 19447:2 19450:2 19451:1 19459:2 19478:1 19484:2 19506:2 19515:1 19516:2 19521:1 19522:1 19523:4 19532:1 19537:2 19542:1 19545:1 19546:1 19547:1 19551:1 19552:1 19558:2 19564:1 19577:1 19581:1 19591:1 19595:1 19614:1 19620:1 19627:1 19629:1 19633:2 19636:2 19648:1 19661:1 19697:1 19756:1 19757:1 19770:2 19773:1 19782:2 19785:2 19790:1 19791:1 19794:1 19795:1 19798:1 19799:1 19806:1 19812:2 19821:3 19823:1 19830:1 19837:1 19845:1 19866:1 19873:1 19880:1 19889:1 19896:1 19897:1 19919:2 19921:1 19922:1 19927:1 19931:2 19934:1 19936:1 19948:1 19951:2 19954:2 19959:2 19960:1 19963:2 19965:1 19976:1 19978:2 19989:1 19998:13 20001:1 20009:2 20010:2 20017:2 20028:1 20041:1 20049:1 20051:1 20061:1 20063:1 20066:1 20067:1 20071:1 20072:1 20075:1 20125:2 20134:1 20138:2 20141:1 20142:1 20147:1 20149:1 20151:4 20154:3 20156:1 20166:2 20177:1 20179:1 20182:1 20183:1 20205:1 20206:1 20210:2 20212:4 20240:1 20248:1 20252:1 20316:3 20321:1 20322:4 20325:3 20326:3 20328:1 20329:1 20334:1 20337:2 20340:1 20341:2 20351:1 20352:5 20360:1 20362:1 20368:1 20381:1 20396:2 20400:2 20403:2 20417:1 20444:1 20471:2 20473:2 20481:1 20486:1 20492:1 20497:1 20503:1 20509:1 20523:1 20524:1 20529:1 20532:1 20533:1 20534:1 20544:1 20546:1 20553:1 20556:1 20567:2 20570:1 20572:5 20578:1 20587:1 20588:3 20592:3 20593:1 20599:1 20611:1 20619:1 20628:2 20630:1 20632:1 20633:1 20634:4 20647:1 20655:2 20656:9 20658:1 20662:1 20666:1 20670:1 20675:1 20676:1 20692:1 20693:1 20719:7 20720:1 20733:1 20754:1 20772:1 20779:5 20780:1 20787:1 20796:1 20812:1 20813:1 20842:1 20844:2 20857:1 20864:1 20879:1 20886:1 20887:6 20889:1 20900:3 20903:1 20905:3 20914:1 20919:1 20924:1 20926:1 20938:1 20940:3 20955:1 20962:1 20963:2 20968:3 20976:1 20982:1 20991:1 21005:1 21026:1 21029:1 21062:1 21066:1 21072:1 21073:1 21074:1 21079:1 21090:1 21100:2 21115:10 21116:3 21130:2 21134:2 21138:1 21140:4 21149:1 21150:3 21163:2 21176:1 21203:1 21215:1 21216:1 21218:2 21220:2 21234:1 21235:1 21256:1 21257:1 21261:1 21262:1 21263:1 21266:1 21282:1 21284:1 21296:1 21303:2 21306:1 21309:2 21311:1 21340:3 21370:3 21385:1 21415:1 21434:1 21453:3 21456:2 21462:5 21469:2 21479:1 21484:1 21488:3 21498:2 21500:2 21501:1 21502:3 21512:1 21520:4 21551:1 21554:1 21559:1 21580:1 21586:1 21599:1 21613:2 21624:1 21635:1 21642:1 21647:1 21650:2 21674:2 21682:1 21686:2 21694:1 21695:1 21703:1 21708:1 21709:1 21724:1 21726:2 21730:2 21733:3 21742:1 21743:1 21755:1 21757:1 21772:3 21773:2 21777:2 21792:1 21794:1 21800:1 21845:1 21846:4 21848:1 21853:1 21859:1 21861:1 21862:2 21863:1 21864:1 21865:1 21867:1 21869:1 21898:1 21913:1 21916:1 21917:1 21930:1 21974:1 21981:2 21991:1 22014:2 22019:1 22053:1 22066:1 22068:2 22074:1 22076:1 22078:1 22088:1 22102:1 22120:1 22122:1 22125:1 22130:1 22136:1 22146:1 22176:1 22188:1 22196:1 22218:1 22230:2 22238:1 22260:2 22263:1 22282:2 22296:3 22304:1 22320:1 22327:1 22328:7 22345:1 22352:1 22358:3 22370:1 22380:1 22382:1 22389:1 22391:4 22400:1 22402:1 22403:1 22407:1 22412:1 22435:3 22457:2 22459:1 22467:1 22469:1 22478:1 22502:1 22522:1 22530:1 22531:1 22550:1 22553:1 22559:1 22564:3 22565:2 22571:1 22572:1 22575:1 22578:2 22581:1 22582:1 22592:1 22601:1 22612:6 22626:1 22627:1 22629:1 22632:1 22640:1 22642:1 22644:1 22646:1 22662:11 22663:6 22675:1 22685:1 22688:2 22693:1 22695:1 22696:1 22705:1 22709:1 22710:1 22713:1 22718:3 22726:2 22739:1 22755:1 22802:1 22811:1 22827:1 22853:2 22856:1 22862:1 22868:1 22870:1 22876:2 22880:2 22886:2 22890:1 22895:1 22901:2 22903:2 22907:1 22923:1 22929:1 22931:1 22937:1 22942:1 22943:2 22946:1 22948:1 22953:1 22963:1 22974:3 22987:2 22992:1 22993:1 23012:2 23018:1 23022:1 23024:2 23041:1 23048:1 23077:17 23078:2 23101:1 23105:1 23106:1 23115:1 23123:1 23130:1 23136:2 23139:1 23144:1 23158:2 23161:1 23162:1 23169:1 23170:1 23181:1 23188:1 23197:1 23202:1 23217:1 23222:1 23261:1 23291:10 23292:1 23307:1 23316:2 23319:1 23329:1 23363:1 23373:1 23375:6 23378:1 23387:1 23398:1 23404:2 23406:1 23426:1 23432:1 23436:2 23440:1 23446:1 23454:1 23465:1 23481:1 23497:1 23503:2 23505:1 23514:2 23528:1 23532:1 23545:1 23557:1 23601:1 23602:2 23609:1 23613:1 23617:1 23628:1 23631:1 23635:2 23639:5 23642:1 23648:1 23651:1 23652:1 23664:1 23666:1 23669:1 23695:4 23700:1 23704:1 23706:1 23719:1 23721:7 23738:1 23739:2 23756:1 23768:1 23771:1 23774:2 23775:1 23784:1 23786:1 23803:1 23826:1 23840:1 23845:2 23889:1 23895:1 23909:1 23923:1 23932:1 23943:1 23969:1 23999:2 24009:2 24019:1 24024:1 24025:1 24027:1 24041:1 24055:1 24061:3 24064:1 24092:4 24101:1 24104:1 24126:1 24129:1 24138:2 24140:1 24149:2 24150:1 24161:1 24165:14 24166:2 24177:2 24185:1 24193:1 24195:1 24206:1 24220:2 24230:1 24231:1 24233:1 24245:1 24251:1 24255:2 24256:2 24259:1 24263:1 24272:4 24275:3 24280:3 24285:2 24286:4 24289:1 24290:1 24304:1 24310:1 24350:1 24357:1 24363:1 24372:1 24376:1 24377:2 24400:2 24408:2 24416:1 24420:2 24424:1 24425:1 24427:2 24443:6 24444:1 24446:1 24454:1 24462:1 24471:1 24472:1 24478:1 24479:1 24500:1 24502:1 24503:2 24521:1 24524:1 24553:1 24570:1 24592:1 24596:1 24600:2 24622:1 24625:1 24643:1 24648:1 24653:1 24655:1 24658:5 24675:1 24676:1 24710:1 24713:1 24715:1 24720:1 24721:1 24733:1 24737:1 24740:2 24747:1 24768:1 24773:2 24774:2 24784:1 24792:3 24809:1 24830:1 24839:1 24844:2 24870:1 24889:1 24892:1 24917:1 24928:2 24938:1 24944:3 24949:1 24953:1 24954:1 24964:1 24966:1 24972:1 24976:2 24994:1 25000:1 25005:2 25019:2 25022:1 25026:1 25031:2 25032:1 25059:1 25065:1 25068:1 25070:1 25073:2 25081:1 25109:1 25110:1 25125:5 25129:3 25132:2 25145:1 25147:1 25177:1 25185:2 25191:1 25195:1 25200:2 25207:2 25213:1 25214:1 25224:2 25232:1 25239:1 25242:1 25244:1 25250:1 25251:1 25254:1 25255:1 25256:1 25260:2 25263:1 25267:2 25269:1 25277:1 25281:2 25291:2 25295:1 25299:1 25302:1 25329:1 25330:1 25339:1 25346:4 25363:1 25370:2 25389:1 25412:1 25451:1 25454:2 25479:1 25487:1 25491:2 25514:2 25530:1 25532:1 25536:1 25538:3 25543:5 25560:1 25572:1 25600:6 25630:1 25632:1 25644:1 25693:1 25698:1 25699:1 25702:2 25717:2 25731:1 25739:1 25752:1 25768:1 25775:1 25777:1 25791:2 25793:3 25794:1 25801:1 25804:2 25808:1 25809:2 25820:1 25822:1 25828:1 25829:5 25837:1 25841:1 25843:1 25856:2 25861:2 25863:2 25867:1 25869:1 25871:5 25875:1 25880:1 25881:1 25888:1 25892:3 25893:1 25905:3 25909:1 25913:3 25941:1 25946:3 25964:1 25965:1 25983:1 26005:1 26012:3 26015:4 26022:5 26028:1 26054:4 26067:1 26071:1 26080:1 26081:1 26092:1 26098:1 26099:1 26101:1 26123:1 26125:5 26129:1 26132:2 26163:1 26174:1 26194:1 26213:1 26214:1 26221:1 26222:1 26229:1 26230:2 26236:1 26244:1 26265:3 26298:1 26300:1 26301:1 26305:1 26306:7 26312:1 26315:1 26325:2 26340:1 26368:5 26401:1 26411:1 26452:1 26464:1 26512:1 26527:2 26538:1 26539:1 26540:2 26541:1 26544:2 26547:3 26553:1 26557:1 26558:1 26565:1 26580:1 26612:1 26616:1 26655:3 26664:2 26690:2 26696:2 26706:1 26710:1 26713:1 26722:1 26733:1 26745:1 26750:3 26751:1 26757:2 26759:1 26785:1 26787:1 26790:4 26793:2 26806:1 26810:1 26832:1 26837:1 26843:1 26848:1 26855:1 26862:1 26874:1 26879:1 26883:3 26889:1 26891:1 26910:1 26920:2 26923:1 26940:1 26957:2 26961:2 26973:1 26978:1 26979:3 26986:3 26987:3 26988:1 26990:1 26996:1 27031:5 27034:1
1 13:1 35:1 39:1 47:1 50:1 55:1 89:1 120:1 137:1 138:3 139:1 144:1 150:2 157:1 165:1 169:3 182:5 192:1 209:1 222:1 233:1 238:7 255:3 264:1 280:2 306:1 315:4 317:3 327:3 334:3 339:1 346:2 359:1 362:3 372:1 382:2 395:5 397:5 404:1 412:1 416:1 442:1 445:1 446:1 472:2 500:1 511:1 515:2 532:1 544:3 552:1 568:1 578:1 582:4 584:1 588:1 604:2 612:1 630:1 665:1 678:1 683:1 711:1 722:1 723:2 726:1 743:1 745:2 751:1 764:1 789:5 794:1 798:1 800:1 802:4 808:1 822:14 826:4 837:3 854:3 868:1 872:1 873:4 874:2 875:8 877:1 878:2 880:4 882:1 894:2 912:5 915:4 926:1 927:1 953:2 958:1 972:1 1002:1 1013:2 1017:1 1035:1 1037:1 1053:1 1059:2 1061:1 1064:1 1108:3 1109:2 1114:1 1116:2 1118:1 1122:2 1125:1 1126:1 1141:1 1150:1 1151:1 1154:1 1158:2 1170:2 1173:2 1180:1 1187:1 1193:2 1195:1 1227:1 1228:1 1244:1 1262:1 1264:1 1266:1 1269:1 1279:1 1292:1 1312:1 1316:1 1324:1 1325:2 1339:1 1345:1 1346:2 1364:1 1366:1 1371:3 1379:1 1392:1 1397:1 1402:1 1404:1 1405:2 1408:1 1419:1 1427:1 1437:1 1445:1 1448:4 1454:7 1456:2 1465:1 1469:1 1490:2 1499:1 1501:1 1510:1 1514:1 1523:1 1526:1 1528:1 1530:2 1538:1 1542:2 1549:1 1553:1 1555:1 1558:1 1559:2 1568:1 1571:2 1580:1 1584:1 1587:1 1592:1 1596:1 1600:1 1606:1 1615:1 1619:1 1625:1 1634:2 1635:1 1652:1 1653:5 1659:1 1663:1 1675:1 1681:1 1684:3 1687:1 1688:2 1696:6 1703:1 1723:4 1724:2 1729:1 1737:1 1745:1 1749:1 1757:2 1759:4 1761:1 1762:1 1764:1 1787:2 1793:1 1794:1 1801:2 1806:2 1807:1 1809:1 1822:2 1825:1 1866:1 1870:8 1875:1 1881:1 1885:1 1892:4 1896:1 1897:1 1899:2 1904:1 1907:2 1925:1 1931:1 1938:1 1952:1 1956:1 1959:1 1976:2 1978:1 1983:1 1984:1 1988:2 1990:1 2004:1 2014:1 2027:11 2037:1 2046:1 2051:1 2053:1 2071:1 2077:1 2078:1 2092:2 2103:3 2107:1 2119:1 2120:1 2123:1 2126:2 2142:2 2143:2 2145:1 2147:3 2148:5 2150:1 2152:1 2154:2 2157:2 2158:2 2159:1 2160:2 2161:4 2165:1 2167:5 2170:3 2172:5 2173:7 2185:1 2196:1 2216:1 2219:1 2224:2 2226:3 2229:1 2234:1 2246:2 2248:1 2257:1 2274:1 2275:1 2277:1 2285:1 2293:1 2294:1 2296:1 2321:1 2328:1 2333:1 2342:1 2350:3 2351:1 2360:1 2367:1 2377:3 2388:2 2390:1 2403:1 2405:1 2413:1 2417:1 2432:3 2435:2 2437:1 2439:6 2443:1 2444:1 2445:1 2454:1 2457:1 2478:4 2479:1 2480:1 2483:1 2496:2 2503:1 2504:1 2505:1 2506:1 2513:6 2520:2 2526:2 2529:8 2535:4 2537:1 2545:2 2547:1 2553:1 2555:2 2557:1 2562:3 2563:2 2574:2 2589:1 2591:2 2597:3 2602:1 2605:1 2638:1 2640:2 2641:2 2654:3 2655:1 2659:1 2662:5 2667:2 2671:1 2684:1 2686:1 2691:1 2710:1 2716:2 2719:1 2738:4 2745:1 2749:1 2752:14 2773:3 2774:1 2776:1 2777:1 2779:1 2786:2 2791:2 2794:1 2811:18 2813:1 2826:1 2836:2 2839:3 2848:1 2856:1 2866:1 2893:1 2898:1 2902:1 2907:1 2917:1 2918:5 2934:3 2939:1 2948:1 2952:1 2970:1 2979:1 2989:1 2993:1 2998:1 3006:2 3014:1 3027:2 3035:1 3042:3 3057:1 3089:1 3090:2 3128:1 3129:2 3130:1 3134:1 3149:6 3193:1 3216:1 3225:2 3234:1 3263:1 3264:1 3265:1 3277:1 3283:1 3285:1 3286:1 3291:1 3305:1 3308:1 3328:1 3343:1 3358:2 3362:1 3383:1 3384:13 3399:1 3403:2 3405:2 3406:2 3409:1 3425:1 3429:1 3430:1 3438:1 3446:1 3477:1 3479:2 3480:1 3484:1 3489:3 3490:1 3493:2 3501:1 3523:1 3548:1 3549:1 3552:1 3554:1 3559:2 3562:1 3565:2 3569:1 3576:3 3581:1 3596:1 3599:1 3603:2 3608:1 3610:1 3626:2 3628:1 3631:1 3640:1 3648:3 3649:1 3663:1 3664:1 3668:4 3670:1 3673:2 3677:1 3678:2 3687:4 3698:1 3700:2 3715:1 3716:2 3730:1 3732:2 3734:2 3738:1 3756:2 3765:6 3766:4 3772:2 3808:1 3810:2 3813:1 3818:1 3834:1 3837:1 3839:2 3857:1 3864:1 3866:2 3870:1 3872:1 3875:1 3878:1 3891:2 3900:1 3910:2 3924:1 3932:1 3937:4 3938:1 3940:1 3941:1 3944:2 3946:1 3950:1 3954:2 3977:1 3981:1 3992:1 4008:1 4025:1 4027:2 4029:1 4045:7 4075:3 4081:1 4090:1 4097:1 4101:1 4104:2 4114:2 4127:2 4133:1 4149:1 4152:1 4156:2 4169:1 4177:4 4194:1 4202:1 4203:1 4211:1 4225:2 4246:1 4249:1 4252:1 4256:1 4257:3 4259:1 4267:1 4276:1 4292:3 4304:1 4314:5 4327:1 4331:1 4355:4 4363:2 4371:1 4372:1 4377:3 4380:1 4397:4 4420:2 4437:1 4440:2 4443:3 4456:3 4459:1 4468:1 4469:2 4475:1 4494:1 4496:2 4507:1 4511:1 4523:1 4524:1 4537:1 4549:1 4565:14 4567:2 4574:1 4576:1 4581:1 4586:1 4595:1 4601:1 4613:1 4623:1 4629:1 4664:1 4669:3 4684:1 4685:4 4687:7 4688:3 4690:1 4693:2 4695:2 4696:1 4698:1 4700:1 4701:2 4703:6 4704:4 4706:1 4708:2 4709:7 4715:2 4716:4 4719:1 4721:1 4733:1 4764:1 4776:1 4789:2 4796:1 4820:1 4853:1 4891:1 4903:1 4917:1 4930:1 4937:2 4973:1 4977:1 5002:3 5008:2 5018:1 5057:1 5061:1 5066:2 5088:3 5101:1 5121:1 5140:1 5146:1 5157:2 5163:1 5171:1 5180:1 5188:1 5197:1 5220:1 5230:1 5252:1 5254:1 5264:1 5284:2 5287:1 5292:1 5298:2 5302:1 5305:1 5313:5 5314:1 5316:2 5317:1 5320:2 5321:1 5336:1 5337:1 5369:3 5379:2 5380:1 5383:1 5394:6 5403:1 5406:2 5452:1 5468:1 5481:1 5483:1 5485:1 5503:1 5507:1 5509:1 5510:1 5516:1 5522:2 5524:1 5538:1 5544:1 5549:1 5562:1 5568:1 5569:2 5576:2 5590:2 5593:1 5594:1 5596:1 5607:1 5610:6 5612:1 5613:1 5619:1 5620:2 5626:1 5628:1 5629:1 5632:1 5633:1 5636:1 5668:1 5673:1 5678:1 5680:2 5682:1 5688:1 5692:2 5693:1 5696:12 5715:1 5735:3 5742:1 5761:1 5772:1 5787:3 5797:2 5812:6 5817:1 5824:1 5854:1 5869:1 5872:1 5890:1 5897:1 5898:1 5901:1 5905:2 5906:3 5908:1 5911:1 5912:1 5915:2 5916:1 5921:2 5923:4 5924:3 5958:1 5997:1 6008:1 6010:1 6046:1 6051:4 6052:2 6063:1 6072:1 6106:1 6115:1 6124:1 6133:1 6148:1 6154:2 6177:1 6191:2 6199:2 6208:1 6213:1 6222:1 6270:1 6281:1 6290:2 6292:1 6295:1 6298:1 6301:1 6316:7 6323:2 6327:3 6329:1 6336:1 6338:1 6344:1 6355:2 6375:1 6378:1 6379:1 6385:1 6387:1 6389:1 6424:1 6426:3 6437:2 6442:1 6448:2 6465:1 6470:1 6476:1 6479:1 6483:2 6484:1 6491:2 6507:1 6525:2 6529:1 6530:1 6537:1 6545:1 6546:1 6553:1 6563:6 6569:2 6588:1 6595:1 6596:1 6600:1 6606:1 6609:3 6610:2 6618:1 6623:4 6624:1 6626:1 6631:5 6634:1 6637:1 6657:1 6658:1 6660:1 6670:1 6678:1 6701:1 6702:1 6707:4 6716:4 6724:1 6732:1 6735:1 6752:3 6755:1 6757:1 6765:1 6778:1 6788:1 6790:1 6798:1 6806:1 6812:1 6824:1 6850:1 6868:1 6871:1 6875:1 6879:2 6917:1 6931:1 6935:2 6936:5 6940:3 6943:1 6945:1 6951:3 6955:1 6971:6 6972:1 6974:2 6988:1 6989:3 6998:1 7002:1 7012:1 7020:2 7023:1 7028:1 7038:1 7043:1 7045:1 7051:1 7053:1 7066:1 7067:1 7075:1 7076:2 7081:1 7086:1 7090:1 7101:1 7102:1 7114:1 7120:1 7138:3 7153:4 7154:6 7165:2 7170:1 7173:4 7176:2 7178:3 7180:1 7183:1 7192:1 7198:4 7199:2 7200:1 7213:45 7214:2 7220:1 7222:1 7228:1 7229:9 7231:5 7236:2 7270:1 7276:1 7278:1 7287:1 7297:1 7301:3 7302:2 7307:1 7309:1 7320:1 7322:1 7331:2 7341:3 7358:1 7360:1 7380:2 7388:1 7392:1 7409:1 7410:2 7440:1 7451:1 7453:1 7454:3 7483:1 7489:1 7490:1 7491:1 7501:2 7540:1 7549:1 7559:1 7569:1 7573:1 7591:1 7592:1 7600:1 7604:1 7608:1 7628:1 7631:1 7639:1 7643:1 7644:2 7654:1 7663:1 7677:1 7678:1 7700:22 7706:1 7724:3 7726:2 7729:1 7731:2 7732:1 7752:1 7758:1 7773:6 7776:1 7777:1 7781:1 7810:1 7821:3 7823:1 7825:2 7827:1 7830:1 7844:1 7854:1 7855:4 7860:3 7868:1 7874:1 7894:2 7896:1 7902:1 7906:1 7918:1 7920:1 7930:1 7937:1 7939:1 7957:1 7958:1 7966:2 7968:1 7969:1 8028:1 8033:1 8034:1 8038:1 8039:1 8041:1 8048:1 8061:1 8064:2 8076:5 8078:1 8087:2 8090:3 8109:1 8115:1 8122:1 8127:2 8130:1 8131:1 8145:1 8146:1 8162:2 8168:1 8191:1 8196:1 8228:1 8233:1 8234:1 8240:1 8244:1 8271:1 8272:1 8285:3 8293:1 8316:1 8319:1 8320:1 8324:3 8347:3 8353:1 8360:2 8361:1 8370:1 8377:1 8394:1 8395:1 8407:1 8415:6 8416:1 8417:1 8423:1 8425:1 8429:1 8436:1 8442:1 8444:1 8455:6 8456:1 8477:1 8484:1 8500:1 8505:11 8506:5 8516:2 8517:1 8551:3 8554:1 8561:1 8566:1 8570:2 8572:1 8589:1 8596:1 8603:2 8605:2 8607:3 8609:2 8624:1 8629:1 8635:1 8644:1 8661:1 8672:1 8681:2 8683:1 8689:1 8692:5 8694:1 8700:1 8708:1 8715:3 8720:1 8721:1 8734:4 8770:1 8771:1 8782:1 8795:1 8802:1 8807:1 8823:3 8832:1 8835:3 8840:1 8852:1 8858:1 8865:1 8888:1 8901:1 8905:1 8913:1 8919:7 8924:2 8956:3 8964:1 8965:1 8975:3 8981:1 9005:1 9024:1 9028:1 9031:3 9032:3 9034:2 9038:1 9056:1 9061:1 9064:1 9066:1 9096:2 9099:1 9107:1 9117:1 9142:2 9159:1 9163:1 9173:2 9186:1 9196:1 9200:1 9201:1 9210:1 9242:1 9243:1 9248:1 9249:1 9262:1 9266:1 9289:1 9291:1 9294:1 9296:1 9298:1 9301:5 9318:4 9325:4 9327:2 9336:1 9354:2 9371:3 9372:1 9378:1 9396:1 9398:1 9406:1 9410:2 9415:2 9427:1 9434:1 9444:1 9449:4 9453:1 9481:2 9485:1 9490:12 9492:1 9493:2 9497:2 9501:1 9519:2 9520:1 9535:1 9540:1 9555:1 9572:1 9587:1 9588:2 9590:1 9597:1 9607:1 9622:1 9628:1 9643:1 9644:1 9646:1 9649:1 9651:4 9661:1 9663:1 9665:2 9702:1 9715:4 9720:1 9722:1 9723:1 9729:1 9732:3 9739:1 9742:1 9747:1 9749:1 9755:4 9769:1 9771:1 9787:1 9797:1 9803:1 9804:1 9810:1 9817:1 9819:2 9823:2 9827:1 9837:2 9839:1 9846:1 9853:1 9860:1 9864:1 9866:2 9870:1 9877:2 9879:1 9881:1 9886:7 9889:4 9899:2 9900:3 9905:1 9910:1 9917:1 9920:2 9926:1 9943:2 9953:5 9954:2 9964:1 9979:2 9982:1 9983:1 9991:3 9995:1 10013:1 10026:1 10028:1 10035:3 10047:2 10054:1 10057:6 10071:1 10080:1 10092:1 10093:1 10106:3 10134:1 10140:1 10146:1 10180:1 10191:1 10201:1 10206:1 10224:1 10225:1 10239:1 10240:2 10242:2 10245:1 10246:2 10252:1 10254:1 10261:1 10264:5 10265:5 10268:1 10276:1 10282:2 10283:2 10287:1 10288:1 10289:4 10293:1 10298:1 10310:3 10313:3 10318:1 10321:1 10336:2 10345:1 10372:1 10373:1 10376:3 10392:1 10406:1 10411:1 10424:1 10434:1 10436:1 10440:1 10466:1 10493:1 10499:1 10512:1 10515:1 10518:1 10530:1 10532:2 10556:1 10575:1 10586:1 10592:1 10597:2 10611:3 10614:2 10617:1 10627:2 10630:2 10632:1 10633:1 10635:2 10637:1 10644:3 10646:1 10647:1 10648:2 10657:1 10663:3 10667:2 10678:1 10693:15 10694:1 10696:1 10707:1 10718:1 10730:1 10734:4 10742:1 10745:2 10746:2 10756:1 10759:2 10769:1 10786:1 10788:2 10799:2 10803:1 10813:2 10818:2 10831:1 10847:1 10859:1 10863:1 10890:1 10906:1 10924:1 10932:3 10933:1 10934:1 10937:1 10950:1 10951:4 10955:1 10956:2 10957:1 10960:1 10962:1 10968:1 10969:1 10977:1 10979:1 10988:1 10991:1 10992:1 10995:1 10998:1 11003:2 11006:5 11009:2 11031:1 11040:1 11055:1 11073:1 11100:1 11118:1 11120:1 11135:2 11141:1 11151:1 11159:1 11160:1 11166:5 11173:1 11184:2 11188:2 11189:1 11201:1 11206:1 11214:1 11220:2 11227:2 11243:2 11254:2 11261:1 11263:2 11283:1 11301:2 11306:1 11314:1 11321:1 11327:2 11333:1 11365:1 11372:1 11380:5 11381:2 11382:2 11394:1 11406:2 11412:1 11415:1 11418:1 11424:1 11476:1 11478:2 11479:1 11502:1 11506:1 11513:1 11520:1 11534:1 11542:1 11547:1 11557:1 11574:1 11635:1 11638:3 11662:2 11674:1 11689:1 11695:1 11705:1 11718:1 11720:2 11721:1 11736:3 11745:1 11758:1 11767:1 11774:1 11824:1 11831:1 11836:1 11839:1 11840:2 11847:1 11859:1 11863:1 11882:13 11886:3 11899:2 11904:1 11915:1 11923:1 11928:1 11929:3 11936:2 11943:1 11952:1 11954:1 11959:1 11964:1 11965:1 11974:1 11980:2 11981:1 11983:1 11989:1 12016:1 12034:1 12039:1 12045:2 12048:1 12068:1 12069:1 12081:1 12090:1 12091:2 12100:2 12101:1 12110:1 12112:1 12134:1 12151:3 12161:2 12163:1 12208:1 12209:1 12231:1 12245:1 12252:1 12254:2 12257:4 12269:1 12274:2 12283:2 12290:1 12306:6 12323:1 12325:2 12346:1 12351:4 12352:1 12367:1 12385:1 12386:1 12387:1 12389:1 12399:7 12400:1 12410:2 12413:1 12428:1 12436:1 12437:1 12440:2 12446:1 12452:1 12453:1 12463:15 12469:1 12474:1 12490:1 12506:2 12508:1 12515:3 12529:1 12533:2 12544:1 12547:2 12556:1 12557:1 12559:1 12590:3 12613:1 12616:6 12617:1 12633:1 12640:1 12642:1 12645:1 12668:3 12685:1 12692:1 12694:1 12696:1 12703:2 12705:1 12707:1 12714:1 12719:1 12721:1 12728:6 12729:1 12732:1 12733:1 12734:1 12736:2 12737:1 12741:7 12742:2 12760:1 12761:1 12763:1 12765:1 12787:1 12805:1 12814:1 12831:1 12842:2 12854:1 12872:1 12878:1 12887:3 12919:1 12926:1 12929:1 12932:1 12939:1 12941:1 12946:1 12956:1 12960:1 12978:2 12986:1 12996:1 12997:1 12999:1 13005:7 13025:3 13032:1 13041:1 13064:1 13076:1 13077:2 13085:1 13090:1 13103:1 13109:1 13111:1 13118:1 13131:1 13139:1 13161:1 13165:1 13170:1 13173:1 13180:1 13188:1 13197:1 13211:1 13237:1 13245:2 13261:4 13277:1 13288:1 13309:1 13320:1 13380:1 13383:3 13384:4 13391:1 13404:2 13406:1 13410:2 13412:1 13432:1 13436:1 13442:1 13452:2 13470:1 13479:1 13480:1 13499:1 13509:1 13524:2 13531:1 13535:1 13548:1 13552:1 13554:1 13556:1 13563:2 13567:1 13578:3 13585:2 13595:1 13630:1 13632:2 13637:2 13641:1 13679:2 13680:1 13690:1 13695:1 13713:1 13720:1 13723:1 13731:1 13756:3 13768:1 13771:2 13774:1 13804:1 13807:1 13847:1 13850:1 13885:2 13891:2 13892:2 13895:1 13902:1 13903:1 13912:1 13932:1 13977:1 13979:3 13984:1 13997:1 13998:1 13999:2 14004:1 14032:1 14083:1 14087:1 14092:1 14094:2 14115:1 14155:1 14170:2 14182:1 14187:1 14204:1 14211:1 14212:1 14213:2 14226:1 14240:2 14245:3 14248:1 14270:1 14274:1 14275:1 14286:1 14295:2 14311:2 14315:1 14318:1 14334:1 14336:1 14345:2 14354:1 14362:2 14378:1 14380:1 14385:1 14387:1 14391:1 14397:6 14409:3 14419:1 14424:3 14435:3 14457:1 14460:1 14467:1 14484:1 14486:1 14489:2 14552:2 14553:1 14564:2 14571:1 14575:1 14579:4 14584:1 14586:1 14593:1 14605:4 14606:1 14609:1 14612:1 14624:1 14626:1 14639:1 14658:2 14666:2 14703:2 14706:1 14709:1 14719:3 14726:1 14735:1 14737:1 14739:3 14753:1 14764:3 14777:1 14782:1 14802:1 14817:1 14819:1 14841:1 14847:1 14853:1 14857:14 14859:1 14872:1 14876:3 14878:1 14900:3 14904:1 14943:1 14954:1 14958:1 14962:2 14972:2 14976:1 14990:2 14994:1 15008:2 15015:1 15029:1 15030:2 15046:1 15052:1 15060:1 15062:1 15064:1 15068:1 15074:2 15075:1 15100:3 15103:1 15117:1 15122:1 15128:5 15130:2 15131:2 15132:5 15133:1 15134:1 15135:2 15137:1 15139:2 15140:3 15143:1 15144:1 15147:1 15150:1 15151:1 15153:1 15161:1 15201:1 15204:1 15206:2 15216:1 15232:1 15239:1 15251:1 15255:2 15256:1 15279:2 15284:1 15288:2 15289:2 15307:1 15328:1 15336:1 15337:1 15367:1 15370:1 15418:1 15430:1 15434:2 15445:1 15446:2 15455:2 15456:1 15466:1 15470:5 15475:1 15478:2 15487:1 15495:1 15496:1 15501:2 15504:1 15505:4 15509:2 15513:1 15522:3 15526:2 15534:3 15544:1 15553:1 15585:13 15588:1 15604:1 15606:1 15611:1 15613:4 15618:1 15656:1 15671:1 15672:1 15678:2 15689:1 15695:4 15705:1 15706:1 15720:1 15722:2 15741:1 15742:1 15756:2 15761:1 15778:5 15791:1 15802:1 15811:1 15823:1 15841:1 15849:1 15878:2 15879:3 15895:1 15898:1 15936:2 15945:1 15946:1 15950:1 15970:1 15973:1 15980:1 15987:2 15992:1 16006:1 16014:1 16022:2 16034:2 16039:1 16041:2 16047:1 16055:1 16072:1 16116:1 16119:1 16150:1 16159:1 16163:1 16183:1 16187:1 16199:2 16202:1 16212:1 16213:3 16218:1 16224:1 16232:3 16238:2 16240:2 16244:2 16249:1 16250:10 16284:1 16287:2 16288:1 16293:2 16294:1 16298:1 16305:1 16311:1 16313:1 16315:1 16316:1 16331:1 16368:1 16369:1 16389:3 16392:1 16403:1 16416:2 16427:1 16428:1 16434:1 16435:1 16440:1 16451:1 16453:1 16482:1 16483:1 16484:1 16508:1 16513:1 16518:2 16533:1 16554:1 16557:1 16576:1 16578:1 16593:1 16594:2 16598:1 16600:1 16602:1 16614:1 16616:1 16646:1 16661:1 16684:1 16709:1 16710:1 16720:2 16740:2 16814:2 16815:1 16823:1 16833:1 16838:1 16844:1 16862:1 16878:1 16879:1 16885:1 16907:1 16934:1 16937:3 16946:1 16951:1 16981:1 16986:1 16999:14 17009:1 17025:1 17050:1 17071:1 17087:13 17097:3 17099:1 17102:1 17103:5 17128:2 17142:1 17156:2 17184:4 17192:2 17204:2 17218:2 17219:1 17243:3 17251:2 17263:2 17276:2295 17285:1 17289:1 17301:1 17302:1 17347:1 17351:1 17353:1 17374:2 17389:1 17420:1 17421:1 17445:1 17465:1 17467:1 17469:1 17472:2 17474:5 17475:3 17488:1 17493:1 17495:1 17515:1 17526:1 17535:1 17542:1 17549:1 17551:1 17552:1 17592:1 17595:3 17599:2 17608:1 17644:1 17653:1 17654:3 17684:2 17697:1 17699:1 17707:2 17709:1 17717:1 17728:1 17735:1 17737:1 17748:2 17754:1 17765:1 17776:1 17787:1 17791:2 17795:2 17803:1 17809:1 17817:1 17836:2 17837:2 17855:2 17859:1 17862:1 17870:2 17876:1 17895:2 17896:1 17900:1 17904:1 17905:1 17913:1 17917:2 17927:8 17949:1 17951:1 17966:1 17970:2 17971:1 17978:2 17992:5 17999:1 18009:1 18011:1 18029:1 18043:1 18047:4 18052:1 18054:2 18060:1 18062:2 18070:1 18075:4 18076:1 18081:1 18085:1 18090:2 18101:1 18104:4 18115:2 18116:1 18123:3 18141:1 18156:3 18159:1 18163:1 18178:1 18182:1 18183:2 18187:2 18193:1 18194:1 18197:1 18210:1 18218:1 18228:1 18233:1 18234:1 18240:1 18247:1 18271:1 18282:3 18294:1 18295:2 18296:1 18297:1 18301:1 18303:2 18308:1 18323:1 18326:1 18328:1 18332:1 18339:1 18343:1 18349:1 18359:1 18371:1 18374:1 18381:1 18382:1 18390:1 18408:1 18416:1 18420:2 18422:4 18427:1 18428:3 18430:1 18474:1 18477:1 18478:1 18492:1 18495:2 18499:1 18501:1 18503:2 18504:2 18508:2 18519:1 18521:1 18525:3 18529:2 18533:1 18534:2 18536:2 18538:1 18548:1 18556:5 18564:2 18580:1 18582:1 18596:1 18598:1 18603:2 18604:4 18627:1 18628:1 18638:1 18639:1 18645:1 18653:1 18658:1 18665:2 18685:1 18690:1 18691:2 18707:1 18716:3 18718:18 18719:2 18726:1 18735:5 18738:1 18756:1 18759:1 18784:1 18792:1 18793:1 18805:1 18811:1 18817:1 18821:1 18835:1 18838:1 18847:1 18848:1 18866:1 18868:1 18875:1 18905:4 18919:2 18933:1 18937:2 18941:1 18949:2 18960:1 18962:1 18969:2 18996:8 18998:2 19005:1 19013:1 19022:1 19039:1 19040:1 19050:1 19057:1 19080:1 19082:1 19085:4 19101:3 19112:1 19117:1 19119:1 19125:1 19128:1 19132:1 19133:1 19140:1 19143:2 19175:2 19183:3 19189:2 19190:2 19201:2 19204:2 19207:1 19209:1 19215:2 19221:1 19243:4 19245:2 19254:2 19261:1 19279:2 19284:1 19286:1 19293:1 19311:2 19317:1 19324:2 19325:1 19331:5 19334:1 19338:2 19344:1 19349:2 19359:3 19385:2 19391:1 19394:1 19412:1 19415:1 19421:2 19422:1 19431:2 19439:2 19443:2 19447:2 19450:2 19451:1 19459:2 19478:1 19484:2 19506:2 19515:1 19516:2 19521:1 19522:1 19523:4 19532:1 19537:2 19542:1 19545:1 19546:1 19547:1 19551:1 19552:1 19558:2 19564:1 19577:1 19581:1 19583:1 19591:1 19595:1 19614:1 19620:1 19627:1 19629:1 19633:2 19636:2 19648:1 19661:1 19664:1 19697:1 19756:1 19757:1 19770:2 19773:1 19782:2 19785:2 19790:1 19791:1 19794:1 19795:1 19798:1 19799:1 19806:1 19812:2 19821:3 19823:1 19830:1 19837:1 19845:1 19866:1 19873:1 19880:1 19889:1 19896:1 19897:1 19919:2 19921:1 19922:1 19927:1 19931:2 19934:1 19936:1 19948:1 19951:2 19954:2 19959:2 19960:1 19963:2 19965:1 19976:1 19978:2 19989:1 19998:13 20001:1 20009:2 20010:2 20017:2 20028:1 20041:1 20049:1 20051:1 20061:1 20063:1 20066:1 20067:1 20071:1 20072:1 20075:1 20104:1 20125:2 20134:1 20138:2 20141:1 20142:1 20147:1 20149:1 20151:4 20154:3 20156:1 20166:2 20177:1 20178:1 20179:1 20182:1 20183:1 20205:1 20206:1 20210:3 20212:4 20240:1 20248:1 20252:1 20316:3 20321:1 20322:4 20325:3 20326:3 20328:1 20329:1 20334:1 20337:2 20340:1 20341:2 20351:1 20352:5 20360:1 20362:1 20368:1 20381:1 20396:2 20400:2 20403:2 20417:1 20444:1 20446:1 20471:2 20473:2 20480:1 20481:1 20486:1 20492:1 20497:1 20503:1 20509:1 20523:1 20524:1 20529:1 20532:1 20533:1 20534:1 20544:1 20546:1 20553:1 20556:1 20567:2 20570:1 20572:5 20578:1 20587:1 20588:3 20592:3 20593:1 20599:1 20611:1 20619:1 20628:2 20630:1 20632:1 20633:1 20634:4 20647:1 20655:2 20656:9 20658:1 20662:1 20666:1 20670:1 20675:1 20676:1 20692:1 20693:1 20719:7 20720:1 20733:1 20754:1 20772:1 20779:5 20780:1 20787:1 20796:1 20797:1 20812:1 20813:1 20842:1 20844:2 20857:1 20864:1 20879:1 20886:1 20887:6 20889:2 20900:3 20903:1 20905:3 20914:1 20919:1 20924:1 20926:1 20938:1 20940:3 20955:1 20962:1 20963:3 20968:3 20976:1 20982:1 20991:1 20998:1 21005:1 21026:1 21029:1 21062:1 21066:1 21072:1 21073:1 21074:1 21079:1 21090:1 21100:2 21115:10 21116:3 21130:2 21134:2 21138:1 21140:4 21149:1 21150:3 21163:2 21176:1 21203:1 21215:1 21216:1 21218:2 21220:2 21234:1 21235:1 21238:1 21256:1 21257:1 21261:1 21262:1 21263:1 21266:1 21282:1 21284:1 21296:1 21303:2 21306:1 21309:2 21311:1 21333:1 21340:3 21370:3 21385:1 21415:1 21434:1 21453:3 21456:2 21462:5 21469:2 21479:1 21484:1 21488:3 21498:2 21500:2 21501:1 21502:3 21512:1 21520:4 21551:1 21554:1 21559:1 21580:1 21586:1 21599:1 21613:2 21624:1 21635:1 21642:1 21647:1 21650:2 21674:2 21682:1 21686:2 21694:1 21695:1 21703:1 21708:1 21709:1 21724:1 21726:2 21730:2 21733:3 21742:1 21743:1 21755:1 21757:1 21772:3 21773:2 21777:2 21792:1 21794:1 21800:1 21845:1 21846:4 21848:1 21853:1 21859:1 21861:1 21862:2 21863:1 21864:1 21865:1 21867:1 21869:1 21871:1 21898:1 21913:1 21916:1 21917:1 21930:1 21974:2 21981:2 21991:1 22014:2 22019:1 22053:1 22066:1 22068:2 22074:1 22076:1 22078:1 22088:1 22102:1 22120:1 22122:1 22125:1 22130:1 22136:2 22146:1 22176:1 22188:1 22196:1 22218:1 22230:2 22238:1 22260:2 22263:1 22282:2 22296:3 22304:1 22320:1 22327:1 22328:7 22345:1 22352:1 22358:3 22370:1 22380:1 22382:1 22389:1 22391:4 22400:1 22402:1 22403:1 22407:1 22412:1 22435:3 22457:2 22459:1 22467:1 22469:2 22478:1 22502:1 22522:1 22530:1 22531:1 22550:1 22553:1 22559:1 22561:1 22564:3 22565:2 22571:1 22572:1 22575:1 22578:2 22581:1 22582:1 22592:1 22601:1 22612:6 22626:1 22627:1 22629:1 22632:1 22640:1 22642:1 22644:1 22646:1 22662:11 22663:6 22675:1 22685:1 22688:2 22693:1 22695:1 22696:1 22705:1 22709:1 22710:1 22713:1 22718:3 22726:2 22739:1 22755:1 22802:1 22811:1 22827:1 22841:1 22842:1 22853:2 22856:1 22862:1 22868:1 22870:1 22876:2 22880:2 22886:2 22890:1 22895:1 22901:2 22903:2 22907:1 22923:1 22929:1 22931:1 22937:1 22942:1 22943:2 22946:1 22948:1 22953:1 22963:1 22974:4 22987:2 22992:1 22993:1 22997:1 23012:2 23018:2 23022:1 23024:2 23041:1 23048:1 23077:17 23078:2 23101:1 23105:1 23106:1 23115:1 23123:1 23130:1 23136:2 23139:1 23144:1 23146:1 23158:2 23161:1 23162:1 23169:1 23170:1 23181:1 23188:1 23197:1 23202:1 23217:1 23222:1 23261:1 23291:10 23292:1 23307:1 23316:2 23319:1 23329:1 23350:1 23363:1 23373:1 23375:6 23378:1 23387:1 23398:1 23404:2 23406:1 23426:1 23432:1 23436:2 23440:1 23446:1 23454:1 23465:1 23481:1 23497:2 23503:2 23505:1 23514:2 23528:1 23532:1 23545:1 23557:1 23601:1 23602:2 23609:1 23613:1 23617:1 23628:1 23631:1 23635:2 23639:5 23642:1 23648:1 23651:1 23652:1 23664:1 23666:1 23669:1 23695:5 23700:1 23704:1 23706:1 23719:1 23721:7 23738:1 23739:2 23756:1 23768:1 23771:1 23774:3 23775:1 23784:1 23786:1 23793:1 23803:1 23826:1 23840:1 23845:2 23889:1 23895:1 23909:1 23923:1 23932:1 23943:1 23969:1 23999:2 24009:2 24019:1 24024:1 24025:1 24027:1 24041:1 24055:1 24061:3 24064:1 24092:4 24101:1 24104:1 24105:1 24126:1 24129:1 24138:2 24140:1 24149:2 24150:1 24161:1 24165:14 24166:2 24177:2 24185:1 24193:1 24195:1 24206:1 24220:2 24230:1 24231:1 24233:1 24237:1 24245:1 24251:1 24255:2 24256:2 24259:1 24263:1 24272:4 24275:3 24280:3 24285:2 24286:4 24289:1 24290:1 24304:1 24310:1 24345:1 24350:1 24357:1 24363:1 24372:1 24376:1 24377:2 24400:2 24408:2 24416:1 24420:2 24424:1 24425:1 24427:2 24443:6 24444:1 24446:1 24454:1 24462:1 24471:1 24472:1 24478:1 24479:1 24500:1 24502:2 24503:2 24521:1 24524:1 24553:1 24570:1 24592:1 24596:1 24600:3 24622:1 24625:1 24643:1 24648:1 24653:1 24655:1 24658:5 24675:1 24676:1 24710:1 24713:1 24715:1 24720:1 24721:1 24733:1 24737:1 24740:2 24744:1 24747:1 24768:1 24773:2 24774:2 24784:1 24789:1 24792:3 24809:1 24812:1 24830:1 24839:1 24844:2 24870:1 24889:1 24892:1 24917:1 24928:2 24938:1 24944:3 24949:1 24953:1 24954:1 24964:1 24966:1 24972:1 24975:1 24976:2 24994:1 25000:1 25005:2 25019:2 25022:1 25026:1 25028:1 25031:2 25032:1 25059:1 25065:1 25068:1 25070:1 25073:2 25081:1 25109:1 25110:1 25125:5 25129:3 25132:2 25145:1 25147:1 25177:1 25185:2 25191:1 25195:1 25200:2 25207:2 25213:1 25214:1 25216:1 25224:2 25232:1 25239:1 25242:1 25244:1 25250:1 25251:1 25254:2 25255:1 25256:1 25260:3 25263:1 25267:2 25269:1 25277:1 25281:2 25291:2 25295:1 25299:1 25302:1 25329:1 25330:1 25339:1 25346:4 25363:1 25370:2 25389:2 25412:1 25451:1 25454:2 25479:1 25487:1 25491:2 25514:2 25530:1 25532:1 25536:1 25538:3 25543:5 25560:1 25572:1 25600:6 25630:1 25632:1 25644:1 25661:1 25693:1 25698:1 25699:1 25702:2 25717:2 25731:1 25739:1 25752:1 25768:1 25775:1 25777:1 25791:2 25793:3 25794:1 25801:1 25804:2 25808:1 25809:2 25820:1 25822:1 25828:1 25829:5 25837:1 25841:1 25843:1 25856:2 25861:2 25863:2 25867:1 25869:1 25871:5 25875:1 25880:1 25881:1 25888:1 25892:3 25893:1 25905:3 25909:1 25913:3 25941:1 25946:3 25964:1 25965:1 25983:1 26005:1 26012:3 26015:4 26022:5 26028:1 26054:5 26067:1 26071:1 26080:1 26081:1 26092:1 26098:1 26099:1 26101:1 26123:1 26125:5 26129:1 26132:2 26163:1 26174:1 26194:1 26213:1 26214:1 26221:1 26222:1 26229:1 26230:2 26236:1 26244:1 26265:3 26298:1 26300:1 26301:1 26305:1 26306:7 26308:1 26312:1 26315:1 26325:2 26340:1 26368:5 26383:1 26401:1 26411:1 26452:1 26464:1 26512:1 26527:2 26538:1 26539:1 26540:2 26541:1 26544:2 26547:3 26553:1 26557:1 26558:1 26565:1 26580:1 26600:1 26612:1 26616:1 26625:1 26655:3 26664:2 26690:2 26695:1 26696:2 26706:1 26710:1 26713:1 26722:1 26733:1 26737:1 26745:1 26750:3 26751:1 26757:2 26759:1 26785:1 26787:1 26790:4 26793:2 26806:1 26810:1 26832:1 26837:1 26843:1 26848:1 26855:1 26862:1 26874:1 26879:1 26883:3 26889:1 26891:1 26910:1 26920:3 26923:1 26940:1 26957:2 26961:2 26973:1 26978:1 26979:3 26986:3 26987:3 26988:1 26990:1 26996:1 27031:5 27034:1
1 13:1 35:1 39:1 43:1 47:1 50:1 55:1 89:1 120:1 137:1 138:3 139:1 144:1 150:2 157:1 165:2 169:3 182:6 192:1 209:1 222:1 233:1 238:7 255:3 264:1 280:2 306:1 315:4 317:3 327:3 334:3 339:1 346:2 359:1 362:3 372:1 382:2 395:5 397:5 404:1 412:1 416:1 442:1 445:1 446:1 472:2 500:1 511:1 515:2 532:1 544:3 552:1 568:1 578:1 582:4 584:2 588:1 604:2 612:1 630:1 665:1 678:1 683:1 711:1 722:1 723:2 726:1 743:1 745:2 751:1 764:1 789:6 794:1 798:1 800:1 802:4 805:1 808:1 822:15 826:4 837:3 854:4 868:1 872:1 873:4 874:2 875:8 877:1 878:2 880:4 882:1 894:2 912:5 915:4 926:1 927:1 953:2 958:1 972:1 1002:1 1013:2 1017:1 1035:1 1037:1 1053:1 1059:2 1061:1 1064:1 1108:3 1109:2 1114:1 1116:2 1118:1 1122:2 1125:1 1126:1 1141:1 1150:1 1151:1 1154:1 1158:2 1165:1 1170:2 1173:2 1180:1 1187:1 1193:2 1195:1 1227:1 1228:1 1244:1 1253:1 1262:1 1264:1 1266:1 1269:1 1279:1 1292:1 1312:1 1316:1 1324:1 1325:2 1339:1 1345:1 1346:2 1364:1 1366:1 1371:3 1379:1 1392:1 1397:1 1402:1 1404:1 1405:2 1408:1 1419:1 1427:1 1437:1 1445:1 1448:4 1454:7 1456:2 1465:1 1469:1 1490:2 1499:1 1501:1 1510:1 1514:1 1523:1 1526:1 1528:1 1530:2 1538:1 1542:2 1549:1 1553:1 1555:1 1558:1 1559:2 1568:1 1571:2 1580:1 1584:1 1587:1 1592:1 1596:1 1600:1 1601:1 1606:1 1615:1 1619:1 1625:1 1634:2 1635:1 1652:1 1653:5 1659:1 1663:1 1675:1 1681:1 1684:3 1687:1 1688:2 1696:6 1703:1 1723:4 1724:2 1729:1 1737:1 1745:1 1749:1 1757:2 1759:4 1761:1 1762:1 1764:1 1777:1 1787:2 1793:1 1794:1 1801:3 1806:2 1807:1 1809:1 1822:2 1825:1 1866:1 1870:8 1875:1 1881:1 1885:1 1892:4 1896:1 1897:1 1899:2 1904:1 1907:2 1925:1 1931:1 1938:1 1952:1 1956:1 1959:1 1976:2 1978:1 1983:1 1984:1 1988:2 1990:1 2004:1 2014:1 2027:11 2037:1 2046:1 2051:1 2053:1 2071:1 2077:1 2078:1 2092:2 2103:3 2107:1 2119:1 2120:1 2123:1 2126:2 2142:2 2143:2 2145:1 2147:3 2148:5 2150:1 2152:1 2154:2 2157:2 2158:2 2159:1 2160:2 2161:4 2165:1 2167:5 2170:3 2172:5 2173:7 2185:1 2196:1 2216:1 2219:1 2224:2 2226:3 2229:1 2234:1 2246:2 2248:1 2257:1 2274:1 2275:1 2277:1 2285:1 2293:1 2294:1 2296:1 2321:1 2328:1 2333:1 2342:1 2350:3 2351:1 2360:1 2367:1 2377:3 2388:2 2390:1 2403:1 2405:1 2413:1 2417:1 2432:3 2435:2 2437:1 2439:6 2443:1 2444:1 2445:1 2454:1 2457:1 2478:4 2479:1 2480:1 2483:1 2496:2 2503:1 2504:1 2505:1 2506:2 2513:6 2520:2 2526:2 2529:9 2535:4 2537:1 2545:2 2547:1 2553:1 2555:2 2557:1 2562:3 2563:2 2574:2 2589:1 2591:2 2597:3 2602:1 2605:1 2638:1 2640:2 2641:2 2654:3 2655:1 2659:1 2662:6 2667:2 2671:1 2684:1 2686:1 2691:1 2710:1 2716:2 2719:1 2738:4 2745:1 2749:1 2752:14 2773:3 2774:1 2776:1 2777:1 2779:1 2786:2 2791:2 2794:1 2811:18 2813:1 2826:1 2836:2 2839:3 2848:1 2856:1 2866:1 2893:1 2898:1 2902:1 2907:1 2917:1 2918:5 2934:3 2939:1 2948:1 2952:1 2970:1 2979:1 2989:1 2993:1 2998:1 3006:2 3014:1 3027:2 3035:1 3042:3 3057:1 3070:1 3089:1 3090:2 3128:1 3129:2 3130:1 3134:1 3149:6 3150:1 3193:1 3216:1 3225:2 3234:1 3263:1 3264:1 3265:1 3277:1 3283:1 3285:1 3286:1 3291:1 3299:1 3305:1 3308:1 3328:1 3343:1 3358:2 3362:1 3383:1 3384:13 3399:1 3403:2 3405:2 3406:2 3409:1 3425:1 3429:1 3430:1 3438:1 3446:1 3477:1 3479:2 3480:1 3484:1 3489:3 3490:1 3493:2 3501:1 3523:1 3548:1 3549:1 3552:1 3554:1 3559:2 3562:1 3565:2 3569:1 3576:3 3581:1 3596:1 3599:1 3603:2 3608:1 3610:1 3626:2 3628:1 3631:1 3640:1 3648:3 3649:1 3663:1 3664:1 3668:4 3670:1 3673:2 3677:1 3678:2 3687:4 3698:1 3700:2 3715:1 3716:2 3730:1 3732:2 3734:2 3738:1 3756:2 3765:6 3766:4 3772:2 3808:1 3810:2 3813:1 3818:1 3834:1 3837:1 3839:2 3857:1 3864:1 3866:2 3870:1 3872:1 3875:1 3878:1 3891:2 3900:1 3910:2 3924:1 3932:1 3937:4 3938:1 3940:1 3941:1 3944:2 3946:1 3950:1 3954:2 3977:1 3981:1 3992:1 4008:1 4025:1 4027:2 4029:1 4045:7 4075:3 4081:1 4090:2 4097:1 4101:1 4104:2 4114:2 4127:2 4133:1 4149:1 4152:1 4156:3 4157:1 4169:1 4177:4 4194:1 4202:1 4203:1 4211:1 4225:2 4233:1 4246:1 4249:1 4252:1 4256:1 4257:3 4259:1 4267:1 4276:1 4292:3 4304:1 4314:5 4327:1 4331:1 4355:4 4363:2 4371:1 4372:1 4377:3 4380:1 4397:4 4420:2 4437:1 4440:2 4443:3 4456:3 4459:1 4468:1 4469:2 4475:1 4494:1 4496:2 4507:1 4511:1 4523:1 4524:1 4537:1 4549:1 4565:14 4567:2 4574:1 4576:1 4581:1 4586:1 4595:1 4601:1 4613:1 4623:1 4629:1 4664:1 4669:3 4684:1 4685:4 4687:7 4688:3 4690:1 4693:2 4695:2 4696:1 4698:1 4700:1 4701:2 4703:6 4704:4 4706:1 4708:2 4709:7 4715:2 4716:5 4719:1 4721:1 4733:1 4764:1 4776:1 4789:2 4796:1 4820:1 4853:1 4891:1 4903:1 4917:1 4930:1 4937:2 4973:1 4977:1 5002:3 5008:2 5018:1 5057:1 5061:1 5066:2 5088:4 5101:1 5121:1 5140:1 5146:1 5157:2 5163:1 5171:1 5180:1 5188:1 5197:1 5220:1 5230:1 5252:1 5254:1 5264:1 5284:2 5287:1 5292:1 5298:2 5302:1 5305:1 5313:5 5314:1 5316:2 5317:1 5320:3 5321:1 5336:1 5337:1 5369:3 5379:2 5380:1 5383:1 5394:6 5403:1 5406:2 5452:1 5468:1 5481:1 5483:1 5485:1 5503:1 5507:1 5509:1 5510:1 5516:1 5522:2 5524:1 5538:1 5544:1 5549:1 5562:1 5568:1 5569:2 5576:2 5590:2 5593:1 5594:2 5596:2 5607:1 5610:6 5612:1 5613:1 5619:1 5620:2 5626:1 5628:1 5629:1 5632:1 5633:1 5636:1 5668:1 5671:1 5673:1 5678:1 5680:2 5682:1 5688:1 5692:2 5693:1 5696:12 5715:1 5735:3 5742:1 5761:1 5772:1 5787:3 5797:2 5812:6 5817:1 5824:1 5854:1 5869:1 5872:1 5890:1 5897:1 5898:1 5901:1 5905:2 5906:3 5908:1 5911:1 5912:1 5915:2 5916:1 5921:2 5923:4 5924:3 5958:1 5997:1 6008:1 6010:1 6046:1 6051:4 6052:2 6063:1 6072:1 6106:1 6115:1 6124:1 6129:1 6133:1 6148:1 6154:2 6177:1 6191:2 6199:2 6208:1 6213:1 6222:1 6270:1 6281:1 6290:2 6292:1 6295:1 6298:1 6301:1 6316:8 6323:2 6327:3 6329:1 6336:1 6338:1 6344:1 6355:2 6375:1 6378:1 6379:1 6385:1 6387:1 6389:1 6424:1 6426:3 6437:2 6442:1 6448:2 6465:1 6470:1 6476:1 6479:1 6483:2 6484:1 6491:2 6507:1 6525:2 6529:1 6530:1 6537:1 6545:1 6546:1 6553:1 6563:6 6569:2 6588:1 6595:1 6596:1 6600:1 6606:1 6609:3 6610:2 6618:1 6623:4 6624:1 6626:1 6631:5 6634:1 6637:1 6657:1 6658:1 6660:1 6670:1 6678:1 6701:1 6702:1 6707:4 6716:4 6724:1 6732:1 6735:1 6752:3 6755:1 6757:1 6765:1 6778:1 6788:1 6790:1 6798:1 6806:1 6812:1 6824:1 6850:1 6868:1 6871:1 6875:1 6879:2 6917:1 6931:1 6935:2 6936:5 6940:3 6943:1 6945:1 6951:3 6955:1 6971:6 6972:1 6974:2 6988:1 6989:3 6998:1 7002:1 7012:1 7020:2 7023:1 7028:1 7038:1 7043:1 7045:1 7051:1 7053:1 7066:1 7067:1 7075:1 7076:2 7081:1 7086:1 7090:1 7101:1 7102:1 7114:1 7120:1 7138:3 7153:4 7154:6 7165:2 7170:1 7173:4 7176:2 7178:3 7180:1 7183:1 7192:1 7198:4 7199:2 7200:1 7213:45 7214:2 7220:1 7222:1 7228:1 7229:9 7231:5 7236:2 7270:1 7276:1 7278:1 7287:1 7297:1 7301:3 7302:2 7307:1 7309:1 7320:1 7322:2 7331:2 7341:3 7358:1 7360:1 7380:2 7388:1 7389:1 7392:1 7409:1 7410:2 7440:1 7451:1 7453:1 7454:3 7483:1 7489:1 7490:1 7491:1 7501:2 7540:1 7549:1 7559:1 7569:1 7573:1 7591:1 7592:1 7600:1 7604:1 7608:1 7628:1 7631:1 7639:1 7643:1 7644:2 7654:1 7663:1 7677:1 7678:1 7700:23 7706:1 7724:3 7726:3 7729:1 7731:2 7732:1 7752:1 7758:1 7773:6 7776:1 7777:1 7781:1 7810:1 7821:3 7823:1 7825:2 7827:1 7830:1 7844:1 7854:1 7855:4 7860:3 7868:1 7874:1 7894:2 7896:1 7902:1 7906:1 7918:1 7920:1 7930:1 7937:1 7939:1 7957:1 7958:2 7966:2 7968:1 7969:1 8028:1 8033:1 8034:1 8038:1 8039:1 8041:1 8048:1 8061:1 8064:2 8076:6 8078:1 8087:2 8090:3 8109:1 8115:1 8116:1 8122:1 8127:2 8130:1 8131:1 8140:1 8145:1 8146:1 8162:2 8168:1 8191:1 8195:1 8196:1 8228:1 8233:1 8234:1 8240:1 8244:1 8271:1 8272:1 8285:3 8293:1 8316:1 8319:1 8320:1 8324:3 8347:3 8353:1 8360:2 8361:1 8370:1 8377:1 8394:1 8395:1 8404:1 8407:1 8415:6 8416:1 8417:1 8423:1 8425:1 8429:1 8436:1 8442:2 8444:1 8455:6 8456:1 8477:1 8484:1 8500:1 8505:11 8506:5 8516:2 8517:1 8551:3 8554:1 8561:1 8566:1 8570:3 8572:1 8589:1 8596:1 8603:2 8605:2 8607:3 8609:2 8624:1 8629:1 8635:1 8644:1 8661:1 8672:1 8681:2 8683:1 8689:1 8692:5 8694:1 8700:1 8708:1 8715:3 8720:1 8721:1 8734:4 8770:1 8771:1 8782:1 8795:1 8802:1 8807:1 8823:3 8832:1 8835:3 8840:1 8852:1 8858:1 8865:1 8888:1 8901:1 8905:1 8913:1 8919:7 8924:2 8956:3 8964:1 8965:1 8975:3 8981:1 9005:1 9019:1 9024:1 9028:1 9031:3 9032:3 9034:2 9038:1 9056:1 9061:1 9064:2 9066:1 9096:2 9099:1 9107:1 9117:1 9142:2 9159:1 9163:1 9173:2 9186:1 9196:1 9200:1 9201:1 9210:1 9242:1 9243:1 9248:1 9249:1 9262:1 9266:1 9289:1 9291:1 9294:1 9296:1 9298:1 9301:5 9318:4 9325:4 9327:2 9336:1 9354:2 9371:3 9372:1 9378:1 9396:1 9398:1 9406:1 9410:2 9415:2 9427:1 9434:1 9444:1 9449:4 9453:1 9481:2 9485:1 9490:12 9492:1 9493:2 9497:2 9501:1 9519:2 9520:1 9535:1 9540:1 9555:1 9572:1 9587:1 9588:2 9590:1 9597:1 9607:1 9622:1 9628:1 9643:1 9644:1 9646:1 9649:1 9651:4 9661:1 9663:1 9665:2 9702:1 9715:4 9720:1 9722:1 9723:1 9729:1 9732:3 9739:1 9742:1 9747:1 9749:1 9755:4 9769:1 9771:1 9787:1 9797:1 9803:1 9804:1 9810:1 9817:1 9819:2 9823:2 9827:1 9837:2 9839:1 9846:1 9853:1 9860:1 9864:1 9866:3 9870:1 9877:2 9879:1 9881:1 9886:7 9889:4 9899:2 9900:3 9905:1 9910:1 9917:1 9920:2 9926:1 9943:2 9953:6 9954:2 9964:1 9979:2 9982:1 9983:1 9991:3 9995:1 10013:1 10026:1 10028:1 10035:3 10047:2 10054:1 10057:6 10071:1 10080:1 10092:1 10093:1 10106:3 10134:1 10140:1 10146:1 10180:1 10191:1 10201:1 10206:1 10224:1 10225:1 10239:1 10240:2 10242:2 10245:1 10246:2 10252:1 10254:1 10261:1 10264:5 10265:5 10268:1 10276:1 10282:2 10283:2 10287:1 10288:1 10289:4 10293:1 10298:1 10307:1 10310:3 10313:3 10318:1 10321:1 10336:2 10345:1 10363:1 10372:1 10373:1 10376:3 10392:1 10406:1 10411:1 10424:1 10434:2 10436:1 10440:1 10466:1 10493:1 10499:1 10512:1 10515:1 10518:1 10530:1 10532:3 10556:1 10575:1 10586:1 10592:1 10597:2 10611:3 10614:2 10617:1 10627:2 10630:2 10632:1 10633:1 10635:2 10637:1 10644:3 10646:1 10647:1 10648:2 10657:1 10663:3 10667:2 10678:1 10693:15 10694:1 10696:1 10707:1 10718:1 10730:1 10734:4 10742:1 10745:2 10746:2 10756:1 10759:2 10769:1 10786:1 10788:2 10799:2 10803:1 10813:2 10818:2 10831:1 10847:1 10859:1 10863:1 10890:1 10906:1 10924:1 10932:3 10933:1 10934:1 10937:1 10950:1 10951:4 10955:1 10956:2 10957:1 10960:1 10962:1 10968:1 10969:1 10977:1 10979:1 10988:1 10991:1 10992:1 10995:1 10998:1 11003:2 11006:5 11009:2 11031:1 11040:1 11055:1 11073:1 11100:1 11118:1 11120:1 11135:2 11141:1 11151:1 11159:1 11160:1 11166:5 11173:1 11184:2 11188:2 11189:1 11201:1 11206:1 11214:1 11220:2 11227:2 11243:2 11254:2 11261:1 11263:2 11283:1 11301:2 11306:1 11314:1 11317:1 11321:1 11327:2 11333:1 11365:1 11372:1 11380:5 11381:2 11382:2 11394:1 11406:2 11412:1 11415:1 11418:1 11424:1 11476:1 11478:2 11479:1 11502:1 11506:1 11513:1 11520:1 11534:1 11542:1 11547:1 11557:1 11574:1 11635:1 11638:3 11662:2 11674:1 11689:1 11695:1 11705:1 11718:1 11720:2 11721:1 11736:3 11745:1 11758:1 11767:1 11774:1 11824:1 11831:1 11836:1 11839:1 11840:2 11847:1 11859:1 11863:1 11882:14 11886:3 11899:2 11904:1 11915:1 11923:1 11928:1 11929:3 11936:3 11943:1 11952:1 11954:1 11959:1 11964:1 11965:1 11974:1 11980:2 11981:1 11983:1 11989:1 12016:1 12034:1 12039:1 12045:2 12048:1 12068:1 12069:1 12081:1 12090:1 12091:2 12100:2 12101:1 12110:1 12112:1 12134:1 12151:3 12161:2 12163:1 12208:1 12209:1 12231:1 12241:1 12245:1 12252:1 12254:2 12257:4 12269:1 12274:2 12283:2 12290:1 12306:6 12323:1 12325:2 12346:1 12351:4 12352:1 12367:1 12379:1 12385:1 12386:1 12387:1 12389:1 12399:8 12400:1 12410:2 12413:1 12428:1 12436:1 12437:1 12440:2 12446:1 12452:1 12453:1 12463:16 12469:1 12474:1 12490:1 12506:2 12508:1 12515:3 12529:1 12533:2 12544:1 12547:2 12556:1 12557:1 12559:1 12590:3 12613:1 12616:6 12617:1 12633:1 12640:2 12642:1 12645:1 12668:3 12685:1 12692:1 12694:1 12696:1 12703:3 12705:1 12707:1 12714:1 12719:1 12721:1 12728:6 12729:1 12732:1 12733:2 12734:1 12736:2 12737:1 12741:7 12742:2 12760:1 12761:1 12763:1 12765:1 12787:1 12805:1 12814:1 12831:1 12842:2 12848:1 12854:1 12872:1 12878:1 12887:4 12919:1 12926:1 12929:1 12932:1 12939:1 12941:1 12946:1 12956:1 12960:1 12978:2 12986:1 12996:1 12997:1 12999:1 13005:7 13025:3 13032:1 13041:1 13064:1 13076:1 13077:2 13085:1 13090:1 13103:1 13109:1 13111:1 13118:1 13131:1 13139:1 13155:1 13161:1 13165:1 13170:1 13173:1 13180:1 13188:1 13197:1 13211:1 13218:1 13237:1 13245:2 13261:5 13277:1 13288:1 13309:1 13320:1 13380:1 13383:3 13384:4 13391:1 13404:2 13406:1 13410:2 13412:1 13432:1 13436:1 13442:1 13452:2 13470:1 13479:1 13480:1 13499:1 13509:1 13524:2 13531:1 13535:1 13548:1 13552:1 13554:1 13556:1 13563:2 13567:1 13578:3 13585:2 13595:1 13630:1 13632:2 13637:2 13641:1 13679:2 13680:1 13690:1 13695:1 13713:1 13720:1 13723:1 13731:1 13756:3 13768:1 13771:2 13774:1 13804:1 13807:1 13847:1 13850:1 13885:2 13891:2 13892:2 13895:1 13902:1 13903:1 13912:1 13923:1 13932:1 13977:1 13979:3 13984:1 13997:1 13998:1 13999:2 14004:1 14032:1 14083:1 14087:1 14092:1 14094:2 14115:1 14125:1 14155:1 14170:2 14182:1 14187:1 14204:1 14211:1 14212:1 14213:2 14226:1 14240:2 14245:3 14248:1 14270:1 14274:1 14275:1 14286:1 14295:2 14311:2 14315:1 14318:1 14334:1 14336:1 14345:2 14354:1 14362:2 14378:1 14380:1 14385:1 14387:1 14391:1 14397:6 14409:3 14419:1 14424:3 14435:3 14457:1 14460:1 14467:1 14484:1 14486:1 14489:2 14552:2 14553:1 14564:2 14571:1 14575:1 14579:4 14584:1 14586:1 14593:1 14605:4 14606:1 14609:1 14612:1 14624:1 14626:1 14639:1 14658:2 14666:2 14703:2 14706:1 14709:1 14719:3 14726:2 14735:1 14737:1 14739:3 14753:1 14764:3 14777:1 14782:1 14802:1 14817:1 14819:1 14841:1 14847:1 14853:1 14857:15 14859:1 14872:1 14874:1 14876:3 14878:1 14900:3 14904:1 14943:1 14954:1 14958:1 14962:2 14972:2 14976:1 14990:2 14994:1 15008:2 15015:1 15029:1 15030:2 15046:1 15052:1 15060:1 15062:1 15064:1 15068:1 15074:2 15075:1 15100:3 15103:1 15117:1 15122:1 15128:5 15130:2 15131:2 15132:6 15133:1 15134:1 15135:2 15137:1 15139:2 15140:3 15143:1 15144:1 15147:1 15150:1 15151:1 15153:1 15161:1 15188:1 15201:1 15204:1 15206:2 15216:1 15232:1 15239:1 15251:1 15255:2 15256:1 15279:2 15284:1 15288:2 15289:2 15307:1 15328:1 15336:1 15337:1 15367:1 15370:1 15418:1 15430:1 15434:2 15445:1 15446:2 15455:2 15456:1 15466:1 15470:5 15475:1 15478:2 15487:1 15495:1 15496:1 15501:2 15504:1 15505:4 15509:2 15513:1 15522:3 15526:2 15534:3 15544:1 15553:1 15585:13 15588:1 15604:1 15606:1 15611:1 15613:4 15618:1 15656:1 15671:1 15672:1 15678:2 15689:1 15695:4 15705:1 15706:1 15720:1 15722:2 15737:1 15741:1 15742:1 15756:2 15761:1 15778:5 15791:1 15802:1 15811:1 15823:1 15841:1 15849:1 15878:2 15879:3 15895:1 15898:1 15936:2 15945:1 15946:1 15950:1 15970:1 15973:1 15980:1 15987:2 15992:1 16006:1 16014:1 16022:2 16034:2 16039:1 16041:2 16047:1 16055:1 16072:1 16116:1 16119:1 16150:1 16159:1 16163:1 16183:1 16187:1 16199:2 16202:1 16212:1 16213:3 16218:1 16222:1 16224:1 16232:3 16238:2 16240:2 16244:2 16249:1 16250:10 16284:1 16287:2 16288:1 16293:2 16294:1 16298:1 16305:1 16311:1 16313:1 16315:1 16316:1 16331:1 16368:1 16369:1 16389:3 16392:1 16403:1 16416:2 16427:1 16428:1 16434:1 16435:1 16440:1 16451:1 16453:1 16482:1 16483:1 16484:1 16508:1 16513:1 16518:2 16533:1 16554:1 16557:1 16576:1 16578:1 16593:1 16594:2 16598:1 16600:1 16602:1 16614:1 16616:1 16646:1 16661:1 16684:1 16709:1 16710:1 16720:2 16740:2 16814:2 16815:1 16823:1 16833:1 16838:1 16844:1 16862:1 16878:1 16879:1 16885:1 16907:1 16934:1 16937:3 16946:1 16951:1 16981:1 16986:1 16999:14 17009:1 17025:1 17050:1 17071:1 17087:14 17097:4 17099:1 17102:1 17103:5 17128:2 17142:1 17156:2 17184:4 17192:2 17204:2 17218:2 17219:1 17243:3 17251:2 17263:2 17276:2337 17285:1 17289:1 17301:1 17302:1 17347:1 17351:1 17353:1 17374:2 17389:1 17420:1 17421:1 17445:1 17465:1 17467:1 17469:1 17472:2 17474:5 17475:4 17488:1 17493:1 17495:1 17515:1 17526:1 17535:1 17542:1 17549:1 17551:1 17552:1 17592:1 17595:3 17599:2 17608:1 17644:1 17653:1 17654:3 17684:2 17697:1 17699:1 17707:2 17709:1 17717:1 17728:1 17735:1 17737:1 17748:2 17754:1 17765:1 17776:1 17787:1 17791:2 17795:2 17803:1 17809:1 17817:2 17836:2 17837:2 17855:3 17859:1 17862:1 17870:3 17876:1 17895:3 17896:1 17900:1 17904:1 17905:1 17913:1 17917:2 17927:8 17949:1 17951:1 17966:1 17970:2 17971:1 17978:2 17992:5 17999:1 18009:1 18011:1 18029:1 18043:1 18047:4 18052:1 18054:2 18060:1 18062:2 18070:1 18075:4 18076:1 18081:1 18085:1 18090:2 18101:1 18104:4 18115:2 18116:1 18123:3 18141:1 18156:3 18159:1 18163:1 18178:1 18182:1 18183:2 18187:2 18193:1 18194:2 18197:1 18210:1 18218:1 18225:1 18228:1 18233:1 18234:1 18240:1 18247:1 18271:1 18282:3 18294:1 18295:2 18296:1 18297:1 18301:1 18303:3 18308:1 18323:1 18326:1 18328:1 18332:1 18339:1 18343:1 18349:1 18359:1 18371:1 18374:1 18381:2 18382:1 18390:1 18408:1 18416:1 18420:2 18422:4 18427:1 18428:4 18430:1 18474:1 18477:1 18478:1 18492:1 18495:2 18499:1 18501:1 18503:2 18504:2 18508:2 18519:1 18521:2 18525:3 18529:3 18533:1 18534:2 18536:2 18538:1 18548:1 18556:5 18564:2 18580:1 18582:1 18596:1 18598:1 18603:2 18604:4 18627:1 18628:1 18638:1 18639:1 18645:1 18653:1 18658:1 18665:3 18685:1 18690:1 18691:2 18707:1 18716:3 18718:18 18719:2 18726:1 18735:5 18738:1 18756:1 18759:1 18784:1 18785:1 18792:1 18793:1 18805:1 18811:1 18817:1 18821:1 18835:1 18838:1 18847:1 18848:1 18866:1 18868:1 18875:1 18905:4 18919:2 18933:1 18937:2 18941:1 18949:2 18960:1 18962:1 18969:2 18996:8 18998:2 19005:1 19013:1 19022:1 19039:1 19040:1 19041:1 19050:1 19057:1 19080:1 19082:1 19085:4 19101:3 19112:1 19117:1 19119:1 19125:1 19128:1 19132:1 19133:1 19140:1 19143:2 19175:2 19183:3 19189:2 19190:2 19201:2 19204:2 19207:1 19209:1 19215:2 19221:1 19243:5 19245:2 19254:2 19256:1 19261:1 19268:1 19279:2 19284:1 19286:1 19293:1 19311:2 19317:1 19324:2 19325:1 19331:5 19334:1 19338:2 19344:1 19349:2 19359:3 19385:2 19391:1 19394:1 19412:1 19415:1 19421:2 19422:1 19431:2 19439:2 19443:2 19447:2 19450:2 19451:1 19459:2 19478:1 19484:2 19506:2 19515:1 19516:3 19521:1 19522:1 19523:4 19532:1 19537:2 19542:1 19545:1 19546:1 19547:1 19551:1 19552:1 19558:2 19564:1 19577:1 19581:1 19583:1 19591:1 19595:1 19614:1 19620:1 19627:1 19629:1 19633:2 19636:2 19648:1 19661:1 19664:1 19697:1 19756:1 19757:1 19770:2 19773:1 19782:2 19785:2 19790:1 19791:1 19794:1 19795:1 19798:1 19799:1 19806:1 19812:2 19821:3 19823:1 19830:1 19837:1 19845:1 19866:1 19873:1 19880:1 19889:1 19896:1 19897:1 19919:2 19921:1 19922:1 19927:1 19931:2 19934:1 19936:1 19948:1 19951:2 19954:2 19959:2 19960:1 19963:2 19965:1 19976:1 19978:2 19989:1 19998:13 20001:1 20009:2 20010:2 20017:2 20028:1 20041:1 20049:1 20051:1 20061:1 20063:1 20066:1 20067:1 20071:1 20072:1 20075:1 20099:1 20104:1 20125:2 20134:1 20138:2 20141:1 20142:1 20147:1 20149:1 20151:4 20154:3 20156:1 20166:2 20177:1 20178:1 20179:1 20182:1 20183:1 20205:1 20206:1 20210:3 20212:4 20240:1 20248:1 20252:1 20316:4 20321:1 20322:4 20325:3 20326:3 20328:1 20329:1 20334:1 20337:2 20340:1 20341:2 20351:1 20352:5 20360:1 20362:1 20368:1 20381:1 20396:2 20400:2 20403:2 20417:1 20444:1 20446:1 20471:2 20473:2 20480:1 20481:1 20486:1 20492:1 20497:1 20503:1 20509:1 20523:1 20524:1 20529:1 20532:1 20533:2 20534:1 20544:1 20546:1 20553:1 20556:1 20567:2 20570:1 20572:5 20578:1 20587:1 20588:4 20592:3 20593:1 20599:1 20611:1 20619:1 20628:2 20630:1 20632:1 20633:1 20634:4 20647:1 20655:2 20656:9 20658:1 20662:1 20666:1 20670:1 20675:1 20676:1 20692:1 20693:1 20719:7 20720:1 20733:1 20754:1 20772:1 20779:5 20780:1 20784:1 20787:1 20796:1 20797:1 20812:1 20813:1 20842:1 20844:3 20857:1 20864:1 20879:1 20886:1 20887:6 20889:2 20900:3 20903:1 20905:3 20914:1 20919:1 20924:1 20926:1 20938:1 20940:4 20955:1 20962:1 20963:3 20968:3 20976:1 20982:1 20991:1 20998:1 21005:1 21026:1 21029:1 21062:1 21066:1 21072:1 21073:1 21074:1 21079:1 21090:1 21100:2 21115:10 21116:3 21130:2 21134:2 21138:1 21140:4 21149:1 21150:3 21163:2 21176:1 21203:1 21215:1 21216:1 21218:2 21220:2 21234:1 21235:1 21238:1 21256:1 21257:1 21261:1 21262:1 21263:1 21266:1 21282:1 21284:1 21296:1 21303:2 21306:1 21309:2 21311:1 21333:1 21340:3 21370:3 21385:1 21415:2 21434:1 21453:3 21456:2 21462:5 21469:2 21479:1 21484:1 21488:3 21498:2 21500:2 21501:1 21502:3 21512:1 21520:4 21551:1 21554:1 21559:1 21580:1 21586:1 21599:1 21613:3 21624:1 21635:1 21642:1 21647:1 21650:2 21674:2 21682:1 21686:2 21694:1 21695:1 21703:1 21708:1 21709:1 21724:1 21726:2 21730:2 21733:3 21742:1 21743:1 21755:1 21757:1 21772:3 21773:2 21777:2 21792:1 21794:1 21800:1 21845:1 21846:4 21848:1 21853:1 21859:1 21861:1 21862:3 21863:1 21864:1 21865:1 21867:1 21869:1 21871:1 21898:1 21913:2 21916:1 21917:1 21930:1 21974:2 21981:2 21991:1 22014:2 22019:1 22053:1 22066:1 22068:2 22074:1 22076:2 22078:1 22088:1 22102:1 22120:1 22122:1 22125:1 22130:1 22136:2 22146:1 22157:1 22176:1 22188:1 22196:1 22218:1 22230:2 22238:1 22260:2 22263:1 22282:2 22296:4 22304:1 22320:1 22327:1 22328:7 22345:1 22352:1 22358:3 22370:1 22380:1 22382:1 22389:1 22391:4 22400:1 22402:1 22403:1 22407:1 22412:1 22435:3 22457:2 22459:1 22467:1 22469:2 22478:1 22502:1 22522:1 22530:1 22531:1 22550:1 22553:1 22559:1 22561:1 22564:3 22565:2 22571:1 22572:1 22575:1 22578:2 22581:1 22582:1 22588:1 22592:1 22601:1 22612:6 22626:1 22627:1 22629:1 22632:1 22640:1 22642:1 22644:1 22646:1 22662:11 22663:6 22675:1 22685:1 22688:2 22693:1 22695:1 22696:1 22705:1 22709:1 22710:1 22713:1 22718:3 22726:2 22739:1 22755:1 22802:1 22811:1 22827:1 22841:1 22842:1 22853:2 22856:1 22862:1 22868:1 22870:1 22876:2 22880:2 22886:2 22890:1 22895:1 22901:2 22903:2 22907:1 22923:1 22929:1 22931:1 22937:1 22942:1 22943:2 22946:1 22948:1 22953:1 22963:1 22974:4 22987:2 22992:1 22993:1 22997:1 23012:2 23018:2 23022:1 23024:2 23041:1 23048:1 23077:17 23078:2 23101:1 23105:1 23106:1 23115:1 23123:1 23130:1 23136:2 23139:1 23144:1 23146:1 23158:2 23161:1 23162:1 23169:1 23170:1 23181:1 23188:1 23197:1 23202:1 23217:1 23222:1 23261:1 23291:10 23292:1 23307:1 23316:2 23319:1 23329:1 23350:1 23363:1 23373:1 23375:6 23378:1 23387:1 23398:1 23404:2 23406:1 23426:1 23432:1 23436:2 23440:1 23446:1 23454:1 23465:1 23481:1 23497:2 23503:2 23505:1 23514:2 23528:1 23532:1 23545:1 23557:1 23601:1 23602:2 23609:1 23613:1 23617:1 23628:1 23631:1 23635:2 23639:5 23642:1 23648:1 23651:1 23652:1 23664:1 23666:1 23669:1 23695:6 23700:1 23704:1 23706:1 23719:1 23721:7 23738:2 23739:2 23756:1 23768:1 23771:1 23774:3 23775:1 23784:1 23786:1 23793:1 23802:1 23803:1 23826:1 23840:1 23845:2 23889:1 23895:1 23909:1 23923:1 23932:1 23943:1 23969:1 23999:2 24009:2 24019:1 24024:1 24025:1 24027:1 24041:1 24055:1 24061:3 24064:1 24092:4 24101:1 24104:1 24105:1 24126:1 24129:1 24138:2 24140:1 24149:2 24150:1 24153:1 24161:1 24165:15 24166:2 24177:2 24185:1 24193:1 24195:1 24206:1 24214:1 24220:2 24230:1 24231:1 24233:1 24237:1 24245:1 24251:1 24255:2 24256:2 24259:1 24263:1 24272:4 24275:3 24280:3 24285:2 24286:4 24289:1 24290:1 24304:1 24310:1 24345:1 24350:1 24357:1 24363:1 24372:1 24376:1 24377:2 24400:2 24408:2 24416:1 24420:2 24424:1 24425:1 24427:2 24434:1 24443:6 24444:1 24446:1 24454:1 24455:1 24462:1 24471:1 24472:1 24478:1 24479:1 24500:1 24502:2 24503:2 24521:1 24524:1 24553:1 24570:1 24592:1 24596:1 24600:3 24622:1 24625:1 24643:1 24648:1 24653:1 24655:1 24658:5 24675:1 24676:1 24710:1 24713:1 24715:1 24720:1 24721:1 24733:1 24737:1 24740:3 24744:1 24747:1 24768:1 24773:2 24774:2 24784:1 24789:1 24792:3 24809:1 24812:1 24826:1 24830:1 24839:1 24844:2 24870:1 24889:1 24892:1 24917:1 24928:2 24938:1 24944:3 24949:1 24953:1 24954:2 24964:1 24966:1 24972:1 24975:1 24976:2 24994:1 25000:1 25005:2 25019:2 25022:1 25026:1 25028:1 25031:2 25032:1 25059:1 25065:1 25068:1 25070:1 25073:2 25076:1 25081:1 25109:1 25110:1 25125:5 25129:3 25132:2 25145:1 25147:1 25177:1 25185:2 25191:1 25195:1 25200:2 25207:2 25213:1 25214:1 25216:1 25224:2 25232:1 25239:1 25242:1 25244:1 25250:1 25251:1 25254:2 25255:1 25256:1 25260:3 25263:1 25267:2 25269:1 25277:1 25281:2 25291:2 25295:1 25299:1 25302:1 25329:1 25330:1 25339:1 25346:4 25363:1 25370:2 25389:2 25412:1 25451:1 25454:2 25479:1 25487:1 25491:2 25514:2 25530:1 25532:1 25536:1 25538:3 25543:5 25560:1 25572:1 25600:6 25630:1 25632:1 25644:1 25661:1 25693:1 25698:1 25699:1 25702:2 25717:2 25731:1 25739:1 25752:1 25768:1 25775:1 25777:1 25791:2 25793:3 25794:1 25801:1 25804:2 25808:1 25809:2 25820:1 25822:1 25828:1 25829:5 25837:1 25841:1 25843:1 25856:2 25861:2 25863:2 25867:1 25869:1 25871:5 25875:1 25880:1 25881:1 25888:1 25892:3 25893:1 25905:3 25909:1 25913:3 25917:1 25941:1 25946:3 25964:1 25965:1 25983:1 26005:1 26012:3 26015:4 26022:5 26028:1 26054:5 26067:1 26071:1 26080:1 26081:1 26092:1 26098:1 26099:1 26101:1 26123:1 26125:6 26129:1 26132:2 26163:1 26174:1 26175:1 26194:1 26213:1 26214:1 26221:1 26222:1 26229:1 26230:2 26236:1 26244:1 26265:3 26298:1 26300:1 26301:1 26305:1 26306:7 26308:1 26312:2 26315:1 26325:2 26340:1 26368:5 26383:1 26401:1 26411:1 26418:1 26452:1 26464:1 26486:1 26512:1 26527:2 26538:1 26539:1 26540:2 26541:1 26544:2 26547:3 26553:1 26557:1 26558:1 26565:1 26580:1 26600:1 26612:1 26616:1 26625:1 26655:3 26659:1 26664:2 26690:2 26695:1 26696:2 26706:1 26710:1 26713:1 26722:1 26733:1 26735:1 26737:1 26745:1 26750:3 26751:1 26757:2 26759:1 26785:1 26787:1 26790:4 26793:2 26806:1 26810:1 26832:1 26837:1 26843:1 26848:1 26855:1 26862:1 26874:1 26879:1 26883:3 26889:1 26891:1 26910:1 26920:3 26923:1 26940:1 26957:2 26961:2 26973:1 26978:1 26979:3 26986:3 26987:3 26988:1 26990:1 26996:1 27031:5 27034:1
1 13:1 35:1 39:1 43:1 47:1 50:1 55:1 89:1 120:1 137:1 138:3 139:1 144:1 150:2 157:1 165:2 169:3 178:1 182:6 192:1 209:1 222:1 233:1 238:7 255:3 264:1 280:2 306:1 315:4 317:3 327:3 334:3 339:1 346:2 359:1 362:3 372:1 382:2 395:5 397:5 404:1 412:1 416:1 442:1 445:1 446:1 472:2 500:1 511:1 515:2 532:1 544:3 552:1 568:1 578:1 582:4 584:2 588:1 604:2 612:1 630:1 665:1 678:1 683:1 711:1 722:1 723:2 726:1 743:1 745:2 751:1 764:1 789:6 794:1 798:1 800:1 802:4 805:1 808:1 822:15 826:4 837:3 854:4 868:1 872:1 873:4 874:2 875:8 877:1 878:2 880:4 882:1 894:2 912:5 915:4 926:1 927:1 953:2 958:1 972:1 1002:1 1013:2 1017:1 1035:1 1037:1 1053:1 1059:2 1061:1 1064:1 1108:3 1109:2 1114:1 1116:2 1118:1 1122:2 1125:1 1126:1 1141:1 1150:1 1151:1 1154:1 1158:2 1165:1 1170:2 1173:2 1180:1 1187:1 1193:2 1195:1 1227:1 1228:1 1244:1 1253:1 1262:1 1264:1 1266:1 1269:1 1279:1 1292:1 1312:1 1316:1 1324:1 1325:2 1339:1 1345:1 1346:2 1364:1 1366:1 1371:3 1379:1 1392:1 1397:1 1402:1 1404:1 1405:2 1408:1 1419:1 1427:1 1437:1 1445:1 1448:4 1454:7 1456:2 1465:1 1469:1 1490:2 1499:1 1501:1 1510:1 1514:1 1523:1 1526:1 1528:1 1530:2 1538:1 1542:2 1549:1 1553:1 1555:1 1558:1 1559:2 1568:1 1571:2 1580:1 1584:1 1587:1 1592:1 1596:1 1600:1 1601:1 1606:1 1615:1 1619:1 1625:1 1634:2 1635:1 1652:1 1653:5 1659:1 1663:1 1675:1 1681:1 1684:3 1687:1 1688:2 1696:6 1703:1 1723:4 1724:3 1729:1 1737:1 1745:1 1749:1 1757:2 1759:4 1761:1 1762:1 1764:1 1777:1 1787:2 1793:1 1794:1 1801:3 1806:2 1807:1 1809:1 1822:2 1825:1 1866:1 1870:8 1875:1 1881:1 1885:2 1892:4 1896:1 1897:1 1899:2 1904:1 1907:2 1925:1 1931:1 1938:1 1952:1 1956:1 1959:1 1976:2 1978:1 1983:1 1984:1 1988:2 1990:1 2004:1 2014:1 2027:11 2037:1 2046:1 2051:1 2053:1 2071:1 2077:1 2078:1 2092:2 2103:3 2107:1 2119:1 2120:1 2123:1 2126:2 2142:2 2143:2 2145:1 2147:3 2148:5 2150:1 2152:1 2154:2 2157:2 2158:2 2159:1 2160:2 2161:4 2165:1 2167:5 2170:3 2172:5 2173:7 2185:1 2196:1 2216:1 2219:1 2224:3 2226:3 2229:1 2234:1 2246:2 2248:1 2257:1 2274:1 2275:1 2277:1 2285:1 2293:1 2294:1 2296:1 2321:1 2328:1 2333:1 2342:1 2350:3 2351:1 2360:1 2367:1 2377:3 2388:2 2390:1 2403:1 2405:1 2413:1 2417:1 2432:3 2435:2 2437:1 2439:6 2443:1 2444:1 2445:1 2454:1 2457:1 2478:4 2479:1 2480:1 2483:1 2496:2 2503:1 2504:1 2505:1 2506:2 2513:6 2520:2 2526:2 2529:9 2535:4 2537:1 2545:2 2547:1 2553:1 2555:2 2557:1 2562:3 2563:2 2574:2 2589:1 2591:2 2597:3 2602:1 2605:1 2638:1 2640:2 2641:2 2654:3 2655:1 2659:1 2662:7 2667:2 2671:1 2684:1 2686:1 2691:1 2710:1 2716:3 2719:1 2738:4 2745:1 2749:1 2752:15 2773:3 2774:1 2776:1 2777:1 2779:1 2786:2 2791:3 2794:1 2811:19 2813:2 2826:1 2836:2 2839:3 2848:1 2856:1 2866:1 2893:1 2898:1 2902:1 2907:1 2917:1 2918:5 2934:3 2939:1 2948:1 2952:1 2970:1 2979:1 2989:1 2993:1 2998:1 3006:2 3014:1 3027:2 3035:1 3042:3 3057:1 3070:1 3089:1 3090:2 3128:1 3129:2 3130:1 3134:1 3149:6 3150:1 3193:1 3216:1 3225:2 3234:1 3263:1 3264:1 3265:1 3277:1 3283:1 3285:1 3286:1 3291:1 3299:1 3305:1 3308:1 3328:1 3343:1 3358:2 3362:1 3383:1 3384:13 3399:1 3403:2 3405:2 3406:2 3409:1 3425:1 3429:1 3430:1 3438:1 3446:1 3477:1 3479:2 3480:1 3484:1 3489:3 3490:1 3493:2 3501:1 3523:1 3548:1 3549:1 3552:1 3554:1 3559:2 3562:1 3565:2 3569:1 3576:3 3581:1 3596:1 3599:1 3603:2 3608:1 3610:1 3626:2 3628:1 3631:1 3640:1 3648:3 3649:1 3663:2 3664:1 3668:4 3670:1 3673:2 3677:1 3678:2 3687:4 3698:1 3700:2 3715:1 3716:2 3730:1 3732:2 3734:2 3738:1 3756:2 3765:6 3766:4 3772:2 3808:1 3810:2 3813:1 3818:1 3834:1 3837:1 3839:2 3857:1 3864:1 3866:2 3870:1 3872:1 3875:1 3878:1 3891:2 3900:1 3910:2 3924:1 3932:1 3937:4 3938:1 3940:1 3941:1 3944:2 3946:1 3950:1 3954:2 3977:1 3981:1 3992:1 4008:1 4025:1 4027:2 4029:1 4045:7 4075:3 4081:1 4090:2 4097:1 4101:1 4104:2 4114:2 4127:2 4133:1 4149:1 4152:1 4156:3 4157:2 4169:1 4177:4 4194:1 4202:1 4203:1 4211:1 4225:2 4233:2 4246:1 4249:1 4252:1 4256:1 4257:3 4259:1 4267:1 4276:1 4292:3 4304:1 4314:5 4327:1 4331:1 4355:4 4363:2 4371:1 4372:1 4377:4 4380:1 4397:4 4420:2 4437:1 4440:2 4443:3 4456:3 4459:1 4468:1 4469:2 4475:1 4494:1 4496:2 4507:1 4511:1 4523:1 4524:1 4537:1 4549:1 4565:14 4567:2 4574:1 4576:1 4581:1 4586:1 4595:1 4601:1 4613:1 4623:1 4629:1 4664:1 4669:3 4684:1 4685:4 4687:7 4688:3 4690:1 4693:2 4695:2 4696:1 4698:1 4700:1 4701:2 4703:6 4704:4 4706:1 4708:2 4709:7 4715:2 4716:5 4719:1 4721:1 4733:1 4764:1 4776:1 4789:2 4796:1 4820:1 4853:1 4891:1 4903:1 4917:1 4930:1 4937:2 4973:1 4977:1 5002:3 5008:2 5018:1 5057:1 5061:1 5066:2 5088:5 5101:1 5121:1 5140:1 5146:1 5157:2 5163:1 5171:1 5180:1 5188:1 5197:1 5220:1 5230:1 5252:1 5254:1 5264:1 5284:2 5287:1 5292:1 5298:2 5302:1 5305:1 5313:5 5314:1 5316:2 5317:1 5320:3 5321:1 5336:1 5337:1 5369:3 5379:2 5380:1 5383:1 5394:6 5403:1 5406:2 5452:1 5468:1 5481:1 5483:1 5485:1 5503:1 5507:1 5509:1 5510:1 5516:1 5522:2 5524:1 5538:1 5544:1 5549:1 5562:1 5568:1 5569:2 5576:2 5590:2 5593:1 5594:2 5596:2 5607:1 5610:6 5612:1 5613:1 5619:1 5620:2 5626:1 5628:1 5629:1 5632:1 5633:1 5636:1 5668:1 5671:1 5673:1 5678:1 5680:2 5682:1 5688:1 5692:2 5693:1 5696:12 5715:1 5735:3 5742:1 5761:1 5772:1 5787:3 5797:2 5812:6 5817:1 5824:1 5854:1 5869:1 5872:1 5890:1 5897:1 5898:1 5901:1 5905:2 5906:3 5908:1 5911:1 5912:1 5915:2 5916:1 5921:2 5923:4 5924:3 5958:1 5997:1 6008:1 6010:1 6035:1 6046:1 6051:4 6052:2 6063:1 6072:1 6106:1 6115:1 6124:1 6129:1 6133:1 6148:1 6154:2 6177:1 6191:2 6199:2 6208:1 6213:1 6222:1 6270:1 6281:1 6290:2 6292:1 6295:1 6298:1 6301:1 6316:8 6321:1 6323:2 6327:3 6329:1 6336:1 6338:1 6344:1 6355:2 6375:1 6378:1 6379:1 6385:1 6387:1 6389:1 6424:1 6426:3 6437:2 6442:1 6448:2 6465:1 6470:1 6476:1 6479:1 6483:2 6484:1 6491:2 6507:1 6525:2 6529:1 6530:1 6537:1 6545:1 6546:1 6553:1 6563:6 6569:2 6588:1 6595:1 6596:1 6600:1 6606:1 6609:3 6610:2 6618:1 6623:4 6624:1 6626:1 6631:5 6634:1 6637:1 6657:1 6658:1 6660:1 6670:1 6678:1 6701:1 6702:1 6707:4 6716:4 6724:1 6732:1 6735:1 6752:3 6755:1 6757:1 6765:1 6778:1 6788:1 6790:1 6798:1 6806:1 6812:1 6824:1 6850:1 6868:1 6871:1 6875:1 6879:2 6917:1 6931:1 6935:2 6936:5 6940:3 6943:1 6945:1 6951:3 6955:1 6971:6 6972:2 6974:2 6988:1 6989:3 6998:1 7002:1 7012:1 7020:2 7023:1 7028:1 7038:1 7043:1 7045:1 7051:1 7053:1 7066:1 7067:1 7075:1 7076:2 7081:1 7086:1 7090:1 7101:1 7102:1 7114:1 7120:1 7138:3 7153:4 7154:6 7165:2 7170:1 7173:4 7176:2 7178:3 7180:1 7183:1 7192:1 7198:4 7199:2 7200:1 7213:45 7214:2 7220:1 7222:1 7228:1 7229:10 7231:6 7236:2 7270:1 7276:1 7278:1 7287:1 7297:1 7301:3 7302:2 7307:1 7309:1 7320:1 7322:2 7331:2 7341:3 7358:1 7360:1 7380:2 7388:1 7389:1 7392:1 7409:1 7410:2 7440:1 7451:1 7453:1 7454:3 7459:1 7483:1 7489:1 7490:1 7491:1 7501:2 7540:1 7549:1 7559:1 7569:1 7573:1 7591:1 7592:1 7600:1 7604:1 7608:1 7628:1 7631:1 7639:1 7643:1 7644:2 7654:1 7663:1 7677:1 7678:1 7700:24 7706:1 7724:3 7726:3 7729:1 7731:2 7732:1 7752:1 7758:1 7773:6 7776:1 7777:1 7781:1 7810:1 7821:3 7823:1 7825:2 7827:1 7830:1 7844:1 7854:2 7855:4 7860:3 7868:1 7874:1 7894:2 7896:1 7902:1 7906:1 7918:1 7920:1 7930:1 7937:1 7939:1 7957:1 7958:2 7966:2 7968:1 7969:1 8028:1 8033:1 8034:1 8038:1 8039:1 8041:1 8048:1 8061:1 8064:2 8076:6 8078:1 8087:2 8090:3 8109:1 8115:1 8116:1 8122:1 8127:2 8130:1 8131:1 8140:1 8145:1 8146:1 8162:2 8168:1 8191:1 8195:1 8196:1 8228:1 8233:1 8234:1 8240:1 8244:1 8271:1 8272:1 8285:3 8293:1 8316:1 8319:1 8320:1 8324:3 8347:3 8353:1 8360:2 8361:1 8370:1 8377:1 8394:1 8395:1 8404:1 8407:1 8415:6 8416:1 8417:1 8423:1 8425:1 8429:1 8436:1 8442:2 8444:1 8455:6 8456:1 8477:1 8484:1 8500:1 8505:11 8506:6 8516:2 8517:1 8551:3 8554:1 8561:1 8566:1 8570:3 8572:1 8589:1 8596:1 8603:2 8605:2 8607:3 8609:2 8624:1 8629:1 8635:1 8644:1 8661:1 8672:1 8681:2 8683:1 8689:1 8692:5 8694:1 8700:1 8708:1 8715:3 8720:1 8721:1 8734:4 8770:1 8771:1 8782:1 8795:1 8802:1 8807:1 8823:3 8832:1 8835:3 8840:1 8852:1 8858:1 8865:1 8888:1 8901:1 8905:1 8913:1 8919:7 8924:2 8956:3 8964:1 8965:1 8975:3 8981:1 9005:1 9019:1 9024:1 9028:1 9031:3 9032:3 9034:2 9038:1 9056:1 9061:1 9064:2 9066:1 9096:2 9099:1 9107:1 9117:1 9142:2 9159:1 9163:1 9173:2 9186:1 9196:1 9200:1 9201:1 9210:1 9242:1 9243:1 9248:1 9249:1 9262:1 9266:1 9289:1 9291:1 9294:1 9296:1 9298:1 9301:5 9318:4 9325:4 9327:2 9336:1 9354:2 9363:1 9371:3 9372:1 9378:1 9396:1 9398:1 9406:1 9410:2 9415:2 9427:1 9434:1 9444:1 9449:4 9453:1 9481:2 9485:1 9490:12 9492:1 9493:2 9497:2 9501:1 9519:2 9520:1 9535:1 9540:1 9555:1 9572:1 9587:1 9588:2 9590:1 9597:1 9607:1 9622:1 9628:1 9643:1 9644:1 9646:1 9649:1 9651:4 9661:1 9663:1 9665:2 9702:1 9715:4 9720:1 9722:1 9723:1 9729:1 9732:3 9739:1 9742:1 9747:1 9749:1 9755:4 9769:1 9771:1 9787:1 9797:1 9803:1 9804:1 9810:1 9817:1 9819:2 9823:2 9827:1 9837:2 9839:1 9846:1 9853:1 9860:1 9864:1 9866:3 9870:1 9877:2 9879:1 9881:1 9886:7 9889:4 9899:2 9900:3 9905:1 9910:1 9917:1 9920:2 9926:1 9943:2 9953:7 9954:2 9964:1 9979:2 9982:1 9983:1 9991:4 9995:1 10013:1 10026:1 10028:1 10035:3 10047:2 10054:1 10057:6 10071:1 10080:1 10092:1 10093:1 10106:3 10134:1 10140:1 10146:1 10180:1 10191:1 10201:1 10206:1 10224:1 10225:1 10239:1 10240:2 10242:2 10245:1 10246:2 10252:1 10254:1 10261:1 10264:5 10265:5 10268:1 10276:1 10282:2 10283:2 10287:1 10288:1 10289:4 10293:1 10298:1 10307:1 10310:3 10313:3 10318:1 10321:1 10336:2 10345:1 10363:1 10372:1 10373:1 10376:3 10392:1 10406:1 10411:1 10424:1 10434:2 10436:1 10440:1 10466:1 10493:1 10499:1 10512:1 10515:1 10518:1 10530:1 10532:3 10556:1 10575:1 10586:1 10592:1 10597:2 10611:3 10614:2 10617:1 10627:2 10630:2 10632:1 10633:1 10635:2 10637:1 10644:3 10646:1 10647:1 10648:2 10657:1 10663:3 10667:2 10678:1 10693:15 10694:1 10696:1 10707:1 10718:1 10730:1 10734:4 10742:1 10745:2 10746:2 10756:1 10759:2 10769:1 10786:1 10788:2 10799:2 10803:1 10813:2 10818:2 10831:1 10847:1 10859:1 10863:1 10884:1 10890:1 10906:1 10924:1 10932:3 10933:1 10934:1 10937:1 10950:1 10951:4 10955:1 10956:2 10957:1 10960:1 10962:1 10968:1 10969:1 10977:1 10979:1 10988:1 10991:1 10992:1 10995:1 10998:1 11003:2 11006:5 11009:3 11031:1 11040:1 11055:1 11073:1 11100:1 11118:1 11120:1 11135:2 11141:1 11151:1 11159:1 11160:1 11166:5 11173:1 11184:2 11188:2 11189:1 11201:1 11206:1 11214:1 11220:2 11227:2 11243:2 11254:2 11261:1 11263:2 11283:1 11301:2 11306:1 11314:1 11317:1 11321:1 11327:2 11333:1 11365:1 11372:1 11380:5 11381:2 11382:2 11394:1 11406:2 11412:1 11415:1 11418:1 11424:1 11476:1 11478:2 11479:1 11502:1 11506:1 11513:1 11520:1 11534:1 11542:1 11547:1 11557:1 11574:1 11635:1 11638:3 11662:2 11674:1 11689:1 11695:1 11705:1 11718:1 11720:2 11721:1 11736:3 11745:1 11758:1 11767:1 11774:1 11824:1 11831:1 11836:1 11839:1 11840:2 11847:1 11859:1 11863:1 11882:14 11886:4 11899:2 11904:1 11915:1 11923:1 11928:2 11929:3 11936:4 11943:1 11952:1 11954:1 11959:1 11964:1 11965:1 11974:1 11980:2 11981:1 11983:1 11989:1 12016:1 12034:1 12039:1 12045:2 12048:1 12068:1 12069:1 12081:1 12090:1 12091:2 12100:2 12101:1 12110:1 12112:1 12134:1 12151:3 12161:2 12163:1 12208:1 12209:1 12231:1 12241:1 12245:1 12252:1 12254:2 12257:4 12269:1 12274:2 12283:2 12290:1 12306:6 12323:1 12325:2 12346:1 12351:4 12352:1 12367:1 12379:1 12385:1 12386:1 12387:1 12389:1 12399:9 12400:1 12410:2 12413:1 12428:1 12436:1 12437:1 12440:2 12446:1 12452:1 12453:1 12463:16 12469:1 12474:1 12490:1 12506:2 12508:1 12515:3 12529:1 12533:2 12544:1 12547:2 12556:1 12557:1 12559:1 12590:3 12613:1 12616:6 12617:1 12633:1 12640:2 12642:1 12645:1 12668:3 12685:1 12692:1 12694:1 12696:1 12703:3 12705:1 12707:1 12714:1 12719:1 12721:1 12728:6 12729:1 12732:1 12733:2 12734:1 12736:2 12737:1 12741:7 12742:2 12760:1 12761:1 12763:1 12765:1 12787:1 12805:1 12814:1 12831:1 12842:2 12848:2 12854:1 12861:1 12872:1 12878:1 12887:4 12919:1 12926:1 12929:1 12932:1 12939:1 12941:1 12946:1 12956:1 12960:1 12978:2 12986:1 12996:1 12997:1 12999:1 13005:7 13025:3 13032:1 13041:1 13064:1 13076:1 13077:2 13085:1 13090:1 13103:1 13109:1 13111:1 13118:1 13131:1 13139:1 13155:1 13161:1 13165:1 13170:1 13173:1 13180:1 13188:1 13197:1 13211:1 13218:1 13237:1 13245:2 13261:5 13277:1 13288:1 13309:1 13320:1 13380:1 13383:3 13384:4 13391:1 13404:2 13406:1 13410:2 13412:1 13432:1 13436:1 13442:1 13452:2 13470:1 13479:1 13480:1 13499:1 13509:1 13524:2 13531:1 13535:1 13548:1 13552:1 13554:1 13556:1 13563:2 13567:1 13578:3 13585:2 13595:1 13630:1 13632:2 13637:2 13641:1 13679:2 13680:1 13690:1 13695:1 13713:1 13720:1 13723:1 13731:1 13745:1 13756:3 13768:1 13771:2 13774:1 13804:1 13807:1 13847:1 13850:1 13885:2 13891:2 13892:2 13895:1 13902:1 13903:1 13912:1 13923:1 13932:1 13977:1 13979:3 13984:1 13997:1 13998:1 13999:2 14004:1 14032:1 14083:1 14087:1 14092:1 14094:2 14115:1 14125:1 14155:1 14170:2 14182:1 14187:1 14204:1 14211:1 14212:1 14213:2 14226:1 14240:2 14245:3 14248:1 14270:1 14274:1 14275:1 14286:1 14295:2 14311:2 14315:1 14318:1 14334:1 14336:1 14345:2 14354:1 14362:2 14378:1 14380:1 14385:1 14387:1 14391:1 14397:6 14409:3 14419:1 14424:3 14435:3 14457:1 14460:1 14467:1 14484:1 14486:1 14489:2 14552:2 14553:1 14564:2 14571:1 14575:1 14579:4 14584:1 14586:1 14593:1 14605:4 14606:1 14609:1 14612:1 14624:1 14626:1 14639:1 14658:2 14666:2 14703:2 14706:1 14709:1 14719:3 14726:2 14735:1 14737:1 14739:3 14753:1 14764:3 14777:1 14782:1 14802:1 14817:1 14819:1 14841:1 14847:1 14853:1 14857:15 14859:1 14872:1 14874:1 14876:3 14878:1 14900:3 14904:1 14943:1 14954:1 14958:1 14962:2 14972:3 14976:1 14990:2 14994:1 15008:2 15015:1 15029:1 15030:2 15046:1 15052:1 15060:1 15062:1 15064:1 15068:1 15074:2 15075:1 15100:3 15103:1 15117:1 15122:1 15128:6 15130:2 15131:2 15132:6 15133:1 15134:1 15135:2 15137:1 15139:2 15140:3 15143:1 15144:1 15147:1 15150:1 15151:1 15153:1 15161:1 15188:1 15201:1 15204:1 15206:2 15216:1 15232:1 15239:1 15251:1 15255:2 15256:1 15279:2 15284:1 15288:2 15289:2 15307:1 15328:1 15336:1 15337:1 15367:1 15370:1 15418:1 15430:1 15434:2 15445:1 15446:2 15455:2 15456:1 15466:1 15470:5 15475:1 15478:2 15487:1 15495:1 15496:1 15501:2 15504:1 15505:4 15509:2 15513:1 15522:3 15526:2 15534:3 15544:1 15553:1 15585:14 15588:1 15604:1 15606:1 15611:1 15613:4 15614:1 15618:1 15656:1 15671:1 15672:1 15678:2 15689:1 15695:4 15705:1 15706:1 15720:1 15722:2 15737:1 15741:1 15742:1 15756:2 15761:1 15778:5 15791:1 15802:1 15811:1 15823:1 15841:1 15849:1 15878:2 15879:3 15895:1 15898:1 15936:2 15945:1 15946:1 15950:1 15970:1 15973:1 15980:1 15987:2 15992:1 16006:1 16014:1 16022:2 16034:2 16039:1 16041:2 16047:1 16055:1 16072:1 16116:1 16119:1 16150:1 16159:1 16163:1 16183:1 16187:1 16199:2 16202:1 16212:1 16213:3 16218:1 16222:1 16224:1 16232:3 16238:2 16240:2 16244:2 16249:1 16250:10 16284:1 16287:2 16288:1 16293:2 16294:1 16298:1 16305:1 16311:1 16313:1 16315:1 16316:1 16331:1 16368:1 16369:1 16389:3 16392:1 16403:1 16416:2 16427:1 16428:1 16434:1 16435:1 16440:1 16451:1 16453:1 16482:1 16483:1 16484:1 16508:1 16513:1 16518:2 16533:1 16554:1 16557:1 16576:1 16578:1 16593:1 16594:2 16598:1 16600:1 16602:1 16614:1 16616:1 16646:1 16661:1 16684:1 16709:1 16710:1 16720:2 16740:2 16814:2 16815:1 16823:1 16833:1 16838:1 16844:1 16862:1 16878:1 16879:1 16885:1 16907:1 16934:1 16937:3 16946:1 16951:1 16981:1 16986:1 16999:15 17009:1 17025:1 17050:1 17071:1 17087:14 17097:4 17099:1 17102:1 17103:5 17128:2 17142:1 17156:2 17184:4 17192:2 17204:2 17218:2 17219:1 17243:3 17251:2 17263:2 17276:2355 17285:1 17289:1 17301:1 17302:1 17347:1 17351:1 17353:1 17374:2 17389:1 17420:1 17421:1 17445:1 17465:1 17467:1 17469:1 17472:2 17474:5 17475:4 17488:1 17493:1 17495:1 17515:1 17526:1 17535:1 17542:1 17549:1 17551:1 17552:1 17592:1 17595:3 17599:2 17608:1 17644:1 17649:1 17653:1 17654:3 17674:1 17684:2 17697:1 17699:1 17707:2 17709:1 17717:1 17728:1 17735:1 17737:1 17748:2 17754:1 17765:1 17776:1 17787:1 17791:2 17795:2 17803:1 17809:1 17817:2 17836:2 17837:2 17855:3 17859:1 17862:1 17870:3 17876:1 17895:3 17896:1 17900:1 17904:1 17905:1 17913:1 17917:2 17927:8 17949:1 17951:1 17966:1 17970:2 17971:1 17978:2 17992:5 17999:1 18009:1 18011:1 18029:1 18043:1 18047:4 18052:1 18054:2 18060:1 18062:2 18070:1 18075:4 18076:1 18081:1 18085:1 18090:2 18101:1 18104:4 18115:2 18116:1 18123:3 18141:1 18156:3 18159:1 18163:1 18178:1 18182:1 18183:2 18187:2 18193:1 18194:2 18197:1 18210:1 18218:1 18225:1 18228:1 18233:1 18234:1 18240:1 18247:1 18271:1 18282:3 18294:1 18295:2 18296:1 18297:1 18301:1 18303:3 18308:1 18323:1 18326:1 18328:1 18332:1 18339:1 18343:1 18349:2 18354:1 18359:1 18371:1 18374:1 18381:2 18382:1 18390:1 18408:1 18416:1 18420:2 18422:4 18427:1 18428:4 18430:1 18474:1 18477:1 18478:1 18492:1 18495:2 18499:1 18501:1 18503:2 18504:2 18508:2 18519:1 18521:2 18525:3 18529:3 18533:1 18534:2 18536:2 18538:1 18548:1 18556:5 18564:2 18580:1 18582:1 18596:1 18598:1 18603:2 18604:4 18627:1 18628:1 18638:1 18639:1 18645:1 18653:1 18658:1 18665:3 18685:1 18690:1 18691:2 18707:1 18716:3 18718:19 18719:2 18726:1 18735:5 18738:1 18756:1 18759:1 18767:1 18784:2 18785:1 18792:1 18793:1 18805:1 18811:1 18817:1 18821:1 18835:1 18838:1 18847:1 18848:1 18866:1 18868:1 18875:1 18905:4 18919:2 18933:1 18937:2 18941:1 18949:2 18960:1 18962:1 18969:2 18996:8 18998:2 19005:1 19013:1 19022:1 19039:1 19040:1 19041:1 19050:1 19057:1 19080:1 19082:1 19085:4 19101:3 19112:1 19117:1 19119:1 19125:1 19128:1 19132:1 19133:1 19140:1 19143:2 19175:2 19183:3 19189:2 19190:2 19201:2 19204:2 19207:1 19209:1 19215:2 19221:1 19243:5 19245:2 19254:2 19256:1 19261:1 19268:1 19279:2 19284:1 19286:1 19293:1 19311:2 19317:1 19324:2 19325:1 19331:5 19334:1 19338:2 19341:1 19344:1 19349:2 19359:3 19385:2 19391:1 19394:1 19412:1 19415:1 19421:2 19422:1 19431:2 19439:2 19443:2 19447:2 19450:2 19451:1 19459:2 19478:1 19484:2 19506:2 19515:1 19516:4 19521:1 19522:1 19523:4 19532:1 19537:2 19542:1 19545:1 19546:1 19547:1 19551:1 19552:1 19558:2 19564:1 19577:1 19581:1 19583:1 19591:1 19595:1 19614:1 19620:1 19627:1 19629:1 19633:2 19636:2 19648:1 19661:1 19664:1 19697:1 19736:1 19756:1 19757:1 19770:2 19773:1 19782:2 19785:2 19790:1 19791:1 19794:1 19795:1 19798:1 19799:1 19806:1 19812:2 19821:3 19823:1 19830:1 19837:1 19845:1 19866:1 19873:1 19880:1 19889:1 19896:1 19897:1 19919:2 19921:1 19922:1 19927:1 19931:2 19934:1 19936:1 19948:1 19951:2 19954:2 19959:2 19960:1 19961:1 19963:2 19965:1 19976:1 19978:2 19989:1 19998:14 20001:1 20009:2 20010:2 20017:2 20028:1 20041:1 20049:1 20051:1 20061:1 20063:1 20066:1 20067:1 20071:1 20072:1 20075:1 20099:1 20104:1 20125:2 20134:1 20138:2 20141:1 20142:1 20147:1 20149:1 20151:4 20154:3 20156:1 20166:2 20177:1 20178:1 20179:1 20182:1 20183:1 20205:1 20206:1 20210:3 20212:4 20240:1 20248:1 20252:1 20316:4 20321:1 20322:4 20325:3 20326:3 20328:1 20329:1 20334:1 20337:2 20340:1 20341:2 20350:1 20351:1 20352:5 20360:1 20362:1 20368:1 20381:1 20396:2 20400:2 20403:2 20417:1 20444:1 20446:1 20471:2 20473:2 20480:1 20481:1 20483:1 20486:1 20492:1 20497:1 20503:1 20509:1 20523:1 20524:1 20529:1 20532:1 20533:2 20534:1 20544:1 20546:1 20553:1 20556:1 20567:2 20570:1 20572:5 20578:1 20587:1 20588:4 20592:3 20593:1 20599:1 20611:1 20619:1 20628:2 20630:1 20632:1 20633:1 20634:4 20647:1 20655:2 20656:9 20658:1 20662:1 20666:1 20670:1 20675:1 20676:1 20692:1 20693:1 20719:8 20720:1 20733:1 20754:1 20772:1 20779:5 20780:1 20784:1 20787:1 20796:1 20797:1 20812:1 20813:2 20842:1 20844:3 20857:1 20864:1 20879:1 20886:1 20887:6 20889:2 20900:3 20903:1 20905:3 20914:1 20919:1 20924:1 20926:1 20938:1 20940:4 20955:1 20962:1 20963:3 20968:3 20976:1 20982:1 20991:1 20998:1 21005:1 21026:1 21029:1 21062:1 21066:1 21072:1 21073:1 21074:1 21079:1 21090:1 21100:2 21115:10 21116:3 21130:2 21134:2 21138:1 21140:4 21149:1 21150:3 21163:2 21176:1 21203:1 21215:1 21216:1 21218:2 21220:2 21234:1 21235:1 21238:1 21256:1 21257:1 21261:1 21262:1 21263:1 21266:1 21282:1 21284:1 21296:1 21303:2 21306:1 21309:2 21311:1 21333:1 21340:3 21370:3 21385:1 21415:2 21434:1 21453:3 21456:2 21462:5 21469:2 21479:1 21484:1 21488:3 21498:2 21500:2 21501:1 21502:3 21512:1 21520:4 21551:1 21554:1 21559:1 21580:1 21586:1 21599:1 21613:3 21624:1 21635:1 21642:1 21647:1 21650:2 21674:2 21682:1 21686:2 21694:1 21695:1 21703:1 21708:1 21709:1 21724:1 21726:2 21730:2 21733:3 21742:1 21743:1 21755:1 21757:1 21772:3 21773:2 21774:1 21777:2 21792:1 21794:1 21800:1 21845:1 21846:4 21848:1 21853:1 21859:1 21861:1 21862:4 21863:1 21864:1 21865:1 21867:1 21869:1 21871:1 21898:1 21913:2 21916:1 21917:1 21930:1 21974:2 21981:2 21991:1 22014:2 22019:1 22053:1 22066:1 22068:2 22074:1 22076:2 22078:1 22088:1 22102:1 22120:1 22122:1 22125:1 22130:1 22136:2 22146:1 22157:2 22176:1 22188:1 22196:1 22218:1 22230:2 22238:1 22260:2 22263:1 22282:2 22296:4 22304:1 22320:1 22327:1 22328:7 22345:1 22352:1 22358:3 22370:1 22380:1 22382:1 22389:1 22391:5 22400:1 22402:1 22403:1 22407:1 22412:1 22435:3 22457:2 22459:1 22467:1 22469:2 22478:1 22502:1 22522:1 22530:1 22531:1 22550:1 22553:1 22559:1 22561:1 22564:3 22565:3 22571:1 22572:1 22575:1 22578:2 22581:1 22582:1 22588:1 22592:1 22601:1 22612:6 22626:1 22627:1 22629:1 22632:1 22640:1 22642:1 22644:1 22646:1 22662:12 22663:6 22675:1 22685:1 22688:2 22693:1 22695:1 22696:1 22705:1 22709:1 22710:1 22713:1 22718:3 22726:2 22739:1 22755:1 22802:1 22811:1 22827:1 22841:1 22842:1 22853:2 22856:1 22862:1 22868:1 22870:1 22876:2 22880:2 22886:2 22890:1 22895:1 22901:2 22903:2 22907:1 22923:1 22929:1 22931:1 22937:1 22942:1 22943:2 22946:1 22948:1 22953:1 22963:1 22968:1 22974:4 22987:2 22992:1 22993:1 22997:1 23012:2 23018:2 23022:1 23024:2 23041:1 23048:1 23077:18 23078:2 23101:1 23105:1 23106:1 23115:1 23123:1 23130:1 23136:2 23139:1 23144:1 23146:1 23158:2 23161:1 23162:1 23169:1 23170:1 23181:1 23188:1 23197:1 23202:1 23217:1 23222:1 23259:1 23261:1 23291:10 23292:1 23296:1 23307:1 23316:2 23319:1 23329:1 23350:1 23363:1 23373:1 23375:6 23378:1 23387:1 23398:1 23404:2 23406:1 23426:1 23432:1 23436:2 23440:1 23446:1 23454:1 23465:1 23481:1 23497:2 23503:2 23505:1 23514:2 23528:1 23532:1 23545:1 23557:1 23601:1 23602:2 23609:1 23613:1 23617:1 23628:1 23631:1 23635:2 23639:5 23642:1 23648:1 23651:1 23652:1 23664:1 23666:1 23669:1 23695:7 23700:1 23704:1 23706:1 23719:1 23721:7 23738:2 23739:2 23756:1 23768:1 23771:1 23774:3 23775:1 23784:1 23786:1 23793:1 23802:1 23803:1 23826:1 23840:1 23845:2 23889:1 23895:1 23909:1 23923:1 23932:1 23943:1 23969:1 23999:2 24004:1 24009:2 24019:1 24024:1 24025:1 24027:1 24041:1 24055:1 24061:3 24064:1 24092:4 24101:1 24104:1 24105:1 24126:1 24129:1 24138:2 24140:1 24149:2 24150:1 24153:1 24161:1 24165:15 24166:2 24177:2 24185:1 24193:1 24195:1 24206:1 24214:1 24220:2 24230:1 24231:1 24233:1 24237:1 24245:1 24251:1 24255:2 24256:2 24259:1 24263:1 24272:4 24275:3 24280:3 24285:2 24286:4 24289:1 24290:1 24304:1 24310:1 24345:1 24350:1 24357:1 24363:1 24372:1 24376:1 24377:2 24400:2 24408:2 24416:1 24420:2 24424:1 24425:1 24427:2 24434:1 24443:6 24444:1 24446:1 24454:1 24455:1 24462:1 24471:1 24472:1 24478:1 24479:1 24500:1 24502:2 24503:2 24521:1 24524:1 24553:1 24570:1 24592:1 24596:1 24600:3 24622:1 24625:1 24643:1 24648:1 24653:1 24655:1 24658:5 24675:1 24676:1 24710:1 24713:1 24715:1 24720:1 24721:1 24733:1 24737:1 24740:3 24744:1 24747:1 24768:1 24773:2 24774:2 24784:1 24789:1 24792:3 24809:1 24812:1 24826:1 24830:1 24839:1 24844:2 24870:1 24889:1 24892:1 24900:1 24917:1 24928:2 24938:1 24944:3 24949:1 24953:1 24954:2 24964:1 24966:1 24972:1 24975:1 24976:2 24994:1 25000:1 25005:2 25019:2 25022:1 25026:1 25028:1 25031:2 25032:1 25059:1 25065:1 25068:1 25070:1 25073:2 25076:1 25081:1 25109:1 25110:1 25125:5 25129:3 25132:2 25145:1 25147:1 25177:1 25185:2 25191:1 25195:1 25200:2 25207:2 25213:1 25214:1 25216:1 25224:2 25232:1 25239:1 25242:1 25244:1 25250:1 25251:1 25254:3 25255:1 25256:1 25260:3 25263:1 25267:2 25269:1 25273:1 25277:1 25281:2 25291:2 25295:1 25299:1 25302:1 25329:1 25330:1 25339:1 25346:4 25363:1 25370:2 25389:2 25412:1 25451:1 25454:2 25479:1 25487:1 25491:2 25514:2 25530:1 25532:1 25536:1 25538:3 25543:5 25560:1 25572:1 25582:1 25600:6 25630:1 25632:1 25644:1 25661:1 25693:1 25698:1 25699:1 25702:2 25717:2 25731:1 25739:1 25752:1 25768:1 25775:1 25777:1 25791:2 25793:3 25794:1 25801:1 25804:2 25808:1 25809:2 25820:1 25822:1 25828:1 25829:5 25837:1 25841:1 25843:1 25856:2 25861:2 25863:2 25867:1 25869:1 25871:5 25875:1 25880:1 25881:1 25888:1 25892:3 25893:1 25905:3 25909:1 25913:3 25917:1 25941:1 25946:3 25964:1 25965:1 25983:1 26005:1 26012:3 26015:4 26022:5 26028:1 26054:5 26067:1 26071:1 26080:1 26081:1 26092:1 26098:1 26099:1 26101:1 26123:1 26125:6 26129:1 26132:2 26163:1 26174:1 26175:1 26185:1 26194:1 26213:1 26214:1 26221:1 26222:1 26229:1 26230:2 26236:1 26244:1 26265:3 26298:1 26300:1 26301:1 26305:1 26306:7 26308:1 26312:2 26315:1 26325:2 26340:1 26368:5 26383:1 26401:1 26411:1 26418:1 26452:1 26464:1 26486:1 26512:1 26527:2 26538:1 26539:1 26540:2 26541:2 26544:2 26547:3 26553:1 26557:1 26558:1 26565:1 26580:1 26600:1 26612:1 26616:1 26625:1 26655:3 26659:1 26664:2 26690:2 26695:1 26696:2 26706:1 26710:1 26713:1 26722:1 26733:1 26735:1 26737:1 26745:1 26750:3 26751:1 26757:2 26759:1 26785:1 26787:1 26790:4 26793:2 26806:1 26810:1 26832:1 26837:1 26843:1 26848:1 26855:1 26862:1 26874:1 26879:1 26883:3 26889:1 26891:1 26910:1 26920:3 26923:1 26940:1 26957:2 26961:2 26973:1 26978:1 26979:3 26986:3 26987:3 26988:1 26990:1 26996:1 27031:5 27034:1
1 13:1 35:1 39:1 43:1 47:1 50:1 55:1 89:1 120:1 137:1 138:3 139:1 144:1 150:2 157:1 165:2 169:3 178:1 182:6 192:1 209:1 222:1 233:1 238:7 255:3 264:1 280:2 306:1 315:4 317:3 327:3 334:3 339:1 346:2 359:1 362:3 372:1 382:2 395:5 397:5 404:1 412:1 416:1 442:1 445:1 446:1 472:2 500:1 511:1 515:2 532:1 544:3 552:1 568:1 578:1 582:4 584:2 588:1 604:2 612:1 630:1 665:1 678:1 683:1 711:1 722:1 723:2 726:1 743:1 745:2 751:1 764:1 789:6 794:1 798:1 800:1 802:4 805:1 808:1 822:16 826:4 837:3 854:4 868:1 872:1 873:4 874:2 875:8 877:1 878:2 880:4 882:1 894:2 912:5 915:4 926:1 927:1 953:2 958:1 972:1 1002:1 1013:2 1017:1 1035:1 1037:1 1053:1 1059:2 1061:1 1064:1 1108:3 1109:2 1114:1 1116:2 1118:1 1122:2 1125:1 1126:1 1141:1 1150:1 1151:1 1154:1 1158:2 1165:1 1170:2 1173:2 1180:1 1187:1 1193:2 1195:1 1227:1 1228:1 1244:1 1253:1 1262:1 1264:1 1266:1 1269:1 1279:1 1292:1 1312:1 1316:1 1324:1 1325:2 1339:1 1345:1 1346:2 1364:1 1366:1 1371:3 1379:1 1392:1 1397:1 1402:1 1404:1 1405:2 1408:1 1419:1 1427:1 1437:1 1445:1 1448:4 1454:7 1456:2 1465:1 1469:1 1490:2 1499:1 1501:1 1510:1 1514:2 1523:1 1526:1 1528:1 1530:2 1538:1 1542:2 1549:1 1553:1 1555:1 1558:1 1559:2 1568:1 1571:2 1580:1 1584:1 1587:1 1592:1 1596:2 1600:1 1601:1 1606:1 1615:1 1619:1 1625:1 1634:2 1635:1 1652:1 1653:5 1659:1 1663:1 1675:1 1681:1 1684:3 1687:1 1688:2 1696:6 1703:1 1723:4 1724:3 1729:1 1737:1 1745:1 1749:1 1757:2 1759:4 1761:1 1762:1 1764:1 1777:1 1787:2 1793:1 1794:1 1801:3 1806:2 1807:1 1809:1 1822:2 1825:1 1866:1 1870:9 1875:1 1881:1 1885:2 1892:4 1896:1 1897:1 1899:2 1904:1 1907:2 1925:1 1931:1 1938:1 1952:1 1956:1 1959:1 1976:2 1978:1 1983:1 1984:1 1988:2 1990:1 2004:1 2014:1 2027:11 2037:1 2046:1 2051:1 2053:1 2071:1 2077:1 2078:1 2092:2 2103:3 2107:1 2119:1 2120:1 2123:1 2126:2 2142:2 2143:2 2145:1 2147:3 2148:5 2150:1 2152:1 2154:2 2157:2 2158:2 2159:1 2160:3 2161:5 2165:1 2167:5 2170:3 2172:5 2173:7 2185:1 2196:1 2216:1 2219:1 2224:3 2226:3 2229:1 2234:1 2246:2 2248:1 2257:1 2274:1 2275:1 2277:1 2285:1 2293:1 2294:1 2296:1 2321:1 2328:1 2333:1 2342:1 2350:3 2351:1 2360:1 2367:1 2377:3 2388:2 2390:1 2403:1 2405:1 2413:1 2417:1 2432:3 2435:2 2437:1 2439:6 2443:1 2444:1 2445:1 2454:1 2457:1 2478:4 2479:1 2480:1 2483:1 2496:2 2503:1 2504:1 2505:1 2506:2 2513:6 2520:2 2526:2 2529:9 2535:4 2537:1 2545:2 2547:1 2553:1 2555:2 2557:1 2562:3 2563:2 2574:2 2589:1 2591:2 2597:3 2602:1 2605:1 2611:1 2638:1 2640:2 2641:2 2654:3 2655:1 2659:1 2662:7 2667:2 2671:1 2684:1 2686:1 2691:1 2710:1 2716:3 2719:1 2738:4 2745:1 2749:1 2752:16 2773:3 2774:1 2776:1 2777:1 2779:1 2786:2 2791:3 2794:1 2811:20 2813:2 2826:1 2836:2 2839:3 2848:1 2856:2 2866:1 2893:1 2898:1 2902:1 2907:1 2917:1 2918:5 2934:3 2939:1 2948:1 2952:1 2970:1 2979:1 2989:1 2993:1 2998:1 3006:2 3014:1 3027:2 3035:1 3042:3 3057:1 3070:1 3089:1 3090:2 3128:1 3129:2 3130:1 3134:1 3149:6 3150:1 3193:1 3216:1 3225:2 3234:1 3263:1 3264:1 3265:1 3277:1 3283:1 3285:1 3286:1 3291:1 3299:1 3305:1 3308:1 3328:1 3343:1 3358:2 3362:1 3383:1 3384:13 3399:1 3403:2 3405:2 3406:2 3409:1 3425:1 3429:1 3430:1 3438:1 3446:1 3477:1 3479:2 3480:1 3484:1 3489:3 3490:1 3493:2 3501:1 3523:1 3548:1 3549:1 3552:1 3554:1 3559:2 3562:1 3565:2 3569:1 3576:3 3581:1 3596:1 3599:1 3603:2 3608:1 3610:1 3626:2 3628:1 3631:1 3640:1 3648:3 3649:1 3663:2 3664:1 3668:4 3670:1 3673:2 3677:1 3678:2 3687:4 3698:1 3700:2 3715:1 3716:2 3730:1 3732:2 3734:3 3738:1 3756:2 3765:6 3766:4 3772:2 3808:1 3810:2 3813:1 3818:1 3834:1 3837:1 3839:2 3857:1 3864:1 3866:2 3870:1 3872:1 3875:1 3878:1 3891:2 3900:1 3910:2 3924:1 3932:1 3937:4 3938:1 3940:1 3941:1 3944:2 3946:1 3950:1 3954:2 3977:1 3981:1 3992:1 4008:1 4025:1 4027:2 4029:1 4045:7 4075:3 4081:1 4090:2 4097:1 4101:1 4104:2 4114:2 4127:2 4133:1 4149:1 4152:1 4156:4 4157:2 4169:1 4177:4 4194:1 4202:1 4203:1 4211:1 4225:2 4233:2 4246:1 4249:1 4252:1 4256:1 4257:3 4259:1 4267:1 4276:1 4292:3 4304:1 4314:5 4327:1 4331:1 4355:4 4363:2 4371:1 4372:1 4377:4 4380:1 4397:4 4420:2 4437:1 4440:2 4443:3 4456:3 4459:1 4468:1 4469:2 4475:1 4494:1 4496:2 4507:1 4511:1 4523:1 4524:1 4537:1 4549:1 4565:15 4567:2 4574:1 4576:1 4581:1 4586:1 4595:1 4601:1 4613:1 4623:1 4629:1 4664:1 4669:3 4684:1 4685:4 4687:7 4688:3 4690:1 4693:2 4695:2 4696:1 4698:1 4700:1 4701:2 4703:6 4704:4 4706:1 4708:2 4709:8 4715:2 4716:5 4719:1 4721:1 4733:1 4764:1 4776:1 4789:2 4796:1 4820:1 4853:1 4891:1 4903:1 4917:1 4930:1 4937:2 4973:1 4977:1 5002:3 5008:2 5018:1 5057:1 5061:1 5066:2 5088:5 5101:1 5121:1 5140:1 5146:1 5157:2 5163:1 5171:1 5180:1 5188:1 5197:1 5220:1 5230:1 5252:1 5254:1 5264:1 5284:2 5287:1 5292:1 5298:2 5302:1 5305:1 5313:5 5314:1 5316:2 5317:1 5320:3 5321:1 5336:1 5337:1 5369:3 5379:2 5380:1 5383:1 5394:6 5403:1 5406:2 5452:1 5461:1 5468:1 5481:1 5483:1 5485:1 5503:1 5507:1 5509:1 5510:1 5516:1 5522:2 5524:1 5538:1 5544:1 5549:1 5562:1 5568:1 5569:2 5576:2 5590:2 5593:1 5594:2 5596:2 5607:1 5610:6 5612:1 5613:1 5619:1 5620:2 5626:1 5628:1 5629:1 5632:1 5633:1 5636:1 5668:1 5671:1 5673:1 5678:1 5680:2 5682:1 5688:1 5692:2 5693:1 5696:12 5715:1 5735:3 5742:1 5761:1 5772:1 5787:3 5797:2 5812:6 5817:1 5824:1 5854:1 5869:1 5872:1 5890:1 5897:1 5898:1 5901:1 5905:2 5906:3 5908:1 5911:1 5912:1 5915:2 5916:1 5921:2 5923:4 5924:3 5958:1 5997:1 6008:1 6010:1 6035:1 6046:1 6051:4 6052:2 6063:1 6072:1 6106:1 6115:1 6124:1 6129:2 6133:1 6148:1 6154:2 6177:1 6191:2 6199:2 6208:1 6213:1 6222:1 6270:1 6281:1 6290:2 6292:1 6295:1 6298:1 6301:1 6316:8 6321:1 6323:2 6327:3 6329:1 6336:1 6338:1 6344:1 6355:2 6375:1 6378:1 6379:1 6385:1 6387:1 6389:1 6424:1 6426:3 6437:2 6442:1 6448:2 6465:1 6470:1 6476:1 6479:1 6483:2 6484:1 6491:2 6507:1 6525:2 6529:1 6530:1 6537:1 6545:1 6546:1 6553:1 6563:6 6569:2 6588:1 6595:1 6596:1 6600:1 6606:1 6609:3 6610:2 6618:1 6623:4 6624:1 6626:1 6631:5 6634:1 6637:1 6657:1 6658:1 6660:1 6670:1 6678:1 6701:1 6702:1 6707:4 6716:4 6724:1 6732:1 6735:1 6752:3 6755:1 6757:1 6765:1 6778:1 6786:1 6788:1 6790:1 6798:1 6806:1 6812:1 6824:1 6850:1 6868:1 6871:1 6875:1 6879:2 6917:1 6931:1 6935:2 6936:6 6940:3 6943:1 6945:1 6951:3 6955:1 6971:6 6972:2 6974:2 6988:1 6989:3 6998:1 7002:1 7012:1 7020:2 7023:1 7028:1 7038:1 7043:1 7045:1 7051:1 7053:1 7066:1 7067:1 7075:1 7076:2 7081:1 7086:1 7090:1 7101:1 7102:1 7114:1 7120:1 7138:3 7153:4 7154:6 7165:2 7170:1 7173:4 7176:2 7178:3 7180:1 7183:1 7192:1 7198:4 7199:2 7200:1 7213:46 7214:2 7220:1 7222:1 7228:1 7229:10 7231:6 7236:2 7240:1 7270:1 7276:1 7278:1 7287:1 7297:1 7301:3 7302:2 7307:1 7309:1 7320:1 7322:2 7331:2 7341:3 7358:1 7360:1 7380:2 7388:1 7389:1 7392:1 7409:1 7410:2 7440:1 7451:1 7453:1 7454:3 7459:1 7483:1 7489:1 7490:1 7491:1 7501:2 7540:1 7549:1 7559:1 7569:1 7573:1 7591:1 7592:1 7600:1 7604:1 7608:1 7621:1 7628:1 7631:1 7639:1 7643:1 7644:2 7654:1 7663:1 7677:1 7678:1 7700:25 7706:1 7724:3 7726:3 7729:1 7731:2 7732:1 7752:1 7758:1 7773:6 7776:1 7777:1 7781:1 7810:1 7821:3 7823:1 7825:2 7827:1 7830:1 7844:1 7854:2 7855:4 7860:3 7868:1 7874:1 7894:2 7896:1 7902:1 7906:1 7918:1 7920:1 7930:1 7937:1 7939:1 7957:1 7958:2 7966:2 7968:1 7969:1 8028:1 8033:1 8034:1 8038:1 8039:1 8041:1 8048:1 8061:1 8064:2 8076:6 8078:1 8087:2 8090:3 8109:1 8115:1 8116:1 8122:1 8127:2 8130:1 8131:1 8140:1 8145:1 8146:1 8162:2 8168:1 8191:1 8195:1 8196:1 8228:1 8233:1 8234:1 8240:1 8244:1 8271:1 8272:1 8285:3 8293:1 8316:1 8319:1 8320:1 8324:3 8347:3 8353:1 8360:2 8361:1 8370:1 8377:1 8394:1 8395:1 8404:1 8407:2 8415:6 8416:1 8417:1 8423:1 8425:1 8429:1 8436:1 8442:2 8444:1 8455:6 8456:1 8477:1 8484:1 8500:1 8505:11 8506:6 8516:2 8517:1 8551:3 8554:1 8561:1 8566:1 8570:3 8572:1 8589:1 8596:1 8603:2 8605:2 8607:3 8609:2 8624:1 8629:1 8635:1 8644:1 8661:1 8672:1 8681:2 8683:1 8689:1 8692:5 8694:1 8700:1 8708:1 8715:3 8720:1 8721:1 8734:4 8770:1 8771:1 8782:1 8795:1 8802:1 8807:1 8823:3 8832:1 8835:3 8840:1 8852:1 8858:1 8865:1 8888:1 8901:1 8905:1 8913:1 8919:7 8924:2 8956:3 8964:1 8965:1 8975:3 8981:1 9005:1 9019:1 9024:1 9028:1 9031:3 9032:3 9034:2 9038:1 9056:1 9061:1 9064:2 9066:2 9096:2 9099:1 9107:1 9117:1 9142:2 9159:1 9163:1 9173:2 9180:1 9186:2 9196:1 9200:1 9201:1 9210:1 9242:1 9243:1 9248:1 9249:1 9262:1 9266:1 9289:1 9291:1 9294:1 9296:1 9298:1 9301:5 9318:4 9325:4 9327:2 9336:1 9354:2 9363:1 9371:3 9372:1 9378:1 9396:1 9398:1 9406:1 9410:2 9415:2 9427:1 9434:1 9444:1 9449:4 9453:1 9481:2 9485:1 9490:12 9492:1 9493:2 9497:2 9501:1 9519:2 9520:1 9535:1 9540:1 9555:1 9572:1 9587:1 9588:2 9590:1 9597:1 9607:1 9622:1 9628:1 9643:1 9644:1 9646:1 9649:1 9651:4 9661:1 9663:1 9665:2 9702:1 9715:4 9720:1 9722:1 9723:1 9729:1 9732:3 9739:1 9742:1 9747:1 9749:1 9755:4 9769:1 9771:1 9787:1 9797:1 9803:1 9804:1 9810:1 9817:1 9819:2 9823:2 9827:1 9837:2 9839:1 9846:1 9853:1 9860:1 9864:1 9866:3 9870:1 9877:2 9879:1 9881:1 9886:7 9889:4 9899:2 9900:3 9905:1 9910:1 9917:1 9920:2 9926:1 9943:2 9953:7 9954:2 9964:1 9979:2 9982:1 9983:1 9991:4 9995:1 10013:1 10026:1 10028:1 10035:3 10047:2 10054:1 10057:6 10071:1 10080:1 10092:1 10093:1 10106:3 10134:1 10140:1 10146:1 10180:1 10191:1 10201:1 10206:1 10224:1 10225:1 10239:1 10240:2 10242:2 10245:1 10246:2 10252:1 10254:1 10261:1 10264:5 10265:5 10268:1 10276:1 10282:2 10283:2 10287:1 10288:1 10289:4 10293:1 10298:1 10307:1 10310:3 10313:3 10318:1 10321:1 10336:2 10345:1 10363:1 10372:1 10373:1 10376:3 10392:1 10406:1 10411:1 10424:1 10434:2 10436:1 10440:1 10466:1 10493:1 10499:1 10512:1 10515:1 10518:1 10530:1 10532:3 10556:1 10575:1 10586:1 10592:1 10597:2 10599:1 10611:3 10614:2 10617:1 10627:2 10630:2 10632:1 10633:1 10635:2 10637:1 10644:3 10646:1 10647:1 10648:2 10657:1 10663:3 10667:2 10678:1 10693:15 10694:1 10696:1 10707:1 10718:1 10730:1 10734:4 10742:1 10745:2 10746:2 10756:1 10759:2 10769:1 10786:1 10788:2 10799:2 10803:1 10813:2 10818:2 10831:1 10847:1 10859:1 10863:1 10884:1 10890:1 10906:1 10924:1 10932:3 10933:1 10934:1 10936:1 10937:1 10950:1 10951:4 10955:1 10956:2 10957:1 10960:1 10962:1 10968:1 10969:1 10977:1 10979:1 10988:1 10991:1 10992:1 10995:1 10998:1 11003:2 11006:5 11009:3 11031:1 11040:1 11055:1 11073:1 11088:1 11100:1 11118:1 11120:1 11135:2 11141:1 11151:1 11159:1 11160:1 11166:5 11173:1 11184:2 11188:2 11189:1 11201:1 11206:1 11214:1 11220:2 11227:2 11243:2 11254:2 11261:1 11263:2 11283:1 11301:2 11306:1 11314:1 11317:1 11321:1 11327:2 11333:1 11365:1 11372:1 11380:5 11381:2 11382:2 11394:1 11406:2 11412:1 11415:1 11418:1 11424:1 11476:1 11478:2 11479:1 11502:1 11506:1 11513:1 11520:1 11534:1 11542:1 11547:1 11557:1 11574:1 11635:1 11638:3 11662:2 11674:1 11689:1 11695:1 11705:1 11718:1 11720:2 11721:1 11736:3 11745:1 11758:1 11767:1 11774:1 11824:1 11831:1 11836:1 11839:1 11840:2 11847:1 11859:1 11863:1 11882:15 11886:5 11899:2 11904:1 11915:1 11923:1 11928:2 11929:3 11936:4 11943:1 11952:1 11954:1 11959:1 11964:1 11965:1 11974:1 11980:2 11981:1 11983:1 11989:1 12016:1 12034:1 12039:1 12045:2 12048:1 12068:1 12069:1 12081:1 12090:1 12091:2 12100:2 12101:1 12110:1 12112:1 12134:1 12151:3 12161:2 12163:1 12208:1 12209:1 12231:1 12241:1 12245:1 12252:1 12254:3 12257:4 12269:1 12273:1 12274:2 12283:2 12290:1 12306:6 12323:1 12325:2 12346:1 12351:4 12352:1 12367:1 12379:1 12385:1 12386:1 12387:1 12389:1 12399:9 12400:1 12410:2 12413:1 12428:1 12436:1 12437:1 12440:2 12446:1 12452:1 12453:1 12463:16 12469:1 12474:1 12490:1 12506:2 12508:1 12515:3 12529:1 12533:2 12544:1 12547:2 12556:1 12557:1 12559:1 12590:3 12613:1 12616:6 12617:1 12633:1 12640:2 12642:1 12645:1 12668:3 12685:1 12692:1 12694:1 12696:1 12703:3 12705:1 12707:1 12714:1 12719:1 12721:1 12728:6 12729:1 12732:1 12733:2 12734:1 12736:2 12737:1 12741:7 12742:2 12760:1 12761:1 12763:1 12765:1 12787:1 12805:1 12814:1 12831:1 12842:2 12848:2 12854:1 12861:1 12872:1 12878:1 12887:4 12919:1 12926:1 12929:1 12932:1 12939:1 12941:1 12946:1 12956:1 12960:1 12978:2 12986:1 12996:1 12997:1 12999:1 13005:7 13025:3 13032:1 13041:1 13064:1 13076:1 13077:2 13085:1 13090:1 13103:1 13109:1 13111:1 13118:1 13131:1 13139:1 13155:1 13161:1 13165:1 13170:1 13173:1 13180:1 13188:1 13197:1 13211:1 13218:1 13237:1 13245:2 13261:5 13277:1 13288:1 13309:1 13320:1 13380:1 13383:3 13384:4 13391:1 13404:2 13406:1 13410:2 13412:1 13432:1 13436:1 13442:1 13452:2 13470:1 13479:1 13480:1 13499:1 13509:1 13524:2 13531:1 13535:1 13548:1 13552:1 13554:1 13556:1 13563:2 13567:1 13578:3 13585:2 13595:1 13630:1 13632:2 13637:2 13641:1 13666:2 13679:2 13680:1 13690:1 13695:1 13713:1 13720:1 13723:1 13731:1 13745:1 13756:3 13768:1 13771:2 13774:1 13804:1 13807:1 13847:1 13850:1 13885:2 13891:2 13892:2 13895:1 13902:1 13903:1 13912:1 13923:1 13932:1 13977:1 13979:3 13984:1 13997:1 13998:1 13999:2 14004:1 14032:1 14083:1 14087:1 14092:1 14094:2 14115:1 14116:1 14125:1 14155:1 14170:2 14182:1 14187:1 14204:1 14211:1 14212:1 14213:2 14226:1 14240:2 14245:3 14248:1 14270:1 14274:1 14275:1 14286:1 14295:2 14311:3 14315:1 14318:1 14334:1 14336:1 14345:2 14354:1 14362:2 14378:1 14380:1 14385:1 14387:1 14391:1 14397:6 14409:3 14419:1 14424:3 14435:3 14457:1 14460:1 14467:1 14484:1 14486:1 14489:2 14552:2 14553:1 14564:2 14571:1 14575:1 14579:4 14584:1 14586:1 14593:1 14605:4 14606:1 14609:1 14612:1 14624:1 14626:1 14639:1 14658:2 14666:2 14703:2 14706:1 14709:1 14719:3 14726:2 14735:1 14737:1 14739:3 14753:1 14764:3 14777:1 14782:1 14802:1 14817:1 14819:1 14841:1 14847:1 14853:1 14857:15 14859:1 14872:1 14874:1 14876:3 14878:1 14900:3 14904:1 14943:1 14954:1 14958:1 14962:2 14972:3 14976:1 14990:2 14994:1 15008:2 15015:1 15029:1 15030:2 15046:1 15052:1 15060:1 15062:1 15064:1 15068:1 15074:2 15075:1 15100:3 15103:1 15117:1 15122:1 15128:6 15130:2 15131:2 15132:6 15133:1 15134:1 15135:2 15137:1 15139:2 15140:4 15143:1 15144:1 15147:1 15150:1 15151:1 15153:1 15161:1 15188:2 15201:1 15204:1 15206:2 15216:1 15232:1 15239:1 15251:1 15255:2 15256:1 15279:2 15284:1 15288:2 15289:2 15307:1 15328:1 15336:1 15337:1 15367:1 15370:1 15418:1 15430:1 15434:2 15445:1 15446:2 15455:2 15456:1 15466:1 15470:5 15475:1 15478:2 15487:1 15495:1 15496:1 15501:2 15504:1 15505:4 15509:2 15513:1 15522:3 15526:2 15534:3 15544:1 15553:1 15585:14 15588:1 15604:1 15606:1 15611:1 15613:4 15614:1 15618:1 15656:1 15671:1 15672:1 15678:2 15689:1 15695:4 15705:1 15706:1 15720:2 15722:2 15737:1 15741:1 15742:1 15756:2 15761:1 15778:5 15791:1 15802:1 15811:1 15823:1 15841:1 15849:1 15878:2 15879:3 15895:1 15898:1 15936:2 15945:1 15946:1 15950:1 15970:1 15973:1 15980:1 15987:2 15992:1 16006:1 16014:1 16022:2 16034:2 16039:1 16041:2 16047:1 16055:1 16072:1 16116:1 16119:1 16150:1 16159:1 16163:1 16183:1 16187:1 16199:2 16202:1 16212:1 16213:3 16218:1 16222:1 16224:1 16232:3 16238:2 16240:2 16244:2 16249:1 16250:10 16284:1 16287:2 16288:1 16293:2 16294:1 16298:1 16305:1 16311:1 16313:2 16315:1 16316:1 16331:1 16368:1 16369:1 16389:3 16392:1 16403:1 16416:2 16427:1 16428:1 16434:1 16435:1 16440:1 16451:1 16453:1 16482:1 16483:1 16484:1 16508:1 16513:1 16518:2 16533:1 16554:1 16557:1 16576:1 16578:1 16593:1 16594:2 16598:1 16600:1 16602:1 16614:1 16616:1 16646:1 16661:1 16684:1 16709:1 16710:1 16720:2 16740:2 16814:2 16815:1 16823:1 16833:1 16838:1 16844:1 16862:1 16878:1 16879:1 16885:1 16907:1 16934:1 16937:3 16946:1 16951:1 16981:1 16986:1 16999:15 17009:1 17025:1 17050:1 17071:1 17087:14 17097:4 17099:1 17102:1 17103:5 17128:3 17142:1 17156:2 17184:4 17192:2 17204:2 17218:2 17219:1 17243:3 17251:2 17263:2 17276:2383 17285:1 17289:1 17301:1 17302:1 17347:1 17351:1 17353:1 17374:2 17389:1 17420:1 17421:1 17445:1 17465:1 17467:1 17469:1 17472:2 17474:6 17475:4 17488:1 17493:1 17495:1 17515:1 17526:1 17535:1 17542:1 17549:1 17551:1 17552:1 17592:1 17595:3 17599:2 17608:1 17644:1 17649:1 17653:1 17654:3 17674:1 17684:2 17697:1 17699:1 17700:1 17707:2 17709:1 17717:1 17728:1 17735:1 17737:1 17748:2 17754:1 17765:1 17776:1 17787:1 17791:2 17795:2 17803:1 17809:1 17817:2 17836:2 17837:2 17855:3 17859:1 17862:1 17870:3 17876:1 17895:3 17896:1 17900:1 17904:1 17905:1 17913:1 17917:2 17927:9 17949:1 17951:1 17966:1 17970:2 17971:1 17978:2 17992:5 17999:1 18009:1 18011:1 18029:1 18043:1 18047:4 18052:1 18054:2 18060:1 18062:2 18070:1 18075:4 18076:1 18081:1 18085:1 18090:2 18101:1 18104:4 18115:2 18116:1 18123:3 18141:1 18156:3 18159:1 18163:1 18178:1 18182:1 18183:2 18187:2 18193:1 18194:2 18197:1 18210:1 18218:1 18225:1 18228:1 18233:1 18234:1 18240:1 18247:1 18271:1 18282:3 18294:1 18295:2 18296:1 18297:1 18301:1 18303:3 18308:1 18323:1 18326:1 18328:1 18332:1 18339:1 18343:1 18349:2 18354:1 18359:1 18371:1 18374:1 18381:2 18382:1 18390:1 18408:1 18416:1 18420:2 18422:4 18427:1 18428:4 18430:1 18474:1 18477:1 18478:1 18492:1 18495:2 18499:1 18501:1 18503:2 18504:2 18508:2 18519:1 18521:2 18525:3 18529:3 18533:1 18534:2 18536:2 18538:1 18548:1 18556:5 18564:2 18580:1 18582:1 18596:1 18598:1 18603:2 18604:4 18627:1 18628:1 18638:1 18639:1 18645:1 18653:1 18658:1 18665:3 18685:1 18690:1 18691:2 18707:1 18716:3 18718:20 18719:2 18726:1 18735:5 18738:1 18756:1 18759:1 18767:1 18784:2 18785:1 18792:1 18793:1 18805:1 18811:1 18817:1 18821:1 18835:1 18838:1 18847:1 18848:1 18866:1 18868:1 18875:1 18905:4 18919:2 18933:1 18937:2 18941:1 18949:2 18960:1 18962:1 18969:2 18996:8 18998:2 19005:1 19013:1 19022:1 19039:1 19040:1 19041:1 19050:1 19057:1 19080:1 19082:1 19085:4 19101:3 19112:1 19117:1 19119:1 19125:1 19128:1 19132:1 19133:1 19140:1 19143:2 19175:2 19183:3 19189:2 19190:2 19201:2 19204:2 19207:1 19209:1 19215:2 19221:1 19243:5 19245:2 19254:2 19256:1 19261:1 19268:1 19276:1 19279:2 19284:1 19286:1 19293:1 19311:2 19317:1 19324:2 19325:1 19331:5 19334:1 19338:2 19341:1 19344:1 19349:2 19359:3 19385:2 19391:1 19394:1 19412:1 19415:1 19421:2 19422:1 19431:2 19439:2 19443:2 19447:2 19450:2 19451:1 19459:2 19478:1 19484:2 19506:2 19515:1 19516:4 19521:1 19522:1 19523:4 19532:1 19537:2 19542:1 19545:1 19546:1 19547:1 19551:1 19552:1 19558:2 19564:1 19577:1 19581:1 19583:1 19591:1 19595:1 19614:1 19620:1 19627:1 19629:1 19633:2 19636:2 19648:1 19661:1 19664:1 19697:1 19736:1 19756:2 19757:1 19770:2 19773:1 19782:2 19785:2 19790:1 19791:1 19794:1 19795:1 19798:1 19799:1 19806:1 19812:2 19821:3 19823:1 19830:1 19837:1 19845:1 19866:1 19873:1 19880:1 19889:1 19896:1 19897:1 19919:2 19921:1 19922:1 19927:1 19931:2 19934:1 19936:1 19948:1 19951:2 19954:2 19959:2 19960:1 19961:1 19963:2 19964:1 19965:1 19976:1 19978:2 19989:1 19998:14 20001:1 20009:2 20010:2 20017:2 20028:1 20041:1 20049:1 20051:1 20061:1 20063:1 20066:1 20067:1 20071:1 20072:1 20075:1 20099:1 20104:1 20125:2 20134:1 20138:2 20141:1 20142:1 20147:1 20149:1 20151:4 20154:3 20156:1 20166:2 20177:1 20178:1 20179:1 20182:1 20183:1 20205:1 20206:1 20210:3 20212:4 20240:1 20248:1 20252:1 20316:4 20321:1 20322:5 20325:3 20326:3 20328:1 20329:1 20334:1 20337:2 20340:1 20341:2 20350:1 20351:1 20352:5 20360:1 20362:1 20368:1 20381:1 20396:2 20400:2 20403:2 20417:1 20444:1 20446:1 20471:2 20473:2 20480:1 20481:1 20483:1 20486:1 20492:1 20497:1 20503:1 20509:1 20523:1 20524:1 20529:1 20532:1 20533:2 20534:1 20544:1 20546:1 20553:1 20556:1 20567:2 20570:1 20572:5 20578:1 20587:1 20588:4 20592:3 20593:1 20599:1 20611:1 20619:1 20628:2 20630:1 20632:1 20633:1 20634:4 20647:1 20655:2 20656:9 20658:1 20662:1 20666:1 20670:1 20675:1 20676:1 20692:1 20693:1 20719:8 20720:1 20733:1 20754:1 20772:1 20779:6 20780:1 20784:1 20787:1 20796:1 20797:1 20812:1 20813:3 20842:1 20844:4 20857:1 20864:1 20879:1 20886:1 20887:6 20889:2 20900:3 20903:1 20905:3 20914:1 20919:1 20924:1 20926:1 20938:1 20940:4 20955:1 20962:1 20963:3 20968:3 20976:1 20982:1 20991:1 20998:1 21005:1 21026:1 21029:1 21062:1 21066:1 21072:1 21073:1 21074:1 21079:1 21090:1 21100:2 21115:10 21116:3 21130:2 21134:2 21138:1 21140:4 21149:1 21150:3 21163:2 21176:1 21203:1 21215:1 21216:1 21218:2 21220:2 21234:1 21235:1 21238:1 21256:1 21257:1 21261:1 21262:1 21263:1 21266:1 21282:1 21284:1 21296:1 21303:2 21306:1 21309:2 21311:1 21333:1 21340:3 21370:3 21385:1 21415:2 21434:1 21453:3 21456:3 21462:5 21469:2 21479:1 21484:1 21488:3 21498:2 21500:2 21501:1 21502:3 21512:1 21520:4 21551:1 21554:1 21559:1 21580:1 21586:1 21599:1 21613:4 21624:1 21635:1 21642:1 21647:1 21650:2 21674:2 21682:1 21686:2 21694:1 21695:1 21703:1 21708:1 21709:1 21724:1 21726:2 21730:3 21733:3 21742:1 21743:1 21753:1 21755:1 21757:1 21772:3 21773:2 21774:1 21777:2 21792:1 21794:1 21800:1 21845:1 21846:4 21848:1 21853:1 21859:1 21861:1 21862:4 21863:1 21864:1 21865:1 21867:1 21869:1 21871:1 21898:1 21913:3 21916:1 21917:1 21930:1 21974:2 21981:2 21991:1 22014:2 22019:1 22052:1 22053:1 22066:1 22068:2 22074:1 22076:2 22078:1 22088:1 22102:1 22120:1 22122:1 22125:1 22130:1 22136:2 22146:1 22157:2 22176:1 22188:1 22196:1 22218:1 22230:2 22238:1 22260:2 22263:1 22282:2 22296:4 22304:1 22320:1 22327:1 22328:7 22345:1 22352:1 22358:3 22370:1 22380:1 22382:1 22389:1 22391:5 22400:1 22402:1 22403:1 22407:1 22412:1 22435:3 22457:2 22459:1 22467:1 22469:2 22478:1 22502:1 22522:1 22530:1 22531:1 22550:1 22553:1 22559:1 22561:1 22564:3 22565:4 22571:1 22572:1 22575:1 22578:2 22581:1 22582:1 22588:1 22592:1 22601:1 22612:6 22626:1 22627:1 22629:1 22632:1 22640:1 22642:1 22644:1 22646:1 22662:12 22663:6 22675:1 22685:1 22688:2 22693:1 22695:1 22696:1 22705:1 22709:1 22710:1 22713:1 22718:3 22726:2 22739:1 22755:1 22802:1 22811:1 22827:1 22841:1 22842:1 22853:2 22856:1 22862:1 22868:1 22870:1 22876:2 22880:2 22886:2 22890:1 22895:1 22901:2 22903:2 22907:1 22923:1 22929:1 22931:1 22937:1 22942:1 22943:2 22946:1 22948:1 22953:1 22963:1 22968:1 22974:4 22987:2 22992:1 22993:1 22997:1 23012:2 23018:2 23022:1 23024:2 23041:1 23048:1 23077:18 23078:2 23099:1 23101:1 23105:1 23106:1 23115:1 23123:1 23130:1 23136:2 23139:1 23144:1 23146:1 23158:2 23161:1 23162:1 23169:1 23170:1 23181:1 23188:1 23197:1 23202:1 23217:1 23222:1 23259:1 23261:1 23291:10 23292:1 23296:1 23307:1 23316:2 23319:1 23329:1 23350:2 23363:1 23373:1 23375:6 23378:1 23387:1 23398:1 23404:2 23406:1 23426:1 23432:1 23436:2 23440:1 23446:1 23454:1 23465:1 23481:1 23497:2 23503:2 23505:1 23514:2 23528:1 23532:1 23545:1 23557:1 23601:1 23602:2 23609:1 23613:1 23617:1 23628:1 23631:1 23635:2 23639:5 23642:1 23648:1 23651:1 23652:1 23664:1 23666:1 23669:1 23695:7 23700:1 23704:1 23706:1 23719:1 23721:7 23738:2 23739:2 23756:1 23768:1 23771:1 23774:3 23775:1 23784:1 23786:1 23793:1 23802:1 23803:1 23826:1 23840:1 23845:2 23889:1 23895:1 23909:1 23923:1 23932:1 23943:1 23969:1 23987:1 23999:2 24004:1 24009:2 24019:1 24024:1 24025:1 24027:1 24041:1 24055:1 24061:3 24064:1 24092:4 24101:1 24104:1 24105:1 24126:1 24129:1 24138:2 24140:1 24149:2 24150:1 24153:1 24161:1 24165:15 24166:2 24177:2 24185:1 24193:1 24195:1 24206:1 24214:1 24220:2 24230:1 24231:1 24233:1 24237:1 24245:1 24251:1 24255:2 24256:2 24259:1 24263:1 24272:4 24275:3 24280:3 24285:2 24286:4 24289:1 24290:1 24304:1 24310:1 24345:1 24350:1 24357:1 24363:1 24372:1 24376:1 24377:2 24400:2 24408:2 24416:1 24420:2 24424:1 24425:1 24427:2 24434:1 24443:6 24444:1 24446:1 24454:1 24455:1 24462:1 24471:1 24472:1 24478:1 24479:1 24500:1 24502:2 24503:2 24521:1 24524:1 24553:1 24570:1 24592:1 24596:1 24600:3 24622:1 24625:1 24643:1 24648:1 24653:1 24655:1 24658:5 24675:1 24676:1 24710:1 24713:1 24715:1 24720:1 24721:1 24733:1 24737:1 24740:3 24744:1 24747:1 24768:1 24773:2 24774:2 24784:1 24789:1 24792:3 24809:1 24812:1 24826:1 24830:1 24839:1 24844:2 24870:1 24889:1 24892:1 24900:1 24917:1 24928:2 24938:1 24944:4 24949:1 24953:1 24954:2 24964:1 24966:1 24972:1 24975:1 24976:2 24994:1 25000:1 25005:2 25019:2 25022:1 25026:1 25028:1 25031:2 25032:1 25059:1 25065:1 25068:1 25070:1 25073:2 25076:1 25081:1 25109:1 25110:1 25125:5 25129:3 25132:2 25145:1 25147:1 25177:1 25185:2 25191:1 25195:1 25200:2 25207:2 25213:1 25214:1 25216:1 25224:2 25232:1 25239:1 25242:1 25244:1 25250:1 25251:1 25254:3 25255:1 25256:1 25260:3 25263:1 25267:2 25269:1 25273:1 25277:1 25281:2 25291:2 25295:1 25299:1 25302:1 25329:1 25330:1 25339:1 25346:4 25363:1 25370:2 25389:2 25412:1 25451:1 25454:2 25479:1 25487:1 25491:2 25514:2 25530:1 25532:1 25536:1 25538:3 25543:5 25560:1 25572:1 25582:1 25600:7 25630:1 25632:1 25644:1 25661:1 25683:1 25693:1 25698:1 25699:1 25702:2 25717:2 25731:1 25739:1 25752:1 25768:1 25775:1 25777:1 25791:2 25793:3 25794:1 25801:1 25804:2 25808:1 25809:2 25820:1 25822:1 25828:1 25829:5 25837:1 25841:1 25843:1 25856:2 25861:2 25863:2 25867:1 25869:1 25871:5 25875:1 25880:1 25881:1 25888:1 25892:3 25893:1 25905:3 25909:1 25913:3 25917:1 25941:1 25946:3 25964:1 25965:1 25983:1 26005:1 26012:3 26015:4 26022:5 26028:1 26054:5 26067:1 26071:1 26080:1 26081:1 26092:1 26098:1 26099:1 26101:1 26123:1 26125:6 26129:1 26132:2 26163:1 26174:1 26175:1 26185:1 26194:1 26213:1 26214:1 26221:1 26222:1 26229:1 26230:2 26236:1 26244:1 26265:3 26298:1 26300:1 26301:1 26305:1 26306:7 26308:1 26312:2 26315:1 26325:2 26340:1 26368:5 26383:1 26401:1 26411:1 26418:1 26452:1 26464:1 26475:1 26486:1 26512:1 26527:2 26538:1 26539:1 26540:2 26541:3 26544:2 26547:3 26553:1 26557:1 26558:1 26565:1 26580:1 26600:1 26612:1 26616:1 26625:1 26655:3 26659:1 26664:2 26690:2 26695:1 26696:2 26706:1 26710:1 26713:1 26722:1 26733:1 26735:1 26737:1 26745:1 26750:3 26751:1 26757:2 26759:1 26785:1 26787:1 26790:4 26793:2 26806:1 26810:1 26832:1 26837:1 26843:1 26848:1 26855:1 26862:1 26874:1 26879:1 26883:3 26889:1 26891:1 26910:1 26920:3 26923:1 26940:1 26957:2 26961:2 26973:1 26978:1 26979:3 26986:3 26987:3 26988:1 26990:1 26996:1 27031:5 27034:1
1 13:1 35:1 39:1 43:1 47:1 50:1 55:1 71:1 89:1 120:1 137:1 138:3 139:1 144:1 150:2 157:1 165:2 169:3 178:1 182:6 192:1 209:1 222:1 233:1 238:7 255:3 264:1 280:2 306:1 315:4 317:3 327:3 328:1 334:3 339:1 346:2 359:1 362:3 372:1 382:2 395:5 397:5 404:1 412:1 416:1 442:1 445:1 446:1 472:2 500:1 511:1 515:2 532:1 544:3 552:1 568:1 578:1 582:4 584:2 588:1 604:2 612:1 630:1 665:1 678:1 683:1 711:1 722:1 723:2 726:1 743:1 745:2 751:2 764:1 789:6 794:1 798:1 800:1 802:4 805:1 808:1 822:16 826:4 837:3 854:4 868:1 872:1 873:4 874:2 875:8 877:1 878:2 880:4 882:1 894:2 912:5 915:4 926:1 927:1 953:2 958:1 972:1 1002:1 1013:2 1017:1 1035:1 1037:1 1053:1 1059:2 1061:1 1064:1 1108:3 1109:3 1114:1 1116:2 1118:1 1122:2 1125:1 1126:1 1141:1 1150:1 1151:1 1154:1 1158:2 1165:1 1170:2 1173:2 1180:1 1187:1 1193:2 1195:1 1213:1 1225:1 1227:1 1228:1 1244:1 1253:1 1262:1 1264:1 1266:1 1269:1 1279:1 1292:1 1312:1 1316:1 1324:1 1325:2 1339:1 1345:1 1346:2 1364:1 1366:1 1370:1 1371:3 1379:1 1392:1 1397:1 1402:1 1404:1 1405:2 1408:1 1419:1 1427:1 1437:1 1445:1 1448:4 1454:7 1456:2 1465:1 1469:1 1490:2 1499:1 1501:1 1510:1 1514:2 1523:1 1526:1 1528:1 1530:2 1538:1 1542:2 1549:1 1553:1 1555:1 1558:1 1559:2 1568:1 1571:3 1580:1 1584:1 1587:1 1592:1 1596:2 1600:1 1601:1 1606:1 1615:1 1619:1 1625:1 1634:2 1635:1 1647:1 1652:1 1653:5 1659:1 1663:1 1675:1 1681:1 1684:3 1687:1 1688:2 1696:6 1703:1 1723:4 1724:3 1729:1 1737:1 1745:1 1749:1 1757:2 1759:4 1761:1 1762:1 1764:1 1777:1 1787:2 1793:1 1794:1 1801:3 1806:2 1807:1 1809:1 1822:2 1825:1 1866:1 1870:9 1875:1 1881:1 1885:2 1892:5 1896:1 1897:1 1899:2 1904:1 1907:2 1925:1 1931:1 1938:1 1952:1 1956:1 1959:1 1976:2 1978:1 1983:1 1984:1 1988:2 1990:1 2004:1 2014:1 2027:11 2037:1 2046:1 2051:1 2053:1 2071:1 2077:1 2078:1 2092:2 2103:5 2107:1 2119:1 2120:1 2123:1 2126:2 2142:2 2143:2 2145:1 2147:3 2148:5 2150:1 2152:1 2154:2 2157:2 2158:2 2159:1 2160:3 2161:5 2164:1 2165:1 2167:5 2170:3 2172:5 2173:7 2185:1 2196:1 2216:1 2219:1 2224:3 2226:3 2229:1 2234:1 2246:2 2248:1 2250:1 2257:1 2274:1 2275:1 2277:1 2285:1 2293:1 2294:1 2296:1 2321:1 2328:1 2332:1 2333:1 2342:1 2350:3 2351:1 2360:1 2367:1 2377:3 2388:2 2390:1 2403:1 2405:1 2413:1 2417:1 2432:3 2435:2 2437:1 2439:7 2443:1 2444:1 2445:1 2454:1 2457:1 2478:4 2479:1 2480:1 2483:1 2496:2 2503:2 2504:1 2505:1 2506:2 2513:7 2520:2 2526:2 2529:9 2535:6 2537:1 2545:2 2547:1 2553:1 2555:2 2557:1 2562:3 2563:2 2574:2 2589:1 2591:2 2597:3 2602:1 2605:1 2611:1 2638:1 2640:2 2641:2 2654:3 2655:1 2659:1 2662:7 2667:2 2671:1 2684:1 2686:1 2691:1 2710:1 2716:3 2719:1 2738:4 2745:1 2749:1 2752:16 2773:3 2774:1 2776:1 2777:1 2779:1 2786:2 2791:3 2792:1 2794:1 2811:20 2813:3 2826:1 2836:2 2839:3 2848:1 2856:2 2866:1 2889:1 2893:1 2898:1 2902:1 2907:1 2917:1 2918:5 2934:3 2939:1 2948:1 2952:1 2970:1 2979:1 2989:1 2993:1 2998:1 3006:2 3014:1 3027:2 3035:1 3042:3 3057:1 3070:1 3089:1 3090:2 3128:1 3129:2 3130:1 3134:1 3139:1 3149:6 3150:1 3193:1 3216:1 3225:2 3230:1 3234:1 3260:1 3263:1 3264:1 3265:1 3272:1 3277:1 3283:1 3285:1 3286:1 3291:1 3299:1 3305:1 3308:1 3328:1 3343:1 3358:2 3362:1 3383:1 3384:14 3399:1 3403:2 3405:2 3406:2 3409:1 3425:1 3429:1 3430:1 3438:1 3446:1 3477:1 3479:2 3480:1 3484:1 3489:3 3490:1 3493:2 3501:1 3523:1 3548:1 3549:1 3552:1 3554:1 3559:2 3562:1 3565:2 3569:1 3576:3 3580:1 3581:1 3596:1 3599:1 3603:2 3608:1 3610:1 3626:2 3628:1 3631:1 3640:1 3648:3 3649:1 3663:2 3664:1 3668:4 3670:1 3673:2 3677:1 3678:2 3687:4 3698:1 3700:2 3715:1 3716:2 3730:1 3732:2 3734:3 3738:1 3756:2 3765:6 3766:4 3772:2 3808:1 3810:2 3813:1 3818:1 3834:1 3837:1 3839:2 3857:1 3864:1 3866:2 3870:1 3872:1 3875:1 3878:1 3891:2 3900:1 3910:2 3924:1 3932:1 3937:4 3938:1 3940:2 3941:1 3944:2 3946:1 3950:1 3954:2 3977:1 3981:1 3992:1 4008:1 4025:1 4027:2 4029:1 4045:7 4075:3 4081:1 4090:2 4097:1 4101:1 4104:2 4114:2 4127:2 4133:1 4149:1 4152:1 4156:4 4157:2 4169:1 4177:4 4194:1 4202:1 4203:1 4211:1 4225:2 4233:2 4246:1 4249:1 4252:1 4256:1 4257:3 4259:1 4267:1 4276:1 4292:3 4304:1 4314:5 4327:1 4331:1 4332:1 4355:4 4363:2 4371:1 4372:1 4377:4 4380:1 4397:4 4420:2 4437:1 4440:2 4443:3 4456:3 4459:1 4468:1 4469:2 4475:1 4494:1 4496:2 4507:1 4511:1 4523:1 4524:1 4537:1 4549:1 4565:15 4567:2 4574:1 4576:1 4581:1 4586:1 4595:1 4601:1 4613:1 4623:1 4629:1 4664:1 4669:3 4684:1 4685:4 4687:7 4688:3 4690:1 4693:2 4695:2 4696:1 4698:1 4700:1 4701:2 4703:6 4704:4 4706:1 4708:2 4709:8 4715:2 4716:5 4719:1 4721:1 4733:1 4764:1 4776:1 4789:2 4796:1 4820:1 4853:1 4891:1 4903:1 4917:1 4930:1 4937:2 4973:1 4977:1 5002:3 5008:2 5018:1 5057:1 5061:1 5066:2 5088:5 5094:1 5101:1 5121:1 5140:1 5146:1 5157:2 5163:1 5171:1 5180:1 5188:1 5197:1 5220:1 5230:1 5245:1 5252:1 5254:1 5264:1 5284:2 5287:1 5292:1 5298:2 5302:1 5305:1 5313:5 5314:1 5316:2 5317:1 5320:3 5321:1 5336:1 5337:1 5369:3 5379:2 5380:1 5383:1 5394:6 5403:1 5406:2 5452:1 5461:1 5468:1 5481:1 5483:1 5485:1 5503:1 5507:1 5509:1 5510:1 5516:1 5522:2 5524:1 5538:1 5544:1 5549:1 5562:1 5568:1 5569:2 5576:2 5584:1 5590:2 5593:1 5594:2 5596:3 5607:1 5610:6 5612:1 5613:1 5619:1 5620:2 5626:2 5628:1 5629:1 5632:1 5633:1 5636:1 5641:1 5668:1 5671:1 5673:1 5678:1 5680:2 5682:1 5688:1 5692:2 5693:1 5696:12 5715:1 5735:3 5742:1 5761:1 5772:1 5787:4 5797:2 5812:6 5817:1 5824:1 5854:1 5869:1 5872:1 5890:1 5897:1 5898:1 5901:1 5905:2 5906:3 5908:1 5911:1 5912:1 5915:2 5916:1 5921:2 5923:4 5924:3 5958:1 5997:1 6008:1 6010:1 6035:1 6046:1 6051:4 6052:2 6063:1 6072:1 6106:1 6115:1 6124:2 6129:2 6133:1 6141:1 6148:1 6154:2 6177:1 6191:2 6199:2 6208:1 6213:1 6222:1 6270:1 6273:1 6281:1 6290:2 6292:1 6295:1 6298:1 6301:1 6316:8 6321:1 6323:2 6325:1 6327:3 6329:1 6336:1 6338:1 6344:1 6355:2 6375:1 6378:1 6379:1 6385:1 6387:1 6389:1 6424:1 6426:3 6437:2 6442:1 6448:2 6465:1 6470:1 6476:1 6479:1 6483:2 6484:1 6491:2 6507:1 6525:2 6529:1 6530:1 6537:1 6545:1 6546:1 6553:1 6563:6 6569:2 6588:1 6595:1 6596:1 6600:1 6606:1 6609:3 6610:2 6618:1 6623:6 6624:1 6626:1 6631:5 6634:1 6637:1 6657:1 6658:1 6660:1 6670:1 6678:1 6701:1 6702:1 6707:4 6716:4 6724:1 6732:1 6735:1 6752:3 6755:1 6757:1 6765:1 6778:1 6786:1 6788:1 6790:1 6798:1 6806:1 6812:1 6824:1 6850:1 6868:1 6871:1 6875:1 6879:2 6917:1 6931:1 6935:2 6936:6 6940:3 6943:1 6945:1 6951:3 6955:1 6971:6 6972:2 6974:2 6988:1 6989:3 6998:1 7002:1 7012:1 7019:1 7020:2 7023:1 7028:1 7038:1 7043:1 7045:1 7051:1 7053:1 7066:1 7067:1 7075:1 7076:2 7081:1 7086:1 7090:1 7101:1 7102:1 7114:1 7120:1 7138:3 7153:4 7154:6 7165:2 7170:1 7173:4 7176:2 7178:3 7180:1 7183:1 7192:1 7198:4 7199:3 7200:1 7213:46 7214:2 7220:1 7222:1 7228:1 7229:10 7231:7 7236:2 7240:1 7270:1 7276:1 7278:1 7287:1 7288:1 7297:1 7301:3 7302:2 7307:1 7309:1 7320:1 7322:2 7331:2 7341:3 7358:1 7360:1 7362:1 7364:1 7380:2 7388:1 7389:1 7392:1 7399:1 7404:1 7409:1 7410:2 7440:1 7451:1 7453:1 7454:3 7459:1 7483:1 7489:1 7490:1 7491:1 7501:2 7540:1 7549:1 7559:1 7564:1 7569:1 7573:1 7591:1 7592:1 7600:1 7604:1 7608:1 7621:1 7628:1 7631:1 7639:1 7643:1 7644:2 7654:1 7663:1 7677:1 7678:1 7700:26 7706:1 7724:3 7726:3 7729:1 7731:2 7732:1 7752:1 7758:1 7773:6 7776:1 7777:1 7781:1 7810:1 7821:4 7823:1 7825:2 7827:1 7830:1 7831:1 7844:1 7854:2 7855:4 7860:3 7868:1 7874:1 7894:2 7896:1 7902:1 7906:1 7918:1 7920:1 7930:1 7937:1 7939:1 7946:1 7957:1 7958:2 7966:2 7968:1 7969:1 8028:1 8033:1 8034:1 8038:1 8039:1 8041:1 8048:1 8061:2 8064:2 8076:6 8078:1 8087:2 8090:3 8109:1 8115:1 8116:1 8122:1 8127:2 8130:1 8131:1 8140:1 8145:1 8146:1 8162:2 8168:1 8191:1 8195:1 8196:1 8228:1 8233:1 8234:1 8240:1 8244:1 8271:1 8272:1 8285:3 8293:1 8316:1 8319:2 8320:1 8324:3 8347:3 8353:1 8360:2 8361:1 8370:1 8377:1 8393:1 8394:1 8395:1 8404:1 8407:2 8415:6 8416:1 8417:1 8423:1 8425:1 8429:1 8436:1 8442:2 8444:1 8455:7 8456:1 8477:1 8484:1 8500:1 8505:11 8506:6 8516:2 8517:1 8551:3 8554:1 8561:1 8566:1 8570:3 8572:1 8589:1 8596:1 8603:2 8605:2 8607:3 8609:2 8624:1 8629:1 8635:1 8644:1 8661:1 8672:1 8681:2 8683:1 8689:1 8692:5 8694:1 8696:1 8700:1 8708:1 8714:1 8715:3 8720:1 8721:1 8734:4 8770:1 8771:1 8782:1 8795:1 8802:1 8807:1 8823:3 8832:1 8835:3 8840:1 8852:1 8858:1 8865:1 8885:1 8888:1 8901:1 8905:1 8913:1 8919:7 8924:3 8956:3 8957:1 8964:1 8965:1 8975:3 8981:1 9005:1 9019:1 9024:1 9028:1 9031:3 9032:3 9034:2 9038:1 9056:1 9061:1 9064:2 9066:2 9096:2 9099:1 9107:1 9117:1 9142:2 9159:1 9163:1 9173:2 9178:1 9180:1 9186:2 9196:1 9200:1 9201:1 9210:1 9242:1 9243:1 9248:1 9249:1 9262:1 9266:1 9289:1 9291:1 9294:1 9296:1 9298:1 9301:5 9318:4 9325:4 9327:2 9336:1 9354:2 9363:1 9371:3 9372:1 9378:1 9396:1 9398:1 9406:1 9410:2 9415:2 9427:1 9433:1 9434:1 9444:1 9449:4 9453:1 9481:2 9485:1 9490:12 9492:1 9493:2 9497:2 9501:1 9519:2 9520:1 9535:1 9540:1 9555:1 9572:1 9587:1 9588:2 9590:1 9597:1 9607:1 9622:1 9628:1 9643:1 9644:1 9646:1 9649:1 9651:4 9661:1 9663:1 9665:2 9702:1 9715:4 9720:1 9722:1 9723:1 9729:1 9732:3 9739:1 9742:1 9747:1 9749:2 9755:4 9769:1 9771:1 9787:1 9797:1 9803:1 9804:1 9810:1 9817:1 9819:2 9823:2 9827:1 9837:2 9839:1 9842:1 9846:1 9853:1 9860:1 9864:1 9866:3 9870:1 9877:2 9879:1 9881:1 9886:7 9889:4 9899:2 9900:3 9905:1 9910:1 9917:1 9920:2 9926:1 9943:2 9953:7 9954:2 9964:1 9979:2 9982:1 9983:1 9991:4 9995:1 10013:1 10026:1 10028:1 10035:3 10047:2 10054:1 10057:6 10071:1 10080:1 10092:1 10093:1 10106:3 10134:1 10140:1 10146:1 10180:1 10191:1 10195:1 10201:1 10206:1 10224:1 10225:1 10239:1 10240:2 10242:2 10245:1 10246:2 10252:1 10254:1 10261:1 10264:5 10265:5 10268:1 10276:1 10282:2 10283:2 10287:1 10288:1 10289:4 10293:1 10298:1 10307:1 10309:1 10310:3 10313:3 10318:1 10321:1 10336:2 10345:1 10363:1 10372:1 10373:1 10376:4 10392:1 10406:1 10411:1 10424:1 10434:2 10436:1 10440:1 10455:1 10466:1 10493:1 10499:1 10512:1 10515:1 10518:1 10530:1 10532:3 10556:1 10575:1 10586:1 10592:1 10597:2 10599:1 10611:3 10614:2 10617:1 10627:2 10630:2 10632:1 10633:1 10635:2 10637:1 10644:3 10646:1 10647:1 10648:2 10657:1 10663:3 10667:2 10678:1 10693:17 10694:1 10696:1 10707:1 10718:1 10730:1 10734:4 10742:1 10745:2 10746:2 10756:1 10759:2 10769:1 10786:1 10788:2 10799:2 10803:1 10813:2 10818:2 10831:1 10847:1 10859:1 10863:1 10884:1 10890:1 10906:1 10924:1 10932:3 10933:1 10934:1 10936:1 10937:1 10950:1 10951:4 10955:1 10956:2 10957:1 10960:2 10962:1 10968:1 10969:1 10977:1 10979:1 10988:1 10991:1 10992:1 10995:1 10998:1 11003:2 11006:5 11009:4 11014:1 11031:1 11040:1 11055:1 11073:1 11088:1 11100:1 11118:1 11120:1 11135:2 11141:1 11151:1 11156:1 11159:1 11160:1 11166:6 11173:1 11184:2 11188:2 11189:1 11201:1 11206:1 11214:1 11220:2 11227:2 11243:2 11246:1 11254:2 11261:1 11263:2 11283:1 11301:2 11306:1 11314:1 11317:1 11321:1 11327:2 11333:1 11365:1 11372:1 11376:1 11380:5 11381:3 11382:2 11394:1 11406:2 11412:1 11415:1 11418:1 11424:1 11476:1 11478:2 11479:1 11502:1 11506:1 11513:1 11520:1 11534:1 11542:1 11547:1 11557:1 11574:1 11635:1 11638:3 11662:2 11674:1 11686:1 11689:1 11695:1 11705:1 11718:1 11720:2 11721:1 11736:3 11745:1 11758:1 11767:1 11774:1 11824:1 11831:1 11836:1 11839:1 11840:2 11847:1 11859:1 11863:1 11882:15 11886:5 11899:2 11904:1 11915:1 11923:1 11928:2 11929:3 11936:4 11943:1 11952:1 11954:1 11959:1 11964:1 11965:1 11974:1 11980:2 11981:1 11983:1 11989:1 12016:1 12034:1 12039:1 12045:2 12048:1 12068:1 12069:1 12081:1 12090:1 12091:2 12100:2 12101:1 12110:1 12112:1 12134:1 12151:5 12161:2 12163:1 12208:1 12209:1 12231:1 12241:1 12245:1 12252:1 12254:4 12257:4 12268:1 12269:1 12273:1 12274:2 12283:2 12290:1 12306:6 12323:1 12325:2 12346:1 12351:4 12352:1 12367:1 12379:1 12385:2 12386:1 12387:1 12389:1 12399:9 12400:1 12410:2 12413:1 12428:1 12436:1 12437:1 12440:2 12446:1 12452:1 12453:1 12463:16 12469:1 12474:1 12490:1 12506:2 12508:1 12515:3 12529:1 12533:2 12544:1 12547:2 12556:1 12557:1 12559:1 12590:3 12613:1 12616:6 12617:1 12633:1 12640:2 12642:1 12645:1 12668:4 12685:1 12692:1 12694:1 12696:1 12703:3 12705:1 12707:1 12714:1 12719:1 12721:1 12728:6 12729:1 12732:1 12733:2 12734:1 12736:2 12737:1 12741:7 12742:3 12754:1 12760:1 12761:1 12763:1 12765:1 12787:1 12805:1 12814:1 12831:1 12842:2 12848:2 12854:1 12861:1 12872:1 12878:1 12887:5 12919:1 12926:1 12929:1 12932:1 12939:1 12941:1 12946:1 12956:1 12960:1 12978:2 12986:1 12996:1 12997:1 12999:1 13005:7 13025:3 13032:1 13041:1 13064:1 13076:1 13077:2 13085:1 13090:1 13103:1 13109:1 13111:1 13118:1 13131:2 13139:1 13155:1 13161:1 13165:1 13170:1 13173:1 13180:1 13188:1 13197:1 13211:1 13218:1 13237:1 13245:2 13261:5 13277:1 13288:1 13309:1 13320:1 13380:1 13383:3 13384:4 13391:1 13404:2 13406:1 13410:2 13412:1 13432:1 13436:1 13442:1 13452:2 13464:1 13470:1 13479:2 13480:1 13499:1 13509:1 13524:2 13531:1 13535:1 13548:1 13552:1 13554:1 13556:1 13563:2 13567:1 13578:3 13585:2 13595:1 13630:1 13632:2 13637:2 13641:1 13666:2 13679:2 13680:1 13690:1 13695:1 13713:1 13720:1 13723:1 13731:1 13745:1 13756:3 13768:1 13771:2 13774:1 13804:1 13807:1 13847:1 13850:1 13885:2 13891:2 13892:2 13895:1 13902:1 13903:1 13912:1 13923:1 13932:1 13977:1 13979:3 13984:1 13997:1 13998:1 13999:2 14004:1 14032:1 14083:1 14087:1 14092:1 14094:2 14115:1 14116:1 14125:1 14155:1 14170:2 14182:1 14187:1 14204:1 14211:1 14212:1 14213:2 14226:1 14240:2 14245:3 14248:1 14270:1 14274:1 14275:1 14286:1 14295:2 14311:3 14315:1 14318:1 14334:1 14336:1 14345:2 14354:1 14362:2 14378:1 14380:1 14385:1 14387:1 14391:1 14397:6 14409:3 14419:1 14424:4 14435:3 14457:1 14460:1 14467:1 14484:1 14486:1 14489:2 14552:2 14553:1 14564:2 14571:1 14575:1 14579:4 14584:1 14586:1 14593:1 14605:4 14606:1 14609:1 14612:1 14624:1 14626:1 14639:1 14658:2 14666:2 14703:2 14706:1 14709:1 14719:3 14726:2 14735:1 14737:1 14739:3 14753:1 14764:3 14777:1 14782:1 14802:1 14817:1 14819:1 14841:1 14847:1 14853:1 14855:1 14857:15 14859:1 14872:1 14874:1 14876:3 14878:1 14900:3 14904:1 14943:2 14954:1 14958:1 14962:2 14972:3 14976:1 14990:2 14994:1 15008:2 15015:1 15029:1 15030:2 15046:1 15052:1 15060:1 15062:1 15064:1 15068:1 15074:2 15075:1 15100:3 15103:1 15117:1 15122:1 15128:6 15130:2 15131:2 15132:6 15133:1 15134:1 15135:2 15137:1 15139:2 15140:5 15143:1 15144:1 15147:1 15150:1 15151:2 15153:1 15161:1 15188:2 15201:1 15204:1 15206:2 15216:1 15232:1 15239:1 15251:1 15255:2 15256:1 15279:2 15284:1 15288:2 15289:2 15294:1 15307:1 15312:1 15328:1 15336:1 15337:1 15367:1 15370:1 15418:1 15430:1 15434:2 15445:1 15446:2 15455:2 15456:1 15466:1 15470:5 15475:1 15478:2 15487:1 15495:1 15496:1 15501:2 15504:1 15505:4 15509:2 15513:1 15516:1 15522:3 15526:2 15534:3 15544:1 15553:1 15585:14 15588:1 15604:1 15606:1 15611:2 15613:4 15614:1 15618:1 15656:1 15671:1 15672:1 15678:2 15689:1 15695:4 15705:1 15706:1 15720:2 15722:2 15737:1 15741:1 15742:1 15756:2 15761:1 15778:5 15791:1 15802:1 15811:1 15823:1 15841:1 15849:1 15878:2 15879:3 15895:1 15898:1 15927:1 15936:2 15945:1 15946:1 15950:1 15970:1 15973:1 15980:1 15987:2 15992:1 16006:1 16014:1 16022:2 16031:1 16034:2 16039:1 16041:2 16047:1 16055:1 16072:1 16116:1 16119:1 16150:1 16159:1 16163:1 16183:1 16187:1 16199:2 16202:1 16212:1 16213:3 16218:1 16222:1 16224:1 16232:3 16238:2 16240:2 16244:2 16249:1 16250:10 16284:1 16287:2 16288:1 16293:2 16294:1 16298:1 16305:1 16311:1 16313:2 16315:1 16316:1 16331:1 16368:1 16369:1 16389:4 16392:1 16403:1 16416:2 16427:1 16428:1 16434:1 16435:1 16440:1 16451:1 16453:1 16482:1 16483:1 16484:1 16508:1 16513:1 16518:2 16533:1 16554:1 16557:1 16576:1 16578:1 16589:1 16593:1 16594:2 16598:1 16600:1 16602:1 16614:1 16616:1 16646:1 16661:1 16684:2 16709:1 16710:1 16720:2 16740:2 16814:2 16815:1 16823:1 16833:1 16838:1 16844:1 16862:1 16878:1 16879:1 16885:1 16894:1 16907:1 16934:1 16937:3 16946:1 16951:1 16981:1 16986:1 16999:15 17009:1 17025:1 17050:1 17071:1 17087:14 17097:4 17099:1 17102:1 17103:5 17128:3 17142:1 17156:2 17184:6 17192:2 17204:2 17218:2 17219:1 17243:3 17251:2 17263:2 17276:2426 17285:1 17289:1 17299:1 17301:1 17302:1 17347:1 17351:1 17353:1 17374:2 17389:1 17420:1 17421:1 17445:1 17465:1 17467:1 17469:1 17472:2 17474:6 17475:4 17488:1 17493:1 17495:1 17515:1 17526:1 17535:1 17542:1 17549:1 17551:1 17552:1 17592:1 17595:3 17599:2 17608:1 17615:1 17644:1 17649:1 17653:1 17654:3 17659:1 17674:1 17684:2 17697:1 17699:1 17700:1 17707:2 17709:1 17717:1 17728:1 17735:1 17737:1 17748:2 17754:1 17765:1 17776:1 17787:1 17791:2 17795:2 17803:1 17809:1 17817:2 17836:2 17837:2 17855:3 17859:1 17862:1 17870:3 17876:1 17895:3 17896:1 17900:1 17904:1 17905:1 17913:1 17917:2 17927:9 17949:1 17951:1 17966:1 17970:2 17971:1 17978:2 17992:5 17993:1 17999:1 18009:1 18011:2 18029:1 18043:1 18047:4 18052:1 18054:2 18060:1 18062:2 18070:1 18075:4 18076:1 18081:1 18085:1 18090:2 18101:1 18104:4 18115:2 18116:1 18123:3 18141:1 18156:3 18159:1 18163:1 18178:1 18182:1 18183:2 18187:2 18193:1 18194:2 18197:1 18210:1 18218:1 18225:1 18228:1 18233:1 18234:1 18240:1 18247:1 18271:1 18282:3 18294:1 18295:2 18296:1 18297:1 18301:1 18303:3 18308:1 18321:1 18323:1 18326:1 18328:1 18332:1 18339:1 18343:1 18349:2 18354:1 18359:2 18371:1 18374:2 18381:2 18382:1 18390:1 18408:1 18409:1 18416:1 18420:2 18422:4 18427:1 18428:4 18430:1 18474:1 18477:1 18478:1 18492:1 18495:2 18499:1 18501:1 18503:2 18504:2 18508:2 18519:1 18521:2 18525:3 18529:3 18533:1 18534:2 18536:2 18538:1 18548:1 18556:5 18564:2 18580:1 18582:1 18596:1 18598:1 18603:2 18604:4 18627:1 18628:2 18638:1 18639:1 18645:1 18653:1 18658:1 18665:3 18685:1 18690:2 18691:2 18707:1 18708:1 18716:3 18718:20 18719:2 18726:1 18735:5 18738:1 18756:2 18759:1 18767:1 18784:3 18785:1 18792:1 18793:1 18805:1 18811:1 18817:1 18821:1 18835:1 18838:1 18845:1 18847:1 18848:1 18866:1 18868:1 18875:1 18905:4 18919:2 18933:1 18937:2 18941:1 18949:2 18960:1 18962:1 18969:2 18996:8 18998:2 19005:1 19013:1 19022:1 19039:1 19040:1 19041:1 19050:1 19054:1 19057:1 19080:1 19082:1 19085:4 19101:3 19112:1 19117:1 19119:1 19125:1 19128:1 19132:1 19133:1 19140:1 19143:2 19175:2 19183:3 19189:2 19190:2 19201:2 19204:2 19207:1 19209:1 19215:2 19221:1 19243:5 19245:2 19254:2 19256:1 19261:1 19268:1 19276:1 19279:2 19284:1 19286:1 19293:1 19308:1 19311:2 19317:1 19324:2 19325:1 19331:5 19334:1 19338:2 19341:1 19344:1 19349:2 19359:3 19385:2 19391:1 19392:1 19394:1 19412:1 19415:1 19421:2 19422:1 19431:2 19439:2 19443:2 19447:2 19450:2 19451:1 19459:2 19476:1 19478:1 19484:2 19506:2 19515:1 19516:4 19521:1 19522:1 19523:4 19532:1 19537:2 19542:1 19545:1 19546:1 19547:1 19551:1 19552:1 19558:2 19564:1 19577:1 19581:1 19583:1 19591:1 19595:1 19614:1 19620:1 19627:1 19629:1 19633:2 19636:2 19645:1 19648:1 19661:1 19664:1 19697:1 19736:1 19756:2 19757:1 19770:2 19773:1 19782:2 19785:2 19790:1 19791:1 19794:1 19795:1 19798:1 19799:1 19806:1 19812:2 19821:3 19823:1 19830:1 19837:1 19845:1 19866:1 19873:1 19880:1 19889:1 19896:1 19897:1 19919:2 19921:1 19922:1 19927:1 19931:2 19934:1 19936:1 19948:1 19951:2 19954:2 19959:2 19960:1 19961:1 19963:2 19964:1 19965:1 19976:1 19978:2 19989:1 19998:14 20001:1 20009:2 20010:2 20017:2 20028:1 20041:1 20049:1 20051:1 20061:1 20063:1 20066:2 20067:1 20071:1 20072:1 20075:1 20099:1 20104:1 20125:2 20134:1 20138:2 20141:1 20142:1 20147:1 20149:1 20151:6 20154:3 20156:1 20166:2 20177:1 20178:1 20179:1 20182:1 20183:1 20204:1 20205:1 20206:1 20210:3 20212:4 20240:1 20248:1 20252:1 20316:4 20321:1 20322:5 20325:3 20326:3 20328:1 20329:1 20334:1 20337:2 20340:1 20341:2 20350:1 20351:1 20352:5 20360:1 20362:1 20368:1 20369:1 20381:1 20396:2 20400:2 20403:2 20417:1 20444:1 20446:1 20471:2 20473:2 20480:1 20481:1 20483:1 20486:1 20492:1 20497:1 20503:1 20509:1 20523:1 20524:1 20529:1 20532:1 20533:2 20534:1 20544:1 20546:1 20553:1 20556:1 20567:2 20570:1 20572:5 20578:1 20587:1 20588:4 20592:3 20593:1 20599:1 20611:1 20619:1 20628:2 20630:1 20632:1 20633:1 20634:4 20647:1 20655:2 20656:9 20658:1 20662:1 20666:1 20670:1 20675:1 20676:1 20692:1 20693:1 20719:8 20720:1 20733:1 20754:1 20772:1 20779:6 20780:1 20784:1 20787:1 20796:1 20797:1 20812:1 20813:3 20831:1 20842:1 20844:4 20857:1 20864:1 20877:1 20879:1 20886:1 20887:6 20889:2 20900:3 20903:1 20905:4 20914:1 20919:1 20924:1 20926:1 20938:1 20940:4 20955:1 20962:1 20963:3 20965:1 20968:3 20976:1 20982:1 20991:1 20998:1 21005:1 21026:1 21029:1 21062:1 21066:1 21072:1 21073:1 21074:1 21079:1 21090:1 21100:2 21115:10 21116:3 21130:2 21134:2 21138:1 21140:4 21149:1 21150:3 21163:2 21176:1 21203:1 21215:1 21216:1 21218:2 21220:2 21234:1 21235:1 21238:1 21256:1 21257:1 21261:1 21262:1 21263:1 21266:1 21282:1 21284:1 21296:1 21303:2 21306:1 21309:2 21311:1 21333:1 21340:3 21370:3 21385:1 21415:2 21434:1 21453:3 21456:3 21462:7 21469:2 21479:1 21484:1 21488:3 21498:2 21500:2 21501:1 21502:3 21512:1 21520:4 21551:1 21554:1 21559:1 21580:1 21586:1 21599:1 21613:4 21624:1 21635:1 21642:1 21647:1 21650:2 21674:2 21682:1 21686:2 21694:1 21695:1 21703:1 21708:1 21709:1 21724:1 21726:2 21730:4 21733:3 21742:1 21743:1 21753:1 21755:1 21757:1 21772:3 21773:2 21774:1 21777:2 21792:1 21794:1 21800:1 21845:1 21846:4 21848:1 21853:1 21859:1 21861:1 21862:4 21863:1 21864:1 21865:1 21867:1 21869:1 21871:1 21898:1 21913:3 21916:1 21917:1 21930:1 21974:2 21981:2 21991:1 22014:2 22019:1 22052:1 22053:1 22066:1 22068:2 22074:1 22076:2 22078:1 22088:1 22102:1 22120:1 22122:1 22125:1 22130:1 22136:2 22146:1 22157:2 22176:1 22188:1 22196:1 22218:1 22230:2 22232:1 22238:1 22260:2 22263:1 22282:2 22296:4 22304:1 22320:1 22327:1 22328:7 22345:1 22352:1 22354:1 22358:3 22363:1 22370:1 22380:1 22382:1 22389:1 22391:5 22400:1 22402:1 22403:1 22407:1 22412:1 22435:3 22457:2 22459:1 22467:1 22469:2 22478:1 22502:1 22522:1 22530:1 22531:1 22550:1 22553:1 22559:1 22561:1 22564:3 22565:4 22571:1 22572:1 22575:1 22578:2 22581:1 22582:1 22588:1 22592:1 22601:1 22612:6 22626:1 22627:1 22629:1 22632:1 22640:1 22642:1 22644:1 22646:1 22662:12 22663:6 22675:1 22685:1 22688:2 22690:1 22693:1 22695:1 22696:1 22705:1 22709:1 22710:1 22713:2 22718:3 22726:2 22739:1 22755:1 22764:1 22802:1 22811:1 22827:1 22841:1 22842:1 22853:2 22856:1 22862:1 22868:1 22870:1 22876:2 22880:2 22886:2 22890:1 22895:1 22901:2 22903:2 22907:1 22923:1 22929:1 22931:1 22937:1 22942:1 22943:2 22946:1 22948:1 22953:1 22963:1 22968:1 22974:4 22987:2 22992:1 22993:1 22997:1 23012:2 23018:2 23022:1 23024:2 23025:1 23041:1 23048:1 23077:18 23078:2 23099:1 23101:1 23105:1 23106:1 23115:1 23123:1 23130:1 23136:2 23139:1 23144:1 23146:1 23158:2 23161:1 23162:1 23169:1 23170:1 23181:1 23188:1 23197:1 23202:1 23217:1 23222:1 23259:1 23261:1 23291:10 23292:1 23296:1 23307:1 23316:2 23319:1 23329:1 23350:2 23363:1 23373:1 23375:6 23378:1 23387:1 23398:1 23404:2 23406:1 23426:1 23432:1 23436:2 23440:1 23446:1 23454:1 23465:1 23481:1 23497:2 23503:2 23505:1 23514:2 23528:1 23532:1 23545:1 23557:1 23601:1 23602:2 23609:1 23613:1 23617:1 23622:1 23628:1 23631:1 23635:2 23639:5 23642:1 23648:1 23651:1 23652:1 23664:1 23666:1 23669:1 23695:7 23700:1 23704:1 23706:1 23719:1 23721:7 23738:2 23739:2 23756:1 23768:1 23771:1 23774:3 23775:1 23784:1 23786:1 23793:1 23802:1 23803:1 23826:1 23840:1 23845:2 23869:1 23889:1 23895:1 23902:1 23909:1 23923:1 23932:1 23943:1 23969:1 23987:1 23988:1 23999:2 24004:1 24009:2 24019:1 24024:1 24025:1 24027:1 24041:1 24055:1 24061:3 24064:1 24092:4 24101:1 24104:1 24105:1 24113:1 24126:1 24129:1 24138:2 24140:1 24149:2 24150:1 24153:1 24161:1 24165:15 24166:2 24177:2 24185:1 24193:1 24195:1 24206:1 24214:1 24220:2 24230:1 24231:1 24233:1 24237:1 24245:1 24251:1 24255:2 24256:2 24259:1 24263:1 24272:4 24275:3 24280:3 24285:2 24286:4 24289:1 24290:1 24304:1 24310:1 24345:1 24350:1 24351:1 24357:1 24359:1 24363:1 24372:1 24376:1 24377:2 24400:2 24408:2 24416:1 24420:2 24424:1 24425:1 24427:2 24434:1 24443:6 24444:1 24446:1 24454:1 24455:1 24458:1 24462:1 24471:1 24472:1 24478:1 24479:1 24500:1 24502:2 24503:2 24521:1 24524:1 24553:1 24570:1 24592:1 24596:1 24600:3 24622:1 24625:1 24643:1 24648:1 24653:1 24655:1 24658:6 24675:1 24676:1 24710:1 24713:1 24715:1 24720:1 24721:1 24733:1 24737:1 24740:3 24744:1 24747:1 24768:1 24773:2 24774:2 24784:1 24789:1 24792:3 24809:1 24812:1 24826:1 24830:1 24839:1 24844:2 24870:1 24880:1 24889:1 24892:1 24900:1 24917:1 24928:2 24938:1 24944:4 24949:1 24953:1 24954:2 24964:1 24966:1 24972:1 24975:1 24976:2 24994:1 25000:1 25005:2 25019:2 25022:1 25026:1 25028:1 25031:2 25032:1 25059:1 25065:1 25068:1 25070:1 25073:2 25076:1 25081:1 25109:1 25110:1 25125:6 25129:3 25132:2 25145:1 25147:1 25170:1 25177:1 25185:2 25191:1 25195:1 25200:2 25207:2 25213:1 25214:1 25216:1 25224:2 25232:1 25239:1 25242:1 25244:1 25250:1 25251:1 25254:3 25255:1 25256:1 25257:1 25260:3 25263:1 25267:2 25269:1 25273:1 25277:1 25281:2 25291:2 25295:1 25299:1 25302:1 25329:1 25330:1 25339:1 25346:5 25363:1 25370:2 25389:2 25412:1 25451:1 25454:2 25479:1 25487:1 25491:2 25514:2 25530:1 25532:1 25536:1 25538:3 25543:5 25560:1 25572:1 25582:1 25600:7 25630:1 25632:1 25644:1 25661:1 25683:1 25693:1 25698:1 25699:1 25702:2 25717:2 25731:1 25739:1 25752:1 25768:1 25775:1 25777:1 25791:2 25793:3 25794:1 25797:1 25801:1 25804:2 25808:1 25809:2 25820:1 25822:1 25828:1 25829:5 25837:1 25841:1 25843:1 25856:3 25861:2 25863:2 25867:1 25869:1 25871:5 25875:1 25880:1 25881:1 25888:1 25892:3 25893:1 25905:3 25909:1 25913:3 25917:1 25941:1 25946:3 25964:1 25965:1 25983:1 26005:1 26012:3 26015:4 26022:5 26028:1 26054:5 26067:1 26071:1 26080:1 26081:1 26092:1 26098:1 26099:1 26101:1 26123:1 26125:6 26129:1 26132:2 26163:1 26174:1 26175:1 26185:1 26194:1 26213:1 26214:1 26221:1 26222:1 26229:1 26230:2 26236:1 26244:1 26265:3 26298:1 26300:1 26301:1 26305:1 26306:7 26308:1 26312:2 26315:1 26325:2 26340:1 26341:1 26368:6 26383:1 26401:1 26411:1 26418:1 26452:1 26464:1 26475:1 26486:1 26512:1 26514:1 26527:2 26538:1 26539:1 26540:2 26541:3 26544:2 26547:3 26553:1 26557:1 26558:1 26565:1 26580:1 26600:1 26612:1 26616:1 26625:1 26655:3 26659:1 26664:2 26690:2 26695:1 26696:2 26706:1 26710:1 26713:1 26722:1 26733:1 26735:1 26737:1 26745:1 26750:3 26751:1 26757:2 26759:1 26785:1 26787:1 26790:4 26793:2 26806:1 26810:1 26832:1 26837:1 26843:1 26848:1 26855:1 26862:1 26874:1 26879:1 26883:3 26889:1 26891:1 26910:1 26920:3 26923:1 26940:1 26957:2 26961:2 26973:1 26978:1 26979:3 26986:3 26987:3 26988:1 26990:1 26996:1 27029:1 27031:5 27034:1
1 13:2 35:1 36:1 39:1 43:1 47:1 50:1 55:1 71:1 89:1 120:1 137:1 138:3 139:1 144:1 150:2 157:1 165:2 169:3 178:1 182:6 184:1 192:1 202:1 209:1 222:1 233:1 238:7 255:3 264:1 280:2 306:1 315:4 317:3 327:3 328:1 334:3 339:1 346:2 359:1 362:3 372:1 382:2 395:6 397:5 404:1 412:1 416:2 442:1 445:2 446:1 472:2 500:1 511:1 515:2 532:1 540:1 544:3 552:1 568:1 578:1 582:4 584:2 588:1 604:2 612:1 630:1 665:1 678:1 683:1 711:1 722:1 723:2 726:1 743:1 745:2 751:2 764:1 789:6 794:1 798:1 800:1 802:4 805:1 808:1 822:16 826:4 837:3 854:4 867:1 868:1 872:1 873:4 874:2 875:8 877:1 878:3 880:4 882:1 894:2 912:5 915:4 926:1 927:1 953:2 958:1 972:1 1002:1 1013:2 1017:1 1035:1 1037:1 1053:1 1059:2 1061:1 1064:1 1108:3 1109:3 1114:1 1116:2 1118:1 1122:2 1125:1 1126:1 1141:1 1150:1 1151:1 1154:1 1158:2 1165:1 1170:2 1173:2 1180:1 1187:1 1193:2 1195:1 1213:1 1225:1 1227:1 1228:1 1244:1 1253:1 1262:1 1264:1 1266:1 1269:1 1279:1 1292:1 1312:1 1316:1 1324:1 1325:2 1339:1 1345:1 1346:2 1364:1 1366:1 1370:1 1371:3 1379:1 1392:1 1397:1 1402:1 1404:1 1405:2 1408:1 1419:1 1427:1 1437:1 1445:1 1448:4 1454:8 1456:2 1465:1 1469:1 1490:2 1499:1 1501:1 1510:1 1514:3 1523:1 1526:1 1528:1 1530:2 1538:1 1542:2 1549:1 1553:1 1555:1 1558:1 1559:2 1568:1 1571:3 1580:1 1584:1 1587:1 1592:1 1596:2 1600:1 1601:1 1606:1 1615:1 1619:1 1625:1 1633:1 1634:2 1635:1 1647:1 1652:1 1653:5 1659:1 1663:1 1675:1 1681:1 1684:3 1687:1 1688:2 1696:6 1703:1 1723:4 1724:3 1729:1 1737:1 1745:1 1749:1 1757:2 1759:4 1761:1 1762:1 1764:1 1777:2 1786:1 1787:2 1793:1 1794:1 1801:3 1806:2 1807:1 1809:1 1822:2 1825:1 1866:1 1870:9 1875:1 1881:1 1885:2 1892:6 1896:1 1897:1 1899:2 1904:1 1907:2 1925:2 1931:1 1938:1 1949:1 1952:1 1956:1 1959:1 1976:2 1978:1 1983:2 1984:1 1988:2 1990:1 2004:1 2014:1 2027:11 2037:2 2046:1 2051:1 2053:1 2071:1 2077:1 2078:1 2092:2 2103:5 2107:1 2119:1 2120:1 2123:1 2126:2 2142:3 2143:2 2145:1 2147:3 2148:5 2150:1 2152:1 2154:2 2157:2 2158:2 2159:1 2160:4 2161:5 2164:1 2165:1 2167:5 2170:3 2172:5 2173:7 2185:1 2196:1 2216:1 2219:2 2224:3 2226:3 2229:1 2234:1 2246:2 2248:1 2250:1 2257:1 2274:1 2275:1 2277:1 2285:1 2293:1 2294:1 2296:1 2321:1 2328:1 2332:1 2333:1 2342:1 2350:3 2351:1 2360:1 2367:1 2371:1 2377:3 2388:2 2390:1 2403:1 2405:1 2413:1 2417:1 2432:3 2435:2 2437:1 2439:7 2443:1 2444:1 2445:1 2454:1 2457:1 2478:4 2479:1 2480:1 2483:1 2496:2 2503:2 2504:1 2505:1 2506:2 2513:7 2520:2 2526:2 2529:9 2535:6 2537:1 2545:2 2547:1 2553:1 2555:2 2557:1 2562:3 2563:2 2574:2 2589:1 2591:2 2597:3 2602:1 2605:2 2611:1 2638:1 2640:2 2641:2 2654:3 2655:1 2659:1 2662:7 2667:2 2671:1 2684:1 2686:1 2691:1 2710:1 2716:3 2719:1 2738:4 2745:1 2749:1 2752:16 2763:1 2773:3 2774:1 2776:1 2777:1 2779:1 2786:2 2791:3 2792:1 2794:1 2811:20 2813:3 2826:1 2836:2 2839:3 2848:1 2856:2 2866:1 2870:1 2889:1 2893:1 2898:1 2902:1 2907:1 2917:1 2918:5 2934:3 2939:1 2948:1 2952:1 2970:1 2979:1 2989:1 2993:1 2998:1 3006:2 3014:1 3027:2 3035:1 3042:3 3057:1 3070:1 3089:1 3090:2 3128:1 3129:2 3130:1 3134:1 3139:2 3149:7 3150:1 3193:1 3216:1 3225:3 3230:1 3234:1 3260:1 3263:1 3264:1 3265:1 3272:1 3277:1 3283:1 3285:1 3286:2 3291:1 3299:1 3305:1 3308:1 3328:1 3343:1 3358:2 3362:1 3383:1 3384:16 3399:1 3403:2 3405:2 3406:2 3409:1 3425:1 3429:1 3430:1 3438:1 3442:1 3446:1 3477:1 3479:2 3480:1 3484:1 3489:3 3490:1 3493:2 3501:1 3523:1 3548:1 3549:1 3552:1 3554:1 3559:2 3562:1 3565:2 3569:1 3576:3 3580:1 3581:1 3596:1 3599:1 3603:2 3608:1 3610:1 3626:2 3628:1 3631:1 3640:2 3648:3 3649:1 3663:2 3664:1 3668:4 3670:1 3673:2 3677:1 3678:2 3687:4 3698:1 3700:2 3715:1 3716:2 3730:1 3732:2 3734:3 3738:1 3756:2 3765:6 3766:4 3772:2 3808:1 3810:2 3813:1 3818:1 3834:1 3837:1 3839:2 3857:1 3864:1 3866:2 3870:1 3872:1 3875:1 3878:1 3891:2 3900:1 3910:2 3924:1 3932:1 3937:4 3938:1 3940:2 3941:1 3944:2 3946:1 3950:1 3954:2 3977:1 3981:1 3992:1 4008:1 4025:1 4027:2 4029:1 4045:7 4075:3 4081:1 4090:2 4097:1 4101:1 4104:2 4114:2 4127:2 4133:1 4149:1 4152:1 4156:4 4157:2 4169:1 4177:4 4194:1 4202:1 4203:1 4211:1 4220:1 4225:2 4233:2 4246:1 4249:1 4252:1 4256:1 4257:3 4259:1 4267:1 4276:1 4292:3 4304:1 4314:5 4327:1 4331:1 4332:1 4355:4 4363:2 4371:1 4372:1 4377:4 4380:2 4397:5 4417:1 4420:2 4437:1 4440:2 4443:3 4456:3 4459:1 4468:1 4469:2 4475:1 4494:1 4496:2 4507:1 4511:1 4523:1 4524:1 4537:1 4549:1 4565:15 4567:2 4574:1 4576:1 4581:1 4586:1 4595:1 4601:1 4613:1 4623:1 4629:1 4645:1 4664:1 4669:3 4677:1 4684:1 4685:4 4687:7 4688:3 4690:1 4693:2 4695:2 4696:2 4698:1 4700:1 4701:2 4703:6 4704:4 4706:1 4708:2 4709:8 4715:2 4716:5 4719:1 4721:1 4733:1 4764:1 4776:1 4789:2 4796:1 4820:1 4853:1 4891:1 4903:1 4917:1 4930:1 4937:2 4973:1 4977:1 5002:3 5008:2 5018:1 5057:1 5061:1 5066:2 5088:5 5094:1 5101:1 5110:1 5121:1 5140:1 5146:1 5157:2 5163:1 5171:1 5180:1 5188:1 5197:1 5220:1 5230:1 5245:1 5252:1 5254:1 5264:1 5284:2 5287:1 5290:1 5292:1 5298:2 5302:1 5305:1 5313:5 5314:1 5316:2 5317:1 5320:3 5321:1 5336:1 5337:1 5364:1 5369:3 5379:2 5380:1 5383:1 5394:6 5403:1 5406:2 5452:1 5461:1 5468:1 5481:1 5483:1 5485:1 5503:1 5507:1 5509:1 5510:1 5516:2 5522:3 5524:1 5538:1 5544:1 5549:1 5562:1 5568:1 5569:2 5576:2 5584:1 5590:2 5593:1 5594:2 5596:4 5607:1 5610:6 5612:1 5613:1 5619:1 5620:2 5626:2 5628:1 5629:1 5632:1 5633:1 5636:1 5641:1 5668:1 5671:1 5673:1 5678:1 5680:2 5682:1 5688:1 5692:2 5693:1 5696:12 5715:1 5735:3 5742:1 5761:1 5772:1 5787:4 5797:2 5812:6 5817:1 5824:1 5854:1 5869:1 5872:1 5890:1 5897:1 5898:1 5901:1 5905:2 5906:3 5908:1 5911:1 5912:1 5915:2 5916:1 5921:2 5923:4 5924:3 5958:1 5997:1 6008:1 6010:1 6035:1 6046:1 6051:4 6052:2 6063:1 6072:1 6106:1 6115:1 6124:2 6129:2 6133:1 6141:1 6148:1 6154:2 6177:1 6191:2 6199:2 6208:1 6213:1 6222:1 6270:1 6273:1 6281:1 6290:2 6292:1 6295:1 6298:1 6301:1 6316:8 6317:1 6321:1 6323:2 6325:1 6327:3 6329:1 6336:1 6338:1 6344:1 6355:2 6371:1 6375:1 6378:1 6379:1 6385:1 6387:1 6389:1 6424:1 6426:3 6437:2 6442:1 6448:2 6451:1 6465:1 6470:1 6476:1 6479:1 6483:2 6484:1 6491:2 6507:1 6525:2 6529:1 6530:1 6537:1 6545:1 6546:1 6553:1 6563:6 6569:2 6581:1 6588:1 6595:1 6596:1 6600:1 6606:1 6609:3 6610:2 6618:1 6623:6 6624:1 6626:1 6631:5 6634:1 6637:1 6657:1 6658:1 6660:1 6670:1 6678:1 6701:1 6702:1 6707:4 6716:4 6724:1 6732:1 6735:1 6752:3 6755:1 6757:1 6765:1 6778:1 6786:1 6788:1 6790:1 6798:1 6806:1 6812:1 6824:1 6850:1 6868:1 6871:1 6875:1 6879:2 6917:1 6931:1 6935:2 6936:6 6940:3 6942:1 6943:1 6945:1 6951:3 6955:1 6971:6 6972:2 6974:2 6988:1 6989:3 6998:1 7002:1 7012:1 7019:1 7020:2 7023:2 7028:1 7038:1 7043:1 7045:1 7051:1 7053:1 7066:1 7067:1 7075:1 7076:2 7081:1 7086:2 7090:1 7101:1 7102:1 7114:1 7120:1 7138:3 7153:4 7154:6 7165:2 7170:1 7173:4 7176:2 7178:3 7180:1 7183:1 7192:1 7198:4 7199:3 7200:1 7213:48 7214:2 7220:1 7222:1 7228:1 7229:10 7231:7 7236:2 7240:1 7270:1 7276:1 7278:1 7287:1 7288:2 7297:1 7301:3 7302:2 7307:1 7309:1 7320:1 7322:2 7331:2 7341:3 7358:1 7360:1 7362:1 7364:1 7380:2 7388:1 7389:1 7392:2 7399:1 7404:1 7409:1 7410:2 7440:1 7451:1 7453:1 7454:3 7459:1 7483:1 7489:1 7490:1 7491:1 7501:2 7540:1 7549:1 7559:1 7564:1 7569:1 7573:1 7591:1 7592:1 7600:1 7604:1 7608:1 7621:1 7628:1 7631:1 7639:1 7643:1 7644:2 7654:1 7663:1 7677:1 7678:1 7700:27 7706:1 7724:3 7726:3 7729:1 7731:2 7732:1 7752:1 7758:1 7773:6 7776:1 7777:1 7781:1 7810:1 7821:4 7823:2 7825:2 7827:1 7830:1 7831:1 7844:1 7854:2 7855:4 7860:3 7868:1 7874:1 7894:2 7896:1 7902:1 7906:1 7918:1 7920:1 7930:1 7937:1 7939:1 7946:1 7947:1 7957:1 7958:2 7966:2 7968:1 7969:1 8006:1 8028:1 8033:1 8034:1 8038:1 8039:1 8041:1 8048:1 8061:2 8064:2 8076:6 8078:1 8087:2 8090:3 8109:1 8115:1 8116:1 8122:1 8127:2 8130:1 8131:1 8140:1 8145:1 8146:1 8162:2 8168:1 8191:1 8195:1 8196:1 8228:1 8233:1 8234:1 8240:1 8244:1 8271:1 8272:1 8285:3 8293:1 8316:1 8319:2 8320:1 8324:3 8347:3 8353:1 8360:2 8361:1 8370:1 8377:1 8393:1 8394:1 8395:1 8404:1 8407:2 8415:7 8416:1 8417:1 8423:1 8425:1 8429:1 8436:1 8442:2 8444:1 8455:7 8456:1 8477:1 8484:1 8500:1 8505:11 8506:6 8516:3 8517:1 8524:1 8551:3 8554:1 8561:1 8566:1 8570:3 8572:1 8589:1 8596:1 8603:2 8605:2 8607:3 8609:2 8624:1 8629:1 8635:1 8644:1 8661:1 8672:1 8681:2 8683:1 8689:1 8692:5 8694:1 8696:1 8700:1 8708:1 8714:1 8715:3 8720:1 8721:1 8734:4 8770:1 8771:1 8782:1 8795:1 8802:1 8807:1 8823:3 8832:1 8835:3 8840:1 8852:1 8854:1 8858:1 8863:1 8865:1 8885:1 8888:1 8901:1 8905:1 8913:1 8919:7 8924:3 8956:3 8957:1 8964:1 8965:1 8975:3 8981:1 9005:1 9019:1 9024:1 9028:1 9031:3 9032:3 9034:2 9038:1 9056:1 9061:1 9064:2 9066:2 9096:2 9099:1 9107:1 9117:1 9142:2 9159:1 9163:1 9173:2 9178:1 9180:1 9186:2 9196:1 9200:1 9201:1 9210:1 9242:1 9243:1 9248:1 9249:1 9262:1 9266:1 9289:1 9291:1 9294:1 9296:1 9298:1 9301:5 9318:4 9325:4 9327:2 9336:1 9354:2 9363:1 9371:3 9372:1 9378:1 9391:1 9396:1 9398:1 9406:1 9410:2 9415:2 9427:1 9433:1 9434:1 9444:1 9449:4 9453:1 9481:2 9485:1 9490:12 9492:1 9493:2 9497:2 9501:1 9519:2 9520:1 9535:1 9540:1 9544:1 9555:1 9572:1 9587:1 9588:2 9590:1 9597:1 9607:1 9622:1 9628:1 9643:1 9644:1 9646:1 9649:1 9651:4 9661:1 9663:1 9665:2 9702:1 9710:1 9715:4 9720:1 9722:1 9723:1 9729:1 9732:3 9739:1 9741:1 9742:1 9747:1 9749:2 9755:4 9769:1 9771:1 9787:1 9797:1 9803:1 9804:1 9810:1 9817:1 9819:2 9823:2 9827:1 9837:2 9839:1 9842:1 9846:1 9853:1 9860:1 9864:1 9866:3 9870:1 9877:2 9879:1 9881:1 9886:7 9889:4 9899:2 9900:3 9905:1 9910:1 9917:1 9920:2 9926:1 9943:2 9953:7 9954:2 9964:1 9979:2 9982:1 9983:1 9991:4 9995:1 10013:1 10026:1 10028:1 10035:3 10047:2 10054:1 10057:7 10071:2 10080:1 10092:1 10093:1 10106:3 10134:1 10140:1 10146:1 10180:1 10191:1 10195:1 10201:1 10206:1 10224:1 10225:1 10239:1 10240:2 10242:2 10245:1 10246:2 10252:1 10254:1 10261:1 10264:5 10265:5 10268:1 10275:1 10276:1 10282:2 10283:2 10287:1 10288:1 10289:4 10293:1 10298:1 10307:1 10309:1 10310:3 10313:3 10318:1 10321:1 10336:2 10345:1 10363:1 10372:1 10373:1 10376:4 10378:1 10392:1 10406:1 10411:1 10424:1 10434:2 10436:1 10440:1 10455:1 10466:1 10493:1 10499:1 10512:1 10515:1 10518:1 10530:1 10532:3 10556:1 10575:1 10586:1 10592:1 10597:2 10599:1 10611:3 10614:2 10617:1 10627:2 10630:2 10632:1 10633:1 10635:2 10637:1 10644:3 10646:1 10647:1 10648:2 10657:1 10663:3 10667:2 10678:1 10693:17 10694:1 10696:1 10707:1 10718:1 10730:1 10734:4 10742:1 10745:2 10746:2 10756:1 10759:2 10769:1 10786:1 10788:2 10799:2 10803:1 10813:2 10818:2 10831:1 10847:1 10859:1 10863:1 10884:1 10890:1 10906:1 10924:1 10932:3 10933:1 10934:1 10936:1 10937:1 10950:1 10951:4 10955:1 10956:2 10957:1 10960:2 10962:1 10968:1 10969:1 10977:1 10979:1 10988:1 10991:1 10992:1 10995:1 10998:1 11003:2 11006:5 11009:4 11014:1 11031:1 11040:1 11055:1 11073:1 11088:1 11100:1 11118:1 11120:1 11135:2 11141:1 11151:1 11156:1 11159:1 11160:1 11166:6 11173:1 11184:2 11188:2 11189:1 11201:1 11206:1 11213:1 11214:1 11220:2 11227:2 11243:2 11246:1 11254:2 11261:1 11263:2 11283:1 11301:2 11306:1 11314:1 11317:2 11321:1 11327:2 11333:1 11365:1 11372:1 11376:1 11380:5 11381:3 11382:2 11394:1 11406:2 11412:1 11415:1 11418:1 11424:1 11476:1 11478:2 11479:1 11502:1 11506:1 11513:1 11520:1 11534:1 11542:1 11547:1 11557:1 11574:1 11635:1 11638:3 11662:2 11674:1 11686:1 11689:1 11695:1 11705:1 11718:1 11720:2 11721:1 11736:3 11745:1 11758:1 11767:1 11774:1 11824:1 11831:1 11836:1 11839:1 11840:2 11847:1 11859:1 11863:1 11882:15 11886:5 11899:2 11904:1 11915:1 11923:1 11928:2 11929:3 11936:4 11943:1 11952:1 11954:1 11959:1 11964:2 11965:1 11974:1 11980:2 11981:1 11983:1 11989:1 12016:1 12034:1 12039:1 12045:2 12048:1 12068:1 12069:1 12081:1 12090:1 12091:2 12100:2 12101:1 12108:1 12110:1 12112:1 12134:1 12151:5 12161:2 12163:1 12208:1 12209:1 12231:1 12241:2 12245:1 12252:1 12254:4 12257:4 12268:1 12269:2 12273:1 12274:2 12283:2 12290:1 12306:6 12323:1 12325:2 12346:1 12351:4 12352:1 12367:1 12379:1 12385:2 12386:1 12387:1 12389:2 12399:9 12400:1 12410:2 12413:1 12428:1 12436:1 12437:1 12440:2 12446:1 12452:1 12453:1 12463:16 12469:1 12474:1 12490:1 12506:2 12508:2 12515:3 12529:1 12533:2 12544:1 12547:2 12556:1 12557:1 12559:1 12590:3 12613:1 12616:6 12617:1 12633:1 12640:2 12642:1 12645:1 12668:4 12685:1 12692:1 12694:1 12696:1 12703:3 12705:1 12707:1 12714:1 12719:1 12721:1 12728:6 12729:1 12732:1 12733:2 12734:1 12736:2 12737:1 12741:7 12742:3 12754:1 12760:1 12761:1 12763:1 12764:1 12765:1 12787:1 12805:1 12814:1 12831:1 12842:2 12848:2 12854:1 12861:1 12872:1 12878:1 12887:6 12919:1 12926:1 12929:1 12932:1 12939:1 12941:1 12946:1 12956:2 12960:1 12978:2 12986:1 12996:1 12997:1 12999:1 13005:7 13025:3 13032:1 13041:1 13064:1 13076:1 13077:2 13085:1 13090:1 13103:1 13109:1 13111:1 13118:1 13131:2 13139:1 13155:1 13161:1 13165:1 13170:1 13173:1 13180:1 13188:1 13197:1 13211:1 13218:1 13237:1 13245:2 13261:5 13277:1 13288:1 13309:1 13320:1 13380:1 13383:3 13384:4 13391:1 13404:2 13406:1 13410:2 13412:1 13432:1 13436:1 13442:1 13452:2 13464:1 13470:1 13479:2 13480:1 13499:1 13509:1 13524:2 13531:1 13535:1 13548:1 13552:1 13554:1 13556:1 13563:2 13567:1 13578:3 13585:2 13595:1 13630:1 13632:2 13637:2 13641:1 13666:2 13679:2 13680:1 13690:1 13695:2 13713:1 13720:1 13723:1 13731:1 13745:1 13756:3 13768:1 13771:2 13774:1 13804:1 13807:1 13847:1 13850:1 13885:2 13891:2 13892:2 13895:1 13902:1 13903:1 13912:1 13923:2 13932:1 13977:1 13979:3 13984:1 13997:1 13998:1 13999:2 14002:1 14004:1 14032:1 14083:1 14087:1 14092:1 14094:2 14115:1 14116:1 14125:1 14155:1 14170:2 14182:1 14187:1 14204:1 14211:1 14212:1 14213:2 14226:1 14240:2 14245:3 14248:1 14270:1 14274:1 14275:1 14286:1 14295:2 14311:3 14315:1 14318:1 14334:1 14336:1 14345:2 14354:1 14362:2 14378:1 14380:1 14385:1 14387:1 14391:1 14397:6 14409:3 14419:1 14424:4 14435:3 14457:1 14460:1 14467:1 14476:1 14484:1 14486:1 14489:2 14540:1 14552:2 14553:1 14564:2 14571:1 14575:1 14579:4 14584:1 14586:1 14593:1 14603:2 14605:4 14606:1 14609:1 14612:1 14624:1 14626:1 14639:1 14658:2 14666:2 14703:2 14706:1 14709:1 14719:3 14726:2 14735:1 14737:1 14739:3 14753:1 14764:3 14777:1 14782:1 14802:1 14817:1 14819:1 14841:1 14847:1 14852:1 14853:1 14855:1 14857:15 14859:1 14872:1 14874:1 14876:3 14878:1 14900:3 14904:1 14943:2 14954:1 14958:1 14962:2 14972:3 14976:1 14990:2 14994:1 15008:2 15015:1 15029:1 15030:2 15046:1 15052:1 15060:1 15062:1 15064:1 15068:1 15074:2 15075:1 15100:3 15103:1 15117:1 15122:1 15128:6 15130:2 15131:2 15132:6 15133:2 15134:1 15135:2 15137:1 15139:2 15140:5 15143:1 15144:1 15147:1 15150:1 15151:2 15153:1 15161:1 15177:1 15188:2 15201:1 15204:1 15206:2 15216:1 15232:1 15239:1 15251:1 15255:2 15256:1 15279:2 15282:1 15284:1 15288:2 15289:2 15294:1 15307:2 15312:1 15328:1 15336:1 15337:1 15367:1 15370:1 15418:1 15430:1 15434:2 15445:1 15446:2 15455:2 15456:1 15466:1 15470:5 15475:1 15478:2 15487:1 15495:1 15496:1 15501:2 15504:1 15505:4 15509:2 15513:1 15516:1 15522:3 15526:2 15534:3 15544:1 15553:1 15585:14 15588:1 15604:1 15606:1 15611:2 15613:4 15614:1 15618:1 15656:1 15671:1 15672:1 15678:2 15689:1 15690:1 15695:4 15705:1 15706:1 15720:3 15722:2 15737:1 15741:1 15742:1 15756:2 15761:1 15778:5 15791:1 15802:1 15811:1 15823:1 15841:1 15849:1 15878:2 15879:3 15895:1 15898:1 15927:1 15936:2 15945:1 15946:1 15950:1 15970:1 15973:1 15980:1 15987:2 15992:1 16006:1 16014:1 16022:2 16031:1 16034:2 16039:1 16041:2 16047:1 16055:1 16072:1 16073:1 16116:1 16119:1 16150:1 16159:1 16163:1 16169:1 16183:1 16187:1 16189:1 16199:3 16202:1 16212:1 16213:3 16218:1 16222:1 16224:1 16232:3 16238:2 16240:2 16244:2 16249:1 16250:10 16284:1 16287:2 16288:1 16293:2 16294:1 16298:1 16305:1 16311:1 16313:2 16315:1 16316:1 16331:1 16368:1 16369:1 16389:4 16392:1 16403:1 16416:2 16427:1 16428:1 16434:1 16435:1 16440:1 16451:1 16453:1 16482:1 16483:1 16484:1 16508:1 16513:1 16518:2 16533:1 16554:1 16557:1 16576:1 16578:1 16589:1 16593:1 16594:3 16598:1 16600:1 16602:1 16614:1 16616:1 16646:1 16661:1 16684:2 16709:1 16710:1 16720:2 16740:2 16814:2 16815:1 16823:1 16833:1 16838:1 16844:1 16862:1 16878:1 16879:1 16885:1 16894:1 16907:1 16934:1 16937:3 16946:1 16951:1 16981:1 16986:1 16999:15 17009:1 17025:1 17050:1 17071:1 17087:14 17097:4 17099:2 17102:1 17103:6 17128:3 17142:1 17156:2 17184:6 17192:2 17204:2 17218:2 17219:1 17243:3 17251:2 17263:2 17276:2511 17285:1 17289:1 17299:1 17301:1 17302:1 17347:1 17351:1 17353:1 17356:1 17374:2 17389:1 17414:2 17420:1 17421:1 17445:1 17465:1 17467:1 17469:1 17472:2 17474:6 17475:4 17488:1 17493:1 17495:1 17515:1 17526:1 17535:1 17542:1 17549:1 17551:1 17552:1 17592:1 17595:3 17599:2 17608:1 17615:1 17644:1 17649:1 17653:1 17654:3 17659:2 17674:1 17684:2 17697:1 17699:2 17700:1 17707:2 17709:1 17717:1 17728:1 17735:1 17737:1 17748:2 17754:1 17765:1 17776:1 17787:1 17789:1 17791:2 17795:2 17803:1 17809:1 17817:2 17836:2 17837:2 17855:3 17859:1 17862:1 17870:3 17876:1 17895:3 17896:1 17900:1 17904:1 17905:1 17913:1 17917:2 17927:9 17949:1 17951:1 17966:1 17970:2 17971:1 17978:2 17992:5 17993:1 17999:1 18009:1 18011:2 18029:1 18043:1 18047:4 18052:1 18054:2 18060:1 18062:2 18070:1 18075:4 18076:1 18081:1 18085:1 18090:2 18101:1 18103:1 18104:4 18115:2 18116:1 18123:3 18141:1 18156:3 18159:1 18163:1 18164:1 18178:1 18182:1 18183:2 18187:2 18193:1 18194:2 18197:1 18210:1 18218:1 18225:1 18228:1 18233:1 18234:1 18240:1 18247:1 18271:1 18282:3 18294:1 18295:2 18296:1 18297:1 18301:1 18303:3 18308:1 18321:1 18323:1 18326:1 18328:1 18332:1 18339:1 18343:1 18349:2 18354:1 18359:2 18371:1 18374:2 18381:2 18382:1 18385:1 18390:1 18408:1 18409:1 18416:1 18420:2 18422:4 18427:1 18428:4 18430:1 18474:1 18477:1 18478:1 18492:1 18495:2 18499:1 18501:1 18503:2 18504:2 18508:2 18519:1 18521:2 18525:3 18529:3 18533:1 18534:2 18536:2 18538:1 18548:1 18556:5 18564:2 18580:1 18582:1 18596:1 18598:1 18603:2 18604:4 18627:1 18628:2 18638:1 18639:1 18645:1 18653:1 18658:1 18665:3 18685:1 18690:2 18691:2 18707:1 18708:1 18716:3 18718:20 18719:2 18726:1 18735:5 18738:1 18756:2 18759:1 18767:1 18784:3 18785:1 18792:1 18793:1 18805:1 18811:1 18817:1 18821:1 18835:1 18838:1 18845:1 18847:1 18848:1 18866:1 18868:1 18875:1 18895:1 18905:4 18919:2 18933:1 18937:2 18941:1 18949:2 18960:1 18962:1 18969:2 18996:8 18998:2 19005:1 19013:1 19022:1 19039:1 19040:1 19041:1 19050:1 19054:1 19057:1 19080:1 19082:1 19085:4 19101:3 19112:1 19117:1 19119:1 19125:1 19128:1 19132:1 19133:1 19140:1 19143:2 19175:2 19183:3 19189:2 19190:2 19201:2 19204:2 19207:1 19209:1 19215:2 19221:1 19243:5 19245:2 19254:2 19256:1 19261:1 19268:1 19276:1 19279:2 19284:1 19286:1 19293:1 19308:1 19311:2 19317:1 19324:2 19325:1 19331:5 19334:1 19338:2 19341:1 19344:1 19349:2 19359:3 19385:2 19391:1 19392:1 19394:2 19412:1 19415:1 19421:2 19422:1 19431:2 19439:2 19443:2 19447:2 19450:2 19451:1 19459:2 19476:1 19478:1 19484:2 19506:2 19515:1 19516:4 19521:1 19522:1 19523:4 19532:1 19537:2 19542:1 19545:1 19546:1 19547:1 19551:1 19552:1 19558:2 19564:1 19567:1 19577:1 19581:1 19583:1 19591:1 19595:1 19614:1 19620:1 19627:1 19629:1 19633:2 19636:2 19645:1 19648:1 19661:1 19664:1 19697:1 19736:1 19756:2 19757:1 19770:2 19773:1 19782:2 19785:2 19790:1 19791:1 19794:1 19795:1 19798:1 19799:1 19806:1 19812:2 19821:3 19823:1 19830:1 19837:1 19845:1 19866:1 19873:1 19880:1 19889:1 19896:1 19897:1 19919:2 19921:1 19922:1 19927:1 19931:2 19934:1 19936:1 19948:1 19951:2 19954:2 19959:2 19960:1 19961:1 19963:2 19964:1 19965:1 19966:1 19976:1 19978:2 19989:1 19998:14 20001:1 20009:2 20010:2 20017:2 20028:1 20041:1 20046:1 20049:1 20051:1 20061:1 20063:1 20066:2 20067:1 20071:1 20072:1 20075:1 20099:1 20104:1 20111:1 20125:2 20134:1 20138:2 20141:1 20142:1 20147:1 20149:1 20151:6 20154:3 20156:1 20166:2 20177:1 20178:1 20179:1 20182:1 20183:1 20204:1 20205:1 20206:1 20210:3 20212:4 20215:1 20240:1 20248:1 20252:1 20316:4 20321:1 20322:5 20325:3 20326:3 20328:1 20329:1 20334:1 20337:2 20340:1 20341:2 20350:1 20351:1 20352:5 20360:1 20362:1 20368:1 20369:1 20381:1 20396:2 20400:2 20403:2 20417:1 20444:1 20446:1 20471:2 20473:2 20480:1 20481:1 20483:1 20486:1 20492:1 20497:1 20503:1 20509:1 20523:1 20524:1 20529:1 20532:1 20533:2 20534:1 20544:1 20546:1 20553:1 20556:1 20567:2 20570:1 20572:5 20578:1 20587:1 20588:4 20592:3 20593:1 20599:1 20611:1 20619:1 20626:1 20628:2 20630:1 20632:1 20633:1 20634:4 20647:1 20655:2 20656:9 20658:1 20662:1 20666:1 20670:1 20675:1 20676:1 20692:1 20693:1 20719:8 20720:1 20733:1 20754:1 20772:1 20779:6 20780:1 20784:1 20787:1 20796:1 20797:1 20812:1 20813:3 20831:1 20842:1 20844:4 20857:1 20864:1 20877:1 20879:1 20886:1 20887:6 20889:2 20900:3 20903:1 20905:4 20914:1 20919:1 20924:1 20926:1 20938:1 20940:4 20955:1 20962:1 20963:3 20965:1 20968:3 20976:1 20982:1 20991:1 20998:1 21005:1 21026:1 21029:1 21062:1 21066:1 21072:1 21073:1 21074:1 21079:1 21090:1 21100:2 21115:10 21116:3 21130:2 21134:3 21138:1 21140:4 21149:1 21150:3 21163:2 21167:1 21176:1 21203:1 21215:1 21216:1 21218:2 21220:2 21234:1 21235:1 21238:1 21256:1 21257:1 21261:1 21262:1 21263:1 21266:1 21282:1 21284:1 21289:1 21296:1 21303:2 21306:1 21309:2 21311:1 21333:1 21340:3 21370:3 21385:1 21415:2 21434:1 21453:3 21456:3 21462:7 21469:2 21479:1 21484:1 21488:3 21498:2 21500:2 21501:1 21502:3 21506:1 21512:1 21520:4 21551:1 21554:1 21559:1 21580:1 21586:1 21599:1 21613:4 21624:1 21635:1 21642:1 21647:1 21650:3 21674:2 21682:1 21686:2 21694:1 21695:1 21703:1 21708:1 21709:1 21724:1 21726:2 21730:4 21733:3 21742:1 21743:1 21753:1 21755:1 21757:1 21772:3 21773:2 21774:1 21777:2 21792:1 21794:1 21800:1 21845:1 21846:4 21847:1 21848:1 21853:1 21859:1 21861:1 21862:4 21863:1 21864:1 21865:1 21867:1 21869:1 21871:1 21898:1 21913:3 21916:1 21917:1 21930:1 21974:2 21978:1 21981:2 21991:1 22014:2 22019:1 22022:1 22052:1 22053:1 22066:1 22068:2 22074:1 22076:2 22078:1 22088:1 22102:1 22120:1 22122:1 22125:1 22130:1 22136:2 22146:1 22157:2 22176:1 22188:1 22196:1 22218:1 22230:2 22232:1 22238:1 22260:2 22263:1 22282:2 22296:4 22304:1 22320:1 22327:1 22328:8 22337:1 22345:1 22352:1 22354:1 22358:3 22363:1 22370:1 22380:1 22382:1 22389:1 22391:5 22400:1 22402:1 22403:1 22407:1 22412:1 22435:3 22457:2 22459:1 22467:1 22469:2 22478:1 22502:1 22522:1 22530:1 22531:1 22532:1 22550:1 22552:1 22553:1 22559:1 22561:2 22564:3 22565:4 22568:1 22571:2 22572:1 22575:1 22578:2 22581:1 22582:1 22588:1 22592:1 22601:1 22612:6 22626:1 22627:2 22629:1 22632:1 22640:1 22642:1 22644:1 22646:1 22662:12 22663:6 22675:1 22685:1 22688:2 22690:1 22693:1 22695:1 22696:1 22705:1 22709:1 22710:1 22713:2 22718:3 22726:2 22739:1 22755:1 22764:1 22802:1 22811:1 22827:1 22841:1 22842:1 22853:2 22856:1 22862:1 22868:1 22870:1 22876:2 22880:2 22886:2 22890:1 22895:1 22901:2 22903:2 22907:1 22923:1 22929:1 22931:1 22937:1 22942:1 22943:2 22944:1 22946:1 22948:1 22951:1 22953:1 22963:1 22968:1 22974:4 22987:2 22992:1 22993:1 22997:1 23012:2 23018:2 23022:1 23024:2 23025:1 23041:1 23048:1 23077:18 23078:2 23099:1 23101:1 23105:1 23106:1 23115:1 23123:1 23130:1 23136:2 23139:1 23144:1 23146:1 23158:2 23161:1 23162:1 23166:1 23169:1 23170:1 23181:1 23188:1 23197:1 23202:1 23217:1 23222:1 23259:1 23261:1 23291:11 23292:1 23296:1 23307:1 23316:2 23319:1 23329:1 23350:2 23363:1 23373:1 23375:6 23378:1 23387:1 23398:1 23404:2 23406:1 23426:1 23432:1 23436:2 23440:1 23446:1 23454:1 23465:1 23481:1 23497:2 23503:2 23505:1 23514:2 23528:1 23532:1 23545:1 23557:1 23568:1 23601:1 23602:2 23609:1 23613:1 23617:1 23622:1 23628:1 23631:1 23635:2 23639:5 23642:1 23648:1 23651:1 23652:2 23664:1 23666:1 23669:1 23695:7 23700:1 23704:1 23706:1 23719:1 23721:7 23738:2 23739:2 23756:1 23768:1 23771:1 23774:3 23775:1 23784:1 23786:1 23793:1 23802:1 23803:1 23826:1 23829:1 23840:1 23845:2 23869:1 23889:1 23895:1 23902:2 23909:1 23923:1 23932:1 23943:1 23969:1 23987:1 23988:1 23999:2 24004:1 24009:3 24019:1 24024:1 24025:1 24027:1 24041:1 24050:1 24055:1 24061:3 24064:1 24092:5 24101:1 24104:1 24105:1 24113:1 24126:1 24129:1 24138:2 24140:1 24149:2 24150:1 24153:1 24161:1 24165:15 24166:2 24177:2 24185:1 24193:1 24195:1 24206:1 24214:1 24220:2 24230:1 24231:1 24233:1 24237:2 24245:1 24251:1 24255:2 24256:2 24259:1 24263:1 24268:1 24272:4 24275:3 24280:3 24285:3 24286:4 24289:1 24290:1 24304:1 24305:1 24310:1 24345:1 24350:1 24351:1 24357:1 24359:2 24363:1 24372:1 24376:1 24377:2 24400:2 24408:2 24416:1 24420:2 24424:1 24425:1 24427:2 24434:2 24443:6 24444:1 24446:1 24454:1 24455:1 24458:1 24462:1 24471:1 24472:1 24478:1 24479:1 24500:1 24502:2 24503:2 24521:1 24524:1 24553:1 24570:1 24592:1 24596:1 24600:3 24622:1 24625:1 24643:1 24648:1 24653:1 24655:1 24658:6 24675:1 24676:1 24710:1 24713:1 24715:1 24720:1 24721:1 24733:1 24737:1 24740:3 24744:1 24747:1 24768:1 24773:2 24774:2 24784:1 24789:1 24792:3 24809:1 24812:1 24826:1 24830:1 24839:1 24844:2 24870:1 24880:1 24889:1 24892:1 24900:1 24917:1 24928:2 24938:1 24944:4 24949:1 24953:1 24954:2 24964:1 24966:1 24972:1 24975:1 24976:2 24994:1 25000:1 25005:3 25019:2 25022:1 25026:1 25028:1 25031:2 25032:1 25059:1 25065:1 25068:1 25070:1 25073:2 25076:1 25081:1 25109:1 25110:1 25125:6 25129:3 25132:2 25145:1 25147:1 25170:1 25177:1 25185:2 25191:1 25195:1 25200:2 25203:1 25207:2 25213:1 25214:1 25216:1 25224:2 25232:1 25239:1 25242:1 25244:1 25250:1 25251:1 25254:3 25255:1 25256:1 25257:1 25260:3 25263:1 25267:2 25269:1 25273:1 25277:1 25281:2 25291:2 25295:1 25299:1 25302:1 25329:1 25330:1 25339:1 25346:5 25363:1 25370:2 25389:2 25412:1 25451:1 25454:2 25479:1 25487:1 25491:2 25514:2 25530:1 25532:1 25536:1 25538:3 25543:5 25558:1 25560:1 25572:1 25582:1 25600:7 25630:1 25632:1 25644:1 25661:1 25683:1 25693:1 25698:1 25699:1 25702:2 25717:2 25731:1 25739:1 25752:1 25768:1 25775:1 25777:1 25787:2 25791:2 25793:3 25794:1 25797:1 25801:1 25804:2 25808:1 25809:2 25820:1 25822:1 25828:1 25829:5 25837:1 25841:1 25843:1 25856:3 25861:2 25863:2 25867:1 25869:1 25871:5 25875:1 25880:1 25881:1 25888:1 25892:3 25893:1 25905:3 25909:1 25913:3 25917:1 25924:1 25941:1 25946:3 25964:1 25965:1 25983:1 26005:1 26012:3 26015:4 26022:5 26028:1 26054:5 26067:1 26071:1 26080:1 26081:1 26092:1 26098:1 26099:1 26101:1 26115:1 26123:1 26125:6 26129:1 26132:2 26163:1 26174:1 26175:1 26185:1 26194:1 26213:1 26214:1 26221:1 26222:1 26229:1 26230:2 26236:2 26244:1 26265:3 26298:1 26300:1 26301:1 26305:1 26306:7 26308:2 26312:2 26315:1 26325:2 26340:1 26341:1 26368:6 26383:1 26401:1 26411:1 26418:1 26452:1 26464:1 26475:1 26486:1 26512:1 26514:1 26527:2 26538:1 26539:1 26540:2 26541:3 26544:2 26547:3 26553:1 26557:1 26558:1 26565:1 26580:1 26600:1 26612:1 26616:1 26625:1 26635:1 26655:3 26659:1 26664:2 26690:2 26695:2 26696:2 26706:1 26710:1 26713:1 26722:1 26724:1 26733:1 26735:1 26737:1 26745:1 26750:3 26751:1 26757:2 26759:1 26785:1 26787:1 26790:4 26793:2 26806:1 26810:1 26832:1 26837:1 26843:1 26848:1 26855:1 26862:1 26874:1 26879:1 26883:3 26889:1 26891:1 26910:1 26920:3 26923:1 26940:1 26957:2 26961:2 26973:1 26978:1 26979:3 26986:3 26987:4 26988:1 26990:1 26996:1 27029:1 27031:5 27034:1
1 13:2 35:1 36:1 39:1 43:1 47:1 50:1 55:1 67:1 71:1 89:1 120:1 137:1 138:3 139:1 144:1 150:2 157:1 165:2 169:3 178:1 182:6 184:1 192:1 202:1 209:1 222:1 233:1 238:7 255:3 264:1 280:2 306:1 315:4 317:3 327:3 328:1 334:3 339:1 346:2 359:1 362:3 372:1 382:2 395:6 397:5 404:1 412:1 416:2 442:1 445:2 446:1 450:1 472:2 500:1 511:1 515:2 532:1 540:1 544:3 552:1 568:1 578:1 582:4 584:2 588:1 604:3 612:1 630:1 665:1 678:1 683:1 711:1 722:1 723:2 726:1 743:1 745:2 751:2 764:1 789:6 794:1 798:1 800:1 802:4 805:1 808:1 822:16 826:4 837:5 854:4 867:1 868:1 872:1 873:4 874:2 875:9 877:1 878:3 880:4 882:1 894:2 912:5 915:4 920:1 926:1 927:1 953:2 958:1 972:1 1002:1 1013:2 1017:1 1035:1 1037:1 1053:1 1059:2 1061:1 1064:1 1108:3 1109:3 1114:1 1116:2 1118:1 1122:2 1125:1 1126:2 1141:1 1150:1 1151:1 1154:1 1158:2 1165:1 1170:2 1173:2 1180:1 1187:1 1193:2 1195:1 1213:1 1225:1 1227:1 1228:1 1244:1 1253:1 1262:1 1264:1 1266:1 1269:1 1279:1 1292:1 1312:1 1316:1 1324:1 1325:2 1339:1 1345:1 1346:2 1364:1 1366:1 1370:1 1371:3 1379:1 1392:1 1397:1 1402:1 1404:1 1405:2 1408:1 1419:1 1427:1 1437:1 1445:1 1448:4 1454:8 1456:2 1465:1 1469:1 1490:2 1499:1 1501:1 1510:1 1514:3 1523:1 1526:1 1528:1 1530:2 1538:1 1542:2 1549:1 1553:1 1555:1 1558:1 1559:2 1568:1 1571:3 1580:1 1584:1 1587:1 1592:1 1596:2 1600:1 1601:1 1606:1 1615:1 1619:1 1625:1 1633:1 1634:2 1635:1 1647:1 1652:1 1653:5 1659:1 1662:1 1663:1 1675:1 1681:1 1684:3 1687:1 1688:2 1696:6 1703:1 1723:4 1724:3 1729:1 1737:1 1743:1 1745:1 1749:1 1757:2 1759:4 1761:1 1762:1 1764:1 1777:2 1786:1 1787:3 1793:1 1794:1 1801:3 1806:2 1807:1 1809:1 1822:2 1825:1 1866:1 1870:9 1875:1 1881:1 1885:2 1892:6 1896:1 1897:2 1899:2 1904:1 1907:2 1925:2 1931:1 1938:1 1949:1 1952:1 1956:1 1959:1 1976:2 1978:1 1983:2 1984:1 1988:2 1990:2 2004:1 2014:1 2027:11 2037:2 2046:1 2051:1 2053:1 2071:1 2077:1 2078:1 2092:3 2103:5 2107:1 2119:1 2120:1 2123:1 2126:2 2142:3 2143:2 2145:1 2147:3 2148:5 2150:1 2152:2 2154:2 2157:2 2158:2 2159:1 2160:4 2161:5 2164:1 2165:1 2167:5 2170:4 2172:5 2173:7 2177:2 2185:1 2196:1 2216:1 2219:2 2224:3 2226:3 2229:1 2234:1 2246:2 2248:1 2250:1 2257:1 2274:1 2275:1 2277:1 2285:1 2293:1 2294:1 2296:1 2321:1 2328:1 2332:1 2333:1 2342:1 2350:3 2351:1 2360:1 2367:1 2371:1 2377:3 2388:2 2390:1 2403:1 2405:1 2413:1 2417:1 2432:3 2435:2 2437:1 2439:7 2443:1 2444:1 2445:1 2454:1 2457:1 2478:4 2479:1 2480:1 2483:2 2496:2 2503:2 2504:1 2505:1 2506:2 2513:7 2520:2 2526:2 2529:9 2535:6 2537:1 2545:2 2547:1 2553:1 2555:2 2557:1 2562:3 2563:2 2574:3 2589:1 2591:3 2597:3 2602:1 2605:2 2611:1 2638:1 2640:2 2641:2 2654:3 2655:1 2659:1 2662:7 2667:2 2671:1 2684:1 2686:1 2691:1 2710:1 2716:3 2719:1 2738:4 2745:1 2749:1 2752:16 2763:1 2773:3 2774:1 2776:1 2777:1 2779:1 2786:2 2791:3 2792:1 2794:1 2811:21 2813:3 2826:1 2836:2 2839:3 2848:1 2856:2 2866:1 2870:1 2883:1 2889:1 2893:1 2898:1 2902:1 2907:1 2917:1 2918:5 2934:3 2939:1 2948:1 2952:1 2970:1 2979:1 2989:1 2993:1 2998:1 3006:2 3014:1 3027:2 3035:1 3042:3 3057:1 3070:1 3089:1 3090:2 3128:1 3129:2 3130:1 3134:1 3139:2 3149:7 3150:1 3193:1 3216:1 3225:3 3230:1 3234:1 3260:1 3263:1 3264:1 3265:1 3272:1 3277:1 3283:1 3285:1 3286:2 3291:1 3299:1 3305:1 3308:1 3328:1 3343:1 3358:2 3362:1 3383:1 3384:16 3399:1 3403:2 3405:2 3406:2 3409:1 3425:1 3429:1 3430:1 3438:1 3442:1 3446:1 3477:1 3479:2 3480:1 3484:1 3489:3 3490:1 3493:2 3501:1 3523:1 3548:1 3549:1 3552:1 3554:1 3559:2 3562:1 3565:2 3569:1 3576:3 3580:1 3581:1 3596:1 3599:1 3603:2 3608:1 3610:1 3626:2 3628:1 3631:1 3640:2 3648:3 3649:1 3663:2 3664:1 3668:4 3670:2 3673:2 3677:1 3678:2 3687:4 3698:1 3700:2 3715:1 3716:2 3730:1 3732:2 3734:3 3738:1 3756:2 3765:7 3766:5 3772:2 3808:1 3810:2 3813:1 3818:1 3834:1 3837:1 3839:2 3857:1 3864:1 3866:2 3870:1 3872:1 3875:1 3878:1 3891:2 3900:1 3910:2 3924:1 3932:1 3937:4 3938:1 3940:2 3941:1 3944:2 3946:1 3950:1 3954:2 3977:1 3981:1 3992:1 4008:1 4019:1 4025:1 4027:2 4029:1 4045:7 4075:3 4081:1 4090:2 4097:1 4101:1 4104:3 4114:2 4127:2 4133:1 4140:1 4149:1 4152:1 4156:4 4157:2 4169:1 4177:4 4194:1 4202:1 4203:1 4211:1 4220:1 4225:2 4233:2 4246:1 4249:1 4252:1 4256:1 4257:3 4259:1 4267:1 4276:1 4292:3 4304:1 4314:5 4327:1 4331:1 4332:1 4355:4 4363:2 4371:1 4372:1 4377:4 4380:2 4397:5 4417:1 4420:2 4428:1 4437:1 4440:2 4443:3 4456:3 4459:1 4468:1 4469:2 4475:1 4494:1 4496:2 4507:1 4511:1 4523:1 4524:1 4537:1 4549:1 4565:15 4567:2 4574:1 4576:1 4581:1 4586:1 4595:1 4601:1 4613:1 4623:1 4629:1 4645:1 4664:1 4669:3 4677:1 4684:1 4685:4 4687:7 4688:3 4690:1 4693:2 4695:2 4696:2 4698:1 4700:1 4701:2 4703:6 4704:4 4706:1 4708:2 4709:8 4715:2 4716:5 4719:1 4721:1 4733:1 4764:1 4776:1 4784:1 4789:3 4796:1 4820:1 4853:1 4891:1 4903:1 4917:1 4930:1 4937:2 4973:1 4977:1 5002:3 5008:2 5018:1 5057:1 5061:1 5066:2 5088:6 5094:1 5101:1 5110:1 5121:1 5140:1 5146:1 5157:2 5163:1 5171:1 5180:1 5188:1 5197:1 5220:1 5230:1 5245:1 5252:1 5254:1 5264:1 5284:2 5287:1 5290:1 5292:1 5298:2 5302:1 5305:1 5313:5 5314:1 5316:2 5317:1 5320:3 5321:1 5336:1 5337:1 5364:1 5369:3 5379:2 5380:1 5383:1 5384:1 5394:6 5403:1 5406:2 5452:1 5461:1 5468:1 5481:1 5483:1 5485:1 5503:1 5507:1 5509:1 5510:1 5516:2 5522:3 5524:1 5538:1 5544:1 5549:1 5562:1 5568:1 5569:2 5576:2 5584:1 5590:2 5593:1 5594:2 5596:4 5607:1 5610:6 5612:1 5613:1 5619:1 5620:2 5626:2 5628:1 5629:1 5632:1 5633:1 5636:1 5641:1 5668:1 5671:1 5673:1 5678:1 5680:2 5682:1 5688:1 5692:2 5693:1 5696:12 5715:1 5735:3 5742:1 5761:1 5772:1 5787:4 5797:2 5812:6 5817:1 5824:1 5854:1 5869:1 5872:1 5890:1 5897:1 5898:1 5901:1 5905:2 5906:3 5908:1 5911:1 5912:1 5915:2 5916:1 5921:2 5923:4 5924:3 5958:1 5997:1 6008:1 6010:1 6031:1 6035:1 6046:1 6051:4 6052:2 6063:1 6072:1 6106:1 6115:1 6124:2 6129:2 6133:1 6141:1 6148:1 6154:2 6177:1 6191:2 6199:2 6208:1 6213:1 6222:1 6270:1 6273:1 6281:1 6290:2 6292:1 6295:1 6298:1 6301:1 6316:8 6317:1 6321:1 6323:2 6325:1 6327:3 6329:1 6336:1 6338:1 6344:1 6355:2 6371:1 6375:1 6378:1 6379:1 6385:1 6387:1 6389:1 6424:1 6426:3 6437:2 6442:1 6448:2 6451:1 6465:1 6470:1 6476:1 6479:1 6483:2 6484:1 6491:2 6507:1 6525:2 6529:1 6530:1 6537:1 6545:1 6546:1 6553:1 6563:6 6569:2 6581:1 6588:1 6595:1 6596:1 6600:1 6606:1 6609:3 6610:2 6618:1 6623:6 6624:1 6626:1 6628:1 6631:5 6634:1 6637:1 6657:1 6658:1 6660:1 6670:1 6678:1 6701:1 6702:1 6707:4 6716:4 6724:1 6732:1 6735:1 6752:3 6755:1 6757:1 6765:1 6778:1 6786:1 6788:1 6790:1 6798:1 6806:1 6812:1 6824:1 6850:1 6868:1 6871:1 6875:1 6879:2 6917:1 6931:1 6935:2 6936:6 6940:3 6942:1 6943:1 6945:1 6951:3 6955:1 6971:6 6972:2 6974:2 6988:1 6989:3 6998:1 7002:1 7012:1 7019:1 7020:2 7023:2 7028:1 7038:1 7043:1 7045:1 7051:1 7053:1 7066:1 7067:1 7075:1 7076:2 7081:1 7086:2 7090:1 7101:1 7102:1 7114:1 7120:1 7138:3 7153:4 7154:8 7165:2 7170:1 7173:4 7176:4 7178:3 7180:1 7183:1 7192:1 7198:4 7199:3 7200:1 7213:50 7214:2 7220:1 7222:1 7228:1 7229:10 7231:8 7236:2 7240:1 7270:1 7276:1 7278:1 7287:1 7288:2 7297:1 7301:3 7302:2 7307:1 7309:1 7320:1 7322:2 7331:2 7341:3 7358:1 7360:1 7362:1 7364:1 7380:2 7388:1 7389:1 7392:2 7399:1 7404:1 7409:1 7410:2 7440:1 7446:1 7451:1 7453:1 7454:3 7459:1 7483:1 7489:1 7490:1 7491:1 7501:2 7540:1 7549:1 7559:1 7564:1 7569:1 7573:1 7591:1 7592:1 7600:1 7604:1 7608:1 7621:1 7628:1 7631:1 7639:1 7643:1 7644:3 7654:1 7663:1 7677:1 7678:1 7700:27 7706:1 7724:3 7726:3 7729:1 7731:2 7732:1 7734:1 7752:1 7758:1 7773:6 7776:1 7777:1 7781:1 7810:1 7821:4 7823:2 7825:2 7827:1 7830:1 7831:1 7844:1 7854:2 7855:4 7860:3 7868:1 7874:1 7894:2 7896:1 7902:1 7906:1 7918:1 7920:1 7930:1 7937:1 7939:1 7946:1 7947:1 7957:1 7958:2 7966:2 7968:1 7969:1 8006:1 8028:1 8033:1 8034:1 8038:1 8039:1 8041:1 8048:1 8061:3 8064:2 8076:7 8078:1 8087:2 8090:3 8109:2 8115:1 8116:1 8122:1 8127:2 8130:1 8131:2 8140:1 8145:1 8146:1 8162:2 8168:1 8191:1 8195:1 8196:1 8228:1 8233:1 8234:1 8240:1 8244:1 8271:1 8272:1 8285:3 8293:1 8316:1 8319:2 8320:1 8324:3 8347:3 8353:1 8360:2 8361:1 8370:1 8377:1 8393:1 8394:1 8395:1 8404:1 8407:2 8415:7 8416:1 8417:1 8423:1 8425:1 8429:1 8436:1 8442:2 8444:1 8455:7 8456:1 8477:1 8484:1 8495:1 8500:1 8505:11 8506:6 8516:3 8517:1 8524:1 8551:3 8554:1 8561:1 8566:1 8570:3 8572:1 8589:1 8596:1 8603:2 8605:2 8607:3 8609:2 8624:2 8629:1 8635:1 8644:1 8661:1 8672:1 8681:2 8683:1 8689:1 8692:5 8694:2 8696:1 8700:1 8708:1 8714:1 8715:3 8720:1 8721:1 8734:4 8770:1 8771:1 8782:1 8795:1 8802:1 8807:1 8823:3 8832:1 8835:3 8840:1 8852:1 8854:1 8858:1 8863:1 8865:1 8885:1 8888:1 8901:1 8905:1 8913:1 8919:8 8924:3 8956:3 8957:1 8964:1 8965:1 8975:3 8981:1 9005:1 9018:1 9019:1 9024:1 9028:1 9031:3 9032:3 9034:2 9038:1 9056:1 9061:1 9064:2 9066:2 9096:2 9099:1 9107:1 9117:1 9142:2 9159:1 9163:1 9173:2 9178:1 9180:1 9186:2 9196:1 9200:1 9201:1 9210:1 9242:1 9243:1 9248:2 9249:1 9262:1 9266:1 9289:1 9291:1 9294:1 9296:1 9298:1 9301:5 9318:4 9325:4 9327:2 9336:1 9354:2 9363:1 9371:3 9372:1 9378:1 9391:1 9396:1 9398:1 9406:1 9410:2 9415:2 9427:1 9433:1 9434:1 9444:1 9449:4 9453:1 9481:2 9485:1 9490:12 9492:1 9493:2 9497:2 9501:1 9519:2 9520:1 9535:1 9540:1 9544:1 9555:1 9572:1 9587:1 9588:2 9590:1 9597:1 9607:1 9622:1 9628:1 9643:1 9644:1 9646:1 9649:1 9651:4 9661:1 9663:1 9665:2 9702:1 9710:1 9715:4 9720:1 9722:1 9723:1 9729:1 9732:3 9739:1 9741:1 9742:1 9747:1 9749:2 9755:4 9769:1 9771:1 9787:1 9797:1 9803:1 9804:1 9810:1 9817:1 9819:2 9823:2 9827:1 9837:2 9839:1 9842:1 9846:1 9853:1 9860:1 9864:1 9866:3 9870:1 9877:2 9879:1 9881:1 9886:7 9889:4 9899:2 9900:3 9905:1 9910:1 9917:1 9920:2 9926:1 9943:2 9953:7 9954:2 9964:1 9979:2 9982:1 9983:1 9991:4 9995:1 10013:1 10026:1 10028:1 10035:3 10047:2 10054:1 10057:7 10071:2 10080:1 10092:1 10093:1 10106:3 10134:1 10140:1 10146:1 10180:1 10191:1 10195:1 10201:1 10206:1 10224:1 10225:1 10239:1 10240:2 10242:2 10245:1 10246:2 10252:1 10254:1 10261:1 10264:5 10265:5 10268:1 10275:1 10276:1 10280:1 10282:2 10283:3 10287:1 10288:1 10289:4 10293:1 10298:1 10307:1 10309:1 10310:3 10313:3 10318:1 10321:1 10336:2 10345:1 10363:1 10372:1 10373:1 10376:4 10378:1 10392:1 10406:1 10411:1 10424:1 10434:2 10436:1 10440:2 10455:1 10466:1 10493:1 10499:1 10506:1 10511:1 10512:1 10515:1 10518:1 10528:1 10530:1 10532:3 10556:1 10575:1 10586:1 10592:1 10597:2 10599:1 10611:3 10614:2 10617:1 10627:2 10630:2 10632:1 10633:1 10635:2 10637:1 10644:3 10646:1 10647:1 10648:2 10657:1 10663:3 10667:2 10677:1 10678:1 10693:19 10694:1 10696:1 10707:1 10718:1 10730:1 10734:4 10742:1 10745:2 10746:2 10756:1 10759:2 10769:1 10786:1 10788:2 10799:3 10803:1 10813:2 10818:2 10831:1 10847:1 10859:1 10863:1 10884:1 10890:1 10906:1 10924:1 10925:1 10932:3 10933:1 10934:1 10936:1 10937:1 10950:1 10951:4 10955:1 10956:2 10957:1 10960:2 10962:1 10968:1 10969:1 10977:1 10979:1 10988:1 10991:1 10992:1 10995:1 10998:1 11003:2 11006:5 11009:4 11014:1 11031:1 11040:1 11055:1 11073:1 11088:1 11100:1 11118:1 11120:1 11135:2 11141:1 11151:1 11156:1 11159:1 11160:1 11166:6 11173:1 11180:1 11184:2 11188:2 11189:1 11201:1 11206:1 11213:1 11214:1 11220:2 11227:2 11243:2 11246:1 11254:2 11261:1 11263:2 11283:1 11285:1 11301:2 11306:1 11314:1 11317:2 11321:1 11327:2 11333:1 11365:1 11372:1 11376:1 11380:5 11381:4 11382:2 11394:1 11406:2 11412:1 11415:1 11418:1 11424:1 11476:1 11478:2 11479:1 11502:1 11506:1 11513:1 11520:1 11534:1 11542:1 11547:1 11557:1 11574:1 11635:1 11638:3 11662:2 11674:1 11686:1 11689:1 11695:1 11705:1 11718:1 11720:2 11721:1 11736:3 11745:1 11758:1 11767:1 11774:1 11824:1 11831:1 11836:1 11839:1 11840:3 11847:1 11859:1 11863:1 11882:15 11886:5 11899:2 11904:1 11915:1 11923:1 11928:2 11929:3 11936:4 11943:1 11952:1 11954:1 11959:1 11964:2 11965:1 11974:1 11980:2 11981:1 11983:1 11989:1 12016:1 12034:1 12039:1 12040:1 12045:2 12048:1 12061:1 12068:1 12069:1 12081:1 12090:1 12091:2 12100:2 12101:1 12108:1 12110:1 12112:1 12134:1 12151:5 12161:2 12163:1 12208:1 12209:1 12231:1 12241:2 12245:1 12252:1 12254:4 12257:4 12268:1 12269:2 12273:1 12274:2 12283:3 12290:1 12306:7 12309:1 12323:1 12325:2 12346:1 12351:4 12352:1 12367:1 12379:1 12385:2 12386:1 12387:1 12389:2 12399:9 12400:1 12410:2 12413:1 12428:1 12436:1 12437:1 12440:2 12446:1 12452:1 12453:1 12463:17 12469:1 12474:1 12490:1 12506:2 12508:2 12515:3 12529:1 12533:2 12544:1 12547:2 12556:1 12557:1 12559:1 12590:3 12613:1 12616:6 12617:1 12633:1 12640:2 12642:1 12645:1 12668:4 12685:1 12692:1 12694:1 12696:1 12703:3 12705:1 12707:2 12714:1 12719:1 12721:1 12728:6 12729:1 12732:1 12733:2 12734:1 12736:2 12737:1 12741:8 12742:3 12754:1 12756:1 12760:1 12761:1 12763:1 12764:1 12765:1 12787:1 12805:1 12814:1 12831:1 12842:2 12848:2 12854:1 12861:1 12872:1 12878:1 12887:7 12919:1 12926:1 12929:1 12932:1 12939:1 12941:1 12946:1 12956:2 12960:1 12978:2 12986:1 12996:1 12997:1 12999:1 13005:8 13025:3 13032:1 13040:1 13041:1 13064:1 13076:1 13077:2 13085:1 13090:1 13103:1 13109:1 13111:1 13118:1 13131:2 13139:1 13155:1 13161:1 13165:1 13170:1 13173:1 13180:1 13188:1 13197:1 13211:1 13218:1 13237:1 13245:2 13261:5 13277:1 13288:1 13309:1 13320:1 13380:1 13383:3 13384:4 13391:1 13404:2 13406:1 13410:2 13412:1 13432:1 13436:1 13442:1 13452:2 13464:1 13470:1 13479:2 13480:1 13499:1 13509:1 13524:2 13531:1 13535:1 13548:1 13552:1 13554:1 13556:1 13563:2 13567:1 13578:3 13585:2 13595:1 13630:1 13632:2 13637:2 13641:1 13653:1 13666:2 13679:2 13680:1 13690:1 13695:2 13713:1 13720:1 13723:1 13731:1 13741:1 13745:1 13756:3 13768:1 13771:2 13774:1 13804:1 13807:1 13847:1 13850:1 13885:2 13891:2 13892:2 13895:1 13902:1 13903:1 13912:1 13923:2 13932:1 13977:1 13979:3 13984:1 13997:1 13998:1 13999:2 14002:1 14004:1 14032:1 14083:1 14087:1 14092:1 14094:2 14115:1 14116:1 14125:1 14155:1 14170:2 14182:1 14187:1 14204:1 14211:1 14212:1 14213:2 14226:1 14240:2 14245:3 14248:1 14270:1 14274:1 14275:1 14286:1 14295:2 14311:3 14315:1 14318:1 14334:1 14336:1 14345:2 14354:1 14362:2 14378:1 14380:1 14385:1 14387:1 14391:1 14397:6 14409:3 14419:1 14424:4 14435:3 14457:1 14460:1 14467:1 14476:1 14484:1 14486:1 14489:2 14540:1 14552:2 14553:1 14564:2 14571:1 14575:1 14579:4 14584:1 14586:1 14593:1 14603:2 14605:4 14606:1 14609:1 14612:1 14624:1 14626:1 14639:1 14658:2 14666:2 14689:1 14703:2 14706:1 14709:1 14719:3 14726:2 14735:1 14737:1 14739:3 14753:1 14764:3 14777:1 14782:1 14802:1 14817:1 14819:1 14841:1 14844:1 14847:1 14852:1 14853:1 14855:1 14857:16 14859:1 14872:1 14874:1 14876:3 14878:1 14900:3 14904:1 14943:2 14954:1 14958:1 14962:2 14972:4 14976:1 14990:2 14994:1 15008:2 15015:1 15029:1 15030:2 15046:1 15052:1 15060:1 15062:1 15064:1 15068:1 15074:2 15075:1 15082:1 15100:3 15103:1 15117:1 15122:1 15128:6 15130:2 15131:2 15132:6 15133:2 15134:1 15135:2 15137:1 15139:2 15140:5 15143:1 15144:1 15147:1 15150:1 15151:2 15153:1 15161:1 15177:1 15188:2 15201:1 15204:1 15206:2 15216:1 15232:1 15239:1 15251:1 15255:2 15256:1 15261:1 15279:2 15282:1 15284:1 15288:2 15289:2 15294:1 15307:2 15312:1 15328:1 15336:1 15337:1 15367:1 15370:1 15418:1 15430:1 15434:3 15445:1 15446:2 15455:2 15456:1 15466:1 15470:5 15475:1 15478:2 15487:1 15495:1 15496:1 15501:2 15504:1 15505:4 15509:2 15513:1 15516:1 15522:3 15526:2 15534:4 15544:1 15553:1 15585:14 15588:1 15604:1 15606:1 15611:2 15613:4 15614:1 15618:1 15656:1 15671:1 15672:1 15678:2 15689:1 15690:1 15695:4 15705:1 15706:1 15720:3 15722:2 15737:1 15741:1 15742:1 15756:2 15761:1 15778:5 15791:1 15802:1 15811:1 15823:1 15841:1 15849:1 15878:2 15879:3 15895:1 15898:1 15920:1 15927:1 15936:2 15945:1 15946:1 15950:1 15970:1 15973:1 15980:1 15987:2 15992:1 16006:1 16014:1 16022:2 16031:1 16034:2 16039:1 16041:2 16047:1 16055:1 16072:1 16073:1 16116:1 16119:1 16150:1 16159:1 16163:1 16169:1 16183:1 16187:1 16189:1 16199:3 16202:1 16212:1 16213:3 16218:1 16222:1 16224:1 16232:3 16238:2 16240:2 16244:2 16249:1 16250:10 16284:1 16287:2 16288:1 16293:2 16294:1 16298:1 16305:1 16311:1 16313:2 16315:1 16316:1 16331:1 16368:1 16369:1 16389:4 16392:1 16403:1 16416:2 16427:1 16428:1 16434:1 16435:1 16440:1 16451:1 16453:1 16482:1 16483:1 16484:1 16486:1 16504:1 16508:1 16513:1 16518:2 16533:1 16554:1 16557:1 16576:1 16578:1 16589:1 16593:1 16594:3 16598:1 16600:1 16602:1 16614:1 16616:1 16646:1 16661:1 16684:2 16709:1 16710:1 16720:2 16740:2 16814:2 16815:1 16823:1 16833:1 16838:1 16844:1 16862:1 16878:1 16879:1 16885:1 16894:1 16907:1 16934:1 16937:3 16946:1 16951:1 16981:1 16986:1 16999:15 17009:1 17025:1 17050:1 17071:1 17087:14 17097:4 17099:2 17102:1 17103:6 17128:3 17142:1 17156:2 17184:6 17192:2 17204:2 17218:2 17219:1 17243:3 17251:2 17263:2 17276:2592 17285:1 17289:1 17299:1 17301:1 17302:1 17304:1 17347:1 17351:1 17353:1 17356:1 17368:1 17374:2 17389:1 17414:2 17420:1 17421:1 17445:1 17465:1 17467:1 17469:1 17472:2 17474:6 17475:4 17488:1 17493:1 17495:1 17510:1 17515:1 17526:1 17535:1 17542:1 17549:1 17551:1 17552:1 17592:1 17595:3 17599:2 17608:1 17615:1 17644:1 17649:1 17653:1 17654:3 17659:2 17674:1 17684:2 17697:1 17699:2 17700:1 17707:2 17709:1 17717:1 17728:1 17735:1 17737:1 17748:2 17754:1 17765:1 17776:1 17787:1 17789:1 17791:2 17793:1 17795:2 17803:1 17809:1 17817:2 17836:2 17837:2 17855:3 17859:1 17862:1 17870:3 17876:1 17895:3 17896:1 17900:1 17904:1 17905:1 17913:1 17917:2 17920:1 17927:9 17949:1 17951:1 17966:1 17970:2 17971:1 17978:2 17992:5 17993:1 17999:1 18009:1 18011:2 18029:1 18043:1 18047:4 18052:1 18054:2 18060:1 18062:2 18070:1 18075:4 18076:1 18081:1 18085:1 18090:2 18101:1 18103:1 18104:4 18115:2 18116:1 18123:3 18141:1 18156:4 18159:1 18163:1 18164:1 18178:1 18182:1 18183:2 18187:2 18193:1 18194:2 18197:1 18210:1 18218:1 18225:1 18228:1 18233:1 18234:1 18240:1 18247:1 18271:1 18282:3 18294:1 18295:2 18296:1 18297:1 18301:1 18303:3 18308:1 18321:1 18323:1 18326:1 18328:1 18332:1 18339:1 18343:1 18349:2 18354:1 18359:2 18371:1 18374:2 18381:2 18382:1 18385:1 18390:1 18400:1 18408:1 18409:1 18416:1 18420:2 18422:4 18427:1 18428:4 18430:1 18474:1 18477:1 18478:1 18492:1 18495:3 18499:1 18501:1 18503:2 18504:2 18508:2 18519:1 18521:2 18525:3 18529:3 18533:1 18534:2 18536:2 18538:1 18548:1 18556:5 18564:2 18580:1 18582:1 18596:1 18597:1 18598:1 18603:2 18604:4 18627:1 18628:2 18638:1 18639:1 18645:1 18653:1 18658:1 18665:3 18679:1 18685:1 18690:2 18691:3 18707:1 18708:1 18716:3 18718:21 18719:2 18726:1 18735:5 18738:1 18756:2 18759:1 18767:1 18784:3 18785:1 18792:1 18793:1 18805:1 18811:1 18817:1 18821:1 18835:1 18838:1 18845:1 18847:1 18848:1 18866:1 18868:1 18875:1 18882:1 18895:1 18905:4 18919:2 18933:1 18937:2 18941:1 18949:2 18960:1 18962:1 18969:2 18996:8 18998:2 19005:1 19013:1 19022:1 19039:1 19040:1 19041:1 19050:1 19054:1 19057:1 19080:1 19082:1 19085:4 19101:3 19112:1 19117:1 19119:1 19125:1 19128:1 19132:1 19133:1 19140:1 19143:2 19175:2 19183:3 19189:2 19190:3 19201:2 19204:2 19207:1 19209:1 19215:2 19221:1 19229:1 19243:5 19245:2 19254:2 19256:1 19261:1 19268:1 19276:1 19279:2 19284:1 19286:1 19293:1 19308:1 19311:2 19317:1 19324:2 19325:1 19331:5 19334:1 19338:2 19341:1 19344:1 19349:2 19359:3 19385:2 19391:1 19392:1 19394:2 19412:1 19415:1 19421:2 19422:1 19431:2 19439:2 19443:2 19447:2 19450:2 19451:1 19459:2 19476:1 19478:1 19484:2 19506:2 19515:1 19516:4 19521:1 19522:1 19523:4 19532:1 19537:2 19542:1 19545:1 19546:1 19547:1 19551:1 19552:1 19558:2 19564:1 19567:1 19577:1 19581:1 19583:1 19591:1 19595:1 19614:1 19620:1 19627:1 19629:1 19633:2 19636:2 19645:1 19648:1 19661:1 19664:1 19697:1 19736:1 19756:2 19757:1 19770:2 19773:1 19782:2 19785:2 19790:1 19791:1 19794:1 19795:1 19798:1 19799:1 19806:1 19812:2 19821:3 19823:1 19830:1 19837:1 19845:1 19866:1 19873:1 19880:1 19889:1 19896:1 19897:1 19919:2 19921:1 19922:1 19927:1 19931:2 19934:1 19936:1 19948:1 19951:2 19954:2 19959:2 19960:1 19961:1 19963:2 19964:1 19965:1 19966:1 19976:1 19978:2 19989:1 19998:14 20001:1 20009:2 20010:2 20017:2 20028:1 20041:1 20046:1 20049:1 20051:1 20061:1 20063:1 20064:1 20066:2 20067:1 20071:1 20072:2 20075:1 20099:1 20104:1 20111:1 20125:2 20134:1 20138:2 20141:1 20142:1 20147:1 20149:1 20151:6 20154:3 20156:1 20166:2 20177:1 20178:1 20179:1 20182:1 20183:1 20204:1 20205:1 20206:1 20210:3 20212:4 20215:1 20240:1 20248:1 20252:1 20316:4 20321:1 20322:5 20325:3 20326:3 20328:1 20329:1 20334:1 20337:2 20340:1 20341:2 20350:1 20351:1 20352:5 20360:1 20362:1 20368:1 20369:1 20381:1 20396:2 20400:2 20403:2 20417:1 20444:1 20446:1 20471:2 20473:2 20480:1 20481:1 20483:1 20486:1 20492:1 20497:1 20503:1 20509:1 20523:1 20524:1 20529:1 20532:1 20533:2 20534:1 20544:1 20546:1 20553:1 20556:1 20567:2 20570:1 20572:5 20578:1 20587:1 20588:4 20592:3 20593:1 20599:1 20611:1 20619:1 20626:1 20628:2 20630:1 20632:1 20633:1 20634:4 20647:1 20655:2 20656:9 20658:1 20662:2 20666:1 20670:1 20675:1 20676:1 20692:1 20693:1 20719:9 20720:1 20733:1 20754:1 20772:1 20779:6 20780:1 20784:1 20787:1 20796:1 20797:1 20812:1 20813:3 20831:1 20842:1 20844:4 20857:1 20864:2 20877:1 20879:1 20886:1 20887:6 20889:2 20900:3 20903:1 20905:4 20914:1 20919:1 20924:1 20926:1 20938:1 20940:4 20955:1 20962:1 20963:3 20965:1 20968:3 20976:1 20982:1 20991:1 20998:1 21005:1 21026:1 21029:1 21062:1 21066:1 21072:1 21073:1 21074:1 21079:1 21090:1 21100:2 21115:10 21116:3 21130:2 21134:3 21138:1 21140:4 21149:1 21150:3 21163:2 21164:1 21167:1 21176:1 21203:1 21215:1 21216:1 21218:2 21220:2 21234:1 21235:1 21238:1 21256:1 21257:1 21261:1 21262:1 21263:1 21266:1 21282:1 21284:1 21289:1 21296:1 21303:2 21306:1 21309:2 21311:1 21333:1 21340:3 21370:3 21385:1 21415:2 21434:1 21453:3 21456:3 21462:7 21469:2 21479:1 21484:1 21488:3 21498:2 21500:2 21501:1 21502:3 21506:1 21512:1 21520:4 21551:1 21554:1 21559:1 21580:1 21586:1 21599:1 21613:4 21624:1 21635:1 21642:1 21647:1 21650:3 21674:2 21682:1 21686:2 21694:1 21695:1 21703:1 21708:1 21709:1 21724:1 21726:2 21730:4 21733:3 21742:1 21743:1 21753:1 21755:1 21757:1 21772:3 21773:2 21774:1 21777:2 21792:1 21794:1 21800:1 21845:1 21846:4 21847:1 21848:1 21853:1 21859:1 21861:1 21862:4 21863:1 21864:1 21865:1 21867:1 21869:1 21871:1 21886:1 21898:1 21913:3 21916:1 21917:1 21930:1 21974:2 21978:1 21981:2 21991:1 22014:2 22019:1 22022:1 22034:1 22041:1 22052:1 22053:1 22066:1 22068:2 22074:1 22076:2 22078:1 22088:1 22102:1 22120:1 22122:1 22125:1 22130:1 22136:2 22146:1 22157:2 22176:1 22188:1 22196:1 22218:1 22230:2 22232:1 22238:1 22260:2 22263:1 22282:2 22296:4 22304:1 22320:1 22327:1 22328:8 22337:1 22345:1 22352:1 22354:1 22358:3 22363:1 22370:1 22380:1 22382:1 22389:1 22391:5 22400:1 22402:1 22403:1 22407:1 22412:1 22435:3 22457:4 22459:2 22467:1 22469:2 22478:1 22502:1 22522:1 22530:1 22531:1 22532:1 22550:1 22552:1 22553:1 22559:1 22561:2 22564:3 22565:4 22568:1 22571:2 22572:1 22575:1 22578:2 22581:1 22582:1 22588:1 22592:1 22601:1 22612:6 22626:1 22627:2 22629:1 22632:1 22640:1 22642:1 22644:1 22646:1 22662:12 22663:6 22675:1 22685:1 22688:2 22690:1 22693:1 22695:1 22696:1 22705:1 22709:1 22710:1 22713:2 22718:3 22726:3 22739:1 22742:1 22755:1 22764:1 22802:1 22808:1 22811:1 22827:1 22841:1 22842:1 22853:2 22856:1 22862:1 22868:1 22870:1 22876:2 22880:2 22886:2 22890:1 22895:1 22901:2 22903:2 22907:1 22923:1 22929:1 22931:1 22937:1 22942:1 22943:2 22944:1 22946:1 22948:1 22951:1 22953:1 22963:1 22968:1 22974:5 22987:2 22992:1 22993:1 22997:1 23012:2 23018:2 23022:1 23024:3 23025:1 23041:1 23048:1 23077:18 23078:2 23099:1 23101:1 23105:1 23106:1 23115:1 23123:1 23130:1 23136:2 23139:1 23144:1 23146:1 23158:2 23161:1 23162:1 23166:1 23169:1 23170:1 23181:1 23188:1 23197:1 23202:1 23217:1 23222:1 23242:1 23259:1 23261:1 23291:12 23292:1 23296:1 23307:1 23316:2 23319:1 23329:1 23350:2 23363:1 23373:1 23375:7 23378:1 23387:1 23398:1 23404:2 23406:1 23426:1 23432:1 23436:2 23440:1 23446:1 23454:1 23465:1 23481:1 23497:2 23503:2 23505:1 23514:2 23528:1 23532:1 23545:1 23557:1 23561:1 23568:1 23601:1 23602:2 23609:1 23613:1 23617:1 23622:1 23628:1 23631:1 23635:2 23639:5 23642:1 23648:1 23651:1 23652:2 23664:1 23666:1 23669:1 23695:7 23700:1 23704:1 23706:1 23719:1 23721:7 23738:2 23739:2 23756:1 23768:1 23771:1 23774:3 23775:1 23784:1 23786:1 23793:1 23802:1 23803:1 23826:1 23829:1 23840:1 23845:2 23861:1 23869:1 23889:1 23895:1 23902:3 23909:1 23923:1 23932:1 23943:1 23969:1 23987:1 23988:1 23999:2 24004:1 24009:3 24019:1 24024:1 24025:1 24027:2 24041:1 24050:1 24055:1 24061:3 24064:1 24092:5 24101:1 24104:1 24105:1 24113:1 24126:1 24129:1 24138:2 24140:1 24149:2 24150:1 24153:1 24161:1 24165:15 24166:2 24177:2 24185:1 24193:1 24195:1 24206:1 24214:2 24220:2 24230:1 24231:1 24233:1 24237:2 24245:1 24251:1 24255:2 24256:2 24259:1 24263:1 24268:1 24272:4 24275:3 24280:3 24285:3 24286:4 24289:1 24290:1 24298:1 24304:1 24305:1 24310:1 24345:1 24350:1 24351:1 24357:1 24359:2 24363:1 24372:1 24376:1 24377:2 24400:2 24408:2 24416:1 24420:2 24424:1 24425:1 24427:2 24434:2 24443:6 24444:1 24446:1 24454:1 24455:1 24458:1 24462:1 24471:1 24472:1 24478:1 24479:1 24500:1 24502:2 24503:2 24521:1 24524:1 24553:1 24570:1 24592:1 24596:1 24600:3 24622:1 24625:1 24643:1 24648:1 24653:1 24655:1 24658:6 24675:1 24676:1 24710:1 24713:1 24715:1 24720:1 24721:1 24733:1 24737:1 24740:3 24744:1 24747:1 24768:1 24773:2 24774:2 24784:1 24789:1 24792:3 24809:1 24812:1 24826:1 24830:1 24839:1 24844:2 24870:1 24880:1 24889:1 24892:1 24900:1 24917:1 24928:2 24938:1 24944:4 24949:1 24953:1 24954:2 24964:1 24966:1 24972:1 24975:1 24976:2 24994:1 25000:1 25005:3 25019:2 25022:1 25026:1 25028:1 25031:2 25032:2 25059:1 25065:1 25068:1 25070:1 25073:2 25076:1 25081:1 25109:1 25110:1 25125:6 25129:3 25132:2 25145:1 25147:1 25170:1 25177:1 25185:2 25191:1 25195:1 25200:2 25203:1 25207:2 25213:1 25214:1 25216:1 25224:2 25232:1 25239:1 25242:1 25244:1 25250:1 25251:1 25254:3 25255:1 25256:1 25257:1 25260:3 25263:1 25267:2 25269:1 25273:1 25277:1 25281:2 25291:2 25295:1 25299:1 25302:1 25329:1 25330:1 25339:1 25346:5 25363:1 25370:2 25389:2 25412:1 25451:1 25454:2 25471:1 25479:1 25487:1 25491:2 25514:2 25527:1 25530:1 25532:1 25536:1 25538:3 25543:5 25558:1 25560:1 25572:1 25582:1 25600:7 25630:1 25632:1 25644:1 25661:1 25666:1 25683:1 25693:1 25698:1 25699:1 25702:2 25717:2 25731:1 25739:1 25752:1 25768:1 25772:1 25775:1 25777:1 25787:2 25791:2 25793:3 25794:1 25797:1 25801:1 25804:2 25808:1 25809:2 25820:1 25822:2 25828:1 25829:5 25837:1 25841:1 25843:1 25856:3 25861:2 25863:2 25867:1 25869:1 25871:5 25875:1 25880:2 25881:1 25888:1 25892:3 25893:1 25905:3 25909:1 25913:3 25917:1 25924:1 25941:1 25946:3 25964:1 25965:1 25983:1 26005:1 26012:3 26015:4 26022:7 26028:1 26054:5 26067:1 26071:1 26080:1 26081:1 26092:1 26098:1 26099:1 26101:1 26115:1 26123:1 26125:6 26129:1 26132:2 26163:1 26174:1 26175:1 26185:1 26194:1 26213:1 26214:1 26221:1 26222:1 26229:1 26230:2 26236:2 26244:1 26265:3 26298:1 26300:1 26301:1 26305:1 26306:7 26308:2 26312:2 26315:1 26325:2 26340:1 26341:1 26368:6 26383:1 26401:1 26411:1 26418:1 26452:1 26464:1 26473:1 26475:1 26486:1 26512:1 26514:1 26527:2 26538:1 26539:1 26540:2 26541:3 26544:2 26547:3 26553:1 26557:1 26558:1 26565:1 26580:1 26600:1 26612:1 26616:1 26625:1 26635:1 26655:3 26659:1 26664:2 26690:2 26695:2 26696:2 26706:1 26710:1 26713:1 26722:1 26724:1 26733:1 26735:1 26737:1 26745:1 26750:4 26751:1 26757:2 26759:1 26766:1 26785:1 26787:1 26790:4 26793:2 26806:1 26810:1 26832:1 26837:1 26843:1 26848:1 26855:1 26862:1 26874:1 26879:1 26883:3 26889:1 26891:1 26910:1 26920:3 26923:1 26940:1 26957:2 26961:2 26973:1 26978:1 26979:3 26986:3 26987:4 26988:1 26990:1 26996:1 27029:1 27031:5 27034:1 27036:1
1 13:2 35:1 36:1 39:1 43:1 47:1 50:1 55:1 67:1 71:1 89:1 120:1 137:1 138:3 139:1 144:1 150:2 157:1 165:2 169:3 178:1 182:6 184:1 192:1 202:1 209:1 222:1 233:1 238:7 255:3 264:1 280:2 306:1 315:4 317:3 327:3 328:1 334:3 339:1 346:2 359:1 362:3 372:1 382:2 395:6 397:5 404:1 412:1 416:2 442:1 445:2 446:1 450:1 471:1 472:2 500:1 511:1 515:2 532:1 540:1 544:3 552:1 568:1 578:1 582:4 584:2 588:1 604:3 612:1 630:1 665:1 678:1 683:1 711:1 722:1 723:2 726:1 743:1 745:2 751:2 764:1 789:6 794:1 798:1 800:2 802:4 805:1 808:1 822:16 826:4 837:5 854:4 867:1 868:1 872:1 873:4 874:2 875:9 877:1 878:3 880:4 882:1 894:2 912:5 915:4 920:1 926:1 927:1 953:2 958:1 972:1 1002:1 1013:2 1017:1 1035:1 1037:1 1053:1 1059:2 1061:1 1064:1 1108:3 1109:3 1114:1 1116:2 1118:1 1122:2 1125:1 1126:2 1141:1 1150:1 1151:1 1154:1 1158:2 1165:1 1170:2 1173:2 1180:1 1187:1 1193:2 1195:1 1213:1 1225:1 1227:1 1228:1 1244:1 1253:1 1262:1 1264:1 1266:1 1269:1 1279:1 1292:1 1312:1 1316:1 1324:1 1325:2 1339:1 1345:1 1346:2 1361:1 1364:1 1366:1 1370:1 1371:3 1379:1 1392:1 1397:1 1402:1 1404:1 1405:2 1408:1 1419:1 1427:1 1437:1 1445:1 1448:4 1454:8 1456:2 1465:1 1469:1 1483:1 1490:2 1499:1 1501:1 1510:1 1514:3 1523:1 1526:1 1528:1 1530:2 1538:1 1542:2 1549:1 1553:1 1555:1 1558:1 1559:2 1568:1 1571:3 1580:1 1584:1 1587:1 1592:1 1596:2 1600:1 1601:1 1606:1 1615:1 1619:1 1625:1 1633:1 1634:2 1635:1 1647:1 1652:1 1653:5 1659:1 1662:1 1663:1 1675:1 1681:1 1684:3 1687:1 1688:2 1696:6 1703:1 1723:5 1724:3 1729:1 1737:1 1743:1 1745:1 1749:1 1757:2 1759:4 1761:1 1762:1 1764:1 1777:2 1786:1 1787:3 1793:1 1794:1 1801:3 1806:2 1807:1 1809:1 1822:2 1825:1 1847:1 1866:2 1870:9 1875:1 1881:1 1885:2 1892:7 1896:1 1897:2 1899:2 1904:1 1907:2 1925:2 1931:1 1938:1 1949:1 1952:1 1956:1 1959:1 1976:2 1978:1 1983:2 1984:1 1988:2 1990:2 2004:1 2014:1 2027:11 2037:2 2046:1 2051:1 2053:1 2071:1 2077:1 2078:1 2092:3 2103:5 2105:1 2107:1 2119:1 2120:1 2123:1 2126:2 2142:3 2143:2 2145:1 2147:3 2148:5 2150:1 2152:2 2154:2 2157:2 2158:2 2159:1 2160:4 2161:5 2164:1 2165:1 2167:5 2170:4 2172:5 2173:7 2177:2 2185:1 2196:1 2216:1 2219:2 2224:3 2226:3 2229:1 2234:1 2246:2 2248:1 2250:1 2257:1 2274:1 2275:1 2277:1 2285:1 2293:1 2294:1 2296:1 2321:1 2328:1 2332:1 2333:1 2342:1 2350:3 2351:1 2360:1 2367:1 2371:1 2377:3 2388:2 2390:1 2403:1 2405:1 2413:1 2417:1 2432:3 2435:2 2437:1 2439:7 2443:1 2444:1 2445:1 2454:1 2457:1 2478:4 2479:1 2480:1 2483:2 2496:2 2503:2 2504:1 2505:1 2506:2 2513:7 2520:2 2526:2 2529:9 2535:6 2537:1 2545:2 2547:1 2553:1 2555:2 2557:1 2562:3 2563:2 2574:3 2589:1 2591:3 2597:3 2602:1 2605:2 2611:1 2638:1 2640:2 2641:2 2654:4 2655:1 2659:1 2662:7 2667:2 2671:1 2684:1 2686:1 2691:1 2710:1 2716:3 2719:1 2738:4 2745:1 2749:1 2752:16 2763:1 2773:3 2774:1 2776:1 2777:1 2779:1 2786:2 2791:3 2792:1 2794:1 2811:21 2813:3 2826:1 2836:2 2839:3 2848:1 2856:2 2866:1 2870:1 2883:1 2889:1 2893:1 2898:1 2902:1 2907:1 2917:1 2918:5 2934:3 2939:1 2948:1 2952:1 2970:1 2979:1 2988:1 2989:1 2993:1 2998:1 3006:2 3014:1 3027:2 3035:1 3042:3 3057:1 3070:1 3089:1 3090:2 3128:1 3129:2 3130:1 3134:1 3139:2 3149:8 3150:1 3193:1 3216:1 3225:3 3230:1 3234:1 3260:1 3263:1 3264:1 3265:1 3272:1 3277:1 3283:1 3285:1 3286:2 3291:1 3299:1 3305:1 3308:1 3328:1 3343:1 3358:2 3362:1 3383:1 3384:17 3399:1 3403:2 3405:2 3406:2 3409:1 3425:1 3429:1 3430:1 3438:1 3442:1 3446:1 3477:1 3479:2 3480:1 3484:1 3489:3 3490:1 3493:2 3501:1 3523:1 3548:1 3549:1 3552:1 3554:1 3559:2 3562:1 3565:2 3569:1 3576:3 3580:1 3581:1 3596:1 3599:1 3603:2 3608:1 3610:1 3626:2 3628:1 3631:1 3640:2 3648:3 3649:1 3663:2 3664:1 3668:5 3670:2 3673:2 3677:1 3678:2 3687:4 3698:1 3700:2 3715:1 3716:2 3730:1 3732:2 3734:3 3738:1 3756:2 3765:7 3766:5 3772:2 3808:1 3810:2 3813:1 3818:1 3834:1 3837:1 3839:2 3857:1 3864:1 3866:2 3870:1 3872:1 3875:1 3878:1 3879:1 3891:2 3900:1 3910:2 3924:1 3932:1 3937:4 3938:1 3940:3 3941:1 3944:2 3946:1 3950:1 3954:2 3977:1 3981:1 3992:1 4008:1 4019:1 4025:1 4027:2 4029:1 4045:7 4075:3 4081:1 4090:2 4097:1 4101:1 4104:3 4114:2 4127:2 4133:1 4140:1 4149:1 4150:1 4152:1 4156:4 4157:2 4169:1 4177:4 4194:1 4202:1 4203:1 4211:1 4220:1 4225:2 4233:2 4246:1 4249:1 4252:1 4256:1 4257:3 4259:1 4267:1 4276:1 4292:3 4304:1 4314:5 4327:1 4331:1 4332:1 4355:4 4363:3 4371:1 4372:1 4377:4 4380:2 4397:5 4417:1 4420:2 4428:1 4437:1 4440:2 4443:3 4456:3 4459:1 4468:1 4469:2 4475:1 4494:1 4496:2 4507:1 4511:1 4523:1 4524:1 4537:1 4549:1 4565:16 4567:2 4573:1 4574:1 4576:1 4581:1 4586:1 4595:1 4601:1 4613:1 4623:1 4629:1 4645:1 4664:1 4669:3 4677:1 4684:1 4685:4 4687:7 4688:3 4690:1 4693:2 4695:2 4696:2 4698:1 4700:1 4701:2 4703:6 4704:4 4706:1 4708:2 4709:8 4715:2 4716:5 4719:1 4721:1 4733:1 4764:1 4776:1 4784:1 4789:3 4796:1 4820:1 4853:1 4891:1 4903:1 4917:1 4930:1 4937:2 4973:1 4977:1 5002:3 5008:2 5018:1 5057:1 5061:1 5066:2 5088:6 5094:1 5101:1 5110:1 5121:1 5140:1 5146:1 5157:2 5163:1 5171:1 5180:1 5188:1 5197:1 5220:1 5230:1 5245:1 5252:1 5254:1 5264:1 5284:2 5287:1 5290:1 5292:1 5298:2 5302:1 5305:1 5313:5 5314:1 5316:2 5317:1 5320:4 5321:1 5336:1 5337:1 5348:1 5364:1 5369:3 5379:2 5380:1 5383:1 5384:1 5394:6 5403:1 5406:2 5452:1 5461:1 5468:1 5481:1 5483:1 5485:1 5493:1 5503:1 5507:1 5509:1 5510:1 5516:2 5522:3 5524:1 5538:1 5544:1 5549:1 5562:1 5568:1 5569:2 5576:2 5584:1 5590:2 5593:1 5594:2 5596:4 5607:1 5610:6 5612:1 5613:1 5619:1 5620:2 5626:2 5628:1 5629:1 5632:1 5633:1 5636:1 5641:1 5668:1 5671:1 5673:1 5678:1 5680:2 5682:1 5688:1 5692:2 5693:1 5696:12 5715:1 5735:3 5742:1 5761:1 5772:1 5787:4 5797:2 5812:6 5817:1 5824:1 5854:1 5869:1 5872:1 5890:1 5897:1 5898:1 5901:1 5905:2 5906:3 5908:1 5911:1 5912:1 5915:2 5916:1 5921:2 5923:4 5924:3 5958:1 5992:1 5997:1 6008:1 6010:1 6031:1 6035:1 6046:2 6051:4 6052:2 6063:1 6072:1 6106:1 6115:1 6124:2 6129:2 6133:1 6141:1 6148:1 6154:2 6177:1 6191:2 6199:2 6208:1 6213:1 6222:1 6270:1 6273:1 6281:1 6290:2 6292:1 6295:1 6298:1 6301:1 6314:1 6316:8 6317:1 6321:1 6323:2 6325:1 6327:3 6329:1 6336:1 6338:1 6344:1 6355:2 6371:1 6375:1 6378:1 6379:1 6385:1 6387:1 6389:1 6424:1 6426:3 6437:2 6442:1 6448:2 6451:1 6465:1 6470:1 6476:1 6479:1 6483:2 6484:1 6491:2 6507:1 6525:2 6529:1 6530:1 6537:1 6545:1 6546:2 6553:1 6563:6 6569:2 6581:1 6588:1 6595:1 6596:1 6600:1 6606:1 6609:3 6610:2 6618:1 6623:6 6624:1 6626:1 6628:1 6631:5 6634:1 6637:1 6651:1 6657:1 6658:1 6660:1 6670:1 6678:1 6701:1 6702:1 6707:4 6716:5 6724:1 6732:1 6735:1 6752:3 6755:1 6757:1 6765:1 6778:1 6786:1 6788:1 6790:1 6798:1 6806:1 6812:1 6824:1 6850:1 6868:1 6871:1 6875:1 6879:2 6917:1 6931:1 6935:2 6936:6 6940:3 6942:1 6943:1 6945:1 6951:3 6955:1 6971:6 6972:2 6974:2 6988:1 6989:3 6998:1 7002:1 7012:1 7019:1 7020:2 7023:2 7028:1 7038:1 7043:1 7045:1 7051:1 7053:1 7066:1 7067:1 7075:1 7076:2 7078:1 7081:1 7086:2 7090:1 7101:1 7102:1 7114:1 7120:1 7138:4 7153:4 7154:8 7165:2 7170:1 7173:4 7176:4 7178:3 7180:1 7183:1 7192:1 7198:4 7199:3 7200:1 7213:50 7214:2 7220:1 7222:1 7228:1 7229:10 7231:8 7236:2 7240:1 7270:1 7276:1 7278:1 7287:1 7288:2 7297:1 7301:3 7302:2 7307:1 7309:1 7320:1 7322:2 7331:2 7341:3 7358:1 7360:1 7362:1 7364:1 7380:2 7388:1 7389:1 7392:2 7399:1 7404:1 7409:1 7410:2 7440:1 7446:1 7451:2 7453:1 7454:3 7459:1 7483:1 7489:1 7490:1 7491:1 7501:2 7540:1 7549:1 7559:1 7564:1 7569:2 7573:1 7591:1 7592:1 7600:1 7604:1 7608:1 7621:1 7628:1 7631:1 7639:1 7643:1 7644:3 7654:1 7663:1 7677:1 7678:2 7700:27 7706:1 7724:3 7726:3 7729:1 7731:2 7732:1 7734:1 7752:1 7758:1 7773:6 7776:1 7777:1 7781:1 7810:1 7821:5 7823:2 7825:2 7827:1 7830:1 7831:1 7844:1 7854:2 7855:4 7860:3 7868:1 7874:1 7894:2 7896:1 7902:1 7906:1 7918:1 7920:1 7930:1 7937:1 7939:2 7946:1 7947:1 7957:1 7958:2 7966:2 7968:2 7969:1 8006:1 8028:1 8033:1 8034:1 8038:1 8039:1 8041:1 8048:1 8061:3 8064:2 8076:7 8078:1 8087:2 8090:3 8109:2 8115:1 8116:1 8122:1 8127:2 8130:1 8131:2 8140:1 8145:1 8146:1 8162:2 8168:1 8191:1 8195:1 8196:1 8228:1 8233:1 8234:1 8240:1 8244:1 8271:1 8272:1 8285:3 8293:1 8316:1 8319:2 8320:1 8324:3 8347:3 8353:1 8360:2 8361:1 8370:1 8377:1 8393:1 8394:1 8395:1 8398:1 8404:1 8407:2 8415:8 8416:1 8417:1 8423:1 8425:1 8429:1 8436:1 8442:2 8444:1 8455:7 8456:1 8477:1 8484:1 8495:1 8500:1 8505:11 8506:6 8516:3 8517:1 8524:1 8551:3 8554:1 8561:1 8566:1 8570:3 8572:1 8589:1 8596:1 8603:2 8605:2 8607:3 8609:2 8624:2 8629:1 8635:1 8644:1 8661:1 8672:1 8681:2 8683:1 8689:1 8692:5 8694:2 8696:1 8700:1 8708:1 8714:1 8715:3 8720:1 8721:1 8734:4 8770:1 8771:1 8782:1 8795:1 8802:1 8807:1 8823:3 8832:1 8835:3 8840:1 8852:1 8854:1 8858:1 8863:1 8865:1 8885:1 8888:1 8901:1 8905:1 8913:1 8919:8 8924:3 8956:3 8957:1 8964:1 8965:1 8975:3 8981:1 9005:1 9018:1 9019:1 9024:1 9028:1 9031:3 9032:3 9034:2 9038:1 9056:1 9061:1 9064:2 9066:2 9096:2 9099:1 9107:1 9117:1 9142:2 9159:1 9163:1 9173:2 9178:1 9180:1 9186:2 9196:1 9200:1 9201:1 9210:1 9242:1 9243:1 9248:2 9249:1 9262:1 9266:1 9289:1 9291:1 9294:1 9296:1 9298:1 9301:5 9318:4 9325:4 9327:2 9336:1 9354:2 9363:1 9371:3 9372:1 9378:1 9391:1 9396:1 9398:1 9406:1 9410:2 9415:2 9427:1 9433:1 9434:1 9444:1 9449:4 9453:1 9481:2 9485:1 9490:12 9492:1 9493:2 9497:2 9501:1 9519:2 9520:2 9535:1 9540:1 9544:1 9555:1 9572:1 9587:1 9588:2 9590:1 9597:1 9607:1 9622:1 9628:1 9643:1 9644:1 9646:1 9649:1 9651:4 9661:1 9663:1 9665:2 9702:1 9710:1 9715:4 9717:1 9720:1 9722:1 9723:1 9729:1 9732:3 9739:1 9741:1 9742:1 9747:1 9749:2 9755:4 9769:1 9771:1 9787:1 9797:1 9803:1 9804:1 9810:1 9817:1 9819:2 9823:2 9827:1 9837:2 9839:1 9842:1 9846:1 9853:1 9860:1 9864:1 9866:3 9868:1 9870:1 9877:2 9879:1 9881:1 9886:7 9889:4 9899:2 9900:3 9905:1 9910:1 9917:1 9920:2 9926:1 9943:2 9953:7 9954:2 9964:1 9979:2 9982:1 9983:1 9991:4 9995:1 10013:1 10026:1 10028:1 10035:3 10047:2 10054:1 10057:7 10071:2 10080:1 10092:1 10093:1 10106:3 10134:1 10140:1 10146:1 10180:1 10191:1 10195:1 10197:1 10201:1 10206:1 10224:1 10225:1 10239:1 10240:2 10242:2 10245:1 10246:2 10252:1 10254:2 10261:1 10264:5 10265:6 10268:1 10275:1 10276:1 10280:1 10282:2 10283:3 10287:1 10288:1 10289:4 10293:1 10298:1 10307:1 10309:1 10310:3 10313:3 10318:1 10321:1 10336:2 10345:2 10363:1 10372:1 10373:1 10376:4 10378:1 10392:1 10406:1 10411:1 10424:1 10434:2 10436:1 10440:2 10455:1 10466:1 10493:1 10499:1 10506:1 10511:1 10512:1 10515:1 10518:1 10528:1 10530:1 10532:3 10556:1 10575:1 10586:1 10592:1 10597:2 10599:1 10611:3 10614:2 10617:1 10627:2 10630:2 10632:1 10633:1 10635:2 10637:1 10644:3 10646:1 10647:1 10648:2 10657:1 10663:3 10667:2 10677:1 10678:1 10693:19 10694:1 10696:1 10707:1 10718:1 10730:1 10734:4 10742:1 10745:2 10746:2 10755:1 10756:1 10759:2 10769:1 10786:1 10788:2 10799:3 10803:1 10813:2 10818:2 10831:1 10847:1 10859:1 10863:1 10884:1 10890:1 10906:1 10924:1 10925:1 10932:3 10933:1 10934:1 10936:1 10937:1 10950:1 10951:5 10955:1 10956:2 10957:1 10960:2 10962:1 10968:1 10969:1 10977:1 10979:1 10988:1 10991:1 10992:1 10995:1 10998:1 11003:2 11006:5 11009:4 11014:1 11031:1 11040:1 11055:1 11073:1 11088:1 11100:1 11118:1 11120:1 11135:2 11141:1 11151:1 11156:1 11159:1 11160:1 11166:6 11173:1 11180:1 11184:2 11188:2 11189:1 11201:1 11206:1 11213:1 11214:1 11220:2 11227:2 11243:2 11246:1 11254:2 11261:1 11263:2 11283:1 11285:1 11301:2 11306:1 11314:1 11317:2 11321:1 11327:2 11333:1 11365:1 11372:1 11376:1 11380:5 11381:4 11382:2 11394:1 11406:2 11412:1 11415:1 11418:1 11424:1 11476:1 11478:2 11479:1 11502:1 11506:1 11513:1 11520:1 11534:1 11542:1 11547:1 11557:1 11574:1 11635:1 11638:3 11662:2 11674:1 11686:1 11689:1 11695:1 11705:1 11718:1 11720:2 11721:1 11736:3 11745:1 11758:1 11767:1 11774:1 11824:1 11831:1 11836:1 11839:1 11840:3 11847:1 11859:1 11863:1 11882:15 11886:5 11899:2 11904:1 11915:1 11923:1 11928:2 11929:3 11936:4 11943:1 11952:1 11954:1 11959:1 11964:2 11965:1 11974:1 11980:2 11981:1 11983:1 11989:1 12016:1 12034:1 12039:1 12040:1 12045:2 12048:1 12061:1 12068:1 12069:1 12081:1 12090:1 12091:2 12100:2 12101:1 12108:1 12110:1 12112:1 12134:1 12151:5 12161:2 12163:1 12208:1 12209:1 12231:1 12241:2 12245:1 12252:1 12254:4 12257:4 12268:1 12269:2 12273:1 12274:2 12283:3 12290:1 12306:7 12309:1 12323:1 12325:2 12346:1 12351:4 12352:1 12367:1 12379:1 12385:2 12386:1 12387:1 12389:2 12399:9 12400:1 12410:3 12413:1 12428:1 12436:1 12437:1 12440:2 12446:1 12452:1 12453:1 12463:18 12469:1 12474:1 12490:1 12506:2 12508:2 12515:3 12529:1 12533:2 12544:1 12547:2 12556:1 12557:1 12559:1 12590:3 12613:1 12616:6 12617:1 12633:1 12640:2 12642:1 12645:1 12668:5 12685:1 12692:1 12694:1 12696:1 12703:3 12705:1 12707:2 12714:1 12719:1 12721:1 12728:6 12729:1 12732:1 12733:2 12734:1 12736:2 12737:1 12741:8 12742:3 12754:1 12756:1 12760:1 12761:1 12763:1 12764:1 12765:1 12787:1 12805:1 12814:1 12831:1 12842:2 12848:2 12854:1 12861:1 12872:1 12878:1 12887:7 12919:1 12926:1 12929:1 12932:1 12939:1 12941:1 12946:1 12956:2 12960:1 12978:2 12986:1 12996:1 12997:1 12999:1 13005:8 13025:3 13032:1 13040:1 13041:1 13064:1 13076:1 13077:2 13085:1 13090:1 13103:1 13109:1 13111:1 13118:1 13131:2 13139:1 13155:1 13161:1 13165:1 13170:1 13173:1 13180:1 13188:1 13197:1 13211:1 13218:1 13237:1 13245:2 13261:5 13277:1 13288:1 13309:1 13320:1 13380:1 13383:3 13384:4 13391:1 13404:2 13406:1 13410:2 13412:1 13432:1 13436:1 13442:1 13452:2 13464:1 13470:1 13479:2 13480:1 13499:1 13509:1 13524:2 13531:1 13535:1 13548:1 13552:1 13554:1 13556:1 13563:2 13567:1 13578:3 13585:2 13595:1 13630:1 13632:2 13637:2 13641:1 13653:1 13666:2 13679:2 13680:1 13690:1 13695:2 13713:1 13720:1 13723:1 13731:1 13741:1 13745:1 13756:3 13768:1 13771:2 13774:1 13804:1 13807:1 13847:1 13850:1 13885:2 13891:2 13892:2 13895:1 13902:1 13903:1 13912:1 13923:2 13932:1 13977:1 13979:3 13984:1 13997:1 13998:1 13999:2 14002:1 14003:1 14004:1 14032:1 14083:1 14087:1 14092:1 14094:2 14115:1 14116:1 14125:1 14155:1 14170:2 14182:1 14187:1 14204:1 14211:1 14212:1 14213:2 14226:1 14240:2 14245:3 14248:1 14270:1 14274:1 14275:1 14286:1 14295:2 14311:3 14315:1 14318:1 14334:1 14336:1 14345:2 14354:1 14362:2 14378:1 14380:1 14385:1 14387:1 14391:1 14397:6 14409:4 14419:1 14424:4 14435:3 14457:1 14460:1 14467:1 14476:1 14484:1 14486:1 14489:2 14540:1 14552:2 14553:1 14564:2 14571:1 14575:1 14579:4 14584:1 14586:1 14593:1 14603:2 14605:4 14606:1 14609:1 14612:1 14624:1 14626:1 14639:1 14658:2 14666:2 14689:1 14703:2 14706:1 14709:1 14719:3 14726:2 14735:1 14737:1 14739:3 14753:1 14764:3 14768:1 14777:1 14782:1 14802:1 14817:1 14819:1 14841:1 14844:1 14847:1 14852:1 14853:1 14855:1 14857:17 14859:1 14872:1 14874:1 14876:3 14878:1 14900:3 14904:1 14943:2 14954:1 14958:1 14962:2 14972:4 14976:1 14990:2 14994:1 15008:2 15015:1 15029:1 15030:2 15046:1 15052:1 15060:1 15062:1 15064:1 15068:1 15074:2 15075:1 15082:1 15100:3 15103:1 15117:1 15122:1 15128:6 15130:2 15131:2 15132:6 15133:2 15134:1 15135:2 15137:1 15139:2 15140:5 15143:1 15144:1 15147:1 15150:1 15151:2 15153:1 15161:1 15177:1 15188:2 15201:1 15204:1 15206:2 15216:1 15232:1 15239:1 15251:1 15255:2 15256:1 15261:1 15279:2 15282:1 15284:1 15288:2 15289:2 15294:1 15307:2 15312:1 15328:1 15336:1 15337:1 15367:1 15370:1 15418:1 15430:1 15434:3 15445:1 15446:2 15455:2 15456:1 15466:1 15470:5 15475:1 15478:2 15487:1 15495:1 15496:1 15501:2 15504:1 15505:4 15509:2 15513:1 15516:1 15522:3 15526:2 15534:4 15544:1 15553:1 15585:14 15588:1 15604:1 15606:1 15611:2 15613:4 15614:1 15618:1 15656:1 15671:1 15672:1 15678:2 15689:1 15690:1 15695:4 15705:1 15706:1 15720:3 15722:2 15737:1 15741:1 15742:1 15756:2 15761:1 15778:5 15791:1 15802:1 15811:1 15823:1 15841:1 15849:1 15878:2 15879:3 15895:1 15898:1 15920:1 15927:1 15936:2 15945:1 15946:1 15950:1 15970:1 15973:1 15980:1 15987:2 15992:1 16006:1 16014:1 16022:2 16031:1 16034:2 16039:1 16041:2 16047:1 16055:1 16072:1 16073:1 16116:1 16119:1 16150:1 16159:1 16163:1 16169:1 16183:1 16187:1 16189:1 16199:3 16202:1 16212:1 16213:3 16218:1 16222:1 16224:1 16232:3 16238:2 16240:2 16244:2 16249:1 16250:10 16284:1 16287:2 16288:1 16293:3 16294:1 16298:1 16305:1 16311:1 16313:2 16315:1 16316:1 16331:1 16368:1 16369:1 16389:4 16392:1 16403:1 16416:2 16427:1 16428:1 16434:1 16435:1 16440:1 16451:1 16453:1 16482:1 16483:1 16484:1 16486:1 16504:1 16508:1 16513:1 16518:2 16533:1 16554:1 16557:1 16576:1 16578:1 16589:1 16593:1 16594:3 16598:1 16600:1 16602:1 16614:1 16616:1 16646:1 16661:1 16684:2 16709:1 16710:1 16720:2 16740:2 16814:2 16815:1 16823:1 16833:1 16838:1 16844:1 16862:1 16878:1 16879:1 16885:1 16894:1 16907:1 16934:1 16937:3 16946:1 16951:1 16981:1 16986:1 16999:15 17009:1 17025:1 17050:1 17070:1 17071:1 17087:14 17097:4 17099:2 17102:1 17103:6 17128:3 17142:1 17156:2 17184:6 17192:2 17204:2 17218:2 17219:1 17243:3 17251:2 17253:1 17263:2 17276:2632 17285:1 17289:1 17299:1 17301:1 17302:1 17304:1 17347:1 17351:1 17353:1 17356:1 17368:1 17374:2 17389:1 17414:2 17420:1 17421:1 17445:1 17465:1 17467:1 17469:1 17472:2 17474:6 17475:4 17488:1 17493:1 17495:1 17510:1 17515:1 17526:1 17535:1 17542:1 17549:1 17551:1 17552:1 17592:1 17595:3 17599:2 17608:1 17615:1 17644:1 17649:1 17653:1 17654:3 17659:2 17674:1 17684:2 17686:1 17697:1 17699:2 17700:1 17707:2 17709:1 17717:1 17728:1 17735:1 17737:1 17748:2 17754:1 17765:1 17776:2 17787:1 17789:1 17791:2 17793:1 17795:2 17803:1 17809:1 17817:2 17836:2 17837:2 17855:3 17859:1 17862:1 17870:3 17876:1 17895:3 17896:1 17900:1 17904:1 17905:1 17913:1 17917:2 17920:1 17927:9 17949:1 17951:1 17966:1 17970:2 17971:1 17978:2 17992:5 17993:1 17999:1 18009:1 18011:2 18029:1 18043:1 18047:4 18052:1 18054:2 18060:1 18062:2 18070:1 18075:4 18076:1 18081:1 18085:1 18090:2 18101:1 18103:1 18104:4 18115:2 18116:1 18123:3 18141:1 18156:4 18159:1 18163:1 18164:1 18178:1 18182:2 18183:2 18187:2 18193:1 18194:2 18197:1 18210:1 18218:2 18225:1 18228:1 18233:1 18234:1 18240:1 18247:1 18271:1 18282:3 18294:1 18295:2 18296:1 18297:1 18301:1 18303:3 18308:1 18321:1 18323:1 18326:1 18328:1 18332:1 18339:1 18343:1 18349:2 18354:1 18359:2 18371:1 18374:2 18381:2 18382:1 18385:1 18390:1 18400:1 18408:1 18409:1 18416:1 18420:2 18422:4 18427:1 18428:4 18430:1 18474:1 18477:1 18478:1 18492:1 18495:3 18499:1 18501:1 18503:2 18504:2 18508:2 18519:1 18521:2 18525:3 18529:3 18533:1 18534:2 18536:2 18538:1 18548:1 18556:5 18564:2 18580:1 18582:1 18596:1 18597:1 18598:1 18603:2 18604:4 18627:1 18628:2 18638:1 18639:1 18645:1 18653:1 18658:1 18665:3 18679:1 18685:1 18690:2 18691:3 18707:1 18708:1 18716:3 18718:21 18719:2 18726:1 18735:5 18738:1 18756:2 18759:1 18767:1 18784:3 18785:1 18792:1 18793:1 18805:1 18811:1 18817:1 18821:1 18835:1 18838:1 18845:1 18847:1 18848:1 18866:1 18868:1 18875:1 18882:1 18895:1 18905:4 18919:2 18933:1 18937:2 18941:1 18949:2 18960:1 18962:1 18969:2 18996:8 18998:2 19005:1 19013:1 19022:1 19039:1 19040:1 19041:1 19050:1 19054:1 19057:1 19080:1 19082:1 19085:4 19101:4 19112:1 19117:1 19119:1 19125:1 19128:1 19132:1 19133:1 19140:1 19143:2 19175:2 19183:3 19189:2 19190:3 19201:2 19204:2 19207:1 19209:1 19215:2 19221:1 19229:1 19243:5 19245:2 19254:2 19256:1 19261:1 19268:1 19276:1 19279:2 19284:2 19286:1 19293:1 19308:1 19311:2 19317:1 19324:2 19325:1 19331:5 19334:1 19338:2 19341:1 19344:1 19349:2 19359:3 19385:2 19391:1 19392:1 19394:2 19412:1 19415:1 19421:2 19422:1 19431:2 19439:2 19443:2 19447:2 19450:2 19451:1 19459:2 19476:1 19478:1 19484:2 19506:2 19515:1 19516:4 19521:1 19522:1 19523:4 19532:1 19537:2 19542:1 19545:1 19546:1 19547:1 19551:1 19552:1 19558:2 19564:1 19567:1 19577:1 19581:1 19583:1 19591:1 19595:1 19614:1 19620:1 19627:1 19629:1 19633:2 19636:2 19645:1 19648:1 19661:1 19664:1 19697:1 19736:1 19756:2 19757:1 19770:2 19773:1 19782:2 19785:2 19790:1 19791:1 19794:1 19795:1 19798:1 19799:1 19806:1 19812:2 19821:3 19823:1 19830:1 19837:1 19845:1 19866:1 19873:1 19880:1 19889:1 19896:1 19897:1 19919:2 19921:1 19922:1 19927:1 19931:2 19934:1 19936:1 19948:1 19951:2 19954:2 19959:2 19960:1 19961:1 19963:2 19964:1 19965:1 19966:1 19976:1 19978:2 19989:1 19998:14 20001:1 20009:2 20010:2 20017:2 20028:1 20041:1 20046:1 20049:1 20051:1 20061:1 20063:1 20064:1 20066:2 20067:1 20071:1 20072:2 20075:1 20099:1 20104:1 20111:1 20125:2 20134:1 20138:2 20141:1 20142:1 20147:1 20149:1 20151:6 20154:3 20156:1 20166:2 20177:1 20178:1 20179:1 20182:1 20183:1 20204:1 20205:1 20206:1 20210:3 20212:4 20215:1 20240:1 20248:1 20252:1 20316:4 20321:1 20322:5 20325:3 20326:3 20328:1 20329:1 20334:1 20337:2 20340:1 20341:2 20350:1 20351:1 20352:5 20360:1 20362:1 20368:1 20369:1 20381:1 20396:2 20400:2 20403:2 20417:1 20444:1 20446:1 20471:2 20473:2 20480:1 20481:1 20483:1 20486:1 20492:1 20497:1 20503:1 20509:1 20523:1 20524:1 20529:1 20532:1 20533:2 20534:1 20544:2 20546:1 20553:1 20556:1 20567:2 20570:1 20572:5 20578:1 20587:1 20588:4 20592:3 20593:1 20599:1 20611:1 20619:1 20626:1 20628:2 20630:1 20632:1 20633:1 20634:4 20647:1 20655:2 20656:9 20658:1 20662:2 20666:1 20670:1 20675:1 20676:1 20692:1 20693:1 20719:9 20720:1 20733:1 20754:1 20772:1 20779:6 20780:1 20784:1 20787:1 20796:1 20797:1 20812:1 20813:3 20831:1 20842:1 20844:4 20851:1 20857:1 20864:2 20877:1 20879:1 20886:2 20887:6 20889:2 20900:3 20903:1 20905:4 20914:1 20919:1 20924:1 20926:1 20938:1 20940:4 20955:1 20962:1 20963:3 20965:1 20968:3 20976:1 20982:1 20991:1 20996:1 20998:1 21005:1 21026:1 21029:1 21062:1 21066:1 21072:1 21073:1 21074:1 21079:1 21090:1 21100:2 21115:10 21116:3 21130:2 21134:3 21138:1 21140:4 21149:1 21150:3 21163:2 21164:1 21167:1 21176:1 21203:1 21215:1 21216:1 21218:2 21220:2 21234:1 21235:1 21238:1 21256:1 21257:1 21261:1 21262:1 21263:1 21266:1 21282:1 21284:2 21289:1 21296:1 21303:2 21306:1 21309:2 21311:1 21333:1 21340:3 21370:3 21385:1 21415:2 21434:1 21453:3 21456:3 21462:7 21469:2 21479:1 21484:1 21488:3 21498:2 21500:2 21501:1 21502:3 21506:1 21512:1 21520:4 21551:1 21554:1 21559:1 21580:1 21586:1 21599:1 21613:4 21617:1 21624:1 21635:1 21642:1 21647:1 21650:3 21674:2 21682:1 21686:2 21694:1 21695:1 21703:1 21708:1 21709:1 21724:1 21726:2 21730:4 21733:3 21742:1 21743:1 21753:1 21755:1 21757:1 21772:3 21773:2 21774:1 21777:2 21792:1 21794:1 21800:1 21845:1 21846:4 21847:1 21848:1 21853:1 21859:1 21861:1 21862:4 21863:1 21864:1 21865:1 21867:1 21869:1 21871:1 21886:1 21898:1 21913:3 21916:1 21917:1 21930:1 21974:2 21978:1 21981:2 21991:1 22014:2 22019:1 22022:1 22034:1 22041:1 22052:1 22053:1 22066:1 22068:2 22074:1 22076:2 22078:1 22088:1 22102:1 22120:1 22122:1 22125:1 22130:1 22136:2 22146:1 22157:2 22176:1 22188:1 22196:1 22218:1 22230:2 22232:1 22238:1 22260:2 22263:1 22282:2 22296:4 22304:1 22320:1 22327:1 22328:8 22337:1 22345:1 22352:1 22354:1 22358:3 22363:1 22370:1 22380:1 22382:1 22389:1 22391:5 22400:1 22402:1 22403:1 22407:1 22412:1 22435:3 22457:4 22459:2 22467:1 22469:2 22478:1 22502:1 22522:1 22530:1 22531:1 22532:1 22550:1 22552:1 22553:1 22559:1 22561:2 22564:3 22565:4 22568:1 22571:2 22572:1 22575:1 22578:2 22581:1 22582:1 22588:1 22592:1 22601:1 22612:6 22626:1 22627:2 22629:1 22632:1 22640:1 22642:1 22644:1 22646:1 22662:12 22663:6 22675:1 22685:1 22688:2 22690:1 22693:1 22695:1 22696:1 22705:1 22709:1 22710:1 22713:2 22718:3 22726:3 22739:1 22742:1 22755:1 22764:1 22802:1 22808:1 22811:1 22827:1 22841:1 22842:1 22853:2 22856:1 22862:1 22868:1 22870:1 22876:2 22880:2 22886:2 22890:1 22895:1 22901:2 22903:2 22907:1 22923:1 22929:1 22931:1 22937:1 22942:1 22943:2 22944:1 22946:1 22948:1 22951:1 22953:1 22963:1 22968:1 22974:5 22987:2 22992:1 22993:1 22997:1 23012:2 23018:2 23022:1 23024:3 23025:1 23041:1 23048:1 23076:1 23077:18 23078:2 23099:1 23101:1 23105:1 23106:1 23115:1 23123:1 23130:1 23136:2 23139:1 23144:1 23146:1 23158:2 23161:1 23162:1 23166:1 23169:1 23170:1 23181:1 23188:1 23197:1 23202:1 23217:1 23222:1 23242:1 23259:1 23261:1 23291:12 23292:1 23296:1 23307:1 23316:2 23319:1 23329:1 23350:2 23363:1 23373:1 23375:7 23378:1 23387:1 23398:1 23404:2 23406:1 23426:1 23432:1 23436:2 23440:1 23446:1 23454:1 23465:1 23481:1 23497:2 23503:2 23505:1 23514:2 23528:1 23532:1 23545:1 23557:1 23561:2 23568:1 23601:1 23602:2 23609:1 23613:1 23617:1 23622:1 23628:1 23631:1 23635:2 23639:5 23642:1 23648:1 23651:1 23652:2 23664:1 23666:1 23669:1 23695:7 23700:1 23704:1 23706:1 23719:1 23721:7 23738:2 23739:2 23756:1 23768:1 23771:1 23774:3 23775:1 23784:1 23786:1 23793:1 23802:1 23803:1 23826:1 23829:1 23840:1 23845:2 23861:1 23869:1 23889:1 23895:1 23902:3 23909:1 23923:1 23932:1 23943:1 23969:1 23987:1 23988:1 23999:2 24004:1 24009:3 24019:1 24024:1 24025:1 24027:2 24041:1 24050:1 24055:1 24061:3 24064:1 24092:5 24101:1 24104:1 24105:1 24113:1 24126:1 24129:1 24138:2 24140:1 24149:2 24150:1 24153:1 24161:1 24165:15 24166:2 24177:2 24185:1 24193:1 24195:1 24206:1 24214:2 24220:2 24230:1 24231:1 24233:1 24237:2 24245:1 24251:1 24255:2 24256:2 24259:1 24263:1 24268:1 24272:4 24275:3 24280:3 24285:3 24286:4 24289:1 24290:1 24298:1 24304:1 24305:1 24310:1 24345:1 24350:1 24351:1 24357:1 24359:2 24363:1 24372:1 24376:1 24377:2 24400:2 24408:2 24416:1 24420:2 24424:1 24425:1 24427:2 24434:2 24443:6 24444:1 24446:1 24454:1 24455:1 24458:1 24462:2 24471:1 24472:1 24478:1 24479:1 24500:1 24502:2 24503:2 24521:1 24524:1 24553:1 24570:1 24592:1 24596:1 24600:3 24622:1 24625:1 24643:1 24648:1 24653:1 24655:1 24658:6 24675:1 24676:1 24710:1 24713:1 24715:1 24720:1 24721:1 24733:1 24737:1 24740:3 24744:1 24747:1 24768:1 24773:2 24774:2 24784:1 24789:1 24792:3 24809:1 24812:1 24826:1 24830:1 24839:1 24844:2 24870:1 24880:1 24889:1 24892:1 24900:1 24917:1 24928:2 24938:2 24944:4 24949:1 24953:1 24954:2 24964:1 24966:1 24972:1 24975:1 24976:2 24982:1 24994:1 25000:1 25005:3 25019:2 25020:1 25022:1 25026:1 25028:1 25031:2 25032:2 25059:1 25065:1 25068:1 25070:1 25073:2 25076:1 25081:1 25109:1 25110:1 25125:6 25129:3 25132:2 25145:1 25147:1 25170:1 25177:1 25185:2 25191:1 25195:2 25200:2 25203:1 25207:2 25213:1 25214:1 25216:1 25224:2 25232:1 25239:1 25242:1 25244:1 25250:1 25251:1 25254:3 25255:1 25256:1 25257:1 25260:3 25263:1 25267:2 25269:1 25273:1 25277:1 25281:2 25291:2 25295:1 25299:1 25302:1 25329:1 25330:1 25339:1 25346:5 25363:1 25370:2 25389:2 25412:1 25451:1 25454:2 25471:1 25479:1 25487:1 25491:2 25514:2 25527:1 25530:1 25532:1 25536:1 25538:3 25543:5 25558:1 25560:1 25572:1 25582:1 25600:7 25630:2 25632:1 25644:1 25661:1 25666:1 25683:1 25693:1 25698:1 25699:1 25702:2 25717:2 25731:1 25739:1 25752:1 25768:1 25772:1 25775:1 25777:1 25787:2 25791:2 25793:3 25794:1 25797:1 25801:1 25804:2 25808:1 25809:2 25820:1 25822:2 25828:1 25829:5 25837:1 25841:1 25842:1 25843:1 25856:3 25861:2 25863:2 25867:1 25869:1 25871:5 25875:1 25880:3 25881:1 25888:1 25892:3 25893:1 25905:3 25909:1 25913:3 25917:1 25924:1 25941:1 25946:3 25964:1 25965:1 25983:1 26005:1 26012:3 26015:4 26022:7 26028:1 26054:5 26067:1 26071:1 26080:1 26081:1 26092:1 26098:1 26099:1 26101:1 26115:1 26123:1 26125:6 26129:1 26132:2 26163:1 26174:1 26175:1 26185:1 26194:1 26213:1 26214:1 26221:1 26222:1 26226:1 26229:1 26230:2 26236:2 26244:1 26265:3 26298:1 26300:1 26301:1 26305:1 26306:7 26308:2 26312:2 26315:1 26325:2 26340:1 26341:1 26368:6 26383:1 26401:1 26411:1 26418:1 26423:1 26452:1 26464:1 26473:1 26475:1 26486:1 26512:1 26514:1 26527:2 26538:1 26539:1 26540:2 26541:3 26544:2 26547:3 26553:1 26557:1 26558:1 26565:1 26580:1 26600:1 26612:1 26616:1 26625:1 26635:1 26655:3 26659:1 26664:2 26690:2 26695:2 26696:2 26706:1 26710:1 26713:1 26722:1 26724:1 26733:1 26735:1 26737:1 26745:1 26750:4 26751:1 26757:2 26759:1 26766:1 26785:1 26787:1 26790:4 26793:2 26806:1 26810:1 26832:1 26837:1 26843:1 26848:1 26855:1 26862:1 26874:1 26879:1 26883:3 26889:1 26891:1 26910:1 26920:3 26923:1 26940:1 26957:2 26961:2 26973:1 26978:1 26979:3 26986:3 26987:4 26988:1 26990:1 26996:1 27029:1 27031:5 27034:1 27036:1
1 13:2 35:1 36:1 39:1 43:1 47:1 50:1 55:1 67:1 71:1 89:2 120:1 137:1 138:4 139:1 144:1 150:2 157:1 165:2 169:3 178:1 182:6 184:1 192:1 202:1 209:1 222:1 233:1 238:7 255:3 264:1 280:2 306:1 315:5 317:3 327:3 328:1 334:3 339:1 346:2 359:1 362:3 372:1 382:2 395:6 397:6 404:1 412:1 416:2 442:1 445:2 446:1 450:1 471:1 472:2 500:1 511:1 515:2 532:1 540:1 544:3 552:1 568:1 578:1 582:4 584:2 588:1 604:3 612:1 630:2 636:1 665:1 678:1 683:1 711:1 722:1 723:3 726:1 743:1 745:2 751:2 764:1 789:7 794:1 798:1 800:2 802:4 805:2 808:1 822:16 826:4 837:5 854:4 867:1 868:1 872:1 873:4 874:2 875:9 877:1 878:3 880:4 882:1 894:2 912:5 915:4 920:1 926:1 927:1 953:2 958:1 972:1 1002:1 1013:2 1017:1 1035:1 1037:1 1053:1 1059:3 1061:1 1064:2 1108:3 1109:3 1114:1 1116:2 1118:1 1122:2 1125:1 1126:2 1141:1 1150:1 1151:1 1154:1 1158:2 1165:1 1170:2 1173:2 1180:1 1187:1 1193:2 1195:1 1213:1 1225:1 1227:1 1228:1 1244:1 1253:1 1262:1 1264:1 1266:1 1269:1 1279:1 1292:1 1312:1 1316:1 1324:1 1325:2 1339:1 1345:1 1346:2 1361:1 1364:1 1366:1 1370:1 1371:3 1379:1 1392:1 1397:1 1402:1 1404:1 1405:2 1408:1 1419:1 1427:1 1437:1 1445:1 1448:4 1454:8 1456:2 1465:1 1469:1 1483:1 1490:2 1499:1 1501:1 1510:1 1514:4 1523:1 1526:1 1528:1 1530:2 1538:1 1542:3 1549:1 1553:1 1555:1 1558:1 1559:2 1568:2 1571:3 1580:1 1584:1 1586:1 1587:1 1592:1 1596:2 1600:1 1601:1 1606:1 1615:1 1619:1 1625:1 1633:1 1634:2 1635:1 1647:2 1652:1 1653:5 1659:1 1662:1 1663:1 1675:1 1681:1 1684:3 1687:1 1688:2 1696:6 1703:1 1723:5 1724:3 1729:1 1737:1 1743:1 1745:1 1749:1 1757:2 1759:4 1761:1 1762:1 1764:1 1777:2 1786:1 1787:3 1793:1 1794:1 1801:3 1806:2 1807:1 1809:1 1822:3 1825:1 1847:1 1866:2 1870:9 1875:1 1881:1 1885:2 1892:7 1896:1 1897:2 1899:2 1904:1 1907:2 1925:2 1931:1 1938:1 1949:1 1952:1 1956:1 1959:1 1976:2 1978:1 1983:2 1984:1 1988:2 1990:2 2004:1 2014:1 2027:11 2037:2 2046:1 2051:1 2053:1 2071:1 2077:1 2078:1 2092:3 2103:5 2105:1 2107:1 2119:1 2120:1 2123:1 2126:2 2142:3 2143:2 2145:1 2147:3 2148:5 2150:1 2152:2 2154:2 2157:2 2158:2 2159:1 2160:4 2161:5 2164:1 2165:1 2167:5 2170:4 2172:5 2173:7 2177:2 2185:1 2196:1 2216:1 2219:2 2224:3 2226:3 2229:1 2234:1 2238:1 2246:2 2248:1 2250:1 2257:1 2274:1 2275:1 2277:1 2285:1 2293:1 2294:1 2296:1 2321:1 2328:1 2332:1 2333:1 2342:1 2350:3 2351:1 2360:1 2367:1 2371:1 2377:3 2388:2 2390:1 2403:1 2405:1 2413:1 2417:1 2432:3 2435:2 2437:1 2439:7 2443:1 2444:1 2445:1 2454:1 2457:1 2478:4 2479:2 2480:1 2483:2 2496:2 2503:2 2504:1 2505:1 2506:2 2513:7 2520:2 2526:2 2529:9 2535:6 2537:1 2545:2 2547:1 2553:1 2555:2 2557:1 2562:3 2563:2 2574:4 2589:1 2591:3 2597:3 2602:1 2605:2 2611:1 2638:1 2640:2 2641:2 2654:4 2655:1 2659:1 2662:7 2667:2 2668:1 2671:1 2684:1 2686:1 2691:1 2710:1 2716:3 2719:1 2738:5 2745:1 2749:1 2752:17 2763:1 2773:3 2774:1 2776:1 2777:1 2779:1 2786:2 2791:3 2792:1 2794:1 2811:22 2813:3 2826:1 2836:2 2839:3 2848:1 2856:2 2866:1 2870:2 2883:1 2889:1 2893:1 2895:1 2898:1 2902:1 2907:1 2917:1 2918:5 2934:3 2939:1 2948:1 2952:1 2970:1 2979:1 2988:1 2989:1 2993:1 2998:1 3006:2 3014:1 3027:2 3035:1 3042:3 3057:1 3070:1 3089:1 3090:2 3128:1 3129:2 3130:1 3134:1 3139:2 3149:8 3150:1 3193:1 3216:1 3225:3 3230:1 3234:1 3260:1 3263:1 3264:2 3265:1 3272:1 3277:1 3283:1 3285:1 3286:2 3291:1 3299:1 3305:1 3308:1 3328:1 3343:1 3358:2 3362:1 3383:1 3384:17 3399:1 3403:2 3405:2 3406:2 3409:1 3425:1 3429:1 3430:1 3438:1 3442:1 3446:1 3477:1 3479:2 3480:1 3484:1 3489:3 3490:1 3493:2 3501:1 3523:1 3548:1 3549:1 3552:1 3554:1 3559:2 3562:1 3565:2 3569:1 3576:3 3580:1 3581:1 3596:1 3599:1 3603:2 3608:1 3610:1 3626:2 3627:1 3628:2 3631:1 3640:2 3648:3 3649:1 3663:2 3664:1 3668:5 3670:2 3673:2 3677:1 3678:2 3687:4 3698:1 3700:2 3715:1 3716:2 3730:1 3732:2 3734:4 3738:1 3743:1 3746:1 3756:2 3765:7 3766:5 3772:2 3808:1 3810:2 3813:1 3818:1 3834:1 3837:1 3839:2 3857:1 3864:1 3866:2 3870:1 3872:1 3875:1 3878:1 3879:1 3891:2 3900:1 3910:2 3924:2 3932:1 3937:4 3938:1 3940:3 3941:1 3944:2 3946:1 3950:1 3954:2 3977:1 3981:1 3992:1 4008:1 4019:1 4025:1 4027:2 4029:1 4045:7 4075:3 4081:1 4090:2 4097:1 4101:1 4104:3 4114:2 4127:2 4133:1 4140:1 4149:1 4150:1 4152:1 4156:4 4157:2 4169:1 4172:1 4177:4 4194:1 4202:1 4203:1 4211:1 4220:1 4225:2 4233:2 4246:1 4249:1 4252:2 4256:1 4257:3 4259:1 4267:1 4276:1 4292:3 4304:1 4314:5 4327:1 4331:1 4332:1 4355:5 4363:3 4371:1 4372:1 4377:4 4380:2 4395:1 4397:5 4417:1 4420:2 4428:1 4437:1 4440:3 4443:3 4456:3 4459:1 4468:1 4469:2 4475:1 4494:1 4496:2 4507:1 4511:1 4523:1 4524:1 4537:1 4549:1 4565:16 4567:2 4573:1 4574:1 4576:1 4581:1 4586:1 4595:1 4601:1 4613:1 4623:1 4629:1 4645:1 4664:1 4669:3 4677:1 4684:1 4685:4 4687:7 4688:3 4690:1 4693:2 4695:2 4696:2 4698:1 4700:1 4701:2 4703:6 4704:4 4706:1 4708:2 4709:8 4715:2 4716:6 4719:1 4721:1 4733:1 4764:1 4776:1 4784:1 4789:3 4796:1 4820:1 4853:1 4891:1 4903:1 4917:1 4930:1 4937:2 4973:1 4977:1 5002:3 5008:2 5018:1 5057:1 5061:1 5066:2 5088:6 5094:1 5101:1 5110:1 5121:1 5140:1 5146:1 5157:2 5163:1 5171:1 5180:1 5188:1 5197:1 5220:1 5230:1 5245:1 5252:1 5254:1 5264:1 5284:2 5287:1 5290:1 5292:1 5298:2 5302:1 5305:1 5313:5 5314:1 5316:2 5317:1 5320:4 5321:1 5336:2 5337:1 5348:1 5364:1 5369:3 5379:2 5380:1 5383:1 5384:1 5394:6 5403:1 5406:2 5452:1 5461:1 5468:1 5481:1 5483:1 5485:1 5493:1 5503:1 5507:1 5509:1 5510:1 5516:2 5522:3 5524:1 5538:1 5544:1 5549:1 5562:1 5568:1 5569:2 5576:2 5584:1 5590:2 5593:1 5594:2 5596:4 5607:1 5610:6 5612:1 5613:1 5619:1 5620:2 5626:2 5628:1 5629:1 5632:1 5633:1 5636:1 5641:1 5668:1 5671:1 5673:1 5678:2 5680:2 5682:1 5688:1 5692:2 5693:1 5696:13 5715:1 5735:3 5742:1 5761:1 5772:1 5787:4 5797:2 5812:6 5817:1 5824:1 5854:1 5869:1 5872:1 5890:1 5897:1 5898:1 5901:1 5905:2 5906:3 5908:1 5911:1 5912:1 5915:2 5916:1 5921:2 5923:4 5924:3 5958:1 5992:1 5997:1 6008:1 6010:1 6031:1 6035:1 6046:2 6051:4 6052:2 6063:1 6072:1 6106:1 6115:1 6124:2 6129:2 6133:1 6141:1 6148:1 6154:2 6177:1 6191:2 6199:2 6208:1 6213:1 6222:1 6270:1 6273:1 6281:1 6290:2 6292:1 6295:1 6298:1 6301:1 6314:1 6316:9 6317:1 6321:1 6323:2 6325:1 6327:3 6329:1 6336:1 6338:1 6344:1 6355:2 6371:1 6375:1 6378:1 6379:1 6385:1 6387:1 6389:1 6391:1 6424:1 6426:3 6437:2 6442:1 6448:2 6451:1 6465:1 6470:1 6476:1 6479:1 6483:2 6484:1 6491:2 6507:2 6525:2 6529:1 6530:1 6537:1 6545:1 6546:2 6553:1 6563:7 6569:2 6581:1 6588:1 6595:1 6596:1 6600:1 6606:1 6609:3 6610:2 6618:1 6623:6 6624:1 6626:1 6628:1 6631:5 6634:1 6637:1 6651:1 6657:1 6658:1 6660:1 6670:1 6678:1 6701:1 6702:1 6707:4 6716:5 6724:1 6732:1 6735:1 6752:3 6755:1 6757:1 6765:1 6778:1 6786:1 6788:1 6790:1 6798:1 6806:1 6812:1 6824:1 6850:1 6868:1 6871:1 6875:1 6879:2 6917:1 6931:1 6935:2 6936:6 6940:4 6942:1 6943:1 6945:1 6951:3 6955:1 6971:6 6972:2 6974:2 6988:1 6989:3 6998:1 7002:1 7012:1 7019:1 7020:2 7023:2 7028:1 7038:1 7043:1 7045:1 7051:1 7053:1 7066:1 7067:1 7075:1 7076:2 7078:1 7081:1 7086:2 7090:1 7101:1 7102:1 7114:1 7120:1 7138:4 7153:4 7154:9 7165:2 7170:1 7173:4 7176:4 7178:3 7180:1 7183:1 7192:1 7198:4 7199:3 7200:1 7213:50 7214:2 7220:1 7222:1 7228:1 7229:11 7231:9 7236:2 7240:1 7270:1 7276:1 7278:1 7287:1 7288:2 7297:1 7301:3 7302:2 7307:1 7309:1 7320:1 7322:2 7331:2 7341:3 7358:1 7360:1 7362:1 7364:1 7380:2 7388:1 7389:1 7392:2 7399:1 7404:1 7409:1 7410:2 7440:1 7446:1 7451:2 7453:1 7454:3 7459:1 7483:1 7489:1 7490:1 7491:1 7501:3 7540:1 7549:1 7559:1 7564:1 7569:2 7573:1 7581:1 7591:1 7592:1 7594:1 7600:1 7604:1 7608:1 7621:2 7628:1 7631:1 7639:1 7643:1 7644:3 7654:1 7663:1 7677:1 7678:2 7700:27 7706:1 7724:3 7726:3 7729:1 7731:2 7732:1 7734:1 7752:1 7758:1 7773:6 7776:1 7777:1 7781:1 7810:1 7821:5 7823:2 7825:2 7827:1 7830:1 7831:1 7844:1 7854:2 7855:4 7860:3 7868:1 7874:1 7894:2 7896:1 7902:1 7906:1 7918:1 7920:1 7930:1 7937:1 7939:2 7946:1 7947:1 7957:1 7958:2 7966:2 7968:2 7969:1 8006:1 8028:1 8033:1 8034:1 8038:1 8039:1 8041:1 8048:1 8061:3 8064:2 8076:7 8078:1 8087:2 8090:3 8109:2 8115:1 8116:1 8122:1 8127:2 8130:1 8131:2 8140:1 8145:1 8146:1 8162:2 8168:1 8191:2 8195:1 8196:1 8228:1 8233:1 8234:1 8240:1 8244:1 8271:1 8272:1 8285:3 8293:1 8316:1 8319:2 8320:1 8324:3 8347:3 8353:1 8360:2 8361:1 8370:1 8377:1 8393:1 8394:1 8395:1 8398:1 8404:1 8407:2 8415:8 8416:1 8417:1 8423:1 8425:1 8429:2 8436:1 8442:2 8444:1 8455:7 8456:1 8477:1 8484:1 8495:2 8500:1 8505:11 8506:6 8516:3 8517:1 8524:1 8551:3 8554:1 8561:1 8566:1 8570:3 8572:1 8589:1 8596:1 8603:2 8605:2 8607:3 8609:2 8624:2 8629:1 8635:1 8644:1 8661:1 8671:1 8672:1 8681:2 8683:1 8689:1 8692:5 8694:2 8696:1 8700:1 8701:1 8708:1 8714:1 8715:4 8720:1 8721:1 8734:4 8770:1 8771:1 8782:1 8795:1 8802:1 8807:1 8823:3 8832:1 8835:3 8840:1 8852:1 8854:1 8858:1 8863:1 8865:1 8885:1 8888:1 8901:1 8905:1 8913:1 8919:8 8924:3 8956:3 8957:1 8964:1 8965:1 8975:3 8981:1 9005:1 9018:1 9019:2 9024:1 9028:1 9031:3 9032:3 9034:2 9038:1 9056:1 9061:1 9064:2 9066:2 9096:2 9099:1 9107:1 9117:1 9142:2 9159:1 9163:1 9173:2 9178:1 9180:1 9183:1 9186:2 9196:1 9200:1 9201:1 9210:1 9242:1 9243:1 9248:2 9249:1 9262:1 9263:1 9266:1 9289:1 9291:1 9294:1 9296:1 9298:1 9301:5 9318:4 9325:4 9327:2 9336:1 9354:2 9363:1 9371:3 9372:1 9378:1 9391:2 9396:1 9398:1 9406:1 9410:2 9415:2 9427:1 9433:1 9434:1 9439:1 9444:1 9449:4 9453:1 9481:2 9485:1 9490:13 9492:1 9493:2 9497:2 9501:1 9519:2 9520:2 9535:1 9540:1 9544:1 9555:1 9572:1 9587:1 9588:2 9590:1 9597:1 9607:1 9622:1 9628:1 9643:1 9644:1 9646:1 9648:1 9649:1 9651:4 9661:1 9663:1 9665:2 9702:1 9710:1 9715:4 9717:1 9720:1 9722:1 9723:1 9729:1 9732:3 9739:1 9741:1 9742:1 9747:1 9749:2 9755:4 9769:1 9771:1 9787:1 9797:1 9803:1 9804:1 9806:1 9810:1 9817:1 9818:1 9819:2 9821:1 9823:2 9827:1 9837:2 9839:1 9842:1 9846:1 9853:1 9860:1 9864:1 9866:3 9868:1 9870:1 9877:2 9879:1 9881:1 9886:7 9889:4 9899:2 9900:3 9905:1 9910:1 9917:1 9920:2 9926:1 9943:2 9953:7 9954:2 9964:1 9979:2 9982:1 9983:1 9991:4 9995:1 10013:1 10026:1 10028:1 10035:3 10047:2 10054:1 10057:7 10071:2 10080:1 10092:1 10093:1 10106:3 10134:1 10140:1 10146:1 10168:1 10180:1 10191:1 10195:1 10197:1 10201:1 10206:1 10224:1 10225:1 10239:1 10240:2 10242:3 10245:1 10246:2 10252:1 10254:2 10261:1 10264:5 10265:6 10268:1 10275:1 10276:1 10280:1 10282:2 10283:3 10287:1 10288:1 10289:4 10293:1 10298:1 10307:1 10309:1 10310:3 10313:3 10318:1 10321:1 10336:3 10342:1 10345:2 10363:1 10372:1 10373:1 10376:4 10378:1 10392:1 10406:1 10411:1 10424:1 10434:2 10436:1 10440:2 10455:1 10466:1 10493:1 10499:1 10506:1 10511:1 10512:1 10515:1 10518:1 10528:1 10530:1 10532:3 10556:1 10575:1 10586:1 10592:1 10597:2 10599:1 10611:3 10614:2 10617:1 10619:1 10627:2 10630:2 10632:1 10633:1 10635:2 10637:1 10644:3 10646:1 10647:1 10648:2 10657:1 10663:3 10667:2 10677:1 10678:1 10693:21 10694:1 10696:1 10707:1 10718:1 10730:1 10734:5 10742:1 10745:2 10746:2 10755:1 10756:1 10759:2 10769:1 10786:1 10788:2 10799:3 10803:1 10813:3 10818:2 10831:1 10847:1 10859:1 10863:1 10884:1 10890:1 10906:1 10924:1 10925:1 10932:3 10933:1 10934:1 10936:1 10937:1 10950:1 10951:5 10955:1 10956:2 10957:1 10960:2 10962:1 10968:1 10969:1 10977:1 10979:1 10988:1 10991:1 10992:1 10995:1 10998:1 11003:2 11006:5 11009:5 11014:1 11031:1 11040:1 11055:1 11073:1 11088:2 11100:1 11118:1 11120:1 11135:2 11141:1 11151:1 11156:1 11159:1 11160:1 11166:6 11173:1 11180:1 11184:2 11188:2 11189:1 11201:1 11206:1 11213:1 11214:1 11220:2 11227:2 11243:2 11246:1 11254:2 11261:1 11263:2 11283:1 11285:1 11301:2 11306:1 11314:1 11317:2 11321:1 11327:2 11333:1 11365:1 11372:1 11376:1 11380:5 11381:4 11382:2 11394:2 11406:2 11412:1 11415:1 11418:1 11424:1 11476:1 11478:2 11479:1 11502:1 11506:1 11513:1 11520:1 11534:1 11542:1 11547:1 11557:1 11574:1 11635:1 11638:3 11662:2 11674:1 11686:1 11689:1 11691:1 11695:1 11705:1 11718:1 11720:2 11721:1 11736:3 11745:1 11758:1 11767:1 11774:1 11824:1 11831:1 11836:1 11839:1 11840:3 11847:1 11859:1 11863:1 11882:15 11886:6 11899:2 11904:1 11915:1 11923:1 11928:2 11929:3 11936:4 11943:1 11952:1 11954:1 11959:1 11964:2 11965:1 11974:1 11980:2 11981:1 11983:1 11989:1 12016:1 12034:1 12039:1 12040:1 12045:2 12048:1 12061:1 12068:1 12069:1 12081:1 12090:1 12091:2 12097:1 12100:2 12101:1 12108:1 12110:1 12112:1 12134:1 12151:5 12161:2 12163:1 12208:1 12209:1 12231:1 12241:2 12245:1 12252:1 12254:4 12257:4 12268:1 12269:2 12273:2 12274:2 12283:3 12290:1 12306:8 12309:1 12323:1 12325:2 12346:1 12351:4 12352:1 12367:1 12379:1 12385:2 12386:1 12387:1 12389:2 12399:9 12400:1 12410:3 12413:1 12428:1 12436:1 12437:1 12440:2 12446:1 12452:1 12453:1 12463:20 12469:1 12474:1 12490:1 12506:2 12508:2 12515:3 12529:1 12533:2 12544:1 12547:2 12556:1 12557:1 12559:1 12590:3 12613:1 12616:6 12617:1 12633:1 12640:2 12642:1 12645:1 12668:5 12685:1 12692:1 12694:1 12696:1 12703:3 12705:1 12707:2 12714:1 12715:1 12719:1 12721:1 12728:6 12729:1 12732:1 12733:2 12734:1 12736:2 12737:1 12741:8 12742:3 12754:1 12756:1 12760:1 12761:1 12763:1 12764:1 12765:1 12783:1 12787:1 12805:1 12814:1 12831:1 12842:2 12848:2 12854:1 12861:1 12872:1 12878:1 12887:7 12919:1 12926:1 12929:1 12932:1 12939:1 12940:1 12941:1 12946:1 12956:2 12960:1 12978:2 12986:1 12996:1 12997:1 12999:1 13005:8 13014:1 13025:3 13032:1 13040:1 13041:1 13064:1 13076:1 13077:2 13085:2 13090:1 13103:1 13109:1 13111:1 13118:1 13131:2 13139:1 13155:1 13161:1 13165:1 13170:1 13173:1 13180:1 13188:1 13197:1 13211:1 13218:1 13237:1 13245:2 13261:5 13277:1 13288:1 13309:1 13320:1 13380:1 13383:3 13384:4 13391:1 13404:2 13406:1 13408:1 13410:2 13412:1 13432:1 13436:1 13442:1 13452:2 13464:1 13470:1 13479:2 13480:1 13499:1 13509:1 13524:2 13531:1 13535:1 13548:1 13552:1 13554:1 13556:1 13563:2 13567:1 13578:3 13585:2 13595:1 13630:1 13632:2 13637:2 13641:1 13653:1 13666:2 13679:2 13680:1 13690:1 13695:2 13713:1 13720:1 13723:1 13731:1 13741:1 13745:1 13756:3 13768:1 13771:2 13774:1 13804:1 13807:1 13847:1 13850:1 13885:2 13891:2 13892:2 13895:1 13900:1 13902:1 13903:1 13912:1 13923:2 13932:1 13977:1 13979:3 13984:1 13997:1 13998:1 13999:2 14002:1 14003:1 14004:1 14032:1 14083:1 14087:1 14092:1 14094:2 14115:1 14116:1 14125:1 14155:1 14170:2 14182:1 14187:1 14204:1 14211:1 14212:1 14213:2 14226:1 14240:2 14245:3 14248:1 14270:1 14274:1 14275:1 14286:1 14295:2 14311:3 14315:1 14318:1 14334:1 14336:1 14345:2 14354:1 14362:2 14378:1 14380:1 14385:1 14387:2 14391:1 14397:6 14409:4 14419:1 14424:5 14435:3 14457:1 14460:1 14467:1 14476:1 14484:2 14486:1 14489:2 14540:1 14552:2 14553:1 14564:2 14571:1 14575:1 14579:4 14584:1 14586:1 14593:1 14603:2 14605:4 14606:1 14609:1 14612:1 14624:2 14626:1 14639:1 14658:2 14666:2 14689:1 14703:2 14706:1 14709:1 14719:3 14726:2 14735:1 14737:1 14739:3 14753:1 14764:3 14768:1 14777:1 14782:1 14802:1 14815:1 14817:1 14819:1 14841:1 14844:1 14847:1 14852:1 14853:1 14855:1 14857:18 14859:1 14871:1 14872:1 14874:1 14876:3 14878:1 14900:3 14904:1 14943:2 14954:1 14958:1 14962:2 14972:4 14976:1 14990:2 14994:1 15008:2 15015:1 15029:1 15030:2 15046:1 15052:1 15060:1 15062:1 15064:1 15068:1 15074:2 15075:1 15082:1 15100:3 15103:1 15117:1 15122:1 15128:6 15130:2 15131:2 15132:6 15133:2 15134:1 15135:2 15137:1 15139:2 15140:5 15143:1 15144:1 15147:1 15150:1 15151:2 15153:1 15161:1 15177:1 15188:2 15201:1 15204:1 15206:2 15216:1 15232:1 15238:1 15239:1 15251:1 15255:2 15256:1 15257:1 15261:1 15279:2 15282:1 15284:1 15288:2 15289:2 15294:1 15307:2 15312:1 15328:1 15336:1 15337:1 15367:1 15370:1 15375:1 15388:1 15418:1 15430:1 15434:3 15445:1 15446:2 15455:2 15456:1 15466:1 15470:5 15475:1 15478:2 15487:1 15495:1 15496:1 15501:2 15504:1 15505:4 15509:2 15510:1 15513:1 15516:1 15522:4 15526:2 15534:4 15544:1 15553:1 15585:14 15588:1 15604:1 15606:1 15611:2 15613:4 15614:2 15618:1 15656:1 15671:1 15672:1 15678:2 15689:1 15690:1 15695:4 15705:1 15706:1 15720:4 15722:2 15737:1 15741:1 15742:1 15754:1 15756:2 15761:1 15778:5 15791:1 15799:1 15802:1 15811:1 15823:1 15841:1 15849:1 15878:2 15879:4 15895:1 15898:1 15920:1 15927:1 15936:2 15945:1 15946:1 15950:1 15970:1 15973:1 15980:1 15987:2 15992:1 16006:1 16014:1 16022:2 16031:1 16034:2 16039:1 16041:2 16047:1 16055:1 16072:1 16073:1 16116:1 16119:1 16150:1 16159:1 16163:1 16169:1 16183:1 16187:1 16189:1 16199:3 16202:1 16212:1 16213:3 16218:1 16222:1 16224:1 16232:3 16238:2 16240:2 16244:2 16249:1 16250:10 16284:1 16287:2 16288:1 16293:3 16294:1 16298:1 16305:3 16311:1 16313:2 16315:1 16316:1 16331:1 16368:1 16369:1 16389:4 16392:1 16403:1 16416:2 16427:1 16428:1 16434:1 16435:1 16440:1 16451:1 16453:1 16482:1 16483:1 16484:1 16486:1 16504:1 16508:1 16513:1 16518:2 16533:1 16554:1 16557:1 16576:1 16578:1 16589:1 16593:1 16594:3 16598:1 16600:1 16602:1 16614:1 16616:1 16646:1 16661:1 16684:2 16709:1 16710:1 16720:2 16740:2 16747:1 16814:2 16815:1 16823:1 16833:1 16838:1 16844:1 16862:1 16878:1 16879:1 16885:1 16894:1 16898:1 16907:1 16934:1 16937:3 16946:1 16951:1 16981:1 16986:1 16999:15 17009:1 17025:1 17050:1 17070:1 17071:1 17087:14 17097:4 17099:2 17102:1 17103:6 17128:3 17142:1 17156:2 17184:6 17192:2 17204:2 17218:2 17219:1 17243:3 17251:2 17253:1 17263:2 17276:2682 17285:1 17289:1 17299:1 17301:1 17302:1 17304:1 17347:1 17351:1 17353:1 17356:1 17368:1 17374:2 17389:1 17393:1 17414:2 17420:1 17421:1 17445:1 17465:1 17467:1 17469:1 17472:2 17474:6 17475:4 17488:1 17493:1 17495:1 17510:1 17515:1 17526:1 17535:1 17542:1 17549:1 17551:1 17552:1 17592:1 17595:3 17599:2 17608:1 17615:1 17644:1 17649:2 17653:1 17654:3 17659:2 17674:1 17684:2 17686:1 17697:1 17699:2 17700:1 17707:2 17709:1 17717:1 17728:1 17735:1 17737:1 17748:2 17754:1 17765:1 17776:2 17780:1 17787:1 17789:1 17791:2 17793:2 17795:2 17803:1 17809:1 17817:2 17836:2 17837:3 17855:3 17859:1 17862:1 17870:3 17876:1 17895:3 17896:1 17900:1 17904:1 17905:1 17913:1 17917:2 17920:1 17927:9 17949:1 17951:1 17966:1 17970:2 17971:1 17978:2 17992:5 17993:1 17999:1 18009:1 18011:2 18029:1 18043:1 18047:4 18052:1 18054:2 18060:1 18062:2 18070:1 18075:4 18076:1 18081:1 18085:1 18090:2 18101:1 18103:1 18104:4 18115:2 18116:1 18123:3 18141:1 18156:4 18159:1 18163:1 18164:1 18178:1 18182:2 18183:2 18187:2 18191:1 18193:1 18194:2 18197:1 18210:1 18218:2 18225:1 18228:1 18233:1 18234:1 18240:1 18247:1 18271:1 18282:3 18294:1 18295:2 18296:1 18297:1 18299:1 18301:1 18303:3 18308:1 18321:1 18323:1 18326:1 18328:1 18332:1 18339:1 18343:1 18349:2 18354:1 18359:2 18371:1 18374:2 18381:2 18382:1 18385:1 18390:1 18400:1 18408:1 18409:1 18416:1 18420:2 18422:4 18427:1 18428:4 18430:1 18474:1 18477:1 18478:1 18492:1 18495:3 18499:1 18501:1 18503:2 18504:2 18508:2 18519:2 18521:3 18525:3 18529:3 18533:1 18534:3 18536:2 18538:1 18548:1 18556:5 18564:3 18580:1 18582:1 18596:1 18597:1 18598:1 18603:2 18604:4 18613:1 18627:1 18628:2 18638:1 18639:1 18645:1 18653:1 18658:2 18665:3 18679:1 18685:1 18690:2 18691:3 18707:1 18708:1 18716:3 18718:22 18719:2 18726:1 18735:5 18738:1 18756:2 18759:1 18767:1 18784:3 18785:1 18792:1 18793:1 18805:1 18811:1 18817:1 18821:1 18835:1 18838:1 18845:1 18847:1 18848:1 18866:1 18868:1 18875:1 18882:1 18895:1 18905:4 18919:2 18933:1 18937:2 18941:1 18949:2 18960:1 18962:1 18966:1 18969:2 18996:8 18998:2 19005:1 19013:1 19022:1 19039:1 19040:1 19041:1 19050:1 19054:1 19057:1 19080:1 19082:1 19085:4 19101:4 19112:1 19117:1 19119:1 19125:1 19128:1 19132:1 19133:1 19140:1 19143:2 19175:2 19183:3 19189:2 19190:3 19201:3 19202:1 19204:2 19207:1 19209:1 19215:2 19221:1 19229:1 19243:5 19245:2 19254:2 19256:1 19261:1 19268:1 19276:1 19279:2 19284:3 19286:1 19293:2 19308:1 19311:2 19317:1 19324:2 19325:1 19331:5 19334:1 19338:2 19341:1 19344:1 19349:2 19359:3 19385:2 19391:1 19392:1 19394:2 19412:1 19415:1 19421:2 19422:1 19431:2 19439:2 19443:2 19447:2 19450:2 19451:1 19459:2 19476:1 19478:1 19484:2 19506:2 19515:1 19516:4 19521:1 19522:1 19523:4 19532:1 19537:2 19542:1 19545:1 19546:1 19547:1 19551:1 19552:1 19558:2 19564:1 19567:1 19577:1 19581:1 19583:1 19591:1 19595:1 19614:1 19620:2 19627:1 19629:1 19633:2 19636:3 19642:1 19645:1 19648:1 19661:1 19664:1 19697:1 19736:1 19756:2 19757:1 19770:2 19773:1 19782:2 19785:2 19790:1 19791:1 19794:1 19795:1 19798:1 19799:1 19806:1 19812:2 19821:3 19823:1 19830:1 19837:1 19845:1 19866:1 19873:1 19880:1 19889:1 19896:1 19897:1 19919:2 19921:1 19922:1 19927:1 19931:2 19934:1 19936:1 19948:1 19951:2 19954:2 19959:2 19960:1 19961:1 19963:2 19964:1 19965:1 19966:1 19976:1 19978:2 19989:1 19998:14 20001:1 20009:2 20010:2 20017:2 20028:1 20041:1 20046:1 20049:1 20051:1 20061:1 20063:1 20064:1 20066:2 20067:1 20071:1 20072:2 20075:1 20099:1 20104:1 20111:1 20125:2 20134:1 20138:2 20141:1 20142:1 20147:1 20149:1 20151:6 20154:3 20156:1 20166:2 20177:1 20178:1 20179:1 20182:1 20183:1 20204:1 20205:1 20206:1 20210:3 20212:4 20215:1 20240:1 20248:1 20252:1 20316:4 20321:1 20322:5 20325:3 20326:3 20328:1 20329:1 20334:1 20337:2 20340:1 20341:2 20350:1 20351:1 20352:5 20360:1 20362:1 20368:1 20369:1 20370:1 20381:1 20396:2 20400:2 20403:2 20417:1 20444:1 20446:1 20471:2 20473:2 20480:1 20481:1 20483:1 20486:1 20492:1 20497:1 20503:1 20509:1 20523:1 20524:1 20529:1 20532:1 20533:3 20534:2 20544:2 20546:1 20553:1 20556:1 20567:2 20570:1 20572:5 20578:1 20587:1 20588:4 20592:3 20593:1 20599:1 20611:1 20619:1 20626:1 20628:2 20630:1 20632:1 20633:1 20634:4 20647:1 20655:2 20656:10 20658:1 20662:2 20666:1 20670:1 20675:1 20676:1 20692:1 20693:1 20719:9 20720:1 20733:1 20754:1 20772:1 20779:6 20780:1 20784:1 20787:1 20791:1 20796:1 20797:1 20812:1 20813:3 20831:1 20842:1 20844:4 20851:1 20857:1 20864:2 20877:1 20879:1 20886:2 20887:7 20889:2 20900:3 20903:1 20905:4 20914:1 20919:1 20924:1 20926:1 20938:1 20940:5 20955:1 20962:1 20963:3 20965:1 20968:3 20976:1 20982:1 20991:1 20996:1 20998:1 21005:1 21026:1 21029:1 21062:1 21066:1 21072:1 21073:1 21074:1 21079:1 21090:1 21100:2 21115:10 21116:3 21130:2 21134:3 21138:1 21140:4 21149:1 21150:3 21163:2 21164:1 21167:1 21176:1 21203:1 21215:1 21216:1 21218:2 21220:2 21234:1 21235:1 21238:1 21256:1 21257:1 21261:1 21262:1 21263:1 21266:2 21282:1 21284:2 21289:1 21296:1 21303:2 21306:1 21309:2 21311:1 21333:1 21340:3 21370:3 21385:1 21415:3 21434:1 21453:3 21456:3 21462:7 21469:2 21479:1 21484:1 21488:3 21498:2 21500:2 21501:1 21502:3 21506:1 21512:1 21520:4 21551:1 21554:1 21559:1 21580:1 21583:1 21586:1 21599:1 21613:4 21617:1 21624:1 21635:1 21642:1 21647:1 21650:3 21674:2 21682:1 21686:2 21694:1 21695:1 21703:1 21708:1 21709:1 21724:1 21726:2 21730:4 21733:3 21742:1 21743:1 21753:1 21755:1 21757:1 21772:3 21773:2 21774:1 21777:2 21788:1 21792:1 21794:1 21800:1 21842:1 21845:1 21846:4 21847:1 21848:1 21853:1 21859:1 21861:1 21862:4 21863:1 21864:1 21865:1 21867:1 21869:1 21871:1 21886:1 21898:1 21913:3 21916:1 21917:1 21930:1 21974:3 21978:1 21981:2 21991:1 22014:2 22019:1 22022:1 22034:1 22041:1 22052:1 22053:1 22066:1 22068:2 22074:1 22076:2 22078:1 22088:1 22102:1 22120:1 22122:1 22125:1 22130:1 22136:2 22146:1 22157:2 22176:1 22188:1 22196:1 22218:1 22230:2 22232:1 22238:1 22260:2 22263:1 22282:2 22296:4 22304:1 22320:1 22327:1 22328:8 22337:1 22345:1 22352:1 22354:1 22358:3 22363:1 22370:1 22380:1 22382:1 22389:1 22391:5 22400:1 22402:1 22403:1 22407:1 22412:1 22435:4 22457:4 22459:2 22467:1 22469:2 22478:1 22502:1 22522:1 22530:1 22531:1 22532:1 22550:1 22552:1 22553:1 22559:1 22561:2 22564:3 22565:4 22568:1 22571:2 22572:1 22575:1 22578:2 22581:1 22582:1 22588:1 22592:1 22601:1 22612:6 22626:1 22627:2 22629:1 22632:1 22640:1 22642:1 22644:1 22646:1 22662:12 22663:6 22675:1 22685:1 22688:2 22690:1 22693:1 22695:1 22696:1 22705:1 22709:1 22710:1 22713:2 22718:3 22726:3 22739:1 22742:1 22755:1 22764:1 22802:1 22808:1 22811:1 22827:1 22841:1 22842:1 22853:3 22856:1 22862:1 22868:1 22870:1 22876:3 22880:2 22886:2 22890:1 22895:1 22901:3 22903:2 22907:1 22923:1 22929:1 22931:1 22937:1 22942:1 22943:2 22944:1 22946:1 22948:1 22951:1 22953:1 22963:1 22968:1 22974:5 22987:2 22992:1 22993:1 22997:1 23012:2 23018:2 23022:1 23024:3 23025:1 23041:1 23048:1 23076:1 23077:18 23078:2 23099:1 23101:1 23105:1 23106:1 23115:1 23123:1 23130:1 23136:2 23139:1 23144:1 23146:1 23158:2 23161:1 23162:1 23166:1 23169:1 23170:1 23181:1 23188:1 23197:1 23202:1 23217:1 23222:1 23242:1 23259:1 23261:1 23272:1 23291:12 23292:1 23296:1 23307:1 23316:2 23319:1 23329:1 23341:1 23350:3 23363:1 23373:1 23375:7 23378:1 23387:1 23398:1 23404:2 23406:1 23426:1 23432:1 23436:3 23440:1 23446:1 23454:1 23465:1 23481:1 23497:2 23503:2 23505:1 23514:2 23528:1 23532:1 23545:1 23557:1 23561:2 23568:1 23601:1 23602:2 23609:1 23613:1 23617:1 23622:1 23628:1 23631:1 23635:3 23639:5 23642:1 23648:1 23651:1 23652:2 23664:1 23666:1 23669:1 23695:7 23700:1 23704:1 23706:1 23719:1 23721:8 23738:2 23739:2 23756:1 23768:1 23771:1 23774:4 23775:1 23776:1 23784:1 23786:1 23793:1 23802:1 23803:1 23826:1 23829:1 23840:1 23845:2 23861:1 23869:1 23889:1 23895:1 23902:3 23909:1 23923:1 23932:1 23943:1 23964:1 23969:1 23987:1 23988:1 23999:2 24004:1 24008:1 24009:3 24019:1 24024:1 24025:1 24027:2 24028:1 24041:1 24050:1 24055:1 24061:3 24064:1 24092:5 24101:1 24104:1 24105:1 24113:1 24126:1 24129:1 24138:2 24140:1 24149:2 24150:1 24153:1 24161:1 24165:16 24166:2 24177:2 24185:1 24193:1 24195:1 24206:1 24214:4 24219:1 24220:2 24230:1 24231:1 24233:1 24237:2 24245:1 24251:1 24255:2 24256:2 24259:1 24263:1 24268:1 24272:4 24275:3 24280:3 24285:3 24286:4 24289:1 24290:1 24298:1 24304:1 24305:1 24310:1 24345:1 24350:1 24351:1 24357:1 24359:2 24363:1 24372:1 24376:1 24377:2 24400:2 24408:2 24416:1 24420:2 24424:1 24425:1 24427:2 24434:2 24443:6 24444:1 24446:1 24454:1 24455:1 24458:1 24462:2 24471:1 24472:1 24478:1 24479:1 24500:1 24502:2 24503:2 24521:2 24524:1 24553:1 24570:1 24592:1 24596:1 24600:3 24622:1 24625:1 24643:1 24648:1 24653:1 24655:1 24658:6 24675:1 24676:1 24688:1 24710:1 24713:1 24715:1 24720:1 24721:1 24733:1 24737:1 24740:3 24744:1 24747:1 24768:2 24773:2 24774:2 24777:2 24784:1 24789:1 24792:3 24809:1 24812:1 24826:1 24830:1 24839:1 24844:2 24870:2 24880:1 24889:1 24892:1 24900:1 24917:1 24928:2 24938:2 24944:5 24949:1 24952:1 24953:1 24954:2 24964:1 24966:1 24967:2 24972:1 24975:1 24976:2 24982:1 24994:1 25000:1 25005:3 25019:2 25020:1 25022:1 25026:1 25028:1 25031:2 25032:2 25059:1 25065:1 25068:1 25070:1 25073:2 25076:1 25081:1 25109:1 25110:1 25125:6 25129:3 25132:2 25145:1 25147:1 25170:1 25177:1 25185:2 25191:1 25195:2 25200:2 25203:1 25207:2 25213:1 25214:1 25216:1 25224:2 25232:1 25239:1 25242:1 25244:1 25250:1 25251:1 25254:4 25255:1 25256:1 25257:1 25260:3 25263:1 25267:2 25269:1 25273:1 25277:1 25281:3 25291:2 25295:1 25299:1 25302:1 25329:1 25330:1 25339:1 25346:5 25363:1 25370:2 25389:2 25402:1 25412:1 25451:1 25454:2 25471:1 25479:1 25487:1 25491:2 25514:2 25527:1 25530:1 25532:1 25536:1 25538:3 25543:5 25558:1 25560:1 25572:1 25582:1 25600:7 25630:2 25632:1 25644:1 25661:1 25666:1 25683:1 25693:1 25698:1 25699:1 25702:2 25717:2 25731:1 25739:1 25752:1 25768:1 25772:1 25775:1 25777:1 25787:2 25791:2 25793:3 25794:1 25797:1 25801:1 25804:3 25808:1 25809:2 25820:1 25822:2 25828:1 25829:5 25837:1 25841:1 25842:1 25843:1 25856:3 25861:2 25863:2 25867:1 25869:1 25871:5 25875:1 25880:3 25881:1 25888:1 25892:3 25893:1 25905:3 25909:1 25913:3 25917:1 25924:1 25941:1 25946:3 25964:1 25965:1 25983:1 26005:1 26012:3 26015:5 26022:7 26028:1 26054:5 26067:1 26071:1 26080:1 26081:1 26092:1 26098:1 26099:1 26101:1 26115:1 26123:1 26125:7 26129:1 26132:2 26163:1 26174:1 26175:1 26185:1 26194:1 26213:1 26214:1 26221:1 26222:1 26226:1 26229:1 26230:2 26236:2 26244:1 26265:3 26298:1 26300:1 26301:1 26305:1 26306:7 26308:2 26312:2 26315:1 26325:2 26340:1 26341:1 26368:6 26383:1 26401:1 26411:1 26418:1 26423:1 26452:1 26464:1 26473:1 26475:1 26486:1 26512:1 26514:1 26527:2 26538:1 26539:1 26540:2 26541:3 26544:2 26547:3 26553:1 26557:2 26558:1 26565:1 26580:1 26600:1 26612:1 26616:1 26625:1 26635:1 26655:3 26659:1 26664:2 26690:2 26695:2 26696:2 26706:1 26710:1 26713:1 26722:1 26724:1 26733:1 26735:1 26737:1 26745:1 26750:4 26751:1 26757:2 26759:1 26760:1 26766:1 26785:1 26787:1 26790:4 26793:2 26806:1 26810:1 26832:1 26837:1 26843:1 26848:1 26855:1 26862:1 26874:1 26879:1 26883:3 26889:1 26891:1 26910:1 26920:3 26923:1 26940:1 26957:2 26961:2 26973:1 26978:1 26979:3 26986:3 26987:4 26988:1 26990:1 26996:1 27023:1 27029:1 27031:5 27034:1 27036:1
1 13:2 35:1 36:1 39:1 43:1 47:1 50:1 51:1 55:1 67:1 71:1 89:2 120:1 137:1 138:4 139:1 144:1 150:2 157:1 165:2 169:3 178:1 182:6 184:1 192:1 202:1 209:1 222:1 223:1 233:1 238:7 255:3 264:1 280:2 306:1 315:5 317:3 327:3 328:1 334:3 339:1 346:2 359:1 362:3 372:1 382:2 395:6 397:6 404:1 412:1 416:2 442:1 445:2 446:1 450:1 471:1 472:2 500:1 511:1 515:2 532:1 540:1 544:3 552:1 568:1 578:1 582:4 584:2 588:1 604:3 612:1 630:2 636:1 665:1 678:1 683:1 711:1 722:1 723:3 726:1 743:1 745:2 751:2 764:1 789:7 794:1 798:1 800:2 802:4 805:2 808:1 822:16 826:4 837:5 854:4 867:1 868:1 872:1 873:4 874:2 875:11 877:1 878:3 880:4 882:1 894:2 912:5 915:4 920:1 926:1 927:1 953:2 958:1 972:1 1002:1 1013:2 1017:1 1035:1 1037:1 1053:1 1059:3 1061:1 1064:2 1108:3 1109:3 1114:1 1116:2 1118:1 1122:2 1125:1 1126:2 1141:1 1150:1 1151:1 1154:1 1158:2 1165:1 1170:2 1173:2 1180:1 1187:1 1193:2 1195:1 1213:1 1225:1 1227:1 1228:1 1244:1 1253:1 1262:1 1264:1 1266:1 1269:1 1279:1 1292:1 1312:1 1316:1 1324:1 1325:2 1339:1 1345:1 1346:2 1361:1 1364:1 1366:2 1370:1 1371:3 1379:1 1392:1 1397:1 1402:1 1404:1 1405:2 1408:1 1419:1 1427:1 1437:1 1445:1 1448:4 1454:8 1456:2 1465:1 1469:1 1483:1 1490:2 1499:1 1501:1 1510:1 1514:4 1523:1 1526:1 1528:1 1530:2 1538:1 1542:3 1549:1 1553:1 1555:1 1558:1 1559:2 1568:2 1571:3 1580:1 1584:1 1586:1 1587:1 1592:1 1596:2 1600:1 1601:1 1606:1 1615:1 1619:1 1625:1 1633:1 1634:2 1635:1 1647:2 1652:1 1653:5 1659:1 1662:1 1663:1 1675:1 1681:1 1684:3 1687:1 1688:2 1696:6 1703:1 1723:5 1724:3 1729:1 1737:1 1743:1 1745:1 1749:1 1757:2 1759:4 1761:1 1762:1 1764:1 1777:2 1780:1 1786:1 1787:3 1793:1 1794:1 1801:3 1806:2 1807:1 1809:1 1822:3 1825:1 1841:1 1847:1 1861:1 1866:2 1870:9 1875:1 1881:1 1885:2 1892:7 1896:1 1897:2 1899:2 1904:1 1907:2 1925:2 1931:1 1938:1 1949:1 1952:1 1956:1 1959:1 1976:2 1978:1 1983:2 1984:1 1988:2 1990:2 2004:1 2014:1 2027:11 2037:2 2046:1 2051:1 2053:1 2071:1 2077:1 2078:1 2092:3 2103:5 2105:1 2107:1 2119:1 2120:1 2123:1 2126:2 2142:3 2143:2 2145:1 2147:3 2148:5 2150:2 2152:2 2154:2 2157:2 2158:2 2159:1 2160:4 2161:5 2164:1 2165:1 2166:1 2167:5 2170:4 2172:5 2173:7 2177:2 2185:1 2196:1 2216:1 2219:2 2224:3 2226:3 2229:1 2234:1 2238:1 2246:2 2248:1 2250:1 2257:1 2274:1 2275:1 2277:1 2285:1 2293:1 2294:1 2296:1 2321:1 2328:1 2332:1 2333:1 2342:1 2350:3 2351:1 2358:1 2360:1 2365:1 2367:1 2371:1 2377:3 2388:2 2390:1 2403:1 2405:1 2413:1 2417:1 2432:3 2435:2 2437:1 2439:7 2443:1 2444:1 2445:1 2454:1 2457:1 2478:4 2479:2 2480:1 2483:2 2496:2 2503:2 2504:1 2505:1 2506:2 2513:7 2520:2 2526:2 2529:10 2535:6 2537:1 2545:2 2547:1 2553:1 2555:2 2557:1 2562:3 2563:2 2574:4 2589:1 2591:3 2597:4 2602:1 2605:2 2611:1 2638:1 2640:2 2641:2 2654:4 2655:1 2659:1 2662:7 2667:2 2668:1 2671:1 2684:1 2686:1 2691:1 2710:1 2716:3 2719:1 2738:5 2745:1 2749:1 2752:17 2763:1 2773:3 2774:1 2776:1 2777:1 2779:1 2786:2 2791:3 2792:1 2794:1 2811:23 2813:3 2826:1 2827:1 2836:2 2839:3 2848:1 2856:2 2866:1 2870:2 2883:1 2889:1 2893:1 2895:1 2898:1 2902:1 2907:1 2917:1 2918:5 2934:3 2939:2 2948:1 2952:1 2970:1 2979:1 2988:1 2989:1 2993:1 2995:1 2998:1 3006:2 3014:1 3027:2 3035:1 3042:3 3057:1 3070:1 3089:1 3090:2 3128:1 3129:3 3130:1 3134:1 3139:2 3149:8 3150:1 3193:1 3216:1 3225:3 3230:1 3234:1 3260:1 3263:1 3264:2 3265:1 3272:1 3277:1 3283:1 3285:1 3286:2 3291:1 3299:1 3305:1 3308:1 3328:1 3343:1 3358:2 3362:1 3383:1 3384:17 3399:1 3403:2 3405:2 3406:2 3409:2 3425:1 3429:1 3430:1 3438:1 3442:1 3446:1 3477:1 3479:2 3480:1 3484:1 3489:3 3490:1 3493:2 3501:1 3523:1 3548:1 3549:1 3552:1 3554:1 3559:2 3562:1 3565:2 3569:1 3576:3 3580:1 3581:1 3596:1 3599:1 3603:2 3608:1 3610:1 3626:2 3627:1 3628:2 3631:1 3640:2 3648:3 3649:1 3663:2 3664:1 3668:5 3670:2 3673:2 3677:1 3678:2 3687:5 3698:1 3700:2 3715:1 3716:2 3730:1 3732:2 3734:4 3738:1 3743:1 3746:1 3756:2 3765:7 3766:5 3772:2 3808:1 3810:2 3813:1 3818:1 3834:1 3837:1 3839:2 3857:1 3864:1 3866:2 3870:1 3872:1 3875:1 3878:1 3879:1 3891:2 3900:1 3910:2 3924:2 3932:1 3937:4 3938:1 3940:3 3941:1 3944:3 3946:1 3950:1 3954:2 3977:1 3981:1 3992:1 4008:1 4019:1 4025:1 4027:2 4029:1 4045:7 4075:3 4081:1 4090:2 4097:1 4101:1 4104:3 4114:2 4127:2 4133:1 4140:1 4149:1 4150:1 4152:1 4156:4 4157:2 4169:1 4172:1 4177:4 4194:1 4202:1 4203:1 4211:1 4220:1 4225:2 4233:2 4246:1 4249:1 4252:2 4256:1 4257:3 4259:1 4267:1 4276:1 4292:3 4304:1 4314:5 4327:1 4331:1 4332:1 4355:5 4363:3 4371:1 4372:1 4377:4 4380:2 4395:1 4397:5 4417:1 4420:2 4428:1 4437:1 4440:3 4443:4 4456:3 4459:1 4468:1 4469:2 4475:1 4494:1 4496:2 4507:1 4511:1 4523:1 4524:1 4537:1 4549:1 4565:17 4567:2 4573:1 4574:1 4576:1 4581:1 4586:1 4595:1 4601:1 4613:1 4623:1 4629:1 4645:1 4664:1 4669:4 4677:1 4684:1 4685:4 4687:7 4688:3 4690:1 4693:2 4695:2 4696:2 4698:1 4700:1 4701:2 4703:6 4704:4 4706:1 4708:2 4709:8 4715:2 4716:6 4719:1 4721:1 4733:1 4764:1 4776:1 4784:1 4789:3 4796:1 4820:1 4853:1 4891:1 4903:1 4917:1 4930:1 4937:2 4973:1 4977:1 5002:3 5008:2 5018:1 5057:1 5061:1 5066:2 5088:6 5094:1 5101:1 5110:1 5121:1 5140:1 5146:1 5157:2 5163:1 5171:1 5180:1 5188:1 5197:1 5220:1 5230:1 5245:1 5252:1 5254:1 5264:1 5284:2 5287:1 5290:1 5292:1 5298:2 5302:1 5305:1 5313:5 5314:1 5316:2 5317:1 5320:4 5321:1 5336:2 5337:1 5348:1 5364:1 5369:3 5379:2 5380:1 5383:1 5384:1 5394:6 5403:1 5406:2 5452:1 5461:1 5468:1 5481:1 5483:1 5485:1 5493:1 5503:1 5507:1 5509:1 5510:1 5516:2 5522:3 5524:1 5538:1 5544:1 5547:1 5549:1 5562:1 5568:1 5569:2 5576:2 5584:1 5590:2 5593:1 5594:2 5596:5 5607:1 5610:6 5612:1 5613:1 5619:1 5620:2 5626:2 5628:1 5629:1 5632:1 5633:1 5636:1 5641:1 5668:1 5671:1 5673:1 5678:2 5680:2 5682:1 5688:1 5692:2 5693:1 5696:14 5715:1 5735:3 5742:1 5761:1 5772:1 5787:4 5797:2 5812:6 5817:1 5824:1 5854:1 5869:1 5872:1 5890:1 5897:1 5898:1 5901:1 5905:3 5906:3 5908:1 5911:1 5912:1 5915:2 5916:1 5921:2 5923:4 5924:3 5944:1 5958:1 5992:1 5997:1 6008:1 6010:1 6031:1 6035:1 6046:2 6051:4 6052:2 6063:1 6072:1 6106:1 6115:1 6124:2 6129:2 6133:1 6141:1 6148:1 6154:2 6177:1 6191:2 6199:2 6208:1 6213:1 6222:1 6260:1 6270:1 6273:2 6281:1 6290:2 6292:1 6295:1 6298:1 6301:1 6305:1 6314:1 6316:9 6317:1 6321:1 6323:2 6325:1 6327:3 6329:1 6336:1 6338:1 6344:1 6355:2 6371:1 6375:1 6377:1 6378:1 6379:1 6385:1 6387:1 6389:1 6391:1 6424:1 6426:3 6437:2 6442:1 6448:2 6451:1 6465:1 6470:1 6476:1 6479:1 6483:2 6484:1 6491:2 6507:2 6525:2 6529:1 6530:1 6537:1 6545:1 6546:2 6553:1 6563:7 6569:2 6581:1 6588:1 6595:1 6596:1 6600:1 6606:1 6609:3 6610:2 6618:1 6623:6 6624:1 6626:1 6628:1 6631:5 6634:1 6637:1 6651:1 6657:1 6658:1 6660:1 6670:1 6678:1 6685:1 6701:1 6702:1 6707:4 6716:5 6724:1 6732:1 6735:1 6752:3 6755:1 6757:1 6765:1 6778:1 6786:1 6788:1 6790:1 6798:1 6806:1 6812:1 6824:1 6850:1 6868:1 6871:1 6875:1 6879:2 6917:1 6931:1 6935:2 6936:6 6940:4 6942:1 6943:1 6945:1 6951:3 6955:1 6971:6 6972:2 6974:2 6988:1 6989:3 6998:1 7002:1 7012:1 7019:1 7020:2 7023:2 7028:1 7038:1 7043:1 7045:1 7051:1 7053:1 7066:1 7067:1 7075:1 7076:2 7078:1 7081:1 7086:2 7090:1 7101:1 7102:1 7114:1 7120:1 7138:4 7153:4 7154:9 7165:2 7170:1 7173:4 7176:4 7178:3 7180:1 7183:1 7190:1 7192:1 7198:4 7199:3 7200:1 7213:52 7214:2 7220:1 7222:1 7228:1 7229:11 7231:9 7236:2 7240:1 7270:1 7276:1 7278:1 7287:1 7288:2 7297:1 7301:3 7302:2 7307:1 7309:1 7320:1 7322:2 7331:2 7341:3 7358:1 7360:1 7362:1 7364:1 7380:2 7388:1 7389:1 7392:2 7399:1 7404:1 7409:1 7410:2 7440:1 7446:1 7451:2 7453:1 7454:3 7459:1 7483:1 7489:1 7490:1 7491:1 7501:3 7540:1 7549:1 7559:1 7564:1 7569:2 7573:1 7581:2 7591:1 7592:1 7594:1 7600:1 7603:1 7604:1 7608:1 7621:2 7628:1 7631:1 7639:1 7643:1 7644:3 7654:1 7663:1 7674:1 7677:1 7678:2 7700:27 7706:1 7724:3 7726:3 7729:1 7731:2 7732:1 7734:1 7752:1 7758:1 7773:6 7776:1 7777:1 7781:1 7810:1 7821:5 7823:2 7825:2 7827:1 7830:1 7831:1 7844:1 7854:2 7855:4 7860:3 7868:1 7874:1 7894:2 7896:1 7902:1 7906:1 7918:1 7920:1 7930:1 7937:1 7939:2 7946:1 7947:1 7957:1 7958:2 7966:2 7968:2 7969:1 8006:1 8028:1 8033:1 8034:1 8038:1 8039:1 8041:1 8048:1 8061:3 8064:2 8076:7 8078:1 8087:2 8090:3 8095:1 8109:2 8115:1 8116:1 8122:1 8127:2 8130:1 8131:2 8140:1 8145:1 8146:1 8162:2 8168:1 8191:2 8195:1 8196:1 8228:1 8233:1 8234:1 8240:1 8244:1 8271:1 8272:1 8281:1 8285:3 8293:1 8316:1 8319:2 8320:1 8324:3 8347:3 8353:1 8360:2 8361:1 8370:1 8377:1 8393:1 8394:1 8395:1 8398:1 8404:2 8407:2 8415:8 8416:1 8417:1 8423:1 8425:1 8429:2 8436:1 8442:2 8444:1 8455:7 8456:1 8477:1 8484:1 8495:2 8500:1 8505:11 8506:7 8516:3 8517:1 8524:1 8551:3 8554:2 8561:1 8566:1 8570:4 8572:1 8589:1 8596:1 8603:2 8605:2 8607:4 8609:2 8624:2 8629:1 8635:1 8644:1 8661:1 8671:1 8672:1 8681:2 8683:1 8689:1 8692:5 8694:2 8696:1 8700:1 8701:1 8708:1 8714:1 8715:4 8720:1 8721:1 8734:4 8770:1 8771:1 8782:1 8795:1 8802:1 8807:1 8823:3 8832:1 8835:3 8840:1 8852:1 8854:1 8858:1 8863:1 8865:1 8885:1 8888:1 8901:1 8905:1 8913:1 8919:8 8924:3 8956:3 8957:1 8964:1 8965:1 8975:3 8981:1 9005:1 9018:1 9019:2 9024:1 9028:1 9031:3 9032:3 9034:2 9038:1 9056:1 9061:1 9064:2 9066:2 9096:2 9099:1 9107:1 9117:1 9142:2 9159:1 9163:1 9173:2 9178:1 9180:1 9183:1 9186:2 9196:1 9200:1 9201:1 9210:1 9242:1 9243:1 9248:2 9249:1 9262:1 9263:1 9266:1 9289:1 9291:1 9294:1 9296:1 9298:1 9301:5 9318:4 9325:4 9327:2 9336:1 9354:2 9363:1 9371:3 9372:1 9378:1 9391:2 9396:1 9398:1 9406:1 9410:2 9415:2 9427:1 9433:1 9434:1 9439:1 9444:1 9449:4 9453:1 9481:2 9485:1 9490:14 9492:1 9493:2 9497:2 9501:1 9519:2 9520:2 9535:1 9540:1 9544:1 9555:1 9572:1 9587:1 9588:2 9590:1 9597:1 9607:1 9622:1 9628:1 9643:1 9644:1 9646:1 9648:1 9649:1 9651:4 9661:1 9663:1 9665:2 9702:1 9710:1 9715:4 9717:1 9720:1 9722:1 9723:1 9729:1 9732:3 9739:1 9741:1 9742:1 9747:1 9749:2 9755:4 9769:1 9771:1 9787:1 9797:1 9803:1 9804:1 9806:1 9810:1 9817:1 9818:1 9819:2 9821:1 9823:2 9827:1 9837:2 9839:1 9842:1 9846:1 9853:1 9860:1 9864:1 9866:3 9868:1 9870:1 9877:2 9879:1 9881:1 9886:7 9889:4 9899:2 9900:3 9905:1 9910:1 9917:1 9920:2 9926:1 9943:2 9953:7 9954:2 9964:1 9979:2 9982:1 9983:1 9991:4 9995:1 10013:1 10026:1 10028:1 10035:3 10047:2 10054:1 10057:7 10071:2 10080:1 10092:1 10093:1 10106:4 10134:1 10140:1 10146:1 10168:1 10180:1 10191:1 10195:1 10197:1 10201:1 10206:1 10224:1 10225:1 10239:1 10240:2 10242:3 10245:1 10246:2 10252:1 10254:2 10261:1 10264:5 10265:6 10268:1 10275:1 10276:1 10280:1 10282:2 10283:3 10287:1 10288:1 10289:4 10293:1 10298:1 10307:1 10309:1 10310:3 10313:3 10318:1 10321:1 10336:3 10342:1 10345:2 10363:1 10372:1 10373:1 10376:4 10378:1 10392:1 10406:1 10411:1 10424:1 10434:2 10436:1 10440:2 10455:1 10466:1 10493:1 10499:1 10506:1 10511:1 10512:1 10515:1 10518:1 10528:1 10530:1 10532:3 10556:1 10575:1 10586:1 10592:1 10597:2 10599:1 10611:3 10614:2 10617:1 10619:1 10627:2 10630:2 10632:1 10633:1 10635:2 10637:1 10644:3 10646:1 10647:1 10648:2 10657:1 10663:3 10667:2 10677:1 10678:1 10693:21 10694:1 10696:1 10707:1 10718:1 10730:1 10734:5 10742:1 10745:2 10746:2 10755:1 10756:1 10759:2 10769:1 10786:1 10788:2 10799:3 10803:1 10813:3 10818:2 10831:1 10847:1 10859:1 10863:1 10884:1 10890:1 10906:1 10924:2 10925:1 10932:3 10933:1 10934:1 10936:1 10937:1 10950:1 10951:5 10955:1 10956:2 10957:1 10960:2 10962:1 10968:1 10969:1 10977:1 10979:1 10988:1 10991:1 10992:1 10995:1 10998:1 11003:2 11006:5 11009:5 11014:1 11031:1 11040:1 11055:1 11073:1 11088:2 11100:1 11118:1 11120:1 11135:2 11141:1 11151:1 11156:1 11159:1 11160:1 11166:6 11173:1 11180:1 11184:2 11188:2 11189:1 11201:1 11206:1 11213:1 11214:1 11220:2 11227:2 11243:2 11246:1 11254:2 11261:1 11263:2 11283:1 11285:1 11301:2 11306:1 11314:1 11317:2 11321:1 11327:2 11333:1 11365:1 11372:1 11376:1 11380:5 11381:4 11382:2 11383:1 11394:2 11406:2 11412:1 11415:1 11418:1 11424:1 11463:1 11476:1 11478:2 11479:1 11502:1 11506:1 11513:1 11520:1 11534:1 11542:1 11547:1 11557:1 11574:1 11635:1 11638:3 11662:2 11674:1 11686:1 11689:1 11691:1 11695:1 11705:1 11718:1 11720:2 11721:1 11736:3 11745:1 11758:1 11767:1 11774:1 11824:1 11831:1 11836:1 11839:1 11840:3 11847:1 11859:1 11863:1 11882:15 11886:6 11899:2 11904:1 11910:1 11915:1 11923:1 11928:2 11929:3 11936:4 11938:2 11943:1 11952:1 11954:1 11959:1 11964:2 11965:1 11974:1 11980:2 11981:1 11983:1 11989:1 12016:1 12034:1 12039:1 12040:1 12045:2 12048:1 12061:1 12068:1 12069:1 12081:1 12090:1 12091:2 12097:1 12100:2 12101:1 12108:1 12110:1 12112:1 12134:1 12151:5 12161:2 12163:1 12208:1 12209:1 12231:1 12241:2 12245:1 12252:1 12254:4 12257:4 12268:2 12269:2 12273:2 12274:2 12283:3 12290:1 12306:8 12309:1 12323:1 12325:2 12346:1 12351:4 12352:1 12367:1 12379:1 12385:2 12386:1 12387:1 12389:2 12399:9 12400:1 12410:3 12413:1 12418:1 12428:1 12436:1 12437:1 12440:2 12446:1 12452:1 12453:1 12463:22 12469:1 12474:1 12490:1 12506:2 12508:2 12515:3 12529:1 12533:2 12544:1 12547:2 12556:1 12557:1 12559:1 12590:3 12613:1 12616:6 12617:1 12633:1 12640:2 12642:1 12645:1 12662:1 12668:5 12685:1 12692:1 12694:1 12696:1 12703:3 12705:1 12707:2 12714:1 12715:1 12719:1 12721:1 12728:6 12729:1 12732:1 12733:2 12734:1 12736:2 12737:1 12741:8 12742:3 12754:1 12756:1 12760:1 12761:1 12763:1 12764:1 12765:1 12783:1 12787:1 12805:1 12814:1 12831:1 12842:2 12848:2 12854:1 12861:1 12872:1 12878:1 12887:7 12919:1 12926:1 12929:1 12932:1 12939:1 12940:1 12941:1 12946:1 12956:3 12960:1 12978:2 12986:1 12996:1 12997:1 12999:1 13005:8 13014:1 13025:3 13032:1 13040:1 13041:1 13064:1 13076:1 13077:2 13085:2 13090:1 13103:1 13109:1 13111:1 13118:1 13131:2 13139:1 13155:1 13161:1 13165:1 13170:1 13173:1 13180:1 13188:1 13197:1 13211:1 13218:1 13237:1 13245:2 13261:5 13277:1 13288:1 13309:1 13320:1 13380:1 13383:3 13384:4 13391:1 13404:2 13406:1 13408:1 13410:2 13412:1 13432:1 13436:1 13442:1 13452:2 13464:1 13470:1 13479:2 13480:1 13499:1 13509:1 13524:2 13531:1 13535:1 13548:1 13552:1 13554:1 13556:1 13563:2 13567:1 13578:4 13585:2 13595:1 13630:1 13632:2 13637:2 13641:1 13653:1 13666:2 13679:2 13680:1 13686:1 13690:1 13695:2 13713:1 13720:1 13723:1 13731:1 13741:1 13745:1 13756:3 13768:1 13771:2 13774:1 13804:1 13807:1 13847:1 13850:1 13885:2 13891:2 13892:2 13895:1 13900:1 13902:1 13903:1 13912:1 13923:2 13932:1 13977:1 13979:3 13984:1 13997:1 13998:1 13999:2 14002:1 14003:1 14004:1 14032:1 14083:1 14087:1 14092:1 14094:2 14115:1 14116:1 14125:1 14155:1 14170:2 14182:1 14187:1 14204:1 14211:1 14212:1 14213:2 14226:1 14240:2 14245:3 14248:1 14270:1 14274:1 14275:1 14286:1 14295:2 14311:3 14315:1 14318:1 14334:1 14336:1 14345:2 14354:1 14362:2 14378:1 14380:1 14385:1 14387:2 14391:1 14397:6 14409:4 14419:1 14424:5 14435:3 14457:1 14460:1 14467:1 14476:1 14484:2 14486:1 14489:2 14540:1 14552:2 14553:1 14564:2 14571:1 14575:1 14579:4 14584:1 14586:1 14593:1 14603:2 14605:4 14606:1 14609:1 14612:1 14624:2 14626:1 14639:1 14658:2 14666:2 14689:1 14703:2 14706:1 14709:1 14719:3 14726:2 14735:1 14737:1 14739:3 14753:1 14764:3 14768:1 14777:1 14782:1 14802:1 14815:1 14817:1 14819:1 14841:1 14842:1 14844:1 14847:1 14852:1 14853:1 14855:1 14857:20 14859:1 14871:1 14872:1 14874:1 14876:3 14878:1 14900:3 14904:1 14943:2 14954:1 14958:1 14962:2 14972:4 14976:1 14990:2 14994:1 15008:2 15015:1 15029:1 15030:2 15046:1 15052:1 15060:1 15062:1 15064:1 15068:1 15074:2 15075:1 15082:1 15094:1 15100:3 15103:1 15117:1 15122:1 15128:6 15130:2 15131:2 15132:6 15133:2 15134:1 15135:2 15137:1 15139:2 15140:5 15143:1 15144:1 15147:1 15150:1 15151:2 15153:1 15161:1 15177:1 15188:2 15201:1 15204:1 15206:2 15216:1 15232:1 15238:1 15239:1 15251:1 15255:2 15256:1 15257:1 15261:1 15279:2 15282:1 15284:1 15288:2 15289:2 15294:1 15307:2 15312:1 15328:1 15336:1 15337:1 15341:1 15352:1 15367:1 15370:1 15375:1 15388:1 15418:1 15430:1 15434:3 15445:1 15446:2 15455:2 15456:1 15466:1 15470:5 15475:1 15478:2 15487:1 15495:1 15496:1 15501:2 15504:1 15505:4 15509:2 15510:1 15513:1 15516:1 15522:4 15526:2 15534:4 15544:1 15553:1 15585:14 15588:1 15604:1 15606:1 15611:2 15613:4 15614:2 15618:1 15656:1 15671:1 15672:1 15678:2 15689:1 15690:1 15695:4 15705:1 15706:1 15720:4 15722:2 15733:1 15737:1 15741:1 15742:1 15754:1 15756:2 15761:1 15778:5 15791:1 15799:1 15802:1 15811:1 15823:1 15841:1 15849:1 15878:2 15879:4 15895:1 15898:1 15920:1 15927:1 15936:2 15945:1 15946:1 15950:1 15970:1 15973:1 15980:1 15987:2 15992:1 16006:1 16014:1 16022:2 16031:1 16034:2 16039:1 16041:2 16044:1 16047:1 16055:1 16072:1 16073:1 16116:1 16119:1 16150:1 16159:1 16163:1 16169:1 16183:1 16187:1 16189:1 16199:3 16202:1 16212:1 16213:3 16218:1 16222:1 16224:1 16232:3 16238:2 16240:2 16244:2 16249:1 16250:10 16284:1 16287:2 16288:1 16293:3 16294:1 16298:1 16305:3 16311:1 16313:2 16315:1 16316:1 16331:1 16362:1 16368:1 16369:1 16389:4 16392:1 16403:1 16416:2 16427:1 16428:1 16434:1 16435:1 16440:1 16451:1 16453:1 16482:1 16483:1 16484:1 16486:1 16504:1 16508:1 16513:1 16518:2 16533:1 16554:1 16557:1 16576:1 16578:1 16589:1 16593:1 16594:3 16598:1 16600:1 16602:1 16614:1 16616:1 16646:1 16661:1 16684:2 16709:1 16710:1 16720:2 16740:2 16747:1 16814:2 16815:1 16823:1 16833:1 16838:1 16844:1 16862:1 16878:1 16879:1 16885:1 16894:1 16898:1 16907:1 16934:1 16937:3 16946:1 16951:1 16981:1 16986:1 16999:15 17009:1 17025:1 17050:1 17070:1 17071:1 17087:14 17097:4 17099:2 17102:1 17103:7 17128:3 17142:1 17156:2 17184:6 17192:2 17204:2 17218:2 17219:1 17243:3 17251:2 17253:1 17263:2 17276:2740 17285:1 17289:1 17299:1 17301:1 17302:1 17304:1 17347:1 17351:1 17353:1 17356:1 17368:1 17374:2 17389:1 17393:1 17414:2 17420:1 17421:1 17445:1 17465:1 17467:1 17469:1 17472:2 17474:6 17475:4 17488:1 17493:1 17495:1 17510:1 17515:1 17526:1 17529:1 17535:1 17542:1 17549:1 17551:1 17552:1 17592:1 17595:3 17599:2 17608:1 17615:1 17644:1 17649:2 17653:1 17654:3 17659:2 17674:1 17684:2 17686:1 17697:1 17699:2 17700:1 17707:2 17709:1 17717:1 17728:1 17735:1 17737:1 17748:2 17754:1 17765:1 17776:2 17780:1 17787:1 17789:1 17791:2 17793:2 17795:2 17803:1 17809:1 17817:2 17836:2 17837:3 17855:4 17859:1 17862:1 17870:3 17876:1 17895:3 17896:1 17900:1 17904:1 17905:1 17907:1 17913:1 17917:2 17920:2 17927:9 17949:1 17951:1 17966:1 17970:2 17971:1 17978:2 17992:5 17993:1 17999:1 18009:1 18011:2 18029:1 18043:1 18047:4 18052:1 18054:2 18060:1 18062:2 18070:1 18075:4 18076:1 18081:1 18085:1 18090:2 18101:1 18103:1 18104:4 18115:2 18116:1 18123:3 18141:1 18156:5 18159:2 18163:1 18164:1 18178:1 18182:2 18183:2 18187:2 18191:1 18193:1 18194:2 18197:1 18210:1 18218:2 18225:1 18228:1 18233:1 18234:1 18240:1 18247:1 18271:1 18282:3 18294:1 18295:2 18296:1 18297:1 18299:1 18301:1 18303:3 18308:1 18321:1 18323:1 18326:1 18328:1 18332:1 18339:1 18343:1 18349:2 18354:1 18359:2 18371:1 18374:2 18381:2 18382:1 18385:1 18390:1 18400:1 18408:1 18409:1 18416:1 18420:2 18422:4 18427:1 18428:4 18430:1 18474:1 18477:1 18478:1 18492:1 18495:3 18499:1 18501:1 18503:2 18504:2 18508:2 18519:2 18521:3 18525:3 18529:3 18533:1 18534:3 18536:2 18538:1 18548:1 18556:5 18564:3 18580:1 18582:1 18596:1 18597:1 18598:1 18603:2 18604:4 18613:1 18620:1 18627:1 18628:2 18638:1 18639:1 18645:1 18653:1 18658:2 18665:3 18679:1 18685:1 18690:2 18691:3 18707:1 18708:1 18716:3 18718:23 18719:2 18726:1 18735:5 18738:1 18754:1 18756:2 18759:1 18767:1 18784:3 18785:1 18792:1 18793:1 18805:1 18811:1 18817:1 18821:1 18835:1 18838:1 18845:2 18847:1 18848:1 18866:1 18868:1 18875:1 18882:1 18895:1 18898:1 18905:4 18919:2 18933:1 18937:2 18941:1 18949:2 18960:1 18962:1 18966:1 18969:2 18996:8 18998:2 19005:1 19013:1 19022:1 19039:1 19040:1 19041:1 19050:1 19054:1 19057:1 19080:1 19082:1 19085:4 19101:4 19112:1 19117:1 19119:1 19125:1 19128:1 19132:1 19133:1 19140:1 19143:2 19175:2 19183:3 19189:2 19190:3 19201:3 19202:1 19204:2 19207:1 19209:1 19215:2 19221:1 19229:1 19243:5 19245:2 19254:2 19256:1 19257:1 19261:1 19268:1 19276:1 19279:2 19281:1 19284:3 19286:1 19293:2 19308:1 19311:2 19317:1 19324:2 19325:1 19331:5 19334:1 19338:2 19341:1 19344:1 19349:2 19359:3 19373:1 19385:2 19391:1 19392:1 19394:2 19412:1 19415:1 19421:2 19422:1 19431:2 19439:2 19443:2 19447:2 19450:2 19451:1 19459:2 19476:1 19478:1 19484:2 19506:2 19515:1 19516:4 19521:1 19522:1 19523:4 19532:1 19537:2 19542:1 19545:1 19546:1 19547:1 19551:1 19552:1 19558:2 19564:1 19567:1 19577:1 19581:1 19583:1 19591:1 19595:1 19614:1 19620:2 19627:1 19629:1 19633:2 19636:3 19642:1 19645:1 19648:1 19661:1 19664:1 19697:1 19736:1 19756:2 19757:1 19770:3 19773:1 19782:3 19785:2 19790:1 19791:1 19794:1 19795:1 19798:1 19799:1 19806:1 19812:2 19821:3 19823:1 19830:1 19837:1 19845:1 19866:1 19873:1 19880:1 19889:1 19896:1 19897:1 19919:2 19921:1 19922:1 19927:1 19931:2 19934:1 19936:1 19948:1 19951:2 19954:2 19959:2 19960:1 19961:1 19963:2 19964:1 19965:1 19966:1 19976:1 19978:2 19987:1 19989:1 19998:14 20001:1 20009:2 20010:3 20017:2 20028:1 20041:1 20046:1 20048:1 20049:1 20051:1 20061:1 20063:1 20064:1 20066:2 20067:1 20071:1 20072:2 20075:1 20099:1 20104:1 20111:1 20125:2 20134:1 20138:2 20141:1 20142:1 20147:1 20149:1 20151:6 20154:3 20156:1 20166:2 20177:1 20178:1 20179:1 20182:1 20183:1 20204:1 20205:1 20206:1 20210:3 20212:4 20215:1 20240:1 20248:1 20252:1 20316:4 20321:1 20322:5 20325:3 20326:3 20328:1 20329:1 20334:1 20337:2 20340:1 20341:2 20350:1 20351:1 20352:5 20360:1 20362:1 20368:1 20369:1 20370:1 20381:1 20396:2 20400:2 20403:2 20417:1 20444:1 20446:1 20471:2 20473:3 20480:1 20481:1 20483:1 20486:1 20492:1 20497:1 20503:1 20509:1 20523:1 20524:1 20529:1 20532:1 20533:3 20534:2 20544:2 20546:1 20553:1 20556:1 20567:2 20570:1 20572:5 20578:1 20587:1 20588:4 20592:3 20593:1 20599:1 20611:1 20619:1 20626:1 20628:2 20630:1 20632:1 20633:1 20634:4 20647:1 20655:2 20656:10 20658:1 20662:2 20666:1 20670:1 20675:1 20676:1 20692:1 20693:1 20719:9 20720:1 20733:1 20754:1 20772:1 20779:6 20780:1 20784:1 20787:1 20791:1 20796:1 20797:1 20812:1 20813:3 20831:1 20842:1 20844:4 20851:1 20857:1 20864:2 20877:1 20879:1 20886:2 20887:7 20889:2 20900:3 20903:1 20905:4 20914:1 20919:1 20924:1 20926:1 20938:1 20940:5 20955:1 20962:1 20963:3 20965:1 20968:3 20976:1 20982:1 20991:1 20996:1 20998:1 21005:1 21007:1 21026:1 21029:1 21062:1 21066:1 21072:1 21073:1 21074:1 21079:1 21090:1 21100:2 21115:10 21116:3 21130:2 21134:3 21138:1 21140:4 21149:1 21150:3 21163:2 21164:1 21167:1 21176:1 21203:1 21215:1 21216:1 21218:2 21220:2 21234:1 21235:1 21238:1 21256:1 21257:1 21261:1 21262:1 21263:1 21266:2 21282:1 21284:2 21289:1 21296:1 21303:2 21306:1 21309:2 21311:1 21333:1 21340:3 21345:1 21370:3 21385:1 21415:3 21434:1 21453:3 21456:3 21462:7 21469:2 21479:1 21484:1 21488:3 21498:2 21500:2 21501:1 21502:3 21506:1 21512:1 21520:4 21551:1 21554:1 21559:1 21580:1 21583:1 21586:1 21599:1 21613:4 21617:1 21624:1 21635:1 21642:1 21647:1 21650:3 21674:2 21682:1 21686:2 21694:1 21695:1 21703:1 21708:1 21709:1 21724:1 21726:2 21730:4 21733:3 21742:1 21743:1 21753:1 21755:1 21757:1 21772:3 21773:2 21774:1 21777:2 21788:1 21792:1 21794:1 21800:1 21842:1 21845:1 21846:4 21847:1 21848:1 21853:1 21859:1 21861:1 21862:4 21863:1 21864:1 21865:1 21867:1 21869:1 21871:1 21886:1 21898:1 21913:3 21916:1 21917:1 21930:1 21938:2 21974:3 21978:1 21981:2 21991:1 22014:2 22019:1 22022:1 22034:1 22041:1 22052:1 22053:1 22066:1 22068:2 22074:1 22076:2 22078:1 22088:1 22102:1 22120:1 22122:1 22125:1 22130:1 22136:2 22146:1 22157:2 22176:1 22188:1 22196:1 22218:1 22230:2 22232:1 22238:1 22260:2 22263:1 22282:2 22296:4 22304:1 22320:1 22327:1 22328:8 22337:1 22345:1 22352:1 22354:1 22358:4 22363:1 22370:1 22380:1 22382:1 22389:1 22391:5 22400:1 22402:1 22403:1 22407:1 22412:1 22435:4 22457:4 22459:2 22467:1 22469:2 22478:1 22502:1 22522:1 22530:1 22531:1 22532:1 22550:1 22552:1 22553:1 22559:1 22561:2 22564:3 22565:4 22568:1 22571:2 22572:1 22575:1 22578:2 22581:1 22582:2 22588:1 22592:1 22601:1 22612:6 22626:1 22627:2 22629:1 22632:1 22640:1 22642:1 22644:1 22646:1 22662:12 22663:6 22675:1 22685:1 22688:2 22690:1 22693:1 22695:1 22696:1 22705:1 22709:1 22710:1 22712:1 22713:2 22718:3 22726:3 22739:1 22742:1 22755:1 22764:1 22802:1 22808:1 22811:1 22827:1 22841:1 22842:1 22853:3 22856:2 22862:1 22868:1 22870:1 22876:3 22880:2 22886:2 22890:1 22895:1 22901:3 22903:2 22907:1 22923:1 22929:1 22931:1 22937:1 22942:1 22943:2 22944:1 22946:1 22948:1 22951:1 22953:1 22963:1 22968:1 22974:5 22987:2 22992:1 22993:1 22997:1 23012:2 23018:2 23022:1 23024:3 23025:1 23041:1 23048:1 23076:1 23077:18 23078:2 23099:1 23101:1 23105:1 23106:1 23115:1 23123:1 23130:2 23136:2 23139:1 23144:1 23146:1 23158:2 23161:1 23162:1 23166:1 23169:1 23170:1 23181:1 23188:1 23197:1 23202:1 23217:1 23222:1 23242:1 23259:1 23261:1 23272:1 23291:12 23292:1 23296:1 23307:1 23316:2 23319:1 23329:1 23341:1 23350:3 23363:1 23373:1 23375:7 23378:1 23387:1 23398:1 23404:2 23406:1 23426:1 23432:1 23436:3 23440:1 23446:1 23454:1 23465:1 23472:1 23481:1 23497:2 23503:2 23505:1 23514:2 23528:1 23532:1 23545:1 23557:1 23561:2 23568:1 23601:1 23602:2 23609:1 23613:1 23617:1 23622:1 23628:1 23631:1 23635:3 23639:5 23642:1 23648:1 23651:1 23652:2 23664:1 23666:1 23669:1 23695:7 23700:1 23704:1 23706:1 23719:1 23721:8 23738:2 23739:2 23756:1 23767:1 23768:1 23771:1 23774:4 23775:1 23776:1 23784:1 23786:1 23793:1 23802:1 23803:1 23826:1 23829:1 23840:1 23845:2 23861:1 23869:1 23889:1 23895:1 23902:3 23909:1 23923:1 23932:1 23943:1 23964:1 23969:1 23987:1 23988:1 23999:2 24004:1 24008:1 24009:3 24013:1 24019:1 24024:1 24025:1 24027:2 24028:1 24041:1 24050:1 24052:1 24055:1 24061:3 24064:1 24092:5 24101:1 24104:1 24105:1 24113:1 24126:1 24129:1 24138:2 24140:1 24149:2 24150:1 24153:1 24161:1 24165:16 24166:2 24177:2 24185:1 24193:1 24195:1 24206:1 24214:4 24219:1 24220:2 24230:1 24231:1 24233:1 24237:2 24245:1 24251:1 24255:2 24256:2 24259:1 24263:1 24268:1 24272:4 24275:3 24280:3 24285:3 24286:4 24289:1 24290:1 24298:1 24304:1 24305:1 24310:1 24345:1 24350:1 24351:1 24357:1 24359:2 24363:1 24372:1 24376:1 24377:2 24400:2 24408:2 24416:1 24420:2 24424:1 24425:1 24427:2 24434:2 24443:6 24444:1 24446:1 24454:1 24455:1 24458:1 24462:2 24471:1 24472:1 24478:1 24479:1 24500:1 24502:2 24503:2 24521:2 24524:1 24553:1 24570:1 24592:1 24596:1 24600:3 24622:1 24625:1 24643:1 24648:1 24653:1 24655:1 24658:6 24675:1 24676:1 24688:1 24710:1 24713:1 24715:1 24720:1 24721:1 24733:1 24737:1 24740:3 24744:1 24747:1 24768:2 24773:2 24774:2 24777:2 24784:1 24789:1 24792:3 24809:1 24812:1 24826:1 24830:1 24839:1 24844:2 24870:2 24880:1 24889:1 24892:1 24900:1 24917:1 24928:2 24938:2 24944:5 24949:1 24952:1 24953:1 24954:2 24964:1 24966:1 24967:2 24972:1 24975:1 24976:2 24982:1 24994:1 25000:1 25005:3 25019:2 25020:1 25022:1 25026:1 25028:1 25031:2 25032:2 25059:1 25065:1 25068:1 25070:1 25073:2 25076:1 25081:1 25109:1 25110:1 25125:6 25129:3 25132:2 25138:1 25145:1 25147:1 25170:1 25177:1 25185:2 25191:1 25195:2 25200:2 25203:1 25207:2 25213:1 25214:1 25216:1 25224:2 25232:1 25239:1 25242:1 25244:1 25250:1 25251:1 25254:4 25255:1 25256:1 25257:1 25260:3 25263:1 25267:2 25269:1 25273:1 25277:1 25281:3 25291:2 25295:1 25299:1 25302:1 25329:1 25330:1 25339:1 25346:5 25363:1 25370:2 25389:2 25402:1 25412:1 25451:1 25454:2 25471:1 25479:1 25487:1 25491:2 25514:2 25527:1 25530:1 25532:1 25536:1 25538:3 25543:5 25558:1 25560:1 25572:1 25582:1 25600:7 25630:2 25632:1 25644:1 25661:1 25666:1 25683:1 25693:1 25698:1 25699:1 25702:2 25717:2 25731:1 25739:1 25747:1 25752:1 25768:1 25772:1 25775:1 25777:1 25783:1 25787:2 25791:2 25793:3 25794:1 25797:1 25801:1 25804:3 25808:1 25809:3 25820:1 25822:2 25828:1 25829:5 25830:1 25837:1 25841:1 25842:1 25843:1 25856:3 25861:2 25863:2 25867:1 25869:1 25871:5 25875:1 25880:3 25881:1 25888:1 25892:3 25893:1 25905:3 25909:1 25913:3 25917:1 25924:1 25941:1 25946:3 25964:1 25965:1 25983:2 26005:1 26012:3 26015:5 26022:7 26028:1 26054:5 26067:1 26071:1 26080:1 26081:1 26092:2 26098:1 26099:1 26101:1 26115:1 26123:1 26125:7 26129:1 26132:2 26163:1 26174:1 26175:1 26185:1 26194:1 26213:1 26214:1 26221:1 26222:1 26226:1 26229:1 26230:2 26236:2 26244:1 26265:3 26292:1 26298:1 26300:1 26301:1 26305:1 26306:7 26308:2 26312:2 26315:1 26325:2 26340:1 26341:1 26368:6 26383:1 26401:1 26411:1 26418:1 26423:1 26447:1 26452:1 26464:1 26473:1 26475:1 26486:1 26512:1 26514:1 26527:2 26538:1 26539:1 26540:2 26541:3 26544:2 26547:3 26553:1 26557:2 26558:1 26565:1 26580:1 26600:1 26612:1 26616:1 26625:1 26635:1 26655:3 26659:1 26664:2 26690:2 26695:2 26696:2 26706:1 26710:1 26713:1 26722:1 26724:1 26733:1 26735:1 26737:1 26745:1 26750:4 26751:1 26757:2 26759:1 26760:1 26766:1 26785:1 26787:1 26790:4 26793:2 26806:1 26810:1 26832:1 26837:1 26843:1 26848:1 26855:1 26862:1 26874:1 26879:1 26883:3 26889:1 26891:1 26910:1 26920:3 26923:1 26940:1 26957:2 26961:2 26973:1 26978:1 26979:3 26986:3 26987:4 26988:1 26990:1 26996:1 27023:1 27029:1 27031:5 27034:1 27036:1
1 13:2 35:1 36:1 39:1 43:1 47:1 50:1 51:1 55:1 67:1 71:1 89:2 120:1 137:1 138:4 139:1 144:1 150:2 157:1 165:2 169:3 178:1 182:6 184:1 192:1 202:1 209:1 222:1 223:1 233:1 238:7 255:3 264:1 280:2 306:1 315:6 317:3 327:3 328:1 334:3 339:1 346:2 359:1 362:3 372:1 382:2 395:6 397:6 404:1 412:1 416:3 442:1 445:2 446:1 450:1 471:1 472:2 500:1 511:1 515:2 532:1 540:1 544:3 552:1 568:1 578:1 582:5 584:2 588:1 604:3 612:1 630:2 636:1 665:1 678:1 683:1 711:1 722:1 723:3 726:1 743:1 745:2 751:2 764:1 789:7 794:1 798:1 800:2 802:4 805:2 808:1 822:16 826:5 837:5 854:4 867:1 868:1 872:1 873:4 874:2 875:11 877:1 878:3 880:4 882:1 894:2 912:5 915:4 920:1 926:1 927:1 953:2 958:1 972:1 1002:1 1013:2 1017:1 1035:1 1037:1 1053:1 1059:3 1061:1 1064:2 1108:3 1109:4 1114:1 1116:2 1118:1 1122:2 1125:1 1126:2 1141:1 1150:1 1151:1 1154:1 1158:2 1165:1 1170:2 1173:2 1180:1 1187:1 1193:2 1195:1 1213:1 1225:1 1227:1 1228:1 1244:1 1253:1 1262:1 1264:1 1266:1 1269:1 1279:1 1292:1 1312:1 1316:1 1324:1 1325:2 1339:2 1345:1 1346:2 1361:1 1364:1 1366:2 1370:1 1371:3 1379:1 1392:1 1397:1 1402:1 1404:1 1405:2 1408:1 1419:1 1427:1 1437:1 1445:1 1448:5 1454:8 1456:2 1465:1 1469:1 1483:1 1490:2 1499:1 1501:1 1510:1 1514:4 1523:1 1526:1 1528:1 1530:2 1538:1 1542:3 1549:1 1553:1 1555:1 1558:1 1559:2 1568:2 1571:3 1580:1 1584:1 1586:1 1587:1 1592:1 1596:2 1600:1 1601:1 1606:1 1615:1 1619:1 1625:1 1633:1 1634:2 1635:1 1647:2 1652:1 1653:6 1659:1 1662:1 1663:1 1675:1 1681:1 1684:3 1687:1 1688:2 1696:7 1703:1 1723:5 1724:3 1729:1 1737:1 1743:1 1745:1 1749:1 1757:2 1759:4 1761:1 1762:1 1764:1 1777:2 1780:1 1786:1 1787:3 1793:1 1794:1 1801:3 1806:2 1807:1 1809:1 1822:3 1825:1 1841:1 1847:1 1861:1 1866:2 1870:9 1875:1 1881:1 1885:2 1892:7 1896:1 1897:2 1899:2 1904:1 1906:1 1907:2 1925:2 1931:1 1938:1 1949:1 1952:2 1956:1 1959:1 1976:2 1978:1 1983:2 1984:1 1988:2 1990:2 2004:1 2014:1 2027:11 2037:2 2046:1 2051:1 2053:1 2071:1 2077:1 2078:1 2092:3 2103:5 2105:2 2107:1 2119:1 2120:1 2123:1 2126:2 2142:3 2143:2 2145:2 2147:3 2148:5 2150:2 2152:2 2154:2 2157:2 2158:2 2159:1 2160:4 2161:6 2164:1 2165:1 2166:1 2167:5 2170:4 2172:5 2173:7 2177:2 2185:1 2196:1 2216:1 2219:2 2224:3 2226:3 2229:1 2234:1 2238:1 2246:2 2248:1 2250:2 2257:1 2274:1 2275:1 2277:1 2285:1 2293:1 2294:1 2296:1 2321:1 2328:1 2332:1 2333:1 2342:1 2350:4 2351:1 2358:1 2360:1 2365:1 2367:1 2371:1 2377:3 2388:2 2390:1 2403:1 2405:1 2413:1 2417:1 2432:3 2435:2 2437:1 2439:7 2443:1 2444:1 2445:1 2454:1 2457:1 2478:4 2479:2 2480:1 2483:2 2496:2 2503:2 2504:1 2505:1 2506:2 2513:7 2520:2 2526:2 2529:10 2535:6 2537:1 2545:2 2547:1 2553:1 2555:2 2557:1 2562:3 2563:2 2574:4 2589:1 2591:3 2597:5 2602:1 2605:2 2611:1 2638:1 2640:2 2641:2 2654:4 2655:1 2659:1 2662:7 2667:2 2668:1 2671:1 2684:1 2686:1 2691:1 2710:1 2716:3 2719:1 2738:5 2745:1 2749:1 2752:17 2763:1 2773:3 2774:1 2776:1 2777:1 2779:1 2786:2 2791:3 2792:1 2794:1 2811:23 2813:3 2826:1 2827:1 2836:2 2839:4 2848:1 2856:2 2866:1 2870:2 2883:1 2889:1 2893:1 2895:1 2898:1 2902:1 2907:1 2917:1 2918:6 2934:3 2939:2 2948:1 2952:1 2970:1 2979:1 2988:1 2989:1 2993:1 2995:1 2998:1 3006:2 3014:1 3027:2 3035:1 3042:3 3057:1 3070:1 3089:1 3090:2 3128:1 3129:3 3130:1 3134:1 3139:2 3149:9 3150:1 3193:1 3216:1 3225:3 3230:1 3234:1 3260:1 3263:1 3264:2 3265:1 3272:1 3277:1 3283:1 3285:1 3286:2 3291:1 3299:1 3305:1 3308:1 3328:1 3343:1 3358:2 3362:1 3383:1 3384:19 3399:1 3403:2 3405:2 3406:3 3409:2 3425:1 3429:1 3430:1 3438:1 3442:1 3446:1 3477:1 3479:2 3480:1 3484:1 3489:3 3490:1 3493:2 3501:1 3523:1 3548:1 3549:1 3552:1 3554:1 3559:2 3562:1 3565:2 3569:1 3576:4 3580:1 3581:1 3596:1 3599:1 3603:2 3608:1 3610:1 3626:2 3627:1 3628:2 3631:1 3640:2 3648:3 3649:1 3663:2 3664:1 3668:5 3670:2 3673:3 3677:1 3678:2 3687:5 3698:1 3700:3 3715:1 3716:2 3730:1 3732:2 3734:4 3738:1 3743:1 3746:1 3756:2 3765:7 3766:5 3772:2 3808:1 3810:2 3813:1 3818:1 3834:1 3837:1 3839:2 3857:1 3864:1 3866:2 3870:1 3872:1 3875:1 3878:1 3879:1 3891:2 3900:1 3910:2 3924:2 3932:1 3937:4 3938:1 3940:3 3941:1 3944:3 3946:1 3950:1 3954:2 3977:1 3981:1 3992:1 4008:1 4019:1 4025:1 4027:2 4029:1 4045:7 4075:3 4081:1 4090:2 4097:1 4101:1 4104:3 4114:2 4127:2 4133:1 4140:1 4149:1 4150:1 4152:1 4156:4 4157:2 4169:1 4172:1 4177:4 4194:1 4202:1 4203:1 4211:1 4220:1 4225:2 4233:2 4246:1 4249:1 4252:2 4256:1 4257:3 4259:1 4267:1 4276:1 4292:3 4304:1 4314:5 4327:1 4331:1 4332:1 4355:5 4363:3 4371:1 4372:1 4377:4 4380:2 4395:1 4397:5 4417:1 4420:2 4428:1 4437:1 4440:3 4443:4 4456:3 4459:1 4468:1 4469:2 4475:1 4494:1 4496:2 4507:1 4511:1 4523:1 4524:1 4537:1 4549:1 4554:1 4565:17 4567:2 4573:1 4574:1 4576:1 4581:1 4586:1 4595:1 4601:1 4613:1 4623:1 4629:1 4645:1 4664:1 4669:4 4677:1 4684:1 4685:4 4687:7 4688:3 4690:1 4693:2 4695:2 4696:2 4698:1 4700:1 4701:2 4703:6 4704:4 4706:1 4708:2 4709:8 4715:2 4716:6 4719:1 4721:1 4733:1 4764:1 4776:1 4784:1 4789:3 4796:1 4820:1 4853:1 4891:1 4903:1 4917:1 4926:1 4930:1 4937:2 4973:1 4977:1 5002:3 5008:2 5018:1 5057:1 5061:1 5066:2 5088:6 5094:1 5101:1 5110:1 5121:1 5140:1 5146:1 5157:2 5163:1 5171:1 5180:1 5188:1 5195:1 5197:1 5220:1 5230:1 5245:1 5252:2 5254:1 5264:1 5284:2 5287:1 5290:1 5292:1 5298:2 5302:1 5305:1 5313:5 5314:1 5316:2 5317:1 5320:4 5321:1 5336:2 5337:1 5348:2 5354:1 5364:1 5369:3 5379:2 5380:1 5383:1 5384:1 5394:6 5403:1 5406:2 5452:1 5461:1 5468:1 5481:1 5483:1 5485:1 5493:1 5503:1 5507:1 5509:1 5510:1 5516:2 5522:3 5524:1 5538:1 5544:1 5547:1 5549:1 5562:1 5568:1 5569:2 5576:2 5584:1 5590:2 5593:1 5594:2 5596:6 5607:1 5610:6 5612:1 5613:1 5619:1 5620:2 5626:2 5628:1 5629:1 5632:1 5633:1 5636:2 5641:1 5668:1 5671:1 5673:1 5678:2 5680:2 5682:2 5688:1 5692:2 5693:1 5696:14 5715:1 5735:3 5742:1 5761:1 5772:1 5787:4 5797:2 5812:6 5817:1 5824:1 5854:1 5869:1 5872:1 5890:1 5897:1 5898:1 5901:1 5905:3 5906:3 5908:1 5911:1 5912:1 5915:2 5916:1 5921:2 5923:4 5924:3 5944:1 5958:1 5992:1 5997:1 6008:1 6010:1 6031:1 6035:1 6046:2 6051:5 6052:2 6063:1 6072:1 6106:1 6115:1 6124:2 6129:2 6133:1 6141:1 6148:1 6154:2 6177:1 6191:2 6199:2 6208:1 6213:1 6222:1 6260:1 6270:1 6273:2 6281:1 6290:2 6292:1 6295:1 6298:1 6301:1 6305:1 6314:1 6316:9 6317:1 6321:1 6323:2 6325:1 6327:3 6329:1 6336:1 6338:1 6344:1 6351:1 6355:2 6371:1 6375:1 6377:1 6378:1 6379:1 6385:1 6387:1 6389:1 6391:1 6424:2 6426:3 6437:2 6442:1 6448:2 6451:1 6465:1 6470:1 6476:1 6478:1 6479:1 6483:2 6484:1 6491:2 6507:2 6525:2 6529:1 6530:1 6537:1 6545:1 6546:2 6553:1 6563:7 6569:2 6581:1 6588:1 6595:1 6596:1 6600:1 6606:2 6609:3 6610:2 6618:1 6623:6 6624:1 6626:1 6628:1 6631:5 6634:1 6637:1 6651:1 6657:1 6658:1 6660:2 6670:1 6678:1 6685:1 6701:1 6702:1 6707:4 6716:5 6724:1 6732:1 6735:1 6752:3 6755:1 6757:1 6765:1 6778:1 6786:1 6788:1 6790:1 6798:1 6806:1 6812:1 6824:1 6850:1 6868:1 6871:1 6875:1 6879:2 6917:1 6931:1 6935:2 6936:6 6940:4 6942:1 6943:1 6945:1 6951:4 6955:1 6971:6 6972:2 6974:2 6988:1 6989:3 6998:1 7002:1 7012:1 7019:1 7020:2 7023:2 7028:1 7038:1 7043:1 7045:1 7051:1 7053:1 7066:1 7067:1 7075:1 7076:2 7078:1 7081:1 7086:2 7090:1 7101:1 7102:1 7114:1 7120:1 7138:4 7153:5 7154:9 7165:2 7170:1 7173:4 7176:4 7178:3 7180:1 7183:1 7190:1 7192:1 7198:4 7199:3 7200:1 7213:53 7214:2 7220:1 7222:1 7228:1 7229:11 7231:9 7236:2 7240:1 7251:1 7270:1 7276:1 7278:1 7287:1 7288:2 7297:1 7301:3 7302:2 7307:1 7309:1 7320:1 7322:2 7331:2 7341:3 7358:1 7360:1 7362:1 7364:1 7380:2 7388:1 7389:1 7392:2 7399:1 7404:1 7409:1 7410:2 7440:1 7446:1 7451:2 7453:1 7454:4 7459:1 7483:1 7489:1 7490:1 7491:1 7501:3 7540:1 7549:1 7559:1 7564:1 7569:2 7573:1 7581:2 7591:1 7592:1 7594:1 7600:1 7603:1 7604:1 7608:1 7621:2 7628:1 7631:1 7639:1 7643:1 7644:3 7654:1 7663:1 7674:1 7677:1 7678:2 7700:27 7706:1 7724:3 7726:3 7729:1 7731:2 7732:1 7734:1 7752:1 7758:1 7773:6 7776:1 7777:1 7781:1 7810:1 7821:5 7823:2 7825:2 7827:1 7830:1 7831:1 7844:1 7854:2 7855:4 7860:3 7868:1 7874:1 7894:2 7896:1 7902:1 7906:1 7918:1 7920:1 7930:1 7937:1 7939:2 7946:1 7947:1 7957:1 7958:2 7966:2 7968:2 7969:1 8006:1 8028:1 8033:1 8034:1 8038:1 8039:1 8041:1 8048:1 8061:3 8064:2 8076:7 8078:1 8087:3 8090:3 8095:1 8109:2 8115:1 8116:1 8122:1 8127:2 8130:1 8131:2 8140:1 8145:1 8146:1 8162:3 8168:1 8191:2 8195:1 8196:1 8228:1 8233:1 8234:1 8240:1 8244:1 8271:1 8272:1 8281:1 8285:3 8293:1 8316:1 8319:2 8320:1 8324:3 8347:3 8353:1 8360:2 8361:1 8370:1 8377:1 8393:1 8394:1 8395:1 8398:1 8404:2 8407:2 8415:8 8416:1 8417:1 8423:1 8425:1 8429:2 8436:1 8438:1 8442:3 8444:1 8455:7 8456:1 8477:1 8484:1 8495:2 8500:1 8505:11 8506:7 8516:3 8517:1 8524:1 8551:3 8554:2 8561:1 8566:1 8570:4 8572:1 8589:1 8596:1 8603:2 8605:2 8607:5 8609:2 8624:2 8629:1 8635:1 8644:1 8658:1 8661:1 8671:1 8672:1 8681:2 8683:1 8689:1 8692:5 8694:2 8696:1 8700:1 8701:1 8708:1 8714:1 8715:4 8720:1 8721:1 8734:5 8770:1 8771:1 8782:1 8795:1 8802:1 8807:1 8823:3 8832:1 8835:3 8840:1 8852:1 8854:1 8858:1 8863:1 8865:1 8885:1 8888:1 8901:1 8905:1 8913:1 8919:8 8924:3 8956:3 8957:1 8964:1 8965:1 8975:3 8981:2 8994:1 9005:1 9018:1 9019:2 9024:1 9028:1 9031:3 9032:3 9034:2 9038:1 9056:1 9061:1 9064:2 9066:2 9096:2 9099:1 9107:1 9117:1 9142:2 9159:1 9163:1 9173:2 9178:1 9180:1 9183:1 9186:2 9196:1 9200:1 9201:1 9210:1 9242:1 9243:1 9248:2 9249:1 9262:1 9263:1 9266:1 9289:1 9291:1 9294:1 9296:1 9298:1 9301:5 9318:4 9325:4 9327:2 9336:1 9354:2 9363:1 9371:3 9372:1 9378:1 9391:2 9396:1 9398:1 9406:1 9410:2 9415:2 9427:1 9433:1 9434:1 9439:1 9444:1 9449:4 9453:1 9481:2 9485:1 9490:14 9492:1 9493:2 9497:2 9501:1 9519:2 9520:2 9535:1 9540:1 9544:1 9555:1 9572:1 9587:1 9588:2 9590:1 9597:1 9607:1 9622:1 9628:1 9643:1 9644:1 9646:1 9648:1 9649:1 9651:4 9661:1 9663:1 9665:2 9702:1 9710:1 9715:4 9717:1 9718:1 9720:1 9722:1 9723:1 9725:1 9729:1 9732:3 9739:1 9741:1 9742:1 9747:1 9749:2 9755:5 9769:1 9771:1 9787:1 9797:1 9803:1 9804:1 9806:1 9810:1 9817:1 9818:1 9819:2 9821:1 9823:2 9827:1 9837:2 9839:1 9842:1 9846:1 9853:2 9860:1 9864:1 9866:3 9868:1 9870:1 9877:2 9879:1 9881:1 9886:7 9889:4 9899:2 9900:3 9905:1 9910:1 9917:1 9920:2 9926:1 9943:2 9953:7 9954:2 9964:1 9979:2 9982:1 9983:1 9991:4 9995:1 10013:1 10026:1 10028:1 10035:3 10047:2 10054:1 10057:7 10071:2 10080:1 10092:1 10093:1 10106:4 10134:1 10140:1 10146:1 10168:1 10180:1 10191:1 10195:1 10197:2 10201:1 10206:1 10224:1 10225:1 10239:1 10240:2 10242:3 10245:1 10246:2 10252:1 10254:2 10261:1 10264:5 10265:6 10268:1 10275:1 10276:1 10280:1 10282:2 10283:3 10287:1 10288:1 10289:4 10293:1 10298:1 10307:1 10309:1 10310:3 10313:3 10318:1 10321:1 10336:3 10342:1 10345:2 10363:1 10372:1 10373:1 10376:5 10378:1 10385:1 10392:1 10406:1 10411:1 10424:1 10434:2 10436:1 10440:2 10455:1 10466:1 10493:1 10499:1 10506:1 10511:1 10512:1 10515:1 10518:1 10528:1 10530:1 10532:3 10556:1 10575:1 10586:1 10592:1 10597:2 10599:1 10611:3 10614:2 10617:1 10619:1 10627:2 10630:2 10632:1 10633:1 10635:2 10637:1 10644:3 10646:1 10647:1 10648:2 10657:1 10663:3 10667:2 10677:1 10678:1 10693:21 10694:1 10696:1 10707:1 10718:1 10730:1 10734:5 10742:1 10745:2 10746:3 10755:1 10756:1 10759:2 10769:1 10786:1 10788:2 10799:3 10803:1 10813:3 10818:2 10831:1 10847:1 10859:1 10863:1 10884:1 10890:1 10906:1 10924:2 10925:1 10932:3 10933:1 10934:1 10936:1 10937:1 10950:1 10951:5 10955:1 10956:2 10957:1 10960:2 10962:1 10968:1 10969:1 10977:1 10979:1 10988:1 10991:1 10992:1 10995:1 10998:1 11003:2 11006:5 11009:5 11014:1 11031:1 11040:1 11055:1 11073:1 11088:2 11100:1 11118:1 11120:1 11135:2 11141:1 11151:1 11156:1 11159:1 11160:1 11166:6 11173:1 11180:1 11184:2 11188:2 11189:1 11201:1 11206:1 11213:1 11214:1 11220:2 11227:2 11243:2 11246:1 11254:2 11261:1 11263:2 11283:1 11285:1 11301:2 11306:1 11314:1 11317:2 11321:1 11327:2 11333:1 11365:1 11372:1 11376:1 11380:5 11381:4 11382:2 11383:1 11394:2 11406:2 11412:1 11415:1 11418:1 11424:1 11463:1 11476:1 11478:2 11479:1 11502:1 11506:1 11513:1 11520:1 11534:1 11542:1 11547:1 11557:1 11574:1 11635:1 11638:3 11662:2 11674:1 11686:1 11689:1 11691:1 11695:1 11705:1 11718:1 11720:2 11721:1 11736:3 11745:1 11758:1 11767:1 11774:1 11824:1 11831:1 11836:1 11839:1 11840:3 11847:1 11859:1 11863:1 11882:15 11886:6 11899:2 11904:1 11910:1 11915:1 11923:1 11928:2 11929:3 11936:4 11938:2 11943:1 11952:1 11954:1 11959:1 11964:2 11965:1 11974:1 11980:2 11981:1 11983:1 11989:1 12016:1 12034:1 12039:1 12040:1 12045:2 12048:1 12061:1 12068:1 12069:1 12081:1 12090:1 12091:2 12097:1 12100:2 12101:1 12108:1 12110:1 12112:1 12134:1 12151:5 12161:2 12163:1 12208:1 12209:1 12231:1 12241:2 12245:1 12252:1 12254:4 12257:4 12268:2 12269:2 12270:1 12273:2 12274:2 12283:3 12290:1 12306:8 12309:1 12323:1 12325:2 12346:1 12351:4 12352:1 12367:1 12379:1 12385:2 12386:1 12387:1 12389:2 12399:9 12400:1 12410:3 12413:1 12418:1 12428:1 12436:1 12437:1 12440:2 12446:1 12452:1 12453:1 12463:23 12469:1 12474:1 12490:1 12506:2 12508:2 12515:3 12529:1 12533:2 12544:1 12547:2 12556:1 12557:1 12559:1 12590:3 12613:1 12616:6 12617:1 12633:1 12640:2 12642:1 12645:1 12662:1 12668:5 12685:1 12692:1 12694:1 12696:1 12703:3 12705:1 12707:2 12714:1 12715:1 12719:1 12721:1 12728:6 12729:1 12732:1 12733:2 12734:1 12736:2 12737:1 12741:8 12742:3 12754:1 12756:1 12760:1 12761:1 12763:1 12764:1 12765:1 12783:1 12787:1 12805:1 12814:1 12831:1 12842:2 12848:2 12854:1 12861:1 12872:1 12878:1 12887:7 12919:1 12926:1 12929:1 12932:1 12939:1 12940:1 12941:1 12946:1 12956:3 12960:1 12978:2 12986:1 12996:1 12997:1 12999:1 13005:8 13014:1 13025:3 13032:1 13040:1 13041:1 13064:1 13076:1 13077:2 13085:2 13090:1 13103:1 13109:1 13111:1 13118:1 13131:2 13139:1 13155:1 13161:1 13165:1 13170:1 13173:1 13180:1 13188:1 13197:1 13211:1 13218:1 13237:1 13245:2 13261:5 13277:1 13288:1 13309:1 13320:1 13380:1 13383:3 13384:4 13391:1 13404:2 13406:1 13408:1 13410:2 13412:1 13432:1 13436:1 13442:1 13452:2 13464:1 13470:1 13479:2 13480:1 13499:1 13509:1 13524:2 13531:1 13535:1 13548:1 13552:1 13554:1 13556:1 13563:2 13567:1 13578:4 13585:2 13595:1 13630:1 13632:2 13636:1 13637:2 13641:1 13653:1 13666:2 13679:2 13680:1 13686:1 13690:1 13695:2 13713:1 13720:1 13723:1 13731:1 13741:1 13745:1 13756:4 13768:1 13771:2 13774:1 13804:1 13807:1 13847:1 13850:1 13885:2 13891:2 13892:2 13895:1 13900:1 13902:1 13903:1 13912:1 13923:2 13932:1 13977:1 13979:3 13984:1 13997:1 13998:1 13999:2 14002:1 14003:1 14004:1 14032:1 14083:1 14087:1 14092:1 14094:2 14115:1 14116:1 14125:1 14155:1 14162:1 14170:2 14182:1 14187:1 14204:1 14211:1 14212:1 14213:2 14226:1 14240:2 14245:3 14248:1 14270:1 14274:1 14275:1 14286:1 14295:2 14311:3 14315:1 14318:1 14334:1 14336:1 14345:2 14354:1 14362:2 14378:1 14380:1 14385:1 14387:2 14391:1 14397:6 14409:4 14419:1 14424:5 14435:3 14457:1 14460:1 14467:1 14476:1 14484:2 14486:1 14489:2 14499:1 14540:1 14552:2 14553:1 14564:2 14571:1 14575:1 14579:4 14584:1 14586:1 14593:1 14603:2 14605:5 14606:1 14609:1 14612:1 14624:2 14626:1 14639:1 14658:2 14666:2 14689:1 14703:2 14706:1 14709:1 14719:3 14726:2 14735:1 14737:1 14739:3 14753:1 14764:3 14768:1 14777:1 14782:1 14802:1 14815:1 14817:1 14819:1 14841:1 14842:1 14844:1 14847:1 14852:1 14853:1 14855:1 14857:21 14859:1 14871:1 14872:1 14874:1 14876:3 14878:1 14900:3 14904:1 14943:2 14954:1 14958:1 14962:2 14972:4 14976:1 14990:2 14994:1 15000:1 15008:2 15015:1 15029:1 15030:2 15046:1 15052:1 15060:1 15062:1 15064:1 15068:1 15074:2 15075:1 15082:1 15094:1 15100:3 15103:1 15117:1 15122:1 15128:6 15130:2 15131:2 15132:6 15133:2 15134:1 15135:2 15137:1 15139:2 15140:5 15143:1 15144:1 15147:1 15150:1 15151:2 15153:1 15161:1 15177:1 15188:2 15201:1 15204:1 15206:2 15216:1 15232:1 15238:1 15239:1 15251:1 15255:2 15256:1 15257:1 15261:1 15279:2 15282:1 15284:1 15288:2 15289:2 15294:1 15307:2 15312:1 15328:1 15336:1 15337:1 15341:1 15352:1 15367:1 15370:1 15375:1 15388:1 15418:1 15430:1 15434:3 15445:1 15446:2 15455:2 15456:1 15466:1 15470:5 15475:1 15478:2 15487:1 15495:1 15496:1 15501:2 15504:1 15505:4 15507:1 15509:2 15510:1 15513:1 15516:1 15522:4 15526:2 15534:4 15544:1 15553:1 15585:14 15588:1 15604:1 15606:1 15611:2 15613:4 15614:2 15618:1 15656:1 15671:1 15672:1 15678:2 15689:1 15690:1 15695:4 15705:1 15706:1 15720:4 15722:2 15733:1 15737:1 15741:1 15742:1 15754:1 15756:2 15761:1 15778:5 15791:1 15799:1 15802:1 15811:1 15823:1 15841:1 15849:1 15878:2 15879:4 15895:1 15898:1 15920:1 15927:1 15936:2 15945:1 15946:1 15950:1 15970:1 15973:1 15980:1 15987:2 15992:1 16006:1 16014:1 16022:2 16023:1 16031:1 16034:2 16039:1 16041:2 16044:1 16047:1 16055:1 16072:1 16073:1 16116:1 16119:1 16150:1 16159:1 16163:1 16169:1 16183:1 16187:1 16189:1 16199:3 16202:1 16212:1 16213:3 16218:1 16222:1 16224:1 16232:3 16238:2 16240:2 16244:3 16249:1 16250:10 16277:1 16284:1 16287:2 16288:1 16293:4 16294:1 16298:1 16305:3 16311:1 16313:2 16315:1 16316:1 16331:1 16362:1 16368:1 16369:1 16389:4 16392:1 16403:1 16416:2 16427:1 16428:1 16434:1 16435:1 16440:1 16451:1 16453:1 16482:1 16483:1 16484:1 16486:1 16504:1 16508:1 16513:1 16518:2 16533:2 16554:1 16557:1 16576:1 16578:1 16589:1 16593:1 16594:3 16598:1 16600:1 16602:1 16614:1 16616:1 16646:1 16661:1 16684:2 16709:1 16710:1 16720:2 16740:2 16747:1 16814:2 16815:1 16823:1 16833:1 16838:1 16844:1 16862:1 16878:1 16879:1 16885:1 16894:1 16898:1 16907:1 16934:1 16937:3 16946:1 16951:1 16981:1 16986:1 16999:15 17009:2 17025:1 17050:1 17070:1 17071:1 17087:15 17097:4 17099:2 17102:1 17103:7 17128:3 17142:1 17156:2 17184:6 17192:2 17204:2 17218:2 17219:1 17243:3 17251:2 17253:1 17263:3 17267:1 17276:2781 17285:1 17289:1 17299:1 17301:1 17302:1 17304:1 17347:1 17351:1 17353:1 17356:1 17368:1 17374:2 17389:1 17393:1 17414:2 17420:1 17421:1 17445:1 17465:1 17467:1 17469:1 17472:2 17474:6 17475:4 17488:1 17493:1 17495:1 17510:1 17515:1 17526:1 17529:1 17535:1 17542:1 17549:1 17551:1 17552:1 17592:1 17595:3 17599:2 17608:1 17615:1 17644:1 17649:2 17653:1 17654:3 17659:2 17674:1 17684:2 17686:1 17697:1 17699:2 17700:1 17707:2 17709:1 17717:1 17728:1 17735:1 17737:1 17743:1 17748:2 17754:1 17765:1 17776:2 17780:1 17787:1 17789:1 17791:2 17793:2 17795:2 17803:1 17809:1 17817:2 17836:2 17837:3 17855:4 17859:1 17862:1 17870:3 17876:1 17895:3 17896:1 17900:1 17904:1 17905:1 17907:1 17913:1 17917:2 17920:2 17927:9 17949:1 17951:1 17966:1 17970:2 17971:1 17978:2 17992:5 17993:1 17999:1 18009:1 18011:2 18029:1 18043:1 18047:4 18052:1 18054:2 18060:1 18062:2 18070:1 18075:4 18076:2 18081:1 18085:1 18090:2 18101:1 18103:1 18104:5 18115:2 18116:1 18123:3 18141:1 18156:5 18159:2 18163:1 18164:1 18178:2 18182:2 18183:2 18187:2 18191:1 18193:1 18194:2 18197:1 18210:2 18218:2 18225:1 18228:1 18233:1 18234:1 18240:1 18247:1 18271:1 18282:3 18294:1 18295:2 18296:1 18297:1 18299:1 18301:1 18303:3 18308:1 18321:1 18323:1 18326:1 18328:1 18332:1 18339:1 18343:1 18349:2 18354:1 18359:2 18371:1 18374:2 18381:2 18382:1 18385:1 18390:1 18400:1 18408:2 18409:1 18416:1 18420:2 18422:4 18427:1 18428:4 18430:1 18474:1 18477:1 18478:1 18492:1 18495:3 18499:1 18501:1 18503:2 18504:2 18508:2 18519:2 18521:3 18525:3 18529:3 18533:1 18534:3 18536:2 18538:1 18548:1 18556:5 18564:3 18580:1 18582:1 18596:1 18597:1 18598:1 18603:2 18604:4 18613:1 18620:1 18627:1 18628:2 18638:1 18639:1 18645:1 18653:1 18658:2 18665:3 18679:1 18685:1 18690:2 18691:3 18707:1 18708:1 18716:3 18718:23 18719:2 18726:1 18735:5 18738:1 18754:1 18756:2 18759:1 18767:1 18784:3 18785:1 18792:1 18793:1 18805:1 18811:1 18817:1 18821:1 18835:1 18838:1 18845:2 18847:1 18848:1 18866:1 18868:1 18875:1 18882:1 18895:1 18898:1 18905:4 18919:2 18933:1 18937:2 18941:1 18949:2 18960:1 18962:1 18966:1 18969:2 18996:8 18998:3 19005:1 19013:1 19022:1 19039:1 19040:1 19041:1 19050:1 19054:1 19057:1 19080:1 19082:1 19085:4 19101:4 19112:1 19117:1 19119:1 19125:1 19128:1 19132:1 19133:1 19140:1 19143:2 19175:2 19183:3 19189:2 19190:3 19191:1 19201:3 19202:1 19204:2 19207:1 19209:1 19215:2 19221:1 19229:1 19243:5 19245:2 19254:2 19256:1 19257:1 19261:1 19268:1 19276:1 19279:2 19281:1 19284:3 19286:1 19293:2 19308:1 19311:2 19317:1 19324:2 19325:1 19331:5 19334:1 19338:2 19341:1 19344:1 19349:2 19359:3 19373:1 19385:2 19391:1 19392:1 19394:2 19412:1 19415:1 19421:2 19422:1 19431:2 19439:2 19443:2 19447:2 19450:2 19451:1 19459:2 19476:1 19478:1 19484:2 19506:2 19515:1 19516:4 19521:1 19522:1 19523:4 19532:1 19537:2 19542:1 19545:1 19546:1 19547:1 19551:1 19552:1 19558:2 19564:1 19567:1 19577:1 19581:1 19583:1 19591:1 19595:1 19614:1 19620:2 19624:1 19627:1 19629:1 19633:2 19636:3 19642:1 19645:1 19648:1 19661:1 19664:1 19697:1 19736:1 19756:2 19757:1 19770:3 19773:1 19782:4 19785:2 19790:1 19791:1 19794:1 19795:1 19798:1 19799:1 19806:1 19812:2 19821:3 19823:1 19830:1 19837:1 19845:1 19866:1 19873:1 19880:1 19889:1 19896:1 19897:1 19919:2 19921:1 19922:1 19927:1 19931:2 19934:1 19936:1 19948:1 19951:2 19954:2 19959:2 19960:1 19961:1 19963:2 19964:1 19965:1 19966:1 19976:1 19978:2 19987:1 19989:1 19998:14 20001:1 20009:2 20010:3 20017:2 20028:1 20041:1 20046:1 20048:1 20049:1 20051:1 20061:1 20063:1 20064:1 20066:2 20067:1 20071:1 20072:2 20075:1 20099:1 20104:1 20111:1 20125:3 20134:1 20138:2 20141:1 20142:1 20147:1 20149:1 20151:6 20154:3 20156:1 20166:2 20177:1 20178:1 20179:1 20182:1 20183:1 20204:1 20205:1 20206:1 20210:3 20212:4 20215:1 20240:1 20248:1 20252:1 20316:4 20321:1 20322:5 20325:3 20326:3 20328:1 20329:1 20334:1 20337:2 20340:1 20341:2 20350:1 20351:1 20352:5 20360:1 20362:1 20368:1 20369:1 20370:1 20381:1 20396:2 20400:2 20403:2 20417:1 20444:1 20446:1 20471:2 20473:3 20480:1 20481:1 20483:1 20486:1 20492:1 20497:1 20503:1 20509:1 20523:1 20524:1 20529:1 20532:1 20533:3 20534:2 20544:2 20546:1 20553:1 20556:1 20567:2 20570:1 20572:5 20578:1 20587:1 20588:4 20592:3 20593:1 20599:1 20611:1 20619:1 20626:1 20628:2 20630:1 20632:1 20633:1 20634:4 20647:1 20655:2 20656:10 20658:1 20662:2 20666:1 20670:1 20675:1 20676:1 20692:1 20693:1 20719:9 20720:1 20733:1 20754:1 20772:1 20779:6 20780:1 20783:1 20784:1 20787:1 20791:1 20796:1 20797:1 20812:1 20813:3 20831:1 20842:1 20844:4 20851:1 20857:1 20864:2 20877:1 20879:1 20886:2 20887:7 20889:2 20900:3 20903:1 20905:4 20914:1 20919:1 20924:1 20926:1 20938:1 20940:5 20955:1 20962:1 20963:4 20965:1 20968:3 20976:1 20982:1 20991:1 20996:1 20998:1 21005:1 21007:1 21026:1 21029:1 21062:1 21066:1 21072:1 21073:1 21074:1 21079:1 21090:1 21100:2 21115:10 21116:3 21130:2 21134:3 21138:1 21140:4 21149:1 21150:3 21163:2 21164:1 21167:1 21176:1 21203:1 21215:1 21216:1 21218:2 21220:2 21234:1 21235:1 21238:1 21256:1 21257:1 21261:1 21262:1 21263:1 21266:2 21282:1 21284:2 21289:1 21296:1 21303:2 21306:1 21309:2 21311:1 21333:2 21340:3 21345:1 21370:3 21385:1 21415:3 21434:1 21453:3 21456:3 21462:7 21469:2 21479:1 21484:1 21488:3 21498:3 21500:2 21501:1 21502:3 21506:1 21512:1 21520:4 21551:1 21554:1 21559:2 21580:2 21583:1 21586:1 21599:1 21613:4 21617:1 21624:1 21635:1 21642:1 21647:1 21650:3 21674:2 21682:1 21686:2 21694:1 21695:1 21703:1 21708:1 21709:1 21724:1 21726:2 21730:4 21733:3 21742:1 21743:1 21753:1 21755:1 21757:1 21772:3 21773:2 21774:1 21777:2 21788:1 21792:1 21794:1 21800:1 21842:1 21845:1 21846:5 21847:1 21848:1 21853:1 21859:1 21861:1 21862:4 21863:1 21864:1 21865:1 21867:1 21869:1 21871:1 21886:1 21898:1 21913:3 21916:1 21917:1 21930:1 21938:2 21974:3 21978:1 21981:2 21991:1 22014:2 22019:1 22022:1 22034:1 22041:1 22052:1 22053:1 22066:1 22068:2 22074:1 22076:2 22078:1 22088:1 22102:1 22120:1 22122:1 22125:1 22130:1 22136:2 22146:1 22157:2 22176:1 22188:1 22196:1 22218:1 22230:2 22232:1 22238:1 22260:2 22263:1 22282:2 22296:4 22304:1 22320:1 22327:1 22328:8 22337:1 22345:1 22352:1 22354:1 22358:5 22363:1 22370:1 22380:1 22382:1 22389:1 22391:5 22400:1 22402:1 22403:1 22407:1 22412:1 22435:4 22457:4 22459:2 22467:1 22469:2 22478:1 22502:1 22522:1 22530:1 22531:1 22532:1 22550:1 22552:1 22553:1 22559:1 22561:2 22564:3 22565:4 22568:1 22571:2 22572:1 22575:1 22578:2 22581:1 22582:3 22588:1 22592:1 22601:1 22612:6 22626:1 22627:2 22629:1 22632:1 22640:1 22642:1 22644:1 22646:1 22662:12 22663:6 22675:1 22685:1 22688:2 22690:1 22693:1 22695:1 22696:1 22705:1 22709:1 22710:1 22712:1 22713:2 22718:3 22726:3 22739:1 22742:1 22755:1 22764:1 22802:1 22808:1 22811:1 22827:1 22841:1 22842:1 22853:3 22856:2 22862:1 22868:1 22870:1 22876:3 22880:2 22884:1 22886:2 22890:1 22895:1 22901:3 22903:2 22907:1 22923:1 22929:1 22931:1 22937:1 22942:1 22943:2 22944:1 22946:1 22948:1 22951:1 22953:1 22963:1 22968:1 22974:5 22987:3 22992:1 22993:1 22997:1 23012:2 23018:2 23022:1 23024:3 23025:1 23041:1 23048:1 23076:1 23077:18 23078:2 23099:1 23101:1 23105:1 23106:1 23115:1 23123:1 23130:2 23136:2 23139:1 23144:1 23146:1 23158:2 23161:1 23162:1 23166:1 23169:1 23170:1 23181:1 23188:1 23197:1 23202:1 23217:1 23222:1 23242:1 23259:1 23261:1 23272:1 23291:12 23292:1 23296:1 23307:1 23316:2 23319:1 23329:1 23341:1 23350:3 23363:1 23373:1 23375:7 23378:1 23387:1 23398:1 23404:2 23406:1 23426:1 23432:1 23436:3 23440:1 23446:1 23454:2 23464:1 23465:1 23472:1 23481:1 23497:2 23503:2 23505:1 23514:2 23528:1 23532:1 23545:1 23557:1 23561:2 23568:1 23601:1 23602:2 23609:1 23613:1 23617:1 23622:1 23628:1 23631:1 23635:3 23639:5 23642:1 23648:1 23651:1 23652:2 23664:1 23666:1 23669:1 23695:7 23700:1 23704:1 23706:1 23719:1 23721:8 23738:2 23739:2 23756:1 23767:1 23768:1 23771:1 23774:4 23775:1 23776:1 23784:1 23786:1 23793:1 23802:1 23803:1 23826:1 23829:1 23840:1 23845:2 23861:1 23869:1 23889:1 23895:1 23902:3 23909:1 23923:1 23932:1 23943:1 23964:1 23969:1 23987:1 23988:1 23999:2 24004:1 24008:2 24009:3 24013:1 24019:1 24024:1 24025:1 24027:2 24028:1 24041:1 24050:1 24052:1 24055:1 24061:3 24064:1 24092:5 24101:1 24104:1 24105:1 24113:1 24126:1 24129:1 24138:2 24140:1 24149:2 24150:1 24153:1 24161:1 24165:17 24166:2 24177:2 24185:1 24193:1 24195:2 24206:1 24214:4 24219:1 24220:2 24230:1 24231:1 24233:1 24237:2 24245:1 24251:1 24255:2 24256:2 24259:1 24263:1 24268:1 24272:4 24275:3 24280:4 24285:3 24286:4 24289:1 24290:1 24298:1 24304:1 24305:1 24310:1 24345:1 24350:1 24351:1 24357:1 24359:2 24363:1 24372:1 24376:1 24377:2 24400:3 24408:2 24416:1 24420:2 24424:1 24425:1 24427:2 24434:2 24443:6 24444:1 24446:1 24454:1 24455:1 24458:1 24462:2 24471:1 24472:1 24478:1 24479:1 24500:1 24502:2 24503:2 24521:2 24524:1 24553:1 24570:1 24592:1 24596:1 24600:3 24622:1 24625:1 24643:1 24648:1 24653:1 24655:1 24658:6 24675:1 24676:1 24688:1 24710:1 24713:1 24715:1 24720:1 24721:1 24733:1 24737:1 24740:3 24744:1 24747:1 24768:2 24773:2 24774:2 24777:2 24784:1 24789:1 24792:3 24809:1 24812:1 24826:1 24830:1 24839:1 24844:2 24870:2 24880:1 24889:1 24892:1 24900:1 24917:1 24928:2 24938:2 24944:5 24949:1 24952:1 24953:1 24954:2 24964:1 24966:1 24967:2 24972:1 24975:1 24976:2 24982:2 24994:1 25000:1 25005:3 25019:2 25020:1 25022:1 25026:1 25028:1 25031:2 25032:2 25059:1 25065:1 25068:1 25070:1 25073:2 25076:1 25081:1 25109:1 25110:1 25125:6 25129:3 25132:2 25138:1 25145:1 25147:1 25170:1 25177:1 25185:2 25191:1 25195:2 25200:2 25203:1 25207:2 25213:1 25214:1 25216:1 25224:2 25232:1 25239:1 25242:1 25244:1 25250:1 25251:1 25254:4 25255:1 25256:1 25257:1 25260:4 25263:1 25267:2 25269:1 25273:1 25277:1 25281:3 25291:2 25295:1 25299:1 25302:1 25329:1 25330:1 25339:1 25346:5 25363:1 25370:2 25389:2 25402:1 25412:1 25451:1 25454:2 25471:1 25479:1 25487:1 25491:2 25514:2 25527:1 25530:1 25532:1 25536:1 25538:3 25543:5 25558:1 25560:1 25572:1 25582:1 25600:7 25630:2 25632:1 25644:1 25661:1 25666:1 25683:1 25693:1 25698:1 25699:1 25702:2 25717:2 25731:2 25739:1 25747:1 25752:1 25768:1 25772:1 25775:1 25777:1 25783:1 25787:2 25791:2 25793:3 25794:1 25797:1 25801:1 25804:3 25808:1 25809:3 25820:1 25822:2 25828:1 25829:5 25830:1 25837:1 25841:1 25842:1 25843:1 25856:3 25861:2 25863:2 25867:1 25869:1 25871:5 25875:1 25880:3 25881:1 25888:1 25892:3 25893:1 25905:3 25909:1 25913:3 25917:1 25924:1 25941:1 25946:3 25964:1 25965:1 25983:2 26005:1 26012:3 26015:5 26022:7 26028:1 26054:6 26067:1 26071:1 26080:1 26081:1 26092:3 26098:1 26099:1 26101:1 26115:1 26123:1 26125:7 26129:1 26132:2 26163:1 26174:1 26175:1 26185:1 26194:1 26213:1 26214:1 26221:1 26222:2 26226:1 26229:1 26230:3 26236:2 26244:1 26265:3 26292:1 26298:1 26300:1 26301:1 26305:1 26306:8 26308:2 26312:2 26315:1 26325:2 26340:1 26341:1 26368:6 26383:1 26401:1 26411:1 26418:1 26423:2 26447:1 26452:1 26464:1 26473:1 26475:1 26486:1 26512:1 26514:1 26527:2 26538:1 26539:1 26540:2 26541:3 26544:2 26547:3 26553:1 26557:2 26558:1 26565:1 26580:1 26600:1 26612:1 26616:1 26625:1 26635:1 26655:3 26659:1 26664:2 26690:2 26695:2 26696:2 26706:1 26710:1 26713:1 26722:1 26724:1 26733:1 26735:1 26737:1 26745:1 26750:4 26751:1 26757:2 26759:1 26760:1 26766:1 26785:1 26787:2 26790:4 26793:2 26806:1 26810:1 26832:1 26837:1 26843:1 26848:1 26855:1 26862:1 26874:1 26879:1 26883:3 26889:1 26891:1 26910:1 26920:4 26923:1 26940:1 26957:2 26961:2 26973:1 26976:1 26978:1 26979:3 26986:3 26987:4 26988:1 26990:1 26996:1 27023:1 27029:1 27031:5 27034:1 27036:1
|
0129c6be7155dfe9cd4083c6871611529fce2612 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3035/CH8/EX8.7/Ex8_7.sce | 827ddd0e6f270f9f9158c09794fdb114c5643587 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,139 | sce | Ex8_7.sce | // Variable Declaration
X_s = 1.05 //Synchronous reactance of generator(p.u)
V_b = 0.95 //Terminal voltage of generator=voltage of infinite bus(p.u)
X_L = 0.1 //Reactance of link(p.u)
E = 1.2 //Excitation emf of finite machine(p.u)
P_G = 0.15 //Active power output(p.u)
inc = 1 //Turbine torque increased
// Calculation Section
sin_delta = P_G*(X_s+X_L)/(E*V_b)
delta = asin(sin_delta) //Power angle(radian)
Q_G = V_b/(X_s+X_L)*(E*cos(delta)-V_b) //Reactive power output(p.u)
P_Gn = (1+inc)*P_G //New active power output(p.u)
sin_delta_n = P_Gn*(X_s+X_L)/(E*V_b)
delta_n = asin(sin_delta_n) //Power angle(radian)
Q_Gn = V_b/(X_s+X_L)*(E*cos(delta_n)-V_b) //Reactive power output(p.u)
P_change = (P_Gn-P_G)/P_G*100 //Change in active power output(%)
Q_change = (Q_Gn-Q_G)/Q_G*100 //Change in reactive power output(%)
// Result Section
printf('Change in active power supplied by generator = %.f percent' ,P_change)
printf('Change in reactive power supplied by generator = %.2f percent' ,Q_change)
|
bc391c5c903570359af11c19fcf50dd5927881d7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3012/CH9/EX9.2/Ex9_2.sce | 7212c315310771708206a3042ba6740cf9634814 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 3,081 | sce | Ex9_2.sce |
// Given :-
clc;
r = 18.00 // compression ratio
T1 = 300.00 // temperature at the beginning of the compression process in kelvin
p1 = 0.1 // pressure at the beginning of the compression process in MPa
rc = 2.00 // cutoff ratio
// Part(a)
// With T1 = 300 K, Table A-22 gives
u1 = 214.07 // in kj/kg
vr1 = 621.2
// Interpolating in Table A-22, we get
T2 = 898.3 // in kelvin
h2 = 930.98 // in kj/kg
// From Table A-22,
h3 = 1999.1 // in kj/kg
vr3 = 3.97
// Interpolating in Table A-22 with vr4, we get
u4 = 664.3 // in kj/kg
T4 = 887.7 // in kelvin
// Calculations
// Since Process 2–3 occurs at constant pressure, the ideal gas equation of state gives
T3 = rc*T2 // in kelvin
// With the ideal gas equation of state
p2 = p1*(T2/T1)*(r) // in MPa
p3 = p2
// For the isentropic compression process 1–2
vr2 = vr1/r
// For the isentropic expansion process 3–4
vr4 = (r/rc)*vr3
// The ideal gas equation of state applied at states 1 and 4 gives
p4 = p1*(T4/T1) // in MPa
// Results
printf( '\n At state1, the pressure is : %.2f bar.',p1)
printf( '\n At state1, the temperature is %.2f kelvin.' ,T1)
printf( '\n At state2, the pressure in bar is : %.2f bar.',p2)
printf( '\n At state2, the temperature is %.2f kelvin.',T2)
printf( '\n At state3, the pressure in bar is : %.2f bar.',p3)
printf( '\n At state3, the temperature is %.2f kelvin.',T3)
printf( '\n At state4, the pressure is: %.2f MPa.',p4)
printf( '\n At state4, the temperature is %.2f kelvin.',T4)
// Part(b)
eta = 1- (u4-u1)/(h3-h2)
printf( '\n The thermal efficiency is : %.2f ',eta)
// Part(c)
R = 8.314 // universal gas constant, in SI units
M = 28.97 // molar mass of air in grams
// Calculations
wcycle = (h3-h2)-(u4-u1) // The net work of the cycle in kj/kg
v1 = ((R/M)*T1/p1)/10**3 // The specific volume at state 1 in m^3/kg
mep = (wcycle/(v1*(1-1/r)))*10**3*10**-6 // in MPa
// Results
printf( '\n The mean effective pressure, is : %.2f MPa.',mep)
|
91266c341499a6a8c50cf9227a1bb84178c40b2c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1544/CH9/EX9.1/Ch09Ex1.sce | e8793dcfbaa07acf3c3ff8e9698e6e5cdd51fa2c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,873 | sce | Ch09Ex1.sce | // Scilab code Ex9.1: Pg 277 (2008)
clc; clear;
// Part (a)
V_Z = 9.1; // Zener voltage of zener diode, volt
P_Z = 0.5; // Power rating of zener diode at V_Z, W
r_Z = 1.5; // Slope resistance of zener diode, ohm
V = 12; // Nominal value of input voltage, volt
R_L = 2.5e+03; // Load resistance across zener diode, ohm
I_Z = P_Z/V_Z*1e+03; // Zener current, mA
I_S = I_Z; // Current through series resistor, mA
V_S = V - V_Z; // Voltage drop across series resistor, volt
R_S = V_S/I_S*1e+03; // Value of series resistance, ohm
P_max = (I_S*1e-03)^2*R_S; // Maximum power rating of series resistance, W
printf("\nThe value of series resistance = %5.2f ohm", R_S);
printf("\nThe value of maximum power rating of series resistance = %4.2f W", P_max);
printf("\n(a) The suitable value of R_S should be 54 ohm, 0.25 W");
// Part (b)
V_o = V_Z; // Output voltage across zener, volt
I_L = V_o/R_L*1e+03; // Load current, mA
I_Z = I_S - I_L; // Zener current, mA
printf("\n(b) The value of diode current with load resistance across zener = %5.2f mA",I_Z );
// Part (c)
V = 12 - (0.1*12); // Final value of input voltage after falling below 12 V, volt
R_S = 56; // Standard value of series resistance, ohm
I_S = (V - V_Z)/R_S*1e+03; // Current through series resistance, mA
I_Z = I_S - I_L; // Resulting diode current, mA
delta_I_Z = 51.36 - I_Z; // Change in zener current, mA
delta_V_Z = delta_I_Z*1e-03*r_Z; // Change in zener voltage, V
change = delta_V_Z/V_Z*100; // %age change in zener voltage
printf("\n(c) The percentage change in the p.d. across the load = %4.2f percent",change);
// Result
// The value of series resistance = 52.78 ohm
// The value of maximum power rating of series resistance = 159340.66 W
// The suitable value of R_S should be 54 ohm, 0.25 W
|
5875b8c43d1c6f1216fb111e20e378829c7d02f9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /40/CH2/EX2.8/Exa_2_8.sce | f9ac5da10ec0decc165ba67fd670b7c7f1755721 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 79 | sce | Exa_2_8.sce | f=100;
s=210;
s1=420;
aliasfrequency(f,s,s1)
s=140;
aliasfrequency(f,s,s1) |
ba2b142e8547109c8fceb27e5a7d1118110e9142 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2084/CH7/EX7.2w/7_2w.sce | 4f69df0d052d672c3521e6ed167ab3800255093a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 600 | sce | 7_2w.sce | //developed in windows XP operating system 32bit
//platform Scilab 5.4.1
clc;clear;
//example 7.2w
//calculation of the value of angle of banking
//given data
r=600//radius(in m) of the track
v=180*10^3/(60*60)//speed(in m/s) of the car
g=10//gravitational acceleration(in m/s^2) of the earth
//calculation
//for vertical direction
//N*cosd(theta) = M*g.........................(1)
//for horizontal direction
//N*sind(theta) = M*v*v/r.....................(2)
//from above equations,we get
theta=atand((v*v)/(r*g))
printf('the value of angle of banking is %3.2f degree',theta)
|
a4becd5cdb101d677d2ae027a3df84193d7c7cc0 | 66106821c3fd692db68c20ab2934f0ce400c0890 | /test/disassembler/lds.instr.tst | f50e0b64dc4c24b2133a1e94390289bda0d00e8e | [] | no_license | aurelf/avrora | 491023f63005b5b61e0a0d088b2f07e152f3a154 | c270f2598c4a340981ac4a53e7bd6813e6384546 | refs/heads/master | 2021-01-19T05:39:01.927906 | 2008-01-27T22:03:56 | 2008-01-27T22:03:56 | 4,779,104 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 5,147 | tst | lds.instr.tst | ; @Harness: disassembler
; @Result: PASS
section .text size=0x0000018c vma=0x00000000 lma=0x00000000 offset=0x00000034 ;2**0
section .data size=0x00000000 vma=0x00000000 lma=0x00000000 offset=0x000001c0 ;2**0
start .text:
label 0x00000000 ".text":
0x0: 0x00 0x90 0x00 0x80 lds r0, 0x8000
0x4: 0x10 0x90 0x00 0x80 lds r1, 0x8000
0x8: 0x20 0x90 0x00 0x80 lds r2, 0x8000
0xc: 0x30 0x90 0x00 0x80 lds r3, 0x8000
0x10: 0x40 0x90 0x00 0x80 lds r4, 0x8000
0x14: 0x50 0x90 0x00 0x80 lds r5, 0x8000
0x18: 0x60 0x90 0x00 0x80 lds r6, 0x8000
0x1c: 0x70 0x90 0x00 0x80 lds r7, 0x8000
0x20: 0x80 0x90 0x00 0x80 lds r8, 0x8000
0x24: 0x90 0x90 0x00 0x80 lds r9, 0x8000
0x28: 0xa0 0x90 0x00 0x80 lds r10, 0x8000
0x2c: 0xb0 0x90 0x00 0x80 lds r11, 0x8000
0x30: 0xc0 0x90 0x00 0x80 lds r12, 0x8000
0x34: 0xd0 0x90 0x00 0x80 lds r13, 0x8000
0x38: 0xe0 0x90 0x00 0x80 lds r14, 0x8000
0x3c: 0xf0 0x90 0x00 0x80 lds r15, 0x8000
0x40: 0x00 0x91 0x00 0x80 lds r16, 0x8000
0x44: 0x10 0x91 0x00 0x80 lds r17, 0x8000
0x48: 0x20 0x91 0x00 0x80 lds r18, 0x8000
0x4c: 0x30 0x91 0x00 0x80 lds r19, 0x8000
0x50: 0x40 0x91 0x00 0x80 lds r20, 0x8000
0x54: 0x50 0x91 0x00 0x80 lds r21, 0x8000
0x58: 0x60 0x91 0x00 0x80 lds r22, 0x8000
0x5c: 0x70 0x91 0x00 0x80 lds r23, 0x8000
0x60: 0x80 0x91 0x00 0x80 lds r24, 0x8000
0x64: 0x90 0x91 0x00 0x80 lds r25, 0x8000
0x68: 0xa0 0x91 0x00 0x80 lds r26, 0x8000
0x6c: 0xb0 0x91 0x00 0x80 lds r27, 0x8000
0x70: 0xc0 0x91 0x00 0x80 lds r28, 0x8000
0x74: 0xd0 0x91 0x00 0x80 lds r29, 0x8000
0x78: 0xe0 0x91 0x00 0x80 lds r30, 0x8000
0x7c: 0xf0 0x91 0x00 0x80 lds r31, 0x8000
0x80: 0x00 0x90 0x00 0x00 lds r0, 0x0000
0x84: 0x00 0x90 0x00 0x00 lds r0, 0x0000
0x88: 0x00 0x90 0xff 0xff lds r0, 0xFFFF
0x8c: 0x00 0x90 0xff 0x7f lds r0, 0x7FFF
0x90: 0x00 0x90 0xff 0x3f lds r0, 0x3FFF
0x94: 0x00 0x90 0xff 0x1f lds r0, 0x1FFF
0x98: 0x00 0x90 0xff 0x0f lds r0, 0x0FFF
0x9c: 0x00 0x90 0xff 0x07 lds r0, 0x07FF
0xa0: 0x00 0x90 0xff 0x03 lds r0, 0x03FF
0xa4: 0x00 0x90 0xff 0x01 lds r0, 0x01FF
0xa8: 0x00 0x90 0xff 0x00 lds r0, 0x00FF
0xac: 0x00 0x90 0x7f 0x00 lds r0, 0x007F
0xb0: 0x00 0x90 0x3f 0x00 lds r0, 0x003F
0xb4: 0x00 0x90 0x1f 0x00 lds r0, 0x001F
0xb8: 0x00 0x90 0x0f 0x00 lds r0, 0x000F
0xbc: 0x00 0x90 0x07 0x00 lds r0, 0x0007
0xc0: 0x00 0x90 0x03 0x00 lds r0, 0x0003
0xc4: 0x00 0x90 0x01 0x00 lds r0, 0x0001
0xc8: 0x00 0x90 0x00 0xff lds r0, 0xFF00
0xcc: 0x00 0x90 0x80 0x7f lds r0, 0x7F80
0xd0: 0x00 0x90 0xc0 0x3f lds r0, 0x3FC0
0xd4: 0x00 0x90 0xe0 0x1f lds r0, 0x1FE0
0xd8: 0x00 0x90 0xf0 0x0f lds r0, 0x0FF0
0xdc: 0x00 0x90 0xf8 0x07 lds r0, 0x07F8
0xe0: 0x00 0x90 0xfc 0x03 lds r0, 0x03FC
0xe4: 0x00 0x90 0xfe 0x01 lds r0, 0x01FE
0xe8: 0x00 0x90 0xf0 0xf0 lds r0, 0xF0F0
0xec: 0x00 0x90 0x78 0x78 lds r0, 0x7878
0xf0: 0x00 0x90 0x3c 0x3c lds r0, 0x3C3C
0xf4: 0x00 0x90 0x1e 0x1e lds r0, 0x1E1E
0xf8: 0x00 0x90 0x0f 0x0f lds r0, 0x0F0F
0xfc: 0x00 0x90 0x87 0x07 lds r0, 0x0787
0x100: 0x00 0x90 0xc3 0x03 lds r0, 0x03C3
0x104: 0x00 0x90 0xe1 0x01 lds r0, 0x01E1
0x108: 0x00 0x90 0xf0 0x00 lds r0, 0x00F0
0x10c: 0x00 0x90 0x78 0x00 lds r0, 0x0078
0x110: 0x00 0x90 0x3c 0x00 lds r0, 0x003C
0x114: 0x00 0x90 0x1e 0x00 lds r0, 0x001E
0x118: 0x00 0x90 0xcc 0xcc lds r0, 0xCCCC
0x11c: 0x00 0x90 0x66 0x66 lds r0, 0x6666
0x120: 0x00 0x90 0x33 0x33 lds r0, 0x3333
0x124: 0x00 0x90 0x99 0x19 lds r0, 0x1999
0x128: 0x00 0x90 0xcc 0x0c lds r0, 0x0CCC
0x12c: 0x00 0x90 0x66 0x06 lds r0, 0x0666
0x130: 0x00 0x90 0x33 0x03 lds r0, 0x0333
0x134: 0x00 0x90 0x99 0x01 lds r0, 0x0199
0x138: 0x00 0x90 0xcc 0x00 lds r0, 0x00CC
0x13c: 0x00 0x90 0x66 0x00 lds r0, 0x0066
0x140: 0x00 0x90 0x33 0x00 lds r0, 0x0033
0x144: 0x00 0x90 0x19 0x00 lds r0, 0x0019
0x148: 0x00 0x90 0x0c 0x00 lds r0, 0x000C
0x14c: 0x00 0x90 0x06 0x00 lds r0, 0x0006
0x150: 0x00 0x90 0xaa 0xaa lds r0, 0xAAAA
0x154: 0x00 0x90 0x55 0x55 lds r0, 0x5555
0x158: 0x00 0x90 0xaa 0x2a lds r0, 0x2AAA
0x15c: 0x00 0x90 0x55 0x15 lds r0, 0x1555
0x160: 0x00 0x90 0xaa 0x0a lds r0, 0x0AAA
0x164: 0x00 0x90 0x55 0x05 lds r0, 0x0555
0x168: 0x00 0x90 0xaa 0x02 lds r0, 0x02AA
0x16c: 0x00 0x90 0x55 0x01 lds r0, 0x0155
0x170: 0x00 0x90 0xaa 0x00 lds r0, 0x00AA
0x174: 0x00 0x90 0x55 0x00 lds r0, 0x0055
0x178: 0x00 0x90 0x2a 0x00 lds r0, 0x002A
0x17c: 0x00 0x90 0x15 0x00 lds r0, 0x0015
0x180: 0x00 0x90 0x0a 0x00 lds r0, 0x000A
0x184: 0x00 0x90 0x05 0x00 lds r0, 0x0005
0x188: 0x00 0x90 0x02 0x00 lds r0, 0x0002
start .data:
|
7ffdb54ede4eb0c5d2f7050b4c39436bad55f946 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3204/CH26/EX26.16/Ex26_16.sce | 78074d26724c566b6167634e0dc9fb393ffe68c8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 276 | sce | Ex26_16.sce | // 1 APPENDIX. Ex no 16. Page no 654
// Initiization of variables
F=20 // kN // Force acting at O
M_x=76 // kNm
M_y=82 // kNm
// Calculations
x=M_x/F // m
z=M_y/F // m
// Results
clc
printf('The point of application should be shifted to: x=%f m and z=%f m \n',x,z)
|
431c03649c9436c14bf1a4704700277b235f4886 | 9c54bbe2cf25166ee1e39824b798850f5133ba4a | /features/fctquery.tst | de787d0b57ab0a7f421925cf3e04cc7fbecea2ad | [] | no_license | johanlindberg/clips | a9d00aaa0295c21bd1b182856867d8433a979822 | c23c558819ebf54651b241c7acade5c433e0c781 | refs/heads/master | 2021-01-19T12:08:55.993518 | 2013-07-07T11:37:57 | 2013-07-07T11:37:57 | 11,181,538 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 308 | tst | fctquery.tst | (unwatch all)
(clear)
(load fctquery.clp)
(dribble-on "fctquery.out")
(batch "fctquery.bat")
(dribble-off)
(clear)
(open "fctquery.rsl" fctquery "w")
(load "compline.clp")
(printout fctquery "fctquery.clp differences are as follows:" crlf)
(compare-files fctquery.exp fctquery.out fctquery)
(close fctquery)
|
5ccc1edf7e2942e1951ed64957b0b81e25367ec5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3864/CH9/EX9.1/Ex9_1.sce | aaad4d9c69c58aade7eb3397856147ddacf01bb4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 402 | sce | Ex9_1.sce | clear
//
//
//Initilization of Variables
L=5000 //mm //Length of strut
dell=10 //mm //Deflection
W=10 //N //Load
//Calculations
//Central Deflection of a simply supported beam with central concentrated load is
//dell=W*L**3*(48*E*I)**-1
//Let E*I=X
X=W*L**3*(48*dell)**-1 //mm
//Euler's Load
//Let Euler's Load be P
P=%pi**2*X*(L**2)**-1
//Result
printf("\n Critical Load of Bar is %0.2f N",P)
|
9273b77710932abf96e63617f389da75f0386fb1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1757/CH6/EX6.18/EX6_18.sce | 33bba91dd379544fd98a76b7d364483dd018e019 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 792 | sce | EX6_18.sce | //Example6.18 // To determine the output voltage of integrator
clc;
clear;
close;
Vin = 1 ;
R = 150*10^3 ;// ohm
C = 1*10^-9 ; // F
// the output voltage of an integrator is given as
//Vo = (fc/f)*Vin ;
//fc = 1/(2*%pi*R*C);
//Vo = (1/(2*%pi*R*C*f))*Vin;
//for the frequency f = 10 Hz the output is
f = 10 ; // Hz
Vo = (1/(2*%pi*R*C*f))*Vin;
disp('for the frequency f = 10 Hz the output is = '+string(Vo)+ ' V ');
//for the frequency f = 1000 Hz the output is
f = 1000 ; // Hz
Vo = (1/(2*%pi*R*C*f))*Vin;
disp('for the frequency f = 1000 Hz the output is = '+string(Vo)+ ' V ');
//for the frequency f = 10000 Hz the output is
f = 10000 ; // Hz
Vo = (1/(2*%pi*R*C*f))*Vin;
disp('for the frequency f = 10000 Hz the output is = '+string(Vo)+ ' V ');
|
1d48819d9e7ebd96b61e1b2275baa20c9f6fda06 | 449d555969bfd7befe906877abab098c6e63a0e8 | /226/CH14/EX14.7/example7_sce.sce | e5f86d889385d04923f4a366db4f8ae8d44b891a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 209 | sce | example7_sce.sce | //chapter 14
//example 14.7
//page 607
printf("\n")
printf("given")
R2=50*10^3;R3=2.2*10^3;C2=8.2*10^-6;Rl=600;
disp("voltage gain ")
Acl=(R3+R2)/R3
disp("lower cuttoff frequency ")
f=1/(2*3.14*C2*Rl) |
8f0869b664afb0a5cb2f5369eb4b9a28c78eef76 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1913/CH2/EX2.9/ex9.sce | 5147d756048f2efa0d3909854970da603f607583 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 640 | sce | ex9.sce | clc
clear
//Input data
p1=170;//Initial pressure of the fluid in kPa
p2=400;//Final pressure of the fluid in kPa
v1=0.03;//Initial volume in m^3
v2=0.06;//Final volume in m^3
//Calculations
U=3.15*[(p2*v2)-(p1*v1)];//The change in internal energy of the fluid in kJ
A=[1 v1
1 v2] //Coefficient matrix
B=[p1
p2] //Constant matrix
X=inv(A)*B;//Variable matrix
W=[X(1)*(v2-v1)]+[X(2)*((v2^2-v1^2)/2)];//The work done during the process in kJ
Q=U+W;//The heat transfer in kJ
//Output
printf('(a)The direction and magnitude of work W = %3.2f kJ \n (b)The direction and magnitude of heat transfer Q = %3.2f kJ ',W,Q)
|
c192ef04eaa4ec763cd880981562864ecebc1236 | fa328598047d2361d64c8f8e0360039a1c2c26a2 | /test_suite_2/test_cases/test_suite_2/case_5.tst | a83eca8d1a46253dc5cc084e6512869fe3149ae9 | [] | no_license | TheSoftwareEngineeringAdventureLine/ProgramTesterStage3 | 0a623d8114db142a9f7f92c99e698e66c969bf2a | e864b3f1c29a312c224611d9827ca16ed0393578 | refs/heads/master | 2021-01-21T18:57:52.815967 | 2014-05-01T23:40:24 | 2014-05-01T23:40:24 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 12 | tst | case_5.tst | 10.5
$
20.5
|
973a291d6ab0c6e1699b6e91a08b60fd7c5f2c76 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2510/CH18/EX18.18/Ex18_18.sce | 3ba48e148c24b6c72b2d09f8ec66d1d334e845bb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,078 | sce | Ex18_18.sce | //Variable declaration:
m1 = 144206 //Mass flow rate of flue gas (lb/h)
cp = 0.3 //Average flue gas heat capacity (Btu/lb. F)
T1 = 2050 //Initial temperature of gas ( F)
T2 = 560 //Final temperature of gas ( F)
T3 = 70 //Ambient air temperature ( F)
//Calculation:
Q = m1*cp*(T1-T2) //Duty rate (Btu/h)
//From appendix:
cpa = 0.243 //Average ambient air heat capacity 70 F (Btu/lb. F)
MW = 29 //Molecular weight of air at 70 F
Q5 = round(Q*10**-5)/10**-5
ma = Q5/(cpa*(T2-T3)) //Mass of air required (lb/h)
m2 = round(ma)/MW //Moles of air required (lb mol/h)
m3 = round(ma)*13.32 //Volume of air required (ft^3/h)
ma = round(ma*10**-2)/10**-2
m2 = round(m2*10**-1)/10**-1
m3 = round(m3*10**-3)/10**-3
//Result:
printf("The mass of air required is : %f lb/h .",ma)
printf("The moles of air required is : %f lb mol/h .",m2)
printf("The volume of air required is : %f ft^3/h .",m3)
|
55e969bf9716d6df3146ab801ad8bfc5138bfaaa | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/CONT/ATWM1_Working_Memory_MEG_MF93WRV_Session1/ATWM1_Working_Memory_MEG_Nonsalient_Cued_Run1.sce | 6deba37dc02f61de868c3abaf8eb3a9fcd313cf8 | [] | no_license | atwm1/Presentation | 65c674180f731f050aad33beefffb9ba0caa6688 | 9732a004ca091b184b670c56c55f538ff6600c08 | refs/heads/master | 2020-04-15T14:04:41.900640 | 2020-02-14T16:10:11 | 2020-02-14T16:10:11 | 56,771,016 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 49,600 | sce | ATWM1_Working_Memory_MEG_Nonsalient_Cued_Run1.sce | # ATWM1 MEG Experiment
scenario = "ATWM1_Working_Memory_MEG_salient_cued_run1";
#scenario_type = fMRI; # Fuer Scanner
#scenario_type = fMRI_emulation; # Zum Testen
scenario_type = trials; # for MEG
#scan_period = 2000; # TR
#pulses_per_scan = 1;
#pulse_code = 1;
pulse_width=6;
default_monitor_sounds = false;
active_buttons = 2;
response_matching = simple_matching;
button_codes = 10, 20;
default_font_size = 28;
default_font = "Arial";
default_background_color = 0 ,0 ,0 ;
write_codes=true; # for MEG only
begin;
#Picture definitions
box { height = 300; width = 300; color = 0, 0, 0;} frame1;
box { height = 290; width = 290; color = 255, 255, 255;} frame2;
box { height = 30; width = 4; color = 0, 0, 0;} fix1;
box { height = 4; width = 30; color = 0, 0, 0;} fix2;
box { height = 30; width = 4; color = 255, 0, 0;} fix3;
box { height = 4; width = 30; color = 255, 0, 0;} fix4;
box { height = 290; width = 290; color = 128, 128, 128;} background;
TEMPLATE "StimuliDeclaration.tem" {};
trial {
sound sound_incorrect;
time = 0;
duration = 1;
} wrong;
trial {
sound sound_correct;
time = 0;
duration = 1;
} right;
trial {
sound sound_no_response;
time = 0;
duration = 1;
} miss;
# Start of experiment (MEG only) - sync with CTF software
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
} expStart;
time = 0;
duration = 1000;
code = "ExpStart";
port_code = 80;
};
# baselinePre (at the beginning of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
}default;
time = 0;
duration = 10000;
#mri_pulse = 1;
code = "BaselinePre";
port_code = 91;
};
TEMPLATE "ATWM1_Working_Memory_MEG.tem" {
trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4;
43 61 292 292 399 125 1742 2992 1942 fixation_cross gabor_121 gabor_179 gabor_100 gabor_032 gabor_121_alt gabor_179_alt gabor_100 gabor_032 "1_1_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_1950_gabor_patch_orientation_121_179_100_032_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_150_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_1_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_150_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2192 2992 2242 fixation_cross gabor_098 gabor_178 gabor_056 gabor_123 gabor_098 gabor_178 gabor_056_alt gabor_123_alt "1_2_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2250_gabor_patch_orientation_098_178_056_123_target_position_1_2_retrieval_position_2" gabor_circ gabor_178_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_2_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_178_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2042 2992 2142 fixation_cross gabor_087 gabor_138 gabor_104 gabor_169 gabor_087 gabor_138_alt gabor_104_alt gabor_169 "1_3_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2150_gabor_patch_orientation_087_138_104_169_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_169_framed blank blank blank blank fixation_cross_target_position_1_4 "1_3_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_169_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1942 2992 2542 fixation_cross gabor_016 gabor_077 gabor_037 gabor_094 gabor_016_alt gabor_077 gabor_037_alt gabor_094 "1_4_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2550_gabor_patch_orientation_016_077_037_094_target_position_2_4_retrieval_position_2" gabor_circ gabor_122_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_4_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_122_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1792 2992 2192 fixation_cross gabor_131 gabor_001 gabor_167 gabor_048 gabor_131 gabor_001 gabor_167_alt gabor_048_alt "1_5_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2200_gabor_patch_orientation_131_001_167_048_target_position_1_2_retrieval_position_1" gabor_083_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_5_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_083_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2192 2992 1892 fixation_cross gabor_110 gabor_060 gabor_002 gabor_166 gabor_110_alt gabor_060_alt gabor_002 gabor_166 "1_6_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_1900_gabor_patch_orientation_110_060_002_166_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_139_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_6_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_139_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 64 292 292 399 125 2092 2992 2192 fixation_cross gabor_062 gabor_044 gabor_023 gabor_105 gabor_062_alt gabor_044_alt gabor_023 gabor_105 "1_7_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2100_3000_2200_gabor_patch_orientation_062_044_023_105_target_position_3_4_retrieval_position_2" gabor_circ gabor_044_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_7_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_044_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1942 2992 2092 fixation_cross gabor_113 gabor_030 gabor_098 gabor_008 gabor_113_alt gabor_030_alt gabor_098 gabor_008 "1_8_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2100_gabor_patch_orientation_113_030_098_008_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_008_framed blank blank blank blank fixation_cross_target_position_3_4 "1_8_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_008_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2142 2992 2492 fixation_cross gabor_149 gabor_042 gabor_009 gabor_116 gabor_149 gabor_042_alt gabor_009 gabor_116_alt "1_9_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2500_gabor_patch_orientation_149_042_009_116_target_position_1_3_retrieval_position_1" gabor_149_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_9_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_149_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1792 2992 2042 fixation_cross gabor_060 gabor_093 gabor_040 gabor_123 gabor_060_alt gabor_093_alt gabor_040 gabor_123 "1_10_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2050_gabor_patch_orientation_060_093_040_123_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_171_framed blank blank blank blank fixation_cross_target_position_3_4 "1_10_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_171_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2092 2992 2192 fixation_cross gabor_082 gabor_143 gabor_108 gabor_125 gabor_082_alt gabor_143_alt gabor_108 gabor_125 "1_11_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2200_gabor_patch_orientation_082_143_108_125_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_059_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_11_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_059_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2192 2992 1942 fixation_cross gabor_033 gabor_076 gabor_154 gabor_018 gabor_033 gabor_076_alt gabor_154 gabor_018_alt "1_12_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_1950_gabor_patch_orientation_033_076_154_018_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_154_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_12_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_154_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 63 292 292 399 125 1742 2992 1992 fixation_cross gabor_045 gabor_074 gabor_091 gabor_109 gabor_045 gabor_074_alt gabor_091_alt gabor_109 "1_13_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1750_3000_2000_gabor_patch_orientation_045_074_091_109_target_position_1_4_retrieval_position_2" gabor_circ gabor_029_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_13_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_029_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2042 2992 2242 fixation_cross gabor_067 gabor_052 gabor_139 gabor_174 gabor_067 gabor_052_alt gabor_139 gabor_174_alt "1_14_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2250_gabor_patch_orientation_067_052_139_174_target_position_1_3_retrieval_position_1" gabor_112_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_14_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_112_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1992 2992 2192 fixation_cross gabor_162 gabor_040 gabor_104 gabor_128 gabor_162 gabor_040_alt gabor_104 gabor_128_alt "1_15_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2200_gabor_patch_orientation_162_040_104_128_target_position_1_3_retrieval_position_1" gabor_162_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_15_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_162_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1942 2992 2292 fixation_cross gabor_124 gabor_006 gabor_042 gabor_170 gabor_124_alt gabor_006 gabor_042 gabor_170_alt "1_16_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2300_gabor_patch_orientation_124_006_042_170_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_042_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_16_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_042_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1792 2992 2592 fixation_cross gabor_073 gabor_003 gabor_021 gabor_051 gabor_073_alt gabor_003 gabor_021 gabor_051_alt "1_17_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2600_gabor_patch_orientation_073_003_021_051_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_161_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_17_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_161_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 63 292 292 399 125 1842 2992 2442 fixation_cross gabor_052 gabor_073 gabor_121 gabor_158 gabor_052_alt gabor_073 gabor_121 gabor_158_alt "1_18_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1850_3000_2450_gabor_patch_orientation_052_073_121_158_target_position_2_3_retrieval_position_1" gabor_100_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_18_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_100_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1792 2992 2142 fixation_cross gabor_036 gabor_058 gabor_090 gabor_163 gabor_036_alt gabor_058_alt gabor_090 gabor_163 "1_19_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2150_gabor_patch_orientation_036_058_090_163_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_116_framed blank blank blank blank fixation_cross_target_position_3_4 "1_19_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_116_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2092 2992 2392 fixation_cross gabor_130 gabor_113 gabor_146 gabor_096 gabor_130 gabor_113_alt gabor_146_alt gabor_096 "1_20_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2400_gabor_patch_orientation_130_113_146_096_target_position_1_4_retrieval_position_1" gabor_130_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_20_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_130_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2242 2992 1892 fixation_cross gabor_132 gabor_173 gabor_002 gabor_116 gabor_132_alt gabor_173 gabor_002 gabor_116_alt "1_21_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_1900_gabor_patch_orientation_132_173_002_116_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_048_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_21_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_048_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 63 292 292 399 125 1742 2992 2292 fixation_cross gabor_136 gabor_031 gabor_052 gabor_072 gabor_136_alt gabor_031_alt gabor_052 gabor_072 "1_22_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1750_3000_2300_gabor_patch_orientation_136_031_052_072_target_position_3_4_retrieval_position_1" gabor_090_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_22_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_090_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2092 2992 2442 fixation_cross gabor_034 gabor_177 gabor_066 gabor_090 gabor_034 gabor_177_alt gabor_066 gabor_090_alt "1_23_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2450_gabor_patch_orientation_034_177_066_090_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_066_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_23_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_066_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1842 2992 2442 fixation_cross gabor_101 gabor_162 gabor_073 gabor_011 gabor_101_alt gabor_162 gabor_073 gabor_011_alt "1_24_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2450_gabor_patch_orientation_101_162_073_011_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_073_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_24_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_073_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1892 2992 2092 fixation_cross gabor_137 gabor_006 gabor_158 gabor_081 gabor_137_alt gabor_006 gabor_158_alt gabor_081 "1_25_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2100_gabor_patch_orientation_137_006_158_081_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_031_framed blank blank blank blank fixation_cross_target_position_2_4 "1_25_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_031_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 64 292 292 399 125 1842 2992 2392 fixation_cross gabor_067 gabor_123 gabor_157 gabor_141 gabor_067 gabor_123_alt gabor_157 gabor_141_alt "1_26_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1850_3000_2400_gabor_patch_orientation_067_123_157_141_target_position_1_3_retrieval_position_2" gabor_circ gabor_123_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_26_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_123_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2042 2992 2592 fixation_cross gabor_006 gabor_158 gabor_140 gabor_122 gabor_006_alt gabor_158 gabor_140_alt gabor_122 "1_27_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2600_gabor_patch_orientation_006_158_140_122_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_122_framed blank blank blank blank fixation_cross_target_position_2_4 "1_27_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_122_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2242 2992 2442 fixation_cross gabor_012 gabor_088 gabor_137 gabor_167 gabor_012 gabor_088 gabor_137_alt gabor_167_alt "1_28_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2450_gabor_patch_orientation_012_088_137_167_target_position_1_2_retrieval_position_1" gabor_058_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_28_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_058_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2042 2992 2342 fixation_cross gabor_037 gabor_124 gabor_096 gabor_015 gabor_037 gabor_124 gabor_096_alt gabor_015_alt "1_29_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2350_gabor_patch_orientation_037_124_096_015_target_position_1_2_retrieval_position_1" gabor_037_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_29_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_037_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 64 292 292 399 125 1742 2992 1992 fixation_cross gabor_056 gabor_006 gabor_166 gabor_135 gabor_056_alt gabor_006 gabor_166 gabor_135_alt "1_30_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1750_3000_2000_gabor_patch_orientation_056_006_166_135_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_135_framed blank blank blank blank fixation_cross_target_position_2_3 "1_30_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_135_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1992 2992 2092 fixation_cross gabor_092 gabor_179 gabor_152 gabor_028 gabor_092 gabor_179_alt gabor_152 gabor_028_alt "1_31_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2100_gabor_patch_orientation_092_179_152_028_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_152_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_31_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_152_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1992 2992 2242 fixation_cross gabor_013 gabor_168 gabor_099 gabor_143 gabor_013 gabor_168_alt gabor_099 gabor_143_alt "1_32_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2250_gabor_patch_orientation_013_168_099_143_target_position_1_3_retrieval_position_1" gabor_013_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_32_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_013_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1742 2992 2342 fixation_cross gabor_098 gabor_041 gabor_128 gabor_162 gabor_098_alt gabor_041 gabor_128 gabor_162_alt "1_33_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2350_gabor_patch_orientation_098_041_128_162_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_128_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_33_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_128_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2192 2992 2542 fixation_cross gabor_120 gabor_003 gabor_154 gabor_175 gabor_120_alt gabor_003 gabor_154 gabor_175_alt "1_34_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2550_gabor_patch_orientation_120_003_154_175_target_position_2_3_retrieval_position_2" gabor_circ gabor_003_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_34_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_003_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2242 2992 1942 fixation_cross gabor_131 gabor_014 gabor_065 gabor_103 gabor_131_alt gabor_014 gabor_065_alt gabor_103 "1_35_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_1950_gabor_patch_orientation_131_014_065_103_target_position_2_4_retrieval_position_2" gabor_circ gabor_014_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_35_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_014_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 64 292 292 399 125 1842 2992 2192 fixation_cross gabor_133 gabor_110 gabor_177 gabor_048 gabor_133_alt gabor_110 gabor_177 gabor_048_alt "1_36_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1850_3000_2200_gabor_patch_orientation_133_110_177_048_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_048_framed blank blank blank blank fixation_cross_target_position_2_3 "1_36_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_048_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1842 2992 2042 fixation_cross gabor_019 gabor_107 gabor_075 gabor_144 gabor_019_alt gabor_107 gabor_075 gabor_144_alt "1_37_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2050_gabor_patch_orientation_019_107_075_144_target_position_2_3_retrieval_position_2" gabor_circ gabor_057_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_37_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_057_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1892 2992 1942 fixation_cross gabor_176 gabor_024 gabor_129 gabor_060 gabor_176 gabor_024 gabor_129_alt gabor_060_alt "1_38_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_1950_gabor_patch_orientation_176_024_129_060_target_position_1_2_retrieval_position_1" gabor_041_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_38_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_041_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1792 2992 2142 fixation_cross gabor_045 gabor_170 gabor_155 gabor_119 gabor_045 gabor_170_alt gabor_155_alt gabor_119 "1_39_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2150_gabor_patch_orientation_045_170_155_119_target_position_1_4_retrieval_position_1" gabor_045_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_39_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_045_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1992 2992 2092 fixation_cross gabor_123 gabor_033 gabor_168 gabor_055 gabor_123 gabor_033_alt gabor_168 gabor_055_alt "1_40_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2100_gabor_patch_orientation_123_033_168_055_target_position_1_3_retrieval_position_1" gabor_078_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_40_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_078_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 63 292 292 399 125 1792 2992 2542 fixation_cross gabor_134 gabor_115 gabor_073 gabor_090 gabor_134 gabor_115_alt gabor_073_alt gabor_090 "1_41_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1800_3000_2550_gabor_patch_orientation_134_115_073_090_target_position_1_4_retrieval_position_2" gabor_circ gabor_161_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_41_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_161_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1842 2992 2042 fixation_cross gabor_047 gabor_176 gabor_127 gabor_152 gabor_047_alt gabor_176 gabor_127_alt gabor_152 "1_42_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2050_gabor_patch_orientation_047_176_127_152_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_152_framed blank blank blank blank fixation_cross_target_position_2_4 "1_42_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_152_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1892 2992 2242 fixation_cross gabor_089 gabor_031 gabor_162 gabor_005 gabor_089 gabor_031 gabor_162_alt gabor_005_alt "1_43_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2250_gabor_patch_orientation_089_031_162_005_target_position_1_2_retrieval_position_1" gabor_137_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_43_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_137_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2242 2992 1942 fixation_cross gabor_089 gabor_123 gabor_006 gabor_148 gabor_089_alt gabor_123 gabor_006 gabor_148_alt "1_44_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_1950_gabor_patch_orientation_089_123_006_148_target_position_2_3_retrieval_position_2" gabor_circ gabor_073_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_44_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_073_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1892 2992 1892 fixation_cross gabor_075 gabor_127 gabor_046 gabor_015 gabor_075 gabor_127_alt gabor_046 gabor_015_alt "1_45_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_1900_gabor_patch_orientation_075_127_046_015_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_046_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_45_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_046_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1792 2992 2492 fixation_cross gabor_074 gabor_053 gabor_005 gabor_036 gabor_074 gabor_053_alt gabor_005_alt gabor_036 "1_46_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2500_gabor_patch_orientation_074_053_005_036_target_position_1_4_retrieval_position_1" gabor_074_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_46_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_074_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 64 292 292 399 125 1892 2992 2342 fixation_cross gabor_157 gabor_128 gabor_096 gabor_076 gabor_157 gabor_128 gabor_096_alt gabor_076_alt "1_47_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1900_3000_2350_gabor_patch_orientation_157_128_096_076_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_096_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_47_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_096_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1942 2992 2392 fixation_cross gabor_085 gabor_108 gabor_044 gabor_161 gabor_085 gabor_108_alt gabor_044_alt gabor_161 "1_48_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2400_gabor_patch_orientation_085_108_044_161_target_position_1_4_retrieval_position_1" gabor_134_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_48_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_134_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1992 2992 1992 fixation_cross gabor_090 gabor_123 gabor_036 gabor_013 gabor_090_alt gabor_123_alt gabor_036 gabor_013 "1_49_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2000_gabor_patch_orientation_090_123_036_013_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_013_framed blank blank blank blank fixation_cross_target_position_3_4 "1_49_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_013_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2092 2992 2292 fixation_cross gabor_137 gabor_097 gabor_178 gabor_007 gabor_137 gabor_097 gabor_178_alt gabor_007_alt "1_50_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2300_gabor_patch_orientation_137_097_178_007_target_position_1_2_retrieval_position_2" gabor_circ gabor_051_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_50_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_051_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 63 292 292 399 125 1842 2992 2342 fixation_cross gabor_017 gabor_107 gabor_036 gabor_141 gabor_017_alt gabor_107 gabor_036_alt gabor_141 "1_51_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1850_3000_2350_gabor_patch_orientation_017_107_036_141_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_173_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_51_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_173_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1942 2992 2142 fixation_cross gabor_038 gabor_146 gabor_064 gabor_115 gabor_038_alt gabor_146 gabor_064 gabor_115_alt "1_52_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2150_gabor_patch_orientation_038_146_064_115_target_position_2_3_retrieval_position_2" gabor_circ gabor_006_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_52_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_006_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1742 2992 2592 fixation_cross gabor_124 gabor_061 gabor_016 gabor_175 gabor_124_alt gabor_061 gabor_016 gabor_175_alt "1_53_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2600_gabor_patch_orientation_124_061_016_175_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_016_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_53_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_016_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1892 2992 2042 fixation_cross gabor_018 gabor_170 gabor_126 gabor_053 gabor_018_alt gabor_170 gabor_126_alt gabor_053 "1_54_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2050_gabor_patch_orientation_018_170_126_053_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_103_framed blank blank blank blank fixation_cross_target_position_2_4 "1_54_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_103_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2142 2992 2042 fixation_cross gabor_116 gabor_057 gabor_007 gabor_163 gabor_116_alt gabor_057_alt gabor_007 gabor_163 "1_55_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2050_gabor_patch_orientation_116_057_007_163_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_028_framed blank blank blank blank fixation_cross_target_position_3_4 "1_55_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_028_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1742 2992 2142 fixation_cross gabor_168 gabor_153 gabor_082 gabor_001 gabor_168_alt gabor_153 gabor_082 gabor_001_alt "1_56_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2150_gabor_patch_orientation_168_153_082_001_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_132_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_56_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_132_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1992 2992 2492 fixation_cross gabor_084 gabor_125 gabor_107 gabor_149 gabor_084_alt gabor_125_alt gabor_107 gabor_149 "1_57_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2500_gabor_patch_orientation_084_125_107_149_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_059_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_57_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_059_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 63 292 292 399 125 2142 2992 2292 fixation_cross gabor_002 gabor_122 gabor_050 gabor_179 gabor_002_alt gabor_122_alt gabor_050 gabor_179 "1_58_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2150_3000_2300_gabor_patch_orientation_002_122_050_179_target_position_3_4_retrieval_position_1" gabor_140_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_58_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_140_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2192 2992 1992 fixation_cross gabor_161 gabor_029 gabor_001 gabor_080 gabor_161_alt gabor_029_alt gabor_001 gabor_080 "1_59_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2000_gabor_patch_orientation_161_029_001_080_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_001_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_59_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2242 2992 2292 fixation_cross gabor_139 gabor_113 gabor_050 gabor_161 gabor_139 gabor_113_alt gabor_050 gabor_161_alt "1_60_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2300_gabor_patch_orientation_139_113_050_161_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_050_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_60_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_050_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 64 292 292 399 125 2092 2992 1992 fixation_cross gabor_179 gabor_043 gabor_094 gabor_121 gabor_179 gabor_043 gabor_094_alt gabor_121_alt "1_61_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2100_3000_2000_gabor_patch_orientation_179_043_094_121_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_121_framed blank blank blank blank fixation_cross_target_position_1_2 "1_61_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_121_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2192 2992 2092 fixation_cross gabor_173 gabor_005 gabor_093 gabor_125 gabor_173 gabor_005_alt gabor_093_alt gabor_125 "1_62_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2100_gabor_patch_orientation_173_005_093_125_target_position_1_4_retrieval_position_1" gabor_173_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_62_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_173_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2142 2992 2242 fixation_cross gabor_157 gabor_046 gabor_067 gabor_178 gabor_157 gabor_046 gabor_067_alt gabor_178_alt "1_63_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2250_gabor_patch_orientation_157_046_067_178_target_position_1_2_retrieval_position_1" gabor_019_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_63_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_019_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 63 292 292 399 125 2142 2992 2342 fixation_cross gabor_134 gabor_150 gabor_165 gabor_117 gabor_134 gabor_150_alt gabor_165 gabor_117_alt "1_64_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2150_3000_2350_gabor_patch_orientation_134_150_165_117_target_position_1_3_retrieval_position_2" gabor_circ gabor_010_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_64_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_010_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2042 2992 2592 fixation_cross gabor_007 gabor_088 gabor_173 gabor_153 gabor_007 gabor_088 gabor_173_alt gabor_153_alt "1_65_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2600_gabor_patch_orientation_007_088_173_153_target_position_1_2_retrieval_position_2" gabor_circ gabor_040_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_65_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_040_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2142 2992 2492 fixation_cross gabor_081 gabor_138 gabor_050 gabor_155 gabor_081_alt gabor_138 gabor_050_alt gabor_155 "1_66_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2500_gabor_patch_orientation_081_138_050_155_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_107_framed blank blank blank blank fixation_cross_target_position_2_4 "1_66_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_107_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2042 2992 1892 fixation_cross gabor_006 gabor_160 gabor_121 gabor_144 gabor_006_alt gabor_160_alt gabor_121 gabor_144 "1_67_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_1900_gabor_patch_orientation_006_160_121_144_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_121_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_67_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_121_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1942 2992 1892 fixation_cross gabor_099 gabor_055 gabor_035 gabor_125 gabor_099_alt gabor_055 gabor_035_alt gabor_125 "1_68_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_1900_gabor_patch_orientation_099_055_035_125_target_position_2_4_retrieval_position_2" gabor_circ gabor_009_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_68_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_009_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 64 292 292 399 125 1892 2992 2542 fixation_cross gabor_094 gabor_056 gabor_162 gabor_121 gabor_094_alt gabor_056 gabor_162 gabor_121_alt "1_69_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1900_3000_2550_gabor_patch_orientation_094_056_162_121_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_121_framed blank blank blank blank fixation_cross_target_position_2_3 "1_69_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_121_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2242 2992 2392 fixation_cross gabor_082 gabor_106 gabor_154 gabor_041 gabor_082 gabor_106_alt gabor_154 gabor_041_alt "1_70_Encoding_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2400_gabor_patch_orientation_082_106_154_041_target_position_1_3_retrieval_position_1" gabor_082_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_70_Retrieval_Working_Memory_MEG_P2_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_082_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
};
# baselinePost (at the end of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
};
time = 0;
duration = 5000;
code = "BaselinePost";
port_code = 92;
}; |
10a45f08cde8af3d40ac980c1481786768db9b6f | 449d555969bfd7befe906877abab098c6e63a0e8 | /848/CH1/EX1.5/Example1_5.sce | d79345b24f4cfcb61e353c4f9710b6a1f273fb92 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 579 | sce | Example1_5.sce | //clear//
//Caption:Capacity of a channel using shannon's formula
//Example1.5
//page 12
clear;
clc;
close;
fLow = 3*(10^6); //low frequency = 3MHz
fHigh = 4*(10^6); //hihg frequency = 4MHz
S_N_dB = 20; //signal-to-noise ratio 20 dB
S_N = 10^(S_N_dB/10);
B = fHigh - fLow;
C = B*log2(1+S_N);
disp(B,'Bandwidth in Hz B = ')
disp(C,'Capacity of a channel in bits/secs C =')
disp(S_N,'signal to noise ratio S/N = ')
//Result
// Bandwidth in Hz B = 1000000.
// Capacity of a channel in bits/secs C = 6658211.5
// signal to noise ratio S/N = 100.
|
6596db43fdd9ad237b6735c002e237f1a388ee8e | 7a7243b631b4f0fb324461821ad8dad7d9534fff | /macros/buildmacros.sce | 1243f1842f4064a758be47ee107e12a8872477ed | [] | no_license | Mishrasubha/napari-toolbox | 1db240ec69cb1c3499fd639c790555716493f54a | e1b8dfe5539d457a57ca20dae2661dab55088368 | refs/heads/master | 2022-10-11T20:49:00.512777 | 2020-06-15T07:14:11 | 2020-06-15T07:14:11 | 272,357,233 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 149 | sce | buildmacros.sce | // This file is released under the 3-clause BSD license. See COPYING-BSD.
tbx_build_macros(TOOLBOX_NAME,get_absolute_file_path("buildmacros.sce"));
|
4f9dedaf956654e1826c62620fd20a514290ab21 | 449d555969bfd7befe906877abab098c6e63a0e8 | /196/CH3/EX3.13/example_3_13.sce | 702c508e7c0167f736d1cfa2f622b5f00248d802 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 402 | sce | example_3_13.sce | //Chapter 3
//Example 3-13
//ProbOnOpampParameters
//Page 58,Figure 3-8
clear;clc;
//Given
Ei=4;//in volts
Rl=10*10^3;//in ohm
I=0;//in ampere
Vout=Ei;//output voltage
Il=Vout/Rl;//load current
I0=I+Il;//output current
printf("\n\n Value of o/p voltage = %.4f V \n\n",Vout)
printf("\n\n Value of load current = %.4f A \n\n",Il)
printf("\n\n Value of output current = %.4f A \n\n",I0) |
c6c554efba9e9d7265289189126acfb0d80605a8 | c01ca78370f3e6b54de574f320475030453d1290 | /iscatastrophic.sci | 9c54f19b9b77953f5df490ceb0099b47ed22c815 | [] | no_license | hegdekartik/FOSSEE_communication_toolbox | d7e14c9c4e8c99915b293438c057bbdea60074bb | 399530b6ef3a9ea95164dc5f7d584ea7a9aa7957 | refs/heads/master | 2023-08-19T02:00:29.665821 | 2018-06-13T11:04:18 | 2018-06-13T11:04:18 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,242 | sci | iscatastrophic.sci | function result = iscatastrophic(trellis)
// This function determines if a convolutional code is catastrophic or not
// Calling Sequence
// RESULT = ISCATASTROPHIC(TRELLIS)
// Description
// RESULT = ISCATASTROPHIC(TRELLIS) returns 1 if the specified
// trellis corresponds to a catastrophic convolutional code, else 0.
// Examples
// eg_1.numInputSymbols = 4;
// eg_1.numOutputSymbols = 4;
// eg_1.numStates = 3;
// eg_1.nextStates = [0 1 2 1;0 1 2 1; 0 1 2 1];
// eg_1.outputs = [0 0 1 1;1 1 2 1; 1 0 1 1];
// res_t_eg_1=istrellis(eg_1)
// res_c_eg_1=iscatastrophic(eg_1)
// if (res_c_eg_1) then
// disp('Example 1 is catastrophic')
// else
// disp('Example 1 is not catastrophic')
// end
// eg_2.numInputSymbols = 2;
// eg_2.numOutputSymbols = 4;
// eg_2.numStates = 2;
// eg_2.nextStates = [0 0; 1 1 ]
// eg_2.outputs = [0 0; 1 1];
// res_t_eg_2=istrellis(eg_2)
// res_c_eg_2=iscatastrophic(eg_2)
// if (res_c_eg_2) then
// disp('Example 2 is catastrophic')
// else
// disp('Example 2 is not catastrophic')
// end
// See also
// istrellis
// Authors
// Pola Lakshmi Priyanka, IIT Bombay//
//*************************************************************************************************************************************//
// Check number of input arguments
[out_a,inp_a]=argn(0)
if inp_a~=1 then
error('comm:iscatastrophic: Invalid number of input arguments')
end
if out_a>1 then
error('comm:iscatastrophic: Invalid number of output arguments')
end
// Check if the input is a valid trellis
if ~istrellis(trellis),
error('comm:iscatastrophic:Input should be a valid trellis structure.');
end
result = 0;
// Find indices of zeros in trellis structure
[r_idx,c_idx] = find(trellis.outputs==0);
//Find Connectivity matrix and check if it is catastrophic
A = zeros(trellis.numStates,trellis.numStates);
for k = 2:length(r_idx)
A(r_idx(k),trellis.nextStates(r_idx(k),c_idx(k))+1)=1;
end
test = A;
for i = 1:trellis.numStates
for j = 1:trellis.numStates
if test(j,j)==1
result = 1
end
end
if result==1
break
else
test = test*A;
end
end
endfunction
|
d4a7f44b4e57d1589dcaaec95db143905169d107 | 1897ae5489b64fae9aa083d62f51254cfe52d26f | /III semester/numerical-algorithms/labovi/LV2/vjezba2.sce | 42b8282b67b6e0f10d6bce0ec57222b158de616d | [
"Unlicense",
"LicenseRef-scancode-proprietary-license"
] | permissive | MasovicHaris/etf-alles | f1bfe40cab2de06a26ceb46bdb5c47de2e6db73e | 0ab1ad83d00fafc69b38266edd875bce08c1fc9e | refs/heads/main | 2022-01-01T18:22:54.072030 | 2021-12-22T09:05:05 | 2021-12-22T09:05:05 | 138,169,714 | 9 | 15 | Unlicense | 2020-03-29T23:36:50 | 2018-06-21T12:50:51 | C++ | UTF-8 | Scilab | false | false | 1,581 | sce | vjezba2.sce | clc
mode(1)
pause
//Zadatak 1
A=[2,1,3;2,6,8;6,8,18]
B=[1;3;5]
pause
//Varijanta 1
X=A\B
pause
//Varijanta 2
X=(A.'*A)\(A.'*B)
pause
//Varijanta 3
X=pinv(A)*B
pause
//Zadatak 2
A=[2,1;-3,1;-1,1]
B=[-1;-1;2]
X=A\B
pause
//Greska
err=abs(A*X-B)
pause
//Zadatak 3
//a)
A=[2,4,6,8;3,5,7,9]
B=[10*ones(2,4)]
pause
A/B
pause
//b)
A=[1 2 3; 4 5 6; 7 8 9]
B=[7 5 6; 2 0 8; 5 7 1]
pause
A/B
pause
//Zadatak 4
C=testmatrix('magi',3)
D=inv(testmatrix('hilb',3))
pause
//Determinanta
det(C)
det(D)
pause
//Rang
rank(C)
rank(D)
pause
//Faktor uslovljenosti
cond(C)
cond(D)
pause
//Zadatak 5
A=[1 -2 -2 -3; 3 -9 0 -9; -1 2 4 7; -3 -6 26 2]
B=[ 2 -1 0; -1 2 -1; 0 -1 2]
pause
//LU faktorizacija
[L, U]=lu(A)
pause
//Faktorizacija Choleskog
R=chol(B)
pause
//provjera
A
L*U
//provjera
B
R*R'
pause
//Zadatak 6
M=[3 4 18 34 0 2 31
1 -3 -7 -6 2 4 26
2 1 7 16 3 -1 27
5 11 43 74 2 0 56
3 -3 -3 6 -1 14 55
-2 0 -4 -12 1 5 6
1 -6 -16 -18 4 4 33]
pause
//RREF
rref(M)
pause
//Zadatak 7
P=[1,1,1;1,2,3;1,3,6]
pause
//QR faktorizacija
[Q,R]=qr(P)
pause
//Provjera
P
Q*R
pause
//Zadatak 8
A=[1,0,1;-1,-2,0;0,1,-1]
pause
//a) Predefinisana funkcija
X=spec(A)
pause
//b) QR algoritam
AA=A;
[Q,R]= qr(AA); AA=R*Q
pause
[Q,R]= qr(AA); AA=R*Q
[Q,R]= qr(AA); AA=R*Q
[Q,R]= qr(AA); AA=R*Q
[Q,R]= qr(AA); AA=R*Q
[Q,R]= qr(AA); AA=R*Q
[Q,R]= qr(AA); AA=R*Q
[Q,R]= qr(AA); AA=R*Q
[Q,R]= qr(AA); AA=R*Q
[Q,R]= qr(AA); AA=R*Q
pause
//Provjera sopstvenih vrijednosti
X
AA
pause
//c)SVD
[U,S,V]=svd(A)
pause
//Singularne vrijednosti
S
pause
//Provjera SVD dekompozicije
A
U*S*V.'
|
6aea245e82b14cc74e04372d06f9001faa5100bc | e0124ace5e8cdd9581e74c4e29f58b56f7f97611 | /3899/CH9/EX9.4/Ex9_4.sci | 0fb21e9b56d9bfe77190a95a2628209947550c8b | [] | no_license | psinalkar1988/Scilab-TBC-Uploads-1 | 159b750ddf97aad1119598b124c8ea6508966e40 | ae4c2ff8cbc3acc5033a9904425bc362472e09a3 | refs/heads/master | 2021-09-25T22:44:08.781062 | 2018-10-26T06:57:45 | 2018-10-26T06:57:45 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 54 | sci | Ex9_4.sci | NF=4;
n=[0:NF-1]';
x=8*sind(180*n/2);
X=fft(x)/NF
|
18bf39a8f5a34b7f298dc952e174d06a54fed591 | b29e9715ab76b6f89609c32edd36f81a0dcf6a39 | /ketpic2escifiles6/CameracoordCurve.sci | 310ac166d930d95cc610971271941c76fce0487b | [] | no_license | ketpic/ketcindy-scilab-support | e1646488aa840f86c198818ea518c24a66b71f81 | 3df21192d25809ce980cd036a5ef9f97b53aa918 | refs/heads/master | 2021-05-11T11:40:49.725978 | 2018-01-16T14:02:21 | 2018-01-16T14:02:21 | 117,643,554 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 676 | sci | CameracoordCurve.sci | // 08.08.14
// 08.10.16
// 09.09.25
function Out=CameracoordCurve(Curve)
global FocusPoint EyePoint;
Out=[]; // 09.09.25
for J=1:size(Curve,1)
P=Curve(J,:);
Tmp=P-FocusPoint;
X1=Tmp(1); Y1=Tmp(2); Z1=Tmp(3);
Tmp=EyePoint-FocusPoint;
E1=Tmp(1); F1=Tmp(2); G1=Tmp(3);
Ca=E1/sqrt(E1^2+F1^2);
Sa=F1/sqrt(E1^2+F1^2);
X2=X1*Ca+Y1*Sa; Y2=-X1*Sa+Y1*Ca; Z2=Z1;
E2=E1*Ca+F1*Sa; F2=-E1*Sa+F1*Ca; G2=G1;
Cb=E2/sqrt(E2^2+G2^2);
Sb=G2/sqrt(E2^2+G2^2);
X3=X2*Cb+Z2*Sb; Y3=Y2; Z3=-X2*Sb+Z2*Cb;
E3=E2*Cb+G2*Sb; F3=F2; G3=-E2*Sb+G2*Cb;
Xz=X3;
Yz=E3/(E3-X3)*Y3;
Zz=E3/(E3-X3)*Z3;
Out=[Out;Yz,Zz,Xz];
end;
endfunction
|
e36e6629f624722e421236f517c8e5722e8f64db | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/tweet/bow/bow.19_12.tst | 47dc2e2d05af5d24908036926574be4fd1dc965d | [] | 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 | 24,927 | tst | bow.19_12.tst | 19 35:0.3333333333333333 55:1.0 76:0.2 80:0.3333333333333333 87:0.07142857142857142 140:1.0 238:1.0 246:0.5 262:0.5 304:0.5 398:0.16666666666666666 493:0.3333333333333333 537:1.0 781:0.3333333333333333 849:0.25 1072:1.0 1379:1.0 2711:1.0
19 6:0.5 10:0.1111111111111111 28:0.125 35:0.16666666666666666 52:0.5 60:0.02564102564102564 76:0.4 457:0.09090909090909091 849:0.25 946:1.0 2020:1.0 2040:0.5 4121:1.0 4587:1.0
19 4:1.0 10:0.1111111111111111 15:0.034482758620689655 26:0.14285714285714285 28:0.125 30:2.0 53:1.0 55:2.0 60:0.05128205128205128 76:0.2 87:0.07142857142857142 129:1.0 218:0.5 262:0.5 348:0.14285714285714285 490:1.0 568:0.14285714285714285 692:0.3333333333333333 882:1.0 1563:0.3333333333333333 1717:1.0 1850:1.0 2102:1.0 5092:1.0
19 13:0.07692307692307693 15:0.034482758620689655 28:0.125 144:0.3333333333333333 357:0.25 492:0.25 568:0.14285714285714285 665:0.3333333333333333 702:0.5 946:1.0 1163:1.0 1241:1.0 1787:1.0 3030:1.0
19 14:0.5 15:0.034482758620689655 37:0.3333333333333333 42:0.2 52:0.5 55:2.0 78:1.0 96:0.14285714285714285 158:1.0 253:0.3333333333333333 348:0.14285714285714285 439:1.0 611:0.3333333333333333 1239:1.0 1347:1.0 1427:0.5 1959:1.0 2092:1.0 2120:1.0 3583:1.0 4742:1.0
19 5:0.1 14:0.5 35:0.16666666666666666 37:0.16666666666666666 357:0.25 648:1.0 849:0.25 2040:0.5 2915:0.5 3011:1.0 4142:1.0
19 1:0.1111111111111111 14:0.5 28:0.125 37:0.16666666666666666 55:1.0 60:0.01282051282051282 166:1.0 184:1.0 409:0.07692307692307693 899:1.0 942:1.0 1309:1.0 2276:1.0 4081:1.0 4483:1.0 4617:1.0 4741:1.0 4849:1.0
19 55:1.0 60:0.01282051282051282 86:0.037037037037037035 87:0.07142857142857142 160:1.0 277:0.5 318:0.5 359:0.25 398:0.16666666666666666 487:1.0 603:0.25 632:0.5 1194:0.16666666666666666 2045:1.0 2347:1.0 4506:1.0 4794:1.0
19 14:1.0 28:0.125 37:0.16666666666666666 52:0.5 57:0.5 135:1.0 160:1.0 183:0.5 253:0.3333333333333333 254:0.0625 260:0.5 265:0.4 570:1.0 657:1.0 759:1.0 942:1.0 1103:1.0 1239:2.0 1285:1.0 1689:1.0 1898:1.0 2601:1.0 3324:1.0 4121:1.0 4320:1.0
19 35:0.16666666666666666 86:0.037037037037037035 87:0.14285714285714285 359:0.25 603:0.5 1266:1.0 1272:1.0 1541:0.25 4614:1.0
19 4:1.0 10:0.1111111111111111 17:1.0 55:5.0 60:0.01282051282051282 80:0.16666666666666666 87:0.07142857142857142 96:0.14285714285714285 180:0.5 260:0.5 262:0.5 286:1.0 294:0.3333333333333333 347:0.5 348:0.14285714285714285 443:1.0 492:0.25 608:1.0 632:0.5 639:0.5 691:1.0 787:1.0 1365:1.0 1386:1.0 1680:1.0 1954:1.0 4367:1.0
19 5:0.1 55:1.0 60:0.01282051282051282 160:1.0 173:1.0 262:0.5 348:0.14285714285714285 359:0.25 457:0.09090909090909091 477:1.0 632:0.5 1563:0.3333333333333333 2069:0.6666666666666666 3747:1.0 3969:1.0 4066:1.0
19 4:1.0 15:0.034482758620689655 30:1.0 55:3.0 60:0.01282051282051282 87:0.07142857142857142 129:1.0 149:0.3333333333333333 154:1.0 166:1.0 175:0.5 199:0.3333333333333333 348:0.2857142857142857 468:1.0 493:0.3333333333333333 603:0.25 633:1.0 961:0.3333333333333333 1036:1.0 1103:1.0 2263:1.0 2348:1.0 2823:1.0 5208:1.0
19 1:0.1111111111111111 13:0.07692307692307693 15:0.034482758620689655 26:0.2857142857142857 37:0.16666666666666666 52:0.5 55:2.0 60:0.02564102564102564 62:1.0 87:0.07142857142857142 253:0.3333333333333333 256:0.3333333333333333 297:1.0 468:1.0 505:0.6666666666666666 586:1.0 595:1.0 630:1.0 946:1.0 1103:1.0 1388:1.0 1541:0.25 1990:1.0 2456:1.0 2555:1.0 3159:1.0 4797:1.0 5429:1.0
19 1:0.1111111111111111 10:0.1111111111111111 14:0.5 15:0.034482758620689655 37:0.16666666666666666 57:0.5 60:0.01282051282051282 87:0.07142857142857142 89:0.5 180:0.5 253:0.3333333333333333 297:1.0 348:0.2857142857142857 660:0.16666666666666666 664:1.0 801:1.0 925:1.0 961:0.3333333333333333 1096:1.0 1115:1.0 1126:1.0 1193:0.2 1194:0.16666666666666666 1787:1.0 2077:1.0 2425:0.3333333333333333 2511:1.0 3581:1.0 3918:1.0 4264:1.0 4333:1.0 5249:1.0
19 14:0.5 15:0.034482758620689655 37:0.3333333333333333 60:0.038461538461538464 61:2.0 76:0.2 87:0.07142857142857142 96:0.14285714285714285 148:1.0 149:0.3333333333333333 151:0.5 154:1.0 246:0.5 254:0.0625 256:0.6666666666666666 286:1.0 439:1.0 635:1.0 653:0.3333333333333333 717:1.0 735:1.0 781:0.3333333333333333 946:1.0 950:1.0 1099:0.5 1194:0.16666666666666666 4511:1.0 4794:1.0 4849:1.0
19 1:0.1111111111111111 4:1.0 15:0.034482758620689655 28:0.125 35:0.16666666666666666 36:1.0 39:0.5 42:0.2 57:0.5 86:0.037037037037037035 87:0.07142857142857142 96:0.2857142857142857 228:1.0 254:0.0625 293:1.0 603:0.25 809:1.0 946:1.0 965:1.0 1069:1.0 1283:1.0 1670:0.2 4506:1.0 4589:1.0
19 4:2.0 14:0.5 15:0.13793103448275862 28:0.125 37:0.16666666666666666 52:0.5 55:2.0 60:0.038461538461538464 76:0.2 87:0.07142857142857142 152:0.5 179:1.0 180:0.5 293:1.0 297:1.0 343:1.0 348:0.14285714285714285 359:0.25 439:1.0 452:1.0 755:1.0 759:1.0 795:1.0 831:1.0 882:1.0 1386:1.0 1417:1.0 2044:2.0 2285:1.0 2959:1.0 3463:1.0
19 28:0.125 35:0.3333333333333333 37:0.3333333333333333 52:0.5 60:0.01282051282051282 78:1.0 87:0.21428571428571427 102:0.5 148:1.0 154:1.0 173:1.0 238:1.0 253:0.3333333333333333 258:1.0 293:1.0 297:1.0 348:0.14285714285714285 359:0.25 381:0.25 603:0.25 628:1.0 681:1.0 860:0.5 889:0.3333333333333333 937:1.0 946:1.0 987:2.0 1305:1.0 1388:1.0 2052:1.0 4629:1.0 5065:1.0
19 13:0.07692307692307693 18:1.0 35:0.16666666666666666 57:0.5 87:0.07142857142857142 131:1.0 135:1.0 138:1.0 140:1.0 164:1.0 254:0.125 259:1.0 442:1.0 653:0.3333333333333333 1037:1.0 1285:1.0 4128:1.0 4155:1.0 4264:1.0 4617:1.0 4707:1.0 5350:1.0 5640:1.0
19 13:0.07692307692307693 14:0.5 28:0.125 60:0.01282051282051282 87:0.07142857142857142 154:1.0 457:0.09090909090909091 692:0.3333333333333333 1269:1.0 1717:1.0 4066:1.0
19 1:0.2222222222222222 4:2.0 5:0.1 14:1.0 15:0.034482758620689655 26:0.14285714285714285 39:0.25 52:0.5 55:1.0 60:0.02564102564102564 76:0.2 160:1.0 258:1.0 266:0.5 297:1.0 398:0.16666666666666666 409:0.07692307692307693 457:0.09090909090909091 603:0.25 660:0.16666666666666666 946:1.0 1386:2.0 2511:1.0 2512:1.0 3438:0.5 4121:1.0 4624:0.5 4645:1.0
19 4:1.0 10:0.1111111111111111 15:0.06896551724137931 35:0.16666666666666666 37:0.16666666666666666 39:0.25 60:0.05128205128205128 78:1.0 87:0.21428571428571427 129:2.0 265:0.2 486:1.0 568:0.14285714285714285 1036:1.0 1328:1.0 1989:1.0 2044:1.0 3358:1.0 4676:1.0 4716:1.0
19 1:0.1111111111111111 55:1.0 57:0.5 60:0.02564102564102564 76:0.2 80:0.16666666666666666 87:0.14285714285714285 149:0.3333333333333333 200:1.0 246:0.5 262:0.5 265:0.2 946:1.0 2010:1.0 2045:1.0 4649:1.0 4716:1.0 5770:1.0
19 1:0.1111111111111111 10:0.1111111111111111 55:1.0 60:0.02564102564102564 78:1.0 86:0.037037037037037035 132:0.5 200:1.0 250:1.0 263:0.2 348:0.2857142857142857 364:1.0 568:0.14285714285714285 809:1.0 1388:1.0 2865:1.0 4376:1.0
19 10:0.1111111111111111 42:0.2 57:0.5 60:0.01282051282051282 254:0.0625 568:0.14285714285714285 653:0.3333333333333333 1099:0.5 1193:0.2 1194:0.16666666666666666 1285:1.0 5413:1.0
19 1:0.1111111111111111 14:0.5 28:0.125 37:0.16666666666666666 270:0.5 293:1.0 318:0.5 603:0.25 2896:0.5 5320:1.0
19 4:1.0 10:0.1111111111111111 37:0.16666666666666666 55:1.0 60:0.01282051282051282 86:0.037037037037037035 87:0.14285714285714285 89:0.5 96:0.14285714285714285 204:0.3333333333333333 215:0.3333333333333333 352:0.5 505:0.3333333333333333 546:0.1111111111111111 568:0.14285714285714285 942:1.0 946:1.0 1999:1.0 3135:1.0 3837:1.0
19 28:0.125 60:0.02564102564102564 87:0.07142857142857142 505:0.3333333333333333 546:0.1111111111111111 1670:0.2 1898:1.0 2399:1.0 4716:1.0
19 13:0.15384615384615385 30:1.0 79:0.16666666666666666 87:0.07142857142857142 141:1.0 259:1.0 366:1.0 568:0.14285714285714285 844:1.0 860:0.5 2067:1.0 3094:1.0 3700:1.0
19 1:0.2222222222222222 4:1.0 6:0.5 15:0.034482758620689655 29:0.5 37:0.16666666666666666 75:1.0 76:0.2 80:0.3333333333333333 258:2.0 297:2.0 369:1.0 381:0.25 452:1.0 632:0.5 787:1.0 1514:1.0 1563:0.3333333333333333 2163:1.0 3712:0.5
19 14:0.5 15:0.034482758620689655 19:0.5 37:0.3333333333333333 60:0.01282051282051282 64:0.5 87:0.07142857142857142 243:1.0 293:1.0 318:0.5 360:1.0 381:0.25 409:0.07692307692307693 489:0.25 546:0.1111111111111111 603:0.25 787:1.0 867:1.0 1322:1.0 1772:1.0 2600:1.0 2658:1.0 4066:1.0 4117:1.0 4211:1.0 4815:1.0
19 4:1.0 10:0.1111111111111111 13:0.07692307692307693 15:0.06896551724137931 30:1.0 52:0.5 55:1.0 60:0.038461538461538464 76:0.2 132:0.5 148:1.0 160:1.0 293:1.0 348:0.2857142857142857 383:1.0 457:0.09090909090909091 493:0.3333333333333333 505:0.3333333333333333 521:1.0 660:0.16666666666666666 795:1.0 965:1.0 1213:1.0 1595:1.0 1847:1.0 2463:1.0 4500:1.0 5020:0.5
19 4:3.0 15:0.10344827586206896 39:0.25 53:1.0 74:1.0 96:0.14285714285714285 129:1.0 158:1.0 159:0.1111111111111111 278:1.0 318:0.5 579:1.0 898:0.16666666666666666 1563:0.3333333333333333 2083:1.0 2412:0.5 3094:1.0
19 4:1.0 10:0.1111111111111111 52:0.5 55:2.0 60:0.02564102564102564 86:0.037037037037037035 95:1.0 129:1.0 184:1.0 265:0.4 300:1.0 336:0.5 348:0.2857142857142857 442:1.0 639:0.5 653:0.3333333333333333 736:1.0 805:0.3333333333333333 1926:1.0 3343:1.0 4376:1.0 4979:1.0 5208:1.0
19 1:0.1111111111111111 15:0.06896551724137931 30:1.0 35:0.16666666666666666 60:0.01282051282051282 76:0.2 78:1.0 166:1.0 180:0.5 300:1.0 628:1.0 635:1.0 716:1.0 1098:0.25 1427:0.5 2024:1.0 2277:1.0 4863:1.0
19 1:0.2222222222222222 4:1.0 10:0.1111111111111111 13:0.07692307692307693 37:0.16666666666666666 39:0.25 55:1.0 60:0.01282051282051282 96:0.14285714285714285 207:1.0 256:0.3333333333333333 262:0.5 348:0.14285714285714285 361:1.0 443:1.0 493:0.3333333333333333 497:1.0 632:0.5 946:1.0 1013:1.0 1126:1.0 1595:1.0 1930:1.0 2049:1.0 2052:1.0 2054:1.0 2271:1.0 3351:1.0 3387:1.0 4155:1.0 5232:1.0 5503:1.0
19 15:0.034482758620689655 35:0.3333333333333333 37:0.16666666666666666 60:0.02564102564102564 76:0.2 87:0.07142857142857142 96:0.14285714285714285 135:1.0 151:0.5 238:1.0 253:0.3333333333333333 348:0.14285714285714285 486:1.0 568:0.14285714285714285 603:0.25 692:0.3333333333333333 736:1.0 2040:0.5 2207:1.0 4380:1.0 4577:0.25 5252:1.0
19 4:1.0 5:0.1 10:0.1111111111111111 13:0.15384615384615385 14:1.0 26:0.14285714285714285 28:0.25 35:0.16666666666666666 39:0.5 52:1.0 53:1.0 55:1.0 60:0.02564102564102564 78:1.0 87:0.07142857142857142 152:0.5 172:1.0 256:0.3333333333333333 258:1.0 265:0.2 293:1.0 297:1.0 348:0.2857142857142857 359:0.25 438:0.5 457:0.18181818181818182 603:0.25 660:0.16666666666666666 668:1.0 809:2.0 1018:1.0 1099:0.5 1310:0.5 1448:1.0 1544:1.0 1545:1.0 2276:1.0 2658:1.0 3476:1.0 4038:1.0 4076:0.5 4227:2.0 4624:0.5
19 4:1.0 15:0.06896551724137931 35:0.16666666666666666 37:0.16666666666666666 55:3.0 60:0.02564102564102564 86:0.037037037037037035 87:0.21428571428571427 96:0.2857142857142857 253:0.3333333333333333 256:0.3333333333333333 265:0.2 352:0.5 366:1.0 543:0.5 554:1.0 621:0.5 645:0.5 781:0.3333333333333333 946:1.0 1076:1.0 1638:1.0 2285:1.0
19 1:0.1111111111111111 28:0.125 37:0.16666666666666666 60:0.02564102564102564 355:0.5 398:0.16666666666666666 570:1.0 704:2.0 946:1.0 963:1.0 1013:1.0 2220:1.0 3469:1.0 4227:1.0 4736:1.0 5007:1.0
19 5:0.1 14:0.5 15:0.034482758620689655 29:0.5 35:0.16666666666666666 87:0.14285714285714285 151:0.5 154:1.0 158:1.0 398:0.16666666666666666 568:0.14285714285714285 610:1.0 789:0.07692307692307693 898:0.16666666666666666 4292:1.0 4450:1.0 4671:1.0
19 1:0.2222222222222222 34:0.5 60:0.01282051282051282 87:0.07142857142857142 130:1.0 160:1.0 166:1.0 788:1.0 1120:1.0 1194:0.16666666666666666 1359:0.5 1890:1.0 2347:1.0 4065:0.5 4128:1.0
19 10:0.3333333333333333 14:0.5 30:2.0 35:0.16666666666666666 55:1.0 60:0.02564102564102564 87:0.21428571428571427 129:1.0 132:0.5 148:1.0 163:1.0 199:0.6666666666666666 244:0.5 246:0.5 606:0.3333333333333333 635:1.0 889:0.3333333333333333 1036:1.0 1094:0.25 1400:1.0 2047:1.0 4291:1.0
19 35:0.16666666666666666 60:0.01282051282051282 62:1.0 80:0.16666666666666666 215:0.3333333333333333 246:0.5 660:0.16666666666666666 1285:1.0 2643:1.0 4632:0.5 5069:1.0
19 10:0.1111111111111111 28:0.125 39:0.25 42:0.2 60:0.02564102564102564 61:1.0 78:1.0 87:0.07142857142857142 184:1.0 297:1.0 348:0.14285714285714285 457:0.09090909090909091 603:0.25 1126:1.0 1266:1.0 1541:0.25 1595:1.0 3201:1.0 4076:0.5 4329:1.0 4976:1.0
19 5:0.1 10:0.1111111111111111 52:0.5 87:0.07142857142857142 160:1.0 183:0.5 199:0.3333333333333333 570:1.0 653:0.3333333333333333 1402:1.0 2276:1.0 4128:1.0
19 1:0.1111111111111111 10:0.1111111111111111 13:0.07692307692307693 14:0.5 15:0.034482758620689655 53:1.0 60:0.02564102564102564 76:0.2 87:0.07142857142857142 98:1.0 253:0.3333333333333333 263:0.2 457:0.09090909090909091 603:0.25 704:1.0 1103:1.0 2359:1.0 3040:1.0 3583:1.0 4062:1.0 4192:1.0
19 4:3.0 10:0.2222222222222222 15:0.10344827586206896 28:0.125 35:0.16666666666666666 55:1.0 60:0.01282051282051282 76:0.2 80:0.16666666666666666 87:0.07142857142857142 102:0.5 154:2.0 218:0.5 259:1.0 301:0.5 946:1.0 995:1.0 1310:0.5 1388:1.0 2088:1.0 2089:1.0 2546:1.0 3113:1.0 4066:1.0 4140:1.0
19 1:0.1111111111111111 14:0.5 18:1.0 26:0.14285714285714285 28:0.125 37:0.16666666666666666 55:1.0 60:0.02564102564102564 64:0.5 76:0.2 112:1.0 217:1.0 218:0.5 253:0.3333333333333333 443:1.0 704:1.0 946:1.0 1208:1.0 1388:1.0 1735:1.0 2062:1.0 2277:1.0 4785:1.0 5350:1.0
19 1:0.1111111111111111 15:0.034482758620689655 60:0.01282051282051282 62:1.0 76:0.2 87:0.07142857142857142 163:1.0 166:1.0 238:1.0 246:0.5 256:0.3333333333333333 546:0.2222222222222222 568:0.14285714285714285 594:0.5 781:0.6666666666666666 1120:1.0 1541:0.25 2092:1.0 2674:1.0 3013:1.0 4733:1.0
19 10:0.1111111111111111 14:0.5 15:0.034482758620689655 55:1.0 87:0.07142857142857142 1126:1.0 2425:0.3333333333333333 2915:0.5 3639:1.0 4582:1.0
19 10:0.1111111111111111 15:0.034482758620689655 22:1.0 36:1.0 37:0.3333333333333333 60:0.038461538461538464 87:0.21428571428571427 94:0.5 96:0.14285714285714285 149:0.3333333333333333 398:0.16666666666666666 632:0.5 738:1.0 898:0.16666666666666666 1126:1.0 1563:0.3333333333333333 3914:1.0 4712:1.0 4739:1.0 5376:1.0 5387:1.0
19 4:2.0 13:0.07692307692307693 15:0.06896551724137931 86:0.037037037037037035 87:0.07142857142857142 254:0.0625 363:1.0 409:0.07692307692307693 603:0.25 1508:1.0 1778:1.0 1959:1.0 5376:1.0
19 15:0.06896551724137931 39:0.25 60:0.02564102564102564 293:1.0 359:0.25 603:0.25 653:0.3333333333333333 831:1.0 1066:1.0 1098:0.25 1213:1.0 1309:1.0 1542:1.0 4294:1.0
19 14:0.5 15:0.034482758620689655 52:0.5 55:1.0 215:0.3333333333333333 409:0.07692307692307693 546:0.1111111111111111 568:0.14285714285714285 646:1.0 648:1.0 860:0.5 925:1.0 1037:1.0 1066:1.0 1508:1.0 1747:1.0 1898:1.0 2276:1.0 2319:1.0 3944:1.0 4311:1.0
19 10:0.1111111111111111 42:0.2 60:0.01282051282051282 144:0.3333333333333333 357:0.25 381:0.25 1563:0.3333333333333333
19 4:1.0 12:1.0 15:0.034482758620689655 39:0.25 55:1.0 74:1.0 78:1.0 135:1.0 152:0.5 199:0.3333333333333333 251:1.0 293:1.0 355:0.5 409:0.07692307692307693 468:1.0 486:1.0 492:0.25 595:1.0 603:0.25 639:0.5 751:1.0 1066:1.0 1541:0.25 1604:1.0 2263:1.0 2347:1.0 3013:1.0 3147:1.0 4173:1.0
19 1:0.1111111111111111 4:1.0 55:1.0 57:0.5 87:0.07142857142857142 102:0.5 129:1.0 293:1.0 306:0.5 381:0.25 608:1.0 660:0.16666666666666666 898:0.16666666666666666 1532:1.0 2029:1.0 2086:1.0 2537:1.0
19 1:0.1111111111111111 86:0.037037037037037035 87:0.14285714285714285 204:0.3333333333333333 543:0.5 548:1.0 568:0.14285714285714285 603:0.25 1294:1.0 1427:0.5 1756:1.0 1959:1.0 4065:0.5 5047:1.0
19 10:0.1111111111111111 39:0.5 55:3.0 60:0.01282051282051282 78:1.0 244:0.5 457:0.09090909090909091 653:0.3333333333333333 809:2.0 1579:1.0 2254:1.0 3145:1.0 4338:0.3333333333333333 4608:1.0
19 53:1.0 60:0.038461538461538464 61:1.0 86:0.037037037037037035 87:0.07142857142857142 355:0.5 439:1.0 603:0.25 639:0.5 660:0.16666666666666666 942:1.0 1595:1.0 2268:1.0 2285:1.0 3906:1.0 4042:1.0 4896:1.0 5150:1.0 5417:1.0
19 4:1.0 15:0.034482758620689655 28:0.25 30:1.0 36:1.0 37:0.16666666666666666 55:1.0 76:0.2 86:0.037037037037037035 87:0.14285714285714285 96:0.2857142857142857 253:0.3333333333333333 293:1.0 505:0.3333333333333333 639:0.5 1329:1.0 1653:1.0 1959:1.0 1999:1.0 2476:1.0 2496:1.0 4169:0.5 4320:1.0 4641:1.0 5554:1.0
19 15:0.034482758620689655 28:0.125 30:1.0 60:0.01282051282051282 76:0.4 87:0.07142857142857142 149:0.3333333333333333 253:0.3333333333333333 258:1.0 318:0.5 357:0.25 398:0.16666666666666666 570:1.0 809:2.0 953:1.0 1269:1.0 2343:0.5 2791:0.5 4092:1.0 4169:0.5 4227:1.0 4306:0.3333333333333333 4333:1.0 5406:1.0
19 1:0.1111111111111111 10:0.1111111111111111 13:0.07692307692307693 14:0.5 28:0.25 35:0.16666666666666666 60:0.01282051282051282 76:0.4 96:0.14285714285714285 129:1.0 140:1.0 151:0.5 160:1.0 265:0.4 490:1.0 492:0.25 548:1.0 574:1.0 657:1.0 788:1.0 1145:1.0 1193:0.2 1194:0.16666666666666666 1717:1.0 2209:1.0 3996:1.0 4029:1.0 4727:1.0 4750:1.0 4927:1.0
19 10:0.1111111111111111 14:0.5 15:0.034482758620689655 28:0.125 37:0.16666666666666666 55:2.0 60:0.01282051282051282 76:0.4 86:0.037037037037037035 87:0.14285714285714285 96:0.14285714285714285 129:1.0 141:1.0 256:0.3333333333333333 352:0.5 548:1.0 568:0.14285714285714285 648:1.0 1051:0.5 1082:1.0 1094:0.25 1229:0.3333333333333333 1386:1.0 2044:1.0 4066:1.0
19 1:0.1111111111111111 55:1.0 244:0.5 253:0.6666666666666666 262:0.5 294:0.3333333333333333 409:0.07692307692307693 632:0.5 970:1.0 1563:0.3333333333333333 2225:1.0 3837:1.0
19 1:0.1111111111111111 28:0.125 39:0.25 55:4.0 60:0.038461538461538464 84:1.0 87:0.07142857142857142 96:0.14285714285714285 129:1.0 140:1.0 256:0.3333333333333333 286:1.0 336:0.5 471:1.0 774:1.0 946:2.0 970:1.0 1561:1.0 1595:1.0 1680:1.0 1735:1.0 1809:1.0 1959:1.0 2233:0.5 2335:1.0 2395:1.0 2915:0.5 3918:1.0 4312:1.0 4941:1.0
19 5:0.1 14:0.5 15:0.034482758620689655 42:0.2 76:0.2 789:0.07692307692307693 4624:0.5 4716:1.0 5737:1.0
19 13:0.07692307692307693 15:0.06896551724137931 55:1.0 60:0.01282051282051282 149:0.3333333333333333 180:0.5 217:1.0 218:0.5 253:0.3333333333333333 301:0.5 632:1.0 1098:0.25 1563:0.3333333333333333 3944:1.0 4262:1.0 4286:1.0
19 4:2.0 15:0.13793103448275862 19:0.5 26:0.14285714285714285 28:0.125 37:0.16666666666666666 55:1.0 60:0.02564102564102564 76:0.2 86:0.037037037037037035 437:0.3333333333333333 571:1.0 638:1.0 702:0.5 755:1.0 946:1.0 1359:0.5 1842:1.0 2069:0.3333333333333333 2796:1.0 4081:1.0 4430:1.0 4628:1.0 4761:1.0 4767:1.0 4857:1.0 5159:1.0
19 6:0.5 10:0.1111111111111111 14:0.5 37:0.16666666666666666 39:0.25 55:1.0 60:0.02564102564102564 80:0.16666666666666666 217:1.0 254:0.0625 318:0.5 594:0.5 603:0.5 1735:1.0 4767:1.0
19 6:0.5 10:0.1111111111111111 42:0.2 60:0.01282051282051282 78:1.0 80:0.16666666666666666 86:0.07407407407407407 87:0.14285714285714285 129:1.0 135:1.0 154:1.0 246:0.5 603:0.5 860:0.5 1959:2.0 2285:1.0 4066:1.0 4472:1.0 4480:0.3333333333333333 4849:1.0
19 10:0.1111111111111111 15:0.034482758620689655 35:0.16666666666666666 52:0.5 60:0.02564102564102564 78:2.0 87:0.07142857142857142 96:0.14285714285714285 199:0.3333333333333333 246:0.5 263:0.2 635:1.0 1066:1.0 1563:0.3333333333333333 4055:1.0 4576:0.5
19 28:0.125 55:1.0 60:0.02564102564102564 76:0.2 78:1.0 304:0.5 490:1.0 568:0.14285714285714285 735:1.0 923:1.0 965:2.0 1735:1.0 2144:1.0 3159:1.0 4748:1.0 4880:1.0
19 28:0.25 37:0.3333333333333333 52:0.5 57:0.5 60:0.02564102564102564 79:0.16666666666666666 149:0.3333333333333333 348:0.2857142857142857 457:0.09090909090909091 546:0.1111111111111111 573:0.5 603:0.25 639:0.5 664:1.0 942:1.0 946:1.0 1521:1.0 1670:0.2 1735:1.0 1995:1.0 3343:1.0 4513:0.3333333333333333
19 15:0.034482758620689655 28:0.125 30:1.0 52:0.5 55:2.0 60:0.01282051282051282 76:0.2 96:0.14285714285714285 154:1.0 263:0.2 336:0.5 348:0.2857142857142857 438:0.5 452:1.0 457:0.09090909090909091 505:0.3333333333333333 942:1.0 1066:1.0 1342:1.0 2915:0.5 3078:1.0 4035:1.0 4234:1.0 4417:1.0 4759:1.0
19 1:0.2222222222222222 30:2.0 35:0.16666666666666666 60:0.01282051282051282 76:0.2 87:0.07142857142857142 144:0.3333333333333333 253:0.3333333333333333 348:0.14285714285714285 603:0.25 692:0.3333333333333333 1531:1.0 1922:1.0 1983:1.0 2063:1.0 4292:1.0 4424:1.0
19 15:0.034482758620689655 19:0.5 60:0.01282051282051282 80:0.16666666666666666 87:0.14285714285714285 96:0.14285714285714285 359:0.25 546:0.1111111111111111 579:1.0 1065:1.0 1094:0.25 1563:0.3333333333333333 1922:1.0 2343:0.5 3921:1.0 5015:1.0
19 14:0.5 15:0.034482758620689655 76:0.2 96:0.14285714285714285 154:1.0 160:1.0 214:0.2 348:0.14285714285714285 603:0.25 610:1.0 805:0.3333333333333333 899:1.0 1267:1.0 1544:1.0 1959:1.0 1983:1.0 4294:1.0 4326:1.0
19 28:0.125 60:0.01282051282051282 87:0.07142857142857142 102:0.5 343:1.0 635:1.0 660:0.16666666666666666 692:0.3333333333333333 3345:1.0 4215:1.0
19 28:0.125 55:1.0 144:0.3333333333333333 253:0.3333333333333333 301:0.5 348:0.14285714285714285 357:0.25 381:0.25 1004:0.5 1388:1.0 3517:1.0 4066:1.0 5078:1.0
19 4:2.0 10:0.1111111111111111 15:0.034482758620689655 26:0.14285714285714285 28:0.125 36:1.0 37:0.3333333333333333 39:0.25 60:0.05128205128205128 75:1.0 135:1.0 166:1.0 238:1.0 253:0.6666666666666666 273:1.0 343:1.0 398:0.16666666666666666 493:0.3333333333333333 635:1.0 692:0.3333333333333333 937:1.0 1094:0.25 1427:0.5 1579:1.0 2395:1.0 2586:1.0 3324:1.0 3474:1.0 3967:1.0 4052:1.0 4140:2.0 4355:1.0 4427:1.0
19 14:0.5 26:0.14285714285714285 28:0.125 55:1.0 86:0.037037037037037035 87:0.21428571428571427 160:1.0 287:1.0 348:0.14285714285714285 457:0.09090909090909091 789:0.07692307692307693 1194:0.16666666666666666 1388:1.0 3614:1.0 3660:1.0 3705:1.0 3914:1.0 5401:1.0
19 14:0.5 37:0.16666666666666666 160:1.0 173:1.0 352:0.5 365:1.0 603:0.25 692:0.3333333333333333 1194:0.16666666666666666 1959:2.0 3240:1.0 5439:1.0
19 14:0.5 37:0.16666666666666666 352:0.5 365:1.0 603:0.25 1959:2.0 4128:1.0 4958:1.0 5439:1.0
19 13:0.07692307692307693 60:0.01282051282051282 180:0.5 304:0.5 348:0.14285714285714285 438:0.5 1407:1.0 2192:1.0 2348:1.0 4480:0.3333333333333333
19 1:0.1111111111111111 4:1.0 10:0.1111111111111111 14:0.5 15:0.034482758620689655 35:0.16666666666666666 39:0.25 60:0.01282051282051282 74:1.0 76:0.2 87:0.07142857142857142 135:1.0 238:1.0 246:0.5 253:0.6666666666666666 277:0.5 603:0.5 678:1.0 849:0.25 1066:1.0 1170:1.0 2395:1.0 4614:1.0
19 28:0.125 30:1.0 88:1.0 96:0.14285714285714285 253:0.3333333333333333 318:0.5 653:0.3333333333333333 1285:1.0 1448:1.0 1458:1.0 4066:1.0 5427:1.0
19 222:2.0 568:0.14285714285714285 660:0.16666666666666666
19 74:1.0 78:1.0 80:0.16666666666666666 87:0.07142857142857142 318:0.5 359:0.25 568:0.14285714285714285 603:0.25 849:0.25 1358:0.5 1563:0.3333333333333333
19 55:1.0 60:0.01282051282051282 78:1.0 80:0.16666666666666666 86:0.037037037037037035 161:0.2 265:0.2 336:0.5 359:0.25 457:0.09090909090909091 543:0.5 731:1.0 929:1.0 946:1.0 1595:1.0 4121:1.0 4376:1.0
19 13:0.07692307692307693 14:0.5 15:0.034482758620689655 28:0.125 29:0.5 42:0.2 52:0.5 55:2.0 60:0.02564102564102564 78:1.0 96:0.14285714285714285 151:0.5 160:1.0 183:0.5 348:0.14285714285714285 409:0.07692307692307693 543:0.5 568:0.2857142857142857 595:1.0 603:0.25 633:1.0 849:0.25 950:1.0 1194:0.16666666666666666 1508:1.0 1638:1.0 1680:1.0 2062:1.0 2347:1.0 3262:1.0 3989:1.0 4201:1.0
19 10:0.1111111111111111 28:0.125 37:0.16666666666666666 60:0.01282051282051282 256:0.3333333333333333 293:1.0 548:1.0 568:0.2857142857142857 649:1.0 1008:1.0 1545:1.0 4096:1.0 4911:1.0 5010:1.0 5367:1.0
19 5:0.1 6:0.5 15:0.034482758620689655 60:0.01282051282051282 64:0.5 79:0.16666666666666666 100:1.0 148:1.0 154:1.0 256:0.6666666666666666 260:0.5 409:0.07692307692307693 493:0.3333333333333333 505:0.3333333333333333 521:2.0 603:0.5 704:1.0 844:1.0 946:1.0 1103:2.0 1319:1.0 1898:1.0 2081:1.0 4071:1.0 4253:1.0 4543:1.0 4569:1.0
19 14:0.5 37:0.16666666666666666 55:1.0 80:0.16666666666666666 87:0.07142857142857142 256:0.6666666666666666 286:1.0 348:0.14285714285714285 457:0.09090909090909091 568:0.14285714285714285 645:0.5 702:0.5 809:1.0 946:1.0 2069:0.3333333333333333 4066:1.0 4193:1.0 4239:1.0 4671:1.0
19 37:0.16666666666666666 148:1.0 297:1.0 327:2.0 946:1.0 1099:0.5 2029:1.0
19 1:0.2222222222222222 4:1.0 13:0.07692307692307693 14:1.0 26:0.14285714285714285 36:1.0 60:0.02564102564102564 87:0.07142857142857142 89:0.5 129:1.0 164:1.0 184:1.0 250:1.0 253:0.3333333333333333 256:0.3333333333333333 297:1.0 352:0.5 361:1.0 409:0.07692307692307693 457:0.18181818181818182 543:0.5 603:0.25 660:0.16666666666666666 805:0.3333333333333333 809:1.0 1569:1.0 1959:1.0 2661:1.0 3583:1.0 4501:1.0 4543:1.0 4781:0.5 5401:1.0
19 13:0.07692307692307693 39:0.25 217:1.0 218:0.5 2212:1.0 4239:1.0 5212:1.0
19 35:0.16666666666666666 39:0.75 52:0.5 57:0.5 60:0.01282051282051282 74:1.0 79:0.16666666666666666 80:0.16666666666666666 87:0.14285714285714285 96:0.14285714285714285 173:1.0 184:1.0 246:0.5 256:0.3333333333333333 297:1.0 300:1.0 348:0.14285714285714285 603:0.25 653:0.3333333333333333 692:0.3333333333333333 741:1.0 765:1.0 867:1.0 898:0.16666666666666666 1094:0.25 1285:1.0 2409:1.0 3091:1.0 4046:1.0 4155:1.0 4173:1.0
|
e5506795cf1d5207fea43c9da9c2aa6b98c0764e | 66106821c3fd692db68c20ab2934f0ce400c0890 | /test/interpreter/mov01.tst | d949b6cfafe242b9dc0b4d83b048e85c5764fea4 | [] | no_license | aurelf/avrora | 491023f63005b5b61e0a0d088b2f07e152f3a154 | c270f2598c4a340981ac4a53e7bd6813e6384546 | refs/heads/master | 2021-01-19T05:39:01.927906 | 2008-01-27T22:03:56 | 2008-01-27T22:03:56 | 4,779,104 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 205 | tst | mov01.tst | ; @Harness: simulator
; @Format: atmel
; @Arch: avr
; @Purpose: "Test the MOV (move between registers) instruction"
; @Result: "r15 = 21, r16 = 21"
start:
ldi r16, 21
mov r15, r16
end:
break
|
d184a8cb051b53683ff03fb8a3b10f513bb29459 | 573df9bfca39973c9bf2fa36f6e5af2643d7771e | /scilab/sistemas lineares/ex_sol_e_inv_LDLt.sce | 0f91dce88a506ac13856d982a33e0a06d85497f5 | [] | no_license | DCC-CN/152cn | ef92c691edabe211b1a552dbb963f9fd9ceec94a | 4fe0b02f961f37935a1335b5eac22d81400fa609 | refs/heads/master | 2016-08-13T01:34:17.966430 | 2015-04-07T07:31:58 | 2015-04-07T07:31:58 | 44,502,526 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,108 | sce | ex_sol_e_inv_LDLt.sce | //
clc;
clear ;
getd('../lib');
function ex_sol_e_inv_LDLt(label, A, b)
Ident = eye(A)
precisao = 10 // casas decimais
n = size(A, 1)
formato = '%4.0f'
formato_x = '%7.2f'
formato_i = '%9.4f'
mprintf("\n###################################################################################\n");
titulo = sprintf("Exemplo %s do sistema Ax = b", label);
exibe_sistema(titulo, 'x', formato, A, b)
if det(A) == 0 then
mprintf("Matriz singular.")
return;
end
// ========================================================================
// Decomposição LU sem pivotação parcial
// ========================================================================
try
[L, D] = decLDLt(A)
if ~isequal(L*D*L', A) then
error('Falha na decomposição de LDLt!')
end
solve_LDLt_dp(A, b, L, D, precisao, formato, formato_x)
inv_LDLt_dp(A, L, D, precisao, formato, formato_i)
catch
mprintf("\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n");
mprintf(lasterror())
mprintf("\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n");
end
endfunction
//------------------------------------------
// exemplo 1 de sistema linerar (pág. 74)
// Matriz de coeficientes
A = [ 9, 6, -3, 3;
6, 20, 2, 22;
-3, 2, 6, 2;
3, 22, 2, 28];
// Vetor de termos_independentes
b = [ 12; 64; 4; 82 ];
ex_sol_e_inv_LDLt('1', A, b)
//------------------------------------------
// exemplo 2 de sistema linerar (pág. 80)
// Matriz de coeficientes
A = [ 5 -1 2;
-1 8 4;
2 4 10];
// Vetor de termos_independentes
b = [ 21; 10; 50];
ex_sol_e_inv_LDLt('2', A, b)
//------------------------------------------
// exemplo 2 de sistema linerar (pág. 80)
// Matriz de coeficientes
A = [ 1 2 -1 2;
2 5 1 3;
-1 1 26 -1;
2 3 -1 15];
// Vetor de termos_independentes
b = [ 10; 27; 75; 65];
ex_sol_e_inv_LDLt('3', A, b)
//------------------------------------------
// exemplo 4a de sistema linerar (pág. 63)
// Matriz de coeficientes
A = [ 4, -1, 0, -1;
1, -2, 1, 0;
0, 4, -4, 1;
5, 0, 5, -1];
// Vetor de termos_independentes
b = [ 1; -2; -3; 4 ];
try
ex_sol_e_inv_LDLt('4a', A, b)
catch
mprintf('\n%s\n',lasterror());
end
//------------------------------------------
// exemplo 4b de sistema linerar (pág. 63)
// Matriz de coeficientes
A = [ 4, 1, 0, 5;
1, -2, 4, 0;
0, 4, -4, 5;
5, 0, 5, -1];
// Vetor de termos_independentes
b = [ 1; -2; -3; 4 ];
try
ex_sol_e_inv_LDLt('4b', A, b)
catch
mprintf('\n%s\n',lasterror());
end
//------------------------------------------
// exemplo 5 de sistema linerar
// Matriz de coeficientes
A = [ 1, 2, 3, 4;
2, 4, 1, 3;
3, 1, 4, 2;
4, 3, 2, 5];
// Vetor de termos_independentes
b = [ 1; 2; 3; 4 ];
try
ex_sol_e_inv_LDLt('5', A, b)
catch
mprintf('\n%s\n',lasterror());
end
|
1eca3bef2b2bbb52d830cda9ad049bc2f9aa5cbf | 4b3c8d2302d37ad5981adb6f68fae3db1d9820c8 | /del_Villages.sce | 0bfe423a308524f15f7c2e140617bd2482771032 | [] | no_license | mayank1513/littleBird_RD_ResourceManagementSystem | 002d19579b3b55a314450ec75d2874131741564b | 090d016248164580defc9b4629ba54c9dc362949 | refs/heads/master | 2020-03-15T04:48:31.637752 | 2018-05-03T09:46:53 | 2018-05-03T09:46:53 | 131,970,842 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 678 | sce | del_Villages.sce | blkInd = get('blockList','Value');
vilInd = get('villageList','Value');
if isempty(blkInd)|isempty(vilInd) then
messagebox("Select a block and village first","littleBird");
else
str = get('villageList','String');
btn = messagebox("Are you sure you want to delete " + str(vilInd),'littleBird: Confirmation','passwd',['Yes','No'],"modal");
if btn == 1 & x_dialog("Enter password",'') == passWord
blocks(2)(blkInd)(1) = [blocks(2)(blkInd)(1)(1:vilInd-1), blocks(2)(blkInd)(1)(vilInd+1:$)];
blocks(2)(blkInd)(2)(vilInd) = null();
set(get('villageList'),'String',blocks(2)(blkInd)(1));
set(get('hemletList'),'String','');
end
end
|
6037fba0c9f5a2f339c40dd6bae3d0759eaa6644 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3176/CH2/EX2.7/Ex2_7.sce | 96eb47f12ab74031ccdf74a862b1c9dbf5b2eeb8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,649 | sce | Ex2_7.sce | //Ex2_7
// Image Multiplication for Shadding Correction.
// Version : Scilab 5.4.1
// Operating System : Window-xp, Window-7
//Toolbox: Image Processing Design 8.3.1-1
//Toolbox: SIVP 0.5.3.1-2
//Reference book name : Digital Image Processing
//book author: Rafael C. Gonzalez and Richard E. Woods
clc;
close;
clear;
xdel(winsid())//to close all currently open figure(s).
////////////////// Image Division /////////////////////
gray=imread("Ex2_7.tif");
shade=imread("Ex2_7_1.tif");
gray=im2double(imresize(gray,0.5,'bicubic')); //Resize the Image with Bicubic Interpolation
shade=im2double(imresize(shade,0.5,'bicubic')); //Resize the Image with Bicubic Interpolation
figure,ShowImage(gray,'Gray Image');
title('Original Image');
figure,ShowImage(shade,'Sahde Image');
title('Shading Pattern Image');
[nr nc]=size(gray);
Enhance_image=imdivide(gray,shade);
Enhance_image=mat2gray(Enhance_image);
figure,ShowImage(Enhance_image,'Enhance Image');
title('Enhance Image after Shading Correction');
////////////////// Image Multiplication /////////////////////
gray=imread("Ex2_7_2.tif");
mask=imread("Ex2_7_3.tif");
gray=im2double(imresize(gray,0.5,'bicubic')); //Resize the Image with Bicubic Interpolation
mask=im2double(imresize(mask,0.5,'bicubic')); //Resize the Image with Bicubic Interpolation
figure,ShowImage(gray,'Gray Image');
title('Original Image');
figure,ShowImage(mask,'mask Image');
title('mask Pattern Image(ROI)');
[nr nc]=size(gray);
Enhance_image=immultiply(gray,mask);
Enhance_image=mat2gray(Enhance_image);
figure,ShowImage(Enhance_image,'Enhance Image');
title('ROI Selection');
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.