blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2
values | repo_name stringlengths 6 115 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 21
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 141k 586M ⌀ | star_events_count int64 0 30.4k | fork_events_count int64 0 9.67k | gha_license_id stringclasses 8
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 50
values | src_encoding stringclasses 23
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 1
class | length_bytes int64 5 10.4M | extension stringclasses 29
values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
27b0c529b21faf56ba3c1ac57d79462cab273643 | 7c8f8373b8f5e06d3ebe218c8485afadb95cf70f | /scilab/fibonacci.sci | 9aead034183fe6a5ce5fbf5dbba79902a319566f | [] | no_license | invalidCorgi/polibuda | 432b41e3ebbd169812017f0fd462b59f428b9516 | 4a4cd16efee42e010140bd991fbd5cf034955507 | refs/heads/master | 2021-09-24T11:50:05.097437 | 2018-10-09T11:12:10 | 2018-10-09T11:12:10 | 119,171,250 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 252 | sci | fibonacci.sci | function F = fibonacci(n)
if n<1 then
F=[0]
return
end
if n==1 then
F=[1]
return
end
F=[1 1]
j=3
while(j<=n)
F(1,j)=F(1,j-1)+F(1,j-2)
j=j+1
end
endfunction
|
aaef3dc3c092456375af3f5aae61732612c008a4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2522/CH7/EX7.6/exm7_6.sce | 636d57ab3b55c93bf1d50ed2b837f0a73b7c04de | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 719 | sce | exm7_6.sce | //page no 228
//example no 7.6
// ARITHEMETIC OPERATIONS.
clc;
disp('A-->30H');
disp('2040H-->68H');
disp('2041H-->7FH');
disp('LXI H,2040H'); // loads HL register pair.
disp('H=20H L=40H M=68H');
disp('ADD M');
A=hex2dec(['30']);
M=hex2dec(['68']);
S=A+M; // adds the contents of A and data at memory location 2040H.
s=dec2hex(S);
printf('\n Content of A after addition with 2040H= ');
disp(s);
disp('INX H'); // takes the program to the next memory location.
disp('H=20H L=41H M=7FH');
disp('SUB M');
M=hex2dec(['7F']);
D=S-M; // subtracts the contents of A from the data at memory location 2041H.
d=dec2hex(D);
printf('\n Content of A after subtraction with 2041H= ');
disp(d);
|
38cf3630fbf78cdb03399fd5ec06f7f2ae5e28ac | 449d555969bfd7befe906877abab098c6e63a0e8 | /1844/CH5/EX5.8/8.sce | 066e6c3fc94820485c92ae729c029edf7ef487fc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 130 | sce | 8.sce | clc
TB=180
MB=184
MD=TB-MB
printf('Declination = %f E\n',MD)
TB=360
MB=350+2/6
MD=TB-MB
printf(' Declination = %f E',MD)
|
614e4021fff553e904808d4d1b2b182f2a822a06 | af86eb5dd11a276a153a618491fd2a0af057d237 | /Communication Engineering - Scilab/PCM with Bit depth 4.sce | 356154b8e4de8da841b482fb378c90a0206f9f3e | [] | no_license | gsiddhad/Mathematics | c2b2b78536e0769ea65791128b12aceea3c6f720 | 4bf16c674d84d1498b874c0f3b3d4b31785aae47 | refs/heads/master | 2023-03-06T02:52:46.933057 | 2021-02-20T11:17:58 | 2021-02-20T11:17:58 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,508 | sce | PCM with Bit depth 4.sce | clc;
close all;
clear all;
n=input('Enter n value for n-bit PCM system : ');
n1=input('Enter number of samples in a period : ');
L=2^n;
% % Signal Generation
% x=0:1/100:4*pi;
% y=8*sin(x); % Amplitude Of signal is 8v
% subplot(2,2,1);
% plot(x,y);grid on;
% Sampling Operation
x=0:2*pi/n1:4*pi; % n1 nuber of samples have tobe selected
s=8*sin(x);
subplot(3,1,1);
plot(s);
title('Analog Signal');
ylabel('Amplitude--->');
xlabel('Time--->');
subplot(3,1,2);
stem(s);grid on; title('Sampled Sinal'); ylabel('Amplitude--->'); xlabel('Time--->');
% Quantization Process
vmax=8;
vmin=-vmax;
del=(vmax-vmin)/L;
part=vmin:del:vmax; % level are between vmin and vmax with difference of del
code=vmin-(del/2):del:vmax+(del/2); % Contaion Quantized valuses
[ind,q]=quantiz(s,part,code); % Quantization process
% ind contain index number and q contain quantized values
l1=length(ind);
l2=length(q);
for i=1:l1
if(ind(i)~=0) % To make index as binary decimal so started from 0 to N
ind(i)=ind(i)-1;
end
i=i+1;
end
for i=1:l2
if(q(i)==vmin-(del/2)) % To make quantize value inbetween the levels
q(i)=vmin+(del/2);
end
end
subplot(3,1,3);
stem(q);grid on; % Display the Quantize values
title('Quantized Signal');
ylabel('Amplitude--->');
xlabel('Time--->');
% Encoding Process
figure
code=de2bi(ind,'left-msb'); % Cnvert the decimal to binary
k=1;
for i=1:l1
for j=1:n
coded(k)=code(i,j); % convert code matrix to a coded row vector
j=j+1;
k=k+1;
end
i=i+1;
end
subplot(2,1,1); grid on;
stairs(coded); % Display the encoded signal
axis([0 100 -2 3]); title('Encoded Signal');
ylabel('/Amplitude--->');
xlabel('Time--->');
% Demodulation Of PCM signal
qunt=reshape(coded,n,length(coded)/n);
index=bi2de(qunt','left-msb'); % Getback the index in decimal form
q=del*index+vmin+(del/2); % getback Quantized values
subplot(2,1,2); grid on;
plot(q); % Plot Demodulated signal
title('Demodulated Signal');
ylabel('Amplitude--->');
xlabel('Time--->');
|
be4da61d296dde58fc707a154678778a46e7c97a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1775/CH5/EX5.3/Chapter5_Example3.sce | 1b2174c9cb3c8079c637387ad6d541fb6f7b55a3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 834 | sce | Chapter5_Example3.sce | //Chapter-5, Illustration 3, Page 251
//Title: Air Compressors
//=============================================================================
clc
clear
//INPUT DATA
IP=11;//Indicated power in kW
P1=1;//Pressure at entry in bar
P2=7;//Pressure at exit in bar
n=1.2;//Adiabatic gas constant
Ps=150;//Piston speed in m/s
a=2;//For double acting compressor
r=1.5;//Storke to bore ratio
//CALCULATIONS
x=(n-1)/n;//Ratio
y=3.147/(4*(r^2));//Ratio of volume to the cube of stroke
z=(P1*(10^2)*y*(((P2/P1)^x)-1))/x;//Ratio of workdone to the cube of stroke
L=(sqrt(IP/(z*Ps)))*1000;//Stroke in mm
D=(L/r);//Bore in mm
//OUTPUT
mprintf('Stroke length of cylinder is %3.0f mm \n Bore diameter of cylinder is %3.0f mm',L,D)
//==============================END OF PROGRAM=================================
|
da244bf0deb312c1274a204abfd275bdac57f8cd | d5b4be7d0da3a9d903ec38f474328851d994e48e | /AV_Speech_Study.sce | eaceeee76424df52e49e70e2acbbdd9c824a117c | [
"BSD-3-Clause"
] | permissive | mickcrosse/AV_speech_Presentation_code_EEG | 75d852aaed7a737e1f7e8bafe67f6815d8b99d98 | 856b715237926c9afcd958cb4820457d83db3d43 | refs/heads/master | 2020-04-03T23:13:57.985835 | 2018-10-31T22:18:51 | 2018-10-31T22:18:51 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,436 | sce | AV_Speech_Study.sce | pcl_file = "Incongruent_Speech_Study.pcl";
default_path = "C://Users//TCDUSER//Documents//Experiments//Incongruent Speech Study//Stimuli//";
response_matching = simple_matching;
response_logging = log_active;
active_buttons = 1;
button_codes = 125;
write_codes = true;
pulse_width = 10;
begin;
picture {} default;
picture {
text {
caption = " ";
font_size = 36;
font_color = 122, 122, 122;
} intro_txt;
x = 0; y = 0;
} intro_pic;
picture {
bitmap {
filename = "crosshair.png";
} default_start_pic;
x = 0; y = 0;
} start_pic;
video {
filename = "obama_a_1.avi";
} vid;
picture {
bitmap {
filename = "crosshair.png";
} default_end_pic;
x = 0; y = 0;
} end_pic;
picture {
text {
caption = " ";
font_size = 36;
font_color = 122, 122, 122;
} finish_txt;
x = 0; y = 0;
} finish_pic;
trial {
trial_duration = forever;
trial_type = specific_response;
terminator_button = 1;
picture intro_pic;
} intro_trial;
trial {
picture start_pic;
time = 0;
nothing {};
code = "126";
port_code = 126;
time = 1000;
} start_trial;
trial {
stimulus_event {
video vid;
code = "0,0";
port_code = 0;
time = 1000;
} stim_event;
picture end_pic;
} stim_trial;
trial{
nothing {};
code = "127";
port_code = 127;
time = 2000;
} stop_trial;
trial {
trial_duration = forever;
trial_type = specific_response;
terminator_button = 1;
picture finish_pic;
} finish_trial; |
20bb2680a0ced9207d2895d58a189eac5b300025 | 3c47dba28e5d43bda9b77dca3b741855c25d4802 | /microdaq/demos/data_acquisition/microdaq.dem.gateway.sce | 5f9fdaf6023e4f73873bb41525d7feaa4c358a25 | [
"BSD-3-Clause"
] | permissive | microdaq/Scilab | 78dd3b4a891e39ec20ebc4e9b77572fd12c90947 | ce0baa6e6a1b56347c2fda5583fb1ccdb120afaf | refs/heads/master | 2021-09-29T11:55:21.963637 | 2019-10-18T09:47:29 | 2019-10-18T09:47:29 | 35,049,912 | 6 | 3 | BSD-3-Clause | 2019-10-18T09:47:30 | 2015-05-04T17:48:48 | Scilab | UTF-8 | Scilab | false | false | 999 | sce | microdaq.dem.gateway.sce | // Copyright (c) 2015, Embedded Solutions
// All rights reserved.
// This file is released under the 3-clause BSD license. See COPYING-BSD.
function subdemolist = demo_gateway()
demopath = get_absolute_file_path("microdaq.dem.gateway.sce");
subdemolist = ["Analog input scanning (script)", "ai_scan.dem.sce" ;
"Analog output scanning - periodic (script)", "ao_scan_periodic.dem.sce" ;
"Analog output scanning - stream (script)", "ao_scan_stream.dem.sce" ;
"Analog loop scanning (script)", "aio_scan.dem.sce";
"Signal processing: FFT (script)", "ai_scan_fft.dem.sce" ;
"Analog loop demo (XCOS - external/simulation mode)", "ext_analog_demo.dem.sce" ;
"Write to file (XCOS - external mode)", "to_seq_file.dem.sce" ;
//"Analog loop demo (XCOS - standalone mode)", "standalone_analog_demo.dem.sce" ;
];
subdemolist(:,2) = demopath + subdemolist(:,2);
endfunction
subdemolist = demo_gateway();
clear demo_gateway; // remove demo_gateway on stack
|
e13a42fdaff28e06239870f60a902fffa4a1ae9d | 89828b3675566659bf5daddc18fa5b3f22e93dd6 | /01_Signal_processing/01_Fourier_series_analysis/02_symmetric_triangle_wave/symmetric_triangle_wave.sce | bfd2defb29c886cb81eb8dff5653c30ef6ebeb9c | [] | no_license | EfrenDRF/scilab_DSP | c7671ac11535771bbbf9491150610c1bc2e19304 | 71f015ad0aab2dd84c0d7b5922f7bc9ff31f4743 | refs/heads/master | 2022-11-14T05:32:38.907614 | 2020-06-28T23:29:34 | 2020-06-28T23:29:34 | 272,041,014 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,174 | sce | symmetric_triangle_wave.sce | /*
*
* Author: Efren Del Real Frias
* File_name: symmetric_triangle_wave.sce
* Date: June 13th 2020
* Software tool: scilab 6.0.2
* Description: Displays the graphical representation of trigonometric Fourier
* series.
* Using coefficients have already calculated of triangle wave
* and just using odd harmonic.
*
*/
clc();
clear();
/*------------------------------------------------------------------*/
/*Wave parameters */
/*------------------------------------------------------------------*/
PERIOD = 5
AMPLITUDE = 1
N_HARMONIC = 25 /*Max number of harmonic to analyze from 1 to ...*/
N_MAX_CYCLES = 3 /*Max number of cycles to graph from 1 to ...*/
/*------------------------------------------------------------------*/
/* */
/*------------------------------------------------------------------*/
T = PERIOD;
A = AMPLITUDE
w0 = (2*%pi)/T;
/* Fourier a_0 coefficient */
a0_coefficient = 0;
/* Fourier a_n coefficient */
function [an_coefficient]=fGet_an_coefficient(n_harmonic)
an_coefficient = (8*A)/((%pi*n_harmonic)^2);
endfunction
/* Fourier b_n coefficient*/
// bn_coefficient = 0;
/* Vector time */
t = (-(N_MAX_CYCLES/2):0.01:(N_MAX_CYCLES/2))*T;
/* Vector of coefficients a_n*/
an_vector = zeros(1,N_HARMONIC);
/*Calculates the trigonometric Fourier series-------------------------*/
f_t = (a0_coefficient/2);
for n = 1:N_HARMONIC
if(modulo(n,2)== 1) then
an_vector(1,n) = fGet_an_coefficient(n)
f_t = f_t + an_vector(1,n)*cos(n*w0*t);
end
end
/*Display------------------------------------------------*/
clf();
subplot(2,1,1);
plot(t,f_t,'LineWidth',3)
xtitle('Graphical representation of Fouriel seires','t','f(t)');
subplot(2,1,2);
a=gca();
a.thickness = 3;
plot2d3(an_vector)
xtitle('Graphical representation of Fourier coefficient a_n','n','a[n]');
|
e14178cd7893205dd087db6e0cd9296edea4d48d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2300/CH4/EX4.7.5/Ex4_5.sce | a004b932fa47c639860cef0637a74159ad6de023 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 495 | sce | Ex4_5.sce |
//scilab 5.4.1
//windows 7 operating system
//chapter 4:Metal-Semiconductor Contacts
clc
clear
//given
e=1.6*10^-19//e=charge of an electron in C
V=0.32//V =applied forward bias in V
kB=1.38*10^(-23)//kB=Boltzmann's constant in J/K
T=300//T=Temperature in Kelvin
Js=0.61//Js=reverse saturation current density in A/m^2
J=Js*(exp((e*V)/(kB*T))-1)//J=current density in A/m^2
disp("A/m^2",J,"J=")
A=4*10^-8//A=cross sectional area in m^2
I=(J*A)*10^3//I=current
disp("mA",I,"I=")
|
0d02edf8aebb889e0f77497d7e8e0653d38cc628 | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/rms/rms10.sce | 181965af998a39cb4ef125213bdf8a9c8637fd96 | [] | no_license | deecube/fosseetesting | ce66f691121021fa2f3474497397cded9d57658c | e353f1c03b0c0ef43abf44873e5e477b6adb6c7e | refs/heads/master | 2021-01-20T11:34:43.535019 | 2016-09-27T05:12:48 | 2016-09-27T05:12:48 | 59,456,386 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 55 | sce | rms10.sce | y=[%i 2 4];
Y=rms(y,2);
disp(Y);
//output
// 2.6457513
|
51e788b9d59d399d9b0bb16aed90387c43070c0c | 449d555969bfd7befe906877abab098c6e63a0e8 | /257/CH7/EX7.8/example_7_8.sce | 668ac6dc56b7664ae8cdb3e74912909bd97e3f71 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 204 | sce | example_7_8.sce | q=poly([1 1.105 0.1055 0.0005],'s','coeff');
G=20000/q //gain FACTOR=20000
H=1
y=G*H
p=poly([0 1],'s','coeff');
R=1000/p
Kp=limit(s*y/s,s,0)
Ess=1000/(1+Kp)
Css=1000-Ess
disp(Css," Css = ")
|
7325cba8b0235c7aa570c32a60626aaddc5a60d1 | d4378f69494bc2d6737ffe45bc04a9a7b9cc63fc | /EEG/presentation/ws15_pilot1.sce | b4d4b153322b954f3f607e143e89cd58f01de0da | [
"Apache-2.0"
] | permissive | ws15code/prob-trans | 5bafc45b2afc99ade356f3b42ad08210068e0496 | 57969a8dce8fc29b11227bf3bc9e7ac26071ce63 | refs/heads/master | 2020-06-02T18:00:19.639273 | 2016-11-30T22:12:46 | 2016-11-30T22:12:46 | 31,018,603 | 5 | 2 | null | null | null | null | UTF-8 | Scilab | false | false | 35,016 | sce | ws15_pilot1.sce | # WS15 - EEG pilot 1
# Authors: Giovanni Di Liberto, Trinity College Dublin, Ireland
# Date: 20/02/2015
# Description: This pilot experiment consists in a repeated presentation of isolated syllables,
# randomly picked from a group of 28 syllables. In particular, the syllables are:
# (m,n,f,v,th,dh,sh,zh,p,b,t,d,k,g) x (aa,eh).
# The experiment is divided in 2 parts: slow speed presentation (1) and fast speed (2).
# (1) can be analysed using epoching and average,
# (2) will probably require techniques that deal with the overlapping of neural responses:
# for example, assuming that listening to a syllable elicit a scalp response longer than
# 200 ms, two stimuli presented with a pause shorter than 200ms will cause an overlapping
# in the neural response recorded (the second stimulus is presented before the main neural
# response of the previous one is concluded.
# Goal: To determine which of the two modalities is best for achieving our goals.
#
# 1 speaker, 28 syllables (14 consonants, 2 vowels), 45 minutes (+ breaks) for each part of the experiment.
# Audio file ~300ms length.
# totalTime = (~0.3 s + betweenSylPause) * 28 syllables * repetitions
# First Experiment
# betweenSylPause = ~0.4 s (jitter +- 50 ms), repetitions = 143 (50 trials with 80 syllables), 46.7 minutes + interTrial brakes ~= 60 minutes
# Second Experiment
# betweenSylPause = ~0.1 s (jitter +- 50 ms), repetitions = 250 (50 trials with 140 syllables), 46.7 minutes + interTrial brakes ~= 60 minutes
#
write_codes = true;
pulse_width = 10;
begin;
picture {
box { height = 16; width = 2; color = 122,122,122; };
x = 0; y = 0;
box { height = 2; width = 16; color = 122,122,122; };
x = 0; y = 0;
on_top = true;
} pic_0;
picture {
bitmap {
filename = "crosshair.png";
};
x = 0; y = 0; on_top = true;
} start_pic;
sound {
wavefile {
filename = "";
preload = false;
};
} audio1;
trial {
picture pic_0;
code = "Start";
port_code = 254;
time = 1000;
} start_trial;
trial {
stimulus_event {
nothing {};
code = "TrialNum";
port_code = 1;
time = 300;
};
} code_trial;
trial {
stimulus_event {
sound audio1;
code = "Stim";
port_code = 232;
time = 1500;
} event1;
} stim_trial;
trial {
nothing {};
code = "Stop";
port_code = 255;
time = 1500;
} stop_trial;
picture {
text { caption = "Type the output file name:"; };
x = 0; y = 0;
text { caption = ":"; } textFilename;
x = 0; y = -100;
} picOutFileName;
picture {
text { caption = " "; } textContinue;
x = 0; y = 100;
text { caption = "Press enter to continue..."; } ;
x = 0; y = 0;
text { caption = " "; } textContinueResponse;
x = 0; y = -100;
} picWaitForKey;
# Begin presentation main
begin_pcl;
int stage = 1; # stage 1 or 2 (slow or fast presentation]
# Audio files names
string prefixStim = "s_m102_";
string suffixStim = ".sph.wav";
array<string> audioFiles[] = { "ba","be","da","de","fa","fe","ga","ge","ka","ke","ma","me","na","ne","pa","pe","ta","te","va","ve","xda","xde","xsa","xse","xtxa","xtxe","za","ze" };
# Presentation order (see presentationOrder.m). 4004 and 7000 presentations (28*143, 28*250) respectively, randomly sorted
array<int> presentationOrder1[] = { 3,1,23,12,5,2,1,22,7,11,9,24,25,9,12,14,4,22,21,20,3,6,18,14,26,2,5,28,21,28,21,17,2,24,8,11,10,2,21,25,4,13,14,15,19,15,5,2,4,1,7,8,16,18,9,23,23,18,11,10,18,6,21,13,10,1,27,14,5,28,27,1,16,28,27,11,13,23,6,13,11,17,13,16,28,28,7,25,9,1,27,12,16,18,23,22,13,10,13,14,21,2,6,5,24,3,28,14,4,4,5,7,13,20,27,7,5,11,22,14,2,11,28,21,18,19,20,14,28,7,12,15,10,19,25,15,26,24,14,4,23,9,15,28,2,2,27,3,24,28,18,9,26,18,13,27,27,9,21,14,17,1,11,27,8,9,19,18,19,28,16,16,1,7,14,1,7,2,2,12,5,27,6,11,15,23,13,16,8,4,17,19,17,23,25,1,5,27,2,21,25,16,13,15,19,10,25,11,11,15,26,16,26,7,13,22,23,7,23,19,1,5,17,20,1,24,2,5,1,7,8,11,14,23,26,27,26,14,27,5,17,3,26,23,16,7,17,10,3,7,15,7,22,21,26,23,13,12,22,26,14,14,12,8,2,16,18,15,26,26,1,6,14,14,10,25,25,26,25,5,6,17,2,10,3,8,26,10,10,18,28,15,7,24,21,5,3,17,20,20,8,23,17,15,25,7,4,28,26,19,16,1,3,3,17,1,6,25,16,14,13,12,24,18,9,15,12,23,9,7,10,2,10,6,4,14,24,23,20,18,7,17,18,10,5,10,3,23,16,3,20,15,2,20,24,25,8,15,6,17,18,22,22,6,14,6,6,27,14,12,8,2,27,12,20,23,23,6,10,28,12,27,28,13,15,14,26,5,1,27,13,14,23,17,3,17,11,20,23,24,26,25,21,12,17,28,16,5,26,26,11,16,3,7,25,23,10,13,11,1,11,9,28,21,2,26,18,25,19,6,17,23,24,26,25,17,5,14,7,15,27,3,17,9,23,9,7,7,18,21,21,1,9,17,17,18,26,9,18,2,2,7,13,9,27,20,9,15,26,4,8,26,7,7,10,19,1,9,12,10,22,16,23,13,1,10,1,14,24,11,24,20,10,27,13,21,5,6,16,22,18,27,25,25,23,14,8,7,18,25,14,28,10,1,22,22,11,7,4,16,6,3,23,26,15,11,12,27,15,22,12,17,11,15,14,8,20,8,20,11,25,28,19,27,27,19,27,27,25,2,11,4,5,10,6,13,17,13,19,27,5,27,10,17,14,6,20,18,23,12,19,13,28,8,23,2,27,4,1,20,21,11,24,3,25,17,22,15,4,4,5,8,13,14,23,1,10,4,10,10,11,1,22,24,7,9,21,21,1,6,22,19,28,12,7,26,6,4,27,25,26,19,9,24,4,19,8,21,20,16,10,6,22,22,16,22,9,26,1,18,10,3,6,18,6,13,9,15,15,24,2,13,17,20,25,10,21,26,25,26,20,13,14,3,27,1,25,8,10,21,26,6,2,6,6,3,11,12,5,20,10,18,12,11,28,20,2,12,11,14,12,8,9,6,25,12,20,2,4,18,3,18,10,2,27,8,11,13,16,21,23,13,2,12,21,6,23,9,19,22,5,25,17,26,10,19,7,24,28,10,18,3,18,28,4,17,22,2,22,16,24,17,14,15,26,15,18,11,6,4,14,7,3,10,18,23,19,13,11,6,12,7,4,19,15,26,25,14,15,4,7,12,13,24,9,15,20,24,12,10,17,23,27,26,14,13,9,19,13,3,8,16,9,16,10,19,20,26,7,18,2,15,7,23,16,5,8,21,7,19,22,16,18,10,16,17,7,26,5,7,17,5,28,1,20,28,19,11,14,14,17,25,3,10,24,7,17,21,20,22,1,15,9,21,8,8,4,25,26,2,7,3,22,18,24,12,15,24,1,20,3,25,26,8,11,1,5,22,22,26,21,15,12,15,19,1,16,5,2,2,9,12,4,18,25,6,15,6,19,9,15,7,1,3,3,10,26,9,20,10,12,2,27,23,11,14,19,4,7,8,9,22,23,13,13,28,27,19,23,25,3,22,9,2,27,20,11,24,20,6,21,25,25,17,7,12,15,10,2,1,26,18,1,17,3,12,11,20,28,23,14,28,9,27,3,9,8,21,12,21,26,25,11,6,25,4,10,2,2,9,23,9,28,26,11,10,23,28,19,11,11,1,25,18,8,17,2,24,19,9,20,21,10,6,17,16,3,6,27,21,24,14,24,28,26,10,17,23,13,19,25,18,26,7,26,19,2,28,26,16,8,25,28,1,24,4,23,9,28,16,15,7,18,2,18,24,5,9,19,5,8,23,3,20,28,25,28,22,5,6,2,13,10,7,25,12,23,18,12,12,22,16,26,8,15,24,21,17,27,24,3,24,21,11,3,2,26,18,13,15,9,17,24,22,19,17,27,11,18,25,10,4,11,13,17,6,1,23,9,19,7,5,4,12,28,22,10,21,5,18,19,7,19,14,18,7,28,13,12,24,19,20,5,20,26,12,21,28,17,15,23,24,10,20,1,18,1,3,25,6,17,4,16,23,2,8,5,16,2,17,8,25,14,13,10,21,21,17,24,22,18,3,26,22,19,15,18,19,1,19,9,27,27,6,28,1,15,16,28,14,15,3,6,6,4,21,10,12,23,11,24,17,14,28,8,8,27,26,12,15,16,15,20,18,27,21,4,3,6,14,19,2,28,23,9,5,17,22,25,20,9,4,26,13,28,22,25,16,12,8,13,9,5,25,8,20,14,7,8,24,12,26,27,7,11,27,18,26,28,27,17,23,11,22,10,7,2,2,24,6,3,19,28,10,14,26,13,23,10,6,7,24,23,4,2,8,25,22,1,10,13,9,9,3,16,20,20,21,22,1,24,7,20,8,1,6,11,9,5,21,22,20,27,23,27,28,27,15,25,2,18,10,8,11,11,19,7,27,17,6,12,28,7,8,19,20,21,5,26,8,19,20,19,5,18,14,24,26,19,10,28,19,8,1,1,5,8,1,13,9,12,8,13,3,13,25,22,7,6,8,28,24,16,27,1,22,14,2,18,17,14,13,14,8,2,20,12,6,1,24,9,20,15,21,18,27,4,4,9,27,14,12,11,5,12,12,14,4,10,23,26,20,6,2,16,17,5,14,23,23,17,28,25,7,22,8,19,1,14,8,14,3,11,17,5,10,3,24,11,1,7,16,24,18,13,24,15,2,28,17,1,16,2,10,17,7,4,7,6,26,16,11,21,2,21,1,4,5,2,20,7,15,25,18,26,25,17,26,16,12,28,23,9,11,25,27,14,21,3,3,25,11,27,2,9,6,5,15,23,27,10,1,15,25,1,17,10,3,12,8,25,5,28,3,28,7,25,6,11,8,8,8,15,20,4,17,23,12,28,17,5,23,12,5,4,27,19,28,7,1,21,27,27,25,23,25,22,5,16,20,20,16,24,8,13,16,22,27,1,16,26,14,13,3,8,28,27,15,15,13,8,23,26,17,11,15,2,2,24,18,8,11,16,19,24,8,25,24,9,3,3,19,26,24,21,20,23,21,7,22,1,23,16,13,2,28,18,15,3,26,5,13,11,1,2,18,10,28,6,1,27,28,22,28,28,7,5,12,17,9,10,20,28,2,8,22,22,7,12,17,15,18,8,24,13,1,16,8,14,8,28,24,19,21,14,23,1,16,10,21,15,9,26,2,16,28,27,11,17,1,5,18,23,24,27,19,20,23,24,17,26,8,18,20,17,10,14,22,4,5,16,28,8,25,3,2,26,15,12,25,26,14,6,6,4,9,24,6,14,27,10,26,4,24,23,10,5,8,5,22,25,13,11,13,25,21,3,1,25,7,10,12,28,16,26,28,27,22,6,8,26,18,11,22,9,23,20,8,5,12,6,14,25,2,20,12,19,11,13,26,23,6,8,7,13,10,8,14,6,27,27,21,16,5,6,8,15,25,28,7,4,8,26,25,27,16,28,18,27,13,25,25,10,20,28,19,6,25,25,27,10,10,27,22,3,2,5,1,28,24,12,14,21,21,27,18,19,23,13,16,2,23,12,15,7,8,4,23,24,2,21,15,18,17,27,25,3,8,18,12,25,23,20,6,20,1,14,13,15,9,14,20,17,21,17,20,28,23,20,12,17,25,9,24,4,11,3,17,23,15,4,13,8,4,24,4,4,26,16,21,28,24,1,8,15,13,22,21,9,23,20,19,17,13,17,27,17,21,13,20,14,20,22,2,14,25,22,5,21,13,2,16,24,15,19,21,10,25,8,22,19,18,22,21,23,16,18,13,13,16,18,5,12,22,24,11,8,6,4,8,11,3,5,15,21,7,4,17,11,23,11,7,27,9,19,25,11,15,15,2,2,15,27,7,26,18,22,12,21,24,10,8,12,27,1,12,7,23,6,16,6,11,22,21,16,4,27,4,19,23,12,23,18,14,6,27,12,26,8,9,4,11,16,22,1,16,10,3,21,26,4,12,16,23,26,9,12,23,24,9,10,7,18,21,2,14,3,11,12,28,21,24,1,4,19,20,14,12,20,10,12,15,2,15,26,18,11,20,16,20,18,6,14,8,19,13,9,13,17,9,22,17,2,12,18,4,21,11,3,2,23,28,21,23,6,8,7,14,10,10,3,5,28,14,10,3,8,2,12,6,1,27,25,11,16,7,16,16,18,20,8,25,19,6,21,18,18,9,19,26,1,19,9,2,11,16,27,19,27,20,28,19,18,1,24,6,24,28,12,13,14,21,25,12,2,22,7,27,13,22,19,15,13,16,11,4,12,20,16,7,6,28,9,7,20,20,1,9,8,21,28,18,3,2,18,14,7,24,14,2,16,17,9,9,8,2,24,25,9,17,13,14,16,27,6,3,14,1,25,23,14,28,15,7,12,20,23,28,22,23,8,20,5,3,22,13,22,8,25,17,8,16,25,25,11,11,11,28,6,12,18,4,22,19,14,3,9,19,12,11,22,14,17,19,18,16,26,5,26,18,27,19,9,17,15,3,15,13,24,9,6,3,26,8,8,26,20,19,14,10,27,28,11,26,17,12,9,20,16,13,24,8,27,3,21,9,6,15,2,7,15,1,19,28,11,2,3,1,3,11,6,9,25,20,13,3,20,21,24,22,10,24,20,5,21,22,4,20,2,25,8,11,18,20,19,9,12,23,7,10,7,16,11,5,17,27,20,17,14,26,24,28,4,26,28,9,22,15,15,7,4,17,6,21,25,19,5,22,26,23,21,19,24,27,16,24,18,16,18,10,24,18,2,14,1,1,22,13,27,3,12,9,14,23,1,28,17,12,23,11,1,7,21,5,6,4,19,4,27,24,20,6,22,1,19,5,19,8,19,25,11,18,16,7,5,18,23,4,13,24,17,27,16,26,13,27,17,20,19,1,28,19,21,26,21,19,1,4,8,18,25,1,26,11,20,23,8,22,11,5,7,16,3,17,23,3,2,12,17,6,5,15,16,17,5,10,4,24,18,10,13,28,14,3,26,20,15,20,5,6,6,4,6,22,26,6,7,11,8,14,5,18,21,5,8,20,25,22,21,11,14,20,9,1,25,5,4,17,15,25,17,17,26,11,6,2,16,15,10,9,5,11,15,20,5,14,10,27,12,15,5,26,17,17,3,8,15,21,25,5,17,3,28,9,9,6,23,16,10,24,4,22,1,22,12,16,15,2,28,7,11,18,17,17,17,8,21,5,5,10,15,24,13,5,18,18,15,11,3,2,14,4,2,15,16,28,17,23,3,25,10,8,22,24,15,20,19,15,13,7,25,11,19,28,10,1,2,18,16,19,6,9,14,19,7,22,17,7,25,18,17,25,9,15,28,12,18,28,8,16,2,9,26,12,17,21,13,11,3,28,21,18,6,2,19,14,22,22,12,13,4,3,12,25,10,19,15,2,24,4,1,22,7,1,7,26,5,16,26,5,20,27,12,21,18,17,8,16,24,23,10,24,5,24,6,28,26,24,23,24,8,11,8,26,23,15,7,1,24,25,23,4,19,10,13,27,2,5,16,13,3,15,5,7,13,20,18,26,9,10,4,22,18,3,8,5,2,21,26,4,9,11,20,21,11,27,24,2,10,24,22,7,11,2,14,10,20,27,5,26,27,22,26,3,13,13,22,12,7,12,10,4,14,12,6,22,26,21,2,1,7,3,8,24,17,9,14,20,24,3,13,1,19,5,16,26,8,2,3,13,21,23,9,7,11,16,12,22,24,24,7,28,24,8,27,20,25,5,21,24,18,9,22,3,14,15,10,8,23,15,3,28,14,11,22,22,20,24,10,1,10,14,28,18,26,20,19,25,25,16,2,10,3,1,28,26,2,7,19,11,15,14,11,26,3,1,25,27,6,13,26,3,14,26,22,6,20,5,5,14,9,28,21,2,12,10,2,18,15,22,4,4,24,26,28,24,3,11,16,13,5,19,25,3,27,24,12,1,6,20,28,20,9,20,3,26,2,6,18,16,3,19,6,11,17,2,21,15,22,5,24,24,18,1,23,6,24,3,15,19,10,18,7,4,26,21,11,4,2,13,19,23,21,16,17,4,5,9,19,8,13,14,28,17,5,18,4,6,10,15,22,5,11,26,24,6,14,4,27,25,18,14,8,22,25,1,9,9,24,3,19,21,12,14,21,3,27,8,17,3,28,28,16,11,17,14,3,14,6,4,21,2,15,26,15,22,9,1,17,15,3,8,7,17,5,3,28,26,8,13,13,9,17,15,13,15,28,17,23,10,24,28,19,17,24,22,8,13,22,1,20,22,1,15,15,4,4,17,13,4,16,20,8,3,5,11,27,9,20,28,3,3,8,6,2,11,16,27,22,16,25,1,7,1,27,18,5,13,22,16,4,1,17,4,17,6,1,4,24,4,27,16,10,13,22,12,8,16,19,18,25,28,19,25,16,4,11,22,13,21,7,2,21,18,18,6,19,5,27,11,21,20,3,14,11,14,23,6,28,6,21,19,6,24,8,6,21,7,11,2,15,4,18,21,11,14,5,1,1,15,19,16,20,20,3,10,20,23,14,1,25,3,12,20,8,8,24,14,15,26,17,7,26,24,13,4,8,7,25,2,18,20,18,7,12,16,25,4,23,21,20,26,4,10,20,22,21,7,19,8,24,5,5,16,27,27,28,23,18,1,27,22,25,28,23,12,16,15,26,10,5,9,6,22,6,13,26,14,20,22,3,14,20,17,13,14,3,4,13,26,4,6,15,12,28,7,11,8,23,11,22,23,28,10,17,13,7,26,4,21,19,16,9,16,14,16,4,16,27,19,12,12,10,27,23,18,6,9,1,22,20,2,20,14,14,21,22,13,21,15,18,11,3,14,4,2,5,21,12,18,11,25,15,7,22,19,15,19,11,28,26,23,25,9,12,15,25,21,22,15,17,13,19,20,12,16,6,19,27,9,15,2,9,4,15,4,4,3,21,27,10,25,2,27,7,16,11,25,28,18,7,12,13,20,28,12,18,9,21,1,12,5,3,28,13,1,1,2,16,16,23,22,14,12,12,4,5,1,4,13,4,16,23,6,18,12,3,10,23,26,17,11,5,9,20,20,12,6,25,4,14,21,18,28,5,12,4,11,5,5,7,12,23,20,16,2,15,20,11,26,2,3,23,5,6,9,1,17,6,3,23,12,12,14,8,8,19,27,12,16,15,12,21,21,5,23,3,4,15,4,4,21,5,13,14,24,22,16,16,24,27,10,5,25,24,25,8,18,12,9,18,27,1,14,7,13,26,11,1,15,3,17,19,4,26,28,25,3,21,23,20,28,19,9,12,22,3,19,16,20,22,13,4,24,22,3,25,9,5,14,13,24,3,13,10,18,17,9,2,20,24,11,9,27,7,25,6,25,7,16,22,5,19,1,24,10,23,27,19,13,18,21,7,16,16,8,10,7,25,13,18,22,12,22,27,4,3,16,4,3,8,11,18,4,2,18,16,19,23,21,12,7,23,22,15,12,20,5,2,1,22,3,9,6,1,6,9,6,27,15,6,11,5,10,12,3,21,1,5,24,1,16,13,9,11,15,5,6,2,24,9,20,21,27,23,4,9,2,24,19,26,4,19,8,10,9,21,14,13,4,23,15,6,26,24,20,10,10,27,7,9,24,6,1,14,20,16,14,14,16,4,9,12,18,2,11,23,6,7,8,2,2,8,13,4,1,3,21,6,14,22,5,23,23,1,4,15,5,19,4,11,15,28,23,3,5,24,9,27,16,20,2,17,14,3,10,10,19,7,12,19,2,24,10,3,5,4,25,27,21,6,17,25,3,7,21,22,25,23,12,17,8,27,16,4,16,13,4,8,5,11,9,7,28,28,10,10,7,19,23,19,20,9,9,18,10,20,2,10,28,12,11,25,6,11,21,3,6,26,26,27,16,9,15,6,27,28,27,3,1,1,5,27,13,5,1,21,8,13,19,3,9,4,9,19,14,23,26,21,24,25,25,13,3,7,22,1,5,13,28,17,7,18,5,27,26,3,14,6,1,28,1,4,8,18,1,2,21,18,5,5,28,4,4,24,25,18,23,7,26,14,15,10,4,21,10,17,15,22,13,26,27,9,27,12,7,19,20,2,24,7,2,9,2,13,12,11,8,11,10,6,19,28,8,4,6,19,12,6,28,22,22,16,12,24,8,4,28,4,21,17,5,12,25,26,9,5,24,7,3,13,19,24,1,9,22,24,9,9,5,11,13,13,7,1,10,2,2,7,23,11,6,6,3,26,21,2,23,4,9,17,15,18,27,10,22,1,13,25,25,1,26,1,10,2,5,14,6,1,17,4,11,28,9,21,22,6,19,11,18,19,13,14,8,2,18,22,24,21,28,28,12,7,7,24,27,27,17,10,14,17,22,13,19,15,19,16,17,9,20,21,6,24,14,1,11,10,22,23,13,13,25,8,15,23,12,6,14,10,22,20,2,20,21,4,13,7,27,21,9,15,19,10,23,12,16,27,5,17,15,3,4,17,15 };
array<int> presentationOrder2[] = { 2,2,14,26,27,9,14,5,15,22,5,3,5,22,16,8,5,16,17,13,1,9,12,3,6,26,11,13,4,4,17,5,17,1,7,15,22,25,11,1,3,15,28,5,11,18,13,4,25,20,20,2,19,9,24,20,3,27,24,4,25,26,27,23,19,7,12,15,6,12,28,5,16,5,12,22,13,5,24,8,2,1,26,8,10,12,17,28,15,9,25,19,21,22,10,3,6,18,7,11,28,12,14,16,25,10,28,2,15,12,7,25,17,9,21,3,8,7,6,25,4,12,23,25,25,6,16,27,8,24,5,19,25,25,21,20,12,5,14,15,21,13,1,15,24,14,5,7,4,1,14,26,8,13,8,1,23,1,5,19,9,2,16,3,28,25,2,26,17,15,18,12,24,28,21,16,3,2,20,21,1,24,7,9,21,23,24,7,3,24,7,19,18,3,16,17,9,13,1,16,11,3,8,25,24,11,22,3,13,2,9,4,17,12,28,25,25,16,20,7,21,25,27,7,17,28,17,28,14,24,18,23,19,7,14,22,10,5,9,2,26,3,22,14,21,10,19,25,2,25,10,27,16,28,18,11,25,16,13,23,5,18,7,4,11,5,7,13,18,18,10,10,16,18,16,20,9,18,20,7,10,7,3,28,7,26,2,9,21,11,2,11,17,17,16,15,25,26,5,20,17,21,2,18,16,27,9,20,24,20,1,24,19,7,17,26,2,18,17,8,15,5,16,5,19,7,6,2,12,21,12,7,5,25,21,19,25,5,8,14,6,24,4,16,26,22,21,22,28,7,9,11,3,11,4,10,11,4,25,22,19,18,24,4,5,8,12,27,1,9,25,3,21,10,3,4,26,4,15,26,28,26,3,14,22,11,3,23,26,26,8,4,24,7,15,22,4,6,12,8,22,7,2,23,13,19,18,23,27,6,5,16,14,10,21,13,22,5,13,26,23,10,9,2,21,10,3,7,25,10,15,19,9,21,12,1,18,19,21,12,16,13,6,12,27,3,2,9,11,13,19,22,25,7,1,3,18,7,2,21,3,11,2,11,5,23,12,23,7,14,14,14,17,2,23,25,28,8,8,18,23,16,2,5,19,2,14,12,4,19,8,9,6,16,18,12,26,10,19,19,24,16,7,27,25,1,4,17,18,23,3,11,10,16,27,22,14,7,24,1,11,26,28,5,16,26,1,5,20,27,19,28,11,11,9,17,13,19,3,6,2,9,16,17,15,18,1,7,6,22,6,7,16,16,3,14,28,17,21,26,4,7,26,5,27,20,7,4,3,26,8,25,9,13,13,14,4,19,26,7,13,23,22,20,26,10,1,23,17,12,3,3,24,2,9,6,19,6,27,4,25,23,12,8,12,19,6,2,9,8,4,26,21,6,3,3,19,5,8,16,13,6,24,1,11,6,22,1,19,26,15,13,15,7,15,18,24,28,19,25,12,11,4,11,20,22,14,17,3,2,7,14,4,9,14,4,13,20,10,24,19,24,12,27,20,16,15,11,23,8,1,9,10,27,16,3,1,25,20,15,18,20,14,6,21,9,4,6,5,17,3,9,12,9,22,10,12,27,20,8,27,3,18,21,1,17,21,8,16,20,15,16,8,22,27,27,8,3,10,23,21,3,14,22,14,2,4,19,8,24,19,27,16,27,7,15,22,24,14,23,26,20,21,24,22,1,5,28,10,7,20,27,4,16,14,25,6,11,4,8,16,11,23,5,8,25,1,15,28,15,12,13,19,26,23,21,7,1,16,5,4,2,8,24,12,8,21,2,18,13,15,7,27,10,15,21,12,27,4,8,17,14,17,28,10,21,11,20,13,25,9,20,12,25,25,27,21,11,21,23,15,3,4,21,7,19,9,22,28,27,20,13,15,1,21,10,17,24,18,9,11,24,19,16,5,24,28,6,10,13,22,2,19,11,14,13,2,26,14,14,27,23,2,1,17,28,23,18,11,7,27,26,23,14,19,13,25,17,21,15,26,20,25,13,23,13,22,9,2,5,25,28,6,23,11,28,5,25,20,15,11,15,22,1,18,17,13,15,7,6,11,1,8,24,17,26,19,12,5,26,6,6,9,24,8,23,24,9,27,1,13,9,6,2,4,12,11,24,24,18,3,7,26,27,7,9,12,6,19,19,1,5,13,2,6,2,2,15,16,8,17,17,4,8,21,18,9,9,9,10,4,5,17,19,26,6,21,7,3,20,3,12,17,14,18,19,15,15,18,22,17,24,27,20,18,28,28,6,15,2,12,15,28,2,21,17,26,3,2,21,5,22,22,26,2,27,2,5,23,9,18,13,4,24,15,20,14,13,19,20,9,27,10,28,9,17,18,4,13,17,23,5,16,12,24,6,17,7,16,19,1,14,23,1,8,13,12,18,10,28,13,19,17,6,11,23,20,5,16,28,18,10,22,7,14,21,8,1,4,22,7,5,2,1,21,13,22,26,7,8,17,10,14,4,1,28,20,13,18,14,6,12,27,10,7,13,10,21,10,10,28,20,6,10,26,20,20,7,16,14,20,23,27,22,17,7,25,4,16,1,11,5,25,26,10,18,11,7,7,25,14,4,3,20,9,5,25,6,25,2,12,9,26,3,22,28,15,17,1,22,5,17,24,13,22,17,12,2,15,26,26,21,11,6,21,24,14,26,28,19,25,11,13,25,5,24,16,15,28,9,25,14,13,1,27,8,21,10,27,1,8,23,22,26,5,1,24,18,9,22,28,5,1,15,23,21,7,15,28,11,28,3,4,6,3,17,10,3,14,2,3,10,24,1,6,26,5,7,28,5,5,15,6,28,22,3,21,13,10,16,18,4,5,28,21,12,23,17,1,28,23,12,1,5,11,23,9,12,19,10,22,19,26,27,6,7,2,10,26,4,20,6,8,24,22,9,15,15,24,25,23,1,17,13,12,22,18,25,1,13,19,8,27,7,26,22,24,20,7,15,6,27,28,26,8,7,10,14,28,25,15,4,1,15,3,27,28,18,8,25,10,18,18,6,7,20,28,20,18,15,8,19,3,17,20,3,13,24,15,15,26,25,28,8,12,9,7,13,4,9,8,13,25,11,6,24,23,7,19,26,5,14,5,27,1,3,19,10,16,3,15,17,10,16,5,5,23,1,22,7,4,20,13,5,19,3,2,15,8,23,26,3,6,13,18,26,26,2,8,28,8,25,11,6,4,28,8,8,9,24,27,4,22,17,21,2,5,11,2,19,11,23,5,28,6,22,24,2,4,4,6,8,27,3,17,14,3,28,19,7,9,10,19,26,13,5,23,27,16,2,9,17,23,24,12,20,9,12,28,23,1,11,7,2,3,21,23,28,4,27,3,13,5,13,10,20,22,25,24,2,21,19,17,6,22,11,9,15,23,6,19,20,13,4,4,22,26,23,3,23,19,10,7,13,14,24,16,23,3,28,14,2,25,27,11,7,5,3,23,11,27,24,15,27,21,14,2,17,27,13,5,27,5,13,21,22,23,20,3,12,13,4,7,15,18,24,19,4,4,20,19,21,4,23,5,16,27,10,14,7,10,13,22,2,5,23,12,10,1,18,12,13,7,19,4,17,18,18,17,11,14,23,14,6,19,28,1,19,12,23,19,20,6,1,1,17,6,21,17,23,9,4,28,23,15,14,10,9,25,18,27,21,23,4,6,16,28,27,13,3,16,1,1,17,14,10,20,11,5,11,25,8,28,12,27,20,22,5,14,14,27,17,1,16,22,4,22,17,21,2,17,6,12,1,10,1,23,10,15,22,3,9,10,11,17,8,1,21,3,1,26,22,3,5,13,14,22,21,5,7,5,19,2,3,15,8,25,23,20,16,27,14,10,4,7,6,12,26,1,3,22,7,21,18,18,21,27,6,28,3,7,21,13,7,10,11,16,12,28,19,6,2,7,9,9,3,23,3,19,21,13,13,17,26,24,14,12,13,26,28,27,3,21,27,18,20,2,21,11,20,18,15,22,20,6,27,20,24,19,28,9,23,9,5,27,5,18,27,26,17,23,23,9,14,7,7,17,27,25,26,16,1,2,9,13,21,27,19,15,23,20,20,16,2,25,14,1,16,15,19,1,6,25,24,21,22,9,14,11,18,7,14,25,9,23,13,7,19,3,24,19,18,22,24,12,8,13,24,6,10,1,21,28,3,10,12,12,17,16,6,24,17,27,6,1,20,27,16,19,24,27,19,11,17,26,7,9,6,11,6,4,23,4,19,24,16,3,16,1,23,6,19,24,10,23,18,14,27,28,19,20,9,28,2,20,11,24,12,5,13,5,15,22,16,23,27,7,10,2,19,9,26,12,13,24,18,1,21,21,4,12,13,14,24,14,11,10,11,16,17,2,13,8,1,15,16,9,13,6,1,17,6,23,15,23,7,11,11,24,13,12,13,17,17,16,12,11,20,6,2,20,12,19,15,4,6,8,5,1,19,26,21,6,9,16,9,2,23,18,14,10,4,22,27,6,8,8,11,4,28,17,22,27,4,16,25,9,8,4,7,10,24,28,4,19,7,11,18,1,6,15,21,16,6,10,12,15,27,6,19,17,28,8,4,22,8,24,28,12,10,4,6,25,3,26,27,3,2,22,9,12,10,21,5,8,22,20,12,10,2,6,21,2,23,6,16,3,1,25,8,18,6,16,11,12,18,2,3,24,22,17,10,23,5,21,25,16,13,27,7,17,21,6,21,14,16,3,8,27,19,1,19,24,1,25,24,16,21,11,9,12,22,22,27,19,13,23,6,1,27,10,14,27,25,1,4,5,9,25,4,6,10,24,4,28,14,3,18,15,28,12,5,14,8,7,4,8,23,12,13,17,1,26,9,9,27,18,14,7,9,6,11,3,13,20,26,20,17,20,11,8,11,24,14,19,22,4,9,23,23,14,28,1,18,16,1,16,7,6,25,6,11,13,7,10,9,14,24,9,16,21,23,28,12,2,24,27,24,13,23,21,2,7,24,7,28,2,16,14,22,26,28,6,9,4,15,1,14,25,13,14,7,24,21,8,12,9,7,15,20,17,5,25,19,17,26,25,15,28,18,19,19,11,16,15,2,3,14,15,7,3,9,19,9,5,28,20,11,6,14,14,14,8,13,24,9,25,19,4,9,22,16,15,20,8,25,18,25,12,12,17,7,25,6,5,12,21,26,16,10,9,10,19,15,13,1,19,23,22,8,19,18,5,3,19,10,26,6,16,20,27,10,11,28,26,17,10,18,11,22,7,26,9,9,9,21,19,9,21,3,3,4,21,16,15,4,24,23,19,5,27,5,15,27,10,10,18,18,16,12,5,5,16,3,19,8,5,2,21,23,21,5,13,27,19,14,7,10,20,28,20,20,14,26,14,11,25,12,21,1,27,13,13,4,10,28,13,11,6,1,22,12,10,19,14,1,10,7,1,11,7,28,16,17,1,20,14,2,22,8,21,21,5,25,19,1,2,22,13,18,15,11,19,26,17,17,26,9,22,9,20,8,3,24,3,3,16,19,3,27,9,23,24,23,19,16,8,6,8,26,19,12,6,8,11,27,17,8,15,18,8,27,4,16,28,22,1,13,20,17,7,2,28,27,2,16,19,2,17,18,28,19,28,5,4,24,3,12,13,2,12,1,15,21,19,3,18,27,10,19,20,18,25,18,24,28,10,24,1,3,24,10,21,17,27,19,27,6,1,10,4,12,13,23,20,3,15,6,4,28,10,2,9,10,5,8,19,24,1,10,20,8,8,25,28,14,1,26,18,14,25,16,27,18,12,11,22,14,1,5,2,3,14,15,20,28,24,20,18,19,11,17,16,24,16,13,22,2,7,21,1,24,9,25,17,18,16,7,13,8,12,9,3,2,27,11,8,20,20,15,26,8,19,13,20,22,28,4,14,11,25,13,13,10,25,2,20,15,22,16,20,13,14,22,15,18,5,27,6,9,20,20,27,2,10,3,28,13,22,13,27,4,10,14,7,19,23,2,8,12,12,25,24,3,20,25,2,28,2,21,20,2,24,24,19,1,8,25,26,1,26,19,23,24,21,10,13,12,2,9,24,24,19,16,17,23,26,13,5,7,6,11,27,14,27,20,16,22,3,8,23,17,12,23,5,4,5,25,19,16,11,28,3,17,10,10,23,24,8,26,12,11,5,17,20,26,17,1,5,25,20,16,11,9,7,7,1,18,23,6,2,13,23,15,4,22,13,15,16,6,9,6,14,6,16,14,8,27,20,22,6,22,27,22,15,5,15,15,9,21,6,24,7,4,24,9,1,16,19,23,12,25,28,9,3,16,16,23,14,3,27,19,6,2,18,6,17,26,8,28,11,4,10,23,23,16,15,25,20,6,18,23,27,27,22,26,23,5,7,21,6,15,21,17,23,25,12,6,10,4,27,1,18,10,10,22,1,25,26,14,12,6,27,1,23,6,5,1,4,16,18,4,21,27,28,5,26,8,13,1,24,21,9,10,5,21,26,26,4,19,17,18,20,7,6,1,4,15,6,9,20,7,2,8,4,17,16,5,10,2,16,27,24,23,22,18,15,18,13,26,18,7,28,9,16,27,14,3,14,28,18,22,2,7,19,1,2,9,26,18,16,23,2,14,2,16,22,6,10,15,19,9,11,13,13,11,8,21,9,19,13,6,1,18,1,4,5,21,15,25,19,28,6,12,6,23,17,2,20,2,28,18,25,10,3,24,13,28,23,3,4,15,11,24,12,2,28,10,16,5,18,4,17,7,22,24,27,22,20,10,10,17,4,18,8,4,28,1,9,7,22,19,4,9,8,13,11,4,7,26,26,1,25,14,1,28,12,24,11,22,1,5,24,13,20,14,21,1,14,27,2,11,23,13,24,23,14,2,11,14,22,17,10,26,23,9,23,13,28,9,8,16,20,14,26,8,15,2,3,28,10,13,17,14,9,4,2,28,14,10,27,4,28,10,6,19,10,25,18,23,7,19,26,15,8,9,19,28,17,19,20,11,25,9,14,10,10,27,15,16,9,28,12,11,16,5,23,28,13,9,27,15,12,13,6,11,20,12,9,8,3,17,21,16,26,20,2,7,20,7,26,1,4,1,23,17,1,6,20,27,14,16,11,21,23,17,28,4,11,25,23,9,28,16,24,1,11,5,19,11,8,2,23,15,3,12,7,6,2,10,6,14,24,21,18,11,24,18,8,17,15,1,27,8,24,20,4,3,5,4,28,19,20,19,14,12,2,2,8,23,21,3,27,2,27,12,3,27,14,1,21,12,12,14,13,7,18,1,25,9,23,6,10,17,18,4,18,3,9,19,21,5,21,3,16,8,18,25,12,5,19,28,5,17,7,21,28,9,21,3,5,26,26,25,27,5,8,2,4,8,28,26,16,25,5,1,15,3,10,13,27,27,11,18,5,22,10,24,6,11,20,12,11,6,26,13,16,16,22,23,12,10,5,23,21,4,26,18,1,3,22,8,27,21,1,12,17,23,17,14,15,5,16,3,14,12,20,15,17,6,12,4,23,20,21,27,10,12,12,26,20,19,28,11,4,9,14,8,13,9,8,11,3,13,8,15,16,18,16,28,17,21,22,28,17,10,11,27,17,23,11,25,10,12,2,26,19,3,20,23,18,15,20,15,6,3,5,27,19,2,20,28,4,17,21,15,19,8,25,26,23,8,7,10,22,7,13,27,4,8,4,28,17,19,19,13,21,11,1,18,15,5,16,18,18,20,8,13,18,22,26,8,25,12,1,11,20,6,11,26,18,3,19,24,14,18,1,25,17,17,25,1,10,5,2,9,5,13,1,22,9,13,27,17,4,2,13,24,7,23,14,16,2,24,8,21,26,11,8,28,16,6,20,6,22,21,19,21,15,20,12,2,14,10,19,25,9,14,22,25,5,2,15,28,4,4,20,20,2,12,7,3,8,5,5,13,2,13,19,4,6,10,9,23,21,20,26,21,2,1,4,26,8,22,12,10,17,19,17,20,25,20,20,19,10,16,11,10,25,20,4,2,22,11,7,20,19,11,6,25,2,18,10,9,17,19,28,18,6,13,2,15,26,22,9,26,1,14,10,22,23,22,28,4,12,10,11,26,20,27,27,3,12,15,6,18,19,27,8,22,24,17,12,17,11,13,24,15,17,14,1,14,8,9,22,2,11,16,23,5,1,13,26,14,13,13,28,17,21,21,24,11,8,2,12,28,18,19,4,25,22,10,25,1,18,9,15,2,20,2,13,14,28,12,16,23,13,23,28,27,21,16,5,11,4,21,25,23,18,11,14,24,28,2,10,11,7,10,10,12,22,25,6,12,25,22,3,3,16,14,17,1,1,10,24,18,11,6,16,22,16,4,19,22,13,15,8,4,8,23,12,7,11,25,15,18,8,1,4,25,5,24,17,5,25,5,15,23,14,9,15,24,8,22,7,3,16,1,6,20,19,22,10,8,28,8,16,19,8,6,4,2,21,19,7,4,18,13,1,27,8,21,23,21,14,11,3,24,16,23,18,11,9,2,28,21,1,7,21,12,8,25,21,15,11,27,12,15,15,17,7,24,18,20,7,5,16,7,20,23,7,1,13,10,17,23,10,24,1,14,5,9,20,22,26,4,27,7,12,7,21,11,27,20,4,24,17,17,5,17,2,10,13,27,24,25,11,12,17,25,15,6,17,10,26,23,2,28,3,15,11,15,13,11,23,5,12,15,12,17,17,12,17,12,7,24,17,24,9,15,22,27,1,8,22,2,20,5,17,11,20,10,6,11,6,5,10,5,8,19,6,5,17,6,20,22,5,3,15,13,28,6,15,28,17,18,6,9,18,7,28,27,13,24,22,26,11,23,18,21,1,20,19,28,27,16,10,1,3,13,20,4,16,2,2,11,27,23,10,8,26,1,25,1,13,24,19,21,4,10,24,17,9,21,23,25,4,23,21,3,20,24,26,28,18,21,25,9,19,21,7,16,6,17,28,4,27,8,25,25,7,18,12,5,21,16,19,14,14,18,5,14,18,22,21,13,1,14,7,17,24,22,25,19,3,3,5,25,24,2,19,23,4,20,4,3,9,6,28,6,27,14,12,28,27,19,21,17,9,9,9,19,21,9,17,7,27,8,28,4,18,13,26,28,13,13,28,1,25,8,9,18,8,13,24,16,9,15,4,19,11,1,14,27,12,27,13,1,21,2,1,26,4,26,28,25,5,1,21,7,21,9,22,11,2,18,15,25,20,2,11,3,28,23,4,24,19,15,21,11,8,3,18,26,15,8,11,2,15,24,4,15,25,19,3,11,27,17,8,12,3,2,10,14,17,18,16,19,6,26,12,22,10,7,13,15,16,28,11,8,8,18,9,18,7,8,28,16,24,20,19,13,26,7,13,19,7,17,3,28,8,11,13,16,17,12,3,25,7,27,2,26,24,4,10,16,4,2,6,22,12,27,24,4,15,6,21,22,26,12,17,10,25,19,14,14,2,5,13,25,15,11,4,10,28,6,2,6,12,16,7,20,17,4,18,6,13,24,6,12,21,2,16,15,28,14,4,24,9,28,19,12,6,28,1,9,4,6,8,24,1,26,11,1,10,26,20,18,14,23,14,20,28,19,28,21,22,18,27,5,12,10,17,3,8,24,15,26,8,25,18,23,4,12,6,28,25,22,6,21,22,22,21,17,5,10,5,28,24,18,28,22,5,24,14,8,14,5,22,13,12,25,25,17,2,17,4,26,25,10,16,3,18,1,13,21,7,19,1,20,11,15,2,18,12,23,17,5,17,3,8,10,22,25,11,6,2,26,25,28,24,4,19,26,13,7,8,28,2,17,13,21,18,10,24,7,5,13,12,15,28,5,22,26,19,4,10,25,11,2,24,8,17,5,21,14,15,11,15,26,8,13,17,7,12,12,5,28,4,23,17,14,18,4,2,7,19,3,17,16,19,1,13,20,2,20,22,3,12,1,4,12,17,13,6,6,28,19,1,21,7,14,14,14,9,9,12,11,13,12,7,19,26,20,22,2,18,11,27,8,22,23,24,6,25,6,23,25,3,19,8,8,28,27,12,15,18,2,19,12,2,25,11,20,17,13,21,10,7,28,1,27,7,22,22,24,26,1,5,16,11,14,11,9,8,10,25,10,10,1,14,28,11,16,23,2,16,5,14,24,27,28,1,12,21,15,20,6,25,26,13,15,28,3,8,19,1,23,18,25,3,7,18,6,2,17,23,14,13,25,7,8,15,3,23,9,17,20,22,3,17,21,27,20,17,8,24,4,7,8,12,17,23,5,16,8,11,23,9,17,3,17,22,4,23,12,13,13,18,9,25,10,24,25,21,6,18,1,10,14,20,8,9,12,11,27,27,11,24,25,22,6,4,23,8,22,24,6,6,5,25,28,16,16,22,27,28,17,13,26,8,8,23,14,5,16,20,20,22,27,2,15,23,12,15,14,18,3,16,6,16,6,25,24,12,1,5,14,11,15,21,9,1,16,26,27,4,17,8,15,4,5,9,28,27,23,14,11,24,2,8,14,14,4,9,13,18,14,4,22,11,10,23,24,23,1,25,2,25,25,1,16,24,8,12,18,6,5,3,21,6,12,2,13,18,1,26,21,9,20,3,21,11,5,5,5,23,1,25,27,20,3,3,22,26,14,26,24,10,1,24,18,16,19,22,28,3,18,8,20,18,26,26,10,5,18,28,27,12,5,20,28,24,16,6,4,4,4,2,21,6,27,6,11,6,27,5,2,4,5,26,10,7,26,9,14,18,19,25,2,3,6,20,20,28,13,10,14,20,24,1,11,24,19,6,2,10,3,25,20,3,9,24,7,26,21,27,4,3,2,23,7,2,28,27,6,25,28,19,23,7,18,10,12,20,27,12,17,12,8,5,16,14,16,7,18,19,11,7,27,15,6,20,3,18,23,19,1,21,18,6,25,13,19,25,12,25,17,20,25,2,10,2,15,12,4,9,4,16,27,26,16,28,19,6,1,20,12,21,3,24,1,20,1,14,24,12,9,17,19,27,5,23,9,10,8,25,9,24,5,4,24,3,14,9,26,22,19,14,18,3,7,22,16,17,5,22,13,24,23,26,7,10,26,11,25,11,10,2,2,4,4,8,9,18,8,6,3,1,14,25,13,5,15,27,21,20,26,14,24,14,27,20,23,27,10,6,21,16,8,21,13,7,4,21,3,19,27,2,25,24,26,3,3,24,3,5,22,3,28,24,7,26,22,25,14,15,25,15,25,22,11,17,6,20,8,2,27,5,23,6,20,2,24,27,6,27,12,3,22,24,10,24,27,20,8,15,7,27,19,24,27,11,1,20,9,4,16,8,28,24,14,4,4,26,21,16,22,1,5,19,21,5,11,16,19,5,7,13,16,25,7,20,2,21,12,22,9,26,4,13,27,18,24,19,18,17,22,9,18,2,6,22,11,12,16,2,4,27,24,15,8,20,20,23,7,25,1,19,27,2,17,19,17,25,15,9,28,19,23,25,8,21,20,16,3,26,4,23,10,1,11,15,1,4,24,21,10,9,2,10,12,13,19,13,25,7,21,17,7,19,14,2,16,16,24,6,18,10,1,10,6,21,5,9,10,12,17,4,6,3,26,18,22,4,12,14,7,10,7,18,14,6,5,23,25,5,16,6,3,9,4,27,16,24,25,9,24,25,2,20,10,26,20,11,22,5,25,22,3,27,24,12,20,14,2,2,3,6,19,22,24,28,14,27,16,28,1,21,3,25,4,28,23,12,18,19,10,18,27,2,18,21,9,6,20,1,21,12,15,15,15,13,8,21,5,7,26,2,10,22,23,6,4,28,22,18,18,23,10,5,23,12,26,10,20,3,27,5,18,11,18,14,17,4,21,12,23,22,21,21,3,10,27,14,14,27,13,12,7,27,9,19,7,4,16,5,7,9,11,17,9,4,6,17,28,11,25,3,8,1,26,11,16,18,28,19,22,8,16,26,15,28,25,24,7,27,20,25,16,9,3,22,21,13,16,7,16,25,8,14,11,11,3,15,26,8,27,13,10,4,22,4,12,18,4,26,4,19,18,25,8,14,26,11,22,9,7,17,14,23,1,28,8,14,14,22,20,8,19,28,18,21,2,27,5,20,27,11,15,25,1,26,18,8,12,20,1,1,6,4,18,28,8,23,25,8,8,6,15,4,27,20,3,26,11,10,24,22,19,14,12,14,4,8,27,14,17,9,2,25,10,13,10,11,19,25,7,22,20,8,18,15,7,11,13,8,25,26,17,22,12,13,26,7,28,18,10,4,20,10,9,18,1,5,20,11,11,20,26,4,14,18,27,17,24,3,4,22,21,11,10,25,13,6,27,24,5,15,22,16,23,21,11,2,2,26,12,10,18,16,23,21,20,5,10,21,13,1,17,11,14,16,21,18,6,23,10,23,11,20,9,16,1,19,17,8,23,28,5,5,6,18,9,9,3,24,11,7,25,25,18,21,20,11,27,23,3,26,23,6,8,17,12,4,10,11,16,22,3,13,12,8,21,26,23,16,17,14,20,9,28,15,15,14,26,1,26,13,18,18,8,12,24,12,18,5,23,9,26,10,1,19,13,21,20,26,22,7,22,2,21,25,15,4,11,24,18,4,18,21,7,14,15,23,9,9,10,12,28,20,16,19,15,25,28,22,25,2,6,16,17,2,28,20,19,20,24,18,11,17,3,24,6,17,8,13,20,10,27,3,15,20,23,26,1,2,14,3,7,18,12,21,13,5,10,22,19,26,12,13,10,6,17,4,4,10,1,25,23,3,2,10,24,16,14,19,14,28,23,11,24,16,23,2,21,13,18,19,15,21,8,12,16,1,20,6,5,6,7,12,23,23,12,22,15,19,25,8,7,20,28,14,12,2,8,23,7,16,6,5,22,9,25,27,8,19,3,19,1,22,28,26,27,8,15,16,15,16,26,28,4,26,8,18,12,24,22,4,23,23,3,8,4,24,27,15,11,4,7,7,1,14,27,17,4,21,15,2,25,11,17,7,18,17,24,21,17,16,15,7,13,14,28,12,25,20,19,1,15,2,10,22,27,25,11,9,5,22,14,20,3,14,17,5,23,2,5,7,15,2,2,26,7,20,24,7,7,26,1,18,15,10,11,24,27,24,11,1,16,25,6,21,14,25,27,4,18,26,24,20,8,3,20,15,8,24,18,17,15,14,21,15,20,24,4,25,15,1,16,12,14,5,3,26,15,9,19,10,4,3,4,17,27,16,14,18,11,2,28,15,15,25,2,10,28,16,20,15,3,23,11,12,2,28,7,17,12,15,28,14,24,26,25,15,26,3,25,23,25,18,13,15,11,10,2,5,14,5,12,22,1,27,8,11,7,17,8,14,5,18,15,15,8,1,18,17,25,1,5,2,28,28,10,7,7,15,22,19,26,4,21,13,9,20,13,6,18,28,28,16,4,18,12,9,18,6,26,26,27,26,5,14,24,25,3,8,21,1,15,3,14,4,9,13,1,17,26,13,13,3,6,7,5,7,23,23,14,19,6,6,23,15,5,9,5,8,26,16,16,17,16,1,3,18,23,6,28,19,15,3,26,3,15,4,15,13,10,5,21,13,11,5,14,6,22,9,10,16,9,12,15,22,10,25,4,15,12,21,26,3,27,27,9,10,27,14,12,21,3,21,5,26,26,10,11,12,20,22,3,25,19,9,28,5,23,22,2,13,22,11,7,16,7,22,3,27,22,3,17,26,25,1,25,9,16,27,22,25,19,6,12,16,24,1,9,21,6,11,15,25,20,19,9,22,28,18,26,3,7,6,1,7,17,3,16,11,11,22,14,15,10,13,13,14,14,8,5,2,12,16,17,20,21,9,2,25,9,17,13,8,9,19,13,22,26,13,28,15,2,3,12,17,20,13,1,16,6,13,3,6,3,16,1,8,12,8,16,24,6,20,23,24,18,27,23,12,9,27,17,12,28,21,23,13,4,18,21,28,2,22,25,9,18,2,14,8,12,11,4,3,22,17,28,5,6,3,25,20,12,3,14,11,5,18,17,2,12,27,28,22,9,25,9,22,24,26,15,10,20,22,28,7,15,21,20,19,27,5,11,10,23,19,19,24,11,11,18,1,9,22,9,22,14,8,20,25,17,13,15,6,20,26,16,7,9,4,26,15,15,14,8,15,13,5,24,21,11,27,7,19,11,18,28,7,1,10,10,9,15,10,14,28,21,2,11,11,12,22,20,7,9,25,6,9,18,27,21,9,16,12,21,8,3,27,27,7,17,21,1,13,15,24,3,7,15,15,11,11,17,24,16,17,19,22,20,21,22,5,23,26,22,26,15,11,28,20,21,9,10,18,9,6,17,3,12,8,16,5,5,20,6,17,15,26,5,13,15,26,9,15,11,18,14,28,21,20,16,7,12,10,22,27,10,2,5,28,11,16,2,14,2,6,16,20,19,27,13,2,9,4,7,28,22,9,1,2,12,8,14,19,22,1,13,8,27,12,5,14,8,26,25,18,19,5,19,14,28,25,4,6,8,22,10,2,26,14,12,9,19,10,7,26,5,13,1,8,1,23,18,26,15,28,4,17,24,21,7,27,25,6,12,10,15,17,13,10,18,25,12,20,9,18,28,7,21,2,3,21,8,19,17,13,28,7,11,5,13,28,4,2,14,6,13,22,12,23,13,23,21,12,11,10,15,9,12,6,16,10,26,26,24,6,9,14,2,27,10,20,4,16,23,27,21,15,4,4,3,24,14,15,28,2,23,6,11,25,5,13,2,2,16,3,9,1,22,16,10,3,24,20,26,27,19,3,9,25,26,28,1,16,8,12,28,22,15,15,2,25,7,20,21,10,28,3,16,11,23,17,7,13,2,4,26,6,16,24,6,23,3,16,9,14,6,3,26,24,1,14,1,9,23,23,11,27,9,11,6,23,26,15,11,21,4,22,23,8,28,21,11,8,27,17,24,12,27,25,8,2,3,26,11,7,8,14,18,3,26,23,7,21,15,17,9,23,2,4,2,27,7,3,26,21,28,8,22,8,15,16,10,8,14,12,21,22,27,23,12,8,24,19,7,7,21,23,5,22,28,21,22,22,21,26,15,12,10,24,1,5,19,8,24,13,22,3,27,11,22,10,23,24,24,25,26,26,28,2,12,14,22,6,21,13,24,18,4,14,4,7,24,12,9,10,6,27,24,20,23,7,9,25,5,24,15,3,5,2,5,6,28,8,24,11,1,15,17,26,21,20,23,19,23,15,2,10,14,3,1,5,23,5,15,3,9,26,3,25,1,14,21,17,15,23,25,12,17,4,23,23,17,18,2,18,13,24,26,2,6,17,26,15,11,13,8,18,13,15,12,1,3,26,3,28,24,19,26,7,16,28,11,15,6,13,25,20,18,13,17,20,3,25,16,27,13,3,7,9,27,16,22,21,14,2,16,23,18,22,5,22,6,5,13,14,25,12,27,19,27,20,9,22,11,21,17,15,3,28,24,24,10,20,26,1,28,11,12,22,16,26,24,18,21,21,22,26,7,26,16,12,4,23,26,27,2,24,28,7,18,18,26,1,10,17,27,9,15,1,1,7,9,16,19,20,5,13,11,26,21,4,27,4,17,18,13,3,5,22,8,7,22,4,14,4,14,6,18,20,14,28,26,24,13,11,9,23,2,17,5,8,24,18,16,26,24,17,4,18,23,20,18,1,20,8,28,14,10,26,3,8,1,4,9,18,16,16,7,25,23,26,19,9,1,22,16,20,25,6,12,5,14,2,7,21,5,14,22,26,7,1,11,5,11,4,7,13,13,16,19,3,8,20,1,1,15,20,4,24,1,24,23 };
int nFiles = 28;
int nRepetitionsStage;
int nRepetitions1 = 80; # for each trial # one trial will have 84 presentations
int nRepetitions2 = 140; # for each trial
int pauseStage;
int pause1 = 400; # ms +- jitter
int pause2 = 100; # ms +- jitter
int maxJitter = 50; # ms
int nTrials = 50;
if (stage == 1) then
pauseStage = pause1;
nRepetitionsStage = nRepetitions1;
else
pauseStage = pause2;
nRepetitionsStage = nRepetitions2;
end;
# Defining output file name
# Wait for response
system_keyboard.set_delimiter('\n');
system_keyboard.set_max_length(64);
string outFilename = " ";
loop until (outFilename!="") && (outFilename!=" ")
begin
outFilename = system_keyboard.get_input( picOutFileName, textFilename );
end;
# Pre-load wave files
array<sound> sounds[nFiles];
loop int i = 1 until i > nFiles
begin
string filename = prefixStim + audioFiles[i] + suffixStim;
sounds[i] = new sound(new wavefile(filename));
#sounds[i].get_wavefile().set_filename(filename);
sounds[i].get_wavefile().load();
i = i + 1;
end;
# For each trial
loop int i = 1 until i > nTrials
begin
# Visualise trial number
textContinue.set_caption("Trial number: " + string(i));
textContinue.redraw( );
stimulus_event codeTrialStim = code_trial.get_stimulus_event(1);
codeTrialStim.set_port_code(i);
# Waiting for key-pressed
system_keyboard.set_delimiter('\n');
system_keyboard.set_max_length(1000);
system_keyboard.get_input( picWaitForKey, textContinueResponse );
# Start recording
start_trial.present();
int currentSoundIdx;
loop int j = 1 until j > nRepetitionsStage
begin
if (stage == 1) then
currentSoundIdx = presentationOrder1[j];
else
currentSoundIdx = presentationOrder2[j];
end;
event1.set_stimulus( sounds[currentSoundIdx] );
event1.set_delta_time(random( pauseStage - maxJitter, pauseStage + maxJitter ));
event1.set_port_code(100+currentSoundIdx);
stim_trial.present();
j = j + 1;
end;
stop_trial.present();
i = i + 1;
end;
|
f32b4c5e3dbb05f238771833bf604d8eb794471f | 0dd46f764213376689f04c662c7bef9c1517ae8b | /sin/sin.sci | d0ee7f71548f634d4cf01bbaf2445c0d78b49092 | [] | no_license | hospitaler17/NumMeth | 85d174e6f8adfb488b577855b0f5b9977a87438b | 283677e9f47df559febaab33cc216e3634b95612 | refs/heads/master | 2021-09-12T12:43:55.522029 | 2018-04-16T20:09:09 | 2018-04-16T20:09:09 | 109,737,971 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,021 | sci | sin.sci | x = -%pi*5:0.1:%pi*5;
xlabel('X(мм)');
ylabel('Y(мм)');
title('Графики синуса и синусов, разложенных в ряды Тейлора')
xset("thickness",3);
y1 = x;
y3 = x-(x.^3)/6;
y5 = x-(x.^3)/6+(x.^5)/factorial(5);
y7 = x-(x.^3)/6+(x.^5)/factorial(5)-(x.^7)/factorial(7);
y9 = x-(x.^3)/6+(x.^5)/factorial(5)-(x.^7)/factorial(7)+(x.^9)/factorial(9);
y11 = x-(x.^3)/6+(x.^5)/factorial(5)-(x.^7)/factorial(7)+(x.^9)/factorial(9)-(x.^11)/factorial(11);
y = sin(x);
plot2d(x, y, style=[color("black")], rect=[-16,-4, 16,4]);
plot2d(x, y1, style=[color("red")], rect=[-16,-4, 16,4]);
plot2d(x, y3, style=[color("pink")], rect=[-16,-4, 16,4]);
plot2d(x, y5, style=[color("yellow")], rect=[-16,-4, 16,4]);
plot2d(x, y7, style=[color("blue")], rect=[-16,-4, 16,4]);
plot2d(x, y9, style=[color("orange")], rect=[-16,-4, 16,4]);
plot2d(x, y11, style=[color("green")], rect=[-16,-4, 16,4]);
legend('sin (x)', 'y1', 'y3', 'y5', 'y7', "y9", "y11");
xset("thickness",1);
xgrid();
|
0ddd39104423c22fd2fd2b5e7221a42c74c38550 | 5c99f90e816244fbea65c73357432fb54ac25d09 | /dynamic_channel_alloc.sce | 7d6bc383d61ac77b1867b0e5dac982d82b54bd29 | [] | no_license | varunkamble/story_book | 6301153ce6898a4275f99017facd814ea1df1633 | 0bc1f9d059b9cc718e36ea0b8da4a53dd24812d3 | refs/heads/master | 2020-03-26T05:27:21.794874 | 2018-10-21T17:15:34 | 2018-10-21T17:15:34 | 144,558,147 | 0 | 1 | null | 2018-09-18T13:33:23 | 2018-08-13T09:31:05 | Python | UTF-8 | Scilab | false | false | 1,951 | sce | dynamic_channel_alloc.sce | clc;
total_ch = 50;
control_ch = 12;
traffic_ch = 38;
prior(1:38) = grand(38,1,"uin",1,10);
x = zeros(1,38);
for i = 1:38
x(i) = prior(i);
end
count_high = 1;
count_low = 1;
for i = 1:traffic_ch
if (x(i) <= 5) then
high_index(count_high) = i;
high_priority(count_high) = prior(i);
count_high = count_high + 1;
else
low_index(count_low) = i;
low_priority(count_low) = prior(i);
count_low = count_low + 1;
end
end
printf("High priority channels:\n");
for i = 1:(count_high - 1)
printf("Ch num :%d, priorty : %d\n", high_index(i), high_priority(i));
end
printf("\nLow priority channels:\n");
for i = 1:(count_low - 1)
printf("Ch num :%d, priorty :%d\n", low_index(i), low_priority(i));
end
disp('Enter valid cluster size(upto 9): ');
clust = input("");
call_demand = zeros(1, clust);
total_demand = 0;
for i = 1:clust
printf("Enter call demand for cell %d: ",i);
temp = input("");
call_demand(i) = temp;
total_demand = total_demand + temp;
end
for i = 1:clust
percent_demand(i) = ( (call_demand(i))/ (total_demand) );
end
for i = 1:clust
num_channels(i) = traffic_ch * percent_demand(i);
end
disp(call_demand);
disp(total_demand);
disp(percent_demand);
disp(num_channels);
indh = 1
indl = 1
cnt = 1
for i = 1:clust
printf("\n Printing cell allocated to cell %d:\n[",i);
x = ceil(num_channels(i));
traffic_ch = traffic_ch - x;
if traffic_ch < 0 then
traffic_ch = traffic_ch + x;
x = floor(num_channels(i));
traffic_ch = traffic_ch - x;
end
for k = 1:x
if cnt >= count_high then
printf("low %d:%d, ", low_index(indl),low_priority(indl));
indl = indl + 1;
cnt = cnt + 1;
else
printf("high %d:%d, ", high_index(indh),high_priority(indh));
indh = indh + 1;
cnt = cnt + 1;
end
end
printf("]");
end
|
66d84e4834541259d765d1478918cbef4c345db8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3754/CH20/EX20.11/20_11.sce | 1f1868ec44eb3462dd96bea45e38206708822e2a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,131 | sce | 20_11.sce | clear//
//Variables
VSmin = 19.5 //Minimum source voltage (in volts)
VSmax = 22.5 //Maximum source voltage (in volts)
RL = 6.0 * 10**3 //Load resistance (in ohm)
VZ = 18.0 //Zener voltage (in volts)
IZmin = 2.0 * 10**-6 //Minimum zener current (in Ampere)
PZmax = 60.0 * 10**-3 //Maximum power dissipation (in watt)
rZ = 20.0 //Zener resistance (in ohm)
VL = VZ //Voltage across load resistance (in volt)
//Calculation
IZmax = (PZmax / rZ)**0.5 //Maximum value of zener current (in milli-Ampere)
IL = VL / RL //Load current (in milli-Ampere)
RSmax = (VSmin - VZ) / (IZmin + IL) //Maximum value of regulating resistance (in kilo-ohm)
RSmin = (VSmax - VZ) / (IZmax + IL) //Minimum value of regulating resistance (in kilo-ohm)
//Result
printf("\n Magnitude of regulating resistance should be between %0.1f ohm and %0.0f ohm.",RSmin,RSmax)
|
d44559298a94522655b9c54fc96f45ea538be3b7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /409/CH3/EX3.3/Example3_3.sce | f225f9ca66d03abb7937ba18bf6b60aaa7a7338b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 435 | sce | Example3_3.sce | clear ;
clc;
// Example 3.3
printf('Example 3.3\n\n');
//Page no. 81
// Solution
// Basis 1 hour
rc = 5000 ;//[cpm-counts per minute]
cg = 10000/24 ;//[cells/hr]
k = cg/rc ;//[cells/cpm]
n_rc = 8000 ;//[cpm]
n_cg = k*n_rc ;//[cells/hr]
printf('New average cell growth rate is %.0f cells/hr.\n',n_cg);
in_p = ((n_cg-cg)/cg)*100 ;//[increase percent]
printf(' Increase percent of cell growth rate is %.1f %% .\n',in_p); |
fed5dea9bdf17e0c122bce7b420c724a24725707 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1898/CH2/EX2.2/Ex2_2.sce | 8f000c9f133d9aad90df15c40df4255adc697fde | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 426 | sce | Ex2_2.sce | clear all; clc;
disp("Scilab Code Ex 2.2 : ")
//Given:
theta = 0.002; //radians
bc=1; //m
ba = 0.5;//m
//Calculations:
bb_dash = theta*ba;
avg_normal_strain = bb_dash/bc;//m/m
//Display:
printf("\n\nThe average normal strain =%10.3f m/m",avg_normal_strain);
//---------------------------------------END---------------------------------------------------------------------------------------------
|
60579ad959eae540e676a0377e2079c7c15193f9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3472/CH27/EX27.9/Example27_9.sce | 06277625e7b264075c45695e959ea2bf410151ab | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,628 | sce | Example27_9.sce | // A Texbook on POWER SYSTEM ENGINEERING
// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
// DHANPAT RAI & Co.
// SECOND EDITION
// PART III : SWITCHGEAR AND PROTECTION
// CHAPTER 1: SYMMETRICAL SHORT CIRCUIT CAPACITY CALCULATIONS
// EXAMPLE : 1.9 :
// Page number 472
clear ; clc ; close ; // Clear the work space and console
// Given data
kVA_G = 7500.0 // Generator rating(kVA)
kV_G = 6.9 // Voltage rating of generator(kV)
X_d_st = 9.0/100 // Sub-transient reactance of generator
X_d_t = 15.0/100 // Transient reactance of generator
X_d = 100.0 // Synchronous reactance of generator(%)
kVA_T = 7500.0 // Transformer rating(kVA)
kV_T_delta = 6.9 // Voltage rating of transformer delta side(kV)
kV_T_wye = 115.0 // Voltage rating of transformer wye side(kV)
X = 10.0/100 // Transformer reactance
// Calculations
I_base_ht = kVA_T/(3**0.5*kV_T_wye) // Base current at ht side(A)
I_base_lt = kVA_T/(3**0.5*kV_T_delta) // Base current at lt side(A)
I_f_st = 1.0/(%i*(X_d_st+X)) // Sub-transient current after fault(p.u)
I_f_ht = abs(I_f_st)*I_base_ht // Initial fault current in h.t side(A)
I_f_lt = abs(I_f_st)*I_base_lt // Initial fault current in l.t side(A)
// Results
disp("PART III - EXAMPLE : 1.9 : SOLUTION :-")
printf("\nInitial symmetrical rms current in the h.v side = %.f A", I_f_ht)
printf("\nInitial symmetrical rms current in the l.v side = %.f A \n", I_f_lt)
printf("\nNOTE: Changes in the obtained answer from that of textbook is due to more precision here")
|
2e65a772059af30a32d55dc3922e6af7aa6394eb | 449d555969bfd7befe906877abab098c6e63a0e8 | /2087/CH3/EX3.4/example3_4.sce | 84e6e1341cb5c962448e7220d4545c513ff2c304 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 418 | sce | example3_4.sce |
//example 3.4
//calculate
//Depth of water required to irrigate the soil
clc;
//Given
Sg=1.6; //Apparent specific gravity
Fc=0.2; //Field capacity
M1=150; //mass of sample soil
M2=136; //mass of sample after drying
d=0.9; //depth of soil to be irrigated
Mc=(M1-M2)/M2;
D=Sg*d*1000*(Fc-Mc);
D=round(D);
mprintf("Depth of water required to irrigate the soil=%f mm.",D);
|
066ed24916d92c9a69353b2562653078e2bfcea5 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/ngram/5.9_1.tst | 5a57557ef18fe27117b6e5c348f07f3ab8520e81 | [] | 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 | 799,694 | tst | 5.9_1.tst | 9 83:1 150:1 162:1 295:2 333:1 424:2 442:1 596:1 643:1 843:1 879:3 892:1 1148:2 1160:1 1276:1 1457:1 1477:1 1543:1 1562:1 1627:1 1699:1 1895:2 1993:1 2006:1 2216:1 2219:1 2485:2 2780:1 2867:1 2888:1 2936:1 2965:1 3266:1 3271:1 3357:1 3459:1 3478:1 3489:1 3574:1 3599:1 3688:1 3742:1 3790:1 3838:1 3918:2 3998:1 4093:1 4254:1 4613:1 4646:1 4724:1 4731:1 4746:1 4773:1 4878:1 4928:2 4985:1 5176:1 5245:1 5538:1 5877:1 5920:1 6000:1 6017:1 6192:1 6245:1 6276:1 6855:1 6860:1 6906:1 6999:1 7050:1 7097:1 7099:1 7218:1 7570:1 7582:1 7603:2 7620:2 7644:1 7751:1 8062:1 8405:1 8430:2 8503:1 8510:1 8567:1 8572:1 8719:1 8815:1 8936:1 9077:1 9226:2 9349:1 9363:1 9390:1 9433:1 9528:1 9663:1 9676:1 9677:1 9954:1 9987:1 10280:1 10372:1 10686:1 10937:1 10989:1 11010:1 11083:1 11100:1 11197:1 11203:1 11430:1 11476:1 11514:1 11530:1 11550:1 11684:1 11716:1 11734:1 11789:1 12115:1 12132:1 12166:1 12239:1 12281:1 12346:1 12349:1 12515:1 12608:1 12648:1 12813:1 12831:1 13045:1 13072:1 13087:1 13093:1 13144:1 13206:1 13224:1 13233:1 13302:2 13606:2 13633:1 13697:1 13733:1 13904:1 13980:1 14325:1 14433:1 14449:1 15020:1 15117:1 15398:1 15404:1 15414:1 15482:1 15642:1 15879:2 16194:1 16290:1 16528:1 16843:1 16966:1 17013:1 17059:1 17138:1 17179:1 17186:1 17270:1 17475:1 17522:1 17592:2 17781:2 17873:1 17907:1 17931:1 18032:1 18056:1 18519:140 18715:1 18842:2 19192:1 19257:1 19359:1 19412:1 19482:1 19494:1 19507:1 19550:1 19936:1 20032:1 20084:1 20211:1 20455:1 20525:1 20594:1 20738:1 20907:1 20979:1 21169:1 21387:1 21392:1 21406:1 21459:1 21520:1 21712:1 21714:1 21771:1 21867:1 22009:1 22173:1 22345:1 22414:2 22493:1 22962:1 23195:1 23352:1 23559:1 23591:1 23600:1 23722:1 23736:1 23814:1 23918:1 24160:1 24187:1 24297:1 24321:1 24450:1 24783:1 24822:1 25005:1 25015:1 25089:1 25099:1 25104:1 25111:1 25214:1 25665:1 25679:1 25812:1 25906:1 25953:1 25992:1 26127:1 26185:1 26373:2 26960:1 27090:1 27187:1 27275:1 27636:1 27687:1 27692:2 27724:1 27777:1 27867:1 28126:1 28127:1 28214:1 28319:1 28648:1 28801:2 28836:1 28914:1 28919:1
9 14:1 83:1 150:1 162:1 189:1 282:1 295:2 303:1 333:1 424:2 442:1 564:1 596:1 598:1 643:1 795:1 843:1 879:3 892:1 899:1 905:1 963:1 1027:1 1148:2 1160:1 1244:1 1276:1 1313:1 1330:1 1355:1 1401:2 1402:1 1446:1 1455:1 1457:1 1477:1 1486:1 1508:1 1543:1 1562:1 1627:1 1634:1 1699:1 1895:2 1993:1 1998:1 2006:1 2082:1 2216:1 2219:1 2251:1 2253:1 2279:1 2315:1 2322:1 2347:1 2410:1 2485:2 2522:1 2552:1 2609:1 2656:1 2730:1 2775:1 2780:1 2867:1 2888:1 2909:1 2936:1 2961:1 2965:2 3105:1 3266:1 3271:1 3357:1 3459:1 3478:1 3489:1 3540:2 3574:1 3582:1 3599:1 3688:1 3698:1 3742:1 3748:1 3784:1 3789:1 3790:1 3813:1 3838:1 3895:1 3918:2 3989:1 3998:1 3999:1 4093:1 4254:1 4434:1 4613:1 4619:1 4626:1 4646:1 4695:1 4724:1 4731:1 4746:1 4773:1 4876:1 4878:1 4928:2 4985:2 5005:1 5176:1 5190:1 5195:1 5245:1 5302:1 5328:1 5358:1 5369:1 5538:1 5540:1 5548:1 5582:1 5663:1 5705:1 5749:1 5877:1 5920:1 6000:1 6017:1 6192:1 6245:1 6275:1 6276:1 6282:1 6283:2 6379:1 6653:1 6679:1 6699:1 6855:1 6860:1 6906:1 6999:1 7050:1 7097:1 7099:1 7125:1 7180:1 7218:1 7570:1 7582:1 7603:2 7620:4 7644:1 7751:1 7826:1 8043:1 8062:1 8186:1 8194:1 8319:1 8376:1 8405:1 8430:2 8503:1 8510:1 8567:1 8572:1 8575:2 8640:1 8679:1 8719:1 8728:1 8772:1 8811:1 8815:1 8833:1 8936:1 9057:1 9077:1 9107:1 9115:1 9209:1 9226:2 9349:1 9360:1 9363:1 9365:1 9390:1 9433:1 9528:1 9663:1 9676:1 9677:1 9932:1 9954:1 9987:1 9996:1 10280:1 10372:1 10504:1 10558:1 10573:1 10665:1 10686:1 10839:1 10901:1 10937:1 10962:1 10989:1 11010:1 11071:1 11083:1 11100:1 11106:1 11197:1 11203:1 11208:1 11284:1 11370:1 11430:1 11476:1 11477:1 11514:1 11530:1 11550:1 11619:1 11684:1 11716:1 11734:1 11789:1 11824:1 11865:1 11936:1 11973:1 12004:1 12110:1 12111:1 12115:1 12132:1 12165:1 12166:1 12239:1 12281:1 12346:1 12349:1 12476:1 12515:1 12608:1 12648:1 12658:1 12671:1 12681:1 12764:1 12789:1 12813:1 12831:1 12888:1 13045:1 13049:1 13072:1 13087:1 13093:1 13128:1 13144:1 13206:1 13224:2 13232:1 13233:1 13282:1 13302:2 13306:1 13310:1 13372:1 13606:2 13610:1 13633:1 13697:1 13733:2 13847:1 13904:1 13931:1 13980:1 14018:1 14076:1 14107:1 14325:1 14433:1 14449:1 14485:1 14591:1 14820:1 14824:1 14893:1 14938:1 14961:1 15020:1 15037:1 15117:1 15123:1 15130:1 15173:1 15398:1 15403:1 15404:1 15414:1 15482:1 15607:1 15626:1 15642:1 15745:2 15871:1 15879:2 15893:1 15911:1 15967:1 16029:1 16194:1 16290:2 16338:1 16353:1 16505:1 16528:1 16546:1 16662:1 16666:1 16702:1 16761:1 16776:1 16843:1 16851:1 16905:1 16966:1 17013:1 17053:1 17059:1 17138:1 17179:1 17186:1 17199:1 17270:2 17397:1 17448:1 17475:1 17522:1 17592:2 17670:1 17747:1 17753:1 17781:3 17787:1 17794:1 17852:1 17873:1 17907:1 17931:1 17994:1 18032:1 18056:1 18133:1 18315:1 18331:1 18444:1 18449:1 18476:1 18516:1 18519:258 18715:1 18802:1 18842:2 18863:1 18907:1 19180:1 19192:1 19257:1 19335:1 19359:1 19412:1 19482:1 19494:1 19507:1 19515:1 19516:1 19550:1 19573:1 19719:1 19794:1 19818:1 19936:1 20032:1 20084:1 20086:1 20117:1 20187:1 20211:1 20212:1 20455:1 20525:1 20567:1 20594:1 20600:1 20652:1 20685:1 20738:1 20747:1 20823:1 20900:1 20907:1 20979:2 21062:1 21080:1 21122:1 21169:1 21387:1 21392:1 21406:1 21459:1 21520:1 21523:1 21654:1 21670:1 21675:2 21684:1 21712:1 21714:1 21771:1 21812:1 21867:1 22009:1 22077:1 22096:1 22173:1 22336:1 22345:1 22357:1 22414:3 22493:1 22616:1 22672:1 22687:1 22962:1 23033:1 23195:1 23254:1 23352:1 23361:1 23441:1 23559:1 23591:1 23600:1 23720:1 23722:1 23736:1 23744:1 23774:1 23814:1 23832:1 23918:1 23996:1 24093:1 24146:1 24160:1 24166:1 24183:1 24187:1 24237:1 24247:1 24295:1 24297:1 24321:1 24345:1 24401:1 24402:1 24450:1 24464:1 24547:1 24582:1 24665:1 24783:1 24822:1 24946:1 25005:1 25015:1 25089:1 25099:1 25104:1 25111:1 25141:2 25214:2 25473:1 25488:1 25665:1 25679:1 25708:1 25796:1 25812:1 25865:1 25906:1 25929:1 25953:1 25992:3 26033:1 26127:1 26185:1 26247:1 26373:2 26392:1 26582:1 26588:1 26840:1 26856:1 26960:1 26967:1 26994:1 27090:1 27187:1 27275:1 27332:1 27365:1 27563:1 27636:1 27675:1 27687:1 27692:2 27724:1 27777:1 27804:1 27867:1 27935:1 28028:1 28102:1 28126:1 28127:2 28131:1 28204:1 28214:1 28319:1 28356:1 28404:1 28536:1 28648:1 28748:1 28801:2 28816:1 28818:1 28836:2 28913:1 28914:1 28919:1 28941:1 28961:1 28963:1
9 14:1 37:1 83:1 143:1 150:1 162:1 189:2 282:1 295:4 303:1 333:1 348:1 424:2 442:1 564:1 596:1 598:1 643:1 752:1 770:1 795:1 843:1 856:2 879:3 892:1 899:1 905:1 963:1 974:1 996:1 1027:1 1045:1 1104:1 1148:2 1160:1 1244:1 1276:1 1284:1 1287:1 1313:1 1330:1 1355:1 1401:2 1402:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1508:1 1543:1 1547:1 1562:1 1627:2 1634:1 1699:1 1895:4 1935:1 1993:1 1998:1 2006:1 2082:1 2156:1 2178:1 2216:1 2219:1 2233:1 2234:1 2251:1 2253:1 2279:1 2315:1 2322:1 2347:1 2410:1 2485:2 2522:1 2552:1 2563:1 2609:1 2656:1 2730:1 2762:1 2775:2 2780:1 2867:1 2888:1 2909:1 2936:2 2961:1 2965:2 3105:1 3197:1 3266:1 3271:1 3357:1 3397:1 3459:1 3478:1 3489:1 3540:2 3570:1 3574:1 3582:1 3599:1 3607:1 3688:1 3692:1 3698:1 3737:1 3742:1 3748:1 3784:1 3789:1 3790:1 3813:1 3838:1 3895:1 3918:2 3989:1 3998:1 3999:1 4078:1 4093:1 4136:1 4204:1 4254:1 4434:1 4613:1 4619:1 4626:1 4646:1 4695:1 4724:1 4731:1 4746:1 4773:1 4876:2 4878:1 4928:2 4985:2 5005:1 5028:1 5176:1 5190:1 5195:1 5220:1 5245:1 5302:1 5328:1 5358:1 5369:1 5501:1 5538:1 5540:1 5548:1 5582:1 5615:1 5639:1 5663:1 5701:1 5705:1 5720:1 5749:1 5877:1 5920:1 6000:1 6017:1 6056:1 6150:1 6192:1 6245:1 6259:1 6274:1 6275:1 6276:1 6282:1 6283:2 6379:1 6565:1 6653:1 6679:1 6699:2 6855:2 6860:1 6871:1 6906:1 6999:1 7050:1 7097:1 7099:1 7125:1 7180:1 7218:1 7287:1 7554:1 7570:1 7582:1 7603:2 7620:5 7644:2 7648:1 7720:1 7725:1 7751:1 7826:1 7897:1 7928:1 8043:2 8044:1 8062:1 8136:1 8156:1 8186:1 8194:1 8254:1 8319:1 8358:1 8376:1 8405:1 8422:1 8430:2 8503:2 8510:1 8550:1 8567:1 8572:1 8575:2 8640:1 8679:1 8688:1 8719:1 8728:1 8772:1 8808:1 8811:2 8815:1 8833:1 8840:1 8857:1 8936:2 8950:1 9019:1 9057:1 9077:1 9107:1 9115:1 9209:1 9226:4 9261:1 9349:1 9360:1 9363:1 9365:1 9390:1 9433:1 9528:1 9529:1 9568:1 9586:1 9663:1 9676:1 9677:1 9932:1 9954:1 9987:1 9996:1 10073:1 10280:1 10372:1 10504:1 10558:1 10573:1 10582:1 10665:2 10686:1 10839:1 10901:1 10937:1 10962:1 10989:1 11010:1 11071:1 11083:1 11100:1 11106:1 11197:1 11203:1 11208:1 11284:1 11285:1 11302:1 11370:1 11430:1 11476:1 11477:1 11481:1 11514:1 11530:1 11550:1 11603:1 11619:1 11649:1 11684:1 11716:1 11734:1 11789:1 11824:1 11865:1 11936:1 11973:1 12004:1 12110:1 12111:2 12115:1 12132:1 12165:1 12166:1 12239:1 12281:2 12345:1 12346:1 12349:2 12362:1 12476:1 12508:1 12515:1 12526:1 12608:1 12648:1 12658:1 12668:1 12671:1 12681:1 12764:1 12789:1 12813:1 12831:1 12888:1 13045:1 13049:1 13072:1 13087:1 13093:1 13128:1 13144:1 13206:1 13224:2 13232:1 13233:1 13282:1 13302:3 13306:1 13310:1 13364:1 13372:3 13420:1 13599:1 13606:2 13610:1 13633:1 13694:1 13697:1 13723:1 13733:2 13779:1 13847:1 13904:1 13931:1 13974:1 13980:1 14006:1 14018:1 14076:1 14107:1 14312:1 14325:1 14433:1 14449:1 14485:1 14492:1 14591:1 14820:2 14824:1 14893:1 14916:1 14938:1 14961:1 15020:1 15037:1 15117:1 15123:1 15130:1 15173:1 15332:1 15398:1 15403:1 15404:1 15414:1 15482:1 15607:1 15626:1 15642:1 15687:1 15745:2 15871:1 15879:3 15893:1 15911:1 15967:1 16029:1 16048:1 16119:1 16150:1 16194:1 16196:1 16289:1 16290:2 16338:1 16353:1 16403:1 16505:1 16528:1 16546:1 16639:1 16662:1 16666:1 16702:1 16761:1 16776:1 16828:1 16843:1 16851:1 16905:1 16966:1 17013:1 17053:1 17059:1 17091:1 17136:1 17138:1 17179:1 17186:1 17199:1 17270:2 17346:1 17374:1 17397:1 17448:1 17475:3 17522:3 17592:2 17631:1 17670:1 17683:1 17747:1 17753:1 17781:5 17787:1 17794:1 17822:1 17852:1 17855:1 17860:1 17873:1 17907:1 17922:1 17931:1 17994:1 17998:1 18007:1 18032:1 18056:1 18080:1 18133:1 18315:2 18331:1 18444:1 18449:1 18461:1 18476:1 18481:1 18504:1 18516:1 18519:358 18538:1 18608:1 18715:1 18802:1 18842:4 18863:1 18907:1 19079:1 19142:1 19180:1 19190:1 19192:1 19235:1 19257:1 19298:1 19335:1 19359:1 19412:1 19482:1 19494:1 19507:1 19508:1 19515:1 19516:1 19549:1 19550:1 19573:1 19719:1 19794:1 19818:1 19936:1 19964:1 20032:1 20068:1 20084:1 20086:1 20117:1 20187:1 20211:2 20212:2 20218:1 20455:1 20525:1 20567:1 20594:1 20600:1 20652:1 20685:1 20738:1 20747:1 20770:1 20782:1 20823:1 20900:1 20907:2 20945:1 20979:2 21016:1 21062:1 21080:1 21088:1 21122:1 21158:1 21169:1 21387:1 21392:1 21406:1 21459:1 21518:1 21520:1 21523:1 21544:1 21580:1 21654:1 21670:1 21675:2 21684:1 21712:1 21714:1 21724:1 21771:1 21778:1 21812:1 21867:2 21971:1 22009:2 22077:1 22096:1 22173:1 22174:2 22212:1 22223:1 22291:1 22336:1 22345:1 22357:1 22414:5 22493:1 22585:1 22616:1 22672:1 22687:1 22721:1 22947:1 22962:1 22982:1 23033:1 23143:1 23195:1 23254:1 23343:1 23352:1 23361:1 23441:1 23532:1 23559:1 23568:1 23591:1 23600:1 23651:1 23720:1 23722:1 23736:1 23744:1 23774:1 23814:1 23832:1 23918:1 23920:1 23996:1 24093:1 24146:1 24150:1 24159:1 24160:1 24164:2 24166:2 24174:1 24175:1 24183:1 24187:2 24236:1 24237:1 24247:1 24295:1 24297:1 24321:1 24342:1 24345:1 24362:1 24401:1 24402:1 24440:1 24450:1 24464:1 24547:1 24582:1 24665:1 24783:1 24816:1 24822:1 24946:1 24997:1 25005:1 25015:2 25089:1 25093:1 25099:1 25104:1 25111:1 25141:2 25144:1 25214:2 25258:2 25436:2 25468:1 25473:1 25488:1 25665:1 25679:1 25708:1 25729:1 25796:1 25812:1 25865:2 25906:1 25929:1 25953:1 25992:3 26021:1 26033:1 26127:1 26170:1 26175:1 26185:1 26247:1 26338:1 26373:2 26392:1 26476:1 26582:1 26588:1 26599:1 26681:1 26817:1 26840:1 26856:1 26960:1 26967:1 26994:1 27036:1 27057:1 27090:1 27136:1 27141:1 27187:1 27275:1 27332:1 27365:3 27563:1 27575:1 27636:1 27675:1 27687:2 27692:2 27702:1 27724:1 27739:1 27777:1 27804:1 27867:1 27874:1 27889:1 27935:1 27948:1 27960:1 27968:1 28028:1 28030:1 28102:1 28126:1 28127:2 28131:1 28204:1 28214:1 28319:1 28356:1 28363:1 28404:1 28506:2 28536:1 28553:1 28594:1 28648:1 28703:1 28709:1 28734:1 28748:1 28792:1 28801:2 28816:1 28818:1 28836:2 28913:1 28914:1 28919:1 28941:1 28961:1 28963:1
9 14:1 37:1 60:1 83:1 89:1 143:1 150:1 153:1 162:1 189:2 270:1 282:1 295:5 303:1 318:1 333:1 348:1 403:1 424:3 442:1 564:1 569:1 596:1 598:1 643:1 685:1 752:1 770:1 795:1 842:1 843:1 856:2 879:3 892:1 893:1 899:1 905:1 963:1 974:1 996:1 1027:1 1045:1 1104:2 1148:2 1160:1 1244:1 1276:1 1284:1 1287:1 1313:1 1330:1 1355:1 1401:2 1402:1 1423:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1508:1 1543:1 1547:1 1562:1 1619:1 1627:2 1634:1 1699:1 1778:1 1789:1 1895:4 1903:1 1935:1 1993:1 1998:1 2006:1 2082:1 2156:1 2178:1 2216:1 2219:1 2223:1 2233:1 2234:1 2237:1 2251:2 2253:3 2279:1 2315:1 2322:1 2347:1 2374:1 2410:1 2421:1 2485:2 2522:1 2552:1 2563:1 2609:1 2651:1 2656:1 2667:1 2708:1 2730:1 2761:1 2762:1 2775:2 2780:1 2867:1 2888:1 2909:1 2936:2 2961:1 2965:2 3023:1 3105:1 3188:1 3197:1 3266:1 3271:1 3357:1 3397:1 3420:1 3459:1 3478:1 3488:1 3489:1 3540:2 3570:1 3574:1 3582:1 3599:1 3607:1 3639:2 3684:1 3688:1 3692:1 3698:1 3712:1 3730:1 3737:1 3742:2 3748:1 3784:1 3789:1 3790:1 3813:1 3838:1 3851:1 3895:1 3918:2 3989:1 3998:2 3999:2 4078:1 4093:1 4129:1 4136:1 4204:1 4254:1 4362:1 4434:1 4455:1 4613:1 4619:2 4626:1 4646:1 4695:1 4724:1 4731:1 4746:1 4773:1 4818:1 4876:3 4878:1 4925:1 4928:2 4985:2 5005:1 5008:1 5028:1 5046:1 5176:1 5190:1 5195:1 5220:1 5245:1 5302:1 5306:1 5328:1 5358:2 5369:1 5501:1 5538:1 5540:1 5548:1 5582:1 5615:1 5639:1 5663:1 5701:1 5705:1 5720:2 5749:1 5812:1 5877:1 5920:1 5972:2 6000:1 6017:1 6056:1 6130:1 6150:1 6192:1 6245:1 6259:1 6263:1 6274:1 6275:1 6276:1 6282:1 6283:2 6284:1 6379:1 6556:1 6565:1 6598:1 6653:1 6679:1 6699:2 6715:1 6757:1 6795:1 6855:2 6860:1 6871:1 6906:1 6999:1 7050:1 7052:1 7097:1 7099:1 7124:1 7125:1 7180:1 7218:1 7263:1 7287:1 7311:1 7427:1 7499:1 7554:1 7570:1 7582:2 7603:2 7620:9 7644:2 7648:1 7696:1 7720:1 7725:1 7751:1 7758:1 7826:1 7897:1 7928:1 8043:2 8044:1 8062:1 8124:1 8136:1 8156:1 8186:1 8194:1 8254:1 8270:1 8319:1 8358:1 8376:1 8405:1 8422:1 8430:2 8503:2 8510:1 8512:1 8550:1 8567:1 8572:1 8575:2 8586:1 8640:1 8679:1 8688:1 8719:1 8728:1 8772:1 8808:1 8811:2 8815:1 8833:1 8840:1 8857:1 8914:1 8936:2 8950:1 9019:1 9022:1 9057:1 9077:1 9107:1 9115:1 9209:1 9226:5 9261:1 9349:1 9360:1 9363:1 9365:1 9390:1 9421:1 9433:1 9490:1 9528:1 9529:1 9568:1 9569:1 9586:1 9663:1 9676:1 9677:1 9746:1 9880:1 9932:1 9954:1 9987:1 9996:1 10073:1 10135:1 10280:1 10372:1 10478:1 10504:2 10513:1 10555:1 10558:1 10573:1 10582:1 10590:1 10665:2 10686:3 10839:1 10901:1 10937:1 10962:1 10989:1 11010:1 11063:1 11071:1 11083:1 11100:1 11106:1 11118:1 11197:1 11203:1 11208:1 11284:1 11285:1 11300:1 11302:1 11370:1 11371:1 11430:1 11476:1 11477:1 11481:1 11514:1 11530:1 11550:1 11603:2 11619:1 11645:1 11649:1 11684:1 11716:1 11734:1 11789:1 11824:1 11865:1 11936:1 11973:1 12004:1 12110:1 12111:2 12115:1 12132:1 12165:1 12166:1 12239:1 12281:2 12345:1 12346:1 12349:2 12362:1 12476:1 12508:1 12515:1 12526:1 12608:1 12621:1 12648:1 12658:1 12668:1 12671:1 12681:1 12701:1 12764:1 12789:1 12813:1 12831:1 12888:1 12914:1 13045:1 13049:1 13072:1 13080:1 13087:1 13093:1 13128:1 13144:1 13206:1 13224:2 13232:1 13233:1 13282:1 13302:3 13306:1 13310:1 13320:1 13341:1 13364:1 13372:3 13420:1 13421:1 13599:1 13606:2 13607:1 13610:1 13633:1 13680:1 13694:1 13697:1 13723:1 13733:2 13764:1 13779:1 13788:1 13827:1 13847:1 13904:1 13931:1 13974:1 13980:1 14006:1 14018:1 14076:1 14089:1 14107:1 14152:1 14223:1 14274:1 14312:1 14325:1 14385:1 14433:1 14449:1 14485:1 14492:1 14591:1 14623:1 14820:2 14824:1 14837:1 14891:1 14893:1 14916:1 14938:1 14961:1 15020:1 15037:1 15117:1 15123:1 15130:1 15173:1 15322:1 15332:1 15398:1 15403:1 15404:1 15414:1 15482:1 15607:1 15625:1 15626:1 15642:1 15644:1 15687:1 15745:3 15831:1 15871:1 15879:3 15893:1 15911:1 15967:1 16029:1 16048:2 16119:1 16122:1 16150:1 16190:1 16194:1 16196:1 16289:1 16290:2 16338:1 16353:1 16403:1 16505:1 16511:1 16528:1 16546:1 16639:1 16662:1 16666:2 16702:1 16761:1 16776:1 16828:1 16843:1 16844:2 16851:1 16905:1 16915:1 16947:1 16966:1 17013:1 17053:1 17059:1 17091:2 17136:1 17138:1 17172:1 17179:1 17186:1 17199:2 17210:1 17270:2 17346:1 17374:1 17397:1 17448:1 17475:3 17522:3 17587:1 17592:2 17631:1 17644:1 17662:1 17665:1 17670:1 17683:1 17747:1 17753:1 17781:5 17787:1 17794:1 17819:1 17822:1 17852:1 17855:1 17860:1 17873:1 17907:1 17922:1 17931:1 17989:1 17994:1 17998:1 18007:2 18032:1 18056:1 18080:1 18133:1 18315:2 18331:1 18399:1 18444:1 18449:1 18461:1 18476:1 18481:1 18504:2 18516:1 18519:457 18538:1 18608:1 18648:1 18715:1 18802:1 18808:1 18842:5 18863:2 18907:1 19079:1 19142:1 19180:1 19190:1 19192:1 19235:1 19257:1 19298:2 19335:2 19359:1 19412:1 19482:1 19494:1 19507:1 19508:1 19515:1 19516:1 19549:1 19550:1 19573:1 19600:1 19719:1 19724:1 19775:1 19794:1 19816:1 19818:1 19936:1 19964:1 20032:1 20068:1 20084:1 20086:1 20117:1 20187:1 20211:2 20212:2 20218:1 20226:1 20237:1 20455:1 20474:1 20525:1 20567:1 20594:1 20600:1 20652:1 20685:1 20738:1 20747:1 20770:1 20782:1 20823:1 20862:1 20900:1 20907:2 20945:1 20979:2 21016:1 21029:1 21062:1 21080:1 21088:1 21122:1 21158:1 21169:1 21320:1 21387:1 21392:1 21406:1 21459:1 21518:1 21520:1 21523:1 21544:1 21548:1 21580:1 21654:1 21670:1 21675:2 21684:1 21695:1 21712:1 21714:1 21724:1 21771:1 21778:1 21812:1 21867:2 21971:1 22009:2 22061:1 22077:1 22096:1 22173:1 22174:2 22212:1 22223:2 22236:1 22252:1 22291:1 22318:1 22336:1 22345:1 22357:1 22406:1 22414:5 22422:1 22464:1 22467:1 22493:1 22495:1 22585:1 22616:1 22672:1 22687:1 22721:1 22726:1 22848:1 22947:1 22962:1 22982:1 23033:1 23143:1 23184:1 23195:1 23254:1 23343:1 23352:1 23361:1 23441:1 23532:1 23559:1 23568:1 23591:1 23600:1 23616:1 23620:1 23651:1 23659:1 23720:1 23722:1 23736:1 23744:1 23774:1 23814:1 23832:1 23875:1 23918:1 23920:1 23996:1 24093:1 24146:1 24150:1 24159:1 24160:1 24162:1 24164:2 24166:2 24174:1 24175:1 24183:1 24187:2 24233:1 24236:1 24237:1 24247:1 24267:1 24295:1 24297:1 24321:1 24342:1 24345:1 24362:1 24401:1 24402:1 24440:1 24450:1 24464:1 24508:1 24547:2 24582:1 24665:1 24780:1 24783:1 24816:1 24822:1 24946:2 24990:1 24997:1 25005:1 25015:2 25028:1 25089:1 25093:1 25099:1 25104:1 25111:1 25114:2 25141:2 25144:2 25214:2 25258:2 25401:1 25436:2 25468:1 25473:1 25488:1 25665:1 25679:1 25708:1 25729:1 25796:1 25812:1 25865:2 25906:1 25929:1 25930:1 25936:1 25953:1 25992:4 26021:1 26033:1 26127:1 26133:1 26170:1 26175:1 26185:1 26221:1 26247:1 26338:1 26373:2 26392:2 26476:1 26548:1 26582:1 26588:1 26599:1 26681:2 26709:1 26817:1 26840:1 26856:1 26960:2 26967:1 26981:1 26994:1 27036:1 27057:1 27090:1 27136:1 27141:1 27187:1 27275:1 27332:1 27365:3 27563:1 27575:1 27636:1 27675:1 27687:3 27692:2 27702:1 27724:1 27739:1 27777:1 27804:1 27867:1 27874:1 27889:1 27900:1 27935:1 27948:1 27960:1 27968:1 28028:1 28030:1 28102:1 28126:1 28127:2 28128:1 28131:1 28204:1 28214:1 28292:1 28319:1 28356:1 28363:1 28397:1 28404:1 28413:1 28419:1 28506:2 28520:1 28536:1 28553:1 28594:1 28648:1 28703:1 28709:1 28734:1 28748:1 28792:1 28801:2 28816:1 28818:1 28836:2 28913:1 28914:1 28919:1 28941:1 28961:1 28963:1
9 11:1 14:1 37:1 60:1 83:1 89:1 143:1 150:1 153:1 162:1 189:2 214:1 245:1 270:1 282:1 295:7 303:1 316:1 318:1 333:1 348:1 403:1 424:3 442:1 564:1 569:1 590:1 596:2 598:1 600:1 643:1 685:1 752:1 770:1 795:1 808:1 830:1 832:1 842:1 843:1 856:3 871:1 877:1 879:3 885:1 892:1 893:1 899:1 905:2 963:1 974:1 989:1 996:1 1027:1 1045:1 1104:2 1148:2 1160:1 1163:1 1207:1 1244:1 1257:1 1276:1 1284:1 1287:1 1313:1 1330:1 1355:1 1401:2 1402:1 1420:1 1423:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1508:1 1543:1 1547:1 1562:1 1619:1 1627:3 1634:1 1699:1 1778:1 1789:1 1819:1 1895:5 1903:1 1935:1 1993:1 1998:1 2006:1 2011:1 2082:1 2085:1 2089:1 2095:1 2156:1 2178:1 2212:1 2216:1 2219:1 2223:1 2227:1 2233:1 2234:1 2237:1 2251:3 2253:4 2279:1 2309:1 2315:1 2322:1 2336:1 2347:1 2374:1 2410:1 2421:2 2465:1 2485:2 2522:1 2536:1 2543:1 2552:1 2563:1 2609:2 2648:1 2651:1 2656:1 2667:1 2708:1 2713:1 2730:2 2760:1 2761:1 2762:1 2766:1 2775:2 2780:1 2854:1 2867:1 2888:1 2909:1 2936:2 2961:1 2965:2 3023:1 3105:1 3188:1 3197:1 3266:1 3271:1 3293:1 3357:1 3397:1 3420:1 3459:1 3472:1 3478:1 3488:1 3489:1 3540:2 3570:1 3574:1 3582:1 3599:2 3607:1 3639:3 3684:1 3688:1 3692:1 3698:1 3712:1 3730:1 3737:1 3742:2 3748:1 3784:1 3789:1 3790:1 3792:1 3813:1 3838:1 3851:1 3895:1 3918:2 3977:1 3982:1 3989:1 3998:3 3999:2 4005:1 4078:1 4093:1 4129:1 4136:1 4204:1 4254:1 4282:1 4362:2 4428:1 4434:1 4455:1 4583:1 4613:1 4619:2 4626:1 4646:1 4691:1 4695:2 4724:1 4731:1 4746:1 4773:1 4818:1 4876:3 4878:1 4895:1 4925:1 4928:2 4985:2 5005:1 5008:1 5013:2 5028:1 5042:1 5046:2 5064:1 5176:1 5190:1 5195:1 5220:1 5245:1 5255:1 5280:1 5302:1 5306:1 5328:1 5358:3 5369:2 5501:1 5538:1 5540:2 5548:1 5582:1 5615:1 5639:1 5663:2 5701:1 5705:1 5720:2 5749:1 5812:1 5877:1 5920:1 5972:2 6000:1 6017:1 6040:1 6056:1 6110:1 6130:1 6150:1 6192:1 6245:1 6259:2 6263:1 6270:1 6274:1 6275:1 6276:1 6282:1 6283:2 6284:1 6379:1 6493:1 6537:1 6556:1 6565:1 6598:1 6653:1 6679:1 6699:3 6715:1 6722:1 6757:1 6795:1 6855:2 6860:1 6871:1 6906:1 6999:1 7050:1 7052:1 7097:1 7099:1 7124:1 7125:1 7180:1 7218:1 7263:1 7287:1 7311:1 7346:1 7347:1 7382:1 7427:1 7499:1 7518:1 7554:1 7555:3 7570:1 7582:2 7603:2 7620:12 7643:1 7644:2 7648:1 7696:1 7710:1 7720:1 7725:1 7751:1 7758:1 7826:1 7897:1 7928:1 8043:2 8044:1 8062:1 8124:1 8136:1 8156:1 8186:1 8194:1 8254:1 8270:1 8301:2 8319:1 8358:1 8376:1 8395:1 8405:1 8422:1 8430:2 8460:1 8503:2 8510:1 8512:1 8550:1 8567:1 8572:1 8575:2 8586:1 8640:1 8679:1 8688:1 8719:1 8728:1 8772:1 8808:1 8811:2 8815:1 8833:1 8840:1 8857:1 8914:1 8936:2 8950:1 9019:1 9022:1 9040:1 9057:1 9077:1 9107:1 9115:1 9209:1 9226:7 9247:1 9261:1 9314:1 9349:1 9360:1 9363:1 9365:1 9390:1 9421:1 9433:1 9490:1 9528:1 9529:1 9558:1 9568:1 9569:1 9586:1 9601:1 9663:1 9676:1 9677:1 9700:1 9746:1 9829:1 9880:1 9932:1 9938:1 9954:1 9987:1 9996:1 10073:1 10094:1 10125:1 10135:1 10241:1 10280:1 10302:1 10372:1 10436:1 10478:1 10504:2 10513:1 10537:1 10555:1 10557:1 10558:1 10573:1 10582:1 10590:1 10621:1 10665:2 10686:4 10783:1 10787:1 10839:1 10901:1 10937:1 10943:1 10953:1 10962:1 10989:1 11010:1 11014:1 11062:1 11063:1 11071:1 11083:1 11100:1 11106:1 11118:1 11197:1 11203:1 11208:1 11284:1 11285:1 11300:1 11302:1 11315:1 11333:1 11370:1 11371:1 11430:1 11469:1 11476:1 11477:1 11481:1 11514:1 11530:1 11550:1 11603:2 11619:1 11645:1 11649:1 11664:1 11684:1 11716:1 11734:1 11789:1 11824:1 11865:1 11936:1 11952:1 11973:1 11997:1 12004:1 12110:1 12111:2 12115:1 12132:1 12165:1 12166:1 12178:1 12239:1 12250:1 12281:2 12345:1 12346:1 12349:2 12362:1 12476:1 12508:1 12515:1 12526:1 12608:1 12621:1 12648:1 12658:1 12668:1 12671:1 12681:1 12701:1 12764:1 12769:1 12789:1 12813:1 12831:1 12888:1 12914:1 13045:1 13049:1 13072:1 13080:1 13087:1 13093:1 13094:1 13128:1 13144:1 13206:1 13224:2 13232:1 13233:1 13282:1 13302:3 13306:1 13310:1 13320:1 13341:1 13364:1 13372:3 13376:1 13420:1 13421:1 13599:1 13606:2 13607:1 13610:1 13628:1 13633:1 13680:1 13694:1 13697:1 13723:1 13733:2 13764:1 13779:1 13788:1 13827:1 13847:1 13904:1 13931:1 13974:1 13980:1 14006:1 14018:1 14076:1 14089:1 14107:1 14140:1 14152:1 14179:1 14223:1 14274:1 14312:1 14317:1 14324:1 14325:1 14339:1 14376:1 14385:1 14433:1 14449:2 14485:1 14492:1 14533:1 14591:1 14623:1 14820:2 14824:1 14837:1 14891:1 14893:1 14916:1 14936:1 14938:1 14961:1 15020:1 15037:1 15117:1 15123:1 15130:1 15173:1 15233:1 15322:1 15332:1 15398:1 15403:1 15404:1 15414:1 15420:1 15435:1 15482:2 15539:1 15578:1 15607:2 15625:1 15626:1 15642:1 15644:1 15679:1 15687:1 15745:3 15831:1 15832:1 15871:1 15879:3 15893:1 15896:1 15911:1 15967:1 16029:1 16048:2 16095:1 16119:1 16122:1 16150:1 16190:1 16194:1 16196:1 16289:1 16290:2 16338:1 16353:1 16403:1 16505:1 16511:1 16528:1 16546:1 16639:1 16662:1 16666:2 16702:1 16738:1 16761:1 16776:1 16828:1 16843:1 16844:2 16851:1 16905:1 16915:1 16947:1 16966:1 17013:1 17053:1 17059:1 17091:3 17136:1 17138:1 17172:1 17179:1 17186:1 17199:2 17210:1 17270:2 17346:1 17374:1 17397:1 17447:1 17448:2 17475:3 17522:3 17585:1 17587:1 17592:2 17604:1 17631:1 17644:1 17662:1 17665:2 17667:1 17670:1 17683:1 17692:1 17747:1 17753:1 17781:6 17787:1 17794:1 17819:1 17822:1 17852:1 17855:1 17860:1 17873:1 17882:1 17907:1 17922:1 17931:1 17979:1 17989:1 17994:1 17998:1 18007:2 18032:1 18056:1 18080:1 18133:1 18170:1 18315:2 18331:1 18399:1 18444:1 18449:1 18461:1 18476:1 18481:1 18504:2 18516:1 18519:554 18524:1 18538:1 18608:1 18648:1 18715:1 18720:1 18802:1 18808:1 18842:7 18863:2 18904:1 18907:1 19055:1 19079:1 19142:1 19176:1 19180:1 19190:1 19192:1 19197:1 19235:1 19257:1 19298:3 19335:2 19336:1 19359:1 19412:1 19475:1 19482:1 19494:1 19507:1 19508:1 19515:1 19516:1 19549:1 19550:1 19573:1 19600:1 19674:1 19719:1 19724:1 19752:1 19775:1 19794:1 19816:1 19818:1 19918:1 19936:1 19964:1 20004:1 20031:1 20032:1 20037:1 20068:1 20084:1 20086:1 20117:1 20187:1 20211:2 20212:2 20218:1 20226:1 20237:1 20293:1 20404:1 20455:1 20474:1 20525:1 20567:2 20594:1 20600:1 20652:1 20685:1 20692:1 20710:1 20722:1 20738:1 20747:1 20770:1 20782:1 20823:1 20846:1 20862:1 20900:1 20907:2 20918:1 20945:1 20979:2 21016:1 21029:1 21062:1 21075:1 21080:1 21088:1 21100:1 21122:1 21158:1 21169:1 21289:1 21320:1 21380:1 21387:1 21392:1 21397:1 21406:1 21415:1 21444:1 21459:1 21472:1 21504:1 21518:1 21520:1 21523:1 21544:1 21548:2 21580:1 21654:1 21670:1 21675:2 21684:1 21695:1 21712:1 21714:1 21715:1 21724:1 21771:1 21778:1 21812:1 21822:1 21827:1 21867:2 21941:1 21952:1 21971:1 22009:2 22021:1 22059:1 22061:1 22077:1 22096:2 22173:1 22174:2 22178:1 22189:2 22212:1 22223:2 22236:1 22252:1 22291:1 22318:1 22331:1 22336:1 22345:1 22357:1 22362:1 22406:1 22412:1 22414:6 22422:1 22464:1 22467:1 22493:1 22495:1 22585:1 22593:1 22599:1 22616:1 22672:1 22687:1 22705:1 22721:1 22726:1 22848:1 22947:1 22948:1 22962:1 22964:1 22982:1 23033:1 23143:1 23165:1 23184:1 23195:1 23254:1 23340:1 23343:1 23352:1 23361:1 23441:1 23452:1 23494:1 23532:1 23559:1 23568:1 23591:1 23600:1 23616:1 23620:1 23651:1 23659:1 23720:1 23722:1 23736:1 23744:1 23774:1 23798:1 23806:1 23814:1 23832:1 23875:1 23899:1 23918:1 23919:1 23920:1 23994:1 23996:1 24044:1 24093:1 24101:1 24146:1 24150:1 24159:1 24160:1 24162:1 24164:2 24166:2 24174:1 24175:1 24183:1 24187:2 24233:1 24236:1 24237:1 24247:1 24267:1 24295:1 24297:1 24321:1 24342:1 24345:1 24362:1 24401:1 24402:1 24440:2 24450:1 24453:1 24464:1 24508:1 24547:2 24548:1 24582:1 24630:1 24658:1 24665:1 24746:1 24757:1 24780:1 24783:1 24810:1 24816:1 24822:1 24912:1 24946:2 24990:1 24997:1 25005:1 25015:2 25028:1 25089:1 25093:1 25099:1 25104:1 25111:1 25114:3 25137:1 25139:1 25141:2 25144:2 25162:1 25170:1 25214:2 25258:2 25401:1 25425:1 25436:2 25468:1 25473:1 25488:1 25561:1 25665:1 25676:1 25679:1 25708:1 25729:1 25742:1 25796:1 25812:1 25838:1 25865:2 25906:1 25929:1 25930:1 25936:1 25953:1 25992:4 25994:1 26021:1 26033:1 26038:1 26127:1 26133:1 26170:1 26175:1 26185:1 26221:1 26247:1 26261:1 26300:1 26309:1 26338:1 26373:2 26392:2 26476:1 26548:1 26582:1 26588:1 26599:1 26681:2 26709:1 26736:1 26817:1 26840:1 26856:1 26960:2 26967:1 26981:1 26994:1 27036:1 27057:1 27090:1 27113:1 27136:1 27141:1 27187:1 27275:1 27332:1 27365:3 27563:1 27575:1 27595:1 27636:1 27675:1 27687:3 27692:2 27702:1 27724:1 27739:1 27777:1 27804:1 27820:1 27859:3 27867:1 27874:1 27889:1 27900:1 27935:1 27948:1 27960:1 27968:1 28011:1 28028:1 28030:1 28051:1 28068:1 28102:1 28126:1 28127:2 28128:1 28131:1 28204:1 28214:1 28218:1 28292:1 28319:1 28356:1 28363:1 28397:1 28404:1 28413:1 28419:1 28461:1 28506:2 28520:1 28536:1 28553:1 28594:1 28648:1 28703:1 28709:1 28724:1 28734:1 28748:1 28792:1 28801:2 28816:1 28818:1 28836:3 28913:2 28914:1 28919:1 28925:1 28941:1 28961:1 28963:1
9 11:1 14:1 37:1 60:1 83:1 89:1 125:1 143:1 150:1 153:1 162:1 170:1 189:2 214:1 245:1 270:1 282:1 295:8 303:1 316:1 318:1 333:1 348:1 403:1 424:3 442:1 564:1 569:1 590:1 596:2 598:1 600:1 643:1 685:1 752:1 770:1 795:1 807:1 808:1 830:1 832:1 842:1 843:1 856:4 871:1 877:1 879:3 885:1 892:1 893:1 899:1 905:2 963:1 974:2 989:1 996:1 1027:1 1045:1 1087:1 1104:2 1148:2 1160:1 1163:1 1207:1 1244:1 1257:1 1276:1 1284:1 1287:1 1313:1 1330:1 1355:1 1401:2 1402:1 1420:1 1423:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1508:1 1543:1 1547:1 1562:1 1596:1 1619:1 1627:3 1634:1 1699:1 1778:1 1789:1 1819:1 1895:6 1903:1 1923:1 1935:1 1962:1 1993:1 1998:1 2006:1 2011:1 2082:1 2085:1 2089:1 2095:1 2154:1 2156:1 2174:1 2178:1 2212:1 2216:1 2219:1 2221:1 2223:1 2227:1 2233:1 2234:1 2237:1 2251:3 2253:4 2279:1 2309:1 2315:1 2322:1 2336:1 2343:1 2347:1 2374:1 2410:1 2421:2 2465:1 2485:4 2522:1 2536:1 2543:1 2552:1 2563:1 2609:2 2648:1 2651:1 2656:1 2667:1 2708:1 2713:1 2730:2 2760:1 2761:1 2762:1 2766:1 2775:2 2780:1 2854:1 2867:2 2888:1 2909:1 2936:3 2961:1 2965:2 3023:1 3105:1 3188:1 3197:1 3243:1 3266:1 3271:1 3293:1 3357:1 3397:1 3407:1 3420:1 3459:1 3472:1 3478:1 3488:1 3489:1 3540:2 3570:1 3574:1 3582:1 3599:2 3607:1 3615:1 3639:3 3684:1 3688:1 3692:1 3698:1 3712:1 3730:1 3737:1 3742:2 3746:1 3748:1 3784:1 3789:2 3790:1 3792:1 3813:1 3838:1 3851:1 3895:1 3918:2 3970:1 3977:1 3982:1 3988:1 3989:1 3998:3 3999:2 4005:1 4078:1 4093:1 4129:1 4136:1 4201:1 4204:1 4254:1 4282:1 4362:2 4428:1 4434:1 4455:1 4494:1 4583:1 4613:1 4619:2 4626:1 4646:1 4691:1 4695:2 4724:1 4731:1 4746:1 4773:1 4818:1 4876:4 4878:1 4895:1 4925:1 4928:2 4985:2 5005:1 5006:1 5008:1 5013:2 5028:1 5042:1 5046:2 5064:1 5176:1 5190:1 5195:1 5220:1 5245:1 5255:1 5280:1 5302:1 5306:1 5328:1 5358:3 5369:2 5386:1 5429:1 5501:1 5538:1 5540:2 5548:1 5582:1 5615:1 5639:1 5663:2 5681:1 5701:1 5705:1 5720:2 5721:1 5749:1 5812:1 5877:1 5920:1 5972:2 6000:1 6017:1 6040:1 6056:1 6110:1 6130:1 6137:1 6142:1 6150:1 6192:1 6245:1 6259:2 6263:1 6270:1 6274:1 6275:1 6276:1 6282:1 6283:3 6284:2 6379:2 6493:1 6537:1 6542:1 6556:1 6565:1 6598:1 6653:1 6654:1 6679:1 6699:3 6715:1 6722:1 6757:1 6795:1 6855:2 6860:1 6871:1 6885:1 6906:1 6999:1 7050:2 7052:1 7091:1 7097:1 7099:1 7124:1 7125:1 7180:1 7218:1 7234:1 7263:1 7287:1 7311:1 7346:1 7347:1 7367:1 7382:1 7427:1 7463:1 7499:1 7518:1 7554:1 7555:4 7570:1 7582:2 7603:2 7620:13 7643:1 7644:3 7648:1 7671:1 7696:1 7710:1 7720:1 7725:1 7751:1 7758:1 7826:1 7897:1 7928:1 8043:2 8044:1 8062:1 8116:1 8124:1 8136:1 8142:1 8156:3 8186:1 8194:1 8236:1 8254:1 8270:1 8301:2 8319:1 8358:1 8376:1 8387:1 8395:1 8405:1 8422:1 8430:4 8460:1 8490:1 8503:2 8508:1 8510:1 8512:1 8513:1 8543:1 8550:1 8567:1 8572:1 8575:2 8586:1 8640:1 8679:1 8688:1 8719:1 8728:1 8772:1 8808:1 8810:1 8811:2 8815:1 8833:1 8840:1 8857:1 8914:1 8936:2 8950:1 8971:1 9019:1 9022:1 9040:1 9050:1 9057:1 9077:1 9107:1 9115:1 9209:1 9226:8 9247:1 9261:1 9314:1 9349:1 9360:1 9363:1 9365:1 9390:1 9421:1 9433:1 9490:1 9528:1 9529:1 9558:1 9568:1 9569:1 9586:1 9601:1 9634:1 9663:1 9676:1 9677:1 9700:1 9746:2 9829:1 9880:1 9911:1 9932:1 9938:1 9954:1 9956:1 9968:1 9987:1 9996:1 10073:1 10094:1 10125:1 10126:1 10135:1 10241:1 10280:1 10302:1 10359:1 10372:1 10436:1 10478:1 10486:1 10504:2 10513:1 10524:1 10526:1 10537:1 10555:1 10557:1 10558:1 10573:1 10582:1 10590:1 10621:1 10665:2 10686:4 10783:1 10787:1 10839:1 10857:1 10901:1 10903:1 10937:1 10943:1 10953:1 10962:1 10989:1 11010:1 11014:1 11016:1 11062:1 11063:1 11071:1 11083:1 11100:1 11106:1 11118:1 11175:1 11197:1 11203:1 11208:1 11284:1 11285:1 11300:1 11302:1 11315:1 11333:1 11370:1 11371:1 11430:1 11469:1 11476:1 11477:1 11481:1 11514:1 11530:1 11550:1 11603:2 11615:1 11619:1 11645:1 11649:1 11664:1 11684:1 11716:1 11734:1 11772:1 11789:1 11824:1 11852:1 11865:1 11936:1 11952:1 11973:1 11997:1 12004:1 12110:1 12111:2 12115:1 12132:1 12165:1 12166:1 12178:1 12239:1 12250:1 12281:2 12345:1 12346:1 12349:2 12362:1 12476:1 12508:1 12515:1 12526:1 12608:1 12621:1 12633:1 12648:1 12658:1 12668:1 12671:1 12681:1 12701:1 12733:1 12764:1 12769:1 12789:1 12796:1 12813:1 12831:1 12835:1 12888:1 12914:1 13045:1 13049:1 13072:1 13076:1 13080:1 13087:1 13093:1 13094:1 13128:1 13144:1 13206:1 13211:1 13213:1 13224:2 13232:1 13233:1 13252:1 13282:1 13302:3 13306:1 13310:1 13320:1 13341:1 13364:1 13372:3 13376:1 13420:1 13421:1 13599:1 13601:1 13606:2 13607:1 13610:1 13620:1 13628:1 13633:1 13680:1 13694:1 13697:1 13723:1 13733:2 13764:1 13779:1 13788:1 13827:1 13847:1 13904:1 13931:1 13974:1 13980:1 14006:1 14018:1 14076:2 14089:1 14107:1 14134:1 14140:1 14152:1 14179:1 14180:1 14223:1 14274:1 14312:1 14317:1 14324:1 14325:1 14339:1 14376:1 14385:1 14433:1 14449:2 14485:1 14492:1 14533:1 14573:1 14591:1 14623:1 14647:1 14820:2 14824:1 14837:1 14891:1 14893:1 14916:1 14936:1 14938:1 14961:1 15020:1 15037:1 15117:1 15123:1 15130:1 15173:1 15233:1 15301:1 15322:1 15332:2 15385:1 15398:1 15403:1 15404:1 15414:1 15420:1 15431:1 15435:1 15471:1 15482:2 15539:1 15578:1 15607:2 15625:1 15626:1 15642:1 15644:1 15679:1 15687:1 15745:3 15831:1 15832:1 15871:1 15879:3 15893:1 15896:1 15909:1 15911:1 15967:1 16014:1 16029:2 16048:2 16095:1 16119:1 16122:1 16150:1 16172:1 16177:1 16190:1 16194:1 16196:1 16289:1 16290:2 16338:1 16353:1 16363:1 16398:1 16403:1 16505:1 16511:1 16528:1 16546:1 16589:1 16597:1 16639:1 16662:1 16666:2 16702:1 16708:1 16714:1 16738:1 16761:1 16776:1 16828:1 16843:1 16844:2 16851:1 16905:1 16915:1 16947:1 16966:1 17013:1 17053:1 17059:1 17091:3 17136:1 17138:1 17155:1 17172:1 17179:1 17186:1 17199:2 17210:1 17270:2 17277:1 17346:1 17360:1 17374:2 17397:1 17401:1 17422:1 17447:1 17448:2 17475:3 17476:1 17522:3 17523:1 17585:1 17587:1 17592:2 17604:1 17631:1 17644:1 17648:1 17662:1 17665:2 17667:1 17670:1 17683:1 17692:1 17747:1 17753:1 17767:1 17781:7 17787:1 17794:1 17819:1 17822:1 17852:1 17855:1 17860:1 17873:1 17882:1 17896:1 17907:1 17922:1 17931:1 17962:1 17977:1 17979:1 17989:1 17994:1 17998:2 18007:2 18009:1 18032:1 18056:1 18080:1 18133:1 18170:1 18212:1 18315:4 18331:1 18399:1 18444:1 18449:1 18461:1 18476:1 18478:1 18481:1 18504:2 18509:1 18516:1 18519:624 18524:1 18538:1 18573:1 18608:1 18643:1 18648:1 18715:1 18720:1 18802:1 18808:1 18842:8 18863:2 18904:1 18907:1 18930:1 19055:1 19079:1 19142:1 19176:1 19180:1 19190:1 19192:1 19197:1 19235:1 19257:1 19271:1 19298:4 19335:2 19336:1 19359:1 19412:1 19475:1 19482:1 19494:1 19507:1 19508:1 19515:1 19516:1 19549:1 19550:1 19551:1 19573:1 19600:1 19661:1 19674:1 19719:1 19724:1 19752:1 19775:1 19784:1 19794:1 19816:1 19818:1 19839:1 19862:1 19918:1 19936:1 19949:1 19964:1 20003:1 20004:1 20031:1 20032:1 20037:1 20068:1 20084:1 20086:1 20117:1 20159:1 20187:1 20211:2 20212:2 20218:1 20226:1 20237:1 20283:1 20293:1 20404:1 20453:1 20455:2 20474:1 20525:1 20531:1 20567:2 20594:1 20600:1 20652:1 20656:1 20677:1 20683:1 20685:1 20692:1 20710:1 20722:1 20738:1 20747:1 20770:1 20782:1 20797:1 20823:1 20846:1 20862:1 20900:1 20907:2 20918:1 20945:1 20948:1 20979:2 21016:1 21029:1 21062:1 21075:1 21080:1 21088:1 21100:1 21122:1 21158:1 21169:1 21289:1 21320:1 21371:1 21380:1 21387:1 21392:1 21397:1 21406:1 21415:1 21444:1 21459:1 21472:1 21504:1 21518:1 21520:1 21523:1 21544:1 21548:3 21580:1 21654:1 21670:1 21675:3 21684:1 21695:2 21712:1 21714:1 21715:1 21724:1 21771:1 21778:1 21812:1 21822:1 21827:1 21830:1 21867:2 21941:1 21952:1 21971:1 22009:2 22021:1 22052:1 22059:1 22061:1 22077:1 22096:2 22150:1 22173:1 22174:2 22178:1 22189:2 22212:1 22223:2 22236:1 22252:1 22291:1 22318:1 22331:1 22336:1 22345:1 22357:1 22362:1 22406:1 22412:1 22414:7 22422:1 22427:1 22464:1 22467:1 22493:1 22495:1 22585:1 22593:1 22599:1 22616:1 22672:1 22676:1 22687:1 22691:1 22705:1 22721:1 22726:1 22848:1 22947:1 22948:1 22962:1 22964:1 22982:1 23033:1 23099:1 23143:1 23165:1 23184:1 23195:1 23254:1 23297:1 23302:1 23340:1 23343:1 23352:1 23361:2 23403:1 23441:1 23452:1 23494:1 23532:1 23559:1 23568:1 23591:1 23592:1 23600:1 23616:1 23620:1 23651:1 23659:1 23720:1 23722:1 23736:1 23744:1 23774:1 23798:1 23806:1 23814:1 23832:1 23875:1 23884:1 23899:1 23918:1 23919:1 23920:1 23966:1 23994:1 23996:1 24044:1 24058:1 24093:1 24101:1 24146:1 24150:1 24159:1 24160:1 24162:1 24164:2 24166:2 24167:1 24174:1 24175:1 24183:1 24187:2 24233:1 24236:1 24237:1 24247:1 24267:1 24295:1 24297:1 24307:1 24321:1 24342:1 24345:1 24362:1 24401:1 24402:1 24440:2 24450:1 24453:1 24464:1 24508:1 24547:2 24548:1 24582:1 24630:1 24645:1 24658:1 24665:1 24746:1 24757:1 24780:1 24783:1 24810:1 24816:1 24822:1 24912:1 24946:2 24969:1 24990:1 24997:1 25005:1 25015:2 25028:1 25038:1 25089:1 25093:1 25099:1 25104:1 25111:1 25114:3 25137:1 25139:2 25141:3 25144:2 25162:1 25167:1 25170:1 25214:2 25258:2 25401:1 25425:1 25436:2 25468:1 25473:1 25488:1 25561:1 25665:1 25676:1 25679:1 25708:1 25729:1 25742:1 25757:1 25796:1 25804:1 25812:1 25838:1 25865:4 25906:1 25929:1 25930:1 25936:1 25953:1 25992:4 25994:1 26021:1 26033:1 26038:1 26127:2 26133:1 26170:1 26175:1 26185:1 26221:1 26247:1 26261:1 26300:1 26309:1 26338:1 26373:4 26392:2 26476:1 26499:1 26548:1 26582:1 26588:1 26599:1 26681:2 26709:2 26721:1 26736:1 26788:1 26817:1 26840:1 26856:2 26960:2 26967:1 26981:1 26994:1 27003:1 27036:1 27057:1 27090:1 27113:1 27136:1 27141:1 27187:1 27275:1 27332:1 27365:3 27563:2 27575:1 27595:1 27636:1 27675:1 27687:6 27689:1 27692:4 27702:1 27724:1 27739:1 27777:1 27804:1 27820:1 27838:1 27859:4 27867:1 27874:1 27889:1 27900:1 27917:1 27935:1 27948:1 27960:1 27968:1 28003:1 28011:1 28028:1 28030:1 28051:1 28068:1 28102:1 28126:1 28127:2 28128:1 28131:1 28204:1 28214:1 28218:1 28292:1 28319:1 28356:1 28363:1 28380:1 28397:1 28404:1 28413:1 28419:1 28461:1 28506:2 28520:1 28536:1 28553:1 28594:1 28648:1 28703:1 28709:1 28724:1 28734:1 28748:1 28792:1 28801:2 28816:1 28818:1 28836:3 28849:1 28913:2 28914:1 28919:1 28924:1 28925:1 28941:1 28961:1 28963:1
9 11:1 14:1 37:1 60:1 83:1 89:1 109:1 125:1 143:1 150:1 153:1 162:1 170:1 189:2 214:1 245:1 270:1 282:1 293:1 295:9 303:1 316:1 318:2 333:1 348:1 403:1 424:3 442:1 444:1 564:1 569:1 590:1 596:2 598:1 600:1 643:1 685:1 752:1 770:1 788:1 795:1 807:1 808:1 830:1 832:1 842:1 843:1 856:4 871:1 877:1 879:3 885:1 892:1 893:1 899:1 905:3 925:1 963:1 974:2 989:1 996:1 998:1 1027:1 1045:1 1087:1 1104:2 1148:2 1160:1 1163:1 1207:1 1244:1 1257:1 1276:1 1284:1 1287:1 1313:1 1330:1 1355:1 1401:2 1402:1 1420:1 1423:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1508:1 1543:1 1547:1 1555:1 1562:1 1571:1 1596:1 1598:1 1619:1 1627:3 1634:1 1699:1 1778:1 1789:1 1819:1 1895:6 1903:1 1923:1 1935:1 1962:2 1993:1 1998:1 2006:1 2011:1 2082:1 2085:1 2089:1 2095:1 2154:1 2156:1 2174:1 2178:1 2207:1 2212:1 2216:1 2219:1 2221:2 2223:2 2227:1 2233:1 2234:1 2237:1 2251:4 2253:5 2279:1 2309:1 2315:1 2322:1 2336:1 2339:1 2343:1 2347:1 2374:1 2410:1 2421:3 2465:1 2485:4 2522:2 2536:1 2543:1 2552:2 2563:1 2609:2 2648:1 2651:2 2656:1 2667:1 2675:1 2708:1 2713:1 2730:3 2760:1 2761:1 2762:1 2766:1 2775:2 2780:1 2854:1 2867:2 2888:1 2909:1 2936:3 2961:1 2965:3 2968:1 3023:1 3075:1 3105:1 3188:1 3197:1 3243:1 3256:1 3266:1 3271:1 3293:1 3295:1 3357:1 3397:1 3407:1 3420:1 3459:1 3471:1 3472:1 3478:1 3488:1 3489:1 3517:1 3540:2 3570:1 3574:1 3582:1 3599:3 3607:1 3615:1 3639:3 3684:1 3688:1 3692:1 3698:2 3712:1 3730:1 3737:1 3742:2 3744:1 3746:1 3748:1 3779:1 3783:1 3784:1 3789:3 3790:1 3792:1 3813:1 3838:1 3851:1 3895:1 3904:1 3918:2 3970:1 3977:1 3982:1 3988:1 3989:1 3998:3 3999:2 4005:1 4040:1 4054:2 4078:1 4093:1 4129:1 4136:1 4201:1 4204:1 4254:1 4272:1 4282:1 4362:2 4428:1 4434:1 4455:1 4494:1 4583:1 4613:1 4619:2 4626:2 4646:1 4691:1 4695:3 4724:1 4731:1 4742:1 4746:1 4773:1 4818:1 4876:4 4878:1 4895:2 4925:1 4928:4 4940:1 4985:3 5003:1 5005:1 5006:1 5008:1 5013:2 5028:1 5042:1 5046:2 5064:1 5090:1 5176:1 5190:1 5195:1 5220:1 5245:2 5255:1 5280:1 5302:1 5306:1 5328:1 5358:3 5369:2 5386:1 5429:1 5501:1 5524:1 5535:1 5538:1 5540:2 5548:1 5582:2 5584:1 5615:2 5639:1 5663:2 5681:1 5701:1 5705:1 5720:2 5721:1 5749:1 5812:1 5850:1 5877:1 5920:1 5947:1 5972:4 6000:1 6017:1 6040:1 6056:1 6110:1 6130:1 6137:1 6142:1 6150:1 6153:1 6176:1 6192:1 6245:1 6259:2 6263:1 6270:1 6274:1 6275:1 6276:1 6282:1 6283:5 6284:2 6379:2 6493:1 6537:1 6542:1 6556:1 6565:1 6598:1 6653:1 6654:1 6679:1 6699:3 6715:1 6722:1 6728:1 6757:1 6795:1 6855:2 6860:1 6871:1 6885:1 6906:1 6987:1 6999:1 7050:2 7052:1 7091:1 7097:1 7099:1 7124:1 7125:1 7180:1 7218:1 7234:1 7263:1 7287:1 7311:1 7346:1 7347:1 7367:1 7382:1 7386:1 7427:1 7463:1 7499:1 7518:1 7554:1 7555:5 7570:1 7580:1 7582:2 7603:2 7620:17 7643:1 7644:3 7648:1 7671:1 7696:1 7710:1 7720:1 7725:2 7751:1 7755:1 7758:1 7826:1 7897:1 7928:1 8004:1 8043:2 8044:2 8062:1 8116:1 8124:1 8136:1 8142:1 8156:3 8186:1 8194:1 8236:1 8254:1 8270:1 8299:1 8301:2 8311:1 8319:1 8358:1 8376:2 8387:1 8395:1 8405:1 8412:1 8422:1 8430:4 8460:1 8490:1 8503:2 8504:1 8508:1 8510:1 8512:1 8513:1 8543:1 8550:1 8567:1 8572:1 8575:2 8586:1 8640:1 8679:1 8688:1 8719:1 8728:1 8772:2 8808:1 8810:1 8811:3 8815:1 8833:1 8840:1 8857:1 8914:1 8936:2 8950:1 8971:1 9019:1 9022:1 9040:1 9050:1 9057:1 9077:1 9107:1 9115:1 9209:1 9216:1 9226:9 9247:1 9261:1 9305:1 9314:1 9329:1 9349:1 9360:1 9363:2 9365:1 9390:1 9421:1 9433:1 9490:1 9497:1 9528:1 9529:1 9539:1 9558:1 9568:1 9569:1 9586:1 9601:1 9634:1 9663:1 9676:1 9677:2 9700:1 9746:2 9829:1 9850:1 9871:1 9880:1 9898:1 9911:1 9919:1 9932:1 9938:1 9954:1 9956:1 9968:2 9987:1 9996:1 10073:1 10094:1 10125:1 10126:1 10135:1 10241:1 10280:1 10302:1 10329:1 10347:1 10359:1 10372:1 10436:1 10478:1 10486:1 10504:2 10513:1 10524:1 10526:1 10537:1 10555:1 10557:1 10558:1 10573:1 10582:1 10590:1 10592:1 10621:1 10665:2 10686:4 10783:1 10787:1 10839:1 10857:1 10901:1 10903:1 10909:1 10910:1 10937:1 10943:1 10953:1 10962:1 10989:2 11010:1 11014:1 11016:1 11062:1 11063:1 11071:1 11083:1 11100:1 11106:1 11118:1 11175:1 11197:1 11203:1 11208:1 11284:1 11285:1 11300:1 11301:1 11302:1 11315:1 11333:1 11370:1 11371:1 11430:1 11442:1 11469:1 11476:1 11477:1 11481:1 11509:1 11514:1 11530:1 11550:1 11603:2 11615:1 11619:1 11645:1 11649:1 11664:1 11684:1 11690:1 11716:1 11734:1 11772:1 11789:1 11824:1 11852:1 11865:2 11936:1 11952:1 11973:2 11997:1 12004:1 12110:2 12111:3 12115:1 12132:1 12165:1 12166:1 12178:1 12239:1 12250:1 12276:1 12281:2 12345:1 12346:1 12349:2 12362:1 12458:1 12476:1 12508:1 12515:1 12526:1 12608:1 12621:1 12633:1 12648:1 12658:1 12668:1 12671:1 12681:1 12701:1 12733:1 12764:1 12769:1 12789:1 12796:1 12813:1 12831:1 12835:1 12888:1 12914:1 13045:1 13049:1 13072:1 13076:2 13080:1 13087:1 13093:1 13094:1 13128:1 13144:1 13206:1 13211:1 13213:1 13224:2 13232:1 13233:1 13252:1 13278:1 13282:1 13302:3 13306:1 13310:1 13320:1 13341:1 13364:1 13372:3 13376:1 13420:1 13421:1 13557:1 13599:1 13601:1 13606:2 13607:1 13610:1 13620:1 13628:1 13633:1 13654:1 13680:1 13694:1 13697:1 13723:1 13733:2 13764:1 13779:1 13788:2 13827:1 13832:1 13847:1 13904:1 13931:1 13974:1 13980:1 14006:1 14018:1 14076:3 14089:1 14107:2 14134:1 14140:1 14152:1 14179:1 14180:1 14223:1 14274:1 14312:1 14317:1 14324:1 14325:2 14335:1 14339:1 14376:1 14385:1 14433:1 14449:2 14485:1 14492:1 14533:1 14573:1 14591:1 14623:1 14647:1 14820:3 14824:1 14837:1 14891:2 14893:1 14916:1 14936:1 14938:1 14961:1 15020:1 15037:1 15117:1 15123:1 15130:1 15173:1 15177:1 15233:1 15301:1 15322:1 15332:3 15385:1 15398:1 15403:1 15404:1 15414:1 15420:1 15431:1 15435:1 15471:1 15482:2 15539:1 15563:1 15578:1 15591:1 15607:2 15614:1 15625:1 15626:1 15642:1 15644:1 15679:1 15687:1 15745:3 15831:1 15832:1 15871:1 15879:3 15893:1 15896:1 15909:1 15911:1 15967:1 15973:1 16014:1 16029:3 16048:2 16095:1 16119:1 16122:1 16150:1 16164:1 16172:1 16177:1 16190:1 16194:1 16196:1 16242:1 16289:1 16290:2 16338:1 16353:1 16363:1 16398:1 16403:1 16505:1 16511:1 16528:1 16546:1 16589:1 16597:1 16639:1 16662:1 16666:2 16702:1 16708:1 16714:1 16738:1 16761:1 16776:1 16828:1 16843:1 16844:2 16851:1 16905:1 16915:1 16929:1 16947:1 16966:1 17013:1 17053:1 17059:2 17091:3 17136:1 17138:1 17155:1 17172:1 17179:1 17186:1 17199:2 17210:1 17265:1 17270:2 17277:1 17346:1 17360:1 17374:2 17397:1 17401:1 17422:1 17447:1 17448:2 17475:3 17476:1 17522:4 17523:2 17560:1 17585:1 17587:1 17592:4 17604:1 17631:1 17644:2 17648:1 17662:1 17665:2 17667:1 17670:1 17683:1 17692:1 17722:1 17747:1 17753:1 17767:2 17781:8 17787:1 17790:1 17794:1 17819:1 17822:1 17838:1 17852:1 17855:1 17860:1 17871:1 17873:1 17882:1 17896:1 17907:1 17922:1 17931:1 17962:1 17977:1 17979:1 17989:1 17994:1 17998:2 18007:2 18009:1 18019:1 18032:1 18056:1 18080:1 18133:1 18170:1 18212:1 18315:4 18331:1 18399:1 18444:1 18449:1 18461:1 18476:2 18478:1 18481:1 18504:2 18509:1 18516:1 18519:702 18524:1 18538:1 18572:1 18573:1 18608:1 18643:1 18648:1 18715:1 18720:1 18802:1 18808:1 18842:9 18863:2 18904:1 18907:1 18930:1 19017:1 19055:1 19079:1 19135:2 19142:1 19176:1 19180:1 19190:1 19192:1 19197:1 19210:1 19228:1 19235:1 19257:1 19271:1 19298:5 19335:2 19336:1 19359:1 19412:1 19475:1 19482:1 19494:1 19507:1 19508:1 19515:2 19516:1 19549:1 19550:1 19551:1 19573:1 19600:1 19661:1 19674:1 19719:1 19724:1 19752:1 19775:1 19784:1 19794:1 19816:1 19818:1 19839:1 19862:1 19918:1 19936:1 19949:1 19964:1 19978:1 20003:1 20004:1 20031:1 20032:1 20037:1 20068:1 20084:1 20086:1 20117:1 20159:1 20187:1 20211:2 20212:2 20218:1 20226:1 20231:1 20237:1 20283:1 20293:1 20404:1 20453:1 20455:2 20465:1 20474:1 20525:1 20531:1 20567:3 20594:1 20600:1 20652:1 20656:1 20658:1 20677:1 20683:1 20685:1 20692:1 20710:1 20722:1 20738:1 20747:1 20770:1 20782:1 20797:1 20823:1 20846:1 20862:1 20900:1 20907:2 20918:1 20945:1 20948:1 20979:2 21016:1 21029:1 21062:1 21075:1 21080:1 21088:1 21100:1 21122:1 21158:1 21169:1 21174:1 21289:1 21320:1 21345:1 21371:1 21380:1 21387:1 21392:1 21397:1 21406:1 21415:1 21444:1 21459:1 21472:1 21504:1 21518:1 21520:1 21523:1 21544:1 21548:4 21580:1 21654:1 21663:1 21670:1 21675:4 21684:1 21695:2 21712:1 21714:1 21715:1 21724:1 21771:1 21778:1 21812:1 21822:1 21827:1 21830:1 21848:1 21867:2 21941:1 21952:1 21971:1 22009:2 22021:1 22052:1 22059:1 22061:1 22077:1 22096:2 22150:1 22173:1 22174:2 22178:1 22189:2 22212:1 22223:2 22236:1 22252:2 22291:1 22302:1 22318:1 22331:1 22336:1 22345:1 22357:1 22362:1 22406:1 22412:1 22414:8 22422:1 22427:1 22464:1 22467:1 22493:1 22495:1 22585:1 22593:1 22599:1 22616:1 22621:1 22672:1 22676:1 22687:1 22691:1 22699:1 22705:1 22721:1 22726:1 22737:1 22848:1 22947:1 22948:1 22962:2 22964:1 22982:1 22998:1 23033:1 23099:1 23143:1 23165:1 23184:1 23188:1 23195:1 23239:1 23254:1 23297:1 23302:1 23310:1 23326:1 23340:1 23343:1 23352:1 23361:3 23403:1 23441:1 23452:1 23494:1 23532:1 23559:1 23568:1 23591:1 23592:1 23600:1 23616:2 23620:1 23651:1 23659:1 23720:1 23722:1 23736:1 23744:1 23774:1 23798:1 23806:1 23814:1 23832:1 23875:1 23884:2 23896:2 23899:1 23918:1 23919:1 23920:1 23966:1 23994:1 23996:1 24044:1 24058:1 24093:1 24101:1 24146:1 24150:1 24159:1 24160:1 24162:1 24164:2 24166:3 24167:1 24174:1 24175:1 24183:1 24187:2 24233:1 24236:2 24237:1 24247:1 24267:1 24295:1 24297:1 24307:1 24321:1 24342:1 24345:1 24362:1 24401:1 24402:1 24440:2 24450:2 24453:1 24464:1 24508:1 24547:2 24548:1 24582:1 24630:1 24645:1 24658:1 24665:1 24746:1 24757:1 24780:1 24783:2 24810:1 24816:1 24822:2 24912:1 24946:3 24969:2 24990:1 24997:1 25005:1 25015:2 25028:1 25038:1 25089:1 25093:2 25099:1 25104:1 25111:1 25114:3 25137:1 25139:2 25141:4 25144:2 25162:1 25167:1 25170:1 25214:2 25258:2 25335:1 25401:1 25425:1 25436:2 25468:1 25473:1 25488:1 25515:1 25561:1 25576:1 25665:1 25676:1 25679:1 25708:1 25729:1 25742:1 25757:1 25796:1 25804:1 25812:1 25838:1 25865:4 25880:1 25906:1 25929:1 25930:1 25936:1 25953:1 25992:4 25994:1 26021:1 26033:1 26038:1 26127:2 26133:1 26166:1 26170:1 26175:1 26185:1 26221:1 26247:1 26261:1 26300:1 26309:1 26338:1 26339:1 26352:1 26373:4 26392:2 26476:1 26499:1 26548:1 26582:1 26588:1 26599:1 26681:2 26709:2 26721:1 26736:1 26759:1 26778:1 26788:2 26817:1 26840:1 26856:3 26933:1 26960:2 26967:2 26981:1 26994:1 27003:1 27033:1 27036:1 27057:1 27090:1 27113:1 27136:1 27141:1 27187:1 27275:1 27332:1 27365:3 27563:3 27575:1 27595:1 27636:1 27675:1 27687:6 27689:1 27692:4 27702:1 27724:1 27739:1 27777:1 27804:1 27820:1 27838:1 27859:5 27867:1 27874:1 27889:1 27900:1 27917:1 27935:1 27948:1 27960:1 27964:1 27968:1 28003:1 28011:1 28028:1 28030:1 28051:1 28054:1 28068:1 28102:1 28126:1 28127:2 28128:1 28131:1 28204:1 28214:1 28218:1 28292:1 28319:1 28356:1 28363:1 28375:1 28380:1 28397:1 28404:1 28411:1 28413:1 28419:1 28461:1 28506:2 28520:1 28536:1 28553:1 28594:1 28648:1 28703:1 28709:1 28724:1 28734:1 28748:1 28792:1 28801:4 28816:1 28818:1 28836:3 28849:2 28913:3 28914:2 28919:1 28924:1 28925:1 28941:1 28961:2 28963:2
9 11:1 14:1 37:1 60:1 83:1 89:1 90:1 109:1 125:1 143:1 150:1 153:1 162:1 170:2 189:2 214:1 245:1 270:1 282:1 293:1 295:10 303:1 316:1 318:2 333:1 348:1 403:1 424:3 442:1 444:1 563:2 564:1 569:1 590:1 596:2 598:1 600:1 643:1 685:1 752:1 770:1 788:1 795:1 807:1 808:1 830:2 832:1 842:1 843:1 856:4 871:1 877:1 879:3 885:1 892:1 893:1 899:1 905:3 925:1 963:1 974:2 989:1 996:1 998:1 1019:1 1027:1 1045:1 1078:1 1087:1 1104:2 1148:2 1160:1 1163:1 1207:1 1244:1 1257:1 1276:1 1284:1 1287:1 1313:1 1330:1 1355:1 1397:2 1401:3 1402:1 1420:1 1423:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1508:1 1543:1 1547:1 1555:1 1562:1 1571:1 1596:1 1598:1 1619:1 1627:3 1634:1 1699:1 1778:1 1789:1 1819:1 1895:7 1903:1 1923:1 1929:1 1935:1 1962:2 1965:2 1993:1 1998:1 2006:1 2011:1 2082:1 2085:1 2089:1 2095:1 2100:1 2154:1 2156:1 2174:1 2177:1 2178:2 2190:1 2207:1 2212:1 2216:1 2219:1 2220:1 2221:2 2223:2 2227:1 2233:1 2234:1 2237:1 2251:4 2253:5 2279:1 2309:1 2315:1 2322:1 2336:1 2339:1 2343:1 2347:1 2374:1 2376:1 2392:1 2410:2 2421:3 2465:1 2485:4 2522:2 2536:1 2543:1 2552:2 2563:1 2609:2 2648:1 2651:2 2656:1 2667:1 2675:1 2708:1 2713:1 2730:3 2760:1 2761:1 2762:1 2766:1 2775:2 2780:1 2782:1 2854:1 2867:5 2888:1 2900:1 2909:1 2936:5 2961:1 2965:3 2968:1 3023:1 3075:1 3105:1 3106:1 3188:1 3197:1 3243:1 3256:1 3266:1 3271:1 3293:1 3295:1 3357:1 3397:1 3407:1 3420:1 3459:1 3471:1 3472:1 3475:1 3478:1 3488:1 3489:1 3517:1 3540:2 3570:1 3574:1 3582:1 3599:3 3607:1 3615:1 3639:3 3684:1 3688:1 3692:1 3698:2 3712:1 3730:1 3737:1 3740:1 3742:2 3744:1 3746:1 3748:1 3779:1 3783:1 3784:1 3789:3 3790:1 3792:1 3813:1 3838:1 3851:1 3866:1 3876:1 3895:1 3904:1 3918:2 3943:1 3970:1 3977:1 3982:1 3988:1 3989:1 3998:3 3999:2 4005:1 4040:1 4054:2 4078:1 4093:1 4129:1 4136:1 4193:2 4201:1 4204:1 4219:1 4254:1 4272:1 4282:1 4362:2 4428:1 4434:1 4455:1 4494:1 4583:1 4613:1 4619:2 4626:2 4646:1 4691:1 4695:3 4724:1 4731:1 4742:1 4746:1 4773:2 4787:1 4818:1 4876:6 4878:2 4895:2 4925:1 4928:4 4940:1 4985:3 5003:1 5005:2 5006:1 5008:1 5013:2 5028:1 5033:1 5042:1 5045:1 5046:2 5064:1 5090:1 5131:1 5176:1 5190:1 5195:1 5219:1 5220:1 5245:2 5255:1 5280:1 5302:1 5306:1 5307:1 5328:1 5358:3 5369:2 5386:1 5429:1 5501:1 5524:1 5535:1 5538:1 5540:2 5548:1 5582:2 5584:1 5615:2 5639:1 5640:1 5663:2 5681:1 5694:1 5701:1 5705:1 5720:2 5721:1 5749:1 5812:1 5850:1 5877:1 5920:1 5947:1 5972:5 5992:2 6000:1 6017:1 6040:1 6056:1 6110:1 6130:1 6137:1 6142:1 6150:1 6153:1 6176:1 6192:1 6245:1 6259:2 6263:1 6270:1 6274:1 6275:1 6276:2 6282:1 6283:7 6284:2 6334:1 6379:2 6493:1 6502:1 6537:1 6542:1 6556:1 6565:1 6598:1 6653:1 6654:1 6679:1 6699:3 6715:1 6722:1 6728:1 6757:1 6795:1 6854:1 6855:2 6860:1 6866:1 6871:1 6885:1 6906:1 6987:1 6999:1 7050:3 7052:1 7074:1 7091:1 7097:1 7099:1 7124:1 7125:1 7180:1 7198:1 7218:1 7234:1 7248:1 7263:1 7287:1 7311:1 7346:1 7347:1 7367:1 7371:1 7382:1 7386:1 7427:1 7463:1 7499:1 7518:1 7554:1 7555:6 7570:1 7580:1 7582:2 7603:2 7620:18 7622:1 7643:1 7644:5 7648:1 7671:1 7696:1 7710:1 7720:1 7725:2 7751:1 7755:1 7758:1 7826:1 7878:1 7897:2 7928:1 8004:1 8032:1 8043:2 8044:2 8062:1 8107:1 8116:1 8124:1 8136:1 8142:1 8154:1 8156:3 8186:1 8194:1 8236:1 8254:1 8270:1 8299:1 8301:2 8311:1 8319:1 8358:1 8376:2 8379:1 8387:1 8395:1 8405:1 8412:1 8422:1 8430:4 8438:1 8441:1 8460:1 8490:1 8503:2 8504:1 8505:1 8508:1 8510:1 8512:1 8513:1 8543:2 8550:1 8567:1 8572:1 8575:2 8586:1 8604:1 8640:1 8679:1 8688:1 8719:1 8728:1 8772:2 8808:1 8810:1 8811:3 8815:1 8833:1 8840:1 8857:1 8914:1 8936:2 8950:1 8971:1 9019:1 9022:1 9035:1 9040:1 9050:1 9057:1 9077:1 9107:1 9115:2 9139:1 9209:1 9216:1 9226:10 9247:1 9261:1 9305:1 9314:1 9329:1 9349:1 9360:1 9363:3 9365:1 9390:1 9421:1 9433:1 9490:1 9497:1 9528:1 9529:1 9539:1 9558:1 9568:1 9569:1 9586:1 9594:1 9601:1 9634:1 9652:1 9663:1 9676:1 9677:2 9700:1 9746:2 9829:1 9847:2 9850:1 9871:1 9880:1 9898:1 9911:1 9919:1 9932:1 9938:1 9954:1 9956:1 9968:4 9987:1 9996:1 10038:1 10065:1 10073:1 10094:1 10125:1 10126:1 10135:1 10191:1 10241:1 10280:1 10302:1 10329:1 10347:1 10359:2 10372:1 10436:1 10478:1 10486:1 10504:2 10513:1 10524:1 10526:1 10537:1 10555:1 10557:1 10558:1 10573:1 10582:1 10590:1 10592:2 10621:1 10665:2 10683:1 10686:4 10740:1 10783:1 10787:1 10839:1 10857:1 10901:1 10903:1 10909:1 10910:1 10937:1 10943:1 10953:1 10962:1 10989:3 11010:1 11014:1 11016:1 11062:1 11063:1 11071:1 11083:1 11094:1 11100:1 11106:1 11118:1 11175:1 11197:1 11203:2 11208:1 11248:1 11284:1 11285:1 11300:1 11301:1 11302:1 11315:1 11317:1 11333:1 11370:1 11371:1 11430:1 11442:1 11469:1 11476:1 11477:1 11481:1 11509:1 11514:1 11526:1 11530:2 11550:2 11603:2 11609:1 11615:1 11619:1 11631:1 11645:1 11649:1 11664:1 11684:1 11690:1 11693:1 11716:1 11734:1 11772:1 11789:1 11824:1 11852:1 11865:2 11936:1 11952:1 11973:2 11997:1 12004:1 12110:2 12111:3 12115:1 12132:1 12165:1 12166:2 12178:1 12239:1 12250:1 12276:1 12281:3 12345:1 12346:1 12349:2 12362:1 12458:1 12476:1 12508:1 12515:1 12526:1 12608:1 12621:1 12633:1 12648:4 12658:1 12668:1 12671:2 12681:1 12701:1 12733:1 12764:1 12769:1 12789:1 12796:1 12813:1 12831:1 12835:1 12888:1 12914:1 13045:1 13049:1 13072:1 13076:2 13080:1 13087:1 13093:1 13094:4 13128:1 13144:1 13206:1 13211:1 13213:1 13224:2 13232:2 13233:1 13252:1 13278:1 13282:1 13302:3 13306:1 13310:1 13320:1 13341:1 13364:1 13372:3 13376:1 13420:1 13421:1 13454:1 13557:1 13599:1 13601:1 13606:2 13607:1 13610:1 13620:1 13628:1 13633:1 13654:1 13680:2 13694:1 13697:1 13723:1 13733:2 13764:1 13779:1 13788:2 13827:1 13832:2 13847:1 13904:1 13931:1 13974:1 13980:1 14006:1 14018:1 14076:3 14089:1 14107:2 14134:1 14140:1 14152:1 14179:1 14180:1 14223:1 14274:1 14312:1 14317:1 14318:2 14324:1 14325:3 14335:1 14339:1 14347:1 14376:1 14385:1 14433:1 14449:2 14482:1 14485:1 14492:1 14533:1 14573:1 14591:1 14623:1 14647:1 14701:1 14798:1 14820:3 14824:1 14837:1 14891:2 14893:1 14916:1 14936:1 14938:1 14961:2 14970:1 14986:1 15020:1 15037:1 15117:1 15123:1 15130:1 15146:1 15173:1 15177:1 15233:1 15245:1 15301:1 15322:1 15332:3 15385:2 15398:1 15403:1 15404:1 15414:1 15420:1 15431:1 15435:1 15471:1 15482:2 15539:1 15556:1 15563:1 15578:1 15591:1 15607:2 15614:1 15624:1 15625:1 15626:1 15642:1 15644:1 15679:1 15687:1 15745:3 15831:1 15832:1 15871:1 15879:3 15893:1 15896:1 15909:1 15911:1 15967:1 15973:1 16014:1 16029:3 16030:1 16048:2 16055:1 16095:1 16119:1 16122:1 16150:1 16164:1 16172:1 16177:1 16190:1 16194:1 16196:1 16242:1 16289:1 16290:2 16338:1 16353:1 16363:1 16398:1 16403:1 16482:1 16489:1 16505:1 16511:1 16528:1 16546:1 16589:1 16597:1 16639:1 16662:1 16666:2 16685:1 16702:1 16708:1 16714:1 16716:1 16738:1 16747:1 16761:1 16776:1 16828:1 16843:1 16844:2 16851:1 16905:1 16915:1 16929:1 16947:1 16966:1 17013:1 17053:1 17059:3 17091:3 17136:1 17138:1 17155:1 17156:1 17172:1 17179:1 17186:1 17199:2 17207:1 17210:1 17265:1 17270:2 17277:1 17346:1 17360:1 17363:1 17374:2 17397:1 17401:1 17422:1 17447:1 17448:2 17454:2 17475:3 17476:1 17522:4 17523:2 17560:1 17585:1 17587:1 17592:4 17604:1 17631:1 17644:2 17648:1 17662:1 17665:2 17667:1 17670:1 17683:1 17692:1 17722:1 17747:1 17753:1 17767:2 17781:9 17787:1 17790:1 17794:1 17819:1 17822:1 17838:1 17852:1 17855:1 17860:1 17871:1 17873:1 17882:1 17896:1 17907:1 17922:1 17931:1 17962:1 17977:1 17979:1 17989:1 17994:1 17998:2 18007:2 18009:1 18019:1 18032:1 18056:1 18067:1 18080:1 18120:1 18133:1 18170:1 18212:1 18219:1 18220:1 18315:4 18331:1 18399:1 18444:1 18449:1 18461:1 18476:2 18478:1 18481:1 18504:2 18509:1 18516:1 18519:773 18524:1 18538:1 18572:1 18573:1 18608:1 18643:1 18648:1 18715:2 18720:1 18725:1 18727:1 18728:1 18802:1 18808:1 18842:10 18863:2 18904:1 18907:1 18920:1 18930:1 18947:1 19017:1 19055:1 19079:1 19113:1 19135:2 19140:1 19142:1 19176:1 19180:1 19190:1 19192:1 19197:2 19210:1 19228:1 19235:1 19257:1 19271:1 19298:5 19335:2 19336:1 19359:1 19412:1 19475:1 19482:1 19494:1 19507:1 19508:1 19515:2 19516:1 19549:1 19550:1 19551:1 19573:1 19600:1 19661:1 19674:1 19708:1 19719:1 19724:1 19742:1 19745:1 19751:1 19752:1 19775:1 19784:1 19794:1 19816:1 19818:1 19833:1 19839:1 19862:1 19918:1 19936:1 19949:2 19964:1 19978:1 20003:1 20004:1 20031:1 20032:1 20037:1 20068:1 20084:1 20086:1 20117:1 20118:1 20159:2 20187:1 20211:3 20212:2 20218:1 20226:1 20231:1 20237:1 20283:1 20293:1 20404:1 20406:2 20453:1 20455:2 20465:1 20474:1 20525:1 20531:1 20567:3 20594:1 20600:1 20652:1 20656:1 20658:1 20677:2 20683:1 20685:1 20692:1 20710:1 20722:1 20738:1 20747:1 20770:1 20782:1 20797:1 20823:1 20846:1 20862:1 20900:1 20907:2 20918:1 20945:1 20948:1 20979:2 21016:1 21029:1 21062:1 21075:1 21080:1 21088:1 21100:1 21122:1 21158:1 21169:1 21174:1 21289:1 21320:1 21345:1 21371:1 21380:1 21386:1 21387:1 21392:1 21397:1 21406:1 21415:1 21444:1 21459:1 21472:2 21498:1 21504:1 21518:1 21520:1 21523:1 21544:1 21548:4 21580:1 21654:1 21663:1 21670:1 21675:6 21684:1 21695:2 21712:1 21714:1 21715:1 21724:1 21771:1 21778:1 21809:1 21812:1 21822:1 21824:1 21827:1 21830:1 21848:1 21867:2 21885:1 21941:1 21952:1 21967:1 21971:1 21994:1 22009:2 22016:1 22021:1 22052:1 22059:1 22061:1 22077:1 22096:2 22150:1 22173:2 22174:2 22178:1 22189:2 22212:1 22223:2 22236:1 22252:2 22257:1 22291:1 22302:1 22318:1 22331:1 22332:1 22336:1 22345:1 22357:1 22362:1 22392:1 22406:1 22412:1 22414:9 22422:1 22426:1 22427:1 22464:1 22467:1 22493:1 22495:1 22585:1 22593:1 22599:1 22616:1 22621:1 22672:1 22676:1 22687:1 22691:1 22699:1 22705:1 22721:2 22726:1 22736:1 22737:1 22784:1 22848:1 22896:1 22947:1 22948:1 22962:2 22964:1 22982:1 22998:1 23033:2 23099:1 23143:1 23148:1 23165:1 23184:1 23188:1 23195:1 23196:1 23234:1 23239:1 23254:1 23283:1 23297:1 23302:1 23310:1 23326:1 23340:1 23343:1 23352:1 23361:3 23403:1 23441:1 23452:1 23494:1 23519:1 23532:1 23559:1 23568:1 23591:1 23592:1 23600:1 23616:2 23620:1 23651:1 23659:1 23720:1 23722:1 23736:1 23744:1 23774:1 23798:1 23806:1 23814:1 23832:1 23875:1 23884:2 23896:2 23899:1 23918:1 23919:1 23920:1 23939:1 23966:1 23994:1 23996:1 24044:1 24058:2 24093:1 24101:1 24124:1 24146:1 24150:1 24159:1 24160:1 24162:1 24164:2 24166:3 24167:1 24174:1 24175:1 24183:2 24187:2 24233:1 24236:2 24237:1 24247:1 24263:2 24267:3 24295:1 24297:1 24307:1 24321:1 24342:1 24345:1 24362:1 24401:1 24402:1 24440:2 24450:2 24453:1 24464:1 24508:1 24547:2 24548:1 24582:1 24630:1 24645:1 24658:1 24665:1 24707:2 24746:1 24757:1 24763:1 24772:1 24780:1 24783:2 24810:1 24816:1 24822:2 24912:1 24946:3 24969:2 24990:1 24997:1 25005:1 25015:2 25028:1 25038:1 25046:1 25089:1 25093:2 25099:1 25104:1 25109:1 25111:1 25114:3 25137:1 25139:2 25141:4 25144:2 25145:1 25162:1 25167:1 25170:1 25214:2 25225:2 25247:1 25258:2 25335:1 25384:1 25401:1 25425:1 25436:2 25468:1 25473:1 25488:1 25515:1 25561:1 25576:1 25665:1 25676:1 25679:1 25708:1 25729:1 25742:1 25757:1 25796:1 25804:1 25812:1 25816:1 25838:2 25865:4 25880:1 25906:1 25929:1 25930:1 25936:1 25953:1 25971:1 25992:4 25994:1 26021:1 26033:1 26038:1 26059:1 26127:2 26133:1 26166:1 26170:1 26175:1 26185:1 26221:1 26247:1 26261:1 26267:1 26300:1 26309:1 26338:1 26339:1 26352:1 26373:4 26392:2 26476:1 26499:1 26548:1 26582:1 26588:1 26599:1 26624:1 26681:2 26709:3 26721:1 26736:1 26759:1 26778:1 26788:2 26817:1 26840:1 26856:3 26933:1 26960:2 26967:2 26981:1 26994:1 27003:1 27006:1 27016:1 27022:1 27033:1 27036:1 27057:1 27079:1 27090:1 27113:1 27136:1 27141:1 27160:1 27187:1 27275:1 27332:1 27365:3 27419:1 27560:1 27563:3 27575:1 27595:1 27627:1 27636:1 27675:1 27678:1 27687:7 27689:2 27692:4 27702:1 27724:1 27739:1 27777:1 27789:2 27804:1 27820:1 27838:1 27859:6 27867:1 27874:1 27889:1 27893:1 27900:1 27906:1 27917:1 27935:1 27948:1 27960:1 27964:1 27968:1 28003:1 28011:1 28028:1 28030:1 28051:1 28054:1 28068:1 28102:1 28126:1 28127:2 28128:1 28131:1 28183:1 28187:1 28204:1 28214:1 28218:1 28223:1 28292:1 28319:1 28341:1 28356:1 28362:1 28363:1 28375:1 28380:1 28387:1 28397:1 28404:1 28411:1 28413:1 28419:1 28461:1 28506:2 28520:1 28536:2 28553:1 28594:1 28648:1 28703:1 28709:1 28724:1 28734:1 28748:1 28792:1 28801:4 28816:1 28818:1 28836:3 28849:2 28913:3 28914:2 28919:1 28924:2 28925:1 28941:1 28961:2 28963:2
9 11:1 14:1 37:1 60:1 83:1 89:1 90:1 109:1 125:1 143:1 150:1 153:1 162:1 170:2 189:3 214:1 245:1 270:1 282:1 293:1 295:11 303:1 316:1 318:2 333:1 348:1 403:1 424:3 442:1 444:1 515:1 563:2 564:1 569:1 590:1 596:2 598:1 600:1 643:1 674:1 685:1 748:1 752:1 770:1 788:1 795:1 807:1 808:1 830:2 832:1 842:1 843:1 856:4 871:1 877:2 879:4 885:1 892:1 893:1 899:1 905:3 925:1 963:1 974:3 989:1 996:1 998:1 1019:1 1027:1 1045:1 1078:1 1087:1 1104:2 1143:1 1148:2 1160:1 1163:1 1207:1 1244:1 1257:1 1276:1 1284:1 1287:1 1313:1 1330:1 1355:1 1374:1 1397:2 1401:4 1402:1 1420:1 1423:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1507:1 1508:1 1543:1 1547:1 1555:1 1560:1 1562:1 1571:1 1596:1 1598:1 1619:1 1627:3 1634:1 1699:1 1762:1 1778:1 1789:1 1802:1 1819:1 1895:7 1903:1 1923:1 1929:1 1935:1 1962:2 1965:2 1993:1 1998:1 2006:1 2011:1 2082:1 2085:1 2089:1 2095:1 2100:1 2101:1 2132:1 2154:1 2156:1 2159:1 2174:1 2177:1 2178:2 2190:1 2207:1 2212:1 2216:1 2219:1 2220:1 2221:2 2223:2 2226:1 2227:1 2228:1 2233:1 2234:1 2237:1 2249:1 2251:4 2253:5 2268:1 2279:1 2297:1 2309:1 2315:1 2322:1 2336:1 2339:1 2343:1 2347:1 2358:1 2374:1 2376:1 2392:1 2410:2 2421:3 2445:1 2465:1 2485:5 2522:2 2536:1 2543:1 2552:3 2561:1 2563:1 2609:2 2648:1 2651:2 2656:1 2667:1 2675:1 2683:1 2708:1 2713:1 2730:3 2760:1 2761:1 2762:1 2766:1 2775:2 2780:1 2782:1 2854:1 2867:7 2888:1 2900:1 2909:1 2936:6 2961:1 2965:3 2968:1 3023:1 3075:1 3105:1 3106:1 3188:1 3197:1 3232:2 3243:1 3256:1 3266:1 3271:1 3293:1 3295:1 3357:1 3397:1 3407:1 3420:1 3459:1 3471:1 3472:1 3475:1 3478:1 3488:1 3489:1 3517:1 3540:2 3548:1 3570:1 3574:1 3582:1 3599:3 3607:1 3615:1 3639:3 3684:1 3688:1 3692:1 3698:2 3712:1 3730:1 3737:1 3740:1 3742:3 3744:1 3746:1 3748:3 3779:1 3783:1 3784:1 3789:3 3790:1 3792:1 3813:1 3836:1 3838:1 3851:1 3866:1 3876:1 3895:1 3902:2 3904:1 3918:2 3943:1 3970:1 3977:1 3982:1 3988:2 3989:1 3998:3 3999:2 4005:1 4040:1 4054:2 4078:1 4093:1 4113:1 4125:1 4129:1 4136:1 4193:2 4201:1 4204:1 4219:1 4254:1 4272:1 4282:1 4362:4 4428:1 4434:1 4455:1 4494:1 4560:1 4583:1 4613:1 4619:2 4626:3 4646:1 4691:1 4695:4 4724:1 4731:1 4742:1 4746:1 4773:2 4787:1 4818:1 4876:6 4878:2 4895:2 4925:1 4928:5 4940:1 4963:1 4985:3 5003:1 5005:2 5006:1 5008:1 5013:2 5028:1 5033:1 5042:1 5045:1 5046:2 5064:1 5090:1 5131:1 5176:1 5177:1 5190:1 5195:1 5219:1 5220:1 5245:2 5255:1 5280:1 5302:1 5306:1 5307:1 5328:1 5358:3 5369:2 5386:1 5429:1 5493:1 5501:1 5511:1 5524:1 5535:1 5538:1 5540:2 5548:1 5582:3 5584:1 5593:1 5615:2 5639:1 5640:1 5663:3 5681:1 5694:1 5701:2 5705:1 5720:2 5721:1 5749:1 5773:1 5802:1 5812:1 5850:1 5877:1 5920:1 5942:1 5947:1 5972:6 5992:2 6000:1 6017:1 6040:1 6056:1 6110:1 6130:1 6137:1 6138:1 6142:1 6150:1 6153:1 6176:1 6192:1 6245:1 6259:3 6263:1 6270:1 6274:1 6275:1 6276:2 6282:1 6283:7 6284:2 6334:1 6379:2 6493:1 6502:1 6537:1 6542:1 6556:1 6565:1 6598:1 6609:1 6653:1 6654:1 6679:2 6699:4 6715:1 6722:1 6728:1 6757:1 6795:1 6854:1 6855:2 6860:1 6866:1 6871:1 6885:1 6886:2 6906:1 6948:1 6987:1 6999:1 7050:5 7052:1 7074:1 7091:1 7097:1 7099:1 7124:1 7125:1 7180:1 7198:1 7218:1 7234:1 7248:1 7263:1 7287:1 7297:1 7311:1 7346:1 7347:1 7367:1 7371:1 7382:1 7386:1 7427:1 7463:1 7499:1 7518:1 7554:1 7555:8 7570:1 7580:1 7582:2 7603:2 7620:21 7622:1 7643:1 7644:6 7648:1 7671:1 7696:1 7710:1 7720:1 7725:2 7751:1 7755:1 7758:1 7826:1 7878:1 7892:1 7897:2 7928:1 7962:1 8004:1 8007:1 8032:1 8043:2 8044:3 8062:1 8107:1 8116:1 8124:1 8136:1 8142:1 8154:1 8156:3 8184:1 8186:1 8194:1 8236:1 8254:1 8270:1 8299:1 8301:2 8311:1 8319:1 8358:1 8376:3 8379:1 8387:2 8394:1 8395:1 8405:1 8412:1 8422:1 8430:5 8438:1 8441:1 8460:1 8490:1 8503:2 8504:1 8505:1 8508:1 8510:1 8512:1 8513:1 8516:1 8543:2 8550:1 8567:1 8572:1 8575:2 8586:1 8604:1 8640:1 8679:1 8688:1 8710:1 8719:1 8728:1 8772:2 8808:1 8810:1 8811:3 8815:1 8827:2 8833:1 8840:1 8857:1 8914:1 8936:2 8950:1 8971:1 8992:1 9019:1 9022:1 9035:1 9040:1 9050:1 9057:1 9077:1 9107:1 9115:2 9139:1 9200:1 9209:1 9216:1 9226:11 9247:1 9261:1 9305:1 9314:1 9329:1 9349:1 9360:2 9363:4 9365:1 9390:1 9421:1 9433:1 9490:1 9497:1 9528:1 9529:1 9539:1 9558:1 9568:1 9569:1 9574:1 9586:1 9594:1 9601:1 9634:1 9652:1 9663:3 9676:1 9677:3 9700:1 9746:2 9829:1 9847:2 9850:1 9871:1 9877:1 9880:1 9898:1 9911:1 9919:1 9928:1 9932:1 9938:1 9954:1 9956:1 9968:4 9987:1 9996:1 10038:1 10065:1 10073:1 10094:1 10125:1 10126:1 10135:1 10191:1 10241:1 10280:1 10302:1 10329:1 10347:1 10359:2 10372:1 10436:1 10478:1 10486:1 10488:1 10504:2 10513:1 10524:1 10526:1 10537:1 10555:1 10557:1 10558:1 10573:1 10582:1 10590:1 10592:2 10621:1 10657:1 10665:3 10683:1 10686:5 10737:1 10740:1 10748:1 10783:1 10787:1 10839:1 10857:1 10901:1 10903:1 10909:1 10910:1 10937:1 10943:1 10947:1 10953:1 10962:1 10989:4 11010:1 11014:1 11016:1 11062:1 11063:1 11071:1 11083:1 11094:1 11100:1 11106:1 11118:1 11147:1 11175:1 11197:1 11203:2 11208:1 11230:1 11248:1 11284:1 11285:1 11300:1 11301:1 11302:1 11315:1 11317:1 11333:1 11370:1 11371:1 11430:1 11442:1 11469:1 11476:1 11477:1 11481:1 11509:1 11514:1 11520:1 11526:2 11530:2 11550:2 11603:2 11609:1 11615:1 11619:1 11631:1 11645:1 11649:1 11664:1 11684:1 11690:1 11693:1 11711:1 11716:1 11734:1 11772:1 11789:1 11824:1 11852:1 11865:3 11871:1 11936:2 11952:1 11973:3 11997:1 12004:1 12110:2 12111:3 12115:1 12132:1 12165:1 12166:2 12178:1 12239:1 12250:1 12276:1 12281:3 12302:1 12345:1 12346:1 12349:2 12362:1 12380:1 12398:1 12458:1 12476:1 12508:1 12515:1 12526:1 12608:1 12621:1 12633:1 12648:5 12658:1 12668:2 12671:2 12681:1 12701:1 12733:1 12764:1 12769:1 12789:1 12796:2 12813:1 12831:1 12835:1 12888:1 12914:1 13045:1 13049:1 13072:1 13076:2 13080:1 13087:1 13093:1 13094:4 13128:1 13144:1 13206:1 13211:1 13213:1 13224:2 13232:2 13233:1 13252:1 13278:1 13282:1 13302:3 13306:1 13310:1 13320:1 13331:1 13341:1 13364:1 13372:3 13376:1 13420:1 13421:1 13454:1 13557:1 13599:1 13601:1 13606:2 13607:1 13610:1 13620:1 13628:1 13633:1 13654:1 13680:2 13694:1 13697:1 13723:1 13733:2 13764:1 13779:1 13788:2 13827:1 13832:2 13847:1 13886:1 13904:1 13931:1 13974:1 13980:1 14006:1 14018:1 14076:3 14089:1 14107:3 14134:1 14140:1 14152:1 14179:1 14180:1 14223:1 14274:1 14312:1 14317:1 14318:2 14324:1 14325:4 14335:1 14339:1 14347:1 14358:1 14376:1 14385:1 14433:1 14449:3 14482:1 14485:1 14489:1 14492:1 14533:1 14573:1 14591:1 14623:1 14647:2 14674:1 14701:1 14798:1 14820:3 14824:1 14837:1 14891:2 14893:1 14916:1 14936:1 14938:1 14961:2 14970:1 14984:1 14986:1 15020:1 15037:1 15117:1 15123:1 15130:1 15146:1 15173:1 15177:1 15233:1 15245:1 15301:2 15322:1 15332:3 15385:2 15398:1 15403:1 15404:2 15414:1 15420:1 15431:1 15435:1 15471:1 15482:2 15539:1 15556:1 15563:1 15578:2 15591:1 15607:2 15614:1 15624:1 15625:1 15626:1 15642:1 15644:1 15679:1 15687:1 15717:1 15745:3 15757:1 15831:1 15832:1 15871:1 15879:3 15893:1 15896:1 15909:1 15911:1 15967:1 15973:1 16014:1 16029:5 16030:1 16048:2 16055:1 16095:1 16119:1 16122:1 16150:1 16164:1 16172:1 16177:1 16190:1 16194:1 16196:1 16242:1 16289:1 16290:2 16338:1 16353:1 16363:1 16398:1 16403:1 16482:1 16489:1 16505:1 16511:1 16528:1 16546:1 16589:1 16597:1 16639:1 16662:1 16666:2 16685:1 16702:1 16708:1 16714:1 16716:2 16738:1 16747:1 16761:1 16776:1 16828:1 16843:1 16844:2 16851:1 16905:1 16915:1 16929:1 16947:1 16966:2 16991:1 16995:1 17013:2 17046:1 17053:1 17059:3 17091:3 17106:1 17136:1 17138:1 17155:1 17156:1 17172:1 17179:1 17186:1 17199:2 17207:1 17210:1 17265:1 17270:2 17277:1 17346:1 17360:1 17363:1 17374:2 17397:1 17401:1 17422:1 17447:1 17448:2 17454:2 17475:3 17476:1 17522:4 17523:2 17560:1 17585:1 17587:1 17592:5 17604:1 17631:1 17644:2 17648:1 17662:1 17665:2 17667:1 17670:1 17683:1 17692:1 17722:1 17747:1 17753:2 17767:2 17772:1 17781:10 17787:1 17790:1 17794:1 17819:1 17822:1 17838:1 17852:1 17855:1 17860:1 17871:1 17873:1 17882:1 17896:2 17907:1 17922:1 17931:1 17962:1 17977:1 17979:1 17989:1 17994:1 17998:2 18007:2 18009:1 18019:1 18032:1 18056:1 18067:1 18080:1 18120:1 18133:1 18170:1 18212:1 18219:1 18220:1 18315:4 18331:1 18399:1 18444:1 18449:1 18461:1 18476:2 18478:2 18481:1 18504:2 18509:1 18516:1 18519:866 18524:1 18538:1 18572:1 18573:1 18608:1 18643:1 18648:1 18715:3 18720:1 18725:2 18727:1 18728:1 18748:1 18802:1 18808:1 18816:1 18842:11 18863:2 18904:1 18907:1 18920:1 18930:2 18947:1 18968:1 19017:1 19055:2 19079:1 19113:1 19135:2 19140:1 19142:1 19176:1 19180:1 19190:1 19192:1 19197:2 19210:1 19228:2 19235:1 19257:1 19271:1 19298:5 19314:1 19335:2 19336:1 19359:1 19412:1 19475:1 19482:1 19494:1 19507:2 19508:1 19515:3 19516:1 19549:1 19550:1 19551:1 19566:1 19573:1 19600:1 19661:1 19674:1 19708:2 19719:1 19724:1 19742:1 19745:1 19751:1 19752:1 19775:1 19784:1 19794:1 19816:1 19818:1 19833:1 19839:2 19862:1 19918:1 19936:1 19949:2 19953:1 19964:1 19978:1 20003:1 20004:1 20031:1 20032:1 20037:1 20068:1 20084:1 20086:1 20117:1 20118:1 20159:3 20187:1 20211:3 20212:2 20218:1 20226:1 20231:1 20237:1 20283:1 20293:1 20404:1 20406:2 20453:1 20455:3 20465:1 20468:1 20474:1 20525:1 20531:2 20567:4 20594:1 20600:1 20652:1 20656:1 20658:1 20677:2 20683:1 20685:1 20692:1 20710:1 20722:2 20738:1 20747:1 20770:1 20782:1 20797:1 20823:1 20846:1 20862:1 20900:1 20907:2 20918:1 20945:1 20948:1 20979:2 21016:1 21029:1 21049:1 21062:1 21075:1 21080:1 21088:1 21100:1 21122:1 21158:1 21169:1 21174:1 21289:1 21320:1 21345:1 21371:1 21380:1 21386:1 21387:1 21392:1 21397:1 21406:1 21415:1 21444:1 21459:1 21472:2 21488:1 21498:1 21504:1 21518:1 21520:1 21523:1 21544:1 21548:4 21580:1 21616:1 21654:1 21663:1 21670:1 21675:6 21684:1 21695:2 21712:1 21714:1 21715:1 21724:1 21771:1 21778:1 21809:1 21812:1 21822:1 21824:1 21827:1 21830:1 21848:1 21867:2 21885:1 21941:1 21952:1 21967:1 21971:1 21994:1 22009:2 22016:1 22021:1 22052:1 22059:1 22061:1 22077:1 22096:2 22150:1 22173:3 22174:2 22178:2 22189:2 22212:1 22223:2 22236:1 22252:2 22257:1 22258:1 22291:1 22295:1 22302:1 22318:1 22331:1 22332:1 22336:1 22345:1 22357:1 22362:1 22392:1 22406:1 22412:1 22414:10 22422:1 22426:1 22427:1 22464:1 22467:1 22493:1 22495:1 22585:1 22593:1 22599:1 22616:2 22621:1 22672:1 22676:1 22687:1 22691:1 22699:1 22705:1 22721:2 22726:1 22736:1 22737:1 22784:1 22848:1 22896:1 22902:1 22921:1 22947:1 22948:1 22962:2 22964:1 22980:1 22982:1 22998:2 23033:2 23099:1 23143:1 23148:1 23165:1 23184:1 23188:1 23195:1 23196:1 23234:1 23239:1 23248:1 23254:1 23283:1 23297:1 23302:1 23310:1 23326:1 23340:1 23343:1 23352:1 23361:3 23403:1 23441:1 23452:1 23494:1 23519:1 23532:1 23559:2 23568:1 23591:1 23592:1 23600:1 23616:2 23620:1 23651:1 23659:1 23720:1 23722:1 23732:2 23736:1 23744:1 23749:1 23774:1 23798:1 23806:1 23814:1 23832:1 23875:1 23884:2 23896:3 23899:1 23918:1 23919:1 23920:1 23939:1 23966:1 23994:1 23996:1 24044:1 24058:2 24068:1 24093:1 24101:1 24124:1 24146:1 24150:1 24159:1 24160:1 24162:1 24164:2 24166:4 24167:1 24174:2 24175:1 24183:2 24187:2 24233:1 24236:2 24237:1 24247:1 24263:2 24267:3 24295:1 24297:1 24307:1 24321:1 24342:1 24345:1 24362:1 24401:1 24402:1 24419:1 24440:2 24450:3 24453:1 24464:1 24508:1 24547:2 24548:1 24582:1 24630:1 24645:1 24658:1 24665:1 24707:2 24746:1 24757:1 24763:1 24772:1 24780:1 24783:3 24810:1 24816:1 24822:2 24899:1 24912:1 24946:4 24955:1 24969:2 24990:1 24997:1 25005:1 25015:2 25028:1 25038:1 25046:1 25089:1 25093:2 25099:2 25104:1 25109:1 25111:2 25114:3 25137:1 25139:2 25141:5 25144:2 25145:1 25162:1 25167:1 25170:1 25177:1 25214:2 25225:2 25247:1 25258:2 25320:1 25335:1 25342:1 25384:1 25401:1 25425:1 25436:2 25468:1 25473:1 25488:1 25515:1 25561:1 25576:1 25600:1 25665:1 25676:1 25679:1 25708:1 25726:1 25729:1 25742:1 25757:1 25796:1 25804:1 25812:1 25816:1 25838:2 25865:4 25880:1 25906:1 25929:1 25930:1 25936:1 25953:1 25971:1 25992:4 25994:1 26021:1 26033:1 26038:1 26059:1 26118:1 26123:1 26127:2 26133:1 26166:1 26170:1 26175:1 26185:1 26221:1 26247:1 26261:2 26267:1 26290:1 26300:1 26309:1 26338:1 26339:1 26352:1 26373:5 26392:2 26476:1 26482:1 26499:1 26547:1 26548:1 26569:1 26582:1 26588:1 26599:1 26624:1 26657:1 26681:2 26709:3 26721:1 26736:1 26759:1 26778:1 26787:1 26788:2 26817:1 26840:2 26856:3 26933:1 26960:3 26967:2 26981:1 26994:1 27003:1 27006:1 27016:1 27022:1 27033:1 27036:1 27057:1 27079:1 27090:1 27113:1 27136:1 27141:1 27160:1 27187:1 27275:1 27279:1 27332:1 27365:4 27419:1 27560:1 27563:3 27575:1 27595:1 27627:1 27636:1 27675:1 27678:1 27687:8 27689:2 27692:5 27694:1 27695:2 27702:1 27724:3 27739:1 27777:1 27789:2 27804:1 27808:1 27820:1 27838:1 27859:8 27867:1 27874:1 27887:1 27889:1 27893:1 27900:1 27906:1 27917:1 27930:1 27935:1 27948:1 27960:1 27964:1 27968:1 28003:1 28011:1 28028:1 28030:1 28051:1 28054:1 28068:1 28102:1 28126:1 28127:2 28128:1 28131:1 28174:1 28180:1 28183:1 28187:1 28204:1 28214:1 28218:1 28223:1 28292:1 28319:1 28320:1 28341:1 28356:1 28362:1 28363:1 28375:1 28380:1 28387:1 28397:1 28404:1 28411:1 28413:1 28419:1 28461:1 28506:2 28520:1 28536:2 28541:1 28553:1 28560:1 28594:1 28648:1 28703:1 28709:1 28724:1 28734:1 28748:1 28792:1 28801:5 28816:1 28818:1 28836:3 28849:2 28913:4 28914:2 28919:1 28921:1 28924:2 28925:1 28941:1 28961:3 28963:2
9 11:1 14:1 37:1 60:1 83:1 89:1 90:1 109:1 125:1 143:1 150:1 153:2 162:1 170:2 189:3 214:1 245:1 270:1 282:1 293:1 295:12 303:1 316:1 318:2 333:1 348:1 403:1 424:3 442:1 444:1 515:1 563:2 564:1 569:1 572:1 590:1 596:2 598:1 600:1 613:1 643:1 674:1 685:1 734:1 748:1 752:1 770:1 788:1 795:1 807:1 808:1 830:2 832:2 842:1 843:1 856:5 871:1 877:2 879:4 885:1 892:1 893:1 899:1 905:3 925:1 963:1 974:3 989:1 996:2 998:1 1002:1 1019:1 1020:1 1027:1 1045:1 1078:1 1087:1 1104:2 1143:1 1148:2 1160:1 1163:1 1207:1 1244:1 1257:1 1276:1 1284:1 1287:1 1313:1 1330:1 1355:1 1374:1 1397:2 1401:4 1402:1 1420:1 1423:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1506:1 1507:1 1508:1 1543:1 1547:1 1555:1 1560:1 1562:1 1564:1 1571:1 1596:1 1598:1 1617:1 1619:1 1627:3 1634:1 1659:1 1660:1 1699:1 1762:1 1778:1 1789:1 1802:1 1819:1 1895:8 1903:1 1907:1 1923:1 1929:1 1935:1 1962:2 1965:2 1993:1 1998:1 2006:1 2011:1 2082:1 2085:1 2089:2 2095:1 2100:1 2101:1 2132:1 2154:1 2156:1 2159:1 2165:1 2174:1 2177:1 2178:2 2179:1 2190:1 2207:1 2212:1 2216:1 2219:1 2220:1 2221:2 2223:3 2226:1 2227:1 2228:1 2233:1 2234:1 2237:1 2249:1 2251:5 2252:1 2253:5 2268:1 2279:1 2297:1 2309:1 2315:1 2322:1 2336:1 2339:1 2343:1 2347:1 2358:2 2374:1 2376:1 2392:1 2410:2 2421:3 2445:1 2465:1 2485:5 2522:2 2536:1 2543:1 2552:3 2561:1 2563:1 2609:2 2648:1 2651:2 2656:1 2667:1 2670:1 2675:1 2683:1 2708:1 2713:1 2723:1 2730:3 2760:1 2761:1 2762:1 2766:2 2775:2 2780:1 2782:1 2854:1 2867:8 2883:1 2888:1 2900:1 2909:1 2936:6 2961:1 2965:3 2968:1 3023:1 3075:1 3105:1 3106:1 3188:1 3197:1 3232:2 3243:1 3256:1 3266:1 3271:1 3293:1 3295:1 3357:2 3397:1 3407:1 3420:1 3459:1 3471:1 3472:1 3475:1 3478:1 3488:1 3489:1 3517:1 3540:2 3548:1 3570:1 3574:1 3582:1 3599:3 3607:1 3608:1 3615:1 3639:3 3680:1 3684:1 3688:2 3692:1 3695:1 3698:2 3712:1 3730:1 3737:1 3740:1 3742:4 3744:1 3746:1 3748:4 3779:1 3783:2 3784:1 3789:4 3790:1 3792:1 3813:2 3836:2 3838:1 3848:1 3851:1 3866:1 3876:1 3895:1 3902:2 3904:1 3918:2 3943:1 3964:1 3970:1 3977:1 3982:1 3988:2 3989:1 3998:3 3999:2 4005:1 4040:1 4054:2 4078:1 4085:2 4093:1 4113:1 4125:1 4129:1 4136:1 4193:2 4201:1 4204:1 4219:1 4254:1 4270:1 4272:1 4282:1 4362:4 4428:1 4434:1 4439:1 4455:1 4494:1 4560:1 4583:1 4613:1 4619:2 4626:3 4646:1 4691:1 4695:5 4724:1 4731:1 4742:1 4746:1 4759:1 4773:2 4787:1 4815:1 4818:1 4876:6 4878:2 4895:2 4925:1 4928:5 4940:1 4963:1 4985:3 5003:1 5005:2 5006:1 5008:1 5013:3 5028:1 5030:1 5033:1 5042:1 5045:1 5046:2 5064:1 5090:1 5131:1 5176:1 5177:1 5190:1 5195:1 5219:1 5220:1 5237:1 5245:2 5255:1 5280:1 5302:1 5306:1 5307:1 5328:1 5358:3 5369:2 5386:1 5429:1 5493:1 5501:1 5511:1 5524:1 5535:1 5538:1 5540:2 5548:1 5582:3 5584:1 5593:1 5615:2 5629:1 5639:1 5640:1 5663:3 5681:2 5694:1 5701:2 5705:1 5720:3 5721:1 5749:1 5773:1 5802:1 5812:1 5843:1 5850:1 5877:1 5920:1 5942:1 5947:1 5972:8 5987:1 5992:2 6000:1 6006:1 6017:1 6040:1 6056:1 6110:1 6130:1 6137:1 6138:1 6142:1 6150:1 6153:1 6176:2 6192:1 6199:1 6245:1 6259:3 6263:1 6270:1 6274:1 6275:1 6276:2 6279:1 6282:1 6283:7 6284:2 6334:1 6379:2 6420:1 6482:1 6493:1 6502:1 6513:1 6537:1 6542:1 6556:1 6565:1 6598:1 6609:1 6653:1 6654:1 6679:2 6689:1 6699:4 6715:1 6722:1 6728:1 6757:1 6795:1 6823:1 6854:1 6855:2 6860:1 6866:1 6871:1 6885:1 6886:2 6906:1 6919:1 6922:1 6948:1 6987:1 6999:1 7050:6 7052:1 7074:1 7091:1 7097:1 7099:1 7124:1 7125:1 7180:1 7198:1 7218:1 7234:1 7248:1 7263:2 7287:1 7297:1 7311:1 7334:1 7346:1 7347:1 7367:1 7371:1 7382:1 7386:1 7427:1 7463:1 7499:1 7518:1 7554:1 7555:8 7570:1 7580:1 7582:2 7603:2 7620:24 7622:1 7643:1 7644:6 7648:1 7671:1 7696:1 7710:1 7720:1 7725:2 7751:1 7755:1 7758:1 7826:1 7878:1 7892:1 7897:2 7928:1 7962:1 8004:1 8007:1 8032:1 8043:2 8044:3 8062:1 8107:1 8116:1 8124:1 8130:1 8136:1 8142:2 8154:1 8156:3 8184:1 8186:1 8194:1 8236:1 8254:1 8270:1 8299:1 8301:2 8311:1 8319:1 8358:1 8369:1 8376:3 8379:1 8383:1 8387:2 8394:1 8395:1 8405:1 8412:1 8422:1 8430:5 8438:1 8441:1 8460:1 8468:1 8490:1 8497:1 8500:1 8501:1 8503:2 8504:1 8505:1 8508:1 8510:2 8512:1 8513:1 8516:1 8543:2 8550:1 8567:1 8572:1 8575:2 8586:1 8604:1 8640:1 8679:1 8688:1 8710:1 8719:1 8728:1 8772:2 8808:1 8810:1 8811:3 8815:1 8827:2 8833:1 8840:1 8857:1 8914:1 8936:2 8950:1 8971:1 8992:1 9001:1 9019:1 9022:1 9035:1 9040:1 9050:1 9057:1 9077:2 9107:1 9115:2 9139:1 9200:1 9207:1 9209:1 9216:1 9226:12 9246:1 9247:1 9261:1 9305:1 9314:1 9329:1 9338:1 9349:1 9360:2 9363:4 9365:1 9390:1 9421:1 9433:2 9490:1 9497:1 9528:1 9529:1 9539:1 9558:1 9568:1 9569:1 9574:1 9586:1 9594:1 9601:1 9634:1 9652:1 9663:4 9676:1 9677:3 9687:1 9700:1 9746:2 9829:1 9847:3 9850:1 9856:1 9871:1 9877:1 9880:1 9883:1 9898:2 9911:1 9919:1 9928:1 9932:1 9938:1 9954:1 9956:1 9968:4 9987:1 9996:1 10038:1 10065:1 10073:1 10094:1 10125:1 10126:1 10135:1 10191:1 10241:1 10280:1 10302:1 10329:1 10347:1 10351:1 10359:2 10372:1 10436:1 10448:1 10478:1 10486:1 10488:1 10504:2 10507:1 10513:1 10524:1 10526:1 10537:1 10555:1 10557:1 10558:1 10573:1 10582:1 10590:1 10592:2 10621:1 10657:2 10665:3 10683:1 10686:5 10737:1 10740:1 10748:1 10783:1 10787:1 10839:1 10857:1 10901:1 10903:2 10909:1 10910:1 10921:1 10937:1 10943:1 10947:1 10953:1 10962:1 10989:4 11010:1 11014:1 11016:1 11062:1 11063:1 11071:1 11083:1 11094:1 11100:1 11106:1 11118:1 11147:1 11175:1 11197:1 11203:2 11208:1 11230:1 11248:1 11268:1 11284:1 11285:1 11300:1 11301:1 11302:1 11315:2 11317:1 11333:1 11370:2 11371:1 11430:1 11442:1 11469:1 11476:1 11477:1 11481:1 11509:1 11514:1 11520:1 11526:2 11530:2 11550:2 11603:2 11609:1 11615:1 11619:1 11631:1 11645:1 11649:1 11664:2 11684:2 11690:1 11693:1 11711:1 11716:1 11734:1 11772:1 11789:1 11824:1 11852:1 11865:3 11871:1 11931:1 11936:2 11952:1 11973:3 11990:1 11997:1 12004:1 12110:2 12111:3 12115:1 12132:1 12154:1 12165:1 12166:2 12178:1 12184:1 12239:1 12250:1 12276:1 12281:3 12302:1 12345:1 12346:1 12349:2 12362:1 12380:1 12398:1 12420:1 12458:1 12476:1 12508:1 12515:1 12526:1 12608:2 12621:1 12633:1 12648:6 12658:1 12668:2 12671:3 12681:1 12701:1 12733:1 12764:1 12769:1 12772:1 12789:1 12796:2 12813:1 12831:1 12835:1 12888:1 12914:1 12949:1 12984:1 13045:2 13049:1 13072:1 13076:4 13080:1 13087:1 13093:1 13094:4 13128:1 13144:1 13166:1 13206:1 13211:1 13213:1 13224:2 13232:2 13233:1 13252:1 13278:1 13282:1 13302:3 13306:1 13310:1 13320:1 13331:1 13341:1 13364:1 13372:3 13376:1 13416:1 13420:1 13421:1 13454:1 13557:1 13599:1 13601:1 13606:3 13607:1 13610:1 13620:1 13628:1 13633:1 13654:1 13680:2 13694:1 13697:1 13723:1 13733:2 13764:1 13779:1 13788:2 13827:2 13832:2 13847:1 13886:1 13904:2 13931:1 13974:1 13980:1 14006:1 14018:1 14054:1 14076:3 14089:1 14107:3 14134:1 14140:1 14152:1 14179:1 14180:1 14223:1 14255:1 14274:1 14312:1 14317:2 14318:3 14324:1 14325:4 14335:1 14339:1 14347:1 14358:1 14376:1 14385:1 14433:1 14449:3 14482:1 14485:1 14489:1 14492:1 14533:2 14573:1 14591:1 14623:1 14637:1 14647:3 14674:1 14683:1 14701:1 14798:1 14820:3 14821:1 14824:1 14837:1 14881:1 14891:2 14893:1 14910:1 14916:1 14936:1 14938:1 14961:2 14970:1 14984:1 14986:1 15000:1 15020:2 15037:1 15117:1 15123:1 15130:1 15146:1 15173:1 15177:1 15233:1 15245:1 15259:1 15301:2 15322:1 15332:4 15385:2 15398:1 15403:1 15404:2 15414:1 15420:1 15431:1 15435:1 15453:1 15459:1 15471:1 15482:2 15539:1 15556:1 15563:1 15578:3 15591:1 15598:1 15607:2 15614:1 15624:1 15625:1 15626:1 15642:1 15644:1 15679:1 15687:1 15717:1 15745:3 15750:1 15757:1 15831:1 15832:2 15871:1 15879:3 15893:1 15896:1 15909:1 15911:1 15967:1 15973:1 16014:1 16029:6 16030:1 16048:2 16055:1 16095:2 16119:1 16122:1 16150:1 16164:1 16172:1 16177:1 16190:1 16194:1 16196:1 16242:1 16289:1 16290:2 16338:1 16353:1 16363:1 16398:1 16400:1 16403:1 16482:1 16488:1 16489:1 16505:1 16511:1 16528:1 16546:1 16555:1 16589:1 16597:1 16605:1 16639:1 16662:1 16666:2 16685:1 16702:1 16708:1 16714:1 16716:2 16718:1 16738:1 16747:1 16761:1 16776:1 16828:1 16843:1 16844:3 16851:1 16905:1 16915:2 16929:1 16947:1 16966:2 16991:1 16995:1 17013:2 17046:1 17050:1 17053:1 17059:3 17091:3 17106:1 17136:1 17138:1 17155:1 17156:1 17172:1 17179:1 17186:1 17199:2 17207:1 17210:1 17265:1 17270:2 17277:1 17346:1 17360:1 17363:1 17374:2 17397:1 17401:1 17422:1 17447:1 17448:2 17454:2 17475:3 17476:1 17509:1 17522:4 17523:2 17560:1 17585:1 17587:1 17592:5 17604:1 17631:1 17636:1 17644:2 17648:1 17652:1 17662:1 17665:2 17667:1 17670:1 17683:1 17692:1 17722:1 17747:1 17753:2 17767:3 17772:1 17781:11 17787:1 17790:1 17794:1 17819:1 17822:1 17838:1 17852:1 17855:1 17860:1 17871:1 17873:1 17882:1 17896:3 17907:1 17922:1 17931:1 17962:1 17967:1 17977:1 17979:1 17989:1 17994:1 17998:2 18007:2 18009:1 18019:1 18032:1 18056:1 18067:1 18080:1 18084:1 18120:1 18133:1 18170:1 18212:1 18219:1 18220:1 18315:4 18331:1 18380:1 18399:1 18444:1 18449:1 18461:1 18476:2 18478:2 18481:1 18498:1 18504:2 18509:1 18516:1 18519:921 18524:1 18538:1 18572:1 18573:1 18608:1 18643:1 18648:1 18708:1 18715:3 18720:1 18725:2 18727:1 18728:1 18748:1 18802:2 18808:1 18816:1 18842:12 18863:2 18904:1 18907:1 18920:1 18930:2 18947:1 18968:1 18982:1 18991:1 19017:1 19055:2 19079:1 19113:1 19135:2 19140:1 19142:1 19176:1 19180:1 19190:1 19192:1 19197:2 19210:1 19228:4 19235:1 19257:1 19271:1 19298:6 19314:1 19335:3 19336:1 19359:1 19412:1 19442:1 19475:1 19482:1 19494:1 19507:2 19508:1 19515:3 19516:1 19549:1 19550:1 19551:1 19566:1 19573:1 19600:1 19661:1 19674:1 19680:1 19708:2 19719:1 19724:1 19742:1 19745:1 19751:1 19752:1 19767:1 19775:1 19784:2 19794:1 19816:1 19818:1 19833:1 19839:2 19862:1 19876:1 19904:1 19918:1 19936:1 19949:2 19953:1 19964:1 19978:1 19992:1 20003:1 20004:1 20031:1 20032:1 20037:1 20068:1 20084:1 20086:1 20117:1 20118:1 20159:3 20187:1 20211:3 20212:2 20218:1 20226:1 20231:1 20237:1 20283:1 20293:1 20404:1 20406:2 20453:1 20455:3 20465:1 20468:1 20474:1 20525:1 20531:2 20567:4 20594:1 20600:1 20652:1 20656:1 20658:1 20677:2 20683:1 20685:1 20692:1 20710:1 20722:2 20738:1 20747:2 20770:1 20780:1 20782:1 20797:1 20823:1 20846:1 20862:1 20900:1 20907:2 20918:1 20945:1 20948:1 20979:2 21010:1 21016:1 21029:1 21049:1 21062:1 21075:1 21079:1 21080:1 21088:1 21100:1 21122:1 21137:1 21158:1 21169:1 21174:1 21289:1 21320:1 21345:1 21371:1 21374:1 21380:1 21386:1 21387:1 21392:1 21397:1 21406:1 21415:1 21442:1 21444:1 21459:1 21472:2 21488:1 21490:1 21498:1 21504:1 21518:1 21520:1 21523:1 21538:1 21544:1 21548:5 21580:1 21616:1 21654:1 21663:1 21670:1 21675:6 21684:1 21695:2 21712:1 21714:1 21715:1 21724:1 21771:1 21778:1 21809:1 21812:1 21822:1 21824:1 21827:1 21830:1 21848:1 21867:2 21885:1 21916:1 21941:1 21952:1 21967:1 21971:1 21994:1 22009:2 22016:1 22021:1 22052:1 22059:1 22061:1 22077:1 22096:2 22150:1 22173:3 22174:2 22178:2 22189:2 22190:1 22212:1 22223:2 22236:1 22252:3 22257:1 22258:2 22291:1 22293:1 22294:1 22295:1 22302:1 22318:1 22331:1 22332:1 22336:1 22345:1 22357:1 22362:1 22392:1 22406:1 22412:1 22414:11 22422:1 22426:1 22427:1 22453:1 22464:1 22467:1 22493:1 22495:1 22496:1 22585:1 22593:1 22599:1 22616:2 22621:1 22672:1 22676:2 22687:1 22691:1 22692:1 22699:1 22705:1 22721:2 22726:1 22736:1 22737:1 22784:1 22848:1 22896:1 22902:1 22921:1 22947:1 22948:1 22962:2 22964:1 22980:2 22982:1 22998:3 23027:1 23033:2 23099:1 23143:1 23148:1 23165:1 23184:2 23188:1 23195:1 23196:1 23234:1 23239:1 23248:1 23254:1 23283:1 23297:1 23302:1 23310:1 23326:1 23340:1 23343:1 23352:1 23361:4 23394:1 23403:1 23441:1 23452:1 23494:1 23519:1 23532:1 23559:2 23568:1 23591:1 23592:1 23600:1 23616:2 23618:1 23620:1 23651:1 23659:1 23720:1 23722:1 23732:2 23736:1 23744:1 23749:2 23774:1 23798:1 23806:1 23814:1 23832:1 23875:1 23884:2 23896:3 23899:1 23918:1 23919:1 23920:1 23939:1 23966:1 23994:1 23996:1 24030:1 24044:1 24057:1 24058:2 24068:1 24093:1 24101:1 24124:1 24146:1 24150:1 24159:1 24160:1 24162:2 24164:2 24166:4 24167:1 24172:1 24174:2 24175:1 24183:2 24187:2 24233:1 24236:2 24237:1 24247:1 24263:2 24267:3 24295:1 24297:1 24307:1 24321:1 24342:1 24345:1 24362:1 24401:1 24402:1 24419:2 24440:2 24450:3 24453:1 24464:1 24508:1 24547:2 24548:1 24582:1 24630:2 24645:1 24658:1 24665:2 24707:2 24746:1 24757:1 24763:1 24772:1 24780:1 24783:3 24797:1 24810:1 24816:1 24822:2 24899:1 24912:1 24946:5 24955:1 24969:2 24990:1 24997:1 25005:1 25015:2 25028:1 25038:1 25046:1 25089:1 25093:2 25099:2 25104:1 25109:1 25111:2 25114:4 25137:1 25139:2 25141:5 25144:2 25145:1 25155:1 25162:1 25167:1 25170:1 25177:1 25214:2 25225:2 25247:1 25258:2 25259:1 25319:1 25320:1 25335:1 25342:1 25384:1 25401:1 25410:1 25416:1 25425:1 25436:2 25468:1 25473:1 25488:1 25515:1 25561:1 25576:1 25600:1 25665:1 25676:1 25679:1 25680:1 25700:1 25708:1 25726:1 25729:1 25742:1 25757:1 25759:1 25796:1 25804:1 25812:1 25816:1 25838:2 25865:4 25880:1 25901:1 25903:1 25906:1 25929:1 25930:1 25936:1 25953:1 25971:1 25992:4 25994:1 26021:1 26033:1 26038:1 26059:1 26093:1 26112:1 26118:1 26123:1 26127:2 26133:1 26166:1 26170:1 26175:1 26185:1 26221:1 26247:1 26261:2 26267:1 26290:1 26300:1 26309:1 26338:1 26339:1 26341:1 26352:1 26373:5 26392:2 26476:1 26482:1 26499:1 26547:1 26548:1 26569:1 26582:1 26588:1 26599:1 26624:1 26657:1 26681:3 26700:1 26709:3 26721:1 26736:1 26759:1 26778:1 26787:1 26788:3 26817:1 26840:2 26856:4 26894:1 26933:1 26960:5 26967:2 26981:1 26985:1 26994:2 27003:1 27006:1 27016:1 27022:1 27033:1 27036:1 27057:1 27069:1 27079:1 27090:1 27113:1 27136:1 27141:2 27160:1 27187:1 27275:1 27279:1 27332:1 27365:4 27419:1 27481:2 27560:1 27563:3 27575:1 27595:1 27627:1 27636:1 27675:1 27678:1 27687:11 27689:2 27692:5 27694:1 27695:2 27702:1 27724:4 27739:1 27777:1 27789:2 27804:1 27808:1 27820:1 27838:1 27859:8 27863:1 27867:1 27874:1 27887:1 27889:1 27893:1 27900:1 27906:1 27917:1 27930:1 27935:2 27948:1 27960:1 27964:1 27968:1 28003:1 28011:1 28028:1 28030:1 28051:1 28054:1 28068:2 28102:1 28126:1 28127:2 28128:1 28131:1 28174:1 28180:1 28183:1 28187:1 28193:1 28204:1 28214:1 28218:1 28223:1 28292:1 28315:1 28319:1 28320:1 28341:1 28356:1 28362:1 28363:1 28375:1 28380:1 28387:1 28397:2 28404:1 28411:1 28413:1 28419:1 28461:1 28506:2 28520:1 28536:2 28541:1 28553:1 28560:2 28594:1 28596:1 28648:1 28703:1 28709:1 28724:1 28734:1 28748:1 28792:1 28801:5 28816:1 28818:1 28836:4 28849:2 28913:5 28914:2 28919:1 28921:1 28924:2 28925:1 28941:1 28959:1 28961:3 28963:2 29003:1
9 11:1 14:1 37:2 60:1 83:1 89:1 90:1 109:1 125:1 143:1 150:1 153:3 162:1 170:2 189:3 214:1 245:1 270:1 282:1 293:1 295:12 303:1 316:1 318:2 333:1 348:1 403:1 424:3 442:1 444:1 515:1 563:2 564:1 569:1 572:2 590:1 596:2 598:1 600:1 613:2 626:1 634:1 643:1 674:1 678:1 685:1 734:1 748:1 752:1 767:1 770:1 788:1 795:1 807:1 808:1 830:2 832:3 842:1 843:1 856:6 867:1 871:1 877:2 879:4 885:1 892:1 893:1 899:1 905:3 925:1 963:1 974:3 989:1 996:2 998:1 1002:1 1019:1 1020:1 1027:1 1045:1 1078:1 1087:1 1104:2 1143:1 1148:2 1160:1 1163:1 1207:1 1244:1 1257:1 1276:1 1284:1 1287:1 1313:1 1330:1 1355:1 1374:1 1397:2 1401:4 1402:1 1420:1 1423:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1506:1 1507:1 1508:1 1543:1 1547:1 1555:1 1560:1 1562:2 1564:2 1571:1 1596:1 1598:1 1617:1 1619:1 1627:3 1634:1 1659:1 1660:1 1699:1 1760:1 1762:1 1778:1 1789:1 1802:1 1819:1 1895:8 1903:1 1907:2 1923:1 1929:1 1935:1 1962:2 1965:2 1993:1 1998:1 2006:1 2011:1 2082:1 2085:1 2089:3 2095:1 2100:1 2101:1 2132:1 2154:1 2156:1 2159:1 2165:1 2174:1 2177:1 2178:2 2179:2 2190:1 2207:1 2212:1 2216:1 2219:1 2220:1 2221:2 2223:4 2226:1 2227:1 2228:2 2233:1 2234:1 2237:1 2249:1 2251:5 2252:1 2253:6 2268:1 2279:1 2297:1 2309:1 2315:1 2322:1 2336:1 2339:1 2343:1 2347:1 2358:2 2370:1 2374:1 2376:1 2392:1 2410:2 2421:3 2445:1 2465:1 2473:1 2485:5 2494:1 2522:2 2536:1 2543:1 2552:3 2561:1 2563:1 2609:2 2648:1 2651:2 2656:1 2659:1 2667:1 2670:1 2675:1 2683:1 2708:1 2713:1 2723:1 2730:3 2756:1 2760:1 2761:1 2762:1 2766:3 2775:2 2780:1 2782:1 2854:1 2867:9 2883:2 2888:1 2900:1 2909:1 2936:6 2961:1 2965:3 2968:1 3023:1 3075:1 3105:1 3106:1 3188:1 3197:1 3232:2 3243:1 3256:1 3266:1 3271:1 3293:1 3295:1 3357:3 3397:1 3407:1 3420:1 3459:1 3471:1 3472:1 3475:1 3478:1 3488:1 3489:1 3517:1 3540:2 3548:1 3570:1 3574:1 3582:1 3599:3 3607:2 3608:1 3615:1 3639:3 3680:1 3684:1 3688:3 3692:1 3695:2 3698:2 3712:1 3730:1 3737:1 3740:1 3742:4 3744:1 3746:1 3748:5 3779:1 3783:2 3784:1 3788:1 3789:5 3790:1 3792:1 3813:2 3836:2 3838:1 3848:1 3851:1 3866:1 3876:1 3895:1 3902:2 3904:1 3918:2 3939:1 3940:1 3943:1 3964:2 3970:1 3977:1 3982:1 3988:2 3989:1 3998:3 3999:2 4005:1 4040:1 4054:2 4078:1 4085:2 4093:1 4113:1 4125:1 4129:1 4136:1 4193:2 4201:1 4204:1 4219:1 4254:1 4270:2 4272:1 4282:1 4362:4 4378:1 4416:1 4428:1 4434:1 4439:2 4455:1 4494:1 4560:1 4583:1 4613:1 4619:2 4626:3 4646:1 4691:1 4695:6 4724:1 4731:1 4742:1 4746:1 4759:1 4773:3 4787:1 4815:1 4818:1 4876:7 4878:2 4895:2 4925:1 4928:5 4940:1 4963:1 4985:3 5003:2 5005:2 5006:1 5008:1 5013:3 5028:2 5030:2 5033:1 5042:1 5045:1 5046:2 5064:1 5090:1 5131:2 5176:1 5177:1 5190:1 5195:1 5219:1 5220:1 5237:1 5245:2 5255:1 5280:1 5302:1 5306:1 5307:1 5328:1 5358:3 5369:2 5386:1 5429:1 5493:1 5501:1 5511:1 5524:1 5535:1 5538:1 5540:2 5548:1 5582:3 5584:1 5593:1 5615:2 5629:2 5639:1 5640:1 5663:3 5681:2 5694:1 5701:2 5705:1 5720:4 5721:1 5749:1 5773:1 5802:1 5812:1 5843:2 5850:1 5877:1 5920:1 5942:1 5947:1 5972:9 5987:1 5992:2 6000:1 6006:1 6017:1 6040:1 6056:1 6110:1 6130:1 6137:1 6138:1 6142:1 6150:1 6153:1 6176:4 6192:1 6199:1 6245:1 6259:3 6263:1 6270:1 6274:1 6275:1 6276:2 6279:2 6282:1 6283:8 6284:2 6334:1 6379:2 6420:2 6482:2 6493:1 6502:1 6513:1 6537:1 6542:1 6556:1 6565:1 6598:1 6609:1 6653:1 6654:1 6679:2 6689:1 6699:4 6715:1 6722:1 6728:1 6751:1 6757:1 6795:1 6823:1 6854:1 6855:2 6860:1 6866:1 6871:1 6885:1 6886:2 6906:1 6919:1 6922:2 6948:1 6987:1 6999:1 7050:7 7052:1 7067:1 7074:1 7091:1 7097:1 7099:1 7124:1 7125:1 7180:1 7198:1 7218:1 7234:1 7248:1 7263:3 7287:2 7297:1 7311:1 7334:2 7346:1 7347:1 7367:1 7371:1 7382:1 7386:1 7427:1 7463:1 7499:1 7518:1 7554:1 7555:9 7570:1 7580:1 7582:2 7603:2 7620:28 7622:1 7643:1 7644:6 7648:1 7671:1 7696:1 7710:1 7720:1 7725:2 7751:1 7755:1 7758:1 7826:1 7871:1 7878:1 7892:1 7897:2 7928:1 7962:1 8004:1 8007:1 8032:1 8043:2 8044:3 8062:1 8107:1 8116:1 8124:1 8130:2 8136:1 8142:2 8154:1 8156:3 8184:1 8186:1 8194:1 8236:1 8254:1 8270:1 8299:1 8301:2 8311:1 8319:1 8358:1 8369:2 8376:3 8379:1 8383:1 8387:2 8394:1 8395:1 8405:1 8412:1 8422:1 8430:5 8438:1 8441:1 8460:1 8468:1 8490:1 8497:1 8500:2 8501:1 8503:2 8504:1 8505:1 8508:1 8510:3 8512:1 8513:1 8516:1 8543:2 8550:2 8567:1 8572:1 8575:2 8586:1 8604:1 8640:1 8679:1 8688:1 8710:1 8719:1 8728:1 8772:2 8808:1 8810:1 8811:3 8815:1 8827:2 8833:1 8840:1 8857:1 8914:1 8936:2 8950:1 8971:1 8992:1 9001:1 9019:1 9022:1 9035:1 9040:1 9050:1 9057:1 9077:3 9107:1 9115:2 9139:1 9151:1 9200:1 9207:2 9209:1 9216:2 9226:12 9246:2 9247:1 9261:1 9305:1 9314:1 9329:1 9338:2 9349:1 9360:2 9363:4 9365:1 9390:1 9421:1 9433:2 9490:1 9497:1 9528:1 9529:1 9539:1 9558:1 9568:1 9569:1 9574:1 9582:1 9586:1 9594:1 9601:1 9608:1 9634:1 9652:1 9663:5 9676:1 9677:3 9687:2 9700:1 9746:2 9789:1 9829:1 9847:3 9850:1 9856:1 9871:1 9877:1 9880:1 9883:2 9898:2 9911:1 9919:1 9928:1 9932:1 9938:1 9954:1 9956:1 9968:4 9987:1 9996:1 10038:1 10065:1 10073:1 10094:1 10125:1 10126:1 10135:1 10191:1 10234:1 10241:1 10280:1 10302:1 10328:1 10329:1 10347:1 10351:2 10359:2 10372:1 10436:1 10448:1 10478:1 10486:1 10488:1 10504:2 10507:1 10513:1 10524:1 10526:1 10537:1 10555:1 10557:1 10558:1 10573:1 10582:1 10590:1 10592:2 10621:1 10657:3 10665:3 10683:1 10686:5 10737:1 10740:1 10748:1 10783:1 10787:1 10839:1 10857:1 10901:1 10903:3 10909:1 10910:1 10921:1 10937:1 10943:1 10947:1 10953:1 10962:1 10989:4 11010:1 11014:1 11016:1 11018:1 11062:1 11063:1 11071:1 11083:1 11094:1 11100:1 11106:1 11118:1 11147:1 11175:1 11197:1 11203:3 11208:1 11230:1 11248:1 11268:2 11284:1 11285:1 11300:1 11301:1 11302:1 11315:2 11317:1 11333:1 11370:3 11371:1 11430:1 11442:1 11469:1 11476:1 11477:1 11481:1 11501:1 11509:1 11514:1 11520:1 11526:2 11530:3 11550:3 11603:2 11609:1 11615:1 11619:1 11622:1 11631:1 11645:1 11649:1 11664:3 11684:3 11690:1 11693:1 11711:1 11716:1 11734:1 11772:1 11789:1 11824:1 11852:1 11865:3 11871:1 11916:1 11931:2 11936:2 11952:1 11973:3 11990:1 11997:1 12004:1 12110:2 12111:3 12115:1 12132:1 12154:1 12165:1 12166:3 12178:1 12184:2 12239:1 12250:1 12276:1 12281:3 12302:1 12345:1 12346:1 12349:2 12362:1 12380:1 12398:1 12420:1 12458:1 12476:1 12508:1 12515:1 12526:1 12608:3 12621:1 12633:1 12648:7 12658:1 12668:2 12671:3 12681:1 12701:1 12733:1 12764:1 12769:1 12772:2 12789:1 12796:2 12813:1 12831:1 12835:1 12888:1 12914:1 12949:2 12984:1 13045:3 13049:1 13072:1 13076:4 13080:2 13087:1 13093:1 13094:4 13128:1 13144:1 13166:2 13206:1 13211:1 13213:1 13224:2 13232:2 13233:1 13252:1 13278:1 13282:1 13301:1 13302:3 13306:1 13310:1 13320:1 13331:1 13341:1 13364:1 13372:3 13376:1 13416:2 13420:1 13421:1 13454:1 13557:1 13561:1 13599:1 13601:1 13606:3 13607:1 13610:1 13620:1 13628:1 13633:1 13654:1 13680:2 13694:1 13697:1 13723:1 13733:2 13764:1 13779:1 13788:2 13827:3 13832:2 13847:1 13886:1 13904:2 13931:1 13974:1 13980:1 14006:1 14018:1 14054:1 14076:4 14089:1 14107:3 14134:1 14140:1 14152:1 14179:1 14180:1 14223:1 14255:1 14274:1 14312:1 14313:1 14317:2 14318:3 14324:1 14325:4 14335:1 14339:1 14347:1 14358:1 14376:1 14385:1 14433:1 14449:3 14482:1 14485:1 14489:2 14492:1 14533:3 14573:1 14591:1 14623:1 14637:1 14647:3 14674:1 14683:2 14701:1 14798:1 14820:3 14821:1 14824:1 14837:1 14881:1 14891:3 14893:1 14910:1 14916:1 14936:1 14938:1 14961:2 14970:1 14984:1 14986:1 15000:1 15020:3 15037:1 15117:1 15123:1 15130:1 15134:1 15146:1 15173:1 15177:1 15233:1 15245:1 15259:2 15301:2 15322:1 15332:4 15385:2 15398:1 15403:1 15404:3 15414:1 15420:1 15431:1 15435:1 15453:2 15459:2 15471:1 15482:2 15539:1 15556:1 15563:2 15578:3 15591:2 15598:1 15607:2 15614:1 15624:1 15625:1 15626:1 15642:1 15644:1 15679:1 15687:1 15717:1 15745:3 15750:1 15757:1 15831:1 15832:3 15871:1 15879:3 15893:1 15896:1 15909:1 15911:1 15967:1 15973:1 16014:1 16029:7 16030:1 16048:2 16055:1 16095:2 16119:2 16122:1 16150:1 16164:1 16172:1 16177:1 16190:1 16194:1 16196:1 16242:1 16289:1 16290:2 16338:1 16353:1 16363:1 16398:1 16400:1 16403:2 16482:1 16488:1 16489:1 16505:1 16511:1 16527:1 16528:1 16546:1 16555:1 16589:1 16597:1 16605:1 16639:1 16662:1 16666:2 16685:1 16702:1 16708:1 16714:1 16716:2 16718:1 16738:1 16747:1 16761:1 16776:1 16789:1 16828:1 16843:1 16844:4 16851:1 16905:1 16915:3 16929:1 16930:1 16947:1 16966:3 16991:1 16995:1 17013:2 17046:1 17050:1 17053:1 17059:3 17091:3 17106:1 17136:1 17138:1 17155:1 17156:1 17172:1 17179:1 17186:1 17199:2 17207:1 17210:1 17265:1 17270:2 17277:1 17346:1 17360:1 17363:1 17369:1 17374:2 17397:1 17401:1 17422:1 17447:1 17448:2 17454:2 17463:1 17475:3 17476:1 17509:1 17522:4 17523:2 17558:1 17560:1 17585:1 17587:1 17592:5 17604:1 17631:1 17636:1 17644:2 17648:1 17652:1 17662:1 17665:2 17667:1 17670:1 17683:1 17692:1 17721:1 17722:1 17747:1 17753:2 17767:3 17772:1 17781:12 17787:1 17790:1 17794:1 17819:1 17822:1 17838:1 17852:1 17855:1 17860:1 17871:1 17873:1 17882:1 17896:3 17907:1 17922:1 17931:1 17962:1 17967:1 17977:1 17979:1 17989:1 17994:1 17998:2 18007:2 18009:1 18019:1 18032:1 18056:1 18067:1 18080:1 18084:1 18120:1 18133:1 18170:1 18212:1 18219:1 18220:1 18315:4 18331:1 18380:1 18399:1 18444:1 18449:1 18461:1 18476:2 18478:2 18481:1 18498:1 18504:2 18509:1 18516:1 18519:984 18524:1 18538:1 18572:1 18573:1 18608:1 18643:1 18648:1 18708:2 18715:3 18720:1 18725:2 18727:1 18728:1 18748:1 18802:3 18808:1 18816:1 18842:12 18863:2 18904:1 18907:1 18920:1 18930:2 18938:1 18947:1 18968:1 18982:2 18991:2 19017:1 19033:1 19055:2 19079:1 19113:1 19135:2 19140:1 19142:1 19176:1 19180:1 19190:1 19192:1 19197:2 19202:1 19210:1 19228:4 19235:1 19257:1 19271:1 19298:6 19314:1 19335:4 19336:1 19350:1 19359:1 19370:1 19412:1 19442:2 19475:1 19482:1 19494:1 19507:3 19508:1 19515:3 19516:1 19531:1 19549:1 19550:1 19551:1 19566:1 19573:1 19600:1 19634:1 19661:1 19674:1 19680:1 19708:2 19719:1 19724:1 19742:1 19745:1 19751:1 19752:1 19767:1 19775:1 19784:2 19794:1 19816:1 19818:1 19833:1 19839:2 19862:1 19876:2 19904:1 19918:1 19936:1 19949:2 19953:1 19964:1 19978:2 19992:1 20003:1 20004:1 20017:1 20031:1 20032:1 20037:1 20068:1 20084:1 20086:1 20117:1 20118:2 20159:3 20187:1 20211:3 20212:2 20218:2 20226:1 20231:1 20237:1 20283:1 20293:1 20404:2 20406:2 20453:1 20455:3 20465:1 20468:1 20474:1 20525:1 20531:2 20567:4 20594:1 20599:1 20600:1 20652:1 20656:1 20658:1 20677:2 20683:1 20685:1 20692:1 20710:1 20722:2 20738:1 20747:2 20770:1 20780:2 20782:1 20797:1 20823:1 20846:1 20862:1 20900:1 20907:2 20918:1 20945:1 20948:1 20979:2 20985:1 21010:1 21016:1 21029:1 21049:1 21062:1 21075:1 21079:1 21080:1 21088:1 21100:1 21122:1 21137:1 21158:1 21169:1 21174:1 21289:1 21320:1 21345:1 21371:1 21374:1 21380:1 21386:1 21387:1 21392:1 21397:1 21406:1 21415:1 21442:2 21444:1 21459:1 21472:3 21488:1 21490:1 21498:1 21504:1 21509:1 21518:1 21520:1 21523:1 21538:1 21544:1 21548:5 21580:1 21616:1 21654:1 21663:1 21670:1 21675:7 21684:1 21695:2 21712:1 21714:1 21715:1 21724:1 21771:1 21778:1 21809:1 21812:1 21822:1 21824:1 21827:1 21830:1 21848:2 21867:2 21885:1 21916:2 21941:1 21952:1 21967:1 21971:1 21994:1 22009:2 22016:1 22021:1 22052:1 22059:1 22061:1 22065:1 22077:1 22096:2 22144:1 22150:1 22173:3 22174:2 22178:3 22189:2 22190:1 22212:1 22223:2 22236:1 22248:1 22252:3 22257:1 22258:2 22291:1 22293:1 22294:1 22295:1 22302:1 22318:1 22331:1 22332:1 22336:1 22345:1 22357:1 22362:1 22392:1 22406:1 22412:1 22414:12 22422:2 22426:1 22427:1 22453:1 22464:1 22467:1 22493:1 22495:1 22496:1 22585:1 22593:1 22599:1 22616:2 22621:1 22672:1 22676:2 22687:1 22691:1 22692:1 22699:1 22705:1 22721:2 22726:1 22736:1 22737:1 22777:1 22784:1 22848:1 22896:1 22902:1 22919:1 22921:1 22947:1 22948:1 22962:2 22964:1 22980:2 22982:1 22998:3 23027:1 23033:2 23038:1 23099:1 23143:1 23148:1 23165:1 23184:3 23188:1 23195:1 23196:1 23234:1 23239:1 23248:1 23254:1 23283:2 23297:1 23299:1 23302:1 23310:1 23326:1 23340:1 23343:1 23352:1 23361:5 23394:2 23403:1 23437:1 23441:1 23452:1 23494:1 23519:1 23532:2 23559:2 23568:1 23591:1 23592:1 23600:1 23616:3 23618:1 23620:1 23651:1 23659:1 23720:1 23722:1 23732:2 23736:1 23744:1 23749:2 23774:1 23785:1 23798:1 23806:1 23814:1 23832:1 23875:1 23884:3 23896:3 23899:1 23918:1 23919:1 23920:1 23939:1 23966:1 23994:1 23996:1 24030:1 24044:1 24057:2 24058:2 24068:1 24093:1 24101:1 24124:1 24146:1 24150:1 24159:1 24160:1 24162:2 24164:2 24166:4 24167:1 24172:1 24174:2 24175:1 24183:2 24187:2 24206:1 24233:1 24236:2 24237:1 24247:1 24263:2 24267:3 24291:1 24295:1 24297:1 24307:1 24321:1 24342:1 24345:1 24362:1 24401:1 24402:1 24419:2 24440:2 24450:3 24453:1 24464:1 24508:1 24547:2 24548:1 24571:1 24582:1 24630:3 24645:1 24658:1 24665:2 24707:2 24746:1 24757:1 24763:1 24772:1 24780:1 24783:3 24797:1 24810:1 24816:1 24822:2 24899:1 24912:1 24946:6 24955:1 24969:2 24990:1 24997:1 25005:1 25015:2 25028:1 25038:1 25046:1 25089:1 25093:2 25099:2 25104:1 25109:1 25111:2 25114:4 25137:1 25139:2 25141:5 25144:2 25145:1 25155:1 25162:1 25167:1 25170:1 25177:1 25182:1 25214:2 25225:2 25247:1 25258:2 25259:1 25319:1 25320:1 25335:1 25342:1 25384:1 25386:1 25401:1 25410:1 25416:2 25425:1 25436:2 25468:1 25473:1 25488:1 25515:1 25561:1 25576:1 25600:1 25665:1 25676:1 25679:1 25680:1 25700:1 25708:1 25726:1 25729:1 25742:1 25757:1 25759:2 25796:1 25804:1 25812:1 25816:1 25838:3 25865:4 25880:1 25901:1 25903:1 25906:1 25929:1 25930:1 25936:1 25953:1 25971:1 25992:4 25994:1 26021:2 26033:1 26038:1 26059:1 26093:2 26112:2 26118:1 26123:1 26127:2 26133:1 26166:2 26170:1 26175:1 26185:1 26221:1 26247:1 26261:2 26267:1 26290:1 26300:1 26309:1 26316:1 26338:1 26339:1 26341:1 26352:1 26373:5 26392:2 26476:1 26482:1 26499:1 26547:1 26548:1 26569:1 26582:1 26588:1 26599:1 26624:1 26657:1 26681:4 26700:2 26709:3 26721:1 26736:1 26737:1 26759:1 26778:1 26787:1 26788:3 26817:1 26840:2 26856:5 26894:1 26933:1 26960:5 26967:2 26981:1 26985:2 26994:2 27003:1 27006:1 27016:1 27022:1 27033:1 27036:1 27057:1 27069:2 27070:1 27079:1 27090:1 27113:1 27136:1 27141:2 27160:1 27187:1 27275:1 27279:1 27332:1 27365:4 27419:1 27481:2 27560:1 27563:4 27575:1 27595:1 27627:1 27636:1 27675:1 27678:1 27687:12 27689:2 27692:5 27694:1 27695:2 27702:1 27724:5 27739:1 27777:1 27789:2 27804:1 27808:1 27820:1 27838:1 27859:9 27863:1 27867:1 27874:1 27887:1 27889:1 27893:1 27900:1 27906:1 27917:1 27923:1 27930:1 27934:1 27935:2 27948:1 27960:1 27964:1 27968:1 27969:1 28003:1 28011:1 28028:1 28030:1 28051:1 28054:1 28068:2 28102:1 28126:1 28127:2 28128:1 28131:1 28174:1 28180:1 28183:1 28187:1 28193:1 28204:1 28214:1 28218:1 28223:1 28292:1 28315:1 28319:1 28320:1 28341:1 28356:1 28362:1 28363:1 28375:1 28380:1 28387:1 28397:2 28404:1 28411:2 28413:1 28419:1 28461:1 28506:2 28520:1 28536:2 28541:1 28553:1 28560:2 28594:1 28596:1 28648:1 28703:1 28709:1 28724:1 28734:1 28748:1 28761:1 28792:1 28801:5 28816:1 28818:1 28836:5 28849:3 28913:6 28914:2 28919:1 28921:1 28924:2 28925:1 28941:1 28959:2 28961:3 28963:2 29003:1
9 11:1 14:1 37:2 60:1 83:1 89:1 90:1 109:1 125:1 143:1 150:1 153:3 162:1 170:2 189:3 214:1 245:1 270:1 282:1 293:1 295:14 303:1 316:1 318:2 333:1 348:1 403:1 424:3 442:1 444:1 515:1 563:2 564:1 569:1 572:2 590:1 596:2 598:1 600:1 613:2 626:1 634:1 643:1 674:1 678:1 685:1 716:1 734:1 748:1 752:1 767:1 770:1 788:1 795:1 807:1 808:1 830:2 832:3 842:1 843:1 856:7 867:1 871:1 877:2 879:4 885:1 892:1 893:1 899:1 905:3 925:1 963:1 974:3 989:1 996:2 998:1 1002:1 1019:1 1020:1 1027:1 1045:1 1078:1 1087:1 1104:2 1143:1 1148:2 1160:1 1163:1 1207:1 1241:1 1244:1 1257:1 1276:1 1284:1 1287:1 1313:1 1330:1 1355:1 1374:1 1397:2 1401:4 1402:1 1420:1 1423:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1506:1 1507:1 1508:1 1543:1 1547:1 1555:1 1560:1 1562:2 1564:2 1571:1 1596:1 1598:1 1617:1 1619:1 1627:3 1634:1 1659:1 1660:1 1699:1 1760:1 1762:1 1778:1 1789:1 1794:1 1802:1 1819:1 1895:9 1903:1 1907:2 1923:1 1929:1 1935:1 1936:1 1962:3 1965:2 1993:1 1998:1 2006:1 2011:1 2082:1 2085:1 2089:3 2095:1 2100:1 2101:1 2132:1 2154:1 2156:1 2159:1 2160:1 2165:1 2172:1 2174:1 2177:1 2178:2 2179:2 2190:1 2207:1 2212:1 2216:1 2219:1 2220:2 2221:3 2223:4 2226:1 2227:1 2228:2 2232:1 2233:1 2234:1 2237:1 2249:1 2251:5 2252:1 2253:6 2268:1 2279:1 2297:1 2309:1 2315:1 2322:1 2336:1 2339:1 2343:1 2347:1 2358:2 2370:1 2374:1 2376:1 2392:1 2410:2 2421:3 2433:1 2445:1 2465:1 2473:1 2485:5 2494:1 2522:2 2536:1 2543:1 2552:3 2561:2 2563:1 2609:2 2648:1 2651:2 2656:1 2659:1 2667:1 2670:1 2675:1 2683:1 2688:1 2708:1 2713:1 2723:1 2730:3 2756:1 2760:1 2761:1 2762:1 2766:3 2775:2 2780:1 2782:1 2813:1 2854:2 2867:9 2883:2 2888:1 2900:1 2909:1 2936:6 2961:1 2965:3 2968:1 2989:1 3023:1 3074:1 3075:1 3105:1 3106:1 3188:1 3197:1 3205:1 3231:1 3232:3 3243:1 3256:1 3266:1 3271:1 3293:1 3295:2 3338:1 3357:3 3397:1 3407:1 3420:1 3459:1 3471:1 3472:1 3475:1 3478:1 3488:1 3489:1 3517:1 3528:1 3540:2 3548:1 3558:1 3570:1 3574:1 3582:1 3599:3 3606:1 3607:2 3608:1 3615:1 3639:3 3669:1 3680:1 3684:1 3688:3 3692:1 3695:2 3698:2 3712:1 3730:1 3737:1 3740:1 3742:4 3744:1 3746:2 3748:5 3779:1 3783:2 3784:1 3788:1 3789:5 3790:1 3792:1 3813:2 3836:2 3838:1 3848:1 3851:1 3862:1 3866:1 3876:1 3895:1 3902:2 3904:1 3918:2 3939:1 3940:1 3943:1 3964:2 3970:1 3977:1 3982:1 3988:2 3989:1 3998:4 3999:2 4005:1 4040:1 4054:2 4078:1 4085:2 4093:1 4113:1 4125:1 4129:1 4136:1 4193:2 4201:1 4204:1 4219:1 4254:1 4270:2 4272:1 4282:1 4298:1 4362:4 4378:1 4416:1 4428:1 4434:1 4439:2 4455:1 4494:1 4560:1 4583:1 4613:1 4619:2 4626:3 4646:1 4691:1 4695:7 4724:1 4731:1 4742:1 4746:1 4759:1 4773:3 4787:1 4815:1 4818:1 4876:8 4878:2 4895:2 4903:1 4925:1 4928:5 4940:1 4963:1 4964:1 4980:1 4985:3 5003:2 5005:2 5006:1 5008:1 5013:3 5028:2 5030:2 5033:1 5042:1 5045:1 5046:2 5064:1 5090:1 5131:2 5157:1 5176:1 5177:1 5190:1 5195:1 5219:1 5220:1 5237:1 5245:2 5255:1 5280:1 5302:1 5306:1 5307:1 5328:1 5358:4 5362:1 5369:2 5386:1 5404:1 5429:1 5453:1 5480:1 5493:1 5501:1 5511:2 5524:1 5534:1 5535:1 5538:1 5540:2 5548:1 5582:3 5584:1 5593:1 5615:2 5629:2 5639:1 5640:1 5663:3 5681:2 5694:1 5701:2 5705:1 5720:4 5721:1 5728:1 5749:1 5773:1 5802:1 5812:1 5843:2 5850:1 5852:1 5877:1 5920:1 5942:1 5947:2 5972:9 5987:2 5992:2 6000:1 6006:1 6017:1 6040:1 6056:1 6110:1 6130:1 6137:1 6138:1 6142:1 6150:1 6153:1 6176:4 6192:1 6199:1 6245:1 6259:3 6263:1 6270:1 6274:1 6275:1 6276:3 6279:2 6282:2 6283:8 6284:2 6334:1 6379:2 6420:2 6482:2 6493:1 6502:1 6507:1 6513:1 6537:1 6542:1 6556:1 6565:1 6598:1 6609:1 6613:1 6653:1 6654:1 6679:2 6689:1 6699:4 6715:1 6722:1 6728:1 6751:1 6757:1 6795:1 6823:1 6851:1 6854:1 6855:2 6860:1 6866:1 6871:1 6885:1 6886:2 6906:1 6919:1 6922:2 6948:1 6987:1 6999:1 7049:1 7050:7 7052:1 7067:1 7074:1 7091:1 7097:1 7099:1 7124:1 7125:1 7180:1 7198:2 7218:1 7234:1 7248:1 7263:3 7287:2 7290:1 7297:1 7311:1 7334:2 7346:1 7347:1 7367:1 7371:1 7382:1 7386:1 7427:1 7463:1 7499:1 7518:1 7554:1 7555:9 7570:1 7580:1 7582:2 7584:1 7603:2 7620:32 7622:1 7643:2 7644:6 7645:1 7648:1 7671:1 7696:1 7710:1 7720:1 7725:2 7751:1 7755:1 7758:1 7826:1 7871:1 7878:1 7892:1 7897:2 7928:1 7962:1 8004:1 8007:1 8032:1 8043:2 8044:3 8045:1 8062:1 8063:1 8107:1 8116:1 8124:1 8130:2 8136:1 8142:2 8154:1 8156:3 8184:1 8186:1 8194:1 8236:1 8254:1 8270:1 8299:1 8301:2 8311:1 8319:1 8358:1 8369:2 8376:3 8379:1 8383:1 8387:2 8394:1 8395:1 8405:1 8412:1 8422:1 8430:5 8438:1 8441:1 8460:1 8468:1 8480:1 8490:1 8497:1 8500:2 8501:1 8503:2 8504:1 8505:1 8508:1 8510:3 8512:1 8513:1 8516:1 8543:2 8550:3 8567:1 8572:1 8575:2 8586:1 8604:1 8640:1 8655:1 8679:1 8688:1 8710:1 8719:1 8728:1 8772:2 8808:1 8810:1 8811:3 8815:1 8827:2 8833:1 8840:1 8857:1 8914:1 8929:1 8936:2 8950:2 8971:1 8992:1 9001:1 9019:1 9022:1 9035:1 9040:1 9050:1 9057:1 9065:1 9077:3 9107:1 9115:2 9121:1 9139:1 9151:1 9200:1 9207:2 9209:1 9216:2 9226:14 9246:2 9247:1 9261:1 9305:1 9314:1 9319:1 9329:1 9338:2 9349:1 9360:2 9363:4 9365:1 9390:1 9421:1 9433:3 9490:1 9497:1 9528:1 9529:1 9539:1 9558:1 9568:1 9569:1 9574:1 9582:1 9586:2 9594:1 9601:1 9608:1 9634:1 9652:1 9663:5 9676:1 9677:3 9687:2 9700:1 9746:2 9789:1 9829:1 9847:3 9850:1 9856:1 9871:1 9877:1 9880:1 9883:2 9898:2 9911:1 9913:1 9919:1 9928:1 9932:1 9938:1 9939:1 9954:1 9956:1 9968:4 9987:1 9996:1 10038:1 10065:1 10073:1 10094:1 10125:1 10126:1 10135:1 10191:1 10234:1 10241:1 10280:1 10302:1 10328:1 10329:1 10347:1 10351:2 10359:2 10372:1 10436:1 10448:1 10478:1 10486:1 10488:1 10504:2 10507:1 10513:1 10524:1 10526:1 10537:1 10555:1 10557:1 10558:1 10573:1 10582:1 10590:1 10592:2 10621:1 10657:3 10665:3 10683:1 10686:6 10737:1 10740:1 10748:1 10783:1 10787:1 10839:1 10857:1 10901:1 10903:3 10905:1 10909:1 10910:1 10921:2 10937:1 10943:1 10947:1 10953:1 10962:1 10989:4 11010:1 11014:1 11016:1 11018:1 11062:1 11063:1 11071:1 11083:1 11094:1 11100:1 11106:1 11107:1 11118:1 11147:1 11175:1 11197:1 11203:3 11208:1 11230:1 11234:1 11248:1 11268:2 11284:1 11285:1 11300:1 11301:1 11302:1 11315:2 11317:1 11333:1 11341:1 11370:3 11371:1 11400:1 11430:1 11442:1 11469:1 11476:1 11477:1 11481:1 11501:1 11506:1 11509:1 11514:1 11520:2 11526:2 11530:3 11550:3 11603:2 11609:1 11614:1 11615:1 11619:1 11622:1 11631:1 11645:1 11649:1 11664:3 11684:3 11690:1 11693:1 11711:1 11716:1 11734:1 11772:1 11789:1 11824:1 11852:1 11865:3 11871:1 11916:1 11931:2 11936:3 11952:1 11973:3 11990:1 11997:1 12004:1 12109:1 12110:2 12111:3 12115:1 12132:1 12154:1 12165:1 12166:3 12178:1 12184:2 12239:1 12250:1 12272:1 12276:1 12281:3 12302:1 12337:1 12345:1 12346:1 12349:2 12362:1 12380:1 12398:1 12420:1 12458:1 12472:1 12476:1 12508:1 12515:1 12526:2 12608:3 12621:1 12633:1 12648:7 12658:1 12668:2 12671:3 12676:1 12681:1 12701:1 12733:1 12764:1 12769:1 12772:2 12789:1 12796:2 12813:1 12831:1 12835:1 12888:1 12914:1 12949:2 12984:1 12999:1 13045:3 13049:1 13072:1 13076:4 13080:3 13087:1 13093:1 13094:5 13128:1 13142:1 13144:1 13166:2 13206:1 13211:1 13213:1 13224:2 13232:2 13233:1 13252:1 13278:1 13282:1 13283:1 13301:1 13302:3 13306:1 13310:1 13320:1 13331:1 13341:1 13364:1 13372:3 13376:1 13416:2 13420:1 13421:1 13454:1 13557:1 13561:1 13599:2 13601:1 13606:4 13607:1 13610:1 13620:1 13628:1 13633:1 13654:1 13680:2 13691:1 13694:1 13697:1 13723:1 13733:2 13764:1 13779:1 13788:2 13827:3 13832:2 13847:1 13886:1 13895:1 13904:3 13931:1 13942:1 13974:1 13980:1 14006:1 14018:1 14054:1 14076:4 14089:1 14107:3 14134:1 14140:1 14152:1 14179:1 14180:1 14223:1 14255:1 14274:1 14312:1 14313:1 14317:2 14318:3 14324:1 14325:4 14335:1 14339:1 14347:1 14358:1 14376:1 14385:1 14433:1 14449:3 14482:1 14485:1 14489:2 14492:1 14523:1 14533:3 14573:1 14591:1 14623:1 14637:1 14647:3 14674:1 14683:2 14701:1 14761:1 14798:1 14820:3 14821:1 14823:1 14824:1 14837:1 14881:1 14883:1 14891:3 14893:1 14910:1 14916:1 14936:1 14938:1 14961:2 14970:1 14984:1 14986:1 15000:1 15020:3 15037:1 15117:1 15123:1 15125:1 15130:1 15134:1 15146:1 15158:1 15173:1 15177:1 15180:1 15233:1 15245:1 15259:2 15301:2 15322:1 15332:4 15385:2 15398:1 15403:1 15404:3 15414:2 15420:1 15431:1 15435:1 15453:2 15459:2 15471:1 15482:2 15539:1 15556:1 15563:2 15578:3 15591:2 15598:1 15607:2 15614:2 15624:1 15625:2 15626:1 15637:1 15642:1 15644:1 15679:1 15687:1 15717:1 15745:3 15750:1 15757:1 15785:1 15831:1 15832:3 15871:1 15879:3 15893:1 15896:1 15909:1 15911:1 15967:1 15973:2 16014:1 16026:1 16029:8 16030:1 16048:2 16055:1 16095:2 16119:3 16122:1 16150:1 16164:1 16172:1 16177:1 16190:1 16194:1 16196:1 16242:1 16289:1 16290:2 16338:1 16353:1 16363:1 16398:1 16400:1 16403:2 16482:1 16488:1 16489:1 16505:1 16511:1 16527:1 16528:1 16546:1 16555:2 16589:1 16597:1 16605:1 16639:1 16662:1 16666:2 16675:1 16685:1 16702:1 16708:1 16714:1 16716:2 16718:1 16738:1 16747:1 16761:1 16776:1 16789:1 16802:1 16828:1 16843:1 16844:4 16851:1 16867:1 16905:1 16915:3 16929:1 16930:1 16947:1 16966:3 16991:1 16995:1 17013:2 17046:1 17050:1 17053:1 17059:3 17091:3 17106:1 17136:1 17138:1 17155:1 17156:1 17167:1 17172:1 17179:1 17186:1 17199:2 17207:1 17210:1 17265:1 17270:2 17277:1 17346:1 17360:1 17363:1 17369:1 17374:2 17397:1 17401:1 17422:1 17445:1 17447:1 17448:2 17454:2 17463:1 17475:3 17476:1 17509:1 17522:4 17523:2 17558:1 17560:1 17585:1 17587:1 17592:5 17604:1 17631:1 17636:1 17644:2 17648:1 17652:1 17662:1 17665:2 17667:1 17670:1 17683:1 17692:1 17721:1 17722:1 17747:1 17753:2 17767:4 17772:1 17781:13 17785:1 17787:1 17790:1 17794:1 17819:1 17822:1 17838:1 17852:1 17855:1 17860:1 17871:1 17873:1 17882:1 17886:1 17896:3 17907:1 17922:1 17931:1 17962:1 17967:1 17977:1 17979:1 17989:1 17994:1 17998:2 18007:3 18009:1 18019:1 18032:1 18056:1 18067:1 18080:1 18084:1 18120:1 18133:1 18170:1 18212:1 18219:1 18220:1 18315:4 18331:1 18380:1 18381:1 18399:1 18444:1 18449:1 18461:1 18476:2 18478:2 18481:1 18498:1 18504:3 18509:1 18516:1 18519:1092 18524:1 18538:1 18572:2 18573:1 18608:1 18643:1 18648:1 18690:1 18708:2 18715:3 18720:1 18725:2 18727:1 18728:1 18748:1 18763:1 18802:3 18808:1 18816:1 18842:14 18863:2 18904:1 18907:1 18920:1 18930:2 18938:1 18947:1 18968:1 18982:2 18991:2 19017:1 19033:1 19055:2 19079:1 19089:1 19113:1 19135:2 19140:1 19142:1 19176:1 19180:1 19187:1 19190:1 19192:1 19197:2 19202:1 19210:1 19228:4 19235:1 19257:1 19271:1 19298:6 19314:1 19315:1 19335:5 19336:1 19350:1 19359:1 19370:1 19412:1 19442:2 19475:1 19482:1 19494:1 19507:3 19508:1 19515:3 19516:1 19531:1 19549:1 19550:1 19551:1 19566:1 19573:1 19600:1 19628:1 19634:1 19661:1 19674:1 19680:1 19708:2 19719:1 19724:1 19735:1 19742:1 19745:1 19751:1 19752:1 19754:1 19767:1 19775:2 19784:2 19794:1 19816:1 19818:1 19833:1 19839:2 19862:1 19876:2 19904:1 19918:1 19936:1 19949:2 19953:1 19964:1 19978:2 19992:1 20003:1 20004:1 20017:1 20031:1 20032:1 20037:1 20052:1 20068:1 20084:1 20086:1 20117:1 20118:2 20159:3 20187:1 20211:3 20212:2 20218:2 20226:1 20231:1 20237:1 20281:1 20283:1 20293:1 20302:1 20404:2 20406:2 20420:1 20453:1 20455:3 20465:1 20468:1 20474:1 20525:1 20531:2 20567:4 20594:1 20599:1 20600:1 20652:1 20656:1 20658:1 20677:2 20683:1 20685:1 20692:1 20710:1 20722:2 20738:1 20747:2 20770:1 20780:2 20782:1 20797:1 20823:1 20846:1 20862:1 20900:1 20907:2 20918:1 20945:1 20948:1 20979:2 20985:1 21010:1 21016:1 21019:1 21029:1 21049:1 21062:1 21075:1 21079:1 21080:1 21088:1 21100:1 21122:1 21137:2 21158:1 21169:1 21174:1 21196:1 21289:1 21320:1 21345:1 21371:1 21374:1 21380:1 21386:2 21387:1 21392:1 21397:1 21406:1 21415:1 21442:2 21444:1 21459:1 21472:3 21488:1 21490:1 21498:1 21499:1 21504:1 21509:1 21518:1 21520:1 21523:1 21538:1 21544:1 21548:5 21580:1 21616:1 21654:2 21663:1 21670:1 21675:7 21684:1 21695:2 21712:1 21714:2 21715:1 21724:1 21750:1 21771:1 21778:1 21809:1 21812:1 21822:1 21824:1 21827:1 21830:1 21846:1 21848:2 21867:2 21870:1 21885:1 21916:2 21941:1 21952:1 21967:1 21971:1 21994:1 22009:3 22016:1 22021:1 22052:1 22059:1 22061:1 22065:1 22077:1 22096:2 22144:1 22150:1 22173:3 22174:2 22178:3 22189:2 22190:1 22212:1 22223:2 22236:1 22248:1 22252:3 22257:1 22258:2 22291:1 22293:1 22294:1 22295:1 22302:1 22318:1 22331:1 22332:1 22336:1 22345:1 22357:1 22362:1 22391:1 22392:1 22406:1 22412:1 22414:13 22422:3 22426:1 22427:1 22453:2 22464:1 22467:1 22493:1 22495:1 22496:1 22538:1 22585:1 22593:1 22599:1 22616:2 22621:1 22672:1 22676:2 22687:1 22691:1 22692:1 22699:2 22705:1 22721:2 22726:1 22736:1 22737:1 22777:1 22784:1 22848:1 22896:1 22902:1 22919:1 22921:1 22947:1 22948:1 22962:2 22964:1 22980:2 22982:1 22998:3 23027:1 23033:2 23038:1 23099:1 23143:1 23148:1 23165:1 23184:3 23188:1 23195:1 23196:1 23234:1 23239:1 23248:1 23254:1 23283:2 23297:1 23299:1 23302:1 23310:1 23326:1 23340:1 23343:1 23352:1 23361:5 23394:2 23403:1 23408:1 23437:1 23441:1 23452:1 23494:1 23519:1 23532:2 23559:2 23568:1 23591:1 23592:1 23600:1 23616:3 23618:1 23620:1 23635:1 23651:1 23659:1 23720:1 23722:1 23732:2 23736:1 23744:1 23749:2 23774:1 23785:1 23798:1 23806:1 23814:1 23832:1 23875:1 23884:3 23896:3 23899:1 23910:1 23918:1 23919:1 23920:1 23939:1 23966:1 23973:1 23994:1 23996:1 24030:1 24044:1 24057:2 24058:2 24068:1 24093:1 24098:1 24101:1 24124:1 24146:1 24150:1 24159:1 24160:1 24162:3 24164:2 24166:4 24167:1 24172:1 24174:2 24175:1 24183:2 24187:2 24206:2 24233:1 24236:2 24237:1 24247:1 24263:2 24267:3 24291:1 24295:1 24297:1 24307:1 24321:1 24342:1 24345:1 24362:1 24401:1 24402:1 24419:2 24440:2 24448:1 24450:3 24453:1 24464:1 24508:1 24547:2 24548:1 24571:1 24582:1 24584:1 24630:3 24645:1 24658:1 24665:2 24707:2 24746:1 24757:1 24763:1 24772:1 24780:1 24783:3 24791:1 24797:1 24810:1 24816:1 24822:3 24878:1 24899:1 24912:1 24946:8 24955:1 24969:3 24990:1 24997:1 25005:1 25015:2 25028:1 25038:1 25046:1 25089:1 25093:2 25099:2 25104:1 25109:1 25111:2 25114:4 25137:1 25139:2 25141:5 25144:2 25145:1 25155:1 25162:1 25167:1 25170:1 25177:1 25182:1 25214:2 25225:2 25247:1 25258:2 25259:1 25319:1 25320:1 25335:1 25342:1 25384:1 25386:1 25401:1 25410:1 25416:2 25425:1 25436:2 25468:1 25473:1 25488:1 25515:1 25561:1 25576:1 25600:1 25665:1 25676:1 25679:1 25680:1 25700:1 25708:1 25726:1 25729:1 25742:1 25757:1 25759:2 25796:1 25804:1 25812:1 25816:1 25838:3 25865:4 25880:1 25901:1 25903:1 25906:1 25929:1 25930:1 25936:1 25953:1 25971:1 25992:4 25994:1 26021:3 26033:1 26038:1 26040:1 26059:1 26093:2 26112:2 26114:1 26118:1 26123:1 26127:2 26133:1 26166:2 26170:1 26175:1 26182:1 26185:1 26221:1 26247:1 26249:1 26261:2 26267:1 26290:2 26300:1 26309:1 26316:1 26338:1 26339:1 26341:1 26352:1 26373:5 26392:2 26476:1 26482:1 26499:1 26547:1 26548:1 26569:1 26574:1 26582:1 26588:1 26599:1 26624:1 26657:1 26681:4 26700:2 26709:3 26721:1 26736:1 26737:1 26743:1 26759:1 26778:1 26787:1 26788:4 26817:1 26840:2 26856:5 26894:2 26933:1 26960:5 26967:2 26981:1 26985:2 26994:2 27003:1 27006:1 27016:1 27022:1 27033:1 27036:1 27057:1 27069:2 27070:1 27079:1 27090:1 27103:1 27113:1 27136:1 27141:2 27160:1 27187:1 27275:1 27279:1 27332:1 27365:4 27419:1 27465:1 27481:2 27560:1 27563:4 27575:1 27595:1 27627:1 27636:1 27675:1 27678:1 27687:12 27689:2 27692:5 27694:1 27695:2 27702:1 27724:5 27739:1 27777:1 27789:2 27804:1 27808:1 27820:1 27832:1 27838:1 27859:9 27863:1 27867:1 27874:1 27887:1 27889:1 27893:1 27900:1 27906:1 27917:1 27923:1 27930:1 27934:1 27935:2 27948:1 27960:1 27964:1 27968:1 27969:1 28003:1 28011:1 28028:1 28030:1 28050:1 28051:1 28054:1 28068:2 28102:1 28126:1 28127:2 28128:1 28131:1 28174:1 28180:1 28183:1 28187:1 28193:1 28204:1 28214:1 28218:1 28223:1 28292:1 28315:1 28319:1 28320:1 28341:1 28356:1 28362:1 28363:1 28375:2 28380:1 28387:1 28397:3 28404:1 28411:2 28413:1 28419:1 28461:1 28470:1 28506:2 28520:1 28536:2 28541:1 28553:1 28560:2 28594:1 28596:1 28648:1 28703:1 28709:1 28724:1 28734:1 28748:1 28761:1 28792:1 28801:5 28816:1 28818:1 28836:5 28849:3 28913:7 28914:2 28919:1 28921:1 28924:2 28925:1 28941:1 28959:2 28961:3 28963:2 29003:1
9 11:1 14:1 37:2 60:1 83:1 89:1 90:1 109:1 125:1 143:1 150:1 153:3 162:1 170:2 189:4 214:1 245:1 270:1 282:2 293:1 295:14 303:1 316:1 318:2 333:1 348:1 381:1 403:2 424:3 442:1 444:1 515:1 563:2 564:1 569:1 572:2 590:1 596:2 598:1 600:1 613:2 626:1 634:1 643:1 674:1 678:1 685:1 716:1 734:1 748:1 752:1 767:1 770:1 788:1 795:1 805:1 807:1 808:1 830:2 832:3 842:1 843:1 856:7 867:1 871:1 877:2 879:5 885:1 892:1 893:1 899:1 905:3 925:1 963:1 974:3 989:1 996:2 998:1 1002:1 1019:1 1020:1 1027:1 1045:1 1059:1 1078:1 1087:1 1104:2 1143:1 1148:2 1160:1 1163:1 1207:1 1241:1 1244:1 1257:1 1276:1 1284:1 1287:1 1313:1 1330:1 1355:1 1374:1 1397:2 1401:4 1402:1 1420:1 1423:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1506:1 1507:1 1508:1 1543:1 1547:1 1555:1 1560:1 1562:2 1564:2 1571:1 1596:1 1598:1 1617:1 1619:1 1627:3 1634:1 1659:1 1660:1 1699:1 1760:1 1762:1 1778:1 1789:1 1794:1 1802:1 1811:1 1819:1 1895:9 1903:1 1907:2 1923:1 1929:1 1935:1 1936:1 1962:3 1965:2 1993:1 1998:1 2006:1 2011:1 2082:1 2085:1 2089:3 2095:1 2100:1 2101:1 2132:1 2154:1 2156:1 2159:1 2160:1 2165:1 2172:1 2174:1 2177:1 2178:2 2179:2 2190:1 2207:1 2212:1 2216:1 2219:1 2220:2 2221:3 2223:4 2226:1 2227:2 2228:2 2232:1 2233:1 2234:1 2237:1 2249:1 2251:6 2252:1 2253:6 2268:1 2279:1 2297:1 2309:1 2315:1 2322:1 2336:1 2339:1 2343:1 2347:1 2358:2 2370:1 2374:1 2376:1 2392:1 2410:2 2421:3 2433:1 2445:1 2465:1 2473:1 2485:5 2494:1 2522:2 2536:1 2543:1 2552:3 2561:2 2563:1 2609:2 2648:1 2651:2 2656:1 2659:1 2667:2 2670:1 2675:1 2683:1 2688:1 2708:1 2713:1 2723:1 2730:3 2756:1 2760:1 2761:2 2762:1 2766:4 2775:2 2780:1 2782:1 2813:1 2854:2 2867:9 2883:2 2888:1 2900:1 2909:1 2936:6 2961:1 2965:3 2968:1 2989:1 3023:1 3074:1 3075:1 3105:1 3106:1 3188:1 3197:1 3205:1 3231:1 3232:3 3243:1 3256:1 3266:1 3271:1 3293:1 3295:2 3338:1 3357:4 3397:1 3407:1 3420:2 3459:1 3471:1 3472:1 3475:1 3478:1 3488:1 3489:1 3517:1 3528:1 3540:2 3548:1 3558:1 3570:1 3574:1 3582:1 3599:3 3606:1 3607:2 3608:1 3615:1 3638:1 3639:3 3669:1 3680:1 3684:1 3688:3 3692:1 3695:2 3698:2 3712:1 3730:1 3737:1 3740:1 3742:4 3744:1 3746:2 3748:6 3779:1 3783:2 3784:1 3788:1 3789:6 3790:1 3792:1 3813:2 3836:2 3838:1 3848:1 3851:1 3862:1 3866:1 3876:1 3895:1 3902:2 3904:1 3918:2 3939:1 3940:1 3943:1 3964:2 3970:1 3977:1 3982:1 3988:2 3989:1 3998:4 3999:2 4005:1 4040:1 4054:2 4078:1 4085:2 4093:1 4113:1 4125:1 4129:1 4136:1 4193:2 4201:1 4204:1 4219:1 4254:1 4270:2 4272:1 4282:1 4298:1 4362:4 4378:1 4416:1 4428:1 4434:1 4439:2 4455:1 4494:1 4560:1 4583:1 4613:1 4619:2 4626:3 4646:1 4691:1 4695:7 4724:1 4731:1 4742:1 4746:1 4759:1 4773:3 4787:1 4815:1 4818:1 4867:1 4876:10 4878:2 4895:2 4903:1 4925:1 4928:5 4940:1 4963:1 4964:1 4980:1 4985:3 5003:2 5005:3 5006:1 5008:1 5013:3 5028:2 5030:2 5033:1 5042:1 5045:1 5046:2 5064:1 5090:1 5131:2 5157:1 5176:1 5177:1 5190:1 5195:1 5219:1 5220:1 5237:1 5245:2 5255:1 5280:1 5302:1 5306:1 5307:1 5328:1 5358:4 5362:1 5369:2 5371:1 5386:1 5404:1 5429:1 5453:1 5480:1 5493:1 5501:1 5511:2 5524:1 5534:1 5535:1 5538:1 5540:2 5548:1 5582:3 5584:1 5593:1 5615:2 5629:2 5639:1 5640:1 5663:3 5681:2 5694:1 5701:2 5705:1 5720:4 5721:1 5728:1 5749:1 5773:1 5802:1 5812:1 5843:2 5850:1 5852:1 5877:1 5920:1 5942:1 5947:2 5972:9 5987:2 5992:2 6000:1 6006:1 6017:1 6040:1 6056:1 6110:1 6130:1 6137:1 6138:1 6142:1 6150:1 6153:1 6176:4 6192:1 6199:1 6245:1 6259:3 6263:1 6270:1 6274:1 6275:1 6276:3 6279:2 6282:2 6283:8 6284:2 6334:1 6379:2 6420:2 6482:2 6493:1 6502:1 6507:1 6513:1 6537:1 6542:1 6556:1 6565:1 6598:1 6609:1 6613:1 6653:1 6654:1 6677:1 6679:2 6689:1 6699:5 6715:1 6722:1 6728:1 6751:1 6757:1 6795:1 6810:1 6823:1 6851:1 6854:1 6855:2 6860:1 6866:1 6871:1 6885:1 6886:2 6906:1 6919:1 6922:2 6948:1 6987:1 6999:1 7049:1 7050:7 7052:1 7067:1 7074:1 7091:1 7097:1 7099:1 7124:1 7125:1 7180:1 7198:2 7218:1 7234:1 7248:1 7263:3 7287:2 7290:1 7297:1 7311:1 7334:2 7346:1 7347:1 7367:1 7371:1 7382:1 7386:1 7407:1 7427:1 7463:1 7499:2 7518:1 7554:1 7555:9 7570:1 7580:1 7582:2 7584:1 7603:2 7620:34 7622:1 7643:2 7644:6 7645:1 7648:1 7671:1 7696:1 7710:1 7720:1 7725:2 7751:1 7755:1 7758:2 7826:1 7871:1 7878:1 7892:1 7897:2 7928:1 7962:1 8004:1 8007:1 8032:1 8043:2 8044:3 8045:1 8062:1 8063:1 8107:1 8116:1 8124:1 8130:2 8136:1 8142:2 8154:1 8156:3 8184:1 8186:1 8194:1 8236:1 8254:1 8270:1 8299:1 8301:2 8311:1 8319:1 8358:1 8369:2 8376:3 8379:1 8383:1 8387:2 8394:1 8395:1 8405:1 8412:1 8422:1 8430:5 8438:1 8441:1 8460:1 8468:1 8480:1 8490:1 8497:1 8500:2 8501:2 8503:2 8504:1 8505:1 8508:1 8510:4 8512:1 8513:1 8516:1 8543:2 8550:3 8567:1 8572:1 8575:2 8586:1 8604:1 8640:1 8655:1 8679:1 8688:1 8710:1 8719:1 8728:1 8756:1 8772:2 8808:1 8810:1 8811:3 8815:1 8827:2 8833:1 8840:1 8846:1 8857:1 8914:1 8929:1 8936:2 8950:2 8971:1 8992:1 9001:1 9019:1 9022:1 9035:1 9040:1 9050:1 9057:1 9065:1 9077:3 9107:1 9115:2 9121:1 9139:1 9151:1 9200:1 9207:3 9209:1 9216:2 9226:14 9246:2 9247:1 9261:1 9305:1 9314:1 9319:1 9329:1 9338:2 9349:1 9360:2 9363:4 9365:1 9390:1 9421:1 9433:3 9490:1 9497:1 9528:1 9529:1 9539:1 9558:1 9568:1 9569:1 9574:1 9582:1 9586:2 9594:1 9601:1 9608:1 9634:1 9652:1 9663:5 9676:1 9677:3 9687:2 9700:1 9746:2 9789:1 9829:1 9847:3 9850:1 9856:1 9871:1 9877:1 9880:1 9883:2 9887:1 9898:2 9911:1 9913:1 9919:1 9928:1 9932:1 9938:1 9939:1 9954:1 9956:1 9968:4 9987:1 9996:1 10038:1 10065:1 10073:1 10094:1 10125:1 10126:1 10135:1 10191:1 10234:1 10241:1 10280:1 10302:1 10328:1 10329:1 10347:1 10351:2 10359:2 10372:1 10436:1 10448:1 10478:2 10486:1 10488:1 10504:2 10507:1 10513:1 10521:1 10524:1 10526:1 10537:1 10555:1 10557:1 10558:1 10573:1 10582:1 10590:1 10592:2 10621:1 10657:3 10665:4 10683:1 10686:7 10737:1 10740:1 10748:1 10783:1 10787:1 10839:1 10857:1 10901:1 10903:3 10905:1 10909:1 10910:1 10921:2 10937:1 10943:1 10947:1 10953:1 10962:1 10989:4 11010:1 11014:1 11016:1 11018:1 11062:1 11063:1 11071:1 11083:1 11094:1 11100:1 11106:1 11107:1 11118:1 11147:1 11175:1 11197:1 11203:3 11208:1 11230:1 11234:1 11248:1 11268:2 11284:1 11285:1 11300:1 11301:1 11302:1 11315:2 11317:1 11333:1 11341:1 11370:4 11371:1 11400:1 11430:1 11442:1 11444:1 11469:1 11476:1 11477:1 11481:1 11501:1 11506:1 11509:1 11514:1 11520:2 11526:2 11530:3 11549:1 11550:3 11603:2 11609:1 11614:1 11615:1 11619:1 11622:1 11631:1 11636:1 11645:1 11649:1 11664:4 11684:4 11690:1 11693:1 11711:1 11716:1 11734:1 11772:1 11789:1 11824:1 11826:1 11852:1 11865:3 11871:1 11916:1 11931:2 11936:3 11952:1 11973:3 11990:1 11997:1 12004:1 12109:1 12110:2 12111:3 12115:1 12132:1 12154:1 12165:1 12166:3 12178:1 12184:2 12239:1 12250:1 12272:1 12276:1 12281:3 12302:1 12337:1 12345:1 12346:1 12349:2 12362:1 12380:1 12398:1 12420:1 12458:1 12464:1 12472:1 12476:1 12508:1 12515:1 12526:2 12608:4 12621:1 12633:1 12648:7 12658:1 12668:2 12671:3 12676:1 12681:1 12701:1 12733:1 12764:1 12769:1 12772:2 12789:1 12796:2 12797:1 12813:1 12831:1 12835:1 12888:1 12914:1 12949:3 12984:1 12999:1 13045:4 13049:1 13072:1 13076:4 13080:3 13087:1 13093:1 13094:5 13128:1 13142:1 13144:1 13166:2 13206:1 13211:1 13213:1 13224:2 13232:2 13233:1 13252:1 13278:1 13282:1 13283:1 13301:1 13302:3 13306:1 13310:1 13320:1 13331:1 13341:1 13346:1 13364:1 13372:3 13376:1 13416:2 13420:1 13421:1 13454:1 13468:1 13557:1 13561:1 13599:2 13601:1 13606:4 13607:1 13610:1 13620:1 13628:1 13633:1 13654:1 13680:2 13691:1 13694:1 13697:1 13723:1 13733:2 13764:1 13779:1 13782:1 13788:2 13827:3 13832:2 13847:1 13886:1 13895:1 13904:3 13931:2 13942:1 13974:1 13980:1 14006:1 14018:1 14054:1 14076:5 14089:1 14107:3 14134:1 14140:1 14152:1 14179:1 14180:1 14223:1 14255:1 14274:1 14312:1 14313:1 14317:2 14318:3 14324:1 14325:4 14335:1 14339:1 14347:1 14358:1 14376:1 14385:1 14433:1 14449:3 14482:1 14485:1 14489:2 14492:1 14498:1 14523:1 14533:3 14573:1 14591:1 14623:1 14637:1 14647:3 14674:1 14683:2 14701:1 14761:1 14798:1 14820:3 14821:1 14823:1 14824:1 14837:1 14881:1 14883:1 14891:3 14893:1 14910:1 14916:1 14935:1 14936:1 14938:1 14961:2 14970:1 14984:1 14986:1 15000:1 15020:4 15037:1 15117:1 15123:2 15125:1 15130:1 15134:1 15146:1 15158:1 15173:1 15177:1 15180:1 15233:1 15245:1 15259:2 15301:2 15322:1 15332:4 15385:2 15398:1 15403:1 15404:3 15414:2 15420:1 15431:1 15435:1 15453:2 15459:2 15471:1 15482:2 15509:1 15539:1 15556:1 15563:2 15578:3 15591:2 15598:1 15607:2 15614:2 15624:1 15625:2 15626:1 15637:1 15642:1 15644:1 15679:1 15687:1 15717:1 15745:3 15750:1 15757:1 15785:1 15831:2 15832:3 15835:1 15871:1 15879:3 15893:1 15896:1 15909:1 15911:2 15967:1 15973:2 16014:1 16026:1 16029:9 16030:1 16048:2 16055:1 16095:2 16119:3 16122:1 16127:1 16150:1 16164:1 16172:1 16177:1 16190:1 16194:1 16196:1 16242:1 16289:1 16290:2 16338:1 16353:1 16363:1 16398:1 16400:1 16403:2 16482:1 16488:1 16489:1 16505:1 16511:1 16527:1 16528:1 16546:1 16555:2 16589:1 16597:1 16605:1 16639:1 16662:1 16666:2 16675:1 16685:1 16702:1 16708:1 16714:1 16716:2 16718:1 16738:1 16747:1 16761:1 16776:1 16789:2 16802:1 16828:1 16843:1 16844:4 16851:1 16867:1 16905:1 16908:1 16915:3 16929:1 16930:1 16947:1 16966:3 16991:1 16995:1 17013:2 17046:1 17050:1 17053:1 17059:4 17091:3 17106:1 17136:1 17138:1 17155:1 17156:1 17167:1 17172:1 17179:1 17186:1 17199:3 17207:1 17210:1 17265:1 17270:2 17277:1 17346:1 17360:1 17363:1 17369:1 17374:2 17397:1 17401:1 17422:1 17445:1 17447:1 17448:2 17454:2 17463:1 17475:3 17476:1 17509:1 17522:4 17523:2 17558:1 17560:1 17585:1 17587:1 17592:5 17604:1 17631:1 17636:1 17644:2 17648:1 17652:1 17662:1 17665:2 17667:1 17670:1 17683:1 17692:1 17721:1 17722:2 17747:1 17753:2 17767:4 17772:1 17781:14 17785:1 17787:1 17790:1 17794:1 17819:1 17822:1 17838:1 17852:1 17855:1 17860:1 17871:1 17873:1 17882:1 17886:1 17896:3 17907:1 17922:1 17931:1 17962:1 17967:1 17977:1 17979:1 17989:1 17994:1 17998:2 18007:3 18009:1 18019:1 18032:1 18056:1 18067:1 18080:1 18084:1 18120:1 18133:1 18170:1 18212:1 18219:1 18220:1 18315:4 18331:1 18380:1 18381:1 18399:1 18417:1 18424:1 18444:1 18449:1 18461:1 18471:1 18476:2 18478:2 18481:1 18498:1 18504:3 18509:1 18516:1 18519:1125 18524:1 18538:1 18572:2 18573:1 18608:1 18643:1 18648:1 18690:1 18702:1 18708:2 18715:3 18720:1 18725:2 18727:1 18728:1 18748:1 18763:1 18802:4 18808:1 18816:1 18842:14 18863:3 18904:1 18907:1 18920:1 18930:2 18938:1 18947:1 18968:1 18982:2 18991:2 19017:1 19033:1 19055:2 19079:1 19089:1 19091:1 19113:1 19135:2 19140:1 19142:1 19176:1 19180:1 19187:1 19190:1 19192:1 19197:2 19202:1 19210:1 19228:4 19235:1 19257:1 19271:1 19298:6 19314:1 19315:1 19335:5 19336:1 19350:1 19359:1 19370:1 19412:1 19442:2 19475:1 19482:1 19494:1 19507:3 19508:1 19515:3 19516:1 19531:1 19549:1 19550:1 19551:1 19566:1 19573:1 19600:1 19628:1 19634:1 19661:1 19674:1 19680:1 19708:2 19719:1 19724:1 19735:1 19742:1 19745:1 19751:1 19752:1 19754:1 19767:1 19775:2 19784:2 19794:1 19816:1 19818:1 19833:1 19839:2 19862:1 19876:2 19904:1 19918:1 19936:1 19949:2 19953:1 19964:1 19978:2 19992:1 20003:1 20004:1 20017:1 20031:1 20032:1 20037:1 20052:1 20068:1 20084:1 20086:1 20117:1 20118:2 20159:3 20187:1 20211:3 20212:2 20218:2 20226:1 20231:1 20237:1 20281:1 20283:1 20293:2 20302:1 20404:2 20406:2 20420:1 20443:1 20453:1 20455:3 20465:1 20468:1 20474:1 20525:1 20531:2 20567:4 20594:1 20599:1 20600:1 20652:1 20656:1 20658:1 20677:2 20683:1 20685:1 20692:1 20710:1 20722:2 20738:1 20747:2 20770:1 20780:2 20782:1 20797:1 20823:1 20846:1 20862:1 20900:1 20907:2 20918:1 20945:1 20948:1 20979:2 20985:1 21010:1 21016:1 21019:1 21029:1 21049:1 21062:1 21075:1 21079:1 21080:1 21088:1 21100:1 21122:1 21137:2 21158:1 21169:1 21174:1 21196:1 21289:1 21320:1 21345:1 21371:1 21374:1 21380:1 21386:2 21387:1 21392:1 21397:1 21406:1 21415:1 21442:2 21444:1 21459:1 21472:3 21488:1 21490:1 21498:1 21499:1 21504:1 21509:2 21518:1 21520:1 21523:1 21538:1 21544:1 21548:5 21580:1 21616:1 21654:2 21663:1 21670:1 21675:7 21684:1 21695:2 21712:1 21714:2 21715:1 21724:1 21750:1 21771:1 21778:1 21809:1 21812:2 21822:1 21824:1 21827:1 21830:1 21846:1 21848:2 21867:2 21870:1 21885:1 21916:2 21941:1 21952:1 21967:1 21971:1 21994:1 22009:3 22016:1 22021:1 22052:1 22059:1 22061:1 22065:2 22077:1 22096:2 22144:1 22150:1 22173:3 22174:2 22178:3 22189:2 22190:1 22212:1 22223:2 22236:1 22248:1 22252:3 22257:1 22258:2 22291:1 22293:1 22294:1 22295:1 22302:1 22318:1 22331:1 22332:1 22336:1 22345:1 22357:1 22362:1 22391:1 22392:1 22406:2 22412:1 22414:14 22419:1 22422:3 22426:1 22427:1 22453:2 22464:1 22467:1 22493:1 22495:1 22496:1 22538:1 22585:1 22593:1 22599:1 22616:2 22621:1 22672:1 22676:2 22687:1 22691:1 22692:1 22699:2 22705:1 22721:2 22726:1 22736:1 22737:1 22777:1 22784:1 22848:1 22896:1 22902:1 22919:1 22921:1 22947:1 22948:1 22962:2 22964:1 22980:2 22982:1 22998:3 23027:1 23033:2 23038:1 23099:1 23143:1 23148:1 23165:1 23184:3 23188:1 23195:1 23196:1 23227:1 23234:1 23239:1 23248:1 23254:1 23283:2 23297:1 23299:1 23302:1 23310:1 23326:1 23340:1 23343:1 23352:1 23361:6 23368:1 23394:2 23403:1 23408:1 23437:1 23441:1 23452:1 23494:1 23519:1 23532:2 23559:2 23568:1 23591:1 23592:1 23600:1 23616:3 23618:1 23620:1 23635:1 23651:1 23659:1 23720:1 23722:1 23732:2 23736:1 23744:1 23749:2 23774:1 23785:1 23798:1 23806:1 23814:1 23831:1 23832:1 23875:1 23884:4 23896:3 23899:1 23910:1 23918:1 23919:1 23920:1 23939:1 23966:1 23973:1 23994:1 23996:1 24030:1 24044:1 24057:2 24058:2 24068:1 24093:1 24098:1 24101:1 24124:1 24146:1 24150:1 24159:1 24160:1 24162:3 24164:2 24166:4 24167:1 24172:1 24174:2 24175:1 24183:2 24187:2 24206:2 24233:1 24236:2 24237:1 24247:2 24263:2 24267:3 24291:1 24295:1 24297:1 24307:1 24321:1 24342:1 24345:1 24362:1 24401:1 24402:1 24419:2 24440:2 24448:1 24450:3 24453:1 24464:2 24508:1 24547:2 24548:1 24571:1 24582:1 24584:1 24630:3 24645:1 24658:1 24665:2 24707:2 24746:1 24757:1 24763:1 24772:1 24780:1 24783:3 24791:1 24797:1 24810:1 24816:1 24822:3 24878:1 24899:1 24912:1 24946:8 24955:1 24969:3 24990:1 24997:1 25005:1 25015:2 25028:1 25038:1 25046:1 25089:1 25093:2 25099:2 25104:1 25109:1 25111:2 25114:4 25137:1 25139:2 25141:6 25144:2 25145:1 25155:1 25162:1 25167:1 25170:1 25177:1 25182:1 25214:2 25225:2 25247:1 25258:2 25259:1 25319:1 25320:1 25335:1 25342:1 25384:1 25386:1 25401:1 25410:1 25416:2 25425:1 25436:2 25468:1 25473:1 25488:1 25515:1 25561:1 25576:1 25600:1 25665:1 25676:1 25679:1 25680:1 25700:1 25708:1 25726:1 25729:1 25742:1 25757:1 25759:2 25796:1 25804:1 25812:1 25816:1 25838:3 25865:4 25880:1 25901:1 25903:1 25906:1 25929:1 25930:1 25936:1 25953:1 25971:1 25992:4 25994:1 26021:3 26033:1 26038:1 26040:1 26059:1 26093:2 26112:2 26114:1 26118:1 26123:1 26127:2 26133:1 26166:2 26170:1 26175:1 26182:1 26185:1 26221:2 26247:1 26249:1 26261:2 26267:1 26290:2 26300:1 26309:1 26316:1 26338:1 26339:1 26341:1 26352:1 26373:5 26392:2 26476:1 26482:1 26499:1 26547:1 26548:1 26569:1 26574:1 26582:1 26588:1 26599:1 26624:1 26657:1 26681:4 26700:2 26709:3 26721:1 26736:1 26737:1 26743:1 26759:1 26778:1 26787:1 26788:4 26817:1 26840:2 26856:6 26894:2 26933:1 26960:5 26967:2 26981:1 26985:2 26988:1 26994:2 27003:1 27006:1 27016:1 27022:1 27033:1 27036:1 27057:1 27069:2 27070:1 27079:1 27090:1 27103:1 27113:1 27136:1 27141:2 27160:1 27187:1 27275:1 27279:1 27332:1 27365:4 27419:1 27465:1 27481:2 27560:1 27563:5 27575:1 27595:1 27627:1 27636:1 27675:1 27678:1 27687:13 27689:2 27692:5 27694:1 27695:2 27702:1 27724:5 27739:1 27777:1 27789:2 27804:1 27808:1 27820:1 27832:1 27838:1 27859:9 27863:1 27867:1 27874:1 27887:1 27889:1 27893:1 27900:1 27906:1 27917:1 27923:1 27930:1 27934:1 27935:2 27948:1 27960:1 27964:1 27968:1 27969:1 28003:1 28011:1 28028:1 28030:1 28050:1 28051:1 28054:1 28068:2 28102:1 28126:1 28127:2 28128:1 28131:1 28174:1 28180:1 28183:1 28187:1 28193:1 28202:1 28204:1 28214:1 28218:1 28223:1 28292:1 28315:1 28319:1 28320:1 28341:1 28356:1 28362:1 28363:1 28375:2 28380:1 28387:1 28397:3 28404:1 28411:2 28413:1 28419:1 28461:1 28470:1 28506:2 28514:1 28520:1 28536:2 28541:1 28553:1 28560:2 28594:1 28596:1 28648:1 28703:1 28709:1 28724:1 28734:1 28748:1 28761:1 28792:1 28801:5 28816:1 28818:1 28836:5 28849:4 28913:7 28914:2 28919:1 28921:1 28924:2 28925:1 28941:1 28959:2 28961:3 28963:2 29003:1
9 11:1 14:1 37:2 60:1 83:1 89:1 90:1 109:1 125:1 143:1 150:1 153:3 162:1 170:2 189:5 214:1 245:1 270:1 282:2 293:1 295:15 303:1 316:1 318:2 333:1 348:1 381:1 403:2 424:3 442:1 444:1 515:1 563:2 564:1 569:1 572:2 590:1 596:2 598:1 600:1 613:2 626:1 634:1 643:1 650:1 674:1 678:1 685:1 716:1 734:1 748:1 752:1 767:1 770:1 788:1 795:1 805:1 807:1 808:1 830:3 832:3 842:1 843:1 856:8 867:1 871:1 877:2 879:5 885:1 892:1 893:1 899:1 905:3 925:1 963:1 974:3 989:1 996:2 998:1 1002:1 1019:1 1020:1 1027:1 1045:1 1059:1 1078:1 1087:1 1089:1 1104:2 1117:1 1143:1 1148:2 1160:1 1163:1 1207:2 1241:1 1244:1 1257:1 1276:1 1284:1 1287:1 1313:1 1330:1 1355:1 1374:1 1397:2 1400:1 1401:4 1402:1 1420:1 1423:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1506:1 1507:1 1508:1 1516:1 1543:1 1547:1 1555:1 1560:1 1562:2 1564:2 1571:1 1596:1 1598:1 1617:1 1619:1 1627:3 1634:1 1659:1 1660:1 1699:1 1760:1 1762:1 1778:1 1789:1 1794:1 1802:1 1811:1 1819:1 1895:9 1903:1 1907:2 1923:1 1929:1 1935:1 1936:1 1962:3 1965:2 1993:1 1998:1 2006:1 2011:1 2082:1 2085:1 2089:3 2095:1 2100:1 2101:1 2132:1 2154:1 2156:1 2159:1 2160:1 2165:1 2172:1 2174:1 2177:1 2178:2 2179:2 2190:1 2207:1 2212:1 2216:1 2219:1 2220:2 2221:3 2223:4 2226:1 2227:2 2228:2 2232:1 2233:1 2234:1 2237:1 2249:1 2251:6 2252:1 2253:6 2268:1 2279:1 2297:1 2309:1 2315:1 2322:1 2336:1 2339:1 2343:1 2347:1 2358:2 2370:1 2374:1 2376:1 2392:1 2410:2 2421:3 2433:1 2445:1 2461:1 2465:1 2473:1 2485:5 2494:1 2500:1 2522:2 2536:1 2543:1 2552:3 2561:2 2563:1 2609:2 2648:1 2651:2 2656:1 2659:1 2667:2 2670:1 2675:1 2683:1 2688:1 2708:1 2713:1 2723:1 2730:3 2756:1 2760:1 2761:2 2762:1 2766:4 2775:2 2780:1 2782:1 2810:1 2813:1 2854:2 2867:9 2883:2 2888:1 2900:2 2909:1 2936:6 2961:1 2965:4 2968:1 2989:1 3023:1 3074:1 3075:1 3105:1 3106:1 3188:1 3197:1 3205:1 3231:1 3232:3 3243:1 3256:1 3266:1 3271:1 3293:1 3295:2 3338:1 3352:1 3357:4 3397:1 3407:1 3420:2 3459:1 3471:1 3472:1 3475:1 3478:1 3488:1 3489:1 3495:1 3517:1 3528:1 3540:2 3548:1 3558:1 3570:1 3574:1 3580:1 3582:2 3599:3 3606:1 3607:2 3608:1 3615:1 3638:1 3639:3 3669:1 3680:1 3684:1 3688:3 3692:1 3695:2 3698:2 3712:1 3730:1 3737:1 3740:1 3742:4 3744:1 3746:2 3748:6 3779:1 3783:2 3784:1 3788:1 3789:6 3790:1 3792:1 3813:2 3822:1 3836:2 3838:1 3848:1 3851:1 3862:1 3866:1 3876:1 3888:1 3895:1 3902:2 3904:1 3918:2 3919:1 3939:1 3940:1 3943:1 3964:2 3970:1 3972:1 3977:2 3982:1 3988:2 3989:1 3998:4 3999:2 4005:1 4040:1 4054:2 4078:1 4085:2 4093:1 4113:1 4125:1 4129:1 4136:1 4190:1 4193:2 4201:1 4204:1 4219:1 4254:1 4270:2 4272:1 4282:1 4298:1 4362:4 4378:1 4416:1 4428:1 4434:1 4439:2 4455:1 4494:1 4560:1 4562:1 4583:1 4613:1 4619:2 4626:3 4646:1 4691:1 4695:7 4724:1 4731:1 4742:1 4746:1 4759:1 4773:4 4787:1 4815:1 4818:1 4867:1 4876:10 4878:2 4895:2 4903:1 4925:1 4928:5 4940:1 4963:1 4964:1 4980:1 4985:3 5003:2 5005:3 5006:1 5008:1 5013:3 5017:1 5022:1 5028:2 5030:2 5033:1 5042:1 5045:1 5046:2 5064:1 5090:1 5131:2 5157:1 5176:1 5177:1 5184:1 5190:1 5195:2 5219:1 5220:1 5237:1 5245:2 5255:1 5280:1 5302:1 5306:1 5307:1 5328:1 5358:4 5362:1 5369:2 5371:1 5386:1 5404:1 5429:1 5453:1 5480:1 5493:1 5501:1 5511:2 5524:1 5534:1 5535:1 5538:1 5540:2 5548:1 5582:3 5584:1 5593:1 5615:2 5629:2 5639:1 5640:1 5663:3 5681:2 5694:1 5701:2 5705:1 5720:4 5721:1 5728:1 5749:1 5773:1 5802:1 5812:1 5843:2 5850:1 5852:1 5877:1 5898:1 5920:1 5942:1 5947:2 5949:1 5972:9 5987:2 5992:2 6000:1 6006:1 6009:1 6017:1 6040:1 6056:1 6110:1 6130:1 6137:1 6138:1 6142:1 6150:1 6153:1 6176:4 6192:1 6199:1 6245:1 6259:3 6263:1 6270:1 6274:1 6275:1 6276:3 6279:2 6282:2 6283:8 6284:2 6334:1 6379:2 6420:2 6482:2 6493:1 6502:1 6507:1 6513:1 6537:1 6542:1 6556:1 6565:1 6598:1 6609:1 6613:1 6653:1 6654:1 6677:1 6679:2 6689:1 6699:5 6715:1 6722:1 6728:1 6751:1 6757:1 6795:1 6810:1 6823:1 6851:1 6854:1 6855:2 6860:1 6866:1 6871:1 6885:1 6886:2 6906:1 6919:1 6922:2 6948:1 6987:1 6999:1 7049:1 7050:7 7052:1 7067:1 7074:1 7091:1 7097:1 7099:1 7124:1 7125:1 7180:1 7198:2 7218:1 7234:1 7248:1 7263:3 7287:2 7290:1 7297:1 7311:1 7334:3 7346:1 7347:1 7367:1 7371:1 7382:1 7386:1 7407:1 7427:1 7463:1 7499:2 7518:1 7554:1 7555:9 7570:1 7580:1 7582:2 7584:1 7603:2 7620:34 7622:1 7643:2 7644:6 7645:1 7648:1 7671:1 7696:1 7710:1 7720:1 7725:2 7751:1 7755:1 7758:2 7826:1 7871:1 7878:1 7892:1 7897:2 7928:1 7931:1 7962:1 8004:1 8007:1 8032:1 8037:1 8043:2 8044:3 8045:1 8046:1 8062:1 8063:1 8107:1 8116:1 8124:1 8130:2 8136:1 8142:2 8154:1 8156:3 8184:1 8186:1 8194:1 8236:1 8254:1 8270:1 8299:1 8301:2 8311:1 8319:1 8358:1 8369:2 8376:3 8379:1 8383:2 8387:2 8394:1 8395:1 8405:1 8412:1 8422:1 8430:5 8438:1 8441:1 8460:1 8468:1 8480:1 8490:1 8497:1 8500:2 8501:2 8503:2 8504:1 8505:1 8508:1 8510:4 8512:1 8513:1 8516:1 8543:2 8549:1 8550:3 8567:1 8572:1 8575:2 8578:1 8586:1 8604:1 8640:1 8655:1 8679:1 8688:1 8710:1 8719:1 8728:1 8739:1 8756:1 8772:2 8808:1 8810:1 8811:3 8815:1 8827:2 8833:1 8840:1 8846:1 8857:1 8914:1 8929:1 8936:2 8950:2 8971:1 8992:1 9001:1 9019:1 9022:1 9035:1 9040:1 9050:1 9057:1 9065:1 9077:3 9107:1 9115:2 9121:1 9139:1 9142:1 9151:1 9200:1 9207:3 9209:1 9216:2 9226:15 9246:2 9247:1 9261:1 9305:1 9314:1 9319:1 9329:1 9338:2 9349:1 9360:2 9363:5 9365:1 9390:1 9421:1 9433:3 9490:1 9497:1 9528:1 9529:1 9537:1 9539:1 9558:1 9568:1 9569:1 9574:1 9582:1 9586:2 9594:1 9601:1 9608:1 9634:1 9652:1 9663:5 9676:1 9677:3 9687:2 9700:1 9746:2 9789:1 9829:1 9847:3 9850:1 9856:1 9871:1 9877:1 9880:1 9883:2 9887:1 9898:2 9911:1 9913:1 9919:1 9928:1 9932:1 9938:1 9939:1 9954:1 9956:1 9968:4 9987:1 9996:1 10019:1 10038:1 10065:1 10073:1 10094:1 10125:1 10126:1 10135:1 10191:1 10234:1 10241:1 10280:1 10302:1 10328:1 10329:1 10347:1 10351:2 10359:2 10372:1 10436:1 10448:1 10478:2 10486:1 10488:1 10504:2 10507:1 10513:1 10521:1 10524:1 10526:1 10537:1 10555:1 10557:1 10558:1 10573:1 10582:1 10590:1 10592:2 10621:1 10641:1 10657:3 10665:4 10683:1 10686:7 10737:1 10740:1 10748:1 10783:1 10787:1 10824:1 10839:1 10857:1 10901:1 10903:3 10905:1 10909:1 10910:1 10921:2 10937:1 10943:1 10947:1 10953:1 10962:1 10989:5 11010:2 11014:1 11016:1 11018:1 11062:1 11063:1 11071:1 11083:1 11094:1 11100:1 11106:1 11107:1 11118:1 11147:1 11175:1 11197:1 11203:3 11208:1 11230:1 11234:1 11248:1 11268:2 11284:1 11285:1 11300:1 11301:1 11302:1 11315:2 11317:1 11333:2 11341:1 11367:1 11370:4 11371:1 11400:1 11430:1 11442:1 11444:1 11469:1 11476:1 11477:1 11481:1 11501:1 11506:1 11509:1 11514:1 11520:2 11526:2 11530:4 11549:1 11550:4 11603:2 11609:1 11614:1 11615:1 11619:1 11622:1 11631:1 11636:1 11645:1 11649:1 11664:4 11684:4 11690:1 11693:1 11711:1 11716:1 11734:1 11772:1 11789:1 11824:1 11826:1 11852:1 11865:3 11871:1 11916:1 11931:2 11936:3 11952:1 11973:3 11990:1 11997:1 12004:1 12109:1 12110:2 12111:3 12115:1 12132:1 12154:1 12165:1 12166:3 12172:1 12178:1 12184:2 12239:1 12250:1 12272:1 12276:1 12281:3 12302:1 12337:1 12345:1 12346:1 12349:2 12362:1 12380:1 12398:1 12420:1 12458:1 12464:1 12472:1 12476:1 12477:1 12493:1 12508:1 12515:1 12526:2 12534:1 12608:4 12621:1 12633:1 12648:7 12658:1 12668:2 12671:3 12676:1 12681:1 12701:1 12733:1 12764:1 12769:1 12772:2 12789:1 12796:2 12797:1 12813:1 12831:1 12835:1 12888:1 12914:1 12949:3 12984:1 12999:1 13045:4 13049:1 13072:1 13076:4 13080:3 13087:1 13093:1 13094:5 13128:1 13142:1 13144:1 13166:2 13206:1 13211:1 13213:1 13224:2 13232:2 13233:1 13252:2 13278:1 13282:1 13283:1 13301:1 13302:3 13306:1 13310:1 13320:1 13331:1 13341:1 13346:1 13364:1 13372:4 13376:1 13416:2 13420:1 13421:1 13454:1 13468:1 13557:1 13561:1 13599:2 13601:1 13606:4 13607:1 13610:1 13620:1 13628:1 13633:1 13654:1 13680:2 13691:1 13694:1 13697:1 13723:1 13733:2 13764:1 13779:1 13782:1 13788:2 13827:3 13832:2 13838:1 13847:1 13886:1 13895:1 13904:3 13931:3 13942:1 13974:1 13980:1 14006:1 14018:1 14054:1 14076:5 14089:1 14107:3 14134:1 14140:1 14152:1 14179:1 14180:1 14223:1 14245:1 14255:1 14274:1 14312:1 14313:1 14317:2 14318:3 14324:1 14325:5 14335:1 14339:1 14347:1 14358:1 14376:1 14385:1 14433:1 14449:3 14482:1 14485:1 14489:2 14492:1 14498:1 14523:1 14533:3 14573:1 14591:1 14600:1 14623:1 14637:1 14647:4 14664:1 14674:1 14683:2 14701:1 14761:1 14798:1 14820:3 14821:1 14823:1 14824:1 14837:1 14881:1 14883:1 14891:3 14893:1 14910:1 14916:1 14935:1 14936:2 14938:1 14961:2 14970:1 14984:1 14986:1 15000:1 15020:4 15037:1 15117:1 15123:2 15125:1 15130:1 15134:1 15146:1 15158:1 15173:1 15177:1 15180:1 15207:1 15233:1 15245:1 15259:2 15301:2 15322:1 15332:4 15385:2 15398:1 15403:1 15404:3 15414:2 15420:1 15431:1 15435:1 15453:2 15459:2 15471:1 15482:2 15509:1 15539:1 15556:1 15563:2 15578:4 15590:1 15591:2 15598:1 15607:2 15614:2 15624:1 15625:2 15626:1 15637:1 15642:1 15644:1 15679:1 15687:1 15717:1 15745:4 15750:1 15757:1 15785:1 15831:3 15832:3 15835:1 15871:1 15879:3 15893:1 15896:1 15909:1 15911:2 15923:1 15967:1 15973:2 16014:1 16026:1 16029:9 16030:1 16048:2 16055:1 16095:2 16119:3 16122:1 16127:1 16150:1 16164:1 16172:1 16177:1 16190:1 16194:1 16196:1 16242:1 16289:1 16290:2 16338:1 16353:1 16363:1 16398:1 16400:1 16403:2 16475:1 16482:1 16488:1 16489:1 16505:1 16511:1 16527:1 16528:1 16546:1 16555:2 16589:1 16597:1 16605:1 16639:1 16662:1 16666:2 16675:1 16685:1 16702:1 16708:1 16714:1 16716:2 16718:1 16738:1 16747:1 16761:1 16776:1 16789:2 16802:1 16828:1 16843:1 16844:4 16851:1 16867:1 16905:1 16908:1 16915:3 16929:1 16930:1 16947:1 16966:3 16991:1 16995:1 17013:2 17046:1 17050:1 17053:1 17059:4 17091:3 17106:1 17136:1 17138:1 17155:1 17156:1 17167:1 17172:1 17179:1 17186:1 17199:4 17207:1 17210:1 17265:1 17270:2 17277:1 17346:1 17360:1 17363:1 17369:1 17374:2 17397:1 17401:1 17422:1 17445:1 17447:1 17448:2 17454:2 17455:1 17463:1 17475:3 17476:1 17509:1 17522:4 17523:2 17558:1 17560:1 17585:1 17587:1 17592:5 17604:1 17631:1 17636:1 17644:2 17648:1 17652:1 17662:1 17665:2 17667:1 17670:1 17683:1 17692:1 17721:1 17722:2 17747:1 17753:2 17767:4 17772:1 17781:15 17785:1 17787:1 17790:1 17794:1 17819:1 17822:1 17838:1 17852:1 17855:1 17860:1 17871:1 17873:1 17882:1 17886:1 17896:4 17907:1 17922:1 17931:2 17962:1 17967:1 17977:1 17979:1 17989:1 17994:1 17998:2 18007:3 18009:1 18019:1 18032:1 18056:1 18067:1 18080:1 18084:1 18120:1 18133:1 18169:1 18170:1 18212:1 18219:1 18220:1 18315:4 18331:1 18380:1 18381:1 18399:1 18417:1 18424:1 18444:1 18449:1 18461:1 18471:1 18476:2 18478:2 18481:1 18498:1 18504:3 18509:1 18516:1 18519:1195 18524:1 18538:1 18572:2 18573:1 18608:1 18643:1 18648:1 18690:1 18702:1 18708:2 18715:3 18720:1 18725:2 18727:1 18728:1 18748:1 18763:1 18802:4 18808:1 18816:1 18842:15 18863:4 18904:1 18907:1 18920:1 18930:2 18938:1 18947:1 18968:1 18982:2 18991:2 19017:1 19033:1 19055:2 19061:1 19079:1 19089:1 19091:1 19113:1 19135:2 19140:1 19142:1 19176:1 19180:1 19187:1 19190:1 19192:1 19197:2 19202:1 19210:1 19228:4 19235:1 19257:1 19271:1 19298:6 19314:1 19315:1 19335:5 19336:1 19350:1 19359:1 19370:1 19412:1 19420:1 19442:2 19475:1 19482:1 19494:1 19507:3 19508:1 19515:3 19516:2 19531:1 19549:1 19550:1 19551:1 19563:1 19566:1 19573:1 19600:1 19628:1 19634:1 19661:1 19674:1 19680:1 19708:2 19719:1 19724:1 19735:1 19742:1 19745:1 19751:1 19752:1 19754:1 19767:1 19775:2 19784:2 19794:1 19816:1 19818:1 19833:1 19839:2 19862:1 19876:2 19904:1 19909:1 19918:1 19936:1 19949:2 19953:1 19964:1 19978:2 19992:1 19996:1 20003:1 20004:1 20017:1 20031:1 20032:1 20037:1 20052:1 20068:1 20084:1 20086:1 20117:1 20118:2 20159:3 20187:1 20211:3 20212:2 20218:2 20226:1 20231:1 20237:1 20281:1 20283:1 20293:2 20302:1 20404:2 20406:2 20420:1 20443:1 20453:1 20454:1 20455:3 20465:1 20468:1 20474:1 20525:1 20530:1 20531:2 20567:4 20577:1 20594:1 20599:1 20600:1 20643:1 20652:1 20656:1 20658:1 20671:1 20677:2 20683:1 20685:1 20692:1 20710:1 20716:1 20722:2 20738:1 20747:2 20770:1 20780:2 20782:1 20797:1 20823:1 20846:1 20862:1 20900:1 20907:2 20918:1 20945:1 20948:2 20979:2 20985:1 20988:1 21010:1 21016:1 21019:1 21029:1 21049:1 21062:1 21075:1 21079:1 21080:1 21088:1 21100:1 21122:1 21137:2 21158:1 21169:1 21174:1 21196:1 21289:1 21320:1 21345:1 21371:1 21374:2 21380:1 21386:2 21387:1 21392:1 21397:1 21406:1 21415:1 21442:2 21444:1 21459:1 21472:3 21488:1 21490:1 21498:1 21499:1 21504:1 21509:2 21518:1 21520:1 21523:1 21538:1 21544:1 21548:5 21580:1 21616:1 21634:1 21654:2 21663:1 21670:1 21675:7 21684:1 21695:2 21712:1 21714:2 21715:1 21724:1 21750:1 21771:1 21778:1 21809:1 21812:2 21822:1 21824:1 21827:1 21830:1 21846:1 21848:2 21867:2 21870:1 21885:1 21916:2 21941:1 21952:1 21967:1 21971:1 21994:1 22009:3 22016:1 22021:1 22052:1 22059:1 22061:1 22065:2 22077:1 22080:1 22096:2 22144:1 22150:1 22173:3 22174:2 22178:3 22189:2 22190:1 22212:1 22223:2 22230:1 22236:1 22248:1 22252:3 22257:1 22258:2 22291:1 22293:1 22294:1 22295:1 22302:1 22318:1 22329:1 22331:1 22332:1 22336:1 22345:1 22357:1 22362:1 22391:1 22392:1 22406:2 22412:1 22414:15 22419:1 22422:3 22426:1 22427:1 22453:2 22464:1 22467:1 22493:1 22495:1 22496:1 22538:1 22585:1 22593:2 22599:1 22616:2 22621:1 22672:1 22676:2 22687:1 22691:1 22692:1 22699:2 22705:1 22721:2 22726:1 22736:1 22737:1 22758:1 22777:1 22784:1 22848:1 22896:1 22902:1 22919:1 22921:1 22947:1 22948:1 22962:2 22964:1 22980:2 22982:1 22998:3 23027:1 23033:2 23038:1 23099:1 23143:1 23148:1 23165:1 23184:3 23188:1 23195:1 23196:1 23227:1 23234:1 23239:1 23248:1 23254:1 23283:2 23297:1 23299:1 23302:1 23310:1 23326:1 23340:1 23343:1 23352:1 23361:6 23368:1 23394:2 23403:1 23408:1 23437:1 23441:1 23452:1 23494:1 23519:1 23532:2 23559:2 23568:1 23591:1 23592:1 23600:1 23616:3 23618:1 23620:1 23635:1 23651:1 23659:1 23720:1 23722:1 23732:2 23736:1 23744:1 23749:2 23774:1 23785:1 23798:1 23806:1 23814:1 23831:1 23832:1 23875:1 23884:4 23896:3 23899:1 23910:1 23918:1 23919:1 23920:1 23939:1 23966:1 23973:1 23994:1 23996:1 24030:1 24044:1 24057:2 24058:2 24068:1 24093:1 24098:1 24101:1 24124:1 24146:1 24150:1 24159:1 24160:1 24162:3 24164:2 24166:4 24167:2 24172:1 24174:2 24175:1 24183:2 24187:2 24206:2 24233:1 24236:2 24237:1 24247:2 24263:2 24267:3 24291:1 24295:1 24297:1 24307:1 24321:1 24342:1 24345:1 24362:1 24390:1 24401:1 24402:1 24419:2 24440:2 24448:1 24450:3 24453:1 24464:2 24508:1 24547:2 24548:1 24558:1 24571:1 24582:1 24584:1 24630:3 24645:1 24658:1 24665:2 24707:2 24746:1 24757:1 24763:1 24772:1 24780:1 24783:3 24791:1 24797:1 24810:1 24816:1 24822:3 24878:1 24899:1 24912:1 24946:8 24955:1 24969:3 24990:1 24997:1 25005:1 25015:2 25028:1 25038:1 25046:1 25089:1 25093:2 25099:2 25104:1 25109:1 25111:2 25114:4 25122:1 25137:1 25139:2 25141:6 25144:2 25145:1 25155:1 25162:1 25167:2 25170:1 25177:1 25182:1 25214:2 25225:2 25230:1 25247:1 25258:2 25259:1 25319:1 25320:1 25335:1 25342:1 25384:1 25386:1 25401:1 25410:1 25413:1 25416:2 25425:1 25436:2 25468:1 25473:1 25488:1 25515:1 25561:1 25576:1 25600:1 25665:1 25676:1 25679:1 25680:1 25700:1 25708:1 25726:1 25729:1 25742:1 25757:1 25759:2 25796:1 25804:1 25812:1 25816:1 25838:3 25865:4 25880:1 25901:1 25903:1 25906:1 25916:1 25929:1 25930:1 25936:1 25953:1 25971:1 25992:4 25994:1 26021:3 26033:1 26038:1 26040:1 26059:1 26093:2 26112:2 26114:1 26118:1 26123:1 26127:2 26133:1 26166:2 26170:1 26175:1 26182:1 26185:1 26221:2 26247:1 26249:1 26261:2 26267:1 26290:2 26300:1 26309:1 26316:1 26338:1 26339:1 26341:1 26352:1 26373:5 26392:2 26476:1 26482:1 26499:1 26504:1 26547:1 26548:1 26569:1 26574:1 26582:1 26588:1 26599:1 26624:1 26657:1 26681:4 26700:2 26709:3 26721:1 26736:1 26737:1 26743:1 26759:1 26778:1 26787:1 26788:4 26817:1 26840:2 26847:1 26856:6 26894:2 26933:1 26960:5 26967:2 26981:1 26985:2 26988:1 26994:2 27003:1 27006:1 27016:1 27022:1 27033:1 27036:1 27057:1 27058:1 27069:2 27070:1 27079:1 27090:1 27103:1 27108:1 27113:1 27136:1 27141:2 27160:1 27187:1 27275:1 27279:1 27332:1 27365:4 27419:1 27465:1 27481:2 27560:1 27563:5 27575:1 27595:1 27627:1 27636:1 27675:1 27678:1 27687:13 27689:2 27692:5 27694:1 27695:2 27702:1 27724:5 27739:1 27777:1 27789:2 27804:1 27808:1 27820:1 27832:1 27838:1 27859:9 27863:1 27867:1 27869:1 27874:1 27887:1 27889:1 27893:1 27900:1 27906:1 27917:2 27923:1 27930:1 27934:1 27935:2 27948:1 27960:1 27964:1 27968:1 27969:1 28003:1 28011:1 28028:2 28030:1 28050:1 28051:1 28054:1 28068:2 28102:1 28126:1 28127:2 28128:1 28131:1 28174:1 28180:1 28183:1 28187:1 28193:1 28202:1 28204:1 28214:1 28218:1 28223:1 28292:1 28315:1 28319:1 28320:1 28341:1 28356:1 28362:1 28363:1 28375:2 28380:1 28387:1 28397:3 28404:1 28411:2 28413:1 28419:1 28461:1 28470:1 28506:2 28514:1 28520:1 28536:2 28541:1 28553:1 28560:2 28594:1 28596:1 28648:1 28703:1 28709:1 28724:1 28734:1 28748:1 28761:1 28792:1 28801:5 28816:1 28818:1 28836:6 28849:4 28913:7 28914:2 28916:1 28919:1 28921:1 28924:2 28925:1 28941:1 28959:2 28961:3 28963:2 29003:1
9 11:1 14:1 37:2 60:1 83:1 89:1 90:1 109:1 125:1 143:1 150:1 153:3 162:1 170:2 189:5 214:1 245:1 270:1 282:2 293:1 295:15 303:1 316:1 318:2 333:1 348:1 381:1 403:2 424:3 442:1 444:1 515:1 523:1 563:2 564:1 569:1 572:2 590:1 596:2 598:1 600:1 613:2 626:1 634:1 643:1 650:1 674:1 678:1 685:1 716:1 734:1 748:1 752:1 767:1 770:1 788:1 795:1 805:1 807:1 808:1 830:3 832:3 842:1 843:1 856:9 860:1 867:1 871:1 877:2 879:6 885:1 892:1 893:1 899:1 905:3 925:1 963:1 974:3 989:1 996:2 998:1 1002:1 1019:1 1020:1 1027:1 1045:1 1059:1 1078:1 1087:1 1089:1 1104:2 1112:1 1117:1 1143:1 1148:2 1160:1 1163:1 1207:2 1241:1 1244:1 1257:1 1276:1 1284:1 1287:1 1313:1 1330:1 1355:1 1374:1 1397:2 1400:1 1401:4 1402:1 1420:1 1423:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1506:1 1507:1 1508:1 1516:1 1543:1 1547:1 1555:1 1560:1 1562:2 1564:3 1571:1 1596:1 1598:1 1617:1 1619:1 1627:3 1634:2 1659:1 1660:1 1678:1 1699:1 1760:1 1762:1 1778:3 1789:1 1794:1 1802:1 1811:1 1819:1 1895:9 1903:1 1907:2 1923:1 1929:1 1935:1 1936:1 1952:1 1962:4 1965:2 1993:1 1998:1 2006:1 2011:1 2082:1 2085:1 2089:3 2095:1 2100:1 2101:1 2132:1 2154:1 2156:1 2159:1 2160:1 2165:1 2172:1 2174:1 2177:1 2178:2 2179:3 2190:1 2207:1 2212:1 2216:1 2219:1 2220:2 2221:4 2223:4 2226:1 2227:2 2228:2 2232:1 2233:1 2234:1 2237:1 2247:1 2249:1 2251:6 2252:1 2253:6 2268:1 2279:1 2297:1 2309:1 2315:1 2322:1 2336:1 2339:1 2343:1 2347:1 2358:2 2370:1 2374:1 2376:1 2392:1 2410:2 2421:3 2433:1 2445:1 2461:1 2465:1 2473:1 2485:5 2494:1 2500:1 2522:2 2536:1 2543:1 2552:3 2561:2 2563:1 2609:2 2648:1 2651:2 2656:1 2659:1 2667:2 2670:1 2675:1 2683:1 2688:1 2691:1 2708:1 2713:1 2723:1 2730:3 2756:1 2760:1 2761:2 2762:1 2766:5 2775:2 2780:1 2782:1 2810:1 2813:1 2816:1 2854:2 2867:9 2883:3 2888:1 2900:2 2909:1 2936:6 2961:1 2965:4 2968:1 2989:1 3023:1 3074:1 3075:1 3105:1 3106:1 3188:1 3197:1 3205:1 3231:1 3232:3 3243:1 3256:1 3266:1 3271:1 3293:1 3295:2 3338:1 3352:1 3357:6 3397:1 3407:1 3420:2 3459:1 3471:1 3472:1 3475:1 3478:1 3488:1 3489:1 3495:1 3517:1 3528:1 3540:2 3548:1 3558:1 3570:1 3574:1 3577:1 3580:1 3582:2 3599:4 3606:1 3607:2 3608:1 3615:1 3638:1 3639:3 3669:1 3680:1 3684:1 3688:3 3692:1 3695:2 3698:2 3712:1 3730:1 3737:1 3740:1 3742:4 3744:1 3746:2 3748:6 3779:1 3783:2 3784:1 3788:1 3789:6 3790:1 3792:1 3813:3 3822:1 3836:2 3838:1 3848:1 3851:1 3862:1 3866:1 3876:1 3883:1 3888:1 3895:1 3902:2 3904:1 3918:2 3919:1 3939:1 3940:1 3943:1 3964:2 3970:1 3972:1 3977:2 3982:1 3988:2 3989:2 3998:4 3999:2 4005:1 4040:1 4054:2 4078:1 4085:2 4093:1 4113:1 4125:1 4129:1 4136:1 4190:1 4193:2 4201:1 4204:1 4219:1 4254:1 4270:2 4272:1 4282:1 4298:1 4362:4 4378:1 4416:1 4428:1 4434:1 4439:2 4455:1 4494:1 4528:1 4560:1 4562:1 4583:1 4613:1 4619:2 4626:3 4640:1 4646:1 4658:1 4691:1 4695:7 4724:1 4731:1 4742:1 4746:1 4759:1 4773:4 4787:1 4815:1 4818:1 4867:1 4876:12 4878:2 4895:2 4903:1 4925:1 4928:5 4940:1 4963:1 4964:1 4980:1 4984:1 4985:3 5003:2 5005:4 5006:1 5008:1 5013:3 5017:1 5022:1 5028:2 5030:2 5033:1 5042:1 5045:2 5046:2 5064:1 5090:1 5131:2 5157:1 5176:1 5177:1 5184:1 5190:1 5195:2 5219:1 5220:1 5237:1 5245:2 5249:1 5255:1 5280:1 5302:1 5306:1 5307:1 5328:1 5358:4 5362:1 5369:2 5371:1 5386:1 5404:1 5429:1 5453:1 5480:1 5493:1 5501:1 5511:2 5524:1 5534:1 5535:1 5538:1 5540:2 5548:1 5564:1 5582:3 5584:1 5593:1 5615:2 5629:2 5639:1 5640:1 5663:3 5680:1 5681:2 5694:1 5701:2 5705:1 5720:4 5721:1 5728:1 5749:1 5773:1 5802:1 5812:1 5843:2 5850:1 5852:1 5877:1 5881:1 5898:1 5920:1 5942:1 5947:2 5949:1 5972:9 5987:2 5992:2 6000:1 6006:1 6009:1 6017:1 6040:1 6056:1 6110:1 6130:1 6137:1 6138:1 6142:1 6150:1 6153:1 6176:5 6192:1 6199:1 6245:1 6259:3 6263:1 6270:1 6274:1 6275:1 6276:3 6279:2 6282:2 6283:8 6284:2 6334:1 6379:2 6420:2 6482:2 6493:1 6502:1 6507:1 6513:1 6537:1 6542:1 6556:1 6558:1 6565:1 6598:1 6609:1 6613:1 6653:1 6654:1 6677:1 6679:2 6689:1 6699:5 6715:1 6722:1 6728:1 6751:1 6757:1 6795:1 6810:2 6823:1 6851:1 6854:1 6855:2 6860:1 6866:1 6871:1 6885:1 6886:2 6906:1 6919:1 6922:2 6948:1 6987:1 6999:1 7049:1 7050:7 7052:1 7067:1 7074:1 7091:1 7097:1 7099:1 7124:1 7125:1 7169:1 7180:1 7198:2 7218:2 7234:1 7248:1 7263:3 7287:2 7290:1 7297:1 7311:1 7334:3 7346:1 7347:1 7367:1 7371:1 7382:1 7386:1 7407:2 7427:1 7463:1 7499:2 7518:1 7554:1 7555:9 7556:1 7570:1 7580:1 7582:2 7584:1 7603:2 7620:37 7622:1 7643:2 7644:6 7645:1 7648:1 7671:1 7696:1 7710:1 7720:1 7725:2 7751:1 7755:1 7758:2 7826:2 7871:1 7878:1 7892:1 7897:2 7928:1 7931:1 7962:1 8004:1 8007:1 8032:1 8037:1 8043:2 8044:3 8045:1 8046:1 8062:1 8063:1 8107:1 8116:1 8124:1 8130:2 8136:1 8142:2 8154:1 8156:3 8180:1 8184:1 8186:1 8194:1 8236:1 8254:1 8270:1 8299:1 8301:2 8311:1 8319:1 8336:1 8358:1 8369:2 8376:3 8379:1 8383:2 8387:2 8394:1 8395:1 8405:1 8412:1 8422:1 8430:5 8438:1 8441:1 8460:1 8468:1 8480:1 8490:1 8497:1 8500:2 8501:3 8503:2 8504:1 8505:1 8508:1 8510:5 8512:2 8513:1 8516:1 8543:2 8549:1 8550:3 8567:1 8572:1 8575:2 8578:1 8582:1 8586:1 8604:1 8640:1 8655:1 8679:1 8688:1 8710:1 8719:1 8728:1 8739:1 8756:2 8772:2 8808:1 8810:1 8811:3 8815:2 8827:2 8833:1 8840:1 8846:1 8857:1 8914:1 8929:1 8936:2 8950:3 8954:1 8971:1 8992:1 9001:1 9019:1 9022:1 9035:1 9040:1 9050:1 9057:1 9065:1 9069:1 9077:3 9107:1 9115:2 9121:1 9139:1 9142:1 9151:1 9200:1 9207:4 9209:1 9216:2 9219:1 9226:15 9246:2 9247:1 9261:1 9275:1 9305:1 9314:1 9319:1 9329:1 9338:2 9349:1 9360:2 9363:5 9365:1 9390:1 9421:1 9433:3 9490:1 9497:1 9528:1 9529:1 9537:1 9539:1 9558:1 9568:1 9569:1 9574:1 9582:1 9586:2 9594:1 9601:1 9608:1 9634:1 9652:1 9663:5 9676:1 9677:3 9687:2 9700:1 9746:2 9789:1 9829:1 9847:3 9850:1 9856:1 9871:1 9877:1 9880:1 9883:2 9887:1 9898:2 9911:1 9913:1 9919:1 9928:1 9932:1 9938:1 9939:1 9954:1 9956:1 9968:4 9987:1 9996:1 10019:1 10038:1 10065:1 10073:1 10094:1 10125:1 10126:1 10135:1 10191:1 10234:1 10241:1 10266:1 10280:1 10302:1 10328:1 10329:1 10347:1 10351:2 10359:2 10370:1 10372:1 10436:1 10448:1 10478:2 10486:1 10488:1 10504:2 10507:1 10513:1 10521:1 10524:1 10526:1 10537:1 10539:1 10555:1 10557:1 10558:1 10564:1 10573:1 10582:1 10590:1 10592:2 10621:1 10641:1 10657:3 10665:4 10683:1 10686:9 10737:1 10740:1 10748:1 10783:1 10787:1 10824:1 10839:1 10857:1 10901:1 10903:3 10905:1 10909:1 10910:1 10921:2 10937:1 10943:1 10947:1 10953:1 10962:1 10989:5 11010:2 11014:1 11016:1 11018:1 11062:1 11063:1 11071:1 11083:1 11094:1 11100:1 11106:1 11107:1 11118:1 11145:1 11147:1 11175:1 11177:1 11197:1 11203:3 11208:1 11230:1 11234:1 11248:1 11268:2 11284:1 11285:1 11300:1 11301:1 11302:1 11315:2 11317:1 11333:3 11341:1 11367:1 11370:5 11371:1 11400:1 11430:1 11442:1 11444:1 11469:1 11476:1 11477:1 11481:1 11501:1 11506:1 11509:1 11514:1 11520:2 11526:2 11530:4 11547:1 11549:1 11550:4 11603:2 11609:1 11614:1 11615:1 11619:2 11622:1 11631:1 11633:1 11636:2 11645:1 11649:1 11664:5 11684:5 11690:1 11693:1 11711:1 11716:1 11734:1 11772:1 11789:1 11824:1 11826:1 11852:1 11865:3 11871:1 11916:1 11931:3 11936:3 11952:1 11973:3 11990:1 11997:1 12004:1 12109:1 12110:2 12111:3 12115:1 12132:1 12154:1 12165:2 12166:3 12172:1 12178:1 12184:2 12239:1 12250:1 12272:1 12276:1 12281:3 12302:1 12337:1 12345:1 12346:1 12349:2 12362:1 12380:1 12398:1 12420:1 12458:1 12464:1 12472:1 12476:1 12477:1 12493:1 12508:1 12515:1 12526:2 12534:1 12608:5 12621:1 12633:1 12648:7 12658:1 12668:2 12671:3 12676:1 12681:1 12701:1 12733:2 12764:1 12769:1 12772:2 12789:1 12796:2 12797:1 12813:1 12831:1 12835:1 12837:1 12888:1 12914:1 12949:4 12984:1 12999:1 13045:5 13049:1 13066:1 13072:1 13076:4 13080:3 13087:1 13093:1 13094:5 13128:1 13142:1 13143:1 13144:1 13166:3 13206:1 13211:1 13213:1 13224:2 13231:1 13232:2 13233:1 13252:2 13275:1 13278:1 13282:1 13283:1 13301:1 13302:3 13306:1 13310:1 13320:1 13331:1 13341:1 13346:1 13364:1 13372:4 13376:1 13416:3 13420:1 13421:1 13454:1 13468:2 13557:1 13561:1 13599:2 13601:1 13606:4 13607:1 13610:1 13620:1 13628:1 13633:1 13654:1 13680:2 13691:1 13694:1 13697:1 13698:1 13723:1 13733:2 13745:1 13764:1 13779:1 13782:1 13788:2 13799:1 13827:3 13832:2 13833:1 13838:1 13847:1 13886:1 13895:1 13904:3 13931:4 13942:1 13974:1 13980:1 14006:1 14018:1 14029:1 14054:1 14076:5 14089:1 14107:3 14134:1 14140:1 14152:1 14161:1 14179:1 14180:1 14223:1 14235:1 14245:1 14255:1 14274:1 14312:1 14313:1 14317:2 14318:3 14324:1 14325:5 14335:1 14339:1 14340:1 14347:1 14358:1 14376:1 14385:1 14433:1 14449:3 14482:1 14485:1 14489:2 14492:1 14498:2 14523:1 14533:3 14573:1 14591:2 14600:1 14623:1 14637:1 14647:4 14664:1 14674:1 14683:2 14701:1 14761:1 14798:1 14820:3 14821:1 14823:1 14824:1 14837:1 14881:1 14883:1 14891:3 14893:1 14910:1 14916:1 14935:1 14936:3 14938:2 14961:2 14970:1 14984:1 14986:1 15000:1 15020:5 15037:1 15117:1 15123:3 15125:1 15130:1 15134:1 15146:1 15158:1 15173:1 15177:1 15180:1 15207:1 15233:1 15245:1 15259:2 15301:2 15322:1 15332:4 15345:1 15385:2 15398:1 15403:1 15404:3 15414:2 15420:1 15431:1 15435:1 15453:2 15459:2 15471:1 15482:2 15509:1 15539:1 15556:1 15563:2 15578:5 15581:1 15590:1 15591:2 15598:1 15607:2 15614:2 15624:1 15625:2 15626:1 15637:1 15642:1 15644:1 15679:1 15687:1 15717:1 15745:4 15750:1 15757:1 15763:1 15785:2 15814:1 15831:4 15832:3 15835:1 15871:1 15879:3 15893:1 15896:1 15909:1 15911:2 15923:1 15967:1 15973:2 16014:1 16026:1 16029:9 16030:1 16048:2 16055:1 16095:2 16119:3 16122:1 16127:1 16150:1 16164:1 16172:1 16177:1 16190:1 16194:1 16196:1 16242:1 16289:1 16290:2 16338:1 16353:1 16363:1 16398:1 16400:1 16403:2 16475:1 16482:1 16488:1 16489:1 16505:1 16511:1 16527:1 16528:1 16546:1 16555:2 16575:1 16589:1 16597:1 16605:1 16639:1 16662:1 16666:2 16675:1 16685:1 16702:1 16708:1 16714:1 16716:2 16718:1 16738:1 16747:1 16758:1 16761:1 16776:1 16789:2 16802:1 16828:1 16840:1 16843:1 16844:4 16851:1 16867:1 16905:1 16908:1 16915:4 16929:1 16930:1 16942:1 16947:1 16966:3 16991:1 16995:1 17013:2 17046:1 17050:1 17053:1 17059:4 17091:3 17106:1 17136:1 17138:1 17155:1 17156:1 17167:1 17172:1 17179:1 17186:1 17198:1 17199:5 17207:1 17210:1 17251:1 17265:1 17270:2 17277:1 17346:1 17360:1 17363:1 17369:1 17374:2 17397:1 17401:1 17422:1 17445:1 17447:1 17448:2 17454:2 17455:1 17456:1 17463:1 17475:3 17476:1 17509:1 17522:4 17523:2 17558:1 17560:1 17585:1 17587:1 17592:5 17604:1 17631:1 17636:1 17644:2 17648:1 17652:1 17662:1 17665:2 17667:1 17670:1 17683:1 17692:1 17721:1 17722:2 17747:1 17753:2 17767:5 17772:2 17781:16 17785:1 17787:1 17790:1 17794:1 17819:1 17822:1 17838:1 17852:1 17855:1 17860:1 17871:1 17873:1 17882:1 17886:1 17896:4 17907:1 17922:1 17931:3 17962:1 17967:1 17977:1 17979:1 17989:1 17994:1 17998:2 18007:3 18009:1 18019:1 18032:1 18056:1 18067:1 18080:1 18084:1 18120:1 18133:1 18167:1 18169:1 18170:1 18212:1 18219:1 18220:1 18249:1 18315:4 18331:1 18348:1 18380:1 18381:1 18399:1 18417:2 18424:1 18444:1 18449:1 18461:1 18471:2 18476:2 18478:2 18481:1 18498:1 18504:3 18509:1 18516:1 18519:1280 18524:1 18538:1 18572:2 18573:1 18582:1 18608:1 18643:1 18648:1 18668:1 18690:1 18702:1 18708:2 18715:3 18720:1 18725:2 18727:1 18728:1 18748:1 18763:1 18802:5 18808:1 18810:1 18816:1 18842:15 18863:5 18904:1 18907:1 18920:1 18930:2 18938:1 18947:1 18968:1 18982:2 18991:2 19017:1 19033:1 19055:2 19061:1 19079:1 19089:1 19091:1 19113:1 19135:2 19140:1 19142:1 19176:1 19180:1 19187:1 19190:1 19192:1 19197:2 19202:1 19210:1 19228:4 19235:1 19257:1 19271:1 19298:6 19314:1 19315:1 19335:5 19336:1 19350:1 19359:1 19370:1 19412:1 19420:1 19442:2 19475:1 19482:1 19494:1 19507:3 19508:1 19515:3 19516:2 19531:1 19549:1 19550:1 19551:1 19563:1 19566:1 19573:1 19600:1 19628:1 19634:1 19661:1 19674:1 19680:1 19708:2 19719:1 19720:1 19724:1 19735:1 19742:1 19745:1 19751:1 19752:1 19754:1 19767:1 19775:2 19784:2 19794:1 19816:1 19818:1 19833:1 19839:2 19862:1 19876:2 19904:1 19909:1 19918:1 19936:1 19949:2 19953:1 19964:1 19978:2 19992:1 19996:1 20003:1 20004:1 20017:1 20031:1 20032:1 20036:1 20037:1 20052:1 20061:1 20068:1 20079:1 20084:1 20086:1 20117:1 20118:2 20159:3 20187:1 20211:3 20212:2 20218:2 20226:1 20231:1 20237:1 20281:1 20283:1 20293:2 20302:1 20404:2 20406:2 20420:1 20443:1 20453:1 20454:1 20455:3 20465:1 20468:2 20474:1 20525:1 20530:1 20531:2 20567:4 20577:1 20594:1 20599:1 20600:1 20643:1 20652:1 20656:1 20658:1 20671:1 20677:2 20683:1 20685:1 20692:1 20705:1 20710:1 20716:1 20722:2 20738:1 20747:3 20770:1 20780:2 20782:1 20797:1 20823:1 20846:1 20862:1 20900:1 20907:2 20918:1 20945:1 20948:2 20979:2 20985:1 20988:1 21010:1 21016:1 21019:1 21029:1 21049:1 21062:1 21075:1 21079:1 21080:1 21088:1 21100:1 21122:1 21137:2 21158:1 21169:1 21174:1 21196:1 21201:1 21265:1 21289:1 21320:1 21345:1 21358:1 21371:1 21372:1 21374:2 21380:1 21386:2 21387:1 21392:1 21397:1 21406:1 21415:1 21442:2 21444:1 21459:1 21472:3 21488:1 21490:1 21498:1 21499:1 21503:1 21504:1 21509:2 21518:1 21520:1 21523:1 21538:1 21544:1 21548:5 21580:1 21616:1 21634:1 21654:2 21663:1 21670:1 21675:7 21684:1 21695:2 21712:1 21714:2 21715:1 21724:1 21750:1 21771:1 21778:1 21809:1 21812:3 21822:1 21824:1 21827:1 21829:1 21830:1 21846:1 21848:2 21867:2 21870:1 21885:1 21916:2 21941:1 21952:1 21967:1 21971:1 21994:1 22009:3 22016:1 22021:1 22052:1 22059:1 22061:1 22065:2 22077:1 22080:1 22096:2 22144:1 22150:1 22173:3 22174:2 22178:3 22189:2 22190:1 22212:1 22223:2 22230:1 22236:1 22248:1 22252:3 22257:1 22258:2 22291:1 22293:1 22294:1 22295:1 22302:1 22315:1 22318:1 22329:1 22331:1 22332:1 22336:1 22345:1 22357:1 22362:1 22391:1 22392:1 22406:2 22412:1 22414:16 22419:1 22420:1 22422:3 22426:1 22427:1 22453:2 22455:1 22464:1 22467:1 22493:1 22495:1 22496:1 22538:1 22579:1 22585:1 22593:3 22599:1 22616:2 22621:1 22672:1 22674:1 22676:2 22687:1 22691:1 22692:1 22695:1 22699:2 22705:1 22721:2 22726:1 22736:1 22737:1 22758:1 22777:1 22784:1 22808:1 22848:1 22896:1 22902:1 22919:1 22921:1 22947:1 22948:1 22962:2 22964:1 22980:2 22982:1 22998:3 23027:1 23033:2 23038:1 23099:1 23143:1 23148:1 23165:1 23184:3 23188:1 23195:1 23196:1 23207:1 23227:1 23234:1 23239:1 23248:1 23254:1 23283:2 23297:1 23299:1 23302:1 23310:1 23326:1 23340:1 23343:1 23352:1 23361:6 23368:1 23394:2 23403:1 23408:1 23437:1 23441:1 23452:1 23494:1 23519:1 23532:2 23559:2 23568:1 23591:1 23592:1 23600:1 23616:3 23618:1 23620:1 23635:1 23651:1 23659:1 23720:1 23722:1 23732:2 23736:1 23744:1 23749:2 23774:1 23785:1 23798:1 23806:1 23814:1 23831:1 23832:1 23875:1 23884:4 23885:1 23896:3 23899:1 23910:1 23918:1 23919:1 23920:1 23939:1 23966:1 23973:1 23994:1 23995:1 23996:1 24025:1 24030:1 24044:1 24057:2 24058:2 24068:1 24093:1 24098:1 24101:1 24124:1 24146:1 24150:1 24159:2 24160:1 24162:4 24164:2 24166:4 24167:2 24172:1 24174:2 24175:1 24182:1 24183:2 24187:2 24193:1 24206:2 24233:1 24236:2 24237:1 24247:2 24263:2 24267:3 24291:1 24295:1 24297:1 24307:1 24321:1 24342:1 24345:1 24362:1 24390:1 24401:1 24402:1 24419:2 24440:2 24448:1 24450:3 24453:1 24464:2 24508:1 24547:2 24548:1 24558:1 24571:1 24582:1 24584:1 24630:3 24645:1 24658:1 24665:2 24707:2 24746:1 24757:1 24763:1 24772:1 24780:1 24783:3 24791:1 24797:1 24810:1 24816:1 24822:3 24878:1 24899:1 24912:1 24915:1 24946:8 24955:1 24969:4 24990:1 24997:1 25005:1 25015:2 25028:1 25038:1 25046:1 25047:1 25089:1 25093:2 25099:2 25104:1 25109:1 25111:2 25114:4 25122:1 25137:1 25139:2 25141:7 25144:2 25145:1 25155:1 25162:1 25167:2 25170:1 25177:1 25182:1 25214:2 25225:2 25230:1 25247:1 25258:2 25259:1 25319:1 25320:1 25335:1 25342:1 25384:1 25386:1 25401:1 25410:1 25413:1 25416:2 25425:1 25436:2 25468:1 25473:1 25488:1 25515:1 25561:1 25576:1 25600:1 25665:1 25676:1 25679:1 25680:1 25700:1 25708:1 25726:1 25729:1 25742:1 25757:1 25759:2 25796:2 25804:1 25812:1 25816:1 25838:3 25865:4 25880:1 25901:1 25903:1 25906:1 25916:1 25929:1 25930:1 25936:1 25953:1 25971:1 25988:1 25992:4 25994:1 26021:3 26033:1 26038:1 26040:1 26059:1 26093:3 26112:2 26114:1 26118:1 26123:1 26127:2 26133:1 26166:2 26170:1 26175:1 26182:1 26185:1 26221:2 26247:2 26249:1 26261:2 26267:1 26290:2 26300:1 26309:1 26316:1 26338:1 26339:1 26341:1 26352:1 26373:5 26392:2 26476:1 26482:1 26499:1 26504:1 26547:1 26548:1 26559:1 26569:1 26574:1 26582:1 26588:1 26599:1 26624:1 26657:1 26667:1 26681:4 26700:2 26709:3 26721:1 26736:1 26737:1 26743:1 26759:1 26778:1 26787:1 26788:5 26817:1 26840:2 26844:1 26847:1 26856:6 26894:2 26933:1 26960:5 26965:1 26967:2 26981:1 26985:2 26988:1 26994:2 27003:1 27006:1 27016:1 27022:1 27033:1 27036:1 27057:1 27058:1 27069:2 27070:1 27079:1 27090:1 27103:1 27108:1 27113:1 27136:1 27141:2 27147:1 27160:1 27187:1 27275:1 27279:1 27332:1 27365:4 27368:1 27419:1 27465:1 27481:2 27560:1 27563:5 27575:1 27595:1 27597:1 27627:1 27636:1 27673:1 27675:1 27678:1 27687:15 27689:2 27692:5 27694:1 27695:2 27702:1 27724:5 27739:1 27777:1 27789:2 27804:1 27808:1 27820:1 27821:1 27832:1 27838:1 27859:9 27863:1 27867:1 27869:1 27874:1 27885:1 27887:1 27889:1 27893:1 27900:1 27906:1 27917:2 27923:1 27930:1 27934:1 27935:2 27948:1 27960:1 27964:1 27968:1 27969:1 28003:1 28011:1 28028:2 28030:1 28050:1 28051:1 28054:1 28068:2 28102:1 28126:1 28127:2 28128:1 28131:1 28174:1 28180:1 28183:1 28187:1 28193:1 28202:1 28204:1 28214:1 28218:1 28223:1 28292:1 28315:1 28319:1 28320:1 28341:1 28356:1 28362:1 28363:1 28375:2 28380:1 28387:1 28397:4 28404:1 28411:2 28413:1 28419:1 28461:1 28469:1 28470:1 28506:2 28514:1 28520:1 28536:2 28541:1 28551:1 28553:1 28560:2 28594:1 28596:1 28648:1 28665:1 28703:1 28709:1 28724:1 28734:1 28748:1 28761:2 28792:1 28801:5 28816:1 28818:1 28836:6 28849:4 28913:7 28914:2 28916:2 28919:1 28921:1 28924:2 28925:1 28941:1 28959:2 28961:3 28963:2 29003:1
9 11:1 14:1 34:1 37:2 60:1 83:1 89:1 90:1 109:1 117:1 125:1 143:1 150:1 153:3 162:1 170:3 189:5 214:1 245:1 270:1 282:2 293:1 295:15 303:1 316:1 318:2 333:1 348:1 381:1 403:2 424:3 442:1 444:1 515:1 523:1 563:2 564:1 569:1 572:2 590:1 596:2 598:1 600:1 613:2 626:1 634:1 643:1 650:1 674:1 678:1 685:1 702:1 716:1 734:1 748:1 752:1 767:1 770:1 788:1 795:1 804:1 805:1 807:2 808:1 830:3 832:3 842:1 843:1 855:1 856:9 860:1 867:1 871:1 877:2 879:6 885:1 892:1 893:1 899:1 905:3 924:1 925:1 963:1 974:3 989:1 996:2 998:1 1002:1 1019:1 1020:1 1027:1 1045:1 1059:1 1078:1 1087:1 1089:1 1104:2 1112:1 1117:1 1143:1 1148:2 1160:1 1163:1 1179:1 1207:2 1241:1 1244:1 1257:1 1276:1 1284:1 1287:1 1313:1 1330:1 1355:1 1374:2 1397:2 1400:1 1401:4 1402:1 1420:1 1423:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1506:1 1507:1 1508:1 1516:1 1543:1 1547:1 1555:1 1560:1 1562:2 1564:3 1571:1 1596:1 1598:1 1617:1 1619:1 1627:3 1634:2 1659:1 1660:1 1678:1 1699:1 1760:1 1762:1 1778:3 1789:1 1794:1 1802:1 1811:1 1819:1 1895:9 1903:1 1907:2 1923:1 1929:1 1935:1 1936:1 1952:1 1962:5 1965:2 1993:1 1998:1 2006:1 2011:1 2082:1 2085:1 2089:3 2095:1 2100:1 2101:1 2108:1 2132:1 2154:1 2156:1 2159:1 2160:1 2165:1 2172:1 2174:1 2177:1 2178:2 2179:3 2190:2 2207:1 2212:1 2216:1 2219:1 2220:2 2221:5 2223:4 2226:1 2227:2 2228:2 2232:1 2233:1 2234:1 2237:1 2247:1 2249:1 2251:6 2252:1 2253:6 2264:1 2268:1 2279:1 2297:1 2309:1 2315:1 2322:1 2336:1 2339:1 2343:1 2347:1 2358:2 2370:1 2374:1 2376:1 2392:1 2410:2 2421:3 2433:1 2445:1 2461:1 2465:1 2473:1 2485:5 2494:2 2500:1 2522:2 2536:1 2543:1 2552:3 2561:2 2563:1 2580:1 2609:2 2648:1 2651:2 2656:1 2659:1 2667:2 2670:1 2675:1 2683:1 2688:1 2691:1 2708:1 2713:1 2723:1 2730:3 2756:1 2760:1 2761:2 2762:1 2766:5 2775:2 2780:1 2782:1 2810:1 2813:1 2816:1 2854:2 2867:10 2883:3 2888:1 2900:2 2909:1 2936:8 2961:1 2965:4 2968:1 2989:1 3023:1 3026:1 3074:1 3075:1 3105:1 3106:1 3188:1 3197:1 3205:1 3231:1 3232:4 3243:1 3256:1 3266:1 3271:1 3293:1 3295:2 3338:1 3352:1 3357:6 3397:1 3407:1 3420:2 3424:1 3459:1 3471:1 3472:1 3475:1 3478:1 3488:1 3489:1 3495:1 3517:1 3528:1 3540:2 3548:1 3558:1 3570:1 3574:1 3577:1 3580:1 3582:2 3599:4 3606:1 3607:2 3608:1 3615:1 3638:1 3639:3 3669:1 3680:1 3684:1 3688:3 3692:1 3695:2 3698:2 3712:1 3730:1 3737:1 3740:1 3742:4 3744:1 3746:2 3748:8 3779:1 3783:2 3784:1 3788:1 3789:7 3790:1 3792:1 3813:3 3817:1 3822:1 3836:2 3838:1 3848:1 3851:1 3862:1 3866:1 3876:1 3883:1 3888:1 3895:1 3902:2 3904:1 3918:2 3919:1 3939:1 3940:1 3943:1 3964:2 3970:1 3972:1 3977:2 3982:1 3988:2 3989:2 3998:4 3999:2 4005:1 4040:1 4054:2 4078:1 4085:2 4093:1 4113:1 4125:1 4129:1 4136:1 4190:1 4193:2 4201:1 4204:1 4219:1 4254:1 4270:2 4272:1 4282:1 4298:1 4362:4 4378:1 4416:1 4428:1 4434:1 4439:2 4455:1 4494:1 4528:1 4560:1 4562:1 4583:1 4613:1 4619:2 4626:3 4640:1 4646:1 4658:1 4691:1 4695:7 4724:1 4731:1 4742:1 4746:1 4759:1 4768:1 4773:5 4787:1 4815:1 4818:1 4851:1 4867:1 4876:13 4878:2 4895:2 4903:1 4925:1 4928:5 4940:1 4963:1 4964:1 4980:1 4984:1 4985:3 5003:2 5005:4 5006:1 5008:1 5013:3 5017:1 5022:1 5028:2 5030:2 5033:1 5042:1 5045:2 5046:2 5064:1 5090:1 5131:2 5157:1 5176:1 5177:1 5184:2 5190:1 5195:2 5219:1 5220:1 5237:1 5245:2 5249:1 5255:1 5280:1 5302:1 5306:1 5307:1 5328:1 5351:1 5358:4 5362:1 5369:2 5371:1 5386:1 5404:2 5429:1 5453:1 5480:1 5493:1 5501:1 5511:2 5524:1 5534:1 5535:1 5538:1 5540:2 5548:1 5564:1 5582:3 5584:1 5593:1 5615:2 5629:2 5639:1 5640:1 5663:3 5680:1 5681:2 5694:1 5701:2 5705:1 5720:4 5721:1 5728:1 5749:1 5773:1 5802:1 5812:1 5843:2 5850:1 5852:1 5877:1 5881:1 5898:1 5920:1 5942:1 5947:2 5949:1 5972:9 5987:3 5992:2 6000:1 6006:1 6009:1 6017:1 6039:1 6040:1 6056:1 6110:1 6130:1 6137:2 6138:1 6142:1 6150:1 6153:1 6176:5 6192:1 6199:1 6245:1 6259:3 6263:1 6270:1 6274:1 6275:1 6276:3 6279:2 6282:2 6283:8 6284:3 6334:1 6379:3 6420:2 6435:1 6482:2 6493:1 6502:1 6507:1 6513:1 6537:1 6542:1 6556:1 6558:1 6565:1 6598:1 6609:1 6613:1 6653:1 6654:1 6677:1 6679:2 6689:1 6699:5 6715:1 6722:1 6728:1 6751:1 6757:1 6795:1 6810:2 6823:1 6851:1 6854:2 6855:2 6860:1 6866:1 6871:1 6885:2 6886:2 6906:1 6919:1 6922:2 6948:1 6987:1 6999:1 7049:1 7050:7 7052:1 7067:1 7074:2 7091:1 7097:1 7099:1 7124:1 7125:1 7169:1 7180:1 7198:2 7218:2 7234:1 7248:1 7263:3 7287:2 7290:1 7297:1 7311:1 7334:3 7346:1 7347:1 7367:2 7371:1 7382:1 7386:1 7407:2 7427:1 7463:1 7499:2 7518:1 7554:1 7555:9 7556:1 7570:1 7580:1 7582:2 7584:1 7603:2 7620:38 7622:1 7643:2 7644:8 7645:1 7648:1 7671:2 7696:1 7710:1 7720:1 7725:2 7751:1 7755:1 7758:2 7826:2 7871:1 7878:1 7892:1 7897:2 7928:1 7931:1 7962:1 8004:1 8007:1 8032:1 8037:1 8043:2 8044:3 8045:1 8046:1 8062:1 8063:1 8107:1 8116:2 8124:1 8130:2 8136:1 8142:2 8154:1 8156:3 8180:1 8184:1 8186:1 8194:1 8236:1 8254:1 8270:1 8299:1 8301:2 8311:1 8319:1 8336:1 8358:1 8369:2 8376:3 8379:1 8383:2 8387:2 8394:1 8395:1 8405:1 8412:1 8422:1 8430:5 8438:1 8441:1 8460:1 8468:1 8480:1 8490:1 8497:1 8500:2 8501:3 8503:2 8504:1 8505:2 8508:2 8510:5 8512:2 8513:1 8516:1 8543:2 8549:1 8550:3 8567:1 8571:1 8572:1 8575:2 8578:1 8582:1 8586:1 8604:1 8640:1 8655:1 8657:1 8679:1 8688:1 8710:1 8719:1 8728:1 8739:1 8756:2 8772:2 8779:1 8808:1 8810:1 8811:3 8815:2 8827:2 8833:1 8840:1 8846:1 8857:1 8914:1 8929:1 8936:2 8950:3 8954:1 8971:1 8992:1 9001:1 9019:1 9022:1 9035:1 9040:1 9050:1 9057:1 9065:1 9068:1 9069:1 9077:3 9107:1 9115:2 9121:1 9139:1 9142:1 9151:1 9196:1 9200:1 9207:4 9209:1 9216:2 9219:1 9226:15 9246:2 9247:1 9261:1 9275:1 9305:1 9314:1 9319:1 9329:1 9338:2 9349:1 9360:2 9363:5 9365:1 9390:1 9421:1 9433:3 9490:1 9497:1 9528:1 9529:1 9537:1 9539:1 9558:1 9568:1 9569:2 9574:1 9582:1 9586:2 9594:1 9601:1 9608:1 9634:2 9652:1 9663:5 9676:1 9677:3 9687:2 9700:1 9704:1 9746:3 9789:1 9829:1 9847:3 9850:1 9856:1 9871:1 9877:1 9880:1 9883:2 9887:1 9898:2 9911:1 9913:1 9919:1 9928:1 9929:1 9932:1 9938:1 9939:1 9954:1 9956:1 9968:4 9987:1 9996:1 10019:1 10038:1 10065:1 10073:1 10094:1 10125:1 10126:1 10135:1 10191:1 10234:1 10241:1 10266:1 10280:1 10302:1 10328:1 10329:1 10347:1 10351:2 10359:2 10370:1 10372:1 10436:1 10448:1 10478:2 10486:1 10488:1 10504:2 10507:2 10513:1 10521:1 10524:1 10526:1 10537:1 10539:1 10555:1 10557:1 10558:1 10564:1 10573:1 10582:1 10590:1 10592:2 10621:1 10641:1 10657:3 10665:4 10683:2 10686:9 10737:1 10740:1 10748:1 10783:1 10787:1 10824:1 10839:1 10857:1 10901:1 10903:3 10905:1 10909:1 10910:1 10921:2 10937:1 10943:1 10947:1 10953:1 10962:1 10989:5 10992:1 11010:2 11014:1 11016:1 11018:1 11062:1 11063:1 11071:1 11083:1 11094:1 11100:1 11106:1 11107:1 11118:1 11145:1 11147:1 11175:1 11177:1 11197:1 11203:4 11208:1 11230:1 11234:1 11248:1 11260:1 11268:2 11284:1 11285:1 11300:1 11301:1 11302:1 11308:1 11315:2 11317:1 11333:3 11341:1 11367:1 11370:5 11371:1 11400:1 11401:1 11430:1 11442:1 11444:1 11469:1 11476:1 11477:1 11481:1 11501:1 11506:1 11509:1 11514:1 11520:2 11526:2 11530:5 11547:1 11549:1 11550:4 11603:2 11609:1 11614:1 11615:2 11619:2 11622:1 11631:1 11633:1 11636:2 11645:1 11649:1 11664:5 11684:5 11690:1 11693:1 11711:1 11716:1 11734:1 11772:2 11789:1 11824:1 11826:1 11852:1 11865:3 11871:1 11916:1 11931:3 11936:3 11952:1 11973:3 11990:1 11997:1 12004:1 12109:1 12110:2 12111:3 12115:1 12132:1 12154:1 12165:2 12166:4 12172:1 12178:1 12184:2 12239:1 12250:1 12272:1 12276:1 12281:4 12302:1 12337:1 12345:1 12346:1 12349:2 12361:1 12362:1 12380:1 12398:1 12420:1 12458:1 12464:1 12472:1 12476:1 12477:1 12493:1 12508:1 12515:1 12526:2 12534:1 12608:5 12621:1 12633:1 12648:8 12658:1 12668:2 12671:4 12676:1 12681:1 12701:1 12733:2 12764:1 12769:1 12772:2 12789:1 12796:2 12797:1 12813:1 12831:1 12835:1 12837:1 12888:1 12914:1 12949:4 12984:1 12999:1 13045:5 13049:1 13066:1 13072:1 13076:4 13080:3 13087:1 13093:1 13094:5 13128:1 13142:1 13143:1 13144:1 13166:3 13206:1 13211:1 13213:1 13224:2 13231:1 13232:2 13233:1 13252:2 13275:1 13278:1 13282:1 13283:1 13301:1 13302:3 13306:1 13310:1 13320:1 13331:1 13341:1 13346:1 13364:1 13372:4 13376:1 13416:3 13420:1 13421:1 13454:1 13468:2 13557:1 13561:1 13599:2 13601:2 13606:4 13607:1 13610:1 13620:1 13628:1 13633:1 13654:1 13680:2 13691:2 13694:1 13697:1 13698:1 13723:1 13733:2 13745:1 13764:1 13779:2 13782:1 13788:2 13799:1 13827:3 13832:2 13833:1 13838:1 13847:1 13886:1 13895:1 13904:3 13931:5 13942:1 13974:1 13980:1 14006:1 14018:1 14029:1 14054:1 14076:5 14089:1 14107:3 14134:1 14140:1 14152:1 14161:1 14179:1 14180:1 14223:1 14235:1 14245:1 14255:1 14274:1 14284:1 14299:1 14312:1 14313:1 14317:2 14318:3 14324:1 14325:5 14335:1 14339:1 14340:1 14347:1 14358:1 14376:1 14385:1 14433:1 14434:1 14449:3 14482:2 14485:1 14489:2 14492:1 14498:2 14523:1 14533:3 14573:1 14591:2 14600:2 14623:1 14637:1 14647:4 14664:1 14674:1 14683:2 14701:1 14761:1 14775:1 14798:1 14820:3 14821:1 14823:1 14824:1 14837:1 14881:1 14883:1 14891:3 14893:1 14910:1 14916:1 14935:1 14936:3 14938:2 14961:2 14970:1 14984:1 14986:1 15000:1 15020:5 15022:1 15037:1 15117:1 15123:3 15125:1 15130:1 15134:1 15146:1 15158:1 15173:1 15177:1 15180:1 15207:1 15233:1 15245:1 15259:2 15301:2 15322:1 15332:5 15345:1 15385:2 15398:1 15403:1 15404:3 15414:2 15420:1 15431:1 15435:1 15453:2 15459:2 15471:1 15482:2 15509:1 15539:1 15556:1 15563:2 15578:5 15581:1 15590:1 15591:2 15598:1 15607:2 15614:2 15624:1 15625:2 15626:2 15637:1 15642:1 15644:1 15679:1 15687:1 15717:1 15745:4 15750:1 15757:1 15763:1 15785:2 15814:1 15831:5 15832:3 15835:1 15871:1 15879:3 15893:1 15896:1 15909:1 15911:2 15923:1 15967:1 15973:2 16014:1 16026:1 16029:11 16030:1 16048:2 16055:1 16095:2 16119:3 16122:1 16127:1 16150:1 16164:1 16172:1 16177:1 16190:1 16194:1 16196:1 16242:1 16289:1 16290:2 16338:1 16353:1 16363:1 16398:1 16400:1 16403:2 16475:1 16482:1 16488:1 16489:1 16505:1 16511:1 16527:1 16528:1 16546:1 16555:2 16575:1 16589:1 16597:1 16605:1 16639:1 16662:1 16666:2 16675:1 16685:2 16702:1 16708:1 16714:2 16716:2 16718:1 16738:1 16747:1 16758:1 16761:1 16776:1 16789:2 16802:1 16828:1 16840:1 16843:1 16844:4 16851:1 16867:1 16905:1 16908:1 16915:4 16929:1 16930:1 16942:1 16947:1 16966:3 16991:1 16995:1 17013:2 17046:1 17050:1 17053:1 17059:4 17067:1 17091:3 17106:1 17136:1 17138:1 17155:1 17156:2 17167:1 17172:1 17179:1 17186:1 17198:1 17199:6 17207:2 17210:1 17244:1 17251:1 17265:1 17270:2 17277:2 17346:1 17360:1 17363:2 17369:1 17374:2 17397:1 17401:1 17422:1 17445:1 17447:1 17448:2 17454:2 17455:1 17456:1 17463:2 17475:3 17476:2 17509:1 17522:4 17523:2 17558:1 17560:1 17585:1 17587:1 17592:5 17604:1 17631:1 17636:1 17644:2 17648:1 17652:1 17662:1 17665:2 17667:1 17670:1 17683:1 17692:1 17707:1 17721:1 17722:2 17747:1 17753:2 17767:6 17772:2 17781:17 17785:1 17787:1 17790:1 17794:1 17819:1 17822:1 17838:1 17852:1 17855:1 17860:1 17871:1 17873:1 17882:1 17886:1 17896:4 17907:1 17922:1 17931:4 17962:1 17967:1 17977:1 17979:1 17989:1 17994:1 17998:2 18007:3 18009:1 18019:1 18032:1 18056:1 18067:1 18080:1 18084:1 18120:1 18133:1 18167:1 18169:1 18170:1 18178:1 18212:1 18219:2 18220:1 18249:1 18315:4 18331:1 18348:1 18380:1 18381:1 18399:1 18417:3 18424:1 18444:1 18449:1 18461:1 18471:2 18476:2 18478:2 18481:1 18498:1 18504:3 18509:1 18516:1 18519:1330 18524:1 18538:1 18572:2 18573:1 18582:1 18608:1 18643:2 18648:1 18668:1 18690:1 18702:1 18708:2 18715:3 18720:1 18725:2 18727:1 18728:2 18748:1 18763:1 18802:5 18808:1 18810:1 18816:1 18842:15 18863:6 18904:1 18907:1 18920:1 18930:2 18938:1 18947:1 18968:1 18982:2 18991:2 19017:1 19033:1 19055:2 19061:1 19079:1 19089:1 19091:1 19113:1 19135:2 19140:1 19142:2 19176:1 19180:1 19187:1 19190:1 19192:1 19197:2 19202:1 19210:1 19218:1 19228:4 19235:1 19257:1 19271:2 19298:6 19314:1 19315:1 19335:5 19336:1 19350:1 19359:1 19370:1 19412:1 19420:1 19442:2 19475:1 19482:1 19494:1 19507:3 19508:1 19515:3 19516:2 19531:1 19549:1 19550:2 19551:1 19563:1 19566:1 19573:1 19600:1 19628:1 19634:1 19661:2 19674:1 19680:1 19708:2 19719:1 19720:1 19724:1 19735:1 19742:1 19745:1 19751:1 19752:1 19754:1 19767:1 19775:2 19778:1 19784:2 19794:1 19816:1 19818:1 19833:1 19839:2 19862:1 19876:2 19881:1 19904:1 19909:1 19918:1 19936:1 19949:3 19953:1 19964:1 19978:2 19992:1 19996:1 20003:1 20004:1 20017:1 20031:1 20032:1 20036:1 20037:1 20052:1 20061:1 20068:1 20079:1 20084:1 20086:1 20117:1 20118:2 20159:4 20187:1 20211:4 20212:2 20218:2 20226:1 20231:1 20237:1 20281:1 20283:1 20293:2 20299:1 20302:1 20404:3 20406:2 20420:1 20443:1 20453:1 20454:1 20455:3 20465:1 20468:2 20474:1 20525:1 20530:1 20531:2 20567:4 20577:1 20594:1 20599:1 20600:1 20643:1 20652:1 20656:1 20658:1 20671:1 20677:3 20683:1 20685:1 20692:1 20705:1 20710:1 20716:1 20722:2 20738:1 20747:3 20770:1 20780:2 20782:1 20797:1 20823:1 20846:1 20862:1 20900:1 20907:2 20918:1 20945:1 20948:2 20979:2 20985:1 20988:1 21010:1 21016:1 21019:1 21029:1 21049:1 21062:1 21075:1 21079:1 21080:1 21088:1 21100:1 21122:1 21137:2 21158:1 21169:1 21174:1 21196:1 21201:1 21265:1 21289:1 21320:1 21345:1 21358:1 21371:1 21372:1 21374:2 21380:1 21386:2 21387:1 21392:1 21397:1 21406:1 21415:1 21442:2 21444:1 21459:1 21472:3 21488:1 21490:1 21498:2 21499:1 21503:1 21504:1 21509:2 21518:1 21520:1 21523:1 21538:1 21544:1 21548:5 21568:1 21580:1 21616:1 21634:1 21654:2 21663:1 21670:1 21675:7 21684:1 21695:3 21712:1 21714:2 21715:1 21724:1 21750:1 21771:1 21778:1 21809:1 21812:3 21822:1 21824:1 21827:1 21829:1 21830:1 21846:1 21848:2 21867:2 21870:1 21885:1 21916:2 21941:1 21952:1 21967:1 21971:1 21994:1 22009:3 22016:2 22021:1 22052:1 22059:1 22061:1 22065:2 22077:1 22080:1 22096:2 22144:1 22150:1 22173:4 22174:3 22178:3 22189:2 22190:1 22212:1 22223:2 22230:1 22236:1 22248:1 22252:3 22257:1 22258:2 22265:1 22291:1 22293:1 22294:2 22295:1 22302:1 22315:1 22318:1 22329:1 22331:1 22332:1 22336:1 22337:1 22345:1 22357:1 22362:1 22391:1 22392:1 22406:2 22412:1 22414:17 22419:1 22420:1 22422:3 22426:1 22427:1 22453:2 22455:1 22464:1 22467:1 22493:1 22495:1 22496:1 22538:1 22579:1 22585:1 22593:3 22599:1 22616:2 22621:1 22672:1 22674:1 22676:2 22680:1 22687:1 22691:2 22692:1 22695:1 22699:2 22705:1 22721:2 22726:1 22736:1 22737:1 22758:1 22777:1 22784:1 22788:1 22808:1 22848:1 22896:1 22902:1 22919:1 22921:1 22947:1 22948:1 22962:2 22964:1 22980:2 22982:1 22998:3 23001:1 23021:1 23027:1 23033:2 23038:1 23099:1 23143:1 23148:1 23165:1 23184:3 23188:1 23195:1 23196:1 23207:1 23227:1 23234:1 23239:1 23241:1 23248:1 23254:1 23283:3 23297:1 23299:1 23302:1 23310:1 23326:1 23340:1 23343:1 23352:1 23361:7 23368:1 23394:2 23403:1 23408:1 23437:1 23441:1 23452:1 23494:1 23519:1 23520:1 23532:2 23559:2 23568:1 23581:1 23591:1 23592:1 23600:1 23616:3 23618:1 23620:1 23635:1 23651:1 23659:1 23720:1 23722:1 23732:2 23736:1 23744:1 23749:2 23774:1 23785:1 23798:1 23806:1 23814:1 23831:1 23832:1 23875:1 23884:4 23885:1 23896:3 23899:1 23910:1 23918:1 23919:1 23920:1 23939:1 23966:1 23973:1 23994:1 23995:1 23996:1 24025:1 24030:1 24044:1 24057:2 24058:3 24068:1 24093:1 24098:1 24101:1 24124:1 24146:1 24150:1 24159:2 24160:1 24162:4 24164:2 24166:4 24167:2 24172:1 24174:2 24175:1 24182:1 24183:2 24187:2 24193:1 24206:2 24233:1 24236:2 24237:1 24247:2 24263:3 24267:3 24291:1 24295:1 24297:1 24307:1 24321:1 24342:1 24345:1 24347:1 24362:1 24390:1 24401:1 24402:1 24419:2 24440:2 24448:1 24450:3 24453:1 24464:2 24508:1 24547:2 24548:1 24558:1 24571:1 24582:1 24584:1 24630:3 24645:1 24658:1 24665:2 24707:3 24746:1 24757:1 24763:1 24772:1 24780:1 24783:3 24791:1 24797:1 24810:1 24816:1 24822:3 24878:1 24899:1 24912:1 24915:1 24946:8 24955:1 24969:5 24990:1 24997:1 25005:1 25015:2 25028:1 25038:2 25046:1 25047:1 25089:1 25093:2 25099:2 25104:1 25109:1 25111:2 25114:4 25122:1 25137:1 25139:2 25141:7 25144:2 25145:1 25155:1 25162:1 25167:2 25170:1 25177:1 25182:1 25214:2 25225:2 25230:1 25247:2 25258:2 25259:1 25319:1 25320:1 25335:1 25342:1 25384:1 25386:1 25401:1 25410:1 25413:1 25416:2 25425:1 25436:3 25468:1 25473:1 25488:1 25515:1 25557:1 25561:1 25576:1 25600:1 25665:1 25676:1 25679:1 25680:1 25700:1 25708:1 25726:1 25729:1 25742:1 25757:1 25759:2 25796:2 25804:1 25812:1 25816:1 25838:3 25865:4 25880:1 25901:1 25903:1 25906:1 25916:1 25929:1 25930:1 25936:1 25953:1 25971:1 25988:1 25992:4 25994:1 26021:3 26033:1 26038:1 26040:1 26059:1 26093:3 26112:2 26114:1 26118:1 26123:1 26127:3 26133:1 26166:2 26170:1 26175:1 26182:1 26185:1 26221:2 26247:2 26249:1 26261:2 26267:1 26290:2 26300:1 26309:1 26316:1 26338:1 26339:1 26341:1 26352:1 26373:5 26392:2 26476:1 26478:1 26482:1 26499:1 26504:1 26547:1 26548:1 26559:1 26569:1 26574:1 26582:1 26588:1 26599:1 26624:1 26657:1 26667:1 26681:4 26700:2 26709:4 26721:1 26736:1 26737:1 26743:1 26759:1 26778:1 26787:1 26788:6 26817:1 26840:2 26844:1 26847:1 26856:7 26894:2 26933:1 26960:5 26965:1 26967:2 26981:1 26985:2 26988:1 26994:2 27003:1 27006:1 27016:1 27022:1 27033:1 27036:1 27057:1 27058:1 27069:2 27070:1 27079:1 27090:1 27103:1 27108:1 27113:1 27136:1 27141:2 27145:1 27147:1 27160:1 27187:1 27275:1 27279:1 27332:1 27342:1 27365:4 27368:1 27419:1 27465:1 27481:2 27560:1 27563:5 27575:1 27595:1 27597:1 27627:1 27636:1 27673:1 27675:1 27678:1 27687:17 27689:2 27692:5 27694:1 27695:2 27702:1 27724:5 27739:1 27777:1 27789:2 27804:1 27808:1 27820:1 27821:1 27832:1 27838:2 27859:9 27863:1 27867:1 27869:1 27874:1 27885:1 27887:1 27889:1 27893:1 27900:1 27906:1 27917:2 27923:1 27930:1 27934:1 27935:2 27948:1 27960:1 27964:1 27968:1 27969:1 28003:1 28011:1 28028:2 28030:1 28050:1 28051:1 28054:1 28068:2 28102:1 28126:1 28127:2 28128:1 28131:1 28174:1 28180:1 28183:1 28187:1 28193:1 28202:1 28204:1 28214:1 28218:1 28223:1 28292:1 28315:1 28319:1 28320:1 28341:1 28350:1 28356:1 28362:1 28363:1 28375:2 28380:1 28387:1 28397:4 28404:1 28411:2 28413:1 28419:1 28461:1 28469:1 28470:1 28506:2 28514:1 28520:1 28536:2 28541:1 28543:1 28551:1 28553:1 28560:2 28594:1 28596:1 28648:1 28665:1 28703:1 28709:1 28724:1 28734:1 28748:1 28761:2 28792:1 28801:5 28816:1 28818:1 28836:6 28849:4 28913:7 28914:2 28916:2 28919:1 28921:1 28924:3 28925:1 28941:1 28959:2 28961:3 28963:2 29003:1
9 11:1 14:1 34:1 37:2 60:1 83:1 89:1 90:1 109:1 113:1 117:1 125:1 143:1 150:1 153:3 162:1 170:4 189:5 214:1 245:1 270:1 282:2 293:1 295:16 303:1 316:1 318:2 333:1 348:1 381:1 403:2 424:3 432:1 442:1 444:1 515:1 523:1 563:2 564:1 569:1 572:3 590:2 596:2 598:1 600:1 613:2 626:1 634:1 638:1 643:1 650:1 674:1 678:1 685:1 692:1 702:1 716:1 734:1 748:1 752:1 767:1 770:1 788:1 795:1 804:1 805:1 807:2 808:1 830:3 832:3 842:1 843:1 855:1 856:9 860:1 867:1 871:1 877:2 879:6 885:1 892:1 893:1 899:1 905:3 924:1 925:1 963:1 974:3 989:1 996:2 998:1 1002:1 1019:1 1020:2 1027:1 1045:1 1059:1 1061:1 1078:1 1087:1 1089:1 1104:2 1112:1 1117:1 1143:1 1148:2 1160:1 1163:1 1179:1 1207:2 1232:1 1241:1 1244:1 1257:1 1276:1 1284:1 1287:1 1313:1 1330:1 1355:1 1374:2 1376:1 1397:2 1400:1 1401:5 1402:1 1419:1 1420:1 1422:1 1423:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1506:2 1507:1 1508:1 1516:1 1543:1 1547:1 1555:1 1560:1 1562:2 1564:3 1571:1 1596:2 1598:1 1617:1 1619:1 1627:3 1634:2 1659:1 1660:1 1678:1 1699:1 1743:1 1760:1 1762:1 1778:3 1789:1 1794:1 1802:1 1811:1 1819:1 1895:9 1903:1 1907:2 1923:1 1929:1 1935:1 1936:1 1952:1 1962:6 1963:1 1965:2 1993:1 1998:1 2006:1 2011:1 2082:1 2085:1 2089:3 2095:1 2100:1 2101:1 2108:1 2132:1 2154:1 2156:1 2159:1 2160:1 2165:1 2172:1 2174:2 2177:1 2178:2 2179:3 2181:1 2190:2 2207:1 2212:1 2216:1 2219:1 2220:2 2221:6 2223:4 2226:1 2227:2 2228:2 2232:1 2233:1 2234:1 2237:2 2247:1 2249:1 2251:6 2252:2 2253:6 2264:1 2268:1 2279:1 2297:1 2309:1 2315:1 2322:1 2336:1 2339:1 2343:1 2347:1 2358:2 2370:1 2374:1 2376:1 2392:1 2410:2 2421:4 2433:1 2445:1 2461:1 2465:1 2473:1 2485:5 2494:2 2500:1 2522:2 2536:1 2543:1 2552:3 2561:2 2563:1 2580:1 2609:2 2631:1 2648:1 2651:2 2656:1 2659:1 2667:2 2670:1 2675:1 2683:1 2688:1 2691:1 2704:1 2708:1 2712:1 2713:1 2723:1 2730:3 2756:1 2760:1 2761:2 2762:1 2766:5 2775:2 2780:1 2782:1 2810:1 2813:1 2816:1 2854:2 2867:10 2883:3 2888:1 2900:2 2909:1 2936:9 2961:1 2965:4 2968:1 2989:1 3023:1 3026:1 3074:1 3075:1 3105:1 3106:1 3188:1 3197:1 3205:1 3224:1 3231:1 3232:4 3243:1 3256:1 3266:1 3271:1 3293:1 3295:2 3338:1 3352:1 3357:7 3397:1 3407:1 3420:2 3424:1 3459:1 3471:1 3472:1 3475:2 3478:1 3488:1 3489:1 3495:1 3517:1 3528:1 3540:2 3548:1 3558:1 3570:1 3574:1 3577:1 3580:2 3582:2 3599:4 3605:1 3606:1 3607:2 3608:2 3615:1 3638:1 3639:3 3669:1 3680:1 3684:1 3688:3 3692:1 3695:2 3698:2 3712:1 3730:1 3737:1 3740:1 3742:4 3744:1 3746:2 3748:8 3763:1 3779:1 3783:3 3784:1 3788:1 3789:8 3790:1 3792:1 3813:3 3817:1 3822:1 3836:2 3838:1 3848:1 3851:1 3862:1 3866:1 3876:1 3883:1 3888:1 3895:1 3902:2 3904:1 3918:2 3919:1 3931:1 3939:1 3940:1 3943:1 3964:2 3970:1 3972:1 3977:2 3982:1 3988:2 3989:2 3998:4 3999:2 4005:1 4040:1 4054:2 4078:1 4085:2 4093:1 4113:1 4125:1 4129:1 4136:1 4190:1 4193:2 4201:1 4204:1 4219:1 4254:1 4270:2 4272:1 4282:1 4298:1 4348:1 4362:4 4378:1 4414:1 4416:1 4428:1 4434:1 4439:2 4455:1 4494:1 4528:1 4560:1 4562:1 4583:1 4613:1 4619:2 4626:3 4640:1 4646:1 4658:1 4691:1 4695:7 4724:1 4731:1 4742:1 4746:1 4759:1 4768:1 4773:5 4787:1 4815:1 4818:1 4851:1 4867:1 4876:14 4878:2 4881:1 4895:2 4903:1 4925:1 4928:5 4940:1 4963:1 4964:1 4980:1 4984:1 4985:4 5003:2 5005:4 5006:1 5008:1 5013:3 5017:1 5022:1 5028:2 5030:2 5033:1 5042:1 5045:2 5046:2 5064:1 5090:1 5131:2 5157:1 5176:1 5177:1 5184:2 5190:1 5195:2 5203:1 5219:1 5220:1 5237:1 5245:2 5249:1 5255:1 5280:1 5302:1 5306:1 5307:1 5328:1 5351:2 5358:4 5362:1 5369:2 5371:1 5386:1 5394:1 5404:2 5429:1 5434:1 5453:1 5480:1 5493:1 5501:1 5511:2 5524:1 5534:1 5535:1 5538:1 5540:2 5548:1 5564:1 5582:3 5584:1 5593:1 5615:2 5629:2 5639:1 5640:1 5663:3 5680:1 5681:2 5694:1 5701:2 5705:1 5720:4 5721:1 5728:1 5749:1 5773:1 5802:1 5812:1 5843:2 5850:1 5852:1 5877:1 5881:2 5898:1 5920:1 5942:1 5947:2 5949:1 5972:9 5987:4 5992:2 6000:1 6006:2 6007:1 6009:1 6017:1 6039:1 6040:1 6053:1 6056:1 6110:1 6130:1 6137:2 6138:1 6142:1 6150:1 6153:1 6176:5 6178:1 6192:1 6199:1 6220:1 6245:1 6247:1 6259:3 6263:1 6265:1 6270:1 6273:1 6274:1 6275:1 6276:3 6279:2 6282:2 6283:8 6284:3 6286:1 6316:1 6334:1 6379:3 6420:2 6435:1 6482:2 6493:1 6502:1 6507:1 6513:1 6531:1 6537:1 6542:1 6556:1 6558:1 6565:1 6598:1 6609:1 6613:1 6653:1 6654:1 6677:1 6679:2 6689:1 6699:5 6715:1 6722:1 6728:1 6741:1 6751:1 6757:1 6795:1 6810:2 6823:1 6851:1 6854:2 6855:2 6860:1 6866:1 6871:1 6885:3 6886:2 6906:1 6918:1 6919:2 6922:2 6932:1 6948:1 6987:1 6999:1 7049:1 7050:7 7052:1 7067:1 7074:2 7091:1 7097:1 7099:1 7124:1 7125:1 7169:1 7180:1 7198:2 7218:2 7234:1 7248:1 7263:3 7287:2 7290:1 7297:1 7311:1 7334:3 7346:1 7347:1 7367:2 7371:1 7382:1 7386:1 7407:2 7427:1 7463:1 7499:2 7518:1 7554:1 7555:9 7556:1 7570:1 7580:1 7582:2 7584:1 7603:2 7620:40 7622:1 7643:2 7644:9 7645:1 7648:1 7671:2 7696:1 7700:1 7710:1 7720:1 7725:2 7751:1 7755:1 7758:2 7826:2 7871:1 7878:1 7892:1 7897:2 7928:1 7931:1 7962:1 8004:1 8007:1 8032:1 8037:1 8043:2 8044:3 8045:1 8046:1 8062:1 8063:1 8107:1 8116:2 8124:1 8130:2 8136:1 8142:2 8154:1 8156:3 8180:2 8184:1 8186:1 8194:1 8236:1 8254:1 8270:1 8299:1 8301:2 8311:1 8319:1 8334:1 8336:1 8358:1 8367:1 8369:2 8376:3 8379:1 8383:3 8387:2 8394:1 8395:1 8405:1 8412:1 8422:1 8430:5 8438:1 8441:1 8449:1 8460:1 8468:1 8480:1 8490:1 8497:1 8500:2 8501:3 8503:2 8504:1 8505:2 8508:3 8510:5 8512:2 8513:1 8516:1 8543:2 8549:1 8550:3 8567:1 8571:1 8572:1 8575:2 8578:1 8582:1 8586:1 8604:1 8640:1 8655:1 8657:1 8679:1 8688:1 8710:1 8719:1 8728:1 8739:1 8756:2 8772:2 8779:1 8808:1 8810:1 8811:3 8815:2 8827:2 8833:1 8840:1 8846:1 8857:1 8914:1 8921:1 8929:1 8936:2 8950:4 8954:2 8971:1 8992:1 9001:1 9019:1 9022:1 9035:1 9040:1 9050:1 9057:1 9065:1 9068:1 9069:1 9077:3 9107:1 9115:2 9121:1 9128:1 9139:1 9142:1 9151:1 9162:1 9196:1 9200:1 9207:5 9209:1 9216:2 9219:1 9226:16 9246:2 9247:1 9261:1 9275:1 9305:1 9314:1 9319:1 9329:1 9338:2 9349:1 9360:2 9363:6 9365:1 9390:1 9421:1 9433:3 9490:1 9497:1 9528:1 9529:1 9537:1 9539:1 9558:1 9568:1 9569:2 9574:1 9582:1 9586:3 9594:1 9601:1 9608:1 9634:2 9652:1 9663:6 9676:1 9677:3 9687:2 9700:1 9704:1 9746:3 9789:1 9829:1 9847:4 9850:1 9856:1 9871:2 9877:1 9880:1 9883:2 9887:1 9898:3 9911:1 9913:1 9919:1 9928:1 9929:1 9932:1 9938:1 9939:1 9954:1 9956:1 9968:4 9987:1 9996:1 10019:1 10038:1 10065:1 10073:1 10094:1 10124:1 10125:1 10126:1 10135:1 10191:1 10234:1 10241:1 10266:1 10280:1 10302:1 10328:1 10329:1 10347:1 10351:2 10359:2 10370:1 10372:1 10436:1 10448:1 10478:2 10486:1 10488:1 10504:2 10507:2 10513:1 10521:1 10524:1 10526:1 10537:1 10539:1 10555:1 10557:1 10558:1 10564:1 10573:1 10582:2 10590:1 10592:2 10621:1 10641:1 10657:3 10665:4 10683:2 10686:9 10737:1 10740:1 10748:1 10783:1 10787:1 10824:1 10839:1 10857:1 10901:1 10903:3 10905:1 10909:2 10910:2 10921:2 10937:1 10943:1 10947:1 10953:1 10962:1 10989:6 10992:1 11010:2 11014:1 11016:1 11018:1 11062:1 11063:1 11071:1 11083:1 11094:1 11100:1 11106:1 11107:1 11118:1 11145:1 11147:1 11175:1 11177:1 11197:1 11203:4 11208:1 11230:1 11234:1 11248:1 11260:1 11268:2 11284:1 11285:1 11300:1 11301:1 11302:1 11308:1 11315:2 11317:1 11333:3 11341:1 11367:1 11370:6 11371:1 11400:1 11401:1 11430:1 11442:1 11444:1 11469:1 11476:1 11477:1 11481:1 11501:1 11506:1 11509:1 11514:1 11520:2 11526:2 11530:5 11547:1 11549:1 11550:4 11580:1 11587:1 11603:2 11609:1 11614:1 11615:2 11619:3 11622:1 11631:1 11633:1 11636:2 11645:1 11649:1 11664:5 11671:1 11684:5 11690:1 11693:1 11711:1 11716:1 11734:1 11772:2 11789:1 11824:1 11826:1 11852:1 11865:3 11871:1 11916:1 11931:3 11936:3 11952:1 11973:3 11990:1 11997:1 12004:1 12109:1 12110:2 12111:3 12115:1 12132:1 12154:1 12165:2 12166:4 12172:1 12178:1 12184:2 12239:1 12250:1 12272:1 12276:1 12281:4 12302:1 12337:1 12345:1 12346:1 12349:2 12361:1 12362:1 12380:2 12398:1 12405:1 12420:1 12431:1 12458:1 12464:1 12472:1 12476:1 12477:1 12493:1 12495:1 12508:1 12515:1 12526:2 12534:1 12608:5 12621:1 12633:1 12635:1 12648:8 12658:1 12668:2 12671:5 12676:1 12681:1 12701:1 12733:2 12764:1 12769:1 12772:2 12789:1 12796:2 12797:1 12813:1 12831:1 12835:1 12837:1 12888:1 12914:1 12949:4 12984:1 12999:1 13045:5 13049:1 13066:2 13072:1 13076:4 13080:3 13087:1 13093:1 13094:5 13128:1 13142:1 13143:1 13144:1 13166:3 13206:1 13211:1 13213:1 13224:2 13231:1 13232:2 13233:1 13252:2 13275:2 13278:1 13282:1 13283:1 13301:1 13302:3 13306:1 13310:1 13320:1 13331:1 13341:1 13346:1 13364:1 13372:4 13376:1 13416:3 13420:1 13421:2 13454:1 13468:2 13490:1 13524:1 13557:1 13561:1 13599:3 13601:2 13606:4 13607:1 13610:1 13620:1 13628:1 13633:1 13654:1 13680:2 13691:2 13694:1 13697:1 13698:1 13723:1 13733:2 13745:1 13764:1 13779:2 13782:1 13788:2 13799:1 13827:4 13832:3 13833:1 13838:1 13847:1 13886:1 13895:1 13904:3 13931:7 13942:1 13974:1 13980:1 14006:1 14018:1 14029:1 14054:1 14076:5 14089:1 14107:3 14134:1 14140:1 14152:1 14161:1 14179:1 14180:1 14223:1 14235:1 14245:1 14255:1 14274:2 14284:1 14297:1 14299:1 14312:1 14313:1 14317:2 14318:4 14324:1 14325:6 14335:1 14339:1 14340:1 14347:1 14358:1 14376:1 14385:1 14433:1 14434:1 14449:4 14482:2 14485:1 14489:2 14492:1 14498:2 14523:1 14533:3 14554:1 14573:1 14591:2 14600:2 14616:1 14623:1 14637:1 14647:4 14664:1 14674:1 14683:2 14701:1 14761:1 14775:1 14798:1 14820:3 14821:1 14823:1 14824:1 14837:1 14881:1 14883:1 14891:3 14893:1 14910:1 14916:1 14935:1 14936:3 14938:2 14961:2 14970:1 14984:1 14986:1 15000:1 15020:5 15022:1 15037:1 15117:1 15123:3 15125:1 15130:1 15134:1 15146:1 15158:1 15173:1 15177:1 15178:1 15180:1 15207:1 15233:1 15245:1 15259:2 15301:2 15322:1 15332:5 15345:1 15385:2 15398:1 15403:1 15404:4 15414:2 15420:1 15424:1 15431:1 15435:1 15453:2 15455:1 15459:2 15471:1 15482:2 15509:1 15539:1 15556:1 15563:2 15568:1 15578:5 15581:2 15590:1 15591:2 15598:1 15607:2 15614:2 15624:1 15625:2 15626:2 15637:1 15642:1 15644:1 15678:1 15679:1 15687:1 15717:1 15745:4 15750:1 15757:1 15763:1 15785:2 15814:1 15831:6 15832:3 15835:1 15871:1 15879:3 15893:1 15896:1 15909:1 15911:2 15923:1 15967:1 15973:2 16014:1 16026:1 16029:12 16030:1 16048:2 16055:1 16095:2 16119:3 16122:1 16127:1 16150:1 16164:1 16172:1 16177:1 16190:2 16194:1 16196:1 16242:1 16285:1 16289:1 16290:2 16338:1 16353:1 16363:1 16398:1 16400:1 16403:2 16475:1 16482:1 16488:1 16489:1 16505:1 16511:1 16527:1 16528:1 16546:1 16555:2 16575:1 16588:1 16589:1 16597:1 16605:1 16639:1 16662:1 16666:2 16675:1 16685:2 16702:1 16708:1 16714:3 16716:2 16718:1 16738:1 16747:1 16758:1 16761:1 16776:1 16789:2 16802:1 16828:1 16840:2 16843:1 16844:4 16851:1 16867:1 16874:1 16905:1 16908:1 16915:5 16929:1 16930:1 16942:1 16947:2 16966:4 16991:1 16995:1 17013:2 17046:1 17050:1 17053:1 17059:4 17067:1 17091:3 17092:1 17106:1 17136:1 17138:1 17155:2 17156:2 17167:1 17172:1 17179:1 17186:1 17198:1 17199:7 17207:2 17210:1 17244:1 17251:1 17265:1 17270:2 17277:2 17327:1 17346:1 17360:1 17363:2 17369:1 17374:2 17397:1 17401:1 17422:1 17445:1 17447:1 17448:2 17454:2 17455:1 17456:1 17463:2 17475:3 17476:2 17509:1 17522:4 17523:2 17558:1 17560:1 17585:1 17587:1 17592:5 17604:1 17631:1 17636:1 17644:2 17648:1 17652:1 17662:1 17665:3 17667:1 17669:1 17670:1 17683:1 17692:1 17707:1 17721:1 17722:2 17747:1 17753:2 17767:7 17772:2 17781:18 17785:1 17787:1 17790:1 17794:1 17819:1 17822:1 17838:1 17852:1 17855:1 17860:1 17871:1 17873:1 17882:1 17886:1 17896:4 17907:1 17922:1 17931:5 17962:1 17967:1 17977:1 17979:1 17989:1 17994:1 17998:2 18007:3 18009:1 18019:1 18032:1 18056:1 18067:1 18080:1 18084:1 18120:1 18133:1 18167:1 18169:1 18170:1 18178:1 18212:1 18219:2 18220:1 18249:2 18315:4 18331:1 18348:1 18380:2 18381:1 18399:2 18417:3 18424:1 18444:1 18449:1 18461:1 18471:2 18476:2 18478:2 18481:1 18498:1 18504:3 18509:1 18516:1 18519:1404 18524:1 18538:1 18572:2 18573:1 18582:1 18608:1 18643:2 18648:1 18668:1 18690:1 18702:1 18708:2 18715:3 18720:1 18725:2 18727:1 18728:2 18748:1 18763:1 18802:5 18808:1 18810:1 18816:1 18840:1 18842:16 18863:7 18904:1 18907:1 18920:1 18930:2 18938:1 18947:1 18968:1 18982:2 18991:2 19008:1 19017:1 19033:1 19055:2 19061:1 19079:1 19089:1 19091:1 19113:1 19135:2 19140:1 19142:2 19174:1 19176:1 19180:1 19187:1 19190:1 19192:1 19197:2 19202:1 19210:1 19218:1 19228:4 19235:1 19257:1 19271:2 19298:8 19314:1 19315:1 19335:5 19336:1 19350:1 19359:1 19370:1 19412:1 19420:2 19442:2 19475:1 19482:1 19494:1 19507:4 19508:1 19515:3 19516:2 19531:1 19549:1 19550:3 19551:1 19563:1 19566:1 19573:1 19600:1 19628:1 19634:1 19661:3 19674:1 19680:1 19708:2 19719:1 19720:1 19724:1 19735:2 19742:1 19745:1 19751:1 19752:1 19754:1 19767:1 19775:2 19778:1 19784:2 19794:1 19816:1 19818:1 19833:1 19839:2 19862:1 19876:2 19881:1 19904:2 19909:1 19918:1 19936:1 19948:1 19949:4 19953:1 19964:1 19978:2 19992:1 19996:1 20003:1 20004:1 20017:1 20031:1 20032:1 20036:1 20037:1 20052:1 20061:2 20068:1 20079:1 20084:1 20086:1 20117:1 20118:2 20137:1 20159:5 20187:1 20211:4 20212:2 20218:2 20226:1 20231:1 20237:1 20281:1 20283:1 20293:2 20299:1 20302:1 20404:3 20406:2 20420:1 20443:1 20453:1 20454:1 20455:4 20465:1 20468:2 20474:1 20525:1 20530:1 20531:2 20567:4 20577:1 20594:1 20599:1 20600:1 20643:1 20652:1 20656:1 20658:1 20671:1 20677:4 20683:1 20685:1 20692:1 20705:1 20710:1 20716:1 20722:2 20738:1 20747:3 20770:1 20780:2 20782:1 20797:1 20823:1 20846:1 20862:1 20900:1 20907:2 20918:1 20945:1 20948:2 20979:2 20985:1 20988:1 21010:1 21016:1 21019:1 21029:1 21049:1 21062:1 21075:1 21079:1 21080:1 21088:1 21091:1 21100:1 21122:1 21137:2 21158:1 21169:1 21174:1 21196:1 21201:1 21265:1 21289:1 21320:1 21345:1 21357:1 21358:2 21371:1 21372:1 21374:2 21380:1 21386:2 21387:1 21392:1 21397:1 21406:1 21415:1 21442:2 21444:1 21459:1 21472:3 21488:1 21490:1 21493:1 21498:2 21499:1 21503:1 21504:1 21509:2 21518:1 21520:1 21523:1 21528:1 21538:1 21544:1 21548:7 21568:1 21580:1 21616:1 21634:1 21654:2 21663:1 21670:1 21675:7 21684:1 21695:3 21712:1 21714:2 21715:1 21724:1 21750:1 21771:1 21778:1 21809:1 21812:3 21822:1 21824:1 21826:1 21827:1 21829:1 21830:1 21846:1 21848:2 21867:2 21870:1 21885:1 21916:2 21937:1 21941:1 21952:1 21967:1 21971:1 21994:1 22009:3 22016:3 22021:1 22052:1 22059:1 22061:1 22065:2 22077:1 22080:1 22096:2 22144:1 22150:1 22173:4 22174:3 22178:3 22189:2 22190:1 22212:1 22223:2 22230:1 22236:1 22248:1 22252:3 22257:1 22258:2 22265:1 22291:1 22293:1 22294:2 22295:1 22302:1 22315:1 22318:1 22329:1 22331:1 22332:1 22336:1 22337:1 22345:1 22357:1 22362:1 22368:1 22391:2 22392:1 22406:2 22412:1 22414:18 22419:1 22420:2 22422:3 22426:1 22427:1 22453:3 22455:1 22464:1 22467:1 22473:1 22493:1 22495:1 22496:1 22529:1 22538:1 22542:1 22579:1 22585:1 22593:3 22599:1 22616:2 22621:1 22672:1 22674:1 22676:2 22680:1 22687:1 22691:3 22692:1 22695:1 22699:2 22705:1 22721:2 22726:2 22736:1 22737:1 22758:1 22777:1 22784:1 22788:1 22808:1 22848:1 22896:1 22902:1 22919:1 22921:1 22931:1 22947:1 22948:1 22962:2 22964:1 22980:3 22982:1 22998:3 23001:1 23021:2 23027:1 23033:2 23038:1 23099:1 23143:1 23148:1 23165:1 23184:3 23188:1 23195:1 23196:1 23207:1 23227:1 23234:1 23239:1 23241:1 23248:1 23254:1 23275:1 23283:3 23297:1 23299:1 23302:1 23310:1 23326:1 23340:1 23343:1 23352:1 23361:8 23368:1 23394:2 23403:1 23408:1 23437:1 23441:1 23452:1 23494:1 23519:1 23520:1 23532:2 23559:2 23568:1 23581:1 23591:1 23592:1 23600:1 23616:3 23618:1 23620:1 23635:1 23651:1 23659:2 23720:1 23722:1 23732:2 23736:1 23744:1 23749:2 23774:1 23785:1 23798:1 23806:1 23814:1 23831:1 23832:1 23875:1 23884:4 23885:1 23896:3 23899:1 23910:1 23918:2 23919:1 23920:1 23939:1 23966:1 23973:1 23994:2 23995:1 23996:1 24025:1 24030:1 24044:1 24052:1 24057:2 24058:3 24068:1 24093:1 24098:1 24101:1 24124:1 24146:1 24150:1 24159:2 24160:1 24162:5 24164:2 24166:4 24167:2 24172:2 24174:2 24175:1 24182:1 24183:2 24187:2 24193:1 24206:2 24233:1 24236:2 24237:1 24247:2 24263:3 24267:3 24291:1 24295:1 24297:1 24307:1 24321:1 24342:1 24345:1 24347:1 24362:1 24390:1 24401:1 24402:1 24419:3 24440:2 24448:1 24450:3 24453:1 24464:2 24508:1 24547:2 24548:1 24558:1 24571:1 24582:1 24584:1 24630:3 24645:1 24658:1 24665:2 24707:3 24746:1 24757:1 24763:1 24772:1 24780:1 24783:3 24791:1 24797:1 24810:1 24816:1 24822:3 24878:1 24899:1 24912:1 24915:2 24946:8 24955:1 24969:6 24990:1 24997:1 25005:1 25015:2 25028:1 25038:2 25046:1 25047:1 25089:1 25093:2 25099:2 25104:1 25109:1 25111:2 25114:4 25122:1 25137:1 25139:2 25141:7 25144:2 25145:1 25155:1 25162:1 25167:2 25170:1 25177:1 25182:1 25214:2 25219:1 25225:2 25230:1 25247:3 25258:2 25259:1 25319:1 25320:1 25335:1 25342:1 25356:1 25384:1 25386:1 25401:1 25410:1 25413:1 25416:2 25425:1 25436:3 25468:1 25473:1 25488:1 25515:1 25557:1 25561:1 25576:1 25600:1 25665:1 25676:1 25679:1 25680:1 25700:1 25701:1 25708:1 25718:1 25726:1 25729:1 25742:1 25757:1 25759:2 25796:2 25804:1 25812:1 25816:1 25835:1 25838:4 25865:4 25880:1 25901:1 25903:1 25906:1 25916:1 25929:1 25930:1 25936:1 25953:1 25971:1 25988:1 25992:4 25994:1 26021:3 26033:1 26038:1 26040:1 26059:1 26087:1 26093:3 26112:2 26114:1 26118:1 26123:1 26127:3 26128:1 26133:1 26166:2 26170:1 26175:1 26182:1 26185:1 26221:2 26247:2 26249:1 26261:2 26267:1 26290:2 26300:1 26309:1 26316:1 26338:1 26339:1 26341:1 26352:1 26368:1 26373:5 26392:2 26476:1 26478:1 26482:1 26499:1 26504:1 26547:1 26548:1 26551:1 26559:1 26569:1 26574:1 26582:1 26588:1 26599:1 26624:1 26641:1 26657:1 26667:1 26681:4 26700:2 26709:4 26721:1 26736:1 26737:1 26743:1 26759:1 26778:1 26787:1 26788:7 26817:1 26840:2 26844:1 26847:1 26848:1 26856:8 26894:3 26933:1 26960:5 26965:1 26967:2 26981:1 26985:2 26988:1 26994:2 27003:1 27006:1 27016:1 27022:1 27033:1 27036:1 27057:1 27058:1 27069:2 27070:1 27079:1 27090:1 27103:1 27108:1 27113:1 27136:1 27141:2 27145:1 27147:1 27160:1 27187:1 27275:1 27279:1 27330:1 27332:1 27342:1 27365:4 27368:1 27385:1 27412:1 27419:1 27465:1 27481:2 27536:1 27549:1 27560:1 27563:5 27575:1 27595:1 27597:1 27627:1 27636:1 27673:1 27675:1 27678:1 27687:18 27689:2 27692:5 27694:1 27695:2 27702:1 27724:6 27739:1 27777:1 27789:2 27804:1 27808:1 27820:1 27821:1 27832:1 27838:2 27859:9 27863:2 27867:1 27869:1 27874:1 27885:1 27887:1 27889:1 27893:1 27900:1 27906:1 27917:2 27923:1 27930:1 27934:1 27935:2 27948:1 27960:1 27964:1 27968:1 27969:1 28003:1 28011:1 28028:2 28030:1 28050:1 28051:1 28054:1 28068:2 28102:1 28126:1 28127:2 28128:1 28131:1 28174:1 28180:1 28183:1 28187:1 28193:1 28202:1 28204:1 28214:1 28218:1 28223:1 28292:1 28315:1 28319:1 28320:1 28341:1 28350:1 28356:1 28362:1 28363:1 28373:1 28375:2 28380:1 28387:1 28397:5 28404:1 28411:2 28413:1 28419:1 28461:1 28469:1 28470:1 28506:2 28514:1 28520:1 28536:2 28541:1 28543:2 28551:1 28553:1 28560:2 28594:1 28596:1 28648:1 28665:1 28685:1 28703:1 28709:1 28724:1 28734:1 28748:1 28761:2 28792:1 28801:5 28816:1 28818:1 28836:6 28849:4 28913:7 28914:2 28916:2 28919:1 28921:1 28924:3 28925:1 28941:1 28959:2 28961:3 28963:3 29003:1
9 11:1 14:1 34:1 37:2 60:1 65:1 83:1 89:1 90:1 109:1 113:1 117:1 125:1 143:1 150:1 153:3 162:1 170:4 189:5 214:1 245:1 270:1 282:2 293:1 295:16 303:1 316:1 318:3 333:1 348:1 363:1 381:1 403:2 424:3 432:1 442:1 444:1 515:1 523:1 563:2 564:1 569:1 572:3 590:2 596:2 598:1 600:1 613:2 626:1 634:1 638:1 643:1 650:1 674:1 678:1 685:1 692:1 702:1 716:1 734:1 748:1 752:1 767:1 770:1 788:1 795:1 804:1 805:1 807:2 808:1 830:3 832:3 842:1 843:1 855:1 856:10 860:1 867:1 871:1 877:2 879:6 885:1 892:1 893:1 899:1 905:3 924:1 925:1 963:1 974:3 989:1 996:2 998:1 1002:1 1019:1 1020:2 1027:1 1045:1 1059:1 1061:1 1078:1 1087:1 1089:1 1104:2 1112:1 1117:1 1136:1 1143:1 1148:3 1160:1 1163:1 1179:1 1207:2 1232:1 1241:1 1244:1 1257:1 1262:1 1276:1 1284:1 1287:1 1313:1 1330:1 1355:1 1374:2 1376:1 1397:2 1400:1 1401:5 1402:1 1419:1 1420:1 1422:1 1423:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1506:2 1507:1 1508:1 1516:1 1543:1 1547:1 1555:1 1560:1 1562:2 1564:3 1571:1 1596:3 1598:1 1617:1 1619:2 1627:3 1634:2 1659:1 1660:1 1678:1 1699:1 1743:1 1760:1 1762:1 1778:3 1789:1 1794:1 1802:1 1811:1 1819:1 1895:9 1903:1 1907:2 1923:1 1929:1 1935:1 1936:1 1952:1 1962:6 1963:1 1965:2 1993:1 1998:1 2006:1 2011:3 2082:1 2085:1 2089:3 2095:1 2100:1 2101:1 2108:1 2132:1 2154:1 2156:1 2159:2 2160:1 2165:1 2172:1 2174:2 2177:1 2178:2 2179:4 2181:1 2190:2 2207:1 2212:1 2216:1 2219:1 2220:2 2221:6 2223:4 2226:1 2227:2 2228:2 2232:1 2233:1 2234:1 2237:2 2239:1 2245:1 2247:1 2249:1 2251:6 2252:2 2253:6 2264:1 2268:1 2279:1 2297:1 2309:1 2315:1 2322:1 2336:1 2339:1 2343:1 2347:1 2358:2 2370:1 2374:1 2376:1 2392:1 2410:2 2421:5 2433:1 2445:1 2461:1 2465:1 2473:1 2485:5 2494:2 2500:1 2522:2 2536:1 2543:2 2552:3 2561:2 2563:1 2570:1 2580:1 2609:2 2631:1 2648:1 2651:2 2656:1 2659:1 2667:2 2670:1 2672:1 2675:1 2683:1 2688:1 2691:1 2704:1 2708:1 2712:1 2713:1 2723:1 2730:3 2756:1 2760:1 2761:2 2762:1 2766:5 2775:2 2780:1 2782:1 2810:1 2813:1 2816:1 2854:2 2867:13 2883:4 2888:1 2900:2 2909:1 2936:9 2961:1 2965:4 2968:1 2989:1 3023:1 3026:1 3074:2 3075:1 3089:1 3105:1 3106:1 3166:1 3188:1 3197:1 3205:1 3224:1 3231:1 3232:4 3243:1 3256:1 3266:1 3271:1 3293:1 3295:3 3338:1 3352:1 3357:8 3397:1 3407:1 3420:2 3424:1 3459:1 3471:1 3472:1 3475:2 3478:1 3488:1 3489:1 3495:1 3517:1 3528:1 3540:2 3548:1 3558:1 3570:1 3574:1 3577:1 3580:2 3582:3 3599:4 3605:1 3606:1 3607:2 3608:2 3615:1 3634:1 3638:1 3639:3 3647:1 3669:1 3680:1 3684:1 3687:1 3688:3 3692:1 3695:2 3698:2 3712:1 3730:1 3737:1 3740:1 3742:4 3744:1 3746:2 3748:8 3763:1 3779:1 3783:3 3784:1 3788:2 3789:9 3790:1 3792:1 3813:4 3817:1 3822:1 3836:2 3838:1 3848:1 3851:1 3862:1 3866:1 3876:1 3883:1 3888:1 3895:1 3902:2 3904:1 3918:2 3919:1 3931:1 3939:1 3940:1 3943:1 3964:2 3970:1 3972:1 3977:2 3982:1 3988:2 3989:2 3998:4 3999:2 4005:1 4033:1 4040:1 4054:2 4078:1 4085:2 4093:1 4113:1 4125:1 4129:1 4136:1 4173:1 4190:1 4193:2 4201:1 4204:1 4219:1 4254:1 4270:2 4272:1 4282:1 4298:1 4348:1 4362:5 4378:1 4414:1 4416:1 4428:1 4434:1 4439:2 4455:1 4494:1 4528:1 4560:1 4562:1 4583:1 4613:1 4619:2 4626:3 4640:1 4646:1 4658:1 4691:1 4695:7 4724:1 4731:1 4742:1 4746:1 4759:1 4768:1 4773:6 4776:1 4787:1 4815:1 4818:1 4851:1 4867:1 4876:15 4878:2 4881:1 4895:2 4903:1 4925:1 4928:5 4940:1 4963:1 4964:1 4980:1 4984:1 4985:4 5003:2 5005:4 5006:1 5008:1 5013:3 5015:1 5017:1 5022:1 5026:1 5028:2 5030:2 5033:1 5042:1 5045:2 5046:2 5064:1 5090:1 5131:2 5157:1 5176:1 5177:1 5184:2 5190:1 5195:2 5203:2 5219:1 5220:1 5237:1 5245:2 5249:1 5255:1 5280:1 5302:1 5306:1 5307:1 5328:1 5351:2 5358:4 5362:1 5369:2 5371:2 5386:1 5394:1 5404:2 5423:1 5429:1 5434:2 5453:1 5480:1 5493:1 5501:1 5511:2 5524:1 5534:1 5535:1 5538:1 5540:2 5548:1 5564:1 5582:3 5584:1 5593:1 5615:2 5629:2 5639:1 5640:1 5663:3 5680:1 5681:2 5694:1 5701:2 5705:1 5720:4 5721:1 5728:1 5749:1 5773:1 5802:1 5812:1 5843:2 5850:1 5852:1 5877:1 5881:2 5898:1 5920:1 5942:1 5947:2 5949:1 5972:9 5987:4 5992:2 6000:1 6006:2 6007:1 6009:1 6017:1 6039:1 6040:1 6053:1 6056:1 6110:1 6130:1 6137:2 6138:1 6142:1 6150:1 6153:1 6176:5 6178:1 6192:1 6197:1 6199:1 6220:1 6245:1 6247:1 6259:3 6262:1 6263:1 6265:1 6270:1 6273:1 6274:1 6275:1 6276:3 6279:2 6282:2 6283:8 6284:3 6286:1 6316:1 6334:1 6379:3 6420:2 6435:1 6482:2 6493:1 6502:1 6507:1 6513:1 6531:1 6537:1 6542:1 6556:1 6558:1 6565:1 6598:1 6609:1 6613:1 6652:1 6653:1 6654:2 6677:1 6679:2 6689:1 6699:5 6715:2 6722:1 6728:1 6741:1 6751:1 6757:1 6795:1 6810:2 6823:1 6851:1 6854:2 6855:2 6860:2 6866:1 6871:1 6885:3 6886:2 6906:1 6918:1 6919:2 6922:2 6932:1 6948:1 6987:1 6999:1 7049:1 7050:7 7052:1 7067:1 7074:2 7091:1 7097:1 7099:1 7124:1 7125:1 7169:1 7180:1 7198:2 7218:2 7234:1 7248:1 7263:3 7287:2 7290:1 7297:1 7303:1 7311:1 7334:3 7346:3 7347:1 7367:2 7371:1 7382:1 7383:1 7386:1 7407:2 7427:1 7463:1 7499:2 7518:1 7554:1 7555:9 7556:1 7570:1 7580:1 7582:2 7584:1 7603:3 7604:1 7620:42 7622:1 7643:2 7644:9 7645:1 7648:1 7671:2 7696:1 7700:1 7710:1 7720:1 7725:2 7751:1 7755:1 7758:2 7786:1 7826:2 7851:1 7871:1 7878:1 7892:1 7897:2 7928:1 7931:1 7962:1 8004:1 8007:1 8032:1 8037:1 8043:2 8044:3 8045:1 8046:1 8062:1 8063:1 8107:1 8116:2 8124:1 8130:2 8136:1 8142:2 8154:1 8156:3 8180:2 8184:1 8186:1 8194:1 8236:1 8254:1 8270:1 8299:1 8301:2 8311:2 8319:1 8334:1 8336:1 8358:1 8367:2 8369:2 8376:3 8379:1 8383:3 8387:2 8394:1 8395:3 8405:1 8412:1 8422:1 8430:5 8438:1 8441:1 8449:1 8460:1 8468:1 8480:1 8490:1 8497:1 8500:2 8501:3 8503:3 8504:1 8505:2 8508:3 8510:6 8512:2 8513:1 8516:1 8543:2 8549:1 8550:3 8567:2 8571:1 8572:1 8575:2 8578:1 8582:1 8586:2 8604:1 8640:2 8655:1 8657:1 8679:1 8688:1 8710:1 8719:1 8728:1 8739:1 8756:2 8772:2 8779:1 8808:1 8810:1 8811:3 8815:2 8827:2 8833:1 8840:1 8846:1 8857:1 8914:1 8921:1 8929:1 8936:2 8950:4 8954:2 8971:1 8992:1 9001:1 9019:1 9022:1 9035:1 9040:1 9050:1 9057:1 9065:1 9068:1 9069:1 9077:3 9107:1 9115:2 9121:1 9128:1 9139:1 9142:1 9151:1 9162:1 9196:1 9200:1 9207:5 9209:1 9216:2 9219:1 9226:16 9246:2 9247:1 9261:1 9275:1 9305:1 9314:1 9319:1 9329:1 9338:2 9349:1 9360:2 9363:6 9365:1 9390:1 9421:1 9433:3 9490:1 9497:1 9528:1 9529:1 9537:1 9539:1 9558:1 9568:1 9569:2 9574:1 9582:1 9586:3 9594:1 9601:1 9608:2 9634:2 9652:1 9663:6 9676:1 9677:3 9687:2 9700:1 9704:1 9746:3 9789:1 9829:1 9847:4 9850:1 9856:1 9862:1 9871:2 9877:1 9880:1 9883:2 9887:1 9898:3 9911:1 9913:1 9919:1 9928:1 9929:1 9932:1 9938:1 9939:1 9954:1 9956:1 9968:4 9987:1 9996:1 10019:1 10037:1 10038:1 10065:1 10073:1 10094:1 10124:1 10125:1 10126:1 10135:1 10191:1 10234:1 10241:1 10266:1 10280:1 10302:1 10328:1 10329:1 10347:2 10351:2 10359:2 10370:1 10372:1 10405:1 10436:1 10448:1 10478:2 10486:1 10488:1 10504:2 10507:2 10513:2 10521:1 10523:1 10524:1 10526:1 10537:1 10539:2 10555:2 10557:3 10558:1 10564:1 10573:1 10582:2 10590:1 10592:2 10621:1 10641:1 10657:5 10665:4 10683:2 10686:9 10737:1 10740:1 10748:1 10783:2 10787:1 10824:1 10839:1 10857:1 10901:1 10903:3 10905:2 10909:2 10910:2 10921:2 10937:1 10943:1 10947:1 10953:1 10962:1 10989:6 10992:1 11010:2 11014:1 11016:1 11018:1 11062:1 11063:1 11066:1 11071:1 11083:1 11094:1 11100:1 11106:1 11107:1 11118:1 11145:1 11147:1 11175:1 11177:1 11197:1 11203:4 11208:1 11230:1 11234:1 11248:1 11260:1 11268:2 11284:1 11285:1 11300:2 11301:1 11302:1 11308:1 11315:2 11317:1 11333:3 11341:1 11367:1 11370:6 11371:1 11400:1 11401:1 11407:1 11430:1 11442:1 11444:2 11469:1 11476:1 11477:1 11481:1 11501:1 11506:1 11509:1 11514:1 11520:2 11526:2 11530:6 11547:1 11549:1 11550:5 11580:1 11587:1 11603:2 11609:1 11614:1 11615:2 11619:3 11622:1 11631:1 11632:1 11633:1 11636:2 11641:1 11645:1 11649:1 11664:5 11671:1 11684:6 11690:1 11693:1 11711:1 11716:1 11734:1 11772:2 11789:1 11824:1 11826:1 11852:1 11865:3 11871:1 11916:1 11931:3 11936:3 11952:1 11973:3 11990:1 11997:1 12004:1 12107:1 12109:1 12110:2 12111:3 12115:1 12125:1 12132:1 12154:1 12156:1 12165:2 12166:4 12172:2 12178:1 12184:2 12239:1 12250:1 12272:1 12276:1 12281:4 12302:1 12323:1 12337:1 12345:1 12346:1 12349:2 12361:1 12362:1 12380:2 12398:1 12405:1 12420:1 12431:1 12458:1 12464:1 12472:1 12476:1 12477:2 12493:1 12495:1 12508:1 12515:1 12526:2 12534:1 12608:6 12621:1 12633:1 12635:1 12648:9 12658:1 12668:2 12671:5 12676:1 12681:1 12701:1 12733:2 12764:1 12769:1 12772:2 12789:1 12796:2 12797:1 12813:1 12827:2 12831:1 12835:1 12837:1 12888:1 12914:1 12949:5 12984:1 12999:1 13045:6 13049:1 13066:2 13072:1 13076:4 13080:3 13087:1 13093:1 13094:5 13128:1 13142:1 13143:1 13144:1 13166:3 13206:1 13211:1 13213:1 13224:2 13231:1 13232:2 13233:1 13252:2 13275:2 13278:1 13282:1 13283:1 13301:1 13302:4 13306:1 13310:1 13320:2 13331:1 13341:1 13346:1 13364:1 13372:4 13376:1 13416:3 13420:1 13421:2 13454:1 13468:2 13490:1 13524:1 13557:1 13561:1 13599:3 13601:2 13606:4 13607:1 13610:1 13620:1 13628:1 13633:1 13654:2 13680:2 13691:2 13694:1 13697:1 13698:1 13723:1 13733:2 13745:1 13764:1 13779:2 13782:1 13788:2 13799:1 13827:5 13832:3 13833:1 13838:1 13847:1 13886:1 13895:1 13904:3 13931:8 13942:1 13974:1 13980:1 14006:1 14018:1 14029:1 14054:1 14076:6 14089:1 14107:3 14134:1 14140:1 14152:1 14161:1 14179:1 14180:1 14212:1 14223:1 14235:1 14245:1 14255:1 14274:2 14284:1 14297:1 14299:1 14312:1 14313:1 14317:2 14318:4 14324:1 14325:6 14335:2 14339:1 14340:1 14347:1 14358:1 14376:1 14385:1 14433:1 14434:1 14449:4 14482:2 14485:1 14489:2 14492:1 14498:2 14523:1 14533:3 14554:1 14573:1 14591:2 14600:2 14616:2 14623:1 14637:1 14647:4 14664:1 14674:1 14683:2 14701:1 14761:1 14775:1 14798:1 14820:3 14821:1 14823:1 14824:1 14837:1 14881:1 14883:1 14891:3 14893:1 14910:1 14916:1 14935:1 14936:3 14938:2 14961:2 14970:1 14984:1 14986:1 15000:1 15020:6 15022:1 15037:1 15085:1 15117:1 15123:3 15125:1 15130:1 15134:1 15146:1 15158:1 15173:1 15177:1 15178:1 15180:1 15207:1 15217:1 15233:1 15245:1 15259:2 15301:2 15322:1 15332:5 15345:1 15385:2 15398:1 15403:1 15404:4 15414:2 15420:1 15424:1 15431:1 15435:1 15436:1 15440:1 15453:2 15455:1 15459:2 15471:1 15482:2 15509:1 15539:1 15556:1 15563:2 15568:1 15578:5 15581:2 15590:1 15591:2 15598:1 15607:2 15614:2 15624:1 15625:3 15626:2 15637:1 15642:1 15644:1 15678:1 15679:1 15687:1 15717:1 15745:5 15750:1 15757:1 15763:1 15785:2 15814:1 15831:6 15832:3 15835:1 15871:1 15879:3 15893:1 15896:1 15909:2 15911:2 15923:1 15957:1 15967:1 15973:2 16014:1 16026:1 16029:13 16030:1 16048:2 16055:1 16095:2 16119:3 16122:1 16127:1 16150:1 16164:1 16172:1 16177:1 16190:2 16194:1 16196:1 16242:2 16285:2 16289:1 16290:2 16338:1 16353:1 16363:1 16398:1 16400:1 16403:2 16475:1 16482:1 16488:1 16489:1 16505:1 16511:1 16527:1 16528:1 16546:1 16555:2 16575:1 16588:1 16589:1 16597:1 16605:1 16614:1 16639:1 16662:1 16666:2 16675:1 16685:2 16702:1 16708:1 16714:3 16716:2 16718:1 16738:1 16747:1 16758:1 16761:1 16776:1 16789:2 16802:1 16828:1 16840:2 16843:1 16844:4 16851:1 16867:1 16874:1 16905:1 16908:1 16915:6 16929:1 16930:1 16939:1 16942:1 16947:2 16966:4 16991:1 16995:2 17013:2 17046:1 17050:1 17053:1 17059:4 17067:1 17091:3 17092:1 17106:1 17136:1 17138:1 17155:2 17156:2 17167:1 17172:1 17179:1 17186:1 17198:1 17199:7 17200:1 17207:2 17210:1 17244:1 17251:1 17265:1 17270:2 17277:2 17327:1 17346:1 17360:1 17363:3 17369:1 17374:2 17397:1 17401:1 17422:1 17445:1 17447:1 17448:2 17454:2 17455:1 17456:1 17463:2 17475:3 17476:2 17509:1 17522:4 17523:2 17558:1 17560:1 17585:1 17587:1 17592:5 17604:1 17631:1 17636:1 17644:2 17647:1 17648:1 17652:1 17662:1 17665:4 17667:1 17669:1 17670:1 17683:1 17692:1 17707:1 17721:1 17722:3 17747:1 17753:2 17767:7 17772:3 17781:19 17785:1 17787:1 17790:1 17794:1 17812:1 17819:1 17822:1 17838:1 17852:1 17855:1 17860:1 17871:1 17873:1 17875:1 17882:1 17886:1 17896:4 17907:1 17922:1 17931:5 17962:1 17967:1 17977:1 17979:1 17989:1 17994:1 17998:2 18007:3 18009:1 18011:1 18019:1 18032:1 18056:1 18067:1 18080:1 18084:1 18120:1 18133:1 18167:1 18169:1 18170:1 18178:1 18212:1 18219:2 18220:1 18249:2 18315:4 18331:1 18348:1 18380:2 18381:1 18399:2 18417:3 18424:1 18444:1 18449:1 18461:1 18471:2 18476:2 18478:2 18481:1 18495:1 18498:1 18504:3 18509:1 18516:1 18519:1484 18524:1 18534:1 18538:1 18572:2 18573:1 18582:1 18608:1 18643:2 18648:1 18668:1 18690:1 18702:1 18708:2 18715:3 18720:1 18725:2 18727:1 18728:3 18748:1 18763:1 18802:6 18808:1 18810:1 18816:1 18840:1 18842:16 18861:1 18863:7 18904:1 18907:1 18920:1 18930:2 18938:1 18947:1 18968:1 18982:2 18991:2 19008:1 19017:1 19033:1 19055:2 19061:1 19079:1 19089:1 19091:1 19113:1 19135:2 19140:2 19142:2 19174:2 19176:3 19180:1 19187:1 19190:1 19192:1 19197:2 19202:1 19210:1 19218:1 19228:4 19235:1 19257:1 19271:2 19298:9 19314:1 19315:1 19335:5 19336:1 19350:1 19359:1 19370:1 19412:1 19420:2 19442:2 19475:1 19482:1 19494:1 19507:4 19508:1 19515:3 19516:2 19531:1 19549:1 19550:3 19551:1 19563:1 19566:1 19573:1 19600:1 19628:1 19634:1 19661:3 19674:1 19680:1 19708:2 19719:1 19720:1 19724:1 19735:2 19742:1 19745:1 19751:1 19752:1 19754:1 19767:1 19771:2 19775:3 19778:1 19784:2 19794:1 19816:1 19818:1 19833:1 19839:2 19862:1 19876:2 19881:1 19904:2 19909:1 19918:1 19936:1 19948:1 19949:4 19953:1 19964:1 19978:2 19992:1 19996:1 20003:1 20004:1 20017:1 20031:1 20032:1 20036:1 20037:1 20052:1 20061:2 20068:1 20079:1 20084:1 20086:1 20117:1 20118:2 20137:1 20159:5 20187:1 20211:4 20212:2 20218:2 20226:1 20231:1 20237:1 20281:1 20283:3 20293:2 20299:1 20302:1 20404:3 20406:2 20420:1 20443:1 20453:1 20454:1 20455:4 20465:1 20468:3 20474:1 20495:1 20525:1 20530:1 20531:2 20567:4 20577:1 20594:1 20599:1 20600:1 20643:1 20652:1 20656:1 20658:2 20671:1 20677:4 20679:1 20683:1 20685:1 20686:1 20692:1 20701:1 20705:1 20710:1 20716:1 20722:2 20730:1 20738:1 20747:4 20770:1 20780:2 20782:1 20797:1 20823:1 20846:1 20862:1 20900:1 20907:2 20918:1 20945:1 20948:2 20979:2 20985:1 20988:1 21010:1 21016:1 21019:1 21029:1 21049:1 21062:1 21075:1 21079:1 21080:1 21088:1 21091:1 21100:1 21107:1 21122:1 21137:2 21158:1 21169:1 21174:1 21196:1 21201:1 21265:1 21289:1 21313:1 21320:1 21345:1 21357:1 21358:2 21371:1 21372:1 21374:2 21380:1 21386:2 21387:2 21392:1 21397:1 21406:1 21415:1 21442:2 21444:1 21459:1 21472:4 21488:1 21490:1 21493:1 21498:2 21499:1 21503:1 21504:1 21509:2 21518:1 21520:1 21523:1 21528:1 21538:1 21544:1 21548:8 21568:1 21580:1 21616:1 21634:1 21654:2 21663:1 21670:1 21675:7 21684:1 21695:3 21712:1 21714:2 21715:1 21724:1 21750:1 21771:1 21778:1 21809:1 21812:3 21822:1 21824:1 21826:1 21827:1 21829:1 21830:1 21846:1 21848:2 21867:2 21870:1 21885:1 21916:2 21937:1 21941:1 21952:1 21967:1 21971:1 21994:1 22009:3 22016:3 22021:1 22025:1 22052:1 22059:1 22061:1 22065:2 22077:1 22080:1 22096:2 22135:1 22144:1 22150:1 22173:4 22174:3 22178:3 22180:1 22189:2 22190:1 22212:1 22223:2 22230:1 22236:1 22248:1 22252:3 22257:1 22258:2 22265:1 22277:2 22291:1 22293:1 22294:2 22295:1 22302:1 22315:1 22318:1 22329:1 22331:1 22332:1 22336:1 22337:1 22345:2 22357:1 22362:1 22368:1 22391:2 22392:1 22406:2 22412:1 22414:19 22419:1 22420:2 22422:3 22426:1 22427:1 22453:3 22455:1 22464:2 22467:1 22473:2 22493:1 22495:1 22496:1 22529:1 22538:1 22542:1 22579:1 22585:1 22593:3 22599:1 22616:2 22621:1 22672:1 22674:1 22676:2 22679:1 22680:1 22687:1 22691:3 22692:1 22695:1 22699:2 22705:1 22721:2 22726:2 22736:1 22737:1 22758:1 22777:1 22782:1 22784:1 22788:1 22808:1 22837:1 22848:1 22896:1 22902:1 22919:1 22921:1 22931:1 22947:1 22948:1 22962:2 22964:1 22980:3 22982:1 22998:3 23001:1 23021:2 23027:1 23033:2 23038:1 23099:1 23143:1 23148:1 23165:1 23184:3 23188:1 23195:1 23196:1 23207:1 23227:2 23234:1 23239:1 23241:1 23248:1 23254:1 23275:1 23283:3 23297:1 23299:1 23302:1 23310:1 23326:1 23340:1 23343:1 23349:1 23352:1 23361:9 23368:1 23394:2 23403:1 23408:1 23437:1 23441:1 23452:1 23494:1 23504:1 23519:1 23520:1 23532:2 23559:2 23568:1 23581:1 23591:1 23592:1 23600:1 23616:3 23618:1 23620:1 23635:1 23651:1 23659:2 23720:1 23722:1 23732:2 23736:1 23744:1 23749:2 23774:1 23785:1 23798:1 23806:1 23814:1 23831:1 23832:1 23875:2 23884:5 23885:1 23896:3 23899:1 23910:1 23918:2 23919:1 23920:1 23939:1 23966:1 23973:1 23994:2 23995:1 23996:1 24001:1 24025:1 24030:1 24044:1 24052:1 24057:2 24058:3 24068:1 24093:1 24098:1 24101:1 24124:1 24146:1 24150:1 24159:2 24160:1 24162:6 24164:2 24166:4 24167:2 24172:2 24174:2 24175:1 24182:1 24183:2 24187:2 24193:1 24206:2 24233:1 24236:2 24237:1 24247:2 24263:3 24267:3 24291:1 24295:1 24297:1 24307:2 24321:1 24342:1 24345:1 24347:1 24348:1 24362:1 24390:1 24401:1 24402:1 24419:3 24440:2 24448:1 24450:3 24453:1 24464:2 24508:1 24547:2 24548:1 24558:1 24571:1 24582:1 24584:1 24630:3 24645:1 24654:1 24658:1 24665:2 24707:3 24746:1 24757:1 24763:1 24772:1 24780:1 24783:3 24791:1 24797:1 24810:1 24816:1 24822:3 24878:1 24899:1 24912:1 24915:2 24946:9 24955:1 24969:6 24990:1 24997:1 25005:1 25015:2 25028:1 25038:2 25046:1 25047:1 25089:1 25093:2 25099:2 25104:1 25109:1 25111:2 25114:4 25122:1 25137:1 25139:2 25141:7 25144:2 25145:1 25155:1 25162:1 25167:2 25170:1 25177:1 25182:1 25214:2 25219:1 25225:2 25230:1 25247:3 25258:2 25259:1 25319:1 25320:1 25335:1 25342:1 25356:1 25384:1 25386:1 25401:1 25410:1 25413:1 25416:2 25425:1 25436:3 25465:1 25468:1 25473:1 25488:1 25515:1 25557:1 25561:1 25576:1 25600:1 25618:1 25665:1 25676:1 25679:2 25680:1 25691:1 25700:1 25701:1 25708:1 25718:1 25726:1 25729:1 25742:1 25757:1 25759:2 25796:2 25804:1 25812:1 25816:1 25835:1 25838:4 25865:4 25880:1 25901:1 25903:1 25906:1 25916:1 25929:1 25930:1 25936:1 25953:1 25971:1 25988:1 25992:4 25994:1 26021:3 26033:1 26038:1 26040:1 26059:1 26087:1 26093:4 26112:2 26114:1 26118:1 26123:1 26127:3 26128:1 26133:1 26166:2 26170:1 26175:1 26182:1 26185:1 26221:2 26247:2 26249:1 26261:2 26267:1 26290:2 26300:1 26309:1 26316:1 26338:1 26339:1 26341:1 26352:1 26368:2 26373:5 26392:2 26476:1 26478:1 26482:1 26499:1 26504:1 26547:1 26548:1 26551:1 26556:1 26559:1 26569:1 26574:1 26582:1 26588:1 26599:1 26621:1 26624:1 26641:1 26654:2 26657:1 26667:1 26681:4 26700:2 26709:4 26721:1 26736:1 26737:1 26743:1 26759:1 26772:1 26778:1 26787:1 26788:7 26817:1 26838:1 26840:2 26844:1 26847:1 26848:1 26856:9 26894:3 26933:1 26960:5 26965:1 26967:2 26981:1 26985:2 26988:1 26994:2 27003:1 27006:1 27016:1 27022:1 27033:1 27036:1 27057:1 27058:1 27069:2 27070:1 27079:1 27090:1 27103:1 27108:1 27113:1 27136:1 27141:2 27145:1 27147:1 27160:1 27187:1 27229:1 27275:1 27279:1 27330:1 27332:1 27342:1 27365:4 27368:1 27385:1 27412:1 27419:1 27465:1 27481:2 27536:2 27549:1 27560:1 27563:6 27575:1 27595:1 27597:1 27627:1 27636:1 27662:1 27673:1 27675:1 27678:1 27687:19 27689:2 27692:5 27694:1 27695:2 27702:1 27724:6 27739:1 27777:1 27789:2 27804:1 27808:1 27820:1 27821:1 27832:1 27838:2 27859:9 27863:2 27867:1 27869:1 27874:1 27885:1 27887:1 27889:1 27893:1 27900:1 27906:1 27909:1 27917:2 27923:1 27930:1 27934:1 27935:2 27948:1 27960:1 27964:1 27968:1 27969:1 28003:1 28011:1 28028:2 28030:1 28050:1 28051:1 28054:1 28068:2 28102:1 28126:1 28127:2 28128:1 28131:1 28174:1 28180:1 28183:1 28187:1 28193:1 28202:1 28204:1 28214:1 28218:1 28223:1 28292:1 28315:1 28319:1 28320:1 28341:1 28350:1 28356:1 28362:1 28363:1 28373:1 28375:2 28380:1 28387:1 28397:6 28404:1 28411:2 28413:1 28419:1 28461:1 28469:1 28470:1 28506:2 28514:1 28520:1 28536:2 28541:1 28543:2 28551:1 28553:1 28560:4 28594:1 28596:1 28648:1 28665:1 28685:2 28703:1 28709:1 28724:1 28734:1 28748:1 28761:2 28792:1 28801:5 28815:1 28816:1 28818:1 28836:6 28849:5 28867:1 28904:1 28913:7 28914:2 28916:2 28919:1 28921:1 28924:3 28925:1 28941:1 28959:2 28961:3 28963:3 29003:1
9 11:1 14:1 34:1 37:2 56:1 60:1 65:1 83:1 89:1 90:1 109:1 113:1 117:1 125:1 143:1 150:1 153:3 162:1 170:4 189:5 214:1 245:1 270:1 282:2 293:1 295:17 303:1 316:3 318:3 333:1 348:1 363:1 381:1 403:2 424:3 432:1 442:1 444:1 515:1 523:1 561:1 563:2 564:1 569:1 572:3 590:2 596:2 598:1 600:1 613:2 626:1 634:1 638:1 643:1 650:1 674:1 678:1 685:1 692:1 702:1 716:1 734:1 748:1 752:1 767:1 770:1 788:1 795:1 804:1 805:1 807:2 808:1 830:4 832:3 842:1 843:1 855:1 856:10 860:1 867:1 871:1 875:2 877:2 879:7 885:1 892:1 893:1 899:1 905:3 924:1 925:2 963:1 974:3 989:1 996:2 998:1 1002:1 1019:1 1020:2 1027:1 1045:1 1059:1 1061:1 1078:1 1087:1 1089:1 1104:2 1112:1 1117:1 1136:1 1143:1 1148:3 1160:1 1163:1 1179:1 1207:2 1232:1 1241:1 1244:1 1257:1 1262:1 1276:1 1284:1 1287:1 1313:1 1330:1 1355:1 1374:2 1376:1 1397:2 1400:1 1401:5 1402:1 1419:1 1420:1 1422:1 1423:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1506:2 1507:1 1508:1 1516:1 1543:1 1547:1 1555:1 1560:1 1562:2 1564:3 1571:1 1596:3 1598:1 1617:1 1619:2 1627:3 1634:2 1659:1 1660:1 1678:1 1699:1 1743:1 1760:1 1762:1 1778:3 1789:1 1794:1 1802:1 1811:1 1819:1 1895:9 1903:1 1907:2 1919:1 1923:1 1929:1 1935:1 1936:1 1952:1 1962:7 1963:1 1965:2 1993:1 1998:1 2006:2 2011:3 2082:1 2085:1 2089:3 2095:2 2100:1 2101:1 2108:1 2132:1 2154:1 2156:1 2159:2 2160:1 2165:1 2172:1 2174:3 2177:1 2178:2 2179:4 2181:1 2190:2 2207:1 2212:1 2216:2 2219:2 2220:2 2221:7 2223:4 2226:1 2227:2 2228:2 2232:1 2233:1 2234:1 2237:2 2239:1 2245:1 2247:1 2249:1 2251:6 2252:2 2253:6 2264:1 2268:1 2279:1 2297:1 2309:1 2315:1 2322:1 2336:1 2339:1 2343:1 2347:1 2358:2 2370:2 2374:1 2376:1 2392:1 2410:2 2421:5 2433:1 2445:1 2461:1 2465:1 2473:1 2485:5 2494:2 2500:1 2522:2 2536:1 2543:2 2552:3 2561:2 2563:1 2570:1 2580:2 2609:2 2631:1 2648:1 2651:2 2656:1 2659:1 2667:2 2670:1 2672:1 2675:1 2683:1 2688:1 2691:1 2704:1 2708:1 2712:1 2713:1 2723:1 2730:3 2756:1 2760:1 2761:2 2762:1 2766:5 2770:2 2775:2 2780:1 2782:1 2810:1 2813:1 2816:1 2854:2 2867:17 2883:4 2888:1 2900:2 2909:1 2931:1 2936:10 2961:1 2965:4 2968:1 2989:1 3023:1 3026:1 3074:2 3075:1 3089:1 3105:1 3106:1 3112:1 3166:1 3188:1 3197:1 3205:1 3224:1 3231:1 3232:4 3243:1 3248:1 3256:1 3266:1 3271:1 3293:1 3295:3 3338:1 3352:1 3357:8 3397:1 3407:1 3420:2 3424:1 3459:1 3471:1 3472:1 3475:2 3478:1 3488:1 3489:1 3495:1 3517:1 3528:1 3540:2 3548:1 3558:1 3570:1 3574:1 3577:1 3580:2 3582:3 3599:4 3604:2 3605:1 3606:1 3607:2 3608:2 3615:1 3634:1 3638:1 3639:3 3647:1 3669:1 3680:1 3684:1 3687:1 3688:3 3692:1 3695:2 3698:2 3712:1 3730:1 3737:1 3740:1 3742:4 3744:1 3746:2 3748:8 3763:1 3779:1 3783:3 3784:1 3788:2 3789:9 3790:1 3792:1 3813:4 3817:1 3822:1 3835:1 3836:2 3838:1 3848:1 3851:1 3862:1 3866:1 3876:1 3883:1 3888:1 3895:1 3902:3 3904:1 3918:2 3919:1 3931:1 3939:1 3940:1 3943:1 3964:3 3970:1 3972:1 3977:2 3982:1 3988:2 3989:2 3998:4 3999:2 4005:1 4019:1 4033:1 4040:1 4054:2 4078:1 4085:2 4093:1 4113:1 4125:1 4129:1 4136:1 4173:1 4190:1 4193:2 4201:1 4204:1 4219:1 4254:1 4270:2 4272:2 4282:1 4298:1 4314:2 4348:1 4362:5 4378:1 4414:1 4416:1 4428:1 4434:1 4439:2 4455:1 4491:1 4494:1 4528:1 4560:1 4562:1 4583:1 4613:1 4619:2 4626:3 4640:1 4646:1 4657:1 4658:1 4676:1 4691:1 4695:7 4724:1 4731:1 4742:1 4746:1 4759:1 4768:1 4773:6 4776:1 4787:1 4788:2 4815:1 4818:1 4851:1 4867:1 4876:15 4878:2 4881:1 4895:2 4903:1 4925:1 4928:7 4940:2 4963:1 4964:1 4980:1 4981:1 4984:1 4985:4 5003:3 5005:4 5006:1 5008:1 5013:3 5015:1 5017:1 5022:1 5026:1 5028:2 5030:2 5033:1 5041:1 5042:1 5045:2 5046:2 5064:1 5090:1 5131:2 5157:1 5176:1 5177:1 5184:2 5190:1 5195:2 5203:2 5219:1 5220:1 5237:1 5245:2 5249:1 5255:1 5280:1 5302:1 5306:1 5307:1 5328:1 5351:2 5358:4 5362:1 5365:1 5369:2 5371:2 5386:1 5394:1 5404:2 5423:1 5429:1 5434:2 5453:1 5480:1 5493:1 5501:1 5511:2 5524:2 5534:1 5535:2 5538:1 5540:2 5548:1 5556:1 5564:1 5582:3 5584:1 5593:1 5615:2 5629:2 5639:1 5640:1 5663:3 5680:1 5681:2 5694:1 5701:2 5705:1 5720:4 5721:1 5728:1 5744:1 5749:1 5773:1 5802:1 5812:1 5843:2 5850:1 5852:1 5877:1 5881:2 5898:1 5920:1 5942:1 5947:2 5949:1 5972:11 5987:4 5992:2 6000:1 6006:2 6007:1 6009:1 6017:1 6039:1 6040:1 6053:1 6056:1 6110:1 6130:1 6137:2 6138:1 6142:1 6150:1 6153:1 6176:5 6178:1 6182:1 6192:1 6197:1 6199:1 6220:1 6245:1 6247:1 6259:3 6262:1 6263:1 6265:1 6270:1 6273:1 6274:2 6275:1 6276:3 6279:2 6282:3 6283:8 6284:4 6286:1 6316:1 6334:1 6379:3 6420:2 6435:1 6482:2 6493:1 6502:1 6507:1 6513:1 6531:1 6537:1 6542:1 6556:1 6558:1 6565:1 6598:1 6609:1 6613:1 6652:1 6653:1 6654:2 6677:1 6679:2 6689:1 6699:5 6715:2 6722:2 6728:1 6741:1 6751:1 6757:1 6795:1 6810:2 6811:1 6823:2 6851:1 6854:2 6855:2 6860:2 6866:1 6871:1 6885:3 6886:2 6906:1 6914:1 6918:1 6919:2 6922:2 6932:1 6948:1 6987:1 6999:1 7049:1 7050:10 7052:1 7067:1 7073:2 7074:2 7091:1 7097:1 7099:1 7124:1 7125:1 7155:2 7169:1 7180:1 7198:2 7218:2 7234:1 7248:2 7263:3 7287:2 7288:1 7290:1 7297:1 7303:1 7311:1 7334:3 7346:3 7347:1 7367:2 7371:1 7382:1 7383:1 7386:2 7407:2 7427:1 7463:1 7499:2 7518:1 7554:1 7555:9 7556:1 7570:2 7580:2 7582:2 7584:1 7603:3 7604:1 7620:45 7622:1 7643:2 7644:10 7645:1 7648:1 7671:2 7696:1 7700:1 7710:1 7720:1 7725:2 7751:1 7755:1 7758:2 7786:1 7826:2 7851:1 7871:1 7878:1 7892:1 7897:2 7928:1 7931:1 7962:1 8004:1 8007:1 8032:1 8037:1 8043:2 8044:3 8045:1 8046:1 8062:1 8063:1 8107:1 8116:2 8124:1 8130:2 8136:1 8142:2 8154:1 8156:5 8180:2 8184:1 8186:1 8194:1 8236:1 8254:1 8270:1 8299:1 8301:2 8311:2 8319:1 8334:1 8336:1 8358:1 8367:2 8369:2 8376:3 8379:1 8383:3 8387:2 8394:1 8395:3 8405:1 8412:1 8422:1 8430:5 8438:1 8441:1 8449:1 8460:1 8468:1 8480:1 8490:1 8497:1 8500:2 8501:5 8503:3 8504:1 8505:2 8508:3 8510:6 8512:2 8513:1 8516:1 8526:2 8543:4 8549:1 8550:3 8567:2 8571:1 8572:2 8575:2 8578:1 8582:1 8586:2 8604:1 8640:2 8655:1 8657:1 8679:1 8688:1 8710:1 8719:1 8728:1 8739:1 8756:2 8762:1 8772:2 8779:1 8808:1 8810:1 8811:3 8815:2 8827:2 8833:1 8840:1 8846:1 8857:1 8914:1 8921:1 8929:1 8936:2 8950:4 8954:2 8971:1 8992:1 9001:1 9019:1 9022:1 9035:1 9040:1 9050:1 9057:1 9065:1 9068:1 9069:1 9077:3 9107:1 9115:2 9121:1 9128:1 9139:1 9142:1 9151:1 9162:1 9196:1 9200:1 9207:6 9209:1 9216:2 9219:1 9226:17 9230:1 9246:2 9247:1 9261:1 9275:1 9305:1 9314:1 9319:1 9329:1 9338:2 9349:1 9360:2 9363:6 9365:1 9390:1 9421:1 9433:3 9490:1 9497:1 9528:1 9529:1 9537:1 9539:1 9558:1 9568:1 9569:3 9574:1 9582:1 9586:3 9594:2 9601:1 9608:2 9634:2 9652:1 9663:6 9676:1 9677:3 9687:2 9689:1 9700:1 9704:1 9713:1 9746:3 9789:1 9829:1 9847:4 9850:1 9856:1 9862:1 9871:2 9877:1 9880:1 9883:2 9887:1 9890:1 9898:3 9911:1 9913:1 9919:1 9928:1 9929:1 9932:1 9938:1 9939:1 9954:1 9956:1 9968:4 9987:1 9996:1 10019:1 10037:1 10038:1 10065:1 10073:1 10094:1 10124:1 10125:1 10126:1 10135:2 10191:1 10200:1 10234:1 10241:1 10266:1 10280:1 10302:1 10328:1 10329:1 10347:2 10351:2 10359:2 10370:1 10372:1 10405:1 10436:1 10448:1 10478:2 10486:1 10488:1 10504:2 10507:2 10513:2 10521:1 10523:1 10524:1 10526:1 10537:1 10539:2 10555:2 10557:3 10558:1 10564:1 10573:1 10582:2 10583:2 10590:1 10592:2 10621:1 10641:1 10657:5 10665:4 10683:2 10686:10 10737:1 10740:1 10748:1 10783:2 10787:1 10824:1 10839:1 10857:1 10901:1 10903:3 10905:2 10909:2 10910:2 10921:2 10931:2 10937:1 10943:1 10947:1 10953:1 10962:1 10989:6 10992:1 11010:2 11014:1 11016:1 11018:1 11062:1 11063:1 11064:2 11066:1 11071:1 11083:1 11094:1 11100:1 11106:1 11107:1 11118:1 11145:1 11147:1 11175:1 11177:1 11197:1 11203:4 11208:1 11230:1 11234:1 11248:1 11260:1 11268:2 11278:2 11284:1 11285:1 11300:2 11301:1 11302:1 11308:1 11315:2 11317:1 11333:3 11341:1 11367:1 11370:8 11371:1 11400:1 11401:1 11407:1 11430:1 11442:1 11444:2 11469:1 11476:1 11477:1 11481:2 11501:1 11506:1 11509:2 11514:1 11520:2 11526:2 11530:6 11547:1 11549:1 11550:5 11580:1 11587:1 11603:2 11609:1 11614:1 11615:2 11619:3 11622:1 11631:1 11632:1 11633:1 11636:2 11641:1 11645:1 11649:1 11664:5 11671:1 11684:6 11690:1 11693:1 11711:1 11716:1 11734:1 11772:2 11789:1 11824:1 11826:1 11852:1 11865:3 11871:1 11916:1 11931:3 11936:3 11952:1 11973:3 11990:1 11997:1 12004:1 12107:1 12109:1 12110:2 12111:3 12115:1 12125:1 12132:1 12154:1 12156:1 12165:2 12166:4 12172:2 12178:1 12184:2 12239:1 12243:1 12250:1 12272:1 12276:2 12281:5 12302:1 12323:1 12337:1 12345:1 12346:1 12349:2 12361:1 12362:1 12376:2 12380:2 12398:1 12405:1 12420:1 12431:1 12458:1 12464:1 12472:1 12476:1 12477:2 12493:1 12495:1 12508:1 12515:1 12526:2 12534:1 12608:6 12621:1 12633:1 12635:1 12636:1 12648:13 12658:1 12668:2 12671:5 12676:1 12681:1 12701:1 12708:2 12733:2 12764:1 12769:1 12772:2 12789:1 12796:2 12797:1 12813:1 12827:2 12831:1 12835:1 12837:1 12888:1 12914:1 12949:5 12984:1 12999:1 13045:6 13049:1 13066:2 13072:1 13076:4 13080:3 13087:1 13093:1 13094:5 13128:1 13142:1 13143:1 13144:1 13166:3 13206:1 13211:1 13213:1 13224:6 13231:1 13232:2 13233:1 13252:2 13275:2 13278:1 13282:1 13283:1 13301:1 13302:4 13306:1 13310:1 13320:2 13331:1 13341:1 13346:1 13364:2 13372:4 13376:1 13416:3 13420:1 13421:2 13454:1 13468:2 13490:1 13524:1 13557:1 13561:1 13599:3 13601:2 13606:4 13607:1 13610:1 13620:1 13628:1 13633:1 13654:2 13680:2 13691:2 13694:1 13697:1 13698:1 13723:1 13733:6 13745:1 13764:1 13779:2 13782:1 13788:2 13799:1 13827:6 13832:3 13833:1 13838:1 13847:1 13886:1 13895:1 13904:3 13931:8 13942:1 13974:1 13980:1 14006:1 14018:1 14029:1 14054:1 14076:6 14089:1 14107:3 14119:1 14134:1 14140:1 14152:1 14161:1 14179:1 14180:1 14212:1 14223:1 14235:1 14245:1 14255:1 14274:2 14284:1 14297:1 14299:2 14312:1 14313:1 14317:2 14318:4 14324:1 14325:6 14335:2 14339:1 14340:1 14347:1 14358:1 14361:1 14376:1 14385:1 14433:1 14434:1 14449:4 14482:2 14485:1 14489:2 14492:1 14498:2 14523:1 14533:3 14554:1 14573:1 14591:2 14600:2 14616:2 14623:1 14636:2 14637:1 14647:4 14664:1 14674:1 14683:2 14701:1 14761:1 14775:1 14798:1 14820:3 14821:1 14823:1 14824:1 14837:1 14881:1 14883:1 14891:3 14893:1 14910:1 14912:1 14916:2 14935:1 14936:3 14938:2 14961:2 14970:1 14984:1 14986:1 15000:1 15020:6 15022:1 15037:1 15085:1 15117:1 15123:3 15125:1 15130:1 15134:1 15145:1 15146:1 15158:1 15173:1 15177:2 15178:1 15180:1 15207:1 15217:1 15233:1 15245:1 15259:2 15301:2 15322:1 15332:6 15345:1 15385:2 15395:1 15398:1 15403:1 15404:4 15414:2 15420:1 15424:1 15431:1 15435:1 15436:1 15440:1 15453:2 15455:1 15459:2 15471:1 15482:2 15509:1 15539:1 15556:1 15563:2 15568:1 15578:5 15581:2 15590:1 15591:3 15598:1 15607:2 15614:2 15624:1 15625:3 15626:2 15637:1 15642:1 15644:1 15678:1 15679:1 15687:1 15717:1 15745:5 15750:1 15757:1 15763:1 15785:3 15814:1 15831:6 15832:3 15835:1 15871:1 15879:3 15893:1 15896:1 15909:2 15911:2 15923:1 15957:1 15967:1 15973:2 16014:1 16026:1 16029:13 16030:1 16048:2 16055:1 16095:2 16119:3 16122:1 16127:1 16137:1 16149:1 16150:1 16164:1 16172:1 16177:2 16190:2 16194:1 16196:1 16242:2 16285:2 16288:1 16289:1 16290:2 16338:1 16353:1 16363:1 16398:1 16400:1 16403:2 16475:1 16482:1 16488:1 16489:1 16505:1 16511:1 16527:1 16528:1 16546:1 16555:2 16575:1 16588:1 16589:1 16597:1 16605:1 16614:1 16639:1 16662:1 16666:2 16675:1 16685:2 16702:1 16708:1 16714:3 16716:2 16718:1 16738:1 16747:1 16758:1 16761:1 16776:1 16789:2 16802:1 16828:1 16840:2 16843:1 16844:4 16851:1 16867:1 16874:1 16905:1 16908:1 16915:7 16929:1 16930:1 16939:1 16942:1 16947:2 16966:4 16991:1 16995:2 17013:2 17046:1 17050:1 17053:1 17059:5 17067:1 17091:3 17092:1 17106:1 17136:1 17138:2 17155:3 17156:2 17167:1 17172:1 17179:1 17186:1 17187:2 17198:1 17199:7 17200:1 17207:2 17210:1 17244:1 17251:1 17265:1 17270:2 17277:2 17327:1 17346:1 17360:1 17363:3 17369:1 17374:2 17397:1 17401:1 17422:1 17445:1 17447:1 17448:3 17454:2 17455:1 17456:1 17463:2 17475:3 17476:2 17509:1 17522:5 17523:3 17558:1 17560:1 17585:1 17587:1 17592:7 17604:1 17631:1 17636:1 17644:2 17647:1 17648:1 17652:1 17662:1 17665:4 17667:1 17669:1 17670:1 17683:1 17692:1 17707:1 17721:1 17722:3 17747:1 17753:2 17767:7 17772:3 17781:20 17785:1 17787:1 17790:1 17794:1 17812:1 17819:1 17822:1 17838:1 17845:1 17852:1 17855:1 17860:1 17871:1 17873:1 17875:1 17882:1 17886:1 17896:4 17907:1 17922:1 17931:5 17962:1 17967:1 17977:1 17979:1 17989:1 17994:1 17998:2 18007:3 18009:1 18011:1 18019:1 18032:1 18056:1 18067:1 18080:1 18084:1 18120:1 18133:1 18150:1 18152:2 18167:1 18169:1 18170:1 18178:1 18212:1 18219:2 18220:1 18249:2 18315:4 18331:1 18348:1 18357:1 18380:2 18381:1 18399:2 18417:4 18424:1 18444:1 18449:1 18461:1 18471:2 18476:2 18478:2 18481:1 18495:1 18498:1 18504:3 18509:1 18516:1 18519:1541 18524:1 18534:1 18538:1 18572:2 18573:1 18582:3 18608:1 18643:2 18648:1 18668:1 18690:1 18702:1 18708:2 18715:6 18720:1 18725:5 18727:2 18728:3 18748:1 18763:1 18802:6 18808:1 18810:1 18816:1 18840:1 18842:17 18861:1 18863:7 18904:1 18907:1 18920:1 18930:2 18938:1 18947:1 18968:1 18969:1 18971:1 18982:2 18991:2 19008:1 19017:1 19033:1 19055:2 19061:1 19079:1 19089:1 19091:1 19113:1 19135:2 19140:2 19142:2 19174:2 19176:3 19180:1 19187:1 19190:1 19192:1 19197:3 19202:1 19210:1 19218:1 19228:5 19235:1 19257:1 19271:2 19298:9 19314:1 19315:1 19335:6 19336:1 19350:1 19359:1 19370:1 19412:1 19420:2 19442:2 19475:1 19482:1 19494:1 19507:4 19508:1 19515:3 19516:2 19531:1 19549:1 19550:3 19551:1 19563:1 19566:1 19573:1 19592:2 19600:1 19628:1 19634:1 19661:3 19674:1 19680:1 19708:2 19719:1 19720:1 19724:1 19735:2 19742:1 19745:1 19751:1 19752:1 19754:1 19767:1 19771:2 19775:3 19778:1 19784:2 19794:1 19816:1 19818:1 19829:1 19833:1 19839:2 19862:1 19876:2 19881:1 19904:2 19909:1 19918:1 19936:1 19948:1 19949:4 19953:1 19964:1 19978:2 19992:1 19996:1 20003:1 20004:1 20017:1 20031:1 20032:1 20036:1 20037:1 20052:1 20061:2 20068:1 20079:1 20084:1 20086:1 20117:1 20118:2 20137:1 20159:5 20187:1 20211:5 20212:2 20218:2 20226:1 20231:1 20237:1 20281:1 20283:3 20293:2 20299:1 20302:1 20313:1 20404:3 20406:2 20420:1 20443:1 20453:1 20454:1 20455:5 20465:2 20468:3 20474:1 20495:1 20525:1 20530:1 20531:2 20567:4 20577:1 20594:1 20599:1 20600:1 20643:1 20652:1 20656:1 20658:2 20671:1 20677:4 20679:1 20683:1 20685:1 20686:1 20692:1 20701:1 20705:1 20710:1 20716:1 20722:2 20730:1 20738:1 20747:4 20770:1 20780:2 20782:2 20797:1 20823:1 20833:1 20846:1 20862:1 20900:1 20907:2 20918:1 20945:1 20948:2 20957:2 20979:6 20985:1 20988:1 21010:1 21016:1 21019:1 21029:1 21049:1 21062:1 21075:1 21079:1 21080:1 21088:1 21091:1 21100:1 21107:1 21122:1 21137:2 21158:1 21169:1 21174:1 21196:1 21201:1 21265:1 21289:1 21313:1 21320:1 21345:1 21357:1 21358:2 21371:1 21372:1 21374:2 21380:1 21386:2 21387:2 21392:1 21397:1 21406:1 21415:1 21442:2 21444:1 21459:1 21472:4 21488:1 21490:1 21493:1 21498:2 21499:1 21503:1 21504:1 21509:2 21518:1 21520:1 21523:1 21528:1 21538:1 21544:1 21548:8 21567:1 21568:1 21580:1 21616:1 21634:1 21647:1 21648:1 21654:2 21663:1 21670:1 21675:7 21684:1 21695:3 21712:1 21714:2 21715:1 21724:1 21750:1 21771:1 21778:1 21809:1 21812:3 21822:1 21824:1 21826:1 21827:1 21829:1 21830:1 21846:1 21848:3 21867:2 21870:1 21885:1 21916:2 21937:1 21941:1 21952:1 21967:1 21971:1 21994:1 22009:3 22012:2 22016:3 22021:1 22025:1 22052:1 22059:1 22061:1 22065:2 22077:1 22080:1 22096:3 22135:1 22144:1 22150:1 22173:4 22174:5 22178:3 22180:1 22189:2 22190:1 22212:1 22223:2 22230:1 22236:1 22243:1 22248:1 22252:3 22257:1 22258:3 22265:1 22277:2 22291:1 22293:1 22294:2 22295:1 22302:1 22315:1 22318:1 22329:1 22331:1 22332:1 22336:1 22337:1 22345:2 22357:1 22362:1 22368:1 22391:2 22392:1 22406:2 22412:1 22414:20 22419:1 22420:2 22422:3 22425:1 22426:1 22427:1 22434:1 22453:3 22455:1 22464:2 22467:1 22473:2 22493:1 22495:1 22496:1 22507:1 22529:1 22538:1 22542:1 22579:1 22585:1 22593:3 22599:1 22616:2 22621:1 22646:1 22672:1 22674:1 22676:2 22679:1 22680:1 22687:1 22691:3 22692:1 22695:1 22699:2 22705:1 22721:2 22726:2 22736:1 22737:1 22758:1 22777:1 22782:1 22784:1 22788:1 22808:1 22837:1 22848:1 22878:1 22896:1 22902:1 22919:1 22921:1 22931:1 22935:1 22947:2 22948:1 22962:2 22964:1 22980:3 22981:1 22982:1 22998:3 23001:2 23021:2 23027:1 23033:2 23038:1 23099:1 23143:1 23148:1 23165:1 23184:3 23188:1 23195:1 23196:1 23207:2 23227:2 23234:1 23239:1 23241:1 23248:1 23254:1 23275:2 23283:3 23297:1 23299:1 23302:1 23310:1 23326:1 23340:1 23343:1 23349:1 23352:1 23361:9 23368:1 23394:2 23403:1 23408:1 23437:1 23439:1 23441:1 23452:1 23494:1 23504:1 23519:1 23520:1 23532:2 23545:1 23559:2 23568:1 23581:1 23591:1 23592:1 23600:1 23616:3 23618:1 23620:1 23635:1 23651:1 23659:2 23720:1 23722:1 23732:2 23736:1 23744:1 23749:2 23774:1 23785:1 23798:1 23806:1 23814:1 23831:1 23832:1 23875:2 23884:5 23885:1 23896:4 23899:1 23910:1 23918:2 23919:1 23920:1 23939:1 23966:2 23973:1 23979:1 23994:2 23995:1 23996:1 24001:1 24025:1 24030:1 24044:1 24052:1 24057:2 24058:3 24068:1 24093:1 24098:1 24101:1 24124:1 24146:1 24150:1 24156:1 24159:2 24160:1 24162:6 24164:2 24166:4 24167:2 24172:2 24174:2 24175:1 24182:1 24183:2 24187:2 24193:1 24206:2 24233:1 24236:2 24237:1 24242:1 24247:2 24263:3 24267:3 24291:1 24295:1 24297:1 24307:2 24321:1 24342:1 24345:1 24347:1 24348:1 24362:1 24390:1 24401:1 24402:1 24419:3 24440:2 24448:1 24450:3 24453:1 24464:2 24508:1 24547:2 24548:1 24558:1 24571:1 24582:1 24584:1 24630:3 24645:1 24654:1 24658:1 24665:2 24707:3 24746:1 24757:2 24763:1 24772:1 24780:1 24783:4 24791:1 24797:1 24810:1 24816:1 24822:4 24878:1 24899:1 24912:1 24915:2 24946:9 24955:1 24969:7 24990:1 24997:1 25005:1 25015:2 25028:1 25038:2 25042:1 25046:1 25047:1 25089:1 25093:2 25099:2 25104:1 25109:1 25111:2 25114:4 25122:1 25137:1 25139:2 25141:7 25144:2 25145:1 25155:1 25162:1 25167:2 25170:1 25177:1 25182:1 25214:2 25219:1 25225:2 25230:1 25247:3 25258:2 25259:1 25319:1 25320:1 25335:1 25342:1 25356:1 25384:1 25386:1 25401:1 25410:1 25412:2 25413:1 25416:2 25425:1 25436:5 25465:1 25468:1 25473:1 25488:1 25515:1 25557:1 25561:1 25576:1 25600:1 25618:1 25665:1 25676:1 25679:2 25680:1 25691:1 25700:1 25701:1 25708:1 25718:2 25726:1 25729:1 25742:1 25757:1 25759:2 25796:3 25804:1 25812:1 25816:1 25835:1 25838:4 25864:1 25865:4 25880:1 25901:1 25903:1 25906:1 25916:1 25929:1 25930:1 25936:1 25953:1 25971:1 25988:1 25992:4 25994:1 26021:3 26033:1 26038:1 26040:1 26059:1 26087:1 26093:4 26112:2 26114:1 26118:1 26123:1 26127:3 26128:1 26133:1 26166:2 26170:1 26175:1 26182:1 26185:1 26221:2 26247:2 26249:1 26261:2 26267:1 26290:2 26300:1 26309:1 26316:1 26332:2 26338:1 26339:1 26341:1 26352:1 26368:2 26373:5 26392:2 26453:1 26476:1 26478:1 26482:1 26499:1 26504:1 26547:1 26548:1 26551:1 26556:1 26559:1 26569:1 26574:1 26582:1 26588:1 26599:1 26621:1 26624:1 26641:1 26654:2 26657:1 26662:1 26667:1 26681:4 26700:3 26709:4 26721:1 26736:1 26737:1 26743:1 26759:1 26772:1 26778:1 26787:1 26788:8 26817:1 26838:1 26840:2 26844:1 26845:1 26847:1 26848:1 26856:9 26894:3 26933:2 26938:1 26960:5 26965:2 26967:2 26981:1 26985:2 26988:1 26994:2 27003:1 27006:1 27016:1 27022:1 27033:1 27036:1 27057:1 27058:1 27069:2 27070:1 27079:1 27090:1 27103:1 27108:1 27113:1 27136:1 27141:2 27145:1 27147:1 27160:1 27187:1 27229:1 27275:1 27279:1 27298:1 27330:1 27332:1 27342:1 27365:4 27368:1 27385:1 27408:1 27412:1 27419:1 27465:1 27481:2 27536:2 27549:1 27560:1 27563:6 27575:1 27595:1 27597:2 27627:1 27636:1 27662:1 27673:1 27675:1 27678:1 27687:21 27689:4 27692:5 27694:1 27695:2 27702:1 27724:6 27739:1 27777:1 27789:2 27804:1 27808:1 27820:1 27821:1 27832:1 27838:2 27859:9 27863:2 27867:1 27869:1 27874:1 27885:1 27887:1 27889:1 27893:2 27900:1 27906:1 27909:1 27917:2 27923:1 27930:1 27934:1 27935:2 27948:1 27960:1 27964:1 27968:1 27969:1 28003:1 28011:1 28028:2 28030:1 28050:1 28051:1 28054:1 28068:3 28102:1 28126:1 28127:2 28128:1 28131:1 28174:1 28180:1 28183:1 28187:1 28193:1 28202:1 28204:1 28214:1 28218:1 28223:1 28292:1 28315:1 28319:1 28320:1 28341:1 28350:1 28356:1 28362:1 28363:2 28373:1 28375:2 28380:1 28387:1 28397:6 28404:1 28411:2 28413:1 28419:1 28461:1 28469:1 28470:1 28506:2 28514:1 28520:1 28536:2 28541:1 28543:2 28551:1 28553:1 28560:4 28594:1 28596:1 28648:1 28665:1 28685:2 28703:1 28709:1 28724:1 28734:1 28748:1 28761:2 28792:1 28801:7 28815:1 28816:1 28818:1 28836:6 28849:5 28867:1 28904:1 28913:7 28914:2 28916:2 28919:1 28921:1 28924:3 28925:2 28941:1 28959:2 28961:3 28963:3 29003:1
9 11:1 14:1 34:1 37:2 56:1 60:1 65:1 79:1 83:1 89:1 90:1 103:1 109:1 113:1 117:1 125:1 143:1 150:1 153:3 162:1 170:4 189:5 214:1 245:1 270:1 282:2 293:1 295:18 303:1 315:1 316:3 318:3 333:1 348:1 363:1 381:1 403:2 424:3 432:1 442:1 444:1 515:1 523:1 561:1 563:4 564:1 569:1 572:3 590:2 596:2 598:1 600:1 613:2 626:1 634:1 638:1 643:1 650:1 674:1 678:1 685:1 692:1 702:1 716:1 734:1 748:1 752:1 767:1 770:1 788:1 795:1 804:1 805:1 807:2 808:1 830:5 832:3 842:1 843:1 855:1 856:10 860:1 867:1 871:1 875:2 877:2 879:7 885:1 892:1 893:1 899:1 905:3 924:1 925:2 941:1 963:1 974:3 989:1 996:2 998:1 1002:1 1019:1 1020:2 1027:1 1045:1 1059:1 1061:1 1078:1 1087:1 1089:1 1104:2 1112:1 1117:1 1136:1 1143:1 1148:3 1160:1 1163:1 1179:1 1207:2 1231:1 1232:1 1241:1 1244:1 1257:1 1262:1 1276:1 1284:1 1287:1 1313:1 1330:1 1355:1 1374:2 1376:1 1397:2 1400:1 1401:5 1402:1 1417:1 1419:1 1420:1 1422:1 1423:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1506:2 1507:1 1508:1 1516:2 1543:1 1547:1 1555:1 1557:1 1560:1 1562:2 1564:3 1571:1 1596:3 1598:1 1617:1 1619:2 1627:3 1634:2 1659:1 1660:1 1678:1 1699:1 1743:1 1760:1 1762:1 1778:4 1789:1 1794:1 1802:1 1811:1 1819:1 1830:1 1895:9 1903:1 1907:2 1919:1 1923:1 1929:1 1935:1 1936:1 1952:1 1962:7 1963:1 1965:2 1993:1 1998:1 2006:2 2011:3 2082:1 2085:1 2089:3 2095:2 2100:1 2101:1 2105:1 2108:1 2132:1 2142:1 2154:1 2156:1 2159:3 2160:1 2165:1 2172:1 2174:3 2177:1 2178:2 2179:4 2181:1 2190:2 2207:1 2212:1 2216:2 2219:2 2220:2 2221:7 2223:4 2226:1 2227:2 2228:3 2232:1 2233:1 2234:1 2237:2 2239:1 2245:1 2247:1 2249:1 2251:6 2252:2 2253:6 2264:1 2268:1 2279:1 2297:1 2309:1 2315:1 2322:1 2336:1 2339:1 2343:1 2347:1 2358:3 2370:2 2374:1 2376:1 2392:1 2410:2 2421:5 2433:1 2445:1 2461:1 2465:1 2473:1 2485:5 2494:2 2500:1 2522:2 2536:1 2543:2 2552:3 2561:2 2563:1 2570:1 2580:2 2609:2 2631:1 2648:1 2651:2 2656:1 2659:1 2667:2 2670:1 2672:1 2675:1 2683:1 2688:1 2691:1 2704:1 2708:1 2712:1 2713:1 2723:1 2730:3 2756:1 2760:1 2761:2 2762:1 2766:5 2770:2 2775:2 2780:1 2782:1 2810:1 2813:1 2816:1 2854:2 2857:1 2867:20 2883:4 2888:1 2900:2 2909:1 2931:1 2936:11 2961:1 2965:4 2968:1 2989:1 3023:1 3026:1 3074:3 3075:1 3089:1 3105:1 3106:1 3112:1 3166:1 3188:1 3197:1 3205:1 3224:1 3231:1 3232:4 3243:1 3248:1 3256:1 3266:1 3271:1 3293:1 3295:3 3338:1 3352:1 3357:8 3397:1 3407:1 3420:2 3424:1 3459:1 3471:1 3472:1 3475:2 3478:1 3488:1 3489:1 3495:1 3517:1 3528:1 3540:2 3548:1 3558:1 3570:1 3574:1 3577:1 3580:2 3582:3 3599:4 3604:2 3605:1 3606:1 3607:2 3608:2 3615:1 3634:2 3638:1 3639:3 3647:1 3669:1 3680:1 3684:1 3687:1 3688:3 3692:1 3695:2 3698:2 3712:1 3730:1 3737:1 3740:1 3742:4 3744:1 3746:2 3748:8 3763:1 3779:1 3783:4 3784:1 3788:2 3789:10 3790:1 3792:1 3813:4 3817:1 3822:1 3835:1 3836:3 3838:1 3848:1 3851:1 3862:1 3866:1 3876:1 3883:1 3888:1 3895:1 3902:3 3904:1 3918:2 3919:1 3931:1 3939:1 3940:1 3943:1 3948:1 3964:3 3970:1 3972:1 3977:2 3982:1 3988:2 3989:2 3998:4 3999:2 4005:1 4019:1 4033:1 4040:1 4054:2 4078:1 4085:2 4093:1 4113:1 4125:1 4129:1 4136:1 4137:1 4173:1 4190:2 4193:2 4201:1 4204:1 4219:1 4254:1 4270:2 4272:2 4282:1 4298:1 4314:2 4348:1 4362:5 4378:1 4414:1 4416:1 4428:2 4434:1 4439:2 4455:1 4491:1 4494:1 4528:1 4560:1 4562:1 4583:1 4613:1 4619:2 4626:3 4640:1 4646:1 4657:1 4658:1 4676:1 4691:1 4695:7 4724:1 4731:1 4742:1 4746:1 4759:1 4768:1 4773:6 4776:1 4787:1 4788:2 4815:1 4818:1 4851:2 4867:1 4876:16 4878:2 4881:1 4895:2 4903:1 4925:1 4928:7 4940:2 4963:1 4964:1 4980:1 4981:1 4984:1 4985:4 5003:3 5005:4 5006:1 5008:1 5013:3 5014:1 5015:1 5017:1 5022:1 5026:1 5028:2 5030:2 5031:1 5033:1 5041:1 5042:1 5045:4 5046:2 5064:1 5090:1 5131:2 5133:1 5157:1 5176:1 5177:1 5184:2 5190:1 5195:2 5203:2 5219:1 5220:1 5237:1 5245:2 5249:2 5255:1 5280:1 5302:1 5306:1 5307:1 5328:1 5351:2 5358:5 5362:1 5365:1 5369:2 5371:2 5386:1 5394:1 5404:2 5423:1 5429:1 5434:2 5453:1 5480:1 5493:1 5501:1 5511:2 5524:2 5534:1 5535:2 5538:1 5540:2 5548:1 5556:1 5563:1 5564:1 5582:3 5584:1 5593:1 5607:1 5615:2 5629:2 5639:1 5640:1 5663:3 5680:1 5681:2 5694:1 5701:2 5705:1 5720:4 5721:1 5728:1 5744:1 5749:1 5773:1 5801:1 5802:1 5812:1 5843:2 5850:1 5852:1 5877:1 5881:2 5898:1 5920:1 5942:1 5947:2 5949:1 5972:12 5987:4 5992:4 6000:1 6006:3 6007:1 6009:1 6017:1 6039:2 6040:1 6053:1 6056:1 6110:1 6130:1 6137:2 6138:1 6142:1 6150:1 6153:1 6176:5 6178:1 6182:1 6192:1 6197:1 6199:1 6220:1 6245:1 6247:1 6259:3 6262:1 6263:1 6265:1 6270:1 6273:1 6274:2 6275:1 6276:3 6279:2 6282:4 6283:8 6284:4 6286:1 6316:1 6334:1 6379:3 6420:2 6435:1 6482:2 6493:1 6502:1 6507:1 6513:1 6531:1 6536:1 6537:1 6542:1 6556:1 6558:1 6565:1 6598:1 6609:1 6613:1 6652:1 6653:1 6654:2 6677:1 6679:2 6689:1 6699:5 6715:2 6722:2 6728:1 6741:1 6751:1 6757:1 6795:1 6810:2 6811:1 6823:2 6851:1 6854:2 6855:2 6860:3 6866:1 6871:1 6885:3 6886:2 6903:1 6906:1 6914:1 6918:1 6919:2 6922:2 6932:1 6948:1 6987:1 6999:1 7049:1 7050:10 7052:1 7067:1 7073:2 7074:2 7091:1 7097:1 7099:1 7124:1 7125:1 7155:2 7169:1 7180:1 7198:2 7218:2 7234:1 7248:2 7263:3 7287:2 7288:1 7290:1 7297:1 7303:1 7311:1 7334:3 7346:3 7347:1 7367:2 7371:1 7382:1 7383:1 7386:2 7407:2 7427:1 7463:2 7499:2 7518:1 7554:2 7555:9 7556:1 7570:2 7580:2 7582:2 7584:1 7603:3 7604:1 7620:46 7622:1 7643:2 7644:11 7645:1 7648:1 7665:1 7671:2 7696:1 7700:1 7710:1 7720:1 7725:2 7734:1 7751:1 7755:1 7758:2 7786:1 7826:2 7851:1 7871:1 7878:1 7892:1 7897:3 7928:1 7931:1 7962:1 8004:1 8007:1 8032:1 8037:1 8043:2 8044:3 8045:1 8046:1 8062:1 8063:1 8107:1 8116:2 8124:1 8130:2 8136:1 8142:2 8154:1 8156:5 8180:2 8184:1 8186:1 8194:1 8236:1 8254:1 8270:1 8299:1 8301:2 8311:2 8319:1 8334:1 8336:1 8358:1 8367:2 8369:2 8376:3 8379:1 8383:3 8387:2 8394:1 8395:3 8405:1 8412:1 8422:1 8430:5 8438:1 8441:1 8449:1 8460:1 8468:1 8480:1 8490:1 8497:1 8500:2 8501:5 8503:4 8504:1 8505:2 8508:3 8510:6 8512:2 8513:2 8516:1 8526:2 8543:4 8549:1 8550:3 8567:3 8571:1 8572:2 8575:2 8578:1 8582:1 8586:3 8604:1 8640:2 8655:1 8657:1 8679:1 8688:1 8710:1 8719:1 8728:1 8739:1 8756:2 8762:1 8772:2 8779:2 8808:1 8810:1 8811:3 8815:2 8827:2 8833:1 8840:1 8846:1 8857:1 8914:1 8921:1 8929:1 8936:2 8950:4 8954:2 8971:1 8992:2 9001:1 9011:1 9019:1 9022:1 9035:1 9040:1 9050:1 9057:1 9065:1 9068:1 9069:1 9077:3 9107:1 9115:2 9121:1 9128:1 9134:1 9139:1 9142:1 9151:1 9162:1 9196:1 9200:1 9207:7 9209:1 9216:2 9219:1 9226:18 9230:1 9246:2 9247:1 9261:1 9275:1 9305:1 9314:1 9319:1 9329:1 9338:2 9349:1 9360:2 9363:6 9365:1 9390:1 9392:1 9421:1 9433:3 9490:1 9497:1 9528:1 9529:1 9537:1 9539:1 9555:1 9558:1 9568:1 9569:3 9574:1 9582:1 9586:3 9594:2 9601:1 9608:2 9634:2 9652:1 9663:7 9676:1 9677:4 9687:2 9689:1 9700:1 9704:1 9713:1 9746:3 9789:1 9829:1 9847:6 9850:1 9856:1 9862:1 9871:3 9877:1 9880:1 9883:2 9887:1 9890:1 9898:3 9911:1 9913:1 9919:1 9928:1 9929:1 9932:1 9938:1 9939:1 9954:1 9956:1 9968:4 9987:1 9996:1 10019:1 10037:1 10038:1 10065:1 10073:1 10094:1 10124:1 10125:1 10126:1 10135:2 10178:1 10191:1 10200:1 10234:1 10241:1 10266:2 10280:1 10302:1 10328:1 10329:1 10347:3 10351:2 10359:2 10370:1 10372:1 10405:1 10436:1 10448:1 10478:2 10486:1 10488:1 10504:2 10507:2 10513:4 10521:1 10523:1 10524:1 10526:1 10537:1 10539:2 10555:2 10557:3 10558:1 10564:1 10573:1 10582:2 10583:2 10590:1 10592:2 10593:1 10621:1 10641:1 10657:7 10665:4 10683:2 10686:10 10737:1 10740:1 10748:1 10783:2 10787:1 10824:1 10839:1 10857:1 10901:1 10903:3 10905:2 10909:2 10910:2 10921:2 10931:2 10937:1 10943:1 10947:1 10953:1 10962:1 10989:6 10992:1 11010:3 11014:1 11016:1 11018:1 11062:1 11063:1 11064:2 11066:1 11071:1 11083:1 11094:1 11100:1 11106:1 11107:1 11118:1 11145:1 11147:1 11175:1 11177:1 11188:1 11197:1 11203:4 11208:1 11230:1 11234:1 11248:1 11260:1 11268:2 11278:2 11284:1 11285:1 11300:2 11301:1 11302:1 11308:1 11315:2 11317:1 11333:4 11341:1 11367:1 11370:9 11371:1 11400:1 11401:1 11407:1 11430:1 11442:1 11444:2 11469:1 11476:1 11477:1 11481:2 11501:1 11506:1 11509:2 11514:1 11520:2 11526:2 11530:6 11547:1 11549:1 11550:5 11580:1 11587:1 11600:1 11603:2 11609:1 11614:1 11615:2 11619:3 11622:1 11631:1 11632:1 11633:1 11636:2 11641:1 11645:1 11649:1 11664:5 11671:1 11684:6 11690:1 11693:1 11711:1 11716:1 11734:1 11772:2 11789:1 11824:1 11826:1 11852:1 11865:3 11871:1 11877:1 11916:1 11931:3 11936:3 11952:1 11973:3 11990:1 11997:1 12004:1 12107:1 12109:1 12110:2 12111:3 12115:1 12125:1 12132:1 12154:1 12156:1 12165:2 12166:4 12172:2 12178:1 12184:2 12239:1 12243:1 12250:1 12272:1 12276:2 12281:6 12302:1 12323:2 12337:1 12345:1 12346:1 12349:2 12361:2 12362:1 12376:2 12380:2 12398:1 12405:1 12420:1 12431:1 12458:1 12464:1 12472:1 12476:1 12477:2 12493:1 12495:1 12508:1 12515:1 12526:2 12534:1 12608:6 12621:1 12633:1 12635:1 12636:1 12648:14 12654:1 12658:1 12668:2 12671:5 12676:1 12681:1 12701:1 12708:2 12733:2 12764:1 12769:2 12772:2 12789:1 12796:2 12797:1 12813:1 12827:3 12831:1 12835:1 12837:1 12861:1 12888:1 12914:1 12949:5 12984:1 12999:1 13045:6 13049:1 13066:2 13072:1 13076:4 13080:4 13087:1 13093:1 13094:6 13128:1 13142:1 13143:1 13144:1 13166:3 13206:1 13211:1 13213:1 13224:6 13231:1 13232:2 13233:1 13250:1 13252:2 13263:1 13275:2 13278:1 13282:1 13283:1 13301:1 13302:4 13306:1 13310:1 13320:2 13331:1 13341:1 13346:1 13364:2 13372:4 13376:1 13396:1 13416:3 13420:1 13421:2 13454:1 13468:2 13490:1 13524:1 13557:1 13561:1 13599:3 13601:2 13606:4 13607:1 13610:1 13620:1 13628:1 13633:1 13654:3 13680:3 13691:2 13694:1 13697:1 13698:1 13723:1 13733:6 13745:1 13764:1 13779:2 13782:1 13788:2 13799:1 13827:7 13832:3 13833:1 13838:1 13847:1 13886:1 13895:1 13904:3 13931:8 13942:1 13974:1 13980:1 14006:1 14018:1 14029:1 14054:1 14076:6 14089:1 14107:3 14119:1 14134:1 14140:1 14152:1 14161:1 14179:1 14180:1 14212:1 14223:1 14235:1 14245:1 14255:1 14266:1 14274:2 14284:1 14297:1 14299:3 14312:1 14313:1 14317:2 14318:6 14324:1 14325:6 14335:3 14339:1 14340:1 14347:1 14358:1 14361:1 14376:1 14385:1 14433:1 14434:1 14449:4 14482:2 14485:1 14489:2 14492:1 14498:2 14523:1 14533:3 14551:1 14554:1 14573:1 14591:2 14600:2 14616:2 14623:1 14636:2 14637:1 14647:4 14650:1 14664:2 14674:1 14683:2 14700:1 14701:1 14761:1 14775:1 14798:1 14820:3 14821:1 14823:1 14824:1 14837:1 14881:1 14883:1 14891:3 14893:1 14910:1 14912:1 14916:2 14935:1 14936:4 14938:2 14961:2 14970:1 14984:1 14986:1 15000:1 15020:6 15022:1 15024:1 15037:1 15085:1 15117:1 15123:3 15125:1 15130:1 15134:1 15145:1 15146:2 15158:1 15173:1 15177:2 15178:1 15180:1 15207:1 15217:1 15233:1 15245:2 15259:2 15301:2 15322:1 15332:7 15345:1 15385:2 15395:1 15398:1 15403:1 15404:4 15414:3 15420:1 15424:1 15431:1 15435:1 15436:1 15440:1 15453:2 15455:1 15459:2 15471:1 15482:2 15509:1 15539:1 15556:1 15563:2 15568:1 15578:5 15581:2 15590:1 15591:3 15598:1 15607:2 15614:2 15622:1 15624:1 15625:4 15626:2 15631:1 15637:1 15642:1 15644:1 15678:1 15679:1 15687:1 15717:1 15745:5 15750:1 15757:1 15763:1 15785:3 15814:1 15831:6 15832:3 15835:1 15871:1 15879:3 15893:1 15896:1 15909:3 15911:2 15913:1 15923:1 15957:1 15967:1 15973:2 16014:1 16026:1 16029:14 16030:1 16048:2 16055:1 16095:2 16103:1 16119:3 16122:1 16127:1 16137:1 16149:1 16150:1 16164:1 16172:1 16177:2 16190:2 16194:1 16196:1 16237:1 16242:2 16285:2 16288:1 16289:1 16290:2 16338:1 16353:1 16363:1 16398:1 16400:1 16403:2 16475:1 16482:1 16488:1 16489:1 16505:1 16511:1 16527:1 16528:1 16546:1 16555:2 16575:1 16588:1 16589:1 16597:1 16605:1 16614:1 16639:1 16662:1 16666:2 16675:2 16685:2 16702:1 16708:1 16714:3 16716:2 16718:1 16738:1 16747:1 16758:1 16761:1 16776:1 16789:2 16802:1 16828:1 16840:2 16843:1 16844:4 16851:1 16867:1 16874:1 16883:1 16905:1 16908:1 16915:8 16929:1 16930:1 16932:1 16939:1 16942:1 16947:2 16966:4 16991:1 16995:2 17013:2 17046:1 17050:1 17053:1 17059:5 17067:1 17091:3 17092:1 17106:1 17136:2 17138:2 17155:3 17156:2 17167:1 17172:1 17179:1 17186:1 17187:2 17198:1 17199:7 17200:1 17207:2 17210:1 17244:1 17251:1 17265:1 17270:2 17277:2 17327:1 17346:1 17360:1 17363:3 17369:1 17374:2 17397:1 17401:1 17422:1 17445:1 17447:1 17448:3 17454:2 17455:1 17456:1 17463:2 17475:3 17476:2 17509:1 17522:5 17523:3 17558:1 17560:1 17585:1 17587:1 17592:7 17604:1 17631:1 17636:1 17644:2 17647:1 17648:1 17652:1 17662:1 17664:1 17665:4 17667:1 17669:1 17670:1 17683:1 17692:1 17707:1 17721:1 17722:3 17747:1 17753:2 17767:7 17772:3 17781:21 17785:1 17787:1 17790:1 17794:1 17812:2 17819:1 17822:1 17838:1 17845:1 17852:1 17855:1 17860:1 17871:1 17872:1 17873:1 17875:1 17882:1 17886:1 17896:4 17907:1 17922:1 17931:5 17962:1 17967:1 17977:2 17979:1 17989:1 17994:1 17998:2 18007:3 18009:1 18011:1 18019:1 18032:1 18056:1 18067:1 18080:1 18084:1 18120:1 18133:1 18150:1 18152:2 18167:1 18169:1 18170:1 18178:1 18212:1 18219:2 18220:1 18249:2 18315:4 18331:1 18348:1 18357:1 18380:2 18381:1 18399:2 18417:4 18424:1 18444:1 18449:1 18461:1 18471:2 18476:2 18478:2 18481:1 18495:1 18498:1 18504:3 18509:1 18516:1 18519:1609 18524:1 18534:1 18538:1 18572:2 18573:1 18582:3 18608:1 18643:2 18648:2 18668:2 18690:1 18702:1 18708:2 18715:6 18720:1 18725:5 18727:2 18728:4 18748:1 18763:1 18802:6 18808:1 18810:1 18816:1 18840:1 18842:18 18861:1 18863:7 18904:1 18907:1 18915:1 18920:1 18930:2 18938:1 18947:1 18968:1 18969:1 18971:1 18982:2 18991:2 19007:1 19008:1 19017:1 19033:1 19055:2 19061:1 19079:1 19089:1 19091:1 19113:1 19135:2 19140:2 19142:3 19174:2 19176:3 19180:1 19187:1 19190:1 19192:1 19197:3 19202:1 19210:1 19218:1 19228:5 19235:1 19257:1 19271:2 19293:1 19298:9 19314:1 19315:1 19335:6 19336:1 19350:1 19359:1 19370:1 19412:1 19420:2 19442:2 19475:1 19482:1 19494:1 19507:4 19508:1 19515:3 19516:2 19531:1 19549:1 19550:3 19551:1 19563:1 19566:1 19573:1 19592:2 19600:1 19605:1 19628:1 19634:1 19661:3 19674:1 19680:1 19708:2 19719:1 19720:1 19724:1 19735:2 19742:1 19745:1 19751:1 19752:1 19754:1 19767:2 19771:3 19775:3 19778:1 19784:4 19794:1 19816:1 19818:1 19829:1 19833:1 19839:2 19859:1 19862:1 19876:2 19881:1 19904:2 19909:2 19918:1 19936:1 19948:1 19949:4 19953:1 19964:1 19978:2 19992:1 19996:1 20003:1 20004:1 20017:1 20031:1 20032:1 20036:1 20037:1 20052:1 20061:2 20068:1 20079:1 20084:1 20086:1 20117:1 20118:2 20137:1 20159:5 20187:1 20211:6 20212:2 20218:2 20226:1 20231:1 20237:1 20272:1 20281:1 20283:3 20293:2 20299:1 20302:1 20313:1 20404:3 20406:4 20420:1 20443:1 20453:1 20454:1 20455:5 20465:2 20467:1 20468:3 20474:1 20495:1 20525:1 20530:1 20531:2 20567:4 20577:1 20594:1 20599:1 20600:1 20643:1 20652:1 20656:1 20658:3 20671:1 20677:4 20679:1 20683:1 20685:1 20686:1 20692:1 20701:1 20705:2 20710:1 20715:1 20716:1 20722:2 20730:1 20738:1 20747:4 20770:1 20780:2 20782:2 20797:1 20823:1 20833:1 20846:1 20862:1 20900:1 20907:2 20918:1 20945:1 20948:2 20957:2 20979:6 20985:1 20988:1 21010:1 21016:1 21019:2 21029:1 21049:1 21062:1 21075:1 21079:1 21080:1 21088:1 21091:1 21100:1 21107:1 21122:1 21137:2 21158:1 21169:1 21174:1 21196:1 21198:1 21201:1 21265:1 21289:1 21313:1 21320:1 21345:1 21357:1 21358:2 21371:1 21372:1 21374:2 21380:1 21386:2 21387:3 21392:1 21397:1 21406:1 21415:1 21442:2 21444:1 21459:1 21472:4 21488:1 21490:1 21493:1 21498:2 21499:2 21503:1 21504:1 21509:2 21518:1 21520:1 21523:1 21528:1 21538:1 21544:1 21548:8 21567:1 21568:1 21569:1 21580:1 21616:1 21634:1 21647:2 21648:1 21654:2 21663:1 21670:1 21675:7 21684:1 21695:3 21712:1 21714:2 21715:1 21724:1 21750:1 21771:1 21778:1 21809:1 21812:3 21822:1 21824:1 21826:1 21827:1 21829:1 21830:1 21846:1 21848:3 21867:2 21870:1 21885:1 21901:1 21916:2 21937:1 21941:1 21952:1 21967:1 21971:1 21994:3 22009:3 22012:2 22016:3 22021:1 22025:1 22052:1 22059:1 22061:1 22065:2 22077:1 22080:1 22096:3 22135:1 22144:1 22150:1 22173:4 22174:5 22178:3 22180:1 22189:2 22190:1 22212:1 22223:2 22230:1 22236:1 22243:1 22248:1 22252:3 22257:2 22258:3 22265:1 22277:2 22291:1 22293:1 22294:2 22295:1 22302:1 22315:2 22318:1 22329:2 22331:1 22332:1 22336:1 22337:1 22345:3 22357:1 22362:2 22368:1 22391:3 22392:1 22406:2 22412:1 22414:21 22419:1 22420:2 22422:4 22425:1 22426:2 22427:1 22432:1 22434:1 22453:3 22455:1 22461:1 22464:2 22467:1 22473:2 22493:2 22495:1 22496:1 22507:1 22529:1 22538:1 22542:1 22579:2 22585:1 22593:4 22599:1 22616:2 22621:1 22634:1 22646:1 22672:1 22674:1 22676:2 22679:1 22680:1 22687:1 22691:3 22692:1 22695:1 22699:2 22705:1 22721:2 22726:2 22736:1 22737:1 22758:1 22777:1 22782:1 22784:1 22788:1 22808:1 22837:1 22848:1 22878:1 22896:1 22902:1 22919:1 22921:1 22931:1 22935:1 22947:2 22948:1 22962:2 22964:1 22980:3 22981:1 22982:1 22998:3 23001:2 23021:2 23024:1 23027:1 23033:2 23038:1 23099:1 23143:1 23148:1 23165:1 23184:3 23188:1 23195:1 23196:1 23207:2 23227:2 23234:2 23235:1 23239:1 23241:1 23248:1 23254:1 23275:2 23283:3 23297:1 23299:1 23302:1 23310:1 23326:1 23340:1 23343:1 23349:1 23352:1 23361:10 23368:1 23394:2 23403:1 23408:1 23437:1 23439:1 23441:1 23452:1 23494:1 23504:1 23519:1 23520:1 23532:2 23545:1 23559:2 23568:1 23581:1 23591:1 23592:1 23600:1 23616:3 23618:1 23620:1 23635:1 23647:1 23651:1 23659:2 23720:1 23722:1 23732:2 23736:1 23744:1 23749:2 23774:1 23785:1 23798:1 23806:1 23814:1 23831:1 23832:1 23875:2 23884:5 23885:1 23896:4 23899:1 23910:1 23918:2 23919:1 23920:1 23928:1 23939:2 23941:1 23966:2 23973:1 23979:1 23994:2 23995:1 23996:1 24001:1 24025:1 24030:1 24044:1 24052:1 24057:2 24058:3 24064:1 24068:1 24093:1 24098:1 24101:1 24124:1 24146:1 24150:1 24156:1 24159:2 24160:1 24162:6 24164:2 24166:4 24167:2 24171:1 24172:2 24174:2 24175:1 24182:2 24183:2 24187:2 24193:1 24206:2 24233:1 24236:2 24237:1 24242:1 24247:2 24263:3 24267:3 24291:1 24295:1 24297:1 24307:2 24321:1 24342:1 24345:1 24347:1 24348:1 24362:1 24390:1 24401:1 24402:1 24419:3 24440:2 24448:1 24450:4 24453:1 24464:2 24508:1 24512:1 24524:1 24547:2 24548:1 24558:1 24571:1 24582:1 24584:1 24630:3 24645:1 24654:1 24658:1 24665:2 24707:3 24746:1 24757:2 24763:1 24772:1 24780:1 24783:4 24791:1 24797:1 24810:1 24816:1 24822:4 24878:1 24899:1 24912:1 24915:2 24946:9 24955:1 24969:7 24990:1 24997:1 25005:1 25015:2 25028:1 25038:2 25042:1 25046:1 25047:1 25089:1 25093:2 25099:2 25104:1 25109:1 25111:2 25114:4 25122:1 25137:1 25139:2 25141:7 25144:2 25145:1 25155:1 25162:1 25167:2 25170:1 25177:1 25182:1 25214:2 25219:1 25225:4 25230:1 25247:3 25258:2 25259:2 25319:1 25320:1 25335:1 25342:1 25356:1 25384:1 25386:1 25401:1 25410:1 25412:2 25413:1 25416:2 25425:1 25436:5 25465:1 25468:1 25473:1 25488:1 25515:1 25557:1 25561:1 25576:1 25600:1 25618:1 25665:1 25676:1 25679:3 25680:2 25691:1 25700:1 25701:1 25708:1 25718:2 25726:1 25729:1 25742:1 25757:1 25759:2 25796:3 25804:1 25812:1 25816:2 25835:1 25838:4 25864:1 25865:4 25880:1 25901:1 25903:1 25906:2 25916:1 25929:1 25930:1 25936:1 25953:1 25971:2 25988:1 25992:4 25994:1 26021:3 26033:1 26038:1 26040:1 26059:2 26087:1 26093:4 26112:2 26113:1 26114:1 26118:1 26123:1 26127:3 26128:1 26133:1 26166:2 26170:1 26175:1 26182:1 26185:1 26221:2 26247:2 26249:1 26261:2 26267:1 26290:2 26300:1 26309:1 26316:1 26332:2 26338:1 26339:1 26341:1 26352:1 26368:2 26373:5 26392:2 26453:1 26476:1 26478:1 26479:1 26482:1 26499:1 26504:1 26547:1 26548:1 26551:1 26556:1 26559:1 26569:1 26574:1 26582:1 26588:1 26599:1 26621:1 26622:1 26624:1 26641:1 26654:2 26657:1 26662:1 26667:2 26681:4 26700:3 26709:5 26721:1 26736:1 26737:1 26743:1 26759:1 26772:1 26778:1 26787:1 26788:8 26817:1 26838:1 26840:2 26844:1 26845:1 26847:1 26848:1 26856:10 26894:3 26933:2 26934:1 26938:1 26954:1 26960:5 26965:2 26967:2 26981:1 26985:2 26988:1 26994:2 27003:1 27006:1 27016:1 27022:1 27033:1 27036:1 27057:1 27058:1 27069:2 27070:1 27079:1 27090:1 27103:1 27108:1 27113:1 27136:1 27141:2 27145:1 27147:1 27160:2 27187:1 27229:1 27275:1 27279:1 27298:1 27330:1 27332:1 27342:1 27365:4 27368:1 27385:1 27392:1 27408:1 27412:1 27419:1 27465:1 27481:2 27536:2 27549:1 27560:1 27563:6 27575:1 27595:1 27597:3 27627:2 27636:1 27662:1 27673:1 27675:1 27678:1 27687:23 27689:4 27692:5 27694:1 27695:2 27702:1 27724:7 27739:1 27777:1 27789:2 27804:1 27808:1 27820:1 27821:1 27832:1 27838:2 27859:9 27863:2 27867:1 27869:1 27874:1 27885:1 27887:1 27889:1 27893:2 27900:2 27906:1 27909:1 27917:2 27923:1 27930:1 27934:1 27935:2 27948:1 27951:1 27960:1 27964:1 27968:1 27969:1 28003:1 28011:1 28028:2 28030:1 28050:1 28051:1 28054:1 28068:3 28102:1 28126:1 28127:2 28128:1 28131:1 28174:1 28180:1 28183:1 28187:2 28193:1 28202:1 28204:1 28214:1 28218:1 28223:1 28292:1 28315:1 28319:1 28320:1 28341:1 28350:1 28356:1 28359:1 28362:1 28363:2 28373:1 28375:2 28380:1 28387:1 28397:6 28404:1 28411:2 28413:1 28419:1 28461:1 28469:2 28470:1 28506:2 28514:1 28520:1 28536:2 28541:1 28543:2 28551:1 28553:1 28560:6 28594:1 28596:1 28648:1 28665:2 28685:2 28703:1 28709:1 28724:1 28734:1 28748:1 28761:2 28792:1 28801:7 28815:1 28816:1 28818:1 28836:6 28849:5 28850:1 28867:1 28904:1 28913:7 28914:2 28916:2 28919:1 28921:1 28924:3 28925:2 28941:1 28959:2 28961:3 28963:3 29003:1
9 11:1 14:1 34:1 37:2 56:1 60:1 65:1 79:1 83:1 89:1 90:1 103:1 109:1 113:1 117:1 125:1 143:1 150:1 153:3 162:1 170:4 189:5 214:1 245:1 270:1 282:2 293:1 295:19 303:2 315:1 316:3 318:4 326:1 333:1 348:1 363:1 381:1 403:2 424:3 432:1 442:1 444:1 515:1 523:1 561:1 563:4 564:1 569:1 572:3 590:2 596:2 598:1 600:1 613:2 626:1 634:1 638:1 643:1 650:1 674:1 678:1 685:1 692:1 702:1 716:1 734:1 748:1 752:1 767:1 770:1 788:1 795:1 804:1 805:1 807:2 808:1 830:5 832:3 842:1 843:1 855:1 856:11 860:1 867:1 871:1 875:2 877:3 879:7 885:1 892:1 893:1 899:1 905:3 924:1 925:2 941:1 963:1 974:3 989:1 996:2 998:1 1002:1 1019:1 1020:2 1027:1 1045:1 1059:1 1061:1 1078:1 1087:1 1089:1 1092:1 1104:2 1112:2 1117:1 1136:1 1143:1 1148:3 1152:1 1160:1 1163:1 1179:1 1207:2 1231:1 1232:1 1241:1 1244:1 1257:1 1262:1 1276:1 1284:1 1287:1 1313:1 1330:1 1355:1 1374:2 1376:1 1397:2 1400:1 1401:5 1402:1 1417:1 1419:1 1420:1 1422:1 1423:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1506:2 1507:1 1508:1 1516:2 1543:1 1547:1 1555:1 1557:1 1560:1 1562:2 1564:3 1571:1 1596:3 1598:1 1617:1 1619:2 1627:3 1634:2 1659:1 1660:1 1678:1 1699:1 1743:1 1760:1 1762:1 1778:4 1789:1 1794:1 1802:1 1811:1 1819:1 1830:1 1895:9 1903:1 1907:2 1919:1 1923:1 1929:1 1935:1 1936:1 1952:1 1962:7 1963:1 1965:2 1993:1 1998:1 2006:2 2011:3 2082:1 2085:1 2089:3 2095:2 2100:1 2101:1 2105:1 2108:1 2132:1 2142:1 2154:1 2156:1 2159:3 2160:1 2162:1 2165:1 2172:1 2174:3 2177:1 2178:2 2179:4 2181:1 2190:2 2207:1 2212:1 2216:2 2219:2 2220:2 2221:7 2223:4 2226:1 2227:2 2228:3 2232:1 2233:1 2234:1 2237:2 2239:1 2245:1 2247:1 2249:1 2251:6 2252:2 2253:6 2264:1 2268:1 2279:1 2297:1 2309:1 2315:1 2322:1 2336:1 2339:1 2343:1 2347:1 2358:3 2370:2 2374:1 2376:1 2392:2 2410:2 2421:5 2433:1 2445:1 2461:1 2465:1 2473:1 2485:5 2494:2 2500:1 2522:2 2536:1 2543:2 2552:3 2561:2 2563:1 2570:1 2580:2 2609:2 2631:1 2648:1 2651:2 2656:1 2659:1 2667:2 2670:1 2672:1 2675:1 2683:1 2688:1 2691:1 2704:1 2708:1 2712:1 2713:1 2723:1 2730:3 2756:1 2760:1 2761:2 2762:1 2766:5 2770:2 2775:2 2780:1 2782:1 2810:1 2813:1 2816:1 2836:1 2854:2 2857:1 2867:20 2883:4 2888:1 2900:2 2909:1 2931:1 2936:11 2961:1 2965:4 2968:1 2969:1 2989:1 3023:1 3026:1 3074:3 3075:1 3089:1 3105:1 3106:1 3112:1 3166:1 3188:1 3197:1 3205:1 3224:1 3231:1 3232:4 3243:1 3248:1 3256:1 3266:1 3271:1 3293:1 3295:3 3338:1 3352:1 3357:8 3397:1 3407:1 3420:2 3424:1 3459:1 3471:1 3472:1 3475:2 3478:1 3488:1 3489:1 3495:1 3517:1 3528:1 3540:2 3548:1 3558:1 3570:1 3574:1 3577:1 3580:2 3582:3 3599:4 3604:2 3605:1 3606:1 3607:2 3608:2 3615:1 3634:2 3638:1 3639:3 3647:1 3669:1 3680:1 3684:1 3687:1 3688:3 3692:1 3695:2 3698:2 3712:1 3730:1 3737:1 3740:1 3742:4 3744:1 3746:2 3748:9 3763:1 3779:1 3783:4 3784:1 3788:2 3789:11 3790:1 3792:1 3813:4 3817:1 3822:1 3835:1 3836:3 3838:1 3848:1 3851:1 3862:1 3866:1 3876:1 3883:1 3888:1 3895:1 3902:3 3904:1 3918:2 3919:1 3931:1 3939:1 3940:1 3943:1 3948:1 3964:3 3970:1 3972:1 3977:2 3982:1 3988:2 3989:2 3998:4 3999:2 4005:1 4019:1 4033:1 4040:1 4054:2 4069:1 4078:1 4085:2 4093:1 4113:1 4125:1 4129:1 4136:1 4137:1 4173:1 4190:2 4193:2 4201:1 4204:1 4219:1 4254:1 4270:2 4272:2 4282:1 4298:1 4314:2 4348:1 4362:5 4378:1 4414:1 4416:1 4428:2 4434:1 4439:2 4455:1 4491:1 4494:1 4528:1 4560:1 4562:1 4583:1 4605:1 4613:1 4619:2 4626:3 4640:1 4646:1 4657:1 4658:1 4676:1 4691:1 4695:7 4724:1 4731:1 4742:1 4746:1 4759:1 4768:1 4773:6 4776:1 4787:1 4788:2 4815:1 4818:1 4851:2 4867:1 4876:18 4878:2 4881:1 4895:2 4903:1 4925:1 4928:7 4940:2 4963:1 4964:1 4980:1 4981:1 4984:1 4985:6 5003:3 5005:4 5006:1 5008:1 5013:3 5014:1 5015:1 5017:1 5022:1 5026:1 5028:2 5030:3 5031:1 5033:1 5041:1 5042:1 5045:4 5046:2 5064:1 5090:1 5131:2 5133:1 5157:2 5176:1 5177:1 5184:2 5190:1 5195:2 5203:2 5219:1 5220:1 5237:1 5245:2 5249:2 5255:1 5280:1 5302:1 5306:1 5307:1 5328:1 5351:2 5358:5 5362:1 5365:1 5369:2 5371:2 5386:1 5394:1 5404:2 5423:1 5429:1 5434:2 5453:1 5480:1 5493:1 5501:1 5511:2 5524:2 5534:1 5535:2 5538:2 5540:2 5548:1 5551:1 5556:1 5563:1 5564:1 5582:3 5584:1 5589:1 5593:1 5607:1 5615:2 5629:2 5639:1 5640:1 5663:3 5680:1 5681:2 5694:1 5701:2 5705:1 5720:4 5721:1 5728:1 5744:1 5749:1 5773:1 5801:1 5802:1 5812:1 5843:2 5850:1 5852:1 5855:1 5877:1 5881:2 5898:1 5920:1 5942:1 5947:2 5949:1 5972:12 5987:4 5992:4 6000:1 6006:3 6007:1 6009:2 6017:1 6039:2 6040:1 6053:1 6056:1 6110:1 6130:1 6137:2 6138:1 6142:1 6150:1 6153:2 6176:5 6178:1 6182:1 6192:1 6197:1 6199:1 6220:1 6245:1 6247:1 6259:3 6262:1 6263:1 6265:1 6270:1 6273:1 6274:2 6275:1 6276:4 6279:2 6282:4 6283:9 6284:5 6286:1 6316:1 6334:1 6379:3 6420:2 6435:1 6482:2 6493:1 6502:1 6507:1 6513:1 6531:1 6536:1 6537:1 6542:1 6556:1 6558:1 6565:1 6598:1 6609:1 6613:1 6652:1 6653:1 6654:2 6677:1 6679:2 6689:1 6699:5 6715:2 6722:2 6728:1 6741:1 6744:1 6751:1 6757:1 6777:1 6795:1 6810:2 6811:1 6823:2 6851:1 6854:2 6855:2 6860:3 6866:1 6871:1 6885:3 6886:2 6903:1 6906:1 6914:1 6918:1 6919:2 6922:2 6932:1 6948:1 6987:1 6999:1 7049:1 7050:10 7052:1 7067:1 7073:2 7074:2 7091:1 7097:1 7099:1 7102:1 7124:1 7125:1 7155:2 7169:1 7180:1 7198:2 7218:2 7234:1 7248:2 7263:3 7278:1 7287:2 7288:1 7290:1 7297:1 7303:1 7311:1 7322:1 7334:3 7346:3 7347:1 7352:1 7367:2 7371:1 7382:1 7383:1 7386:2 7401:1 7407:2 7427:1 7463:2 7499:2 7516:1 7518:1 7554:2 7555:9 7556:2 7570:2 7580:2 7582:2 7584:1 7603:4 7604:1 7620:46 7622:1 7643:2 7644:11 7645:1 7648:1 7665:1 7671:2 7685:1 7696:1 7700:1 7710:1 7720:1 7725:2 7734:1 7751:1 7755:1 7758:2 7786:1 7826:2 7851:2 7871:1 7878:1 7892:1 7897:4 7928:1 7931:1 7943:1 7962:1 8004:1 8007:1 8032:1 8037:1 8043:2 8044:3 8045:1 8046:1 8062:1 8063:1 8107:1 8116:2 8124:1 8130:2 8136:1 8142:2 8154:1 8156:5 8180:2 8184:1 8186:1 8194:1 8236:1 8254:1 8270:1 8299:1 8301:2 8311:2 8319:2 8334:1 8336:1 8358:1 8367:2 8369:2 8376:3 8379:1 8383:3 8387:2 8394:1 8395:3 8405:1 8412:1 8422:1 8430:5 8438:1 8441:1 8449:1 8460:1 8468:1 8480:1 8490:1 8497:1 8500:3 8501:5 8503:4 8504:1 8505:2 8508:3 8510:6 8512:2 8513:2 8516:1 8526:2 8543:4 8549:1 8550:3 8567:3 8571:1 8572:2 8575:2 8578:1 8582:1 8586:3 8604:1 8640:2 8655:1 8657:1 8679:1 8688:1 8710:1 8719:1 8728:1 8739:1 8756:2 8762:1 8772:2 8779:2 8808:1 8810:1 8811:3 8815:2 8827:3 8833:1 8840:1 8846:1 8857:1 8914:1 8921:1 8929:1 8936:2 8950:4 8954:2 8971:1 8992:2 9001:1 9011:1 9019:1 9022:2 9023:1 9035:1 9040:1 9050:1 9057:1 9065:1 9068:1 9069:1 9077:3 9107:1 9115:2 9121:1 9128:1 9134:1 9139:1 9142:1 9151:1 9162:1 9196:1 9200:1 9207:7 9209:1 9216:2 9219:1 9226:19 9230:1 9231:1 9246:2 9247:1 9261:1 9275:1 9305:1 9314:1 9319:1 9329:1 9338:2 9349:1 9360:2 9363:6 9365:1 9390:1 9392:1 9421:1 9427:1 9433:3 9448:1 9490:1 9497:1 9528:1 9529:1 9537:1 9539:1 9555:1 9558:1 9568:1 9569:4 9574:1 9582:1 9586:3 9594:2 9601:1 9608:2 9634:2 9652:1 9663:7 9676:1 9677:4 9687:2 9689:1 9700:1 9704:1 9712:1 9713:1 9746:3 9789:1 9829:1 9847:6 9850:1 9856:1 9862:1 9871:3 9877:2 9880:1 9883:2 9887:1 9890:1 9898:3 9911:1 9913:1 9917:1 9919:1 9928:2 9929:1 9932:1 9938:1 9939:1 9954:1 9956:1 9968:4 9987:1 9996:1 10019:1 10037:1 10038:1 10065:1 10073:1 10094:1 10124:1 10125:1 10126:1 10135:2 10178:1 10191:1 10200:1 10234:1 10241:1 10266:2 10280:1 10302:1 10328:2 10329:1 10347:3 10351:2 10359:2 10370:1 10372:1 10405:1 10436:1 10448:1 10478:2 10486:1 10488:1 10504:2 10507:2 10513:4 10521:1 10523:1 10524:1 10526:1 10537:1 10539:2 10555:2 10557:3 10558:1 10564:1 10573:1 10582:2 10583:2 10590:1 10592:2 10593:1 10621:1 10641:1 10657:7 10665:4 10683:2 10686:10 10737:1 10740:1 10747:1 10748:1 10783:2 10787:1 10824:1 10839:1 10846:1 10857:1 10901:1 10903:3 10905:2 10909:2 10910:2 10921:2 10931:2 10937:1 10943:1 10947:1 10953:1 10962:1 10969:1 10989:6 10992:1 11010:4 11014:1 11016:1 11018:1 11062:1 11063:1 11064:2 11066:1 11071:1 11083:1 11094:1 11100:1 11106:1 11107:1 11118:1 11145:1 11147:1 11175:1 11177:1 11188:1 11197:1 11203:4 11208:1 11230:1 11234:1 11248:1 11260:1 11268:2 11278:2 11284:1 11285:1 11300:2 11301:1 11302:2 11308:1 11315:2 11317:1 11333:4 11341:1 11367:1 11370:9 11371:1 11400:1 11401:1 11407:1 11430:1 11442:1 11444:2 11466:1 11468:1 11469:1 11476:1 11477:1 11481:2 11501:1 11506:1 11509:2 11514:1 11520:2 11526:2 11530:6 11547:1 11549:1 11550:5 11580:1 11587:1 11600:1 11603:3 11609:1 11614:1 11615:2 11619:3 11622:1 11631:1 11632:2 11633:1 11636:2 11641:2 11645:1 11649:1 11664:5 11671:1 11684:6 11690:1 11693:1 11711:1 11716:1 11734:1 11755:1 11772:2 11789:1 11824:1 11826:1 11852:1 11865:3 11871:1 11877:1 11891:1 11908:1 11916:1 11924:1 11931:3 11936:3 11952:1 11973:3 11990:1 11997:1 12004:1 12005:1 12025:1 12107:1 12109:1 12110:2 12111:3 12115:2 12125:1 12132:1 12154:1 12156:1 12165:2 12166:4 12172:2 12178:1 12184:2 12239:1 12243:1 12250:1 12263:1 12272:1 12276:2 12281:6 12302:1 12323:2 12337:1 12345:1 12346:1 12349:2 12361:2 12362:1 12376:2 12380:2 12398:1 12405:1 12420:1 12431:1 12458:1 12464:1 12472:1 12476:1 12477:2 12480:1 12493:1 12495:1 12508:1 12515:1 12526:2 12534:1 12608:6 12621:1 12633:1 12635:1 12636:1 12648:14 12654:1 12658:1 12668:2 12671:5 12676:1 12681:1 12701:1 12708:2 12733:2 12764:1 12769:2 12772:2 12789:1 12796:2 12797:1 12813:1 12827:3 12831:1 12835:1 12837:1 12861:1 12888:1 12914:1 12949:5 12984:1 12999:1 13045:6 13049:1 13066:2 13072:1 13076:4 13080:4 13087:1 13093:1 13094:6 13128:1 13142:1 13143:1 13144:1 13166:3 13206:1 13211:1 13213:1 13224:6 13231:1 13232:2 13233:1 13250:1 13252:2 13263:1 13275:2 13278:1 13282:1 13283:1 13301:1 13302:4 13306:1 13310:1 13320:2 13331:1 13341:1 13346:1 13364:2 13372:4 13376:1 13396:1 13416:3 13420:1 13421:2 13454:1 13468:2 13490:1 13524:1 13557:1 13561:1 13599:3 13601:2 13606:4 13607:2 13610:1 13620:1 13628:1 13633:1 13654:3 13680:3 13691:2 13694:1 13697:1 13698:1 13723:1 13733:6 13745:1 13764:1 13779:2 13782:1 13788:2 13799:1 13827:7 13832:3 13833:1 13838:1 13847:1 13886:1 13895:1 13904:3 13931:8 13942:1 13963:1 13974:1 13980:2 14006:1 14018:1 14024:1 14029:1 14054:1 14076:6 14089:1 14107:3 14119:1 14134:1 14140:1 14152:1 14161:1 14179:1 14180:1 14212:1 14223:1 14235:1 14245:1 14255:1 14266:1 14274:2 14284:1 14297:1 14299:3 14312:1 14313:1 14317:2 14318:6 14324:1 14325:6 14335:3 14339:1 14340:1 14347:1 14358:1 14361:1 14376:1 14385:1 14433:1 14434:1 14449:4 14482:2 14485:1 14489:2 14492:1 14498:2 14523:1 14533:3 14551:1 14554:1 14573:1 14591:2 14600:2 14614:1 14616:2 14623:1 14636:2 14637:1 14647:4 14650:1 14664:2 14674:1 14683:2 14700:1 14701:1 14761:1 14775:1 14785:1 14798:1 14820:3 14821:1 14823:1 14824:1 14836:1 14837:1 14881:1 14883:1 14891:4 14893:1 14910:1 14912:1 14916:2 14935:1 14936:4 14938:2 14961:2 14970:1 14984:1 14986:1 14999:1 15000:1 15020:6 15022:1 15024:1 15037:1 15085:1 15117:1 15123:3 15125:1 15130:1 15134:1 15145:1 15146:2 15158:1 15173:1 15177:2 15178:1 15180:1 15207:1 15217:1 15233:1 15245:2 15259:2 15301:2 15322:1 15332:7 15345:1 15385:2 15395:1 15398:1 15403:1 15404:4 15414:4 15420:1 15424:1 15431:1 15435:1 15436:1 15440:1 15453:2 15455:1 15459:2 15471:1 15482:2 15509:1 15539:1 15556:1 15563:2 15568:1 15571:1 15578:5 15581:2 15590:1 15591:3 15598:1 15607:2 15614:2 15622:1 15624:1 15625:4 15626:2 15631:1 15637:1 15642:1 15644:1 15678:1 15679:1 15687:1 15711:1 15717:1 15745:6 15750:1 15757:1 15763:1 15777:1 15785:3 15814:1 15831:6 15832:3 15835:1 15871:1 15879:3 15893:1 15896:1 15909:3 15911:2 15913:1 15923:1 15957:1 15967:1 15973:2 16014:1 16026:1 16029:15 16030:1 16048:2 16055:1 16095:2 16103:1 16119:3 16122:1 16127:1 16137:1 16149:1 16150:1 16164:1 16172:1 16177:2 16190:2 16194:1 16196:1 16237:1 16242:2 16285:2 16288:1 16289:1 16290:2 16310:1 16338:1 16353:1 16363:1 16398:1 16400:1 16403:2 16475:1 16482:1 16488:1 16489:1 16505:1 16511:1 16527:1 16528:1 16546:1 16555:2 16575:1 16588:1 16589:1 16597:1 16605:1 16614:1 16639:1 16662:1 16666:2 16675:2 16685:2 16702:1 16708:1 16714:3 16716:2 16718:1 16738:1 16747:1 16758:1 16761:1 16776:1 16789:2 16802:1 16828:1 16830:1 16840:2 16843:1 16844:4 16851:1 16867:1 16874:1 16883:1 16905:1 16908:1 16915:8 16929:1 16930:1 16932:1 16939:1 16942:1 16947:2 16966:4 16991:1 16995:2 17013:2 17042:1 17046:1 17050:1 17053:1 17059:5 17067:1 17091:3 17092:1 17106:1 17110:1 17136:2 17138:2 17155:3 17156:2 17167:1 17172:1 17179:1 17186:1 17187:2 17198:2 17199:7 17200:1 17207:2 17210:1 17244:1 17251:1 17265:1 17270:2 17277:2 17327:1 17346:1 17360:1 17363:3 17369:1 17374:2 17397:1 17401:1 17422:1 17445:1 17447:1 17448:3 17454:2 17455:1 17456:1 17463:2 17475:3 17476:2 17509:1 17511:1 17522:5 17523:3 17558:1 17560:2 17585:1 17587:1 17592:7 17604:1 17631:1 17636:1 17644:2 17647:1 17648:1 17652:1 17662:1 17664:1 17665:4 17667:1 17669:1 17670:1 17683:1 17691:1 17692:1 17698:1 17707:1 17721:1 17722:3 17747:1 17753:2 17767:7 17772:3 17781:22 17785:1 17787:1 17790:1 17794:1 17812:2 17819:1 17822:1 17838:1 17845:1 17852:1 17855:1 17860:1 17871:1 17872:1 17873:1 17875:1 17882:1 17886:1 17896:4 17907:1 17922:1 17931:5 17962:1 17967:1 17977:2 17979:1 17989:1 17994:1 17998:2 18007:3 18009:1 18011:1 18019:1 18032:1 18045:1 18056:1 18067:1 18080:1 18084:1 18120:1 18133:1 18150:1 18152:2 18167:1 18169:1 18170:1 18178:1 18212:1 18219:2 18220:1 18249:2 18315:4 18323:1 18331:1 18348:1 18357:1 18380:2 18381:1 18399:2 18417:4 18424:1 18444:1 18449:1 18461:1 18471:2 18476:2 18478:2 18481:1 18495:1 18498:1 18504:3 18509:1 18516:1 18519:1675 18524:1 18534:1 18538:1 18572:2 18573:1 18582:3 18608:1 18643:2 18648:2 18668:2 18690:1 18702:1 18708:2 18715:6 18720:1 18725:5 18727:2 18728:4 18748:2 18763:1 18802:6 18808:1 18810:1 18816:1 18840:1 18842:19 18861:1 18863:7 18904:1 18907:1 18915:1 18920:1 18930:2 18938:1 18947:1 18968:1 18969:1 18971:1 18982:2 18991:2 19007:1 19008:1 19017:1 19033:1 19055:2 19061:1 19079:1 19089:1 19091:1 19113:1 19135:2 19140:2 19142:3 19174:2 19176:3 19180:1 19187:1 19190:1 19192:1 19197:3 19202:1 19210:1 19218:1 19228:5 19235:1 19257:2 19271:2 19293:1 19298:9 19314:1 19315:1 19335:6 19336:1 19350:1 19359:1 19370:1 19412:1 19420:2 19442:2 19475:1 19482:1 19494:1 19507:4 19508:1 19515:3 19516:2 19531:1 19534:1 19549:1 19550:3 19551:1 19563:1 19566:1 19573:1 19592:2 19600:1 19605:1 19628:1 19634:1 19661:3 19674:1 19680:1 19708:2 19719:1 19720:1 19724:1 19735:2 19742:1 19745:1 19751:1 19752:1 19754:1 19767:2 19771:3 19775:3 19778:1 19784:4 19794:1 19816:1 19818:1 19829:1 19833:1 19839:2 19859:1 19862:1 19876:2 19881:1 19904:2 19909:2 19918:1 19936:1 19948:1 19949:4 19953:1 19964:1 19966:1 19978:2 19992:1 19996:1 20003:1 20004:1 20017:1 20020:1 20031:1 20032:1 20036:1 20037:1 20052:1 20061:2 20068:1 20074:1 20079:1 20084:1 20086:1 20117:1 20118:2 20137:1 20159:5 20187:1 20211:6 20212:2 20218:2 20226:1 20231:1 20237:1 20272:1 20281:1 20283:3 20293:2 20299:1 20302:1 20313:1 20404:3 20406:4 20420:1 20443:1 20453:1 20454:1 20455:6 20465:2 20466:1 20467:1 20468:3 20474:1 20495:1 20525:1 20530:1 20531:2 20547:1 20567:4 20577:1 20594:1 20599:1 20600:1 20604:1 20643:1 20652:1 20656:1 20658:3 20671:1 20677:4 20679:1 20683:1 20685:1 20686:1 20692:1 20701:1 20705:2 20710:1 20715:1 20716:1 20722:2 20730:1 20738:1 20747:4 20770:1 20780:2 20782:2 20783:1 20797:1 20823:1 20833:1 20846:1 20862:1 20900:1 20907:2 20918:1 20945:1 20948:2 20957:2 20979:6 20985:1 20986:1 20988:1 21010:1 21016:1 21019:2 21029:1 21049:1 21062:2 21075:1 21079:1 21080:1 21088:1 21091:1 21100:1 21107:1 21122:1 21137:2 21158:1 21169:1 21174:1 21196:1 21198:1 21201:1 21265:1 21289:1 21313:1 21320:1 21345:1 21357:1 21358:2 21371:1 21372:1 21374:2 21380:1 21386:2 21387:3 21392:1 21397:1 21405:1 21406:1 21407:1 21415:1 21442:2 21444:1 21448:1 21459:1 21472:4 21488:1 21490:1 21493:1 21498:2 21499:2 21503:1 21504:1 21509:2 21518:1 21520:1 21523:1 21528:1 21538:1 21544:1 21548:8 21551:1 21567:1 21568:1 21569:1 21580:1 21616:1 21634:1 21647:2 21648:1 21654:2 21663:1 21670:1 21675:8 21684:1 21691:1 21695:3 21712:1 21714:2 21715:1 21724:1 21750:1 21771:1 21778:1 21809:1 21812:3 21822:1 21824:1 21826:1 21827:1 21829:1 21830:1 21846:1 21848:3 21867:2 21870:1 21885:1 21901:1 21916:2 21937:1 21941:1 21952:1 21967:1 21971:1 21994:3 22009:3 22012:2 22016:3 22021:1 22025:1 22052:1 22059:1 22061:1 22065:2 22077:2 22080:1 22096:3 22135:1 22144:1 22150:1 22173:4 22174:5 22178:3 22180:1 22189:2 22190:1 22212:1 22223:2 22230:1 22236:1 22243:1 22248:1 22252:3 22257:2 22258:3 22265:1 22277:2 22291:1 22293:1 22294:2 22295:1 22302:1 22315:2 22318:1 22329:2 22331:1 22332:1 22336:1 22337:1 22345:3 22357:1 22362:2 22368:1 22391:3 22392:1 22406:2 22412:1 22414:22 22419:1 22420:2 22422:4 22425:1 22426:2 22427:1 22430:1 22432:1 22434:1 22453:3 22455:1 22461:1 22464:2 22467:1 22473:2 22493:2 22495:1 22496:1 22507:1 22529:1 22538:1 22542:1 22579:2 22585:1 22593:4 22599:1 22616:2 22621:1 22634:1 22646:1 22672:1 22674:1 22676:2 22679:1 22680:1 22687:1 22691:3 22692:1 22695:1 22699:2 22705:1 22721:2 22726:2 22736:1 22737:1 22758:1 22777:1 22782:1 22784:1 22788:1 22808:1 22837:1 22848:1 22867:1 22878:1 22896:2 22902:1 22919:1 22921:1 22931:1 22935:1 22947:2 22948:1 22962:2 22964:1 22980:3 22981:1 22982:1 22998:3 23001:2 23021:2 23024:1 23027:1 23033:2 23038:1 23099:1 23143:1 23148:1 23165:1 23184:3 23188:1 23195:1 23196:1 23207:2 23227:2 23234:2 23235:1 23239:1 23241:1 23248:1 23254:1 23275:2 23283:3 23297:1 23299:1 23302:1 23310:1 23326:1 23340:1 23343:1 23349:1 23352:1 23361:11 23368:1 23394:2 23403:1 23408:1 23437:1 23439:1 23441:1 23452:1 23494:1 23504:1 23519:1 23520:1 23532:2 23545:1 23559:2 23568:1 23581:1 23591:1 23592:1 23600:1 23616:4 23618:1 23620:1 23635:1 23647:1 23651:1 23659:2 23720:1 23722:1 23732:3 23736:1 23744:1 23749:2 23774:1 23785:1 23798:1 23806:1 23814:1 23831:1 23832:1 23875:2 23884:5 23885:1 23896:4 23899:1 23910:1 23918:2 23919:1 23920:1 23928:1 23939:2 23941:1 23966:2 23973:1 23979:1 23994:2 23995:1 23996:1 24001:1 24025:1 24030:1 24044:1 24052:1 24057:2 24058:3 24064:1 24068:1 24093:1 24098:1 24101:1 24114:1 24124:1 24146:1 24150:1 24156:1 24159:2 24160:1 24162:6 24164:2 24166:4 24167:2 24171:1 24172:2 24174:2 24175:1 24182:2 24183:2 24187:2 24193:2 24206:2 24233:1 24236:2 24237:1 24242:1 24247:2 24263:3 24267:3 24291:1 24295:1 24297:1 24307:2 24321:1 24342:1 24345:1 24347:1 24348:1 24362:1 24390:1 24401:1 24402:1 24419:3 24440:2 24448:1 24450:4 24453:1 24464:2 24508:1 24512:1 24524:1 24547:2 24548:1 24558:1 24571:1 24582:1 24584:1 24609:1 24630:3 24645:1 24654:1 24658:1 24665:2 24707:3 24746:1 24757:2 24763:1 24772:1 24780:1 24783:4 24791:1 24797:1 24810:1 24816:1 24822:4 24878:1 24899:1 24912:1 24915:2 24946:9 24955:1 24969:7 24990:1 24997:1 25005:1 25015:2 25028:1 25038:2 25041:1 25042:1 25046:1 25047:1 25089:1 25093:2 25099:2 25104:1 25109:1 25111:2 25114:4 25122:1 25137:1 25139:2 25141:7 25144:2 25145:1 25155:1 25162:1 25167:2 25170:1 25177:1 25182:1 25214:2 25219:1 25225:4 25230:1 25247:3 25258:2 25259:2 25319:1 25320:1 25335:1 25342:1 25345:1 25356:1 25384:1 25386:1 25401:1 25410:1 25412:2 25413:1 25416:2 25425:1 25436:5 25465:1 25468:1 25473:1 25488:1 25515:1 25557:1 25561:1 25576:1 25600:1 25618:1 25663:1 25665:1 25676:1 25679:3 25680:2 25691:1 25700:1 25701:1 25708:1 25718:2 25726:1 25729:1 25742:1 25757:1 25759:2 25796:3 25804:1 25812:1 25816:2 25835:1 25838:4 25864:1 25865:4 25880:1 25901:1 25903:1 25906:2 25916:1 25929:1 25930:1 25936:1 25953:2 25971:2 25988:1 25992:4 25994:1 26021:3 26033:1 26038:1 26040:1 26042:1 26059:2 26087:1 26093:4 26112:2 26113:1 26114:1 26118:1 26122:1 26123:1 26127:3 26128:1 26133:1 26166:2 26170:1 26175:1 26182:1 26185:1 26221:2 26247:2 26249:1 26261:2 26267:1 26285:1 26290:2 26300:1 26309:1 26316:1 26332:2 26338:1 26339:1 26341:1 26352:1 26368:2 26373:5 26392:2 26453:1 26476:1 26478:1 26479:1 26482:1 26499:1 26504:1 26547:1 26548:1 26551:1 26556:1 26559:1 26569:1 26574:1 26582:1 26588:1 26599:1 26621:1 26622:1 26624:1 26641:1 26654:2 26657:1 26662:1 26667:2 26681:4 26700:3 26709:5 26721:1 26736:1 26737:1 26743:1 26759:1 26772:1 26778:1 26787:1 26788:8 26817:1 26838:1 26840:2 26844:1 26845:1 26847:1 26848:1 26856:11 26894:3 26933:2 26934:1 26938:1 26954:2 26960:5 26965:2 26967:2 26981:1 26985:2 26988:1 26994:2 27003:1 27006:1 27016:1 27022:1 27033:1 27036:1 27057:1 27058:1 27069:2 27070:1 27079:1 27090:1 27103:1 27108:1 27113:1 27136:1 27141:2 27143:1 27145:1 27147:1 27160:2 27187:1 27188:1 27229:1 27275:1 27279:1 27298:1 27330:1 27332:1 27342:1 27365:4 27368:1 27385:1 27392:1 27408:1 27412:1 27419:1 27465:1 27481:2 27517:1 27536:2 27549:1 27560:1 27563:6 27575:1 27595:1 27597:3 27627:2 27636:1 27662:1 27673:1 27675:1 27678:1 27687:24 27689:4 27692:5 27694:1 27695:3 27702:1 27724:7 27739:1 27777:1 27789:2 27804:1 27808:1 27820:1 27821:2 27832:1 27838:2 27859:9 27863:2 27867:1 27869:1 27874:1 27885:1 27887:1 27889:1 27893:2 27900:2 27906:1 27909:1 27917:2 27923:1 27930:1 27934:1 27935:2 27948:1 27951:1 27960:1 27964:1 27968:1 27969:1 28003:1 28011:1 28028:2 28030:1 28050:1 28051:1 28054:1 28068:3 28102:1 28126:1 28127:2 28128:1 28131:1 28174:1 28180:1 28183:1 28187:2 28193:1 28202:1 28204:1 28214:1 28218:1 28223:1 28292:1 28315:1 28319:1 28320:1 28341:1 28350:1 28356:1 28359:1 28362:1 28363:2 28373:1 28375:2 28380:1 28387:1 28397:6 28404:1 28409:1 28411:3 28413:1 28419:1 28461:1 28469:2 28470:1 28506:2 28514:1 28520:1 28536:2 28541:1 28543:2 28551:1 28553:1 28560:6 28594:1 28596:1 28648:1 28665:2 28685:2 28703:1 28709:1 28724:1 28734:1 28748:1 28761:2 28792:1 28801:7 28815:1 28816:1 28818:1 28836:6 28849:5 28850:1 28867:1 28904:1 28913:7 28914:2 28916:2 28919:1 28921:1 28924:3 28925:2 28941:1 28959:2 28961:3 28963:3 29003:1
9 11:1 14:1 24:1 34:1 37:2 56:1 60:1 65:1 79:1 83:1 89:1 90:1 103:1 109:1 113:1 117:1 125:1 143:1 150:1 153:3 162:1 170:4 189:7 214:1 245:1 270:1 282:2 293:1 295:20 303:2 315:1 316:3 318:4 326:1 333:1 348:1 363:1 381:1 403:2 424:3 432:1 442:1 444:1 515:1 523:1 561:1 563:4 564:1 569:1 572:3 590:3 596:2 598:1 600:1 613:2 626:1 634:2 638:1 643:1 650:1 674:1 678:1 685:1 692:1 702:1 716:1 734:1 735:1 748:1 752:1 767:1 770:1 788:1 795:1 804:1 805:1 807:2 808:1 828:1 830:6 832:3 842:1 843:1 855:1 856:11 860:1 867:1 871:1 875:2 877:3 879:7 885:1 889:1 892:1 893:1 899:1 905:3 916:1 924:2 925:2 941:1 963:1 974:3 989:1 996:2 998:1 1002:2 1019:1 1020:2 1027:1 1045:1 1059:1 1061:1 1078:1 1087:1 1089:2 1092:1 1104:2 1112:2 1117:1 1136:1 1143:1 1148:3 1152:1 1160:1 1163:1 1179:1 1207:2 1231:1 1232:1 1241:1 1244:1 1257:1 1262:1 1276:1 1284:1 1287:1 1313:1 1330:1 1353:1 1355:2 1374:2 1376:1 1397:2 1400:1 1401:5 1402:1 1417:1 1419:2 1420:1 1422:1 1423:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1506:2 1507:1 1508:1 1516:2 1543:1 1547:1 1555:1 1557:1 1560:1 1562:2 1564:3 1571:1 1596:4 1598:1 1617:1 1619:2 1627:3 1634:2 1659:1 1660:1 1677:1 1678:1 1699:1 1743:2 1757:1 1760:1 1762:1 1778:4 1789:1 1794:1 1802:1 1811:1 1819:1 1828:1 1830:1 1895:10 1903:1 1907:2 1919:1 1923:1 1929:1 1935:1 1936:1 1952:1 1962:7 1963:1 1965:2 1993:1 1998:1 2006:2 2011:3 2082:1 2085:1 2089:3 2095:2 2100:1 2101:1 2105:1 2108:1 2132:1 2142:1 2154:1 2156:1 2158:1 2159:3 2160:1 2162:1 2165:1 2172:1 2174:3 2177:1 2178:2 2179:4 2181:1 2190:2 2191:1 2207:1 2212:1 2216:2 2219:2 2220:2 2221:7 2223:4 2226:1 2227:2 2228:4 2232:1 2233:1 2234:1 2237:2 2239:1 2245:1 2247:1 2249:1 2251:6 2252:2 2253:7 2264:1 2268:1 2279:1 2297:1 2309:2 2315:1 2322:1 2336:1 2339:1 2343:1 2347:1 2358:3 2370:3 2374:1 2376:1 2392:2 2410:3 2421:6 2433:1 2445:1 2461:1 2465:1 2473:1 2485:5 2494:3 2500:1 2522:2 2536:1 2543:2 2552:3 2561:2 2563:1 2570:1 2580:2 2609:2 2631:1 2648:1 2651:3 2656:1 2659:1 2667:2 2670:1 2672:1 2675:1 2683:1 2688:1 2691:1 2704:1 2708:1 2712:1 2713:1 2723:1 2730:3 2756:1 2760:1 2761:2 2762:1 2766:5 2770:2 2775:2 2780:1 2782:1 2810:1 2813:1 2816:1 2818:1 2836:1 2854:3 2857:1 2867:21 2883:4 2888:1 2900:2 2909:1 2931:1 2936:11 2961:1 2965:4 2968:1 2969:1 2989:1 3023:1 3026:1 3074:3 3075:1 3089:1 3097:1 3105:1 3106:1 3112:1 3166:1 3188:2 3197:1 3205:1 3224:1 3231:1 3232:4 3243:1 3248:1 3256:1 3266:1 3271:1 3293:1 3295:3 3338:1 3352:1 3357:8 3397:1 3407:1 3420:2 3424:2 3459:1 3471:1 3472:1 3475:2 3478:1 3488:1 3489:1 3495:2 3517:1 3528:1 3540:2 3548:1 3558:1 3570:1 3574:1 3577:1 3580:2 3582:3 3599:4 3604:2 3605:1 3606:1 3607:2 3608:2 3615:1 3634:2 3638:1 3639:4 3647:1 3648:1 3669:1 3680:1 3684:1 3687:1 3688:3 3692:1 3695:2 3698:2 3712:1 3730:1 3737:1 3740:1 3742:4 3744:1 3746:2 3748:10 3763:1 3779:1 3783:4 3784:1 3788:2 3789:11 3790:1 3792:1 3796:1 3810:1 3813:5 3817:1 3822:1 3835:1 3836:3 3838:1 3848:1 3851:1 3862:1 3866:1 3876:1 3883:1 3888:1 3895:1 3902:3 3904:2 3918:2 3919:1 3931:1 3939:1 3940:1 3943:1 3948:1 3964:3 3970:1 3972:1 3977:2 3982:1 3987:1 3988:2 3989:2 3998:4 3999:2 4005:1 4019:1 4033:1 4040:1 4054:2 4069:1 4078:1 4085:2 4093:1 4113:1 4125:1 4129:1 4136:1 4137:1 4173:1 4190:2 4193:2 4201:1 4204:1 4219:1 4254:1 4270:2 4272:2 4282:1 4298:1 4314:2 4348:1 4362:5 4378:1 4414:1 4416:1 4428:2 4434:1 4439:2 4455:1 4491:1 4494:1 4528:1 4554:1 4560:1 4562:1 4583:1 4605:1 4613:1 4619:2 4626:3 4640:1 4646:1 4657:1 4658:1 4676:1 4691:1 4695:8 4724:1 4731:1 4742:1 4746:1 4759:1 4768:1 4773:6 4776:1 4787:1 4788:2 4815:1 4818:1 4851:3 4867:1 4876:19 4878:2 4881:1 4895:2 4903:1 4917:1 4925:1 4928:7 4940:2 4963:1 4964:1 4980:1 4981:1 4984:1 4985:6 5003:3 5005:4 5006:1 5008:1 5013:3 5014:1 5015:1 5017:2 5022:1 5026:1 5028:2 5030:3 5031:1 5033:1 5041:1 5042:1 5045:4 5046:2 5064:1 5090:1 5125:1 5131:2 5133:1 5157:2 5176:1 5177:1 5184:2 5190:1 5195:2 5203:2 5219:1 5220:1 5237:1 5245:2 5249:2 5255:1 5280:1 5302:1 5306:1 5307:1 5328:1 5351:2 5358:6 5362:1 5365:1 5369:2 5371:2 5386:1 5394:1 5404:2 5423:1 5429:1 5434:2 5438:1 5453:1 5480:1 5493:1 5501:1 5511:2 5524:2 5534:1 5535:2 5538:2 5540:2 5548:1 5551:1 5556:1 5563:1 5564:1 5582:3 5584:1 5589:1 5593:1 5607:1 5615:2 5629:3 5639:1 5640:1 5663:3 5680:1 5681:2 5694:1 5701:3 5705:1 5720:4 5721:1 5728:1 5744:1 5749:1 5773:1 5801:1 5802:1 5812:1 5843:2 5850:1 5852:1 5855:1 5877:1 5881:2 5898:1 5920:1 5942:1 5947:2 5949:1 5972:12 5987:4 5992:4 6000:1 6001:1 6006:3 6007:1 6009:2 6017:1 6039:3 6040:1 6053:1 6056:1 6110:1 6130:1 6137:2 6138:1 6142:1 6150:1 6153:2 6176:5 6178:1 6182:1 6192:1 6197:1 6199:1 6220:1 6244:1 6245:1 6247:1 6259:3 6262:1 6263:1 6265:1 6269:1 6270:1 6273:1 6274:2 6275:1 6276:4 6279:2 6282:4 6283:9 6284:5 6286:1 6316:1 6334:1 6379:3 6420:2 6435:2 6482:2 6493:1 6502:1 6507:1 6513:1 6531:1 6536:1 6537:1 6542:1 6556:1 6558:1 6565:1 6598:1 6609:1 6613:1 6652:1 6653:1 6654:2 6677:1 6679:2 6680:1 6689:1 6699:7 6715:2 6722:2 6728:1 6741:1 6744:1 6751:1 6757:1 6777:1 6795:1 6810:2 6811:1 6823:2 6851:1 6854:2 6855:2 6860:3 6866:1 6871:1 6885:3 6886:2 6903:1 6906:1 6914:1 6918:1 6919:2 6922:2 6927:1 6932:1 6939:1 6948:1 6987:1 6999:1 7049:1 7050:10 7052:1 7067:1 7073:2 7074:2 7091:1 7097:1 7099:1 7102:1 7124:1 7125:1 7155:2 7169:1 7180:1 7198:2 7218:2 7234:1 7248:2 7263:3 7274:1 7278:1 7287:2 7288:1 7290:1 7297:1 7303:1 7311:1 7322:1 7334:3 7346:3 7347:1 7352:1 7367:2 7371:1 7382:2 7383:1 7386:2 7401:1 7407:2 7427:1 7463:2 7485:1 7499:2 7516:1 7518:1 7554:2 7555:11 7556:3 7570:2 7580:2 7582:2 7584:1 7603:4 7604:1 7620:49 7622:1 7643:3 7644:11 7645:1 7648:1 7665:1 7671:2 7685:1 7696:1 7700:1 7710:1 7720:1 7725:2 7734:1 7751:1 7755:1 7758:2 7786:1 7826:2 7851:3 7871:1 7878:1 7892:1 7897:4 7928:1 7931:1 7943:1 7962:1 7967:1 8004:1 8007:1 8032:1 8037:1 8043:2 8044:3 8045:1 8046:1 8062:1 8063:1 8107:1 8110:1 8116:2 8124:1 8130:2 8136:1 8142:2 8145:1 8154:1 8156:5 8180:2 8184:1 8186:1 8194:1 8236:1 8254:1 8270:1 8299:1 8301:2 8311:2 8319:2 8334:1 8336:1 8358:1 8367:2 8369:2 8376:3 8379:1 8383:3 8387:2 8394:1 8395:3 8405:1 8412:1 8422:1 8430:5 8438:1 8441:1 8449:1 8460:1 8468:1 8480:1 8490:1 8497:1 8500:3 8501:5 8503:4 8504:1 8505:2 8508:3 8510:6 8512:2 8513:2 8516:1 8525:1 8526:2 8543:4 8549:1 8550:3 8567:3 8571:1 8572:2 8575:2 8578:2 8582:1 8586:4 8604:1 8640:2 8655:1 8657:1 8679:1 8688:1 8710:1 8719:1 8728:1 8739:1 8756:2 8762:1 8772:2 8779:3 8808:1 8810:1 8811:3 8815:2 8827:3 8833:1 8840:1 8846:1 8857:1 8914:1 8921:1 8929:1 8936:2 8950:4 8954:2 8971:1 8992:3 9001:1 9011:1 9019:1 9022:2 9023:1 9035:1 9040:1 9050:1 9057:1 9065:1 9068:1 9069:1 9077:3 9107:1 9115:3 9121:1 9128:1 9134:1 9139:1 9142:2 9151:1 9162:1 9196:1 9200:1 9207:7 9209:1 9210:1 9216:2 9219:1 9226:20 9230:1 9231:1 9246:2 9247:1 9261:1 9275:1 9305:1 9314:1 9319:1 9329:1 9338:2 9349:1 9360:2 9363:6 9365:1 9390:1 9392:1 9421:1 9427:1 9433:3 9448:1 9490:1 9497:1 9528:1 9529:1 9537:1 9539:1 9555:1 9558:1 9568:1 9569:5 9574:1 9582:1 9586:3 9594:2 9601:1 9608:2 9634:2 9652:1 9663:7 9676:1 9677:4 9687:2 9689:1 9700:1 9702:1 9704:1 9712:1 9713:1 9746:3 9772:1 9789:1 9829:1 9847:7 9850:1 9856:1 9862:1 9871:3 9877:2 9878:1 9880:1 9883:2 9887:1 9890:1 9898:3 9911:1 9913:1 9917:1 9919:1 9924:1 9928:3 9929:1 9932:1 9938:1 9939:1 9948:1 9954:1 9956:1 9968:4 9986:1 9987:1 9996:1 10019:1 10037:1 10038:1 10065:1 10073:1 10094:1 10124:1 10125:1 10126:1 10135:2 10178:1 10188:1 10191:1 10200:1 10234:1 10241:1 10266:2 10280:1 10302:1 10328:2 10329:1 10347:3 10351:2 10359:2 10370:1 10372:1 10405:1 10414:1 10436:1 10448:1 10478:2 10484:1 10486:1 10488:1 10501:1 10504:2 10507:2 10513:4 10521:1 10523:1 10524:1 10526:1 10537:1 10539:2 10555:2 10557:3 10558:1 10564:1 10573:2 10582:2 10583:2 10590:1 10592:2 10593:1 10621:1 10641:1 10657:7 10665:5 10677:2 10683:3 10686:10 10737:1 10740:1 10747:1 10748:1 10783:2 10787:1 10824:1 10839:1 10846:1 10857:1 10901:1 10903:3 10905:2 10909:2 10910:2 10921:2 10931:2 10937:1 10943:1 10947:1 10953:1 10962:1 10969:1 10989:6 10992:1 11010:4 11014:1 11016:1 11018:1 11062:1 11063:1 11064:2 11066:1 11071:1 11083:1 11094:1 11100:1 11106:1 11107:1 11118:1 11145:1 11147:1 11175:1 11177:1 11188:1 11197:1 11203:4 11208:1 11230:1 11234:1 11248:1 11260:1 11268:2 11278:2 11284:1 11285:1 11300:2 11301:1 11302:2 11308:1 11315:2 11317:1 11333:4 11341:1 11367:1 11370:9 11371:1 11400:1 11401:1 11407:1 11430:1 11442:1 11444:2 11466:1 11468:1 11469:1 11476:1 11477:1 11481:2 11496:1 11501:1 11506:1 11509:2 11514:1 11520:2 11526:3 11530:6 11547:2 11549:1 11550:5 11580:1 11587:1 11600:1 11603:3 11609:1 11614:1 11615:2 11619:3 11622:1 11631:1 11632:3 11633:1 11636:2 11641:3 11645:1 11649:1 11664:5 11671:1 11684:6 11690:1 11693:1 11711:1 11716:1 11727:1 11734:1 11755:1 11772:2 11789:1 11824:1 11826:1 11852:1 11865:3 11871:1 11877:1 11891:1 11908:1 11916:1 11924:1 11931:3 11936:3 11952:1 11973:3 11977:1 11990:1 11997:1 12004:1 12005:1 12025:1 12107:1 12109:1 12110:2 12111:3 12115:2 12125:1 12132:1 12142:1 12154:1 12156:1 12165:3 12166:4 12172:2 12178:1 12184:2 12239:1 12243:1 12250:1 12263:1 12272:1 12276:2 12281:6 12297:1 12302:1 12323:2 12337:1 12345:1 12346:1 12349:2 12361:3 12362:1 12376:2 12380:2 12398:1 12405:1 12420:1 12423:1 12431:1 12458:1 12464:1 12472:1 12476:1 12477:2 12480:1 12491:1 12493:1 12495:1 12508:1 12512:1 12515:1 12526:2 12534:1 12586:1 12608:6 12621:1 12633:1 12635:1 12636:1 12644:1 12648:14 12654:1 12658:1 12668:2 12671:5 12676:1 12681:1 12701:1 12708:2 12733:2 12764:1 12769:2 12772:2 12789:1 12796:2 12797:1 12813:1 12827:3 12831:1 12835:1 12837:1 12861:1 12888:1 12914:1 12949:5 12984:1 12999:1 13045:6 13049:1 13066:2 13072:1 13076:5 13080:4 13087:1 13093:1 13094:6 13128:1 13133:1 13142:1 13143:1 13144:1 13166:3 13206:1 13211:1 13213:1 13224:6 13231:1 13232:3 13233:1 13250:1 13252:2 13257:1 13263:1 13275:2 13278:1 13282:1 13283:1 13301:1 13302:4 13306:1 13310:1 13320:2 13331:1 13341:1 13346:1 13364:2 13372:5 13376:1 13396:1 13416:3 13420:1 13421:3 13440:1 13454:1 13468:2 13490:1 13524:1 13557:1 13561:1 13570:1 13599:3 13601:2 13606:4 13607:2 13610:1 13620:1 13628:1 13633:1 13654:3 13674:1 13680:3 13691:2 13694:1 13697:1 13698:1 13723:1 13733:6 13745:1 13764:2 13779:2 13782:1 13788:2 13799:1 13813:1 13827:7 13832:3 13833:1 13838:1 13847:1 13886:1 13895:1 13904:3 13931:9 13942:1 13963:1 13974:1 13980:2 14006:1 14018:1 14024:1 14029:1 14054:1 14076:6 14089:1 14107:3 14119:1 14134:1 14140:1 14152:1 14161:1 14179:1 14180:1 14181:1 14212:1 14223:1 14235:1 14245:1 14255:1 14266:1 14274:2 14284:2 14297:1 14299:3 14312:1 14313:1 14317:2 14318:7 14324:1 14325:6 14335:3 14339:1 14340:1 14347:1 14358:1 14361:1 14376:1 14385:1 14433:1 14434:1 14449:5 14482:2 14485:1 14489:2 14492:1 14498:2 14523:1 14533:3 14551:1 14554:1 14573:1 14591:2 14600:2 14614:1 14616:2 14623:1 14624:1 14636:2 14637:1 14647:4 14650:1 14664:2 14674:1 14683:2 14700:1 14701:1 14761:1 14775:1 14780:1 14785:1 14798:1 14820:3 14821:1 14823:1 14824:1 14836:1 14837:1 14881:1 14883:1 14891:5 14893:1 14910:1 14912:1 14916:2 14935:1 14936:4 14938:2 14961:2 14970:1 14984:1 14986:1 14999:1 15000:1 15020:6 15022:1 15024:1 15037:1 15055:1 15085:1 15117:1 15123:3 15125:1 15130:1 15134:1 15145:1 15146:2 15158:1 15173:1 15177:2 15178:1 15180:1 15207:1 15217:1 15233:1 15245:2 15259:2 15301:2 15322:1 15332:7 15345:1 15380:1 15385:2 15395:1 15398:1 15403:1 15404:4 15414:4 15420:1 15424:1 15431:1 15435:1 15436:1 15440:1 15453:2 15455:1 15459:2 15471:1 15482:2 15509:1 15539:1 15556:1 15563:2 15568:1 15571:1 15578:6 15581:2 15590:1 15591:3 15598:1 15607:2 15614:2 15622:1 15624:1 15625:5 15626:2 15631:1 15637:1 15642:1 15644:1 15678:1 15679:1 15687:1 15711:1 15717:1 15745:7 15750:1 15757:1 15763:1 15768:1 15777:1 15785:3 15814:1 15831:6 15832:3 15835:1 15837:1 15871:1 15879:3 15893:1 15896:1 15906:1 15909:3 15911:2 15913:1 15923:1 15957:1 15967:1 15973:2 16014:1 16026:1 16029:15 16030:1 16048:4 16051:1 16055:1 16056:1 16095:2 16103:1 16119:3 16122:1 16127:1 16137:1 16149:1 16150:1 16164:1 16172:1 16177:2 16190:2 16194:1 16196:1 16237:1 16242:2 16285:3 16288:1 16289:1 16290:2 16310:1 16338:1 16353:1 16363:1 16383:1 16398:1 16400:1 16403:2 16475:1 16482:1 16488:1 16489:1 16505:1 16511:1 16527:1 16528:1 16546:1 16555:2 16575:1 16588:1 16589:1 16597:1 16604:1 16605:1 16614:1 16639:1 16662:1 16666:2 16675:2 16685:2 16702:1 16708:1 16714:3 16716:2 16718:1 16738:1 16747:1 16758:1 16761:1 16776:1 16789:2 16802:1 16828:1 16830:1 16840:2 16843:1 16844:4 16851:1 16867:1 16874:1 16883:1 16899:1 16905:1 16908:1 16915:8 16929:1 16930:1 16932:1 16939:1 16942:1 16947:2 16966:4 16977:1 16990:1 16991:1 16995:2 17013:2 17015:1 17042:1 17046:1 17050:1 17053:1 17059:5 17067:1 17087:1 17091:4 17092:1 17106:1 17110:1 17136:2 17138:2 17155:3 17156:2 17167:1 17172:1 17179:1 17186:1 17187:2 17198:2 17199:7 17200:1 17207:2 17210:1 17244:1 17251:1 17265:1 17270:2 17277:2 17327:1 17343:1 17346:1 17360:1 17363:3 17369:2 17374:2 17397:1 17401:1 17422:1 17445:1 17447:1 17448:3 17454:2 17455:1 17456:1 17463:3 17475:3 17476:2 17477:1 17509:1 17511:1 17522:5 17523:3 17558:1 17560:2 17585:1 17587:1 17592:7 17604:1 17631:1 17636:1 17644:2 17647:1 17648:1 17652:1 17655:1 17662:1 17664:1 17665:4 17667:1 17669:1 17670:1 17683:1 17687:1 17691:1 17692:1 17698:1 17707:1 17721:1 17722:3 17747:1 17753:2 17766:1 17767:7 17772:4 17781:23 17785:1 17787:1 17790:1 17794:1 17812:2 17819:1 17822:1 17831:1 17838:1 17845:1 17852:1 17855:1 17860:1 17871:1 17872:1 17873:1 17875:1 17882:1 17886:1 17896:4 17907:1 17922:1 17931:5 17962:1 17967:1 17977:2 17979:1 17989:1 17994:1 17998:2 18007:3 18009:1 18011:1 18019:1 18032:1 18045:1 18056:1 18067:1 18080:1 18084:1 18120:1 18133:1 18150:1 18152:2 18167:1 18169:1 18170:1 18178:1 18212:1 18219:2 18220:1 18249:2 18315:4 18323:1 18331:1 18348:1 18357:1 18380:2 18381:1 18382:1 18399:2 18417:4 18424:1 18444:1 18449:1 18461:1 18471:2 18476:2 18478:2 18481:1 18495:1 18498:1 18504:3 18509:1 18512:1 18516:1 18519:1748 18524:1 18534:1 18538:1 18572:2 18573:1 18582:3 18608:1 18643:2 18648:2 18668:2 18684:1 18690:1 18702:1 18708:2 18715:6 18720:1 18725:5 18727:2 18728:4 18748:2 18763:1 18802:6 18808:2 18810:1 18814:1 18816:1 18840:1 18842:20 18850:1 18861:1 18863:7 18904:1 18907:1 18915:1 18920:1 18930:2 18938:1 18947:1 18968:1 18969:1 18971:1 18982:2 18991:2 19007:1 19008:1 19017:1 19033:1 19055:2 19061:1 19079:1 19089:1 19091:1 19113:1 19121:1 19135:2 19140:2 19142:3 19168:1 19172:1 19174:2 19176:3 19180:1 19187:1 19190:1 19192:1 19197:3 19202:1 19210:1 19218:1 19228:5 19235:1 19257:2 19271:2 19273:1 19293:1 19298:10 19314:1 19315:1 19335:6 19336:1 19350:1 19353:1 19359:1 19370:1 19412:1 19420:2 19442:2 19475:1 19482:1 19494:1 19507:4 19508:1 19515:3 19516:2 19531:1 19534:1 19549:1 19550:3 19551:1 19563:3 19566:1 19573:1 19592:2 19600:1 19605:1 19628:1 19634:1 19661:3 19674:1 19680:1 19708:2 19719:1 19720:1 19724:1 19735:2 19742:1 19745:1 19751:1 19752:1 19754:1 19767:2 19771:3 19775:4 19778:1 19784:4 19794:1 19816:1 19818:1 19829:1 19833:1 19839:2 19859:1 19862:1 19876:2 19881:1 19904:2 19909:3 19918:1 19936:1 19948:1 19949:4 19953:1 19964:1 19966:1 19978:2 19992:1 19996:1 20001:1 20003:1 20004:2 20017:1 20020:1 20031:1 20032:1 20036:1 20037:1 20052:1 20061:2 20068:1 20074:1 20079:1 20084:2 20086:1 20117:2 20118:2 20137:1 20159:5 20187:1 20211:6 20212:2 20218:2 20226:1 20231:1 20237:1 20272:1 20281:1 20283:3 20293:2 20299:1 20302:1 20313:1 20404:3 20406:4 20420:1 20443:1 20453:1 20454:1 20455:6 20465:2 20466:1 20467:1 20468:4 20474:2 20495:1 20525:1 20530:1 20531:2 20547:1 20567:4 20577:1 20594:1 20599:1 20600:1 20604:1 20643:1 20652:1 20656:1 20658:3 20671:1 20677:4 20679:1 20683:1 20685:1 20686:1 20692:1 20701:1 20705:2 20710:1 20715:1 20716:1 20722:2 20730:1 20738:1 20747:5 20770:1 20780:2 20781:1 20782:2 20783:1 20797:1 20823:2 20833:1 20846:1 20862:1 20900:1 20907:2 20918:1 20945:1 20948:2 20957:2 20979:6 20985:1 20986:1 20988:1 21010:1 21016:1 21019:2 21029:1 21049:1 21062:2 21075:1 21079:1 21080:1 21088:1 21091:1 21100:1 21107:1 21122:1 21137:2 21158:1 21169:1 21174:1 21196:1 21198:1 21201:1 21265:1 21276:1 21289:1 21313:1 21320:1 21345:1 21357:1 21358:2 21371:2 21372:1 21374:2 21380:1 21386:2 21387:3 21389:1 21392:1 21397:1 21405:1 21406:1 21407:1 21415:1 21442:2 21444:1 21448:1 21459:1 21472:4 21486:1 21488:1 21490:1 21493:1 21498:2 21499:2 21503:1 21504:1 21509:2 21518:1 21520:1 21523:1 21528:1 21538:1 21544:1 21548:9 21551:1 21567:1 21568:2 21569:1 21580:1 21616:1 21634:1 21647:2 21648:1 21654:2 21663:1 21670:1 21675:8 21684:1 21691:1 21695:3 21712:1 21714:2 21715:1 21724:1 21750:1 21770:1 21771:1 21778:1 21809:1 21812:3 21822:1 21824:1 21826:1 21827:1 21829:1 21830:1 21846:2 21848:3 21867:2 21870:1 21885:1 21901:1 21916:2 21937:1 21941:1 21952:1 21967:1 21971:1 21975:1 21994:3 21999:1 22009:3 22012:2 22016:3 22021:1 22025:1 22052:1 22059:1 22061:1 22065:2 22077:2 22080:1 22096:3 22135:1 22144:1 22147:1 22150:1 22173:4 22174:5 22178:3 22180:1 22189:2 22190:1 22212:1 22223:4 22230:1 22236:1 22243:2 22248:1 22252:3 22257:2 22258:3 22265:1 22277:2 22291:1 22293:1 22294:3 22295:1 22302:1 22315:2 22318:1 22329:2 22331:1 22332:1 22336:1 22337:1 22345:3 22357:1 22362:2 22368:1 22391:3 22392:1 22406:2 22412:1 22414:23 22419:1 22420:2 22422:4 22425:1 22426:2 22427:2 22430:1 22432:1 22434:1 22453:3 22455:1 22461:1 22464:2 22467:1 22473:2 22493:2 22495:2 22496:1 22507:1 22529:1 22538:1 22542:1 22579:2 22585:1 22593:4 22599:1 22616:2 22621:1 22634:1 22646:1 22672:1 22674:1 22676:2 22679:1 22680:1 22687:1 22691:3 22692:1 22695:1 22699:2 22705:1 22721:2 22726:2 22736:1 22737:1 22758:1 22777:1 22782:1 22784:1 22788:1 22808:1 22837:1 22848:1 22866:1 22867:1 22878:1 22896:2 22902:1 22919:1 22921:1 22931:1 22935:1 22947:2 22948:1 22962:2 22964:1 22980:3 22981:1 22982:1 22998:3 23001:2 23021:2 23024:1 23027:1 23033:2 23038:1 23099:1 23143:1 23148:1 23165:1 23184:3 23188:1 23195:1 23196:1 23207:2 23227:2 23234:2 23235:1 23239:1 23241:1 23248:1 23254:1 23275:2 23283:3 23297:1 23299:2 23302:1 23310:1 23313:1 23326:1 23340:1 23343:1 23349:1 23352:1 23361:11 23368:1 23394:2 23403:1 23408:1 23437:1 23439:1 23441:1 23452:1 23494:1 23504:1 23519:1 23520:1 23532:2 23545:1 23559:2 23568:1 23581:1 23591:1 23592:1 23600:1 23616:5 23618:1 23620:1 23635:1 23647:1 23651:1 23659:2 23720:1 23722:1 23732:3 23736:1 23744:1 23749:2 23774:1 23785:1 23798:1 23806:1 23814:1 23831:1 23832:1 23875:2 23884:5 23885:1 23896:4 23899:1 23910:1 23918:2 23919:1 23920:1 23928:1 23939:2 23941:1 23966:2 23973:1 23979:1 23994:3 23995:1 23996:1 24001:1 24025:1 24030:1 24044:1 24047:1 24052:1 24057:2 24058:3 24064:1 24068:1 24093:1 24098:1 24101:1 24114:1 24124:1 24146:1 24148:1 24150:1 24156:1 24159:2 24160:1 24162:6 24164:2 24166:4 24167:2 24171:1 24172:2 24174:2 24175:1 24182:2 24183:3 24187:2 24193:2 24206:3 24233:1 24236:2 24237:1 24242:1 24247:2 24263:3 24267:3 24291:1 24295:1 24297:1 24307:3 24321:1 24342:1 24345:1 24347:1 24348:1 24362:1 24390:1 24401:1 24402:1 24419:3 24440:2 24448:1 24450:4 24453:1 24464:2 24508:1 24512:1 24524:1 24547:2 24548:1 24558:1 24571:1 24582:1 24584:1 24609:1 24630:3 24645:1 24654:1 24658:1 24665:2 24707:3 24746:1 24757:2 24763:1 24772:1 24780:1 24783:4 24791:1 24793:1 24797:1 24810:1 24816:1 24822:4 24878:1 24899:1 24912:2 24915:3 24946:10 24955:1 24969:7 24990:1 24997:1 25005:1 25015:2 25028:1 25038:2 25041:1 25042:1 25046:1 25047:1 25089:1 25093:2 25099:2 25104:1 25109:1 25111:2 25114:5 25122:1 25137:2 25139:2 25141:7 25144:4 25145:2 25155:1 25162:1 25167:2 25170:1 25177:1 25182:1 25214:2 25219:1 25225:4 25230:1 25247:3 25258:2 25259:2 25319:1 25320:1 25335:1 25342:1 25345:1 25356:1 25384:1 25386:1 25401:1 25410:1 25412:2 25413:1 25416:2 25425:1 25436:5 25465:1 25468:1 25473:1 25488:1 25515:1 25557:1 25561:1 25576:1 25600:1 25618:1 25663:1 25665:1 25676:1 25679:3 25680:2 25691:1 25700:1 25701:1 25708:2 25718:2 25726:1 25729:1 25742:1 25757:1 25759:2 25796:3 25804:1 25812:1 25816:2 25829:1 25835:1 25838:5 25864:1 25865:4 25880:1 25901:1 25903:1 25906:2 25916:1 25929:1 25930:1 25936:2 25953:2 25971:2 25988:1 25992:5 25994:1 26021:3 26033:1 26038:1 26040:1 26042:1 26059:2 26087:1 26093:4 26112:2 26113:1 26114:1 26118:1 26122:1 26123:1 26127:3 26128:1 26133:1 26166:2 26170:1 26175:1 26182:1 26185:1 26213:1 26221:2 26247:2 26249:1 26261:2 26267:1 26285:1 26290:2 26300:1 26309:1 26316:1 26332:2 26338:1 26339:1 26341:1 26352:1 26368:2 26373:5 26392:2 26453:1 26476:1 26478:1 26479:1 26482:1 26499:1 26504:1 26524:1 26547:1 26548:1 26551:1 26556:1 26559:1 26569:1 26574:1 26582:1 26588:1 26599:1 26621:1 26622:1 26624:1 26641:1 26654:2 26657:1 26662:1 26667:2 26681:4 26700:3 26709:5 26721:1 26736:1 26737:1 26743:1 26759:1 26772:1 26778:1 26787:1 26788:8 26817:1 26838:1 26840:2 26844:1 26845:1 26847:1 26848:1 26856:11 26894:3 26933:2 26934:1 26938:1 26954:2 26960:5 26965:2 26967:2 26981:1 26985:2 26988:1 26994:2 27003:1 27006:1 27016:1 27022:1 27033:1 27036:1 27057:1 27058:2 27069:2 27070:1 27079:1 27090:1 27103:1 27108:1 27113:1 27136:1 27141:2 27143:1 27145:1 27147:1 27149:1 27160:2 27187:1 27188:1 27229:1 27275:1 27279:1 27298:1 27330:1 27332:1 27342:2 27365:4 27368:1 27385:1 27392:1 27408:1 27412:1 27419:1 27465:1 27481:2 27500:1 27517:1 27536:2 27549:1 27560:1 27563:6 27575:1 27595:1 27597:3 27627:2 27636:1 27658:1 27661:1 27662:1 27673:1 27675:1 27678:1 27687:24 27689:4 27692:5 27694:1 27695:3 27702:1 27724:7 27739:1 27777:1 27789:2 27804:1 27808:1 27820:1 27821:2 27832:3 27838:2 27859:11 27863:2 27867:1 27869:1 27874:1 27885:1 27887:1 27889:1 27893:2 27900:2 27906:1 27909:1 27917:2 27923:1 27930:1 27934:1 27935:2 27948:1 27951:1 27960:1 27964:1 27968:1 27969:1 27975:1 28003:1 28011:1 28028:2 28030:1 28031:1 28050:1 28051:1 28054:1 28058:1 28068:3 28102:1 28126:1 28127:2 28128:2 28131:1 28169:1 28174:1 28177:1 28178:1 28180:1 28183:1 28187:2 28193:1 28202:1 28203:1 28204:1 28214:2 28218:1 28223:1 28292:1 28315:1 28319:1 28320:1 28341:1 28350:1 28356:1 28359:1 28362:1 28363:2 28373:1 28375:2 28380:1 28387:1 28397:6 28404:1 28409:1 28411:4 28413:1 28419:1 28461:1 28469:2 28470:1 28506:2 28514:1 28520:1 28536:3 28541:1 28543:2 28551:1 28553:1 28560:6 28594:1 28596:1 28648:1 28665:2 28685:2 28703:1 28709:1 28724:1 28734:1 28748:1 28761:2 28792:1 28801:7 28815:1 28816:1 28818:1 28836:7 28849:5 28850:1 28867:1 28904:1 28913:8 28914:3 28916:2 28919:1 28921:1 28924:3 28925:2 28941:1 28959:2 28961:3 28963:3 29003:1
9 11:1 14:1 24:1 34:1 37:2 56:1 60:1 65:1 79:1 82:1 83:1 89:1 90:1 103:1 109:1 113:1 117:1 125:1 143:1 150:1 153:3 162:1 170:4 189:7 214:1 245:1 270:1 282:2 293:1 295:24 303:2 315:1 316:3 318:4 326:1 333:1 348:1 363:1 381:1 403:2 424:3 432:1 442:1 444:1 515:1 523:1 561:1 563:4 564:1 569:1 572:3 590:4 596:2 598:1 600:1 613:2 626:1 634:2 638:1 643:1 650:1 674:1 678:1 685:1 692:1 702:1 716:1 734:1 735:1 748:1 752:1 767:1 770:1 788:1 795:1 804:1 805:1 807:2 808:1 828:1 830:6 832:3 842:1 843:1 855:1 856:12 860:1 867:1 871:1 875:2 877:3 879:7 885:1 889:1 892:1 893:1 899:1 905:3 916:1 924:2 925:2 941:1 963:1 974:3 989:1 996:2 998:1 1002:2 1019:1 1020:2 1027:1 1045:1 1059:1 1061:2 1078:1 1086:1 1087:1 1089:2 1092:1 1104:2 1112:2 1117:1 1136:1 1143:1 1148:3 1152:1 1160:1 1163:1 1179:1 1207:2 1231:1 1232:1 1241:1 1244:1 1257:1 1262:1 1276:1 1284:1 1287:1 1313:1 1330:1 1345:1 1353:1 1355:2 1374:2 1376:1 1394:1 1397:2 1400:1 1401:5 1402:1 1417:1 1419:2 1420:1 1422:1 1423:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1506:2 1507:1 1508:1 1516:2 1543:1 1547:1 1555:1 1557:1 1560:1 1562:2 1564:3 1571:1 1596:4 1598:1 1617:1 1619:2 1627:3 1634:2 1659:1 1660:1 1677:1 1678:1 1682:1 1699:1 1709:1 1743:2 1757:1 1760:1 1762:1 1778:4 1789:1 1794:1 1802:1 1811:1 1819:1 1828:1 1830:1 1888:1 1895:12 1903:1 1907:2 1919:1 1923:1 1929:1 1935:1 1936:1 1952:1 1962:8 1963:1 1965:2 1993:1 1998:1 2006:2 2011:3 2082:1 2085:1 2089:3 2095:2 2100:1 2101:1 2105:1 2108:1 2132:1 2142:1 2154:1 2156:1 2158:1 2159:4 2160:1 2162:1 2165:1 2172:1 2174:3 2177:1 2178:2 2179:4 2181:1 2190:2 2191:1 2207:1 2212:1 2216:2 2219:2 2220:2 2221:8 2223:4 2226:1 2227:2 2228:4 2232:1 2233:1 2234:1 2237:2 2239:1 2245:1 2247:1 2249:1 2251:6 2252:2 2253:7 2264:1 2268:1 2279:1 2297:1 2309:2 2315:1 2322:1 2336:1 2339:1 2343:1 2347:1 2358:3 2370:3 2374:1 2376:1 2392:2 2410:3 2421:6 2433:1 2445:1 2461:1 2465:1 2473:1 2485:5 2494:3 2500:1 2522:2 2536:1 2543:2 2552:3 2561:2 2563:1 2570:1 2580:2 2609:2 2631:1 2648:1 2651:3 2656:1 2659:1 2667:2 2670:1 2672:1 2675:1 2683:1 2688:1 2691:1 2704:1 2708:1 2712:1 2713:1 2723:1 2730:3 2756:1 2760:1 2761:2 2762:1 2766:6 2770:2 2775:2 2780:1 2782:1 2810:1 2813:1 2816:1 2818:1 2836:2 2854:3 2857:1 2867:22 2883:4 2888:1 2900:2 2909:1 2915:1 2931:1 2936:11 2961:1 2965:4 2968:1 2969:1 2989:1 3015:1 3023:1 3026:1 3074:3 3075:1 3089:1 3097:1 3105:1 3106:1 3112:1 3166:1 3188:2 3197:1 3205:1 3224:1 3231:1 3232:4 3243:1 3248:1 3255:1 3256:1 3266:1 3271:1 3293:1 3295:3 3338:1 3352:1 3357:10 3397:1 3407:1 3420:2 3424:2 3459:1 3471:1 3472:1 3475:2 3478:1 3488:1 3489:1 3495:2 3517:1 3528:1 3540:2 3548:1 3558:1 3570:1 3574:1 3577:1 3580:2 3582:4 3599:4 3604:2 3605:1 3606:1 3607:2 3608:2 3615:1 3634:2 3638:1 3639:4 3647:1 3648:1 3669:1 3680:1 3684:1 3687:1 3688:3 3692:1 3695:2 3698:2 3712:1 3730:1 3737:1 3740:1 3742:4 3744:1 3746:2 3748:10 3763:1 3779:1 3783:4 3784:1 3788:2 3789:11 3790:1 3792:1 3796:1 3810:1 3813:5 3817:1 3822:1 3835:1 3836:3 3838:1 3848:1 3851:1 3862:1 3866:1 3876:1 3883:1 3888:1 3895:1 3902:3 3904:2 3918:2 3919:1 3931:1 3939:1 3940:1 3943:1 3948:1 3964:4 3970:1 3972:1 3977:2 3982:1 3987:1 3988:2 3989:2 3998:4 3999:3 4005:1 4019:1 4033:1 4040:1 4054:2 4069:1 4078:1 4085:2 4093:1 4113:1 4125:1 4129:1 4136:1 4137:1 4173:1 4190:2 4193:2 4201:1 4204:1 4219:1 4254:1 4270:2 4272:2 4282:1 4298:1 4314:2 4348:2 4362:5 4378:1 4414:1 4416:1 4428:2 4434:1 4439:2 4455:1 4491:1 4494:1 4528:1 4554:1 4560:1 4562:1 4583:1 4605:1 4613:1 4619:2 4626:3 4640:1 4646:1 4657:1 4658:1 4676:1 4691:1 4695:8 4724:1 4731:1 4742:1 4746:1 4759:1 4768:1 4773:6 4776:1 4787:1 4788:2 4810:1 4815:1 4818:1 4851:3 4867:1 4876:19 4878:2 4881:1 4895:2 4903:1 4917:1 4925:1 4928:7 4940:2 4963:1 4964:1 4980:1 4981:1 4984:1 4985:6 5003:4 5005:4 5006:1 5008:1 5009:1 5013:3 5014:1 5015:1 5017:2 5022:1 5026:1 5028:2 5030:3 5031:1 5033:1 5041:1 5042:1 5045:4 5046:2 5064:1 5090:1 5125:1 5131:2 5133:1 5157:2 5176:1 5177:1 5184:2 5190:2 5195:2 5203:2 5219:1 5220:1 5237:1 5245:2 5249:2 5255:1 5280:1 5302:1 5306:1 5307:1 5328:1 5351:2 5358:6 5362:1 5365:1 5369:2 5371:2 5386:1 5394:1 5404:2 5423:1 5429:1 5434:2 5438:1 5453:1 5480:1 5493:1 5501:1 5511:2 5524:2 5534:1 5535:2 5538:2 5540:2 5548:1 5551:1 5556:1 5563:1 5564:1 5582:3 5584:1 5589:1 5593:1 5607:1 5615:3 5629:3 5639:1 5640:1 5663:3 5680:1 5681:2 5694:1 5701:3 5705:1 5720:4 5721:1 5728:1 5744:1 5749:1 5773:1 5801:1 5802:1 5812:1 5843:2 5850:1 5852:1 5855:1 5877:1 5881:2 5898:1 5920:1 5942:1 5947:2 5949:1 5972:12 5987:4 5992:4 6000:1 6001:1 6006:3 6007:1 6009:2 6017:1 6039:3 6040:1 6053:1 6056:1 6058:1 6078:1 6110:1 6130:1 6137:2 6138:1 6142:1 6150:1 6153:2 6176:5 6178:1 6182:1 6192:1 6197:1 6199:1 6220:1 6244:1 6245:1 6247:1 6259:3 6262:1 6263:1 6265:1 6269:1 6270:2 6273:1 6274:2 6275:1 6276:4 6279:2 6282:4 6283:9 6284:5 6286:1 6316:1 6334:1 6379:3 6420:2 6435:2 6482:2 6493:1 6502:1 6507:1 6513:1 6531:1 6536:1 6537:1 6542:1 6556:1 6558:1 6565:1 6598:1 6609:1 6613:1 6652:1 6653:1 6654:2 6677:1 6679:2 6680:1 6689:1 6699:7 6715:2 6722:2 6728:1 6741:1 6744:1 6751:1 6757:1 6777:1 6795:1 6810:2 6811:1 6823:2 6851:1 6854:2 6855:2 6860:3 6866:1 6871:1 6885:3 6886:2 6903:1 6906:1 6914:1 6918:1 6919:2 6922:2 6927:1 6932:1 6939:1 6948:1 6987:1 6999:1 7049:1 7050:10 7052:1 7067:1 7073:2 7074:2 7091:1 7097:1 7099:1 7102:1 7124:1 7125:1 7155:2 7169:1 7180:1 7198:2 7218:2 7234:1 7248:2 7263:3 7274:1 7278:1 7287:2 7288:1 7290:1 7297:1 7303:1 7311:1 7322:1 7334:4 7346:3 7347:1 7352:1 7367:2 7371:1 7382:2 7383:1 7386:2 7401:1 7407:2 7427:1 7463:2 7485:1 7499:2 7516:1 7518:1 7554:2 7555:11 7556:3 7570:2 7580:2 7582:2 7584:1 7603:4 7604:1 7620:50 7622:1 7643:3 7644:11 7645:1 7648:1 7665:1 7671:2 7685:1 7696:1 7700:1 7710:1 7720:1 7725:2 7734:1 7751:1 7755:1 7758:2 7786:1 7826:2 7851:3 7871:1 7878:1 7892:1 7897:4 7928:1 7931:1 7943:1 7962:1 7967:1 8004:1 8007:1 8032:1 8037:1 8043:2 8044:3 8045:1 8046:1 8062:1 8063:1 8093:1 8107:1 8110:1 8116:2 8124:1 8130:2 8136:1 8142:2 8145:1 8154:1 8156:6 8180:2 8184:1 8186:1 8194:1 8236:1 8254:1 8270:1 8299:1 8301:2 8311:2 8319:2 8334:1 8336:1 8358:1 8367:2 8369:2 8376:3 8379:1 8383:3 8387:2 8394:1 8395:3 8405:1 8412:1 8422:1 8430:5 8438:1 8441:1 8449:1 8460:1 8468:1 8480:1 8490:1 8497:1 8500:3 8501:5 8503:4 8504:1 8505:2 8508:3 8510:7 8512:2 8513:2 8516:1 8525:1 8526:2 8543:4 8549:1 8550:3 8567:3 8571:1 8572:2 8575:2 8578:2 8582:1 8586:4 8604:1 8640:2 8655:1 8657:1 8679:1 8688:1 8710:1 8719:1 8728:1 8739:1 8756:2 8762:1 8772:2 8779:3 8805:2 8808:1 8810:1 8811:4 8815:2 8827:3 8833:1 8840:1 8846:1 8857:1 8914:1 8921:1 8929:1 8936:2 8950:4 8954:2 8971:1 8992:3 9001:1 9011:1 9019:1 9022:2 9023:1 9035:1 9040:1 9050:1 9057:1 9060:1 9065:1 9068:1 9069:1 9077:3 9107:1 9115:3 9121:1 9128:1 9134:1 9139:1 9142:2 9151:1 9161:1 9162:1 9196:1 9200:1 9207:7 9209:1 9210:1 9216:2 9219:1 9226:24 9230:1 9231:2 9246:2 9247:1 9261:1 9275:1 9298:1 9305:1 9314:1 9319:1 9329:1 9338:2 9349:1 9360:2 9363:6 9365:1 9390:1 9392:1 9421:1 9427:1 9433:3 9448:1 9490:1 9497:1 9528:1 9529:1 9537:1 9539:1 9555:1 9558:1 9568:1 9569:5 9574:1 9582:1 9586:3 9594:2 9601:1 9608:2 9634:2 9652:1 9663:7 9676:1 9677:4 9687:2 9689:1 9697:1 9700:1 9702:1 9704:1 9712:1 9713:1 9746:3 9772:1 9789:1 9823:1 9829:1 9847:7 9850:1 9856:1 9862:1 9871:3 9877:2 9878:1 9880:1 9883:2 9887:1 9890:1 9898:4 9911:1 9913:1 9917:1 9919:1 9924:1 9928:3 9929:1 9932:2 9938:1 9939:1 9948:1 9954:1 9956:1 9968:4 9986:1 9987:1 9996:1 10019:1 10037:1 10038:1 10057:1 10065:1 10073:1 10094:1 10122:1 10124:1 10125:1 10126:1 10135:2 10157:1 10178:1 10188:1 10191:1 10200:1 10234:1 10241:1 10266:2 10280:1 10302:1 10328:2 10329:1 10347:3 10351:2 10359:2 10370:1 10372:1 10405:1 10414:1 10436:1 10448:1 10478:2 10484:1 10486:1 10488:1 10501:1 10504:2 10507:2 10513:4 10521:1 10523:1 10524:1 10526:1 10537:1 10539:2 10555:2 10557:3 10558:1 10564:1 10573:2 10582:3 10583:2 10590:1 10592:2 10593:1 10621:1 10641:1 10657:7 10665:5 10677:2 10683:3 10686:11 10737:1 10740:1 10747:1 10748:1 10783:2 10787:1 10824:1 10839:1 10846:1 10857:1 10883:1 10901:1 10903:3 10905:2 10909:2 10910:2 10921:2 10931:2 10937:1 10943:1 10947:1 10953:1 10962:1 10969:1 10989:6 10992:1 11010:4 11014:1 11016:1 11018:1 11062:1 11063:1 11064:2 11066:1 11071:1 11083:1 11094:1 11100:1 11106:1 11107:1 11118:1 11131:1 11145:1 11147:1 11175:1 11177:1 11188:1 11197:1 11203:4 11208:1 11216:1 11230:1 11234:1 11248:1 11260:1 11268:2 11278:2 11284:1 11285:1 11300:2 11301:1 11302:2 11308:1 11315:2 11317:1 11333:4 11341:1 11367:1 11370:9 11371:1 11400:1 11401:1 11407:1 11430:1 11442:1 11444:2 11466:1 11468:1 11469:1 11476:1 11477:1 11479:1 11481:2 11496:1 11501:1 11506:1 11509:2 11514:1 11520:2 11526:3 11530:6 11547:2 11549:1 11550:5 11580:1 11587:1 11600:1 11603:3 11609:1 11614:1 11615:2 11619:3 11622:1 11631:1 11632:3 11633:1 11636:2 11641:3 11645:1 11649:1 11664:6 11671:1 11684:7 11690:1 11693:1 11711:1 11716:1 11727:1 11734:1 11755:1 11772:2 11789:1 11824:1 11826:1 11852:1 11865:3 11871:1 11877:1 11882:1 11891:1 11908:1 11916:1 11924:1 11931:3 11936:3 11952:1 11973:3 11977:1 11990:1 11997:1 12004:1 12005:1 12025:1 12107:1 12109:1 12110:2 12111:3 12115:2 12125:1 12132:1 12142:1 12154:1 12156:1 12165:3 12166:4 12172:2 12178:1 12184:2 12239:1 12243:1 12250:1 12263:1 12272:1 12276:2 12281:6 12297:1 12302:1 12323:2 12337:1 12345:1 12346:1 12349:2 12361:3 12362:1 12376:2 12380:2 12398:1 12405:1 12420:1 12423:2 12431:1 12458:1 12464:1 12472:1 12476:1 12477:3 12480:1 12491:1 12493:1 12495:1 12508:1 12512:1 12515:1 12526:2 12534:1 12586:1 12608:7 12621:1 12633:1 12635:1 12636:1 12644:1 12648:15 12654:1 12658:1 12668:2 12671:5 12676:1 12681:1 12701:1 12708:2 12733:2 12764:1 12769:2 12772:2 12789:1 12796:2 12797:1 12813:1 12827:3 12831:1 12835:1 12837:1 12861:1 12888:1 12914:1 12949:6 12984:1 12999:1 13045:7 13049:1 13066:2 13072:1 13076:5 13080:4 13087:1 13093:1 13094:6 13120:1 13128:1 13133:1 13142:1 13143:1 13144:1 13166:4 13194:1 13206:1 13211:1 13213:1 13224:6 13231:1 13232:3 13233:1 13250:1 13252:2 13257:1 13263:1 13275:2 13278:1 13282:1 13283:1 13301:1 13302:4 13306:1 13310:1 13320:2 13331:1 13341:1 13346:1 13364:2 13372:7 13376:1 13396:1 13416:4 13420:1 13421:3 13440:1 13454:1 13468:2 13490:1 13524:1 13557:1 13561:1 13570:1 13599:3 13601:2 13606:4 13607:2 13610:1 13620:1 13628:1 13633:1 13654:3 13674:1 13680:3 13691:2 13694:1 13697:1 13698:1 13723:1 13733:6 13745:1 13764:2 13779:2 13782:1 13788:2 13799:1 13813:1 13827:7 13832:3 13833:1 13838:1 13847:1 13886:1 13895:1 13904:3 13931:9 13942:1 13963:1 13974:1 13980:2 13986:1 14006:1 14018:1 14024:1 14029:1 14054:1 14076:6 14089:1 14107:3 14119:1 14134:1 14140:1 14152:1 14161:1 14179:1 14180:1 14181:1 14212:1 14223:1 14235:1 14245:1 14255:1 14266:1 14274:2 14284:2 14297:1 14299:3 14312:1 14313:1 14317:2 14318:8 14324:1 14325:6 14335:3 14339:1 14340:1 14347:1 14358:1 14361:1 14376:1 14385:1 14433:1 14434:1 14449:5 14482:2 14485:1 14489:2 14492:1 14498:3 14523:1 14532:1 14533:3 14551:1 14554:1 14573:1 14591:2 14600:2 14614:2 14616:2 14623:1 14624:1 14636:2 14637:1 14647:4 14650:1 14664:2 14674:1 14683:2 14700:1 14701:1 14761:1 14775:1 14780:1 14785:1 14798:1 14803:1 14820:3 14821:1 14823:1 14824:1 14836:1 14837:1 14881:1 14883:1 14891:6 14893:1 14910:1 14912:1 14916:2 14935:1 14936:4 14938:3 14961:2 14970:1 14984:1 14986:1 14999:1 15000:1 15020:7 15022:1 15024:1 15037:1 15055:1 15085:1 15109:1 15117:1 15123:3 15125:1 15130:1 15134:1 15145:1 15146:2 15158:1 15160:1 15173:1 15177:2 15178:1 15180:1 15207:1 15217:1 15233:1 15245:2 15259:2 15275:1 15301:2 15322:1 15332:8 15345:2 15380:1 15385:2 15395:1 15398:1 15403:1 15404:4 15414:4 15420:1 15424:1 15431:1 15435:1 15436:1 15440:1 15453:2 15455:1 15459:2 15471:1 15482:2 15496:1 15509:1 15527:1 15539:1 15556:1 15563:2 15568:1 15571:1 15578:7 15581:3 15590:1 15591:3 15598:1 15607:2 15614:2 15622:1 15624:1 15625:5 15626:2 15631:1 15637:1 15642:1 15644:1 15678:1 15679:1 15687:1 15711:1 15717:1 15745:7 15750:1 15757:1 15763:2 15768:1 15777:1 15785:3 15814:2 15831:6 15832:3 15835:1 15837:1 15871:1 15879:3 15893:1 15896:1 15906:1 15909:3 15911:2 15913:1 15923:1 15957:1 15967:1 15973:2 16014:1 16026:1 16029:15 16030:1 16048:4 16051:1 16055:1 16056:1 16067:1 16084:1 16095:2 16103:1 16119:3 16122:1 16127:1 16137:1 16147:1 16149:1 16150:1 16164:1 16170:1 16172:1 16177:2 16190:2 16194:1 16196:1 16237:1 16242:2 16285:3 16288:1 16289:1 16290:2 16310:1 16338:1 16353:1 16363:1 16383:1 16398:1 16400:1 16403:2 16434:1 16475:1 16482:1 16488:1 16489:1 16505:1 16511:1 16527:1 16528:1 16543:1 16546:1 16555:2 16575:1 16588:1 16589:1 16597:1 16604:1 16605:1 16614:1 16639:1 16646:1 16662:1 16666:2 16675:2 16685:2 16702:1 16708:1 16714:3 16716:2 16718:1 16738:1 16747:1 16758:1 16761:1 16776:1 16789:2 16802:1 16828:1 16830:1 16840:3 16843:1 16844:4 16851:1 16867:1 16874:1 16883:1 16899:1 16905:1 16908:1 16915:8 16929:1 16930:1 16932:1 16939:1 16942:1 16947:2 16966:4 16977:1 16990:1 16991:1 16995:2 17013:2 17015:1 17036:1 17042:1 17046:1 17050:1 17053:1 17059:5 17067:1 17087:1 17091:4 17092:1 17106:1 17110:1 17136:2 17138:2 17155:3 17156:2 17167:1 17172:1 17179:1 17181:1 17186:1 17187:2 17198:2 17199:7 17200:1 17207:2 17210:1 17244:1 17251:1 17265:1 17270:2 17277:2 17327:1 17343:1 17346:1 17360:1 17363:3 17369:2 17374:2 17397:1 17401:1 17422:1 17445:1 17447:1 17448:3 17454:2 17455:1 17456:1 17463:3 17475:3 17476:2 17477:1 17509:1 17511:1 17522:5 17523:3 17558:1 17560:2 17585:1 17587:1 17592:7 17604:1 17631:1 17636:1 17644:2 17647:1 17648:1 17652:1 17655:1 17662:1 17664:1 17665:5 17667:1 17669:1 17670:1 17683:1 17687:1 17691:1 17692:1 17698:1 17707:1 17721:1 17722:3 17747:1 17753:2 17766:1 17767:8 17772:4 17781:24 17783:1 17785:1 17787:1 17790:1 17794:1 17812:3 17819:1 17822:1 17831:1 17838:1 17845:1 17852:1 17855:1 17860:1 17871:1 17872:1 17873:1 17875:1 17882:1 17886:1 17896:4 17907:1 17922:1 17931:5 17962:1 17967:1 17977:2 17979:1 17989:1 17994:1 17998:2 18007:3 18009:1 18011:1 18019:1 18032:1 18045:1 18056:1 18067:1 18080:1 18084:1 18120:1 18133:1 18150:1 18152:2 18167:1 18169:1 18170:1 18178:1 18212:1 18219:2 18220:1 18249:2 18315:4 18323:1 18331:1 18348:1 18357:1 18380:2 18381:1 18382:1 18399:2 18417:4 18424:1 18444:1 18449:1 18461:1 18471:2 18476:2 18478:2 18481:1 18495:1 18498:1 18504:3 18509:1 18512:1 18516:1 18519:1867 18524:1 18534:1 18538:1 18572:2 18573:1 18582:3 18608:1 18643:2 18648:2 18668:2 18684:1 18690:1 18702:1 18708:3 18715:6 18720:1 18725:5 18727:2 18728:4 18748:2 18763:1 18802:6 18808:2 18810:2 18814:1 18816:1 18840:1 18842:24 18850:1 18861:1 18863:7 18904:1 18907:1 18915:1 18920:1 18930:2 18938:1 18947:1 18968:1 18969:1 18971:1 18982:2 18991:3 19007:1 19008:1 19017:1 19033:1 19055:2 19061:1 19079:1 19089:1 19091:1 19113:1 19121:1 19135:2 19140:2 19142:3 19168:1 19172:1 19174:2 19176:3 19180:1 19187:1 19190:1 19192:1 19197:3 19202:1 19210:1 19218:1 19228:5 19235:1 19257:2 19271:2 19273:1 19293:1 19298:10 19314:1 19315:1 19335:6 19336:1 19350:1 19353:1 19359:1 19370:1 19412:1 19420:3 19442:2 19475:1 19482:1 19494:1 19507:4 19508:1 19515:3 19516:2 19531:1 19534:1 19549:1 19550:3 19551:1 19563:3 19566:1 19573:1 19592:2 19600:1 19605:1 19628:1 19634:1 19661:3 19674:1 19680:1 19708:2 19719:1 19720:1 19724:1 19735:2 19742:1 19745:1 19751:1 19752:1 19754:1 19767:2 19771:3 19775:4 19778:1 19784:4 19794:1 19807:1 19816:1 19818:1 19829:1 19833:1 19839:2 19859:1 19862:1 19876:2 19881:1 19904:2 19909:3 19918:1 19936:1 19948:1 19949:4 19953:1 19964:1 19966:1 19978:2 19992:1 19996:1 20001:1 20003:1 20004:2 20017:1 20020:1 20031:1 20032:1 20036:1 20037:1 20052:1 20061:3 20068:1 20074:1 20079:1 20084:2 20086:1 20117:2 20118:2 20137:1 20159:5 20187:1 20211:6 20212:3 20218:2 20226:1 20231:1 20237:1 20272:1 20281:1 20283:3 20293:2 20299:1 20302:1 20313:1 20400:1 20404:3 20406:4 20420:1 20443:1 20453:1 20454:1 20455:6 20465:2 20466:1 20467:1 20468:4 20474:2 20495:1 20525:1 20530:1 20531:2 20547:1 20567:4 20577:1 20594:1 20599:1 20600:1 20604:1 20643:1 20644:1 20652:1 20656:1 20658:3 20671:1 20677:4 20679:1 20683:1 20685:1 20686:1 20692:1 20701:1 20705:2 20710:1 20715:1 20716:1 20722:2 20730:1 20738:1 20747:5 20770:1 20780:2 20781:1 20782:2 20783:1 20797:1 20823:2 20833:1 20846:1 20862:1 20900:1 20907:2 20918:1 20945:1 20948:2 20957:2 20979:6 20985:1 20986:1 20988:1 21010:1 21016:1 21019:2 21029:1 21049:1 21062:2 21075:1 21079:1 21080:1 21088:1 21091:2 21100:1 21107:1 21122:1 21137:2 21158:1 21169:1 21174:1 21193:1 21196:1 21198:1 21201:1 21265:1 21276:1 21288:1 21289:1 21313:1 21320:1 21345:1 21357:1 21358:2 21359:1 21371:2 21372:1 21374:2 21380:1 21386:2 21387:3 21389:1 21392:1 21397:1 21405:1 21406:1 21407:1 21415:1 21442:2 21444:1 21448:1 21459:1 21472:4 21486:1 21488:1 21490:1 21493:1 21498:2 21499:2 21503:1 21504:1 21509:2 21518:1 21520:1 21523:1 21528:1 21538:1 21544:1 21548:9 21551:1 21567:1 21568:2 21569:1 21580:1 21616:1 21634:1 21647:2 21648:1 21654:2 21663:1 21670:1 21675:8 21684:1 21691:1 21695:3 21712:1 21714:2 21715:1 21724:1 21750:1 21770:1 21771:1 21778:1 21809:1 21812:3 21822:1 21824:1 21826:1 21827:1 21829:1 21830:1 21838:1 21846:2 21848:3 21867:2 21870:1 21885:1 21901:1 21916:2 21937:1 21941:1 21952:1 21967:1 21971:1 21975:1 21994:3 21999:1 22009:3 22012:2 22016:3 22021:1 22025:1 22052:1 22059:1 22061:1 22065:2 22077:2 22080:1 22096:3 22135:1 22144:1 22147:1 22150:1 22173:4 22174:5 22178:3 22180:1 22189:2 22190:1 22205:1 22212:1 22222:1 22223:4 22230:1 22236:1 22243:2 22248:1 22252:3 22257:2 22258:3 22265:1 22277:2 22290:1 22291:1 22293:1 22294:3 22295:1 22302:1 22315:2 22318:1 22329:2 22331:1 22332:1 22336:1 22337:1 22345:3 22357:1 22362:2 22368:1 22391:3 22392:1 22406:2 22412:1 22414:24 22419:1 22420:2 22422:4 22425:1 22426:2 22427:2 22430:1 22432:1 22434:1 22453:3 22455:1 22461:1 22464:2 22467:1 22473:2 22493:2 22495:2 22496:1 22507:1 22529:1 22538:1 22542:1 22579:2 22585:1 22593:4 22599:1 22616:2 22621:1 22634:1 22646:1 22672:1 22674:2 22676:2 22679:1 22680:1 22687:1 22691:3 22692:1 22695:1 22699:2 22705:1 22706:1 22721:2 22726:2 22736:1 22737:1 22758:1 22777:1 22782:1 22784:1 22788:1 22808:1 22837:1 22848:1 22866:1 22867:1 22878:1 22896:2 22902:1 22919:1 22921:1 22931:1 22935:1 22947:2 22948:1 22955:1 22962:2 22964:1 22980:3 22981:1 22982:1 22998:3 23001:2 23021:2 23024:1 23027:1 23033:2 23038:1 23099:1 23143:1 23148:1 23165:1 23184:3 23188:1 23195:1 23196:1 23207:2 23227:2 23234:2 23235:1 23239:1 23241:1 23248:1 23254:1 23275:2 23283:3 23297:1 23299:2 23302:1 23310:1 23313:1 23326:1 23340:1 23343:1 23349:1 23352:1 23361:11 23368:1 23394:2 23403:1 23408:1 23437:1 23439:1 23441:1 23452:1 23494:1 23504:1 23519:1 23520:1 23532:2 23545:1 23559:2 23568:1 23581:1 23591:1 23592:1 23600:1 23616:6 23618:1 23620:1 23635:1 23647:1 23651:1 23659:2 23720:1 23722:1 23732:3 23736:1 23744:1 23749:2 23758:1 23774:1 23785:1 23798:1 23806:1 23814:1 23831:1 23832:1 23875:2 23884:5 23885:1 23896:4 23899:1 23910:1 23918:2 23919:1 23920:1 23928:1 23939:2 23941:1 23966:2 23973:1 23979:1 23994:3 23995:2 23996:1 24001:1 24025:1 24030:1 24044:1 24047:1 24052:1 24057:2 24058:3 24064:1 24068:1 24073:1 24093:1 24098:1 24101:1 24114:1 24124:1 24146:1 24148:1 24150:1 24156:1 24159:2 24160:1 24162:6 24164:3 24166:4 24167:2 24171:1 24172:2 24174:2 24175:1 24182:2 24183:3 24187:2 24193:2 24206:4 24233:1 24236:2 24237:1 24242:1 24247:2 24263:3 24267:3 24291:2 24295:1 24297:1 24307:3 24321:1 24324:1 24342:1 24345:1 24347:1 24348:2 24362:1 24390:1 24401:1 24402:1 24419:3 24440:2 24448:1 24450:4 24453:1 24464:2 24508:1 24512:1 24513:1 24524:1 24547:2 24548:1 24558:1 24571:1 24582:1 24584:1 24609:1 24630:3 24645:1 24654:1 24658:1 24665:2 24707:3 24746:1 24757:2 24763:1 24772:1 24780:1 24783:4 24791:1 24793:1 24797:1 24810:1 24816:1 24822:4 24878:1 24899:1 24900:2 24912:2 24915:3 24946:10 24955:1 24969:9 24990:1 24997:1 25005:1 25015:2 25028:1 25038:2 25041:1 25042:1 25045:1 25046:1 25047:1 25089:1 25093:2 25099:2 25104:1 25109:1 25111:2 25114:5 25122:1 25137:2 25139:2 25141:7 25144:4 25145:2 25155:1 25162:1 25167:2 25170:1 25177:1 25182:1 25214:2 25219:1 25225:4 25230:1 25247:3 25258:2 25259:2 25319:1 25320:1 25335:1 25342:1 25345:1 25346:1 25356:1 25384:1 25386:1 25401:1 25410:1 25412:2 25413:1 25416:2 25425:1 25436:5 25465:1 25468:1 25473:1 25488:1 25515:1 25557:1 25561:1 25569:1 25576:1 25600:1 25618:1 25663:1 25665:1 25676:1 25679:3 25680:2 25691:1 25700:1 25701:1 25708:2 25718:2 25726:1 25729:1 25742:1 25757:1 25759:2 25796:3 25804:1 25812:1 25816:2 25829:1 25835:1 25838:5 25864:1 25865:4 25880:1 25901:1 25903:1 25906:2 25916:1 25929:1 25930:1 25936:2 25953:2 25971:2 25988:1 25992:5 25994:1 26021:3 26033:1 26038:1 26040:1 26042:1 26059:2 26087:1 26093:4 26112:2 26113:1 26114:1 26118:1 26122:1 26123:1 26127:3 26128:1 26133:1 26166:2 26170:1 26175:1 26182:1 26185:1 26213:1 26221:2 26247:2 26249:1 26261:2 26262:1 26267:1 26285:1 26290:2 26300:1 26309:1 26316:1 26332:2 26338:1 26339:1 26341:1 26352:1 26368:3 26373:5 26392:2 26453:1 26476:1 26478:1 26479:1 26482:1 26499:1 26504:1 26524:1 26547:1 26548:1 26551:1 26556:1 26559:1 26569:1 26574:1 26582:1 26588:1 26599:1 26621:1 26622:1 26624:1 26641:1 26654:2 26657:1 26662:1 26667:2 26681:4 26700:4 26709:5 26721:1 26736:1 26737:1 26743:1 26759:1 26772:1 26778:1 26787:1 26788:10 26817:1 26838:1 26840:2 26844:1 26845:1 26847:1 26848:1 26856:11 26894:3 26933:2 26934:1 26938:1 26954:2 26960:5 26965:2 26967:2 26981:1 26985:2 26988:1 26994:2 27003:1 27006:1 27016:1 27022:1 27033:1 27036:1 27057:1 27058:2 27069:2 27070:1 27079:1 27090:1 27103:1 27108:1 27113:1 27136:1 27141:2 27143:1 27145:1 27147:1 27149:1 27160:2 27187:1 27188:1 27229:1 27275:1 27279:1 27298:1 27330:1 27332:1 27342:2 27365:4 27368:1 27385:1 27392:1 27408:1 27412:1 27419:1 27465:1 27481:2 27500:1 27517:1 27536:3 27549:1 27560:1 27563:6 27575:1 27595:1 27597:3 27620:1 27627:2 27636:1 27658:1 27661:1 27662:1 27673:1 27675:1 27678:1 27687:24 27689:4 27692:5 27694:1 27695:3 27702:1 27724:7 27739:1 27777:1 27789:2 27804:1 27808:1 27820:1 27821:2 27832:3 27838:2 27859:11 27863:2 27867:1 27869:1 27874:1 27885:1 27887:1 27889:1 27893:2 27900:2 27906:1 27909:1 27917:2 27923:1 27930:1 27934:1 27935:2 27948:1 27951:1 27960:1 27964:1 27968:1 27969:1 27975:1 28003:1 28011:1 28028:2 28030:1 28031:1 28050:1 28051:1 28054:1 28058:1 28068:3 28102:1 28126:1 28127:2 28128:2 28131:1 28169:1 28174:1 28177:1 28178:1 28180:1 28183:1 28187:2 28193:1 28202:1 28203:1 28204:1 28214:2 28218:1 28223:1 28292:1 28315:1 28319:1 28320:1 28341:1 28350:1 28356:1 28359:1 28362:1 28363:2 28373:1 28375:2 28380:1 28387:1 28397:6 28404:1 28409:1 28411:5 28413:1 28419:1 28461:1 28469:2 28470:1 28506:3 28514:1 28520:1 28536:3 28541:1 28543:2 28551:1 28553:1 28560:6 28594:1 28596:1 28646:1 28648:1 28665:2 28685:2 28703:1 28709:1 28724:1 28728:1 28734:1 28748:1 28761:2 28792:1 28801:7 28815:1 28816:1 28818:1 28836:7 28849:5 28850:1 28867:1 28904:1 28913:8 28914:3 28916:2 28919:1 28921:1 28924:3 28925:2 28941:1 28947:1 28958:1 28959:2 28961:3 28963:3 29003:1
9 11:1 14:1 24:1 34:1 37:2 56:1 60:1 65:1 79:1 82:1 83:1 89:1 90:1 103:1 109:1 113:1 117:1 125:1 143:1 150:1 153:3 162:1 170:4 189:7 214:1 245:1 270:1 282:2 293:1 295:26 303:2 315:1 316:3 318:4 326:1 333:1 348:1 363:1 381:1 403:2 424:3 432:1 442:1 444:1 515:1 523:1 561:1 563:4 564:1 569:2 572:3 590:4 596:2 598:1 600:1 613:2 626:1 634:2 638:1 643:1 650:1 674:1 678:1 685:1 692:1 702:1 716:1 734:1 735:1 748:1 752:1 767:1 770:1 788:1 795:1 804:1 805:1 807:2 808:1 828:1 830:7 832:3 842:2 843:1 855:1 856:12 860:1 867:1 871:1 875:2 877:3 879:7 885:1 889:1 892:1 893:1 899:1 905:3 916:1 924:2 925:2 941:1 963:1 974:3 989:1 996:2 998:1 1002:2 1019:1 1020:2 1027:1 1045:1 1059:1 1061:2 1078:1 1086:1 1087:1 1089:2 1092:1 1104:3 1112:2 1117:1 1136:1 1143:1 1148:3 1152:1 1160:1 1163:1 1179:1 1207:2 1231:1 1232:1 1241:1 1244:1 1257:1 1262:1 1276:1 1284:1 1287:1 1313:1 1330:1 1345:1 1353:1 1355:2 1374:2 1376:1 1394:1 1397:2 1400:2 1401:5 1402:1 1417:1 1419:2 1420:1 1422:1 1423:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1506:2 1507:1 1508:1 1516:3 1543:1 1547:1 1555:1 1557:1 1560:1 1562:2 1564:3 1571:1 1596:4 1598:1 1617:1 1619:3 1627:4 1634:2 1659:1 1660:1 1677:1 1678:1 1682:1 1699:1 1709:1 1743:2 1757:1 1760:1 1762:1 1778:4 1789:1 1794:1 1802:1 1811:1 1819:1 1828:1 1830:1 1888:1 1895:14 1903:1 1907:2 1919:1 1923:1 1929:1 1935:1 1936:1 1952:1 1962:8 1963:1 1965:2 1993:1 1998:1 2006:2 2011:3 2082:1 2085:1 2089:3 2095:2 2100:1 2101:1 2105:1 2108:1 2132:1 2142:1 2154:1 2156:1 2158:1 2159:4 2160:1 2162:1 2165:1 2172:1 2174:3 2177:1 2178:2 2179:4 2181:1 2187:1 2190:2 2191:1 2207:1 2212:1 2216:2 2219:2 2220:2 2221:8 2223:4 2226:1 2227:2 2228:4 2232:1 2233:1 2234:1 2237:2 2239:1 2245:1 2247:1 2249:1 2251:6 2252:2 2253:7 2264:1 2268:1 2279:1 2297:1 2309:2 2315:1 2322:1 2336:1 2339:1 2343:1 2347:1 2358:3 2370:3 2374:1 2376:1 2392:2 2410:3 2421:6 2433:1 2445:1 2461:1 2465:1 2473:1 2485:5 2494:3 2500:1 2522:2 2536:1 2543:2 2552:3 2561:2 2563:1 2570:1 2580:2 2609:2 2631:1 2648:1 2651:3 2656:1 2659:1 2667:2 2670:1 2672:1 2675:1 2683:1 2688:1 2691:1 2704:1 2708:1 2712:1 2713:1 2723:1 2730:3 2756:1 2760:1 2761:2 2762:1 2766:7 2770:2 2775:2 2780:1 2782:1 2810:1 2813:1 2816:1 2818:1 2836:2 2854:3 2857:1 2867:22 2883:4 2888:1 2900:2 2909:1 2915:1 2931:1 2936:11 2961:1 2965:4 2968:1 2969:1 2989:1 3015:1 3023:1 3026:1 3030:1 3074:3 3075:1 3089:1 3097:1 3105:1 3106:1 3112:1 3166:1 3188:2 3197:1 3205:1 3224:1 3231:1 3232:4 3243:1 3248:1 3255:1 3256:1 3266:1 3271:1 3293:1 3295:3 3338:1 3352:1 3357:12 3397:1 3407:1 3420:2 3424:2 3459:1 3471:1 3472:1 3475:2 3478:1 3488:1 3489:1 3495:2 3517:1 3528:1 3540:2 3548:1 3558:1 3570:1 3574:1 3577:1 3580:2 3582:4 3599:4 3604:2 3605:1 3606:1 3607:2 3608:2 3615:1 3634:2 3638:1 3639:4 3647:1 3648:1 3669:1 3680:1 3684:1 3687:1 3688:3 3692:1 3695:2 3698:2 3712:1 3730:1 3737:1 3740:1 3742:4 3744:1 3746:2 3748:10 3763:1 3779:1 3783:4 3784:1 3788:2 3789:11 3790:1 3792:1 3796:1 3810:1 3813:5 3817:1 3822:1 3835:1 3836:3 3838:1 3848:1 3851:1 3862:1 3866:1 3874:1 3876:1 3883:1 3888:1 3895:1 3902:3 3904:2 3918:2 3919:1 3931:1 3934:1 3939:1 3940:1 3943:1 3948:1 3955:1 3964:4 3970:1 3972:1 3977:2 3982:1 3987:1 3988:2 3989:2 3998:4 3999:3 4005:1 4019:1 4033:1 4040:1 4051:1 4054:2 4069:1 4078:1 4085:2 4086:1 4093:1 4113:1 4125:1 4129:1 4136:1 4137:1 4173:1 4190:2 4193:2 4201:1 4204:1 4210:1 4219:1 4254:1 4270:2 4272:2 4282:1 4298:1 4314:2 4348:2 4362:5 4378:1 4414:1 4416:1 4428:2 4434:1 4439:2 4455:1 4491:1 4494:1 4528:1 4549:1 4554:1 4560:1 4562:1 4583:1 4585:2 4605:1 4613:1 4619:2 4626:3 4640:1 4646:1 4657:1 4658:1 4676:1 4691:1 4695:8 4724:1 4731:1 4742:1 4746:1 4759:1 4768:1 4773:7 4776:1 4787:1 4788:2 4810:1 4815:1 4818:1 4851:3 4867:1 4876:19 4878:2 4881:1 4895:2 4903:1 4917:1 4925:2 4928:7 4940:2 4963:1 4964:1 4980:1 4981:1 4984:1 4985:6 5003:4 5005:4 5006:1 5008:1 5009:1 5011:1 5013:3 5014:1 5015:1 5017:2 5022:1 5026:1 5028:2 5030:3 5031:1 5033:1 5041:1 5042:1 5045:4 5046:2 5064:1 5090:1 5125:1 5131:2 5133:1 5157:2 5176:1 5177:1 5184:2 5190:2 5195:2 5203:2 5219:1 5220:1 5237:1 5245:2 5249:2 5255:1 5280:1 5302:1 5306:1 5307:1 5328:1 5351:2 5358:6 5362:1 5365:1 5369:2 5371:2 5386:1 5394:1 5404:2 5423:1 5429:1 5434:2 5438:1 5453:1 5480:1 5493:1 5501:1 5511:2 5524:2 5534:1 5535:2 5538:2 5540:2 5548:1 5551:1 5556:2 5563:1 5564:1 5582:3 5584:1 5589:1 5593:1 5607:1 5615:3 5629:3 5639:1 5640:1 5663:3 5680:1 5681:2 5694:1 5701:3 5705:1 5720:4 5721:1 5728:1 5744:1 5749:1 5773:1 5801:1 5802:1 5812:2 5843:2 5850:1 5852:1 5855:1 5877:1 5881:2 5898:1 5920:1 5942:1 5947:2 5949:1 5972:13 5987:4 5992:4 6000:1 6001:1 6006:3 6007:1 6009:2 6017:1 6039:3 6040:1 6053:1 6056:1 6058:1 6078:1 6110:1 6130:2 6137:2 6138:1 6142:1 6150:1 6153:2 6176:5 6178:1 6182:1 6192:1 6197:1 6199:1 6220:1 6244:1 6245:1 6247:1 6259:3 6262:1 6263:1 6265:1 6269:1 6270:2 6273:1 6274:2 6275:1 6276:4 6279:2 6282:4 6283:9 6284:5 6286:1 6316:1 6334:1 6379:3 6420:2 6435:2 6482:2 6493:1 6502:1 6507:1 6513:1 6531:1 6536:1 6537:1 6542:1 6556:1 6558:1 6565:1 6598:1 6609:1 6613:1 6652:1 6653:1 6654:2 6677:1 6679:2 6680:1 6689:1 6699:7 6715:2 6722:2 6728:1 6741:1 6744:1 6751:1 6757:1 6777:1 6795:1 6810:2 6811:1 6823:2 6851:1 6854:2 6855:2 6860:3 6866:1 6871:1 6885:3 6886:2 6903:1 6906:1 6914:1 6918:1 6919:2 6922:2 6927:1 6932:1 6939:1 6948:1 6987:1 6999:1 7049:1 7050:10 7052:1 7067:1 7073:2 7074:2 7091:1 7097:1 7099:1 7102:1 7124:1 7125:1 7155:2 7169:1 7180:1 7198:2 7218:2 7234:1 7248:2 7263:3 7274:1 7278:1 7287:2 7288:1 7290:1 7297:1 7303:1 7311:1 7322:1 7334:4 7346:3 7347:1 7352:1 7367:2 7371:1 7382:2 7383:1 7386:2 7401:1 7407:2 7427:1 7463:2 7485:1 7499:2 7516:1 7518:1 7554:2 7555:11 7556:3 7570:2 7580:2 7582:3 7584:1 7603:4 7604:1 7620:50 7622:1 7643:3 7644:11 7645:1 7648:1 7665:1 7671:2 7685:1 7696:1 7700:1 7710:1 7720:1 7725:2 7734:1 7751:1 7755:1 7758:2 7786:1 7826:2 7851:3 7871:1 7878:1 7892:1 7897:4 7928:1 7931:1 7943:1 7962:1 7967:1 8004:1 8007:1 8032:1 8037:1 8043:2 8044:3 8045:1 8046:1 8062:1 8063:1 8093:1 8107:1 8110:1 8116:2 8124:2 8130:2 8136:1 8142:2 8145:1 8154:1 8156:6 8180:2 8184:1 8186:1 8194:1 8236:1 8254:1 8270:1 8299:1 8301:2 8311:2 8319:2 8334:1 8336:1 8358:1 8367:2 8369:2 8376:3 8379:1 8383:3 8387:2 8394:1 8395:3 8405:1 8412:1 8422:1 8430:5 8438:1 8441:1 8449:1 8460:1 8468:1 8480:1 8490:1 8497:1 8500:3 8501:5 8503:4 8504:1 8505:2 8508:3 8510:8 8512:2 8513:2 8516:1 8525:1 8526:2 8543:4 8549:1 8550:3 8567:3 8571:1 8572:2 8575:2 8578:2 8582:1 8586:4 8604:1 8640:2 8655:1 8657:1 8679:1 8688:1 8710:1 8719:1 8728:1 8739:1 8756:2 8762:1 8772:2 8779:3 8805:2 8808:1 8810:1 8811:4 8815:2 8827:3 8833:1 8840:1 8846:1 8857:1 8914:1 8921:1 8929:1 8936:2 8950:4 8954:2 8969:1 8971:1 8992:3 9001:1 9011:1 9019:1 9022:2 9023:1 9035:1 9040:1 9050:1 9057:1 9060:1 9065:1 9068:1 9069:1 9077:3 9107:1 9115:3 9121:1 9128:1 9134:1 9139:1 9142:2 9151:1 9161:2 9162:1 9196:1 9200:1 9207:7 9209:1 9210:1 9216:2 9219:1 9226:26 9230:1 9231:2 9246:2 9247:1 9261:1 9275:1 9298:1 9305:1 9314:1 9319:1 9329:1 9338:2 9349:1 9360:2 9363:6 9365:1 9390:1 9392:1 9421:1 9427:1 9433:3 9448:1 9490:1 9497:1 9528:1 9529:1 9537:1 9539:1 9555:1 9558:1 9568:1 9569:5 9574:1 9582:1 9586:3 9594:2 9601:1 9608:2 9634:2 9652:1 9663:7 9676:1 9677:4 9687:2 9689:1 9697:1 9700:1 9702:1 9704:1 9712:1 9713:1 9746:3 9772:1 9789:1 9823:2 9829:1 9847:7 9850:1 9856:1 9862:1 9871:3 9877:2 9878:1 9880:1 9883:2 9887:1 9890:1 9898:4 9911:1 9913:1 9917:1 9919:1 9924:1 9928:3 9929:1 9932:2 9938:1 9939:1 9948:1 9954:1 9956:1 9968:4 9986:1 9987:1 9996:1 10019:1 10037:1 10038:1 10057:1 10065:1 10073:1 10094:1 10122:1 10124:1 10125:1 10126:1 10135:2 10157:1 10178:1 10188:1 10191:1 10200:1 10234:1 10241:2 10266:2 10280:1 10302:1 10328:2 10329:1 10347:3 10351:2 10359:2 10370:1 10372:1 10405:1 10414:1 10436:1 10448:1 10478:2 10484:1 10486:1 10488:1 10501:1 10504:2 10507:2 10513:4 10521:1 10523:1 10524:1 10526:1 10537:1 10539:2 10555:3 10557:3 10558:1 10564:1 10573:2 10582:3 10583:2 10590:2 10592:2 10593:1 10621:1 10641:1 10657:7 10665:5 10677:2 10683:3 10686:11 10737:1 10740:1 10747:1 10748:1 10783:2 10787:1 10790:1 10824:1 10839:1 10846:1 10857:1 10883:1 10901:1 10903:3 10905:2 10909:2 10910:2 10921:2 10931:2 10937:1 10943:1 10947:1 10953:1 10962:1 10969:1 10989:6 10992:1 11010:4 11014:1 11016:1 11018:1 11062:1 11063:2 11064:2 11066:1 11071:1 11083:1 11085:1 11094:1 11100:1 11106:1 11107:1 11118:1 11131:1 11138:1 11145:1 11147:1 11175:1 11177:1 11188:1 11197:1 11203:5 11208:1 11216:1 11230:1 11232:1 11234:1 11248:1 11260:1 11268:2 11278:2 11284:1 11285:1 11300:2 11301:1 11302:2 11308:1 11315:2 11317:1 11333:4 11341:1 11367:1 11370:9 11371:1 11400:1 11401:1 11407:1 11430:1 11442:1 11444:2 11466:1 11468:1 11469:1 11476:1 11477:1 11479:1 11481:2 11496:1 11501:1 11506:1 11509:2 11514:1 11520:2 11526:3 11530:7 11547:2 11549:1 11550:6 11580:1 11587:1 11600:1 11603:3 11609:1 11614:1 11615:2 11619:3 11622:1 11631:1 11632:3 11633:1 11636:2 11641:3 11645:1 11649:1 11664:7 11671:1 11684:8 11690:1 11693:1 11711:1 11716:1 11727:1 11734:1 11755:1 11772:2 11789:1 11824:1 11826:1 11852:1 11865:3 11871:1 11877:1 11882:1 11891:1 11908:1 11916:1 11924:1 11931:3 11936:3 11952:1 11973:3 11977:1 11990:1 11997:1 12004:1 12005:1 12025:1 12107:1 12109:1 12110:2 12111:3 12115:2 12125:1 12132:1 12142:1 12154:1 12156:1 12165:3 12166:5 12172:2 12178:1 12184:2 12239:1 12243:1 12250:1 12263:1 12272:1 12276:2 12281:6 12297:1 12302:1 12323:2 12337:1 12345:1 12346:1 12349:2 12361:3 12362:1 12376:2 12380:2 12398:1 12405:1 12420:1 12423:2 12431:2 12458:1 12464:1 12472:1 12476:1 12477:3 12480:1 12491:1 12493:1 12495:1 12508:1 12512:1 12515:1 12526:2 12534:1 12586:1 12608:8 12621:1 12633:1 12635:1 12636:1 12644:1 12648:15 12654:1 12658:1 12668:2 12671:5 12676:1 12681:1 12701:1 12708:2 12733:2 12764:1 12769:2 12772:2 12789:1 12790:1 12796:2 12797:1 12813:1 12827:3 12831:1 12835:1 12837:1 12861:1 12888:1 12914:1 12949:7 12984:1 12999:1 13045:8 13049:1 13066:2 13072:1 13076:5 13080:4 13087:1 13093:1 13094:6 13120:1 13128:1 13133:1 13142:1 13143:1 13144:1 13166:5 13194:1 13206:1 13211:1 13213:1 13224:6 13231:1 13232:3 13233:1 13250:1 13252:2 13257:1 13263:1 13275:2 13278:1 13282:1 13283:1 13301:1 13302:4 13306:1 13310:1 13320:3 13331:1 13341:2 13346:1 13364:2 13372:7 13376:1 13396:1 13416:4 13420:1 13421:3 13440:1 13454:1 13468:2 13490:1 13524:1 13557:1 13561:1 13570:1 13599:3 13601:2 13606:4 13607:2 13610:1 13620:1 13628:1 13633:1 13654:3 13674:1 13680:3 13691:2 13694:1 13697:1 13698:1 13723:1 13733:6 13745:1 13764:2 13779:2 13782:1 13788:2 13799:1 13813:1 13827:7 13832:3 13833:1 13838:1 13847:1 13886:1 13895:1 13904:3 13931:9 13942:1 13963:1 13974:1 13980:2 13986:1 14006:1 14018:1 14024:1 14029:1 14054:1 14076:6 14089:1 14107:3 14119:1 14134:1 14140:1 14152:1 14161:1 14179:2 14180:1 14181:1 14212:1 14223:1 14235:1 14245:1 14255:1 14266:1 14274:2 14284:2 14297:1 14299:3 14312:1 14313:1 14317:2 14318:9 14324:1 14325:6 14335:3 14339:1 14340:1 14347:1 14358:1 14361:1 14376:1 14385:1 14433:1 14434:1 14449:5 14482:2 14485:1 14489:2 14492:1 14498:4 14514:1 14523:1 14532:1 14533:3 14551:1 14554:1 14573:1 14591:2 14600:2 14614:2 14616:2 14623:1 14624:1 14636:2 14637:1 14647:4 14650:1 14664:2 14674:1 14683:2 14700:1 14701:1 14761:1 14775:1 14780:1 14785:1 14798:1 14803:1 14820:3 14821:1 14823:1 14824:1 14836:1 14837:1 14881:1 14883:1 14891:6 14893:1 14910:1 14912:1 14916:2 14935:1 14936:4 14938:3 14961:2 14970:1 14984:1 14986:1 14999:1 15000:1 15020:8 15022:1 15024:1 15037:1 15055:1 15085:1 15109:1 15117:1 15123:3 15125:1 15130:1 15134:1 15145:1 15146:2 15158:1 15160:1 15173:1 15177:2 15178:1 15180:1 15207:1 15217:1 15233:1 15238:1 15245:2 15259:2 15275:1 15301:2 15322:1 15332:8 15345:2 15380:1 15385:2 15395:1 15398:1 15403:1 15404:4 15414:4 15420:1 15424:1 15431:1 15435:1 15436:1 15440:1 15453:2 15455:1 15459:2 15471:1 15482:2 15496:1 15509:1 15527:1 15539:1 15556:1 15563:2 15568:1 15571:1 15578:7 15581:3 15590:1 15591:3 15595:1 15598:1 15607:2 15614:2 15622:2 15624:1 15625:5 15626:2 15631:1 15637:1 15642:1 15644:1 15678:1 15679:1 15687:1 15706:1 15711:1 15717:1 15745:7 15750:1 15757:1 15763:2 15768:1 15777:1 15785:3 15814:2 15831:6 15832:3 15835:1 15837:1 15839:1 15871:1 15879:3 15893:1 15896:1 15906:1 15909:3 15911:2 15913:1 15923:1 15957:1 15967:1 15973:2 16014:1 16026:1 16029:15 16030:1 16048:4 16051:1 16055:1 16056:1 16067:1 16084:1 16095:2 16103:1 16119:3 16122:1 16127:1 16137:1 16147:1 16149:1 16150:1 16164:1 16170:1 16172:1 16177:2 16190:2 16194:1 16196:1 16237:1 16242:2 16285:3 16288:1 16289:1 16290:2 16310:1 16338:1 16353:1 16363:1 16383:1 16398:1 16400:1 16403:2 16434:1 16475:1 16482:1 16488:1 16489:1 16505:1 16511:1 16527:1 16528:1 16543:1 16546:1 16555:2 16575:1 16588:1 16589:1 16597:1 16604:1 16605:1 16614:1 16639:1 16646:1 16662:1 16666:2 16675:2 16685:2 16702:1 16708:1 16714:3 16716:2 16718:1 16738:1 16747:1 16758:1 16761:1 16776:1 16789:2 16802:1 16828:1 16830:1 16840:4 16843:1 16844:4 16851:1 16867:1 16874:1 16883:1 16899:1 16905:1 16908:1 16915:8 16929:1 16930:1 16932:1 16939:1 16942:1 16947:2 16966:4 16977:1 16990:1 16991:1 16995:2 17013:2 17015:1 17036:1 17042:1 17046:1 17050:1 17053:1 17059:5 17067:1 17087:1 17091:4 17092:1 17106:1 17110:1 17136:2 17138:2 17155:3 17156:2 17167:1 17172:1 17179:1 17181:1 17186:1 17187:2 17198:2 17199:7 17200:1 17207:2 17210:1 17244:1 17251:1 17265:1 17270:2 17277:2 17327:1 17343:1 17346:1 17360:1 17363:3 17369:2 17374:2 17397:1 17401:1 17422:1 17445:1 17447:1 17448:3 17454:2 17455:1 17456:1 17463:3 17475:3 17476:2 17477:1 17509:1 17511:1 17522:5 17523:3 17558:1 17560:2 17585:1 17587:1 17592:7 17604:1 17631:1 17636:1 17644:2 17647:2 17648:1 17652:1 17655:1 17662:1 17664:1 17665:5 17667:1 17669:1 17670:1 17683:1 17687:1 17691:1 17692:1 17698:1 17707:1 17721:1 17722:3 17747:1 17753:2 17764:1 17766:1 17767:8 17772:4 17781:25 17783:1 17785:1 17787:1 17790:1 17794:1 17812:3 17819:1 17822:1 17831:1 17838:1 17845:1 17852:1 17855:1 17860:1 17871:1 17872:1 17873:1 17875:1 17882:1 17886:1 17896:4 17907:1 17922:1 17931:5 17962:1 17967:1 17977:2 17979:1 17989:1 17994:1 17998:2 18007:5 18009:1 18011:1 18019:1 18032:1 18045:1 18056:1 18067:1 18080:1 18084:1 18114:1 18120:1 18133:1 18150:1 18152:2 18167:1 18169:1 18170:1 18178:1 18212:1 18219:2 18220:1 18249:2 18315:4 18323:1 18331:1 18348:1 18357:1 18380:2 18381:1 18382:1 18399:2 18417:4 18424:1 18444:1 18449:1 18461:1 18471:2 18476:2 18478:2 18481:1 18495:1 18498:1 18504:5 18509:1 18512:1 18516:1 18519:1932 18524:1 18534:1 18538:1 18572:2 18573:1 18582:3 18608:1 18643:2 18648:2 18657:1 18668:2 18684:1 18690:1 18702:1 18708:3 18715:6 18720:1 18725:5 18727:2 18728:4 18748:2 18763:1 18802:6 18808:2 18810:2 18814:1 18816:1 18840:1 18842:26 18850:1 18861:1 18863:7 18904:1 18907:1 18915:1 18920:1 18930:2 18938:1 18947:1 18968:1 18969:1 18971:1 18982:2 18991:3 19007:1 19008:1 19017:1 19033:1 19055:2 19061:1 19079:1 19089:1 19091:1 19113:1 19121:1 19135:2 19140:2 19142:3 19168:1 19172:1 19174:2 19176:3 19180:1 19187:1 19190:1 19192:1 19197:3 19202:1 19210:1 19218:1 19228:5 19235:1 19257:2 19271:2 19273:1 19293:1 19298:10 19314:1 19315:1 19335:7 19336:1 19350:1 19353:1 19359:1 19370:1 19412:1 19420:3 19442:2 19475:1 19482:1 19494:1 19507:4 19508:1 19515:3 19516:2 19531:1 19534:1 19549:1 19550:3 19551:1 19563:3 19566:1 19573:1 19592:2 19600:1 19605:1 19628:1 19634:1 19661:3 19674:1 19680:1 19708:2 19719:1 19720:1 19724:1 19735:2 19742:1 19745:1 19751:1 19752:1 19754:1 19767:2 19771:3 19775:4 19778:1 19784:4 19794:1 19807:1 19816:1 19818:1 19829:1 19833:1 19839:2 19859:1 19862:1 19876:2 19881:1 19904:2 19909:4 19918:1 19936:1 19948:1 19949:4 19953:1 19964:1 19966:1 19978:2 19992:1 19996:1 20001:1 20003:1 20004:2 20017:1 20020:1 20031:1 20032:1 20036:1 20037:1 20052:1 20061:4 20068:1 20074:1 20079:1 20084:2 20086:1 20094:1 20117:2 20118:2 20137:1 20159:5 20187:1 20211:6 20212:3 20218:2 20226:2 20231:1 20237:1 20272:1 20281:1 20283:3 20293:2 20299:1 20302:1 20313:1 20400:1 20404:3 20406:4 20408:1 20420:1 20443:1 20453:1 20454:1 20455:6 20465:2 20466:1 20467:1 20468:4 20474:2 20495:1 20525:1 20530:1 20531:2 20547:1 20567:4 20577:1 20594:1 20599:1 20600:1 20604:1 20643:1 20644:1 20652:1 20656:1 20658:3 20671:1 20677:4 20679:1 20683:1 20685:1 20686:1 20692:1 20701:1 20705:2 20710:1 20715:1 20716:1 20722:2 20730:1 20738:1 20747:5 20770:1 20780:2 20781:1 20782:2 20783:1 20797:1 20823:2 20833:1 20846:1 20862:1 20900:1 20907:2 20918:1 20945:1 20948:2 20957:2 20979:6 20985:1 20986:1 20988:1 21010:1 21016:1 21019:2 21029:1 21049:1 21062:2 21075:1 21079:1 21080:1 21088:1 21091:2 21100:1 21107:1 21122:1 21137:2 21158:1 21169:1 21174:1 21193:1 21196:1 21198:1 21201:1 21265:1 21276:1 21288:1 21289:1 21313:1 21320:1 21345:1 21357:1 21358:2 21359:1 21371:2 21372:1 21374:2 21380:1 21386:2 21387:3 21389:1 21392:1 21397:1 21405:1 21406:1 21407:1 21415:1 21442:2 21444:1 21448:1 21459:1 21472:4 21486:1 21488:1 21490:1 21493:1 21498:2 21499:2 21503:1 21504:1 21509:2 21518:1 21520:1 21523:1 21528:1 21538:1 21544:1 21548:9 21551:1 21567:1 21568:2 21569:1 21580:1 21616:1 21634:1 21647:2 21648:1 21654:2 21663:1 21670:1 21675:8 21684:1 21691:1 21695:3 21712:1 21714:2 21715:1 21724:1 21750:1 21770:1 21771:1 21778:1 21809:1 21812:3 21822:1 21824:1 21826:1 21827:1 21829:1 21830:1 21838:1 21846:2 21848:3 21867:2 21870:1 21885:1 21901:1 21916:2 21931:1 21937:1 21941:1 21952:1 21967:1 21971:1 21975:1 21994:3 21999:1 22009:3 22012:2 22016:3 22021:1 22025:1 22052:1 22059:1 22061:1 22065:2 22077:2 22080:1 22096:3 22135:1 22144:1 22147:1 22150:1 22173:4 22174:5 22178:3 22179:1 22180:2 22189:2 22190:1 22205:1 22212:1 22222:1 22223:4 22230:1 22236:1 22239:1 22243:2 22248:1 22252:3 22257:2 22258:3 22265:1 22277:2 22290:1 22291:1 22293:1 22294:3 22295:1 22302:1 22315:2 22318:1 22329:2 22331:1 22332:1 22336:1 22337:1 22345:3 22357:1 22362:2 22368:1 22390:1 22391:3 22392:1 22406:2 22412:1 22414:25 22419:1 22420:2 22422:4 22425:1 22426:3 22427:2 22430:1 22432:1 22434:1 22453:3 22455:1 22461:1 22464:3 22467:1 22473:2 22493:2 22495:2 22496:1 22507:1 22529:1 22538:1 22542:1 22579:2 22585:1 22593:4 22599:1 22616:2 22621:1 22634:1 22646:1 22672:1 22674:2 22676:2 22679:1 22680:1 22687:1 22691:3 22692:1 22695:1 22699:2 22705:1 22706:1 22721:3 22726:2 22736:1 22737:1 22758:1 22777:1 22782:1 22784:1 22788:1 22808:1 22837:1 22848:1 22866:1 22867:1 22878:1 22896:2 22902:1 22919:1 22921:1 22931:1 22935:1 22947:2 22948:1 22955:1 22962:2 22964:1 22980:3 22981:1 22982:1 22998:3 23001:2 23021:2 23024:1 23027:1 23033:2 23038:1 23072:1 23099:1 23143:1 23148:1 23165:1 23184:3 23188:1 23195:1 23196:1 23207:2 23227:2 23234:2 23235:1 23239:1 23241:1 23248:1 23254:1 23275:2 23283:3 23297:1 23299:2 23302:1 23310:1 23313:1 23326:1 23340:1 23343:1 23349:1 23352:1 23361:11 23368:1 23394:2 23403:1 23408:1 23437:1 23439:1 23441:1 23452:1 23494:1 23504:1 23519:1 23520:1 23532:2 23545:1 23559:2 23568:1 23581:1 23591:1 23592:1 23600:1 23616:6 23618:1 23620:1 23635:1 23647:1 23651:1 23659:2 23720:1 23722:1 23732:3 23736:1 23744:1 23749:2 23758:1 23774:1 23785:1 23798:1 23806:1 23814:1 23831:1 23832:1 23875:3 23884:5 23885:1 23896:4 23899:1 23910:1 23918:2 23919:1 23920:1 23928:1 23939:2 23941:1 23966:2 23973:1 23979:1 23994:3 23995:2 23996:1 24001:1 24025:1 24030:1 24044:1 24047:1 24052:1 24057:2 24058:3 24064:1 24068:1 24073:1 24093:1 24098:1 24101:1 24114:1 24124:1 24146:1 24148:1 24150:1 24156:1 24159:2 24160:1 24162:7 24164:3 24166:4 24167:2 24171:1 24172:2 24174:2 24175:1 24182:2 24183:3 24187:2 24193:2 24206:4 24233:1 24236:2 24237:1 24242:1 24247:2 24263:3 24267:3 24291:2 24295:1 24297:1 24307:3 24321:1 24324:1 24342:1 24345:1 24347:1 24348:2 24362:1 24390:1 24401:1 24402:1 24419:3 24440:2 24448:1 24450:4 24453:1 24464:2 24508:1 24512:1 24513:1 24524:1 24547:2 24548:1 24558:1 24571:1 24582:1 24584:1 24609:1 24630:3 24645:1 24654:1 24658:1 24665:2 24707:3 24746:1 24757:2 24763:1 24772:1 24780:1 24783:4 24791:1 24793:1 24797:1 24810:1 24816:1 24822:4 24878:1 24899:1 24900:2 24912:2 24915:3 24946:10 24955:1 24969:9 24990:1 24997:1 25005:1 25015:2 25028:1 25038:2 25041:1 25042:1 25045:1 25046:1 25047:1 25089:1 25093:2 25099:2 25104:1 25109:1 25111:2 25114:5 25122:1 25137:2 25139:2 25141:7 25144:4 25145:2 25155:1 25162:1 25167:2 25170:1 25177:1 25182:1 25214:2 25219:1 25225:4 25230:1 25247:3 25258:2 25259:2 25319:1 25320:1 25335:1 25342:1 25345:1 25346:1 25356:1 25384:1 25386:1 25401:1 25410:1 25412:2 25413:1 25416:2 25425:1 25436:5 25465:1 25468:1 25473:1 25488:1 25492:1 25515:1 25557:1 25561:1 25569:1 25576:1 25600:1 25618:1 25663:1 25665:1 25676:1 25679:3 25680:2 25691:1 25700:1 25701:1 25708:2 25718:2 25726:1 25729:1 25742:1 25757:1 25759:2 25796:3 25804:1 25812:1 25816:2 25829:1 25835:1 25838:5 25864:1 25865:4 25880:1 25901:1 25903:1 25906:2 25916:1 25929:1 25930:1 25936:2 25953:2 25971:2 25988:1 25992:5 25994:1 26021:3 26024:1 26033:1 26038:1 26040:1 26042:1 26059:2 26087:1 26093:4 26112:2 26113:1 26114:1 26118:1 26122:1 26123:1 26127:3 26128:1 26133:1 26166:2 26170:1 26175:1 26182:1 26185:1 26213:1 26221:2 26247:2 26249:1 26261:2 26262:1 26267:1 26285:1 26290:2 26300:1 26309:1 26316:1 26332:2 26338:1 26339:1 26341:1 26352:1 26368:3 26373:5 26392:2 26453:1 26476:1 26478:1 26479:1 26482:1 26499:1 26504:1 26524:1 26547:1 26548:1 26551:1 26556:1 26559:1 26569:1 26574:1 26582:1 26588:1 26599:1 26621:1 26622:1 26624:1 26641:1 26654:2 26657:1 26662:1 26667:2 26681:4 26700:4 26709:5 26721:1 26736:1 26737:1 26743:1 26759:2 26772:1 26778:1 26787:1 26788:10 26817:1 26838:1 26840:2 26844:1 26845:1 26847:1 26848:2 26856:11 26894:3 26933:2 26934:1 26938:1 26954:2 26960:5 26965:2 26967:2 26981:1 26985:2 26988:1 26994:2 27003:1 27006:1 27016:1 27022:1 27033:1 27036:1 27057:1 27058:2 27061:1 27069:2 27070:1 27079:1 27090:1 27103:1 27108:1 27113:1 27135:1 27136:1 27141:2 27143:1 27145:1 27147:1 27149:1 27160:2 27187:1 27188:1 27229:1 27275:1 27279:1 27298:1 27330:1 27332:1 27342:2 27365:4 27368:1 27376:1 27385:1 27392:1 27408:1 27412:1 27419:1 27465:1 27481:2 27500:1 27517:1 27536:3 27549:1 27560:1 27563:6 27575:1 27595:1 27597:3 27620:1 27627:2 27636:1 27658:1 27661:1 27662:1 27673:1 27675:1 27678:1 27687:24 27689:4 27692:5 27694:1 27695:3 27702:1 27724:7 27739:1 27777:1 27789:2 27804:1 27808:1 27820:1 27821:2 27832:3 27838:2 27859:11 27863:2 27867:1 27869:1 27874:1 27885:1 27887:1 27889:1 27893:2 27900:2 27906:1 27909:1 27917:2 27923:1 27930:1 27934:1 27935:2 27948:2 27951:1 27960:1 27964:1 27968:1 27969:1 27975:1 28003:1 28011:1 28028:2 28030:1 28031:1 28050:1 28051:1 28054:1 28058:1 28068:3 28102:1 28126:1 28127:2 28128:2 28131:1 28169:1 28174:1 28177:1 28178:1 28180:1 28183:1 28187:2 28191:1 28193:1 28202:1 28203:1 28204:1 28214:2 28218:1 28223:1 28292:1 28315:1 28319:1 28320:1 28341:1 28350:1 28356:1 28359:1 28362:1 28363:2 28373:1 28375:2 28380:1 28387:1 28397:7 28404:1 28409:1 28411:5 28413:1 28419:1 28461:1 28469:2 28470:1 28506:3 28514:1 28520:1 28536:3 28541:1 28543:2 28551:1 28553:1 28560:6 28594:1 28596:1 28646:1 28648:1 28665:2 28685:2 28703:1 28709:1 28724:1 28728:1 28734:1 28748:1 28761:2 28792:1 28801:7 28815:1 28816:1 28818:1 28836:7 28849:5 28850:1 28867:1 28904:1 28913:8 28914:3 28916:2 28919:1 28921:1 28924:3 28925:2 28941:1 28947:1 28958:1 28959:2 28961:3 28963:3 29003:1
9 11:1 14:1 24:1 34:1 37:2 56:1 60:1 63:1 65:1 79:1 82:1 83:1 89:1 90:1 103:1 109:1 113:1 117:1 125:1 143:1 150:1 153:3 162:1 170:4 189:7 214:1 245:1 270:1 282:2 293:1 295:29 303:2 315:1 316:3 318:4 326:1 333:1 348:1 350:1 363:1 381:1 403:2 424:3 432:1 442:1 444:1 515:1 523:1 561:1 563:4 564:1 569:2 572:3 590:4 596:2 598:1 600:1 613:2 626:1 634:2 638:1 643:1 650:1 674:1 678:1 685:1 692:1 702:1 716:1 734:1 735:1 748:1 752:1 767:1 770:1 788:1 795:1 804:1 805:1 807:2 808:1 828:1 830:7 832:3 842:2 843:1 855:1 856:12 860:1 867:1 871:1 875:2 877:4 879:7 885:1 889:1 892:1 893:1 899:1 905:3 916:1 924:2 925:2 941:1 963:1 974:3 989:1 996:2 998:2 1002:2 1019:1 1020:2 1027:1 1045:1 1059:1 1061:2 1078:1 1086:1 1087:1 1089:2 1092:1 1104:3 1112:2 1117:1 1123:1 1136:1 1143:1 1148:3 1152:1 1160:1 1163:1 1179:1 1207:2 1231:1 1232:1 1241:2 1244:1 1257:1 1262:1 1276:1 1284:1 1287:1 1313:1 1330:1 1345:1 1353:1 1355:2 1374:2 1376:1 1394:1 1397:2 1400:3 1401:5 1402:1 1417:1 1419:2 1420:1 1422:1 1423:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1506:2 1507:1 1508:1 1516:4 1543:1 1547:1 1555:1 1557:1 1560:1 1562:2 1564:3 1571:1 1596:4 1598:1 1617:1 1619:3 1627:5 1634:2 1659:1 1660:1 1677:1 1678:1 1682:1 1699:1 1709:1 1743:2 1757:1 1760:1 1762:1 1778:4 1789:1 1794:1 1802:1 1811:1 1819:1 1828:1 1830:1 1888:1 1895:16 1903:1 1907:2 1919:1 1923:1 1929:1 1935:1 1936:1 1952:1 1962:8 1963:1 1965:2 1993:1 1998:1 2006:2 2011:3 2051:1 2082:1 2085:1 2089:3 2095:2 2100:1 2101:1 2105:1 2108:1 2132:1 2142:1 2154:1 2156:1 2158:1 2159:5 2160:1 2162:1 2165:1 2172:1 2174:3 2177:1 2178:2 2179:4 2181:1 2187:1 2190:2 2191:1 2207:1 2212:1 2216:2 2219:2 2220:2 2221:8 2223:4 2226:1 2227:2 2228:4 2232:1 2233:1 2234:1 2237:2 2239:1 2245:1 2247:1 2249:1 2251:6 2252:2 2253:7 2264:1 2268:1 2269:1 2279:1 2297:1 2309:2 2315:1 2322:1 2336:1 2339:1 2343:1 2347:1 2358:3 2370:3 2374:1 2376:1 2387:1 2392:2 2410:3 2421:6 2433:1 2445:1 2461:1 2465:1 2473:1 2485:5 2494:3 2500:1 2522:2 2536:1 2543:2 2552:3 2561:2 2563:1 2570:1 2580:2 2609:2 2631:1 2648:1 2651:3 2656:1 2659:1 2667:2 2670:1 2672:1 2675:1 2683:1 2688:1 2691:1 2704:1 2708:1 2712:1 2713:1 2723:1 2730:3 2756:1 2760:1 2761:2 2762:1 2766:7 2770:2 2775:2 2780:1 2782:1 2810:1 2813:1 2816:1 2818:1 2836:2 2854:3 2857:1 2867:22 2883:4 2888:1 2900:2 2909:1 2915:1 2931:1 2936:11 2961:1 2965:4 2968:1 2969:1 2989:1 3015:1 3023:1 3026:1 3030:1 3074:3 3075:1 3089:1 3097:1 3105:1 3106:1 3112:1 3166:1 3188:2 3197:1 3205:1 3224:1 3231:1 3232:4 3243:1 3248:1 3255:1 3256:1 3266:1 3271:1 3293:1 3295:3 3338:1 3352:1 3357:12 3397:1 3407:1 3420:2 3424:2 3459:1 3471:1 3472:1 3475:2 3478:1 3488:1 3489:1 3495:2 3517:1 3528:1 3540:2 3548:1 3558:1 3570:1 3574:1 3577:1 3580:2 3582:4 3599:4 3604:2 3605:1 3606:1 3607:2 3608:2 3615:1 3634:2 3638:1 3639:4 3647:1 3648:1 3669:1 3680:1 3684:1 3687:2 3688:3 3692:1 3695:2 3698:2 3712:1 3730:1 3737:1 3740:1 3742:4 3744:1 3746:2 3748:11 3763:1 3779:1 3783:5 3784:1 3788:2 3789:12 3790:1 3792:1 3796:1 3810:1 3813:5 3817:1 3822:1 3835:1 3836:3 3838:1 3848:1 3851:1 3862:1 3866:1 3874:1 3876:1 3883:1 3888:1 3895:1 3902:3 3904:3 3918:2 3919:1 3931:1 3934:1 3939:1 3940:1 3943:1 3948:1 3955:1 3964:4 3970:1 3972:1 3977:2 3982:1 3987:1 3988:2 3989:2 3998:4 3999:3 4005:1 4019:1 4033:1 4040:1 4051:1 4054:2 4069:1 4078:1 4085:2 4086:1 4093:1 4113:1 4125:1 4129:1 4136:1 4137:1 4173:1 4190:3 4193:2 4201:1 4204:1 4210:1 4219:1 4254:1 4270:2 4272:2 4282:1 4298:1 4314:2 4348:2 4357:1 4362:5 4378:1 4385:1 4414:1 4416:1 4428:2 4434:1 4439:2 4455:1 4491:1 4494:1 4528:2 4549:1 4554:1 4560:1 4562:1 4583:1 4585:2 4605:1 4613:1 4619:2 4626:3 4640:1 4646:1 4657:1 4658:1 4676:1 4691:1 4695:8 4724:1 4731:1 4742:1 4746:1 4759:1 4768:1 4773:7 4776:1 4787:1 4788:2 4810:1 4815:1 4818:1 4851:3 4867:1 4876:19 4878:2 4881:1 4895:2 4903:1 4917:1 4925:2 4928:7 4940:2 4963:1 4964:1 4980:1 4981:1 4984:1 4985:6 5003:4 5005:5 5006:1 5008:1 5009:1 5011:1 5013:3 5014:1 5015:1 5017:2 5022:1 5026:1 5028:2 5030:3 5031:1 5033:1 5041:1 5042:1 5045:4 5046:2 5064:1 5090:1 5125:1 5131:2 5133:1 5157:2 5176:1 5177:1 5184:2 5190:2 5195:2 5203:2 5219:1 5220:1 5237:1 5245:2 5249:3 5255:1 5280:1 5302:1 5306:1 5307:1 5316:1 5328:1 5351:2 5358:7 5362:1 5365:1 5369:2 5371:2 5386:1 5394:1 5404:2 5423:1 5429:1 5434:2 5438:1 5453:1 5480:1 5493:1 5501:1 5511:2 5524:2 5534:1 5535:2 5538:2 5540:2 5548:1 5551:1 5556:2 5563:1 5564:1 5582:3 5584:1 5589:1 5593:1 5607:1 5615:3 5629:4 5639:1 5640:1 5663:3 5680:1 5681:2 5694:1 5701:3 5705:1 5720:4 5721:1 5728:1 5744:1 5749:1 5773:1 5801:1 5802:1 5812:2 5843:3 5850:1 5852:1 5855:1 5877:1 5881:2 5898:1 5920:1 5942:1 5947:3 5949:1 5972:13 5987:4 5992:4 6000:1 6001:1 6006:3 6007:1 6009:2 6017:1 6039:3 6040:1 6053:1 6056:1 6058:1 6078:1 6110:1 6130:2 6137:2 6138:1 6142:1 6150:1 6153:2 6176:5 6178:1 6182:1 6192:1 6197:1 6199:1 6220:1 6244:1 6245:1 6247:1 6259:3 6262:1 6263:1 6265:1 6269:1 6270:2 6273:1 6274:2 6275:1 6276:4 6279:2 6282:4 6283:9 6284:5 6286:1 6316:1 6334:1 6379:3 6381:1 6420:2 6435:2 6482:2 6493:1 6502:1 6507:1 6513:1 6531:1 6536:1 6537:1 6542:1 6556:1 6558:1 6565:1 6585:1 6598:1 6609:1 6613:1 6652:1 6653:1 6654:2 6671:1 6677:1 6679:2 6680:1 6689:1 6699:7 6715:2 6722:2 6728:1 6741:1 6744:1 6751:1 6757:1 6777:1 6795:1 6810:2 6811:1 6823:2 6851:1 6854:2 6855:2 6860:3 6866:1 6871:1 6885:3 6886:2 6903:1 6906:1 6914:1 6918:1 6919:2 6922:2 6927:1 6932:1 6939:1 6948:1 6987:1 6999:1 7009:1 7049:1 7050:10 7052:1 7067:1 7073:2 7074:2 7091:1 7097:1 7099:1 7102:1 7124:1 7125:1 7155:2 7169:1 7180:1 7198:2 7218:2 7234:1 7248:2 7263:3 7274:1 7278:1 7287:2 7288:1 7290:1 7297:1 7303:1 7311:1 7322:1 7334:4 7346:3 7347:1 7352:1 7367:2 7371:1 7382:2 7383:1 7386:2 7401:1 7407:2 7427:1 7463:2 7485:1 7499:2 7516:1 7518:1 7554:2 7555:12 7556:3 7570:2 7580:2 7582:3 7584:1 7603:4 7604:1 7620:50 7622:1 7643:3 7644:11 7645:1 7648:1 7665:1 7671:2 7685:1 7696:1 7700:1 7710:1 7720:1 7725:2 7734:1 7751:1 7755:1 7758:2 7786:1 7826:2 7851:3 7871:1 7878:1 7892:1 7897:4 7928:1 7931:1 7943:1 7962:1 7967:1 8004:1 8007:1 8032:1 8037:1 8043:2 8044:3 8045:1 8046:1 8062:1 8063:2 8093:1 8107:1 8110:1 8116:2 8124:2 8130:2 8136:1 8142:2 8145:1 8154:1 8156:7 8180:2 8184:1 8186:1 8194:1 8236:1 8254:1 8270:1 8299:1 8301:2 8311:2 8319:2 8334:1 8336:1 8358:1 8367:2 8369:2 8376:3 8379:1 8383:3 8387:2 8394:1 8395:3 8405:1 8412:1 8422:1 8430:5 8433:1 8438:1 8441:1 8449:1 8460:1 8468:1 8480:1 8490:1 8497:1 8500:3 8501:5 8503:4 8504:1 8505:2 8508:3 8510:8 8512:2 8513:2 8514:1 8516:1 8525:1 8526:2 8543:4 8549:1 8550:3 8567:3 8571:1 8572:2 8575:2 8578:2 8582:1 8586:4 8604:1 8640:2 8655:1 8657:1 8679:1 8688:1 8710:1 8719:1 8728:1 8739:1 8751:1 8756:3 8762:1 8772:2 8779:3 8805:2 8808:1 8810:1 8811:4 8815:2 8827:3 8833:1 8840:1 8846:1 8857:1 8914:1 8921:1 8929:1 8936:2 8950:4 8954:2 8969:1 8971:1 8992:3 9001:1 9011:1 9019:1 9022:2 9023:1 9035:1 9040:1 9050:1 9057:1 9060:1 9065:1 9068:1 9069:1 9077:3 9107:1 9115:3 9121:1 9128:1 9134:1 9139:1 9142:2 9151:1 9161:2 9162:1 9196:1 9200:1 9207:7 9209:1 9210:1 9216:2 9219:1 9226:29 9230:1 9231:2 9246:2 9247:1 9261:1 9275:1 9298:1 9305:1 9314:1 9319:1 9329:1 9338:2 9349:1 9360:2 9363:6 9365:1 9390:1 9392:1 9421:1 9427:1 9433:3 9448:1 9490:1 9497:1 9528:1 9529:1 9537:1 9539:1 9555:2 9558:1 9567:1 9568:1 9569:5 9574:1 9582:1 9586:3 9594:2 9601:1 9608:2 9634:2 9652:1 9663:7 9676:1 9677:4 9687:2 9689:1 9697:1 9700:1 9702:1 9704:1 9712:1 9713:1 9746:3 9772:1 9780:1 9789:1 9823:2 9829:1 9847:7 9850:1 9856:1 9862:1 9871:4 9877:2 9878:1 9880:1 9883:2 9887:1 9890:1 9898:4 9911:1 9913:1 9917:1 9919:1 9924:1 9928:3 9929:1 9932:2 9933:1 9938:1 9939:1 9948:1 9954:1 9956:1 9968:4 9986:1 9987:1 9996:1 10019:1 10037:1 10038:1 10057:1 10065:1 10073:1 10094:1 10122:1 10124:1 10125:1 10126:1 10135:2 10157:1 10178:1 10188:1 10191:1 10200:1 10234:1 10241:2 10266:3 10280:1 10302:1 10328:2 10329:1 10347:3 10351:2 10359:2 10370:1 10372:1 10405:1 10414:1 10436:1 10448:1 10478:2 10484:1 10486:1 10488:1 10501:1 10504:3 10507:2 10513:5 10521:1 10523:1 10524:1 10526:1 10537:1 10539:2 10541:1 10555:3 10557:3 10558:1 10564:1 10573:2 10582:3 10583:2 10590:2 10592:2 10593:1 10621:1 10641:1 10657:7 10665:5 10677:2 10683:3 10686:11 10737:1 10740:1 10747:1 10748:1 10783:2 10787:1 10790:1 10805:1 10824:1 10839:1 10846:1 10857:1 10883:1 10901:1 10903:3 10905:2 10909:2 10910:2 10921:2 10931:2 10937:1 10943:1 10947:1 10953:1 10962:1 10969:1 10989:6 10992:1 11010:4 11014:1 11016:1 11018:1 11062:1 11063:2 11064:2 11066:1 11071:1 11083:1 11085:1 11094:1 11100:1 11106:1 11107:1 11118:1 11131:1 11138:1 11145:1 11147:1 11175:1 11177:1 11188:1 11197:1 11203:5 11208:1 11216:1 11230:1 11232:1 11234:1 11248:1 11260:1 11268:2 11278:2 11284:1 11285:1 11300:2 11301:1 11302:2 11308:1 11315:3 11317:1 11333:6 11341:1 11367:1 11370:9 11371:1 11400:1 11401:1 11407:1 11430:1 11442:1 11444:2 11466:1 11468:1 11469:1 11476:1 11477:1 11479:1 11481:2 11496:1 11501:1 11506:1 11509:2 11514:1 11520:2 11526:3 11530:7 11547:2 11549:1 11550:6 11580:1 11587:1 11600:1 11603:3 11609:1 11614:1 11615:2 11619:3 11622:1 11631:1 11632:3 11633:1 11636:2 11641:3 11645:1 11649:1 11664:7 11671:1 11684:8 11690:1 11693:1 11711:1 11716:1 11727:1 11734:1 11755:1 11772:2 11789:1 11824:2 11826:1 11852:1 11865:3 11871:1 11877:1 11882:1 11891:1 11908:1 11916:1 11924:1 11931:3 11936:3 11952:1 11973:3 11977:1 11990:1 11997:1 12004:1 12005:1 12025:1 12107:1 12109:1 12110:2 12111:3 12115:2 12125:1 12132:1 12142:1 12154:1 12156:1 12165:3 12166:5 12172:2 12178:1 12184:2 12239:1 12243:1 12250:1 12263:1 12272:1 12276:2 12281:6 12297:1 12302:1 12323:2 12337:1 12345:1 12346:1 12349:2 12361:3 12362:1 12376:2 12380:2 12398:1 12405:1 12420:1 12423:2 12431:2 12458:1 12464:1 12472:1 12476:1 12477:3 12480:1 12491:1 12493:1 12495:1 12508:1 12512:1 12515:1 12526:2 12534:1 12586:1 12608:8 12621:1 12633:1 12635:1 12636:1 12644:1 12648:15 12654:1 12658:1 12668:2 12671:5 12676:1 12681:1 12701:1 12708:2 12733:2 12764:1 12769:4 12772:2 12789:1 12790:1 12796:2 12797:1 12813:1 12827:3 12831:1 12835:1 12837:1 12861:1 12888:1 12914:1 12949:7 12954:1 12984:1 12999:1 13045:8 13049:1 13066:2 13072:1 13076:5 13080:4 13087:1 13093:1 13094:6 13120:1 13128:1 13133:1 13142:1 13143:1 13144:1 13166:5 13194:1 13206:1 13211:1 13213:1 13224:6 13231:1 13232:3 13233:1 13250:1 13251:1 13252:2 13257:1 13263:1 13275:2 13278:1 13282:1 13283:1 13301:1 13302:4 13306:1 13310:1 13320:3 13331:1 13341:2 13346:1 13364:2 13372:7 13376:1 13396:1 13401:1 13416:4 13420:1 13421:3 13440:1 13454:1 13468:2 13490:1 13520:1 13524:1 13557:1 13561:1 13570:1 13599:3 13600:1 13601:2 13606:4 13607:2 13610:1 13620:1 13628:1 13633:1 13654:3 13674:1 13680:3 13691:2 13694:1 13697:1 13698:1 13723:1 13733:6 13745:1 13764:2 13779:2 13782:1 13788:2 13799:1 13813:1 13827:7 13832:3 13833:1 13838:1 13847:1 13886:1 13895:1 13904:3 13931:9 13942:1 13963:1 13974:1 13980:2 13986:1 14006:1 14018:1 14024:1 14029:1 14054:1 14076:6 14089:1 14107:3 14119:1 14134:1 14140:1 14152:1 14161:1 14179:3 14180:1 14181:1 14212:1 14223:1 14235:1 14245:1 14255:1 14266:1 14274:2 14284:2 14297:1 14299:3 14312:1 14313:1 14317:3 14318:9 14324:1 14325:6 14335:3 14339:1 14340:2 14347:1 14358:1 14361:1 14376:1 14385:1 14433:1 14434:1 14449:5 14482:2 14485:1 14489:2 14492:1 14498:4 14514:1 14523:1 14532:1 14533:3 14551:1 14554:1 14573:1 14591:2 14600:2 14614:2 14616:2 14623:1 14624:1 14636:2 14637:1 14647:4 14650:1 14664:3 14674:1 14683:2 14700:1 14701:1 14761:1 14775:1 14780:1 14785:1 14798:1 14803:1 14820:3 14821:1 14823:1 14824:1 14836:1 14837:1 14881:1 14883:1 14891:6 14893:1 14910:1 14912:1 14916:2 14935:1 14936:6 14938:3 14961:2 14970:1 14984:1 14986:1 14999:1 15000:1 15020:8 15022:1 15024:1 15037:1 15055:1 15085:1 15109:1 15117:1 15123:4 15125:1 15130:1 15134:1 15145:1 15146:2 15158:1 15160:1 15173:1 15177:2 15178:1 15180:1 15207:1 15217:1 15233:1 15238:1 15245:2 15259:2 15275:1 15301:2 15322:1 15332:9 15345:2 15380:1 15385:2 15395:1 15398:1 15403:1 15404:4 15414:4 15420:1 15424:1 15431:1 15435:1 15436:1 15440:1 15453:2 15455:1 15459:2 15471:1 15482:2 15496:1 15509:1 15527:1 15539:1 15556:1 15563:2 15568:1 15571:1 15578:7 15581:3 15590:1 15591:3 15595:1 15598:1 15607:2 15614:3 15622:2 15624:1 15625:5 15626:2 15631:1 15637:1 15642:1 15644:1 15678:1 15679:1 15687:1 15706:1 15711:1 15717:1 15745:7 15750:1 15757:1 15763:2 15768:1 15777:1 15785:3 15814:2 15831:6 15832:3 15835:1 15837:1 15839:1 15871:1 15879:3 15893:1 15896:1 15906:1 15909:4 15911:2 15913:1 15923:1 15957:1 15967:1 15973:3 16014:1 16026:1 16029:16 16030:1 16048:4 16051:1 16055:1 16056:1 16067:1 16084:1 16095:2 16103:1 16119:3 16122:1 16127:1 16137:1 16146:1 16147:1 16149:1 16150:1 16164:1 16170:1 16172:1 16177:2 16190:2 16194:1 16196:1 16237:1 16242:2 16285:3 16288:1 16289:1 16290:2 16310:1 16338:1 16353:1 16363:1 16383:1 16398:1 16400:1 16403:2 16434:1 16475:1 16482:1 16488:1 16489:1 16505:1 16511:1 16527:1 16528:1 16543:1 16546:1 16555:2 16575:1 16588:1 16589:1 16597:1 16604:1 16605:1 16614:1 16639:1 16646:1 16662:1 16666:2 16675:2 16685:2 16702:1 16708:1 16710:1 16714:3 16716:2 16718:1 16738:1 16747:1 16758:1 16761:1 16776:1 16789:2 16802:1 16828:1 16830:1 16840:4 16843:1 16844:4 16851:1 16867:1 16874:1 16883:1 16899:1 16905:1 16908:1 16915:8 16929:1 16930:1 16932:2 16939:1 16942:1 16947:2 16966:4 16977:1 16990:1 16991:1 16995:2 17013:2 17015:1 17036:1 17042:1 17046:1 17050:1 17053:2 17059:6 17067:1 17087:1 17091:5 17092:1 17106:1 17110:1 17136:2 17138:2 17155:3 17156:2 17167:1 17172:1 17179:1 17181:1 17186:1 17187:2 17198:2 17199:7 17200:1 17207:2 17210:1 17244:1 17251:1 17265:1 17270:2 17277:2 17327:1 17343:1 17346:1 17360:1 17363:3 17369:2 17374:2 17397:1 17401:1 17422:1 17445:1 17447:1 17448:3 17454:2 17455:1 17456:1 17463:3 17475:3 17476:2 17477:1 17509:1 17511:1 17522:5 17523:3 17558:1 17560:2 17585:1 17587:1 17592:7 17604:1 17631:1 17636:1 17644:2 17647:2 17648:1 17652:1 17655:1 17662:1 17664:2 17665:5 17667:1 17669:1 17670:1 17683:1 17687:1 17691:1 17692:1 17698:1 17707:1 17721:1 17722:3 17747:1 17753:2 17764:1 17766:1 17767:8 17772:4 17781:26 17783:1 17785:1 17787:1 17790:2 17794:1 17812:4 17819:1 17822:1 17831:1 17838:1 17845:1 17852:1 17855:1 17860:1 17871:1 17872:1 17873:1 17875:1 17882:1 17886:1 17896:4 17907:1 17922:1 17931:5 17962:1 17967:1 17977:2 17979:1 17989:1 17994:1 17998:2 18007:5 18009:1 18011:1 18019:1 18032:1 18045:1 18056:1 18067:1 18080:1 18084:1 18114:1 18120:1 18133:1 18150:1 18152:2 18167:1 18169:1 18170:1 18178:1 18184:1 18212:1 18219:3 18220:1 18249:2 18315:4 18323:1 18331:1 18348:1 18357:1 18380:2 18381:1 18382:1 18399:2 18417:4 18424:1 18444:1 18449:1 18461:1 18471:3 18476:2 18478:2 18481:1 18495:1 18498:1 18504:5 18509:1 18512:1 18516:1 18519:2013 18524:1 18534:1 18538:1 18572:3 18573:1 18582:3 18608:1 18643:2 18648:2 18657:1 18668:2 18684:1 18690:1 18702:1 18708:3 18715:6 18720:1 18725:5 18727:2 18728:4 18748:2 18763:1 18802:6 18808:2 18810:2 18814:1 18816:1 18840:1 18842:29 18850:1 18861:1 18863:7 18904:1 18907:1 18915:1 18920:1 18930:2 18938:1 18947:1 18968:1 18969:1 18971:1 18982:2 18991:3 19007:1 19008:1 19017:1 19033:1 19055:2 19061:1 19079:1 19089:1 19091:1 19113:1 19121:1 19135:2 19140:2 19142:3 19168:1 19172:1 19174:2 19176:3 19180:1 19187:1 19190:1 19192:1 19197:3 19202:1 19210:1 19218:1 19228:5 19235:1 19256:1 19257:2 19271:2 19273:1 19293:1 19298:10 19314:1 19315:1 19335:7 19336:1 19350:1 19353:1 19359:1 19370:1 19412:1 19420:3 19442:2 19475:1 19482:1 19494:1 19507:4 19508:1 19515:3 19516:2 19531:1 19534:1 19549:1 19550:3 19551:1 19563:3 19566:1 19573:1 19592:2 19600:1 19605:1 19628:1 19634:1 19661:3 19674:1 19680:1 19708:2 19719:1 19720:1 19724:1 19735:2 19742:1 19745:1 19751:1 19752:1 19754:1 19767:2 19771:3 19775:4 19778:1 19784:4 19794:1 19807:1 19816:1 19818:1 19829:1 19833:1 19839:2 19859:1 19862:1 19876:2 19881:1 19904:2 19909:4 19918:1 19936:1 19948:1 19949:4 19953:1 19964:1 19966:1 19978:2 19992:1 19996:1 20001:1 20003:1 20004:2 20017:1 20020:1 20031:1 20032:1 20036:1 20037:1 20052:1 20061:4 20068:1 20074:1 20079:1 20084:2 20086:1 20094:1 20117:2 20118:2 20137:1 20159:5 20187:1 20211:6 20212:3 20218:2 20226:2 20231:1 20237:1 20272:1 20281:1 20283:3 20293:2 20299:1 20302:1 20313:1 20400:1 20404:3 20406:4 20408:1 20420:1 20443:1 20453:1 20454:1 20455:6 20465:2 20466:1 20467:1 20468:4 20474:2 20495:1 20525:1 20530:1 20531:2 20547:1 20567:4 20577:1 20594:1 20599:1 20600:1 20604:1 20643:1 20644:1 20652:1 20656:1 20658:3 20671:1 20677:4 20679:1 20682:1 20683:1 20685:1 20686:1 20692:1 20701:1 20705:3 20710:1 20715:1 20716:1 20721:1 20722:2 20730:1 20738:1 20747:5 20770:1 20780:2 20781:1 20782:2 20783:1 20797:1 20823:2 20833:1 20846:1 20862:1 20900:1 20907:2 20918:1 20945:1 20948:2 20957:2 20979:6 20985:1 20986:1 20988:1 21010:1 21016:1 21019:2 21029:1 21049:1 21062:2 21075:1 21079:1 21080:1 21088:1 21091:2 21100:1 21107:1 21122:1 21137:2 21158:1 21169:1 21174:1 21193:1 21196:1 21198:2 21201:1 21265:1 21276:1 21288:1 21289:1 21313:1 21320:1 21345:1 21357:1 21358:2 21359:1 21371:2 21372:1 21374:2 21380:1 21386:2 21387:3 21389:1 21392:1 21397:1 21405:1 21406:1 21407:1 21415:1 21440:1 21442:2 21444:1 21448:1 21459:1 21472:4 21486:1 21488:1 21490:1 21493:1 21498:2 21499:2 21503:1 21504:1 21509:2 21518:1 21520:1 21523:1 21528:1 21538:1 21544:1 21548:9 21551:1 21567:1 21568:2 21569:1 21580:1 21616:1 21634:1 21647:2 21648:1 21654:2 21661:1 21663:1 21670:1 21675:8 21684:1 21691:1 21695:3 21712:1 21714:2 21715:1 21724:1 21750:1 21770:1 21771:1 21778:1 21809:1 21812:4 21822:1 21824:1 21826:1 21827:1 21829:1 21830:1 21838:1 21846:2 21848:3 21867:2 21870:1 21885:1 21901:2 21916:2 21931:1 21937:1 21941:1 21952:1 21967:1 21971:1 21975:1 21994:3 21999:1 22009:3 22012:2 22016:3 22021:1 22025:1 22052:1 22059:1 22061:1 22065:2 22077:2 22080:1 22096:3 22135:1 22144:1 22147:1 22150:1 22173:4 22174:5 22178:3 22179:1 22180:2 22189:2 22190:1 22205:1 22212:1 22222:1 22223:4 22230:1 22236:1 22239:1 22243:2 22248:1 22252:3 22257:2 22258:3 22265:1 22277:2 22290:1 22291:1 22293:1 22294:3 22295:1 22302:1 22315:2 22318:1 22329:2 22331:1 22332:1 22336:1 22337:1 22345:3 22357:1 22362:2 22368:1 22390:1 22391:4 22392:1 22406:2 22412:1 22414:26 22419:1 22420:2 22422:4 22425:1 22426:3 22427:2 22430:1 22432:1 22434:1 22453:3 22455:1 22461:1 22464:3 22467:1 22473:2 22493:2 22495:2 22496:1 22507:1 22529:1 22538:1 22542:1 22579:3 22585:1 22593:6 22599:1 22616:2 22621:1 22634:1 22646:1 22672:1 22674:2 22676:2 22679:1 22680:1 22687:1 22691:3 22692:1 22695:1 22699:2 22705:1 22706:1 22721:3 22726:2 22736:1 22737:1 22758:1 22777:1 22782:1 22784:1 22788:1 22808:1 22837:1 22848:1 22866:1 22867:1 22878:1 22896:2 22902:1 22919:1 22921:1 22931:1 22935:1 22947:2 22948:1 22955:1 22962:2 22964:1 22980:3 22981:1 22982:1 22998:3 23001:2 23021:2 23024:1 23027:1 23033:2 23038:1 23072:1 23099:1 23143:1 23148:1 23165:1 23184:3 23188:1 23195:1 23196:1 23207:3 23227:2 23234:2 23235:1 23239:1 23241:1 23248:1 23254:1 23275:2 23283:3 23297:1 23299:2 23302:1 23310:1 23313:1 23326:1 23340:1 23343:1 23349:1 23352:1 23361:12 23368:1 23394:2 23403:1 23408:1 23437:1 23439:1 23441:1 23452:1 23494:1 23504:1 23519:1 23520:1 23532:2 23545:1 23559:2 23568:1 23581:1 23591:1 23592:1 23600:1 23616:6 23618:1 23620:1 23635:1 23647:1 23651:1 23659:2 23716:1 23720:1 23722:1 23732:3 23736:1 23744:1 23749:2 23758:1 23774:1 23785:1 23798:1 23806:1 23814:1 23831:1 23832:1 23875:3 23884:5 23885:1 23896:4 23899:1 23910:1 23912:1 23918:2 23919:1 23920:1 23928:1 23939:2 23941:1 23966:2 23973:1 23979:1 23994:3 23995:2 23996:1 24001:1 24025:1 24030:1 24044:1 24047:1 24052:1 24057:2 24058:3 24064:1 24068:1 24073:1 24093:1 24098:1 24101:1 24114:1 24124:1 24146:1 24148:1 24150:1 24156:1 24159:2 24160:1 24162:7 24164:3 24166:4 24167:2 24171:1 24172:2 24174:2 24175:1 24182:2 24183:3 24187:2 24193:2 24206:4 24233:1 24236:2 24237:1 24242:1 24247:2 24263:4 24267:3 24291:2 24295:1 24297:1 24307:3 24321:1 24324:1 24342:1 24345:1 24347:1 24348:2 24362:1 24390:1 24401:1 24402:1 24419:3 24440:3 24448:1 24450:4 24453:1 24464:2 24466:1 24496:1 24508:1 24512:2 24513:1 24524:1 24547:2 24548:1 24558:1 24571:1 24582:1 24584:1 24609:1 24630:3 24645:1 24654:1 24658:1 24665:2 24707:4 24746:1 24757:2 24763:1 24772:1 24780:1 24783:4 24791:1 24793:1 24797:1 24810:1 24816:1 24822:4 24878:1 24899:1 24900:2 24912:2 24915:3 24946:10 24955:1 24969:9 24990:1 24997:1 25005:1 25015:2 25028:1 25038:2 25041:1 25042:1 25045:1 25046:1 25047:1 25089:1 25093:2 25099:2 25104:1 25109:1 25111:2 25114:6 25122:1 25137:2 25139:2 25141:8 25144:4 25145:2 25155:1 25162:1 25167:2 25170:1 25177:1 25182:1 25214:2 25219:1 25225:4 25230:1 25240:1 25247:3 25258:2 25259:2 25319:1 25320:1 25335:1 25342:1 25345:1 25346:1 25356:1 25384:1 25386:1 25401:1 25410:1 25412:2 25413:1 25416:2 25425:1 25436:5 25465:1 25468:1 25473:1 25488:1 25492:1 25515:1 25557:1 25561:1 25569:1 25576:1 25600:1 25618:1 25663:1 25665:1 25676:1 25679:3 25680:2 25691:1 25700:1 25701:1 25708:2 25718:2 25726:1 25729:1 25742:1 25757:1 25759:2 25781:1 25796:3 25804:1 25812:1 25816:2 25829:1 25835:1 25838:5 25864:1 25865:4 25880:1 25901:1 25903:1 25906:2 25916:1 25929:1 25930:1 25936:2 25953:2 25971:2 25988:1 25992:5 25994:1 26021:3 26024:1 26033:1 26038:1 26040:1 26042:1 26059:2 26087:1 26093:4 26112:2 26113:1 26114:1 26118:1 26122:1 26123:1 26127:3 26128:1 26133:1 26162:1 26166:2 26170:1 26175:1 26182:1 26185:1 26190:1 26213:1 26221:2 26225:1 26247:2 26249:1 26261:2 26262:1 26267:1 26285:1 26290:2 26300:1 26309:1 26316:1 26332:2 26338:1 26339:1 26341:1 26352:1 26368:3 26373:5 26392:2 26453:1 26476:1 26478:1 26479:1 26482:1 26499:1 26504:1 26524:1 26542:1 26547:1 26548:1 26551:1 26556:1 26559:1 26566:1 26569:1 26574:1 26582:1 26588:1 26599:1 26621:1 26622:1 26624:1 26641:1 26654:2 26657:1 26662:1 26667:3 26681:4 26700:4 26709:5 26721:1 26736:1 26737:1 26743:1 26759:2 26772:1 26778:1 26787:1 26788:10 26807:1 26817:1 26838:1 26840:2 26844:1 26845:1 26847:1 26848:2 26856:12 26894:3 26933:2 26934:1 26938:1 26954:2 26960:5 26965:2 26967:2 26981:1 26985:2 26988:1 26994:3 27003:1 27006:1 27016:1 27022:1 27033:1 27036:1 27057:1 27058:2 27061:1 27069:2 27070:1 27079:1 27090:1 27103:1 27108:1 27113:1 27135:1 27136:1 27141:2 27143:1 27145:1 27147:1 27149:1 27160:2 27187:1 27188:1 27229:1 27247:1 27275:1 27279:1 27298:1 27330:1 27332:1 27342:2 27365:4 27368:1 27376:1 27385:1 27392:1 27408:1 27412:1 27419:1 27465:1 27481:2 27500:1 27517:1 27536:3 27549:1 27560:1 27563:6 27575:1 27595:1 27597:3 27620:1 27627:2 27636:1 27658:1 27661:1 27662:1 27673:1 27675:1 27678:1 27687:25 27689:4 27692:5 27694:1 27695:3 27702:1 27724:7 27739:1 27777:1 27789:2 27804:1 27808:1 27820:1 27821:2 27832:3 27838:2 27859:11 27863:2 27867:1 27869:1 27874:1 27885:1 27887:1 27889:1 27893:2 27900:2 27906:1 27909:1 27917:2 27923:1 27930:1 27934:1 27935:2 27948:2 27951:1 27960:1 27964:1 27968:1 27969:1 27975:1 28003:1 28011:1 28028:2 28030:1 28031:1 28050:1 28051:1 28054:1 28058:1 28068:3 28082:1 28100:1 28102:1 28126:1 28127:2 28128:2 28131:1 28169:1 28174:1 28177:1 28178:1 28180:1 28183:1 28187:2 28191:1 28193:1 28202:1 28203:1 28204:1 28214:2 28215:1 28218:1 28223:1 28292:1 28315:1 28319:1 28320:1 28341:1 28350:1 28356:1 28359:1 28362:1 28363:2 28373:1 28375:3 28380:1 28387:1 28397:7 28404:1 28409:1 28411:5 28413:1 28419:1 28461:1 28469:2 28470:1 28506:3 28514:1 28520:1 28536:3 28541:1 28543:2 28551:1 28553:1 28560:6 28569:1 28594:1 28596:1 28646:1 28648:1 28665:2 28685:2 28703:1 28709:1 28724:1 28728:1 28734:1 28748:1 28761:2 28792:1 28801:7 28815:1 28816:1 28818:1 28836:7 28849:5 28850:1 28867:1 28904:1 28913:8 28914:3 28916:2 28919:1 28921:1 28924:3 28925:2 28941:1 28947:1 28958:1 28959:2 28961:3 28963:3 29003:1
9 11:1 14:1 24:1 34:1 37:2 56:1 60:1 63:1 65:1 79:1 82:1 83:1 89:1 90:1 103:1 109:1 113:1 117:1 125:1 143:1 150:1 153:3 162:1 170:4 189:7 214:1 245:1 270:1 282:2 293:1 295:31 303:2 315:1 316:3 318:4 326:1 333:1 348:1 350:1 363:1 381:1 403:2 424:3 432:1 442:1 444:1 515:1 523:1 561:1 563:4 564:1 569:2 572:3 590:4 596:2 598:1 600:1 613:2 626:1 634:2 638:1 643:1 650:1 674:1 678:1 685:1 692:1 702:1 716:1 734:1 735:1 748:1 752:1 767:1 770:1 788:1 795:1 804:1 805:1 807:2 808:1 828:1 830:7 832:3 842:2 843:1 855:1 856:13 860:1 867:1 871:1 875:2 877:4 879:7 885:1 889:1 892:1 893:1 899:1 905:3 916:1 924:2 925:2 941:1 963:1 974:3 989:1 996:2 998:2 1002:2 1019:1 1020:2 1027:1 1045:1 1046:1 1059:1 1061:2 1078:1 1086:1 1087:1 1089:2 1092:1 1104:3 1112:2 1117:1 1123:1 1136:1 1143:1 1148:3 1152:1 1160:1 1163:1 1179:1 1207:2 1231:1 1232:1 1241:2 1244:1 1257:1 1262:1 1276:1 1284:1 1287:1 1313:1 1330:1 1345:1 1353:1 1355:3 1374:2 1376:1 1394:1 1397:2 1400:3 1401:5 1402:1 1417:1 1419:2 1420:1 1422:1 1423:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1506:2 1507:1 1508:1 1516:4 1543:1 1547:1 1555:1 1557:1 1560:1 1562:2 1564:3 1571:1 1596:4 1598:1 1617:1 1619:3 1627:6 1634:2 1659:1 1660:1 1677:1 1678:1 1682:1 1699:1 1709:1 1743:2 1757:1 1760:1 1762:1 1778:4 1789:1 1794:1 1802:1 1811:1 1819:1 1828:1 1830:1 1888:1 1895:18 1903:1 1907:2 1919:1 1923:1 1929:1 1935:1 1936:1 1952:1 1962:8 1963:1 1965:2 1993:1 1998:1 2006:2 2011:3 2051:1 2082:1 2085:1 2089:3 2095:2 2100:1 2101:1 2105:1 2108:1 2132:1 2142:1 2154:1 2156:1 2158:1 2159:5 2160:1 2162:1 2165:1 2172:1 2174:3 2177:1 2178:2 2179:4 2181:1 2187:1 2190:2 2191:1 2207:1 2212:1 2216:2 2219:2 2220:2 2221:8 2223:4 2226:1 2227:2 2228:4 2232:1 2233:1 2234:1 2237:2 2239:1 2245:1 2247:1 2249:1 2251:6 2252:2 2253:7 2264:1 2268:1 2269:1 2279:1 2297:1 2309:2 2315:1 2322:1 2336:1 2339:1 2343:1 2347:1 2358:3 2370:3 2374:1 2376:1 2387:1 2392:2 2410:3 2421:6 2433:1 2445:1 2461:1 2465:1 2473:1 2485:5 2494:3 2500:1 2522:2 2536:1 2543:2 2552:3 2561:2 2563:1 2570:1 2580:2 2609:2 2631:1 2635:1 2648:1 2651:3 2656:1 2659:1 2667:2 2670:1 2672:1 2675:1 2683:1 2688:1 2691:1 2704:1 2708:1 2712:1 2713:1 2723:1 2730:3 2756:1 2760:1 2761:2 2762:1 2766:7 2770:3 2775:2 2780:1 2782:1 2810:1 2813:1 2816:1 2818:1 2826:1 2836:2 2854:3 2857:1 2867:22 2883:4 2888:1 2900:2 2909:1 2915:1 2931:1 2936:11 2961:3 2965:5 2968:1 2969:1 2972:1 2989:1 3015:1 3023:1 3026:1 3030:1 3074:4 3075:1 3089:1 3097:1 3105:1 3106:1 3112:1 3166:1 3188:2 3197:1 3205:1 3224:1 3231:1 3232:5 3243:1 3248:1 3255:1 3256:1 3266:1 3271:1 3293:1 3295:3 3314:1 3338:1 3352:1 3357:12 3397:1 3407:1 3420:2 3424:2 3459:1 3471:1 3472:1 3475:2 3478:1 3488:1 3489:1 3495:2 3517:1 3528:1 3540:2 3548:1 3558:1 3570:1 3574:1 3577:1 3580:2 3582:5 3599:4 3604:2 3605:1 3606:1 3607:2 3608:2 3615:1 3634:2 3638:1 3639:4 3647:1 3648:1 3669:1 3680:1 3684:1 3687:2 3688:3 3692:1 3695:2 3698:2 3712:1 3730:1 3737:1 3740:1 3742:4 3744:1 3746:2 3748:12 3763:1 3779:1 3783:5 3784:1 3788:2 3789:12 3790:1 3792:1 3796:1 3810:1 3813:5 3817:1 3822:1 3835:1 3836:3 3838:1 3848:1 3851:1 3862:1 3866:1 3874:1 3876:1 3883:1 3888:1 3895:1 3902:3 3904:3 3918:2 3919:1 3931:1 3934:1 3939:1 3940:1 3943:1 3948:1 3955:1 3964:4 3970:1 3972:1 3977:2 3982:1 3987:1 3988:2 3989:2 3998:4 3999:3 4005:1 4019:1 4033:1 4040:1 4051:1 4054:2 4069:1 4078:1 4085:2 4086:1 4093:1 4113:1 4125:1 4129:1 4136:1 4137:1 4173:1 4190:3 4193:2 4201:1 4204:1 4210:1 4219:1 4254:1 4270:2 4272:2 4282:1 4298:1 4314:2 4348:2 4357:1 4362:5 4378:1 4385:1 4414:1 4416:1 4428:2 4434:1 4439:2 4455:1 4491:1 4494:1 4528:2 4549:1 4554:1 4560:1 4562:1 4583:1 4585:2 4605:1 4613:1 4619:2 4626:3 4640:1 4646:1 4657:1 4658:1 4676:1 4691:1 4695:8 4724:1 4731:1 4742:1 4746:1 4759:1 4768:1 4773:7 4776:1 4787:1 4788:2 4807:1 4810:1 4815:1 4818:1 4851:3 4867:1 4876:19 4878:2 4881:1 4895:2 4903:1 4917:1 4925:2 4928:7 4940:2 4963:1 4964:1 4980:1 4981:1 4984:1 4985:6 5003:4 5005:5 5006:1 5008:1 5009:1 5011:1 5013:3 5014:1 5015:1 5017:2 5022:1 5026:1 5028:2 5030:3 5031:1 5033:1 5041:1 5042:1 5045:4 5046:2 5064:1 5090:1 5125:1 5131:2 5133:1 5157:2 5176:1 5177:1 5184:2 5190:2 5195:2 5203:2 5219:1 5220:1 5237:1 5245:2 5249:3 5255:1 5280:1 5302:1 5306:1 5307:1 5316:1 5325:1 5328:1 5351:2 5358:7 5362:1 5365:1 5369:2 5371:2 5386:1 5394:1 5404:2 5423:1 5429:1 5434:2 5438:1 5453:1 5480:1 5493:1 5501:1 5511:2 5524:2 5534:1 5535:2 5538:2 5540:2 5548:1 5551:1 5556:2 5563:1 5564:1 5582:3 5584:1 5588:1 5589:1 5593:1 5607:1 5615:3 5629:4 5639:1 5640:1 5663:3 5680:1 5681:2 5694:1 5701:3 5705:1 5720:4 5721:1 5728:1 5744:1 5749:1 5773:1 5801:1 5802:1 5812:2 5843:3 5850:1 5852:1 5855:1 5877:1 5881:2 5898:1 5920:1 5942:1 5947:3 5949:1 5972:14 5987:4 5992:4 6000:1 6001:1 6006:3 6007:1 6009:2 6017:1 6039:3 6040:1 6053:1 6056:1 6058:1 6078:1 6110:1 6130:2 6137:2 6138:1 6142:1 6150:1 6153:2 6176:5 6178:1 6182:1 6192:1 6197:1 6199:1 6220:1 6244:1 6245:2 6247:1 6259:3 6262:1 6263:1 6265:1 6269:1 6270:2 6273:1 6274:2 6275:2 6276:4 6279:2 6282:4 6283:9 6284:5 6286:1 6316:1 6334:1 6379:3 6381:1 6383:1 6420:2 6435:2 6482:2 6493:1 6502:1 6507:1 6513:1 6531:1 6536:1 6537:1 6542:1 6556:1 6558:1 6565:1 6585:1 6598:1 6609:1 6613:1 6652:1 6653:1 6654:2 6668:1 6671:1 6677:1 6679:2 6680:1 6689:1 6699:7 6715:2 6722:3 6728:1 6741:1 6744:1 6751:1 6757:1 6777:1 6795:1 6810:2 6811:1 6823:2 6851:1 6854:2 6855:2 6860:3 6866:1 6871:1 6885:3 6886:2 6903:1 6906:1 6914:1 6918:1 6919:2 6922:2 6927:1 6932:1 6939:1 6948:1 6987:1 6999:1 7009:1 7049:1 7050:10 7052:1 7067:1 7073:2 7074:2 7091:1 7097:1 7099:1 7102:1 7124:1 7125:1 7155:2 7169:1 7180:1 7198:2 7218:2 7234:1 7248:2 7263:3 7274:1 7278:1 7287:2 7288:1 7290:1 7297:1 7303:1 7311:1 7322:1 7334:4 7346:3 7347:1 7352:1 7367:2 7371:1 7382:2 7383:1 7386:2 7401:1 7407:2 7427:1 7463:2 7485:1 7499:2 7516:1 7518:1 7554:2 7555:12 7556:3 7570:2 7580:2 7582:3 7584:1 7603:4 7604:1 7620:50 7622:1 7643:4 7644:11 7645:1 7648:1 7665:1 7671:2 7685:1 7696:1 7700:1 7710:1 7720:1 7725:2 7734:1 7751:1 7755:1 7758:2 7786:1 7826:2 7851:3 7871:1 7878:1 7892:1 7897:4 7928:1 7931:1 7943:1 7962:1 7967:1 8004:1 8007:1 8032:1 8037:1 8043:2 8044:3 8045:1 8046:1 8062:1 8063:2 8093:1 8107:1 8110:1 8116:2 8122:1 8124:2 8130:2 8136:1 8142:2 8145:1 8154:1 8156:7 8180:2 8184:1 8186:1 8194:1 8236:1 8254:1 8270:1 8299:1 8301:2 8311:2 8319:2 8334:1 8336:1 8358:1 8367:2 8369:2 8376:3 8379:1 8383:3 8387:2 8394:1 8395:3 8405:1 8412:1 8422:1 8430:5 8433:1 8438:1 8441:1 8449:1 8460:1 8468:1 8480:1 8490:1 8497:1 8500:3 8501:5 8503:4 8504:1 8505:2 8508:3 8510:8 8512:2 8513:2 8514:1 8516:1 8525:1 8526:2 8543:4 8549:1 8550:3 8567:3 8571:1 8572:2 8575:2 8578:2 8582:1 8586:4 8604:1 8640:2 8655:1 8657:1 8679:1 8688:1 8710:1 8719:1 8728:1 8739:1 8751:1 8756:3 8762:1 8772:2 8779:3 8805:2 8808:1 8810:1 8811:4 8815:2 8827:3 8833:1 8840:1 8846:1 8857:1 8914:1 8921:1 8929:1 8936:2 8950:4 8954:2 8969:1 8971:1 8992:3 9001:1 9011:1 9019:1 9022:2 9023:1 9035:1 9040:1 9050:1 9057:1 9060:1 9065:1 9068:1 9069:1 9077:3 9107:1 9115:3 9121:1 9128:1 9134:1 9139:1 9142:2 9151:1 9161:2 9162:1 9196:1 9200:1 9207:7 9209:1 9210:1 9216:2 9219:1 9226:31 9230:2 9231:2 9246:2 9247:1 9261:1 9275:1 9298:1 9305:1 9314:1 9319:1 9329:1 9338:2 9349:1 9360:2 9363:6 9365:2 9390:1 9392:1 9421:1 9427:1 9433:3 9448:1 9490:1 9497:1 9528:1 9529:1 9537:1 9539:1 9555:2 9558:1 9567:1 9568:1 9569:5 9574:1 9582:1 9586:3 9594:2 9601:1 9608:2 9634:2 9652:1 9663:7 9676:1 9677:4 9687:2 9689:1 9697:1 9700:1 9702:1 9704:1 9712:1 9713:1 9746:3 9772:1 9780:1 9789:1 9823:2 9829:1 9847:7 9850:1 9856:1 9862:1 9871:4 9877:2 9878:1 9880:1 9883:2 9885:1 9887:1 9890:1 9898:4 9911:1 9913:1 9917:1 9919:1 9924:1 9928:3 9929:1 9932:2 9933:1 9938:1 9939:1 9948:1 9954:1 9956:1 9968:4 9986:1 9987:1 9996:1 10019:1 10037:1 10038:1 10057:1 10065:1 10073:1 10094:1 10122:1 10124:1 10125:1 10126:1 10135:2 10157:1 10178:1 10188:1 10191:1 10200:1 10234:1 10241:2 10266:3 10280:1 10286:1 10302:1 10328:2 10329:1 10347:3 10351:2 10359:2 10370:1 10372:1 10402:1 10405:1 10414:1 10436:1 10448:1 10478:2 10484:1 10486:1 10488:1 10501:1 10504:3 10507:2 10513:5 10521:1 10523:1 10524:1 10526:1 10537:1 10539:2 10541:1 10555:3 10557:3 10558:1 10564:1 10573:3 10582:3 10583:3 10590:2 10592:2 10593:1 10621:1 10641:1 10657:7 10665:5 10677:2 10683:3 10686:11 10737:1 10740:1 10747:1 10748:1 10783:2 10787:1 10790:1 10805:1 10824:1 10839:1 10846:1 10857:1 10883:1 10901:1 10903:3 10905:2 10909:2 10910:2 10921:2 10931:2 10937:1 10943:1 10947:1 10953:1 10962:1 10969:1 10989:6 10992:1 11010:4 11014:1 11016:1 11018:1 11021:1 11062:1 11063:2 11064:2 11066:1 11071:1 11083:1 11085:1 11094:1 11100:1 11106:1 11107:1 11118:1 11131:1 11138:1 11145:1 11147:1 11175:1 11177:1 11188:1 11197:1 11203:5 11208:1 11216:1 11230:1 11232:1 11234:1 11248:1 11260:1 11268:2 11274:1 11278:2 11284:1 11285:1 11300:2 11301:1 11302:2 11308:1 11315:3 11317:1 11333:6 11341:1 11367:1 11370:10 11371:1 11400:1 11401:1 11407:1 11430:1 11442:1 11444:2 11466:1 11468:1 11469:1 11470:1 11476:1 11477:1 11479:1 11481:2 11496:1 11501:1 11506:1 11509:2 11514:1 11520:2 11526:3 11530:7 11547:3 11549:1 11550:6 11580:1 11587:1 11600:1 11603:3 11609:1 11614:1 11615:2 11619:3 11622:1 11631:1 11632:3 11633:1 11636:2 11641:3 11645:1 11649:1 11664:7 11671:1 11684:8 11690:1 11693:1 11711:1 11716:1 11727:1 11734:1 11755:1 11772:2 11789:1 11824:2 11826:1 11852:1 11865:3 11871:1 11877:1 11882:1 11891:1 11908:1 11916:1 11924:1 11931:3 11936:3 11952:1 11973:3 11977:1 11990:1 11997:1 12004:1 12005:1 12025:1 12107:1 12109:1 12110:2 12111:3 12115:2 12125:1 12132:1 12142:1 12154:1 12156:1 12165:3 12166:5 12172:2 12176:1 12178:1 12184:2 12239:1 12243:1 12250:1 12263:1 12272:1 12276:2 12281:6 12297:1 12302:1 12323:2 12337:1 12345:1 12346:1 12349:2 12361:3 12362:1 12376:2 12380:2 12398:1 12405:1 12420:1 12423:2 12431:2 12457:1 12458:1 12464:1 12472:1 12476:1 12477:4 12480:1 12491:1 12493:1 12495:1 12508:1 12512:1 12515:1 12526:2 12534:1 12586:1 12608:8 12621:1 12633:1 12635:1 12636:1 12644:1 12648:15 12654:1 12658:1 12668:2 12671:5 12676:1 12681:1 12701:1 12708:3 12733:2 12764:1 12769:4 12772:2 12787:1 12789:1 12790:1 12791:1 12796:2 12797:1 12813:1 12827:3 12831:1 12835:1 12837:1 12861:1 12888:1 12914:1 12949:7 12954:1 12984:1 12999:1 13045:8 13049:1 13066:2 13072:1 13076:5 13080:4 13087:1 13093:1 13094:6 13120:1 13128:1 13133:1 13142:1 13143:1 13144:1 13166:5 13194:1 13206:1 13211:1 13213:1 13224:6 13231:1 13232:3 13233:1 13250:1 13251:1 13252:2 13257:1 13263:1 13275:2 13278:1 13282:1 13283:1 13301:1 13302:4 13306:1 13310:1 13320:3 13331:1 13341:2 13346:1 13364:2 13372:7 13376:1 13396:1 13401:1 13416:4 13420:1 13421:3 13440:1 13454:1 13468:2 13490:1 13503:1 13520:1 13524:1 13557:1 13561:1 13570:1 13599:3 13600:1 13601:2 13606:4 13607:2 13610:2 13620:1 13628:1 13633:1 13654:3 13674:1 13680:3 13691:2 13694:1 13697:1 13698:1 13723:1 13733:6 13745:1 13764:2 13779:3 13782:1 13788:2 13799:1 13813:1 13827:7 13832:3 13833:1 13838:1 13847:1 13886:1 13895:1 13904:3 13931:9 13942:1 13963:1 13974:1 13980:2 13986:1 14006:1 14018:1 14024:1 14029:1 14054:1 14076:6 14089:1 14107:3 14119:1 14134:1 14140:1 14152:1 14161:1 14179:4 14180:1 14181:1 14196:1 14212:1 14223:1 14235:1 14245:1 14255:1 14266:1 14274:2 14284:2 14297:1 14299:3 14312:1 14313:1 14317:3 14318:9 14324:1 14325:6 14335:3 14339:1 14340:2 14347:1 14358:1 14361:1 14376:1 14385:1 14433:1 14434:1 14449:5 14482:2 14485:1 14489:2 14492:1 14498:4 14514:1 14523:1 14532:1 14533:3 14551:1 14554:1 14573:1 14591:2 14600:2 14614:2 14616:2 14623:1 14624:1 14636:2 14637:1 14647:4 14650:1 14664:3 14674:1 14683:2 14700:1 14701:1 14761:1 14775:1 14780:1 14785:1 14798:1 14803:2 14820:3 14821:1 14823:1 14824:1 14836:1 14837:1 14881:1 14883:1 14891:6 14893:1 14910:1 14912:1 14916:2 14935:1 14936:6 14938:3 14961:2 14970:1 14984:1 14986:1 14999:1 15000:1 15020:8 15022:1 15024:1 15037:1 15055:1 15085:1 15109:1 15117:1 15123:4 15125:1 15130:1 15134:1 15145:1 15146:2 15158:1 15160:1 15173:1 15177:2 15178:1 15180:1 15207:1 15217:1 15233:1 15238:1 15245:2 15259:2 15275:1 15301:2 15322:1 15332:10 15345:2 15380:1 15385:2 15395:1 15398:1 15403:1 15404:4 15414:4 15420:1 15424:1 15431:1 15435:1 15436:1 15440:1 15453:2 15455:1 15459:2 15471:1 15482:2 15496:1 15509:1 15527:1 15539:1 15556:1 15563:2 15568:1 15571:1 15578:7 15581:3 15590:1 15591:3 15595:1 15598:1 15607:2 15614:3 15622:2 15624:1 15625:5 15626:2 15631:1 15637:1 15642:1 15644:1 15678:1 15679:1 15687:1 15706:1 15711:1 15717:1 15745:7 15750:1 15757:1 15763:2 15768:1 15777:1 15785:3 15814:2 15831:6 15832:3 15835:1 15837:1 15839:1 15871:1 15879:3 15893:1 15896:1 15906:1 15909:4 15911:2 15913:1 15923:1 15957:1 15967:1 15973:3 16014:1 16026:1 16029:17 16030:1 16048:4 16051:1 16055:1 16056:1 16067:1 16084:1 16095:2 16103:1 16119:3 16122:1 16127:1 16137:2 16146:1 16147:1 16149:1 16150:1 16164:1 16170:1 16172:1 16177:2 16190:2 16194:1 16196:1 16237:1 16242:2 16285:3 16288:1 16289:1 16290:2 16310:1 16338:1 16353:1 16363:1 16383:1 16398:1 16400:1 16403:2 16434:1 16475:1 16482:1 16488:1 16489:1 16505:1 16511:1 16527:1 16528:1 16543:1 16546:1 16555:2 16575:1 16588:1 16589:1 16597:1 16604:1 16605:1 16614:1 16639:1 16646:1 16662:1 16666:2 16675:2 16685:2 16702:1 16708:1 16710:1 16714:3 16716:2 16718:1 16738:1 16747:1 16758:1 16761:1 16776:1 16789:2 16802:1 16828:1 16830:1 16840:4 16843:1 16844:5 16851:1 16867:1 16874:1 16883:1 16899:1 16905:1 16908:1 16915:8 16929:1 16930:1 16932:2 16939:1 16942:1 16947:2 16966:4 16977:1 16990:1 16991:1 16995:2 17013:2 17015:1 17036:1 17042:1 17046:1 17050:1 17053:2 17059:6 17067:1 17087:1 17091:6 17092:1 17106:1 17110:1 17136:2 17138:2 17155:3 17156:2 17167:1 17172:1 17179:1 17181:1 17186:1 17187:2 17198:2 17199:7 17200:1 17207:2 17210:1 17244:1 17251:1 17265:1 17270:2 17277:2 17327:1 17343:1 17346:1 17360:1 17363:3 17369:2 17374:2 17397:1 17401:1 17422:1 17442:1 17445:1 17447:1 17448:3 17454:2 17455:1 17456:1 17463:3 17475:3 17476:2 17477:1 17509:1 17511:1 17522:5 17523:3 17538:1 17558:1 17560:2 17585:1 17587:1 17592:7 17604:1 17631:1 17636:1 17644:2 17647:2 17648:1 17652:1 17655:1 17662:1 17664:2 17665:5 17667:1 17669:1 17670:1 17683:1 17687:1 17691:1 17692:1 17698:1 17707:1 17721:1 17722:3 17747:1 17753:2 17764:1 17766:1 17767:8 17772:4 17781:27 17783:1 17785:1 17787:1 17790:2 17794:1 17812:4 17819:1 17822:1 17831:1 17838:1 17845:1 17852:1 17855:1 17860:2 17871:1 17872:1 17873:1 17875:1 17882:1 17886:1 17896:4 17907:1 17922:1 17931:5 17962:1 17967:1 17977:2 17979:1 17989:1 17994:1 17998:2 18007:5 18009:1 18011:1 18019:1 18032:1 18045:1 18056:1 18067:1 18080:1 18084:1 18114:1 18120:1 18133:1 18150:2 18152:2 18167:1 18169:1 18170:1 18178:1 18184:1 18212:1 18219:3 18220:1 18249:2 18315:4 18323:1 18331:1 18340:1 18348:1 18357:1 18380:2 18381:1 18382:1 18399:2 18410:1 18417:5 18424:1 18444:1 18449:1 18461:1 18465:1 18471:3 18476:2 18478:2 18481:1 18495:1 18498:1 18504:5 18509:1 18512:1 18516:1 18519:2049 18524:1 18534:1 18538:1 18572:3 18573:1 18582:3 18608:1 18643:2 18648:2 18657:1 18668:2 18684:1 18690:1 18691:1 18702:1 18708:3 18715:6 18720:1 18725:5 18727:2 18728:4 18748:2 18763:1 18802:6 18808:2 18810:2 18814:1 18816:1 18840:1 18842:31 18850:1 18861:1 18863:7 18904:1 18907:1 18915:1 18920:1 18930:2 18938:1 18947:1 18968:1 18969:1 18971:1 18982:2 18991:3 19007:1 19008:1 19017:1 19033:1 19055:2 19061:1 19079:1 19089:1 19091:1 19113:1 19121:1 19135:2 19140:2 19142:3 19168:1 19172:1 19174:2 19176:3 19180:1 19187:1 19190:1 19192:1 19197:3 19202:1 19210:1 19218:1 19228:5 19235:1 19239:1 19256:1 19257:2 19271:2 19273:1 19293:1 19298:10 19314:1 19315:1 19335:7 19336:1 19350:1 19353:1 19359:1 19370:1 19412:1 19420:3 19442:2 19475:1 19482:1 19494:1 19507:4 19508:1 19515:3 19516:2 19531:1 19534:1 19549:1 19550:3 19551:1 19563:3 19566:1 19573:1 19592:2 19600:1 19605:1 19628:1 19634:1 19661:3 19674:1 19680:1 19708:2 19719:1 19720:1 19724:1 19735:2 19742:1 19745:1 19751:1 19752:1 19754:1 19767:2 19771:3 19775:4 19777:1 19778:1 19784:4 19794:1 19807:1 19816:1 19818:1 19829:1 19833:1 19839:2 19859:1 19862:1 19876:2 19881:1 19904:2 19909:4 19918:1 19936:1 19948:1 19949:4 19953:1 19964:1 19966:1 19978:2 19992:1 19996:1 20001:1 20003:1 20004:2 20017:1 20020:1 20031:1 20032:1 20036:1 20037:1 20052:1 20061:4 20068:1 20074:1 20079:1 20084:2 20086:1 20094:1 20117:2 20118:2 20137:1 20159:5 20187:1 20211:6 20212:3 20218:2 20226:2 20231:1 20237:1 20272:1 20281:1 20283:3 20293:2 20299:1 20302:1 20313:1 20400:1 20404:3 20406:4 20408:1 20420:1 20443:1 20453:1 20454:1 20455:6 20465:2 20466:1 20467:1 20468:4 20474:2 20495:1 20525:1 20530:1 20531:2 20547:1 20567:4 20577:1 20594:1 20599:1 20600:1 20604:1 20643:1 20644:1 20652:1 20656:1 20658:3 20671:1 20677:4 20679:1 20682:1 20683:1 20685:1 20686:1 20692:1 20701:1 20705:3 20710:1 20715:1 20716:1 20721:1 20722:2 20730:1 20738:1 20747:5 20770:1 20780:2 20781:1 20782:3 20783:1 20797:1 20798:1 20823:3 20833:1 20846:1 20862:1 20900:2 20907:2 20918:1 20945:1 20948:2 20957:2 20979:6 20985:1 20986:1 20988:1 21010:1 21016:1 21019:2 21029:1 21049:1 21062:2 21075:1 21079:1 21080:1 21088:1 21091:2 21100:1 21107:1 21122:1 21137:2 21158:1 21169:1 21174:1 21193:1 21196:1 21198:2 21201:1 21265:1 21276:1 21288:1 21289:1 21313:1 21320:1 21345:1 21357:1 21358:2 21359:1 21371:2 21372:1 21374:2 21380:1 21386:2 21387:3 21389:1 21392:1 21397:1 21405:1 21406:1 21407:1 21409:1 21415:1 21440:1 21442:2 21444:1 21448:1 21459:1 21472:4 21486:1 21488:1 21490:1 21493:1 21498:2 21499:2 21503:1 21504:1 21509:2 21518:1 21520:1 21523:1 21528:1 21538:1 21544:1 21548:9 21551:1 21567:1 21568:2 21569:1 21580:1 21616:1 21634:1 21647:2 21648:1 21654:2 21661:1 21663:1 21670:1 21675:8 21684:1 21691:1 21695:3 21712:1 21714:2 21715:1 21724:1 21750:1 21770:1 21771:1 21778:1 21809:1 21812:4 21822:1 21824:1 21826:1 21827:2 21829:1 21830:1 21838:1 21846:2 21848:3 21867:2 21870:1 21885:1 21901:2 21916:2 21931:1 21937:2 21941:1 21952:1 21967:1 21971:1 21975:1 21994:3 21999:1 22009:3 22012:2 22016:3 22021:1 22025:1 22052:1 22059:1 22061:1 22065:2 22077:2 22080:1 22096:3 22135:1 22144:1 22147:1 22150:1 22173:4 22174:5 22178:3 22179:1 22180:2 22189:2 22190:1 22205:1 22212:1 22222:1 22223:4 22230:1 22236:1 22239:1 22243:2 22248:1 22252:3 22257:2 22258:4 22265:1 22277:2 22290:1 22291:1 22293:1 22294:3 22295:1 22302:1 22315:2 22318:1 22329:2 22331:1 22332:1 22336:1 22337:1 22345:3 22357:1 22362:2 22368:1 22390:1 22391:4 22392:1 22401:1 22406:2 22412:1 22414:27 22419:1 22420:2 22422:4 22425:1 22426:3 22427:2 22430:1 22432:1 22434:1 22453:3 22455:1 22461:1 22464:3 22467:1 22473:2 22493:2 22495:2 22496:1 22507:1 22529:2 22538:1 22542:1 22579:3 22585:1 22593:6 22599:1 22616:2 22621:1 22634:1 22646:1 22672:1 22674:2 22676:2 22679:1 22680:1 22687:1 22691:3 22692:1 22695:1 22699:2 22705:1 22706:1 22721:3 22726:2 22736:1 22737:1 22758:1 22777:1 22782:1 22784:1 22788:1 22808:1 22837:1 22848:1 22866:1 22867:1 22878:1 22896:2 22902:1 22919:1 22921:1 22931:1 22935:1 22947:2 22948:1 22955:1 22962:2 22964:1 22980:3 22981:1 22982:1 22998:3 23001:3 23021:2 23024:1 23027:1 23033:2 23038:1 23072:1 23099:1 23143:1 23148:1 23165:1 23184:3 23188:1 23195:1 23196:1 23207:3 23227:2 23234:2 23235:1 23239:1 23241:1 23248:1 23254:1 23275:2 23283:3 23297:1 23299:2 23302:1 23310:1 23313:1 23326:1 23340:1 23343:1 23349:1 23352:1 23361:12 23368:1 23394:2 23403:1 23408:1 23437:1 23439:1 23441:1 23452:1 23494:1 23504:1 23519:1 23520:1 23532:2 23545:1 23559:2 23568:1 23581:1 23591:1 23592:1 23600:1 23616:6 23618:1 23620:1 23635:1 23647:1 23651:1 23659:2 23716:1 23720:1 23722:1 23732:3 23736:1 23744:1 23749:2 23758:1 23774:1 23785:1 23798:1 23806:1 23814:1 23831:1 23832:1 23875:3 23884:5 23885:1 23896:4 23899:1 23910:1 23912:1 23918:2 23919:1 23920:1 23928:1 23939:2 23941:1 23966:2 23973:1 23979:1 23994:3 23995:2 23996:1 24001:1 24025:1 24030:1 24044:1 24047:1 24052:1 24057:2 24058:3 24064:1 24068:1 24073:1 24093:1 24098:1 24101:1 24114:1 24124:1 24146:1 24148:1 24150:1 24156:1 24159:2 24160:1 24162:7 24164:3 24166:4 24167:2 24171:1 24172:2 24174:2 24175:1 24182:2 24183:3 24187:2 24193:2 24206:4 24233:1 24236:2 24237:1 24242:1 24247:2 24263:4 24267:3 24291:2 24295:1 24297:1 24307:3 24321:1 24324:1 24342:1 24345:1 24347:1 24348:2 24362:1 24390:1 24401:1 24402:1 24419:3 24440:4 24448:1 24450:4 24453:1 24464:2 24466:1 24496:1 24508:1 24512:2 24513:1 24524:1 24547:2 24548:1 24558:1 24571:1 24582:1 24584:1 24609:1 24630:3 24645:1 24654:1 24658:1 24665:2 24707:4 24746:1 24757:2 24763:1 24772:1 24780:1 24783:4 24791:1 24793:1 24797:1 24810:1 24816:1 24822:4 24878:1 24899:1 24900:2 24912:2 24915:4 24946:10 24955:1 24969:9 24990:1 24997:1 25005:1 25015:2 25028:1 25038:2 25041:1 25042:1 25045:1 25046:1 25047:1 25089:1 25093:2 25099:2 25104:1 25109:1 25111:2 25114:6 25122:1 25137:2 25139:2 25141:8 25144:4 25145:2 25155:1 25162:1 25167:2 25170:1 25177:1 25182:1 25214:2 25219:1 25225:4 25230:1 25240:1 25247:3 25258:2 25259:2 25319:1 25320:1 25335:1 25342:1 25345:1 25346:1 25356:1 25384:1 25386:1 25401:1 25410:1 25412:3 25413:1 25416:2 25425:1 25436:5 25465:1 25468:1 25473:1 25488:1 25492:1 25515:1 25557:1 25561:1 25569:1 25576:1 25600:1 25618:1 25663:1 25665:1 25676:1 25679:3 25680:2 25691:1 25700:1 25701:1 25708:2 25718:2 25726:1 25729:1 25742:1 25757:1 25759:2 25781:1 25796:3 25804:1 25812:1 25816:2 25829:1 25835:1 25838:5 25864:1 25865:4 25880:1 25901:1 25903:1 25906:2 25916:1 25929:1 25930:1 25936:2 25953:2 25971:2 25988:1 25992:5 25994:1 26021:3 26024:1 26033:1 26038:1 26040:1 26042:1 26059:2 26087:1 26093:4 26112:2 26113:1 26114:1 26118:1 26122:1 26123:1 26127:3 26128:1 26133:1 26162:1 26166:2 26170:1 26175:1 26182:1 26185:1 26190:1 26213:1 26221:2 26225:1 26247:2 26249:1 26261:2 26262:1 26267:1 26285:1 26290:2 26300:1 26309:1 26316:1 26332:2 26338:1 26339:1 26341:1 26352:1 26368:3 26373:5 26392:2 26453:1 26476:1 26478:1 26479:1 26482:1 26499:1 26504:1 26524:1 26542:1 26547:1 26548:1 26551:1 26556:1 26559:1 26566:1 26569:1 26574:1 26582:1 26588:2 26599:1 26621:1 26622:1 26624:1 26641:1 26654:2 26657:1 26662:1 26667:3 26681:4 26700:4 26709:5 26721:1 26736:1 26737:1 26743:1 26759:2 26772:1 26778:1 26787:1 26788:10 26807:1 26817:1 26838:1 26840:2 26844:1 26845:1 26847:1 26848:2 26856:12 26894:3 26933:2 26934:1 26938:1 26954:2 26960:5 26965:2 26967:2 26981:1 26985:2 26988:1 26994:3 27003:1 27006:1 27016:1 27022:1 27033:1 27036:1 27057:1 27058:3 27061:1 27069:2 27070:1 27079:1 27090:1 27103:1 27108:1 27113:1 27135:1 27136:1 27141:2 27143:1 27145:1 27147:1 27149:1 27160:2 27187:1 27188:1 27229:1 27247:1 27275:1 27279:1 27298:1 27330:1 27332:1 27342:2 27365:4 27368:1 27376:1 27385:1 27392:1 27408:1 27412:1 27419:1 27465:1 27481:2 27500:1 27517:1 27536:3 27549:1 27560:1 27563:6 27575:1 27595:1 27597:3 27620:1 27627:2 27636:1 27658:1 27661:1 27662:1 27673:1 27675:1 27678:1 27687:25 27689:4 27692:5 27694:1 27695:3 27702:1 27724:7 27739:1 27777:1 27789:2 27804:1 27808:1 27820:1 27821:2 27832:3 27838:2 27859:11 27863:2 27867:1 27869:1 27874:1 27885:1 27887:1 27889:1 27893:2 27900:2 27906:1 27909:1 27917:2 27923:1 27930:1 27934:1 27935:2 27948:2 27951:1 27960:1 27964:1 27968:1 27969:1 27975:1 28003:1 28011:1 28028:2 28030:1 28031:1 28050:1 28051:1 28054:1 28058:1 28068:3 28075:1 28082:1 28100:1 28102:1 28126:1 28127:2 28128:2 28131:1 28169:1 28174:1 28177:1 28178:1 28180:1 28183:1 28187:2 28191:1 28193:1 28202:1 28203:1 28204:1 28208:1 28214:2 28215:1 28217:1 28218:1 28223:1 28264:1 28292:1 28315:1 28319:1 28320:1 28341:1 28350:1 28356:1 28359:1 28362:1 28363:2 28373:1 28375:3 28380:1 28387:1 28397:7 28404:1 28409:1 28411:5 28413:1 28419:1 28461:1 28469:2 28470:1 28506:3 28514:1 28520:1 28536:3 28541:1 28543:2 28551:1 28553:1 28560:6 28569:1 28594:1 28596:1 28627:1 28646:1 28648:1 28665:2 28685:2 28703:1 28709:1 28724:1 28728:1 28734:1 28748:1 28761:2 28792:1 28801:7 28815:1 28816:1 28818:1 28836:7 28849:5 28850:1 28867:1 28904:1 28913:8 28914:3 28916:2 28919:1 28921:1 28924:3 28925:2 28941:1 28947:1 28958:1 28959:2 28961:3 28963:3 29003:1
9 11:1 14:1 24:1 34:1 37:2 56:1 60:1 63:1 65:1 79:1 82:1 83:1 89:1 90:1 103:1 109:1 113:1 117:1 125:1 133:1 143:1 150:1 153:3 162:1 170:4 189:7 214:1 245:1 270:1 282:2 293:1 295:32 303:2 315:1 316:3 318:4 326:1 333:1 348:2 350:1 363:1 381:1 403:2 424:3 432:1 433:1 442:1 444:1 515:1 523:1 561:1 563:4 564:1 569:2 572:3 590:4 596:2 598:1 600:1 613:2 626:1 634:2 638:1 643:1 650:1 674:1 678:1 685:1 692:1 702:1 716:1 734:1 735:1 748:1 752:1 767:1 770:1 788:1 795:1 804:1 805:1 807:2 808:1 828:1 830:7 832:3 842:2 843:1 855:1 856:14 860:1 867:1 871:1 875:2 877:5 879:7 885:2 889:1 892:1 893:1 899:1 905:3 916:1 924:2 925:2 941:1 963:1 974:3 989:1 996:2 998:2 1002:2 1019:1 1020:2 1027:1 1045:1 1046:1 1059:1 1061:2 1078:1 1086:1 1087:1 1089:2 1092:1 1104:3 1112:2 1117:1 1123:1 1136:1 1143:1 1148:3 1152:1 1160:1 1163:1 1179:1 1207:2 1231:1 1232:1 1241:2 1244:1 1257:1 1262:1 1276:1 1284:1 1287:1 1300:1 1313:1 1330:1 1345:1 1353:1 1355:3 1369:1 1374:2 1376:1 1394:1 1397:2 1400:3 1401:5 1402:1 1417:1 1419:2 1420:1 1422:1 1423:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1506:2 1507:1 1508:1 1516:4 1543:1 1547:1 1555:1 1557:1 1560:1 1562:2 1564:3 1571:1 1578:1 1596:4 1598:1 1617:1 1619:3 1627:6 1634:2 1659:1 1660:1 1677:1 1678:1 1682:1 1699:1 1709:1 1743:2 1757:1 1760:1 1762:1 1778:4 1789:1 1794:1 1802:1 1811:1 1819:1 1828:1 1830:1 1875:1 1888:1 1895:18 1903:1 1907:2 1919:1 1923:1 1929:1 1935:1 1936:1 1952:1 1962:8 1963:1 1965:2 1993:1 1998:1 2006:2 2011:3 2051:1 2082:1 2085:1 2089:3 2095:2 2100:1 2101:1 2105:1 2108:1 2132:1 2142:1 2154:1 2156:1 2158:1 2159:5 2160:1 2162:1 2165:1 2172:1 2174:4 2177:1 2178:2 2179:4 2181:1 2187:1 2190:2 2191:1 2207:1 2212:1 2216:2 2219:2 2220:2 2221:8 2223:4 2226:1 2227:2 2228:4 2232:1 2233:1 2234:1 2237:2 2239:1 2245:1 2247:1 2249:1 2251:6 2252:2 2253:7 2264:1 2268:1 2269:1 2279:1 2297:1 2309:2 2315:1 2322:1 2336:1 2339:1 2343:1 2347:1 2358:3 2370:3 2374:1 2376:1 2387:1 2392:2 2410:3 2421:6 2433:1 2445:1 2461:1 2465:1 2473:1 2485:5 2494:3 2500:1 2522:2 2536:1 2543:2 2552:3 2561:2 2563:1 2570:1 2580:2 2609:2 2631:1 2635:1 2648:1 2651:3 2656:1 2659:1 2667:2 2670:1 2672:1 2675:1 2683:1 2688:1 2691:1 2704:1 2708:2 2712:1 2713:1 2723:1 2730:3 2756:1 2760:1 2761:2 2762:1 2766:7 2770:3 2775:3 2780:1 2782:1 2810:1 2813:1 2816:1 2818:2 2826:1 2836:2 2854:4 2857:1 2867:23 2883:4 2888:1 2900:2 2909:1 2915:1 2931:1 2936:11 2961:4 2965:6 2968:1 2969:1 2972:1 2989:1 3015:1 3023:1 3026:1 3030:1 3068:1 3074:4 3075:1 3089:1 3097:1 3105:1 3106:1 3112:1 3166:1 3188:2 3197:1 3205:1 3224:1 3231:1 3232:5 3243:1 3248:1 3255:1 3256:1 3266:1 3271:1 3279:1 3293:1 3295:3 3314:1 3338:1 3352:1 3357:12 3397:1 3407:1 3420:2 3424:2 3459:1 3471:1 3472:1 3475:2 3478:1 3488:1 3489:1 3495:2 3509:1 3517:1 3528:1 3540:2 3548:1 3558:1 3570:2 3574:1 3577:1 3580:2 3582:6 3599:5 3604:2 3605:1 3606:1 3607:2 3608:2 3615:1 3634:2 3638:1 3639:4 3647:1 3648:1 3669:1 3680:1 3684:1 3687:2 3688:3 3692:1 3695:2 3698:2 3712:1 3730:1 3737:1 3740:1 3742:4 3744:1 3746:2 3748:12 3763:1 3779:1 3783:5 3784:1 3788:2 3789:12 3790:1 3792:1 3796:1 3810:1 3813:5 3817:1 3822:1 3835:1 3836:3 3838:1 3848:1 3851:1 3862:1 3866:1 3874:1 3876:1 3883:1 3888:1 3895:1 3902:3 3904:3 3918:2 3919:1 3931:1 3934:1 3939:1 3940:1 3943:1 3948:1 3955:1 3964:4 3970:1 3972:1 3977:2 3982:1 3987:1 3988:2 3989:2 3998:4 3999:3 4005:1 4019:1 4033:1 4040:1 4051:1 4054:2 4069:1 4078:1 4085:2 4086:1 4093:1 4113:1 4125:1 4129:1 4136:1 4137:1 4173:1 4190:3 4193:2 4201:1 4204:1 4210:1 4219:1 4254:1 4270:2 4272:2 4282:1 4298:1 4314:2 4348:2 4357:1 4362:5 4378:1 4385:1 4414:1 4416:1 4428:2 4434:1 4439:2 4455:1 4491:1 4494:1 4528:2 4549:1 4554:1 4560:1 4562:1 4583:1 4585:2 4605:1 4613:1 4619:2 4626:3 4640:1 4646:1 4657:2 4658:1 4676:1 4678:1 4691:1 4695:8 4724:1 4731:1 4742:1 4746:1 4759:1 4768:1 4773:7 4776:1 4787:1 4788:2 4803:1 4807:1 4810:1 4815:1 4818:1 4851:3 4867:1 4876:21 4878:2 4881:1 4895:2 4903:1 4917:1 4925:2 4928:7 4940:2 4963:1 4964:1 4980:1 4981:1 4984:1 4985:6 5003:4 5005:5 5006:1 5008:1 5009:1 5011:1 5013:3 5014:1 5015:1 5017:2 5022:1 5026:1 5028:2 5030:3 5031:1 5033:1 5041:1 5042:1 5045:4 5046:3 5064:1 5090:1 5096:1 5125:2 5131:2 5133:1 5157:2 5176:1 5177:1 5184:2 5190:2 5195:2 5203:2 5219:1 5220:1 5237:1 5245:2 5249:3 5255:1 5280:1 5302:1 5306:1 5307:1 5316:1 5325:1 5328:1 5351:2 5358:7 5362:1 5365:1 5369:2 5371:2 5386:1 5394:1 5404:2 5423:1 5429:1 5434:2 5438:1 5453:1 5480:1 5493:1 5501:1 5511:2 5524:2 5534:1 5535:2 5538:2 5540:2 5548:1 5551:1 5556:2 5563:1 5564:1 5582:3 5584:1 5588:1 5589:1 5593:1 5607:1 5615:3 5629:4 5639:1 5640:1 5663:3 5680:1 5681:3 5694:1 5701:3 5705:1 5720:4 5721:1 5728:1 5744:1 5749:1 5773:1 5801:1 5802:1 5812:2 5843:3 5850:1 5852:1 5855:1 5877:1 5881:2 5898:1 5920:1 5942:1 5947:3 5949:1 5972:14 5987:4 5992:4 6000:1 6001:1 6006:3 6007:1 6009:2 6017:1 6039:3 6040:1 6053:1 6056:1 6058:1 6078:1 6110:1 6130:2 6137:2 6138:1 6142:1 6150:1 6153:2 6156:1 6176:5 6178:1 6182:1 6192:1 6197:1 6199:1 6220:1 6244:1 6245:2 6247:1 6259:3 6262:1 6263:1 6265:2 6269:1 6270:2 6273:1 6274:2 6275:3 6276:4 6279:2 6282:4 6283:9 6284:5 6286:1 6316:1 6334:2 6379:3 6381:1 6383:1 6420:2 6435:2 6482:2 6493:1 6502:1 6507:1 6513:1 6531:1 6536:2 6537:1 6542:1 6556:1 6558:1 6565:2 6580:1 6585:1 6598:1 6609:1 6613:1 6652:1 6653:2 6654:2 6668:1 6671:1 6677:1 6679:2 6680:1 6689:1 6699:7 6715:2 6722:4 6728:1 6741:1 6744:1 6751:1 6757:1 6777:1 6795:1 6810:2 6811:1 6823:2 6851:1 6854:2 6855:2 6860:3 6866:1 6869:1 6871:1 6885:3 6886:2 6903:1 6906:1 6914:1 6918:1 6919:2 6922:2 6927:1 6932:1 6939:1 6948:2 6987:1 6999:1 7009:1 7049:1 7050:10 7052:1 7067:1 7073:2 7074:2 7091:1 7097:2 7099:1 7102:1 7124:1 7125:1 7155:2 7169:1 7180:1 7198:2 7218:2 7234:1 7248:2 7263:3 7274:1 7278:1 7287:2 7288:1 7290:1 7297:1 7303:1 7311:1 7322:1 7334:5 7346:3 7347:1 7352:1 7367:2 7371:1 7382:2 7383:1 7386:2 7401:1 7407:2 7427:1 7463:2 7485:1 7499:2 7510:1 7516:1 7518:1 7554:2 7555:12 7556:4 7570:2 7580:2 7582:3 7584:1 7603:4 7604:1 7620:50 7622:1 7643:5 7644:11 7645:1 7648:2 7665:1 7671:2 7685:1 7696:1 7700:1 7710:1 7720:2 7725:2 7734:1 7751:1 7755:1 7758:2 7773:1 7786:1 7826:2 7851:3 7862:1 7871:1 7878:2 7892:1 7897:6 7928:1 7931:1 7943:1 7962:1 7967:1 8004:1 8007:1 8032:1 8037:1 8043:2 8044:3 8045:1 8046:1 8062:1 8063:2 8087:1 8093:1 8107:1 8110:1 8116:2 8122:1 8124:2 8130:2 8136:1 8142:3 8145:1 8154:1 8156:7 8180:2 8184:1 8186:1 8194:1 8236:1 8254:1 8270:1 8299:1 8301:2 8311:2 8319:2 8334:1 8336:1 8358:1 8367:2 8369:2 8376:3 8379:1 8383:3 8387:2 8394:1 8395:3 8405:1 8412:1 8422:1 8430:5 8433:1 8438:1 8441:1 8449:1 8460:1 8468:1 8480:1 8490:1 8497:1 8500:3 8501:5 8503:4 8504:1 8505:2 8508:3 8510:8 8512:2 8513:3 8514:1 8516:1 8525:1 8526:2 8543:4 8549:1 8550:3 8567:3 8571:1 8572:2 8575:2 8578:2 8582:1 8586:4 8604:1 8639:1 8640:2 8655:1 8657:1 8679:1 8688:1 8710:1 8719:1 8725:1 8728:1 8739:1 8751:1 8756:3 8762:1 8772:2 8779:3 8805:2 8808:1 8810:1 8811:4 8815:2 8827:3 8833:1 8840:1 8846:1 8857:1 8914:1 8921:1 8929:1 8936:2 8950:5 8954:2 8969:1 8971:1 8992:3 9001:1 9011:1 9019:1 9022:2 9023:1 9035:1 9040:1 9050:1 9057:1 9060:1 9065:1 9068:1 9069:1 9077:3 9107:1 9115:3 9121:1 9128:1 9134:1 9139:2 9142:2 9145:1 9151:1 9161:2 9162:1 9196:1 9200:1 9207:7 9209:1 9210:1 9216:2 9219:1 9226:32 9230:2 9231:2 9246:2 9247:1 9261:1 9275:1 9298:1 9305:1 9314:1 9319:1 9329:1 9338:2 9345:1 9349:1 9360:2 9363:6 9364:1 9365:2 9390:1 9392:1 9421:1 9427:1 9433:3 9448:1 9469:1 9490:1 9497:1 9528:1 9529:1 9537:1 9539:1 9555:2 9558:1 9567:1 9568:1 9569:5 9574:1 9582:1 9586:4 9594:2 9601:1 9608:2 9634:2 9652:1 9663:7 9676:1 9677:4 9687:2 9689:1 9697:1 9700:1 9702:1 9704:1 9712:1 9713:1 9746:3 9772:1 9780:1 9789:1 9790:1 9815:1 9823:2 9829:1 9847:7 9850:1 9856:1 9862:1 9871:4 9877:2 9878:1 9880:1 9883:2 9885:1 9887:1 9890:1 9898:4 9911:1 9913:1 9917:1 9919:1 9924:1 9928:3 9929:1 9932:2 9933:1 9938:1 9939:1 9948:1 9954:1 9956:1 9968:4 9986:1 9987:1 9996:1 10019:1 10037:1 10038:1 10043:1 10057:1 10065:1 10073:1 10094:1 10122:1 10124:1 10125:1 10126:1 10135:2 10157:1 10178:1 10188:1 10191:1 10200:1 10234:1 10241:2 10266:3 10280:1 10286:1 10302:1 10305:1 10328:2 10329:1 10347:3 10351:2 10359:2 10370:1 10372:1 10402:1 10405:1 10414:1 10436:1 10448:1 10478:2 10484:1 10486:1 10488:1 10501:1 10504:3 10507:2 10513:5 10521:1 10523:1 10524:1 10526:1 10537:1 10539:2 10541:1 10555:3 10557:3 10558:1 10564:1 10573:3 10582:3 10583:3 10590:2 10592:2 10593:1 10621:1 10641:1 10657:7 10665:5 10677:2 10683:3 10686:11 10737:1 10740:1 10747:1 10748:1 10783:2 10787:1 10790:1 10805:1 10824:1 10839:1 10846:1 10857:1 10883:1 10901:1 10903:3 10905:2 10909:2 10910:2 10921:2 10931:2 10937:1 10943:1 10947:1 10953:1 10962:1 10969:1 10989:6 10992:1 11010:4 11014:1 11016:1 11018:1 11021:1 11040:1 11062:1 11063:2 11064:2 11066:1 11071:1 11083:1 11085:1 11094:1 11100:1 11106:1 11107:1 11118:1 11131:1 11138:1 11145:1 11147:1 11173:1 11175:1 11177:1 11188:1 11197:1 11203:5 11208:1 11216:1 11230:1 11232:1 11234:1 11248:1 11260:1 11268:2 11274:1 11278:2 11284:1 11285:1 11300:2 11301:1 11302:2 11308:1 11315:3 11317:1 11333:6 11341:1 11367:1 11370:10 11371:1 11400:1 11401:1 11407:1 11430:1 11442:1 11444:2 11466:1 11468:1 11469:1 11470:1 11476:1 11477:1 11479:1 11481:2 11496:1 11501:1 11506:1 11509:2 11514:1 11520:2 11526:3 11530:7 11547:3 11549:1 11550:6 11580:1 11587:1 11600:1 11603:3 11609:1 11611:1 11614:1 11615:2 11619:3 11622:1 11631:2 11632:3 11633:1 11636:2 11641:3 11645:1 11649:1 11664:7 11671:1 11684:8 11690:1 11693:1 11710:1 11711:1 11716:1 11727:1 11734:1 11755:1 11772:2 11789:1 11824:2 11826:1 11852:1 11865:3 11871:1 11877:1 11882:1 11891:1 11908:1 11916:1 11924:1 11931:3 11936:3 11952:1 11973:3 11977:1 11990:1 11997:1 12004:1 12005:1 12025:1 12107:1 12109:1 12110:2 12111:3 12115:2 12125:2 12132:1 12142:1 12154:1 12156:1 12165:3 12166:5 12172:2 12176:1 12178:1 12184:2 12239:1 12243:1 12250:1 12263:1 12272:1 12276:2 12281:6 12297:1 12302:1 12323:2 12337:1 12338:1 12345:1 12346:1 12349:2 12361:3 12362:1 12376:2 12380:2 12398:1 12405:1 12420:1 12423:2 12431:2 12457:1 12458:1 12464:1 12472:1 12476:1 12477:5 12480:1 12491:1 12493:1 12495:1 12508:1 12512:1 12515:1 12526:2 12534:1 12586:1 12608:8 12621:1 12633:1 12635:1 12636:1 12644:1 12648:16 12654:1 12658:1 12668:2 12671:5 12676:1 12681:1 12701:1 12702:1 12708:3 12733:2 12764:1 12769:4 12772:2 12787:1 12789:1 12790:1 12791:1 12796:2 12797:1 12813:1 12827:4 12831:1 12835:1 12837:1 12860:1 12861:1 12888:1 12914:1 12949:7 12954:1 12984:1 12999:1 13045:8 13049:1 13066:2 13068:1 13072:1 13076:5 13080:4 13086:1 13087:1 13093:1 13094:6 13120:1 13128:1 13133:1 13142:1 13143:1 13144:1 13166:5 13194:1 13206:1 13211:1 13213:1 13224:6 13231:1 13232:3 13233:1 13250:1 13251:1 13252:2 13257:1 13263:1 13275:2 13278:1 13282:1 13283:1 13287:1 13301:1 13302:4 13306:1 13310:1 13320:3 13331:1 13341:2 13346:1 13364:2 13372:7 13376:1 13396:1 13401:1 13416:4 13420:1 13421:3 13440:1 13454:1 13468:2 13490:1 13503:1 13520:1 13524:1 13533:1 13557:1 13561:1 13570:1 13599:4 13600:1 13601:2 13606:4 13607:2 13610:2 13620:1 13628:1 13633:1 13654:3 13674:1 13680:3 13691:2 13694:1 13697:1 13698:1 13723:1 13733:6 13745:1 13764:2 13779:3 13782:1 13788:2 13799:1 13813:1 13827:7 13832:3 13833:1 13838:1 13847:1 13886:1 13895:1 13904:3 13931:9 13942:1 13963:1 13974:1 13980:2 13986:1 14006:1 14018:1 14024:1 14029:1 14054:1 14076:6 14089:1 14107:3 14119:1 14126:1 14134:1 14140:1 14152:1 14161:1 14179:4 14180:1 14181:1 14196:1 14212:1 14223:1 14235:1 14245:1 14255:1 14266:2 14274:2 14284:2 14297:1 14299:3 14312:1 14313:1 14317:3 14318:9 14324:1 14325:6 14335:3 14339:1 14340:2 14347:1 14358:1 14361:1 14376:1 14385:1 14433:1 14434:1 14449:5 14482:2 14485:1 14489:2 14492:1 14498:4 14514:1 14523:1 14532:1 14533:3 14551:1 14554:1 14573:1 14591:2 14600:2 14614:2 14616:2 14623:1 14624:1 14636:2 14637:2 14647:4 14650:1 14664:3 14674:1 14683:2 14700:1 14701:1 14761:1 14775:1 14780:1 14785:1 14798:1 14803:2 14820:3 14821:1 14823:1 14824:1 14836:1 14837:1 14881:1 14883:1 14891:6 14893:1 14910:1 14912:1 14916:2 14935:1 14936:6 14938:3 14961:2 14970:1 14984:2 14986:1 14999:1 15000:1 15020:8 15022:1 15024:1 15037:1 15055:1 15085:1 15109:1 15117:1 15123:4 15125:1 15130:1 15134:1 15145:1 15146:2 15158:1 15160:1 15173:1 15177:2 15178:1 15180:1 15207:1 15217:1 15233:1 15238:1 15241:1 15245:2 15259:2 15275:1 15301:2 15322:1 15332:11 15345:2 15380:1 15385:2 15395:1 15398:1 15403:1 15404:4 15414:4 15420:1 15424:1 15431:1 15435:1 15436:1 15440:1 15453:2 15455:1 15459:2 15471:1 15482:2 15496:1 15509:1 15527:1 15539:1 15556:1 15563:2 15568:1 15571:1 15578:8 15581:3 15590:1 15591:3 15595:1 15598:1 15607:2 15614:3 15622:2 15624:1 15625:5 15626:2 15631:1 15637:1 15642:1 15644:1 15678:1 15679:1 15687:1 15706:1 15711:1 15717:1 15742:1 15745:7 15750:1 15757:1 15763:2 15768:1 15777:1 15785:3 15814:2 15831:6 15832:3 15835:1 15837:1 15839:1 15871:1 15877:1 15879:3 15893:1 15896:1 15906:1 15909:4 15911:2 15913:1 15923:1 15957:1 15967:1 15973:3 16014:1 16026:1 16029:17 16030:1 16048:4 16051:2 16055:1 16056:1 16067:1 16084:1 16095:2 16103:1 16119:3 16122:1 16127:1 16137:2 16146:1 16147:1 16149:1 16150:1 16164:1 16170:1 16172:1 16177:2 16190:2 16194:1 16196:1 16237:1 16242:2 16285:3 16288:1 16289:1 16290:2 16310:1 16338:1 16353:1 16363:1 16383:1 16398:1 16400:1 16403:2 16434:1 16475:1 16482:1 16488:1 16489:1 16505:1 16511:1 16527:1 16528:1 16543:1 16546:1 16555:2 16575:1 16588:1 16589:1 16597:1 16604:1 16605:1 16614:1 16639:1 16646:1 16662:1 16666:2 16675:2 16685:2 16702:1 16708:1 16710:1 16714:3 16716:2 16718:1 16738:1 16747:1 16758:1 16761:1 16776:1 16789:2 16802:1 16828:1 16830:1 16840:4 16843:1 16844:5 16851:1 16867:1 16874:1 16883:1 16899:1 16905:1 16908:1 16915:8 16929:1 16930:1 16932:2 16939:1 16942:1 16947:2 16966:4 16974:1 16977:1 16990:1 16991:1 16995:2 17013:2 17015:1 17036:1 17042:1 17046:1 17050:1 17053:2 17059:6 17067:1 17087:1 17091:6 17092:1 17106:1 17110:1 17136:2 17138:2 17155:4 17156:2 17167:1 17172:1 17179:1 17181:1 17186:1 17187:2 17198:2 17199:7 17200:1 17207:2 17210:1 17244:1 17251:1 17265:1 17270:2 17277:2 17327:1 17343:1 17346:1 17360:1 17363:3 17369:2 17374:2 17397:1 17401:1 17422:1 17442:1 17445:1 17447:1 17448:3 17454:2 17455:1 17456:1 17463:3 17475:3 17476:2 17477:1 17509:1 17511:1 17522:5 17523:4 17538:1 17558:1 17560:2 17575:1 17585:1 17587:1 17592:7 17597:1 17604:1 17631:1 17636:1 17644:2 17647:2 17648:1 17652:1 17655:1 17662:1 17664:2 17665:5 17667:1 17669:1 17670:1 17683:2 17687:1 17691:1 17692:1 17698:1 17707:1 17721:1 17722:3 17747:1 17753:2 17764:1 17766:1 17767:8 17772:4 17781:28 17783:1 17785:1 17787:1 17790:2 17794:1 17803:1 17812:4 17819:1 17822:1 17831:1 17838:1 17845:1 17852:1 17855:1 17860:2 17871:1 17872:2 17873:1 17875:1 17882:1 17886:1 17896:4 17907:1 17922:1 17931:5 17962:1 17967:1 17977:2 17979:1 17989:1 17994:1 17998:2 18007:5 18009:1 18011:1 18019:1 18032:1 18045:1 18056:1 18058:1 18067:1 18080:1 18084:1 18114:1 18120:1 18133:1 18150:2 18152:2 18167:1 18169:1 18170:1 18178:1 18184:1 18212:1 18219:3 18220:1 18249:2 18315:4 18323:1 18331:1 18340:1 18348:1 18357:1 18380:2 18381:1 18382:1 18399:2 18410:1 18417:5 18424:1 18444:1 18449:1 18461:1 18465:1 18471:3 18476:2 18478:2 18481:1 18495:1 18498:1 18499:1 18504:5 18509:1 18512:1 18516:1 18519:2113 18524:1 18534:1 18538:1 18572:3 18573:1 18582:3 18607:1 18608:1 18643:2 18648:2 18657:1 18668:2 18684:1 18690:1 18691:1 18702:1 18708:3 18715:6 18720:1 18725:5 18727:3 18728:4 18748:2 18763:1 18802:6 18808:2 18810:2 18814:1 18816:1 18840:1 18842:32 18850:1 18861:1 18863:7 18904:1 18907:1 18915:1 18920:1 18930:2 18938:1 18947:1 18968:1 18969:1 18971:1 18982:2 18991:3 19007:1 19008:1 19017:1 19033:1 19055:2 19061:1 19079:1 19089:1 19091:1 19113:1 19121:1 19135:2 19140:2 19142:3 19168:1 19172:1 19174:2 19176:3 19180:1 19187:1 19190:1 19192:2 19197:3 19202:1 19210:1 19218:1 19228:5 19235:1 19239:1 19256:1 19257:2 19271:2 19273:1 19291:1 19293:2 19298:10 19314:1 19315:1 19335:7 19336:1 19350:1 19353:1 19359:1 19370:1 19412:1 19414:1 19420:3 19442:2 19475:1 19482:1 19494:1 19497:1 19507:4 19508:1 19515:3 19516:2 19531:1 19534:1 19549:1 19550:3 19551:1 19563:3 19566:1 19573:1 19592:2 19600:1 19605:1 19628:1 19634:1 19661:3 19674:1 19680:1 19708:2 19719:1 19720:1 19724:1 19735:2 19742:1 19745:1 19751:1 19752:1 19754:1 19767:2 19771:4 19775:4 19777:1 19778:1 19784:4 19794:1 19807:1 19816:1 19818:1 19829:1 19833:1 19839:2 19859:1 19862:1 19876:2 19881:1 19904:2 19909:4 19918:1 19936:2 19948:1 19949:4 19953:1 19964:1 19966:1 19978:2 19992:1 19996:1 20001:1 20003:1 20004:2 20017:1 20020:1 20031:1 20032:1 20036:1 20037:1 20052:1 20061:4 20068:1 20074:1 20079:1 20084:2 20086:1 20094:1 20117:2 20118:2 20137:1 20159:5 20170:1 20187:1 20211:6 20212:3 20218:2 20226:2 20231:1 20237:1 20272:1 20281:1 20283:3 20293:2 20299:1 20302:1 20313:1 20345:1 20400:1 20401:1 20404:3 20406:4 20408:1 20420:1 20443:1 20453:1 20454:1 20455:7 20465:2 20466:1 20467:1 20468:4 20474:2 20495:1 20525:1 20530:1 20531:2 20532:1 20545:1 20547:1 20567:4 20577:1 20594:1 20599:1 20600:1 20604:1 20626:1 20643:1 20644:1 20652:1 20656:1 20658:3 20671:1 20677:4 20679:1 20682:1 20683:1 20685:1 20686:1 20692:1 20701:1 20705:3 20710:1 20715:1 20716:1 20721:1 20722:2 20730:1 20738:1 20747:5 20770:1 20780:2 20781:1 20782:3 20783:1 20797:1 20798:1 20823:3 20833:1 20846:1 20862:1 20900:2 20907:2 20918:1 20945:1 20948:2 20957:2 20979:6 20985:1 20986:1 20988:1 21010:1 21016:1 21019:2 21029:1 21049:1 21062:2 21075:1 21079:1 21080:1 21088:1 21091:2 21100:1 21107:1 21122:1 21137:2 21158:1 21169:1 21174:1 21193:1 21196:1 21198:2 21201:1 21257:1 21265:1 21276:1 21288:1 21289:1 21313:1 21320:1 21345:1 21357:1 21358:2 21359:1 21371:2 21372:1 21374:2 21380:1 21386:2 21387:3 21389:1 21392:1 21397:1 21405:1 21406:1 21407:1 21409:1 21410:1 21415:2 21440:1 21442:2 21444:1 21448:1 21459:1 21472:4 21486:1 21488:1 21490:1 21493:1 21498:2 21499:2 21503:1 21504:1 21509:2 21518:2 21520:1 21523:2 21528:1 21538:1 21544:1 21548:9 21551:1 21567:1 21568:2 21569:2 21580:1 21616:1 21634:1 21647:2 21648:1 21654:2 21661:1 21663:1 21670:1 21675:8 21684:1 21691:1 21695:3 21712:1 21714:2 21715:1 21724:1 21750:1 21770:1 21771:1 21778:1 21809:1 21812:4 21822:1 21824:1 21826:1 21827:2 21829:1 21830:1 21838:1 21846:2 21847:1 21848:3 21867:2 21870:1 21877:1 21885:1 21901:2 21916:2 21931:1 21937:2 21941:1 21952:1 21967:1 21971:1 21975:1 21994:3 21999:1 22009:4 22012:2 22016:3 22017:1 22020:1 22021:1 22025:1 22052:1 22059:2 22061:1 22065:2 22077:2 22080:1 22096:3 22135:1 22144:1 22147:1 22150:1 22173:4 22174:5 22178:3 22179:1 22180:2 22189:2 22190:1 22205:1 22212:1 22222:1 22223:4 22230:1 22236:1 22239:1 22243:2 22248:1 22252:3 22257:2 22258:4 22265:1 22277:2 22290:1 22291:1 22293:1 22294:3 22295:1 22302:1 22315:2 22318:1 22329:2 22331:1 22332:1 22336:1 22337:1 22345:3 22357:1 22362:2 22368:1 22390:1 22391:4 22392:1 22401:1 22406:2 22412:1 22414:28 22419:1 22420:2 22422:4 22425:1 22426:3 22427:2 22430:1 22432:1 22434:1 22453:3 22455:1 22461:1 22464:3 22467:1 22473:2 22493:2 22495:2 22496:1 22507:1 22529:2 22538:1 22542:1 22579:3 22585:1 22593:6 22599:1 22616:2 22621:1 22634:1 22646:1 22672:1 22674:2 22676:2 22679:1 22680:1 22687:1 22691:3 22692:1 22695:1 22699:2 22705:1 22706:1 22721:3 22726:2 22736:1 22737:1 22758:1 22777:1 22782:1 22784:1 22788:1 22808:1 22837:1 22848:1 22866:1 22867:1 22878:1 22896:2 22902:1 22919:1 22921:1 22931:1 22935:1 22947:2 22948:1 22955:1 22962:2 22964:1 22971:1 22980:3 22981:1 22982:1 22998:3 23001:3 23021:2 23024:1 23027:1 23033:2 23038:1 23057:1 23072:1 23099:1 23130:1 23143:1 23148:1 23165:1 23184:3 23188:1 23195:1 23196:1 23207:3 23227:2 23234:2 23235:1 23239:1 23241:1 23248:1 23254:1 23275:2 23283:3 23297:1 23299:2 23302:1 23310:1 23313:1 23326:1 23340:1 23343:1 23349:1 23352:1 23361:12 23368:1 23394:2 23403:1 23408:1 23437:1 23439:1 23441:1 23452:1 23494:1 23504:1 23519:1 23520:1 23532:2 23545:1 23559:2 23568:1 23581:1 23591:1 23592:1 23600:1 23616:6 23618:1 23620:1 23635:1 23647:1 23651:1 23659:2 23667:1 23716:1 23720:1 23722:1 23732:3 23736:1 23744:1 23749:2 23758:1 23774:1 23785:1 23798:1 23806:1 23814:1 23831:1 23832:1 23875:3 23884:5 23885:1 23896:4 23899:1 23910:1 23912:1 23918:2 23919:1 23920:1 23928:1 23939:2 23941:1 23966:2 23973:1 23979:1 23994:3 23995:2 23996:1 24001:1 24025:1 24030:1 24044:1 24047:2 24052:1 24057:2 24058:3 24064:1 24068:1 24073:1 24093:1 24098:1 24101:1 24114:1 24124:1 24146:1 24148:1 24150:1 24156:1 24159:2 24160:1 24162:7 24164:3 24166:4 24167:2 24171:1 24172:2 24174:2 24175:3 24182:2 24183:3 24187:2 24193:2 24206:4 24213:1 24233:1 24236:2 24237:1 24242:1 24247:2 24263:4 24267:3 24291:2 24295:1 24297:1 24307:3 24321:1 24324:1 24342:1 24345:1 24347:1 24348:2 24362:1 24390:1 24401:1 24402:1 24419:3 24440:4 24448:1 24450:4 24453:1 24464:2 24466:1 24496:1 24508:1 24512:2 24513:1 24524:1 24547:2 24548:1 24558:1 24571:1 24582:1 24584:1 24609:1 24630:3 24645:1 24654:1 24658:1 24665:2 24707:4 24746:1 24757:2 24763:1 24772:1 24780:1 24783:4 24791:1 24793:1 24797:1 24810:1 24816:1 24822:4 24878:1 24899:1 24900:2 24912:2 24915:4 24946:10 24955:1 24969:9 24990:1 24997:1 25005:1 25015:2 25028:1 25038:2 25041:1 25042:1 25045:1 25046:1 25047:1 25071:1 25089:1 25093:2 25099:2 25104:1 25109:1 25111:2 25114:6 25122:1 25137:2 25139:2 25141:8 25144:4 25145:2 25155:1 25162:1 25167:2 25170:1 25177:1 25182:1 25214:2 25219:1 25225:4 25230:1 25240:1 25247:3 25258:2 25259:2 25319:1 25320:1 25335:1 25342:1 25345:1 25346:1 25356:1 25384:2 25386:1 25401:1 25410:1 25412:3 25413:1 25416:2 25425:1 25436:5 25465:1 25468:1 25473:1 25474:1 25488:1 25492:1 25515:1 25557:1 25561:1 25569:1 25576:1 25600:1 25618:1 25657:1 25663:1 25665:1 25676:1 25679:3 25680:2 25691:1 25700:1 25701:1 25708:2 25718:2 25726:1 25729:1 25742:1 25757:1 25759:2 25781:1 25796:3 25804:1 25812:1 25816:2 25826:1 25829:1 25835:1 25838:5 25859:1 25864:1 25865:4 25880:1 25901:1 25903:1 25906:2 25916:1 25929:1 25930:1 25936:2 25953:2 25971:2 25988:1 25992:5 25994:1 26021:3 26024:1 26033:1 26038:1 26040:1 26042:1 26059:2 26087:1 26088:1 26093:4 26112:2 26113:1 26114:1 26118:1 26122:1 26123:1 26127:3 26128:1 26133:1 26162:1 26166:2 26170:1 26175:1 26182:1 26185:1 26190:1 26213:1 26221:2 26225:1 26247:2 26249:1 26261:2 26262:1 26267:1 26285:1 26290:2 26300:1 26309:1 26316:1 26332:2 26338:1 26339:1 26341:1 26352:1 26368:3 26373:5 26392:2 26453:1 26476:1 26478:1 26479:1 26482:1 26499:1 26504:1 26524:1 26542:1 26547:1 26548:1 26551:1 26556:1 26559:1 26566:1 26569:1 26574:1 26582:1 26588:2 26599:1 26619:1 26621:1 26622:1 26624:1 26641:1 26654:2 26657:1 26662:1 26667:3 26681:4 26700:4 26709:5 26721:1 26736:1 26737:1 26743:1 26759:2 26772:1 26778:1 26787:1 26788:10 26807:1 26817:1 26838:1 26840:2 26844:1 26845:1 26847:1 26848:2 26856:12 26866:1 26894:3 26920:1 26933:2 26934:1 26938:1 26954:2 26960:5 26965:2 26967:2 26981:1 26985:2 26988:1 26994:3 27003:1 27006:1 27016:1 27022:1 27033:1 27036:1 27057:1 27058:3 27061:1 27069:2 27070:1 27079:1 27090:1 27103:1 27108:1 27113:1 27135:1 27136:1 27141:2 27143:1 27145:1 27147:1 27149:1 27160:2 27187:1 27188:1 27229:1 27247:1 27275:1 27279:1 27298:1 27330:1 27332:1 27342:2 27365:5 27368:1 27376:1 27385:1 27392:1 27408:1 27412:1 27419:1 27465:1 27472:1 27474:1 27481:2 27500:1 27517:1 27536:3 27549:1 27560:1 27563:6 27575:1 27595:1 27597:4 27620:1 27627:2 27636:1 27647:1 27658:1 27661:1 27662:1 27673:1 27675:1 27678:1 27687:26 27689:4 27692:5 27694:1 27695:3 27702:1 27724:7 27739:1 27777:1 27789:2 27804:1 27808:1 27820:1 27821:2 27832:4 27838:2 27859:11 27863:2 27867:1 27869:1 27874:1 27879:2 27885:1 27887:1 27889:1 27893:2 27900:2 27906:1 27907:1 27909:1 27917:2 27923:1 27930:1 27934:1 27935:2 27948:2 27951:1 27960:1 27964:1 27968:1 27969:1 27975:1 28003:1 28011:1 28028:2 28030:1 28031:1 28050:1 28051:1 28054:1 28058:1 28068:5 28075:1 28082:1 28100:1 28102:1 28126:1 28127:2 28128:2 28131:1 28169:1 28174:1 28177:1 28178:1 28180:1 28183:2 28187:4 28191:1 28193:1 28202:1 28203:1 28204:1 28208:1 28214:2 28215:1 28217:1 28218:1 28223:1 28264:1 28292:1 28315:1 28319:1 28320:1 28341:1 28350:1 28356:1 28359:1 28362:1 28363:2 28373:1 28375:3 28380:1 28387:1 28397:7 28404:1 28409:1 28411:5 28413:1 28419:1 28461:1 28469:2 28470:1 28506:3 28514:1 28520:1 28536:3 28541:1 28543:2 28551:1 28553:1 28560:6 28569:1 28594:1 28596:1 28627:1 28646:1 28648:1 28665:2 28685:2 28703:1 28709:1 28724:1 28728:1 28734:1 28748:1 28754:1 28761:2 28792:1 28801:7 28815:1 28816:1 28818:1 28836:7 28849:5 28850:1 28867:1 28904:1 28913:8 28914:3 28916:2 28919:1 28921:1 28924:3 28925:3 28941:1 28947:1 28958:1 28959:2 28961:3 28963:3 29003:1
9 11:1 14:1 24:1 34:1 37:2 56:1 60:1 63:1 65:1 79:1 82:1 83:1 89:1 90:1 103:1 109:1 113:1 117:1 125:1 133:1 143:1 150:1 153:3 162:1 170:4 189:8 192:1 214:1 245:1 270:1 282:2 293:1 295:33 303:2 315:1 316:3 318:4 326:1 333:1 348:2 350:1 354:1 363:1 381:1 403:2 424:3 432:1 433:1 437:1 438:1 442:1 444:1 460:1 515:1 523:1 561:1 563:4 564:1 569:2 572:4 590:4 596:2 598:1 600:1 613:2 626:1 634:3 638:1 643:2 650:1 674:1 678:2 685:1 692:1 702:1 716:1 734:1 735:1 748:1 752:1 767:1 770:1 788:1 795:1 804:1 805:1 807:2 808:1 828:1 830:7 832:3 842:3 843:1 855:1 856:15 860:1 867:1 871:1 875:2 877:5 879:7 885:2 889:1 892:1 893:1 899:1 900:1 905:3 916:1 924:2 925:2 941:1 963:1 974:3 989:1 996:2 998:2 1002:2 1011:1 1019:1 1020:2 1027:1 1028:1 1038:1 1045:1 1046:1 1059:1 1061:2 1078:1 1086:1 1087:1 1089:2 1092:2 1104:3 1112:2 1117:1 1123:1 1136:1 1137:1 1143:1 1148:3 1152:1 1160:1 1163:1 1179:1 1207:2 1231:1 1232:1 1241:2 1244:1 1257:1 1262:1 1276:1 1284:1 1287:1 1300:1 1313:1 1330:1 1345:1 1353:1 1355:3 1369:1 1374:2 1376:1 1394:1 1397:2 1400:4 1401:6 1402:1 1417:1 1419:2 1420:1 1422:1 1423:1 1438:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1506:2 1507:1 1508:1 1516:5 1518:1 1543:1 1547:1 1555:1 1557:1 1560:1 1562:3 1564:3 1571:1 1578:1 1596:5 1598:1 1617:1 1619:3 1627:6 1634:2 1659:1 1660:1 1677:1 1678:1 1682:1 1699:1 1709:1 1743:3 1757:1 1760:1 1762:1 1778:4 1789:1 1794:1 1802:1 1811:1 1819:1 1828:1 1830:1 1875:1 1888:1 1892:1 1895:18 1903:1 1907:2 1919:1 1923:1 1929:1 1935:1 1936:1 1952:1 1954:1 1962:8 1963:1 1965:2 1993:1 1998:1 2006:2 2011:3 2051:1 2082:1 2085:1 2089:3 2095:2 2100:1 2101:1 2105:1 2108:1 2132:1 2142:1 2154:1 2156:1 2158:1 2159:5 2160:1 2162:1 2165:1 2172:1 2174:4 2177:1 2178:2 2179:4 2181:1 2187:1 2190:2 2191:1 2207:1 2212:1 2216:2 2219:2 2220:2 2221:8 2223:4 2226:1 2227:2 2228:4 2232:1 2233:1 2234:1 2237:2 2239:1 2245:1 2247:1 2249:1 2251:6 2252:2 2253:7 2264:1 2268:1 2269:1 2279:1 2297:1 2309:2 2315:1 2322:1 2336:1 2339:1 2343:1 2347:1 2358:3 2370:4 2374:1 2376:1 2384:1 2387:1 2392:2 2410:4 2421:6 2433:1 2439:1 2445:1 2461:1 2465:1 2473:1 2485:5 2494:4 2500:1 2522:2 2536:1 2543:2 2552:3 2561:2 2563:1 2570:1 2580:2 2609:2 2631:1 2635:1 2648:1 2651:3 2656:1 2659:1 2667:2 2670:1 2672:1 2675:1 2683:1 2688:1 2691:1 2704:1 2708:2 2712:1 2713:1 2723:1 2730:3 2756:1 2760:1 2761:2 2762:1 2766:7 2770:3 2775:4 2780:1 2782:1 2810:1 2813:1 2816:2 2818:2 2826:1 2836:2 2854:5 2857:1 2867:23 2883:4 2888:1 2900:2 2909:1 2915:1 2931:1 2936:11 2961:5 2965:7 2966:1 2968:1 2969:1 2972:1 2989:1 3015:1 3023:1 3026:1 3030:1 3068:1 3074:4 3075:1 3089:1 3097:1 3105:1 3106:2 3112:1 3166:1 3188:2 3197:1 3205:1 3224:1 3231:1 3232:5 3243:1 3248:1 3255:1 3256:1 3266:1 3271:1 3279:1 3293:1 3295:3 3314:1 3338:1 3352:1 3357:12 3397:1 3407:1 3420:2 3424:2 3459:1 3471:1 3472:1 3475:2 3478:1 3488:1 3489:1 3495:2 3509:1 3517:1 3528:1 3540:2 3548:1 3558:1 3570:2 3574:1 3577:1 3580:2 3582:7 3599:5 3604:2 3605:1 3606:1 3607:2 3608:2 3615:1 3634:2 3638:1 3639:6 3647:1 3648:1 3669:1 3680:1 3684:1 3687:2 3688:3 3692:1 3695:2 3698:2 3712:1 3730:1 3737:1 3740:1 3742:4 3744:1 3746:2 3748:12 3763:1 3779:1 3783:5 3784:1 3788:2 3789:12 3790:3 3792:1 3796:1 3810:1 3813:6 3817:1 3822:1 3835:1 3836:3 3838:1 3848:1 3851:1 3862:1 3866:1 3874:1 3876:1 3883:1 3888:2 3895:1 3902:3 3904:3 3918:2 3919:2 3931:1 3934:1 3939:2 3940:1 3943:1 3948:1 3955:1 3964:4 3970:1 3972:1 3977:2 3982:1 3987:1 3988:2 3989:2 3998:4 3999:3 4005:1 4019:1 4033:1 4040:1 4051:1 4054:2 4069:1 4078:1 4085:2 4086:1 4093:1 4113:1 4125:1 4129:1 4136:1 4137:1 4173:1 4190:4 4193:2 4201:1 4204:1 4208:1 4210:1 4219:1 4254:1 4270:2 4272:2 4282:1 4296:1 4298:1 4314:2 4348:2 4357:1 4362:5 4378:1 4385:1 4414:1 4416:1 4428:2 4434:1 4439:2 4455:1 4491:1 4494:1 4528:2 4535:1 4549:1 4554:1 4560:1 4562:1 4565:1 4583:1 4585:2 4605:1 4613:1 4619:2 4623:1 4626:3 4640:1 4646:3 4657:2 4658:1 4676:1 4678:1 4691:1 4695:8 4724:1 4731:1 4742:1 4746:1 4759:1 4768:1 4773:7 4776:1 4787:1 4788:2 4803:1 4807:1 4810:1 4815:1 4818:1 4851:3 4867:1 4876:22 4878:2 4881:1 4895:2 4903:1 4909:1 4917:1 4925:2 4928:7 4940:2 4963:2 4964:1 4980:1 4981:1 4984:1 4985:7 5003:4 5005:6 5006:1 5008:1 5009:1 5011:1 5013:3 5014:1 5015:1 5017:2 5022:1 5026:1 5028:2 5030:3 5031:1 5033:1 5041:1 5042:1 5045:4 5046:3 5064:1 5090:1 5096:1 5125:2 5131:2 5133:1 5157:2 5176:1 5177:1 5184:2 5186:1 5190:2 5195:2 5203:2 5219:1 5220:1 5237:1 5245:2 5249:3 5255:1 5280:1 5302:1 5306:1 5307:1 5316:1 5325:1 5328:1 5351:2 5358:7 5362:1 5365:1 5369:2 5371:2 5386:1 5394:1 5404:2 5423:1 5429:1 5434:2 5438:1 5453:1 5480:1 5493:1 5501:1 5511:2 5524:2 5534:1 5535:2 5538:2 5540:2 5548:1 5551:1 5556:2 5563:1 5564:1 5582:3 5584:1 5588:1 5589:1 5593:1 5599:1 5607:1 5615:3 5629:4 5639:1 5640:1 5663:3 5680:1 5681:3 5694:1 5701:3 5705:1 5720:4 5721:1 5728:2 5744:1 5749:1 5773:1 5801:1 5802:1 5812:2 5843:3 5850:1 5852:1 5855:1 5877:1 5881:2 5898:1 5920:1 5942:1 5947:4 5949:1 5972:14 5987:4 5992:4 6000:1 6001:1 6006:5 6007:1 6009:2 6017:1 6039:3 6040:1 6053:1 6056:1 6058:1 6078:1 6110:1 6130:2 6137:2 6138:1 6142:1 6150:1 6153:2 6156:1 6176:6 6178:1 6182:1 6192:1 6197:1 6199:1 6220:1 6244:1 6245:2 6247:1 6259:3 6262:1 6263:1 6265:2 6269:1 6270:2 6273:1 6274:2 6275:3 6276:5 6279:2 6280:1 6282:4 6283:9 6284:5 6286:1 6316:1 6334:2 6379:3 6381:1 6383:1 6420:2 6435:2 6482:2 6493:1 6502:1 6507:1 6513:1 6531:1 6536:2 6537:1 6542:1 6556:1 6558:1 6565:2 6580:1 6581:1 6585:1 6589:1 6598:1 6609:1 6613:1 6652:1 6653:2 6654:2 6668:1 6671:1 6677:1 6679:2 6680:1 6689:1 6699:9 6715:2 6722:4 6728:1 6741:1 6744:1 6751:1 6757:1 6777:1 6795:1 6810:2 6811:1 6823:2 6851:1 6854:2 6855:2 6860:3 6866:1 6869:1 6871:1 6885:3 6886:2 6903:1 6906:1 6914:1 6918:1 6919:2 6922:2 6927:1 6932:1 6938:1 6939:1 6948:2 6987:1 6999:1 7009:1 7049:1 7050:10 7052:1 7067:1 7073:2 7074:2 7091:1 7097:2 7099:2 7102:1 7124:1 7125:1 7155:2 7169:1 7180:1 7198:3 7218:2 7234:1 7248:2 7263:3 7274:1 7278:1 7287:2 7288:1 7290:1 7297:1 7303:1 7311:1 7322:1 7334:5 7346:3 7347:1 7352:1 7367:2 7371:1 7382:2 7383:1 7386:2 7401:1 7407:2 7427:1 7463:2 7485:1 7499:2 7510:1 7516:1 7518:1 7554:2 7555:13 7556:5 7570:2 7580:2 7582:4 7584:1 7603:5 7604:1 7620:50 7622:1 7643:6 7644:11 7645:1 7648:2 7657:1 7665:1 7671:2 7685:1 7696:1 7700:1 7710:1 7719:1 7720:2 7725:2 7734:1 7751:1 7755:1 7758:2 7773:2 7786:1 7826:2 7851:3 7862:1 7871:1 7874:1 7878:2 7892:1 7897:6 7928:1 7931:1 7943:1 7962:1 7967:1 8004:1 8007:1 8032:1 8035:1 8037:1 8043:2 8044:3 8045:1 8046:1 8062:1 8063:2 8082:1 8087:1 8093:1 8107:1 8110:1 8116:2 8122:1 8124:2 8130:2 8136:1 8142:3 8145:1 8154:1 8156:8 8180:2 8184:1 8186:1 8194:1 8236:1 8254:1 8270:1 8299:1 8301:2 8311:2 8319:2 8334:1 8336:1 8358:1 8367:2 8369:2 8376:3 8379:1 8383:3 8387:2 8394:1 8395:3 8405:1 8412:1 8422:1 8430:5 8433:1 8438:1 8441:1 8445:1 8449:1 8460:1 8468:1 8480:1 8490:1 8497:1 8500:3 8501:5 8503:4 8504:1 8505:2 8508:3 8510:8 8512:2 8513:3 8514:1 8516:1 8525:1 8526:2 8543:4 8549:2 8550:3 8567:3 8571:1 8572:2 8575:2 8578:2 8582:2 8586:5 8604:1 8639:1 8640:2 8655:1 8657:1 8679:1 8688:1 8710:1 8719:1 8725:1 8728:1 8739:1 8751:1 8756:3 8762:1 8772:2 8779:3 8805:2 8808:1 8810:1 8811:4 8815:2 8827:3 8833:1 8840:1 8846:1 8857:1 8914:1 8921:1 8929:1 8936:2 8950:5 8954:2 8969:1 8971:1 8992:3 9001:1 9011:1 9019:1 9022:2 9023:1 9035:1 9040:1 9050:1 9057:1 9060:1 9065:1 9068:1 9069:1 9077:3 9107:1 9115:4 9121:1 9128:1 9130:1 9134:1 9139:2 9142:2 9145:1 9151:1 9161:2 9162:1 9196:1 9200:2 9207:7 9209:1 9210:1 9216:2 9219:1 9226:33 9230:2 9231:2 9246:2 9247:1 9261:1 9275:1 9286:1 9298:1 9305:1 9314:1 9319:1 9329:1 9338:2 9345:1 9349:1 9360:2 9363:6 9364:1 9365:2 9390:1 9392:1 9421:1 9427:1 9433:3 9448:1 9469:1 9490:1 9497:1 9528:1 9529:1 9537:1 9539:1 9544:1 9555:2 9558:1 9567:1 9568:1 9569:5 9574:1 9582:1 9586:4 9594:2 9601:1 9608:2 9634:2 9652:1 9663:7 9676:1 9677:4 9687:2 9689:1 9697:1 9700:1 9702:1 9704:1 9712:1 9713:1 9746:3 9772:1 9780:1 9789:1 9790:1 9815:1 9823:2 9829:1 9847:7 9850:1 9856:1 9862:1 9865:1 9871:4 9877:2 9878:1 9880:1 9883:2 9885:1 9887:1 9890:1 9898:4 9911:1 9913:1 9917:1 9919:1 9924:1 9928:3 9929:1 9932:2 9933:1 9938:1 9939:1 9948:1 9954:1 9956:1 9968:4 9986:1 9987:1 9996:1 10019:1 10037:1 10038:1 10043:1 10057:1 10065:1 10073:1 10094:1 10122:1 10124:1 10125:1 10126:1 10135:2 10157:1 10178:1 10188:1 10191:1 10200:1 10234:1 10241:2 10266:3 10280:1 10286:1 10302:1 10305:1 10328:2 10329:1 10347:3 10351:2 10359:2 10370:1 10372:1 10402:1 10405:1 10414:1 10436:1 10448:1 10478:2 10484:1 10486:1 10488:1 10501:1 10504:3 10507:2 10513:5 10521:1 10523:1 10524:1 10526:1 10537:1 10539:2 10541:1 10555:3 10557:3 10558:1 10564:1 10573:3 10582:3 10583:3 10590:2 10592:2 10593:1 10621:1 10641:1 10657:7 10665:5 10677:2 10683:4 10686:12 10737:1 10740:1 10747:1 10748:2 10783:2 10787:1 10790:1 10805:1 10824:1 10839:1 10846:1 10857:1 10883:1 10901:1 10903:3 10905:2 10909:2 10910:2 10921:2 10931:2 10937:1 10943:1 10947:1 10953:1 10962:1 10969:1 10989:6 10992:1 11010:6 11014:1 11016:1 11018:1 11021:1 11040:1 11062:1 11063:2 11064:2 11066:1 11071:1 11080:1 11083:1 11085:1 11094:1 11100:1 11106:1 11107:1 11118:1 11131:1 11138:1 11145:1 11147:1 11152:1 11173:1 11175:1 11177:1 11188:1 11197:1 11203:5 11208:1 11216:1 11230:2 11232:1 11234:1 11248:1 11260:1 11268:2 11274:1 11278:2 11284:1 11285:1 11287:1 11300:2 11301:1 11302:2 11308:1 11315:3 11317:1 11333:6 11341:1 11367:1 11370:10 11371:1 11400:1 11401:1 11407:1 11430:1 11442:1 11444:2 11466:1 11468:1 11469:1 11470:1 11476:1 11477:1 11479:1 11481:2 11496:1 11501:1 11506:1 11509:2 11514:1 11520:2 11526:3 11530:7 11547:4 11549:1 11550:6 11580:1 11587:1 11600:1 11603:3 11609:1 11611:2 11614:1 11615:2 11619:3 11622:1 11631:2 11632:3 11633:1 11636:2 11641:3 11645:1 11649:1 11664:7 11671:1 11684:8 11690:1 11693:1 11710:1 11711:1 11716:1 11727:1 11734:1 11755:1 11772:2 11789:1 11824:2 11826:1 11852:1 11865:3 11871:1 11877:1 11882:1 11891:1 11908:1 11916:1 11924:1 11931:3 11936:3 11952:1 11973:3 11977:1 11990:1 11997:1 12004:1 12005:1 12010:1 12025:1 12076:1 12107:1 12109:1 12110:2 12111:3 12115:2 12125:2 12132:1 12142:1 12154:1 12156:1 12165:4 12166:5 12172:2 12176:1 12178:1 12184:2 12239:1 12243:1 12250:1 12263:1 12272:1 12276:2 12281:6 12297:1 12302:1 12323:2 12337:1 12338:1 12345:1 12346:1 12349:2 12361:3 12362:1 12376:2 12380:2 12398:1 12405:1 12420:1 12423:2 12431:2 12457:1 12458:1 12464:1 12472:1 12476:1 12477:6 12480:1 12491:1 12493:1 12495:1 12508:1 12512:1 12515:1 12526:2 12534:1 12586:1 12608:8 12621:1 12633:1 12635:1 12636:1 12644:1 12648:16 12654:1 12658:1 12668:2 12671:5 12676:1 12681:1 12701:1 12702:1 12708:3 12733:2 12764:1 12769:4 12772:2 12787:1 12789:1 12790:1 12791:1 12796:2 12797:1 12813:2 12827:4 12831:1 12835:1 12837:1 12860:1 12861:1 12885:1 12888:1 12914:1 12949:7 12954:1 12984:1 12999:1 13045:8 13049:1 13066:2 13068:1 13072:1 13076:6 13080:4 13086:1 13087:1 13093:1 13094:6 13120:1 13128:1 13133:1 13142:1 13143:1 13144:1 13166:5 13194:1 13206:1 13211:1 13213:1 13224:6 13231:1 13232:4 13233:1 13250:1 13251:1 13252:2 13257:1 13263:1 13275:2 13278:1 13282:1 13283:1 13287:1 13301:2 13302:4 13306:1 13310:1 13320:3 13331:1 13341:2 13346:1 13364:2 13372:7 13376:1 13396:1 13401:1 13416:4 13420:1 13421:3 13440:1 13454:1 13468:2 13490:1 13503:1 13506:1 13520:1 13524:1 13533:1 13557:1 13561:2 13570:1 13571:1 13599:4 13600:1 13601:2 13606:4 13607:2 13610:2 13620:1 13628:1 13633:1 13654:3 13674:1 13680:3 13691:2 13694:1 13697:1 13698:1 13723:1 13733:6 13745:1 13764:2 13779:3 13782:1 13784:1 13788:2 13799:1 13813:1 13827:7 13832:3 13833:1 13838:1 13847:1 13886:1 13895:1 13904:3 13931:10 13942:1 13963:1 13974:1 13980:2 13986:1 14006:1 14018:1 14024:1 14029:1 14054:1 14076:6 14089:1 14107:3 14119:1 14126:1 14134:1 14140:1 14152:1 14161:1 14179:4 14180:1 14181:1 14196:1 14212:1 14223:1 14235:1 14245:1 14255:1 14266:2 14274:2 14284:2 14297:1 14299:3 14312:1 14313:1 14317:3 14318:9 14324:1 14325:6 14335:3 14339:1 14340:2 14347:1 14358:1 14361:1 14376:1 14385:1 14433:1 14434:1 14449:5 14476:1 14482:2 14485:1 14489:2 14492:1 14493:1 14498:4 14514:1 14523:1 14532:1 14533:3 14551:1 14554:1 14573:1 14591:2 14600:2 14614:2 14616:3 14623:1 14624:1 14636:2 14637:2 14647:4 14650:1 14664:3 14674:1 14683:2 14700:1 14701:1 14761:1 14775:1 14780:1 14785:1 14798:1 14803:2 14820:3 14821:1 14823:1 14824:1 14836:1 14837:1 14881:1 14883:1 14891:6 14893:1 14910:1 14912:1 14916:2 14935:1 14936:6 14938:3 14961:2 14970:1 14984:2 14986:1 14999:1 15000:1 15020:8 15022:1 15024:1 15037:1 15055:1 15085:1 15109:1 15117:1 15123:4 15125:1 15129:1 15130:1 15134:1 15145:1 15146:2 15158:1 15160:1 15173:1 15177:2 15178:1 15180:1 15207:1 15217:1 15233:1 15238:1 15241:1 15245:2 15259:2 15275:1 15282:1 15301:2 15309:1 15322:1 15332:11 15345:2 15380:1 15385:2 15395:1 15398:1 15403:1 15404:4 15414:5 15420:1 15424:1 15431:1 15435:1 15436:1 15440:1 15453:2 15455:1 15459:2 15471:1 15482:2 15496:1 15509:1 15527:1 15539:1 15556:1 15563:3 15568:1 15571:1 15578:8 15581:3 15590:1 15591:3 15595:1 15598:1 15607:2 15614:4 15622:2 15624:1 15625:6 15626:2 15631:1 15637:1 15642:1 15644:1 15678:1 15679:1 15687:1 15706:1 15711:1 15717:2 15725:1 15742:1 15745:8 15750:1 15757:1 15763:2 15768:1 15777:1 15785:3 15814:2 15831:6 15832:3 15835:1 15837:1 15839:1 15871:1 15877:1 15879:3 15893:1 15896:1 15906:1 15909:4 15911:2 15913:1 15923:1 15957:1 15967:1 15973:4 16014:1 16026:1 16029:17 16030:1 16048:4 16051:2 16055:1 16056:1 16067:1 16084:1 16095:2 16103:1 16119:3 16122:1 16127:1 16137:2 16146:1 16147:1 16149:1 16150:1 16164:1 16170:2 16172:1 16177:2 16181:1 16190:2 16194:1 16196:1 16237:1 16242:2 16285:4 16288:1 16289:1 16290:2 16310:1 16338:1 16353:1 16363:1 16383:1 16398:1 16400:1 16403:2 16434:2 16475:1 16482:1 16488:1 16489:1 16505:1 16511:1 16527:1 16528:1 16543:1 16546:1 16555:2 16575:1 16588:1 16589:1 16597:1 16604:1 16605:1 16614:1 16639:1 16646:1 16662:1 16666:2 16672:1 16675:2 16685:2 16702:1 16708:1 16710:1 16714:3 16716:2 16718:1 16738:1 16747:1 16758:1 16761:1 16776:1 16789:2 16801:1 16802:1 16828:1 16830:1 16840:4 16843:1 16844:5 16851:1 16867:1 16874:1 16883:1 16899:1 16905:1 16908:1 16915:8 16929:1 16930:1 16932:2 16939:1 16942:1 16947:2 16966:4 16974:1 16977:1 16990:1 16991:1 16995:2 17013:2 17015:1 17036:1 17042:1 17046:2 17050:1 17053:2 17059:6 17067:1 17087:1 17091:6 17092:1 17106:1 17110:1 17136:2 17138:2 17155:4 17156:2 17167:1 17172:1 17179:1 17181:1 17186:2 17187:2 17198:3 17199:7 17200:1 17207:2 17210:1 17244:1 17251:1 17265:1 17270:2 17277:2 17327:1 17343:1 17346:1 17360:1 17363:3 17369:2 17374:2 17397:1 17401:1 17422:1 17442:1 17445:1 17447:1 17448:3 17454:2 17455:1 17456:1 17463:4 17475:3 17476:2 17477:1 17509:1 17511:2 17522:5 17523:4 17538:1 17558:2 17560:2 17575:1 17585:1 17587:1 17592:7 17597:1 17604:1 17631:1 17636:1 17644:2 17647:2 17648:1 17652:1 17655:1 17662:1 17664:2 17665:5 17667:1 17669:1 17670:1 17683:2 17687:1 17691:1 17692:1 17698:1 17707:1 17721:1 17722:3 17747:1 17753:2 17764:1 17766:1 17767:8 17772:4 17781:29 17783:1 17785:1 17787:1 17790:2 17794:1 17803:1 17812:4 17819:1 17822:1 17831:1 17838:1 17845:1 17852:1 17855:1 17860:2 17871:1 17872:3 17873:1 17875:1 17882:1 17886:1 17896:4 17907:1 17922:1 17931:5 17962:1 17967:1 17977:2 17979:1 17989:1 17994:1 17998:2 18007:5 18009:1 18011:1 18019:1 18032:2 18045:1 18056:1 18058:1 18067:1 18080:1 18084:1 18114:1 18120:1 18133:1 18150:2 18152:2 18167:1 18169:1 18170:1 18178:1 18184:1 18212:1 18219:3 18220:1 18249:2 18315:4 18323:1 18331:1 18340:1 18348:2 18357:1 18380:2 18381:1 18382:1 18399:2 18410:1 18417:5 18424:1 18444:1 18449:1 18461:1 18465:1 18471:3 18476:2 18478:2 18481:1 18495:1 18498:1 18499:1 18504:5 18509:1 18512:1 18516:1 18519:2175 18524:1 18534:1 18538:1 18572:4 18573:1 18582:3 18607:1 18608:1 18619:1 18643:2 18648:2 18657:1 18668:2 18684:2 18690:1 18691:1 18702:1 18708:3 18715:6 18720:1 18725:5 18727:3 18728:4 18748:2 18763:1 18802:6 18808:2 18810:2 18814:1 18816:1 18840:1 18842:33 18850:1 18861:1 18863:7 18904:1 18907:1 18915:1 18919:1 18920:1 18930:2 18938:1 18947:1 18968:1 18969:1 18971:1 18982:2 18991:3 19007:1 19008:1 19017:1 19033:1 19055:2 19061:1 19079:1 19089:1 19091:1 19113:1 19121:1 19135:2 19140:2 19142:3 19168:2 19172:1 19174:2 19176:3 19180:1 19187:1 19190:1 19192:2 19197:3 19202:1 19210:1 19218:1 19228:5 19235:1 19239:1 19256:1 19257:2 19271:2 19273:1 19291:1 19293:3 19298:10 19314:1 19315:1 19335:7 19336:1 19350:2 19353:1 19359:1 19370:1 19412:1 19414:1 19420:3 19442:2 19475:1 19482:1 19494:1 19497:1 19507:4 19508:1 19515:3 19516:2 19531:1 19534:1 19549:1 19550:3 19551:1 19557:1 19563:3 19566:1 19573:1 19592:2 19600:1 19605:1 19628:1 19634:2 19661:3 19674:1 19680:1 19708:2 19719:1 19720:1 19724:1 19735:2 19742:1 19745:1 19751:1 19752:1 19754:1 19767:2 19771:4 19775:5 19777:1 19778:1 19784:4 19794:1 19807:1 19816:1 19818:1 19829:1 19833:1 19839:2 19859:1 19862:1 19876:2 19881:1 19904:2 19909:5 19918:1 19932:1 19936:2 19948:1 19949:4 19953:1 19964:1 19966:1 19978:3 19979:1 19992:1 19996:1 20001:1 20003:1 20004:2 20007:1 20017:1 20020:1 20031:1 20032:1 20036:1 20037:1 20052:1 20061:4 20068:1 20074:1 20079:1 20084:2 20086:1 20094:1 20117:2 20118:2 20137:1 20159:5 20170:1 20187:1 20211:6 20212:3 20218:2 20226:2 20231:1 20237:1 20238:1 20272:1 20281:1 20283:3 20293:2 20299:1 20302:1 20313:1 20345:1 20400:1 20401:1 20404:3 20406:4 20408:1 20420:1 20443:1 20453:1 20454:1 20455:7 20465:2 20466:1 20467:1 20468:4 20474:2 20495:1 20525:1 20530:1 20531:2 20532:1 20545:1 20547:1 20567:4 20577:1 20594:1 20599:1 20600:1 20604:1 20626:1 20643:1 20644:1 20652:1 20656:1 20658:3 20671:1 20677:4 20679:1 20682:1 20683:1 20685:1 20686:1 20692:1 20701:1 20705:3 20710:1 20715:1 20716:1 20721:1 20722:2 20730:1 20738:1 20747:6 20770:1 20780:2 20781:1 20782:3 20783:1 20797:1 20798:1 20823:3 20833:1 20846:1 20857:1 20862:1 20900:2 20907:2 20918:1 20945:1 20948:2 20957:2 20979:6 20985:1 20986:1 20988:1 21010:1 21016:1 21019:2 21029:1 21049:1 21062:2 21075:1 21079:1 21080:1 21088:1 21091:2 21100:1 21107:1 21122:1 21137:2 21158:1 21169:2 21174:1 21193:1 21196:1 21198:2 21201:1 21257:1 21265:1 21276:1 21288:1 21289:1 21313:1 21320:1 21345:1 21357:1 21358:2 21359:1 21371:2 21372:1 21374:2 21380:1 21386:3 21387:3 21389:1 21392:1 21397:1 21405:1 21406:1 21407:1 21409:1 21410:1 21415:2 21434:1 21440:1 21442:2 21444:1 21448:1 21459:1 21472:4 21486:1 21488:2 21490:1 21493:1 21498:2 21499:2 21503:1 21504:1 21509:2 21518:2 21519:1 21520:1 21523:2 21528:1 21538:1 21544:1 21548:9 21551:1 21567:1 21568:2 21569:3 21580:1 21616:1 21634:2 21647:2 21648:1 21654:2 21661:1 21663:1 21670:1 21675:8 21684:1 21691:1 21695:3 21712:1 21714:2 21715:1 21724:1 21750:1 21770:1 21771:1 21778:1 21804:1 21809:1 21812:5 21822:1 21824:1 21826:1 21827:2 21829:2 21830:1 21838:1 21846:2 21847:1 21848:3 21867:2 21870:1 21877:1 21885:1 21901:2 21916:2 21931:1 21937:2 21941:1 21952:1 21967:1 21971:1 21975:1 21994:3 21999:1 22009:4 22012:2 22016:3 22017:1 22020:1 22021:1 22025:1 22052:1 22059:2 22061:1 22065:2 22077:2 22080:1 22096:3 22135:1 22144:1 22147:1 22150:1 22173:4 22174:5 22178:3 22179:1 22180:2 22189:2 22190:1 22205:1 22212:1 22222:1 22223:4 22230:1 22236:1 22239:1 22243:2 22248:1 22252:3 22257:2 22258:4 22265:1 22277:2 22290:1 22291:1 22293:1 22294:3 22295:1 22302:1 22315:2 22318:1 22329:2 22331:1 22332:1 22336:1 22337:1 22342:1 22345:3 22357:1 22362:2 22368:1 22390:1 22391:4 22392:1 22401:1 22406:2 22412:1 22414:29 22419:1 22420:2 22422:4 22425:1 22426:3 22427:3 22430:1 22432:1 22434:1 22453:3 22455:1 22461:1 22464:3 22467:1 22473:2 22493:2 22495:2 22496:1 22507:1 22529:2 22538:1 22542:1 22579:3 22585:1 22593:6 22599:1 22616:2 22621:2 22634:1 22646:1 22672:1 22674:2 22676:2 22679:1 22680:1 22687:1 22691:3 22692:1 22695:1 22699:2 22705:1 22706:1 22721:3 22726:2 22736:1 22737:1 22758:1 22777:2 22782:1 22784:1 22788:1 22808:1 22837:1 22848:1 22866:1 22867:1 22878:1 22896:2 22902:1 22919:1 22921:1 22931:2 22935:1 22947:2 22948:1 22955:1 22962:2 22964:1 22971:2 22980:3 22981:1 22982:1 22998:3 23001:3 23021:2 23024:1 23027:1 23033:2 23038:1 23057:1 23072:1 23099:1 23130:1 23143:1 23148:1 23165:1 23175:1 23184:3 23188:1 23195:1 23196:1 23207:3 23227:2 23234:2 23235:1 23239:1 23241:1 23248:1 23254:1 23275:2 23283:3 23297:1 23299:3 23302:1 23310:1 23313:1 23326:1 23340:1 23343:1 23349:1 23352:1 23361:12 23368:1 23394:2 23403:1 23408:1 23437:1 23439:1 23441:1 23452:1 23494:1 23504:1 23519:1 23520:1 23527:1 23532:2 23545:1 23559:2 23568:1 23581:1 23591:1 23592:1 23600:3 23604:1 23616:6 23618:2 23620:1 23635:1 23647:1 23651:1 23659:2 23667:1 23716:1 23720:1 23722:1 23732:3 23736:1 23744:1 23749:2 23758:1 23774:1 23785:1 23798:1 23806:1 23814:1 23831:1 23832:1 23875:3 23884:5 23885:1 23896:4 23899:1 23910:1 23912:1 23918:2 23919:1 23920:1 23928:1 23939:2 23941:1 23966:2 23973:1 23979:1 23992:1 23994:3 23995:2 23996:1 24001:1 24025:2 24030:1 24044:1 24047:2 24052:1 24057:2 24058:3 24064:1 24068:1 24073:1 24093:1 24098:1 24101:1 24114:1 24124:1 24146:1 24148:1 24150:1 24156:1 24159:2 24160:1 24162:7 24164:3 24166:4 24167:2 24171:1 24172:2 24174:2 24175:3 24182:2 24183:4 24187:2 24193:2 24206:4 24213:2 24233:1 24236:2 24237:1 24242:1 24247:2 24263:4 24267:3 24291:2 24295:1 24297:1 24307:3 24321:1 24324:1 24342:1 24345:1 24347:1 24348:2 24362:1 24390:1 24401:1 24402:1 24419:3 24440:4 24448:1 24450:4 24453:1 24464:2 24466:1 24496:1 24508:1 24512:2 24513:1 24524:1 24547:2 24548:1 24558:1 24571:1 24582:1 24584:1 24609:1 24630:3 24645:1 24654:1 24658:1 24665:2 24707:4 24746:1 24757:2 24763:1 24772:1 24780:1 24783:4 24791:1 24793:1 24797:1 24810:1 24816:1 24822:4 24878:1 24899:1 24900:2 24912:3 24915:5 24946:10 24955:1 24969:9 24990:1 24997:1 25005:1 25015:2 25019:1 25028:1 25038:2 25041:1 25042:1 25045:1 25046:1 25047:1 25071:1 25089:1 25093:2 25099:2 25104:1 25109:1 25111:2 25114:6 25122:1 25137:2 25139:2 25141:8 25144:4 25145:2 25155:1 25162:1 25167:2 25168:1 25170:1 25177:1 25182:1 25214:2 25219:1 25225:4 25230:1 25240:1 25247:3 25258:2 25259:2 25319:1 25320:1 25335:1 25342:1 25345:1 25346:1 25356:1 25384:2 25386:1 25401:1 25410:1 25412:3 25413:1 25416:2 25425:1 25436:5 25465:1 25468:1 25473:1 25474:1 25488:1 25492:1 25515:1 25557:1 25561:1 25569:1 25576:1 25600:1 25618:1 25657:1 25663:1 25665:1 25676:1 25679:3 25680:2 25691:1 25700:1 25701:1 25708:2 25718:2 25726:1 25729:1 25742:1 25757:1 25759:2 25781:1 25796:4 25804:1 25812:1 25816:2 25826:1 25829:1 25835:1 25838:5 25850:1 25859:1 25864:1 25865:4 25880:1 25901:1 25903:1 25906:2 25916:2 25929:1 25930:1 25936:2 25953:2 25971:2 25988:1 25992:6 25994:1 26021:3 26024:1 26033:1 26038:1 26040:1 26042:1 26059:2 26087:1 26088:1 26093:4 26112:2 26113:1 26114:1 26118:1 26122:1 26123:1 26127:3 26128:1 26133:1 26162:1 26166:3 26170:1 26175:1 26182:1 26185:1 26190:1 26213:1 26221:2 26225:1 26247:2 26249:1 26261:2 26262:1 26267:1 26285:1 26290:2 26300:1 26309:1 26316:1 26332:2 26338:1 26339:1 26341:1 26352:1 26368:3 26373:5 26392:2 26453:1 26476:1 26478:1 26479:1 26482:1 26499:1 26504:1 26524:1 26526:1 26542:1 26547:1 26548:1 26551:1 26556:1 26559:1 26566:1 26569:1 26574:2 26582:1 26588:2 26599:1 26619:1 26621:1 26622:1 26624:1 26641:1 26654:2 26657:2 26662:1 26667:3 26681:4 26700:4 26709:5 26721:1 26736:1 26737:1 26743:1 26759:3 26772:1 26778:1 26787:1 26788:10 26807:1 26817:1 26838:1 26840:2 26844:1 26845:1 26847:1 26848:2 26856:12 26866:1 26894:3 26920:1 26933:2 26934:1 26938:1 26954:2 26960:5 26965:2 26967:2 26981:1 26985:2 26988:1 26994:3 27003:1 27006:1 27016:1 27022:1 27033:1 27036:1 27057:1 27058:3 27061:1 27069:2 27070:1 27079:1 27090:3 27103:1 27108:1 27113:1 27135:1 27136:1 27141:2 27143:1 27145:1 27147:1 27149:1 27160:2 27169:1 27187:1 27188:1 27229:1 27247:1 27275:1 27279:1 27298:1 27330:1 27332:1 27342:2 27365:5 27368:1 27376:1 27385:1 27392:1 27408:1 27412:1 27419:1 27465:1 27472:1 27474:1 27481:2 27500:1 27517:1 27536:3 27549:1 27560:1 27563:6 27575:1 27595:1 27597:4 27620:1 27627:2 27636:1 27647:2 27658:1 27661:1 27662:1 27673:1 27675:1 27678:1 27687:26 27689:4 27692:5 27694:1 27695:3 27702:1 27724:7 27739:1 27777:3 27789:2 27804:1 27808:2 27820:1 27821:3 27832:4 27838:2 27859:12 27863:2 27867:3 27869:1 27874:1 27879:2 27885:1 27887:1 27889:1 27893:2 27900:2 27906:1 27907:1 27909:1 27917:2 27923:2 27930:1 27934:2 27935:2 27943:1 27948:2 27951:1 27960:1 27964:1 27968:1 27969:2 27975:1 28003:1 28011:1 28028:2 28030:1 28031:1 28050:1 28051:1 28054:1 28058:1 28068:5 28075:1 28082:1 28100:1 28102:1 28126:1 28127:2 28128:2 28131:1 28169:1 28174:1 28177:1 28178:1 28180:1 28183:2 28187:5 28191:1 28193:1 28202:1 28203:1 28204:1 28208:1 28214:2 28215:1 28217:1 28218:1 28223:1 28264:1 28292:1 28315:1 28319:1 28320:1 28341:1 28350:1 28356:1 28359:1 28362:1 28363:2 28373:1 28375:3 28378:1 28380:1 28387:1 28397:7 28404:1 28405:1 28409:1 28411:5 28413:1 28419:1 28461:1 28469:2 28470:1 28506:3 28514:1 28520:1 28536:4 28541:1 28543:2 28551:1 28553:1 28560:6 28569:1 28594:1 28596:1 28627:1 28646:1 28648:1 28665:2 28685:2 28703:1 28709:1 28724:1 28728:1 28734:1 28748:1 28754:1 28761:2 28792:1 28801:7 28815:1 28816:1 28818:1 28831:1 28836:7 28849:5 28850:1 28867:1 28904:1 28913:8 28914:3 28916:2 28919:1 28921:1 28924:3 28925:3 28941:1 28947:1 28958:1 28959:2 28961:3 28963:3 29003:1
9 11:1 14:2 24:1 34:1 37:3 45:1 56:1 60:1 63:1 65:1 74:1 79:1 82:1 83:1 89:1 90:1 103:1 109:1 113:1 117:1 125:1 133:1 143:1 150:1 153:3 162:1 170:4 189:8 192:1 214:1 245:1 270:1 275:1 282:2 293:1 295:33 303:2 315:1 316:3 318:5 326:1 333:1 348:2 350:1 354:1 363:1 381:1 403:2 424:3 432:1 433:1 437:1 438:1 442:1 444:1 460:1 515:1 523:1 561:1 563:4 564:1 569:2 572:4 590:4 596:2 598:1 600:1 613:2 626:1 634:3 638:1 643:2 650:1 674:1 678:2 685:1 692:1 702:1 716:1 728:1 734:2 735:1 748:1 752:1 767:2 770:1 788:1 795:1 804:1 805:1 807:2 808:1 828:1 830:8 832:3 842:3 843:1 855:1 856:15 860:1 867:1 871:1 875:2 877:5 879:7 885:2 889:1 892:1 893:1 899:1 900:1 905:3 916:1 924:2 925:2 941:1 963:1 974:3 989:1 996:3 998:2 1002:2 1011:1 1019:1 1020:2 1027:1 1028:1 1038:1 1045:1 1046:1 1059:1 1061:2 1078:1 1086:1 1087:1 1089:2 1092:2 1104:3 1112:2 1117:1 1123:1 1136:1 1137:1 1143:1 1148:3 1152:1 1160:1 1163:1 1179:1 1207:2 1231:1 1232:1 1241:2 1244:1 1257:1 1262:1 1276:1 1284:1 1287:1 1300:1 1313:1 1330:1 1345:1 1353:1 1355:3 1369:1 1374:2 1376:1 1394:1 1397:2 1400:6 1401:7 1402:1 1417:1 1418:1 1419:2 1420:1 1422:1 1423:1 1438:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1506:2 1507:1 1508:1 1516:7 1518:1 1543:1 1547:1 1555:1 1557:1 1560:1 1562:3 1564:3 1571:1 1578:1 1596:5 1598:1 1617:1 1619:3 1627:6 1634:2 1659:1 1660:1 1677:1 1678:1 1682:1 1699:1 1709:1 1743:3 1757:1 1760:1 1762:1 1778:4 1789:1 1794:1 1802:1 1811:1 1819:1 1826:1 1828:1 1830:1 1875:1 1888:1 1892:2 1895:18 1903:1 1907:2 1919:1 1923:1 1929:1 1935:1 1936:1 1952:1 1954:1 1962:8 1963:1 1965:2 1993:1 1998:1 2006:2 2011:3 2051:1 2082:1 2085:1 2089:3 2095:2 2100:1 2101:1 2105:1 2108:1 2132:1 2142:1 2154:1 2156:1 2158:1 2159:5 2160:1 2162:2 2165:1 2172:1 2174:4 2177:2 2178:2 2179:4 2181:1 2187:1 2190:2 2191:1 2207:1 2212:1 2216:2 2219:2 2220:2 2221:8 2223:4 2226:1 2227:2 2228:4 2232:1 2233:1 2234:1 2237:2 2239:1 2245:1 2247:2 2249:1 2251:6 2252:2 2253:7 2264:1 2268:1 2269:1 2279:1 2297:1 2309:2 2315:1 2322:1 2336:1 2339:1 2343:1 2347:1 2358:3 2370:4 2374:1 2376:1 2384:2 2387:1 2392:2 2410:4 2421:6 2433:1 2439:1 2445:1 2461:1 2465:1 2473:1 2485:5 2494:4 2500:1 2520:1 2522:2 2536:1 2543:3 2552:3 2561:2 2563:1 2570:1 2580:2 2609:2 2631:1 2635:1 2641:1 2648:1 2651:3 2656:1 2659:1 2667:2 2670:1 2672:1 2675:1 2683:1 2688:1 2691:1 2704:1 2708:2 2712:1 2713:1 2723:1 2730:3 2756:1 2760:1 2761:2 2762:1 2766:7 2770:3 2775:4 2780:1 2782:1 2810:1 2813:1 2816:2 2818:2 2826:2 2836:2 2854:5 2857:1 2867:23 2883:4 2888:1 2900:2 2909:1 2915:1 2931:1 2936:11 2954:1 2961:5 2965:7 2966:1 2968:1 2969:1 2972:1 2989:1 3015:1 3023:1 3026:1 3030:1 3068:1 3074:4 3075:1 3089:1 3097:1 3105:1 3106:2 3112:1 3166:1 3188:2 3197:1 3205:1 3224:1 3231:1 3232:5 3237:1 3243:1 3248:1 3255:1 3256:1 3266:1 3271:1 3272:1 3279:1 3293:1 3295:4 3314:1 3338:1 3352:2 3357:12 3397:1 3407:1 3420:2 3424:2 3459:1 3471:1 3472:2 3475:2 3478:1 3488:1 3489:1 3495:2 3509:1 3517:1 3528:1 3540:2 3548:1 3558:1 3570:2 3574:1 3577:1 3580:2 3582:7 3599:5 3604:2 3605:1 3606:1 3607:2 3608:2 3615:1 3634:2 3638:1 3639:6 3647:1 3648:1 3669:1 3680:1 3684:1 3687:2 3688:3 3692:1 3695:2 3698:2 3712:1 3730:1 3737:1 3740:1 3742:4 3744:1 3746:2 3748:12 3763:1 3779:1 3783:5 3784:1 3788:2 3789:12 3790:3 3792:1 3796:1 3810:1 3813:7 3817:1 3822:1 3835:1 3836:3 3838:1 3848:1 3851:1 3862:1 3866:1 3874:1 3876:1 3883:1 3888:2 3895:1 3902:3 3904:3 3918:2 3919:2 3931:1 3934:1 3939:2 3940:1 3943:1 3948:1 3955:1 3964:4 3970:1 3972:1 3977:2 3982:1 3987:1 3988:2 3989:2 3998:4 3999:3 4005:1 4019:1 4033:1 4040:1 4051:1 4054:2 4069:1 4078:2 4085:2 4086:1 4093:1 4113:1 4125:1 4129:1 4136:1 4137:1 4173:1 4190:6 4193:2 4201:1 4204:1 4208:1 4210:1 4219:1 4234:1 4254:1 4270:2 4272:2 4282:1 4296:1 4298:1 4314:2 4348:2 4352:1 4357:1 4362:5 4378:1 4385:1 4414:1 4416:1 4428:2 4434:1 4439:2 4455:1 4491:1 4494:1 4528:2 4535:1 4549:1 4554:1 4560:1 4562:1 4565:1 4583:1 4585:2 4605:1 4613:1 4619:2 4623:1 4626:3 4640:1 4646:3 4657:2 4658:1 4676:1 4678:1 4691:1 4695:8 4724:1 4731:1 4742:1 4746:1 4759:1 4768:1 4773:7 4776:1 4787:1 4788:2 4803:1 4807:1 4810:1 4815:1 4818:1 4851:3 4867:1 4876:23 4878:2 4881:1 4895:2 4903:1 4909:2 4917:1 4925:2 4928:7 4940:2 4963:2 4964:1 4980:1 4981:1 4984:1 4985:7 5003:5 5005:6 5006:1 5008:1 5009:1 5011:1 5013:3 5014:1 5015:1 5017:2 5020:1 5022:1 5026:1 5028:2 5030:3 5031:1 5033:1 5041:1 5042:1 5045:4 5046:3 5064:1 5090:1 5096:1 5125:2 5131:2 5133:1 5157:2 5176:1 5177:1 5184:2 5186:1 5190:3 5195:2 5200:1 5203:2 5219:1 5220:1 5237:1 5245:2 5249:3 5255:1 5280:1 5302:1 5306:1 5307:1 5316:1 5325:1 5328:1 5351:2 5358:8 5362:1 5365:1 5369:2 5371:2 5386:1 5394:1 5404:2 5423:1 5429:1 5434:2 5438:1 5453:1 5480:1 5493:1 5501:1 5511:2 5524:2 5534:1 5535:2 5538:2 5540:2 5548:1 5551:1 5556:2 5563:1 5564:1 5569:1 5582:3 5584:1 5588:1 5589:1 5593:1 5599:1 5607:1 5615:3 5629:4 5639:1 5640:1 5663:3 5680:1 5681:3 5694:1 5701:3 5702:1 5705:1 5718:1 5720:4 5721:1 5728:2 5744:1 5749:1 5773:1 5785:1 5801:1 5802:1 5812:2 5813:1 5843:3 5850:1 5852:1 5855:1 5877:1 5881:2 5898:1 5920:1 5942:1 5947:4 5949:1 5972:14 5987:4 5992:4 6000:1 6001:1 6006:5 6007:1 6009:2 6017:1 6039:3 6040:1 6053:1 6056:1 6058:1 6078:2 6110:1 6130:2 6137:2 6138:1 6142:1 6150:1 6153:3 6156:1 6176:6 6178:1 6182:1 6192:1 6197:1 6199:1 6220:1 6244:1 6245:2 6247:1 6259:3 6262:1 6263:1 6265:2 6267:1 6269:1 6270:2 6273:1 6274:2 6275:3 6276:5 6279:2 6280:1 6282:4 6283:10 6284:5 6286:1 6316:1 6334:2 6379:3 6381:1 6383:1 6420:2 6435:2 6482:2 6493:1 6502:1 6507:1 6513:1 6531:1 6536:2 6537:1 6542:1 6556:1 6558:1 6565:2 6580:1 6581:1 6585:1 6589:1 6598:1 6609:1 6613:1 6652:1 6653:2 6654:2 6668:1 6671:1 6677:1 6679:2 6680:1 6689:1 6699:9 6715:2 6722:4 6728:1 6741:1 6744:1 6751:1 6757:1 6777:1 6795:1 6810:2 6811:1 6823:2 6851:1 6854:2 6855:2 6860:3 6866:1 6869:1 6871:1 6885:3 6886:2 6903:1 6906:1 6914:1 6918:1 6919:2 6922:2 6927:1 6932:1 6938:1 6939:1 6948:2 6987:1 6999:1 7009:1 7036:1 7049:1 7050:10 7052:1 7067:1 7073:2 7074:2 7091:1 7097:2 7099:2 7102:1 7124:1 7125:1 7155:2 7169:1 7180:1 7198:3 7218:2 7234:1 7248:2 7263:3 7274:1 7278:1 7287:2 7288:1 7290:1 7297:1 7303:1 7311:1 7319:1 7322:1 7334:5 7346:3 7347:1 7352:1 7367:2 7371:1 7382:2 7383:1 7386:2 7401:1 7407:2 7427:1 7463:2 7485:2 7499:2 7510:1 7516:1 7518:1 7554:2 7555:13 7556:5 7560:1 7570:2 7580:2 7582:4 7584:1 7603:5 7604:1 7620:51 7622:1 7643:6 7644:11 7645:1 7648:2 7657:1 7665:1 7671:2 7682:1 7685:1 7696:1 7700:1 7710:1 7719:1 7720:2 7725:2 7734:1 7751:1 7755:1 7758:2 7773:2 7786:1 7826:2 7851:3 7862:1 7871:1 7874:1 7878:2 7892:1 7897:6 7928:1 7931:1 7943:1 7962:1 7967:1 7994:1 8004:1 8007:1 8032:1 8035:1 8037:1 8043:2 8044:3 8045:1 8046:1 8062:1 8063:2 8082:1 8087:1 8093:1 8107:1 8110:1 8116:2 8122:1 8124:2 8130:2 8136:1 8142:3 8145:1 8154:1 8156:8 8180:2 8184:1 8186:2 8194:1 8236:1 8254:1 8270:1 8299:1 8301:2 8311:2 8319:2 8334:1 8336:1 8358:1 8367:2 8369:2 8376:3 8379:1 8383:3 8387:2 8394:1 8395:3 8405:1 8412:1 8422:1 8430:5 8433:1 8438:1 8441:1 8445:1 8449:1 8460:1 8468:1 8480:1 8490:1 8497:1 8500:3 8501:5 8503:4 8504:1 8505:2 8508:3 8510:8 8512:2 8513:3 8514:1 8516:1 8525:1 8526:2 8543:4 8549:2 8550:3 8567:3 8571:1 8572:2 8575:2 8578:2 8582:2 8586:5 8604:1 8639:1 8640:2 8655:1 8657:1 8679:1 8688:1 8710:1 8719:1 8725:1 8728:1 8739:1 8751:1 8756:3 8762:1 8772:2 8779:3 8805:2 8808:1 8810:2 8811:4 8815:2 8827:3 8833:1 8840:1 8846:1 8857:1 8914:1 8921:1 8929:1 8936:2 8950:5 8954:2 8969:2 8971:1 8992:3 9001:1 9011:1 9019:1 9022:2 9023:1 9035:1 9040:1 9050:1 9057:1 9060:1 9065:1 9068:1 9069:1 9077:3 9107:1 9115:4 9121:1 9128:1 9130:1 9134:1 9139:2 9142:2 9145:1 9151:1 9161:2 9162:1 9196:1 9200:2 9207:7 9209:1 9210:1 9216:2 9219:1 9226:33 9230:3 9231:2 9246:2 9247:1 9261:1 9275:1 9286:2 9298:1 9305:1 9314:1 9319:1 9329:1 9338:2 9345:1 9349:1 9360:2 9363:6 9364:1 9365:2 9390:1 9392:1 9421:1 9427:1 9433:3 9448:1 9469:1 9490:1 9497:1 9528:1 9529:1 9537:1 9539:1 9544:1 9555:2 9558:1 9567:1 9568:1 9569:5 9574:1 9582:1 9586:4 9594:2 9601:1 9608:2 9634:2 9652:1 9663:7 9676:1 9677:4 9687:2 9689:1 9697:1 9700:1 9702:1 9704:1 9712:1 9713:1 9746:3 9772:1 9780:1 9789:1 9790:1 9815:1 9823:2 9829:1 9847:7 9850:1 9856:1 9862:1 9865:1 9871:4 9877:2 9878:1 9880:1 9883:2 9885:1 9887:1 9890:1 9898:4 9911:1 9913:1 9917:1 9919:1 9924:1 9928:3 9929:1 9932:2 9933:1 9938:1 9939:1 9948:1 9954:1 9956:1 9968:4 9986:1 9987:1 9996:1 10019:1 10037:1 10038:1 10043:1 10057:2 10065:1 10073:1 10094:1 10122:1 10124:1 10125:1 10126:1 10135:2 10157:1 10178:1 10188:1 10191:1 10200:1 10234:1 10241:2 10265:1 10266:3 10280:1 10286:2 10302:1 10305:1 10328:2 10329:1 10347:3 10351:2 10359:2 10370:1 10372:1 10402:1 10405:1 10414:1 10436:1 10448:1 10478:2 10484:1 10486:1 10488:1 10501:1 10504:3 10507:2 10513:5 10521:1 10523:1 10524:1 10526:1 10533:1 10537:1 10539:3 10541:1 10555:3 10557:3 10558:1 10564:1 10573:3 10582:3 10583:3 10590:2 10592:2 10593:1 10621:1 10639:1 10641:1 10657:7 10665:5 10677:2 10683:4 10686:12 10737:1 10740:1 10747:1 10748:2 10783:3 10787:1 10790:1 10805:1 10824:1 10835:1 10839:1 10846:1 10857:1 10883:1 10901:1 10903:3 10905:3 10909:2 10910:2 10918:1 10921:2 10931:2 10937:1 10943:1 10946:1 10947:1 10953:1 10962:1 10969:1 10989:6 10992:1 11010:6 11014:1 11016:1 11018:1 11021:1 11040:1 11062:1 11063:2 11064:2 11066:1 11071:1 11080:1 11083:1 11085:1 11094:1 11100:1 11106:1 11107:1 11118:1 11131:1 11138:2 11145:1 11147:1 11152:1 11173:1 11175:1 11177:1 11188:1 11197:1 11203:5 11208:1 11216:1 11230:2 11232:1 11234:1 11248:1 11260:1 11268:2 11274:1 11278:2 11284:1 11285:1 11287:1 11300:2 11301:1 11302:2 11308:2 11315:3 11317:1 11333:8 11341:1 11367:1 11370:10 11371:1 11400:1 11401:1 11407:1 11430:1 11442:1 11444:2 11466:2 11468:1 11469:1 11470:1 11476:1 11477:1 11479:1 11481:2 11496:1 11501:1 11506:1 11509:2 11514:1 11520:2 11526:3 11530:7 11547:6 11549:1 11550:6 11580:1 11587:1 11600:1 11601:1 11603:3 11606:1 11609:1 11611:2 11614:1 11615:2 11619:3 11622:1 11631:2 11632:3 11633:1 11636:2 11641:3 11645:1 11649:1 11664:7 11671:1 11684:8 11690:1 11693:1 11696:1 11710:1 11711:2 11716:1 11727:1 11734:1 11755:1 11772:2 11789:1 11824:2 11826:1 11852:1 11865:3 11871:1 11877:1 11882:1 11891:1 11908:1 11916:1 11924:1 11931:3 11936:4 11952:1 11973:3 11977:1 11990:1 11997:1 12004:1 12005:1 12010:1 12025:1 12076:1 12107:1 12109:1 12110:2 12111:3 12115:2 12125:2 12132:1 12142:1 12154:1 12156:2 12165:4 12166:5 12172:2 12176:1 12178:1 12184:2 12219:1 12239:1 12243:1 12250:1 12263:1 12272:1 12276:2 12281:6 12297:1 12302:1 12323:3 12337:1 12338:1 12345:1 12346:1 12349:2 12361:3 12362:1 12376:2 12380:2 12398:1 12405:1 12420:1 12423:3 12431:2 12457:1 12458:1 12464:1 12468:1 12472:1 12476:1 12477:6 12480:1 12491:1 12493:1 12495:1 12508:1 12512:1 12515:1 12526:2 12534:1 12586:1 12608:8 12621:1 12633:1 12635:1 12636:1 12644:1 12648:16 12654:1 12658:1 12668:3 12671:6 12676:1 12681:1 12701:1 12702:1 12708:3 12733:2 12764:1 12769:5 12772:2 12787:1 12789:1 12790:1 12791:1 12796:2 12797:1 12813:2 12827:4 12831:1 12835:1 12837:1 12860:1 12861:1 12885:1 12888:1 12914:1 12949:7 12954:1 12984:1 12999:1 13045:8 13049:1 13066:2 13068:1 13072:1 13076:7 13080:4 13086:1 13087:1 13093:1 13094:6 13120:1 13128:1 13133:1 13142:1 13143:1 13144:1 13166:5 13194:1 13206:1 13211:2 13213:1 13224:6 13231:1 13232:4 13233:1 13244:1 13250:1 13251:1 13252:2 13257:1 13263:1 13275:2 13278:1 13282:1 13283:1 13287:1 13301:2 13302:4 13306:1 13310:1 13320:3 13331:1 13341:2 13346:1 13364:2 13372:7 13376:1 13396:1 13401:1 13416:4 13420:1 13421:3 13440:1 13454:1 13468:2 13490:1 13503:1 13506:1 13520:1 13524:1 13533:1 13557:2 13561:2 13570:1 13571:1 13599:4 13600:1 13601:2 13606:4 13607:2 13610:2 13619:1 13620:1 13628:1 13633:1 13654:3 13674:1 13680:3 13691:2 13694:1 13697:1 13698:1 13723:1 13733:6 13745:1 13764:2 13779:3 13782:1 13784:1 13788:2 13799:1 13813:1 13827:7 13832:3 13833:1 13838:1 13847:1 13886:1 13895:1 13904:3 13931:10 13942:1 13963:1 13974:1 13980:2 13986:1 14006:1 14018:1 14024:1 14029:1 14054:2 14076:6 14089:1 14107:3 14119:1 14126:1 14134:1 14140:1 14152:1 14161:1 14179:4 14180:1 14181:1 14196:1 14212:1 14223:1 14235:1 14245:1 14255:1 14266:2 14274:2 14284:2 14297:1 14299:3 14312:1 14313:1 14317:3 14318:9 14324:1 14325:6 14335:3 14339:1 14340:2 14347:1 14358:1 14361:1 14376:1 14385:1 14433:1 14434:1 14449:5 14476:1 14482:2 14485:1 14489:2 14490:1 14492:1 14493:2 14498:4 14514:1 14523:1 14532:1 14533:3 14537:1 14551:1 14554:1 14573:1 14591:2 14600:2 14614:2 14616:3 14623:1 14624:1 14636:2 14637:2 14647:4 14650:1 14664:3 14674:1 14683:2 14700:1 14701:1 14761:1 14775:1 14780:1 14785:1 14798:1 14803:2 14820:3 14821:1 14823:1 14824:1 14836:1 14837:1 14881:1 14883:1 14891:7 14893:1 14910:2 14912:1 14916:2 14935:1 14936:8 14938:3 14961:2 14970:1 14984:2 14986:1 14999:1 15000:1 15020:8 15022:1 15024:1 15037:1 15055:1 15085:1 15109:1 15117:1 15123:4 15125:1 15129:1 15130:1 15134:1 15145:1 15146:2 15158:1 15160:1 15173:1 15177:2 15178:1 15180:1 15207:1 15217:1 15233:1 15238:1 15241:1 15244:1 15245:3 15259:2 15275:1 15282:1 15301:2 15309:1 15322:1 15332:11 15345:2 15380:1 15385:2 15395:1 15398:1 15403:1 15404:4 15414:5 15420:1 15424:1 15431:1 15435:1 15436:1 15440:1 15453:2 15455:1 15459:2 15471:1 15482:2 15496:1 15509:1 15512:1 15527:1 15539:1 15556:1 15563:4 15568:1 15571:1 15578:9 15581:3 15590:1 15591:3 15595:1 15598:1 15607:2 15614:4 15622:2 15624:1 15625:7 15626:2 15631:1 15637:1 15642:1 15644:1 15678:1 15679:1 15687:2 15706:1 15711:1 15715:1 15717:2 15725:2 15742:1 15745:8 15750:1 15757:1 15763:2 15768:1 15777:1 15785:3 15814:2 15831:6 15832:3 15835:1 15837:1 15839:1 15871:1 15877:1 15879:3 15893:1 15896:1 15906:1 15909:4 15911:2 15913:1 15923:1 15957:1 15967:1 15973:4 16014:1 16026:1 16029:17 16030:1 16048:4 16051:2 16055:1 16056:1 16067:1 16084:1 16095:2 16103:1 16119:3 16122:1 16127:1 16137:2 16146:1 16147:1 16149:1 16150:1 16164:1 16170:2 16172:1 16177:2 16181:1 16190:2 16194:1 16196:1 16237:1 16242:2 16285:4 16288:1 16289:1 16290:2 16310:1 16336:1 16338:1 16353:1 16363:1 16383:1 16398:1 16400:1 16403:2 16434:2 16475:1 16482:1 16488:1 16489:1 16505:1 16511:1 16527:1 16528:1 16542:1 16543:1 16546:1 16555:2 16575:1 16588:1 16589:1 16597:1 16604:1 16605:1 16614:1 16639:1 16646:1 16662:1 16666:2 16672:1 16675:2 16685:2 16702:1 16708:1 16710:1 16714:3 16716:2 16718:1 16738:1 16747:1 16758:1 16761:1 16776:1 16789:2 16801:1 16802:1 16828:1 16830:1 16840:4 16843:1 16844:5 16851:1 16867:1 16874:1 16883:1 16899:1 16905:1 16908:1 16915:8 16929:1 16930:1 16932:2 16939:1 16942:1 16947:2 16966:4 16974:1 16977:1 16990:1 16991:1 16995:2 17013:2 17015:1 17036:1 17042:1 17046:2 17050:1 17053:2 17059:6 17067:2 17087:1 17091:6 17092:1 17106:1 17110:1 17136:2 17138:2 17155:4 17156:2 17167:1 17172:1 17179:1 17181:1 17186:2 17187:2 17198:3 17199:7 17200:1 17207:2 17210:1 17244:1 17251:1 17265:1 17270:2 17277:2 17281:1 17327:1 17343:1 17346:1 17360:1 17363:4 17369:2 17374:2 17397:1 17401:1 17422:1 17442:1 17445:1 17447:1 17448:3 17454:3 17455:1 17456:1 17463:4 17475:3 17476:2 17477:1 17509:1 17511:2 17522:5 17523:4 17538:1 17558:2 17560:3 17575:1 17585:1 17587:1 17592:7 17597:1 17604:1 17631:1 17636:1 17644:2 17647:2 17648:1 17652:1 17655:1 17662:1 17664:2 17665:5 17667:1 17669:1 17670:1 17674:1 17683:2 17687:1 17691:1 17692:1 17698:1 17707:1 17721:1 17722:3 17747:1 17753:2 17764:1 17766:2 17767:8 17772:4 17781:30 17783:1 17785:1 17787:1 17790:2 17794:1 17803:1 17812:4 17819:1 17822:1 17831:1 17838:1 17845:1 17852:1 17855:1 17860:2 17871:1 17872:3 17873:1 17875:1 17882:1 17886:1 17896:4 17907:1 17922:1 17931:5 17962:1 17967:1 17977:2 17979:1 17989:1 17994:2 17998:2 18007:5 18009:1 18011:1 18019:1 18032:2 18045:1 18056:1 18058:1 18067:1 18080:1 18084:1 18114:1 18120:1 18133:1 18150:2 18152:2 18167:1 18169:1 18170:1 18178:1 18184:1 18212:1 18219:3 18220:1 18249:2 18315:4 18323:1 18331:1 18340:1 18348:2 18357:1 18380:2 18381:2 18382:2 18399:2 18410:1 18417:5 18424:1 18444:1 18449:1 18459:1 18461:1 18465:1 18471:3 18476:2 18478:3 18481:1 18495:1 18498:1 18499:1 18504:5 18509:1 18512:1 18516:1 18519:2230 18524:1 18534:1 18538:1 18572:4 18573:1 18582:3 18607:1 18608:1 18619:1 18643:2 18648:2 18657:1 18668:2 18684:2 18690:1 18691:1 18702:1 18708:3 18715:6 18720:1 18725:5 18727:3 18728:4 18748:2 18763:1 18802:6 18808:2 18810:2 18814:1 18816:1 18840:1 18842:33 18850:1 18861:1 18863:7 18904:1 18907:1 18915:1 18919:1 18920:1 18930:2 18938:1 18947:1 18968:1 18969:1 18971:1 18982:2 18991:3 19007:1 19008:1 19017:1 19033:1 19055:2 19061:1 19065:1 19079:1 19089:1 19091:1 19113:1 19121:1 19135:2 19140:2 19142:3 19168:2 19172:1 19174:2 19176:3 19180:1 19187:1 19190:1 19192:2 19197:4 19202:1 19210:1 19218:1 19228:5 19235:1 19239:1 19256:1 19257:2 19271:2 19273:1 19289:1 19291:1 19293:3 19298:10 19314:1 19315:1 19335:7 19336:1 19350:2 19353:1 19359:1 19370:1 19412:1 19414:1 19420:3 19442:2 19475:1 19482:1 19494:1 19497:1 19507:4 19508:1 19515:3 19516:2 19531:1 19534:1 19549:1 19550:3 19551:1 19557:1 19563:3 19566:1 19573:1 19592:2 19600:1 19605:1 19628:1 19634:2 19661:3 19674:1 19680:1 19708:2 19719:1 19720:1 19724:1 19735:3 19742:1 19745:1 19751:1 19752:1 19754:1 19767:2 19771:4 19775:6 19777:1 19778:1 19784:4 19794:1 19807:1 19816:1 19818:1 19829:1 19833:1 19839:2 19859:1 19862:1 19876:2 19881:1 19904:2 19909:5 19918:1 19932:1 19936:2 19948:1 19949:4 19953:1 19964:1 19966:1 19978:3 19979:1 19992:1 19996:1 20001:1 20003:2 20004:2 20007:1 20017:1 20020:1 20031:1 20032:1 20036:1 20037:1 20052:1 20061:4 20068:1 20074:1 20079:1 20084:2 20086:1 20094:1 20117:2 20118:2 20137:1 20159:5 20170:1 20187:1 20211:6 20212:3 20218:2 20226:2 20231:1 20237:1 20238:1 20272:1 20276:1 20281:1 20283:3 20293:2 20299:1 20302:1 20313:1 20345:1 20395:1 20400:1 20401:1 20404:3 20406:4 20408:1 20420:1 20422:1 20443:1 20453:1 20454:1 20455:7 20465:2 20466:1 20467:1 20468:4 20474:2 20495:1 20525:1 20530:1 20531:2 20532:1 20545:1 20547:2 20567:4 20577:1 20594:1 20599:1 20600:1 20604:1 20626:1 20643:1 20644:1 20652:1 20656:1 20658:3 20671:1 20677:4 20679:1 20682:1 20683:1 20685:2 20686:1 20692:1 20701:1 20705:4 20710:1 20715:1 20716:1 20721:2 20722:2 20730:1 20734:1 20738:1 20747:7 20770:1 20780:2 20781:1 20782:3 20783:1 20797:1 20798:1 20823:3 20833:1 20846:1 20857:1 20862:1 20900:2 20907:2 20918:1 20945:1 20948:2 20957:2 20979:6 20985:1 20986:1 20988:1 21010:1 21016:1 21019:2 21029:1 21049:1 21062:2 21075:1 21079:1 21080:1 21085:1 21088:1 21091:2 21100:1 21107:1 21122:1 21137:2 21142:1 21158:1 21169:2 21174:1 21193:1 21196:1 21198:2 21201:1 21211:1 21250:1 21257:1 21265:1 21276:1 21288:1 21289:1 21313:1 21320:1 21339:1 21345:1 21357:1 21358:2 21359:1 21371:3 21372:1 21374:2 21380:1 21381:1 21386:3 21387:3 21389:1 21392:1 21397:1 21405:1 21406:1 21407:1 21409:1 21410:1 21415:2 21434:1 21440:1 21442:2 21444:1 21448:1 21459:1 21472:4 21486:1 21488:2 21490:1 21493:1 21498:2 21499:2 21503:1 21504:1 21509:2 21518:2 21519:1 21520:1 21523:2 21528:1 21538:1 21544:1 21548:9 21551:1 21567:1 21568:2 21569:3 21580:1 21616:1 21634:2 21647:2 21648:1 21654:2 21661:1 21663:2 21670:1 21675:8 21684:1 21691:1 21695:3 21712:1 21714:2 21715:1 21724:1 21750:1 21770:1 21771:1 21778:1 21804:1 21809:1 21812:5 21822:1 21824:1 21826:1 21827:2 21829:2 21830:1 21838:1 21845:1 21846:4 21847:1 21848:3 21867:2 21870:1 21877:1 21885:1 21901:2 21916:2 21931:1 21937:3 21941:1 21952:1 21967:1 21971:1 21975:1 21994:3 21999:1 22009:4 22012:2 22016:3 22017:1 22020:1 22021:1 22025:1 22052:1 22059:2 22061:1 22065:2 22077:2 22080:1 22096:3 22115:1 22132:1 22135:1 22144:1 22147:1 22150:1 22173:4 22174:5 22178:3 22179:1 22180:2 22189:2 22190:1 22205:1 22212:2 22222:1 22223:4 22230:1 22236:1 22239:1 22243:2 22248:1 22252:3 22257:2 22258:4 22265:1 22277:2 22290:1 22291:1 22293:1 22294:3 22295:1 22302:1 22315:2 22318:1 22329:2 22331:1 22332:1 22336:1 22337:1 22342:1 22345:3 22357:1 22362:2 22368:1 22390:1 22391:4 22392:1 22401:1 22406:2 22412:1 22414:30 22419:1 22420:2 22422:4 22425:1 22426:3 22427:4 22430:1 22432:1 22434:1 22453:3 22455:1 22461:1 22464:3 22467:1 22473:2 22493:2 22495:2 22496:1 22507:2 22529:3 22538:1 22542:1 22579:3 22585:1 22593:8 22599:1 22616:2 22621:2 22634:1 22646:1 22672:1 22674:2 22676:2 22679:1 22680:1 22687:1 22691:3 22692:1 22695:1 22699:2 22705:1 22706:1 22721:3 22726:2 22736:1 22737:1 22758:1 22776:1 22777:2 22782:1 22784:1 22788:1 22808:1 22837:1 22848:1 22866:1 22867:1 22878:1 22886:1 22896:2 22902:1 22919:1 22921:1 22931:2 22935:1 22947:2 22948:1 22955:1 22962:2 22964:1 22971:2 22980:3 22981:1 22982:1 22998:3 23001:3 23021:2 23024:1 23027:1 23033:3 23038:1 23057:1 23072:1 23099:1 23130:1 23143:1 23148:1 23165:1 23175:1 23184:3 23188:2 23195:1 23196:1 23207:3 23227:2 23234:2 23235:1 23239:1 23241:1 23248:1 23254:1 23275:2 23283:3 23297:1 23299:3 23302:1 23310:1 23313:2 23326:1 23340:1 23343:1 23349:1 23352:1 23361:12 23368:1 23394:2 23403:1 23408:1 23437:1 23439:1 23441:1 23452:1 23488:1 23494:1 23504:1 23519:1 23520:1 23527:1 23532:2 23545:1 23559:2 23568:1 23581:1 23591:1 23592:1 23600:3 23604:1 23616:7 23618:2 23620:1 23635:2 23647:1 23651:1 23659:2 23667:1 23716:1 23720:1 23722:1 23732:3 23736:1 23744:1 23749:2 23758:1 23774:1 23785:1 23798:1 23806:1 23814:1 23831:1 23832:1 23875:3 23884:5 23885:1 23896:4 23899:1 23910:1 23912:1 23918:2 23919:1 23920:1 23928:1 23939:2 23941:1 23966:2 23973:1 23979:1 23992:1 23994:3 23995:2 23996:1 24001:1 24025:2 24030:1 24044:1 24047:2 24052:1 24057:2 24058:3 24064:1 24068:1 24073:1 24093:1 24098:1 24101:1 24114:1 24124:1 24146:1 24148:1 24150:1 24156:1 24159:2 24160:1 24162:7 24164:3 24166:4 24167:2 24171:1 24172:2 24174:2 24175:4 24182:2 24183:4 24187:2 24193:2 24206:4 24213:2 24233:1 24236:2 24237:1 24242:1 24247:2 24263:4 24267:3 24291:2 24295:1 24297:1 24307:3 24321:1 24324:1 24342:1 24345:1 24347:1 24348:2 24362:1 24390:1 24401:1 24402:1 24419:3 24440:4 24448:1 24450:4 24453:1 24464:2 24466:1 24496:1 24508:1 24512:2 24513:1 24521:1 24524:1 24547:2 24548:1 24558:1 24571:1 24582:1 24584:1 24609:1 24630:3 24645:1 24648:1 24654:1 24658:1 24665:2 24707:4 24746:1 24757:2 24763:1 24772:1 24780:1 24783:4 24791:1 24793:1 24797:1 24810:1 24816:1 24822:4 24878:1 24899:1 24900:2 24912:3 24915:7 24946:11 24955:1 24969:9 24990:1 24997:1 25005:1 25015:2 25019:1 25028:1 25038:2 25041:1 25042:1 25045:1 25046:1 25047:1 25071:1 25085:1 25089:1 25093:2 25099:2 25104:1 25109:1 25111:2 25114:6 25122:1 25137:2 25139:2 25141:9 25144:4 25145:2 25155:1 25162:1 25167:2 25168:1 25170:1 25177:1 25182:1 25214:2 25219:1 25225:4 25230:1 25240:1 25247:3 25258:2 25259:2 25319:1 25320:1 25335:1 25342:1 25345:1 25346:1 25356:1 25384:2 25386:1 25401:1 25410:1 25412:3 25413:1 25416:2 25417:1 25425:1 25436:5 25465:1 25468:1 25473:1 25474:1 25488:1 25492:1 25515:1 25557:1 25561:1 25569:1 25576:1 25600:1 25618:1 25657:1 25663:1 25665:1 25676:1 25679:3 25680:2 25691:1 25700:1 25701:1 25708:2 25718:2 25726:1 25729:1 25742:1 25757:1 25759:2 25781:1 25796:5 25804:1 25812:1 25816:2 25826:1 25829:1 25835:1 25838:5 25850:1 25859:1 25864:1 25865:4 25880:1 25882:1 25901:1 25903:1 25906:2 25916:2 25929:1 25930:1 25936:2 25953:2 25971:2 25988:1 25992:6 25994:1 26021:4 26024:1 26033:1 26038:1 26040:1 26042:1 26059:2 26087:1 26088:1 26093:4 26112:2 26113:1 26114:1 26118:1 26122:1 26123:1 26127:3 26128:2 26133:1 26162:1 26166:3 26170:1 26175:1 26182:1 26185:1 26190:1 26213:1 26221:2 26225:1 26247:2 26249:1 26261:2 26262:1 26267:1 26285:1 26290:2 26300:1 26309:1 26316:1 26332:2 26338:1 26339:1 26341:1 26352:1 26368:3 26373:5 26392:2 26453:1 26476:1 26478:1 26479:1 26482:1 26499:1 26504:1 26524:1 26526:1 26542:1 26547:1 26548:1 26551:1 26556:1 26559:1 26566:1 26569:1 26574:2 26582:1 26588:2 26599:1 26619:1 26621:1 26622:1 26624:1 26641:1 26654:2 26657:2 26658:1 26662:1 26667:3 26681:4 26700:4 26707:1 26709:5 26721:1 26736:1 26737:1 26743:1 26759:3 26772:1 26778:1 26787:1 26788:10 26807:1 26817:1 26838:1 26840:2 26844:1 26845:1 26847:1 26848:2 26856:12 26866:1 26890:1 26894:3 26920:1 26933:2 26934:1 26938:1 26954:2 26960:6 26965:2 26967:2 26981:1 26985:2 26988:1 26994:3 27003:1 27006:1 27016:1 27022:1 27033:1 27036:1 27057:1 27058:3 27061:1 27069:2 27070:1 27079:1 27090:3 27103:1 27108:1 27113:1 27135:2 27136:1 27141:2 27143:1 27145:1 27147:1 27149:2 27160:2 27169:1 27177:1 27187:1 27188:1 27229:1 27247:1 27275:1 27279:1 27298:1 27330:1 27332:1 27342:2 27365:5 27368:1 27376:1 27385:1 27392:1 27408:1 27412:1 27419:1 27422:1 27447:1 27465:1 27472:1 27474:1 27481:2 27500:1 27517:1 27536:3 27549:1 27560:1 27563:6 27575:1 27595:1 27597:4 27603:1 27620:1 27627:2 27636:1 27647:2 27658:1 27661:1 27662:1 27673:1 27675:2 27678:1 27687:26 27689:4 27692:5 27694:1 27695:3 27702:1 27724:7 27739:1 27777:3 27789:2 27804:1 27808:2 27820:1 27821:3 27832:4 27838:2 27859:12 27863:2 27867:3 27869:1 27874:2 27878:1 27879:2 27885:1 27887:1 27889:1 27893:2 27900:2 27906:1 27907:1 27909:1 27917:2 27923:2 27930:1 27934:2 27935:2 27943:1 27948:2 27951:1 27960:1 27964:1 27968:1 27969:2 27975:1 28003:1 28011:1 28028:2 28030:1 28031:1 28046:1 28050:1 28051:1 28054:1 28058:1 28068:5 28075:1 28082:1 28100:1 28102:2 28126:1 28127:2 28128:2 28131:1 28169:1 28174:1 28177:1 28178:1 28180:1 28183:2 28187:5 28191:1 28193:1 28202:1 28203:1 28204:1 28208:2 28214:2 28215:1 28217:1 28218:1 28223:1 28264:1 28292:1 28315:1 28319:1 28320:1 28326:1 28341:1 28350:1 28356:1 28359:1 28362:1 28363:2 28367:1 28373:1 28375:3 28378:1 28380:1 28387:1 28397:7 28404:2 28405:1 28409:1 28411:6 28413:1 28419:1 28461:1 28469:2 28470:1 28506:3 28514:1 28520:1 28536:4 28541:1 28543:2 28551:1 28553:1 28560:6 28565:1 28569:1 28594:1 28596:1 28626:1 28627:1 28646:1 28648:1 28665:2 28681:1 28685:2 28703:1 28709:1 28724:1 28728:1 28734:1 28748:1 28754:1 28761:2 28792:1 28801:7 28815:1 28816:1 28818:1 28831:1 28836:7 28849:5 28850:1 28867:1 28904:1 28913:8 28914:3 28916:2 28919:1 28921:1 28924:3 28925:3 28941:1 28947:1 28958:1 28959:2 28961:3 28963:3 29003:1
9 11:1 14:2 24:1 34:1 37:4 45:1 56:1 60:1 63:1 65:1 74:1 79:1 82:1 83:1 89:1 90:1 103:1 109:1 113:1 117:1 125:1 133:1 143:1 150:1 153:3 162:1 170:4 189:8 192:1 214:1 245:1 270:1 275:1 282:2 293:1 295:33 303:2 315:1 316:3 318:5 320:1 326:1 333:1 348:2 350:1 354:1 363:1 381:1 403:2 424:3 432:1 433:1 437:1 438:1 442:1 444:1 460:1 515:1 523:1 561:1 563:4 564:1 569:2 572:4 590:4 596:2 598:2 600:1 613:2 626:1 634:3 638:1 643:2 650:1 674:1 678:2 685:1 692:1 702:1 716:1 728:1 734:2 735:1 748:1 752:1 767:2 770:1 788:1 795:1 804:1 805:1 807:2 808:1 828:1 830:8 832:3 842:3 843:1 855:1 856:15 860:1 867:1 871:1 875:2 877:5 879:7 885:2 889:1 892:1 893:1 899:1 900:1 905:3 916:1 924:2 925:2 941:1 963:1 974:3 989:1 996:4 998:2 1002:2 1011:1 1019:1 1020:2 1027:1 1028:1 1038:1 1045:1 1046:1 1059:1 1061:2 1078:1 1086:1 1087:1 1089:2 1092:2 1104:3 1112:2 1117:1 1123:1 1136:1 1137:1 1143:1 1148:3 1152:1 1160:1 1163:1 1179:1 1207:2 1228:1 1231:1 1232:1 1241:2 1244:1 1257:1 1262:1 1276:1 1284:1 1287:1 1300:2 1313:1 1330:1 1345:1 1353:1 1355:3 1369:1 1374:2 1376:1 1394:1 1397:2 1400:6 1401:9 1402:1 1417:1 1418:1 1419:3 1420:1 1422:1 1423:2 1438:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1506:2 1507:1 1508:1 1516:7 1518:1 1543:1 1547:1 1555:1 1557:1 1560:1 1562:3 1564:3 1571:1 1578:1 1596:5 1598:1 1617:1 1619:3 1627:6 1634:2 1659:1 1660:1 1677:1 1678:1 1682:1 1699:1 1709:1 1743:3 1757:1 1760:1 1762:1 1778:4 1789:1 1794:1 1802:1 1811:1 1819:1 1826:1 1828:1 1830:1 1875:1 1888:1 1892:2 1895:18 1903:1 1907:2 1919:1 1923:1 1929:1 1935:1 1936:1 1952:1 1954:1 1962:8 1963:1 1965:2 1993:1 1998:1 2006:2 2011:3 2048:1 2051:1 2082:1 2085:1 2089:3 2095:2 2100:1 2101:1 2105:1 2108:1 2124:1 2132:1 2142:1 2154:1 2156:1 2158:1 2159:5 2160:1 2162:2 2165:1 2172:1 2174:4 2177:2 2178:2 2179:4 2181:1 2187:1 2190:2 2191:1 2207:1 2212:1 2215:1 2216:2 2219:2 2220:2 2221:8 2223:4 2226:1 2227:2 2228:4 2232:1 2233:1 2234:1 2237:2 2239:1 2245:1 2247:2 2249:1 2251:6 2252:2 2253:7 2264:1 2268:1 2269:1 2279:1 2297:1 2309:2 2315:1 2322:1 2336:1 2339:1 2343:1 2347:1 2358:3 2370:4 2371:1 2374:1 2376:1 2384:2 2387:1 2392:2 2410:4 2421:6 2433:1 2439:1 2445:1 2461:1 2465:1 2473:1 2485:5 2494:4 2500:1 2520:1 2522:2 2536:1 2543:4 2552:3 2561:2 2563:1 2570:1 2580:2 2609:2 2631:1 2635:1 2641:1 2648:1 2651:3 2656:1 2659:1 2667:2 2670:1 2672:1 2675:1 2683:1 2688:1 2691:1 2704:1 2708:2 2712:1 2713:1 2723:1 2730:3 2756:1 2760:1 2761:2 2762:1 2766:7 2770:3 2775:5 2780:1 2781:1 2782:1 2810:1 2813:2 2816:2 2818:2 2826:2 2836:2 2854:6 2857:1 2867:23 2883:4 2888:1 2900:2 2909:1 2915:1 2931:1 2936:11 2954:1 2961:5 2965:7 2966:1 2968:1 2969:1 2972:1 2989:1 3015:1 3023:1 3026:1 3030:1 3068:1 3074:4 3075:1 3089:1 3097:1 3105:1 3106:2 3112:1 3166:1 3188:2 3197:1 3205:1 3224:1 3231:1 3232:5 3237:1 3243:1 3248:1 3255:1 3256:1 3266:1 3271:1 3272:1 3279:1 3283:1 3293:1 3295:4 3314:1 3338:1 3352:2 3357:13 3397:1 3407:1 3420:2 3424:2 3459:1 3471:1 3472:2 3475:2 3478:1 3488:1 3489:1 3495:2 3509:1 3517:1 3528:1 3540:2 3548:1 3558:1 3570:2 3574:1 3577:1 3580:2 3582:7 3599:5 3604:2 3605:1 3606:1 3607:3 3608:2 3615:1 3634:2 3638:1 3639:6 3647:1 3648:1 3669:1 3680:1 3684:1 3687:2 3688:3 3692:1 3695:2 3698:2 3712:1 3730:1 3737:1 3740:1 3742:4 3744:1 3746:2 3748:12 3763:1 3779:1 3783:5 3784:1 3788:2 3789:12 3790:3 3792:1 3796:1 3810:1 3813:7 3817:1 3822:1 3835:1 3836:3 3838:1 3848:1 3851:1 3862:1 3866:1 3874:1 3876:1 3883:1 3888:2 3895:1 3902:3 3904:3 3918:2 3919:2 3931:1 3934:1 3939:2 3940:1 3943:1 3948:1 3953:1 3955:1 3964:4 3970:1 3972:1 3977:2 3982:1 3987:1 3988:2 3989:2 3998:4 3999:3 4005:1 4019:1 4033:1 4040:1 4051:1 4054:2 4069:1 4078:4 4085:2 4086:1 4093:1 4113:1 4124:1 4125:1 4129:1 4136:1 4137:1 4173:1 4190:6 4193:2 4201:1 4204:1 4208:1 4210:1 4219:1 4234:1 4254:1 4270:2 4272:2 4282:1 4296:1 4298:1 4314:2 4348:2 4352:1 4357:1 4362:5 4378:1 4385:1 4414:1 4416:1 4428:3 4434:1 4439:2 4455:1 4478:1 4491:1 4494:1 4528:2 4535:1 4549:1 4554:1 4560:1 4562:1 4565:1 4583:1 4585:2 4605:1 4613:1 4619:2 4623:1 4626:3 4640:1 4646:3 4657:2 4658:1 4676:1 4678:1 4691:1 4695:8 4724:1 4731:1 4742:1 4746:1 4751:1 4759:1 4768:1 4773:7 4776:1 4787:1 4788:2 4803:1 4807:1 4810:1 4815:1 4818:1 4851:3 4867:1 4876:25 4878:2 4881:1 4895:2 4903:1 4909:4 4917:1 4925:2 4928:7 4940:2 4963:2 4964:1 4980:1 4981:1 4984:1 4985:7 5003:5 5005:6 5006:1 5008:1 5009:1 5011:1 5013:3 5014:1 5015:1 5017:2 5020:1 5022:1 5026:1 5028:3 5030:3 5031:1 5033:1 5041:1 5042:1 5045:4 5046:3 5064:1 5066:1 5090:1 5096:1 5125:2 5131:2 5133:1 5157:2 5176:1 5177:1 5184:2 5186:1 5190:3 5195:2 5200:1 5203:3 5219:1 5220:1 5237:1 5245:2 5249:3 5255:1 5280:1 5302:1 5306:1 5307:1 5316:1 5325:1 5328:1 5351:2 5358:8 5362:1 5365:1 5369:2 5371:2 5386:1 5394:1 5404:2 5423:1 5429:1 5434:2 5438:2 5444:1 5453:1 5480:1 5493:1 5501:1 5511:2 5524:2 5525:2 5534:1 5535:2 5538:2 5540:2 5548:1 5551:1 5556:2 5563:1 5564:1 5569:1 5582:3 5584:1 5588:1 5589:1 5593:1 5599:1 5607:1 5615:3 5629:4 5639:1 5640:1 5663:3 5680:1 5681:3 5694:1 5701:3 5702:1 5705:1 5718:1 5720:4 5721:1 5728:2 5744:1 5749:1 5773:1 5785:1 5790:1 5801:1 5802:1 5812:2 5813:1 5843:3 5850:1 5852:1 5855:1 5877:1 5881:2 5898:1 5920:1 5942:1 5947:4 5949:1 5969:1 5972:14 5987:4 5992:4 6000:1 6001:1 6006:5 6007:1 6009:2 6017:1 6039:3 6040:1 6053:1 6056:1 6058:1 6078:2 6110:1 6130:2 6137:2 6138:1 6142:1 6149:1 6150:1 6153:3 6156:1 6176:6 6178:1 6182:1 6192:1 6197:1 6199:1 6220:1 6244:1 6245:2 6247:1 6259:3 6262:1 6263:1 6265:2 6267:1 6269:1 6270:3 6273:1 6274:3 6275:3 6276:5 6277:1 6279:2 6280:1 6282:4 6283:10 6284:5 6286:1 6316:1 6334:2 6379:3 6381:1 6383:1 6389:1 6420:2 6435:2 6482:2 6493:1 6502:1 6507:1 6513:1 6531:1 6536:2 6537:1 6542:1 6556:1 6558:1 6565:2 6580:1 6581:1 6585:1 6589:1 6598:1 6609:1 6613:1 6652:1 6653:2 6654:2 6661:1 6668:1 6671:1 6677:1 6679:2 6680:1 6689:1 6699:9 6715:2 6722:4 6728:1 6741:1 6744:1 6751:1 6757:1 6777:1 6795:1 6810:2 6811:1 6823:2 6851:1 6854:2 6855:2 6860:3 6866:1 6869:1 6871:1 6885:3 6886:2 6903:1 6906:1 6914:1 6918:1 6919:2 6922:2 6927:1 6932:1 6938:1 6939:1 6948:2 6987:1 6999:1 7009:1 7036:1 7049:1 7050:10 7052:1 7067:1 7073:2 7074:2 7091:1 7097:2 7099:2 7102:1 7109:1 7124:1 7125:1 7155:2 7169:1 7174:1 7180:1 7198:3 7218:2 7234:1 7248:2 7263:3 7274:1 7278:1 7287:3 7288:1 7290:1 7297:1 7303:1 7311:1 7319:1 7322:1 7334:5 7346:3 7347:1 7352:1 7367:2 7371:1 7382:2 7383:1 7386:2 7401:1 7407:2 7427:1 7463:2 7485:2 7496:1 7499:2 7510:1 7516:1 7518:1 7554:2 7555:13 7556:5 7560:1 7570:2 7580:2 7582:4 7584:1 7603:5 7604:1 7620:52 7622:1 7643:7 7644:11 7645:1 7648:2 7657:1 7665:1 7671:2 7682:1 7685:1 7696:1 7700:1 7710:1 7719:1 7720:2 7725:2 7734:1 7751:1 7755:1 7758:2 7773:2 7786:1 7826:2 7851:3 7862:1 7871:1 7874:1 7878:2 7892:1 7897:6 7928:1 7931:1 7943:1 7962:1 7967:1 7994:1 8004:1 8007:1 8032:1 8035:1 8037:1 8043:3 8044:3 8045:1 8046:1 8062:1 8063:2 8082:1 8087:1 8093:1 8107:1 8110:1 8116:2 8122:1 8124:2 8130:2 8131:1 8136:1 8141:1 8142:3 8145:1 8154:1 8156:9 8180:2 8184:1 8186:2 8194:1 8236:1 8254:1 8270:1 8299:1 8301:2 8311:2 8319:2 8334:1 8336:1 8340:1 8358:1 8367:3 8369:2 8376:3 8379:1 8383:3 8387:2 8394:1 8395:3 8405:1 8412:1 8422:1 8430:5 8433:1 8438:1 8441:1 8445:1 8449:1 8460:1 8468:1 8480:1 8490:1 8497:1 8500:3 8501:5 8503:4 8504:1 8505:2 8508:3 8510:8 8512:2 8513:3 8514:1 8516:1 8525:2 8526:2 8543:4 8549:2 8550:4 8565:1 8567:3 8571:1 8572:2 8575:2 8578:2 8582:2 8586:5 8604:1 8611:1 8639:1 8640:2 8655:1 8657:1 8679:1 8688:1 8710:1 8719:1 8725:1 8728:1 8739:1 8751:1 8756:3 8762:1 8772:2 8779:3 8805:2 8808:1 8810:2 8811:4 8815:3 8827:3 8833:1 8840:1 8846:1 8857:1 8914:1 8921:1 8929:1 8936:2 8950:5 8954:2 8969:2 8971:1 8992:3 9001:1 9009:1 9011:1 9019:1 9022:2 9023:1 9035:1 9040:1 9050:1 9057:1 9060:1 9065:1 9068:1 9069:1 9077:3 9107:1 9115:4 9121:1 9128:1 9130:1 9134:1 9139:2 9142:2 9145:1 9151:1 9161:2 9162:1 9196:1 9200:2 9207:7 9209:1 9210:1 9216:2 9219:1 9226:33 9230:3 9231:2 9246:2 9247:1 9261:1 9275:1 9286:4 9298:1 9305:1 9312:1 9314:1 9319:1 9329:1 9338:2 9345:1 9349:1 9360:2 9363:6 9364:1 9365:2 9390:1 9392:1 9421:1 9427:1 9433:3 9448:1 9469:1 9490:1 9497:1 9528:1 9529:1 9537:1 9539:1 9544:1 9555:2 9558:1 9567:1 9568:1 9569:5 9574:1 9582:1 9586:4 9594:2 9601:1 9608:2 9634:2 9652:1 9663:7 9668:1 9676:1 9677:4 9687:2 9689:1 9697:1 9700:1 9702:1 9704:1 9712:1 9713:1 9746:3 9772:1 9780:1 9789:1 9790:1 9815:1 9823:2 9829:1 9847:7 9850:1 9856:1 9862:1 9865:1 9871:4 9877:2 9878:1 9880:1 9883:2 9885:1 9887:1 9890:1 9898:4 9911:1 9913:1 9917:1 9919:1 9924:1 9928:3 9929:1 9932:2 9933:1 9938:1 9939:1 9948:1 9954:1 9956:1 9968:4 9986:1 9987:1 9996:1 10019:1 10037:1 10038:1 10043:1 10057:2 10065:1 10073:1 10094:1 10122:1 10124:2 10125:1 10126:1 10135:2 10157:1 10178:1 10188:1 10191:1 10200:1 10234:1 10241:2 10265:1 10266:3 10280:1 10286:2 10302:1 10305:1 10328:2 10329:1 10347:3 10351:2 10359:2 10370:1 10372:1 10402:1 10405:1 10414:1 10436:1 10448:1 10470:1 10478:2 10484:1 10486:1 10488:1 10493:1 10501:1 10504:3 10507:2 10513:5 10521:1 10523:1 10524:1 10526:1 10533:1 10537:1 10539:3 10541:1 10555:3 10557:3 10558:1 10564:1 10573:3 10582:4 10583:3 10590:2 10592:2 10593:1 10621:1 10628:1 10639:1 10641:1 10657:7 10665:5 10677:2 10683:4 10686:13 10737:1 10740:1 10747:1 10748:2 10783:4 10787:1 10790:1 10805:1 10824:1 10835:2 10839:1 10846:1 10857:1 10883:1 10901:1 10903:4 10905:3 10909:2 10910:2 10918:1 10921:2 10931:2 10937:1 10943:2 10946:1 10947:1 10953:1 10962:1 10969:1 10989:6 10992:1 11010:6 11014:1 11016:1 11018:2 11021:1 11040:1 11062:1 11063:2 11064:2 11066:1 11071:1 11080:1 11083:1 11085:1 11094:1 11100:1 11106:1 11107:1 11118:1 11131:1 11138:2 11145:1 11147:1 11152:1 11163:1 11173:1 11175:1 11177:1 11188:1 11197:1 11203:5 11208:1 11216:1 11230:2 11232:1 11234:1 11248:1 11260:1 11268:2 11274:1 11278:2 11284:1 11285:1 11287:1 11300:2 11301:1 11302:2 11308:2 11315:3 11317:1 11333:8 11341:1 11367:1 11370:10 11371:1 11385:1 11400:1 11401:1 11407:1 11430:1 11442:1 11444:2 11466:2 11468:1 11469:1 11470:1 11476:1 11477:2 11479:1 11481:2 11496:1 11501:1 11506:1 11509:2 11514:1 11520:2 11526:3 11530:7 11547:7 11549:1 11550:6 11580:1 11587:1 11600:2 11601:1 11603:3 11606:1 11609:1 11611:2 11614:1 11615:2 11619:3 11622:1 11631:2 11632:3 11633:1 11636:2 11641:3 11645:1 11649:1 11664:7 11671:1 11684:8 11690:1 11693:1 11696:1 11710:1 11711:2 11716:1 11727:1 11734:1 11755:1 11772:2 11789:1 11824:2 11826:1 11852:1 11865:3 11871:1 11877:2 11882:1 11891:1 11908:1 11916:1 11924:1 11931:3 11936:4 11952:1 11973:3 11977:1 11990:1 11997:1 12004:1 12005:1 12010:1 12025:1 12076:2 12107:1 12109:1 12110:2 12111:3 12115:2 12125:2 12132:1 12142:1 12154:1 12156:2 12165:4 12166:5 12172:2 12176:1 12178:1 12184:2 12219:1 12239:1 12243:1 12250:1 12263:1 12272:1 12276:2 12281:6 12297:1 12302:1 12318:1 12323:3 12337:1 12338:1 12345:1 12346:1 12349:2 12361:3 12362:1 12376:2 12380:2 12398:1 12405:1 12420:1 12423:4 12431:2 12457:1 12458:1 12464:1 12468:1 12472:1 12476:1 12477:6 12480:1 12491:1 12493:1 12495:1 12508:1 12512:1 12515:1 12526:2 12534:1 12586:1 12608:8 12621:1 12633:1 12635:1 12636:1 12644:1 12648:16 12654:1 12658:1 12668:3 12671:6 12676:1 12681:2 12701:1 12702:1 12708:3 12733:2 12764:1 12769:5 12772:2 12787:1 12789:1 12790:1 12791:1 12796:2 12797:1 12813:2 12827:4 12831:1 12835:1 12837:1 12860:1 12861:1 12885:1 12888:1 12914:1 12949:7 12954:1 12984:1 12999:1 13045:8 13049:1 13066:3 13068:1 13072:1 13076:7 13080:4 13086:1 13087:1 13093:1 13094:6 13120:1 13128:2 13133:1 13142:1 13143:1 13144:1 13166:5 13194:1 13206:1 13211:2 13213:1 13224:6 13231:1 13232:4 13233:2 13244:1 13250:1 13251:1 13252:2 13257:1 13263:2 13275:2 13278:1 13282:1 13283:1 13287:1 13301:2 13302:4 13306:1 13310:1 13320:3 13331:1 13341:2 13346:1 13364:2 13372:7 13376:1 13396:1 13401:1 13416:4 13420:1 13421:4 13440:1 13454:1 13468:2 13490:1 13503:1 13506:1 13520:1 13524:1 13533:1 13556:1 13557:2 13561:2 13570:1 13571:1 13599:4 13600:1 13601:2 13606:4 13607:2 13610:2 13619:1 13620:1 13628:1 13633:1 13654:3 13674:1 13680:3 13691:2 13694:2 13697:1 13698:1 13723:1 13733:6 13745:1 13764:2 13779:3 13782:1 13784:1 13788:2 13799:1 13813:1 13827:7 13832:3 13833:1 13838:1 13847:2 13886:1 13895:1 13904:3 13931:10 13942:1 13963:1 13974:1 13980:2 13986:1 14006:1 14018:1 14024:1 14029:1 14054:2 14076:6 14086:2 14089:1 14107:3 14119:1 14126:1 14134:1 14140:1 14152:1 14161:1 14170:1 14179:4 14180:1 14181:1 14196:1 14212:1 14223:1 14235:1 14245:1 14255:1 14266:2 14274:2 14284:2 14297:1 14299:3 14312:2 14313:1 14317:3 14318:9 14324:1 14325:6 14335:3 14339:1 14340:2 14347:1 14358:1 14360:1 14361:1 14376:1 14385:1 14427:2 14433:1 14434:1 14449:5 14476:1 14482:2 14485:1 14489:2 14490:1 14492:1 14493:4 14498:4 14502:1 14514:1 14523:1 14532:1 14533:3 14537:1 14551:1 14554:1 14573:1 14591:3 14600:2 14614:2 14616:3 14623:1 14624:1 14636:2 14637:2 14647:4 14650:1 14664:3 14674:1 14683:2 14700:1 14701:1 14761:1 14775:1 14780:1 14785:1 14798:1 14803:2 14820:3 14821:1 14823:1 14824:1 14836:1 14837:1 14881:1 14883:1 14891:7 14893:1 14910:2 14912:1 14916:2 14935:1 14936:8 14938:3 14961:2 14970:1 14984:2 14986:1 14999:1 15000:1 15020:8 15022:1 15024:1 15037:1 15055:1 15085:1 15109:1 15117:1 15123:4 15125:1 15129:1 15130:1 15134:1 15145:1 15146:2 15158:1 15160:1 15173:1 15177:2 15178:1 15180:1 15207:1 15217:1 15223:1 15233:1 15238:1 15241:1 15244:1 15245:3 15259:2 15275:1 15282:1 15301:2 15309:1 15322:1 15332:11 15345:2 15380:1 15385:2 15395:1 15398:1 15403:1 15404:4 15414:5 15420:1 15424:1 15431:1 15435:1 15436:1 15440:1 15453:2 15455:1 15459:2 15471:1 15482:2 15496:1 15509:1 15512:1 15527:1 15539:1 15556:1 15563:5 15568:1 15571:1 15578:10 15581:3 15590:1 15591:3 15595:1 15598:1 15607:2 15614:4 15622:2 15624:1 15625:7 15626:2 15631:1 15637:1 15642:1 15644:1 15678:1 15679:1 15687:2 15706:1 15710:1 15711:1 15715:1 15717:2 15725:4 15742:1 15745:9 15750:1 15757:1 15763:2 15768:1 15777:1 15785:3 15814:2 15831:6 15832:3 15835:1 15837:1 15839:1 15871:1 15877:1 15879:3 15893:1 15896:1 15906:1 15909:4 15911:2 15913:1 15923:1 15957:1 15967:1 15973:4 16002:1 16014:1 16026:1 16029:17 16030:1 16048:4 16051:2 16055:1 16056:1 16067:1 16084:1 16095:2 16103:1 16119:4 16122:1 16127:1 16137:2 16146:1 16147:1 16149:1 16150:1 16154:1 16164:1 16170:2 16172:1 16177:2 16181:1 16190:2 16194:1 16196:1 16237:1 16242:2 16285:4 16288:1 16289:1 16290:2 16310:1 16336:1 16338:1 16353:1 16363:1 16383:1 16398:1 16400:1 16403:3 16434:2 16475:1 16482:1 16488:1 16489:1 16505:1 16511:1 16527:1 16528:1 16542:1 16543:1 16546:1 16555:2 16575:1 16588:1 16589:1 16597:1 16604:2 16605:1 16614:1 16639:1 16646:1 16662:1 16666:2 16672:1 16675:2 16685:2 16702:1 16708:1 16710:1 16714:3 16716:2 16718:1 16727:1 16738:1 16747:1 16758:1 16761:1 16776:1 16789:2 16801:1 16802:1 16828:1 16830:1 16840:4 16843:1 16844:5 16851:1 16867:1 16874:1 16883:1 16899:1 16905:1 16908:1 16915:8 16929:1 16930:1 16932:2 16939:1 16942:1 16947:2 16966:4 16974:1 16977:2 16990:1 16991:1 16995:2 17013:2 17015:1 17036:1 17042:1 17046:2 17050:1 17053:2 17059:6 17067:2 17087:1 17091:6 17092:1 17106:1 17110:1 17136:2 17138:2 17155:4 17156:2 17167:1 17172:1 17179:1 17181:1 17186:2 17187:2 17198:3 17199:7 17200:1 17207:2 17210:1 17244:1 17251:1 17265:1 17270:2 17277:2 17281:1 17327:1 17343:1 17346:1 17360:1 17363:4 17369:2 17374:2 17397:1 17401:1 17417:1 17422:1 17442:1 17445:1 17447:1 17448:3 17454:3 17455:1 17456:1 17463:4 17475:3 17476:2 17477:1 17509:1 17511:2 17522:5 17523:4 17538:1 17558:2 17560:3 17575:1 17585:1 17587:1 17592:7 17597:1 17604:1 17631:1 17636:1 17644:2 17647:2 17648:1 17652:1 17655:1 17662:1 17664:2 17665:5 17667:1 17669:1 17670:1 17674:1 17683:2 17687:1 17691:1 17692:1 17698:1 17707:1 17721:1 17722:3 17747:1 17753:2 17764:1 17766:2 17767:8 17772:4 17781:31 17783:1 17785:1 17787:1 17790:2 17794:1 17803:1 17812:4 17819:1 17822:1 17831:1 17838:1 17845:1 17852:1 17855:1 17860:2 17871:1 17872:4 17873:1 17875:1 17882:1 17886:1 17896:4 17907:1 17922:1 17931:5 17962:1 17967:1 17977:2 17979:1 17989:1 17994:2 17998:2 18007:5 18009:1 18011:1 18019:1 18032:2 18045:1 18056:1 18058:1 18067:1 18080:1 18084:1 18114:1 18120:1 18133:1 18150:2 18152:2 18167:1 18169:1 18170:1 18178:1 18184:1 18212:1 18219:3 18220:1 18249:2 18315:4 18323:1 18331:1 18340:1 18348:2 18357:1 18380:2 18381:3 18382:3 18399:2 18410:1 18417:5 18424:1 18444:1 18449:1 18459:1 18461:1 18465:1 18471:3 18476:2 18478:3 18481:1 18495:1 18498:1 18499:1 18504:5 18509:1 18512:1 18516:1 18519:2307 18524:1 18534:1 18538:1 18572:4 18573:1 18582:3 18607:1 18608:1 18619:1 18643:2 18648:2 18657:1 18668:2 18684:2 18690:1 18691:1 18702:1 18708:3 18715:6 18720:1 18725:5 18727:3 18728:4 18743:1 18748:2 18763:1 18792:1 18802:7 18808:2 18810:2 18814:1 18816:1 18840:1 18842:33 18850:1 18861:1 18863:7 18904:1 18907:1 18915:1 18919:1 18920:1 18930:2 18938:1 18947:1 18968:1 18969:1 18971:1 18982:2 18991:3 19007:1 19008:1 19017:1 19033:1 19055:2 19061:1 19065:1 19079:1 19089:1 19091:1 19113:1 19121:1 19135:2 19140:2 19142:3 19168:2 19172:1 19174:2 19176:3 19180:1 19187:1 19190:2 19192:2 19197:4 19202:1 19210:1 19218:1 19228:5 19235:1 19239:1 19256:1 19257:2 19271:2 19273:1 19289:1 19291:1 19293:4 19298:10 19314:1 19315:1 19335:7 19336:1 19350:2 19353:1 19359:1 19370:1 19412:1 19414:1 19420:3 19442:2 19475:1 19482:1 19494:1 19497:1 19507:4 19508:1 19515:3 19516:2 19531:2 19534:1 19549:1 19550:3 19551:1 19557:1 19563:3 19566:1 19573:1 19592:2 19600:1 19605:1 19628:1 19634:2 19661:3 19674:1 19680:1 19708:2 19719:1 19720:1 19724:1 19735:3 19742:1 19745:1 19751:1 19752:1 19754:1 19767:2 19771:4 19775:6 19777:1 19778:1 19784:4 19794:1 19807:1 19816:1 19818:1 19829:1 19833:1 19839:2 19859:1 19862:1 19876:2 19881:1 19904:2 19909:5 19918:1 19932:1 19936:2 19948:1 19949:4 19953:1 19964:1 19966:1 19978:4 19979:1 19992:1 19996:1 20001:1 20003:2 20004:2 20007:1 20017:1 20020:1 20031:1 20032:1 20036:1 20037:1 20052:1 20061:4 20068:1 20074:1 20079:1 20084:3 20086:1 20094:1 20103:1 20117:2 20118:2 20137:1 20159:5 20170:1 20187:1 20211:6 20212:3 20218:3 20226:2 20231:1 20237:1 20238:1 20272:1 20276:1 20281:1 20283:3 20293:2 20299:1 20302:1 20313:1 20345:1 20373:1 20395:1 20400:1 20401:1 20404:3 20406:4 20408:1 20412:1 20420:1 20422:1 20443:1 20453:1 20454:1 20455:7 20465:2 20466:1 20467:1 20468:4 20474:2 20495:1 20525:1 20530:1 20531:2 20532:1 20542:1 20545:1 20547:2 20567:4 20577:1 20594:1 20599:1 20600:1 20604:1 20626:1 20631:1 20643:1 20644:1 20652:1 20656:1 20658:3 20671:1 20677:4 20679:1 20682:1 20683:1 20685:2 20686:1 20692:1 20697:1 20701:1 20705:4 20710:1 20715:1 20716:1 20721:3 20722:3 20730:1 20734:1 20738:1 20747:7 20770:1 20780:2 20781:1 20782:3 20783:1 20797:1 20798:1 20823:3 20833:1 20846:1 20857:1 20862:1 20900:2 20907:2 20918:1 20925:1 20945:1 20948:2 20957:2 20979:6 20985:1 20986:1 20988:1 21010:2 21016:1 21019:2 21029:1 21049:1 21062:2 21075:1 21079:1 21080:1 21085:1 21088:1 21091:2 21100:1 21107:1 21122:1 21137:2 21142:1 21158:1 21169:2 21174:1 21193:1 21196:1 21198:2 21201:1 21211:1 21250:1 21257:1 21265:1 21276:1 21284:1 21285:1 21288:1 21289:1 21313:1 21320:1 21339:1 21345:1 21357:1 21358:2 21359:1 21371:4 21372:1 21373:1 21374:2 21380:1 21381:1 21386:3 21387:3 21389:2 21392:1 21397:1 21405:1 21406:1 21407:1 21409:1 21410:1 21415:2 21434:1 21440:1 21442:2 21444:1 21448:1 21459:1 21472:4 21486:1 21488:2 21490:1 21493:1 21498:2 21499:2 21503:1 21504:1 21509:2 21518:2 21519:1 21520:1 21523:2 21528:1 21538:1 21544:1 21548:9 21551:1 21567:1 21568:2 21569:4 21580:2 21616:1 21634:2 21647:2 21648:1 21654:2 21661:1 21663:2 21670:1 21675:8 21684:2 21691:1 21695:3 21712:1 21714:2 21715:1 21724:1 21750:1 21770:1 21771:1 21778:1 21804:1 21809:1 21811:1 21812:5 21822:1 21824:1 21826:1 21827:2 21829:2 21830:1 21838:1 21845:1 21846:6 21847:1 21848:3 21867:2 21870:1 21877:1 21885:1 21901:2 21916:2 21919:1 21931:1 21937:3 21941:1 21952:1 21967:1 21971:1 21975:1 21994:3 21999:1 22009:4 22012:2 22016:3 22017:1 22020:1 22021:1 22025:1 22052:1 22059:2 22061:1 22065:2 22077:2 22080:1 22096:3 22115:1 22132:1 22135:1 22144:1 22147:1 22150:1 22173:5 22174:5 22178:3 22179:1 22180:2 22189:2 22190:1 22205:1 22212:2 22222:1 22223:4 22230:1 22236:1 22239:1 22243:2 22248:1 22252:3 22257:2 22258:4 22265:1 22277:2 22290:1 22291:1 22293:1 22294:3 22295:1 22302:1 22315:2 22318:1 22329:2 22331:1 22332:1 22336:1 22337:1 22342:1 22345:3 22357:1 22362:3 22368:1 22390:1 22391:5 22392:1 22401:1 22406:2 22412:1 22414:31 22419:1 22420:3 22422:4 22425:1 22426:3 22427:4 22430:1 22432:1 22434:1 22453:3 22455:1 22461:1 22464:3 22467:1 22473:2 22493:2 22495:2 22496:1 22507:2 22529:3 22538:1 22542:1 22547:1 22579:3 22585:1 22593:8 22599:1 22616:2 22621:2 22634:1 22646:1 22672:1 22674:2 22676:2 22679:1 22680:1 22687:1 22691:3 22692:1 22695:1 22699:2 22705:1 22706:1 22721:4 22726:2 22736:1 22737:1 22758:1 22776:1 22777:2 22782:1 22784:1 22788:1 22808:1 22837:1 22848:1 22866:1 22867:1 22878:1 22886:1 22896:2 22902:1 22919:1 22921:1 22931:2 22935:1 22947:2 22948:1 22955:1 22962:2 22964:1 22965:2 22971:2 22980:3 22981:1 22982:1 22998:3 23001:3 23021:2 23024:1 23027:1 23033:3 23038:1 23057:1 23060:1 23069:1 23072:1 23099:1 23130:1 23143:1 23148:1 23165:2 23175:1 23184:3 23188:2 23195:1 23196:1 23207:3 23227:2 23234:2 23235:1 23239:1 23241:1 23248:1 23254:1 23275:2 23283:3 23297:1 23299:5 23302:1 23310:1 23313:2 23326:2 23340:1 23343:1 23349:1 23352:1 23361:12 23368:1 23394:2 23403:1 23408:1 23437:2 23439:1 23441:1 23452:1 23482:1 23488:2 23494:1 23504:1 23519:1 23520:1 23527:1 23532:3 23545:1 23559:2 23568:1 23581:1 23591:1 23592:1 23600:3 23604:1 23616:7 23618:2 23620:1 23635:4 23647:1 23651:1 23659:2 23667:1 23716:1 23720:1 23722:1 23732:3 23736:1 23744:1 23749:2 23758:1 23774:1 23785:1 23798:1 23806:1 23814:1 23831:1 23832:1 23875:4 23884:5 23885:1 23896:4 23899:1 23910:1 23912:1 23918:2 23919:1 23920:1 23928:1 23932:1 23939:2 23941:1 23966:2 23973:1 23979:1 23992:1 23994:3 23995:2 23996:1 24001:1 24025:2 24030:1 24044:1 24047:2 24052:1 24057:2 24058:3 24064:1 24068:1 24073:1 24093:1 24098:1 24101:1 24114:1 24124:1 24146:1 24148:1 24150:2 24156:1 24159:2 24160:1 24162:7 24164:3 24166:4 24167:2 24171:1 24172:2 24174:2 24175:4 24182:2 24183:4 24187:2 24193:2 24206:5 24213:2 24233:1 24236:2 24237:1 24242:1 24247:2 24263:4 24267:3 24291:2 24295:1 24297:1 24307:3 24321:1 24324:1 24342:1 24345:1 24347:1 24348:2 24362:1 24390:1 24401:1 24402:1 24419:3 24440:4 24448:1 24450:4 24453:1 24464:2 24466:1 24496:1 24499:1 24508:1 24512:2 24513:1 24521:1 24524:1 24547:2 24548:1 24558:1 24571:1 24582:1 24584:1 24609:2 24630:3 24640:1 24645:1 24648:1 24654:1 24658:2 24665:2 24707:4 24746:1 24757:2 24763:1 24772:1 24780:1 24783:4 24791:1 24793:1 24797:1 24810:1 24816:1 24822:4 24878:1 24899:1 24900:2 24912:3 24915:8 24946:11 24955:1 24969:9 24990:1 24997:1 25005:1 25015:2 25019:1 25028:1 25038:2 25041:1 25042:1 25045:1 25046:1 25047:1 25071:1 25085:1 25089:1 25093:2 25099:2 25104:1 25109:1 25111:2 25114:6 25122:1 25137:2 25139:2 25141:9 25144:4 25145:2 25155:1 25162:1 25167:2 25168:1 25170:1 25177:1 25182:1 25214:2 25219:1 25225:4 25230:1 25240:1 25247:3 25258:2 25259:2 25319:2 25320:1 25335:1 25342:1 25345:1 25346:1 25356:1 25384:2 25386:1 25401:1 25410:1 25412:3 25413:1 25416:2 25417:1 25425:1 25436:5 25465:1 25468:1 25473:1 25474:1 25479:2 25488:1 25492:1 25515:1 25557:1 25561:1 25569:1 25576:1 25600:1 25618:1 25657:1 25663:1 25665:1 25676:1 25679:3 25680:2 25691:1 25700:1 25701:1 25708:2 25718:2 25726:1 25729:1 25742:1 25757:1 25759:2 25781:1 25796:5 25804:1 25812:1 25816:2 25826:1 25829:1 25835:1 25838:5 25850:1 25859:1 25864:1 25865:4 25880:2 25882:1 25901:1 25903:1 25906:2 25910:1 25916:2 25929:1 25930:1 25936:2 25953:2 25971:2 25988:1 25992:6 25994:1 26021:5 26024:1 26033:1 26038:1 26040:1 26042:1 26059:2 26087:1 26088:1 26093:4 26107:1 26112:2 26113:2 26114:1 26118:1 26122:1 26123:1 26127:3 26128:2 26133:1 26162:1 26166:4 26170:1 26175:1 26182:1 26185:1 26190:1 26213:2 26221:2 26225:1 26247:2 26249:1 26261:2 26262:1 26267:1 26285:1 26290:2 26300:1 26309:1 26316:1 26332:2 26338:1 26339:1 26341:1 26352:1 26368:3 26373:5 26392:2 26453:1 26476:1 26478:1 26479:1 26482:1 26499:1 26504:1 26524:1 26526:1 26542:1 26547:1 26548:1 26551:1 26556:1 26559:1 26566:1 26569:1 26574:2 26582:1 26588:2 26599:1 26611:1 26619:1 26621:1 26622:1 26624:1 26641:1 26654:2 26657:2 26658:1 26662:1 26667:3 26681:4 26700:4 26707:1 26709:5 26721:1 26736:1 26737:1 26743:1 26759:3 26772:1 26778:1 26787:1 26788:10 26807:1 26817:1 26838:1 26840:2 26844:1 26845:1 26847:1 26848:2 26856:12 26866:1 26890:1 26894:3 26920:1 26933:2 26934:1 26938:1 26954:2 26960:6 26965:2 26967:2 26981:1 26985:2 26988:1 26994:3 27003:1 27006:1 27016:1 27022:1 27033:1 27036:1 27057:1 27058:3 27061:1 27069:2 27070:1 27079:1 27090:3 27103:1 27108:1 27113:1 27135:2 27136:1 27141:2 27143:1 27145:1 27147:1 27149:2 27160:2 27169:1 27177:1 27187:1 27188:1 27229:1 27247:1 27275:1 27279:1 27298:1 27330:1 27332:1 27342:2 27365:5 27368:1 27376:1 27385:1 27392:1 27408:1 27412:1 27419:1 27422:1 27447:1 27465:1 27472:1 27474:1 27481:2 27500:1 27517:1 27536:3 27549:1 27560:1 27563:6 27575:1 27595:1 27597:4 27603:1 27620:1 27627:2 27636:1 27647:2 27658:1 27661:1 27662:1 27673:1 27675:2 27678:1 27687:26 27689:4 27692:5 27694:1 27695:3 27702:1 27724:7 27739:1 27777:3 27789:2 27804:1 27808:2 27820:1 27821:3 27832:5 27838:2 27859:12 27863:2 27867:3 27869:1 27874:2 27878:1 27879:2 27885:1 27887:1 27889:1 27893:2 27900:2 27906:1 27907:1 27909:1 27917:2 27923:2 27930:1 27934:2 27935:2 27943:1 27948:2 27951:1 27960:1 27964:1 27968:1 27969:2 27975:1 27989:1 28003:1 28011:1 28028:2 28030:1 28031:1 28046:1 28050:1 28051:1 28054:1 28058:1 28068:5 28075:1 28082:1 28100:1 28102:2 28126:1 28127:2 28128:2 28131:1 28160:1 28169:1 28174:1 28177:1 28178:1 28180:1 28183:2 28187:5 28191:1 28193:1 28202:1 28203:1 28204:1 28208:2 28214:2 28215:1 28217:1 28218:1 28223:1 28264:1 28292:1 28315:1 28319:1 28320:1 28326:1 28341:1 28350:1 28356:1 28359:2 28362:1 28363:2 28367:1 28373:1 28375:3 28378:1 28380:1 28387:1 28397:7 28404:2 28405:2 28409:1 28411:6 28413:1 28419:1 28461:1 28469:2 28470:1 28506:3 28514:1 28520:1 28536:4 28541:1 28543:2 28551:1 28553:1 28560:6 28565:1 28569:1 28594:1 28596:1 28626:1 28627:1 28646:1 28648:1 28665:2 28681:1 28685:3 28703:2 28709:1 28724:1 28728:1 28734:1 28748:1 28754:1 28761:2 28792:1 28801:7 28815:1 28816:1 28818:1 28831:1 28836:7 28849:5 28850:1 28867:1 28904:1 28913:8 28914:3 28916:2 28919:1 28921:1 28924:3 28925:3 28941:1 28947:1 28958:1 28959:2 28961:3 28963:3 29003:1
9 11:1 14:2 24:1 28:1 34:1 37:4 45:1 56:1 60:1 63:1 65:1 74:1 79:1 82:1 83:1 89:1 90:1 103:1 109:1 113:1 117:1 125:1 133:1 143:1 150:1 153:3 162:1 170:4 189:8 192:1 203:1 214:1 240:1 245:1 270:1 275:1 282:2 293:1 295:33 303:2 315:1 316:3 318:5 320:2 326:1 333:1 348:3 350:1 354:1 363:1 381:1 403:2 424:3 432:1 433:1 437:1 438:1 442:1 444:1 460:1 515:1 523:1 561:2 563:4 564:1 569:2 572:4 590:4 596:2 598:2 600:1 613:2 626:1 634:4 638:1 643:2 650:1 674:1 678:2 685:1 692:1 695:1 702:1 716:1 728:1 734:2 735:1 748:1 752:1 767:2 770:1 788:1 795:1 804:1 805:1 807:2 808:1 828:1 830:8 832:3 842:3 843:1 855:1 856:15 858:1 860:1 867:1 871:1 875:2 877:5 879:7 881:1 885:2 889:1 892:1 893:1 899:1 900:1 905:4 916:1 924:2 925:2 941:1 963:1 974:3 989:1 996:4 998:2 1002:2 1011:1 1019:1 1020:2 1027:1 1028:1 1038:1 1045:1 1046:1 1059:1 1061:2 1078:1 1086:1 1087:1 1089:2 1092:2 1104:3 1112:2 1117:1 1123:1 1136:1 1137:1 1143:1 1148:3 1152:1 1160:1 1163:1 1179:1 1207:2 1228:1 1230:1 1231:1 1232:2 1241:2 1244:1 1257:1 1262:1 1276:1 1284:1 1287:1 1300:2 1313:1 1330:1 1345:1 1353:1 1355:3 1369:1 1374:2 1376:1 1394:1 1397:2 1400:6 1401:10 1402:1 1417:1 1418:1 1419:3 1420:1 1422:1 1423:2 1438:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1506:2 1507:1 1508:1 1516:7 1518:1 1543:2 1547:1 1555:1 1557:1 1560:1 1562:3 1564:3 1571:1 1578:1 1596:5 1598:1 1617:1 1619:3 1627:6 1634:2 1659:1 1660:1 1677:1 1678:1 1682:1 1699:1 1709:1 1743:3 1757:1 1760:1 1762:1 1778:4 1789:1 1794:1 1802:1 1811:1 1819:1 1826:1 1828:1 1830:2 1831:1 1875:1 1888:1 1889:1 1892:2 1895:18 1903:1 1907:2 1919:2 1923:1 1929:1 1935:1 1936:1 1952:1 1954:1 1962:8 1963:1 1965:2 1993:1 1998:1 2006:2 2011:3 2045:1 2048:1 2051:1 2082:1 2085:1 2089:3 2095:2 2100:1 2101:1 2105:1 2108:1 2124:1 2132:1 2142:1 2150:1 2154:1 2156:1 2158:1 2159:5 2160:1 2162:2 2165:1 2172:1 2174:4 2177:2 2178:2 2179:4 2180:1 2181:1 2187:1 2190:2 2191:1 2207:1 2212:1 2215:2 2216:2 2219:2 2220:2 2221:8 2223:5 2226:1 2227:2 2228:4 2232:1 2233:1 2234:1 2237:2 2239:1 2245:1 2247:2 2249:1 2251:6 2252:2 2253:7 2264:1 2268:1 2269:1 2279:1 2297:1 2309:2 2315:1 2322:1 2336:1 2339:1 2343:1 2347:1 2358:3 2370:4 2371:1 2374:1 2376:1 2384:2 2387:1 2392:2 2410:4 2421:6 2433:1 2439:1 2445:1 2461:1 2465:1 2473:1 2485:5 2494:5 2500:1 2520:1 2522:2 2536:1 2543:4 2552:3 2561:2 2563:1 2570:1 2580:2 2609:2 2631:1 2635:1 2641:1 2648:1 2651:3 2656:1 2659:1 2667:2 2670:1 2672:1 2675:1 2676:1 2683:1 2688:1 2691:1 2704:1 2708:2 2712:1 2713:1 2723:1 2730:3 2756:1 2760:1 2761:2 2762:1 2766:7 2770:3 2775:6 2780:1 2781:1 2782:1 2810:1 2813:2 2816:2 2818:2 2826:2 2836:2 2854:6 2857:1 2867:24 2870:1 2883:4 2888:1 2900:2 2909:1 2915:1 2931:1 2936:12 2951:1 2954:1 2961:5 2965:7 2966:1 2968:1 2969:1 2972:1 2989:1 3015:1 3023:1 3026:1 3030:1 3068:1 3074:4 3075:1 3089:1 3097:1 3105:1 3106:2 3112:1 3166:1 3188:2 3197:1 3205:1 3216:1 3224:1 3231:1 3232:5 3237:1 3243:1 3248:1 3255:1 3256:1 3266:1 3271:1 3272:1 3279:1 3283:1 3293:1 3295:5 3314:1 3338:1 3352:2 3357:13 3397:1 3407:1 3420:2 3424:2 3459:1 3471:1 3472:2 3475:2 3478:1 3488:1 3489:1 3495:2 3509:1 3517:2 3528:1 3540:2 3548:1 3558:1 3570:3 3574:1 3577:1 3580:2 3582:7 3599:5 3604:2 3605:1 3606:1 3607:3 3608:2 3615:1 3634:2 3638:1 3639:6 3647:1 3648:1 3669:1 3680:1 3684:1 3687:2 3688:3 3692:1 3695:2 3698:2 3712:1 3730:1 3737:1 3740:1 3742:4 3744:1 3746:2 3748:12 3763:1 3779:1 3783:5 3784:1 3788:2 3789:12 3790:3 3792:1 3796:1 3810:2 3813:7 3817:1 3822:1 3835:1 3836:3 3838:1 3848:1 3851:1 3862:1 3866:1 3874:1 3876:1 3883:1 3888:2 3895:1 3902:3 3904:3 3918:2 3919:2 3931:1 3934:1 3939:2 3940:1 3943:1 3948:1 3953:1 3955:1 3964:4 3970:1 3972:1 3977:2 3982:1 3983:1 3987:1 3988:2 3989:2 3998:4 3999:4 4005:1 4019:1 4033:1 4040:1 4051:1 4054:2 4069:1 4078:4 4085:2 4086:1 4093:1 4113:1 4124:1 4125:1 4129:1 4136:1 4137:1 4173:1 4190:6 4193:2 4201:1 4204:1 4208:1 4210:1 4219:1 4234:1 4254:1 4270:2 4272:2 4282:1 4296:1 4298:1 4314:2 4348:2 4352:1 4357:1 4362:5 4378:1 4385:1 4414:1 4416:1 4428:3 4434:1 4439:2 4455:1 4478:1 4491:1 4494:1 4528:2 4535:1 4549:1 4554:1 4560:1 4562:1 4565:1 4583:2 4585:2 4605:1 4613:1 4619:2 4623:1 4626:3 4640:1 4646:3 4657:2 4658:1 4676:2 4678:1 4691:1 4695:8 4713:1 4724:1 4731:1 4742:1 4746:1 4751:1 4759:1 4768:1 4773:7 4776:1 4787:2 4788:2 4803:1 4807:1 4810:1 4815:1 4818:1 4851:3 4867:1 4876:26 4878:2 4881:1 4895:3 4903:1 4909:4 4917:1 4925:2 4928:7 4940:2 4963:2 4964:1 4980:1 4981:1 4984:1 4985:7 5003:5 5005:6 5006:1 5008:1 5009:1 5011:1 5013:3 5014:1 5015:1 5017:3 5020:1 5022:1 5026:1 5028:3 5030:3 5031:1 5033:1 5041:1 5042:1 5045:4 5046:3 5049:1 5064:1 5066:1 5090:1 5096:1 5125:2 5131:2 5133:1 5157:2 5176:1 5177:1 5184:2 5186:1 5190:3 5195:2 5200:1 5203:3 5219:1 5220:1 5237:1 5245:2 5249:3 5255:1 5280:1 5285:1 5302:1 5306:1 5307:1 5316:1 5325:1 5328:1 5351:2 5358:8 5362:1 5365:1 5369:2 5371:2 5386:1 5394:1 5404:2 5423:1 5429:1 5434:2 5438:2 5444:1 5453:1 5480:1 5493:1 5501:1 5511:2 5524:2 5525:2 5534:1 5535:2 5538:2 5540:2 5548:1 5551:1 5556:2 5562:1 5563:1 5564:1 5569:1 5582:3 5584:1 5588:1 5589:1 5593:1 5599:1 5607:1 5615:3 5629:4 5639:1 5640:1 5663:3 5680:1 5681:3 5694:1 5701:3 5702:1 5705:1 5718:1 5720:4 5721:1 5728:2 5744:1 5749:1 5762:1 5773:1 5785:1 5790:1 5801:1 5802:1 5812:2 5813:1 5843:3 5850:1 5852:1 5855:1 5877:1 5881:2 5898:1 5920:1 5942:1 5947:4 5949:1 5969:2 5972:14 5987:4 5992:4 6000:1 6001:1 6006:5 6007:1 6009:2 6017:1 6039:3 6040:1 6043:1 6053:1 6056:1 6058:1 6078:2 6110:1 6117:1 6130:2 6137:2 6138:1 6142:1 6149:1 6150:1 6153:3 6156:1 6176:6 6178:1 6182:1 6192:1 6197:1 6199:1 6220:1 6244:1 6245:2 6247:1 6259:3 6262:1 6263:1 6264:1 6265:2 6267:1 6269:1 6270:4 6273:1 6274:3 6275:3 6276:5 6277:1 6279:2 6280:1 6282:4 6283:11 6284:5 6286:1 6316:1 6334:2 6379:4 6381:1 6383:1 6389:1 6420:2 6426:1 6435:2 6482:2 6493:1 6502:1 6507:1 6513:1 6531:1 6536:2 6537:1 6542:1 6554:1 6556:1 6558:1 6565:3 6580:1 6581:1 6585:1 6589:1 6598:1 6609:1 6613:1 6652:1 6653:2 6654:2 6661:1 6668:1 6671:1 6677:1 6679:2 6680:1 6689:1 6699:9 6715:2 6722:4 6728:1 6741:1 6744:1 6751:1 6757:1 6769:1 6777:1 6795:1 6810:2 6811:1 6823:2 6851:1 6854:2 6855:2 6860:3 6866:1 6869:1 6871:1 6885:3 6886:2 6903:1 6906:1 6914:2 6918:1 6919:2 6922:2 6927:1 6932:1 6938:1 6939:1 6948:2 6987:1 6999:1 7009:1 7036:1 7049:1 7050:10 7052:1 7067:1 7073:2 7074:2 7091:1 7097:2 7099:2 7102:1 7109:1 7124:1 7125:1 7155:2 7169:1 7174:1 7180:1 7198:3 7218:2 7234:1 7248:2 7263:3 7274:1 7278:1 7287:3 7288:1 7290:1 7297:1 7303:1 7311:1 7319:1 7322:1 7334:5 7346:3 7347:1 7352:1 7367:2 7371:1 7382:2 7383:1 7386:2 7401:1 7407:2 7411:1 7427:1 7463:2 7485:2 7496:1 7499:2 7510:1 7516:1 7518:1 7554:2 7555:13 7556:5 7560:1 7570:2 7580:2 7582:4 7584:2 7603:5 7604:1 7620:54 7622:2 7643:7 7644:12 7645:1 7648:3 7657:1 7665:1 7671:2 7682:1 7685:1 7686:1 7690:1 7696:1 7700:1 7710:1 7719:1 7720:3 7725:2 7734:1 7751:1 7755:1 7758:2 7773:2 7786:1 7826:2 7851:3 7862:1 7871:1 7874:1 7878:2 7892:1 7897:6 7928:1 7931:1 7943:1 7962:1 7967:1 7994:1 8004:1 8007:1 8032:1 8035:1 8037:1 8043:3 8044:3 8045:1 8046:1 8062:2 8063:2 8082:1 8087:1 8093:1 8105:1 8107:2 8110:1 8116:2 8122:1 8124:2 8130:2 8131:1 8136:1 8141:1 8142:3 8145:1 8154:1 8156:9 8180:2 8184:1 8186:2 8194:1 8205:1 8236:1 8254:1 8270:1 8299:1 8301:2 8311:2 8319:2 8334:1 8336:1 8340:1 8358:1 8367:4 8369:2 8376:3 8379:1 8383:3 8387:2 8394:1 8395:3 8405:1 8412:1 8422:1 8430:5 8433:1 8438:2 8441:2 8445:1 8449:1 8460:1 8468:1 8480:1 8485:1 8490:1 8497:1 8500:3 8501:5 8503:4 8504:1 8505:2 8508:3 8510:8 8512:2 8513:3 8514:1 8516:1 8525:2 8526:2 8543:4 8549:2 8550:4 8565:1 8567:3 8571:1 8572:2 8575:2 8578:2 8582:2 8586:5 8604:2 8611:1 8639:1 8640:2 8647:1 8655:1 8657:1 8679:1 8683:1 8688:1 8710:1 8719:1 8725:1 8728:1 8739:1 8751:1 8756:3 8762:1 8772:2 8779:3 8805:2 8808:1 8810:2 8811:4 8815:3 8827:3 8833:1 8840:1 8846:1 8857:1 8914:1 8921:1 8929:1 8936:2 8950:5 8954:2 8969:2 8971:1 8992:3 9001:1 9009:1 9011:1 9019:1 9022:2 9023:1 9035:1 9040:1 9050:1 9057:1 9060:1 9065:1 9068:1 9069:1 9077:3 9107:1 9115:4 9121:1 9128:1 9130:1 9134:1 9139:2 9142:2 9145:1 9151:1 9161:2 9162:1 9196:1 9200:2 9207:7 9209:1 9210:1 9216:2 9219:1 9223:1 9226:33 9230:3 9231:2 9246:2 9247:1 9261:1 9275:1 9286:4 9298:1 9305:1 9312:1 9314:1 9319:1 9329:1 9338:2 9345:1 9349:1 9360:2 9363:6 9364:1 9365:2 9390:1 9392:1 9421:1 9427:1 9433:3 9448:1 9469:1 9490:1 9497:1 9528:1 9529:1 9537:1 9539:1 9544:1 9555:2 9558:1 9567:1 9568:1 9569:5 9574:1 9582:1 9586:4 9594:2 9601:2 9608:2 9634:2 9652:1 9663:7 9668:1 9676:1 9677:4 9687:2 9689:1 9697:1 9700:1 9702:1 9704:1 9712:1 9713:1 9746:3 9772:1 9780:1 9789:1 9790:1 9815:1 9823:2 9829:1 9847:7 9850:1 9856:1 9862:1 9865:1 9871:4 9877:2 9878:1 9880:1 9883:2 9885:1 9887:1 9890:1 9898:4 9911:1 9913:1 9917:1 9919:1 9921:1 9924:1 9928:3 9929:1 9932:2 9933:1 9938:1 9939:1 9948:1 9954:1 9956:1 9968:4 9986:1 9987:1 9996:1 10019:1 10037:1 10038:1 10043:1 10057:2 10065:1 10073:1 10094:1 10098:1 10117:1 10122:1 10124:2 10125:1 10126:1 10135:2 10157:1 10178:1 10188:1 10191:1 10195:1 10200:1 10228:1 10234:1 10241:2 10263:1 10265:1 10266:3 10280:1 10286:2 10297:1 10302:1 10305:1 10328:2 10329:1 10347:3 10351:2 10359:2 10370:1 10372:1 10402:1 10405:1 10414:1 10436:2 10448:1 10470:1 10478:2 10484:1 10486:1 10488:1 10493:1 10501:1 10504:3 10507:2 10513:5 10521:1 10523:1 10524:1 10526:1 10533:1 10537:1 10539:3 10541:1 10550:1 10554:1 10555:3 10557:3 10558:1 10564:1 10573:3 10582:4 10583:3 10590:2 10592:2 10593:1 10621:1 10628:1 10639:1 10641:1 10657:7 10665:5 10677:2 10683:4 10686:13 10737:1 10740:1 10747:1 10748:2 10783:4 10787:1 10790:1 10805:1 10824:1 10835:2 10839:1 10846:1 10857:1 10883:1 10901:1 10903:4 10905:4 10909:2 10910:2 10918:1 10921:2 10931:2 10937:1 10943:2 10946:1 10947:1 10953:1 10962:1 10963:1 10969:1 10989:6 10992:1 11005:1 11010:6 11014:1 11016:1 11018:2 11021:1 11040:1 11062:1 11063:2 11064:2 11066:1 11071:1 11080:1 11083:1 11085:1 11094:1 11100:1 11106:1 11107:1 11118:1 11131:1 11138:2 11145:1 11147:1 11152:1 11163:1 11173:1 11175:1 11177:1 11188:1 11197:1 11203:5 11208:1 11216:1 11230:2 11232:1 11234:1 11248:1 11260:1 11268:2 11274:1 11278:2 11284:1 11285:1 11287:1 11300:2 11301:1 11302:2 11308:2 11315:3 11317:1 11333:8 11341:1 11367:1 11370:11 11371:1 11385:1 11400:1 11401:1 11407:1 11430:1 11442:1 11444:2 11466:2 11468:1 11469:1 11470:1 11476:1 11477:2 11479:1 11481:2 11496:1 11501:1 11506:1 11509:2 11514:1 11520:2 11526:3 11530:7 11547:7 11549:1 11550:6 11580:1 11587:1 11600:2 11601:1 11603:3 11606:1 11609:1 11611:2 11614:1 11615:2 11619:3 11620:1 11622:1 11631:2 11632:3 11633:1 11636:2 11641:3 11645:1 11649:1 11664:7 11666:1 11671:1 11684:8 11690:2 11693:1 11696:1 11710:1 11711:2 11716:1 11727:1 11734:1 11755:1 11772:2 11789:2 11824:2 11826:1 11852:1 11865:3 11871:1 11877:2 11882:1 11891:1 11908:1 11916:1 11924:1 11931:3 11936:4 11952:1 11973:3 11977:1 11990:1 11997:1 12004:1 12005:1 12010:1 12025:1 12045:1 12076:2 12082:1 12100:1 12107:1 12109:1 12110:2 12111:3 12115:2 12125:2 12132:1 12141:1 12142:1 12154:1 12156:2 12165:4 12166:5 12172:2 12176:1 12178:1 12184:2 12219:1 12239:1 12243:1 12250:1 12263:1 12272:1 12276:2 12281:6 12297:1 12302:1 12318:1 12323:3 12337:1 12338:1 12345:1 12346:1 12349:2 12361:3 12362:1 12376:2 12380:2 12398:1 12405:1 12420:1 12423:4 12431:2 12457:1 12458:1 12464:1 12468:1 12472:1 12476:1 12477:6 12480:1 12491:1 12493:1 12495:1 12508:1 12512:1 12515:1 12526:2 12534:1 12586:1 12593:1 12608:8 12621:1 12633:1 12635:1 12636:1 12644:1 12648:16 12654:1 12658:1 12668:3 12671:6 12676:1 12681:2 12701:1 12702:1 12708:3 12733:2 12764:1 12769:5 12772:2 12782:1 12787:1 12789:1 12790:1 12791:1 12796:2 12797:1 12813:2 12827:5 12831:1 12835:1 12837:1 12860:1 12861:1 12885:1 12888:1 12914:1 12949:7 12954:1 12984:1 12999:1 13045:8 13049:1 13066:3 13068:1 13072:1 13076:7 13080:4 13086:1 13087:1 13093:2 13094:6 13120:1 13128:2 13131:1 13133:1 13142:1 13143:1 13144:1 13166:5 13194:1 13206:2 13211:2 13213:1 13222:1 13224:7 13231:1 13232:4 13233:2 13244:1 13250:1 13251:1 13252:2 13257:1 13263:2 13275:2 13278:1 13282:1 13283:1 13287:1 13301:2 13302:4 13306:1 13310:1 13320:3 13331:1 13341:2 13346:1 13364:2 13372:7 13376:1 13396:1 13401:1 13416:4 13420:1 13421:4 13440:1 13454:1 13468:2 13490:1 13503:1 13506:1 13520:1 13524:1 13533:1 13556:1 13557:2 13561:2 13570:1 13571:1 13599:4 13600:1 13601:2 13606:4 13607:2 13610:2 13619:1 13620:1 13628:1 13633:1 13654:3 13674:1 13680:3 13691:2 13694:2 13697:1 13698:1 13723:1 13733:7 13745:1 13764:3 13779:3 13782:1 13784:1 13788:2 13799:1 13813:1 13827:7 13832:3 13833:1 13838:1 13847:2 13886:1 13895:1 13904:3 13931:10 13942:1 13963:1 13974:1 13980:2 13986:1 14006:1 14018:1 14024:1 14029:1 14036:1 14054:2 14076:7 14086:2 14089:1 14107:3 14119:1 14126:1 14134:1 14140:1 14152:1 14161:1 14170:1 14179:4 14180:1 14181:1 14196:1 14212:1 14223:1 14235:1 14245:1 14255:1 14266:2 14274:2 14284:2 14297:1 14299:3 14312:2 14313:1 14317:3 14318:9 14324:1 14325:6 14335:3 14339:2 14340:2 14347:1 14358:1 14360:1 14361:1 14376:1 14385:1 14427:2 14433:1 14434:1 14449:5 14476:1 14482:2 14485:1 14489:2 14490:2 14492:1 14493:4 14498:4 14502:1 14514:1 14523:1 14532:1 14533:3 14537:1 14551:1 14554:1 14573:1 14591:4 14600:2 14614:2 14616:3 14623:1 14624:1 14636:2 14637:2 14647:4 14650:1 14664:3 14674:1 14683:2 14700:1 14701:1 14761:1 14775:1 14780:1 14785:1 14798:1 14803:2 14820:3 14821:1 14823:1 14824:1 14836:1 14837:1 14881:1 14883:1 14891:7 14893:1 14910:2 14912:1 14916:3 14923:1 14935:1 14936:8 14938:3 14961:2 14970:1 14984:2 14986:1 14999:1 15000:1 15020:8 15022:1 15024:1 15037:1 15055:1 15085:1 15109:1 15117:1 15123:4 15125:1 15129:1 15130:1 15134:1 15145:1 15146:2 15152:1 15158:1 15160:1 15173:1 15177:2 15178:1 15180:1 15207:1 15217:1 15223:1 15233:1 15238:1 15241:1 15244:1 15245:3 15259:2 15275:1 15282:1 15301:2 15309:1 15322:1 15332:11 15338:2 15345:2 15380:1 15385:2 15395:1 15398:1 15403:1 15404:4 15414:5 15420:1 15424:1 15431:1 15435:1 15436:1 15440:1 15453:2 15455:1 15459:2 15471:1 15482:2 15496:1 15509:1 15512:1 15527:1 15539:1 15556:1 15563:5 15568:1 15571:1 15578:11 15581:3 15590:1 15591:3 15595:1 15598:1 15607:2 15614:5 15622:2 15624:1 15625:7 15626:3 15631:1 15637:1 15642:1 15644:1 15678:1 15679:1 15687:2 15706:1 15710:1 15711:1 15715:1 15717:2 15725:4 15742:1 15745:9 15750:1 15757:1 15763:2 15767:1 15768:1 15777:1 15785:3 15814:2 15831:6 15832:3 15835:1 15837:1 15839:1 15871:1 15877:1 15879:3 15893:1 15896:1 15906:1 15909:4 15911:2 15913:1 15923:1 15957:1 15967:1 15973:4 16002:1 16014:1 16026:1 16029:17 16030:1 16048:4 16051:2 16055:1 16056:1 16067:1 16084:1 16095:2 16103:1 16119:4 16122:1 16127:1 16137:2 16146:1 16147:1 16149:1 16150:1 16154:1 16164:1 16170:2 16172:1 16177:2 16181:1 16190:2 16194:1 16196:1 16237:1 16242:2 16285:4 16288:1 16289:1 16290:2 16310:1 16329:1 16336:1 16338:1 16353:1 16363:1 16383:1 16398:1 16400:1 16403:3 16434:2 16475:1 16482:1 16488:1 16489:1 16505:1 16511:1 16527:1 16528:1 16542:1 16543:1 16546:1 16555:2 16575:1 16588:1 16589:1 16597:1 16604:2 16605:1 16614:1 16639:1 16646:1 16662:1 16666:2 16672:1 16675:2 16685:2 16702:1 16708:1 16710:1 16714:3 16716:3 16718:1 16727:1 16738:1 16747:1 16758:1 16759:1 16761:1 16776:1 16787:1 16789:3 16801:1 16802:1 16828:1 16830:1 16840:4 16843:2 16844:5 16851:1 16867:1 16874:1 16883:1 16899:1 16905:1 16908:1 16915:8 16929:1 16930:1 16932:2 16939:1 16942:1 16947:2 16966:4 16974:1 16977:2 16990:1 16991:1 16995:2 17013:2 17015:1 17036:1 17042:1 17046:2 17050:1 17053:2 17059:6 17067:2 17087:1 17091:6 17092:1 17106:1 17110:1 17136:2 17138:2 17155:4 17156:2 17167:1 17172:1 17179:1 17181:1 17186:2 17187:2 17198:3 17199:7 17200:1 17207:2 17210:1 17244:1 17251:1 17265:1 17270:2 17277:2 17281:1 17327:1 17342:1 17343:1 17346:1 17360:1 17363:4 17369:2 17374:2 17397:1 17401:1 17417:1 17422:1 17442:1 17445:1 17447:2 17448:3 17454:3 17455:1 17456:1 17463:5 17475:3 17476:2 17477:1 17509:1 17511:2 17522:5 17523:4 17538:1 17558:2 17560:3 17575:1 17585:1 17587:1 17592:7 17597:1 17604:1 17631:1 17636:1 17644:2 17647:2 17648:1 17652:1 17655:1 17662:1 17664:2 17665:5 17667:1 17669:1 17670:1 17674:1 17683:3 17687:1 17691:1 17692:1 17698:1 17699:1 17707:1 17721:1 17722:3 17747:1 17753:2 17764:1 17766:2 17767:8 17772:4 17781:32 17783:1 17785:1 17787:1 17790:2 17794:1 17803:1 17812:4 17819:1 17822:1 17831:1 17838:1 17845:1 17852:1 17855:1 17860:3 17871:1 17872:4 17873:1 17875:1 17882:1 17886:1 17896:4 17907:1 17922:1 17931:5 17962:1 17967:1 17977:2 17979:1 17987:1 17989:1 17994:2 17998:2 18007:5 18009:1 18011:1 18019:1 18032:2 18045:1 18056:1 18058:1 18067:1 18080:1 18084:1 18098:1 18114:1 18120:1 18133:1 18150:2 18152:2 18167:1 18169:1 18170:1 18178:1 18184:1 18212:1 18219:3 18220:1 18239:1 18249:2 18288:1 18315:4 18323:1 18331:1 18340:1 18348:2 18357:1 18380:2 18381:3 18382:3 18399:2 18410:1 18417:6 18424:1 18444:1 18449:1 18459:1 18461:1 18465:1 18471:3 18476:2 18478:3 18481:1 18495:1 18498:1 18499:1 18504:5 18509:1 18512:2 18516:1 18519:2397 18524:1 18534:1 18538:1 18572:4 18573:1 18582:3 18607:1 18608:1 18619:1 18643:2 18648:2 18657:1 18668:2 18684:2 18690:1 18691:1 18702:1 18708:3 18715:6 18720:1 18725:5 18727:3 18728:4 18731:1 18743:1 18748:2 18763:1 18792:1 18802:7 18808:2 18810:2 18814:1 18816:1 18840:1 18842:33 18850:1 18861:1 18863:7 18904:1 18907:1 18915:1 18919:1 18920:1 18930:2 18938:1 18947:1 18968:1 18969:1 18971:1 18982:2 18991:3 19007:1 19008:1 19017:1 19033:2 19055:2 19061:1 19065:1 19079:1 19089:1 19091:1 19110:1 19113:1 19121:1 19135:2 19140:2 19142:3 19168:2 19172:1 19174:2 19176:3 19180:1 19187:1 19190:2 19192:2 19197:4 19202:1 19210:1 19218:1 19228:5 19235:1 19239:1 19256:1 19257:2 19271:2 19273:1 19289:1 19291:1 19293:4 19298:10 19314:1 19315:1 19335:7 19336:1 19350:2 19353:1 19359:1 19370:1 19412:2 19414:1 19420:3 19442:2 19475:1 19482:1 19494:1 19497:1 19507:4 19508:1 19515:3 19516:2 19531:2 19534:1 19549:1 19550:3 19551:1 19557:1 19563:3 19566:1 19567:1 19573:1 19592:2 19600:1 19605:1 19628:1 19634:2 19661:3 19674:1 19680:1 19708:3 19719:1 19720:1 19724:1 19735:3 19742:1 19745:1 19751:1 19752:1 19754:1 19767:2 19771:5 19775:6 19777:1 19778:2 19784:4 19794:1 19797:1 19807:1 19816:1 19818:1 19829:1 19833:1 19839:2 19859:1 19862:1 19876:2 19881:1 19904:2 19909:5 19918:1 19932:1 19936:2 19948:1 19949:4 19953:1 19964:1 19966:1 19978:4 19979:1 19992:1 19996:1 20001:1 20003:2 20004:2 20007:1 20017:1 20020:1 20031:1 20032:1 20036:1 20037:1 20052:1 20061:4 20068:1 20074:1 20079:1 20084:3 20086:1 20094:2 20103:1 20117:2 20118:2 20137:1 20159:6 20170:1 20175:1 20187:1 20211:6 20212:3 20218:3 20226:2 20231:1 20237:1 20238:1 20272:1 20276:1 20281:1 20283:3 20293:2 20299:1 20302:1 20313:1 20329:1 20345:1 20362:1 20373:1 20395:1 20400:1 20401:1 20404:3 20406:4 20408:1 20412:1 20420:1 20422:1 20443:1 20453:1 20454:1 20455:7 20465:2 20466:1 20467:1 20468:4 20474:2 20495:1 20525:1 20530:1 20531:2 20532:1 20542:1 20545:1 20547:2 20567:4 20577:1 20594:1 20599:1 20600:1 20604:1 20626:1 20631:1 20643:1 20644:1 20652:1 20656:1 20658:3 20671:1 20677:4 20679:1 20682:1 20683:1 20685:2 20686:1 20692:1 20697:1 20701:1 20705:4 20710:1 20715:1 20716:1 20721:3 20722:3 20730:1 20734:1 20738:1 20747:7 20770:1 20775:1 20780:2 20781:1 20782:3 20783:1 20797:1 20798:1 20823:3 20833:1 20846:1 20857:1 20862:1 20900:2 20907:2 20918:1 20925:1 20945:1 20948:2 20957:2 20979:7 20985:1 20986:1 20988:1 21010:2 21016:1 21019:2 21029:1 21049:1 21062:2 21075:1 21079:1 21080:1 21085:1 21088:1 21091:2 21100:1 21107:1 21122:1 21137:2 21142:1 21158:1 21169:2 21174:1 21193:1 21196:1 21198:2 21201:1 21211:1 21250:1 21257:1 21265:1 21276:1 21284:2 21285:1 21288:1 21289:1 21313:1 21320:1 21332:1 21339:1 21345:1 21357:1 21358:2 21359:1 21371:4 21372:1 21373:1 21374:2 21380:1 21381:1 21386:3 21387:3 21389:2 21392:1 21397:1 21405:1 21406:1 21407:1 21409:1 21410:1 21415:3 21434:1 21440:1 21442:2 21444:1 21448:1 21459:1 21472:4 21486:1 21488:2 21490:1 21493:1 21498:2 21499:2 21503:1 21504:1 21506:1 21509:3 21518:2 21519:1 21520:1 21523:2 21528:1 21538:1 21544:1 21548:9 21551:1 21567:1 21568:2 21569:4 21580:2 21616:1 21634:2 21647:2 21648:1 21654:2 21661:1 21663:3 21670:1 21675:8 21684:2 21691:1 21695:3 21712:1 21714:2 21715:1 21724:1 21750:1 21770:1 21771:1 21778:1 21804:1 21809:1 21811:1 21812:5 21822:1 21824:1 21826:1 21827:2 21829:2 21830:1 21838:1 21845:1 21846:6 21847:1 21848:3 21867:2 21870:1 21877:1 21885:1 21901:2 21916:2 21919:1 21931:1 21937:3 21941:1 21952:1 21967:1 21971:1 21975:1 21994:3 21999:1 22009:4 22012:2 22016:3 22017:2 22020:1 22021:1 22025:1 22052:1 22059:2 22061:1 22065:3 22077:2 22080:1 22096:3 22115:1 22132:1 22135:1 22144:1 22147:2 22150:1 22173:5 22174:5 22178:3 22179:1 22180:2 22181:1 22189:2 22190:1 22205:1 22212:2 22222:1 22223:4 22230:1 22236:1 22239:1 22243:2 22248:1 22252:3 22257:2 22258:4 22265:1 22277:2 22290:1 22291:1 22293:1 22294:3 22295:1 22302:1 22315:2 22318:1 22329:2 22331:1 22332:1 22336:1 22337:1 22342:1 22345:3 22357:1 22362:3 22368:1 22390:1 22391:7 22392:1 22401:1 22406:2 22412:1 22414:32 22419:1 22420:3 22422:4 22425:1 22426:3 22427:4 22430:1 22432:1 22434:2 22451:1 22453:3 22455:1 22461:1 22464:3 22467:1 22473:2 22493:2 22495:2 22496:1 22507:2 22510:1 22529:3 22538:1 22542:1 22547:1 22579:3 22585:1 22593:8 22599:2 22616:2 22621:2 22634:1 22646:1 22672:1 22674:2 22676:2 22679:1 22680:1 22687:1 22691:3 22692:1 22695:1 22699:2 22705:1 22706:1 22721:4 22726:2 22736:1 22737:1 22758:1 22776:1 22777:2 22782:1 22784:1 22788:1 22808:1 22837:1 22848:1 22866:1 22867:1 22878:1 22886:1 22896:2 22902:1 22919:1 22921:1 22931:2 22935:1 22947:2 22948:1 22955:1 22962:2 22964:1 22965:2 22971:2 22980:3 22981:1 22982:1 22998:3 23001:4 23021:2 23024:1 23027:1 23033:3 23038:1 23057:1 23060:1 23069:1 23072:1 23099:1 23130:1 23143:1 23148:1 23165:2 23175:1 23184:3 23188:2 23195:1 23196:1 23207:3 23227:2 23234:2 23235:1 23239:1 23241:1 23248:1 23254:1 23275:2 23283:3 23297:1 23299:5 23302:1 23305:1 23310:1 23313:2 23326:2 23340:1 23343:1 23349:1 23352:1 23361:12 23368:1 23394:2 23403:1 23408:1 23420:1 23437:2 23439:1 23441:1 23452:1 23482:1 23488:2 23494:1 23504:1 23519:1 23520:1 23527:1 23532:3 23545:1 23559:2 23568:1 23581:1 23591:1 23592:1 23600:3 23604:1 23616:7 23618:2 23620:1 23635:4 23647:1 23651:1 23659:2 23667:1 23716:1 23720:1 23722:1 23732:3 23736:2 23744:1 23749:2 23758:1 23774:1 23785:1 23798:1 23801:1 23806:1 23814:1 23831:1 23832:1 23875:4 23884:6 23885:1 23896:4 23899:1 23910:1 23912:1 23918:2 23919:1 23920:1 23928:1 23932:1 23939:2 23941:1 23966:2 23973:1 23979:1 23992:1 23994:3 23995:2 23996:1 24001:1 24025:2 24030:1 24044:1 24047:2 24052:1 24057:2 24058:3 24064:1 24068:1 24073:1 24093:1 24098:1 24101:1 24114:1 24124:1 24146:1 24148:1 24150:2 24156:1 24159:2 24160:1 24162:7 24164:3 24166:4 24167:2 24171:1 24172:2 24174:2 24175:4 24182:2 24183:4 24187:2 24193:2 24206:5 24213:2 24220:1 24233:1 24236:2 24237:1 24242:1 24247:2 24263:5 24267:3 24291:2 24295:1 24297:1 24307:3 24321:1 24324:1 24342:1 24345:1 24347:1 24348:2 24362:1 24390:1 24401:1 24402:1 24419:3 24440:4 24448:1 24450:4 24453:1 24464:2 24466:1 24496:1 24499:1 24508:1 24512:2 24513:1 24521:1 24524:1 24547:2 24548:1 24558:1 24571:1 24582:1 24584:1 24609:2 24623:1 24630:3 24640:1 24645:1 24648:1 24654:1 24658:2 24665:2 24707:5 24746:1 24757:2 24763:1 24772:1 24780:1 24783:4 24791:1 24793:1 24797:1 24810:1 24816:1 24822:4 24878:1 24899:1 24900:2 24912:3 24915:8 24946:11 24955:1 24969:9 24990:1 24997:1 25005:1 25015:2 25019:1 25028:1 25038:2 25041:1 25042:1 25045:1 25046:1 25047:1 25071:1 25085:1 25089:1 25093:2 25099:2 25104:1 25109:1 25111:2 25114:6 25122:1 25137:2 25139:2 25141:9 25144:4 25145:2 25155:1 25162:1 25167:2 25168:1 25170:1 25177:1 25182:1 25214:2 25219:1 25225:4 25230:1 25240:1 25247:3 25258:2 25259:2 25319:2 25320:1 25335:1 25342:1 25345:1 25346:1 25356:1 25361:1 25384:2 25386:1 25401:1 25410:1 25412:3 25413:1 25416:2 25417:1 25425:1 25436:5 25465:1 25468:1 25473:1 25474:1 25479:2 25488:1 25492:1 25506:1 25515:1 25557:2 25561:1 25569:1 25576:1 25600:1 25618:1 25657:1 25663:1 25665:1 25676:1 25679:3 25680:2 25687:1 25691:1 25699:1 25700:1 25701:1 25708:2 25718:2 25726:1 25729:1 25742:1 25757:1 25759:2 25781:1 25786:1 25796:5 25804:1 25812:1 25816:2 25826:1 25829:1 25835:1 25838:5 25850:1 25859:1 25864:1 25865:4 25880:2 25882:1 25901:1 25903:1 25906:2 25910:1 25916:2 25929:1 25930:1 25936:2 25943:1 25953:2 25971:2 25988:1 25992:6 25994:1 26021:5 26024:1 26033:1 26038:1 26040:1 26042:1 26059:2 26074:1 26087:1 26088:1 26093:4 26107:1 26112:2 26113:2 26114:1 26118:1 26122:1 26123:1 26127:3 26128:2 26133:1 26162:1 26166:4 26170:1 26175:1 26182:1 26185:1 26190:1 26213:2 26221:2 26222:1 26225:1 26247:2 26249:1 26261:2 26262:1 26267:1 26285:1 26290:2 26300:1 26309:1 26316:1 26332:2 26338:1 26339:1 26341:1 26352:1 26368:3 26373:5 26392:2 26397:1 26453:1 26476:1 26478:1 26479:1 26482:1 26499:1 26504:1 26524:1 26526:1 26542:1 26547:1 26548:1 26551:1 26556:1 26559:1 26566:1 26569:1 26574:2 26582:1 26588:2 26599:1 26611:1 26618:1 26619:1 26621:1 26622:1 26624:1 26641:1 26654:2 26657:2 26658:1 26662:1 26667:3 26681:4 26700:4 26707:1 26709:5 26721:1 26736:1 26737:1 26743:1 26759:4 26772:1 26778:1 26787:1 26788:10 26807:1 26817:1 26838:1 26840:2 26844:1 26845:2 26847:1 26848:2 26856:12 26866:1 26890:1 26894:3 26920:1 26933:2 26934:1 26938:1 26954:2 26960:6 26965:2 26966:1 26967:2 26981:1 26985:2 26988:1 26994:4 27003:1 27006:1 27016:1 27022:1 27033:1 27036:1 27057:1 27058:3 27061:1 27069:2 27070:1 27079:1 27090:3 27103:1 27108:1 27113:1 27135:2 27136:1 27141:2 27143:1 27145:1 27147:1 27149:2 27160:2 27169:1 27177:1 27187:1 27188:1 27229:1 27247:1 27275:1 27279:1 27298:1 27330:1 27332:1 27342:2 27365:5 27368:1 27376:1 27385:1 27392:1 27408:1 27412:1 27419:1 27422:1 27447:1 27465:1 27472:1 27474:1 27481:2 27500:1 27517:1 27536:3 27549:1 27560:1 27563:7 27575:1 27595:1 27597:4 27603:1 27620:1 27627:2 27636:1 27647:2 27658:1 27661:1 27662:1 27673:1 27675:2 27678:1 27682:2 27687:26 27689:4 27692:5 27694:1 27695:3 27702:1 27724:7 27739:1 27777:3 27789:2 27804:1 27808:2 27820:1 27821:3 27832:5 27838:2 27859:12 27863:2 27867:3 27869:1 27874:2 27878:1 27879:3 27885:1 27887:1 27889:1 27893:2 27897:1 27900:2 27906:1 27907:1 27909:1 27917:2 27923:2 27930:1 27934:2 27935:2 27943:1 27948:3 27951:1 27960:1 27964:1 27968:1 27969:2 27975:1 27989:1 28003:1 28011:1 28028:2 28030:1 28031:1 28041:1 28046:1 28050:1 28051:1 28054:2 28058:1 28068:5 28075:1 28082:1 28100:1 28102:2 28126:1 28127:2 28128:2 28131:1 28160:1 28169:1 28174:1 28177:1 28178:1 28180:1 28183:2 28187:5 28191:2 28193:1 28197:1 28202:1 28203:1 28204:1 28208:2 28214:2 28215:1 28217:1 28218:1 28223:1 28244:1 28264:1 28292:1 28315:1 28319:2 28320:1 28326:1 28341:1 28350:1 28356:1 28359:2 28362:1 28363:2 28367:1 28373:1 28375:3 28378:1 28380:1 28387:1 28397:7 28404:2 28405:2 28409:1 28411:6 28413:1 28419:1 28461:1 28469:2 28470:1 28506:3 28514:1 28520:1 28536:4 28541:1 28543:2 28551:1 28553:1 28560:6 28565:1 28569:1 28594:1 28596:1 28626:1 28627:1 28646:1 28648:1 28665:2 28681:1 28685:4 28703:2 28709:1 28724:1 28728:1 28734:1 28748:1 28754:1 28761:2 28772:1 28792:1 28801:7 28815:1 28816:1 28818:1 28831:1 28836:7 28849:6 28850:1 28867:1 28904:1 28913:8 28914:3 28916:2 28919:1 28921:1 28924:3 28925:3 28941:1 28947:1 28958:1 28959:2 28961:3 28963:3 29003:1
9 11:1 14:2 24:1 28:1 34:1 37:5 45:1 56:1 60:1 63:1 65:1 74:1 79:1 82:1 83:1 89:1 90:1 103:1 109:1 113:1 117:1 125:1 133:2 143:1 150:1 153:3 162:1 170:4 189:8 192:1 203:1 214:1 240:1 245:1 270:1 275:1 282:2 293:1 295:34 303:2 315:1 316:3 318:5 320:2 326:1 333:1 348:4 350:1 352:1 354:1 363:2 381:1 403:2 424:3 432:1 433:1 437:1 438:1 442:1 444:1 460:1 463:1 515:1 523:1 561:2 563:4 564:1 569:2 572:4 590:4 596:2 598:2 600:1 613:2 626:1 634:4 638:1 643:2 650:1 674:1 678:2 685:1 692:1 695:1 702:1 716:1 728:1 734:2 735:1 748:1 752:1 767:2 770:1 788:2 795:1 804:1 805:1 807:2 808:1 814:1 828:1 830:8 832:3 842:3 843:1 855:1 856:15 858:1 860:1 867:1 871:1 875:2 877:6 879:7 881:1 885:2 889:1 892:1 893:1 899:1 900:1 905:4 916:1 924:2 925:2 941:1 963:1 974:3 989:1 996:5 998:2 1002:2 1011:1 1019:1 1020:2 1027:1 1028:1 1038:1 1045:1 1046:1 1059:1 1061:2 1078:1 1086:1 1087:1 1089:2 1092:2 1104:3 1112:2 1117:1 1123:1 1136:1 1137:1 1143:1 1148:3 1152:1 1160:1 1163:1 1179:1 1207:2 1228:1 1230:1 1231:2 1232:2 1241:2 1244:1 1257:1 1262:1 1276:1 1284:1 1287:1 1300:2 1313:1 1330:1 1345:1 1353:1 1355:3 1369:1 1374:2 1376:1 1394:1 1397:2 1400:6 1401:10 1402:1 1417:2 1418:1 1419:3 1420:1 1422:1 1423:2 1438:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1506:2 1507:1 1508:1 1516:8 1518:1 1543:2 1547:1 1555:2 1557:1 1560:1 1562:3 1564:3 1571:1 1574:1 1578:2 1596:5 1598:1 1617:1 1619:3 1627:6 1634:2 1659:1 1660:1 1677:1 1678:1 1682:1 1693:1 1699:1 1709:1 1743:3 1757:1 1760:1 1762:1 1778:4 1789:1 1794:1 1802:1 1811:1 1819:1 1826:1 1828:1 1830:2 1831:1 1875:1 1888:1 1889:1 1892:2 1895:18 1903:1 1907:2 1919:2 1923:1 1929:1 1935:1 1936:1 1952:1 1954:1 1962:8 1963:1 1965:2 1993:1 1998:1 2006:2 2011:3 2045:1 2048:2 2051:1 2072:1 2082:1 2085:1 2089:3 2095:2 2100:1 2101:1 2105:1 2108:1 2124:1 2132:1 2142:1 2150:1 2154:1 2156:1 2158:1 2159:5 2160:1 2162:2 2165:1 2172:1 2174:4 2177:3 2178:2 2179:4 2180:1 2181:1 2187:1 2190:3 2191:1 2207:1 2212:1 2215:3 2216:2 2219:2 2220:2 2221:8 2223:5 2226:1 2227:2 2228:4 2232:1 2233:1 2234:1 2237:2 2239:1 2245:1 2247:2 2249:1 2251:6 2252:2 2253:9 2264:1 2268:1 2269:1 2279:1 2297:1 2309:2 2315:1 2322:1 2336:1 2339:1 2343:1 2347:1 2358:3 2370:4 2371:1 2374:1 2376:1 2384:2 2387:1 2392:2 2410:4 2421:7 2433:1 2439:1 2445:1 2461:1 2465:1 2473:1 2485:5 2494:5 2500:1 2520:1 2522:2 2536:1 2543:4 2552:3 2561:2 2563:1 2570:1 2580:2 2609:2 2631:1 2635:1 2641:1 2648:2 2651:4 2656:1 2659:1 2667:2 2670:1 2672:1 2675:1 2676:1 2683:1 2688:1 2691:1 2704:1 2708:2 2712:1 2713:1 2723:1 2730:3 2756:1 2760:1 2761:2 2762:1 2766:7 2770:4 2775:6 2780:1 2781:1 2782:1 2810:1 2813:2 2816:2 2818:2 2826:2 2836:2 2854:6 2857:2 2867:24 2870:1 2883:4 2888:1 2900:2 2909:1 2915:1 2923:1 2931:1 2936:13 2951:1 2954:1 2961:5 2965:8 2966:1 2968:1 2969:1 2972:1 2989:1 3015:1 3023:1 3026:1 3030:1 3059:1 3068:1 3074:4 3075:1 3089:1 3097:1 3105:1 3106:2 3112:1 3166:1 3188:2 3197:1 3205:1 3216:1 3224:1 3231:1 3232:5 3237:1 3243:1 3248:1 3255:1 3256:1 3266:1 3271:1 3272:1 3279:1 3283:1 3293:1 3295:5 3314:1 3338:1 3352:2 3357:13 3397:1 3407:1 3420:2 3424:2 3453:1 3459:1 3471:1 3472:2 3475:2 3478:1 3488:1 3489:1 3495:2 3509:1 3517:2 3528:1 3540:2 3548:1 3558:1 3570:4 3574:1 3577:1 3580:2 3582:7 3599:5 3604:2 3605:1 3606:1 3607:4 3608:2 3615:1 3634:2 3638:1 3639:6 3647:1 3648:1 3669:1 3680:1 3684:1 3687:2 3688:3 3692:1 3695:2 3698:2 3712:1 3730:1 3737:1 3740:1 3742:4 3744:1 3746:2 3748:12 3763:1 3779:1 3783:5 3784:1 3788:2 3789:12 3790:3 3792:1 3796:2 3810:2 3813:7 3817:1 3822:1 3835:1 3836:3 3838:1 3846:1 3848:1 3851:1 3862:1 3866:1 3874:1 3876:1 3883:1 3888:2 3895:1 3902:3 3904:3 3918:2 3919:2 3931:1 3934:1 3939:2 3940:1 3943:2 3948:1 3953:1 3955:1 3964:4 3970:1 3972:1 3977:2 3982:1 3983:1 3987:1 3988:2 3989:2 3998:5 3999:4 4005:1 4019:1 4033:1 4040:1 4051:1 4054:2 4063:1 4069:1 4078:5 4085:2 4086:1 4093:1 4112:1 4113:1 4124:1 4125:1 4129:1 4136:1 4137:1 4173:1 4190:7 4193:2 4201:1 4204:1 4208:1 4210:1 4219:1 4234:1 4254:1 4270:2 4272:2 4282:1 4296:1 4298:1 4314:2 4343:1 4348:2 4352:1 4357:1 4362:5 4378:1 4385:1 4414:1 4416:1 4428:3 4434:1 4439:2 4455:1 4478:1 4491:1 4494:1 4528:2 4535:1 4549:1 4554:1 4560:1 4562:1 4565:1 4583:2 4585:2 4605:1 4613:1 4619:2 4623:1 4626:3 4640:1 4646:3 4657:2 4658:1 4676:2 4678:1 4691:1 4695:8 4713:1 4724:1 4731:1 4742:1 4746:1 4751:1 4759:1 4768:1 4773:7 4776:1 4778:1 4783:1 4787:2 4788:2 4803:1 4807:1 4810:1 4815:1 4818:1 4851:3 4867:1 4876:27 4878:2 4881:1 4895:3 4903:1 4909:4 4917:1 4925:2 4928:7 4940:2 4963:2 4964:1 4980:1 4981:1 4984:1 4985:7 5003:5 5005:6 5006:1 5008:1 5009:1 5011:1 5013:3 5014:1 5015:1 5017:3 5020:1 5022:1 5026:1 5028:4 5030:3 5031:1 5033:1 5041:1 5042:1 5045:4 5046:3 5049:1 5064:1 5066:1 5090:1 5096:1 5125:3 5131:2 5133:1 5138:1 5157:2 5176:1 5177:1 5184:2 5186:1 5190:3 5195:2 5200:1 5203:3 5219:1 5220:1 5237:1 5245:2 5249:3 5255:1 5280:1 5285:1 5302:1 5306:1 5307:1 5316:1 5325:1 5328:1 5351:2 5358:8 5362:1 5365:1 5369:2 5371:2 5386:1 5394:1 5404:2 5423:1 5429:1 5434:2 5438:2 5444:1 5453:1 5480:1 5493:1 5494:1 5501:1 5511:2 5524:2 5525:2 5534:1 5535:2 5538:2 5540:2 5548:1 5551:1 5556:2 5562:1 5563:1 5564:1 5569:1 5582:3 5584:1 5588:1 5589:1 5593:1 5599:1 5607:1 5615:3 5629:4 5639:1 5640:1 5663:3 5680:1 5681:3 5694:1 5701:3 5702:1 5705:1 5718:2 5720:4 5721:1 5728:2 5744:1 5749:1 5762:1 5773:1 5785:1 5790:1 5797:1 5801:1 5802:1 5812:2 5813:1 5843:3 5850:1 5852:1 5855:1 5877:1 5881:2 5898:1 5920:1 5934:1 5942:1 5947:4 5949:1 5969:2 5972:16 5987:4 5992:4 6000:1 6001:1 6006:5 6007:1 6009:2 6017:1 6039:3 6040:1 6043:1 6053:1 6056:1 6058:1 6078:2 6110:1 6117:1 6130:2 6137:2 6138:1 6142:1 6149:1 6150:1 6153:3 6156:1 6176:6 6178:1 6182:1 6192:1 6197:1 6199:1 6220:1 6244:1 6245:2 6247:1 6259:3 6262:1 6263:1 6264:1 6265:2 6267:1 6269:1 6270:4 6273:1 6274:3 6275:3 6276:5 6277:1 6279:2 6280:1 6282:4 6283:11 6284:5 6286:1 6316:1 6334:2 6379:4 6381:1 6383:1 6389:1 6419:1 6420:2 6426:1 6435:2 6482:2 6490:1 6493:1 6502:1 6507:1 6513:1 6531:1 6536:2 6537:1 6542:1 6554:1 6556:1 6558:1 6565:4 6580:1 6581:1 6585:1 6589:1 6598:1 6609:2 6613:1 6652:1 6653:2 6654:2 6661:2 6668:1 6671:2 6677:1 6679:2 6680:1 6689:1 6699:9 6715:2 6722:4 6728:1 6741:1 6744:1 6751:1 6757:1 6769:1 6777:1 6795:1 6810:3 6811:1 6823:2 6851:1 6854:2 6855:2 6860:3 6866:1 6869:1 6871:1 6885:3 6886:2 6903:1 6906:1 6914:2 6918:1 6919:2 6922:2 6927:1 6932:1 6938:1 6939:1 6948:2 6987:1 6999:1 7009:1 7036:1 7049:1 7050:11 7052:1 7067:1 7073:2 7074:3 7091:1 7097:2 7099:2 7102:1 7109:1 7124:1 7125:1 7155:2 7169:1 7174:1 7180:1 7198:3 7218:2 7234:1 7248:2 7263:3 7274:1 7278:1 7287:4 7288:1 7290:1 7297:1 7303:1 7311:1 7319:1 7322:1 7334:5 7346:3 7347:1 7352:1 7367:2 7371:1 7382:2 7383:1 7386:2 7401:1 7407:2 7411:1 7427:1 7463:3 7485:2 7496:1 7499:2 7510:1 7516:1 7518:1 7554:2 7555:13 7556:6 7560:1 7570:2 7580:2 7582:4 7584:2 7603:5 7604:1 7620:57 7622:2 7643:7 7644:13 7645:1 7648:4 7657:1 7665:1 7667:1 7671:2 7682:1 7685:1 7686:1 7690:1 7696:1 7700:1 7710:1 7719:1 7720:4 7725:2 7734:1 7751:1 7755:1 7758:2 7773:2 7786:1 7826:2 7851:3 7862:1 7871:1 7874:1 7878:2 7892:1 7897:6 7928:1 7931:1 7943:1 7962:1 7967:1 7994:1 8004:1 8007:1 8032:1 8035:1 8037:1 8043:3 8044:3 8045:1 8046:1 8062:2 8063:2 8081:1 8082:1 8087:1 8093:1 8105:1 8107:2 8110:1 8116:2 8122:1 8124:2 8130:2 8131:1 8136:1 8141:1 8142:3 8145:1 8154:1 8156:9 8180:2 8184:1 8186:2 8194:1 8205:1 8236:1 8254:1 8270:1 8299:1 8301:2 8311:2 8319:2 8334:1 8336:1 8340:1 8358:1 8367:4 8369:2 8376:3 8379:1 8383:3 8387:2 8394:1 8395:3 8405:1 8412:1 8422:1 8430:5 8433:1 8438:2 8441:2 8445:1 8449:1 8460:1 8468:1 8480:1 8485:1 8490:1 8497:1 8500:3 8501:6 8503:4 8504:1 8505:2 8508:3 8510:8 8512:2 8513:3 8514:1 8516:2 8525:2 8526:2 8543:4 8549:2 8550:5 8559:1 8565:1 8567:3 8571:1 8572:2 8575:2 8578:2 8582:2 8586:5 8604:2 8611:1 8639:1 8640:2 8647:1 8655:1 8657:1 8679:1 8683:1 8688:1 8710:1 8719:1 8725:2 8728:1 8739:1 8751:1 8756:3 8762:1 8772:2 8779:3 8805:2 8808:1 8810:2 8811:4 8815:3 8827:3 8833:1 8840:1 8846:1 8857:1 8914:1 8921:1 8929:1 8936:2 8950:6 8954:2 8962:1 8969:2 8971:1 8992:3 9001:1 9009:1 9011:1 9019:1 9022:2 9023:1 9035:2 9040:1 9050:1 9057:1 9060:1 9065:1 9068:1 9069:1 9077:3 9107:1 9115:4 9121:1 9128:1 9130:1 9134:1 9139:2 9142:2 9145:1 9151:1 9161:2 9162:1 9196:1 9200:2 9207:7 9209:1 9210:1 9213:1 9216:3 9219:1 9223:1 9226:34 9230:3 9231:2 9246:2 9247:1 9261:1 9275:1 9286:4 9298:1 9305:1 9312:1 9314:1 9319:1 9329:1 9338:2 9345:1 9349:1 9360:2 9363:7 9364:1 9365:2 9390:1 9392:1 9421:1 9427:1 9433:4 9435:1 9448:1 9469:1 9490:1 9497:1 9528:1 9529:1 9537:1 9539:1 9544:1 9555:2 9558:1 9559:1 9567:1 9568:1 9569:5 9574:1 9582:1 9586:5 9594:2 9601:2 9608:2 9634:2 9652:1 9663:7 9668:1 9675:1 9676:1 9677:6 9687:2 9689:1 9697:1 9700:1 9702:1 9704:1 9712:1 9713:1 9746:3 9772:1 9780:1 9789:1 9790:1 9815:1 9823:2 9829:1 9847:7 9850:1 9856:1 9862:1 9865:1 9871:4 9877:2 9878:1 9880:1 9883:2 9885:1 9887:1 9890:1 9898:4 9911:1 9913:1 9917:1 9919:1 9921:1 9924:1 9928:3 9929:1 9932:2 9933:1 9938:1 9939:1 9948:1 9954:1 9956:1 9968:4 9986:1 9987:1 9996:1 10019:1 10037:1 10038:1 10043:1 10057:2 10065:1 10073:1 10094:1 10098:1 10117:1 10122:1 10124:2 10125:1 10126:1 10135:2 10157:1 10178:1 10188:1 10191:1 10195:1 10200:1 10228:1 10234:1 10241:2 10263:1 10265:1 10266:3 10280:1 10286:2 10297:1 10302:1 10305:1 10328:2 10329:1 10347:3 10351:2 10359:2 10370:1 10372:1 10402:1 10405:1 10414:1 10436:2 10448:1 10470:1 10478:2 10484:1 10486:1 10488:1 10493:1 10501:1 10504:3 10507:2 10513:5 10521:1 10523:1 10524:1 10526:1 10533:1 10537:1 10539:3 10541:1 10550:1 10554:1 10555:3 10557:3 10558:1 10564:1 10573:3 10582:4 10583:4 10590:2 10592:2 10593:1 10621:1 10628:1 10639:1 10641:1 10657:7 10665:5 10677:2 10683:4 10686:14 10737:1 10740:1 10747:1 10748:2 10783:4 10787:1 10790:1 10805:1 10824:1 10835:2 10839:1 10846:1 10857:1 10883:1 10901:1 10903:4 10905:4 10909:2 10910:2 10918:1 10921:2 10931:2 10937:1 10943:2 10946:1 10947:1 10953:1 10962:1 10963:1 10969:1 10989:7 10992:1 11005:1 11010:6 11014:1 11016:1 11018:2 11021:1 11040:1 11062:1 11063:2 11064:2 11066:1 11071:1 11080:1 11083:1 11085:1 11086:1 11094:1 11100:1 11106:1 11107:1 11118:1 11131:1 11138:2 11145:1 11147:1 11152:1 11163:1 11166:1 11173:1 11175:1 11177:1 11188:1 11197:1 11203:5 11208:1 11216:1 11230:2 11232:1 11234:1 11248:1 11260:1 11268:2 11274:1 11278:3 11284:1 11285:1 11287:1 11300:2 11301:1 11302:2 11308:2 11315:3 11317:1 11333:8 11341:1 11367:1 11370:12 11371:1 11385:1 11400:1 11401:1 11407:1 11430:1 11442:1 11444:2 11466:2 11468:1 11469:1 11470:1 11476:1 11477:2 11479:1 11481:2 11496:1 11501:1 11506:1 11509:2 11514:1 11520:2 11526:4 11530:7 11547:7 11549:1 11550:6 11580:1 11587:1 11600:2 11601:2 11603:3 11606:1 11609:2 11611:2 11614:1 11615:2 11619:3 11620:1 11622:1 11631:2 11632:3 11633:1 11636:2 11641:3 11645:1 11649:1 11664:7 11666:1 11671:1 11684:8 11690:2 11693:1 11696:1 11710:1 11711:2 11716:1 11727:1 11734:1 11755:1 11772:2 11789:2 11824:2 11826:1 11852:1 11865:3 11871:1 11877:2 11882:1 11891:1 11908:1 11916:1 11924:1 11931:3 11936:4 11952:1 11973:3 11977:1 11990:1 11997:1 12004:1 12005:1 12010:1 12025:1 12045:1 12076:2 12082:1 12100:1 12107:1 12109:1 12110:2 12111:3 12115:2 12125:2 12132:1 12141:1 12142:1 12154:1 12156:2 12165:4 12166:5 12172:2 12176:1 12178:1 12184:2 12219:1 12239:1 12243:1 12250:1 12263:1 12272:1 12276:2 12281:7 12297:1 12302:2 12318:1 12323:3 12337:1 12338:1 12345:1 12346:1 12349:2 12361:3 12362:2 12365:1 12376:2 12380:2 12398:1 12405:1 12420:1 12423:4 12431:2 12435:1 12457:1 12458:1 12464:1 12468:1 12472:1 12476:1 12477:6 12480:1 12491:1 12493:1 12495:1 12508:1 12512:1 12515:1 12526:2 12534:1 12586:1 12593:1 12608:8 12621:1 12633:1 12635:1 12636:1 12644:1 12648:16 12654:1 12658:1 12668:3 12671:6 12676:1 12681:2 12701:1 12702:1 12708:4 12733:2 12764:1 12769:5 12772:2 12782:1 12787:1 12789:1 12790:1 12791:1 12796:2 12797:1 12813:2 12827:5 12831:1 12835:1 12837:1 12860:1 12861:1 12885:1 12888:1 12914:1 12949:7 12954:1 12984:1 12999:1 13045:8 13049:1 13066:3 13068:1 13072:1 13076:7 13080:4 13086:1 13087:1 13093:2 13094:6 13120:1 13128:2 13131:1 13133:1 13142:2 13143:1 13144:1 13166:5 13194:1 13206:2 13211:2 13213:1 13222:1 13224:7 13231:1 13232:4 13233:2 13244:1 13250:1 13251:1 13252:2 13257:1 13263:2 13275:2 13278:1 13282:1 13283:1 13287:1 13301:2 13302:4 13306:1 13310:1 13320:3 13331:1 13341:2 13346:1 13364:2 13372:7 13376:1 13396:1 13401:1 13416:4 13420:1 13421:4 13440:1 13454:1 13468:3 13490:1 13503:1 13506:1 13520:1 13524:1 13533:1 13556:1 13557:2 13561:2 13570:1 13571:1 13599:5 13600:1 13601:2 13606:5 13607:2 13610:2 13619:1 13620:1 13628:1 13633:1 13654:3 13674:1 13680:3 13691:2 13694:2 13697:1 13698:1 13723:1 13733:7 13745:1 13764:3 13779:3 13782:1 13784:1 13788:2 13799:1 13813:1 13827:7 13832:3 13833:1 13838:1 13847:2 13886:1 13895:1 13904:4 13931:10 13942:1 13963:1 13974:1 13980:2 13986:1 14006:1 14007:1 14018:1 14024:1 14029:1 14036:1 14054:2 14076:7 14086:2 14089:1 14107:3 14119:1 14126:1 14134:1 14140:1 14152:1 14161:1 14170:1 14179:4 14180:1 14181:1 14196:1 14212:1 14221:1 14223:1 14235:1 14245:1 14255:1 14266:2 14274:2 14284:2 14297:1 14299:3 14312:3 14313:1 14317:3 14318:9 14324:1 14325:7 14335:3 14339:2 14340:2 14347:1 14358:1 14360:1 14361:1 14376:1 14385:1 14427:2 14433:1 14434:1 14449:5 14476:1 14482:3 14485:1 14489:2 14490:2 14492:1 14493:4 14498:4 14502:1 14514:1 14523:1 14532:1 14533:3 14537:1 14551:1 14554:1 14573:1 14591:4 14600:2 14614:2 14616:3 14623:1 14624:1 14636:2 14637:2 14647:4 14650:1 14664:3 14674:1 14683:2 14700:1 14701:1 14761:1 14775:1 14780:1 14785:1 14798:1 14803:2 14820:3 14821:1 14823:1 14824:1 14836:1 14837:1 14881:1 14883:1 14891:8 14893:1 14910:2 14912:1 14916:3 14923:1 14935:1 14936:8 14938:3 14961:2 14970:1 14984:2 14986:1 14999:1 15000:1 15020:8 15022:1 15024:1 15037:1 15055:1 15085:1 15109:1 15117:1 15123:4 15125:1 15129:1 15130:1 15134:1 15145:1 15146:2 15152:1 15158:1 15160:1 15173:1 15177:2 15178:1 15180:1 15207:1 15217:1 15223:1 15233:1 15238:1 15241:1 15244:1 15245:3 15259:2 15275:1 15282:1 15301:2 15309:1 15322:1 15332:11 15338:2 15345:2 15380:1 15385:2 15395:1 15398:1 15403:1 15404:4 15414:5 15420:1 15424:1 15431:1 15435:1 15436:1 15440:1 15453:2 15455:1 15459:2 15471:1 15482:2 15496:1 15509:1 15512:1 15527:1 15539:1 15556:1 15563:5 15568:1 15571:1 15578:11 15581:3 15590:1 15591:3 15595:1 15598:1 15607:2 15614:5 15622:2 15624:1 15625:7 15626:3 15631:1 15637:1 15642:1 15644:1 15678:1 15679:1 15687:2 15706:1 15710:1 15711:1 15715:1 15717:2 15725:4 15742:1 15745:9 15750:1 15757:1 15763:2 15767:1 15768:1 15777:1 15785:3 15814:2 15831:6 15832:3 15835:1 15837:1 15839:1 15871:1 15877:1 15879:3 15893:1 15896:1 15906:1 15909:4 15911:2 15913:1 15923:1 15957:1 15967:1 15973:4 16002:1 16008:1 16014:1 16018:1 16026:1 16029:17 16030:1 16034:1 16048:4 16050:1 16051:2 16055:1 16056:1 16067:1 16084:1 16095:2 16103:1 16119:5 16122:1 16127:1 16137:2 16146:1 16147:1 16149:1 16150:1 16154:1 16164:1 16170:2 16172:1 16177:2 16181:1 16190:2 16194:1 16196:1 16237:1 16242:2 16285:4 16288:1 16289:1 16290:2 16310:1 16329:1 16336:1 16338:1 16353:1 16363:1 16383:1 16398:1 16400:1 16403:4 16434:2 16475:1 16482:1 16488:1 16489:1 16505:1 16511:1 16527:1 16528:1 16542:1 16543:1 16546:1 16555:2 16575:1 16588:1 16589:1 16597:1 16604:2 16605:1 16614:1 16639:1 16646:1 16662:1 16666:2 16672:1 16675:2 16685:3 16702:1 16707:1 16708:1 16710:1 16714:3 16716:3 16718:1 16727:1 16738:1 16747:1 16758:1 16759:1 16761:1 16776:1 16787:1 16789:3 16801:1 16802:1 16828:1 16830:1 16840:4 16843:2 16844:5 16851:1 16867:1 16874:1 16883:1 16899:1 16905:1 16908:1 16915:8 16929:2 16930:1 16932:2 16939:1 16942:1 16947:2 16966:4 16974:1 16977:3 16990:1 16991:1 16995:2 17013:2 17015:1 17036:1 17042:1 17046:2 17050:1 17053:2 17059:6 17067:2 17087:1 17091:6 17092:1 17106:1 17110:1 17121:1 17136:2 17138:2 17155:4 17156:3 17167:1 17172:1 17179:1 17181:1 17186:2 17187:3 17198:3 17199:7 17200:1 17207:3 17210:1 17212:1 17244:1 17251:1 17265:1 17270:2 17277:2 17281:1 17327:1 17342:1 17343:1 17346:1 17360:1 17363:4 17369:2 17374:2 17397:1 17401:1 17417:1 17421:1 17422:1 17442:1 17445:1 17447:2 17448:3 17454:4 17455:1 17456:1 17463:5 17475:3 17476:2 17477:1 17509:1 17511:2 17522:5 17523:4 17538:1 17558:2 17560:3 17575:1 17585:1 17587:1 17592:7 17597:1 17604:1 17631:1 17636:1 17644:2 17647:2 17648:1 17652:1 17655:2 17662:1 17664:2 17665:5 17667:1 17669:1 17670:1 17674:1 17681:1 17683:4 17687:1 17691:1 17692:1 17698:1 17699:1 17707:1 17721:1 17722:3 17747:1 17753:2 17764:1 17766:2 17767:8 17772:4 17781:33 17783:1 17785:1 17787:1 17790:2 17794:1 17803:1 17812:4 17819:1 17822:1 17831:1 17838:1 17845:1 17852:1 17855:1 17860:3 17871:1 17872:4 17873:1 17875:1 17882:1 17886:1 17896:4 17907:1 17922:1 17931:5 17962:1 17967:1 17977:3 17979:1 17987:1 17989:1 17994:2 17998:2 18007:5 18009:1 18011:1 18019:1 18032:2 18045:1 18056:1 18058:1 18067:1 18080:1 18084:1 18098:1 18114:1 18120:1 18133:1 18142:1 18150:2 18152:3 18167:1 18169:1 18170:1 18178:1 18184:1 18212:1 18219:4 18220:1 18239:1 18249:2 18288:1 18315:4 18323:1 18331:1 18340:1 18348:2 18357:1 18380:2 18381:3 18382:3 18399:2 18410:1 18417:7 18424:1 18444:1 18449:1 18459:1 18461:1 18465:1 18471:3 18476:2 18478:3 18481:1 18495:1 18498:1 18499:1 18504:5 18509:2 18512:2 18516:1 18519:2434 18524:1 18534:1 18538:1 18572:4 18573:1 18582:3 18590:1 18607:2 18608:1 18619:1 18624:1 18643:2 18648:2 18657:1 18668:2 18684:2 18690:1 18691:1 18702:1 18708:3 18715:6 18720:1 18725:5 18727:3 18728:4 18731:1 18743:1 18748:2 18763:1 18792:2 18802:7 18808:2 18810:2 18814:1 18816:1 18840:1 18842:34 18850:1 18861:1 18863:7 18904:1 18907:1 18915:1 18919:1 18920:1 18930:2 18938:1 18947:1 18968:1 18969:1 18971:1 18982:2 18991:3 19007:1 19008:1 19017:1 19033:2 19055:2 19061:1 19065:1 19079:1 19089:1 19091:1 19110:1 19113:1 19121:1 19135:2 19140:2 19142:3 19168:2 19172:1 19174:2 19176:3 19180:1 19187:1 19190:3 19192:2 19197:4 19202:1 19210:1 19218:1 19228:5 19235:1 19239:1 19256:1 19257:2 19271:2 19273:1 19289:1 19291:1 19293:4 19298:11 19314:1 19315:1 19335:7 19336:1 19350:2 19353:1 19359:1 19370:1 19412:2 19414:1 19420:3 19442:2 19475:1 19482:1 19494:1 19497:1 19507:4 19508:1 19515:3 19516:2 19531:2 19534:1 19549:1 19550:4 19551:1 19557:1 19563:3 19566:1 19567:1 19573:1 19592:2 19600:1 19605:1 19628:1 19634:2 19661:3 19674:1 19680:1 19708:3 19719:1 19720:1 19724:1 19735:3 19742:1 19745:1 19751:1 19752:1 19754:1 19767:2 19771:5 19775:6 19777:1 19778:2 19784:5 19794:1 19797:1 19807:1 19816:1 19818:1 19829:1 19833:1 19839:2 19859:1 19862:1 19876:2 19881:1 19904:2 19909:5 19918:1 19932:1 19936:2 19948:1 19949:4 19953:1 19964:1 19966:1 19978:4 19979:1 19992:1 19996:1 20001:1 20003:2 20004:2 20007:1 20017:1 20020:1 20031:1 20032:1 20036:1 20037:1 20052:1 20061:4 20068:1 20074:1 20079:1 20084:3 20086:1 20094:2 20103:1 20117:2 20118:2 20137:1 20159:6 20170:1 20175:1 20187:1 20211:7 20212:3 20218:4 20226:2 20231:1 20237:1 20238:1 20272:1 20276:1 20281:1 20283:3 20293:2 20299:1 20302:1 20313:1 20329:1 20337:1 20345:1 20362:1 20373:1 20395:1 20400:1 20401:1 20404:3 20406:4 20408:1 20412:1 20420:1 20422:1 20443:1 20453:1 20454:1 20455:7 20465:2 20466:1 20467:1 20468:4 20474:2 20495:1 20525:1 20530:1 20531:2 20532:1 20542:1 20545:1 20547:2 20567:4 20577:1 20594:1 20599:1 20600:1 20604:1 20626:2 20631:2 20643:1 20644:1 20652:1 20656:1 20658:3 20671:1 20677:4 20679:1 20682:1 20683:1 20685:2 20686:1 20692:1 20697:1 20701:1 20705:4 20710:1 20715:1 20716:1 20721:3 20722:3 20730:1 20734:1 20738:1 20747:7 20770:1 20775:2 20780:2 20781:1 20782:3 20783:1 20797:1 20798:1 20823:3 20833:1 20846:1 20857:1 20862:1 20900:2 20907:2 20918:1 20925:1 20945:1 20948:2 20957:2 20979:7 20985:1 20986:1 20988:1 21010:2 21016:1 21019:2 21029:1 21049:1 21062:2 21075:1 21079:1 21080:1 21085:1 21088:1 21091:2 21100:1 21107:1 21122:1 21137:2 21142:1 21158:1 21159:1 21169:2 21174:1 21193:1 21196:1 21198:2 21201:1 21211:1 21250:1 21257:1 21265:1 21276:1 21284:2 21285:1 21288:1 21289:1 21313:1 21320:1 21332:1 21339:1 21345:1 21357:1 21358:2 21359:1 21371:4 21372:1 21373:1 21374:2 21380:1 21381:1 21386:3 21387:3 21389:2 21392:1 21397:1 21405:1 21406:1 21407:1 21409:1 21410:1 21415:3 21434:1 21440:1 21442:2 21444:1 21448:1 21459:1 21472:4 21486:1 21488:2 21490:1 21493:1 21498:3 21499:2 21503:1 21504:1 21506:1 21509:3 21518:2 21519:1 21520:1 21523:2 21528:1 21538:1 21544:1 21548:10 21551:1 21567:1 21568:2 21569:4 21580:2 21616:1 21634:2 21647:2 21648:1 21654:2 21661:1 21663:3 21670:1 21675:8 21684:2 21691:1 21695:3 21712:1 21714:2 21715:1 21724:1 21750:1 21770:1 21771:1 21778:1 21804:1 21809:1 21811:1 21812:5 21822:1 21824:1 21826:1 21827:2 21829:2 21830:1 21838:1 21845:1 21846:6 21847:1 21848:3 21867:2 21870:1 21877:1 21885:1 21901:2 21916:2 21919:1 21931:1 21937:3 21941:1 21952:1 21967:1 21971:1 21975:1 21994:3 21999:1 22009:4 22012:2 22016:3 22017:3 22020:1 22021:1 22025:1 22051:1 22052:1 22059:2 22061:1 22065:3 22077:2 22080:1 22096:3 22115:1 22132:1 22135:1 22144:1 22147:2 22150:1 22173:5 22174:6 22178:3 22179:1 22180:2 22181:1 22189:2 22190:1 22205:1 22212:2 22222:1 22223:4 22230:1 22236:1 22239:2 22243:2 22248:2 22252:3 22257:2 22258:4 22265:1 22277:2 22290:1 22291:1 22293:1 22294:3 22295:1 22302:1 22315:2 22318:1 22329:2 22331:1 22332:1 22336:1 22337:1 22342:1 22345:3 22349:1 22357:1 22362:3 22368:1 22390:1 22391:8 22392:1 22401:1 22406:2 22412:1 22414:33 22419:1 22420:3 22422:4 22425:1 22426:3 22427:4 22430:1 22432:1 22434:2 22451:1 22453:3 22455:1 22461:1 22464:3 22467:1 22473:2 22493:2 22495:2 22496:1 22507:2 22510:1 22529:3 22538:1 22542:1 22547:1 22579:3 22585:1 22593:8 22599:2 22616:2 22621:2 22634:1 22646:1 22672:1 22674:2 22676:2 22679:1 22680:1 22687:1 22691:3 22692:1 22695:1 22699:2 22705:1 22706:1 22721:4 22726:2 22734:1 22736:1 22737:1 22758:1 22776:1 22777:2 22782:1 22784:1 22788:1 22808:1 22837:1 22848:1 22866:1 22867:1 22878:1 22886:1 22896:2 22902:1 22919:1 22921:1 22931:2 22935:1 22947:2 22948:1 22955:1 22962:2 22964:1 22965:2 22971:2 22980:3 22981:1 22982:1 22998:3 23001:4 23021:2 23024:1 23027:1 23033:3 23038:1 23057:1 23060:1 23069:1 23072:1 23099:1 23130:1 23143:1 23148:1 23165:2 23175:1 23184:3 23188:2 23195:1 23196:1 23207:3 23227:2 23234:2 23235:1 23239:1 23241:1 23248:1 23254:1 23275:2 23283:3 23297:1 23299:5 23302:1 23305:1 23310:2 23313:2 23326:2 23340:1 23343:1 23349:1 23352:1 23361:12 23368:1 23394:2 23403:1 23408:1 23420:1 23437:2 23439:1 23441:1 23452:1 23482:2 23488:2 23494:1 23504:1 23519:1 23520:1 23527:1 23532:4 23545:1 23559:2 23568:1 23581:1 23591:1 23592:1 23600:3 23604:1 23616:8 23618:2 23620:1 23635:5 23647:1 23651:1 23659:2 23667:1 23716:1 23720:1 23722:1 23732:3 23736:2 23744:1 23749:2 23758:1 23774:1 23785:1 23798:1 23801:1 23806:1 23814:1 23831:1 23832:1 23842:1 23875:4 23884:6 23885:1 23896:4 23899:1 23910:1 23912:1 23918:2 23919:1 23920:1 23928:1 23932:1 23939:2 23941:1 23966:2 23973:1 23979:1 23992:1 23994:3 23995:2 23996:1 24001:1 24025:2 24030:1 24044:1 24047:3 24052:1 24057:2 24058:3 24064:1 24068:1 24073:1 24093:1 24098:1 24101:1 24114:1 24124:1 24146:1 24148:1 24150:2 24156:1 24159:2 24160:1 24162:7 24164:3 24166:4 24167:2 24171:1 24172:2 24174:2 24175:5 24182:2 24183:4 24187:2 24193:2 24206:5 24213:2 24220:1 24233:1 24236:2 24237:1 24242:1 24247:2 24263:6 24267:3 24291:2 24295:1 24297:1 24307:3 24321:1 24324:1 24342:1 24345:1 24347:1 24348:2 24362:1 24390:1 24401:1 24402:1 24419:3 24440:4 24448:1 24450:6 24453:1 24464:2 24466:1 24470:1 24496:1 24499:1 24508:1 24512:2 24513:1 24521:1 24524:1 24547:2 24548:1 24558:1 24571:1 24582:1 24584:1 24609:2 24623:1 24626:1 24630:3 24640:1 24645:1 24648:1 24654:1 24658:2 24665:2 24707:6 24746:1 24757:2 24761:1 24763:1 24772:1 24780:1 24783:4 24791:1 24793:1 24797:1 24810:1 24816:1 24822:4 24878:1 24899:1 24900:2 24912:3 24915:8 24946:11 24955:1 24969:9 24977:1 24990:1 24997:1 25005:1 25015:2 25019:1 25028:1 25038:2 25041:1 25042:1 25045:1 25046:1 25047:1 25071:1 25085:1 25089:1 25093:2 25099:2 25104:1 25109:1 25111:2 25114:6 25122:1 25137:2 25139:2 25141:9 25144:4 25145:2 25155:1 25162:1 25167:2 25168:1 25170:1 25177:1 25182:1 25186:1 25214:2 25219:1 25225:4 25230:1 25240:1 25247:3 25258:2 25259:2 25319:2 25320:1 25335:1 25342:1 25345:1 25346:1 25356:1 25361:1 25384:2 25386:1 25401:1 25410:1 25412:4 25413:1 25416:2 25417:1 25425:1 25436:6 25465:1 25468:1 25473:1 25474:1 25479:2 25488:1 25492:1 25506:1 25515:1 25557:2 25561:1 25569:1 25576:1 25600:1 25618:1 25657:1 25663:1 25665:1 25676:1 25679:3 25680:2 25687:1 25691:1 25699:1 25700:1 25701:1 25708:2 25718:2 25726:1 25729:1 25742:1 25757:1 25759:2 25781:1 25786:1 25796:5 25804:1 25812:1 25816:2 25826:1 25829:1 25835:1 25838:5 25850:1 25859:1 25864:1 25865:4 25880:2 25882:1 25901:1 25903:1 25906:2 25910:1 25916:2 25929:1 25930:1 25936:2 25943:1 25953:2 25971:2 25988:1 25992:6 25994:1 26021:6 26024:1 26033:1 26038:1 26040:1 26042:1 26059:2 26074:1 26087:1 26088:1 26093:4 26107:1 26112:2 26113:2 26114:1 26118:1 26122:1 26123:1 26127:3 26128:3 26133:1 26162:1 26166:4 26170:1 26175:1 26182:1 26185:1 26190:1 26213:3 26221:2 26222:1 26225:1 26247:2 26249:1 26261:2 26262:1 26267:1 26278:1 26285:1 26290:2 26300:1 26307:1 26309:1 26316:1 26332:2 26338:1 26339:1 26341:1 26352:1 26366:1 26368:3 26373:5 26392:2 26397:1 26453:1 26476:1 26478:1 26479:1 26482:1 26499:1 26504:1 26524:1 26526:1 26542:1 26547:1 26548:1 26551:1 26556:1 26559:2 26566:1 26569:1 26574:2 26582:1 26588:2 26599:1 26611:1 26618:1 26619:1 26621:1 26622:1 26624:1 26641:1 26654:2 26657:2 26658:1 26662:1 26667:3 26681:4 26700:4 26707:1 26709:5 26721:1 26736:1 26737:1 26743:1 26759:4 26772:2 26778:1 26787:1 26788:10 26807:1 26817:1 26838:1 26840:2 26844:1 26845:2 26847:1 26848:2 26850:1 26856:12 26866:1 26890:1 26894:3 26920:1 26933:2 26934:1 26938:1 26954:2 26960:6 26965:2 26966:1 26967:2 26981:1 26985:2 26988:1 26994:4 27003:1 27006:1 27016:2 27022:1 27033:1 27036:1 27057:1 27058:3 27061:1 27069:2 27070:1 27079:1 27090:3 27103:1 27108:1 27113:1 27135:2 27136:1 27141:2 27143:1 27145:1 27147:1 27149:2 27160:2 27169:1 27177:1 27187:1 27188:1 27229:1 27247:1 27275:1 27279:1 27298:1 27330:1 27332:1 27340:1 27342:2 27365:5 27368:1 27376:1 27385:1 27392:1 27408:1 27412:1 27419:1 27422:1 27447:1 27465:1 27472:1 27474:1 27481:2 27500:1 27517:1 27536:3 27549:1 27560:1 27563:7 27575:1 27595:1 27597:4 27603:1 27620:1 27627:2 27636:1 27647:2 27658:1 27661:1 27662:1 27673:1 27675:2 27678:1 27682:2 27687:29 27689:4 27692:5 27694:1 27695:3 27702:1 27724:7 27739:1 27777:3 27789:2 27804:1 27808:2 27820:1 27821:3 27832:6 27838:2 27859:12 27863:2 27867:3 27869:1 27874:2 27878:1 27879:4 27885:1 27887:1 27889:1 27893:2 27897:1 27900:2 27906:1 27907:1 27909:1 27917:2 27923:2 27930:1 27934:2 27935:2 27943:1 27948:3 27951:1 27955:1 27960:1 27964:1 27968:1 27969:2 27975:1 27989:1 28003:1 28011:1 28028:2 28030:1 28031:1 28041:1 28046:1 28050:1 28051:1 28054:2 28058:1 28068:5 28075:1 28082:1 28100:1 28102:2 28126:1 28127:2 28128:2 28131:1 28160:1 28169:1 28174:1 28177:1 28178:1 28180:1 28183:2 28187:5 28191:2 28193:1 28197:1 28202:1 28203:1 28204:1 28208:2 28214:2 28215:1 28217:1 28218:1 28223:1 28244:1 28264:1 28286:1 28292:1 28315:1 28319:2 28320:1 28326:2 28341:1 28350:1 28356:1 28359:2 28362:1 28363:2 28367:1 28373:1 28375:3 28378:1 28380:1 28387:1 28397:7 28404:2 28405:2 28409:1 28411:7 28413:1 28419:1 28461:1 28469:2 28470:1 28506:3 28514:1 28520:1 28536:4 28541:1 28543:2 28551:1 28553:1 28560:6 28565:1 28569:1 28594:1 28596:1 28626:1 28627:1 28646:1 28648:1 28665:2 28681:1 28685:4 28703:2 28709:1 28724:1 28728:1 28734:1 28748:1 28754:1 28761:2 28772:1 28792:1 28801:7 28815:1 28816:1 28818:1 28831:1 28836:7 28849:6 28850:1 28867:1 28904:1 28913:8 28914:3 28916:3 28919:1 28921:1 28924:3 28925:3 28941:1 28947:1 28958:1 28959:2 28961:3 28963:3 29003:1
9 11:1 14:2 18:1 24:1 28:1 34:1 37:5 45:1 56:1 60:1 63:1 65:1 74:1 79:1 82:1 83:1 89:1 90:1 103:1 109:1 113:1 117:1 125:1 133:2 143:1 150:1 153:3 162:1 170:4 189:8 192:1 203:1 214:1 240:1 245:1 270:1 275:1 282:2 293:1 295:34 303:2 315:1 316:4 318:5 320:2 326:1 333:1 348:4 350:1 352:1 354:1 363:2 381:1 403:2 424:3 432:1 433:1 437:1 438:1 442:1 444:1 460:1 463:1 515:1 523:1 561:2 563:4 564:1 569:2 572:4 590:4 596:2 598:2 600:1 613:2 626:1 634:4 638:1 643:2 650:1 674:1 678:2 685:1 692:1 695:1 702:1 716:1 728:1 734:2 735:1 748:1 752:1 767:3 770:1 788:2 795:1 804:1 805:1 807:2 808:1 814:1 828:1 830:8 832:3 842:3 843:1 855:1 856:16 858:1 860:1 867:1 871:1 875:2 877:6 879:7 881:1 885:3 889:1 892:1 893:1 899:1 900:1 905:4 916:1 924:2 925:2 941:1 963:1 974:3 989:1 996:5 998:2 1002:2 1011:1 1019:1 1020:2 1027:1 1028:1 1038:1 1045:1 1046:1 1059:1 1061:2 1078:1 1086:1 1087:1 1089:2 1092:2 1104:3 1112:2 1117:1 1123:1 1136:1 1137:1 1143:1 1148:3 1152:1 1160:1 1163:1 1179:1 1207:2 1228:1 1230:1 1231:2 1232:2 1241:2 1244:1 1248:1 1257:1 1262:1 1276:1 1284:1 1287:1 1300:2 1313:1 1330:1 1345:1 1353:1 1355:3 1369:1 1374:2 1376:1 1394:1 1397:2 1400:6 1401:10 1402:1 1417:2 1418:1 1419:3 1420:2 1422:1 1423:2 1438:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1506:2 1507:1 1508:1 1516:8 1518:1 1543:2 1547:1 1555:2 1557:1 1560:1 1562:3 1564:3 1571:1 1574:1 1578:2 1596:5 1598:1 1617:1 1619:3 1627:6 1634:2 1659:1 1660:1 1677:1 1678:1 1682:1 1693:1 1699:1 1709:1 1743:3 1757:1 1760:1 1762:1 1778:4 1789:1 1794:1 1802:1 1811:1 1819:1 1826:1 1828:1 1830:2 1831:1 1850:1 1875:1 1888:1 1889:1 1892:2 1895:18 1903:1 1907:2 1919:2 1923:1 1929:1 1935:1 1936:1 1952:1 1954:1 1962:8 1963:1 1965:2 1993:1 1998:1 2006:2 2011:4 2045:1 2048:2 2051:1 2072:1 2082:1 2085:1 2089:3 2095:2 2100:1 2101:1 2105:1 2108:1 2124:1 2132:1 2142:1 2150:1 2154:2 2156:1 2158:1 2159:5 2160:1 2162:2 2165:1 2172:1 2174:5 2177:4 2178:2 2179:4 2180:1 2181:1 2187:1 2190:3 2191:1 2207:1 2212:1 2215:3 2216:2 2219:2 2220:2 2221:8 2223:5 2226:1 2227:2 2228:4 2232:1 2233:1 2234:1 2237:2 2239:1 2245:1 2247:2 2249:1 2251:6 2252:2 2253:9 2264:1 2268:1 2269:1 2279:1 2297:1 2309:2 2315:1 2322:1 2336:1 2339:1 2343:1 2347:1 2358:3 2370:4 2371:1 2374:1 2376:1 2384:2 2387:1 2392:2 2410:4 2421:7 2433:1 2439:1 2445:1 2461:1 2465:1 2473:1 2485:5 2494:5 2500:1 2520:1 2522:2 2536:2 2543:4 2552:3 2561:2 2563:1 2570:1 2580:2 2586:1 2609:2 2631:1 2635:1 2641:1 2648:2 2651:4 2656:1 2659:1 2667:2 2670:1 2672:1 2675:1 2676:1 2683:1 2688:1 2691:1 2704:1 2708:2 2712:1 2713:1 2723:1 2730:3 2756:1 2760:1 2761:2 2762:1 2766:7 2770:4 2775:6 2780:1 2781:1 2782:1 2810:1 2813:2 2816:2 2818:2 2826:2 2836:2 2854:7 2857:2 2867:25 2870:1 2883:4 2888:1 2900:2 2909:1 2915:1 2923:1 2931:1 2936:14 2951:1 2954:1 2961:6 2965:9 2966:1 2968:1 2969:1 2972:1 2989:1 3015:1 3023:1 3026:1 3030:1 3059:1 3068:1 3074:4 3075:1 3089:1 3097:1 3105:1 3106:2 3112:1 3166:1 3188:2 3197:1 3205:1 3216:1 3224:1 3231:1 3232:6 3237:1 3243:2 3248:1 3255:1 3256:1 3266:1 3271:1 3272:1 3279:1 3283:1 3293:1 3295:5 3314:1 3338:1 3352:2 3357:13 3397:1 3407:1 3420:2 3424:2 3453:1 3459:1 3471:1 3472:2 3475:2 3478:1 3488:1 3489:1 3495:2 3509:1 3517:2 3528:1 3540:2 3548:1 3554:1 3558:1 3570:4 3574:1 3577:1 3580:2 3582:8 3599:5 3604:2 3605:1 3606:1 3607:4 3608:2 3615:1 3634:2 3638:1 3639:6 3647:1 3648:1 3669:1 3680:1 3684:1 3687:2 3688:3 3692:1 3695:2 3698:3 3712:1 3730:1 3737:1 3740:1 3742:4 3744:1 3746:2 3748:13 3763:1 3779:1 3783:5 3784:1 3788:2 3789:12 3790:3 3792:1 3796:2 3810:2 3813:7 3817:1 3822:1 3835:1 3836:3 3838:1 3846:1 3848:1 3851:1 3862:1 3866:1 3874:1 3876:1 3883:1 3888:2 3895:1 3902:3 3904:3 3918:2 3919:2 3921:1 3931:1 3934:1 3939:2 3940:1 3943:2 3948:2 3953:1 3955:1 3964:5 3970:1 3972:1 3977:2 3982:1 3983:1 3987:1 3988:3 3989:2 3998:5 3999:4 4005:1 4019:1 4031:1 4033:1 4040:1 4051:1 4054:2 4063:1 4069:1 4078:5 4085:2 4086:1 4093:1 4112:1 4113:1 4124:1 4125:1 4129:1 4136:1 4137:1 4173:1 4190:7 4193:2 4201:1 4204:1 4208:1 4210:1 4219:1 4234:1 4254:1 4256:1 4270:2 4272:2 4282:1 4296:1 4298:1 4314:2 4343:1 4348:2 4352:1 4357:1 4362:5 4378:1 4385:1 4414:1 4416:1 4428:3 4434:1 4439:2 4455:1 4470:1 4478:1 4491:1 4494:1 4528:2 4535:1 4549:1 4554:1 4560:1 4562:1 4565:1 4583:2 4585:2 4605:1 4613:1 4619:2 4623:1 4626:3 4640:1 4646:3 4657:2 4658:1 4676:2 4678:1 4691:1 4695:8 4713:1 4724:1 4731:1 4742:1 4746:1 4751:1 4759:1 4768:1 4773:8 4776:1 4778:1 4783:1 4787:2 4788:2 4803:1 4807:1 4810:1 4815:1 4818:1 4851:3 4867:1 4876:27 4878:2 4881:1 4895:3 4903:1 4909:4 4917:1 4925:2 4928:7 4940:2 4963:2 4964:1 4980:1 4981:1 4984:1 4985:7 5003:5 5005:7 5006:1 5008:1 5009:1 5011:1 5013:3 5014:1 5015:1 5017:3 5020:1 5022:2 5026:1 5028:4 5030:3 5031:1 5033:1 5041:1 5042:1 5045:4 5046:3 5049:1 5063:1 5064:1 5066:1 5090:1 5096:1 5125:3 5131:2 5133:1 5138:1 5157:2 5176:1 5177:1 5184:2 5186:1 5190:3 5195:2 5200:1 5203:3 5219:1 5220:1 5237:1 5245:2 5249:4 5255:1 5280:1 5285:1 5302:1 5306:1 5307:1 5316:1 5325:1 5328:1 5351:2 5358:8 5362:1 5365:1 5369:2 5371:2 5386:1 5394:1 5404:2 5423:1 5429:1 5434:2 5438:2 5444:1 5453:1 5480:1 5493:1 5494:2 5501:1 5511:2 5524:2 5525:2 5534:1 5535:2 5538:2 5540:2 5548:1 5551:1 5556:2 5562:1 5563:1 5564:1 5569:1 5582:3 5584:1 5588:1 5589:1 5593:1 5599:1 5607:1 5615:3 5629:4 5639:1 5640:1 5663:3 5680:1 5681:3 5687:1 5694:1 5701:3 5702:1 5705:1 5718:2 5720:4 5721:1 5728:2 5744:1 5749:1 5762:1 5773:1 5785:1 5790:1 5797:1 5801:1 5802:1 5812:2 5813:1 5843:3 5850:1 5852:1 5855:1 5877:1 5881:2 5898:1 5920:1 5934:1 5942:1 5947:4 5949:1 5969:2 5972:17 5987:4 5992:4 6000:1 6001:1 6006:5 6007:1 6009:2 6017:1 6039:3 6040:1 6043:1 6053:1 6056:1 6058:1 6078:2 6102:1 6110:1 6117:1 6130:2 6137:2 6138:1 6142:1 6149:1 6150:1 6153:3 6156:1 6176:6 6178:1 6182:1 6192:1 6197:1 6199:1 6220:1 6244:1 6245:2 6247:1 6259:4 6262:1 6263:1 6264:1 6265:2 6267:1 6269:2 6270:4 6273:1 6274:3 6275:3 6276:5 6277:1 6279:2 6280:1 6282:4 6283:13 6284:5 6286:1 6316:1 6334:3 6379:4 6381:1 6383:1 6389:1 6419:1 6420:2 6426:1 6435:2 6482:2 6487:1 6490:1 6493:1 6502:1 6507:1 6513:1 6531:1 6536:3 6537:1 6542:1 6554:1 6556:1 6558:1 6565:4 6580:1 6581:1 6585:1 6589:1 6598:1 6609:2 6613:1 6652:1 6653:2 6654:2 6661:2 6668:1 6671:2 6677:1 6679:2 6680:1 6689:1 6699:9 6715:2 6722:4 6728:1 6741:1 6744:1 6751:1 6757:1 6769:1 6777:1 6795:1 6810:4 6811:1 6823:2 6851:1 6854:2 6855:2 6860:3 6866:1 6869:1 6871:1 6885:3 6886:2 6903:1 6906:1 6914:2 6918:1 6919:2 6922:2 6927:1 6932:1 6938:1 6939:1 6948:2 6987:1 6999:1 7009:1 7036:1 7049:1 7050:12 7052:1 7067:1 7073:2 7074:3 7091:1 7097:2 7099:2 7102:1 7109:1 7124:1 7125:1 7155:2 7169:1 7174:1 7180:1 7198:3 7218:2 7234:1 7248:2 7263:3 7274:1 7278:1 7287:4 7288:1 7290:1 7297:1 7303:1 7311:1 7319:1 7322:1 7334:5 7346:4 7347:1 7352:1 7367:2 7371:1 7382:2 7383:1 7386:2 7401:1 7407:2 7411:1 7427:1 7463:3 7485:2 7496:1 7499:2 7510:1 7516:1 7518:1 7554:2 7555:13 7556:6 7560:1 7570:2 7576:1 7580:2 7582:4 7584:2 7603:5 7604:1 7620:57 7622:2 7643:8 7644:14 7645:1 7648:4 7657:1 7665:1 7667:1 7671:2 7682:1 7685:1 7686:1 7690:1 7696:1 7700:1 7710:2 7719:1 7720:4 7725:2 7734:1 7751:1 7755:1 7758:2 7773:2 7786:1 7807:1 7826:2 7851:3 7862:1 7871:1 7874:1 7878:3 7892:1 7897:6 7928:1 7931:1 7943:1 7962:1 7967:1 7994:1 8004:1 8007:1 8032:1 8035:1 8037:1 8043:3 8044:3 8045:1 8046:1 8062:2 8063:2 8081:1 8082:1 8087:1 8093:1 8105:1 8107:2 8110:1 8116:2 8122:1 8124:2 8130:2 8131:1 8136:1 8141:1 8142:3 8145:1 8154:1 8156:11 8180:2 8184:1 8186:2 8194:1 8205:1 8236:1 8244:1 8254:1 8270:1 8299:1 8301:2 8311:2 8319:2 8330:1 8334:1 8336:1 8340:1 8358:1 8367:4 8369:2 8376:3 8379:1 8383:3 8387:2 8394:1 8395:4 8405:1 8412:1 8422:1 8430:5 8433:1 8438:2 8441:2 8445:1 8449:1 8460:1 8468:1 8480:1 8485:1 8490:1 8495:1 8497:1 8500:3 8501:7 8503:4 8504:1 8505:2 8508:3 8510:8 8512:2 8513:4 8514:1 8516:2 8525:3 8526:2 8543:4 8549:2 8550:5 8559:1 8565:1 8567:3 8571:1 8572:2 8575:2 8578:2 8582:2 8586:5 8587:1 8604:2 8611:1 8639:1 8640:2 8647:1 8655:1 8657:1 8679:1 8683:1 8688:1 8710:1 8719:1 8725:2 8728:1 8739:1 8751:1 8756:3 8762:1 8772:2 8779:3 8801:1 8805:2 8808:1 8810:2 8811:4 8815:3 8827:3 8833:1 8840:1 8846:1 8857:1 8914:1 8921:1 8929:1 8936:2 8950:6 8952:1 8954:2 8962:1 8969:2 8971:1 8992:3 9001:1 9009:1 9011:1 9019:1 9022:2 9023:1 9035:2 9040:1 9050:1 9057:1 9060:1 9065:1 9068:1 9069:1 9077:3 9107:1 9115:4 9121:1 9128:1 9130:1 9134:1 9139:3 9142:2 9145:1 9151:1 9161:2 9162:1 9196:1 9200:2 9204:1 9207:8 9209:1 9210:1 9213:1 9216:3 9219:1 9223:1 9226:34 9230:3 9231:2 9246:2 9247:1 9261:1 9275:1 9286:4 9298:2 9305:1 9312:1 9314:1 9319:1 9329:1 9338:2 9345:1 9349:1 9360:2 9363:7 9364:1 9365:2 9390:1 9392:1 9421:1 9427:1 9433:4 9435:1 9448:1 9469:1 9490:1 9497:1 9528:1 9529:1 9537:1 9539:1 9544:1 9555:3 9558:1 9559:1 9567:1 9568:1 9569:6 9574:1 9582:1 9586:5 9594:2 9601:2 9608:2 9634:2 9652:1 9663:8 9668:1 9675:1 9676:1 9677:6 9687:2 9689:1 9697:1 9700:1 9702:1 9704:2 9712:1 9713:1 9746:3 9772:1 9780:1 9789:1 9790:1 9815:1 9818:1 9823:2 9829:1 9847:7 9850:1 9856:1 9862:1 9865:1 9871:4 9877:2 9878:2 9880:1 9883:2 9885:1 9887:1 9890:1 9898:4 9911:1 9913:1 9917:1 9919:1 9921:1 9923:1 9924:1 9928:3 9929:1 9932:2 9933:1 9935:1 9938:1 9939:1 9948:1 9954:1 9956:1 9968:4 9986:1 9987:1 9996:1 10019:1 10037:1 10038:1 10043:1 10057:2 10065:1 10073:1 10094:1 10098:1 10117:1 10122:1 10124:2 10125:1 10126:1 10135:2 10157:1 10178:1 10188:1 10191:1 10195:1 10200:1 10228:1 10234:1 10241:2 10263:2 10265:1 10266:4 10280:1 10286:2 10297:1 10302:1 10305:1 10328:2 10329:1 10347:4 10351:2 10359:2 10370:1 10372:1 10402:1 10405:1 10414:1 10436:2 10448:1 10470:1 10478:2 10484:1 10486:1 10488:1 10493:1 10501:1 10504:3 10507:2 10509:1 10513:7 10521:1 10523:1 10524:1 10526:1 10533:1 10537:1 10539:3 10541:1 10550:1 10554:1 10555:3 10557:4 10558:1 10564:1 10573:3 10582:4 10583:4 10590:2 10592:2 10593:1 10621:1 10628:1 10639:1 10641:1 10657:7 10665:5 10677:2 10683:4 10686:14 10737:1 10740:1 10747:1 10748:2 10783:4 10787:1 10790:1 10805:1 10824:1 10827:1 10835:2 10839:1 10846:1 10857:1 10869:1 10883:1 10901:1 10903:4 10905:4 10909:2 10910:2 10918:1 10921:2 10931:2 10937:1 10943:2 10946:1 10947:1 10953:1 10962:1 10963:1 10969:1 10989:7 10992:1 11005:1 11010:6 11014:1 11016:1 11018:2 11021:1 11040:1 11062:1 11063:2 11064:2 11066:1 11071:1 11080:1 11083:1 11085:1 11086:1 11094:1 11100:1 11106:1 11107:1 11118:1 11131:1 11138:2 11145:1 11147:1 11152:1 11163:1 11166:1 11173:1 11175:1 11177:1 11188:1 11197:1 11203:5 11208:1 11216:1 11230:2 11232:1 11234:1 11248:1 11260:1 11268:2 11274:1 11278:3 11284:1 11285:1 11287:1 11300:2 11301:1 11302:2 11308:2 11315:3 11317:1 11333:9 11341:1 11367:1 11370:13 11371:1 11385:1 11400:1 11401:1 11407:2 11423:1 11430:1 11442:1 11444:2 11466:2 11468:1 11469:1 11470:1 11476:1 11477:2 11479:1 11481:2 11496:1 11501:1 11506:1 11509:2 11514:1 11520:2 11526:4 11530:8 11547:7 11549:1 11550:7 11580:1 11587:1 11600:2 11601:2 11603:3 11606:1 11609:2 11611:2 11614:1 11615:2 11619:3 11620:1 11622:1 11631:2 11632:3 11633:1 11636:2 11641:3 11645:1 11649:1 11664:7 11666:1 11671:1 11684:8 11690:2 11693:1 11696:1 11710:1 11711:2 11716:1 11727:1 11734:1 11755:1 11772:2 11789:2 11824:2 11826:1 11852:1 11865:3 11871:1 11877:3 11882:1 11891:1 11908:1 11916:1 11924:1 11931:3 11936:4 11952:1 11973:3 11977:1 11990:1 11997:1 12004:1 12005:1 12010:1 12025:1 12045:1 12076:2 12082:1 12100:1 12107:1 12109:1 12110:3 12111:4 12115:2 12125:2 12132:1 12141:2 12142:1 12154:1 12156:2 12165:4 12166:5 12172:3 12176:1 12178:1 12184:2 12219:1 12239:1 12243:1 12250:1 12263:1 12272:1 12276:2 12281:8 12297:1 12302:2 12318:1 12323:3 12337:1 12338:1 12345:1 12346:1 12349:2 12361:3 12362:2 12365:1 12376:2 12380:2 12398:1 12405:1 12420:1 12423:4 12431:2 12435:1 12457:1 12458:1 12464:1 12468:1 12472:1 12476:1 12477:7 12480:1 12491:1 12493:1 12495:1 12508:1 12512:1 12515:1 12526:2 12534:1 12586:1 12593:1 12608:8 12621:1 12633:1 12635:1 12636:1 12644:1 12648:17 12654:1 12658:1 12668:3 12671:6 12676:1 12681:2 12701:1 12702:1 12708:4 12733:2 12764:1 12769:5 12772:2 12782:1 12787:1 12789:1 12790:1 12791:1 12796:2 12797:1 12813:2 12827:5 12831:1 12835:1 12837:1 12860:1 12861:1 12885:1 12888:1 12914:1 12949:7 12954:1 12984:1 12999:1 13045:8 13049:1 13066:3 13068:1 13072:1 13076:8 13080:4 13086:1 13087:1 13093:2 13094:6 13120:1 13128:2 13131:1 13133:1 13142:2 13143:1 13144:1 13166:5 13188:1 13194:1 13206:2 13211:2 13213:1 13222:1 13224:7 13231:1 13232:4 13233:2 13244:1 13250:1 13251:1 13252:2 13257:2 13263:2 13275:2 13278:1 13282:1 13283:1 13287:1 13301:2 13302:4 13306:1 13310:1 13320:3 13331:1 13341:2 13346:1 13364:2 13372:7 13376:1 13396:1 13401:1 13416:4 13420:1 13421:4 13440:1 13454:2 13468:3 13488:1 13490:1 13503:1 13506:1 13520:1 13524:1 13533:1 13556:1 13557:2 13561:2 13570:1 13571:1 13599:5 13600:1 13601:2 13606:5 13607:2 13610:2 13619:1 13620:1 13628:1 13633:1 13654:4 13674:1 13680:3 13691:2 13694:2 13697:1 13698:1 13723:1 13733:7 13745:1 13764:3 13779:3 13782:1 13784:1 13788:2 13799:1 13813:1 13827:7 13832:3 13833:1 13838:1 13847:2 13886:1 13895:1 13904:4 13931:10 13942:1 13963:1 13974:1 13980:2 13986:1 14006:1 14007:1 14018:1 14024:1 14029:1 14036:1 14054:2 14076:7 14086:2 14089:1 14107:3 14119:1 14126:1 14134:1 14140:1 14152:1 14161:1 14170:1 14179:4 14180:1 14181:1 14196:1 14212:1 14221:1 14223:1 14235:1 14245:1 14255:1 14266:3 14274:2 14284:2 14297:1 14299:3 14312:3 14313:1 14317:3 14318:9 14324:1 14325:7 14335:4 14339:2 14340:2 14347:1 14358:1 14360:1 14361:1 14376:1 14385:1 14427:2 14433:1 14434:1 14449:5 14476:1 14482:3 14485:1 14489:2 14490:2 14492:1 14493:4 14498:4 14502:1 14514:1 14523:1 14532:1 14533:3 14537:1 14551:1 14554:1 14573:1 14591:4 14600:2 14614:2 14616:3 14623:1 14624:1 14636:2 14637:2 14647:5 14650:1 14664:3 14674:1 14683:2 14700:1 14701:1 14725:1 14728:1 14761:1 14775:1 14780:1 14785:2 14798:1 14803:2 14820:4 14821:1 14823:2 14824:1 14836:1 14837:1 14881:1 14883:1 14891:9 14893:1 14910:2 14912:1 14916:3 14923:1 14935:1 14936:9 14938:3 14961:2 14970:1 14984:2 14986:1 14999:1 15000:1 15020:8 15022:1 15024:1 15037:1 15055:1 15085:1 15109:1 15117:1 15123:5 15125:1 15129:1 15130:1 15134:1 15144:1 15145:1 15146:2 15152:1 15158:1 15160:1 15173:1 15177:2 15178:1 15180:1 15207:1 15217:1 15223:1 15231:1 15233:1 15238:1 15241:1 15244:1 15245:3 15259:2 15275:1 15282:1 15301:2 15309:1 15322:1 15332:11 15338:2 15345:2 15380:1 15385:3 15395:1 15398:1 15403:1 15404:5 15414:5 15420:1 15424:1 15431:1 15435:1 15436:1 15440:1 15453:2 15455:1 15459:2 15471:1 15482:2 15496:1 15508:1 15509:1 15512:1 15527:1 15539:1 15556:1 15563:5 15568:1 15571:1 15578:11 15581:3 15590:1 15591:3 15595:1 15598:1 15607:2 15614:5 15622:2 15624:1 15625:7 15626:3 15631:1 15637:1 15642:1 15644:1 15678:1 15679:1 15687:2 15706:1 15710:1 15711:1 15715:1 15717:2 15725:4 15742:1 15745:10 15750:1 15757:1 15763:2 15767:1 15768:1 15777:1 15785:3 15814:2 15831:6 15832:3 15835:1 15837:1 15839:1 15871:1 15877:1 15879:3 15893:1 15896:1 15906:1 15909:5 15911:2 15913:1 15923:1 15957:1 15967:1 15973:4 16002:1 16008:1 16014:1 16018:1 16026:1 16029:18 16030:1 16034:1 16048:4 16050:1 16051:2 16055:1 16056:2 16067:1 16084:1 16095:2 16103:1 16119:5 16122:1 16127:1 16137:2 16146:1 16147:1 16149:1 16150:1 16154:1 16163:1 16164:1 16170:2 16172:1 16177:3 16181:1 16190:2 16194:1 16196:1 16237:1 16242:3 16285:4 16288:1 16289:1 16290:2 16310:1 16329:1 16336:1 16338:1 16353:1 16363:1 16383:1 16398:1 16400:1 16403:4 16434:2 16475:1 16482:1 16488:1 16489:1 16505:1 16511:1 16527:1 16528:1 16542:1 16543:1 16546:1 16555:3 16575:1 16588:1 16589:1 16597:1 16604:2 16605:1 16614:1 16639:1 16646:1 16662:1 16666:2 16672:1 16675:2 16685:3 16702:1 16707:1 16708:1 16710:1 16714:3 16716:3 16718:1 16727:1 16738:1 16747:1 16758:1 16759:1 16761:1 16776:1 16787:1 16789:3 16801:1 16802:1 16826:1 16828:1 16830:1 16840:4 16843:2 16844:6 16851:1 16867:1 16874:1 16883:1 16899:1 16905:1 16908:1 16915:8 16929:2 16930:1 16932:3 16939:1 16942:1 16947:2 16966:5 16974:1 16977:4 16990:1 16991:1 16995:2 17013:2 17015:1 17036:1 17042:1 17046:2 17050:1 17053:2 17059:6 17067:2 17087:1 17091:6 17092:1 17106:1 17107:1 17110:1 17121:1 17136:2 17138:2 17155:5 17156:3 17167:1 17172:1 17179:1 17181:1 17186:2 17187:3 17198:3 17199:7 17200:1 17207:3 17210:1 17212:1 17244:1 17247:1 17251:1 17265:1 17270:2 17277:2 17281:1 17327:1 17342:1 17343:1 17345:1 17346:1 17360:1 17363:4 17369:2 17374:2 17397:1 17401:1 17417:1 17421:1 17422:2 17442:1 17445:1 17447:3 17448:3 17454:5 17455:1 17456:1 17463:5 17475:3 17476:2 17477:1 17509:1 17511:2 17522:5 17523:4 17538:1 17558:2 17560:3 17575:1 17585:2 17587:1 17592:7 17597:1 17604:1 17631:1 17636:1 17644:2 17647:2 17648:1 17652:1 17655:2 17662:1 17664:2 17665:5 17667:1 17669:1 17670:1 17674:1 17681:1 17683:4 17687:1 17691:1 17692:1 17698:1 17699:1 17707:1 17721:1 17722:3 17747:1 17753:2 17764:1 17766:2 17767:8 17772:4 17781:34 17783:1 17785:1 17787:1 17790:2 17794:1 17803:1 17812:4 17819:1 17822:1 17831:1 17838:1 17845:1 17852:1 17855:1 17860:3 17871:1 17872:5 17873:1 17875:1 17882:1 17886:1 17896:5 17907:1 17922:1 17931:5 17962:1 17967:1 17977:3 17979:1 17987:1 17989:1 17994:2 17998:2 18007:5 18009:1 18011:1 18019:1 18032:2 18045:1 18056:1 18058:1 18067:1 18080:1 18084:1 18098:1 18114:1 18120:1 18133:1 18142:1 18150:2 18152:3 18167:1 18169:1 18170:1 18178:1 18184:1 18212:1 18219:4 18220:1 18239:1 18249:2 18288:1 18315:4 18323:1 18331:1 18340:1 18348:2 18357:1 18380:2 18381:3 18382:3 18399:2 18410:1 18417:8 18424:1 18444:1 18449:1 18459:1 18461:1 18465:1 18470:1 18471:3 18476:2 18478:4 18481:1 18495:1 18498:1 18499:1 18504:5 18509:2 18512:2 18516:1 18519:2472 18524:1 18534:1 18538:1 18572:4 18573:1 18582:3 18590:1 18607:2 18608:1 18619:1 18624:1 18643:2 18648:2 18657:1 18668:2 18684:2 18690:1 18691:1 18702:1 18708:3 18715:6 18720:1 18725:5 18727:4 18728:4 18731:1 18743:1 18748:2 18763:1 18792:2 18799:1 18802:7 18808:2 18810:2 18814:1 18816:1 18840:1 18842:34 18850:1 18861:1 18863:7 18898:1 18904:1 18907:1 18915:1 18919:1 18920:1 18930:2 18938:1 18947:1 18950:1 18968:1 18969:1 18971:1 18982:2 18991:4 19007:1 19008:1 19017:1 19033:2 19055:3 19061:1 19065:1 19079:1 19089:1 19091:1 19110:1 19113:1 19121:1 19135:2 19140:2 19142:3 19168:2 19172:1 19174:2 19176:4 19180:1 19187:1 19190:3 19192:3 19197:4 19202:1 19210:1 19218:1 19228:5 19235:1 19239:1 19256:1 19257:2 19271:2 19273:1 19289:1 19291:1 19293:5 19298:11 19314:1 19315:1 19335:7 19336:1 19350:2 19353:1 19359:1 19370:1 19412:2 19414:1 19420:3 19442:2 19475:1 19482:1 19494:1 19497:1 19507:5 19508:1 19515:3 19516:2 19531:2 19534:1 19549:1 19550:4 19551:1 19557:1 19563:3 19566:1 19567:1 19573:1 19592:2 19600:1 19605:1 19628:1 19634:2 19661:3 19674:1 19680:1 19708:3 19719:1 19720:1 19724:1 19732:1 19735:3 19742:1 19745:1 19751:1 19752:1 19754:1 19767:2 19771:5 19775:6 19777:1 19778:2 19784:5 19794:1 19797:1 19807:1 19816:1 19818:1 19829:1 19833:1 19839:2 19859:1 19862:1 19876:2 19881:2 19904:2 19909:5 19918:1 19932:1 19936:2 19948:1 19949:4 19953:1 19964:1 19966:1 19978:4 19979:1 19992:1 19996:1 20001:2 20003:2 20004:2 20007:1 20017:1 20020:1 20031:2 20032:1 20036:1 20037:1 20052:1 20061:4 20068:1 20074:1 20079:1 20084:3 20086:1 20094:2 20103:1 20117:2 20118:2 20137:1 20159:6 20170:1 20175:1 20187:1 20211:8 20212:3 20218:4 20226:2 20231:1 20237:1 20238:1 20272:1 20276:1 20281:1 20283:3 20293:2 20299:1 20302:1 20313:1 20329:1 20337:1 20345:1 20362:1 20373:1 20395:1 20400:1 20401:1 20404:3 20406:4 20408:1 20412:1 20420:1 20422:1 20443:1 20453:1 20454:1 20455:9 20465:2 20466:1 20467:1 20468:4 20474:2 20495:1 20525:1 20530:1 20531:3 20532:1 20542:1 20545:1 20547:2 20567:4 20577:1 20594:1 20599:1 20600:1 20601:1 20604:1 20626:2 20631:2 20643:2 20644:1 20652:1 20656:1 20658:4 20671:1 20677:4 20679:1 20682:1 20683:1 20685:2 20686:1 20692:1 20697:1 20701:1 20705:5 20710:1 20715:1 20716:1 20721:3 20722:3 20730:1 20734:1 20738:1 20747:7 20770:1 20775:2 20780:2 20781:1 20782:3 20783:1 20797:1 20798:1 20823:3 20833:1 20846:1 20857:1 20862:1 20900:2 20907:2 20910:1 20918:1 20925:1 20945:1 20948:2 20957:2 20979:7 20985:1 20986:1 20988:1 21010:2 21016:1 21019:2 21029:1 21049:1 21062:2 21075:1 21079:1 21080:1 21085:1 21088:1 21091:2 21100:1 21107:1 21118:1 21122:1 21137:2 21142:1 21158:1 21159:1 21169:2 21174:1 21193:1 21196:1 21198:2 21201:1 21211:1 21250:1 21257:1 21265:1 21276:2 21284:2 21285:1 21288:1 21289:1 21313:1 21320:1 21332:1 21339:1 21345:1 21357:1 21358:2 21359:1 21371:4 21372:1 21373:1 21374:2 21380:1 21381:1 21386:3 21387:3 21389:2 21392:1 21397:1 21405:1 21406:1 21407:1 21409:1 21410:1 21415:3 21434:1 21440:1 21442:2 21444:2 21448:1 21459:1 21472:4 21486:1 21488:2 21490:1 21493:1 21498:3 21499:2 21503:1 21504:1 21506:1 21509:3 21518:2 21519:1 21520:1 21523:2 21528:1 21538:1 21544:1 21548:10 21551:1 21567:1 21568:2 21569:5 21580:2 21616:1 21634:2 21647:2 21648:1 21654:2 21661:1 21663:4 21670:1 21675:9 21684:2 21691:1 21695:3 21712:1 21714:2 21715:1 21724:1 21750:1 21770:1 21771:1 21778:1 21804:1 21809:1 21811:1 21812:6 21822:1 21824:1 21826:1 21827:2 21829:2 21830:1 21838:1 21845:1 21846:6 21847:1 21848:3 21867:2 21870:1 21877:1 21885:1 21901:2 21916:2 21919:1 21931:1 21937:3 21941:1 21952:1 21967:1 21971:1 21975:1 21994:3 21999:1 22009:4 22012:2 22016:3 22017:3 22020:1 22021:1 22025:1 22051:1 22052:1 22059:2 22061:1 22065:3 22077:2 22080:2 22096:3 22115:1 22132:1 22135:1 22144:1 22147:2 22150:1 22160:1 22173:5 22174:6 22178:3 22179:1 22180:2 22181:1 22189:2 22190:1 22205:1 22212:2 22222:1 22223:4 22230:1 22236:1 22239:2 22243:2 22248:3 22252:3 22257:2 22258:4 22265:1 22277:2 22290:1 22291:1 22293:1 22294:3 22295:1 22302:1 22315:2 22318:1 22329:2 22331:1 22332:1 22336:1 22337:1 22342:1 22345:3 22349:1 22357:1 22362:3 22368:1 22390:1 22391:9 22392:1 22401:1 22406:2 22412:1 22414:34 22419:1 22420:3 22422:4 22425:1 22426:3 22427:5 22430:1 22432:1 22434:2 22451:1 22453:3 22455:1 22461:1 22464:3 22467:1 22473:2 22493:3 22495:2 22496:1 22507:2 22510:1 22529:3 22538:1 22542:1 22547:1 22579:4 22585:1 22593:9 22599:2 22616:2 22621:2 22634:1 22646:1 22672:1 22674:2 22676:2 22679:1 22680:1 22687:1 22691:3 22692:1 22695:1 22699:2 22705:1 22706:1 22721:4 22726:2 22734:1 22736:1 22737:1 22758:1 22776:1 22777:2 22782:1 22784:1 22788:1 22808:1 22837:1 22848:1 22866:1 22867:1 22878:1 22886:1 22896:2 22902:1 22919:1 22921:1 22931:2 22935:1 22947:2 22948:1 22955:1 22962:2 22964:1 22965:2 22971:2 22980:3 22981:1 22982:1 22998:3 23001:4 23021:2 23024:1 23027:1 23033:3 23038:1 23057:1 23060:1 23069:1 23072:1 23099:1 23130:1 23143:1 23148:1 23165:2 23175:1 23184:3 23188:2 23195:1 23196:1 23207:3 23227:2 23234:2 23235:1 23239:1 23241:1 23248:1 23254:1 23261:1 23275:2 23283:3 23297:1 23299:5 23302:1 23305:1 23310:2 23313:2 23326:2 23340:1 23343:1 23349:1 23351:1 23352:1 23361:12 23368:1 23394:2 23403:1 23408:1 23420:1 23437:2 23439:1 23441:1 23452:1 23467:1 23482:2 23488:2 23494:1 23504:1 23519:1 23520:1 23527:1 23532:4 23545:1 23559:2 23568:1 23581:1 23591:1 23592:1 23600:3 23604:1 23616:9 23618:2 23620:1 23635:5 23647:1 23651:1 23659:2 23667:1 23716:1 23720:1 23722:1 23732:3 23736:2 23744:1 23749:2 23758:1 23774:1 23785:1 23798:1 23801:1 23806:1 23814:1 23831:1 23832:1 23842:1 23875:4 23884:6 23885:1 23896:4 23899:1 23910:1 23912:1 23918:2 23919:1 23920:1 23928:1 23932:1 23939:2 23941:1 23966:3 23973:1 23979:1 23992:1 23994:3 23995:2 23996:1 24001:1 24025:2 24030:1 24044:1 24047:3 24052:1 24057:2 24058:3 24064:1 24068:1 24073:1 24093:1 24098:1 24101:1 24114:1 24124:1 24146:1 24148:1 24150:2 24156:1 24159:2 24160:1 24162:7 24164:3 24165:1 24166:4 24167:2 24171:1 24172:2 24174:2 24175:5 24182:2 24183:4 24187:2 24193:2 24206:6 24213:2 24220:1 24233:1 24236:3 24237:1 24242:1 24247:2 24263:6 24267:3 24291:2 24295:1 24297:1 24306:1 24307:3 24321:1 24324:1 24342:1 24345:1 24347:1 24348:2 24362:1 24390:1 24401:1 24402:1 24419:3 24440:4 24448:1 24450:6 24453:1 24464:2 24466:1 24470:1 24496:1 24499:1 24508:1 24512:2 24513:1 24521:1 24524:1 24547:2 24548:1 24549:1 24558:1 24571:1 24582:2 24584:1 24609:2 24623:1 24626:1 24630:3 24640:1 24645:1 24648:1 24654:1 24658:2 24665:2 24707:6 24746:1 24757:2 24761:1 24763:1 24772:1 24780:1 24783:4 24791:1 24793:1 24797:1 24810:1 24816:1 24822:4 24878:1 24899:1 24900:2 24912:3 24915:8 24946:11 24955:1 24969:9 24977:1 24990:1 24997:1 25005:1 25015:2 25019:1 25028:1 25038:2 25041:1 25042:1 25045:1 25046:1 25047:1 25071:1 25085:1 25089:1 25093:2 25099:2 25104:1 25109:1 25111:2 25114:6 25122:1 25137:2 25139:2 25141:11 25144:4 25145:2 25155:1 25162:1 25167:2 25168:1 25170:1 25177:1 25182:1 25186:1 25214:2 25219:1 25225:4 25230:1 25240:1 25247:3 25258:2 25259:2 25319:2 25320:1 25335:1 25342:1 25345:1 25346:1 25356:1 25361:1 25384:3 25386:1 25401:1 25410:1 25412:4 25413:1 25416:2 25417:1 25425:1 25436:6 25465:1 25468:1 25473:1 25474:1 25479:2 25488:1 25492:1 25506:1 25515:1 25557:2 25561:1 25569:1 25576:1 25600:1 25618:1 25626:1 25657:1 25663:1 25665:1 25676:1 25679:3 25680:2 25687:1 25691:1 25698:1 25699:1 25700:1 25701:1 25708:2 25718:2 25726:1 25729:1 25742:1 25757:1 25759:2 25781:1 25786:1 25796:5 25804:1 25812:1 25816:2 25826:1 25829:1 25835:1 25838:5 25850:1 25859:1 25864:1 25865:4 25880:2 25882:1 25901:1 25903:1 25906:2 25910:1 25916:2 25929:1 25930:1 25936:2 25943:1 25953:2 25971:2 25988:1 25992:6 25994:1 26021:6 26024:1 26033:1 26038:1 26040:1 26042:1 26059:2 26074:1 26087:1 26088:1 26093:4 26107:1 26112:2 26113:3 26114:1 26118:1 26122:1 26123:1 26127:3 26128:3 26133:1 26162:1 26166:4 26170:1 26175:1 26182:1 26185:1 26188:1 26190:1 26193:1 26213:3 26221:2 26222:1 26225:1 26247:2 26249:2 26261:2 26262:1 26267:1 26278:1 26285:1 26290:2 26300:1 26307:1 26309:2 26316:1 26332:2 26338:1 26339:1 26341:1 26352:1 26366:1 26368:3 26373:5 26392:2 26397:1 26453:1 26476:1 26478:1 26479:1 26482:1 26499:1 26504:1 26524:1 26526:1 26542:1 26547:1 26548:1 26551:1 26556:1 26559:2 26566:1 26569:1 26574:2 26582:1 26588:2 26599:1 26611:1 26618:1 26619:1 26621:1 26622:1 26624:1 26641:1 26654:2 26657:2 26658:1 26662:1 26667:4 26681:4 26700:5 26707:1 26709:5 26721:1 26724:1 26736:1 26737:1 26743:1 26759:4 26772:2 26778:1 26787:1 26788:10 26807:1 26817:1 26838:1 26840:2 26844:1 26845:2 26847:1 26848:2 26850:1 26856:12 26866:1 26890:1 26894:3 26920:1 26933:2 26934:1 26938:1 26954:2 26960:7 26965:2 26966:1 26967:3 26981:1 26985:2 26988:1 26994:4 27003:1 27006:1 27016:2 27022:1 27033:1 27036:1 27057:1 27058:3 27061:1 27069:2 27070:1 27079:1 27090:3 27103:1 27108:1 27113:1 27135:2 27136:1 27141:2 27143:1 27145:1 27147:1 27149:2 27160:2 27169:1 27177:1 27187:1 27188:1 27229:1 27247:1 27275:1 27279:1 27298:1 27330:1 27332:1 27340:1 27342:2 27365:5 27368:1 27376:1 27385:1 27392:1 27408:1 27412:1 27419:1 27422:1 27447:1 27465:1 27472:1 27474:1 27481:2 27500:1 27517:1 27536:3 27549:1 27560:1 27563:7 27575:1 27579:1 27595:1 27597:4 27603:1 27620:1 27627:2 27636:1 27647:2 27658:1 27661:1 27662:1 27673:1 27675:2 27678:1 27682:2 27687:32 27689:4 27692:5 27694:1 27695:3 27702:1 27707:1 27724:8 27739:1 27777:3 27789:2 27804:1 27808:2 27820:1 27821:3 27832:7 27838:2 27859:12 27863:2 27867:3 27869:1 27874:2 27878:1 27879:4 27885:1 27887:1 27889:1 27893:2 27897:1 27900:2 27906:1 27907:1 27909:1 27917:2 27923:2 27930:1 27934:2 27935:2 27943:1 27948:3 27951:1 27955:1 27960:1 27964:1 27968:1 27969:2 27975:1 27989:1 28003:1 28011:1 28028:2 28030:1 28031:1 28041:1 28046:1 28050:1 28051:1 28054:2 28058:1 28068:5 28075:1 28082:1 28100:1 28102:2 28126:1 28127:2 28128:2 28131:1 28160:1 28169:1 28174:1 28177:1 28178:1 28180:1 28183:3 28187:6 28191:2 28193:1 28196:1 28197:1 28202:1 28203:1 28204:1 28208:2 28214:2 28215:1 28217:1 28218:1 28223:1 28244:1 28264:1 28268:1 28286:1 28292:1 28315:1 28319:2 28320:1 28326:2 28341:1 28350:1 28356:1 28359:2 28362:2 28363:2 28367:1 28373:1 28375:3 28378:1 28380:1 28387:1 28397:7 28404:2 28405:2 28409:1 28411:8 28413:1 28419:1 28445:1 28461:1 28469:2 28470:1 28506:3 28514:1 28520:1 28536:4 28541:1 28543:2 28551:1 28553:1 28560:6 28565:1 28569:1 28594:1 28596:1 28626:1 28627:1 28646:2 28648:1 28665:2 28681:1 28685:4 28703:2 28709:1 28724:1 28728:1 28734:1 28748:1 28754:1 28761:2 28772:1 28792:1 28801:7 28815:1 28816:1 28818:1 28831:1 28836:7 28849:6 28850:1 28867:1 28904:1 28913:8 28914:3 28916:3 28919:1 28921:1 28924:3 28925:3 28941:1 28947:1 28958:1 28959:3 28961:3 28963:3 29003:1
9 11:1 14:2 18:1 24:1 28:1 34:1 37:5 45:1 56:1 60:1 63:1 65:1 74:1 79:1 82:1 83:1 89:1 90:1 103:1 109:1 113:1 117:1 125:1 133:2 143:1 150:1 153:3 162:1 170:4 189:8 192:1 203:1 214:1 240:1 245:1 270:1 275:1 282:2 286:1 293:1 295:36 303:2 315:1 316:4 318:5 320:2 326:1 333:1 348:4 350:1 352:1 354:1 363:2 381:1 403:2 424:3 432:1 433:1 437:1 438:1 442:1 444:1 460:1 463:1 515:1 523:1 561:2 563:4 564:1 569:2 572:4 590:4 596:2 598:2 600:1 613:2 626:1 634:4 638:1 643:2 650:1 674:1 678:2 685:1 692:1 695:1 702:1 716:1 728:1 734:2 735:1 748:1 752:1 767:3 770:1 788:2 795:1 804:1 805:1 807:2 808:1 814:1 828:1 830:8 832:3 842:3 843:1 855:1 856:16 858:1 860:1 867:1 871:1 875:2 877:6 878:1 879:8 881:1 885:3 889:1 892:1 893:1 899:1 900:1 905:4 916:1 924:2 925:2 941:1 963:1 974:3 989:1 996:5 998:2 1002:2 1011:1 1019:1 1020:2 1027:1 1028:1 1038:1 1045:1 1046:1 1059:1 1061:2 1078:1 1086:1 1087:1 1089:2 1092:2 1104:3 1112:2 1117:1 1123:1 1136:1 1137:1 1143:1 1148:3 1152:1 1160:1 1163:1 1179:1 1199:1 1207:2 1228:1 1230:1 1231:2 1232:2 1241:2 1244:1 1248:1 1257:1 1262:1 1276:1 1284:1 1287:1 1300:2 1313:1 1330:1 1345:1 1353:1 1355:3 1369:1 1374:2 1376:1 1394:1 1397:2 1400:6 1401:10 1402:1 1417:2 1418:1 1419:3 1420:2 1422:2 1423:2 1438:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1506:2 1507:1 1508:1 1516:8 1518:1 1543:2 1547:1 1555:2 1557:1 1560:1 1562:3 1564:3 1571:1 1574:1 1578:2 1596:5 1598:1 1617:1 1619:3 1627:6 1634:2 1659:1 1660:1 1677:1 1678:1 1682:1 1693:1 1699:1 1709:1 1743:3 1757:1 1760:1 1762:1 1778:4 1789:1 1794:1 1802:1 1811:1 1819:1 1826:1 1828:1 1830:2 1831:1 1850:1 1875:1 1888:1 1889:1 1892:2 1895:18 1903:1 1907:2 1919:2 1923:1 1929:1 1933:1 1935:1 1936:1 1952:1 1954:1 1962:8 1963:1 1965:2 1993:1 1998:1 2006:2 2011:4 2045:1 2048:2 2051:1 2072:1 2082:1 2085:1 2089:3 2095:2 2100:1 2101:1 2105:1 2108:1 2124:1 2132:1 2142:1 2150:1 2154:2 2156:1 2158:2 2159:5 2160:1 2162:2 2165:1 2172:1 2174:5 2177:4 2178:2 2179:4 2180:1 2181:1 2187:1 2190:3 2191:1 2207:1 2212:1 2215:3 2216:2 2219:2 2220:2 2221:8 2223:5 2226:1 2227:2 2228:4 2232:1 2233:1 2234:1 2237:2 2239:1 2245:1 2247:2 2249:2 2251:6 2252:2 2253:9 2264:1 2268:2 2269:1 2279:1 2297:1 2309:2 2315:1 2322:1 2336:1 2339:1 2343:1 2347:1 2358:3 2370:4 2371:1 2374:1 2376:1 2384:2 2387:1 2392:2 2410:4 2421:7 2433:1 2439:1 2445:1 2461:1 2463:1 2465:1 2473:1 2485:5 2494:5 2500:1 2520:1 2522:3 2536:2 2543:4 2552:3 2561:2 2563:1 2570:1 2580:2 2586:1 2609:2 2631:1 2635:1 2641:1 2648:2 2651:4 2656:1 2659:1 2667:2 2670:1 2672:1 2675:1 2676:1 2683:2 2688:1 2691:1 2704:1 2708:2 2712:1 2713:1 2723:1 2730:3 2756:1 2760:1 2761:2 2762:1 2766:7 2770:4 2775:6 2780:1 2781:1 2782:1 2810:1 2813:3 2816:2 2818:2 2826:2 2836:2 2851:1 2854:7 2857:2 2867:27 2870:1 2883:4 2888:1 2900:2 2909:1 2915:1 2923:1 2931:1 2936:15 2951:1 2954:1 2961:6 2965:9 2966:1 2968:1 2969:1 2972:1 2989:1 3015:1 3023:1 3026:1 3030:1 3059:1 3068:1 3074:4 3075:1 3089:1 3097:1 3105:1 3106:2 3112:1 3141:1 3166:1 3188:2 3197:1 3205:1 3216:1 3224:1 3231:1 3232:6 3237:1 3243:2 3248:1 3255:1 3256:1 3266:1 3271:1 3272:1 3279:1 3283:1 3293:1 3295:5 3314:1 3338:1 3352:2 3357:14 3397:1 3407:1 3420:2 3424:2 3453:1 3459:1 3468:1 3471:1 3472:2 3475:2 3478:1 3488:1 3489:1 3495:2 3509:1 3517:2 3528:1 3540:2 3548:1 3554:1 3558:1 3570:4 3574:1 3575:1 3577:1 3580:2 3582:8 3599:5 3604:2 3605:1 3606:1 3607:4 3608:2 3615:1 3619:1 3634:2 3638:1 3639:6 3647:1 3648:1 3665:1 3669:1 3680:1 3684:1 3687:3 3688:3 3692:1 3694:1 3695:2 3698:3 3712:1 3730:1 3737:1 3740:1 3742:4 3744:1 3746:2 3748:13 3763:1 3779:1 3783:5 3784:1 3788:2 3789:12 3790:3 3792:1 3796:2 3810:2 3813:7 3817:1 3822:1 3835:1 3836:3 3838:1 3846:1 3848:1 3851:1 3862:1 3866:1 3874:1 3876:1 3883:1 3888:2 3895:1 3902:4 3904:3 3918:2 3919:2 3921:1 3931:1 3934:1 3939:2 3940:1 3943:2 3948:2 3953:1 3955:1 3964:5 3970:1 3972:1 3977:2 3982:1 3983:1 3987:1 3988:3 3989:2 3998:5 3999:4 4005:1 4019:1 4031:1 4033:1 4040:1 4051:1 4054:2 4063:1 4069:1 4078:5 4085:2 4086:1 4093:1 4112:1 4113:1 4124:1 4125:1 4129:1 4136:1 4137:1 4173:1 4190:7 4193:2 4201:1 4204:1 4208:1 4210:1 4219:1 4234:1 4254:1 4256:1 4270:2 4272:2 4282:1 4296:1 4298:1 4313:1 4314:2 4343:1 4348:2 4352:1 4357:1 4362:5 4378:1 4385:1 4414:1 4416:1 4428:3 4434:1 4439:2 4455:1 4470:1 4478:1 4491:1 4494:1 4528:2 4535:1 4549:1 4554:1 4560:1 4562:1 4565:1 4583:2 4585:2 4605:1 4613:1 4619:2 4623:1 4626:3 4640:1 4646:3 4657:2 4658:1 4676:2 4678:1 4691:1 4695:8 4713:1 4724:1 4731:1 4742:1 4746:1 4751:1 4759:1 4768:1 4773:8 4776:1 4778:1 4783:1 4787:2 4788:2 4803:1 4807:1 4810:1 4815:1 4818:1 4851:3 4867:1 4876:28 4878:3 4881:1 4895:3 4903:1 4909:4 4917:1 4925:2 4928:7 4940:2 4963:2 4964:1 4980:1 4981:1 4984:1 4985:7 5003:5 5005:7 5006:1 5008:1 5009:1 5011:1 5013:3 5014:1 5015:1 5017:3 5020:1 5022:2 5026:1 5028:4 5030:3 5031:1 5033:1 5036:1 5041:1 5042:1 5045:4 5046:3 5049:1 5063:1 5064:1 5066:1 5090:1 5096:1 5125:3 5131:2 5133:1 5138:1 5157:2 5176:1 5177:1 5184:3 5186:1 5190:3 5195:2 5200:1 5203:3 5219:1 5220:1 5237:1 5245:2 5249:4 5255:1 5280:1 5285:1 5302:1 5306:1 5307:1 5316:1 5325:1 5328:1 5351:2 5358:8 5362:1 5365:1 5369:2 5371:2 5386:1 5394:1 5404:2 5423:1 5429:1 5434:2 5438:2 5444:1 5453:1 5480:1 5493:1 5494:2 5501:1 5511:2 5524:2 5525:2 5534:1 5535:2 5538:2 5540:2 5548:1 5551:1 5556:2 5562:1 5563:1 5564:1 5569:1 5582:3 5584:1 5588:1 5589:1 5593:1 5599:1 5607:1 5615:3 5629:4 5639:1 5640:1 5663:3 5680:1 5681:3 5687:1 5694:1 5701:3 5702:1 5705:1 5718:2 5720:4 5721:1 5728:2 5744:1 5749:1 5762:1 5773:1 5785:1 5790:1 5797:1 5801:1 5802:1 5812:2 5813:1 5843:3 5850:1 5851:1 5852:1 5855:1 5877:1 5881:2 5898:1 5920:1 5934:1 5942:1 5947:4 5949:1 5969:2 5972:18 5987:5 5992:4 6000:1 6001:1 6006:5 6007:1 6009:2 6017:1 6039:3 6040:1 6043:1 6053:1 6056:1 6058:1 6078:2 6102:1 6110:1 6117:1 6130:2 6137:2 6138:1 6142:1 6149:1 6150:1 6153:3 6156:1 6176:6 6178:1 6182:1 6192:1 6197:1 6199:1 6220:1 6244:1 6245:2 6247:1 6259:4 6262:1 6263:1 6264:1 6265:2 6267:1 6269:2 6270:4 6273:1 6274:3 6275:3 6276:5 6277:1 6279:2 6280:1 6282:4 6283:13 6284:5 6286:2 6316:1 6334:3 6379:4 6381:1 6383:1 6389:1 6419:1 6420:2 6426:1 6435:2 6482:2 6487:1 6490:1 6493:1 6502:1 6507:1 6513:1 6531:1 6536:3 6537:1 6542:1 6554:1 6556:1 6558:1 6565:4 6580:1 6581:1 6585:1 6589:1 6598:1 6609:2 6613:1 6652:1 6653:2 6654:2 6661:2 6668:1 6671:2 6677:1 6679:2 6680:1 6689:1 6699:9 6715:2 6722:4 6728:1 6741:1 6744:1 6751:1 6757:1 6769:1 6777:1 6795:1 6810:4 6811:1 6823:3 6851:1 6854:2 6855:2 6860:3 6866:1 6869:1 6871:1 6885:3 6886:2 6903:1 6906:1 6914:2 6918:1 6919:2 6922:2 6927:1 6932:1 6938:1 6939:1 6948:2 6987:1 6999:1 7009:1 7036:1 7049:1 7050:14 7052:1 7067:1 7073:2 7074:3 7091:1 7097:2 7099:2 7102:1 7109:1 7124:1 7125:1 7155:2 7169:1 7174:1 7180:1 7198:3 7203:1 7218:2 7234:1 7248:2 7263:3 7274:1 7278:1 7287:4 7288:1 7290:1 7297:1 7303:1 7311:1 7319:1 7322:1 7334:5 7346:4 7347:1 7352:1 7367:2 7371:1 7382:2 7383:1 7386:2 7401:1 7407:2 7411:1 7427:1 7463:3 7485:2 7496:1 7499:2 7510:1 7516:1 7518:1 7554:2 7555:14 7556:6 7560:1 7570:2 7576:1 7580:2 7582:4 7584:2 7603:5 7604:1 7620:58 7622:2 7643:8 7644:15 7645:1 7648:4 7657:1 7665:1 7667:1 7671:2 7682:1 7685:1 7686:1 7690:1 7696:1 7700:1 7710:2 7719:1 7720:4 7725:2 7734:1 7751:1 7755:1 7758:2 7773:2 7786:1 7804:1 7807:1 7826:2 7851:3 7862:1 7871:1 7874:1 7878:3 7892:1 7897:6 7928:1 7931:1 7943:1 7962:1 7967:1 7994:1 8004:1 8007:1 8032:1 8035:1 8037:1 8043:3 8044:3 8045:1 8046:1 8062:2 8063:2 8081:1 8082:1 8087:1 8093:1 8105:1 8107:2 8110:1 8116:2 8122:1 8124:2 8130:2 8131:1 8136:1 8141:1 8142:3 8145:1 8154:1 8156:12 8180:3 8184:1 8186:2 8194:1 8205:1 8236:1 8244:1 8254:1 8270:1 8299:1 8301:2 8311:2 8319:2 8330:2 8334:1 8336:1 8340:1 8358:1 8367:4 8369:2 8376:3 8379:1 8383:3 8387:2 8394:1 8395:4 8405:1 8412:1 8422:1 8430:5 8433:2 8438:2 8441:2 8445:1 8449:1 8460:1 8468:1 8480:1 8485:1 8490:1 8495:1 8497:1 8500:3 8501:8 8503:4 8504:1 8505:2 8508:3 8510:8 8512:2 8513:4 8514:1 8516:2 8525:3 8526:2 8543:4 8549:2 8550:5 8559:1 8565:1 8567:3 8571:1 8572:2 8575:2 8578:2 8582:2 8586:5 8587:1 8604:2 8611:1 8639:1 8640:2 8647:1 8655:1 8657:1 8669:1 8679:1 8683:1 8688:1 8710:1 8719:1 8725:2 8728:1 8739:1 8751:1 8756:3 8762:1 8772:2 8779:3 8801:1 8805:2 8808:1 8810:2 8811:4 8815:3 8827:3 8833:1 8840:1 8846:1 8857:1 8914:1 8921:1 8929:1 8936:2 8950:6 8952:1 8954:2 8962:1 8969:2 8971:1 8992:3 9001:1 9009:1 9011:1 9019:1 9022:2 9023:1 9035:2 9040:1 9050:1 9057:1 9060:1 9065:1 9068:1 9069:1 9077:3 9107:1 9115:4 9121:1 9128:1 9130:1 9134:1 9139:3 9142:2 9145:1 9151:1 9161:2 9162:1 9176:1 9196:1 9200:2 9204:1 9207:8 9209:1 9210:1 9213:1 9216:3 9219:1 9223:1 9226:36 9230:3 9231:2 9246:2 9247:1 9261:1 9275:1 9286:4 9298:2 9305:1 9312:1 9314:1 9319:1 9329:1 9338:2 9345:1 9349:1 9360:2 9363:7 9364:1 9365:2 9390:1 9391:1 9392:1 9421:1 9427:1 9433:4 9435:1 9448:1 9469:1 9490:1 9497:1 9528:1 9529:1 9537:1 9539:1 9544:1 9555:3 9558:1 9559:1 9567:1 9568:1 9569:6 9574:1 9582:1 9586:5 9594:2 9601:2 9608:2 9634:2 9652:1 9663:8 9668:1 9675:1 9676:1 9677:6 9687:2 9689:1 9697:1 9700:1 9702:1 9704:2 9712:1 9713:1 9725:1 9746:3 9772:1 9780:1 9789:1 9790:1 9815:1 9818:1 9823:2 9829:1 9847:7 9850:1 9856:1 9862:1 9865:1 9871:4 9877:2 9878:2 9880:1 9883:2 9885:1 9887:1 9890:1 9898:4 9911:1 9913:1 9917:1 9919:1 9921:1 9923:1 9924:1 9928:3 9929:1 9932:2 9933:1 9935:1 9938:1 9939:1 9948:1 9954:1 9956:1 9968:4 9986:1 9987:1 9996:1 10019:2 10037:1 10038:1 10043:1 10057:2 10065:1 10073:1 10094:1 10098:1 10117:1 10122:1 10124:2 10125:1 10126:1 10135:2 10157:1 10178:1 10188:1 10191:1 10195:1 10200:1 10228:1 10234:1 10241:2 10263:2 10265:1 10266:4 10280:1 10286:2 10297:1 10302:1 10305:1 10328:2 10329:1 10347:4 10351:2 10359:2 10370:1 10372:1 10402:1 10405:1 10414:1 10436:2 10448:1 10470:1 10478:2 10484:1 10486:1 10488:2 10493:1 10501:1 10504:3 10507:2 10509:1 10513:7 10521:1 10523:1 10524:1 10526:1 10533:1 10537:1 10539:3 10541:1 10550:1 10554:1 10555:3 10557:4 10558:1 10564:1 10573:3 10582:4 10583:4 10584:1 10590:2 10592:2 10593:1 10621:1 10628:1 10639:1 10641:1 10657:7 10665:5 10677:2 10683:4 10686:14 10737:1 10740:1 10747:1 10748:2 10783:4 10787:1 10790:1 10805:1 10824:1 10827:1 10835:2 10839:1 10846:1 10857:1 10869:1 10883:1 10901:1 10903:4 10905:4 10909:2 10910:2 10918:1 10921:2 10931:2 10937:1 10943:2 10946:1 10947:1 10953:1 10962:1 10963:1 10969:1 10989:7 10992:1 11005:1 11010:6 11014:1 11016:1 11018:2 11021:1 11040:1 11062:1 11063:2 11064:2 11066:1 11071:1 11080:1 11083:1 11085:1 11086:1 11094:1 11100:1 11106:1 11107:1 11118:1 11131:1 11138:2 11145:1 11147:1 11152:1 11163:1 11166:2 11173:1 11175:1 11177:1 11188:1 11197:1 11203:5 11208:1 11216:1 11230:2 11232:1 11234:1 11248:1 11260:1 11268:2 11274:1 11278:3 11284:1 11285:1 11287:1 11300:2 11301:1 11302:2 11308:2 11315:4 11317:1 11333:9 11341:1 11367:2 11370:13 11371:1 11385:1 11400:1 11401:1 11407:2 11423:1 11430:1 11442:1 11444:2 11466:2 11468:1 11469:1 11470:1 11476:1 11477:2 11479:1 11481:2 11496:1 11501:1 11506:1 11509:2 11514:1 11520:2 11526:4 11530:8 11547:7 11549:1 11550:7 11580:1 11587:1 11600:2 11601:2 11603:3 11606:1 11609:2 11611:2 11614:1 11615:2 11619:3 11620:1 11622:1 11628:1 11631:2 11632:3 11633:1 11636:2 11641:3 11645:1 11649:1 11664:7 11666:1 11671:1 11684:8 11690:2 11693:1 11696:1 11710:1 11711:2 11716:1 11727:1 11734:1 11755:1 11772:2 11789:2 11824:2 11826:1 11852:1 11865:3 11871:1 11877:3 11882:1 11891:1 11908:1 11916:1 11924:1 11931:3 11936:4 11952:1 11973:3 11977:1 11990:2 11997:1 12004:1 12005:1 12010:1 12025:1 12045:1 12076:2 12082:1 12100:1 12107:1 12109:1 12110:3 12111:4 12115:2 12125:2 12132:1 12141:2 12142:1 12154:1 12156:2 12165:4 12166:5 12172:3 12176:1 12178:1 12184:2 12219:1 12239:1 12243:1 12250:1 12263:1 12272:1 12276:2 12281:9 12297:1 12302:2 12318:1 12323:3 12337:1 12338:1 12345:1 12346:1 12349:2 12361:3 12362:2 12365:1 12376:2 12380:2 12398:1 12405:1 12420:1 12423:4 12431:3 12435:1 12457:1 12458:1 12464:1 12468:1 12472:1 12476:1 12477:7 12480:1 12491:1 12493:1 12495:1 12508:1 12512:1 12515:1 12526:2 12534:1 12586:1 12593:1 12608:8 12621:1 12633:1 12635:1 12636:1 12644:1 12648:18 12654:1 12658:1 12668:3 12671:6 12676:1 12681:2 12701:1 12702:1 12708:4 12733:2 12764:1 12769:5 12772:2 12782:1 12787:1 12789:1 12790:1 12791:1 12796:3 12797:1 12813:2 12827:5 12830:1 12831:1 12835:1 12837:1 12860:1 12861:1 12885:1 12888:1 12914:1 12948:1 12949:7 12954:1 12984:1 12999:1 13045:8 13049:1 13066:4 13068:1 13070:1 13072:1 13076:8 13080:4 13086:1 13087:1 13093:2 13094:6 13120:1 13128:2 13131:1 13133:1 13142:2 13143:1 13144:1 13166:5 13188:1 13194:1 13206:2 13211:2 13213:1 13222:1 13224:7 13231:1 13232:4 13233:2 13244:1 13250:1 13251:1 13252:2 13257:2 13263:2 13275:3 13278:1 13282:1 13283:1 13287:1 13301:2 13302:4 13306:1 13310:1 13320:3 13331:1 13341:2 13346:1 13364:2 13372:7 13376:1 13396:1 13401:1 13416:4 13420:1 13421:5 13440:1 13454:2 13468:3 13488:1 13490:1 13503:1 13506:1 13520:1 13524:1 13533:1 13556:1 13557:2 13561:2 13570:1 13571:1 13599:5 13600:1 13601:2 13606:5 13607:2 13610:2 13619:1 13620:1 13628:1 13633:1 13654:4 13674:1 13680:3 13691:2 13694:2 13697:1 13698:1 13723:1 13733:7 13745:1 13764:3 13779:3 13782:1 13784:1 13788:2 13799:1 13813:1 13827:7 13832:3 13833:1 13838:1 13847:2 13883:1 13886:1 13895:1 13904:4 13931:10 13942:1 13963:1 13974:1 13980:2 13986:1 14006:1 14007:1 14018:1 14024:1 14029:1 14036:1 14054:2 14076:7 14086:2 14089:1 14107:3 14114:1 14119:1 14126:1 14134:1 14140:1 14152:1 14161:1 14170:1 14179:4 14180:1 14181:1 14196:1 14212:1 14221:1 14223:1 14235:1 14245:1 14255:1 14266:3 14274:2 14284:2 14297:1 14299:3 14312:3 14313:1 14317:4 14318:9 14324:1 14325:7 14335:4 14339:2 14340:2 14347:1 14358:1 14360:1 14361:1 14376:1 14385:1 14427:2 14433:1 14434:1 14449:5 14476:1 14482:3 14485:1 14489:2 14490:2 14492:1 14493:4 14498:4 14502:1 14514:2 14523:1 14532:1 14533:3 14537:1 14551:1 14554:1 14573:1 14591:4 14600:3 14614:2 14616:3 14623:1 14624:1 14636:2 14637:2 14647:5 14650:1 14664:3 14674:2 14683:2 14700:1 14701:1 14725:1 14728:1 14761:1 14775:1 14780:1 14785:2 14798:1 14803:2 14820:4 14821:1 14823:2 14824:1 14836:1 14837:1 14881:1 14883:1 14891:9 14893:1 14910:2 14912:1 14916:3 14923:1 14935:1 14936:9 14938:3 14961:2 14970:1 14984:2 14986:1 14995:1 14999:1 15000:1 15020:8 15022:1 15024:1 15037:1 15055:1 15085:1 15109:1 15117:1 15123:5 15125:1 15129:1 15130:1 15134:1 15144:1 15145:1 15146:2 15152:1 15158:1 15160:1 15173:1 15177:2 15178:1 15180:1 15186:1 15207:1 15217:1 15223:1 15231:1 15233:1 15238:1 15241:1 15244:1 15245:3 15259:2 15275:1 15282:1 15301:2 15309:1 15322:1 15332:11 15338:2 15345:2 15380:1 15385:3 15395:1 15398:1 15403:1 15404:5 15414:5 15420:1 15424:1 15431:1 15435:1 15436:1 15440:1 15453:2 15455:1 15459:2 15471:1 15482:2 15496:1 15508:1 15509:1 15512:1 15527:1 15539:1 15556:1 15563:5 15568:1 15571:1 15578:11 15581:4 15590:1 15591:3 15595:1 15598:1 15607:2 15614:5 15622:2 15624:1 15625:8 15626:3 15631:1 15637:1 15642:1 15644:1 15678:1 15679:1 15687:2 15706:1 15710:1 15711:1 15715:1 15717:2 15725:4 15742:1 15745:10 15750:1 15757:1 15763:2 15767:1 15768:1 15777:1 15785:3 15814:2 15831:6 15832:3 15835:1 15837:1 15839:1 15871:1 15877:1 15879:4 15893:1 15896:1 15906:1 15909:5 15911:2 15913:1 15923:2 15957:2 15967:1 15973:4 16002:2 16008:1 16014:1 16018:1 16026:1 16029:18 16030:1 16034:1 16048:4 16050:1 16051:2 16055:1 16056:2 16067:1 16084:1 16095:2 16103:1 16119:5 16122:1 16127:1 16137:2 16146:1 16147:1 16149:1 16150:1 16152:1 16154:1 16163:1 16164:1 16170:2 16172:1 16177:3 16181:1 16190:2 16194:1 16196:1 16237:1 16242:3 16270:1 16285:4 16288:1 16289:1 16290:2 16310:1 16329:1 16334:1 16336:1 16338:1 16353:1 16363:1 16383:1 16398:1 16400:1 16403:4 16434:2 16475:1 16482:1 16488:1 16489:1 16505:1 16511:1 16527:1 16528:1 16542:1 16543:1 16546:1 16555:3 16573:1 16575:1 16588:1 16589:1 16597:1 16604:2 16605:1 16614:1 16639:1 16646:1 16662:1 16666:2 16672:1 16675:2 16685:3 16697:1 16702:1 16707:1 16708:1 16710:1 16714:3 16716:3 16718:1 16727:1 16738:1 16747:1 16758:1 16759:1 16761:1 16776:1 16787:1 16789:3 16801:1 16802:1 16826:1 16828:1 16830:1 16840:5 16843:2 16844:6 16851:1 16867:1 16874:1 16883:1 16899:1 16905:1 16908:1 16915:8 16929:2 16930:1 16932:3 16939:1 16942:1 16947:2 16966:5 16974:1 16977:4 16990:1 16991:1 16995:2 17013:2 17015:1 17036:1 17042:1 17046:2 17050:1 17053:2 17059:6 17067:2 17087:1 17091:6 17092:1 17106:1 17107:1 17110:1 17121:1 17136:2 17138:2 17155:5 17156:3 17167:1 17172:1 17179:1 17181:1 17186:2 17187:3 17198:3 17199:7 17200:1 17207:3 17210:1 17212:1 17244:1 17247:1 17251:1 17265:1 17270:2 17277:2 17281:1 17327:1 17342:1 17343:1 17345:2 17346:1 17360:1 17363:4 17369:2 17373:1 17374:2 17397:1 17401:1 17417:1 17421:1 17422:2 17442:1 17445:1 17447:3 17448:3 17454:5 17455:1 17456:1 17463:5 17475:3 17476:2 17477:1 17509:1 17511:2 17522:5 17523:4 17538:1 17555:1 17558:2 17560:3 17575:1 17585:2 17587:1 17592:7 17597:1 17598:1 17604:1 17631:1 17636:1 17644:2 17647:2 17648:1 17652:1 17655:2 17662:1 17664:2 17665:5 17667:1 17669:1 17670:1 17674:1 17681:1 17683:4 17687:1 17691:1 17692:1 17698:1 17699:1 17707:1 17721:1 17722:3 17747:1 17753:2 17764:1 17766:2 17767:8 17772:4 17781:35 17783:1 17785:1 17787:1 17790:2 17794:1 17803:1 17812:4 17819:1 17822:1 17831:1 17838:1 17845:1 17852:1 17855:1 17860:3 17871:1 17872:5 17873:1 17875:1 17882:1 17886:1 17896:5 17907:1 17922:1 17931:5 17962:1 17967:1 17977:4 17979:1 17987:1 17989:1 17994:2 17998:2 18007:5 18009:1 18011:2 18019:1 18032:2 18045:1 18056:1 18058:1 18067:1 18080:1 18084:1 18098:1 18114:1 18120:1 18133:1 18142:1 18150:2 18152:3 18167:1 18169:2 18170:1 18178:1 18184:1 18212:1 18219:4 18220:1 18239:1 18249:3 18288:1 18315:5 18323:1 18331:1 18340:1 18348:2 18357:1 18380:2 18381:3 18382:3 18399:2 18410:1 18417:8 18424:1 18444:1 18449:1 18459:1 18461:1 18465:1 18470:1 18471:3 18476:2 18478:4 18481:1 18495:1 18498:1 18499:1 18504:5 18509:2 18512:2 18516:1 18519:2549 18524:1 18534:1 18538:1 18572:4 18573:1 18582:3 18590:1 18607:2 18608:1 18619:1 18624:1 18643:2 18648:2 18657:1 18668:2 18684:2 18690:1 18691:1 18702:1 18708:3 18715:7 18720:1 18725:5 18727:4 18728:5 18731:1 18743:1 18748:2 18763:1 18792:2 18799:1 18802:7 18808:2 18810:2 18814:1 18816:1 18840:1 18842:36 18850:1 18861:1 18863:7 18898:1 18904:1 18907:1 18915:1 18919:1 18920:1 18927:1 18930:2 18938:1 18947:1 18950:1 18968:1 18969:1 18971:1 18982:2 18991:4 19007:1 19008:2 19017:2 19033:2 19055:3 19061:1 19065:1 19079:1 19089:1 19091:1 19110:1 19113:1 19121:1 19135:2 19140:2 19142:4 19168:2 19172:1 19174:2 19176:4 19180:1 19187:1 19190:3 19192:3 19197:4 19202:1 19210:1 19218:1 19228:6 19235:1 19239:1 19256:1 19257:2 19271:2 19273:1 19289:1 19291:1 19293:5 19298:11 19314:1 19315:1 19335:7 19336:1 19350:2 19353:1 19359:1 19370:1 19412:2 19414:1 19420:3 19442:2 19475:1 19482:1 19494:2 19497:1 19507:5 19508:1 19515:3 19516:2 19531:2 19534:1 19549:1 19550:5 19551:1 19557:1 19563:3 19566:1 19567:1 19573:1 19592:2 19600:1 19605:1 19628:1 19634:2 19661:3 19674:1 19680:1 19708:3 19719:1 19720:1 19724:1 19732:2 19735:4 19742:1 19745:1 19751:1 19752:1 19754:1 19767:2 19771:5 19775:7 19777:1 19778:2 19784:5 19794:1 19797:1 19807:1 19816:1 19818:1 19829:1 19833:1 19839:3 19859:1 19862:1 19876:2 19881:3 19883:1 19904:2 19909:5 19918:2 19932:1 19936:2 19948:1 19949:4 19953:1 19964:1 19966:1 19978:4 19979:1 19992:1 19996:1 20001:2 20003:2 20004:2 20007:1 20017:1 20020:1 20031:2 20032:1 20036:1 20037:1 20052:1 20061:5 20068:1 20074:1 20079:1 20084:3 20086:1 20094:2 20103:1 20117:2 20118:2 20137:2 20159:6 20170:1 20175:1 20187:1 20211:9 20212:3 20218:4 20226:2 20231:1 20237:1 20238:1 20272:1 20276:1 20281:1 20283:3 20293:2 20299:1 20302:1 20313:1 20329:1 20337:1 20345:1 20362:1 20373:1 20395:1 20400:1 20401:1 20404:3 20406:4 20408:1 20412:1 20420:1 20422:1 20443:1 20453:1 20454:1 20455:9 20465:2 20466:1 20467:1 20468:4 20474:2 20495:1 20525:1 20530:1 20531:3 20532:1 20542:1 20545:1 20547:2 20567:4 20575:1 20577:1 20594:1 20599:1 20600:1 20601:1 20604:1 20626:2 20631:2 20643:2 20644:1 20652:1 20656:1 20658:4 20671:1 20677:4 20679:2 20682:1 20683:1 20685:2 20686:1 20692:1 20697:1 20701:1 20705:5 20710:1 20715:1 20716:1 20721:3 20722:3 20730:1 20734:1 20738:1 20747:7 20770:1 20775:2 20780:2 20781:1 20782:3 20783:1 20797:1 20798:1 20823:3 20833:1 20846:1 20857:1 20862:1 20900:2 20907:2 20910:1 20918:1 20925:1 20945:1 20948:2 20957:2 20979:7 20985:1 20986:1 20988:1 20992:1 20997:1 21010:2 21016:1 21019:2 21029:1 21049:1 21062:2 21075:1 21079:1 21080:1 21085:1 21088:1 21091:2 21100:1 21107:1 21118:1 21122:1 21137:2 21142:1 21158:1 21159:1 21165:1 21169:2 21174:1 21193:1 21196:1 21198:2 21200:1 21201:1 21211:1 21250:1 21257:1 21265:1 21276:2 21284:2 21285:1 21288:1 21289:1 21313:1 21320:1 21332:1 21339:1 21345:1 21357:1 21358:3 21359:1 21371:4 21372:1 21373:1 21374:2 21380:1 21381:1 21386:3 21387:3 21389:2 21392:1 21397:1 21405:1 21406:1 21407:1 21409:1 21410:1 21415:3 21434:1 21440:1 21442:2 21444:2 21448:1 21459:1 21472:4 21486:1 21488:2 21490:1 21493:1 21498:3 21499:2 21502:1 21503:1 21504:1 21506:1 21509:3 21518:2 21519:1 21520:1 21523:2 21528:1 21538:1 21544:1 21548:10 21551:1 21567:1 21568:2 21569:5 21580:2 21599:1 21616:1 21634:2 21647:2 21648:1 21654:2 21661:1 21663:4 21664:1 21670:1 21675:9 21684:2 21691:1 21695:3 21705:1 21712:1 21714:2 21715:1 21724:1 21742:1 21750:1 21770:1 21771:1 21772:1 21778:1 21804:1 21809:1 21811:1 21812:6 21822:1 21824:1 21826:1 21827:2 21829:2 21830:1 21838:1 21845:1 21846:6 21847:1 21848:3 21867:2 21870:1 21877:1 21885:1 21901:2 21916:2 21919:1 21931:1 21937:3 21941:1 21952:1 21967:1 21971:1 21975:1 21994:3 21999:1 22009:4 22012:2 22016:3 22017:3 22020:1 22021:1 22025:1 22051:1 22052:1 22059:2 22061:1 22065:3 22077:2 22080:2 22096:3 22115:1 22132:1 22135:1 22144:1 22147:2 22150:1 22160:1 22173:5 22174:6 22178:3 22179:1 22180:2 22181:1 22189:2 22190:1 22205:1 22212:2 22222:1 22223:4 22230:1 22236:1 22239:2 22243:3 22248:3 22252:3 22257:2 22258:4 22265:1 22277:2 22290:1 22291:1 22293:1 22294:3 22295:1 22302:1 22315:2 22318:1 22329:2 22331:1 22332:1 22336:1 22337:1 22342:1 22345:3 22349:1 22357:1 22362:3 22368:1 22390:1 22391:9 22392:1 22401:1 22403:1 22406:2 22412:1 22414:35 22419:1 22420:4 22422:4 22425:1 22426:3 22427:5 22430:1 22432:1 22434:2 22451:1 22453:4 22455:1 22461:1 22464:3 22467:1 22473:2 22493:3 22495:2 22496:1 22507:2 22510:1 22529:3 22538:1 22542:1 22547:1 22579:4 22585:1 22593:9 22599:2 22616:3 22621:2 22634:1 22646:1 22672:1 22674:2 22676:2 22679:1 22680:1 22687:1 22691:3 22692:1 22695:1 22699:2 22705:1 22706:1 22721:4 22726:2 22734:1 22736:1 22737:1 22758:1 22776:1 22777:2 22782:1 22784:1 22788:1 22808:1 22837:1 22848:1 22866:1 22867:1 22878:1 22886:1 22896:2 22902:1 22917:1 22919:1 22921:1 22931:2 22935:1 22947:2 22948:1 22955:1 22962:2 22964:1 22965:2 22971:2 22980:3 22981:1 22982:1 22998:3 23001:4 23021:2 23024:1 23027:1 23033:3 23038:1 23057:1 23060:1 23069:1 23072:1 23099:1 23130:1 23143:1 23148:1 23165:2 23175:1 23184:3 23188:2 23195:1 23196:1 23207:3 23227:2 23234:2 23235:1 23239:1 23241:2 23248:1 23254:1 23261:1 23275:2 23283:3 23297:1 23299:5 23302:1 23305:1 23310:2 23313:2 23326:2 23340:1 23343:1 23349:1 23351:1 23352:1 23361:12 23368:1 23394:2 23403:1 23408:1 23420:1 23437:2 23439:1 23441:1 23452:2 23467:1 23482:2 23488:2 23494:1 23504:1 23519:1 23520:1 23527:1 23532:4 23545:1 23559:2 23568:1 23581:1 23591:1 23592:1 23600:3 23604:1 23616:9 23618:2 23620:1 23635:5 23647:1 23651:1 23659:2 23667:1 23711:1 23716:1 23720:1 23722:1 23732:3 23736:2 23744:1 23749:2 23758:1 23774:1 23785:1 23798:1 23801:1 23806:1 23814:1 23831:1 23832:1 23842:1 23874:1 23875:4 23884:6 23885:1 23896:4 23899:1 23910:1 23912:1 23918:2 23919:1 23920:1 23928:1 23932:1 23939:2 23941:1 23966:3 23973:1 23979:1 23992:1 23994:3 23995:2 23996:1 24001:1 24025:2 24030:1 24044:1 24047:3 24052:1 24057:2 24058:3 24064:1 24068:1 24073:1 24093:1 24098:1 24101:1 24114:1 24124:1 24146:1 24148:1 24150:2 24156:1 24159:2 24160:1 24162:8 24164:3 24165:1 24166:4 24167:2 24171:1 24172:2 24174:2 24175:5 24182:2 24183:4 24187:2 24193:2 24206:6 24213:2 24220:1 24233:1 24236:3 24237:1 24242:1 24247:2 24258:1 24263:6 24267:3 24291:2 24295:1 24297:1 24306:1 24307:3 24321:1 24324:1 24342:1 24345:1 24347:1 24348:2 24362:1 24390:1 24401:1 24402:1 24419:3 24440:4 24448:1 24450:6 24453:1 24464:2 24466:1 24470:1 24496:1 24499:1 24508:1 24512:2 24513:1 24521:1 24524:1 24547:2 24548:1 24549:1 24558:1 24571:1 24582:2 24584:1 24609:2 24623:1 24626:1 24630:3 24640:1 24645:1 24648:1 24654:1 24658:2 24665:2 24707:6 24746:1 24757:2 24761:1 24763:1 24772:1 24780:1 24783:4 24791:1 24793:1 24797:2 24810:1 24816:1 24822:4 24878:1 24899:1 24900:2 24912:4 24915:8 24946:11 24955:1 24969:9 24977:1 24990:1 24997:1 25005:1 25015:2 25019:1 25028:1 25038:2 25041:1 25042:1 25045:1 25046:1 25047:1 25071:1 25085:1 25089:1 25093:2 25099:2 25104:1 25109:1 25111:2 25114:6 25122:1 25137:2 25139:2 25141:11 25144:4 25145:2 25155:1 25162:1 25167:2 25168:1 25170:1 25177:1 25182:2 25186:1 25214:2 25219:1 25225:4 25230:1 25240:1 25247:3 25258:2 25259:2 25319:2 25320:1 25335:1 25342:1 25345:1 25346:1 25356:1 25361:1 25384:3 25386:1 25401:1 25410:1 25412:4 25413:1 25416:2 25417:1 25425:1 25436:6 25444:1 25465:1 25468:1 25473:1 25474:1 25479:2 25488:1 25492:1 25506:1 25515:1 25557:2 25561:1 25569:1 25576:2 25600:1 25618:1 25626:1 25657:1 25663:1 25665:1 25676:1 25679:3 25680:2 25687:1 25691:1 25698:1 25699:1 25700:1 25701:1 25708:2 25718:2 25726:1 25729:1 25742:1 25757:1 25759:2 25781:1 25786:1 25796:5 25804:1 25812:1 25816:2 25826:1 25829:1 25835:1 25838:5 25850:1 25859:1 25864:1 25865:5 25880:2 25882:1 25901:1 25903:1 25906:2 25910:1 25916:2 25929:1 25930:1 25936:2 25943:1 25953:2 25971:2 25988:1 25992:7 25994:1 26018:1 26021:6 26024:1 26033:1 26038:1 26040:1 26042:1 26059:2 26074:1 26087:1 26088:1 26093:4 26107:1 26112:2 26113:3 26114:1 26118:1 26122:1 26123:1 26127:3 26128:3 26133:1 26162:1 26166:4 26170:1 26175:1 26182:1 26185:1 26188:1 26190:1 26193:1 26213:3 26221:2 26222:1 26225:2 26247:2 26249:2 26261:2 26262:1 26267:1 26278:1 26285:1 26290:2 26300:1 26307:1 26309:2 26316:1 26332:2 26337:1 26338:1 26339:1 26341:1 26352:1 26366:1 26368:3 26373:5 26392:2 26397:1 26453:1 26476:1 26478:1 26479:1 26482:1 26499:1 26504:1 26524:1 26526:1 26542:1 26547:1 26548:1 26551:1 26556:1 26559:2 26566:1 26569:1 26574:2 26582:1 26588:2 26599:1 26611:1 26618:1 26619:1 26621:1 26622:1 26624:1 26631:1 26641:2 26654:2 26657:2 26658:1 26662:1 26667:4 26681:4 26700:5 26707:1 26709:5 26721:1 26724:1 26736:1 26737:1 26743:1 26759:4 26772:2 26778:1 26787:1 26788:10 26807:1 26817:1 26838:1 26840:2 26844:1 26845:2 26847:1 26848:3 26850:1 26856:12 26866:1 26890:1 26894:3 26920:1 26933:2 26934:1 26938:1 26954:2 26960:8 26965:2 26966:1 26967:3 26981:1 26985:2 26988:1 26994:4 27003:1 27006:1 27016:2 27022:1 27033:1 27036:1 27057:1 27058:3 27061:1 27064:1 27069:2 27070:1 27079:1 27090:3 27103:1 27108:1 27113:1 27135:2 27136:1 27141:2 27143:1 27145:1 27147:1 27149:2 27160:2 27169:1 27177:1 27187:1 27188:1 27229:1 27247:1 27275:1 27279:1 27297:1 27298:1 27330:1 27332:1 27340:1 27342:2 27365:5 27368:1 27376:1 27385:1 27392:1 27408:1 27412:1 27419:1 27422:1 27447:1 27465:1 27472:1 27474:1 27481:2 27500:1 27517:1 27536:3 27549:1 27560:1 27563:7 27575:1 27579:1 27595:1 27597:4 27603:1 27620:1 27627:2 27636:1 27647:2 27658:1 27661:1 27662:1 27673:1 27675:2 27678:1 27682:2 27687:33 27689:4 27692:5 27694:1 27695:3 27702:2 27707:1 27724:9 27739:1 27777:3 27789:2 27804:1 27808:2 27820:1 27821:3 27832:7 27838:2 27859:13 27863:2 27867:3 27869:1 27874:2 27878:1 27879:4 27885:1 27887:1 27889:1 27893:2 27897:1 27900:2 27906:1 27907:2 27909:1 27917:2 27923:2 27930:1 27934:2 27935:2 27943:1 27946:1 27948:3 27951:1 27955:1 27960:1 27964:1 27968:1 27969:2 27975:1 27989:1 28003:1 28011:1 28028:2 28030:1 28031:1 28041:1 28046:1 28050:1 28051:1 28054:2 28058:1 28068:5 28075:1 28082:1 28100:1 28101:1 28102:2 28126:1 28127:2 28128:2 28131:1 28160:1 28169:1 28174:1 28177:1 28178:1 28180:1 28183:3 28187:6 28191:2 28193:1 28196:1 28197:2 28202:1 28203:1 28204:1 28208:2 28214:2 28215:1 28217:1 28218:1 28223:1 28244:1 28264:1 28268:1 28286:1 28292:1 28315:1 28319:2 28320:1 28326:2 28341:1 28350:1 28356:1 28359:2 28362:2 28363:2 28367:1 28373:1 28375:3 28378:1 28380:1 28387:1 28397:8 28404:2 28405:2 28409:1 28411:8 28413:1 28419:1 28445:1 28461:1 28469:2 28470:1 28506:3 28514:1 28520:1 28536:4 28541:1 28543:2 28551:1 28553:1 28560:6 28565:1 28569:1 28594:1 28596:1 28626:1 28627:1 28646:2 28648:1 28665:2 28681:1 28685:4 28703:2 28709:2 28724:1 28728:1 28734:1 28748:1 28754:1 28761:2 28772:1 28792:1 28801:7 28815:1 28816:1 28818:1 28831:1 28836:7 28849:6 28850:1 28867:1 28904:1 28913:8 28914:3 28916:3 28919:1 28921:1 28924:3 28925:3 28941:1 28947:1 28958:1 28959:3 28961:3 28963:3 29003:1
9 11:1 14:2 18:1 24:1 28:1 34:1 37:6 45:1 56:1 60:1 63:1 65:1 74:1 79:1 82:1 83:1 86:1 89:1 90:1 103:1 109:1 113:1 117:1 125:1 133:2 143:1 150:1 153:3 162:1 170:5 189:8 192:1 203:1 214:1 240:1 245:1 270:1 275:1 282:2 286:1 293:1 295:38 303:2 315:1 316:4 318:5 320:2 326:1 333:1 348:4 350:1 352:1 354:1 363:2 381:1 403:2 424:3 432:2 433:1 437:1 438:1 442:1 444:1 460:1 463:1 515:1 523:1 561:2 563:4 564:1 569:2 572:4 590:4 596:2 598:2 600:1 613:2 626:1 634:4 638:1 643:2 650:1 674:1 678:2 685:1 692:1 695:1 702:1 716:1 728:1 734:2 735:1 748:1 752:1 767:3 770:1 788:2 795:1 804:1 805:1 807:2 808:1 814:1 828:1 830:8 832:3 842:3 843:1 855:1 856:16 858:1 860:1 867:1 871:1 875:2 876:1 877:6 878:1 879:8 881:1 885:3 889:1 892:1 893:1 899:1 900:1 905:4 916:1 924:2 925:3 941:1 963:1 964:1 974:3 989:1 996:6 998:2 1002:2 1011:1 1019:1 1020:2 1027:1 1028:1 1038:1 1045:1 1046:1 1059:1 1061:2 1078:1 1086:1 1087:1 1089:2 1092:2 1104:3 1112:2 1117:1 1123:1 1136:1 1137:1 1143:1 1148:3 1152:1 1160:1 1163:1 1179:1 1199:1 1207:2 1228:1 1230:1 1231:2 1232:2 1241:2 1244:1 1248:1 1257:1 1262:1 1276:1 1284:1 1287:1 1300:2 1313:1 1330:1 1345:1 1353:1 1355:3 1369:1 1374:2 1376:1 1394:1 1397:2 1400:6 1401:10 1402:1 1417:2 1418:1 1419:3 1420:2 1422:2 1423:2 1438:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1506:2 1507:1 1508:1 1516:8 1518:1 1543:2 1547:1 1555:2 1557:1 1560:1 1562:3 1564:3 1571:1 1574:1 1575:1 1578:2 1596:5 1598:1 1617:1 1619:3 1627:6 1634:2 1659:1 1660:1 1677:2 1678:1 1682:1 1693:1 1699:1 1709:1 1743:3 1757:1 1760:1 1762:1 1778:4 1789:1 1794:1 1802:1 1811:1 1819:1 1826:1 1828:1 1830:2 1831:1 1850:1 1875:1 1888:1 1889:1 1892:2 1895:19 1903:1 1907:2 1919:2 1923:1 1929:1 1933:1 1935:1 1936:1 1952:1 1954:1 1962:8 1963:1 1965:2 1993:1 1998:1 2006:2 2011:4 2017:1 2045:1 2048:2 2051:1 2062:1 2072:1 2082:1 2085:1 2089:3 2095:2 2100:1 2101:1 2105:1 2108:1 2124:1 2132:1 2142:1 2150:1 2154:2 2156:1 2158:2 2159:5 2160:1 2162:2 2165:1 2172:1 2174:5 2177:4 2178:2 2179:4 2180:1 2181:1 2187:1 2190:4 2191:1 2207:1 2212:1 2215:4 2216:2 2219:2 2220:2 2221:8 2223:5 2226:1 2227:2 2228:4 2232:1 2233:1 2234:1 2237:2 2239:1 2245:1 2247:2 2249:2 2251:6 2252:2 2253:9 2264:1 2268:2 2269:1 2279:1 2297:1 2309:2 2310:1 2315:1 2322:1 2336:1 2339:1 2343:1 2347:1 2358:3 2370:4 2371:1 2374:1 2376:1 2384:2 2387:1 2392:2 2410:5 2421:7 2433:1 2439:1 2445:1 2461:1 2463:1 2465:1 2473:1 2485:5 2494:5 2500:1 2520:1 2522:3 2536:2 2543:4 2552:3 2561:2 2563:1 2570:1 2580:2 2586:1 2609:2 2631:1 2635:1 2641:1 2648:2 2651:4 2656:1 2659:1 2667:2 2670:1 2672:1 2675:1 2676:2 2683:2 2688:1 2691:1 2704:1 2708:2 2712:1 2713:1 2723:1 2730:3 2756:1 2760:1 2761:2 2762:1 2766:7 2770:4 2775:6 2780:1 2781:1 2782:1 2810:1 2813:3 2816:2 2818:2 2826:2 2836:2 2851:1 2854:7 2857:2 2867:27 2870:1 2883:4 2888:1 2900:2 2909:1 2915:1 2923:1 2931:1 2936:16 2951:1 2954:1 2961:6 2965:9 2966:1 2968:1 2969:1 2972:1 2989:1 3013:1 3015:1 3023:1 3026:1 3030:1 3059:1 3068:1 3074:4 3075:1 3089:1 3097:1 3105:1 3106:2 3112:1 3141:1 3166:1 3188:2 3197:1 3205:1 3216:1 3224:2 3231:1 3232:6 3237:1 3241:2 3243:2 3248:1 3255:1 3256:1 3266:1 3271:1 3272:1 3279:1 3283:1 3293:1 3295:5 3314:1 3338:1 3352:2 3357:14 3397:1 3407:1 3420:2 3424:2 3453:1 3459:1 3468:1 3471:1 3472:2 3475:2 3478:1 3488:1 3489:1 3495:2 3509:1 3517:2 3528:1 3540:2 3548:1 3554:1 3558:1 3570:4 3574:1 3575:1 3577:1 3580:2 3582:8 3598:1 3599:5 3604:2 3605:2 3606:1 3607:5 3608:2 3615:1 3619:1 3634:2 3638:1 3639:6 3647:1 3648:1 3665:1 3669:1 3680:1 3684:1 3687:3 3688:3 3692:1 3694:1 3695:2 3698:3 3712:1 3730:1 3737:1 3740:1 3742:4 3744:1 3746:2 3748:13 3763:1 3770:1 3779:1 3783:5 3784:1 3788:2 3789:12 3790:3 3792:1 3796:2 3810:2 3813:7 3817:1 3822:1 3835:1 3836:3 3838:1 3846:1 3848:1 3851:1 3862:1 3866:1 3874:1 3876:1 3883:1 3888:2 3895:1 3902:4 3904:3 3918:2 3919:2 3921:1 3931:1 3934:1 3939:2 3940:1 3943:3 3948:3 3953:1 3955:1 3964:5 3970:1 3972:1 3977:2 3982:1 3983:1 3987:1 3988:3 3989:2 3998:5 3999:5 4005:1 4019:1 4031:1 4033:1 4040:1 4051:1 4054:2 4063:1 4069:1 4078:6 4085:2 4086:1 4093:1 4112:1 4113:1 4124:1 4125:1 4129:1 4136:1 4137:1 4173:1 4190:7 4193:2 4201:1 4202:1 4204:1 4208:1 4210:1 4219:1 4234:1 4254:1 4256:1 4270:2 4272:2 4282:1 4296:1 4298:2 4306:1 4313:1 4314:2 4343:1 4348:2 4352:1 4357:1 4362:5 4378:1 4385:1 4414:1 4416:1 4428:3 4434:1 4439:2 4455:1 4470:1 4478:1 4491:1 4494:1 4528:2 4535:1 4549:1 4554:1 4560:1 4562:1 4565:1 4575:1 4583:2 4585:2 4605:1 4613:1 4619:2 4623:1 4626:4 4640:1 4646:3 4657:2 4658:1 4660:1 4676:2 4678:1 4691:1 4695:8 4713:1 4724:1 4731:1 4742:1 4746:1 4751:1 4759:1 4768:1 4773:8 4776:1 4778:1 4783:1 4787:2 4788:2 4803:1 4807:1 4810:1 4815:1 4818:1 4851:3 4867:1 4876:30 4878:3 4881:1 4895:3 4900:1 4903:1 4909:4 4917:1 4925:2 4928:7 4940:2 4963:2 4964:2 4969:1 4980:1 4981:1 4984:1 4985:7 5003:5 5005:8 5006:1 5008:1 5009:1 5011:1 5013:3 5014:1 5015:1 5017:3 5020:1 5022:2 5025:1 5026:1 5028:5 5030:3 5031:1 5033:1 5036:1 5041:1 5042:1 5045:4 5046:3 5049:1 5063:1 5064:1 5066:1 5072:1 5087:1 5090:1 5096:1 5125:3 5131:2 5133:1 5138:1 5151:1 5157:2 5176:1 5177:1 5184:3 5186:1 5190:3 5195:2 5200:1 5203:3 5219:1 5220:1 5227:1 5237:1 5245:2 5249:5 5255:1 5280:1 5285:1 5302:1 5306:1 5307:1 5316:1 5325:1 5328:1 5346:1 5351:3 5358:8 5362:1 5365:1 5369:2 5371:2 5386:1 5394:1 5404:2 5423:1 5429:1 5434:2 5438:2 5444:1 5453:1 5480:1 5493:1 5494:2 5501:1 5511:2 5524:2 5525:2 5534:1 5535:2 5538:2 5540:2 5548:1 5551:1 5556:2 5562:1 5563:1 5564:1 5569:1 5576:1 5582:3 5584:1 5588:1 5589:1 5593:1 5599:1 5607:1 5615:3 5629:4 5639:1 5640:1 5663:3 5680:1 5681:3 5687:1 5694:1 5701:3 5702:1 5705:1 5718:2 5720:4 5721:1 5728:2 5744:1 5749:1 5762:1 5773:1 5785:1 5790:1 5797:1 5801:1 5802:1 5812:2 5813:1 5843:3 5850:1 5851:1 5852:1 5855:1 5877:1 5881:2 5898:1 5920:1 5934:1 5942:1 5947:4 5949:1 5969:2 5971:1 5972:19 5987:5 5992:4 6000:1 6001:1 6006:5 6007:1 6009:2 6017:1 6039:3 6040:1 6043:1 6053:1 6056:1 6058:1 6078:2 6102:1 6110:1 6117:1 6130:2 6137:2 6138:1 6142:1 6149:1 6150:1 6153:3 6156:1 6176:7 6178:1 6182:1 6192:1 6197:1 6199:1 6220:1 6244:1 6245:2 6247:1 6259:4 6262:1 6263:1 6264:1 6265:2 6267:1 6269:2 6270:4 6273:1 6274:3 6275:3 6276:5 6277:1 6279:2 6280:1 6282:4 6283:13 6284:5 6286:2 6316:1 6334:3 6379:4 6381:1 6383:1 6389:1 6419:1 6420:2 6426:1 6435:2 6482:2 6487:1 6490:1 6493:2 6502:1 6507:1 6513:1 6531:2 6536:3 6537:1 6542:1 6554:1 6556:1 6558:1 6565:4 6580:1 6581:1 6585:1 6589:1 6598:1 6609:2 6613:2 6652:1 6653:2 6654:2 6661:2 6668:1 6671:2 6677:1 6679:2 6680:1 6689:1 6699:9 6715:2 6722:4 6728:1 6741:1 6744:1 6751:1 6757:1 6769:1 6777:1 6795:1 6810:4 6811:1 6823:3 6851:1 6854:2 6855:2 6860:3 6866:1 6869:1 6871:1 6885:3 6886:2 6903:1 6906:1 6914:2 6918:1 6919:2 6922:2 6927:1 6932:1 6938:1 6939:1 6948:2 6973:1 6987:1 6999:1 7009:1 7036:1 7049:1 7050:15 7052:1 7067:1 7073:2 7074:3 7091:1 7097:2 7099:2 7102:1 7109:1 7124:1 7125:1 7155:2 7169:1 7174:1 7180:1 7198:3 7203:1 7218:2 7234:1 7248:2 7263:3 7274:1 7278:1 7287:5 7288:1 7290:1 7297:1 7303:1 7311:1 7319:1 7322:1 7334:6 7346:4 7347:1 7352:1 7367:2 7371:1 7382:2 7383:1 7386:2 7401:1 7407:2 7411:1 7427:1 7463:3 7485:2 7496:1 7499:2 7510:1 7516:1 7518:1 7554:3 7555:14 7556:6 7560:1 7570:2 7576:1 7580:3 7582:4 7584:2 7603:5 7604:1 7620:59 7622:2 7643:8 7644:16 7645:1 7648:4 7657:1 7665:1 7667:1 7671:2 7682:1 7685:1 7686:1 7690:1 7696:1 7700:1 7710:2 7719:1 7720:4 7725:2 7734:1 7751:1 7755:1 7758:2 7773:2 7786:1 7804:1 7807:1 7826:2 7851:3 7862:1 7871:1 7874:1 7878:3 7892:1 7897:8 7928:1 7931:1 7943:1 7962:1 7967:1 7994:1 8004:1 8007:1 8032:1 8035:1 8037:1 8043:3 8044:3 8045:1 8046:1 8062:2 8063:2 8081:1 8082:1 8087:1 8093:1 8105:1 8107:2 8110:1 8116:2 8122:1 8124:2 8130:2 8131:1 8136:1 8141:1 8142:3 8145:1 8154:1 8156:13 8180:3 8184:1 8186:2 8194:1 8205:1 8236:1 8244:1 8254:1 8270:1 8299:1 8301:2 8311:2 8319:2 8330:2 8334:1 8336:1 8340:1 8358:1 8367:4 8369:2 8376:3 8379:1 8383:3 8387:3 8394:1 8395:4 8405:1 8412:1 8422:1 8430:5 8433:2 8438:2 8441:2 8445:1 8449:1 8460:1 8468:1 8480:1 8485:1 8490:1 8495:1 8497:1 8500:3 8501:8 8503:4 8504:1 8505:2 8508:3 8510:8 8512:3 8513:4 8514:1 8516:2 8525:3 8526:2 8543:4 8549:2 8550:7 8559:1 8565:1 8567:3 8571:1 8572:2 8575:2 8578:2 8582:2 8586:5 8587:1 8604:2 8611:1 8639:1 8640:2 8647:1 8655:1 8657:1 8659:1 8669:1 8679:1 8683:1 8688:1 8710:1 8719:1 8725:2 8728:1 8739:1 8751:1 8756:3 8762:1 8772:2 8779:3 8801:1 8805:2 8808:1 8810:2 8811:4 8815:3 8827:3 8833:1 8840:1 8846:1 8857:1 8914:1 8921:1 8929:1 8936:2 8950:6 8952:1 8954:2 8962:1 8967:1 8969:2 8971:1 8992:3 9001:1 9009:1 9011:1 9019:1 9022:2 9023:1 9035:3 9040:1 9050:1 9057:1 9060:1 9065:1 9068:1 9069:1 9077:3 9107:1 9115:4 9121:1 9128:1 9130:1 9134:1 9139:3 9142:2 9145:1 9151:1 9161:2 9162:1 9166:1 9176:1 9196:1 9200:2 9204:1 9207:8 9209:1 9210:1 9213:1 9216:3 9219:1 9223:1 9226:38 9230:3 9231:2 9246:2 9247:1 9260:1 9261:1 9264:1 9275:1 9286:4 9298:2 9305:1 9312:1 9314:1 9319:1 9329:1 9338:2 9345:1 9349:1 9360:2 9363:8 9364:1 9365:2 9382:1 9390:1 9391:1 9392:1 9421:1 9427:1 9433:4 9435:1 9448:1 9469:1 9490:1 9491:1 9497:1 9528:1 9529:1 9537:1 9539:1 9544:1 9555:3 9558:1 9559:1 9567:1 9568:1 9569:6 9574:1 9582:1 9585:1 9586:5 9594:2 9601:2 9608:2 9634:2 9652:1 9663:9 9668:1 9675:1 9676:1 9677:6 9687:2 9689:1 9697:1 9700:1 9702:1 9704:2 9712:1 9713:1 9725:2 9746:3 9772:1 9780:1 9789:1 9790:1 9815:1 9818:1 9823:2 9829:1 9847:7 9850:1 9856:1 9862:1 9865:1 9871:4 9877:2 9878:2 9880:1 9883:2 9885:1 9887:1 9890:1 9898:4 9911:1 9913:1 9917:1 9919:1 9921:1 9923:1 9924:1 9928:3 9929:1 9932:2 9933:1 9935:1 9938:1 9939:1 9948:1 9954:1 9956:1 9968:4 9986:1 9987:1 9996:1 10019:2 10037:1 10038:1 10043:1 10057:2 10065:1 10073:1 10094:1 10098:1 10117:1 10122:1 10124:2 10125:1 10126:1 10135:2 10157:1 10178:1 10188:1 10191:1 10195:1 10200:1 10228:1 10234:1 10241:2 10263:2 10265:1 10266:5 10280:1 10286:2 10297:1 10302:1 10305:1 10328:2 10329:1 10347:5 10351:2 10359:2 10370:1 10372:1 10402:1 10405:1 10409:1 10414:1 10436:2 10448:1 10470:1 10478:2 10484:1 10486:1 10488:2 10493:1 10501:1 10504:3 10507:2 10509:1 10513:8 10521:1 10523:1 10524:1 10526:1 10533:1 10537:1 10539:3 10541:1 10550:1 10554:1 10555:3 10557:4 10558:1 10564:1 10573:3 10582:4 10583:4 10584:1 10590:2 10592:2 10593:1 10621:1 10628:1 10639:1 10641:1 10657:7 10665:5 10677:2 10683:4 10686:15 10737:1 10740:1 10747:1 10748:2 10783:4 10787:1 10790:1 10805:1 10824:1 10827:1 10835:2 10839:1 10846:1 10857:1 10869:1 10883:1 10890:1 10901:1 10903:4 10905:4 10909:2 10910:2 10918:1 10921:2 10931:2 10937:1 10943:2 10946:1 10947:1 10953:1 10962:1 10963:1 10969:1 10989:8 10992:1 11005:1 11010:6 11014:1 11016:1 11018:2 11021:1 11040:1 11062:1 11063:2 11064:2 11066:1 11071:1 11080:1 11083:1 11085:1 11086:1 11094:1 11100:1 11106:1 11107:1 11118:1 11131:1 11138:2 11145:1 11147:1 11152:1 11163:1 11166:2 11173:1 11175:1 11177:1 11188:1 11197:1 11203:5 11208:1 11216:1 11230:2 11232:1 11234:1 11248:1 11260:1 11268:2 11274:1 11278:3 11284:1 11285:1 11287:1 11300:2 11301:1 11302:2 11308:2 11315:4 11317:1 11333:10 11341:1 11367:2 11370:13 11371:1 11385:1 11400:2 11401:1 11407:2 11423:1 11430:1 11442:1 11444:2 11466:2 11468:1 11469:1 11470:1 11476:1 11477:2 11479:1 11481:2 11496:1 11501:1 11506:1 11509:2 11514:1 11520:3 11526:4 11530:8 11547:7 11549:1 11550:7 11580:1 11587:1 11600:2 11601:2 11603:3 11606:1 11607:1 11609:3 11611:2 11614:1 11615:2 11619:3 11620:1 11622:1 11628:1 11631:2 11632:3 11633:1 11636:2 11641:3 11645:1 11649:1 11664:7 11666:1 11671:1 11684:8 11690:2 11693:1 11696:1 11710:1 11711:2 11716:1 11727:1 11734:1 11755:1 11772:2 11789:2 11824:2 11826:1 11852:1 11865:4 11871:1 11877:4 11882:1 11891:1 11908:1 11916:1 11924:1 11931:3 11936:4 11952:1 11973:4 11977:1 11990:2 11997:1 12004:1 12005:1 12010:1 12025:1 12045:1 12076:2 12082:1 12100:1 12107:1 12109:1 12110:3 12111:4 12115:2 12125:2 12132:1 12141:2 12142:1 12154:1 12156:2 12165:4 12166:5 12172:3 12176:1 12178:1 12184:2 12219:1 12239:1 12243:1 12250:1 12263:1 12272:1 12276:2 12281:10 12297:1 12302:2 12318:1 12323:3 12337:1 12338:1 12345:1 12346:1 12349:2 12361:3 12362:2 12365:1 12376:2 12380:2 12398:1 12405:1 12420:1 12423:4 12431:3 12435:1 12457:1 12458:1 12464:1 12468:1 12472:1 12476:1 12477:7 12480:1 12491:1 12493:1 12495:1 12508:1 12512:1 12515:1 12526:2 12534:1 12586:1 12593:1 12608:8 12621:1 12633:1 12635:1 12636:1 12644:1 12648:18 12654:1 12658:1 12668:3 12671:7 12676:1 12681:2 12701:1 12702:1 12708:4 12733:2 12764:1 12769:6 12772:2 12782:1 12787:1 12789:1 12790:1 12791:1 12796:3 12797:1 12813:2 12827:5 12830:1 12831:1 12835:1 12837:1 12860:1 12861:1 12885:1 12888:1 12914:1 12948:1 12949:7 12954:1 12960:1 12984:1 12989:1 12999:1 13045:8 13049:1 13062:1 13066:4 13068:1 13070:1 13072:1 13076:8 13080:4 13086:1 13087:1 13093:2 13094:6 13120:1 13128:2 13131:1 13133:1 13142:2 13143:1 13144:1 13166:5 13170:1 13188:1 13194:1 13206:2 13211:2 13213:1 13222:1 13224:8 13231:1 13232:5 13233:2 13244:1 13250:1 13251:1 13252:2 13257:2 13263:2 13275:3 13278:1 13282:1 13283:1 13287:1 13301:2 13302:4 13306:1 13310:1 13320:3 13331:1 13341:2 13346:1 13364:2 13372:7 13376:1 13396:1 13401:1 13416:4 13420:1 13421:5 13440:1 13454:2 13468:4 13473:1 13488:1 13490:1 13503:1 13506:1 13520:1 13524:1 13533:1 13556:1 13557:2 13561:2 13570:2 13571:1 13599:6 13600:1 13601:2 13606:5 13607:2 13610:2 13619:1 13620:1 13628:1 13633:1 13654:5 13674:1 13680:3 13691:2 13694:2 13697:1 13698:1 13723:1 13733:8 13745:1 13764:3 13779:3 13782:1 13784:1 13788:2 13799:1 13813:1 13827:7 13832:3 13833:1 13838:2 13847:2 13883:1 13886:1 13895:1 13904:4 13931:10 13942:1 13963:1 13974:1 13980:2 13986:1 14006:1 14007:2 14018:1 14024:1 14029:1 14036:1 14054:2 14076:7 14086:2 14089:1 14107:3 14114:1 14119:1 14126:1 14134:1 14140:1 14152:1 14161:1 14170:1 14179:4 14180:1 14181:1 14196:1 14212:1 14221:1 14223:1 14235:1 14245:1 14255:1 14266:3 14274:2 14284:2 14295:1 14297:1 14299:3 14312:4 14313:1 14317:4 14318:9 14324:1 14325:8 14335:5 14339:2 14340:2 14347:1 14358:1 14360:1 14361:1 14376:1 14385:1 14427:2 14433:1 14434:1 14449:5 14476:1 14482:3 14485:1 14489:2 14490:2 14492:1 14493:4 14498:4 14502:1 14507:1 14514:2 14523:1 14532:1 14533:3 14537:1 14551:1 14554:1 14573:1 14587:1 14591:4 14600:3 14614:2 14616:3 14623:1 14624:1 14629:1 14636:2 14637:2 14647:5 14650:1 14664:3 14674:2 14683:2 14700:1 14701:1 14725:1 14728:1 14761:1 14775:1 14780:1 14785:2 14798:1 14803:2 14820:4 14821:1 14823:2 14824:1 14836:1 14837:1 14881:1 14883:1 14891:9 14893:1 14910:2 14912:1 14915:1 14916:3 14923:1 14935:1 14936:10 14938:3 14961:2 14970:2 14984:2 14986:1 14987:1 14995:1 14999:1 15000:1 15020:8 15022:1 15024:1 15037:1 15055:1 15071:1 15085:1 15109:1 15117:1 15123:6 15125:1 15129:1 15130:1 15134:1 15144:1 15145:1 15146:2 15152:1 15158:2 15160:1 15173:1 15177:2 15178:1 15180:1 15186:1 15207:1 15217:1 15223:1 15231:1 15233:1 15238:1 15241:1 15244:1 15245:3 15247:1 15259:2 15275:1 15282:1 15301:2 15309:1 15322:1 15332:12 15338:2 15345:2 15380:1 15385:3 15395:1 15398:1 15403:1 15404:5 15414:5 15420:1 15424:1 15431:1 15435:1 15436:1 15440:1 15453:2 15455:1 15459:2 15471:1 15482:2 15496:1 15508:1 15509:1 15512:1 15527:1 15539:1 15556:1 15563:5 15568:2 15571:1 15578:11 15581:4 15590:1 15591:3 15595:1 15598:1 15607:2 15614:5 15622:2 15624:1 15625:8 15626:3 15631:1 15637:1 15642:1 15644:1 15678:1 15679:1 15687:2 15706:1 15710:1 15711:1 15715:1 15717:2 15725:4 15742:1 15745:10 15750:1 15755:1 15757:1 15763:2 15767:1 15768:1 15777:1 15785:3 15814:2 15831:6 15832:3 15835:1 15837:1 15839:1 15871:1 15877:1 15879:4 15893:1 15896:1 15906:1 15909:6 15911:3 15913:1 15923:2 15957:2 15967:1 15973:4 16002:2 16008:1 16014:1 16018:1 16026:1 16029:18 16030:1 16034:1 16048:4 16050:1 16051:2 16055:1 16056:2 16067:1 16084:1 16095:2 16103:1 16119:7 16122:1 16127:1 16137:2 16146:1 16147:1 16149:1 16150:1 16151:1 16152:1 16154:1 16163:1 16164:1 16170:2 16172:1 16177:3 16181:1 16190:2 16194:1 16196:1 16237:1 16242:4 16270:1 16285:4 16288:1 16289:1 16290:2 16310:1 16329:1 16334:1 16336:1 16338:1 16353:1 16363:1 16383:1 16398:1 16400:1 16403:5 16434:2 16475:1 16482:1 16488:1 16489:1 16505:1 16511:1 16527:1 16528:1 16542:1 16543:1 16546:1 16555:3 16573:1 16575:1 16588:1 16589:1 16597:1 16604:2 16605:1 16614:1 16639:1 16646:1 16662:1 16666:2 16672:1 16675:2 16685:3 16697:1 16702:1 16707:1 16708:1 16710:1 16714:3 16716:3 16718:1 16727:1 16738:1 16747:1 16758:1 16759:1 16761:1 16776:1 16787:1 16789:3 16801:1 16802:1 16826:1 16828:1 16830:1 16840:5 16843:2 16844:6 16851:1 16867:1 16872:1 16874:1 16883:1 16899:1 16905:1 16908:1 16915:8 16929:2 16930:1 16932:4 16939:1 16942:1 16947:2 16966:5 16974:1 16977:4 16990:1 16991:1 16995:2 17013:2 17015:1 17036:1 17042:1 17046:2 17050:1 17053:2 17059:6 17067:2 17087:1 17091:6 17092:1 17106:1 17107:1 17110:1 17121:1 17136:3 17138:2 17155:5 17156:3 17167:1 17172:1 17179:1 17181:1 17186:2 17187:3 17198:3 17199:7 17200:1 17207:4 17210:1 17212:1 17244:1 17247:1 17251:1 17265:1 17270:2 17277:2 17281:1 17327:1 17342:1 17343:1 17345:2 17346:1 17360:1 17363:4 17369:2 17373:1 17374:2 17397:1 17401:1 17417:1 17421:1 17422:2 17442:1 17445:2 17447:3 17448:3 17454:5 17455:1 17456:1 17463:5 17475:3 17476:2 17477:1 17509:1 17511:2 17522:5 17523:4 17538:1 17555:1 17558:2 17560:3 17575:1 17585:2 17587:1 17592:7 17597:1 17598:1 17604:1 17631:1 17636:1 17644:2 17647:2 17648:1 17652:1 17655:2 17656:1 17662:1 17664:2 17665:5 17667:1 17669:1 17670:1 17674:1 17681:1 17683:4 17687:1 17691:1 17692:1 17698:1 17699:1 17707:1 17721:1 17722:3 17747:1 17753:2 17764:1 17766:2 17767:8 17772:4 17778:1 17781:36 17783:1 17785:1 17787:1 17790:2 17794:1 17803:1 17812:4 17819:1 17822:1 17831:1 17838:1 17845:1 17852:1 17855:1 17860:3 17871:1 17872:5 17873:1 17875:1 17882:1 17886:1 17896:5 17902:1 17907:1 17922:1 17931:5 17962:1 17967:1 17977:4 17979:1 17987:1 17989:1 17994:2 17998:2 18007:5 18009:1 18011:2 18019:1 18032:2 18045:1 18056:1 18058:1 18067:1 18080:1 18084:1 18098:1 18114:1 18120:1 18133:1 18142:1 18150:2 18152:3 18167:1 18169:2 18170:1 18178:1 18184:1 18212:1 18219:4 18220:1 18239:1 18249:3 18288:1 18315:5 18323:1 18331:1 18340:1 18348:2 18357:1 18380:2 18381:3 18382:3 18399:2 18410:1 18417:8 18424:1 18444:1 18449:1 18459:1 18461:1 18465:1 18470:1 18471:3 18476:2 18478:5 18481:1 18495:1 18498:1 18499:1 18504:5 18509:2 18512:2 18516:1 18519:2616 18524:1 18534:1 18538:1 18572:4 18573:1 18582:3 18590:1 18607:2 18608:1 18619:1 18624:1 18643:2 18648:2 18657:1 18668:2 18684:2 18690:1 18691:1 18702:1 18708:3 18715:7 18720:1 18725:5 18727:4 18728:5 18731:1 18743:1 18748:2 18763:1 18792:2 18799:1 18802:7 18808:2 18810:2 18814:1 18816:1 18840:1 18842:38 18850:1 18861:1 18863:7 18898:1 18904:1 18907:1 18915:1 18919:1 18920:1 18927:1 18930:2 18938:1 18947:1 18950:1 18968:1 18969:1 18971:1 18982:2 18991:4 19007:1 19008:2 19017:3 19033:2 19055:3 19061:1 19065:1 19079:1 19089:1 19091:1 19110:1 19113:1 19121:1 19135:2 19140:2 19142:4 19168:2 19172:1 19174:2 19176:4 19180:1 19187:1 19190:4 19192:3 19197:4 19202:1 19210:1 19218:1 19228:6 19235:1 19239:1 19256:1 19257:2 19271:2 19273:1 19289:1 19291:1 19293:5 19298:11 19314:1 19315:1 19335:7 19336:1 19350:2 19353:1 19359:1 19370:1 19412:2 19414:1 19420:3 19442:2 19475:1 19482:1 19494:2 19497:1 19507:5 19508:1 19515:3 19516:2 19531:2 19534:1 19549:1 19550:5 19551:1 19557:1 19563:3 19566:1 19567:1 19573:1 19592:2 19600:1 19605:1 19628:2 19634:2 19661:3 19674:1 19680:1 19708:3 19719:1 19720:1 19724:1 19732:2 19735:4 19742:1 19745:1 19751:1 19752:1 19754:1 19767:2 19771:5 19775:7 19777:1 19778:2 19784:5 19794:1 19797:1 19807:1 19816:1 19818:1 19829:1 19833:1 19839:3 19859:1 19862:1 19876:2 19881:3 19883:1 19904:2 19909:5 19918:2 19932:1 19936:2 19948:1 19949:5 19953:1 19964:1 19966:1 19978:4 19979:1 19992:1 19996:1 20001:2 20003:2 20004:2 20007:1 20017:1 20020:1 20031:2 20032:1 20036:1 20037:1 20052:1 20061:5 20068:1 20074:1 20079:1 20084:3 20086:1 20094:2 20103:1 20117:2 20118:2 20137:2 20159:6 20170:1 20175:1 20187:1 20211:10 20212:3 20218:5 20226:2 20231:1 20237:1 20238:1 20272:1 20276:1 20281:1 20283:3 20293:2 20299:1 20302:1 20313:1 20329:1 20337:1 20345:1 20362:1 20373:1 20395:1 20400:1 20401:1 20404:3 20406:4 20408:1 20412:1 20420:1 20422:1 20443:1 20453:1 20454:1 20455:9 20465:2 20466:1 20467:1 20468:4 20474:2 20495:1 20525:1 20530:1 20531:3 20532:1 20542:1 20545:1 20547:2 20567:4 20575:1 20577:1 20594:1 20599:1 20600:1 20601:1 20604:1 20626:2 20631:2 20643:2 20644:1 20652:1 20656:1 20658:5 20671:1 20677:4 20679:2 20682:1 20683:1 20685:2 20686:1 20692:1 20697:1 20701:1 20705:6 20710:1 20715:1 20716:1 20721:3 20722:3 20730:1 20734:1 20738:1 20747:7 20756:1 20770:1 20775:2 20780:2 20781:1 20782:3 20783:1 20797:1 20798:1 20823:3 20833:1 20846:1 20857:1 20862:1 20900:2 20907:2 20910:1 20918:1 20925:1 20945:1 20948:2 20957:2 20979:8 20985:1 20986:1 20988:1 20992:1 20997:1 21010:2 21016:1 21019:2 21029:1 21049:1 21062:2 21075:1 21079:1 21080:1 21085:1 21088:1 21091:2 21100:1 21107:1 21118:1 21122:1 21137:2 21142:1 21158:1 21159:1 21165:1 21169:2 21174:1 21193:1 21196:1 21198:2 21200:1 21201:1 21211:1 21250:1 21257:1 21265:1 21276:2 21284:2 21285:1 21288:1 21289:1 21313:1 21320:1 21332:1 21339:1 21345:1 21357:1 21358:3 21359:1 21371:4 21372:1 21373:1 21374:2 21380:1 21381:1 21386:3 21387:3 21389:2 21392:1 21397:1 21405:1 21406:1 21407:1 21409:1 21410:1 21415:3 21434:1 21440:1 21442:2 21444:2 21448:1 21459:1 21472:4 21486:1 21488:2 21490:1 21493:1 21498:3 21499:2 21502:1 21503:1 21504:1 21506:1 21509:3 21518:2 21519:1 21520:1 21523:2 21528:1 21538:1 21544:1 21548:10 21551:1 21567:1 21568:2 21569:5 21580:2 21599:1 21616:1 21634:2 21647:2 21648:1 21654:2 21661:1 21663:4 21664:1 21670:1 21675:9 21681:1 21684:2 21691:1 21695:3 21705:1 21712:1 21714:2 21715:1 21724:1 21742:1 21750:2 21770:1 21771:1 21772:1 21778:1 21804:1 21806:2 21809:1 21811:1 21812:7 21822:1 21824:1 21826:1 21827:2 21829:2 21830:1 21838:1 21845:1 21846:6 21847:1 21848:3 21867:2 21870:1 21877:1 21885:1 21901:2 21916:2 21919:1 21931:1 21937:3 21941:1 21952:1 21967:1 21971:1 21975:1 21994:3 21999:1 22009:4 22012:2 22016:4 22017:3 22020:1 22021:1 22025:1 22029:1 22036:1 22051:1 22052:1 22059:2 22061:1 22065:3 22077:2 22080:2 22096:3 22115:1 22132:1 22135:1 22144:1 22147:2 22150:1 22160:1 22173:5 22174:6 22178:3 22179:1 22180:2 22181:1 22189:2 22190:1 22205:1 22212:2 22222:1 22223:4 22230:1 22236:1 22239:2 22243:3 22248:3 22252:3 22257:2 22258:4 22265:1 22277:2 22286:1 22290:1 22291:1 22293:1 22294:3 22295:1 22302:1 22315:2 22318:1 22329:2 22331:1 22332:1 22336:1 22337:1 22342:1 22345:3 22349:1 22357:1 22362:3 22368:1 22390:1 22391:9 22392:1 22401:1 22403:1 22406:2 22412:1 22414:36 22419:1 22420:4 22422:4 22425:1 22426:3 22427:5 22430:1 22432:1 22434:2 22451:1 22453:4 22455:1 22461:1 22464:3 22467:1 22473:3 22493:3 22495:2 22496:1 22507:2 22510:1 22529:3 22538:1 22542:1 22547:1 22579:5 22585:1 22593:10 22599:2 22616:3 22621:2 22634:1 22646:1 22672:1 22674:2 22676:2 22679:1 22680:1 22687:1 22691:3 22692:1 22695:1 22699:2 22705:1 22706:1 22721:4 22726:2 22734:1 22736:1 22737:1 22758:1 22776:1 22777:2 22782:1 22784:1 22788:1 22808:1 22837:1 22848:1 22866:1 22867:1 22878:1 22886:1 22896:2 22902:1 22917:1 22919:1 22921:1 22931:2 22935:1 22947:2 22948:1 22955:1 22962:2 22964:1 22965:2 22971:2 22980:3 22981:1 22982:1 22998:3 23001:4 23021:3 23024:1 23027:1 23033:3 23038:1 23057:1 23060:1 23069:1 23072:1 23099:1 23130:1 23143:1 23148:1 23161:1 23165:2 23175:1 23184:3 23188:2 23195:1 23196:1 23207:3 23227:2 23234:2 23235:1 23239:1 23241:2 23248:1 23254:1 23261:1 23275:2 23283:3 23297:1 23299:5 23302:1 23305:1 23310:2 23313:2 23326:2 23340:1 23343:1 23349:1 23351:1 23352:1 23361:12 23368:1 23394:2 23403:1 23408:1 23420:1 23437:2 23439:1 23441:1 23452:2 23467:1 23482:2 23488:2 23494:1 23504:1 23519:1 23520:1 23527:1 23532:5 23545:1 23559:2 23568:1 23581:1 23591:1 23592:1 23600:3 23604:1 23616:9 23618:2 23620:1 23635:7 23647:1 23651:1 23659:2 23667:1 23711:1 23716:1 23720:1 23722:1 23732:3 23736:2 23744:1 23749:2 23758:1 23774:1 23779:1 23785:1 23798:1 23801:1 23806:1 23814:1 23831:1 23832:1 23842:1 23874:1 23875:4 23884:6 23885:1 23886:1 23896:4 23899:1 23910:2 23912:1 23918:2 23919:1 23920:1 23928:1 23932:1 23939:2 23941:1 23966:3 23967:1 23973:1 23979:1 23992:1 23994:3 23995:2 23996:1 24001:1 24025:2 24030:1 24044:1 24047:3 24052:2 24057:2 24058:3 24064:1 24068:1 24073:1 24093:1 24098:1 24101:1 24114:1 24124:1 24146:1 24148:1 24150:2 24156:1 24159:2 24160:1 24162:8 24164:3 24165:1 24166:4 24167:2 24171:1 24172:2 24174:2 24175:5 24182:2 24183:4 24187:2 24193:2 24206:6 24213:2 24220:1 24233:1 24236:3 24237:1 24242:1 24247:3 24258:1 24263:6 24267:3 24291:2 24295:1 24297:1 24306:1 24307:3 24321:1 24324:1 24342:1 24345:1 24347:1 24348:2 24362:1 24390:1 24401:1 24402:1 24419:3 24440:4 24448:1 24450:6 24453:1 24464:3 24466:1 24470:1 24496:1 24499:1 24508:1 24512:2 24513:1 24521:1 24524:1 24547:2 24548:1 24549:1 24558:1 24571:1 24582:2 24584:2 24609:2 24623:1 24626:1 24630:3 24640:1 24645:1 24648:1 24654:1 24658:2 24665:2 24707:6 24746:1 24757:2 24761:1 24763:1 24772:1 24780:1 24783:4 24791:1 24793:1 24797:2 24810:1 24816:1 24822:4 24878:1 24899:1 24900:2 24912:4 24915:8 24946:11 24955:1 24969:9 24977:1 24990:1 24997:1 25005:1 25015:2 25019:1 25028:1 25038:2 25041:1 25042:1 25045:1 25046:1 25047:1 25071:1 25085:1 25089:1 25093:2 25095:1 25099:2 25104:1 25109:1 25111:2 25114:6 25122:1 25137:2 25139:2 25141:12 25144:4 25145:2 25155:1 25162:1 25167:2 25168:1 25170:1 25177:1 25182:2 25186:2 25214:2 25219:1 25225:4 25230:1 25240:1 25247:4 25258:2 25259:2 25319:2 25320:1 25335:1 25342:1 25345:1 25346:1 25356:1 25361:1 25384:3 25386:1 25401:1 25410:1 25412:4 25413:1 25416:2 25417:1 25425:1 25436:6 25444:1 25465:1 25468:1 25473:1 25474:1 25479:2 25488:1 25492:1 25506:1 25515:1 25557:2 25561:1 25569:1 25576:3 25600:1 25618:1 25626:1 25657:1 25663:1 25665:1 25676:1 25679:3 25680:2 25687:1 25691:1 25698:1 25699:1 25700:1 25701:1 25708:2 25718:2 25726:1 25729:1 25742:1 25757:1 25759:2 25781:1 25786:1 25796:5 25804:1 25812:1 25816:2 25826:1 25829:1 25835:2 25838:5 25850:1 25859:1 25864:1 25865:5 25880:2 25882:1 25901:1 25903:1 25906:2 25910:1 25916:2 25929:1 25930:1 25936:2 25943:1 25953:2 25971:2 25988:1 25992:7 25994:1 26018:1 26021:8 26024:1 26027:1 26033:1 26038:1 26040:1 26042:1 26059:2 26074:1 26087:1 26088:1 26093:4 26107:1 26112:2 26113:4 26114:1 26118:1 26122:1 26123:1 26127:3 26128:3 26133:1 26162:1 26166:4 26170:1 26175:1 26182:1 26185:1 26188:1 26190:2 26193:1 26213:3 26221:2 26222:1 26225:2 26247:2 26249:2 26261:2 26262:1 26267:1 26278:1 26285:1 26290:2 26300:1 26307:1 26309:2 26316:1 26332:2 26337:1 26338:1 26339:1 26341:1 26352:1 26366:1 26368:3 26373:5 26392:2 26397:1 26430:1 26453:1 26476:1 26478:1 26479:1 26482:1 26499:1 26504:1 26524:2 26526:1 26542:1 26547:1 26548:1 26551:1 26556:1 26559:3 26566:1 26569:1 26574:2 26582:1 26588:2 26599:1 26611:1 26618:1 26619:1 26621:1 26622:1 26624:1 26631:1 26641:2 26654:2 26657:2 26658:1 26662:1 26667:5 26681:4 26700:5 26707:1 26709:5 26710:1 26721:1 26724:1 26736:1 26737:1 26743:1 26759:4 26772:2 26778:1 26787:1 26788:10 26807:1 26817:1 26838:1 26840:2 26844:1 26845:2 26847:1 26848:3 26850:1 26856:12 26866:1 26890:1 26894:4 26920:1 26933:2 26934:1 26938:1 26954:2 26960:8 26965:2 26966:1 26967:3 26981:1 26985:2 26988:1 26994:4 27003:1 27006:1 27016:2 27022:1 27033:1 27036:1 27057:1 27058:3 27061:1 27064:1 27069:2 27070:1 27079:1 27090:3 27103:1 27108:1 27113:1 27135:2 27136:1 27141:2 27143:1 27145:1 27147:1 27149:2 27160:2 27169:1 27177:1 27187:2 27188:1 27229:1 27247:1 27275:1 27279:1 27297:1 27298:1 27330:1 27332:1 27340:1 27342:2 27365:5 27368:1 27376:1 27385:1 27392:1 27408:1 27412:1 27419:1 27422:1 27447:1 27465:1 27472:1 27474:1 27481:2 27500:1 27517:1 27536:3 27549:1 27560:1 27563:7 27575:1 27579:1 27595:1 27597:4 27603:1 27620:1 27627:2 27636:1 27647:2 27658:1 27661:1 27662:1 27673:1 27675:2 27678:1 27682:2 27687:34 27689:4 27692:5 27694:1 27695:3 27702:2 27707:1 27724:11 27739:1 27777:3 27789:2 27804:1 27808:2 27820:1 27821:3 27832:7 27838:2 27859:13 27863:2 27867:3 27869:1 27874:2 27878:1 27879:4 27885:1 27887:1 27889:1 27893:2 27897:1 27900:2 27906:1 27907:2 27909:1 27917:2 27923:2 27930:1 27934:2 27935:2 27943:1 27946:1 27948:3 27951:1 27955:1 27960:1 27964:1 27968:1 27969:2 27975:1 27989:1 28003:1 28011:1 28028:2 28030:1 28031:1 28041:1 28046:1 28050:1 28051:1 28054:2 28058:1 28068:5 28075:1 28082:1 28100:1 28101:1 28102:2 28118:1 28126:1 28127:2 28128:2 28131:1 28160:1 28169:1 28174:1 28177:1 28178:1 28180:1 28183:3 28187:6 28191:2 28193:1 28196:1 28197:2 28202:1 28203:1 28204:1 28208:2 28214:2 28215:1 28217:1 28218:1 28223:1 28244:1 28264:1 28268:1 28286:1 28292:1 28315:1 28319:2 28320:1 28326:2 28341:1 28350:1 28356:1 28359:2 28362:2 28363:2 28367:1 28373:2 28375:3 28378:1 28380:1 28387:1 28397:8 28404:2 28405:2 28409:1 28411:8 28413:1 28419:1 28421:1 28445:1 28461:1 28469:2 28470:1 28506:3 28511:1 28514:1 28520:1 28536:4 28541:1 28543:3 28551:1 28553:1 28560:6 28565:1 28569:1 28594:1 28596:1 28626:1 28627:1 28646:2 28648:1 28665:2 28681:1 28685:4 28703:2 28709:2 28724:1 28728:1 28734:1 28748:2 28754:1 28761:2 28772:1 28792:1 28801:7 28815:1 28816:1 28818:1 28831:1 28836:7 28849:6 28850:1 28867:1 28904:1 28913:8 28914:3 28916:4 28919:1 28921:1 28924:3 28925:3 28941:1 28947:1 28958:1 28959:3 28961:3 28963:3 29003:1
9 11:1 14:2 18:1 24:1 28:1 34:1 37:6 45:1 56:1 60:1 63:1 65:1 74:1 79:1 82:1 83:1 86:1 89:1 90:1 103:1 109:1 113:1 117:1 125:1 133:2 143:1 150:1 153:3 162:1 169:1 170:5 189:8 192:1 203:1 214:1 240:1 245:1 270:1 275:2 282:2 286:1 293:1 295:39 303:2 315:1 316:4 318:5 320:2 326:1 333:1 348:4 350:1 352:1 354:1 363:2 381:1 403:2 424:4 432:2 433:1 437:1 438:1 442:1 444:1 460:1 463:1 515:1 523:1 561:2 563:5 564:1 569:2 572:4 590:4 596:2 598:2 600:1 613:2 626:1 634:4 638:1 643:2 650:1 674:1 678:2 685:1 692:1 695:1 702:1 716:1 728:1 734:2 735:1 748:1 752:1 767:3 770:1 788:2 795:1 804:1 805:1 807:2 808:1 814:1 828:1 830:9 832:3 842:3 843:1 855:1 856:16 858:1 860:1 867:1 871:1 875:2 876:1 877:6 878:1 879:8 881:1 885:4 887:1 889:1 892:1 893:1 899:1 900:1 905:4 916:1 924:2 925:3 941:1 963:1 964:1 974:3 989:1 996:6 998:2 1002:2 1011:1 1019:1 1020:2 1027:1 1028:1 1038:1 1045:1 1046:1 1059:1 1061:2 1078:1 1086:1 1087:1 1089:2 1092:2 1104:3 1112:2 1117:1 1123:1 1136:1 1137:1 1143:1 1148:3 1152:1 1157:1 1160:1 1163:1 1179:1 1199:1 1200:1 1207:2 1228:1 1230:1 1231:2 1232:2 1241:2 1244:1 1248:1 1253:1 1257:1 1262:1 1276:1 1284:1 1287:1 1300:2 1306:1 1313:1 1330:1 1345:1 1353:1 1355:3 1369:1 1374:2 1376:1 1394:1 1397:2 1400:6 1401:10 1402:1 1417:2 1418:1 1419:3 1420:2 1422:2 1423:2 1438:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1506:2 1507:1 1508:1 1516:8 1518:1 1543:2 1547:1 1555:2 1557:1 1560:1 1562:3 1564:3 1571:1 1574:1 1575:1 1578:2 1596:5 1598:1 1602:2 1617:1 1619:3 1627:6 1634:2 1659:1 1660:1 1677:2 1678:2 1682:1 1693:1 1699:1 1709:1 1743:3 1757:1 1760:1 1762:1 1778:4 1789:1 1794:1 1802:1 1811:1 1819:1 1826:1 1828:1 1830:2 1831:1 1850:1 1875:1 1876:1 1888:1 1889:1 1892:2 1895:19 1903:1 1907:2 1919:2 1923:1 1929:1 1933:1 1935:1 1936:1 1952:1 1954:1 1962:8 1963:1 1965:2 1993:1 1998:1 2006:2 2011:4 2017:2 2045:1 2048:2 2051:1 2062:1 2072:1 2082:1 2085:1 2089:3 2095:2 2100:1 2101:1 2105:1 2108:1 2124:1 2132:1 2142:1 2150:1 2152:1 2153:1 2154:2 2156:1 2158:2 2159:5 2160:1 2162:2 2165:1 2167:1 2172:1 2174:5 2177:4 2178:2 2179:5 2180:1 2181:1 2187:1 2190:4 2191:1 2207:1 2212:1 2215:4 2216:2 2219:2 2220:2 2221:8 2223:5 2226:1 2227:2 2228:4 2232:1 2233:1 2234:1 2237:3 2239:1 2245:1 2247:2 2249:2 2251:6 2252:2 2253:9 2264:1 2268:2 2269:1 2279:1 2297:1 2309:2 2310:2 2315:1 2322:1 2336:1 2339:1 2343:1 2347:1 2358:3 2370:4 2371:1 2374:1 2376:1 2384:2 2387:1 2392:2 2410:5 2421:9 2433:1 2439:1 2445:1 2461:1 2463:1 2465:1 2473:1 2485:5 2494:5 2500:1 2520:1 2522:3 2536:2 2543:4 2552:3 2561:2 2563:1 2570:1 2580:2 2586:1 2609:2 2631:1 2635:1 2641:1 2648:2 2651:4 2656:1 2659:1 2667:2 2670:1 2672:1 2675:1 2676:2 2683:2 2688:1 2691:1 2704:1 2708:3 2712:1 2713:1 2723:1 2730:3 2756:1 2760:1 2761:2 2762:1 2766:7 2770:4 2775:6 2780:1 2781:1 2782:1 2810:1 2813:3 2816:2 2818:2 2826:2 2836:2 2851:1 2854:8 2857:2 2867:28 2870:1 2883:4 2888:1 2900:2 2909:1 2915:1 2923:1 2931:1 2936:16 2951:1 2954:1 2961:6 2965:9 2966:1 2968:1 2969:1 2972:1 2989:1 3013:1 3015:1 3023:1 3026:1 3030:1 3059:1 3068:1 3074:4 3075:1 3089:1 3097:1 3105:1 3106:2 3107:1 3112:1 3141:1 3166:1 3188:2 3197:1 3205:1 3216:1 3224:2 3231:1 3232:6 3237:1 3241:2 3243:2 3248:1 3255:1 3256:1 3266:1 3271:1 3272:1 3279:1 3283:1 3293:1 3295:5 3314:1 3318:1 3338:1 3352:2 3357:14 3397:1 3407:1 3420:2 3424:2 3453:1 3459:1 3468:1 3471:1 3472:2 3475:2 3478:1 3488:1 3489:2 3495:2 3509:1 3517:2 3526:1 3528:1 3540:2 3548:1 3554:1 3558:1 3570:4 3574:1 3575:1 3577:1 3580:2 3582:8 3598:1 3599:5 3604:2 3605:2 3606:1 3607:5 3608:2 3615:1 3619:1 3634:2 3638:1 3639:6 3647:1 3648:1 3665:1 3669:1 3680:1 3684:1 3687:3 3688:3 3692:1 3694:1 3695:2 3698:3 3712:1 3730:1 3737:1 3740:1 3742:4 3744:1 3746:2 3748:13 3751:1 3763:1 3770:1 3779:1 3783:5 3784:1 3788:2 3789:13 3790:3 3792:1 3796:2 3810:2 3813:7 3817:1 3822:1 3835:1 3836:3 3838:1 3844:1 3846:1 3848:1 3851:1 3862:1 3866:1 3874:1 3876:1 3879:1 3883:1 3888:2 3895:1 3902:4 3904:3 3918:2 3919:2 3921:1 3931:1 3934:1 3939:2 3940:1 3943:3 3948:3 3953:1 3955:1 3964:5 3970:1 3972:1 3977:2 3978:2 3982:1 3983:1 3987:1 3988:3 3989:2 3998:5 3999:5 4005:1 4019:1 4031:1 4033:1 4040:1 4051:1 4054:2 4063:1 4069:1 4078:6 4085:2 4086:1 4093:1 4112:1 4113:1 4124:1 4125:1 4129:1 4136:1 4137:1 4173:1 4190:7 4193:2 4201:1 4202:1 4204:1 4208:1 4210:1 4219:1 4234:1 4254:1 4256:1 4263:1 4270:2 4272:2 4282:1 4296:1 4298:2 4306:1 4313:1 4314:2 4343:1 4348:2 4352:1 4355:1 4357:1 4362:5 4378:1 4385:1 4414:1 4416:1 4428:3 4434:1 4439:2 4455:1 4470:1 4478:1 4491:1 4494:1 4521:1 4528:2 4535:1 4549:1 4554:1 4560:1 4562:1 4565:1 4575:1 4583:2 4585:2 4605:1 4613:1 4619:3 4623:1 4626:5 4640:1 4646:3 4657:2 4658:1 4660:1 4676:2 4678:1 4691:1 4695:8 4713:1 4724:1 4731:1 4742:1 4746:1 4751:1 4759:1 4768:1 4773:8 4776:1 4778:1 4783:1 4787:2 4788:2 4803:1 4807:1 4810:1 4815:1 4818:1 4851:3 4867:1 4876:30 4878:3 4881:1 4895:3 4900:1 4903:1 4909:4 4917:1 4925:2 4928:7 4940:2 4963:2 4964:2 4969:1 4980:1 4981:1 4984:1 4985:7 5003:5 5005:8 5006:1 5008:1 5009:1 5011:1 5013:3 5014:1 5015:1 5017:3 5020:1 5022:2 5025:1 5026:1 5028:5 5030:3 5031:1 5033:1 5036:1 5041:1 5042:1 5045:4 5046:4 5049:1 5063:1 5064:1 5066:1 5072:1 5087:1 5090:1 5096:1 5125:3 5131:2 5133:1 5138:1 5151:1 5157:2 5176:1 5177:1 5184:3 5186:1 5190:3 5195:2 5200:1 5203:3 5219:1 5220:1 5227:1 5237:1 5245:2 5249:5 5255:1 5280:1 5285:1 5302:1 5306:1 5307:1 5316:1 5325:1 5328:1 5346:1 5351:3 5358:8 5362:1 5365:1 5369:2 5371:2 5386:1 5394:1 5404:2 5423:1 5429:1 5434:2 5438:2 5444:1 5453:1 5480:1 5493:1 5494:2 5501:1 5511:2 5524:2 5525:2 5534:1 5535:2 5538:2 5540:2 5548:1 5551:1 5556:2 5562:1 5563:1 5564:1 5569:1 5576:1 5582:3 5584:1 5586:1 5588:1 5589:1 5593:1 5599:1 5607:1 5615:3 5629:4 5639:1 5640:1 5663:3 5678:1 5680:1 5681:3 5687:1 5694:1 5701:3 5702:1 5705:1 5718:2 5720:4 5721:1 5728:2 5744:1 5749:1 5762:1 5773:1 5785:1 5790:1 5797:1 5801:1 5802:1 5812:2 5813:1 5843:3 5850:1 5851:1 5852:1 5855:1 5877:1 5881:2 5898:1 5920:1 5934:1 5942:1 5947:4 5949:1 5969:2 5971:1 5972:19 5987:5 5992:4 6000:1 6001:1 6005:1 6006:5 6007:1 6009:2 6017:1 6039:3 6040:1 6043:1 6053:1 6056:1 6058:1 6078:2 6102:1 6110:1 6117:1 6130:2 6137:2 6138:1 6142:1 6149:1 6150:1 6153:3 6156:1 6176:7 6178:1 6182:1 6192:1 6197:1 6199:1 6220:1 6244:1 6245:2 6247:1 6259:4 6262:1 6263:1 6264:1 6265:2 6267:1 6269:2 6270:4 6273:1 6274:3 6275:3 6276:5 6277:1 6279:2 6280:1 6282:4 6283:13 6284:5 6286:3 6316:1 6334:3 6379:4 6381:1 6383:1 6389:1 6419:1 6420:2 6426:1 6435:2 6482:2 6487:1 6490:1 6493:2 6502:1 6507:1 6513:1 6531:2 6536:3 6537:1 6542:1 6554:1 6556:1 6558:1 6565:4 6580:1 6581:1 6585:1 6589:1 6594:1 6598:1 6609:2 6613:2 6652:1 6653:2 6654:2 6661:2 6668:1 6671:2 6677:1 6679:2 6680:1 6689:1 6699:9 6715:2 6722:4 6728:1 6741:1 6744:1 6751:1 6757:1 6769:1 6772:1 6777:1 6795:1 6810:4 6811:1 6823:3 6851:1 6854:2 6855:2 6860:3 6866:1 6869:1 6871:1 6885:3 6886:2 6903:1 6906:1 6914:2 6918:1 6919:2 6922:2 6927:1 6932:1 6938:1 6939:1 6948:2 6973:1 6987:1 6999:1 7009:1 7036:1 7049:1 7050:15 7052:1 7061:1 7067:1 7073:2 7074:3 7091:1 7097:2 7099:2 7102:2 7109:1 7124:1 7125:1 7155:2 7169:1 7174:1 7180:1 7198:3 7203:1 7218:2 7234:1 7248:2 7263:3 7274:1 7278:1 7287:5 7288:1 7290:1 7297:1 7303:1 7311:1 7319:1 7322:1 7334:6 7346:4 7347:1 7352:1 7367:2 7371:1 7382:2 7383:1 7386:2 7392:1 7401:1 7407:2 7411:1 7427:1 7463:3 7485:2 7496:1 7499:2 7510:1 7516:1 7518:1 7554:3 7555:14 7556:7 7560:1 7570:2 7576:1 7580:3 7582:4 7584:2 7603:5 7604:1 7620:61 7622:2 7643:9 7644:16 7645:1 7648:4 7657:1 7665:1 7667:1 7671:2 7682:1 7685:1 7686:1 7690:1 7696:1 7700:1 7710:2 7719:2 7720:4 7725:2 7734:1 7751:1 7755:1 7758:2 7773:2 7786:1 7804:1 7807:1 7826:2 7851:3 7862:1 7871:1 7874:1 7878:3 7892:1 7897:8 7928:1 7931:1 7943:1 7962:1 7967:1 7994:1 8004:1 8007:1 8032:1 8035:1 8037:1 8043:3 8044:3 8045:2 8046:1 8062:2 8063:2 8081:1 8082:1 8087:1 8093:1 8105:1 8107:2 8110:1 8116:2 8122:1 8124:2 8130:2 8131:1 8136:1 8141:1 8142:3 8145:1 8154:1 8156:13 8180:3 8184:1 8186:2 8194:1 8205:1 8230:1 8236:1 8244:2 8254:1 8270:1 8299:1 8301:2 8311:2 8319:2 8330:2 8334:1 8336:1 8340:1 8358:1 8367:4 8369:2 8376:4 8379:1 8383:3 8387:3 8394:1 8395:4 8405:1 8412:1 8422:1 8430:5 8433:2 8438:2 8441:2 8445:1 8449:1 8460:1 8468:1 8480:1 8485:1 8490:1 8495:1 8497:1 8500:3 8501:8 8503:4 8504:1 8505:2 8508:3 8510:8 8512:3 8513:4 8514:1 8516:2 8525:3 8526:2 8543:4 8549:2 8550:7 8559:1 8565:1 8567:3 8571:1 8572:2 8575:2 8578:2 8582:2 8586:5 8587:1 8604:2 8611:1 8639:1 8640:2 8647:1 8655:1 8657:1 8659:1 8669:1 8679:1 8683:1 8688:1 8710:1 8719:2 8725:2 8728:1 8739:1 8751:1 8756:3 8762:1 8772:2 8779:3 8801:1 8805:2 8808:1 8810:2 8811:4 8815:3 8827:3 8833:1 8840:1 8846:1 8857:1 8914:1 8921:1 8929:1 8936:2 8950:6 8952:1 8954:2 8962:1 8967:1 8969:2 8971:1 8992:3 9001:1 9009:1 9011:1 9019:1 9022:2 9023:1 9035:3 9040:1 9050:1 9057:1 9060:1 9065:1 9068:1 9069:1 9077:3 9107:1 9115:4 9121:1 9128:1 9130:1 9134:1 9139:3 9142:2 9145:1 9151:1 9161:2 9162:1 9166:1 9176:1 9196:1 9200:2 9204:2 9207:8 9209:1 9210:1 9213:1 9216:3 9219:1 9223:1 9226:39 9230:4 9231:2 9236:1 9246:2 9247:1 9260:2 9261:1 9264:1 9275:1 9286:4 9298:2 9305:1 9312:1 9314:1 9319:1 9329:1 9338:2 9345:1 9349:1 9360:2 9363:8 9364:1 9365:2 9382:1 9390:1 9391:1 9392:1 9421:1 9427:1 9433:5 9435:1 9437:1 9448:1 9469:1 9490:1 9491:1 9497:1 9528:1 9529:1 9537:1 9539:1 9544:1 9555:3 9558:1 9559:1 9567:1 9568:1 9569:6 9574:1 9582:1 9585:1 9586:5 9594:2 9601:2 9608:2 9634:2 9652:1 9663:9 9668:1 9675:1 9676:1 9677:6 9687:2 9689:1 9697:1 9700:1 9702:1 9704:2 9712:1 9713:1 9725:2 9746:3 9772:1 9780:1 9784:1 9789:1 9790:1 9815:1 9818:1 9823:2 9829:1 9847:7 9850:1 9856:1 9862:1 9865:1 9871:4 9877:2 9878:2 9880:1 9883:2 9885:1 9887:1 9890:1 9898:4 9911:1 9913:1 9917:1 9919:1 9921:1 9923:1 9924:1 9928:3 9929:1 9932:2 9933:1 9935:1 9938:1 9939:1 9948:1 9954:1 9956:1 9968:4 9986:1 9987:1 9996:1 10017:1 10019:2 10030:1 10037:1 10038:1 10043:1 10057:2 10065:1 10073:1 10094:1 10098:1 10117:1 10122:1 10124:2 10125:1 10126:1 10135:2 10157:1 10178:1 10188:1 10191:1 10195:2 10200:1 10228:1 10234:1 10241:2 10263:2 10265:1 10266:5 10280:1 10286:2 10297:1 10302:1 10305:1 10328:2 10329:1 10347:5 10351:2 10359:2 10370:1 10372:1 10402:1 10405:1 10409:1 10414:1 10436:2 10448:1 10470:1 10478:2 10484:1 10486:1 10488:2 10493:1 10500:1 10501:1 10504:4 10507:2 10509:1 10513:8 10521:1 10523:1 10524:1 10526:1 10533:1 10537:1 10539:3 10541:1 10550:2 10554:1 10555:3 10557:4 10558:1 10564:1 10573:3 10582:4 10583:4 10584:1 10590:2 10592:2 10593:1 10621:1 10628:1 10639:1 10641:1 10657:7 10665:5 10677:2 10683:4 10686:15 10737:1 10740:1 10741:1 10747:1 10748:2 10783:4 10787:1 10790:1 10805:1 10824:1 10827:1 10835:2 10839:1 10846:1 10857:1 10869:1 10883:1 10890:1 10901:1 10902:2 10903:4 10905:4 10909:2 10910:2 10918:1 10921:3 10931:2 10937:1 10943:2 10946:1 10947:1 10953:1 10962:1 10963:1 10969:1 10989:8 10992:1 10993:1 11005:1 11010:7 11014:1 11016:1 11018:2 11021:1 11040:1 11062:1 11063:2 11064:2 11066:1 11070:1 11071:1 11080:1 11083:1 11085:1 11086:1 11094:1 11100:1 11106:1 11107:1 11118:1 11131:1 11138:2 11145:1 11147:1 11152:1 11163:1 11166:2 11173:1 11175:1 11177:1 11188:1 11197:1 11203:5 11208:1 11216:1 11230:2 11232:1 11234:1 11248:1 11260:1 11268:2 11274:1 11278:3 11284:1 11285:1 11287:1 11300:2 11301:1 11302:2 11303:1 11308:2 11315:4 11317:1 11333:10 11341:1 11367:3 11370:14 11371:1 11385:1 11400:2 11401:1 11407:2 11423:1 11430:2 11442:1 11444:2 11466:2 11468:1 11469:1 11470:1 11476:1 11477:2 11479:1 11481:2 11496:1 11501:1 11506:1 11509:2 11514:1 11520:3 11526:4 11530:8 11547:7 11549:1 11550:7 11580:1 11587:1 11600:2 11601:2 11603:3 11606:1 11607:1 11609:3 11611:2 11614:1 11615:2 11619:3 11620:1 11622:1 11628:1 11631:2 11632:3 11633:1 11636:2 11641:3 11645:1 11649:1 11664:7 11666:1 11671:1 11684:8 11690:2 11693:1 11696:1 11710:1 11711:2 11716:1 11727:1 11734:1 11755:1 11772:2 11789:2 11824:2 11826:1 11852:1 11858:1 11865:5 11871:1 11877:4 11882:1 11891:1 11908:1 11916:1 11924:1 11931:3 11936:4 11952:1 11973:5 11977:1 11990:2 11997:1 12004:1 12005:1 12010:1 12025:1 12045:1 12076:2 12082:1 12085:1 12100:1 12107:1 12109:1 12110:3 12111:4 12115:2 12125:2 12132:1 12141:2 12142:1 12154:1 12156:2 12160:1 12165:4 12166:5 12172:3 12176:1 12178:2 12184:2 12206:1 12219:1 12239:1 12243:1 12250:1 12263:1 12272:1 12276:2 12281:10 12297:1 12302:2 12318:1 12323:3 12337:1 12338:1 12345:1 12346:1 12349:2 12361:3 12362:2 12365:1 12376:2 12380:2 12398:1 12405:1 12420:1 12423:4 12431:3 12435:1 12457:1 12458:1 12464:1 12468:1 12472:1 12476:1 12477:7 12480:1 12491:1 12493:1 12495:1 12508:1 12512:1 12515:1 12526:2 12534:1 12586:1 12593:1 12608:8 12621:1 12633:1 12635:1 12636:1 12644:1 12648:19 12654:1 12658:1 12668:3 12671:7 12676:1 12681:2 12701:1 12702:1 12708:4 12733:2 12764:1 12769:6 12772:2 12782:1 12787:1 12789:1 12790:1 12791:1 12796:3 12797:1 12813:2 12827:5 12830:1 12831:1 12835:1 12837:1 12860:1 12861:1 12885:1 12888:1 12914:1 12948:1 12949:7 12954:1 12960:1 12984:1 12989:1 12999:1 13042:1 13045:8 13049:1 13062:1 13066:4 13068:1 13070:1 13072:1 13076:8 13080:4 13086:1 13087:1 13093:2 13094:6 13120:1 13128:2 13131:1 13133:1 13142:2 13143:1 13144:1 13166:5 13170:1 13188:2 13194:1 13206:2 13211:2 13213:1 13215:1 13222:1 13224:8 13231:1 13232:6 13233:2 13244:1 13250:1 13251:1 13252:2 13257:2 13263:2 13275:3 13278:1 13282:1 13283:1 13287:1 13301:2 13302:5 13306:1 13310:1 13320:3 13331:1 13341:2 13346:1 13364:2 13372:7 13376:1 13396:1 13401:1 13416:4 13420:1 13421:5 13440:1 13454:2 13468:4 13473:1 13488:1 13490:1 13503:1 13506:1 13520:1 13524:1 13533:1 13556:1 13557:2 13561:2 13570:2 13571:1 13599:6 13600:1 13601:2 13606:6 13607:2 13610:2 13619:1 13620:1 13628:1 13633:1 13654:5 13674:1 13680:3 13691:2 13694:2 13697:1 13698:1 13723:1 13733:8 13745:1 13764:3 13779:3 13782:1 13784:1 13788:2 13799:1 13802:1 13813:1 13827:7 13832:3 13833:1 13838:2 13847:2 13869:2 13883:1 13886:1 13895:1 13904:5 13931:10 13942:1 13963:1 13974:1 13980:2 13986:1 13987:1 14006:1 14007:2 14018:1 14024:1 14029:1 14036:2 14054:3 14076:7 14086:2 14089:1 14107:3 14114:1 14119:1 14126:1 14134:1 14140:1 14152:1 14161:1 14170:1 14179:4 14180:1 14181:1 14196:1 14212:1 14221:1 14223:1 14234:1 14235:1 14245:1 14255:1 14266:3 14274:2 14284:2 14295:1 14297:1 14299:3 14312:4 14313:1 14317:4 14318:9 14324:1 14325:8 14335:5 14339:2 14340:2 14347:1 14358:1 14360:1 14361:1 14376:1 14385:1 14427:2 14433:1 14434:1 14449:5 14476:1 14482:3 14485:1 14489:2 14490:2 14492:1 14493:4 14498:4 14502:1 14507:1 14514:2 14523:1 14532:1 14533:3 14537:1 14551:1 14554:1 14573:1 14587:1 14591:4 14600:3 14614:2 14616:3 14623:2 14624:1 14629:2 14636:2 14637:2 14647:5 14650:1 14664:3 14674:2 14677:1 14683:2 14694:1 14700:1 14701:1 14725:1 14728:1 14761:1 14775:1 14780:1 14785:2 14798:1 14803:2 14820:4 14821:1 14823:2 14824:1 14836:1 14837:1 14839:1 14881:1 14883:1 14891:11 14893:1 14910:3 14912:1 14915:1 14916:3 14923:1 14935:1 14936:10 14938:3 14961:2 14970:2 14984:2 14986:1 14987:1 14995:1 14999:1 15000:1 15020:8 15022:1 15024:1 15030:1 15037:1 15055:1 15071:1 15085:1 15109:1 15117:1 15123:6 15125:1 15129:1 15130:1 15134:1 15144:1 15145:1 15146:2 15152:1 15158:2 15160:1 15173:1 15177:2 15178:1 15180:1 15186:1 15207:1 15217:1 15223:1 15231:1 15233:1 15238:1 15241:1 15244:1 15245:3 15247:1 15251:1 15259:2 15275:1 15282:1 15301:2 15309:1 15322:1 15332:12 15338:2 15345:2 15380:1 15385:4 15395:1 15398:1 15403:1 15404:5 15414:6 15420:1 15424:1 15431:1 15435:1 15436:1 15440:1 15453:2 15455:1 15459:2 15471:1 15482:2 15496:1 15508:1 15509:1 15512:1 15527:1 15539:1 15556:1 15563:5 15568:2 15571:1 15578:11 15581:4 15590:2 15591:3 15595:1 15598:1 15607:2 15614:5 15622:2 15624:1 15625:8 15626:3 15631:1 15637:1 15642:1 15644:1 15678:1 15679:1 15687:2 15706:1 15710:1 15711:1 15715:1 15717:2 15725:4 15742:1 15745:10 15750:1 15755:1 15757:1 15763:2 15767:1 15768:1 15777:1 15785:3 15814:2 15823:1 15831:6 15832:3 15835:1 15837:1 15839:1 15871:1 15877:1 15879:5 15893:1 15896:1 15906:1 15909:6 15911:3 15913:1 15923:2 15957:2 15967:1 15973:4 16002:2 16008:1 16014:1 16018:1 16026:1 16029:19 16030:1 16034:1 16048:4 16050:2 16051:2 16055:1 16056:2 16067:1 16084:1 16095:2 16103:1 16119:7 16122:1 16127:1 16137:2 16146:1 16147:1 16149:1 16150:1 16151:1 16152:1 16154:1 16163:1 16164:1 16170:2 16172:1 16177:3 16181:1 16190:2 16194:1 16196:1 16237:1 16242:4 16270:1 16285:4 16288:1 16289:1 16290:2 16310:1 16329:1 16334:1 16336:1 16338:1 16353:1 16363:1 16383:1 16398:1 16400:1 16403:5 16434:2 16475:1 16482:1 16488:1 16489:1 16505:1 16511:1 16527:1 16528:1 16542:1 16543:1 16546:1 16555:4 16573:1 16575:1 16588:1 16589:1 16597:1 16604:2 16605:1 16614:1 16639:1 16646:1 16655:1 16662:1 16666:3 16669:1 16672:1 16675:2 16685:4 16697:1 16702:1 16707:1 16708:1 16710:1 16714:3 16716:3 16718:1 16727:1 16738:1 16747:1 16758:1 16759:1 16761:1 16763:1 16776:1 16787:1 16789:3 16801:1 16802:1 16826:1 16828:1 16830:1 16840:5 16843:2 16844:6 16851:1 16867:1 16872:1 16874:1 16883:1 16899:1 16905:1 16908:1 16915:8 16929:2 16930:1 16932:4 16939:1 16942:1 16947:2 16966:5 16974:1 16977:4 16990:1 16991:1 16995:2 17013:2 17015:1 17036:1 17042:1 17046:2 17050:1 17053:2 17059:6 17067:2 17087:1 17091:6 17092:1 17106:1 17107:2 17110:1 17121:1 17136:3 17138:2 17155:5 17156:3 17167:1 17172:1 17179:1 17181:2 17186:2 17187:3 17198:3 17199:7 17200:1 17207:4 17210:1 17212:1 17244:1 17247:1 17251:1 17265:1 17270:2 17277:2 17281:1 17327:1 17342:1 17343:1 17345:2 17346:1 17360:1 17363:4 17369:2 17373:1 17374:2 17397:1 17401:1 17417:1 17421:1 17422:2 17442:1 17445:2 17447:3 17448:3 17454:5 17455:1 17456:1 17463:5 17468:2 17475:3 17476:2 17477:1 17509:1 17511:2 17522:5 17523:4 17538:1 17555:1 17558:2 17560:3 17575:1 17585:2 17587:1 17592:7 17597:1 17598:1 17604:1 17631:1 17636:1 17644:2 17647:2 17648:1 17652:1 17655:2 17656:1 17662:1 17664:2 17665:5 17667:1 17669:1 17670:1 17674:1 17681:1 17683:4 17684:2 17687:1 17691:1 17692:1 17698:1 17699:1 17707:1 17721:1 17722:3 17747:1 17753:2 17764:1 17766:2 17767:8 17772:4 17778:1 17781:37 17783:1 17785:1 17787:1 17790:2 17794:1 17803:1 17812:4 17819:1 17822:1 17831:1 17838:1 17845:1 17852:1 17855:1 17860:3 17867:1 17871:1 17872:5 17873:1 17875:1 17882:1 17886:1 17896:5 17902:1 17907:1 17922:1 17931:5 17962:1 17967:1 17977:4 17979:1 17987:1 17989:1 17994:2 17998:2 18007:5 18009:1 18011:2 18019:1 18032:2 18041:1 18045:1 18056:2 18058:1 18067:1 18080:1 18084:1 18098:1 18114:1 18120:1 18131:1 18133:1 18142:1 18150:2 18152:3 18167:1 18169:2 18170:1 18178:1 18184:1 18212:1 18219:5 18220:1 18239:1 18249:3 18280:1 18288:1 18315:5 18323:1 18331:1 18340:1 18348:2 18357:1 18380:2 18381:3 18382:3 18399:2 18410:1 18417:9 18424:1 18435:1 18444:1 18449:1 18459:1 18461:1 18465:1 18470:1 18471:3 18476:2 18478:5 18479:1 18481:1 18495:1 18498:1 18499:1 18504:5 18509:2 18512:2 18516:1 18519:2677 18524:1 18534:1 18538:1 18572:4 18573:1 18582:3 18590:1 18607:2 18608:1 18619:1 18624:1 18643:2 18648:2 18657:1 18668:2 18684:2 18690:1 18691:1 18702:1 18708:4 18715:7 18720:1 18725:5 18727:4 18728:5 18731:1 18743:1 18748:2 18763:1 18792:2 18799:1 18802:8 18808:2 18810:2 18814:1 18816:1 18840:1 18842:39 18850:1 18861:1 18863:7 18898:1 18904:1 18907:1 18915:1 18919:1 18920:1 18927:1 18930:2 18938:1 18947:1 18950:1 18968:1 18969:1 18971:1 18982:2 18991:5 19007:1 19008:2 19017:4 19033:2 19055:3 19061:1 19065:1 19079:1 19089:1 19091:1 19110:2 19113:1 19121:1 19135:2 19140:2 19142:4 19168:2 19172:1 19174:3 19176:4 19180:1 19187:1 19190:4 19192:3 19197:4 19202:1 19210:1 19218:1 19228:6 19235:1 19239:1 19256:1 19257:2 19271:2 19273:1 19277:1 19289:2 19291:1 19293:5 19298:12 19314:1 19315:1 19335:8 19336:1 19350:2 19353:1 19359:1 19370:1 19412:2 19414:1 19420:3 19422:1 19442:2 19475:1 19482:1 19494:2 19497:1 19507:5 19508:1 19513:1 19515:3 19516:2 19531:2 19534:1 19549:1 19550:5 19551:1 19557:1 19563:3 19566:1 19567:1 19573:1 19592:2 19600:1 19605:1 19628:2 19632:1 19634:2 19661:3 19674:1 19680:1 19708:3 19719:1 19720:1 19724:1 19732:2 19735:4 19742:1 19745:1 19751:1 19752:1 19754:1 19767:2 19771:5 19775:7 19777:1 19778:2 19784:5 19794:1 19797:1 19807:1 19816:1 19818:1 19829:1 19833:1 19839:3 19859:1 19862:1 19876:2 19881:3 19883:1 19904:2 19909:5 19918:2 19932:1 19936:2 19948:1 19949:5 19953:1 19964:1 19966:1 19978:4 19979:1 19992:1 19996:1 20001:2 20003:2 20004:2 20007:1 20017:1 20020:1 20031:2 20032:1 20036:1 20037:1 20052:2 20053:1 20061:5 20068:1 20074:1 20079:1 20084:3 20086:1 20094:2 20103:1 20117:2 20118:2 20137:2 20159:6 20170:1 20175:1 20187:1 20211:10 20212:3 20218:5 20226:2 20231:1 20237:1 20238:1 20272:1 20276:1 20281:1 20283:3 20293:2 20299:1 20302:1 20313:1 20329:1 20337:1 20345:1 20362:1 20373:1 20395:1 20400:1 20401:1 20404:3 20406:4 20408:1 20412:1 20420:1 20422:1 20428:1 20443:1 20453:1 20454:1 20455:9 20465:2 20466:1 20467:1 20468:4 20474:2 20495:1 20525:1 20530:1 20531:3 20532:1 20542:1 20545:1 20547:2 20567:4 20575:1 20577:1 20594:1 20599:1 20600:1 20601:1 20604:1 20626:2 20631:2 20643:2 20644:1 20652:1 20656:1 20658:5 20671:1 20672:1 20677:4 20679:2 20682:1 20683:1 20685:2 20686:1 20692:1 20697:1 20701:1 20705:6 20710:1 20715:1 20716:1 20721:3 20722:3 20730:1 20734:1 20738:1 20747:7 20756:1 20770:1 20775:2 20780:2 20781:1 20782:3 20783:1 20797:1 20798:1 20823:3 20833:1 20846:1 20857:1 20862:1 20900:2 20907:2 20910:1 20918:1 20925:1 20945:1 20948:2 20957:2 20979:8 20985:1 20986:1 20988:1 20992:1 20997:1 21010:2 21016:1 21019:2 21029:1 21049:1 21062:2 21075:1 21079:1 21080:1 21085:1 21088:1 21091:2 21100:1 21107:1 21118:1 21122:1 21137:3 21142:1 21158:1 21159:1 21165:1 21169:2 21174:1 21193:1 21196:1 21198:2 21200:1 21201:1 21211:1 21250:1 21257:2 21265:1 21276:2 21284:2 21285:1 21288:1 21289:1 21313:1 21320:1 21332:1 21339:1 21345:1 21357:1 21358:3 21359:1 21371:4 21372:1 21373:1 21374:2 21380:2 21381:2 21386:3 21387:3 21389:2 21392:1 21397:1 21405:1 21406:1 21407:1 21409:1 21410:1 21415:3 21434:1 21440:1 21442:2 21444:2 21448:1 21459:1 21472:4 21486:1 21488:2 21490:1 21493:1 21498:4 21499:2 21502:1 21503:2 21504:1 21506:1 21509:3 21518:2 21519:1 21520:1 21523:2 21528:1 21538:1 21544:1 21548:10 21551:1 21567:1 21568:2 21569:5 21580:2 21599:1 21616:1 21634:2 21647:2 21648:1 21654:2 21661:1 21663:4 21664:1 21670:1 21675:9 21680:1 21681:1 21684:2 21691:1 21695:3 21705:1 21712:1 21714:3 21715:1 21724:1 21742:1 21750:2 21770:1 21771:1 21772:1 21778:1 21804:1 21806:2 21809:1 21811:1 21812:7 21822:1 21824:1 21826:1 21827:2 21829:2 21830:1 21838:1 21845:1 21846:6 21847:1 21848:3 21862:1 21867:2 21870:1 21877:2 21885:1 21901:2 21916:2 21919:1 21931:1 21937:3 21941:1 21952:1 21967:1 21971:1 21975:1 21994:3 21999:1 22009:5 22012:2 22016:4 22017:3 22020:1 22021:1 22025:1 22029:1 22036:1 22051:1 22052:1 22059:3 22061:1 22065:3 22077:2 22080:2 22096:3 22115:1 22132:1 22135:1 22144:1 22147:2 22150:1 22160:1 22173:5 22174:6 22178:3 22179:1 22180:2 22181:1 22189:2 22190:1 22205:1 22212:2 22222:1 22223:4 22230:1 22236:1 22239:2 22243:3 22248:3 22252:3 22257:2 22258:4 22265:1 22277:2 22286:1 22290:1 22291:1 22293:1 22294:3 22295:1 22302:1 22315:2 22318:1 22329:2 22331:1 22332:1 22336:1 22337:1 22342:1 22345:3 22349:1 22357:1 22362:3 22368:1 22390:1 22391:9 22392:1 22401:1 22403:1 22406:2 22412:1 22414:37 22419:1 22420:4 22422:4 22425:1 22426:3 22427:5 22430:1 22432:1 22434:2 22451:1 22453:4 22455:1 22461:1 22464:3 22467:1 22473:3 22493:3 22495:2 22496:1 22507:3 22510:1 22529:3 22538:1 22542:1 22547:1 22579:5 22585:1 22593:10 22599:2 22616:3 22621:2 22634:1 22646:1 22672:1 22674:2 22675:1 22676:2 22679:1 22680:1 22687:1 22691:3 22692:1 22695:1 22699:2 22705:1 22706:1 22721:4 22726:2 22734:1 22736:1 22737:1 22758:1 22776:1 22777:2 22782:1 22784:1 22788:1 22808:1 22837:1 22848:1 22866:1 22867:1 22878:1 22886:2 22896:2 22902:1 22917:1 22919:1 22921:1 22931:2 22935:1 22947:2 22948:1 22955:1 22962:2 22964:1 22965:2 22971:2 22980:3 22981:1 22982:1 22998:3 23001:5 23021:3 23024:1 23027:1 23033:3 23038:1 23043:1 23057:1 23060:1 23069:1 23072:1 23099:1 23130:1 23143:1 23148:1 23161:1 23165:2 23175:1 23184:3 23188:2 23195:1 23196:1 23207:3 23227:2 23234:3 23235:1 23239:1 23241:2 23248:1 23254:1 23261:1 23275:2 23283:3 23297:1 23299:5 23302:1 23305:1 23310:3 23313:2 23326:2 23340:1 23343:1 23349:1 23351:1 23352:1 23361:13 23368:1 23394:2 23403:1 23408:1 23420:1 23437:2 23439:1 23441:1 23452:2 23467:1 23482:2 23488:2 23494:1 23504:1 23519:1 23520:1 23527:1 23532:5 23545:1 23558:1 23559:2 23568:1 23581:1 23591:1 23592:1 23600:3 23604:1 23616:11 23618:2 23620:1 23635:7 23645:1 23647:1 23651:1 23659:2 23667:1 23711:1 23716:1 23720:1 23722:1 23732:3 23736:2 23744:1 23749:2 23758:1 23774:1 23779:1 23785:1 23798:1 23801:1 23806:1 23814:1 23831:1 23832:1 23842:1 23874:1 23875:4 23884:6 23885:1 23886:1 23896:4 23899:1 23910:2 23912:1 23918:2 23919:1 23920:1 23928:1 23932:1 23939:2 23941:2 23966:3 23967:1 23973:1 23979:1 23992:1 23994:3 23995:2 23996:1 24001:1 24025:3 24030:1 24044:1 24047:3 24052:2 24057:2 24058:3 24059:1 24064:1 24068:1 24073:1 24084:1 24093:1 24098:1 24101:1 24114:1 24124:1 24146:1 24148:1 24150:2 24156:1 24159:2 24160:1 24162:8 24164:3 24165:1 24166:4 24167:2 24171:1 24172:2 24174:2 24175:5 24182:2 24183:4 24187:2 24193:2 24206:6 24213:2 24220:1 24233:1 24236:3 24237:1 24242:1 24247:3 24258:1 24263:7 24267:3 24291:2 24295:1 24297:1 24306:1 24307:3 24321:1 24324:1 24342:1 24345:1 24347:1 24348:3 24362:1 24390:1 24401:1 24402:1 24419:3 24440:4 24448:1 24450:6 24453:1 24464:3 24466:1 24470:1 24496:1 24499:1 24508:1 24512:2 24513:1 24521:1 24524:1 24547:3 24548:1 24549:1 24558:1 24571:1 24582:2 24584:2 24609:2 24623:1 24626:1 24630:3 24640:1 24645:1 24648:1 24654:1 24658:2 24665:2 24707:7 24746:1 24757:2 24761:1 24763:2 24772:1 24780:1 24783:4 24791:1 24793:1 24797:2 24810:1 24816:1 24822:4 24876:1 24878:1 24899:1 24900:2 24912:4 24915:8 24946:12 24955:1 24969:9 24976:1 24977:1 24990:1 24997:1 25005:1 25015:2 25019:1 25028:1 25038:2 25041:1 25042:1 25045:1 25046:1 25047:1 25071:2 25085:1 25089:1 25093:2 25095:1 25099:2 25104:1 25109:1 25111:2 25114:6 25122:1 25137:2 25139:2 25141:12 25144:4 25145:2 25155:1 25162:1 25167:2 25168:1 25170:1 25177:1 25182:2 25186:2 25214:2 25219:1 25225:5 25230:1 25240:1 25247:4 25248:1 25258:2 25259:2 25308:1 25319:2 25320:1 25335:1 25342:1 25345:1 25346:1 25356:1 25361:1 25363:1 25384:3 25386:1 25401:1 25410:1 25412:4 25413:1 25416:2 25417:1 25425:1 25436:6 25444:1 25465:1 25468:1 25473:1 25474:1 25479:2 25488:1 25492:1 25506:1 25515:1 25557:2 25561:1 25569:1 25576:4 25590:1 25600:1 25618:1 25626:1 25657:1 25663:1 25665:1 25676:1 25679:3 25680:2 25687:1 25691:1 25698:1 25699:1 25700:1 25701:1 25708:2 25718:2 25726:1 25729:1 25742:1 25757:1 25759:2 25781:1 25786:2 25796:5 25804:1 25812:1 25816:2 25826:1 25829:1 25835:2 25838:5 25850:1 25859:1 25864:1 25865:5 25880:2 25882:1 25901:1 25903:1 25906:2 25910:1 25916:2 25929:1 25930:1 25936:3 25943:1 25953:2 25971:2 25988:1 25992:7 25994:1 26018:1 26021:8 26024:1 26027:1 26033:1 26038:1 26040:1 26042:1 26059:2 26074:1 26087:1 26088:1 26093:4 26107:1 26112:2 26113:4 26114:1 26118:1 26122:1 26123:1 26127:3 26128:3 26133:1 26162:1 26166:4 26170:1 26175:1 26182:1 26185:1 26188:1 26190:2 26193:1 26213:3 26221:2 26222:1 26225:2 26247:2 26249:2 26261:2 26262:1 26267:1 26278:1 26285:1 26290:2 26300:1 26307:1 26309:2 26316:1 26332:2 26337:1 26338:1 26339:1 26341:1 26352:1 26366:1 26368:3 26373:5 26392:2 26397:1 26430:1 26453:1 26461:1 26476:1 26478:1 26479:1 26482:1 26499:1 26504:1 26524:2 26526:2 26532:2 26542:1 26547:1 26548:1 26551:1 26556:1 26559:3 26566:1 26569:1 26574:2 26582:1 26588:2 26599:1 26611:1 26618:1 26619:1 26621:1 26622:1 26624:1 26631:1 26641:2 26654:2 26657:2 26658:1 26662:1 26667:5 26681:4 26700:5 26707:1 26709:5 26710:1 26721:1 26723:2 26724:1 26736:1 26737:1 26743:1 26759:4 26772:2 26778:1 26787:1 26788:10 26807:1 26817:1 26838:1 26840:2 26844:1 26845:2 26847:1 26848:3 26850:1 26856:13 26866:1 26890:1 26894:5 26920:1 26933:2 26934:1 26938:1 26954:2 26960:8 26965:2 26966:1 26967:3 26981:1 26982:1 26985:2 26988:1 26994:4 27003:1 27006:1 27016:3 27022:1 27033:1 27036:1 27054:1 27057:1 27058:3 27061:1 27064:1 27069:2 27070:1 27079:1 27090:3 27103:2 27108:1 27113:1 27122:1 27135:2 27136:1 27141:2 27143:1 27145:1 27147:1 27149:2 27160:2 27169:1 27177:1 27187:2 27188:1 27229:1 27247:1 27275:1 27279:1 27297:1 27298:1 27330:1 27332:1 27340:1 27342:2 27365:5 27368:1 27369:1 27376:1 27385:1 27392:1 27408:1 27412:1 27419:1 27422:2 27447:1 27465:1 27472:1 27474:1 27481:2 27500:1 27517:1 27518:1 27536:3 27549:1 27560:1 27563:7 27575:1 27579:1 27595:1 27597:4 27603:1 27620:1 27627:2 27636:1 27647:2 27658:1 27661:1 27662:1 27673:1 27675:2 27678:1 27682:2 27687:34 27689:4 27692:5 27694:1 27695:3 27702:2 27707:1 27724:11 27733:1 27739:1 27777:3 27789:2 27804:1 27808:2 27820:1 27821:4 27832:7 27838:2 27859:13 27863:2 27867:3 27869:2 27874:2 27878:1 27879:4 27885:1 27887:1 27889:1 27893:2 27897:1 27900:2 27906:2 27907:2 27909:1 27917:2 27923:2 27930:1 27934:2 27935:2 27943:1 27946:1 27948:3 27951:1 27955:1 27960:1 27964:1 27968:1 27969:2 27975:1 27989:1 28003:1 28011:1 28019:1 28028:2 28030:1 28031:1 28041:1 28046:1 28050:1 28051:1 28054:2 28058:1 28068:5 28075:1 28082:1 28100:1 28101:1 28102:2 28118:1 28126:1 28127:2 28128:3 28131:1 28160:1 28169:1 28174:1 28177:1 28178:1 28180:1 28183:3 28187:6 28191:2 28193:1 28196:1 28197:2 28202:1 28203:1 28204:1 28208:2 28214:2 28215:1 28217:1 28218:1 28223:1 28230:1 28244:1 28264:1 28268:1 28286:1 28292:1 28315:1 28319:2 28320:1 28326:2 28341:1 28350:1 28356:1 28359:2 28362:2 28363:2 28367:1 28373:2 28375:3 28378:1 28380:1 28387:1 28397:8 28404:2 28405:2 28409:1 28411:10 28413:1 28419:1 28421:1 28445:1 28461:1 28469:2 28470:1 28506:3 28511:1 28514:1 28520:1 28536:4 28541:1 28543:3 28551:1 28553:1 28560:6 28565:1 28569:1 28594:1 28596:1 28626:1 28627:1 28646:2 28648:1 28665:2 28681:2 28685:4 28703:2 28709:2 28724:1 28728:1 28734:1 28748:2 28752:1 28754:2 28761:2 28772:1 28792:1 28801:7 28815:1 28816:1 28818:1 28831:1 28836:7 28849:6 28850:1 28867:1 28904:1 28912:1 28913:8 28914:3 28916:4 28919:1 28921:1 28924:3 28925:3 28941:1 28947:1 28958:2 28959:3 28961:3 28963:3 29003:1
9 11:1 14:2 18:1 24:1 28:1 34:1 37:6 45:1 56:1 60:1 63:1 65:1 74:1 79:1 82:1 83:1 86:1 89:1 90:1 103:1 109:1 113:1 117:1 125:1 133:2 143:1 150:1 153:3 162:1 169:1 170:5 186:1 189:8 192:1 203:1 214:1 240:1 245:1 270:1 275:2 282:2 286:1 293:1 295:39 303:2 315:1 316:4 318:5 320:2 326:1 333:1 348:4 350:1 352:1 354:1 363:2 381:1 403:2 424:4 432:2 433:1 437:1 438:1 442:1 444:1 460:1 463:1 510:1 515:1 523:1 561:2 563:5 564:1 569:2 572:4 590:4 596:2 598:2 600:1 613:2 626:1 634:4 638:1 643:2 650:1 674:1 678:3 685:1 692:1 695:1 702:1 716:1 728:1 734:2 735:1 748:1 752:1 759:1 767:3 770:1 788:2 795:1 804:1 805:1 807:2 808:1 814:1 828:1 830:10 832:3 842:3 843:1 855:1 856:16 858:1 860:1 867:1 871:1 875:2 876:1 877:6 878:1 879:8 881:1 885:4 887:1 889:1 892:1 893:1 899:1 900:1 905:4 916:1 924:2 925:3 941:1 963:1 964:1 974:3 989:1 996:6 998:2 1002:2 1011:1 1019:1 1020:2 1027:1 1028:1 1038:1 1045:1 1046:1 1059:1 1061:2 1078:1 1086:1 1087:1 1089:2 1092:2 1104:3 1112:2 1117:1 1123:1 1136:1 1137:1 1143:1 1148:3 1152:1 1157:1 1160:1 1163:1 1179:1 1199:1 1200:1 1207:2 1228:1 1230:1 1231:2 1232:2 1241:2 1244:1 1248:1 1253:1 1257:1 1262:1 1276:1 1284:1 1287:1 1300:2 1306:1 1313:1 1330:1 1345:1 1353:1 1355:3 1369:1 1374:2 1376:1 1394:1 1397:2 1400:6 1401:10 1402:1 1417:2 1418:1 1419:3 1420:2 1422:3 1423:2 1438:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1506:2 1507:1 1508:1 1516:8 1518:1 1543:2 1547:1 1555:2 1557:1 1560:1 1562:3 1564:3 1571:1 1574:1 1575:1 1578:2 1596:6 1598:1 1602:2 1617:1 1619:3 1627:6 1634:2 1659:1 1660:1 1677:2 1678:2 1682:1 1693:1 1699:1 1709:1 1743:3 1757:1 1760:1 1762:2 1778:4 1789:1 1794:1 1802:1 1811:1 1819:1 1826:1 1828:1 1830:2 1831:2 1838:1 1850:1 1875:1 1876:1 1888:1 1889:1 1892:2 1895:19 1903:1 1907:2 1919:2 1923:1 1929:1 1933:1 1935:1 1936:1 1952:1 1954:1 1962:8 1963:1 1965:2 1993:1 1998:1 2006:2 2011:4 2017:2 2045:1 2048:2 2051:1 2062:1 2065:1 2072:2 2082:1 2085:1 2089:3 2095:2 2100:1 2101:1 2105:1 2108:1 2124:1 2132:1 2142:1 2150:1 2152:1 2153:1 2154:2 2156:1 2158:2 2159:5 2160:1 2162:2 2165:1 2167:1 2172:1 2174:5 2177:5 2178:2 2179:5 2180:1 2181:1 2187:1 2190:4 2191:1 2207:1 2212:1 2215:4 2216:2 2219:2 2220:2 2221:8 2223:5 2226:1 2227:2 2228:5 2232:1 2233:1 2234:1 2237:3 2239:1 2245:2 2247:2 2249:2 2251:6 2252:2 2253:9 2264:1 2268:2 2269:1 2279:1 2297:1 2309:2 2310:2 2315:1 2322:1 2336:1 2339:1 2343:1 2345:1 2347:1 2358:3 2370:4 2371:1 2374:1 2376:1 2384:2 2387:1 2392:2 2410:5 2421:10 2433:1 2439:1 2445:1 2461:1 2463:1 2465:1 2473:1 2477:1 2485:5 2494:6 2500:1 2520:1 2522:3 2536:2 2543:4 2552:3 2554:1 2561:2 2563:1 2570:1 2580:2 2586:1 2609:2 2631:1 2635:1 2641:1 2648:2 2651:4 2656:1 2659:1 2667:2 2670:1 2672:1 2675:1 2676:2 2683:2 2688:1 2691:1 2704:1 2708:3 2712:1 2713:1 2723:1 2730:3 2756:1 2760:1 2761:2 2762:1 2766:7 2770:4 2775:6 2780:1 2781:1 2782:1 2810:1 2813:3 2816:2 2818:2 2826:2 2836:2 2851:1 2854:8 2857:2 2867:28 2870:1 2883:4 2888:1 2900:2 2909:1 2915:1 2918:1 2923:1 2931:1 2936:16 2951:1 2954:1 2961:6 2965:9 2966:1 2968:1 2969:1 2972:1 2989:1 3013:1 3015:1 3023:1 3026:1 3030:1 3059:1 3068:1 3074:4 3075:1 3089:1 3097:1 3105:1 3106:2 3107:1 3112:1 3141:1 3166:1 3188:2 3197:1 3205:1 3216:1 3224:2 3231:1 3232:6 3237:1 3241:2 3243:2 3248:1 3255:1 3256:1 3266:1 3271:1 3272:1 3279:1 3283:1 3293:1 3295:5 3314:1 3318:1 3338:1 3352:2 3357:14 3397:1 3407:1 3420:2 3424:2 3453:1 3459:1 3468:1 3471:1 3472:2 3475:2 3478:1 3488:1 3489:2 3495:2 3509:1 3517:2 3526:1 3528:1 3540:2 3548:1 3554:1 3558:1 3570:4 3574:1 3575:1 3577:1 3580:2 3582:8 3598:1 3599:6 3604:2 3605:2 3606:1 3607:5 3608:2 3615:1 3619:1 3634:2 3638:1 3639:6 3647:1 3648:1 3665:1 3669:1 3680:1 3684:1 3687:3 3688:3 3692:1 3694:1 3695:2 3698:3 3712:1 3730:1 3737:1 3740:1 3742:4 3744:1 3746:2 3748:14 3751:1 3763:1 3770:1 3779:1 3783:5 3784:1 3788:2 3789:13 3790:3 3792:1 3796:2 3810:3 3813:7 3817:1 3822:1 3835:1 3836:3 3838:1 3844:1 3846:1 3848:1 3851:1 3862:1 3866:1 3874:1 3876:1 3879:1 3883:1 3888:2 3895:1 3902:4 3904:3 3918:2 3919:2 3921:1 3931:1 3934:1 3939:3 3940:1 3943:3 3948:3 3953:1 3955:1 3964:5 3970:1 3972:1 3977:2 3978:2 3982:2 3983:1 3987:1 3988:3 3989:2 3998:5 3999:5 4005:1 4019:1 4020:1 4031:1 4033:1 4040:1 4051:1 4054:2 4063:1 4069:1 4078:6 4085:2 4086:1 4093:1 4112:1 4113:1 4124:1 4125:1 4129:1 4136:1 4137:1 4173:1 4190:7 4193:2 4201:1 4202:1 4204:1 4208:1 4210:1 4219:1 4234:1 4254:1 4256:1 4263:1 4270:2 4272:2 4282:1 4296:1 4298:2 4306:1 4313:1 4314:2 4343:1 4348:2 4352:1 4355:2 4357:1 4362:5 4378:1 4385:1 4414:1 4416:1 4428:4 4434:1 4439:2 4455:1 4470:1 4478:1 4491:1 4494:1 4508:1 4521:1 4528:2 4535:2 4549:1 4554:1 4560:1 4562:1 4565:1 4575:1 4583:3 4585:2 4605:1 4613:1 4619:3 4623:1 4626:5 4640:1 4646:3 4657:2 4658:1 4660:1 4676:2 4678:1 4691:1 4695:8 4713:1 4724:1 4731:1 4742:1 4746:1 4751:1 4759:1 4768:1 4773:8 4776:1 4778:1 4783:1 4787:2 4788:2 4803:3 4807:1 4810:1 4815:1 4818:1 4851:3 4867:1 4876:30 4878:3 4881:1 4895:3 4900:1 4903:1 4909:4 4917:1 4925:2 4928:7 4940:2 4963:2 4964:2 4969:1 4980:1 4981:1 4984:1 4985:7 5003:5 5005:8 5006:1 5008:1 5009:1 5011:1 5013:3 5014:2 5015:1 5017:4 5020:1 5022:2 5025:1 5026:1 5028:5 5030:3 5031:1 5033:1 5036:1 5041:1 5042:1 5045:4 5046:4 5049:1 5063:1 5064:1 5066:1 5072:1 5087:1 5090:1 5096:1 5125:3 5131:2 5133:1 5138:1 5151:1 5157:2 5176:1 5177:1 5184:3 5186:1 5190:3 5195:2 5200:1 5203:3 5219:1 5220:1 5227:1 5237:1 5245:2 5249:5 5255:1 5280:1 5285:1 5302:1 5306:1 5307:1 5316:1 5325:1 5328:1 5346:1 5351:3 5358:8 5362:1 5365:1 5369:2 5371:2 5386:1 5394:1 5404:2 5423:1 5429:1 5434:2 5438:2 5444:1 5453:1 5480:1 5493:1 5494:2 5501:1 5510:1 5511:3 5524:2 5525:2 5534:1 5535:2 5538:2 5540:2 5548:1 5551:1 5556:2 5562:1 5563:1 5564:1 5569:1 5576:1 5582:3 5584:1 5586:1 5588:1 5589:1 5593:1 5599:1 5607:1 5615:3 5629:5 5639:1 5640:1 5663:3 5678:1 5680:1 5681:3 5687:1 5694:1 5701:3 5702:1 5705:1 5718:3 5720:4 5721:1 5728:2 5744:1 5749:1 5762:1 5773:1 5785:1 5790:1 5797:1 5801:1 5802:1 5812:2 5813:1 5843:4 5850:1 5851:1 5852:1 5855:1 5868:1 5877:1 5881:2 5898:1 5920:1 5934:1 5942:1 5947:4 5949:1 5969:2 5971:1 5972:19 5987:5 5992:4 6000:1 6001:1 6005:1 6006:5 6007:1 6009:2 6017:1 6039:3 6040:1 6043:1 6053:1 6056:1 6058:1 6078:2 6102:1 6110:1 6117:1 6130:2 6137:2 6138:1 6142:1 6149:1 6150:1 6153:3 6156:1 6176:7 6178:1 6182:1 6192:1 6197:1 6199:1 6220:1 6244:1 6245:2 6247:1 6259:4 6262:1 6263:1 6264:1 6265:2 6267:1 6269:2 6270:4 6273:1 6274:3 6275:3 6276:5 6277:1 6279:2 6280:1 6282:4 6283:13 6284:5 6286:3 6316:1 6334:3 6379:4 6381:1 6383:1 6389:1 6419:1 6420:2 6426:1 6435:2 6482:3 6487:1 6490:1 6493:2 6502:1 6507:1 6513:1 6531:2 6536:3 6537:1 6542:1 6554:1 6556:1 6558:1 6565:4 6580:1 6581:1 6585:1 6589:1 6594:1 6598:1 6609:2 6613:2 6652:1 6653:2 6654:2 6661:2 6668:1 6671:3 6677:1 6679:2 6680:1 6689:1 6699:10 6715:2 6722:4 6728:1 6741:1 6744:1 6751:1 6757:1 6769:1 6772:1 6777:1 6795:1 6810:4 6811:1 6823:3 6851:1 6854:2 6855:3 6860:3 6866:1 6869:1 6871:1 6885:3 6886:2 6903:1 6906:1 6914:2 6918:1 6919:2 6922:2 6927:1 6932:1 6938:1 6939:1 6948:2 6955:1 6973:1 6985:1 6987:1 6999:1 7009:1 7028:1 7036:1 7049:1 7050:15 7052:1 7061:1 7067:1 7073:2 7074:3 7091:1 7097:2 7099:2 7102:2 7109:1 7124:1 7125:1 7155:2 7169:1 7174:1 7180:1 7198:3 7203:1 7218:2 7234:1 7248:2 7263:3 7274:1 7278:1 7287:5 7288:1 7290:1 7297:1 7303:1 7311:1 7319:1 7322:1 7334:6 7346:4 7347:1 7352:1 7367:2 7371:1 7382:3 7383:1 7386:2 7392:1 7401:1 7407:2 7411:1 7427:1 7463:3 7485:2 7496:1 7499:2 7510:1 7516:1 7518:1 7548:1 7554:3 7555:14 7556:8 7560:1 7568:1 7570:2 7576:1 7580:3 7582:4 7584:2 7603:5 7604:1 7620:63 7622:2 7643:9 7644:16 7645:1 7648:4 7657:1 7665:1 7667:1 7671:2 7682:1 7685:1 7686:1 7690:1 7696:1 7700:1 7710:2 7719:2 7720:4 7725:2 7734:1 7751:1 7755:1 7758:2 7773:2 7786:1 7804:1 7807:1 7826:2 7851:3 7862:1 7871:1 7874:1 7878:3 7892:1 7897:8 7928:1 7931:1 7943:1 7962:1 7967:1 7994:1 8004:1 8007:1 8032:1 8035:1 8037:1 8043:3 8044:3 8045:2 8046:1 8062:2 8063:2 8081:1 8082:1 8087:1 8093:1 8105:1 8107:2 8110:1 8116:2 8122:1 8124:2 8130:2 8131:1 8136:1 8141:1 8142:3 8145:1 8154:1 8156:13 8180:3 8184:2 8186:2 8194:1 8205:1 8230:1 8236:1 8244:2 8254:1 8270:1 8299:1 8301:2 8311:2 8319:2 8330:2 8334:1 8336:1 8340:1 8358:1 8367:4 8369:2 8376:4 8379:1 8383:3 8387:3 8394:1 8395:4 8405:1 8412:1 8422:1 8430:5 8433:2 8438:2 8441:2 8445:1 8449:1 8460:1 8468:1 8480:1 8485:1 8490:1 8495:1 8497:1 8500:3 8501:8 8503:4 8504:1 8505:2 8508:3 8510:8 8512:3 8513:4 8514:1 8516:2 8525:3 8526:2 8543:4 8549:2 8550:7 8559:1 8565:1 8567:3 8571:1 8572:2 8575:2 8578:2 8582:2 8586:5 8587:1 8604:2 8611:1 8639:1 8640:2 8647:1 8655:1 8657:1 8659:1 8669:1 8679:1 8683:1 8688:1 8710:1 8719:2 8725:2 8728:1 8739:1 8751:1 8756:3 8762:1 8772:2 8779:3 8801:1 8805:2 8808:1 8810:2 8811:4 8815:3 8827:3 8833:1 8840:1 8846:1 8857:1 8914:1 8915:1 8921:1 8929:1 8936:2 8950:6 8952:1 8954:2 8962:1 8967:1 8969:2 8971:1 8972:1 8992:3 9001:1 9009:1 9011:1 9019:1 9022:2 9023:1 9035:3 9040:1 9050:1 9057:1 9060:1 9065:1 9068:1 9069:1 9077:3 9107:1 9115:4 9121:1 9128:1 9130:1 9134:1 9139:3 9142:2 9145:1 9151:1 9161:2 9162:1 9166:1 9176:1 9196:1 9200:2 9204:2 9207:8 9209:1 9210:1 9213:1 9216:3 9219:1 9223:1 9226:39 9230:4 9231:2 9236:1 9246:2 9247:1 9260:2 9261:1 9264:1 9275:1 9286:4 9298:2 9305:1 9312:1 9314:1 9319:1 9329:1 9338:2 9345:1 9349:1 9360:2 9363:8 9364:1 9365:2 9382:1 9390:1 9391:1 9392:1 9421:1 9427:1 9433:5 9435:1 9437:1 9448:1 9449:1 9469:1 9490:1 9491:1 9497:1 9528:1 9529:1 9537:1 9539:1 9544:1 9555:3 9558:1 9559:1 9567:1 9568:1 9569:6 9574:1 9582:1 9585:1 9586:5 9594:2 9601:3 9608:2 9634:2 9652:1 9663:9 9668:1 9675:1 9676:1 9677:6 9687:2 9689:1 9697:1 9700:1 9702:1 9704:2 9712:1 9713:1 9725:2 9746:3 9772:1 9780:1 9784:1 9789:1 9790:1 9815:1 9818:1 9821:1 9823:2 9829:1 9847:7 9850:1 9856:1 9862:1 9865:1 9871:4 9877:2 9878:2 9880:1 9883:2 9885:1 9887:1 9890:1 9898:4 9911:1 9913:1 9917:1 9919:1 9921:1 9923:1 9924:2 9928:3 9929:1 9932:2 9933:2 9935:1 9938:1 9939:1 9948:1 9954:1 9956:1 9960:1 9968:4 9986:1 9987:1 9996:1 10017:1 10019:2 10030:1 10037:1 10038:1 10043:1 10052:1 10057:2 10059:1 10065:1 10073:1 10094:1 10098:1 10117:1 10122:1 10124:2 10125:1 10126:1 10135:2 10157:1 10178:1 10183:1 10188:1 10191:1 10195:2 10200:1 10228:2 10234:1 10241:2 10263:2 10265:1 10266:5 10280:1 10286:2 10297:2 10302:1 10305:2 10328:2 10329:1 10347:5 10351:2 10359:2 10370:1 10372:1 10402:1 10405:1 10409:1 10414:1 10436:3 10448:1 10470:1 10478:2 10484:2 10486:1 10488:2 10493:1 10500:2 10501:1 10504:4 10507:2 10509:1 10513:8 10521:1 10523:1 10524:1 10526:1 10533:1 10537:1 10539:3 10541:1 10550:2 10554:1 10555:3 10557:4 10558:1 10564:1 10573:3 10582:4 10583:4 10584:1 10590:2 10592:2 10593:1 10618:1 10621:1 10628:1 10639:1 10641:1 10657:7 10665:5 10677:2 10683:4 10686:15 10736:1 10737:1 10740:1 10741:1 10747:1 10748:2 10768:1 10783:4 10787:1 10790:1 10805:1 10824:1 10827:1 10835:2 10839:1 10846:1 10856:1 10857:1 10869:1 10883:1 10890:1 10901:1 10902:2 10903:4 10905:4 10909:2 10910:2 10918:1 10921:3 10931:2 10937:1 10943:2 10946:1 10947:1 10953:1 10962:1 10963:1 10969:1 10989:8 10992:1 10993:1 11005:1 11010:7 11014:1 11016:1 11018:2 11021:1 11040:1 11062:1 11063:2 11064:2 11066:1 11070:1 11071:1 11080:1 11083:1 11085:1 11086:1 11094:1 11100:1 11106:1 11107:1 11118:1 11131:1 11138:2 11145:1 11147:1 11152:1 11163:1 11166:2 11173:1 11175:1 11177:1 11188:1 11197:1 11203:5 11208:1 11216:1 11230:2 11232:1 11234:1 11248:1 11260:1 11268:2 11274:1 11278:3 11284:1 11285:1 11287:1 11300:2 11301:1 11302:2 11303:1 11308:2 11315:4 11317:1 11333:10 11341:1 11367:3 11370:14 11371:1 11385:1 11390:1 11400:2 11401:1 11407:2 11423:1 11430:2 11442:1 11444:2 11466:2 11468:1 11469:1 11470:1 11476:1 11477:2 11479:1 11481:2 11496:1 11501:1 11506:1 11509:2 11514:1 11520:3 11526:4 11530:8 11547:7 11549:1 11550:7 11580:1 11587:1 11600:2 11601:2 11603:3 11606:1 11607:1 11609:3 11611:2 11614:1 11615:2 11619:3 11620:1 11622:1 11628:1 11631:2 11632:3 11633:1 11636:2 11641:3 11645:1 11649:1 11664:7 11666:2 11671:1 11684:8 11690:2 11693:1 11696:1 11710:1 11711:2 11716:1 11727:1 11734:1 11755:1 11772:2 11789:2 11801:1 11824:2 11826:1 11852:1 11858:1 11865:5 11871:1 11877:4 11882:1 11891:1 11908:1 11916:1 11924:1 11931:3 11936:5 11938:1 11952:1 11973:5 11977:1 11990:2 11997:1 12004:1 12005:1 12010:1 12025:1 12045:1 12058:1 12076:2 12082:1 12085:1 12100:1 12107:1 12109:1 12110:3 12111:4 12115:2 12124:1 12125:2 12132:1 12141:2 12142:1 12154:1 12156:2 12160:1 12165:4 12166:5 12172:3 12176:1 12178:2 12184:2 12206:1 12219:1 12239:1 12243:1 12250:1 12263:1 12272:1 12276:2 12281:10 12297:1 12302:2 12318:1 12323:3 12337:1 12338:1 12345:1 12346:1 12349:2 12361:3 12362:2 12365:1 12376:2 12380:2 12398:2 12405:1 12420:1 12423:4 12431:3 12435:1 12457:1 12458:1 12464:1 12468:1 12472:1 12476:1 12477:7 12480:1 12491:1 12493:1 12495:1 12508:1 12512:1 12515:1 12526:2 12534:1 12586:1 12593:2 12608:8 12621:1 12633:1 12635:1 12636:1 12644:1 12648:19 12654:1 12656:1 12658:1 12668:3 12671:7 12676:1 12681:2 12701:1 12702:1 12708:4 12733:2 12752:1 12764:1 12769:6 12772:2 12782:1 12787:1 12789:1 12790:1 12791:1 12796:3 12797:1 12813:2 12827:5 12830:1 12831:1 12835:1 12837:1 12860:1 12861:1 12885:1 12888:1 12914:1 12948:1 12949:7 12954:1 12960:1 12984:1 12989:1 12999:1 13042:2 13045:8 13049:1 13062:1 13066:4 13068:1 13070:1 13072:1 13076:8 13080:4 13086:1 13087:1 13093:2 13094:6 13120:1 13128:2 13131:1 13133:1 13142:2 13143:1 13144:1 13166:5 13170:1 13188:2 13194:1 13206:2 13211:2 13213:1 13215:1 13222:1 13224:8 13225:1 13231:1 13232:6 13233:2 13244:1 13250:1 13251:1 13252:2 13257:2 13263:2 13275:3 13278:1 13282:1 13283:1 13287:1 13301:2 13302:5 13306:1 13310:1 13320:3 13331:1 13341:2 13346:2 13364:2 13372:7 13376:1 13396:1 13401:1 13416:4 13420:1 13421:6 13440:1 13454:2 13468:4 13473:1 13488:1 13490:1 13503:1 13506:1 13520:2 13524:1 13533:1 13556:1 13557:3 13561:2 13570:2 13571:1 13592:1 13599:6 13600:1 13601:2 13606:6 13607:2 13610:2 13614:1 13619:1 13620:1 13628:1 13633:1 13637:1 13654:5 13674:1 13680:3 13691:2 13694:2 13697:1 13698:1 13723:1 13730:1 13733:8 13745:1 13764:4 13779:3 13782:1 13784:1 13788:2 13799:1 13802:1 13813:1 13827:7 13832:3 13833:1 13838:2 13847:2 13869:2 13883:1 13886:1 13895:1 13904:5 13931:11 13942:1 13963:1 13974:1 13980:2 13986:1 13987:2 14006:1 14007:2 14018:1 14024:1 14029:1 14036:2 14054:3 14076:7 14086:2 14089:1 14107:3 14114:1 14119:1 14126:1 14134:1 14140:1 14152:1 14161:1 14170:1 14179:4 14180:1 14181:1 14196:1 14212:1 14221:1 14223:1 14234:1 14235:1 14245:1 14255:1 14266:3 14274:2 14284:2 14295:1 14297:1 14299:3 14312:4 14313:1 14317:4 14318:9 14324:1 14325:8 14335:5 14339:3 14340:2 14347:1 14358:1 14360:1 14361:1 14376:1 14385:1 14427:2 14433:1 14434:1 14449:5 14476:1 14482:3 14485:1 14489:2 14490:2 14492:1 14493:4 14498:4 14502:1 14507:1 14514:2 14523:1 14532:1 14533:3 14537:1 14551:1 14554:1 14573:1 14587:1 14591:4 14600:3 14614:2 14616:3 14623:2 14624:1 14629:2 14636:2 14637:2 14647:5 14650:1 14664:3 14674:2 14677:1 14683:2 14694:1 14700:1 14701:1 14725:1 14728:1 14761:1 14775:1 14780:1 14785:2 14798:1 14803:2 14820:4 14821:1 14823:2 14824:1 14836:1 14837:2 14839:1 14881:1 14883:1 14891:11 14893:1 14910:3 14912:1 14915:1 14916:3 14923:1 14935:1 14936:10 14938:3 14961:2 14970:2 14984:2 14986:1 14987:1 14995:1 14999:1 15000:1 15020:8 15022:1 15024:1 15030:1 15037:1 15055:1 15071:1 15085:1 15109:1 15117:1 15123:6 15125:1 15129:1 15130:1 15134:1 15144:1 15145:1 15146:2 15152:1 15158:2 15160:1 15173:1 15177:2 15178:1 15180:1 15186:1 15207:1 15217:1 15220:1 15223:1 15231:1 15233:1 15238:1 15241:1 15244:1 15245:3 15247:1 15251:1 15259:2 15275:1 15282:1 15301:2 15309:1 15322:1 15332:12 15338:2 15345:2 15380:1 15385:4 15395:1 15398:1 15403:1 15404:5 15414:6 15420:1 15424:1 15431:1 15435:1 15436:1 15440:1 15453:2 15455:1 15459:2 15471:1 15482:2 15496:1 15508:1 15509:1 15512:1 15527:1 15539:1 15556:1 15563:6 15568:2 15571:1 15578:12 15581:4 15590:2 15591:3 15595:1 15598:1 15607:2 15614:5 15622:2 15624:1 15625:8 15626:4 15631:1 15637:1 15642:1 15644:1 15678:1 15679:2 15687:2 15706:1 15710:1 15711:1 15715:1 15717:2 15724:1 15725:4 15742:1 15745:10 15750:1 15755:1 15757:2 15763:2 15767:1 15768:1 15777:1 15785:3 15814:2 15823:1 15831:6 15832:3 15835:1 15837:1 15839:1 15871:1 15877:1 15879:5 15893:1 15896:1 15906:1 15909:6 15911:3 15913:1 15923:2 15957:2 15967:1 15973:4 16002:2 16008:1 16014:1 16015:1 16018:1 16026:1 16029:19 16030:1 16034:1 16048:5 16050:2 16051:2 16055:1 16056:2 16067:1 16084:1 16095:2 16103:1 16119:7 16122:1 16127:1 16137:2 16146:1 16147:1 16149:1 16150:1 16151:1 16152:1 16154:1 16163:1 16164:1 16170:2 16172:1 16177:3 16181:1 16190:2 16194:1 16196:1 16237:1 16242:4 16270:1 16285:5 16288:1 16289:1 16290:2 16310:1 16329:1 16334:1 16336:1 16338:1 16353:1 16363:1 16383:1 16398:1 16400:1 16403:5 16434:2 16475:1 16482:1 16488:1 16489:1 16505:1 16511:1 16527:1 16528:1 16542:1 16543:1 16546:1 16554:1 16555:4 16573:1 16575:1 16588:1 16589:1 16597:1 16604:2 16605:1 16614:1 16639:1 16646:1 16655:1 16662:1 16666:3 16669:1 16672:1 16675:2 16685:4 16697:1 16702:1 16707:2 16708:1 16710:1 16714:3 16716:3 16718:1 16727:1 16738:1 16747:1 16758:1 16759:1 16761:1 16763:1 16776:1 16787:1 16789:3 16801:1 16802:1 16804:1 16826:1 16828:1 16830:1 16840:5 16843:2 16844:6 16851:1 16867:1 16872:1 16874:1 16883:1 16899:1 16905:1 16908:1 16915:8 16929:2 16930:1 16932:4 16939:1 16942:1 16947:2 16966:5 16974:1 16977:4 16990:1 16991:1 16995:2 17010:1 17013:2 17015:1 17036:1 17042:1 17046:2 17050:1 17053:2 17059:6 17064:1 17067:2 17087:1 17091:7 17092:1 17106:1 17107:2 17110:1 17121:1 17136:3 17138:2 17155:5 17156:3 17167:1 17172:1 17179:1 17181:2 17186:2 17187:3 17198:3 17199:7 17200:1 17207:4 17210:1 17212:1 17244:1 17247:1 17251:1 17265:1 17270:2 17277:2 17281:1 17327:1 17342:1 17343:1 17345:2 17346:1 17360:1 17363:4 17369:2 17373:1 17374:2 17397:1 17401:1 17417:1 17421:1 17422:2 17442:1 17445:2 17447:3 17448:3 17454:6 17455:1 17456:1 17463:6 17468:2 17475:3 17476:2 17477:1 17509:1 17511:2 17522:5 17523:4 17538:1 17555:1 17558:2 17560:3 17575:1 17585:2 17587:1 17592:7 17597:1 17598:1 17604:1 17605:1 17606:1 17631:1 17636:1 17644:2 17647:2 17648:1 17652:1 17655:2 17656:1 17662:1 17664:2 17665:5 17667:1 17669:1 17670:1 17674:1 17681:1 17683:4 17684:2 17687:1 17691:1 17692:1 17698:1 17699:1 17707:1 17721:1 17722:3 17747:1 17753:2 17764:1 17766:2 17767:8 17772:4 17778:1 17781:38 17783:1 17785:1 17787:1 17790:2 17794:1 17803:1 17812:4 17819:1 17822:1 17831:1 17838:1 17845:1 17852:1 17855:1 17860:3 17867:1 17871:1 17872:5 17873:1 17875:1 17882:1 17886:1 17896:5 17902:1 17907:1 17922:1 17931:5 17962:1 17967:1 17977:4 17979:1 17987:1 17989:1 17992:1 17994:2 17998:2 18007:5 18009:1 18011:2 18019:1 18032:2 18041:1 18045:1 18056:2 18058:1 18067:1 18080:1 18084:1 18098:1 18114:1 18117:1 18120:1 18131:1 18133:1 18142:1 18150:2 18152:3 18167:1 18169:2 18170:1 18178:1 18184:1 18212:1 18219:5 18220:1 18239:1 18249:3 18280:1 18288:1 18315:5 18323:1 18331:1 18340:1 18348:2 18357:1 18380:2 18381:3 18382:3 18399:2 18410:1 18417:9 18424:1 18435:1 18444:1 18449:1 18459:1 18461:1 18465:1 18470:1 18471:3 18476:2 18478:5 18479:1 18481:1 18495:1 18498:1 18499:1 18504:5 18509:2 18512:3 18516:1 18519:2751 18524:1 18534:1 18538:1 18572:4 18573:1 18582:3 18590:1 18607:2 18608:1 18619:1 18624:1 18643:2 18648:2 18657:1 18668:2 18684:2 18690:1 18691:1 18702:1 18708:4 18715:7 18720:1 18725:5 18727:4 18728:5 18731:1 18743:1 18748:2 18763:1 18792:2 18799:1 18802:8 18808:2 18810:2 18814:1 18816:1 18840:1 18842:39 18850:1 18861:1 18863:7 18898:1 18904:1 18907:1 18915:1 18919:1 18920:1 18927:1 18930:2 18938:1 18947:1 18950:1 18968:1 18969:1 18971:1 18982:2 18991:5 19007:1 19008:2 19017:4 19033:2 19055:3 19061:1 19065:1 19079:1 19089:1 19091:1 19110:2 19113:1 19121:1 19135:2 19140:2 19142:4 19168:2 19172:1 19174:4 19176:4 19180:1 19187:1 19190:4 19192:3 19197:4 19202:1 19210:1 19218:1 19228:6 19235:1 19239:1 19256:2 19257:2 19271:2 19273:1 19277:2 19289:2 19291:1 19293:5 19298:13 19314:1 19315:1 19335:8 19336:1 19345:1 19348:1 19350:2 19353:1 19359:1 19370:1 19400:1 19412:2 19414:1 19420:3 19422:1 19442:2 19475:1 19482:1 19494:2 19497:1 19507:5 19508:1 19513:1 19515:3 19516:2 19531:2 19534:1 19549:1 19550:5 19551:1 19557:1 19563:3 19566:1 19567:1 19573:1 19592:2 19600:1 19605:1 19628:2 19632:1 19634:2 19661:3 19674:1 19680:1 19708:3 19719:1 19720:1 19724:1 19732:2 19735:4 19740:1 19742:1 19745:1 19751:1 19752:1 19754:1 19767:2 19771:5 19775:7 19777:1 19778:3 19784:5 19794:1 19797:2 19807:1 19816:1 19818:1 19829:1 19833:1 19839:3 19859:1 19862:1 19876:2 19881:3 19883:1 19904:2 19909:5 19918:2 19932:1 19936:2 19942:1 19948:1 19949:5 19953:1 19964:1 19966:1 19978:5 19979:1 19992:1 19996:1 20001:2 20003:2 20004:2 20007:1 20017:1 20020:1 20031:2 20032:1 20036:1 20037:1 20052:2 20053:1 20061:5 20068:1 20074:1 20079:1 20084:3 20086:1 20094:3 20103:1 20117:2 20118:2 20137:2 20159:6 20170:1 20175:1 20187:1 20211:10 20212:3 20218:5 20226:2 20231:1 20237:1 20238:1 20272:1 20276:1 20281:1 20283:3 20293:2 20299:1 20302:1 20313:1 20329:1 20337:1 20345:1 20362:1 20373:1 20395:1 20400:1 20401:1 20404:3 20406:4 20408:1 20412:1 20420:1 20422:1 20428:1 20443:1 20453:1 20454:1 20455:9 20465:2 20466:1 20467:1 20468:4 20474:2 20495:1 20525:1 20530:1 20531:3 20532:1 20542:1 20545:1 20547:2 20567:4 20575:1 20577:1 20594:1 20599:1 20600:1 20601:1 20604:1 20626:2 20631:2 20639:1 20643:2 20644:1 20652:1 20653:1 20656:1 20658:5 20671:1 20672:1 20677:4 20679:2 20682:1 20683:1 20685:2 20686:1 20692:1 20697:1 20701:1 20705:6 20710:1 20715:1 20716:1 20721:3 20722:4 20730:1 20734:1 20738:1 20747:7 20756:1 20770:1 20775:2 20780:2 20781:1 20782:3 20783:1 20797:1 20798:1 20823:3 20833:1 20846:1 20857:1 20862:1 20900:2 20907:2 20910:1 20918:1 20925:1 20945:1 20948:2 20957:2 20979:8 20985:1 20986:1 20988:1 20992:1 20997:1 21010:2 21016:1 21019:2 21029:1 21049:2 21062:2 21075:1 21079:1 21080:1 21085:1 21088:1 21091:2 21100:1 21107:1 21118:1 21122:1 21137:3 21142:2 21158:1 21159:1 21165:1 21169:2 21174:1 21193:1 21196:1 21198:2 21200:1 21201:1 21211:1 21248:1 21250:1 21257:2 21265:1 21276:2 21284:2 21285:1 21288:1 21289:1 21313:1 21320:1 21332:1 21339:1 21345:1 21357:1 21358:3 21359:1 21371:5 21372:1 21373:1 21374:2 21380:2 21381:2 21386:3 21387:3 21389:2 21392:1 21397:1 21405:1 21406:1 21407:1 21409:1 21410:1 21415:3 21434:1 21440:1 21442:2 21444:2 21448:1 21459:1 21472:4 21486:1 21488:2 21490:1 21493:1 21498:4 21499:2 21502:1 21503:2 21504:1 21506:1 21509:3 21518:2 21519:1 21520:1 21523:2 21528:1 21538:1 21544:1 21548:10 21551:1 21567:1 21568:2 21569:5 21580:2 21599:1 21616:1 21634:2 21647:2 21648:1 21654:2 21661:1 21663:4 21664:1 21670:1 21675:9 21680:1 21681:1 21684:2 21691:1 21695:3 21705:1 21712:1 21714:3 21715:1 21724:1 21742:1 21750:2 21770:1 21771:1 21772:1 21778:1 21804:1 21806:2 21809:1 21811:1 21812:7 21822:1 21824:1 21826:1 21827:2 21829:2 21830:1 21838:1 21845:1 21846:6 21847:1 21848:3 21862:1 21867:2 21870:1 21877:2 21885:1 21901:2 21916:2 21919:1 21931:1 21937:3 21941:1 21952:1 21967:1 21971:1 21975:1 21994:3 21999:1 22009:5 22012:2 22016:4 22017:3 22020:1 22021:1 22025:1 22029:1 22036:1 22051:1 22052:1 22059:3 22061:1 22065:3 22077:2 22080:2 22096:3 22115:1 22132:1 22135:1 22144:1 22147:3 22150:1 22160:1 22173:5 22174:6 22178:3 22179:1 22180:2 22181:1 22184:1 22189:2 22190:1 22205:1 22212:2 22222:1 22223:5 22230:1 22236:1 22239:2 22243:3 22248:3 22252:3 22257:2 22258:4 22265:1 22277:2 22286:1 22290:1 22291:1 22293:1 22294:3 22295:1 22302:1 22315:2 22318:1 22329:2 22331:1 22332:1 22336:1 22337:1 22342:2 22345:3 22349:1 22357:1 22362:4 22368:1 22390:1 22391:9 22392:1 22401:1 22403:1 22406:2 22412:1 22414:38 22419:1 22420:4 22422:4 22425:1 22426:3 22427:5 22430:1 22432:1 22434:2 22451:1 22453:4 22455:1 22461:1 22464:3 22467:1 22473:3 22493:3 22495:2 22496:1 22507:3 22510:1 22529:3 22538:1 22542:1 22547:1 22579:5 22585:1 22593:10 22599:3 22616:3 22621:2 22634:1 22646:1 22672:1 22674:2 22675:1 22676:2 22679:1 22680:1 22687:1 22691:3 22692:1 22695:1 22699:2 22705:1 22706:1 22721:4 22726:2 22734:1 22736:1 22737:1 22758:1 22776:1 22777:3 22782:1 22784:1 22788:1 22808:1 22837:1 22848:1 22866:1 22867:1 22878:1 22886:2 22896:2 22902:1 22917:1 22919:1 22921:1 22931:2 22935:1 22947:2 22948:1 22955:1 22962:2 22964:1 22965:2 22971:2 22980:3 22981:1 22982:1 22998:3 23001:5 23021:3 23024:1 23027:1 23033:3 23038:1 23043:1 23057:1 23060:1 23069:1 23072:1 23099:1 23130:3 23143:1 23148:1 23161:1 23165:2 23175:1 23184:3 23188:3 23195:1 23196:1 23207:3 23227:2 23234:3 23235:1 23239:1 23241:2 23248:1 23254:1 23261:1 23275:2 23283:3 23297:1 23299:5 23302:1 23305:1 23310:3 23313:2 23326:2 23340:1 23343:1 23349:1 23351:1 23352:1 23361:13 23368:1 23394:2 23403:1 23408:1 23420:1 23437:2 23439:1 23441:1 23452:2 23467:1 23482:2 23488:2 23494:1 23504:1 23519:1 23520:1 23527:1 23532:5 23545:1 23558:1 23559:2 23568:1 23581:1 23591:1 23592:1 23597:1 23600:3 23604:1 23616:11 23618:2 23620:1 23635:7 23645:1 23647:1 23651:1 23659:2 23667:1 23711:1 23716:1 23720:1 23722:1 23732:3 23736:2 23744:1 23749:2 23758:1 23774:1 23779:1 23785:1 23798:1 23801:2 23806:1 23814:1 23831:1 23832:1 23842:1 23874:1 23875:4 23884:6 23885:1 23886:1 23896:4 23899:1 23910:2 23912:1 23918:2 23919:1 23920:1 23928:1 23932:1 23939:2 23941:2 23966:3 23967:1 23973:1 23979:1 23992:1 23994:3 23995:2 23996:1 24001:1 24025:4 24030:1 24044:1 24047:3 24052:2 24057:2 24058:3 24059:1 24064:1 24068:1 24073:1 24084:1 24093:1 24098:1 24101:1 24114:1 24124:1 24146:1 24148:1 24150:2 24156:1 24159:2 24160:1 24162:8 24164:3 24165:1 24166:4 24167:2 24171:1 24172:2 24174:2 24175:5 24182:2 24183:4 24187:2 24193:2 24206:6 24213:2 24220:1 24233:1 24236:3 24237:1 24242:1 24247:3 24258:1 24263:7 24267:3 24291:2 24295:1 24297:1 24306:1 24307:3 24321:1 24324:1 24342:1 24345:1 24347:1 24348:3 24362:1 24390:1 24401:1 24402:1 24419:3 24440:4 24448:1 24450:6 24453:1 24464:3 24466:1 24470:1 24496:1 24499:1 24508:1 24512:2 24513:1 24521:1 24524:1 24531:1 24547:3 24548:1 24549:1 24558:1 24571:1 24582:2 24584:2 24609:2 24623:1 24626:1 24630:3 24640:1 24645:1 24648:1 24654:1 24658:2 24665:2 24707:7 24746:1 24757:2 24761:1 24763:2 24772:1 24780:1 24783:4 24791:1 24793:1 24797:2 24810:1 24816:1 24822:4 24876:1 24878:1 24899:1 24900:2 24912:4 24915:8 24946:12 24955:1 24969:9 24976:1 24977:1 24990:1 24997:1 25005:1 25015:2 25019:1 25028:1 25038:2 25041:1 25042:1 25045:1 25046:1 25047:1 25066:1 25071:2 25085:1 25089:1 25093:2 25095:1 25099:2 25104:1 25109:1 25111:2 25114:6 25122:1 25137:2 25139:2 25141:12 25144:5 25145:2 25155:1 25162:1 25167:2 25168:1 25170:1 25177:1 25182:2 25186:2 25214:2 25219:1 25225:5 25230:1 25240:1 25247:4 25248:1 25258:2 25259:2 25308:1 25319:2 25320:1 25335:1 25342:1 25345:1 25346:1 25356:1 25361:1 25363:1 25384:3 25386:1 25401:1 25410:1 25412:4 25413:1 25416:2 25417:1 25425:1 25436:6 25444:1 25465:1 25468:1 25473:1 25474:1 25479:2 25488:1 25492:1 25506:1 25515:1 25557:3 25561:1 25569:1 25576:4 25590:1 25600:1 25618:1 25626:1 25657:1 25663:1 25665:1 25676:1 25679:3 25680:2 25687:1 25691:1 25698:1 25699:1 25700:1 25701:1 25708:2 25718:2 25726:1 25729:1 25742:1 25752:1 25757:1 25759:2 25781:1 25786:2 25796:5 25804:1 25812:1 25816:2 25826:1 25829:1 25835:2 25838:5 25850:1 25859:1 25864:1 25865:5 25880:2 25882:1 25901:1 25903:1 25906:2 25910:1 25916:2 25929:1 25930:1 25936:3 25943:1 25953:2 25971:2 25988:1 25992:7 25994:1 26018:1 26021:8 26024:1 26027:1 26033:1 26038:1 26040:1 26042:1 26059:2 26074:1 26087:1 26088:1 26093:4 26107:1 26112:2 26113:4 26114:1 26118:1 26122:1 26123:1 26127:3 26128:3 26133:1 26162:1 26166:5 26170:1 26175:1 26182:1 26185:1 26188:1 26190:2 26193:1 26213:3 26221:2 26222:1 26225:2 26247:2 26249:2 26261:2 26262:1 26267:1 26278:1 26285:1 26290:3 26300:1 26307:1 26309:2 26316:1 26332:2 26337:1 26338:1 26339:1 26341:1 26352:1 26366:1 26368:3 26373:5 26392:2 26397:1 26430:1 26453:1 26461:1 26476:1 26478:1 26479:1 26482:1 26499:1 26504:1 26524:2 26526:2 26532:2 26542:1 26547:2 26548:1 26551:1 26556:1 26559:3 26566:1 26569:1 26571:1 26574:2 26582:1 26588:2 26599:1 26611:1 26618:1 26619:1 26621:1 26622:1 26624:1 26631:1 26641:2 26654:2 26657:2 26658:1 26662:1 26667:5 26681:4 26700:5 26707:1 26709:5 26710:1 26721:1 26723:2 26724:1 26736:1 26737:1 26743:1 26759:5 26772:2 26778:1 26787:1 26788:10 26807:1 26817:1 26838:1 26840:2 26844:1 26845:2 26847:1 26848:3 26850:1 26856:13 26866:1 26890:1 26894:6 26920:1 26933:2 26934:1 26938:1 26954:2 26960:8 26965:2 26966:1 26967:3 26981:1 26982:1 26985:2 26988:1 26994:4 27003:1 27006:1 27016:3 27022:1 27033:1 27036:1 27054:1 27057:1 27058:3 27061:1 27064:1 27069:2 27070:1 27079:1 27090:3 27103:2 27108:1 27113:1 27122:1 27135:2 27136:1 27141:2 27143:1 27145:1 27147:1 27149:2 27160:2 27169:1 27177:1 27187:2 27188:1 27207:1 27229:1 27247:1 27275:1 27279:1 27297:1 27298:1 27330:1 27332:1 27340:1 27342:2 27365:6 27368:1 27369:2 27376:1 27385:1 27392:1 27408:1 27412:1 27419:1 27422:2 27447:1 27454:1 27465:1 27472:1 27474:1 27481:2 27500:1 27517:1 27518:1 27536:3 27549:1 27560:1 27563:7 27575:1 27579:1 27595:1 27597:4 27603:1 27620:1 27627:2 27636:1 27647:2 27658:1 27661:1 27662:1 27673:1 27674:1 27675:2 27678:1 27682:2 27687:34 27689:4 27692:5 27694:1 27695:3 27702:2 27707:1 27724:11 27733:1 27739:1 27777:3 27789:2 27804:1 27808:2 27820:1 27821:5 27832:7 27838:2 27859:13 27863:2 27867:3 27869:2 27874:2 27878:1 27879:4 27885:1 27887:1 27889:1 27893:2 27897:1 27900:2 27906:2 27907:2 27909:1 27917:2 27923:2 27930:1 27934:3 27935:2 27943:1 27946:1 27948:4 27951:1 27955:1 27960:1 27964:1 27968:1 27969:3 27975:1 27989:1 28003:1 28011:2 28019:1 28028:2 28030:1 28031:1 28041:1 28046:1 28050:1 28051:1 28054:2 28058:1 28068:5 28075:1 28082:2 28100:1 28101:1 28102:2 28118:1 28126:1 28127:2 28128:3 28131:1 28160:1 28169:1 28174:1 28177:1 28178:1 28180:1 28183:3 28187:6 28191:2 28193:1 28196:1 28197:2 28202:1 28203:1 28204:1 28208:2 28209:1 28214:2 28215:1 28217:1 28218:1 28223:1 28230:1 28244:1 28264:1 28268:1 28286:1 28292:1 28315:1 28319:2 28320:1 28326:3 28341:1 28350:1 28356:1 28359:2 28362:2 28363:2 28367:1 28373:2 28375:3 28378:1 28380:1 28387:1 28397:8 28404:2 28405:2 28409:1 28411:10 28413:1 28417:1 28419:1 28421:1 28445:1 28461:1 28469:2 28470:1 28506:3 28511:1 28514:1 28520:1 28536:4 28541:1 28543:3 28551:1 28553:1 28560:6 28565:1 28569:1 28594:1 28596:1 28626:1 28627:1 28646:2 28648:1 28665:2 28681:2 28685:4 28703:2 28709:2 28724:1 28728:1 28734:1 28748:2 28752:1 28754:2 28761:2 28772:1 28792:1 28801:7 28815:1 28816:1 28818:1 28831:1 28836:7 28849:6 28850:1 28867:1 28893:1 28904:1 28912:1 28913:8 28914:3 28916:4 28919:1 28921:1 28924:3 28925:3 28941:1 28947:1 28958:2 28959:3 28961:3 28963:3 29001:1 29003:1
9 11:1 14:2 18:1 24:1 28:1 34:1 37:7 45:1 56:1 60:1 63:1 65:1 74:1 79:1 82:1 83:1 86:1 89:1 90:1 103:1 109:1 113:1 117:1 125:1 133:2 143:1 150:1 153:3 162:1 169:1 170:5 186:1 189:8 192:1 203:1 214:1 217:1 240:1 245:1 270:1 275:2 282:2 286:1 293:1 295:40 303:2 315:1 316:5 318:5 320:2 326:1 333:1 348:4 350:1 352:1 354:1 363:2 381:1 403:2 424:4 432:2 433:1 437:1 438:1 442:1 444:1 456:1 460:1 463:1 510:1 515:1 523:1 561:2 563:5 564:1 569:2 572:4 590:4 596:2 598:2 600:1 613:2 626:1 634:4 638:1 643:3 650:1 674:1 678:3 685:1 692:1 695:1 702:2 716:1 728:1 734:2 735:1 748:1 752:1 759:1 767:3 770:1 788:2 795:1 804:1 805:1 807:2 808:1 814:1 828:1 830:10 832:3 842:3 843:1 855:1 856:17 858:1 860:1 867:1 871:1 875:2 876:1 877:6 878:1 879:9 881:1 885:4 887:1 889:1 892:1 893:1 899:1 900:1 905:4 916:1 924:2 925:3 941:1 963:1 964:1 974:3 989:1 996:6 998:2 1002:2 1011:1 1019:1 1020:2 1027:1 1028:1 1038:1 1045:1 1046:1 1059:1 1061:2 1078:1 1086:1 1087:1 1089:2 1092:2 1104:3 1112:2 1117:1 1123:2 1136:1 1137:1 1143:2 1148:3 1152:1 1157:1 1160:1 1163:1 1176:1 1179:1 1189:1 1199:1 1200:1 1207:2 1228:1 1230:1 1231:2 1232:2 1241:2 1244:1 1248:1 1253:1 1257:1 1262:1 1276:1 1284:1 1287:1 1300:2 1306:1 1313:1 1330:1 1345:1 1353:1 1355:3 1369:1 1374:2 1376:1 1394:1 1397:2 1400:6 1401:10 1402:1 1417:2 1418:1 1419:3 1420:2 1422:3 1423:2 1438:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1506:2 1507:1 1508:1 1516:8 1518:1 1543:2 1547:1 1555:2 1557:1 1560:1 1562:3 1564:3 1571:1 1574:1 1575:1 1578:2 1596:6 1598:1 1602:2 1617:1 1619:3 1627:6 1634:2 1659:1 1660:1 1677:2 1678:2 1682:1 1693:1 1699:1 1709:1 1743:4 1757:1 1760:1 1762:2 1778:4 1789:1 1794:1 1802:1 1811:1 1819:1 1826:1 1828:1 1830:2 1831:2 1838:1 1850:1 1875:1 1876:1 1888:1 1889:1 1892:2 1895:19 1903:1 1907:2 1919:2 1923:1 1929:1 1933:1 1935:1 1936:1 1952:1 1954:1 1962:9 1963:1 1965:2 1993:1 1998:1 2006:2 2011:4 2017:2 2045:1 2048:3 2051:1 2062:1 2065:1 2072:2 2082:1 2085:1 2089:3 2095:2 2100:1 2101:1 2105:1 2108:1 2124:1 2132:1 2142:1 2150:1 2152:1 2153:1 2154:2 2156:1 2158:2 2159:6 2160:1 2162:2 2165:1 2167:1 2172:1 2174:5 2177:5 2178:2 2179:5 2180:1 2181:1 2187:1 2190:4 2191:1 2207:1 2212:1 2215:5 2216:2 2219:2 2220:2 2221:9 2223:5 2226:1 2227:2 2228:5 2232:1 2233:1 2234:1 2237:3 2239:1 2245:2 2247:2 2249:2 2251:6 2252:2 2253:9 2264:1 2268:2 2269:1 2279:1 2297:1 2309:2 2310:2 2315:1 2322:1 2336:1 2339:1 2343:1 2345:1 2347:1 2358:4 2370:5 2371:1 2374:1 2376:1 2384:2 2387:1 2392:2 2410:5 2421:10 2433:1 2439:1 2445:1 2461:1 2463:1 2465:1 2473:1 2477:1 2485:5 2494:7 2500:1 2513:1 2520:1 2522:3 2536:2 2543:4 2552:3 2554:1 2561:2 2563:1 2570:1 2580:2 2586:1 2609:2 2631:1 2635:1 2641:1 2648:2 2651:4 2656:1 2659:1 2667:2 2670:1 2672:1 2675:1 2676:2 2683:2 2688:1 2691:1 2704:1 2708:3 2712:1 2713:1 2723:1 2730:3 2756:1 2760:1 2761:2 2762:1 2766:7 2770:4 2775:6 2780:1 2781:1 2782:1 2810:1 2813:3 2816:2 2818:2 2826:2 2836:2 2851:1 2854:8 2857:2 2867:28 2870:1 2883:4 2888:1 2900:2 2909:1 2915:1 2918:1 2923:1 2931:1 2936:16 2951:1 2954:1 2961:6 2965:9 2966:1 2968:1 2969:1 2972:1 2989:1 3013:1 3015:1 3017:1 3023:1 3026:2 3027:1 3030:1 3059:1 3068:1 3074:4 3075:1 3089:1 3097:1 3105:1 3106:2 3107:1 3112:1 3141:1 3166:1 3188:2 3197:1 3205:1 3216:1 3224:2 3231:1 3232:6 3237:1 3241:2 3243:2 3248:1 3255:1 3256:1 3266:1 3271:1 3272:1 3279:1 3283:1 3293:1 3295:5 3314:1 3318:1 3338:1 3352:2 3357:14 3397:1 3407:1 3420:2 3424:2 3433:1 3453:1 3459:1 3468:1 3471:1 3472:2 3475:2 3478:1 3488:1 3489:2 3495:2 3509:1 3517:2 3526:1 3528:1 3540:2 3548:1 3554:1 3558:1 3570:4 3574:1 3575:1 3577:1 3580:2 3582:8 3598:1 3599:6 3604:2 3605:2 3606:1 3607:6 3608:2 3615:1 3619:1 3634:2 3638:1 3639:6 3647:1 3648:1 3665:1 3669:1 3680:1 3684:1 3687:3 3688:3 3692:1 3694:1 3695:2 3698:3 3712:1 3730:1 3737:1 3740:1 3742:4 3744:1 3746:2 3748:14 3751:1 3763:1 3770:1 3779:1 3783:5 3784:1 3788:2 3789:13 3790:4 3792:1 3796:2 3810:3 3813:7 3817:1 3822:1 3835:1 3836:4 3838:1 3844:1 3846:1 3848:1 3851:1 3862:1 3866:1 3874:1 3876:1 3879:1 3883:1 3888:2 3895:1 3902:4 3904:3 3918:2 3919:2 3921:1 3931:1 3934:1 3939:3 3940:1 3943:3 3948:3 3953:1 3955:1 3964:6 3970:1 3972:1 3977:2 3978:2 3982:2 3983:1 3987:1 3988:3 3989:2 3998:5 3999:5 4005:1 4019:1 4020:1 4031:1 4033:1 4040:1 4051:1 4054:2 4063:1 4069:2 4078:6 4085:2 4086:1 4093:1 4112:1 4113:1 4124:1 4125:1 4129:1 4136:1 4137:1 4173:1 4190:7 4193:2 4201:1 4202:1 4204:1 4208:1 4210:1 4219:1 4234:1 4254:1 4256:1 4263:1 4270:2 4272:2 4282:1 4296:1 4298:2 4306:1 4313:1 4314:2 4343:1 4348:2 4352:1 4355:2 4357:1 4362:5 4378:1 4385:1 4414:1 4416:1 4427:1 4428:4 4434:1 4439:2 4455:1 4470:1 4478:1 4491:1 4494:2 4508:1 4521:1 4528:2 4535:2 4549:1 4554:1 4556:1 4560:1 4562:1 4565:1 4575:1 4583:3 4585:2 4605:1 4613:1 4619:3 4623:1 4626:5 4640:1 4646:4 4649:1 4657:2 4658:1 4660:1 4676:2 4678:1 4691:1 4695:8 4713:1 4724:1 4731:1 4742:1 4746:1 4751:1 4759:1 4768:1 4773:8 4776:1 4778:1 4783:1 4787:2 4788:2 4803:3 4807:1 4810:1 4815:1 4818:1 4851:3 4867:1 4876:30 4878:3 4881:1 4895:3 4900:1 4903:1 4909:4 4917:1 4925:2 4928:7 4940:2 4963:2 4964:2 4969:1 4980:1 4981:1 4984:1 4985:7 5003:5 5005:8 5006:1 5008:1 5009:1 5011:1 5013:5 5014:2 5015:1 5017:4 5020:1 5022:2 5025:1 5026:1 5028:6 5030:3 5031:1 5033:1 5036:1 5041:1 5042:2 5045:4 5046:4 5049:1 5063:1 5064:1 5066:1 5072:1 5086:1 5087:1 5090:1 5096:1 5125:3 5131:2 5133:1 5138:1 5151:1 5157:2 5176:1 5177:1 5184:3 5186:1 5190:3 5195:2 5196:1 5200:1 5203:3 5219:1 5220:1 5227:1 5237:1 5245:2 5249:6 5255:1 5280:1 5282:1 5285:1 5302:1 5306:1 5307:1 5316:1 5325:1 5328:1 5346:1 5351:3 5358:8 5362:1 5365:1 5369:2 5371:2 5386:1 5394:1 5404:2 5423:1 5429:1 5434:2 5438:2 5442:1 5444:1 5453:1 5480:1 5493:1 5494:2 5501:1 5510:1 5511:3 5524:2 5525:2 5526:1 5534:1 5535:2 5538:2 5540:2 5548:1 5551:1 5556:2 5562:1 5563:1 5564:1 5569:1 5576:1 5582:3 5584:1 5586:1 5588:1 5589:1 5593:1 5599:1 5607:1 5615:3 5629:5 5639:1 5640:1 5663:3 5678:1 5680:1 5681:4 5687:1 5694:1 5701:3 5702:1 5705:1 5718:3 5720:4 5721:1 5728:2 5744:1 5749:1 5762:1 5773:1 5785:1 5790:1 5797:1 5801:1 5802:1 5812:2 5813:1 5843:4 5850:1 5851:1 5852:1 5855:1 5868:1 5877:1 5881:2 5898:1 5920:1 5934:1 5942:1 5947:4 5949:1 5969:3 5971:1 5972:20 5987:5 5992:4 6000:1 6001:1 6005:1 6006:5 6007:1 6009:2 6017:1 6039:3 6040:1 6043:1 6053:1 6056:1 6058:1 6078:3 6102:1 6110:1 6117:1 6130:2 6137:2 6138:1 6142:1 6149:1 6150:1 6153:3 6156:1 6176:7 6178:1 6182:1 6192:1 6197:1 6199:1 6220:1 6244:1 6245:2 6247:1 6259:4 6262:1 6263:1 6264:1 6265:2 6267:1 6269:2 6270:4 6273:1 6274:3 6275:3 6276:6 6277:1 6279:2 6280:1 6282:4 6283:15 6284:5 6286:3 6316:1 6334:3 6379:4 6381:1 6383:1 6389:1 6419:1 6420:2 6426:1 6435:2 6482:3 6487:1 6490:1 6493:2 6502:1 6507:1 6513:1 6531:2 6536:3 6537:1 6542:1 6554:1 6556:1 6558:1 6565:4 6580:1 6581:1 6585:1 6589:1 6594:1 6598:1 6609:2 6613:2 6652:1 6653:2 6654:2 6661:2 6668:1 6671:3 6677:1 6679:2 6680:1 6689:1 6699:10 6715:2 6722:4 6728:1 6741:1 6744:1 6751:1 6757:1 6769:1 6772:1 6777:1 6795:1 6810:4 6811:1 6823:4 6851:1 6854:3 6855:3 6860:3 6866:1 6869:1 6871:1 6885:3 6886:2 6903:1 6906:1 6914:2 6918:1 6919:2 6922:2 6927:1 6932:1 6938:1 6939:1 6944:1 6948:2 6955:1 6973:1 6985:1 6987:1 6999:1 7009:1 7028:1 7036:1 7049:1 7050:15 7052:1 7061:1 7067:1 7073:2 7074:3 7091:1 7097:2 7099:3 7102:2 7109:1 7124:1 7125:1 7155:2 7169:1 7174:1 7180:1 7198:4 7203:1 7218:2 7234:1 7248:2 7263:3 7274:1 7278:1 7287:6 7288:1 7290:1 7297:1 7303:1 7309:1 7311:1 7319:1 7322:1 7334:6 7346:4 7347:1 7352:1 7367:2 7371:1 7382:3 7383:1 7386:2 7392:1 7401:1 7407:2 7411:1 7427:1 7463:3 7485:2 7496:1 7499:2 7510:1 7516:1 7518:1 7548:1 7554:3 7555:15 7556:8 7560:1 7568:1 7570:2 7576:1 7580:3 7582:4 7584:2 7603:5 7604:1 7620:65 7622:2 7643:9 7644:16 7645:1 7648:4 7657:1 7665:1 7667:1 7671:2 7682:1 7685:1 7686:1 7690:1 7696:1 7700:1 7710:2 7719:2 7720:4 7725:2 7734:1 7751:1 7755:1 7758:2 7773:2 7786:1 7804:1 7807:1 7826:2 7851:3 7862:1 7871:1 7874:1 7878:3 7892:1 7897:8 7928:1 7931:1 7943:1 7962:1 7967:1 7994:1 8004:1 8007:1 8032:1 8035:1 8037:1 8043:3 8044:3 8045:2 8046:1 8062:2 8063:2 8081:1 8082:1 8087:1 8093:1 8105:1 8107:2 8110:1 8116:2 8122:1 8124:2 8130:2 8131:1 8136:1 8141:1 8142:4 8145:1 8154:1 8156:13 8180:3 8184:2 8186:2 8194:1 8205:1 8230:1 8236:1 8244:2 8254:1 8270:1 8299:1 8301:2 8311:2 8319:2 8330:2 8334:1 8336:1 8340:1 8358:1 8367:5 8369:2 8376:4 8379:1 8383:3 8387:3 8394:1 8395:4 8401:1 8405:1 8412:1 8422:1 8430:5 8433:2 8438:2 8441:2 8445:1 8449:1 8460:1 8468:1 8480:1 8485:1 8490:1 8495:1 8497:1 8500:3 8501:9 8503:4 8504:1 8505:3 8508:3 8510:8 8512:3 8513:4 8514:1 8516:2 8525:3 8526:2 8536:1 8543:4 8549:2 8550:8 8559:1 8565:1 8567:3 8571:1 8572:2 8575:2 8578:2 8582:2 8586:5 8587:1 8604:2 8611:1 8639:1 8640:2 8647:1 8655:1 8657:1 8659:1 8669:1 8679:1 8683:1 8688:1 8710:1 8719:2 8725:2 8728:1 8739:1 8751:1 8756:3 8762:1 8772:2 8779:3 8801:1 8805:2 8808:1 8810:2 8811:4 8815:3 8827:3 8833:1 8840:1 8846:1 8857:1 8914:1 8915:1 8921:1 8929:1 8936:2 8950:7 8952:1 8954:2 8962:1 8967:1 8969:2 8971:1 8972:1 8992:3 9001:1 9009:1 9011:1 9019:1 9022:2 9023:1 9035:3 9040:1 9050:1 9057:1 9060:1 9065:1 9068:1 9069:1 9077:3 9107:1 9115:4 9121:1 9128:1 9130:1 9134:1 9139:3 9142:2 9145:1 9151:1 9161:2 9162:1 9166:1 9176:1 9196:1 9200:2 9204:2 9207:8 9209:1 9210:1 9213:1 9216:3 9219:1 9223:1 9226:40 9230:4 9231:2 9236:1 9246:2 9247:1 9260:2 9261:1 9264:1 9275:1 9286:4 9298:3 9305:1 9312:1 9314:1 9319:1 9329:1 9338:2 9345:1 9349:1 9360:2 9363:8 9364:1 9365:2 9382:1 9390:1 9391:1 9392:1 9421:1 9427:1 9433:5 9435:1 9437:1 9448:1 9449:1 9469:1 9490:1 9491:1 9497:1 9528:1 9529:1 9537:1 9539:1 9544:1 9555:3 9558:1 9559:1 9567:1 9568:1 9569:6 9574:1 9582:1 9585:1 9586:6 9594:2 9601:3 9608:2 9622:1 9634:2 9652:1 9663:9 9668:1 9675:1 9676:1 9677:6 9687:2 9689:2 9697:1 9700:1 9702:1 9704:2 9712:1 9713:1 9725:2 9746:3 9772:1 9780:1 9784:1 9789:1 9790:1 9815:1 9818:1 9821:1 9823:2 9829:1 9847:7 9850:1 9856:1 9862:1 9865:1 9871:4 9877:2 9878:2 9880:1 9883:2 9885:1 9887:1 9890:1 9898:4 9911:1 9913:1 9917:1 9919:1 9921:1 9923:1 9924:3 9928:3 9929:1 9932:2 9933:2 9935:1 9938:1 9939:1 9948:1 9954:1 9956:1 9960:1 9968:6 9986:1 9987:1 9996:1 10017:1 10019:2 10030:1 10037:1 10038:1 10043:1 10052:1 10057:3 10059:1 10065:1 10073:1 10094:1 10098:1 10117:1 10122:1 10124:2 10125:1 10126:1 10135:2 10157:1 10178:1 10183:1 10188:1 10191:1 10195:2 10200:1 10228:2 10234:1 10241:2 10263:2 10265:1 10266:6 10280:1 10286:2 10297:2 10302:1 10305:2 10328:2 10329:1 10347:5 10351:2 10359:2 10370:1 10372:1 10402:1 10405:1 10409:1 10414:1 10436:3 10448:1 10463:1 10470:1 10478:2 10484:2 10486:1 10488:2 10493:1 10500:2 10501:1 10504:4 10507:2 10509:1 10513:9 10521:1 10523:1 10524:1 10526:1 10533:1 10537:1 10539:3 10541:1 10550:2 10554:1 10555:3 10557:4 10558:1 10564:1 10573:3 10582:4 10583:4 10584:1 10590:2 10592:2 10593:1 10618:1 10621:1 10628:1 10639:1 10641:1 10657:7 10665:5 10677:2 10683:4 10686:15 10736:1 10737:1 10740:1 10741:1 10747:1 10748:2 10768:1 10783:4 10787:1 10790:1 10805:1 10824:1 10827:1 10835:2 10839:1 10846:1 10856:1 10857:1 10869:1 10883:1 10890:1 10901:1 10902:2 10903:4 10905:4 10909:2 10910:2 10918:1 10921:3 10931:2 10937:1 10943:2 10946:1 10947:1 10953:1 10962:1 10963:1 10969:1 10989:8 10992:1 10993:1 11005:1 11010:7 11014:1 11016:1 11018:2 11021:1 11040:1 11062:1 11063:2 11064:2 11066:1 11070:1 11071:1 11080:1 11083:1 11085:1 11086:1 11094:1 11100:1 11106:1 11107:1 11118:1 11131:1 11138:2 11145:1 11147:1 11152:1 11163:1 11166:2 11173:1 11175:1 11177:1 11188:1 11197:1 11203:5 11208:1 11216:1 11230:2 11232:1 11234:1 11248:1 11260:1 11268:2 11274:1 11278:3 11284:1 11285:1 11287:1 11300:2 11301:1 11302:2 11303:1 11308:2 11315:4 11317:1 11333:11 11341:1 11367:3 11370:14 11371:1 11385:1 11390:1 11400:2 11401:1 11407:2 11423:1 11430:2 11442:1 11444:2 11466:2 11468:1 11469:1 11470:1 11476:1 11477:2 11479:1 11481:2 11496:1 11501:1 11506:1 11509:2 11514:1 11520:3 11526:4 11530:8 11547:7 11549:1 11550:7 11580:1 11587:1 11600:2 11601:2 11603:3 11606:1 11607:1 11609:3 11611:2 11614:1 11615:2 11619:3 11620:1 11622:1 11628:1 11631:2 11632:3 11633:1 11636:2 11641:3 11645:1 11649:1 11664:7 11666:2 11671:1 11684:8 11690:2 11693:1 11696:1 11710:1 11711:2 11716:1 11727:1 11734:1 11755:1 11772:2 11789:2 11801:1 11824:2 11826:1 11852:1 11858:1 11865:5 11871:1 11877:4 11882:1 11891:1 11908:1 11916:1 11924:1 11931:3 11936:5 11938:1 11952:1 11973:5 11977:1 11990:2 11997:1 12004:1 12005:1 12010:1 12025:1 12045:1 12058:1 12076:2 12082:1 12085:1 12100:1 12107:1 12109:1 12110:3 12111:4 12115:2 12124:1 12125:2 12132:1 12141:2 12142:1 12154:1 12156:2 12160:1 12165:4 12166:5 12172:3 12176:1 12178:2 12184:2 12206:1 12219:1 12239:1 12243:1 12250:1 12263:1 12272:1 12276:2 12281:10 12297:1 12302:2 12318:1 12323:3 12328:1 12337:1 12338:1 12345:1 12346:1 12349:2 12361:3 12362:2 12365:1 12376:2 12380:2 12398:2 12405:1 12420:1 12423:4 12431:3 12435:1 12457:1 12458:1 12464:1 12468:1 12472:1 12476:1 12477:7 12480:1 12491:1 12493:1 12495:1 12508:1 12512:1 12515:1 12526:2 12534:1 12586:1 12593:2 12608:8 12621:1 12633:1 12635:1 12636:1 12644:1 12648:19 12654:1 12656:1 12658:1 12668:3 12671:7 12676:1 12681:2 12701:1 12702:1 12708:4 12733:2 12752:1 12764:1 12769:7 12772:2 12782:1 12787:1 12789:1 12790:1 12791:1 12796:3 12797:1 12813:2 12827:5 12830:1 12831:1 12835:1 12837:1 12860:1 12861:1 12885:1 12888:1 12914:1 12948:1 12949:7 12954:1 12960:1 12984:1 12989:1 12999:1 13042:2 13045:8 13049:1 13062:1 13066:4 13068:1 13070:1 13072:1 13076:8 13080:4 13086:1 13087:1 13093:2 13094:6 13120:1 13128:2 13131:1 13133:1 13142:2 13143:1 13144:1 13166:5 13170:1 13188:2 13194:1 13206:2 13211:2 13213:1 13215:1 13222:1 13224:8 13225:1 13231:1 13232:6 13233:2 13244:1 13250:1 13251:1 13252:2 13257:2 13263:2 13275:3 13278:1 13282:1 13283:1 13287:1 13301:2 13302:7 13306:1 13310:1 13320:3 13331:1 13341:2 13346:2 13364:2 13372:7 13376:1 13396:1 13401:1 13416:4 13420:1 13421:6 13440:1 13454:2 13468:4 13473:1 13488:1 13490:1 13503:1 13506:1 13520:2 13524:1 13533:1 13556:1 13557:3 13561:2 13570:2 13571:1 13592:1 13599:7 13600:1 13601:2 13606:6 13607:2 13610:2 13614:1 13619:1 13620:1 13628:1 13633:1 13637:1 13654:5 13674:1 13680:3 13691:2 13694:2 13697:1 13698:1 13723:1 13730:1 13733:8 13745:1 13764:4 13779:3 13782:1 13784:1 13788:2 13799:1 13802:1 13813:1 13827:7 13832:3 13833:1 13838:2 13847:2 13869:2 13883:1 13886:1 13895:1 13904:5 13931:11 13942:1 13963:1 13974:1 13980:2 13986:1 13987:2 14006:1 14007:2 14018:1 14024:1 14029:1 14036:2 14054:3 14076:7 14086:2 14089:1 14107:3 14114:1 14119:1 14126:1 14134:1 14140:1 14152:1 14161:1 14170:1 14179:4 14180:1 14181:1 14196:1 14212:1 14221:1 14223:1 14234:1 14235:1 14245:1 14255:1 14266:3 14274:2 14284:2 14295:1 14297:1 14299:3 14312:4 14313:1 14317:4 14318:9 14324:1 14325:8 14335:5 14339:3 14340:2 14347:1 14358:1 14360:1 14361:1 14376:1 14385:1 14427:2 14433:1 14434:1 14442:1 14449:5 14476:1 14482:3 14485:1 14489:2 14490:2 14492:1 14493:4 14498:4 14502:1 14507:1 14514:2 14523:1 14532:1 14533:3 14537:1 14551:1 14554:1 14573:1 14587:1 14591:4 14600:3 14614:2 14616:3 14623:2 14624:1 14629:2 14636:2 14637:2 14647:6 14650:1 14664:3 14674:2 14677:1 14683:2 14694:1 14700:1 14701:1 14725:1 14728:1 14761:1 14775:1 14780:1 14785:2 14798:1 14803:2 14820:4 14821:1 14823:2 14824:1 14836:1 14837:2 14839:1 14881:2 14883:1 14891:11 14893:1 14910:3 14912:2 14915:1 14916:3 14923:1 14935:1 14936:11 14938:3 14961:2 14970:2 14984:2 14986:1 14987:1 14995:1 14999:1 15000:1 15020:8 15022:1 15024:1 15030:1 15037:1 15055:2 15071:1 15085:1 15109:1 15117:1 15123:6 15125:1 15129:1 15130:1 15134:1 15144:1 15145:1 15146:2 15152:1 15158:2 15160:1 15172:1 15173:1 15177:2 15178:1 15180:1 15186:1 15207:1 15217:1 15220:1 15223:1 15231:1 15233:1 15238:1 15241:1 15244:1 15245:3 15247:1 15251:1 15259:2 15275:1 15282:1 15301:2 15309:1 15322:1 15332:13 15338:2 15345:2 15380:1 15385:4 15395:1 15398:1 15403:1 15404:5 15414:6 15420:1 15424:1 15431:1 15435:1 15436:1 15440:1 15453:2 15455:1 15459:2 15471:1 15482:2 15496:1 15508:1 15509:1 15512:1 15527:1 15539:1 15556:1 15563:6 15568:2 15571:1 15578:13 15581:4 15590:2 15591:3 15595:1 15598:1 15607:2 15614:5 15622:2 15624:1 15625:9 15626:4 15631:1 15637:1 15642:1 15644:1 15678:1 15679:2 15687:2 15706:1 15710:1 15711:1 15715:1 15717:2 15724:1 15725:4 15742:1 15745:10 15750:1 15755:1 15757:2 15763:2 15767:1 15768:1 15777:1 15785:3 15814:2 15823:1 15831:6 15832:3 15835:1 15837:1 15839:1 15871:1 15877:1 15879:7 15893:1 15896:1 15906:1 15909:7 15911:3 15913:1 15923:2 15957:2 15967:1 15973:4 16002:2 16008:1 16014:1 16015:1 16018:1 16026:1 16029:19 16030:1 16034:2 16048:5 16050:2 16051:2 16055:1 16056:2 16067:1 16084:1 16095:2 16103:1 16119:8 16122:1 16127:1 16137:2 16146:1 16147:1 16149:1 16150:1 16151:1 16152:1 16154:1 16163:1 16164:1 16170:2 16172:1 16177:3 16181:1 16190:2 16194:1 16196:1 16237:1 16242:4 16270:1 16285:5 16288:1 16289:1 16290:2 16310:1 16329:1 16334:1 16336:1 16338:1 16353:1 16363:1 16383:1 16393:1 16398:1 16400:1 16403:6 16434:2 16475:1 16482:1 16488:1 16489:1 16505:1 16511:1 16513:1 16527:1 16528:1 16542:1 16543:1 16546:1 16554:1 16555:4 16573:1 16575:1 16588:1 16589:1 16597:1 16604:2 16605:1 16608:1 16614:1 16639:1 16646:1 16655:1 16662:1 16666:3 16669:1 16672:1 16675:2 16685:4 16697:1 16702:1 16707:2 16708:1 16710:1 16714:3 16716:3 16718:1 16727:1 16738:1 16747:1 16758:1 16759:1 16761:1 16763:1 16776:1 16787:1 16789:3 16801:1 16802:1 16804:1 16826:1 16828:1 16830:1 16840:5 16843:2 16844:6 16851:1 16867:1 16872:1 16874:1 16883:1 16899:1 16905:1 16908:1 16915:8 16929:2 16930:1 16932:5 16939:1 16942:1 16947:2 16966:5 16974:1 16977:5 16990:1 16991:1 16995:2 17010:1 17013:2 17015:1 17036:1 17042:1 17046:2 17050:2 17053:2 17059:6 17064:1 17067:2 17087:1 17091:7 17092:1 17106:1 17107:2 17110:1 17121:1 17136:3 17138:2 17155:5 17156:3 17167:1 17172:1 17179:1 17181:2 17186:3 17187:3 17198:3 17199:7 17200:1 17207:4 17210:1 17212:1 17244:1 17247:1 17251:1 17265:1 17270:2 17277:2 17281:1 17327:1 17342:1 17343:1 17345:2 17346:1 17360:1 17363:4 17369:2 17373:1 17374:2 17397:1 17401:1 17417:1 17421:1 17422:2 17442:1 17445:2 17447:4 17448:3 17454:6 17455:1 17456:1 17463:7 17468:2 17475:3 17476:2 17477:1 17509:1 17511:2 17522:5 17523:4 17538:1 17555:1 17558:2 17560:3 17575:1 17585:2 17587:1 17592:7 17597:1 17598:1 17604:2 17605:1 17606:1 17631:1 17636:1 17644:2 17647:2 17648:2 17652:1 17655:2 17656:1 17662:1 17664:3 17665:5 17667:1 17669:1 17670:1 17674:1 17681:1 17683:4 17684:2 17687:1 17691:1 17692:1 17698:1 17699:1 17707:1 17721:1 17722:3 17747:1 17753:2 17764:1 17766:2 17767:9 17772:4 17778:1 17781:39 17783:1 17785:1 17787:1 17790:2 17794:1 17803:1 17812:5 17819:1 17822:1 17831:1 17838:1 17845:1 17852:1 17855:1 17860:3 17867:1 17871:1 17872:5 17873:1 17875:1 17882:1 17886:1 17896:6 17902:1 17907:1 17922:1 17931:5 17962:1 17967:1 17977:4 17979:1 17987:1 17989:1 17990:1 17992:1 17994:2 17998:2 18007:5 18009:1 18011:2 18019:1 18032:3 18041:1 18045:1 18056:2 18058:1 18067:1 18080:1 18084:1 18098:1 18114:1 18117:1 18120:1 18131:1 18133:1 18142:1 18150:2 18152:3 18167:1 18169:2 18170:1 18178:1 18184:1 18212:3 18219:5 18220:1 18239:1 18249:3 18280:1 18288:1 18315:5 18323:1 18331:1 18340:1 18348:2 18357:1 18380:2 18381:3 18382:3 18390:1 18399:2 18410:1 18417:9 18424:1 18435:1 18444:1 18449:1 18459:1 18461:1 18465:1 18470:1 18471:3 18476:2 18478:5 18479:1 18481:1 18495:1 18498:1 18499:1 18504:5 18509:3 18512:3 18516:1 18519:2804 18524:1 18534:1 18538:1 18572:4 18573:1 18582:3 18590:1 18607:2 18608:1 18619:1 18624:1 18643:2 18648:2 18657:1 18668:2 18684:2 18690:1 18691:1 18702:1 18708:4 18715:7 18720:1 18725:5 18727:4 18728:5 18731:1 18743:1 18748:2 18763:1 18792:2 18799:1 18802:8 18808:2 18810:2 18814:1 18816:1 18840:1 18842:40 18850:1 18861:1 18863:7 18898:1 18904:1 18907:1 18915:1 18919:1 18920:1 18927:1 18930:2 18938:1 18947:1 18950:1 18968:1 18969:1 18971:1 18982:2 18991:5 19007:1 19008:2 19017:4 19033:2 19055:3 19061:1 19065:1 19079:1 19089:1 19091:1 19110:2 19113:1 19121:1 19135:2 19140:2 19142:4 19168:2 19172:1 19174:4 19176:4 19180:1 19187:1 19190:4 19192:3 19193:1 19197:4 19202:1 19210:1 19218:1 19228:7 19235:1 19239:1 19256:2 19257:2 19271:2 19273:1 19277:2 19289:2 19291:1 19293:5 19298:14 19314:1 19315:1 19335:8 19336:1 19345:1 19348:1 19350:2 19353:1 19359:1 19370:1 19400:1 19412:2 19414:1 19420:3 19422:1 19442:2 19475:1 19482:1 19486:1 19489:1 19494:2 19497:1 19507:5 19508:1 19511:1 19513:1 19515:3 19516:2 19531:3 19534:1 19549:1 19550:5 19551:1 19557:1 19563:3 19566:1 19567:1 19573:1 19592:2 19600:1 19605:1 19628:2 19632:1 19634:2 19661:3 19674:1 19680:1 19708:3 19719:1 19720:1 19724:1 19732:2 19735:4 19740:1 19742:1 19745:1 19751:1 19752:1 19754:1 19767:2 19771:5 19775:8 19777:1 19778:3 19784:5 19794:1 19797:2 19807:1 19816:1 19818:1 19829:1 19833:1 19839:3 19859:1 19862:1 19876:2 19881:3 19883:1 19904:2 19909:5 19918:2 19932:1 19936:2 19942:1 19948:1 19949:5 19953:1 19964:1 19966:1 19978:5 19979:1 19992:1 19996:1 20001:2 20003:2 20004:2 20007:1 20017:1 20020:1 20031:2 20032:1 20036:1 20037:1 20052:2 20053:1 20061:5 20068:1 20074:1 20079:1 20084:3 20086:1 20094:3 20103:1 20117:2 20118:2 20137:2 20159:6 20170:1 20175:1 20187:1 20211:10 20212:3 20218:6 20226:2 20231:1 20237:1 20238:1 20272:1 20276:1 20281:1 20283:3 20293:2 20299:1 20302:1 20313:1 20329:1 20337:1 20345:1 20362:1 20373:1 20395:1 20400:1 20401:1 20404:3 20406:4 20408:1 20412:1 20420:1 20422:1 20428:1 20443:1 20453:1 20454:1 20455:9 20465:2 20466:1 20467:1 20468:4 20474:2 20495:1 20525:1 20530:1 20531:3 20532:1 20542:1 20545:1 20547:2 20567:4 20575:1 20577:1 20594:1 20599:1 20600:1 20601:1 20604:1 20626:2 20631:2 20639:1 20643:2 20644:1 20652:1 20653:1 20656:1 20658:5 20671:1 20672:1 20677:4 20679:2 20682:1 20683:1 20685:2 20686:1 20692:1 20697:1 20701:1 20705:7 20710:1 20715:1 20716:1 20721:3 20722:4 20730:1 20734:1 20738:1 20747:7 20756:1 20770:1 20775:2 20780:2 20781:1 20782:3 20783:1 20797:3 20798:1 20823:3 20833:1 20846:1 20857:1 20862:1 20900:2 20907:2 20910:1 20918:1 20925:1 20945:1 20948:2 20957:2 20979:8 20985:1 20986:1 20988:1 20990:1 20992:1 20997:1 21010:2 21016:1 21019:2 21029:1 21049:2 21062:2 21075:1 21079:1 21080:1 21085:1 21088:1 21091:2 21100:1 21107:1 21118:1 21122:1 21137:3 21142:2 21144:1 21158:1 21159:1 21165:1 21169:3 21174:1 21193:1 21196:1 21198:2 21200:1 21201:1 21211:1 21248:1 21250:1 21257:2 21265:1 21276:2 21284:2 21285:1 21288:1 21289:1 21313:1 21320:1 21332:1 21339:1 21345:1 21357:1 21358:3 21359:1 21371:6 21372:1 21373:1 21374:2 21380:2 21381:2 21386:4 21387:3 21389:2 21392:1 21397:1 21405:1 21406:1 21407:1 21409:1 21410:1 21415:3 21434:1 21440:1 21442:2 21444:3 21448:1 21459:1 21472:4 21486:1 21488:2 21490:2 21493:1 21498:4 21499:2 21502:1 21503:2 21504:1 21506:1 21509:4 21518:2 21519:1 21520:1 21523:2 21528:1 21538:1 21544:1 21548:11 21551:1 21567:1 21568:2 21569:5 21580:2 21599:1 21616:1 21634:2 21647:2 21648:1 21654:2 21661:1 21663:4 21664:1 21670:1 21675:11 21680:1 21681:1 21684:2 21691:1 21695:3 21705:1 21712:1 21714:3 21715:1 21724:1 21742:1 21750:2 21770:1 21771:1 21772:1 21778:1 21804:1 21806:2 21809:1 21811:1 21812:7 21822:1 21824:1 21826:1 21827:2 21829:2 21830:1 21838:1 21845:1 21846:6 21847:1 21848:3 21862:1 21867:2 21870:1 21877:2 21885:1 21901:2 21916:2 21919:1 21931:1 21937:3 21941:1 21952:1 21967:1 21971:1 21975:1 21994:3 21999:1 22009:5 22012:2 22016:4 22017:3 22020:1 22021:2 22025:2 22029:1 22036:1 22051:1 22052:1 22059:3 22061:1 22065:3 22077:2 22080:2 22096:3 22115:1 22132:1 22135:1 22144:1 22147:3 22150:3 22160:1 22173:5 22174:6 22178:3 22179:1 22180:2 22181:1 22184:1 22189:3 22190:1 22205:1 22212:2 22222:1 22223:5 22230:1 22236:1 22239:2 22243:3 22248:3 22252:3 22257:2 22258:5 22265:1 22277:2 22286:1 22290:1 22291:1 22293:1 22294:3 22295:1 22302:1 22307:1 22315:2 22318:1 22329:2 22331:1 22332:1 22336:1 22337:1 22342:2 22345:3 22349:1 22357:1 22362:4 22368:1 22390:1 22391:9 22392:1 22401:1 22403:1 22406:2 22412:1 22414:39 22419:1 22420:4 22422:4 22425:2 22426:3 22427:5 22430:1 22432:1 22434:2 22451:1 22453:4 22455:1 22461:1 22464:3 22467:1 22473:3 22493:3 22495:2 22496:1 22507:3 22510:1 22529:3 22538:1 22542:1 22547:1 22579:6 22581:1 22585:1 22593:11 22599:3 22616:3 22621:2 22634:1 22646:1 22672:1 22674:2 22675:1 22676:3 22679:1 22680:1 22687:1 22691:3 22692:1 22695:1 22699:2 22705:1 22706:1 22721:4 22726:2 22734:1 22736:1 22737:1 22758:1 22776:1 22777:3 22782:1 22784:1 22788:1 22808:1 22837:1 22848:1 22866:1 22867:1 22878:1 22886:2 22896:2 22902:1 22917:1 22919:1 22921:1 22931:2 22935:1 22947:2 22948:2 22955:1 22962:2 22964:1 22965:2 22971:2 22980:3 22981:1 22982:1 22998:3 23001:5 23021:3 23024:1 23027:1 23033:3 23038:1 23043:1 23057:1 23060:1 23069:1 23072:1 23099:1 23130:3 23143:1 23148:1 23161:1 23165:2 23175:1 23184:3 23188:3 23195:1 23196:1 23207:3 23227:2 23234:3 23235:1 23239:1 23241:2 23248:1 23254:1 23261:1 23275:2 23283:3 23297:1 23299:5 23302:1 23305:1 23310:3 23313:2 23326:2 23340:1 23343:1 23349:1 23351:2 23352:1 23361:13 23368:1 23394:2 23403:1 23408:1 23420:1 23437:2 23439:1 23441:1 23452:2 23467:1 23482:3 23488:2 23494:2 23504:1 23519:1 23520:1 23527:1 23532:6 23545:1 23558:1 23559:2 23568:1 23581:1 23591:1 23592:1 23597:1 23600:4 23604:1 23616:11 23618:2 23620:1 23635:7 23645:1 23647:1 23651:1 23659:2 23667:1 23711:1 23716:1 23720:1 23722:1 23732:3 23736:2 23744:1 23749:2 23758:2 23774:1 23779:1 23785:1 23798:1 23801:2 23806:1 23814:1 23831:1 23832:1 23842:1 23874:1 23875:4 23884:6 23885:1 23886:1 23896:4 23899:1 23910:2 23912:1 23918:2 23919:1 23920:1 23928:1 23932:1 23939:2 23941:2 23966:3 23967:1 23973:1 23979:1 23992:1 23994:3 23995:2 23996:1 24001:1 24025:4 24030:1 24044:1 24047:3 24052:2 24057:2 24058:3 24059:1 24064:1 24068:1 24073:1 24084:1 24093:1 24098:1 24101:1 24114:1 24124:1 24146:1 24148:1 24150:3 24156:1 24159:2 24160:1 24162:8 24164:3 24165:1 24166:4 24167:2 24171:1 24172:2 24174:2 24175:5 24182:2 24183:4 24187:2 24193:2 24206:6 24213:2 24220:1 24233:1 24236:3 24237:1 24242:1 24247:3 24258:1 24263:7 24267:3 24291:2 24295:1 24297:1 24306:1 24307:3 24321:1 24324:1 24326:1 24342:1 24345:1 24347:1 24348:3 24362:1 24390:1 24401:1 24402:1 24419:3 24440:4 24448:1 24450:6 24453:1 24464:3 24466:1 24470:1 24477:1 24496:1 24499:1 24508:1 24512:2 24513:1 24521:1 24524:1 24531:1 24547:3 24548:1 24549:1 24558:1 24571:1 24582:2 24584:2 24609:2 24623:1 24626:1 24630:3 24640:1 24645:1 24648:1 24654:1 24658:2 24665:2 24707:7 24746:1 24757:2 24761:1 24763:2 24772:1 24780:1 24783:4 24791:1 24793:1 24797:2 24810:1 24816:1 24822:4 24876:1 24878:1 24899:1 24900:2 24912:4 24915:8 24946:13 24955:1 24969:10 24976:1 24977:1 24990:1 24997:1 25005:1 25015:2 25019:1 25028:1 25038:2 25041:1 25042:1 25045:1 25046:1 25047:1 25066:1 25071:2 25085:1 25089:1 25093:2 25095:1 25099:2 25104:1 25109:1 25111:2 25114:6 25122:1 25137:2 25139:2 25141:12 25144:5 25145:2 25155:1 25162:1 25167:2 25168:1 25170:1 25177:2 25182:2 25186:2 25214:2 25219:1 25225:5 25230:1 25240:1 25247:4 25248:1 25258:2 25259:2 25308:1 25319:2 25320:1 25335:1 25342:1 25345:1 25346:1 25356:1 25361:1 25363:1 25384:3 25386:1 25400:1 25401:1 25410:1 25412:4 25413:1 25416:2 25417:1 25425:1 25436:6 25444:1 25465:1 25468:1 25473:1 25474:1 25479:2 25488:1 25492:1 25506:1 25515:1 25557:3 25561:1 25569:1 25576:4 25590:1 25600:1 25618:1 25626:1 25657:1 25663:1 25665:1 25676:1 25679:3 25680:2 25687:1 25691:1 25698:1 25699:1 25700:1 25701:1 25708:2 25718:2 25726:1 25729:1 25742:1 25752:1 25757:1 25759:2 25781:1 25786:2 25796:5 25804:1 25812:1 25816:2 25826:1 25829:1 25835:2 25838:5 25850:1 25859:1 25864:2 25865:5 25880:2 25882:1 25901:1 25903:1 25906:2 25910:1 25916:2 25929:1 25930:1 25936:3 25943:1 25953:2 25971:2 25988:1 25992:7 25994:1 26018:1 26021:9 26024:1 26027:1 26033:1 26038:1 26040:1 26042:1 26059:2 26074:1 26087:1 26088:1 26093:4 26107:1 26112:2 26113:4 26114:1 26118:1 26122:1 26123:1 26127:3 26128:3 26133:1 26162:1 26166:5 26170:1 26175:1 26182:1 26185:1 26188:1 26190:2 26193:1 26213:3 26221:2 26222:1 26225:2 26247:2 26249:2 26261:2 26262:1 26267:1 26278:1 26285:1 26290:3 26300:1 26307:1 26309:2 26316:1 26332:2 26337:1 26338:1 26339:1 26341:1 26352:1 26366:1 26368:3 26373:5 26392:2 26397:1 26430:1 26453:1 26461:1 26474:1 26476:1 26478:1 26479:1 26482:1 26499:1 26504:1 26524:2 26526:2 26532:2 26542:1 26547:2 26548:1 26551:1 26556:1 26559:3 26566:1 26569:1 26571:1 26574:2 26582:1 26588:2 26592:1 26599:1 26611:1 26618:1 26619:1 26621:1 26622:1 26624:1 26631:1 26641:2 26654:2 26657:2 26658:1 26662:1 26667:6 26681:4 26700:6 26707:1 26709:5 26710:1 26721:1 26723:2 26724:1 26736:1 26737:1 26743:1 26759:5 26772:2 26778:1 26787:1 26788:11 26807:1 26817:1 26838:1 26840:2 26844:1 26845:2 26847:1 26848:3 26850:1 26856:13 26866:1 26890:1 26894:6 26920:1 26933:2 26934:1 26938:1 26954:2 26960:8 26965:2 26966:1 26967:3 26981:1 26982:1 26985:2 26988:1 26994:4 27003:1 27006:1 27016:3 27022:1 27033:1 27036:1 27052:1 27054:1 27057:1 27058:3 27061:1 27064:1 27069:2 27070:1 27079:1 27090:3 27103:2 27108:1 27113:1 27122:1 27135:2 27136:1 27141:2 27143:1 27145:1 27147:1 27149:2 27160:2 27169:1 27177:1 27187:2 27188:1 27207:1 27229:1 27247:1 27275:1 27279:1 27297:1 27298:1 27330:1 27332:1 27340:1 27342:2 27365:6 27368:1 27369:2 27376:1 27385:1 27392:1 27408:1 27412:1 27419:1 27422:2 27447:1 27454:1 27465:1 27472:1 27474:1 27481:2 27500:1 27517:1 27518:1 27536:3 27549:1 27560:1 27563:7 27575:1 27579:1 27595:1 27597:4 27603:1 27612:1 27620:1 27627:2 27636:1 27647:2 27658:1 27661:1 27662:1 27673:1 27674:1 27675:2 27678:1 27682:2 27687:35 27689:4 27692:5 27694:1 27695:3 27702:2 27707:1 27724:11 27733:1 27739:1 27777:3 27789:2 27804:1 27808:2 27820:1 27821:5 27832:7 27838:2 27859:14 27863:2 27867:4 27869:2 27874:2 27878:1 27879:4 27885:1 27887:1 27889:1 27893:2 27897:1 27900:2 27906:2 27907:2 27909:1 27917:2 27923:2 27930:1 27934:3 27935:2 27943:1 27946:1 27948:4 27951:1 27955:1 27960:1 27961:1 27964:1 27968:1 27969:3 27975:1 27989:1 28003:1 28011:2 28019:1 28028:2 28030:1 28031:1 28041:1 28046:1 28050:1 28051:1 28054:2 28058:1 28068:5 28075:1 28082:2 28100:1 28101:1 28102:2 28118:1 28126:1 28127:2 28128:3 28131:1 28143:1 28160:1 28169:1 28174:1 28177:1 28178:1 28180:1 28183:3 28187:6 28191:2 28193:1 28196:1 28197:2 28202:1 28203:1 28204:1 28208:2 28209:1 28214:2 28215:1 28217:1 28218:1 28223:1 28230:1 28244:1 28264:1 28268:1 28286:1 28292:1 28315:1 28319:2 28320:1 28326:3 28341:1 28350:1 28356:1 28359:2 28362:2 28363:2 28367:1 28373:2 28375:3 28378:1 28380:1 28387:1 28397:8 28404:2 28405:2 28409:1 28411:10 28413:1 28417:1 28419:1 28421:1 28445:1 28461:1 28469:2 28470:1 28506:3 28511:1 28514:1 28520:1 28536:4 28541:1 28543:3 28551:1 28553:1 28560:6 28565:1 28569:1 28594:1 28596:1 28626:1 28627:1 28635:1 28646:3 28648:1 28665:2 28681:2 28685:5 28703:2 28709:2 28724:1 28728:1 28734:1 28748:2 28752:1 28754:2 28761:2 28772:1 28792:1 28801:7 28815:1 28816:1 28818:1 28831:1 28836:7 28849:6 28850:1 28867:1 28893:1 28904:1 28912:1 28913:8 28914:3 28916:4 28919:1 28921:2 28924:3 28925:3 28941:1 28947:1 28958:2 28959:4 28961:3 28963:3 29001:1 29003:1
9 11:1 14:2 18:1 24:1 28:1 34:1 37:7 45:1 56:1 60:1 63:1 65:1 74:1 79:1 82:1 83:1 86:1 89:1 90:1 103:1 109:1 113:1 117:1 125:1 133:2 143:1 150:1 153:3 162:1 169:1 170:5 186:1 189:8 192:1 203:1 214:1 217:1 240:2 245:1 270:1 275:2 282:2 286:1 293:1 295:40 303:2 315:1 316:5 318:5 320:2 326:1 333:1 348:4 350:1 352:1 354:1 358:1 363:2 381:1 403:2 424:4 432:2 433:1 437:1 438:1 442:1 444:1 456:1 460:1 463:1 510:1 515:1 523:1 561:2 563:5 564:1 569:2 572:4 590:4 596:2 598:2 600:1 613:2 626:1 634:4 638:1 643:3 650:1 674:1 678:3 685:1 692:1 695:1 702:2 716:1 728:1 734:2 735:1 748:1 749:1 752:1 759:1 767:3 770:1 788:2 795:1 804:1 805:1 807:2 808:1 814:1 828:1 830:10 832:3 842:3 843:1 855:1 856:17 858:1 860:1 867:1 871:1 875:2 876:1 877:6 878:1 879:9 881:1 885:4 887:1 889:1 892:1 893:1 899:1 900:1 905:4 916:1 924:2 925:3 941:1 963:1 964:1 974:3 989:1 996:6 998:2 1002:2 1011:1 1019:1 1020:2 1027:1 1028:1 1038:1 1045:1 1046:1 1059:1 1061:2 1078:1 1086:1 1087:1 1089:2 1092:2 1104:3 1112:2 1117:1 1123:2 1136:1 1137:1 1143:2 1148:3 1152:1 1157:1 1160:1 1163:1 1176:1 1179:1 1189:1 1199:1 1200:1 1207:2 1228:1 1230:1 1231:2 1232:2 1241:2 1244:2 1248:1 1253:1 1257:2 1262:1 1276:1 1284:1 1287:1 1300:2 1306:1 1313:1 1330:1 1345:1 1353:1 1355:3 1369:1 1371:1 1374:2 1376:1 1394:1 1397:2 1400:6 1401:10 1402:1 1417:2 1418:1 1419:3 1420:2 1422:3 1423:2 1438:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:1 1506:2 1507:1 1508:1 1512:1 1516:8 1518:1 1543:2 1547:1 1555:2 1557:1 1560:1 1562:3 1564:3 1571:1 1574:1 1575:1 1578:2 1596:6 1598:1 1602:2 1617:1 1619:3 1627:6 1634:2 1659:1 1660:1 1677:2 1678:2 1682:1 1693:1 1699:1 1709:1 1743:4 1757:1 1760:1 1762:2 1778:4 1789:1 1794:1 1802:2 1811:1 1819:1 1826:1 1828:1 1830:2 1831:2 1838:1 1850:1 1875:1 1876:1 1888:1 1889:1 1892:2 1895:19 1903:1 1907:2 1919:2 1923:1 1929:1 1933:1 1935:1 1936:1 1952:1 1954:1 1962:9 1963:1 1965:2 1993:1 1998:1 2006:3 2011:4 2017:2 2045:1 2048:3 2051:1 2062:1 2065:1 2072:2 2082:1 2085:1 2089:3 2095:2 2100:1 2101:1 2105:1 2108:1 2124:1 2132:1 2142:1 2150:1 2152:1 2153:1 2154:2 2156:1 2158:2 2159:6 2160:1 2162:2 2165:1 2167:2 2172:1 2174:5 2177:5 2178:2 2179:5 2180:1 2181:1 2187:1 2190:4 2191:1 2207:1 2212:1 2215:5 2216:2 2219:3 2220:2 2221:9 2223:5 2226:2 2227:2 2228:5 2232:1 2233:1 2234:1 2237:3 2239:1 2245:2 2247:2 2249:2 2251:6 2252:2 2253:9 2264:1 2268:2 2269:1 2279:2 2297:1 2308:1 2309:2 2310:2 2315:1 2322:1 2336:1 2339:1 2343:1 2345:1 2347:1 2358:4 2370:5 2371:1 2374:1 2376:1 2384:2 2387:1 2392:2 2410:5 2421:10 2433:1 2439:1 2445:1 2461:1 2463:1 2465:1 2473:1 2477:1 2485:5 2494:7 2500:1 2513:1 2520:1 2522:3 2536:2 2543:4 2552:3 2554:1 2561:2 2563:1 2570:1 2580:2 2586:1 2609:2 2631:1 2635:1 2641:1 2648:2 2651:4 2656:1 2659:1 2667:2 2670:1 2672:1 2675:1 2676:2 2683:2 2688:1 2691:1 2704:1 2708:3 2712:1 2713:1 2723:1 2730:3 2745:1 2756:1 2760:1 2761:2 2762:1 2766:7 2770:4 2775:6 2780:1 2781:1 2782:1 2810:1 2813:3 2816:2 2818:2 2826:3 2836:2 2851:1 2854:8 2857:2 2867:28 2870:1 2883:4 2888:1 2900:2 2909:1 2915:1 2918:1 2923:1 2931:1 2936:16 2951:1 2954:1 2961:6 2965:9 2966:1 2968:1 2969:1 2972:1 2989:1 3013:1 3015:1 3017:1 3023:1 3026:2 3027:1 3030:1 3059:1 3068:1 3074:4 3075:1 3089:1 3097:1 3105:1 3106:2 3107:1 3112:1 3135:1 3141:1 3166:1 3188:2 3197:1 3205:1 3216:1 3224:2 3231:1 3232:6 3237:1 3241:2 3243:2 3248:1 3255:1 3256:1 3266:1 3271:1 3272:1 3279:1 3283:1 3293:1 3295:6 3314:1 3318:1 3338:1 3352:2 3357:14 3397:1 3407:1 3413:1 3420:2 3424:2 3433:1 3453:1 3459:1 3468:1 3471:1 3472:2 3475:2 3478:1 3488:1 3489:2 3495:2 3509:1 3517:2 3526:1 3528:1 3540:2 3548:1 3554:1 3558:1 3570:4 3574:1 3575:1 3577:1 3580:2 3582:8 3598:1 3599:7 3604:2 3605:2 3606:1 3607:6 3608:2 3615:1 3619:1 3634:2 3638:1 3639:6 3647:1 3648:1 3665:1 3669:1 3680:1 3684:1 3687:3 3688:3 3692:1 3694:1 3695:2 3698:3 3712:1 3730:1 3737:1 3740:1 3742:4 3744:1 3746:2 3748:15 3751:1 3763:1 3770:1 3779:1 3783:5 3784:1 3788:2 3789:13 3790:4 3792:1 3796:2 3810:3 3813:7 3817:1 3822:1 3835:1 3836:4 3838:1 3844:1 3846:1 3848:1 3851:1 3862:1 3866:1 3873:1 3874:1 3876:1 3879:1 3883:1 3888:2 3895:1 3902:4 3904:3 3918:2 3919:2 3921:1 3931:1 3934:1 3939:3 3940:1 3943:3 3948:3 3953:1 3955:1 3964:6 3970:1 3972:1 3977:2 3978:2 3982:2 3983:1 3987:1 3988:3 3989:2 3998:5 3999:5 4005:1 4019:1 4020:1 4031:1 4033:1 4040:1 4051:1 4054:2 4063:1 4069:2 4078:6 4085:2 4086:1 4093:1 4112:1 4113:1 4124:1 4125:1 4129:1 4136:1 4137:1 4173:1 4190:7 4193:2 4201:1 4202:1 4204:1 4208:1 4210:1 4219:1 4234:1 4254:1 4256:1 4263:1 4270:2 4272:2 4282:1 4296:1 4298:3 4306:1 4313:1 4314:2 4343:1 4348:2 4352:1 4355:2 4357:1 4362:5 4378:1 4385:1 4414:1 4416:1 4427:1 4428:4 4434:1 4439:2 4455:1 4470:1 4478:1 4491:1 4494:2 4508:1 4521:1 4528:2 4535:2 4549:1 4554:1 4556:1 4560:1 4562:1 4565:1 4575:1 4583:3 4585:2 4605:1 4613:1 4619:3 4623:1 4626:5 4640:1 4646:4 4649:1 4657:2 4658:1 4660:1 4676:2 4678:1 4691:1 4695:8 4713:1 4724:1 4731:1 4742:1 4746:1 4751:1 4759:1 4768:1 4773:8 4776:1 4778:1 4783:1 4787:2 4788:2 4803:3 4807:1 4810:1 4815:1 4818:1 4851:3 4867:1 4876:31 4878:4 4881:1 4895:3 4900:1 4903:1 4909:4 4917:1 4925:2 4928:7 4940:2 4963:2 4964:3 4969:1 4980:1 4981:1 4984:1 4985:7 5003:5 5005:8 5006:1 5008:1 5009:1 5011:1 5013:5 5014:2 5015:1 5017:4 5020:1 5022:2 5025:2 5026:1 5028:6 5030:3 5031:1 5033:1 5036:1 5041:1 5042:2 5045:4 5046:4 5049:1 5063:1 5064:1 5066:1 5072:1 5086:1 5087:1 5090:1 5096:1 5125:3 5131:2 5133:1 5138:1 5151:1 5157:2 5176:1 5177:1 5184:3 5186:1 5190:3 5195:2 5196:1 5200:1 5203:3 5219:1 5220:1 5227:1 5237:1 5245:2 5249:6 5255:1 5280:1 5282:1 5285:1 5302:1 5306:1 5307:1 5316:1 5325:1 5328:1 5346:1 5351:3 5358:8 5362:1 5365:1 5369:2 5371:3 5386:2 5394:1 5404:2 5423:1 5429:1 5434:2 5438:2 5442:1 5444:1 5453:1 5480:1 5493:1 5494:2 5501:1 5510:1 5511:3 5524:2 5525:2 5526:1 5534:1 5535:2 5538:2 5540:2 5548:1 5551:1 5552:1 5556:2 5562:2 5563:1 5564:1 5569:1 5576:1 5582:3 5584:1 5586:1 5588:1 5589:1 5593:1 5599:1 5607:1 5615:3 5629:5 5639:1 5640:1 5663:4 5678:1 5680:1 5681:4 5687:1 5694:1 5701:3 5702:1 5705:1 5718:3 5720:4 5721:1 5728:2 5744:1 5749:1 5762:1 5773:1 5785:1 5790:1 5797:1 5801:1 5802:1 5812:2 5813:1 5843:4 5850:1 5851:1 5852:1 5855:1 5868:1 5877:2 5881:2 5898:1 5920:1 5934:1 5942:1 5947:4 5949:1 5969:3 5971:1 5972:20 5987:5 5992:4 6000:1 6001:1 6003:1 6005:1 6006:5 6007:1 6009:2 6017:1 6039:3 6040:1 6043:1 6053:1 6056:1 6058:1 6078:3 6094:1 6102:1 6110:1 6117:2 6130:2 6137:2 6138:1 6142:1 6149:1 6150:1 6153:3 6156:1 6176:7 6178:1 6182:1 6192:1 6197:1 6199:1 6220:1 6244:1 6245:2 6247:1 6259:4 6262:1 6263:1 6264:1 6265:2 6267:1 6269:2 6270:4 6273:1 6274:3 6275:3 6276:7 6277:1 6279:2 6280:1 6282:4 6283:16 6284:5 6286:3 6316:1 6334:3 6379:4 6381:1 6383:1 6389:1 6419:1 6420:2 6426:1 6435:2 6482:3 6487:1 6490:1 6493:2 6502:1 6507:1 6513:1 6531:2 6536:3 6537:1 6542:1 6554:1 6556:1 6558:1 6565:4 6580:1 6581:1 6585:1 6589:1 6594:1 6598:1 6609:2 6613:3 6652:1 6653:2 6654:2 6661:2 6668:1 6671:3 6677:1 6679:2 6680:1 6689:1 6699:10 6715:2 6722:4 6728:1 6741:1 6744:1 6751:1 6757:1 6769:1 6772:1 6777:1 6795:1 6810:4 6811:1 6823:4 6851:1 6854:3 6855:3 6860:3 6866:1 6869:1 6871:1 6885:3 6886:2 6903:1 6906:1 6914:2 6918:1 6919:2 6922:2 6927:1 6932:1 6938:1 6939:1 6944:1 6948:2 6955:1 6973:1 6985:1 6987:1 6999:1 7009:1 7028:1 7036:1 7049:1 7050:15 7052:1 7061:2 7067:1 7073:2 7074:3 7091:1 7097:2 7099:3 7102:2 7109:1 7124:1 7125:1 7155:2 7169:1 7174:1 7180:1 7198:5 7203:1 7218:2 7234:1 7248:2 7263:3 7274:1 7278:1 7287:6 7288:1 7290:1 7297:1 7303:1 7309:1 7311:1 7319:1 7322:1 7326:1 7334:6 7346:4 7347:1 7352:1 7367:3 7371:1 7382:3 7383:1 7386:2 7392:1 7401:1 7407:2 7411:1 7427:1 7463:3 7485:2 7496:1 7499:2 7510:1 7516:1 7518:1 7548:1 7554:3 7555:15 7556:8 7560:1 7568:1 7570:2 7576:1 7580:3 7582:4 7584:2 7603:5 7604:1 7620:67 7622:2 7643:10 7644:16 7645:1 7648:4 7657:1 7665:1 7667:1 7671:2 7682:1 7685:1 7686:1 7690:1 7692:1 7696:1 7700:1 7710:2 7719:2 7720:4 7725:2 7734:1 7751:1 7755:1 7758:2 7773:2 7786:1 7804:1 7807:1 7826:2 7851:3 7862:1 7871:1 7874:1 7878:3 7892:1 7897:8 7928:1 7931:1 7943:1 7962:1 7967:1 7994:1 8004:1 8007:1 8019:1 8032:1 8035:1 8037:1 8043:3 8044:3 8045:2 8046:1 8062:2 8063:2 8081:1 8082:1 8087:1 8093:1 8105:1 8107:2 8110:1 8116:2 8122:1 8124:2 8130:2 8131:1 8136:1 8141:1 8142:4 8145:1 8154:1 8156:13 8180:3 8184:2 8186:2 8194:1 8205:2 8230:1 8236:1 8244:2 8254:1 8270:1 8299:1 8301:2 8311:2 8319:2 8322:1 8330:2 8334:1 8336:1 8340:1 8358:1 8367:5 8369:2 8376:4 8379:1 8383:3 8387:3 8394:1 8395:4 8401:1 8405:1 8412:1 8422:1 8430:5 8433:2 8438:2 8441:2 8445:1 8449:1 8460:1 8468:1 8480:1 8485:1 8490:1 8495:1 8497:1 8500:3 8501:9 8503:4 8504:1 8505:3 8508:3 8510:8 8512:3 8513:4 8514:1 8516:2 8525:3 8526:2 8536:1 8543:4 8549:2 8550:9 8559:1 8565:1 8567:3 8571:1 8572:2 8575:2 8578:2 8582:2 8586:5 8587:1 8604:2 8611:1 8639:1 8640:2 8647:1 8655:1 8657:1 8659:1 8669:1 8679:1 8683:1 8688:1 8710:1 8719:2 8725:2 8728:1 8739:1 8751:1 8756:3 8762:1 8772:2 8779:3 8801:1 8805:2 8808:1 8810:2 8811:4 8815:3 8827:3 8833:1 8840:1 8846:1 8857:1 8914:1 8915:1 8921:1 8929:1 8936:2 8950:7 8952:1 8954:2 8962:1 8967:1 8969:2 8971:1 8972:1 8992:3 9001:1 9009:1 9011:1 9019:1 9022:2 9023:1 9035:3 9040:1 9050:1 9057:1 9060:1 9065:1 9068:1 9069:1 9077:3 9107:1 9115:4 9121:1 9128:1 9130:1 9134:1 9139:3 9142:2 9145:1 9151:1 9161:2 9162:1 9166:1 9176:1 9196:1 9200:2 9204:2 9207:8 9209:1 9210:1 9213:1 9216:3 9219:1 9223:1 9226:40 9230:4 9231:2 9236:1 9246:2 9247:1 9260:2 9261:1 9264:1 9275:1 9286:4 9298:3 9305:1 9312:1 9314:1 9319:1 9329:1 9338:2 9345:1 9349:1 9360:2 9363:9 9364:1 9365:2 9382:1 9390:1 9391:1 9392:1 9421:1 9427:1 9433:6 9435:1 9437:1 9444:1 9448:1 9449:1 9469:1 9490:1 9491:1 9497:1 9528:1 9529:1 9537:1 9539:1 9544:1 9555:3 9558:1 9559:1 9567:1 9568:1 9569:6 9574:1 9582:1 9585:1 9586:6 9594:2 9601:3 9608:2 9622:1 9634:2 9652:1 9663:9 9668:1 9675:1 9676:1 9677:6 9687:2 9689:2 9697:1 9700:1 9702:1 9704:2 9712:1 9713:1 9725:2 9746:3 9772:1 9780:1 9784:1 9789:1 9790:1 9815:1 9818:1 9821:1 9823:2 9829:1 9847:7 9850:1 9856:1 9862:1 9865:1 9871:4 9875:1 9877:2 9878:2 9880:1 9883:2 9885:1 9887:1 9890:1 9898:4 9911:1 9913:1 9917:1 9919:1 9921:1 9923:1 9924:3 9928:3 9929:1 9932:2 9933:2 9935:1 9938:1 9939:1 9948:1 9954:1 9956:1 9960:1 9968:7 9986:1 9987:1 9996:1 10017:1 10019:2 10030:1 10037:1 10038:1 10043:1 10052:1 10057:3 10059:1 10065:1 10073:1 10094:1 10096:1 10098:1 10117:1 10122:1 10124:2 10125:1 10126:1 10135:2 10157:1 10178:1 10183:1 10188:1 10191:1 10195:2 10200:1 10228:2 10234:1 10241:2 10263:2 10265:1 10266:6 10280:1 10286:3 10297:2 10302:1 10305:2 10328:2 10329:1 10347:5 10351:2 10359:2 10370:1 10372:2 10402:1 10405:1 10409:1 10414:1 10436:3 10448:1 10463:1 10466:1 10470:1 10478:2 10484:2 10486:1 10488:2 10493:1 10500:2 10501:1 10504:4 10507:2 10509:1 10513:9 10521:1 10523:1 10524:1 10526:1 10533:1 10537:1 10539:3 10541:1 10550:2 10554:2 10555:3 10557:4 10558:1 10564:1 10573:3 10582:4 10583:4 10584:1 10590:2 10592:2 10593:1 10618:1 10621:1 10628:1 10639:1 10641:1 10657:7 10665:5 10677:2 10683:4 10686:15 10736:1 10737:1 10740:1 10741:1 10747:1 10748:2 10768:1 10783:4 10787:1 10790:1 10805:1 10824:1 10827:1 10835:2 10839:1 10846:1 10856:1 10857:1 10869:1 10883:1 10890:1 10901:1 10902:2 10903:4 10905:5 10909:2 10910:2 10918:1 10921:3 10931:2 10937:1 10943:2 10946:1 10947:1 10953:1 10962:1 10963:1 10969:1 10980:1 10989:9 10992:1 10993:1 11005:1 11010:8 11014:1 11016:1 11018:2 11021:1 11040:1 11062:1 11063:2 11064:2 11066:1 11070:1 11071:1 11080:1 11083:1 11085:1 11086:1 11094:1 11100:1 11106:1 11107:1 11118:1 11131:1 11138:2 11145:1 11147:1 11152:1 11163:1 11166:2 11173:1 11175:1 11177:1 11188:1 11197:1 11203:5 11208:1 11216:1 11230:2 11232:1 11234:1 11248:1 11260:1 11268:2 11274:1 11278:3 11284:1 11285:1 11287:1 11300:2 11301:1 11302:2 11303:1 11308:2 11315:4 11317:1 11333:11 11341:1 11367:3 11370:14 11371:1 11385:1 11390:1 11400:3 11401:1 11407:2 11419:1 11423:1 11430:2 11442:1 11444:2 11466:2 11468:1 11469:1 11470:1 11476:1 11477:2 11479:1 11481:2 11496:1 11501:1 11506:1 11509:2 11514:1 11520:3 11526:4 11530:8 11547:8 11549:1 11550:7 11580:1 11587:1 11600:2 11601:2 11603:3 11606:1 11607:1 11609:3 11611:2 11614:1 11615:2 11619:4 11620:1 11622:1 11628:1 11631:2 11632:3 11633:1 11636:2 11641:3 11645:1 11649:1 11664:7 11666:2 11671:1 11684:8 11690:2 11693:1 11696:1 11710:1 11711:2 11716:1 11727:1 11734:1 11755:1 11772:2 11789:2 11801:1 11824:2 11826:1 11852:1 11858:1 11865:5 11871:1 11877:4 11882:1 11891:1 11908:1 11916:1 11924:1 11931:3 11936:5 11938:1 11952:1 11973:5 11977:1 11990:2 11997:1 12004:1 12005:1 12010:1 12025:1 12045:1 12058:1 12076:2 12082:1 12085:1 12100:1 12107:1 12109:1 12110:3 12111:4 12115:2 12124:1 12125:2 12132:1 12141:2 12142:1 12154:1 12156:2 12160:1 12165:4 12166:5 12172:3 12176:1 12178:2 12184:2 12206:1 12219:1 12239:1 12243:1 12250:1 12263:1 12272:1 12276:2 12281:10 12297:1 12302:2 12318:1 12323:3 12328:1 12337:1 12338:1 12345:1 12346:1 12349:2 12361:3 12362:2 12365:1 12376:2 12380:2 12398:2 12405:1 12420:1 12423:4 12431:3 12435:1 12457:1 12458:1 12464:1 12468:1 12472:1 12476:1 12477:7 12480:1 12491:1 12493:1 12495:1 12508:1 12512:1 12515:1 12526:2 12534:1 12586:1 12593:2 12608:8 12621:1 12633:1 12635:1 12636:1 12644:1 12648:19 12654:1 12656:1 12658:1 12668:3 12671:7 12676:1 12681:2 12701:1 12702:1 12707:1 12708:4 12733:2 12752:1 12764:1 12769:7 12772:2 12782:1 12787:1 12789:1 12790:1 12791:1 12796:3 12797:1 12813:2 12827:5 12830:1 12831:1 12835:1 12837:1 12860:1 12861:1 12885:1 12888:1 12914:1 12948:1 12949:7 12954:1 12960:1 12984:1 12989:1 12999:1 13042:2 13045:8 13049:1 13062:1 13066:4 13068:1 13070:1 13072:1 13076:8 13080:4 13086:1 13087:1 13093:2 13094:6 13120:1 13128:2 13131:1 13133:1 13142:2 13143:1 13144:1 13166:5 13170:1 13188:2 13194:1 13206:2 13211:2 13213:1 13215:1 13222:2 13224:8 13225:1 13231:1 13232:6 13233:2 13244:1 13250:1 13251:1 13252:2 13257:2 13263:2 13275:3 13278:1 13282:1 13283:1 13287:1 13301:2 13302:7 13306:1 13310:1 13320:3 13331:1 13341:2 13346:2 13364:2 13372:7 13376:1 13396:1 13401:1 13416:4 13420:1 13421:6 13440:1 13454:2 13468:4 13473:1 13488:1 13490:1 13503:1 13506:1 13520:2 13524:1 13533:1 13556:1 13557:3 13561:2 13570:2 13571:1 13592:1 13599:7 13600:1 13601:2 13606:7 13607:2 13610:2 13614:1 13619:1 13620:1 13628:1 13633:1 13637:1 13654:5 13674:1 13680:3 13691:2 13694:2 13697:1 13698:1 13723:1 13730:1 13733:8 13745:1 13764:4 13779:3 13782:1 13784:1 13788:2 13799:1 13802:1 13813:1 13827:7 13832:4 13833:1 13838:2 13847:2 13869:2 13883:1 13886:1 13895:1 13904:6 13931:11 13942:1 13963:1 13974:1 13980:2 13986:1 13987:2 14006:1 14007:2 14018:1 14024:1 14029:1 14036:2 14054:3 14076:7 14086:2 14089:1 14107:3 14114:1 14119:1 14126:1 14134:1 14140:1 14152:1 14161:1 14170:1 14179:4 14180:1 14181:1 14196:1 14212:1 14221:1 14223:1 14234:1 14235:1 14245:1 14255:1 14266:3 14274:2 14284:2 14295:1 14297:1 14299:3 14312:4 14313:1 14317:4 14318:9 14324:1 14325:9 14335:5 14339:3 14340:2 14347:1 14358:1 14360:1 14361:1 14376:1 14385:1 14427:2 14433:1 14434:1 14442:1 14449:6 14476:1 14482:3 14485:1 14489:2 14490:3 14492:1 14493:4 14498:4 14502:1 14507:1 14514:2 14523:1 14532:1 14533:3 14537:1 14551:1 14554:1 14573:1 14587:1 14591:4 14600:3 14614:2 14616:3 14623:2 14624:1 14629:2 14636:2 14637:2 14647:6 14650:1 14656:1 14664:3 14674:2 14677:1 14683:2 14694:1 14700:1 14701:1 14725:1 14728:1 14761:1 14775:1 14780:1 14785:2 14798:1 14803:2 14820:4 14821:1 14823:2 14824:1 14836:1 14837:2 14839:1 14881:2 14883:1 14891:11 14893:1 14910:3 14912:2 14915:1 14916:3 14923:1 14935:1 14936:11 14938:3 14961:2 14970:2 14984:2 14986:1 14987:1 14995:1 14999:1 15000:1 15020:8 15022:1 15024:1 15030:1 15037:1 15055:2 15071:1 15085:1 15109:1 15117:1 15123:6 15125:1 15129:1 15130:1 15134:1 15144:1 15145:1 15146:2 15152:1 15158:3 15160:1 15172:1 15173:1 15177:2 15178:1 15180:1 15186:1 15207:1 15217:1 15220:1 15223:1 15231:1 15233:1 15238:1 15241:1 15244:1 15245:3 15247:1 15251:1 15259:2 15275:1 15282:1 15301:2 15309:1 15322:1 15332:14 15338:2 15345:2 15380:1 15385:4 15395:1 15398:1 15403:1 15404:5 15414:7 15420:1 15424:1 15431:1 15435:1 15436:1 15440:1 15453:2 15455:1 15459:2 15471:1 15482:2 15496:1 15508:1 15509:1 15512:1 15527:1 15539:1 15556:1 15563:6 15568:2 15571:1 15578:13 15581:4 15590:2 15591:3 15595:1 15598:1 15607:2 15614:5 15622:2 15624:1 15625:10 15626:4 15631:1 15637:1 15642:1 15644:1 15678:1 15679:2 15684:1 15687:2 15706:1 15710:1 15711:1 15715:1 15717:2 15724:1 15725:4 15742:1 15745:10 15750:1 15755:1 15757:2 15763:2 15767:1 15768:1 15777:1 15785:3 15814:2 15823:1 15831:6 15832:3 15835:1 15837:1 15839:1 15871:1 15877:1 15879:7 15893:1 15896:1 15906:1 15909:7 15911:3 15913:1 15923:2 15957:2 15967:1 15973:4 16002:2 16008:1 16014:1 16015:1 16018:1 16026:1 16029:19 16030:1 16034:2 16048:5 16050:2 16051:2 16055:1 16056:2 16067:1 16084:1 16095:2 16103:1 16119:9 16122:1 16127:1 16137:2 16146:1 16147:1 16149:1 16150:1 16151:1 16152:1 16154:1 16163:1 16164:1 16170:2 16172:1 16177:3 16181:1 16190:2 16194:1 16196:1 16237:1 16242:4 16270:1 16285:5 16288:1 16289:1 16290:2 16310:1 16329:1 16334:1 16336:1 16338:1 16353:1 16363:1 16383:1 16393:1 16398:1 16400:1 16403:6 16434:2 16475:1 16482:1 16488:1 16489:1 16505:1 16511:1 16513:1 16527:1 16528:1 16542:1 16543:1 16546:1 16554:1 16555:4 16573:1 16575:1 16588:1 16589:1 16597:1 16604:2 16605:1 16608:1 16614:1 16639:1 16646:1 16655:1 16662:1 16666:3 16669:1 16672:1 16675:2 16685:4 16697:1 16702:1 16707:2 16708:1 16710:1 16714:3 16716:3 16718:1 16727:1 16738:1 16747:1 16758:1 16759:2 16761:1 16763:1 16776:1 16787:1 16789:3 16801:1 16802:1 16804:1 16826:1 16828:1 16830:1 16840:5 16843:2 16844:6 16851:1 16867:1 16872:1 16874:1 16883:1 16899:1 16905:1 16908:1 16915:8 16929:2 16930:1 16932:5 16939:1 16942:1 16947:2 16966:5 16974:1 16977:5 16990:1 16991:1 16995:2 17010:1 17013:2 17015:1 17036:1 17042:1 17046:2 17050:2 17053:2 17059:6 17064:1 17067:2 17087:1 17091:8 17092:1 17106:1 17107:2 17110:1 17121:1 17136:3 17138:2 17155:5 17156:3 17167:1 17172:1 17179:1 17181:2 17186:3 17187:3 17198:3 17199:7 17200:1 17207:4 17210:1 17212:1 17244:1 17247:1 17251:1 17265:1 17270:2 17277:2 17281:1 17327:1 17342:1 17343:1 17345:2 17346:1 17360:1 17363:4 17369:2 17373:1 17374:2 17397:1 17401:1 17417:1 17421:1 17422:2 17442:1 17445:3 17447:4 17448:4 17454:6 17455:1 17456:1 17463:7 17468:2 17475:3 17476:2 17477:1 17509:1 17511:2 17522:5 17523:4 17538:1 17555:1 17558:2 17560:3 17575:1 17585:2 17587:1 17592:7 17597:1 17598:1 17604:2 17605:1 17606:1 17616:1 17631:1 17636:1 17644:2 17647:2 17648:2 17652:1 17655:2 17656:1 17662:1 17664:3 17665:5 17667:1 17669:1 17670:1 17674:1 17681:1 17683:4 17684:2 17687:1 17691:1 17692:1 17698:1 17699:1 17707:1 17721:1 17722:3 17747:1 17753:2 17764:1 17766:2 17767:9 17772:4 17778:1 17781:40 17783:1 17785:1 17787:1 17790:2 17794:1 17803:1 17812:5 17819:1 17822:1 17831:1 17838:1 17845:1 17851:1 17852:1 17855:1 17860:4 17867:1 17871:1 17872:5 17873:1 17875:1 17882:1 17886:1 17896:6 17902:1 17907:1 17922:1 17931:5 17962:1 17967:1 17977:4 17979:1 17987:1 17989:1 17990:1 17992:1 17994:2 17998:2 18007:5 18009:1 18011:2 18019:1 18032:3 18041:1 18045:1 18056:2 18058:1 18067:1 18080:1 18084:1 18098:1 18114:1 18117:1 18120:1 18131:1 18133:1 18142:1 18150:2 18152:3 18167:1 18169:2 18170:1 18178:1 18184:1 18212:3 18219:5 18220:1 18228:1 18239:1 18249:3 18280:1 18288:1 18315:5 18323:1 18331:1 18340:2 18348:2 18357:1 18380:2 18381:4 18382:3 18390:1 18399:2 18410:1 18417:9 18424:1 18435:1 18444:1 18449:1 18459:1 18461:1 18465:1 18470:1 18471:3 18476:2 18478:5 18479:1 18481:1 18495:1 18498:1 18499:1 18504:5 18509:3 18512:3 18516:1 18519:2866 18524:1 18534:1 18538:1 18572:4 18573:1 18582:3 18590:1 18607:2 18608:1 18619:1 18624:1 18643:2 18648:2 18657:1 18668:2 18684:2 18690:1 18691:1 18702:1 18708:4 18715:7 18720:1 18725:5 18727:4 18728:5 18731:1 18743:1 18748:2 18763:1 18792:2 18799:1 18802:8 18808:2 18810:2 18814:1 18816:1 18840:1 18842:40 18850:1 18861:1 18863:7 18898:1 18904:1 18907:1 18915:1 18919:1 18920:1 18927:1 18930:2 18938:1 18947:1 18950:1 18968:1 18969:1 18971:1 18982:2 18991:5 19007:1 19008:2 19017:4 19033:2 19055:3 19061:1 19065:1 19079:1 19089:1 19091:1 19110:2 19113:1 19121:1 19135:2 19140:2 19142:4 19168:2 19172:1 19174:4 19176:4 19180:1 19187:1 19190:4 19192:3 19193:1 19197:4 19202:1 19210:1 19218:1 19228:7 19235:1 19239:1 19256:2 19257:2 19271:2 19273:1 19277:2 19289:2 19291:1 19293:5 19298:14 19314:1 19315:1 19335:8 19336:1 19345:1 19348:1 19350:2 19353:1 19359:1 19370:1 19371:1 19400:1 19412:2 19414:1 19420:3 19422:1 19442:2 19475:1 19482:1 19486:1 19489:1 19494:2 19497:1 19507:5 19508:1 19511:1 19513:1 19515:3 19516:2 19531:3 19534:1 19549:1 19550:6 19551:1 19557:1 19563:3 19566:1 19567:1 19573:1 19592:2 19600:1 19605:1 19628:3 19632:1 19634:2 19661:3 19674:1 19680:1 19708:3 19719:1 19720:1 19724:1 19732:2 19735:4 19740:1 19742:1 19745:1 19751:1 19752:1 19754:1 19760:1 19767:2 19771:5 19775:8 19777:1 19778:3 19784:5 19794:1 19797:2 19807:1 19816:1 19818:1 19829:1 19833:1 19839:3 19859:1 19862:1 19876:2 19881:3 19883:1 19904:2 19909:5 19918:2 19932:1 19936:2 19942:1 19948:1 19949:5 19953:1 19964:1 19966:1 19978:5 19979:1 19992:1 19996:1 20001:2 20003:2 20004:2 20007:1 20017:1 20020:1 20031:2 20032:1 20036:1 20037:1 20052:2 20053:1 20060:1 20061:5 20068:1 20074:1 20079:1 20084:3 20086:1 20094:3 20103:1 20117:2 20118:2 20137:2 20159:6 20170:1 20175:1 20187:1 20211:10 20212:3 20218:6 20226:2 20231:1 20237:1 20238:1 20272:1 20276:1 20281:1 20283:3 20293:2 20299:1 20302:1 20313:1 20329:1 20337:1 20345:1 20362:1 20373:1 20388:1 20395:1 20400:1 20401:1 20404:3 20406:4 20408:1 20412:1 20420:1 20422:1 20428:1 20443:1 20453:1 20454:1 20455:9 20465:2 20466:1 20467:1 20468:4 20474:2 20495:1 20525:1 20530:1 20531:3 20532:1 20542:1 20545:1 20547:2 20567:4 20575:1 20577:1 20594:1 20599:1 20600:1 20601:1 20604:1 20626:2 20631:2 20639:1 20643:2 20644:1 20652:1 20653:1 20656:1 20658:5 20671:1 20672:1 20677:4 20679:2 20682:1 20683:1 20685:2 20686:1 20692:1 20697:1 20698:1 20701:1 20705:7 20710:1 20715:1 20716:1 20721:3 20722:4 20730:1 20734:1 20738:1 20747:7 20756:1 20770:1 20775:2 20780:2 20781:1 20782:4 20783:1 20797:3 20798:1 20823:3 20833:1 20846:1 20857:1 20862:1 20882:1 20900:2 20907:2 20910:1 20918:1 20925:1 20945:1 20948:2 20957:2 20979:8 20985:1 20986:1 20988:1 20990:1 20992:1 20997:1 21010:2 21016:1 21019:2 21029:1 21049:2 21062:2 21075:1 21079:1 21080:1 21085:1 21088:1 21091:2 21100:1 21107:1 21118:1 21122:1 21137:3 21142:2 21144:1 21158:1 21159:1 21165:1 21169:3 21174:1 21193:1 21196:1 21198:2 21200:1 21201:1 21211:1 21248:1 21250:1 21257:2 21265:1 21276:2 21284:2 21285:1 21288:1 21289:1 21313:1 21320:1 21332:1 21339:1 21345:1 21357:1 21358:3 21359:1 21371:6 21372:1 21373:1 21374:2 21380:2 21381:2 21386:5 21387:3 21389:2 21392:1 21397:1 21405:1 21406:1 21407:1 21409:1 21410:1 21415:3 21434:1 21440:1 21442:2 21444:3 21448:1 21459:1 21472:5 21486:1 21488:2 21490:2 21493:1 21498:4 21499:2 21502:1 21503:2 21504:1 21506:1 21509:4 21518:2 21519:1 21520:1 21523:2 21528:1 21538:1 21544:1 21548:11 21551:1 21567:1 21568:2 21569:5 21580:2 21599:1 21616:1 21634:2 21647:2 21648:1 21654:2 21661:1 21663:4 21664:1 21670:1 21675:12 21680:1 21681:1 21684:2 21691:1 21695:3 21705:1 21712:1 21714:4 21715:1 21724:1 21742:1 21750:3 21770:1 21771:1 21772:1 21778:1 21804:1 21806:2 21809:1 21811:1 21812:7 21822:1 21824:1 21826:1 21827:2 21829:2 21830:1 21838:1 21845:1 21846:7 21847:1 21848:3 21862:1 21867:2 21870:1 21877:2 21885:1 21901:2 21916:2 21919:1 21931:1 21937:4 21941:1 21952:1 21967:1 21971:1 21975:1 21994:3 21999:1 22009:5 22012:2 22016:4 22017:3 22020:1 22021:2 22025:2 22029:1 22036:1 22051:1 22052:1 22059:3 22061:1 22065:3 22077:2 22080:2 22096:4 22115:1 22132:1 22135:1 22144:1 22147:3 22150:3 22160:1 22173:5 22174:6 22178:3 22179:1 22180:2 22181:1 22184:1 22189:3 22190:1 22205:1 22212:2 22222:1 22223:5 22230:1 22236:1 22239:2 22243:3 22248:3 22252:3 22257:2 22258:5 22265:1 22277:2 22286:1 22290:1 22291:1 22293:1 22294:3 22295:1 22302:1 22307:1 22315:2 22318:1 22329:2 22331:1 22332:1 22336:1 22337:1 22342:2 22345:3 22349:1 22357:1 22362:4 22368:1 22390:1 22391:9 22392:1 22401:1 22403:1 22406:2 22412:1 22414:40 22419:1 22420:4 22422:4 22425:2 22426:3 22427:5 22430:1 22432:1 22434:2 22451:1 22453:4 22455:1 22461:1 22464:3 22467:1 22473:3 22493:3 22495:2 22496:1 22501:1 22507:3 22510:1 22529:4 22538:1 22542:1 22547:1 22579:6 22581:1 22585:1 22593:11 22599:3 22616:3 22621:2 22634:1 22646:1 22672:1 22674:2 22675:1 22676:3 22679:1 22680:1 22687:1 22691:3 22692:1 22695:1 22699:2 22705:1 22706:1 22721:4 22726:2 22734:1 22736:1 22737:1 22758:1 22776:1 22777:3 22782:1 22784:1 22788:1 22808:1 22837:1 22848:1 22866:1 22867:1 22878:1 22886:2 22896:2 22902:1 22917:1 22919:1 22921:1 22931:2 22935:1 22947:2 22948:2 22955:1 22962:2 22964:1 22965:2 22971:2 22980:3 22981:1 22982:1 22998:3 23001:5 23021:3 23024:1 23027:1 23033:3 23038:1 23043:1 23057:1 23060:1 23069:1 23072:1 23099:1 23130:3 23143:1 23148:1 23161:1 23165:2 23175:1 23184:3 23188:3 23195:1 23196:1 23207:3 23227:3 23234:3 23235:1 23239:1 23241:2 23248:1 23254:1 23261:1 23275:2 23283:3 23297:1 23299:5 23302:1 23305:1 23310:3 23313:2 23326:2 23340:1 23343:1 23349:2 23351:2 23352:1 23361:13 23368:1 23394:2 23403:1 23408:1 23420:1 23437:2 23439:1 23441:1 23452:2 23467:1 23480:1 23482:3 23488:2 23494:2 23504:1 23517:1 23519:1 23520:1 23527:1 23532:6 23545:1 23558:1 23559:2 23568:1 23581:1 23591:1 23592:1 23597:1 23600:4 23604:1 23616:11 23618:2 23620:1 23635:8 23645:1 23647:1 23651:1 23659:2 23667:1 23711:1 23716:1 23720:1 23722:1 23732:3 23736:2 23744:1 23749:2 23758:2 23763:1 23774:1 23779:1 23785:1 23798:1 23801:2 23806:1 23814:1 23831:1 23832:1 23842:1 23854:1 23874:1 23875:4 23884:6 23885:1 23886:1 23896:4 23899:1 23910:3 23912:1 23918:2 23919:1 23920:1 23928:1 23932:1 23939:2 23941:2 23966:3 23967:1 23973:1 23979:1 23992:1 23994:3 23995:2 23996:1 24001:1 24025:4 24030:1 24044:1 24047:3 24052:2 24057:2 24058:3 24059:1 24064:1 24068:1 24073:2 24084:1 24093:1 24098:1 24101:1 24114:1 24124:1 24146:1 24148:1 24150:3 24156:1 24159:2 24160:1 24162:8 24164:3 24165:1 24166:4 24167:2 24171:1 24172:2 24174:2 24175:5 24179:1 24182:2 24183:4 24187:2 24193:2 24206:6 24213:2 24220:1 24233:1 24236:3 24237:1 24242:1 24247:3 24258:2 24263:7 24267:3 24291:2 24295:1 24297:1 24306:1 24307:3 24321:1 24324:1 24326:1 24342:1 24345:1 24347:1 24348:3 24362:1 24390:1 24401:1 24402:1 24419:3 24440:5 24448:1 24450:6 24453:1 24464:3 24466:1 24470:1 24477:1 24496:1 24499:1 24508:1 24512:2 24513:1 24521:1 24524:1 24531:1 24547:3 24548:1 24549:1 24558:1 24571:1 24582:2 24584:3 24609:2 24623:1 24626:1 24630:3 24640:1 24645:1 24648:1 24654:1 24658:2 24665:2 24707:7 24746:1 24757:2 24761:1 24763:2 24772:1 24780:1 24783:4 24791:1 24793:1 24797:2 24810:1 24816:1 24822:4 24876:1 24878:1 24899:1 24900:2 24912:4 24915:9 24946:13 24955:1 24969:10 24976:1 24977:1 24990:1 24997:1 25005:1 25015:2 25019:1 25028:1 25038:2 25041:1 25042:1 25045:1 25046:1 25047:1 25066:1 25071:2 25085:1 25089:1 25093:2 25095:1 25099:2 25104:1 25109:1 25111:2 25114:6 25122:1 25126:1 25137:2 25139:2 25141:12 25144:5 25145:2 25155:1 25162:1 25167:2 25168:1 25170:1 25177:2 25182:2 25186:2 25214:2 25219:1 25225:5 25230:1 25240:1 25247:4 25248:1 25258:2 25259:2 25308:1 25319:2 25320:1 25335:1 25342:1 25345:1 25346:1 25356:1 25361:1 25363:1 25384:3 25386:1 25400:1 25401:1 25410:1 25412:4 25413:1 25416:2 25417:1 25425:1 25436:6 25444:1 25465:1 25468:1 25473:1 25474:1 25479:2 25488:1 25492:1 25506:1 25515:1 25557:3 25561:1 25569:1 25576:4 25590:1 25600:1 25618:1 25626:1 25657:1 25663:1 25665:1 25676:1 25679:3 25680:2 25687:1 25691:1 25698:1 25699:1 25700:1 25701:1 25708:2 25718:2 25726:1 25729:1 25742:1 25752:1 25757:1 25759:2 25781:1 25786:2 25796:5 25804:1 25812:1 25816:2 25826:1 25829:1 25835:2 25838:5 25850:1 25859:1 25864:2 25865:5 25880:2 25882:1 25901:1 25903:1 25906:2 25910:1 25916:2 25929:1 25930:1 25936:3 25943:1 25953:2 25971:2 25988:1 25992:7 25994:1 26018:2 26021:10 26024:1 26027:1 26033:1 26038:1 26040:1 26042:1 26059:2 26074:1 26087:1 26088:1 26093:4 26107:1 26112:2 26113:4 26114:1 26118:1 26121:1 26122:1 26123:1 26127:3 26128:3 26133:1 26162:1 26166:5 26170:1 26175:1 26182:1 26185:1 26188:1 26190:2 26193:1 26213:3 26221:2 26222:1 26225:2 26247:2 26249:2 26261:2 26262:1 26267:1 26278:1 26285:1 26290:3 26300:1 26307:1 26309:2 26316:1 26332:2 26337:1 26338:1 26339:1 26341:1 26352:1 26366:1 26368:3 26373:5 26392:2 26397:1 26430:1 26453:1 26461:1 26474:1 26476:1 26478:1 26479:1 26482:1 26499:1 26504:1 26524:2 26526:2 26532:2 26542:1 26547:2 26548:1 26551:1 26556:1 26559:3 26566:1 26569:1 26571:1 26574:2 26582:1 26588:2 26592:1 26599:1 26611:1 26618:1 26619:1 26621:1 26622:1 26624:1 26631:1 26641:2 26654:2 26657:2 26658:1 26662:1 26667:6 26681:4 26700:6 26707:1 26709:5 26710:1 26721:1 26723:2 26724:1 26736:1 26737:1 26743:1 26759:5 26772:2 26778:1 26787:1 26788:11 26807:1 26817:1 26838:1 26840:2 26844:1 26845:2 26847:1 26848:3 26850:1 26856:13 26866:1 26890:1 26894:7 26920:1 26933:2 26934:1 26938:1 26954:2 26960:8 26965:2 26966:1 26967:3 26981:1 26982:1 26985:2 26988:1 26994:4 27003:1 27006:1 27016:3 27022:1 27030:1 27033:1 27036:1 27052:1 27054:1 27056:1 27057:1 27058:3 27061:1 27064:1 27069:2 27070:1 27079:1 27090:3 27103:2 27108:1 27113:1 27122:1 27135:2 27136:1 27141:2 27143:1 27145:1 27147:1 27149:2 27160:2 27165:1 27169:1 27177:1 27187:2 27188:1 27207:1 27229:1 27247:1 27275:1 27279:2 27297:1 27298:1 27330:1 27332:1 27340:1 27342:2 27365:7 27367:1 27368:1 27369:2 27376:1 27385:1 27392:1 27408:1 27412:1 27419:1 27422:2 27447:1 27454:1 27465:1 27472:1 27474:1 27481:2 27500:1 27517:1 27518:1 27536:3 27549:1 27560:1 27563:7 27575:1 27579:1 27595:1 27597:4 27603:1 27612:1 27620:1 27627:2 27636:1 27647:2 27658:1 27661:1 27662:1 27673:1 27674:1 27675:2 27678:1 27682:2 27687:35 27689:4 27692:5 27694:1 27695:3 27702:2 27707:1 27724:11 27733:1 27739:1 27777:3 27789:2 27804:1 27808:2 27820:1 27821:5 27832:7 27838:2 27859:14 27863:2 27867:4 27869:2 27874:2 27878:1 27879:4 27885:1 27887:1 27889:1 27893:2 27897:1 27900:2 27906:2 27907:2 27909:1 27917:2 27923:2 27930:1 27934:3 27935:2 27943:1 27946:1 27948:4 27951:1 27955:1 27960:1 27961:1 27964:1 27968:1 27969:3 27975:1 27989:1 28003:1 28011:2 28019:1 28028:2 28030:1 28031:1 28041:1 28046:1 28050:1 28051:1 28054:3 28058:1 28068:5 28075:1 28082:2 28100:1 28101:1 28102:2 28118:1 28124:1 28126:1 28127:2 28128:3 28131:1 28143:1 28160:1 28169:1 28174:1 28177:1 28178:1 28180:1 28183:3 28187:6 28191:2 28193:1 28196:1 28197:2 28202:1 28203:1 28204:1 28208:3 28209:1 28214:2 28215:1 28217:2 28218:1 28223:1 28230:1 28244:1 28264:1 28268:1 28286:1 28292:1 28315:1 28319:2 28320:1 28326:3 28341:1 28350:1 28356:1 28359:2 28362:2 28363:2 28367:1 28373:2 28375:3 28378:1 28380:1 28387:1 28397:8 28404:2 28405:2 28409:1 28411:10 28413:1 28417:1 28419:1 28421:1 28445:1 28461:1 28469:2 28470:1 28506:3 28511:1 28514:1 28520:1 28536:4 28541:1 28543:3 28545:1 28551:1 28553:1 28560:6 28565:1 28569:1 28594:1 28596:1 28626:1 28627:1 28635:1 28646:3 28648:1 28665:2 28681:2 28685:5 28690:1 28703:2 28709:2 28724:1 28728:1 28734:1 28748:2 28752:1 28754:2 28761:2 28772:2 28792:1 28801:7 28815:1 28816:1 28818:1 28831:1 28836:7 28849:6 28850:1 28867:1 28893:1 28904:1 28912:1 28913:8 28914:3 28916:4 28919:1 28921:2 28924:3 28925:3 28933:1 28941:1 28947:1 28958:2 28959:4 28961:3 28963:3 29001:1 29003:1
9 11:1 14:2 18:1 24:1 28:1 34:1 37:7 45:1 56:1 60:1 63:1 65:1 74:1 79:1 82:1 83:1 86:1 89:1 90:1 103:1 109:1 113:1 117:1 125:1 133:2 143:1 150:1 153:3 162:1 169:1 170:5 186:1 189:8 192:1 203:1 214:1 217:1 240:2 245:1 270:1 275:2 282:2 286:1 293:1 295:40 303:2 315:1 316:5 318:5 320:2 326:1 333:1 348:4 350:1 352:1 354:1 358:2 363:2 381:1 403:2 424:5 432:2 433:1 437:1 438:1 442:1 444:1 456:1 460:1 463:1 510:1 515:1 523:1 561:2 563:5 564:1 569:2 572:4 590:4 596:2 598:2 600:1 613:2 626:1 634:4 638:1 643:3 650:1 674:1 678:3 685:1 692:1 695:1 702:2 711:1 716:1 728:1 734:2 735:1 748:2 749:2 752:1 759:1 767:3 770:1 788:2 795:1 804:1 805:1 807:2 808:1 814:1 828:1 830:11 832:3 842:3 843:1 855:1 856:17 858:1 860:1 867:1 871:1 875:2 876:1 877:6 878:1 879:9 881:1 885:4 887:1 889:1 892:1 893:1 899:1 900:1 901:1 905:4 916:1 924:2 925:3 941:1 963:1 964:1 974:3 989:1 996:6 998:2 1002:2 1011:1 1019:1 1020:2 1027:1 1028:1 1032:1 1038:1 1045:1 1046:1 1059:1 1061:2 1078:1 1086:1 1087:1 1089:2 1092:2 1101:1 1104:3 1112:2 1117:1 1123:2 1136:1 1137:1 1143:2 1148:3 1152:1 1157:1 1160:1 1163:1 1176:2 1179:1 1189:1 1199:1 1200:1 1207:2 1228:1 1230:1 1231:2 1232:2 1241:2 1244:3 1248:1 1253:1 1257:2 1262:1 1276:1 1284:1 1287:1 1300:2 1306:1 1313:1 1330:1 1345:1 1353:1 1355:3 1369:2 1371:2 1374:2 1376:1 1394:1 1397:2 1400:6 1401:10 1402:1 1417:2 1418:1 1419:4 1420:2 1422:3 1423:2 1438:1 1446:1 1455:1 1457:1 1477:1 1485:1 1486:1 1488:2 1506:2 1507:1 1508:1 1512:1 1516:8 1518:1 1543:2 1547:1 1555:2 1557:1 1560:1 1562:3 1564:3 1571:1 1574:1 1575:1 1578:2 1596:6 1598:1 1602:2 1617:1 1619:3 1627:6 1634:2 1659:1 1660:1 1677:2 1678:2 1682:1 1693:1 1699:1 1709:1 1743:4 1757:1 1760:1 1762:2 1766:1 1778:4 1789:1 1794:1 1802:3 1811:1 1819:1 1826:1 1828:1 1830:2 1831:2 1838:1 1850:1 1875:2 1876:1 1888:1 1889:1 1892:2 1895:19 1903:1 1907:2 1919:2 1923:1 1929:1 1933:1 1935:1 1936:1 1952:1 1954:1 1962:9 1963:1 1965:2 1975:1 1993:1 1998:1 2006:3 2011:4 2017:2 2045:1 2048:3 2051:1 2062:1 2065:1 2072:2 2082:1 2085:1 2089:4 2095:2 2100:1 2101:1 2105:1 2108:1 2124:1 2132:1 2142:1 2150:1 2152:1 2153:1 2154:2 2156:1 2158:2 2159:6 2160:1 2162:2 2165:1 2167:3 2172:1 2174:5 2177:5 2178:2 2179:5 2180:1 2181:1 2187:1 2190:4 2191:1 2207:1 2212:1 2215:5 2216:2 2219:3 2220:2 2221:9 2223:5 2226:3 2227:2 2228:5 2232:1 2233:1 2234:1 2237:4 2239:1 2245:2 2247:2 2249:2 2251:6 2252:2 2253:9 2264:1 2268:2 2269:1 2279:3 2297:1 2308:2 2309:2 2310:2 2315:1 2322:1 2336:1 2339:1 2343:1 2345:1 2347:1 2358:4 2370:5 2371:1 2374:1 2376:1 2384:2 2387:1 2392:2 2410:5 2421:10 2433:1 2439:1 2445:1 2461:1 2463:1 2465:1 2473:1 2477:1 2485:5 2494:7 2500:1 2513:1 2520:1 2522:3 2536:2 2543:4 2552:3 2554:1 2561:2 2563:1 2570:1 2580:2 2586:1 2609:2 2631:1 2635:1 2641:1 2648:2 2651:4 2656:1 2659:1 2667:2 2670:1 2672:1 2675:1 2676:2 2683:2 2688:1 2691:1 2699:1 2704:1 2708:4 2712:1 2713:1 2723:1 2730:3 2745:1 2756:1 2760:1 2761:2 2762:1 2766:7 2770:4 2775:6 2780:1 2781:1 2782:1 2810:1 2813:3 2816:2 2818:2 2826:4 2836:2 2851:1 2854:8 2857:2 2867:29 2870:1 2883:4 2888:1 2900:2 2909:1 2915:1 2918:1 2923:1 2931:1 2936:16 2951:1 2954:1 2961:6 2965:9 2966:1 2968:1 2969:1 2972:1 2989:1 3000:1 3002:1 3013:1 3015:1 3017:1 3023:1 3026:2 3027:1 3030:1 3059:1 3068:1 3074:4 3075:1 3089:1 3097:1 3105:1 3106:2 3107:1 3112:1 3135:2 3141:1 3166:1 3188:2 3197:1 3205:1 3216:1 3224:2 3231:1 3232:6 3237:1 3241:2 3243:2 3248:1 3255:1 3256:1 3266:1 3271:1 3272:1 3279:1 3283:1 3293:1 3295:6 3314:1 3318:1 3338:1 3352:2 3357:14 3397:1 3407:1 3413:1 3420:2 3424:2 3433:1 3453:1 3459:1 3468:1 3471:1 3472:2 3475:2 3478:1 3488:1 3489:2 3495:2 3509:1 3517:2 3526:1 3528:1 3540:2 3548:1 3554:1 3558:1 3570:4 3574:1 3575:1 3577:1 3580:2 3582:8 3598:1 3599:7 3604:2 3605:2 3606:1 3607:6 3608:2 3615:1 3619:1 3634:2 3638:1 3639:6 3647:1 3648:1 3665:1 3669:1 3680:1 3684:1 3687:3 3688:3 3692:1 3694:1 3695:2 3698:3 3704:1 3712:1 3730:1 3737:1 3740:1 3742:4 3744:1 3746:2 3748:16 3751:1 3763:1 3770:1 3779:1 3783:5 3784:1 3788:2 3789:13 3790:4 3792:1 3796:2 3810:3 3813:7 3817:1 3822:1 3835:1 3836:4 3838:1 3844:1 3846:1 3848:1 3851:1 3862:1 3866:1 3873:1 3874:1 3876:1 3879:1 3883:1 3888:2 3895:1 3902:4 3904:3 3918:2 3919:2 3921:1 3931:1 3934:1 3939:3 3940:1 3943:3 3948:3 3953:1 3955:1 3964:6 3970:1 3972:1 3977:2 3978:2 3982:2 3983:1 3987:1 3988:4 3989:2 3998:6 3999:5 4005:1 4019:1 4020:1 4031:1 4033:1 4040:1 4051:1 4054:2 4063:1 4069:2 4078:7 4085:2 4086:1 4093:1 4112:1 4113:1 4124:1 4125:1 4129:1 4136:1 4137:1 4173:1 4190:7 4193:2 4201:1 4202:1 4204:1 4208:1 4210:1 4219:1 4234:1 4254:1 4256:1 4263:1 4270:2 4272:2 4282:1 4296:1 4298:4 4306:1 4313:1 4314:2 4333:1 4343:1 4348:2 4352:1 4355:2 4357:1 4362:5 4378:1 4385:1 4414:1 4416:1 4427:1 4428:4 4434:1 4439:2 4455:1 4470:1 4478:1 4491:1 4494:2 4508:1 4521:1 4528:2 4535:2 4549:1 4554:1 4556:1 4560:1 4562:1 4565:1 4575:1 4583:3 4585:2 4605:1 4613:1 4619:3 4623:1 4626:5 4640:1 4646:4 4649:1 4657:2 4658:1 4660:1 4676:2 4678:1 4691:1 4695:8 4713:1 4724:1 4731:1 4742:1 4746:1 4751:1 4759:1 4768:1 4773:8 4776:1 4778:1 4783:1 4787:2 4788:2 4803:3 4807:1 4810:1 4815:1 4818:1 4851:3 4867:1 4876:31 4878:5 4881:1 4895:3 4900:1 4903:1 4909:4 4917:1 4925:2 4928:7 4940:2 4963:2 4964:4 4969:1 4980:1 4981:1 4984:1 4985:7 5003:5 5005:9 5006:1 5008:1 5009:1 5011:2 5013:6 5014:2 5015:1 5017:4 5020:1 5022:2 5025:2 5026:1 5028:6 5030:3 5031:1 5033:1 5036:1 5041:1 5042:2 5045:4 5046:4 5049:1 5063:1 5064:1 5066:1 5072:1 5086:1 5087:1 5090:1 5096:1 5125:3 5131:2 5133:1 5138:1 5151:1 5157:2 5173:1 5176:1 5177:1 5184:3 5186:1 5190:3 5195:2 5196:1 5200:1 5203:3 5219:1 5220:1 5227:1 5237:1 5245:2 5249:6 5255:1 5280:1 5282:1 5285:1 5302:1 5306:1 5307:1 5316:1 5325:1 5328:1 5346:1 5351:4 5358:8 5362:1 5365:1 5369:2 5371:3 5386:2 5394:1 5404:2 5423:1 5429:1 5434:2 5438:2 5442:1 5444:1 5453:1 5480:1 5493:1 5494:2 5501:1 5510:1 5511:3 5524:2 5525:2 5526:1 5534:1 5535:2 5538:2 5540:2 5548:1 5551:1 5552:2 5556:2 5562:2 5563:1 5564:1 5569:1 5576:1 5582:3 5584:1 5586:1 5588:1 5589:1 5593:1 5599:1 5607:1 5615:3 5629:5 5639:1 5640:1 5651:1 5663:5 5678:1 5680:1 5681:5 5687:1 5694:1 5701:3 5702:1 5705:1 5718:3 5720:4 5721:1 5728:2 5744:1 5749:1 5762:1 5773:1 5785:1 5790:1 5797:1 5801:1 5802:1 5812:2 5813:1 5843:4 5850:1 5851:1 5852:1 5855:1 5868:1 5877:2 5881:2 5898:1 5920:1 5934:1 5942:1 5947:4 5949:1 5969:3 5971:1 5972:20 5987:5 5992:4 6000:1 6001:1 6003:1 6005:1 6006:5 6007:1 6009:2 6017:1 6039:3 6040:1 6043:1 6053:1 6056:1 6058:1 6078:3 6094:1 6102:1 6110:1 6117:3 6130:2 6137:2 6138:1 6142:1 6149:1 6150:1 6153:3 6156:2 6176:7 6178:1 6182:1 6192:1 6197:1 6199:1 6220:1 6244:1 6245:2 6247:1 6259:5 6262:1 6263:1 6264:1 6265:2 6267:1 6269:2 6270:4 6273:1 6274:3 6275:3 6276:8 6277:1 6279:2 6280:1 6282:4 6283:17 6284:5 6286:3 6316:1 6334:3 6379:4 6381:1 6383:1 6389:1 6419:1 6420:2 6426:1 6435:2 6482:3 6487:1 6490:1 6493:2 6502:1 6507:1 6513:1 6531:2 6536:3 6537:1 6542:1 6554:1 6556:1 6558:1 6565:4 6580:1 6581:1 6585:1 6589:1 6594:1 6598:1 6609:2 6613:4 6652:1 6653:2 6654:2 6661:2 6668:1 6671:3 6677:1 6679:2 6680:1 6689:1 6699:10 6715:2 6722:4 6728:1 6741:1 6744:1 6751:1 6757:1 6769:1 6772:1 6777:1 6795:1 6810:4 6811:1 6823:4 6851:1 6854:3 6855:3 6860:3 6866:1 6869:1 6871:1 6885:3 6886:2 6903:1 6906:1 6914:2 6918:1 6919:2 6922:2 6927:1 6932:1 6938:1 6939:1 6944:1 6948:2 6955:1 6973:1 6985:1 6987:1 6999:1 7009:1 7028:1 7036:1 7049:1 7050:15 7052:2 7061:2 7067:1 7073:2 7074:3 7091:1 7097:2 7099:3 7102:2 7109:1 7124:1 7125:1 7155:2 7169:1 7174:1 7180:1 7198:6 7203:1 7218:2 7234:1 7248:2 7263:3 7274:1 7278:1 7287:6 7288:1 7290:1 7297:1 7303:1 7309:1 7311:1 7319:1 7322:1 7326:2 7334:6 7346:4 7347:1 7352:1 7367:4 7371:1 7382:3 7383:1 7386:2 7392:1 7401:1 7407:2 7411:1 7427:1 7463:3 7485:2 7496:1 7499:2 7510:1 7516:1 7518:1 7548:1 7554:3 7555:15 7556:8 7560:1 7568:1 7570:2 7576:1 7580:3 7582:4 7584:2 7603:5 7604:1 7620:69 7622:2 7643:11 7644:16 7645:1 7648:4 7657:1 7665:1 7667:1 7671:2 7682:1 7685:1 7686:1 7690:1 7692:1 7696:1 7700:1 7710:2 7719:2 7720:4 7725:2 7734:1 7751:1 7755:1 7758:2 7773:2 7786:1 7804:1 7807:1 7826:2 7833:1 7851:3 7862:1 7871:1 7874:1 7878:3 7892:1 7897:8 7912:1 7928:1 7931:1 7943:1 7962:1 7967:1 7994:1 8004:1 8007:1 8019:2 8032:1 8035:1 8037:1 8043:3 8044:3 8045:2 8046:1 8062:2 8063:2 8081:1 8082:1 8086:1 8087:1 8093:1 8105:1 8107:2 8110:1 8116:2 8122:1 8124:2 8130:2 8131:1 8136:1 8141:1 8142:5 8145:1 8154:1 8156:13 8180:3 8184:2 8186:2 8194:1 8205:3 8230:1 8236:1 8244:2 8254:1 8270:1 8299:1 8301:2 8311:2 8319:2 8322:1 8330:2 8334:1 8336:1 8340:1 8358:1 8367:5 8369:2 8376:4 8379:1 8383:3 8387:3 8394:1 8395:4 8401:1 8405:1 8412:1 8422:2 8430:5 8433:2 8438:2 8441:2 8445:1 8449:1 8460:1 8468:1 8471:1 8480:1 8485:1 8490:1 8495:1 8497:1 8500:3 8501:9 8503:4 8504:1 8505:3 8508:3 8510:8 8512:3 8513:4 8514:1 8516:2 8525:3 8526:2 8536:1 8543:4 8549:2 8550:10 8559:1 8565:1 8567:3 8571:1 8572:2 8575:2 8578:2 8582:2 8586:5 8587:1 8604:2 8611:1 8639:2 8640:2 8641:1 8647:1 8655:1 8657:1 8659:1 8669:1 8679:1 8683:1 8688:1 8710:1 8719:2 8725:2 8728:1 8739:1 8751:1 8756:3 8762:1 8772:2 8779:3 8801:1 8805:2 8808:1 8810:2 8811:5 8815:3 8827:3 8833:1 8840:1 8846:1 8857:1 8914:1 8915:1 8921:1 8929:1 8936:2 8950:7 8952:1 8954:2 8962:1 8967:1 8969:2 8971:1 8972:1 8992:3 9001:1 9009:1 9011:1 9019:1 9022:2 9023:1 9035:3 9040:1 9050:1 9057:1 9060:1 9065:1 9068:1 9069:1 9077:3 9107:1 9115:4 9121:1 9128:1 9130:1 9132:1 9134:1 9139:3 9142:2 9145:1 9151:1 9161:2 9162:1 9166:1 9176:1 9196:1 9200:2 9204:2 9207:8 9209:1 9210:1 9213:1 9216:3 9219:1 9223:1 9226:40 9230:4 9231:2 9236:1 9246:2 9247:1 9260:2 9261:1 9264:1 9275:2 9286:4 9298:3 9305:1 9312:1 9314:1 9319:1 9329:1 9338:2 9345:1 9349:1 9360:2 9363:9 9364:1 9365:2 9382:1 9390:1 9391:1 9392:1 9421:1 9427:1 9433:7 9435:1 9437:1 9444:2 9448:1 9449:1 9469:1 9490:1 9491:1 9492:1 9497:1 9528:1 9529:1 9537:1 9539:1 9544:1 9551:1 9555:3 9558:1 9559:1 9567:1 9568:1 9569:6 9574:1 9582:1 9585:1 9586:6 9594:2 9601:3 9608:2 9622:1 9634:2 9652:1 9663:9 9668:1 9675:1 9676:1 9677:6 9687:2 9689:2 9697:1 9700:1 9702:1 9704:2 9712:1 9713:1 9725:2 9746:3 9772:1 9780:1 9784:1 9789:1 9790:1 9815:1 9818:1 9821:1 9823:2 9829:1 9847:7 9850:1 9856:1 9862:1 9865:1 9871:4 9875:1 9877:2 9878:2 9880:1 9883:2 9885:1 9887:1 9890:1 9898:4 9911:1 9913:1 9917:1 9919:1 9921:1 9923:1 9924:3 9928:3 9929:1 9932:2 9933:2 9935:1 9938:1 9939:1 9948:1 9954:1 9956:1 9960:1 9968:8 9986:1 9987:1 9996:1 10017:1 10019:2 10030:1 10037:1 10038:1 10043:1 10052:1 10057:3 10059:1 10065:1 10073:1 10094:1 10096:2 10098:1 10117:1 10122:1 10124:2 10125:1 10126:1 10135:2 10157:1 10178:1 10183:1 10188:1 10191:1 10195:2 10200:1 10228:2 10234:1 10241:2 10263:2 10265:1 10266:6 10280:1 10286:4 10297:2 10302:1 10305:2 10328:2 10329:1 10347:5 10351:2 10359:2 10370:1 10372:2 10402:1 10405:1 10409:1 10414:1 10436:3 10448:1 10463:1 10466:2 10470:1 10475:1 10478:2 10484:2 10486:1 10488:2 10493:1 10500:2 10501:1 10504:4 10507:2 10509:1 10513:9 10521:1 10523:1 10524:1 10526:1 10533:1 10537:1 10539:3 10541:1 10550:2 10554:3 10555:3 10557:4 10558:1 10564:1 10573:3 10582:4 10583:4 10584:1 10590:2 10592:2 10593:1 10618:1 10621:1 10628:1 10639:1 10641:1 10657:7 10665:5 10677:2 10683:4 10686:15 10736:1 10737:1 10740:1 10741:1 10747:1 10748:2 10768:1 10783:4 10787:1 10790:1 10805:1 10824:1 10827:1 10835:2 10839:1 10846:1 10856:1 10857:1 10869:1 10883:1 10890:1 10901:1 10902:2 10903:5 10905:5 10909:2 10910:2 10918:1 10921:3 10931:2 10937:1 10943:2 10946:1 10947:1 10953:1 10962:1 10963:1 10969:1 10980:1 10989:9 10992:1 10993:1 11005:1 11010:8 11014:1 11016:2 11018:2 11021:1 11040:2 11062:1 11063:2 11064:2 11066:1 11070:1 11071:1 11080:1 11083:1 11085:1 11086:1 11094:1 11100:1 11106:1 11107:1 11118:1 11131:1 11138:2 11145:1 11147:1 11152:1 11163:1 11166:2 11173:1 11175:1 11177:1 11188:1 11197:1 11203:5 11208:1 11216:1 11230:2 11232:1 11234:1 11248:1 11260:1 11268:2 11274:1 11275:1 11278:3 11284:1 11285:1 11287:1 11300:2 11301:1 11302:2 11303:1 11308:2 11315:4 11317:1 11333:11 11341:1 11367:3 11370:14 11371:1 11385:2 11390:1 11400:4 11401:1 11407:2 11419:1 11423:1 11430:2 11436:1 11442:1 11444:2 11466:2 11468:1 11469:1 11470:1 11476:1 11477:2 11479:1 11481:2 11496:1 11501:1 11506:1 11509:2 11514:1 11520:3 11526:4 11530:8 11547:10 11549:1 11550:7 11580:1 11587:1 11600:2 11601:2 11603:3 11606:1 11607:1 11609:3 11611:2 11614:1 11615:2 11619:4 11620:1 11622:1 11628:1 11631:2 11632:3 11633:1 11636:2 11641:3 11645:1 11649:1 11664:7 11666:2 11671:1 11684:8 11690:2 11693:1 11696:1 11710:1 11711:2 11716:1 11727:1 11734:1 11755:1 11772:2 11789:2 11801:1 11824:2 11826:1 11852:1 11858:1 11862:1 11865:5 11871:1 11877:4 11882:1 11891:1 11908:1 11916:1 11924:1 11931:3 11936:5 11938:1 11952:1 11973:5 11977:1 11990:2 11997:1 12004:1 12005:1 12010:1 12025:1 12045:1 12058:1 12076:2 12082:1 12085:1 12100:1 12107:1 12109:1 12110:3 12111:4 12115:2 12124:1 12125:2 12132:1 12141:2 12142:1 12154:1 12156:2 12160:1 12165:4 12166:5 12172:3 12176:1 12178:2 12184:2 12206:1 12219:1 12239:1 12243:1 12250:1 12263:1 12272:1 12276:2 12281:10 12291:1 12297:1 12302:2 12318:1 12323:3 12328:1 12337:1 12338:1 12345:1 12346:1 12349:2 12361:3 12362:2 12365:1 12376:2 12380:2 12398:2 12405:1 12420:1 12423:4 12431:3 12435:1 12457:1 12458:1 12464:1 12468:1 12472:1 12476:1 12477:7 12480:1 12491:1 12493:1 12495:1 12508:1 12512:1 12515:1 12526:2 12534:1 12586:1 12593:2 12607:1 12608:8 12621:1 12633:1 12635:1 12636:1 12644:1 12648:20 12654:1 12656:1 12658:1 12668:3 12671:7 12676:1 12681:2 12701:1 12702:1 12707:1 12708:4 12733:2 12752:1 12764:1 12769:7 12772:2 12782:1 12787:1 12789:1 12790:1 12791:1 12796:3 12797:1 12813:2 12827:5 12830:1 12831:1 12835:1 12837:1 12860:1 12861:1 12885:1 12888:1 12914:1 12948:1 12949:7 12954:1 12960:1 12984:1 12989:1 12999:1 13042:2 13045:8 13049:1 13062:1 13066:4 13068:1 13070:1 13072:1 13076:8 13080:4 13086:1 13087:1 13093:2 13094:6 13101:1 13120:1 13128:2 13131:1 13133:1 13142:2 13143:1 13144:1 13166:5 13170:1 13188:2 13194:1 13206:2 13211:2 13213:1 13215:1 13222:3 13224:8 13225:1 13231:1 13232:6 13233:2 13244:1 13250:1 13251:1 13252:2 13257:2 13263:2 13275:3 13278:1 13282:1 13283:1 13287:2 13301:2 13302:7 13306:1 13310:1 13320:3 13331:1 13341:2 13346:2 13364:2 13372:8 13376:1 13396:1 13401:1 13416:4 13420:1 13421:6 13440:1 13454:2 13468:4 13473:1 13488:1 13490:1 13503:1 13506:1 13520:2 13524:1 13533:1 13556:1 13557:3 13561:2 13570:2 13571:1 13592:1 13595:1 13599:7 13600:1 13601:2 13606:8 13607:2 13610:2 13614:1 13619:1 13620:1 13628:1 13633:1 13637:1 13654:5 13674:1 13680:3 13691:2 13694:2 13697:1 13698:1 13723:1 13730:1 13733:8 13745:1 13764:4 13779:4 13782:1 13784:1 13788:2 13799:1 13802:1 13813:1 13827:7 13832:4 13833:1 13838:2 13847:2 13867:1 13869:2 13883:1 13886:1 13895:1 13904:7 13931:11 13942:1 13963:1 13974:1 13980:2 13986:1 13987:2 14006:2 14007:2 14018:1 14024:1 14029:1 14036:2 14054:3 14076:7 14086:2 14089:1 14107:3 14114:1 14119:1 14126:1 14134:1 14140:1 14152:1 14161:1 14170:1 14179:4 14180:1 14181:1 14196:1 14212:1 14221:1 14223:1 14234:1 14235:1 14245:1 14255:1 14266:3 14274:2 14284:2 14295:1 14297:1 14299:3 14312:4 14313:1 14317:4 14318:9 14324:1 14325:9 14335:5 14339:3 14340:2 14347:1 14358:1 14360:1 14361:1 14376:1 14385:1 14427:2 14433:1 14434:1 14442:1 14449:6 14476:1 14482:3 14485:1 14489:2 14490:4 14492:1 14493:4 14498:4 14502:1 14507:1 14514:2 14523:1 14532:1 14533:3 14537:1 14551:1 14554:1 14573:1 14587:1 14591:4 14600:3 14614:2 14616:3 14623:3 14624:1 14629:2 14636:2 14637:2 14647:6 14650:1 14656:1 14664:3 14674:2 14677:1 14683:2 14694:1 14700:1 14701:1 14725:1 14728:1 14761:1 14775:1 14780:1 14785:2 14798:1 14803:2 14820:4 14821:1 14823:2 14824:1 14836:1 14837:2 14839:1 14881:2 14883:1 14891:11 14893:1 14910:3 14912:2 14915:1 14916:3 14923:1 14935:1 14936:11 14938:3 14961:2 14970:2 14984:2 14986:1 14987:1 14995:1 14999:1 15000:1 15020:8 15022:1 15024:1 15030:1 15037:1 15055:2 15071:1 15085:1 15109:1 15117:1 15123:7 15125:1 15129:1 15130:1 15134:1 15144:1 15145:1 15146:2 15152:1 15158:4 15160:1 15172:1 15173:1 15177:2 15178:1 15180:1 15186:1 15207:1 15217:1 15220:1 15223:1 15231:1 15233:1 15238:1 15241:1 15244:1 15245:3 15247:1 15251:1 15259:2 15275:1 15282:1 15301:2 15309:1 15322:1 15332:15 15338:2 15345:2 15380:1 15385:4 15395:1 15398:1 15403:1 15404:5 15414:7 15420:1 15424:1 15431:1 15435:1 15436:1 15440:1 15453:2 15455:1 15459:2 15471:1 15482:2 15496:1 15508:1 15509:1 15512:1 15527:1 15539:1 15556:1 15563:6 15568:2 15571:1 15578:13 15581:4 15590:2 15591:3 15595:1 15598:1 15607:2 15614:5 15622:2 15624:1 15625:11 15626:4 15631:1 15637:1 15642:1 15644:1 15678:1 15679:2 15684:1 15687:2 15706:1 15710:1 15711:1 15715:1 15717:2 15724:1 15725:4 15742:1 15745:10 15750:1 15755:1 15757:2 15763:2 15767:1 15768:1 15777:1 15785:3 15814:2 15823:1 15831:6 15832:3 15835:1 15837:1 15839:1 15871:1 15877:1 15879:7 15893:1 15896:1 15906:1 15909:7 15911:3 15913:1 15923:3 15957:2 15965:1 15967:1 15973:4 16002:2 16008:1 16014:1 16015:1 16018:1 16026:1 16029:19 16030:1 16034:2 16048:5 16050:2 16051:2 16055:1 16056:2 16067:1 16084:1 16095:2 16103:1 16119:10 16122:1 16127:1 16137:2 16146:1 16147:1 16149:1 16150:1 16151:1 16152:1 16154:1 16163:1 16164:1 16170:2 16172:1 16177:3 16181:1 16190:2 16194:1 16196:1 16237:1 16242:4 16270:1 16285:5 16288:1 16289:1 16290:2 16310:1 16329:1 16334:1 16336:1 16338:1 16353:1 16363:1 16383:1 16393:1 16398:1 16400:1 16403:6 16434:2 16475:1 16482:1 16488:1 16489:1 16505:1 16511:1 16513:1 16527:1 16528:1 16542:1 16543:1 16546:1 16554:1 16555:4 16573:1 16575:1 16588:1 16589:1 16597:1 16604:2 16605:1 16608:1 16614:1 16639:1 16646:1 16655:1 16662:1 16666:3 16669:1 16672:1 16675:2 16685:4 16697:1 16702:1 16707:2 16708:1 16710:1 16714:3 16716:3 16718:1 16727:1 16738:1 16747:1 16758:1 16759:3 16761:1 16763:1 16776:1 16787:1 16789:3 16801:1 16802:1 16804:1 16826:1 16828:1 16830:1 16840:5 16843:2 16844:6 16851:1 16867:1 16872:1 16874:1 16883:1 16899:1 16905:1 16908:1 16915:8 16929:2 16930:1 16932:5 16939:1 16942:1 16947:2 16966:5 16974:2 16977:5 16990:1 16991:1 16995:2 17010:1 17013:2 17015:1 17036:1 17042:1 17046:2 17050:2 17053:2 17059:6 17064:1 17067:2 17076:1 17087:1 17091:8 17092:1 17106:1 17107:2 17110:1 17121:1 17136:3 17138:2 17155:5 17156:3 17167:1 17172:1 17179:1 17181:2 17183:1 17186:3 17187:3 17198:3 17199:7 17200:1 17207:4 17210:1 17212:1 17244:1 17247:1 17251:1 17265:1 17270:2 17277:2 17281:1 17327:1 17342:1 17343:1 17345:2 17346:2 17360:1 17363:4 17369:2 17373:1 17374:2 17397:1 17401:1 17417:1 17421:1 17422:2 17442:1 17445:4 17447:4 17448:5 17454:6 17455:1 17456:1 17463:7 17468:2 17475:3 17476:2 17477:1 17509:1 17511:2 17522:5 17523:4 17538:1 17555:1 17558:2 17560:3 17575:1 17585:2 17587:1 17592:7 17597:1 17598:1 17604:2 17605:1 17606:1 17616:2 17631:1 17636:1 17644:2 17647:2 17648:2 17652:1 17655:2 17656:1 17662:1 17664:3 17665:5 17667:1 17669:1 17670:1 17674:1 17681:1 17683:4 17684:2 17687:1 17691:1 17692:1 17698:1 17699:1 17707:1 17721:1 17722:3 17747:1 17753:2 17764:1 17766:2 17767:9 17772:4 17778:1 17781:41 17783:1 17785:1 17787:1 17790:2 17794:1 17803:1 17812:5 17819:1 17822:1 17831:1 17838:1 17845:1 17851:2 17852:1 17855:1 17860:4 17867:1 17871:1 17872:5 17873:1 17875:1 17882:1 17886:1 17896:6 17902:1 17907:1 17922:1 17931:5 17940:1 17962:1 17967:1 17977:4 17979:1 17987:1 17989:1 17990:1 17992:1 17994:2 17998:2 18007:5 18009:1 18011:2 18019:1 18032:3 18041:1 18045:1 18056:2 18058:1 18067:1 18080:1 18084:1 18098:1 18114:1 18117:1 18120:1 18131:1 18133:1 18142:1 18150:2 18152:3 18167:1 18169:3 18170:1 18178:1 18184:1 18207:1 18212:3 18219:5 18220:1 18228:2 18239:1 18249:3 18280:1 18288:1 18315:5 18323:1 18331:1 18340:2 18348:2 18357:1 18380:2 18381:5 18382:3 18390:1 18399:2 18410:1 18417:9 18424:1 18435:1 18444:1 18449:1 18459:1 18461:1 18465:1 18470:1 18471:3 18476:2 18478:5 18479:1 18481:1 18495:1 18498:1 18499:2 18504:5 18509:3 18512:3 18516:1 18519:2934 18524:1 18534:1 18538:1 18572:4 18573:1 18582:3 18590:1 18607:2 18608:1 18619:1 18624:1 18643:2 18648:2 18657:1 18668:2 18684:2 18690:1 18691:1 18702:1 18708:4 18715:7 18720:1 18725:5 18727:5 18728:5 18731:1 18743:1 18748:2 18763:1 18792:2 18799:1 18802:8 18808:2 18810:2 18814:1 18816:1 18840:1 18842:40 18850:1 18861:1 18863:7 18898:1 18904:1 18907:1 18915:1 18919:1 18920:1 18927:1 18930:2 18938:1 18947:1 18950:1 18968:1 18969:1 18971:1 18982:2 18991:5 19007:1 19008:2 19017:4 19033:2 19055:4 19061:1 19065:1 19079:1 19089:1 19091:1 19110:2 19113:1 19121:1 19135:2 19140:2 19142:4 19168:2 19172:1 19174:4 19176:4 19180:1 19187:1 19190:4 19192:3 19193:1 19197:5 19202:1 19210:1 19218:1 19228:7 19235:1 19239:1 19256:2 19257:2 19271:2 19273:1 19277:2 19289:2 19291:2 19293:5 19298:14 19314:1 19315:1 19335:8 19336:1 19345:1 19348:1 19350:2 19353:1 19359:1 19370:1 19371:2 19400:1 19412:2 19414:2 19420:3 19422:1 19442:2 19475:1 19482:1 19486:1 19489:1 19494:2 19497:1 19507:5 19508:1 19511:1 19513:1 19515:3 19516:2 19531:3 19534:1 19549:1 19550:6 19551:1 19557:1 19563:3 19566:1 19567:1 19573:1 19592:2 19600:1 19605:1 19628:4 19632:1 19634:2 19661:3 19674:1 19680:1 19708:3 19719:1 19720:1 19724:1 19732:2 19735:4 19740:1 19742:1 19745:1 19751:1 19752:1 19754:1 19760:2 19767:2 19771:5 19775:8 19777:1 19778:3 19784:5 19794:1 19797:2 19807:1 19816:1 19818:1 19829:1 19833:1 19839:3 19859:1 19862:1 19866:1 19876:2 19881:3 19883:1 19904:2 19909:5 19918:2 19932:1 19936:2 19942:1 19948:1 19949:5 19953:1 19964:1 19966:1 19978:5 19979:1 19992:1 19996:1 20001:2 20003:2 20004:2 20007:1 20017:1 20020:1 20031:2 20032:1 20036:1 20037:1 20052:2 20053:1 20060:1 20061:5 20068:1 20074:1 20079:1 20084:3 20086:1 20094:3 20103:1 20117:2 20118:2 20137:2 20159:6 20170:1 20175:1 20176:1 20187:1 20211:10 20212:4 20218:6 20226:2 20231:1 20237:1 20238:1 20272:1 20276:1 20281:1 20283:3 20293:2 20299:1 20302:1 20313:1 20329:1 20337:1 20345:1 20362:1 20373:1 20388:1 20395:1 20400:1 20401:1 20404:4 20406:4 20408:1 20412:1 20420:1 20422:1 20428:1 20443:1 20453:1 20454:1 20455:9 20465:2 20466:1 20467:1 20468:4 20474:2 20495:1 20525:1 20530:1 20531:4 20532:1 20542:1 20545:1 20547:2 20567:4 20575:1 20577:1 20594:1 20599:1 20600:1 20601:1 20604:1 20626:2 20631:2 20639:1 20643:2 20644:1 20652:1 20653:1 20656:1 20658:5 20671:1 20672:1 20677:4 20679:2 20682:1 20683:1 20685:2 20686:1 20692:1 20697:1 20698:1 20701:1 20705:7 20710:1 20715:1 20716:1 20721:3 20722:4 20730:1 20734:1 20738:1 20747:7 20756:1 20770:1 20775:2 20780:2 20781:1 20782:5 20783:1 20797:3 20798:1 20823:3 20833:1 20846:1 20857:1 20862:1 20882:1 20900:2 20907:2 20910:1 20918:1 20925:1 20945:1 20948:2 20957:2 20979:8 20985:1 20986:1 20988:1 20990:1 20992:1 20997:1 21010:2 21016:1 21019:2 21029:1 21049:2 21062:2 21064:1 21075:1 21079:1 21080:1 21085:1 21088:1 21091:2 21093:1 21100:1 21107:1 21118:1 21122:1 21137:3 21142:2 21144:1 21158:1 21159:1 21165:1 21169:3 21174:1 21193:1 21196:1 21198:2 21200:1 21201:1 21211:1 21248:1 21250:1 21257:2 21265:1 21270:1 21276:2 21284:2 21285:1 21288:1 21289:1 21313:1 21320:1 21332:1 21339:1 21345:1 21357:1 21358:3 21359:1 21371:6 21372:1 21373:1 21374:2 21380:2 21381:2 21386:6 21387:3 21389:3 21392:1 21397:1 21405:1 21406:1 21407:1 21409:1 21410:2 21415:3 21434:1 21440:1 21442:2 21444:3 21448:1 21459:1 21472:5 21486:1 21488:2 21490:2 21493:1 21498:4 21499:2 21502:1 21503:2 21504:1 21506:1 21509:4 21518:2 21519:1 21520:1 21523:2 21528:1 21538:1 21544:1 21548:11 21551:1 21567:1 21568:2 21569:5 21580:2 21599:1 21616:1 21634:2 21647:2 21648:1 21654:2 21661:1 21663:4 21664:1 21670:1 21675:13 21680:1 21681:1 21684:2 21691:1 21695:3 21705:1 21712:1 21714:4 21715:1 21724:1 21742:1 21750:4 21770:1 21771:1 21772:1 21778:1 21804:1 21806:2 21809:1 21811:1 21812:8 21822:1 21824:1 21826:1 21827:2 21829:2 21830:1 21838:1 21839:1 21845:1 21846:8 21847:1 21848:3 21862:1 21867:2 21870:1 21877:2 21885:1 21901:2 21916:2 21919:1 21931:1 21937:5 21941:1 21952:1 21967:1 21971:2 21975:1 21994:3 21999:1 22009:5 22012:2 22016:4 22017:3 22020:2 22021:2 22025:2 22029:1 22036:1 22051:1 22052:1 22059:3 22061:1 22065:3 22077:2 22080:2 22096:5 22115:1 22132:1 22135:1 22144:1 22147:3 22150:3 22160:1 22173:5 22174:7 22176:1 22178:3 22179:2 22180:2 22181:1 22184:1 22189:3 22190:1 22205:1 22212:2 22222:1 22223:5 22230:1 22236:1 22239:2 22243:3 22248:3 22252:3 22257:2 22258:5 22265:1 22277:2 22286:1 22290:1 22291:1 22293:1 22294:3 22295:1 22302:1 22307:1 22315:2 22318:1 22329:2 22331:1 22332:1 22336:1 22337:1 22342:2 22345:3 22349:1 22357:1 22362:4 22368:1 22390:1 22391:9 22392:1 22401:1 22403:1 22406:2 22412:1 22414:41 22419:1 22420:4 22422:4 22425:2 22426:3 22427:5 22430:1 22432:1 22434:2 22451:1 22453:4 22455:1 22461:1 22464:3 22467:1 22473:3 22493:3 22495:2 22496:1 22501:1 22507:3 22510:1 22529:5 22538:1 22542:1 22547:1 22579:6 22581:1 22585:1 22593:11 22599:3 22616:3 22621:2 22634:1 22646:1 22672:1 22674:2 22675:1 22676:3 22679:1 22680:1 22687:1 22691:3 22692:1 22695:1 22699:2 22705:1 22706:1 22721:4 22726:2 22729:1 22734:1 22736:1 22737:1 22758:1 22776:1 22777:3 22782:1 22784:1 22788:1 22808:1 22837:1 22848:1 22866:1 22867:1 22878:1 22886:2 22896:2 22902:1 22917:1 22919:1 22921:1 22931:2 22935:1 22947:2 22948:2 22955:1 22962:2 22964:1 22965:2 22971:2 22980:3 22981:1 22982:1 22991:1 22998:3 23001:5 23021:4 23024:1 23027:1 23033:3 23038:1 23043:1 23057:1 23060:1 23069:1 23072:1 23099:1 23130:3 23143:1 23148:1 23161:1 23165:2 23175:1 23184:3 23188:3 23195:1 23196:1 23207:3 23227:3 23234:3 23235:1 23239:1 23241:2 23248:1 23254:1 23261:1 23275:2 23283:3 23297:1 23299:5 23302:1 23305:1 23310:3 23313:2 23326:2 23340:1 23343:1 23349:2 23351:2 23352:1 23361:13 23368:1 23394:2 23403:1 23408:1 23420:1 23437:2 23439:1 23441:1 23452:2 23467:1 23480:2 23482:3 23488:2 23494:2 23504:1 23517:2 23519:1 23520:1 23527:1 23532:6 23545:1 23558:1 23559:2 23568:1 23581:1 23591:1 23592:2 23597:1 23600:4 23604:2 23616:11 23618:2 23620:1 23621:1 23635:10 23645:1 23647:1 23651:1 23659:2 23667:1 23711:1 23716:1 23720:1 23722:1 23732:3 23736:2 23744:1 23749:2 23758:2 23763:2 23774:1 23779:1 23785:1 23798:1 23801:2 23806:1 23814:1 23831:1 23832:1 23842:1 23854:1 23874:1 23875:4 23884:6 23885:1 23886:1 23896:4 23899:1 23910:4 23912:1 23918:2 23919:2 23920:1 23928:1 23932:1 23939:2 23941:2 23945:1 23966:3 23967:1 23973:1 23979:1 23992:1 23994:3 23995:2 23996:1 24001:1 24025:4 24030:1 24044:1 24047:3 24052:2 24057:2 24058:3 24059:1 24064:1 24068:1 24073:3 24084:1 24093:1 24098:1 24101:1 24114:1 24124:1 24146:1 24148:1 24150:3 24156:1 24159:2 24160:1 24161:1 24162:8 24164:3 24165:1 24166:5 24167:2 24171:1 24172:2 24174:2 24175:7 24179:2 24182:2 24183:4 24187:2 24193:2 24206:6 24213:2 24220:1 24233:1 24236:3 24237:1 24242:1 24247:3 24258:3 24263:7 24267:3 24291:2 24295:1 24297:1 24306:1 24307:3 24321:1 24324:1 24326:1 24342:1 24345:1 24347:1 24348:3 24362:1 24390:1 24401:1 24402:1 24419:3 24440:5 24448:1 24450:6 24453:1 24464:3 24466:1 24470:1 24477:1 24496:1 24499:1 24508:1 24512:2 24513:1 24521:1 24524:1 24531:1 24547:3 24548:1 24549:1 24557:1 24558:1 24571:1 24582:2 24584:4 24609:2 24623:1 24626:1 24630:3 24640:1 24645:1 24648:1 24654:1 24658:2 24665:2 24707:7 24746:1 24757:2 24761:1 24763:2 24772:1 24780:1 24783:4 24791:1 24793:1 24797:2 24810:1 24816:1 24822:4 24876:1 24878:1 24899:1 24900:2 24912:4 24915:11 24946:13 24955:1 24969:10 24976:1 24977:1 24990:1 24997:1 25005:1 25015:2 25019:1 25028:1 25038:2 25041:1 25042:1 25045:1 25046:1 25047:1 25066:1 25071:3 25085:1 25089:1 25093:2 25095:1 25099:2 25104:1 25109:1 25111:2 25114:6 25122:1 25126:2 25137:2 25139:2 25141:13 25144:5 25145:2 25155:1 25162:1 25167:2 25168:1 25170:1 25177:2 25182:2 25186:2 25214:2 25219:1 25225:5 25230:1 25240:1 25247:5 25248:1 25258:2 25259:2 25308:1 25319:2 25320:1 25335:1 25342:1 25345:1 25346:1 25356:1 25361:1 25363:1 25384:3 25386:1 25400:1 25401:1 25410:1 25412:4 25413:1 25416:2 25417:1 25425:1 25436:7 25444:1 25465:1 25468:1 25473:1 25474:1 25479:2 25488:1 25492:1 25506:1 25515:1 25557:3 25561:1 25569:1 25576:4 25590:1 25600:1 25618:1 25626:1 25657:1 25663:1 25665:1 25676:1 25679:3 25680:2 25687:1 25691:1 25698:1 25699:1 25700:1 25701:1 25708:2 25718:2 25726:1 25729:1 25742:1 25752:1 25757:1 25759:2 25781:1 25786:2 25796:5 25804:1 25812:1 25816:2 25826:1 25829:1 25835:2 25838:5 25850:1 25859:2 25864:2 25865:5 25880:2 25882:1 25901:1 25903:1 25906:2 25910:1 25916:2 25929:1 25930:1 25936:4 25943:1 25953:2 25971:2 25988:1 25992:7 25994:1 26018:3 26021:11 26024:1 26027:1 26033:1 26038:1 26040:1 26042:1 26048:1 26059:2 26074:1 26087:1 26088:2 26093:4 26107:2 26112:2 26113:4 26114:1 26118:2 26121:1 26122:1 26123:1 26127:3 26128:3 26133:1 26162:1 26166:5 26170:1 26175:1 26182:1 26185:1 26188:1 26190:2 26193:1 26213:3 26221:2 26222:1 26225:2 26247:2 26249:2 26261:2 26262:1 26267:1 26278:1 26285:1 26290:3 26300:1 26307:1 26309:2 26316:1 26332:2 26337:1 26338:1 26339:1 26341:1 26352:1 26366:1 26368:3 26373:5 26392:2 26397:1 26430:1 26453:1 26461:1 26474:1 26476:2 26478:1 26479:1 26482:1 26499:1 26504:1 26524:2 26526:2 26532:2 26542:1 26547:2 26548:1 26551:1 26556:1 26559:3 26566:1 26569:1 26571:1 26574:2 26582:1 26588:2 26592:1 26599:1 26611:1 26618:1 26619:1 26621:1 26622:1 26624:1 26631:1 26641:2 26654:2 26657:2 26658:1 26662:1 26667:6 26681:4 26700:6 26707:1 26709:5 26710:1 26721:1 26723:2 26724:1 26736:1 26737:1 26743:1 26759:5 26772:2 26778:1 26787:1 26788:11 26807:1 26817:1 26838:1 26840:2 26844:1 26845:2 26847:1 26848:3 26850:1 26856:13 26866:1 26890:1 26894:7 26920:1 26933:2 26934:1 26938:1 26954:2 26960:8 26965:2 26966:1 26967:3 26981:1 26982:1 26985:2 26988:1 26994:4 27003:1 27006:1 27016:3 27022:1 27030:2 27033:1 27036:1 27052:1 27054:1 27056:1 27057:1 27058:3 27061:1 27064:1 27069:2 27070:1 27079:1 27090:3 27103:2 27108:1 27113:1 27122:1 27135:2 27136:1 27141:2 27143:1 27145:1 27147:1 27149:2 27160:2 27165:2 27169:1 27177:1 27187:2 27188:1 27207:1 27229:1 27247:1 27275:1 27279:3 27297:1 27298:1 27305:1 27330:1 27332:1 27340:1 27342:2 27365:9 27367:1 27368:1 27369:2 27376:1 27385:1 27392:1 27408:1 27412:1 27419:1 27422:2 27447:1 27454:1 27465:1 27472:1 27474:1 27481:2 27500:1 27517:1 27518:1 27532:1 27536:3 27549:1 27560:1 27563:7 27575:1 27579:1 27595:1 27597:4 27603:1 27612:1 27620:1 27627:2 27636:1 27647:2 27658:1 27661:1 27662:1 27673:1 27674:1 27675:2 27678:1 27682:2 27687:35 27689:4 27692:5 27694:1 27695:3 27702:2 27707:1 27724:11 27733:1 27739:2 27777:3 27789:2 27804:1 27808:2 27820:1 27821:5 27832:7 27838:2 27859:14 27863:2 27867:4 27869:2 27874:2 27878:1 27879:5 27885:1 27887:1 27889:1 27893:2 27897:1 27900:2 27905:1 27906:2 27907:2 27909:1 27917:2 27923:2 27930:1 27934:3 27935:2 27943:1 27946:1 27948:4 27951:1 27955:1 27960:1 27961:1 27964:1 27968:1 27969:3 27975:1 27989:1 28003:1 28011:2 28019:1 28028:2 28030:1 28031:1 28041:1 28046:1 28050:1 28051:1 28054:3 28058:1 28068:5 28075:1 28082:2 28100:1 28101:1 28102:2 28118:1 28124:2 28126:1 28127:2 28128:4 28131:1 28143:1 28160:1 28169:1 28174:1 28177:1 28178:1 28180:1 28183:3 28187:6 28191:2 28193:1 28196:1 28197:2 28202:1 28203:1 28204:1 28208:4 28209:1 28214:2 28215:1 28217:2 28218:1 28223:1 28230:1 28244:1 28264:1 28268:1 28286:1 28292:1 28315:1 28319:2 28320:1 28326:3 28341:1 28350:1 28356:1 28359:2 28362:2 28363:2 28367:1 28373:2 28375:3 28378:1 28380:2 28387:1 28397:8 28404:2 28405:2 28409:1 28411:10 28413:1 28417:1 28419:1 28421:1 28445:1 28461:1 28469:2 28470:1 28506:3 28511:1 28514:1 28520:1 28527:1 28536:4 28541:1 28543:4 28545:2 28551:1 28553:1 28560:6 28565:1 28569:1 28594:1 28596:1 28626:1 28627:1 28635:1 28646:3 28648:1 28665:2 28681:2 28685:5 28690:2 28703:2 28709:2 28724:1 28728:1 28734:1 28748:2 28752:1 28754:2 28761:2 28772:3 28792:1 28801:7 28815:1 28816:1 28818:1 28831:1 28836:7 28849:6 28850:1 28867:1 28893:1 28904:1 28912:1 28913:8 28914:3 28916:4 28919:1 28921:2 28924:3 28925:3 28933:1 28941:1 28947:1 28958:2 28959:4 28961:3 28963:3 29001:1 29003:1
|
29c009cbac1e00614f48f4e874c3d75da2a69bc3 | f98e6eb45cba97e51f3e190748f75d277fc4c38d | /Lab/Lab4/testwhile.sce | bf5be96e57961ab11b64ea321b1552385b546f95 | [] | no_license | sctpimming/SC422401 | 68359adab92095e4c60121ff17ac43efc9c46fb4 | 5c43c58c9bf0e923b640c115b4ef618ad72d15a6 | refs/heads/master | 2020-11-25T18:37:53.377582 | 2020-02-26T07:56:39 | 2020-02-26T07:56:39 | 228,796,306 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 708 | sce | testwhile.sce | // รับค่าของตัวแปร x ทาง keyboard
x = input("Please enter a positive integer: ");
// แสดงข้อความส่วนหัวของตาราง
printf("-----------------------\n")
printf("x\t\ln(x)\n") // \t หมายถึง tab
printf("-----------------------\n")
// แสดงค่า x และ ln(x) ทีละบรรทัด ตราบเท่าที่ x ยังคงมีค่าเป็นบวก
while x>0
printf("%d\t%.4f\n", x, log(x)) // คำสั่ง log(x) หมายถึงลอการิทึมฐาน e
x = x-2; // ปรับปรุงค่าของตัวแปร x
end
|
04ed539577fb9c3d74f39188986d7d1ee5340d27 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3014/CH1/EX1.24/Ex1_24.sce | 51f83352d8e7ab3f0a7830aa3c0a6b3e62a217e3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 331 | sce | Ex1_24.sce |
clc
//Given that
r = 0.5 // Bohr radius of hydrogen in angstrom
m = 9.1e-31 // Mass of neutron in Kg
h = 6.6e-34 // Plank constant
printf("Example 1.24")
v = h/(2*%pi*r*1e-10*m) // velocity of electron in ground state
printf("\n Velocity of electron in ground state is %e m/s.\n\n\n",v)
// Answer in book is 2.31e6 m/s
|
152753d24b67d7d1ed028500c050f9c8ee5b120a | 449d555969bfd7befe906877abab098c6e63a0e8 | /165/CH12/EX12.1/ex12_1.sce | db5b80f2f4b321c85127466112a1e2662209b3ff | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | ex12_1.sce | //Example 12.1
clc;
chart_speed=40; //Given Chart speed in mm/s
time_base=5; //one cycle of signal recorded in mm
period=time_base/chart_speed;
f=invr(period);
printf('\nFrequency of signal is %.2f cycles/s\n',f) |
ad6b20565f4e834b5c8c3a5d5cfde8979cec3cfe | 26a5c1af73f4a38015facdbd9a056d7b61bce694 | /test_create_employee.tst | deba3414656228553c0444b1698a2719a54cfb86 | [] | no_license | csnailadi/test-ldms | 79113ae8f3e1d3b96ea73677ac892bcbccffffa7 | 3bebc5fa9ff873317bc2ce8eb98b7f53415034bb | refs/heads/main | 2023-05-04T02:02:51.442521 | 2021-05-27T11:50:39 | 2021-05-27T11:50:39 | 371,157,094 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 740 | tst | test_create_employee.tst | PL/SQL Developer Test script 3.0
17
declare
-- Non-scalar parameters require additional processing
p_emp_record employees%rowtype;
begin
p_emp_record.employee_id := 90011;
p_emp_record.employee_name := 'Chandra Test2';
p_emp_record.job_title_id := 3;
p_emp_record.manager_id := 90002;
p_emp_record.date_hired := trunc(sysdate);
p_emp_record.salary := 52000;
p_emp_record.department_id := 3;
-- Call the procedure
oracc.create_employee(p_emp_record => p_emp_record,
p_err_code => :p_err_code,
p_err_msg => :p_err_msg);
end;
2
p_err_code
1
-100
4
p_err_msg
1
-1:ORA-00001: unique constraint (WEO.PK_EMPLOYEES) violated
5
0
|
1fcd8cd9f2de9cd89813ef6adebee188851afb2d | d7087cf730b37f76170323e080c090f8094979ac | /test/parser/t4.tst | 5574d21d5928d5e73682d092c7c08b2699687444 | [] | no_license | VladimirMeshcheriakov/42sh | 025dffe358b86f48eaf7751a5cb08d4d5d5366c4 | 52d782255592526d0838bc40269f6e71f6a51017 | refs/heads/master | 2023-03-15T17:26:20.575439 | 2015-06-26T12:44:05 | 2015-06-26T12:44:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 136 | tst | t4.tst | <cmd>
../build/42sh</cmd>
<ref>
bash</ref>
<stdin>
if true
then
echo toto | cat -e;
echo tutu; echo toutou; echo tata;
fi;
</stdin>
|
ae74b60ca8d5fb968216744b8d92fe1e9d6ae3a6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /72/CH11/EX11.3.1/11_3_1.sce | 5ee91443f73607eb2f05c46074c348f5d22dd123 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 11_3_1.sce |
//chapter_no.-11, page_no.-507
//Example_no.11-3-1
clc;
Pavg=250*(10^-3);//average_power_flowing_in_the_positive_z_direction
Io=100*(10^-3);//total_peak_current
Z0=(2*Pavg)/(Io^2);
disp(Z0,'the_characteristic_impedance_of_the_coplanar_strip_line(in ohms)is =');
|
bb41780dc61dd8e09642be2801d88534b90ef3fb | 449d555969bfd7befe906877abab098c6e63a0e8 | /1388/CH6/EX6.4/6_4.sce | b81167de2326cf37f41a30dba2172fd2ff6720f2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 153 | sce | 6_4.sce | clc
//initialisation of variables
Kp= 1.06*10^-2 //atm
a= 0.990
//CALCULATIONS
P= Kp*(1-a^2)/(4*a^2)
//RESULTS
printf (' pressure = %.2e atm',P)
|
5c4d7904f6ca57756410c0a5ed0d7ddcaad22c88 | cac765899ef2f4a3fea7b30feb7d3cc9e32a4eb4 | /main/vsCatenary/testCatProjSeveral.sce | 4030f3a3827541cc82eae74cadddf213a670a098 | [] | no_license | clairedune/AsserVisu | 136d9cb090f709a410f23d3138ab115b722066d2 | f351f693bffd50b5ae19656a7fcb7b52e01d6943 | refs/heads/master | 2020-04-11T09:56:32.106000 | 2017-01-12T14:01:12 | 2017-01-12T14:01:12 | 1,187,919 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 7,281 | sce | testCatProjSeveral.sce | // test catenary projection in an image
// when the attached points are mobile
clear;
//close;
exec('../../Load.sce');
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
// USER PARAMETERS
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
//--------- TURTLE DIMENSIONS -------------------------//
turtleD = 0.6; //diameter
turtleH = 0.6; //height
//-------- CATENARY PARAMETERS------------//
R = 1; // rope semi lenght
Hmax = R ;// max rope sag == fixation point heigh
//--------- INITIAL EXPE SETUP-------------------------//
// LEADER INIT POSITION AND VELOCITY
angle1 = 0*%pi/180; // angle around vertical axis
pose_w_M_r1 = [2.5,0,turtleH/2,0,0,angle1]; // pose in general frame
//FOLLOWER INIT POSITION
angle2 = 0*%pi/180; // angle around vertical axis
pose_w_M_r2 = [0,0.4,turtleH/2,0,0,angle2]; // pose in general frame
//FOLLOWER DESIRED POSITION
angled = 0*%pi/180; // angle around vertical axis
pose_w_M_r2d = [0.5,0.4,turtleH/2,0,0,angled]; // pose in general frame
// --------- OPTION FOR GRAPHICAL DISPLAY ----------//
OPT_3D = 0; // set to 1 to display 3D view
// ------- Camera parameters -----------//
im_px = 600*10^(-6);
im_py = 600*10^(-6);
im_width = 800;
im_height = 600;
im_u0 = im_width/2;
im_v0 = im_height/2;
// pose of the camera in the follower robot frame
r2Tc_x = -turtleD/2; // turtle semi diameter
r2Tc_y = 0;
r2Tc_z = 0;
pose_r2_M_c = [r2Tc_x,r2Tc_y,r2Tc_z,-%pi/2,%pi/2,0];
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
// define 3D points to draw camera FOV
c_FoV = FoV (im_u0,im_v0,im_px,im_py);
//--------- Defining the system frames -------------- //
// pose of the attached point frame in the leader robot frame r1
r1Tx = -turtleD/2; //turtle semi diameter
r1Ty = 0;
r1Tz = turtleH/2;
pose_r1_M_sigma3 = [r1Tx,r1Ty,r1Tz,0,0,0];
r1_M_sigma3 = homogeneousMatrixFromPos(pose_r1_M_sigma3);
sigma3_M_r1 = inv(r1_M_sigma3);
// pose of the attached point frame in the follower robot frame r2
r2Tx = turtleD/2; // turtle semi diameter
r2Ty = 0;
r2Tz = turtleH/2;
pose_r2_M_sigma2 = [r2Tx,r2Ty,r2Tz,0,0,0];
r2_M_sigma2 = homogeneousMatrixFromPos(pose_r2_M_sigma2);
sigma2_M_r2 = inv(r2_M_sigma2);
//// pose of the camera in the follower robot frame
r2_M_c = homogeneousMatrixFromPos(pose_r2_M_c);
c_M_r2 = inv(r2_M_c);
//--------------ROBOT FRAMES DEFINITION -----------------------------//
// pose of the leader robot in the world frame
w_M_r1 = homogeneousMatrixFromPos(pose_w_M_r1);
// pose of the follower robot in the world frame
w_M_r2 = homogeneousMatrixFromPos(pose_w_M_r2);
//------------------- TOP VIEW --------------------------------------//
pose_w_M_sigma2 = pFromHomogeneousMatrix(w_M_r2*r2_M_sigma2);
pose_w_M_sigma3 = pFromHomogeneousMatrix(w_M_r1*r1_M_sigma3);
//------------- GRAPHICS ------------------------------------//
figure(1);
subplot(221)
a = gca();
a.isoview = "on";
a.data_bounds = [0;4;-2;2];
a.grid=[1,1];
subplot(223)
a = gca();
a.isoview = "on";
a.data_bounds = [0;4;-0.1;1];
a.grid=[1,1];
subplot(222);
a = gca();
a.isoview = "on";
a.data_bounds = [-1;1;-1;1];
subplot(224);
a = gca();
a.isoview = "on";
a.data_bounds = [0;800;-600;0];
if(OPT_3D)
figure(2)
a=gca()
a.isoview="on";
end
PARAM = [];
dr = 0.1;
scf(1)
for R = 1:dr:1.5
// Catenary parametres
[param,D,w_P,xA,yA,zA,w_M_sigma1] = thetheredRobotCatenary(w_M_r1,w_M_r2,r1_M_sigma3,r2_M_sigma2,R,Hmax);
// Set to zero all the points that are beyond the ground.
w_P_positif = w_P;
// w_P_positif(3,:) = w_P(3,:).*(w_P(3,:)>0);
// -------- IMAGE FORMATION --------//
w_M_c = w_M_r2 * r2_M_c;
c_M_sigma1 = inv(w_M_c) * w_M_sigma1 ;
[c_P,c_pm,c_pp,nbpoints] = imageProjection(inv(w_M_c),w_P,im_u0,im_v0,im_px,im_py);
//--------------------GRAPHICS---------------------------------------//
subplot(221)
a = gca();
delete(a.children);
drawlater();
drawTurtleTop(pose_w_M_r1(1),pose_w_M_r1(2),turtleD);// leader
drawTurtleTop(pose_w_M_r2(1),pose_w_M_r2(2),turtleD);//Follower
// drawTurtleTop(pose_w_M_r2d(1),pose_w_M_r2d(2),turtleD);//Desired init Follower
drawFoVTop(c_FoV,w_M_c) ; // FoV
plot(pose_w_M_sigma2(1),pose_w_M_sigma2(2),'s'); // Leader Robot Center
plot(pose_w_M_sigma3(1),pose_w_M_sigma3(2),'s'); // Follower Robot Center
if(D>0.8*R)
plot(w_P_positif(1,:),w_P_positif(2,:),'c');
else
plot(w_P_positif(1,:),w_P_positif(2,:),'b');
end
//plot(w_Pd(1,:),w_Pd(2,:),'r--');
drawnow();
//------------------- LATERAL VIEW ----------------------------------//
subplot(223)
a = gca();
//delete(a.children);
drawlater();
drawTurtleSide(pose_w_M_r1(1),pose_w_M_r1(3),turtleH); // Leader
drawTurtleSide(pose_w_M_r2(1),pose_w_M_r2(3),turtleH); // Follower
drawFoVSide(c_FoV,w_M_c); // FoV of the Follower
//drawTurtleSide(pose_w_M_r2d(1),pose_w_M_r2d(3),turtleH); // Desired
plot(pose_w_M_sigma2(1),pose_w_M_sigma2(3),'s');
plot(pose_w_M_sigma3(1),pose_w_M_sigma3(3),'s');
if(D>0.8*R)
plot(w_P_positif(1,:),w_P_positif(3,:),'c');
else
plot(w_P_positif(1,:),w_P_positif(3,:),'b');
end
// plot(w_Pd(1,:),w_Pd(3,:),'r--');
drawnow();
if(OPT_3D) // if the 3D option is turned on display 3D view of the experiment
scf(2)
a = gca();
//delete(a.children);
drawlater()
Camera3DDraw(0.1,w_M_sigma1);
Camera3DDrawColor(0.1,w_M_r2,5);
Camera3DDrawColor(0.1,w_M_r2*r2_M_sigma2,5);
Camera3DDrawColor(0.1,w_M_r1,3);
Camera3DDrawColor(0.1,w_M_r1*r1_M_sigma3,3);
Camera3DDrawColor(0.1,w_M_c,5);
param3d(w_P_positif(1,:),w_P_positif(2,:),w_P_positif(3,:),'r');
drawnow();
scf(1)
end
if(nbpoints>1) // if there are some points in the fov
subplot(222);
a = gca();
//delete(a.children);
plot(c_P(1,:)./c_P(3,:), -c_P(2,:)./c_P(3,:),'b');
// plot(c_pm(:,1),-c_pm(:,2),'rx');
subplot(224);
a = gca();
//delete(a.children)
plot(c_pp(:,1),-c_pp(:,2),'bx');
end
sleep(300);
end
disp('Pausing .... write resume to exit the application')
pause
//savematfile('data/data2_'+string(index)+'.mat','points','pixels','-v7');
//pause
//end
|
15af2471e8d8e07e2f44041c7bcd899d81e1d239 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2465/CH17/EX17.6/Example_6.sce | f138207aad2c6f5d0909fb68c0585803ef783825 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 618 | sce | Example_6.sce | //Chapter-17,Example 6,Page 371
clc();
close();
v= 10^6 //volume of water
m1 = 40 //mass of Ca+2
m2 = 24 //mass of Mg+2
m3 = 44 //mass of CO2
m4 = 122 //mass of HCO3-
amnt_1 = 20 //amount of Ca+2 in ppm
amnt_2 = 25 //amount of Mg+2 in ppm
amnt_3 = 30 //amount of CO2 in ppm
amnt_4 = 150 //amount of HCO3- in ppm
lime_1 = (74/100)*[(amnt_2*100/m2)+(amnt_3*100/m3)+(amnt_4*100/m4)]*v
soda = (106/100)*[(amnt_1*100/m1)+(amnt_2*100/m2)-(amnt_4*100/m4)]*v
printf("the lime required is = %.3f mg",lime_1)
printf("\n the soda required is = %.3f mg",soda)
|
b63ce85882fc12741d2532dbae348294586ea31d | c88f425345e1bef1a882d37f1759c2d438113204 | /2d_conflict-cylinder.sci | b07afdd4cc300ee5b208d341aedc3954e8d7f78b | [] | no_license | NnataKha/Fire-Water-Model | fb2550e59d41bac5f0bab70659f49e11694ec4d9 | ecfb61b9593583678991c22dac7da11857f4c4ae | refs/heads/master | 2020-03-16T18:42:15.863932 | 2018-05-10T10:47:21 | 2018-05-10T10:47:21 | 132,883,725 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 5,931 | sci | 2d_conflict-cylinder.sci | clear;
n = 7; // # of cells in a row
m =310; // # of steps
cp = 1;
cr = -1;
con_coef = 0; //coefficient for the competing neighbours influence
pos_coef = 0; //coefficient for the helping neighbours influence
x = linspace(0,9,n);// initial values
y = linspace(0,9,n);// initial values
for i=1:n
for j=1:n
p(i,j)=1//abs(cos(j/2));
r(i,j)=500-((i-6)^2+(j-6)^2)*10//abs(sin(i/2)*cos(j/2));
end
end
sp = sum(p);
sr = sum(r);
for i=1:n
for j=1:n
p0(i,j)=p(i,j)/sp;
r0(i,j)=r(i,j)/sr;
end
end
view_p(1,:,:) = p0;
view_r(1,:,:) = r0;
for k = 1:m
for i=2:n-1
for j=2:n-1
tp(i,j)=view_p(k,i,j)*(1+cp*view_r(k,i,j)-con_coef*(view_r(k,i-1,j)+view_r(k,i,j-1)+view_r(k,i+1,j)+view_r(k,i,j+1)))*(1+pos_coef*(view_p(k,i-1,j)+view_p(k,i+1,j)+view_p(k,i,j-1)+view_p(k,i,j+1)));
tr(i,j)=view_r(k,i,j)*(1+cr*view_p(k,i,j)-con_coef*(view_p(k,i-1,j)+view_p(k,i,j-1)+view_p(k,i+1,j)+view_p(k,i,j+1)))*(1+pos_coef*(view_r(k,i-1,j)+view_r(k,i+1,j)+view_r(k,i,j-1)+view_r(k,i,j+1)));
end
end
j=1;
for i=2:n-1
tp(i,j)=view_p(k,i,j)*(1+cp*view_r(k,i,j)-con_coef*(view_r(k,i-1,j)+view_r(k,i,n)+view_r(k,i+1,j)+view_r(k,i,j+1)))*(1+pos_coef*(view_p(k,i-1,j)+view_p(k,i+1,j)+view_p(k,i,n)+view_p(k,i,j+1)));
tr(i,j)=view_r(k,i,j)*(1+cr*view_p(k,i,j)-con_coef*(view_p(k,i-1,j)+view_p(k,i,n)+view_p(k,i+1,j)+view_p(k,i,j+1)))*(1+pos_coef*(view_r(k,i-1,j)+view_r(k,i+1,j)+view_r(k,i,n)+view_r(k,i,j+1)));
end
j=n;
for i=2:n-1
tp(i,j)=view_p(k,i,j)*(1+cp*view_r(k,i,j)-con_coef*(view_r(k,i-1,j)+view_r(k,i,j-1)+view_r(k,i+1,j)+view_r(k,i,1)))*(1+pos_coef*(view_p(k,i-1,j)+view_p(k,i+1,j)+view_p(k,i,j-1)+view_p(k,i,1)));
tr(i,j)=view_r(k,i,j)*(1+cr*view_p(k,i,j)-con_coef*(view_p(k,i-1,j)+view_p(k,i,j-1)+view_p(k,i+1,j)+view_p(k,i,1)))*(1+pos_coef*(view_r(k,i-1,j)+view_r(k,i+1,j)+view_r(k,i,j-1)+view_r(k,i,1)));
end
i=1;
for j=2:n-1
tp(i,j)=view_p(k,i,j)*(1+cp*view_r(k,i,j)-con_coef*(view_r(k,n,j)+view_r(k,i,j-1)+view_r(k,i+1,j)+view_r(k,i,j+1)))*(1+pos_coef*(view_p(k,n,j)+view_p(k,i+1,j)+view_p(k,i,j-1)+view_p(k,i,j+1)));
tr(i,j)=view_r(k,i,j)*(1+cr*view_p(k,i,j)-con_coef*(view_p(k,n,j)+view_p(k,i,j-1)+view_p(k,i+1,j)+view_p(k,i,j+1)))*(1+pos_coef*(view_r(k,n,j)+view_r(k,i+1,j)+view_r(k,i,j-1)+view_r(k,i,j+1)));
end
i=n;
for j=2:n-1
tp(i,j)=view_p(k,i,j)*(1+cp*view_r(k,i,j)-con_coef*(view_r(k,i-1,j)+view_r(k,i,j-1)+view_r(k,1,j)+view_r(k,i,j+1)))*(1+pos_coef*(view_p(k,i-1,j)+view_p(k,1,j)+view_p(k,i,j-1)+view_p(k,i,j+1)));
tr(i,j)=view_r(k,i,j)*(1+cr*view_p(k,i,j)-con_coef*(view_p(k,i-1,j)+view_p(k,i,j-1)+view_p(k,1,j)+view_p(k,i,j+1)))*(1+pos_coef*(view_r(k,i-1,j)+view_r(k,1,j)+view_r(k,i,j-1)+view_r(k,i,j+1)));
end
//bound points
i=1;
j=1;
tp(i,j)=view_p(k,i,j)*(1+cp*view_r(k,i,j)-con_coef*(view_r(k,n,j)+view_r(k,i,n)+view_r(k,i+1,j)+view_r(k,i,j+1)))*(1+pos_coef*(view_p(k,n,j)+view_p(k,i+1,j)+view_p(k,i,n)+view_p(k,i,j+1)));
tr(i,j)=view_r(k,i,j)*(1+cr*view_p(k,i,j)-con_coef*(view_p(k,n,j)+view_p(k,i,n)+view_p(k,i+1,j)+view_p(k,i,j+1)))*(1+pos_coef*(view_r(k,n,j)+view_r(k,i+1,j)+view_r(k,i,n)+view_r(k,i,j+1)));
j=n;
tp(i,j)=view_p(k,i,j)*(1+cp*view_r(k,i,j)-con_coef*(view_r(k,n,j)+view_r(k,i,j-1)+view_r(k,i+1,j)+view_r(k,i,1)))*(1+pos_coef*(view_p(k,n,j)+view_p(k,i+1,j)+view_p(k,i,j-1)+view_p(k,i,1)));
tr(i,j)=view_r(k,i,j)*(1+cr*view_p(k,i,j)-con_coef*(view_p(k,n,j)+view_p(k,i,j-1)+view_p(k,i+1,j)+view_p(k,i,1)))*(1+pos_coef*(view_r(k,n,j)+view_r(k,i+1,j)+view_r(k,i,j-1)+view_r(k,i,1)));
i=n;
tp(i,j)=view_p(k,i,j)*(1+cp*view_r(k,i,j)-con_coef*(view_r(k,i-1,j)+view_r(k,i,j-1)+view_r(k,1,j)+view_r(k,i,1)))*(1+pos_coef*(view_p(k,i-1,j)+view_p(k,1,j)+view_p(k,i,j-1)+view_p(k,i,1)));
tr(i,j)=view_r(k,i,j)*(1+cr*view_p(k,i,j)-con_coef*(view_p(k,i-1,j)+view_p(k,i,j-1)+view_p(k,1,j)+view_p(k,i,1)))*(1+pos_coef*(view_r(k,i-1,j)+view_r(k,1,j)+view_r(k,i,j-1)+view_r(k,i,1)));
j=1;
tp(i,j)=view_p(k,i,j)*(1+cp*view_r(k,i,j)-con_coef*(view_r(k,i-1,j)+view_r(k,i,n)+view_r(k,1,j)+view_r(k,i,j+1)))*(1+pos_coef*(view_p(k,i-1,j)+view_p(k,1,j)+view_p(k,i,n)+view_p(k,i,j+1)));
tr(i,j)=view_r(k,i,j)*(1+cr*view_p(k,i,j)-con_coef*(view_p(k,i-1,j)+view_p(k,i,n)+view_p(k,1,j)+view_p(k,i,j+1)))*(1+pos_coef*(view_r(k,i-1,j)+view_r(k,1,j)+view_r(k,i,n)+view_r(k,i,j+1)));
sp = sum(tp);
sr = sum(tr);
for i=1:n
for j=1:n
view_p(k+1,i,j)=tp(i,j)/sp;
view_r(k+1,i,j)=tr(i,j)/sr;
end
end
end
for i=1:n
for j=1:n
p(i,j)=view_p(m,i,j)*1000;
r(i,j)=view_r(m,i,j)*1000;
p0(i,j)=p0(i,j)*1000;
r0(i,j)=r0(i,j)*1000;
end
end
if 1==2 then
clf();
subplot(221)
plot3d(x,y,p0);
a=gca(); // get the handle of the current axes
a.rotation_angles=[20 20];
subplot(222)
plot3d(x,y,r0);
a=gca(); // get the handle of the current axes
a.rotation_angles=[20 20];
subplot(223)
plot3d(x, y, p);
a=gca(); // get the handle of the current axes
a.rotation_angles=[80 20];
subplot(224)
plot3d(x, y, r);
a=gca(); // get the handle of the current axes
a.rotation_angles=[80 20];
//f = scf();
//f.color_map=coolcolormap(10);
end
if 1==2 then
for i=1:m
pv1(i,:)=view_p(i,:,1)
pv2(i,:)=view_p(i,:,2)
t(i)=i-1;
end
plot(t,pv1)
plot(t,pv2)
end
if 1==1 then
clf();
subplot(211)
plot3d(x, y, p);
a=gca(); // get the handle of the current axes
//a.rotation_angles=[80 20];
subplot(212)
plot3d(x, y, r);
a=gca(); // get the handle of the current axes
//a.rotation_angles=[80 20];
//f = scf();
//f.color_map=coolcolormap(10);
end
|
f98b89c54417f25cf7ebb827b2f1d7830c5594cc | 449d555969bfd7befe906877abab098c6e63a0e8 | /3204/CH21/EX21.5/Ex21_5.sce | b4b18bb558d65799a40fdeb089a060e9bdbc6df2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,042 | sce | Ex21_5.sce | // Initilization of Variables
r=0.12 // m // length of the crank
l=0.6 // m // length of the connecting rod
N=300 // r.p.m // angular velocity of the crank
theta=30 // degree // angle made by the crank with the horizontal
// Calculations
// Now let the angle between the connecting rod and the horizontal rod be phi
phi=asind((r*sind(theta))/(l)) // degree
// Now let the angular velocity of crank OA be omega_oa, which is given by eq'n
omega_oa=(2*%pi*N)/(60) // radian/second
// Linear velocity at A is given as,
v_a=r*omega_oa // m/s
// Now using the sine rule linear velocity at B can be given as,
v_b=(v_a*sind(35.7))/(sind(84.3)) // m/s
// Similarly the relative velocity (assume v_ba) is given as,
v_ba=(v_a*sind(60))/(sind(84.3))
// Angular velocity (omega_ab) is given as,
omega_ab=v_ba/l // radian/second
// Results
clc
printf('(a) The angular velocity of the connecting rod is %f radian/second \n',omega_ab)
printf('(b) The velocity of the piston when the crank makes an angle of 30 degree is %f m/s \n',v_b)
|
d377f4cdb5e848f4764039807c34b961d0d8f9ba | 449d555969bfd7befe906877abab098c6e63a0e8 | /2507/CH12/EX12.13/Ex12_13.sce | 728af1fc7adc180d05d8640b515f62c1280ef729 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 688 | sce | Ex12_13.sce | clc
clear
printf("Example 12.13 | Page number 441 \n\n");
//Find adiabatic combustion temperature when methane is burnt
//Part(a) using average Cp values
//Part(b) using ideal gas enthalpy
//Part(a)
printf("Part(a)\n")
//Picking up various Cp values from Table 12.1
tB = (16*50010)/(44*0.842+2*18*1.86+3*32*0.922+22.56*28*1.042)+25
printf("Adiabatic combustion temperature (using average Cp values)= %.1f K\n\n",tB+273)
//Part(b)
printf("Part(b)\n")
tb1 = 1000 //K //first guess temperature
tb2 = 1200 //K second guess temperature
tb = (tb1 - tb2)/(637617-836847)*(800160-836847) + tb2
printf("Adiabatic combustion temperature (using ideal gas enthalpy)= %.1f K",tb)
|
cc6b2475c5e384bd85d4f2e7724f05bdf17d13a0 | 36c5f94ce0d09d8d1cc8d0f9d79ecccaa78036bd | /robLongRangeHs.sce | 42a1a3e08b7e25b95817894e71e1e6e77ad764d6 | [] | no_license | Ahmad6543/Scenarios | cef76bf19d46e86249a6099c01928e4e33db5f20 | 6a4563d241e61a62020f76796762df5ae8817cc8 | refs/heads/master | 2023-03-18T23:30:49.653812 | 2020-09-23T06:26:05 | 2020-09-23T06:26:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 30,913 | sce | robLongRangeHs.sce | Name=robLongRangeHs
PlayerCharacters=Gamer
BotCharacters=Quaker Bot Fast Strafes.bot
IsChallenge=true
Timelimit=60.0
PlayerProfile=Gamer
AddedBots=Quaker Bot Fast Strafes.bot
PlayerMaxLives=0
BotMaxLives=0
PlayerTeam=2
BotTeams=1
MapName=longrange.map
MapScale=3.8125
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=true
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=1000.0
ScorePerDamage=3.0
ScorePerKill=0.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=false
ScoreMultDamageEfficiency=true
ScoreMultKillEfficiency=false
GameTag=
WeaponHeroTag=
DifficultyTag=5
AuthorsTag=Rob
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=true
BlockFCT=false
Description=Fast Tracking
GameVersion=2.0.2.0
ScorePerDistance=0.0
MBSEnable=false
MBSTime1=0.25
MBSTime2=0.5
MBSTime3=0.75
MBSTime1Mult=1.0
MBSTime2Mult=2.0
MBSTime3Mult=3.0
MBSFBInstead=false
MBSRequireEnemyAlive=false
LockFOVRange=false
LockedFOVMin=60.0
LockedFOVMax=120.0
LockedFOVScale=Clamped Horizontal
[Aim Profile]
Name=At Feet
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=-200.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Aim Profile]
Name=Low Skill At Feet
MinReactionTime=0.35
MaxReactionTime=0.45
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=20.0
TrackSpeed=3.0
TrackError=5.0
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=60.0
ShootFOV=25.0
VerticalAimOffset=-200.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Aim Profile]
Name=Low Skill
MinReactionTime=0.35
MaxReactionTime=0.45
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=20.0
TrackSpeed=3.0
TrackError=5.0
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=60.0
ShootFOV=25.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Aim Profile]
Name=Default
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Bot Profile]
Name=Quaker Bot Fast Strafes
DodgeProfileNames=Long Strafes
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;2.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=At Feet;Low Skill At Feet;Low Skill;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=Quaker
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Character Profile]
Name=Gamer
MaxHealth=800.0
WeaponProfileNames=LG;;;;;;;
MinRespawnDelay=0.6
MaxRespawnDelay=1.1
StepUpHeight=70.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=true
DamageKnockbackFactor=0.1
MovementType=Base
MaxSpeed=900.0
MaxCrouchSpeed=700.0
Acceleration=8500.0
AirAcceleration=16000.0
Friction=6.0
BrakingFrictionFactor=1.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=true
CanJumpFromCrouch=false
EnemyBodyColor=X=0.016 Y=0.440 Z=0.072
EnemyHeadColor=X=0.000 Y=0.894 Z=0.012
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cuboid
MainBBHeight=230.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.1
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=100.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=Quaker
MaxHealth=300.0
WeaponProfileNames=;;LG;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=80.000
HeadshotOnly=true
DamageKnockbackFactor=4.0
MovementType=Base
MaxSpeed=2200.0
MaxCrouchSpeed=500.0
Acceleration=9000.0
AirAcceleration=16000.0
Friction=4.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=true
CanJumpFromCrouch=false
EnemyBodyColor=X=0.771 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=1.000 Y=0.888 Z=0.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=220.0
MainBBRadius=58.0
MainBBHasHead=true
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=Ecto
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Dodge Profile]
Name=Long Strafes
MaxTargetDistance=2500.0
MinTargetDistance=750.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.5
MaxLRTimeChange=1.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=50.0
DamageReactionResetTimer=0.5
JumpFrequency=0.2
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Weapon Profile]
Name=LG
Type=Hitscan
ShotsPerClick=1
DamagePerShot=6.0
KnockbackFactor=2.0
TimeBetweenShots=0.046
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=7.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.05
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=true
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.0
RecoilNegatable=false
DecalType=0
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=true
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=70.0
ADSFOVScale=Quake/Source
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
WeaponModel=Heavy Surge Rifle
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=None
ParticleBodyImpact=None
ParticleProjectileTrail=None
ParticleHitscanTrace=Tracer
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
String32 targetGameOverCamera end
UInt8 playersMin 1
UInt8 playersMax 16
brush
vertices
-576.000000 0.000000 256.000000
448.000000 0.000000 256.000000
448.000000 0.000000 -768.000000
-576.000000 0.000000 -768.000000
-576.000000 -16.000000 256.000000
448.000000 -16.000000 256.000000
448.000000 -16.000000 -768.000000
-576.000000 -16.000000 -768.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-576.000000 0.000000 1280.000000
448.000000 0.000000 1280.000000
448.000000 0.000000 256.000000
-576.000000 0.000000 256.000000
-576.000000 -16.000000 1280.000000
448.000000 -16.000000 1280.000000
448.000000 -16.000000 256.000000
-576.000000 -16.000000 256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-576.000000 0.000000 -768.000000
448.000000 0.000000 -768.000000
448.000000 0.000000 -1792.000000
-576.000000 0.000000 -1792.000000
-576.000000 -16.000000 -768.000000
448.000000 -16.000000 -768.000000
448.000000 -16.000000 -1792.000000
-576.000000 -16.000000 -1792.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-576.000000 272.000000 -1792.000000
448.000000 272.000000 -1792.000000
448.000000 272.000000 -1808.000000
-576.000000 272.000000 -1808.000000
-576.000000 0.000000 -1792.000000
448.000000 0.000000 -1792.000000
448.000000 0.000000 -1808.000000
-576.000000 0.000000 -1808.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-576.000000 272.000000 1296.000000
448.000000 272.000000 1296.000000
448.000000 272.000000 1280.000000
-576.000000 272.000000 1280.000000
-576.000000 0.000000 1296.000000
448.000000 0.000000 1296.000000
448.000000 0.000000 1280.000000
-576.000000 0.000000 1280.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
448.000000 272.000000 1280.000000
464.000000 272.000000 1280.000000
464.000000 272.000000 -1792.000000
448.000000 272.000000 -1792.000000
448.000000 0.000000 1280.000000
464.000000 0.000000 1280.000000
464.000000 0.000000 -1792.000000
448.000000 0.000000 -1792.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-592.000000 272.000000 1280.000000
-576.000000 272.000000 1280.000000
-576.000000 272.000000 -1792.000000
-592.000000 272.000000 -1792.000000
-592.000000 0.000000 1280.000000
-576.000000 0.000000 1280.000000
-576.000000 0.000000 -1792.000000
-592.000000 0.000000 -1792.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-576.000000 704.000000 1296.000000
448.000000 704.000000 1296.000000
448.000000 704.000000 1280.000000
-576.000000 704.000000 1280.000000
-576.000000 272.000000 1296.000000
448.000000 272.000000 1296.000000
448.000000 272.000000 1280.000000
-576.000000 272.000000 1280.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-576.000000 704.000000 -1792.000000
448.000000 704.000000 -1792.000000
448.000000 704.000000 -1808.000000
-576.000000 704.000000 -1808.000000
-576.000000 272.000000 -1792.000000
448.000000 272.000000 -1792.000000
448.000000 272.000000 -1808.000000
-576.000000 272.000000 -1808.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-592.000000 704.000000 1280.000000
-576.000000 704.000000 1280.000000
-576.000000 704.000000 -1792.000000
-592.000000 704.000000 -1792.000000
-592.000000 272.000000 1280.000000
-576.000000 272.000000 1280.000000
-576.000000 272.000000 -1792.000000
-592.000000 272.000000 -1792.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
448.000000 704.000000 1280.000000
464.000000 704.000000 1280.000000
464.000000 704.000000 -1792.000000
448.000000 704.000000 -1792.000000
448.000000 272.000000 1280.000000
464.000000 272.000000 1280.000000
464.000000 272.000000 -1792.000000
448.000000 272.000000 -1792.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-576.000000 720.000000 1280.000000
448.000000 720.000000 1280.000000
448.000000 720.000000 -1792.000000
-576.000000 720.000000 -1792.000000
-576.000000 704.000000 1280.000000
448.000000 704.000000 1280.000000
448.000000 704.000000 -1792.000000
-576.000000 704.000000 -1792.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-576.000000 32.000000 528.000000
448.000000 32.000000 528.000000
448.000000 32.000000 512.000000
-576.000000 32.000000 512.000000
-576.000000 0.000000 528.000000
448.000000 0.000000 528.000000
448.000000 0.000000 512.000000
-576.000000 0.000000 512.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-576.000000 704.000000 528.000000
448.000000 704.000000 528.000000
448.000000 704.000000 512.000000
-576.000000 704.000000 512.000000
-576.000000 32.000000 528.000000
448.000000 32.000000 528.000000
448.000000 32.000000 512.000000
-576.000000 32.000000 512.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-576.000000 32.000000 -1024.000000
448.000000 32.000000 -1024.000000
448.000000 32.000000 -1040.000000
-576.000000 32.000000 -1040.000000
-576.000000 0.000000 -1024.000000
448.000000 0.000000 -1024.000000
448.000000 0.000000 -1040.000000
-576.000000 0.000000 -1040.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-576.000000 704.000000 -1024.000000
448.000000 704.000000 -1024.000000
448.000000 704.000000 -1040.000000
-576.000000 704.000000 -1040.000000
-576.000000 32.000000 -1024.000000
448.000000 32.000000 -1024.000000
448.000000 32.000000 -1040.000000
-576.000000 32.000000 -1040.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
entity
type PlayerSpawn
Vector3 position -64.000000 0.000000 -1760.000000
Bool8 teamA 0
entity
type CameraPath
UInt32 entityIdAttachedTo 5
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type Effect
Vector3 position 0.000000 256.000000 0.000000
String64 effectName internal/misc/reflectionprobe
entity
type Target
Vector3 position 320.000000 256.000000 320.000000
Vector3 angles -135.000000 30.000000 0.000000
String32 name end
entity
type PlayerSpawn
Vector3 position -64.000000 0.000000 1248.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -128.000000 0.000000 1248.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -192.000000 0.000000 1248.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -256.000000 0.000000 1248.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -320.000000 0.000000 1248.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -384.000000 0.000000 1248.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -448.000000 0.000000 1248.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -512.000000 0.000000 1248.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 0.000000 0.000000 1248.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 64.000000 0.000000 1248.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 128.000000 0.000000 1248.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 192.000000 0.000000 1248.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 256.000000 0.000000 1248.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 320.000000 0.000000 1248.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 384.000000 0.000000 1248.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 0.000000 0.000000 -1760.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 64.000000 0.000000 -1760.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 128.000000 0.000000 -1760.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 192.000000 0.000000 -1760.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 256.000000 0.000000 -1760.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 320.000000 0.000000 -1760.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 384.000000 0.000000 -1760.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -128.000000 0.000000 -1760.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -192.000000 0.000000 -1760.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -256.000000 0.000000 -1760.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -320.000000 0.000000 -1760.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -384.000000 0.000000 -1760.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -448.000000 0.000000 -1760.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -512.000000 0.000000 -1760.000000
Bool8 teamA 0
|
725fa065c79faadc93dd8e8e523760abe455c8d7 | 3c9ed378363a111d20ce027e85cbc5ac9629bbb9 | /Bisección.sce | a93815d3ed5b8099a7bf84f1e90c3625d6cf049a | [] | no_license | JeG99/scilab-code | 2b9eade6e57730a6274fb7ffc3f723bfd26d6153 | eae76b665688e04a5de2af8b56d0357ab0de340b | refs/heads/master | 2022-10-09T06:33:39.463575 | 2020-06-06T03:52:43 | 2020-06-06T03:52:43 | 269,859,512 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 5,055 | sce | Bisección.sce | clear
///////////////////////////////////////////////////////
// Bisección.sce
//
// Este programa aproxima la solucion de una función
// de volumen utilizando el método de bisección, dado
// un rango [xl, xu], un error aproximado máximo y un
// número máximo de iteraciones
//
// José Elías Garza Vázquez
// Andrés Alam Sánchez Torres
// 15 / Ene / 20 version 1.0
//////////////////////////////////////////////////////
//////////////////////////////////////////////////////
// F
//
// Funcion que calcula f(x) = (%pi/3)(3*R - x)(x)^2
// cuando f(x) = 30 y R = 3
//
// Parametros:
// dX es el valor de x para evaluar
// Regresa:
// dY es el calculo de f(x)
/////////////////////////////////////////////////////
function dY = F(dX)
R = 3
dY = (%pi/3)(3*R - dX)(dX)^2 - 30
endfunction
//////////////////////////////////////////////////////
// bisección
//
// Funcion que aproxima x para (%pi/3)(3*R - x)(x)^2
// cuando f(x) = 30 y R = 3, dado un rango [xl, xu]
//
// Parametros:
// dXl es el valor inferior del rango
// dXu es el valor superior del rango
// dEa es el valor de error máximo deseado
// iIter es el numero máximo de iteraciones
// Regresa:
// No hay valor de retorno
/////////////////////////////////////////////////////
function biseccion(dXl, dXu, dEa, iIter)
// Variable booleana para marcar si ya no se debe seguir iterando
bCompletado = 0
// Se inicializa un contador de iteraciones
iIteraciones = 0
// Variable para guardar el error aproximado
dEaActual = 0
// Variable para guardar la última aproximación de x para calcular
// el error aproximado
dXAnterior = 0
// Se inicializa variable de string para indicar la razón por
// la que se completó la iteración
sRespuesta = ''
// Se inicia el ciclo de la bisección
while (~bCompletado & iIteraciones < iIter)
// Se calcula la x de la mitad de los límites, la aproximación
dXr = (dXl + dXu) / 2
// Variables para guardar la evaluación de la función en los límites
dFxl = F(dXl)
dFxu = F(dXu)
dFxr = F(dXr)
// Se desplegará el valor de la x aproximada
sDisplay = "xr = " + string(dXr)
// Si la función en la nueva x es 0, es la raíz exacta
if dFxr == 0 then
sRespuesta = "La raiz encontrada es exacta"
// Se completó por encontrar la raíz
bCompletado = 1
elseif dFxr * dFxl < 0 then
// Si el producto de la función en xr y xl < 0, los nuevos límites
// son xl y xu = xr
dXu = dXr
else
// El caso restante implica F(xr) * F(xu) < 0, por lo que los nuevos límites
// son xl = xr y xu
dXl = dXr
end
// Se aumenta el número de iteraciones
iIteraciones = iIteraciones + 1
// Solo hay error aproximado cuando no es la primera iteración
if iIteraciones <> 1 then
// Se calcula error aproximado actual
dEaActual = abs((dXr - dXAnterior) / dXr) * 100
// Se desplegará el error aproximado
sDisplay = sDisplay + ", Error aproximado = " + string(dEaActual)
if dEaActual < dEa then
sRespuesta = "La raiz encontrada fue aproximada con el error absoluto porcentual"
// Se completó por tener un error menor al deseado
bCompletado = 1
end
end
// Se actualiza el valor de x anterior para calcular el error
dXAnterior = dXr
// Se despliega la línea de la iteración
disp(sDisplay)
end
if iIteraciones >= iIter
// Se completó por sumerar el número de iteraciones
sRespuesta = "La raiz encontrada fue aproximada con el numero de iteraciones dado"
end
// Desplegar respuesta
disp(sRespuesta)
// Desplegar valor aproximado de la raíz
disp('La raiz es: ' + string(dXr))
endfunction
/////// Programa Principal
// pido los valores
dXl = input('Introduce el limite inferior. ')
dXu = input('Introduce el limite superior. ')
// Válida que el rango sea valido, el limite superior
// sea el mayor
while (dXu < dXl)
disp('Rango invalido, el limite inferior es mayor al superior')
dXl = input('Introduce el limite inferior. ')
dXu = input('Introduce el limite superior. ')
end
// Pide el error máximo esperadp
dEa = input('Introduce el error aproximado maximo. ')
// Válida que el error sea un porcentaje valido (mayor a 0)
while (dEa < 0)
dEa = input('Introduce el error aproximado maximo. ')
end
// Pide el número máximo de iteraciones
iIter = input('Introduce el maximo numero de iteraciones. ')
// Valida el número de iteraciones para que se pueda producir una
// aproximación
while (iIter < 1 )
iIter = input('Introduce el maximo numero de iteraciones. ')
end
// Se despliega la solución aproximada
biseccion(dXl, dXu, dEa, iIter)
|
b5afc0e1afad47a25c777f2b7d2c479f47fe643c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3137/CH9/EX9.1/Ex9_1.sce | 74f3aa18c9840a55efd6da7ea7baa6cafbfdc1a0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 347 | sce | Ex9_1.sce | //Calculations
//Simplifying equation (3) after substituting value of Nb in it we get
//m_u^2+m_u*2*tand(50)-1=0
//Solution of the equation
a=1
b=2*tand(50)
c=-1
g=sqrt(b^2-(4*a*c))
//solution
x1=(-b+g)/(2*a)
x2=(-b-g)/(2*a)
//As x2 does not make any physical sense x1 is the answer
//Result
clc
printf('The value of mu is %f',x1)
|
b761a56b9055b4b5ad8ca7a5adfd518cd0a8acf5 | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/B02.prev.tst | 2a4d0fb74914ff2def518092dd8bb22dfbb178a8 | [
"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,804 | tst | B02.prev.tst | [0/1.0] a^3 + b^3 - c^3 - d^3
a0 b0 c0 d0: a_0^3+b_0^3-c_0^3-d_0^3; success 0
{a=0, b=0, c=0, d=0} - trivial SOLUTION
a1 b0 c0 d0: 1+6*a_0+12*a_0^2+8*a_0^3+8*b_0^3-8*c_0^3-8*d_0^3; failure constant=1, vgcd=2 ?
a0 b1 c0 d0: 1+8*a_0^3+6*b_0+12*b_0^2+8*b_0^3-8*c_0^3-8*d_0^3; failure constant=1, vgcd=2 ?
a1 b1 c0 d0: 1+3*a_0+6*a_0^2+4*a_0^3+3*b_0+6*b_0^2+4*b_0^3-4*c_0^3-4*d_0^3; ...> [1]
a0 b0 c1 d0: -1+8*a_0^3+8*b_0^3-6*c_0-12*c_0^2-8*c_0^3-8*d_0^3; failure constant=-1, vgcd=2 ?
a1 b0 c1 d0: 3*a_0+6*a_0^2+4*a_0^3+4*b_0^3-3*c_0-6*c_0^2-4*c_0^3-4*d_0^3; success 0
{a=1, b=0, c=1, d=0} - trivial SOLUTION
a0 b1 c1 d0: 4*a_0^3+3*b_0+6*b_0^2+4*b_0^3-3*c_0-6*c_0^2-4*c_0^3-4*d_0^3; success 0
{a=0, b=1, c=1, d=0} - trivial SOLUTION
a1 b1 c1 d0: 1+6*a_0+12*a_0^2+8*a_0^3+6*b_0+12*b_0^2+8*b_0^3-6*c_0-12*c_0^2-8*c_0^3-8*d_0^3; failure constant=1, vgcd=2 ?
a0 b0 c0 d1: -1+8*a_0^3+8*b_0^3-8*c_0^3-6*d_0-12*d_0^2-8*d_0^3; failure constant=-1, vgcd=2 ?
a1 b0 c0 d1: 3*a_0+6*a_0^2+4*a_0^3+4*b_0^3-4*c_0^3-3*d_0-6*d_0^2-4*d_0^3; success 0
{a=1, b=0, c=0, d=1} - trivial SOLUTION
a0 b1 c0 d1: 4*a_0^3+3*b_0+6*b_0^2+4*b_0^3-4*c_0^3-3*d_0-6*d_0^2-4*d_0^3; success 0
{a=0, b=1, c=0, d=1} - trivial SOLUTION
a1 b1 c0 d1: 1+6*a_0+12*a_0^2+8*a_0^3+6*b_0+12*b_0^2+8*b_0^3-8*c_0^3-6*d_0-12*d_0^2-8*d_0^3; failure constant=1, vgcd=2 ?
a0 b0 c1 d1: -1+4*a_0^3+4*b_0^3-3*c_0-6*c_0^2-4*c_0^3-3*d_0-6*d_0^2-4*d_0^3; ...> [2]
a1 b0 c1 d1: -1+6*a_0+12*a_0^2+8*a_0^3+8*b_0^3-6*c_0-12*c_0^2-8*c_0^3-6*d_0-12*d_0^2-8*d_0^3; failure constant=-1, vgcd=2 ?
a0 b1 c1 d1: -1+8*a_0^3+6*b_0+12*b_0^2+8*b_0^3-6*c_0-12*c_0^2-8*c_0^3-6*d_0-12*d_0^2-8*d_0^3; failure constant=-1, vgcd=2 ?
a1 b1 c1 d1: 3*a_0+6*a_0^2+4*a_0^3+3*b_0+6*b_0^2+4*b_0^3-3*c_0-6*c_0^2-4*c_0^3-3*d_0-6*d_0^2-4*d_0^3; success 0
{a=1, b=1, c=1, d=1} - SOLUTION ...> [3]
|
b2b4eaa30eed02d9b909927278f65fcfe2e8133c | 74084a1c6ef810ee05785941963c7dc1725783cf | /test/UR0.prev.tst | 709355734e6d4d2eb737be088fb8ce2418e8201b | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | gfis/common | 338d245dc6a1ef093748fa577129ac30822ec70b | da1e36931decdbdfe201d88207d5a01c207f8c5a | refs/heads/master | 2022-03-21T14:56:42.582874 | 2022-02-07T10:39:22 | 2022-02-07T10:39:22 | 59,970,966 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 473 | tst | UR0.prev.tst | URL http://www.teherba.org/index.html ok
URL mailto:punctum@punctum.com&subject=Test URIReader ok
URL jar:file:///home/gfis/work/gits/dbat/dist/dbat.jar!/META-INF/LICENSE ok
URL news://news.netcologne.de/alt.free.newsservers failed
URL gopher://gopher.rbfh.de/0/Fun/500miles.txt failed
URL file:///home/gfis/work/gits/dbat/web/noversion.txt ok
URL ftp://ftp.gnu.org/README ok
URL telnet:teherba.org failed
URL verbatim: failed
URL data:this+is%20the+text+to+be+read failed
|
c76534b367072339c5c449c7b50478d2f4fa4d93 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1271/CH7/EX7.2/example7_2.sce | 78cf49f53c15c087c5a56a20562c2bd98ba7c5fb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 297 | sce | example7_2.sce | clc
// Given that
A = 0.05 // amplitude in meter
T = 10 // time period of S.H.M. in sec
// Sample Problem 2 on page no. 7.22
printf("\n # PROBLEM 2 # \n")
v = (A * 2 * %pi) / T
printf("\n Standard formula used \n v = (A * 2 * pi) / T")
printf("\n Maximum amplitude of velocity = %f meter/sec",v)
|
a563ab946e8bb6d2b4b0b65194cefe561263cec5 | f5bb8d58446077a551e4d9a6461a55255db523fe | /integracao_numerica/calc3.sce | d6602b124bc1f2bbb152b64c3f7ac1e4f6476eb6 | [] | no_license | appositum/numerical-calculus | 6be1a9990a1621c705af6ba5694cf8c7b891d06e | 7759e74ce9ce5c5826f96be7de84a2f7ecb97c91 | refs/heads/master | 2021-07-19T18:19:09.336819 | 2018-11-27T21:52:36 | 2018-11-27T21:52:36 | 143,060,426 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 412 | sce | calc3.sce | // regra 3/8 de Simpson
function y=f(x)
y = cos(x)
endfunction
// derivada de ordem 4
function y=df(x)
y = cos(x)
endfunction
a = 0
b = 0.6
h = (b-a)./3
x1 = a
x2 = x1+h
x3 = x1 + 2.*h
x4 = b
//R = (h./3).*(f(x1) + 4.*f(x2) + f(x3))
//printf("Aproximacao da integral: %g\n", R)
// calculo do erro
x = a:0.05:b
err = ((3.*h.^(5))./80).*max(abs(df(x)))
printf("\nLimitante superior do erro: %g\n", err) |
bc074efe828693bfdaae2c365684ffe67037639f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2420/CH5/EX5.4/5_4.sce | c0975add00a2008738a86d41d98688c864157fab | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 204 | sce | 5_4.sce | clc
clear
//Initialization of variables
h1=1172 //Btu/lb
hf1=355.36 //Btu/lb
hfg1=843 //Btu/lb
//calculations
h2=h1
x1= (h2-hf1)/hfg1
//results
printf("Quality of steam = %.1f percent",x1*100)
|
f730e6d3c9c4ee4a55e58b28f5a62e46dbe13eab | 449d555969bfd7befe906877abab098c6e63a0e8 | /1226/CH21/EX21.4/EX21_4.sce | 531242c8f5fe19056be1b2fd262695d0bca85d8a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,069 | sce | EX21_4.sce | clc;funcprot(0);//EXAMPLE 21.4
// Initialisation of Variables
t1=300;........//Temperature of air entering the turbine in K
t3=1148;..............//Temperature before expansion in turbine in K
etac=0.8;....//Efficiency of compressor
etat=0.852;.....//Efficiency of turbine
rp=4;...........//Pressure ratio
p1=1;...............//Pressure of air before entering compressor
ga=1.4;........//Ratio of specific heats
cp=1.0;.............//Specific heat at constant pressure in kJ/kgK
C=42000;.............//Calorific value of fuel in kJ/kg
perlcc=10;............//Percent loss of calorific value of fuel in combustion chamber
//Calculations
p2=p1*rp;.................//Pressure of air after compression in bar
etacc=(100-perlcc)/100;.......//Efficiency of combustion chamber
t2=t1*((rp)^((ga-1)/ga));...............//Ideal temperature of air after compression in K
t21=((t2-t1)/etac)+t1;..............//Actual temperature of air after compression in K
afr=((C*etacc)/(cp*(t3-t21)))-1;........//Air fuel ratio
printf("Air fuel ratio is %d:1",round(afr))
|
11a73e1aa5672f10f0ba552984a909fde2d8d814 | ebeb01647d8befa67b61bb30a7503abd26cc518e | /add.sce | d809696cbdf7d365467671f645db2fa186826e40 | [] | no_license | ciarap/Scilab_Labs | 153903c46c94492672c1da9497a030f548d3940e | af994c56ae44c4872a969cab376056dd18871f3c | refs/heads/master | 2021-07-04T20:12:39.635697 | 2017-09-25T22:53:15 | 2017-09-25T22:53:15 | 104,810,103 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 35 | sce | add.sce | for i=1:4
a(i)=i^2
end
disp(a)
|
487845d8fd8f4d95eeb61de982ffa41f5d544ad6 | e86f908be00c4a3a017e81d12588d76562c56b75 | /macros/buttord.sci | bb8c85c8411f96d389f51711fef4641a55c01c8e | [] | no_license | ShashikiranYadalam/FOSSEE_SP_task | 8869a14f664329625b76e15e771058b90b69b1e1 | 601ca7b7c91587a430c69c9ceb1f87b196c8e566 | refs/heads/master | 2020-03-20T06:38:26.598686 | 2019-03-01T12:31:10 | 2019-03-01T12:31:10 | 137,255,176 | 0 | 0 | null | 2018-06-14T05:16:17 | 2018-06-13T18:27:32 | HTML | UTF-8 | Scilab | false | false | 1,655 | sci | buttord.sci | function [n, Wc] = buttord(Wp, Ws, Rp, Rs)
///This function computes the minimum filter order of a Butterworth filter with the desired response characteristics.
//Calling Sequence
//n = buttord(Wp, Ws, Rp, Rs)
//[n, Wc] = buttord(Wp, Ws, Rp, Rs)
//Parameters
//Wp: scalar or vector of length 2
//Ws: scalar or vector of length 2, elements must be in the range [0,1]
//Rp: real or complex value
//Rs: real or complex value
//Description
//This is an Octave function.
//This function computes the minimum filter order of a Butterworth filter with the desired response characteristics.
//The filter frequency band edges are specified by the passband frequency wp and stopband frequency ws.
//Frequencies are normalized to the Nyquist frequency in the range [0,1].
//Rp is measured in decibels and is the allowable passband ripple, and Rs is also in decibels and is the minimum attenuation in the stop band.
//If ws>wp, the filter is a low pass filter. If wp>ws, the filter is a high pass filter.
//If wp and ws are vectors of length 2, then the passband interval is defined by wp the stopband interval is defined by ws.
//If wp is contained within the lower and upper limits of ws, the filter is a band-pass filter. If ws is contained within the lower and upper limits of wp the filter is a band-stop or band-reject filter.
//Examples
//Wp = 40/500
//Ws = 150/500
//[n, Wn] = buttord(Wp, Ws, 3, 60)
//n = 5
////Wn = 0.080038
rhs = argn(2)
lhs = argn(1)
if(rhs~=4)
error("Wrong number of input arguments.")
end
select(lhs)
case 1 then
n = callOctave("buttord",Wp,Ws,Rp,Rs)
case 2 then
[n,Wc] = callOctave("buttord",Wp,Ws,Rp,Rs)
end
endfunction
|
c81ca34ec0a112b00fa6a9d985bbf2be11b4b49b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1976/CH8/EX8.5/Ex8_5.sce | e9087a4e7414d49fe5f7121bace66d28feddf360 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex8_5.sce |
//To determine the weights of Nickel and Silver Deposited
//Page 456
clc;
clear;
F=96500; //One Farad of Charge
//Equivalent Weights of the Following metals
EWAg= 108; //silver
EWNi= 58.6/2; //Nickel
I=20; //Current Passed
T=1*60*60; //Time for which the current is passed
TC=T*I; //Total Charge produced
//One Equivalent of Metal requires 1 F of charge
Q=TC/F; // Total Charge in Farad
//Amount of metal deposited
WAg=Q*EWAg; //Silver
WNi=Q*EWNi; //Nickel
printf('The Weight of Nickel And Silver deposited by 20A for an hour is %g gm and %g gm respectively.\n',WNi,WAg)
|
9af5c23778146cdf46c50934b4d7eacdb91443f9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /24/CH11/EX11.3/Example11_3.sce | e2cb4b15d0d0fb992215da8d6a3b3a0a45026227 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 573 | sce | Example11_3.sce | //Given that
W1 = 3.40 //in rad/s
W2 = 2.00 //in rad/s
rev_taken = 20
//Sample Problem 11-3a
printf("**Sample Problem 11-3a**\n")
angle_traversed = 2*%pi*rev_taken
//Using newton's third equation of motion
//Wf^2 = Wi^2 + 2*alpha*theta
alpha = (W2^2 - W1^2)/(2*angle_traversed)
printf("The angular acceleration during the stop is %frads^2\n", alpha)
//Sample Problem 11-3b
printf("\n**Sample Problem 11-3b**\n")
//Using newton's first equation of motion
time_taken = (W2 - W1)/alpha
printf("The time taken in decreasing the speed is %fsec", time_taken) |
ffed8d5cdb0fd55919947266e72bfbf2bf1c015c | 449d555969bfd7befe906877abab098c6e63a0e8 | /964/CH17/EX17.2/17_2.sce | 2f8e6478c9399a4ea692fe23085a77f208a85cb4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 960 | sce | 17_2.sce | //clc()
x = [1,2,3,4,5,6,7];
y = [0.5,2.5,2,4,3.5,6,5.5];
n = 7;
s = 0;
ssum = 0;
xsq = 0;
xsum = 0;
ysum = 0;
msum = 0;
for i = 1:7
s = s + (det(x(1,i)))*(det(y(1,i)));
xsq = xsq + (det(x(1,i))^2);
xsum = xsum + det(x(1,i));
ysum = ysum + det(y(1,i));
end
a = xsum/n;
b = ysum/n;
a1 = (n*s - xsum*ysum)/(n*xsq -xsum^2);
a0 = b - a*a1;
for i = 1:7
m(i) = (det(y(1,i)) - ysum/7)^2;
msum = msum +m(i);
si(i) = (det(y(1,i)) - a0 - a1*det(x(1,i)))^2;
ssum = ssum + si(i);
end
disp(ysum,"sum of all y =")
disp(m,"(yi - yavg)^2 = ")
disp(msum,"total (yi - yavg)^2 = ")
disp(si,"(yi - a0 - a1*x)^2 = ")
disp(ssum,"total (yi - a0 - a1*x)^2 = ")
sy = (msum / (n-1))^(0.5);
sxy = (ssum/(n-2))^(0.5);
disp(sy,"sy = ")
disp(sxy,"sxy = ")
r2 = (msum - ssum)/(msum);
r = r2^0.5;
disp(r,"r = ")
disp("The result indicate that 86.8 percent of the original uncertainty has been explained by linear model")
|
852a0b8c626495b2f5940ffd0196bf1da35cf105 | 449d555969bfd7befe906877abab098c6e63a0e8 | /680/CH5/EX5.06/5_06.sce | 3798bdba539794c71ee8ff82bb5a57e75ff4f393 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 379 | sce | 5_06.sce | //Problem 5.06:
//initializing the variables:
P = 1; // in atm
tm = 68.6
//calculation:
perO2bymol = 7*100/tm
perHClbymol = 1*100/tm
perH2Obymol = 2*100/tm
ppO2 = perO2bymol/100
ppHCl = perHClbymol/100
ppH2O = perH2Obymol/100
printf("\n\nResult\n\n")
printf("\n patial pressures (for O2 = %.3f atm for HCl = %.4f atm and for H2O = %.4f atm)",ppO2, ppHCl, ppH2O) |
3d1fe81df22889e76be185f9445527eb77a760a9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /564/CH10/EX10.2/10_2.sce | 13348740a3558f91269fe4a485cb8ca21d629e59 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 363 | sce | 10_2.sce | pathname=get_absolute_file_path('10_2.sce')
filename=pathname+filesep()+'10_2data.sci'
exec(filename)
lambda=(m*l^3)/(6*EI);//λ
a=188,b=-44,c=1
m1=(-b+(b*b -4*a*c)^0.5)/(2*a);
m2=(-b-(b*b -4*a*c)^0.5)/(2*a);
omega1=(m1/lambda)^0.5;//ω1
omega2=(m2/lambda)^0.5;//ω2
f1=[omega1;omega2];
f=min(f1)/(2*%pi);
printf("\nlowest natural frequency is: %f",f); |
5d7b4189aad6feb7a359801519ac6e718e7340da | 449d555969bfd7befe906877abab098c6e63a0e8 | /1205/CH10/EX10.4/S_10_4.sce | b6e80d1e5d39f388b2f0e0cc08d9ee2cba87ad9d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 349 | sce | S_10_4.sce | clc;
m=10;//kg, mass of rim
r=300;//mm, radius of disk
a=0.08;//m
b=0.3;//m
k=4;//kN/m
g=9.81;//m/s^2 gravity
//From theory we get
//sin(theta)=k*a^2/m/g/b*theta
dif=1;
for theta=0:0.001:1
dif=sin(theta)-k*a^2/m/g/b*theta;
if dif<=0.001 then printf("theta= %.3f rad or %.1f degrees\n",theta,theta/%pi*180);
end
end
|
26838b1f1fbf6e8d207dbf92c93dfc11e4de7020 | 117d2e73730351cc15ef378cd319a907c507e476 | /ajuste de curvas/ajusteMultiplo.sce | 12aa724fe59bcff02953bc77bbfcee490634265d | [
"Apache-2.0"
] | permissive | Trindad/algoritmos-calculo-numerico | b900768350277a46da636a3d0da9b8c83c4da780 | 1dcafd39d2281cb3065ba9742c693e5e49e2a08c | refs/heads/master | 2021-01-22T21:28:09.251265 | 2014-07-23T14:08:55 | 2014-07-23T14:08:55 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 6,964 | sce | ajusteMultiplo.sce | clc
clear
format (10)
//
//printf("\n\nMetodo do Ajuste Multiplo:\n");
//
////A = [4, 6 ,10;
//// 6, 14, 20;
//// 10 ,20 ,30];
////z = [24 46 70];
//
////A = [ 8 22 8;22 108 57; 8 57 36];
////z = [57 92 -5];
//A = [8 22 8;22 108 57;8 57 36];
////z = [57 92 -5];
//A = [1.25 0.25 1.5;0.25 1.25 1.5;1.5 1.5 4];
//z = [0.25 0.25 1.5]
//////disp(det(A));
//A = [21.16 21.16^2;22.96 22.96^2; 25.11 25.11^2;27.02 27.02^2;29.64 29.64^2;32 1024];
//b = [13.41 13.87 14.5 14.6 14.45 13.6];
//
//xi = 0;
//xi_2 = 0;
//xi_yi = 0;
//yi_2 = 0;
//yi = 0;
//xi_yi2 =0;
//xi_3 = 0;
//xi_4 = 0;
//
//printf("\n\nLinear\n\n");
//for i = 1 : 6
//
// xi = xi + A(i);
//
// xi_2 = xi_2+A(i)^2;
//
// xi_3 = xi_3+A(i)^3;
//
// xi_4 = xi_4+A(i)^4;
//
// xi_yi = xi_yi+A(i)*b(i);
//
// xi_yi2 = xi_yi2+A(i)*A(i)*b(i);
//
// yi = yi + b(i);
//
// yi_2 = yi_2+b(i)^2;
//
//end
//printf("xi= %f xi²=%f yi=%f",xi,xi_2,yi);
//
//A = [6 xi xi_2;xi xi_2 xi_3;xi_2 xi_3 xi_4];
//z = [yi,xi_yi,xi_yi2];
////disp(A);
//disp(z);
//disp(z(1)/6);
//A = [7 -1 3.4;
// -1 61 6.1;
// 3.4 6.1 2.38];
//z = [59.4 35.8 33.69];
A = [1 1;1 3.1];z = [4 0.5];
x = inv(A)*z';
disp(x);
A = [1 3.1];
b = [4 0.5];
ym = 4.5/2;
t = 0;
w = 0;
for i = 1:2
nova = (x(2)*A(i))+x(1);
t = t+(b(i)-nova)^2;
w = w+(b(i)-ym)^2;
printf("\nt %f w %f nova %f",t,w,nova);
end
R2 = 1-(t/w);
printf("\nR2:1-(%f/%f) %f\n",t,w,R2);
//z = [0^(1/3) 0.25^(1/3) 0.5^(1/3) 0.75^(1/3) 1] ;
//disp(z);
//A = [1 0 ;
// 1 0.25;
// 1 0.5;
// 1 0.75;
// 1 1];
A = [1 0.05;
1 0.1;
1 0.15;
1 0.2;
1 0.25;
1 0.3];
//z = [0.150822889,0.38566248,0.527632742,0.755022584,0.84397007,0.967584026];
z = [0.86 0.68 0.59 0.47 0.43 0.38];
//A=[1 25 0;
// 1 9 0.04;
// 1 1 0.09;
// 1 0 0.25;
// 1 1 0.36;
// 1 9 0.64;
// 1 16 1];
//z = [5.1 6.3 7.4 8.9 9.5 10.7 11.5];
x = inv(A'*A)*(A'*z');
printf("Segundo método\n");
disp(x);
//A = [0 0.25 0.5 0.75 1];
//b = [0^(1/3) 0.25^(1/3) 0.5^(1/3) 0.75^(1/3) 1];
//
//A = [-5 -3 -1 0 1 3 4];
//B = [0 0.2 0.3 0.5 0.6 0.8 1];
//b = [5.1 6.3 7.4 8.9 9.5 10.7 11.5];
//b = [-0.150822889,-0.38566248,-0.527632742,-0.755022584,-0.84397007,-0.967584026];
//b = [0.150822889,0.38566248,0.527632742,0.755022584,0.84397007,0.967584026];
ym = 3.41/6;
t = 0;
w = 0;
A = [0.05 0.1 0.15 0.2 0.25 0.3];
b = [0.86 0.68 0.59 0.47 0.43 0.38];
//a1 = %e^x(1);
//a2=-(x(2));
a1 = x(1);
a2 = x(2);
for i = 1:6
//nova = a1*(%e^(-a2*A(i)));
nova = (a1)+a2*A(i);
t = t+(b(i)-nova)^2;
w = w+(b(i)-ym)^2;
printf("\nt %f w %f nova %f",t,w,nova);
end
R2 = 1-(t/w);
printf("\nR2:1-(%f/%f) %f\n",t,w,R2);
//printf("-----------------------\nVetor x :\n");
//disp(x);
//printf("\n\nVetor z -- conferindo calculo\n");
//z = A * x;
//
//disp(z);
//
//A = [1 -1 -2;
// 1 0 -1;
// 1 1 0;
// 1 2 1;
// 1 4 1;
// 1 5 2;
// 1 5 3;
// 1 6 4];
//z = [13 11 9 4 11 9 1 -1];
////A = [1 0 1;
//// 1 1 2;
//// 1 2 3;
//// 1 3 4];
////z = [3 5 7 9];
//
////A = [1 -1 -2;
//// 1 0 -1;
//// 1 1 0;
//// 1 2 1;
//// 1 4 1;
//// 1 5 2;
//// 1 5 3;
//// 1 6 4];
////
////z = [13 11 9 4 11 9 1 -1];
//
//
//A = [1 0.5; 1 1;1 2];z = [5 2 1];
//A = [1 0 1 ;0 1 1 ;0 0 1 ;0.5 0.5 1]; z = [0 0 1 0.5];
//A = [1 21.16 21.16^2;1 22.96 22.96^2; 1 25.11 25.11^2;1 27.02 27.02^2;1 29.64 29.64^2;1 32 1024];
//z = [13.41 13.87 14.5 14.6 14.45 13.6];
//b = [0.1^(1/3) 0.25^(1/3) 0.5^(1/3) 0.75^(1/3) 0.9^(1/3)];
//A = [1 0.1 0.1^2 0.1^3;1 0.25 0.25^2 0.25^3;1 0.5 0.5^2 0.5^3;1 0.75 0.75^2 0.75^3;1 0.9 0.9^2 0.9^3];
//z = [log(b(1)) log(b(2)) log(b(3)) log(b(4)) log(b(5))];
//
//disp(x);
////
//disp(A*x);
//
//
////-------------------------------------------MQ-----------------------
//
//printf("\n\nMetodo dos Minimos Quadrados Linear");
//
//A = [1.3 3.4 5.1 6.8 8.0];
//b = [2 5.2 3.8 6.1 5.8];
//n = 5;
//A = [43.42 45.25 49.27 53.42];
//b = [27 22 17 9];
//n = 4;
//
//xi = 0;
//xi_2 = 0;
//xi_yi = 0;
//yi_2 = 0;
//yi = 0;
//printf("\n\nLinear\n\n");
//for i = 1 : n
//
// xi = xi + A(i);
//
// xi_2 = xi_2+A(i)^2;
//
// xi_yi = xi_yi+A(i)*b(i);
//
// yi = yi + b(i);
//
// yi_2 = yi_2+b(i)^2;
//
//end
//printf("xi= %f xi²=%f yi=%f",xi,xi_2,yi);
//disp(xi,xi_2);
//disp(yi);
//b1 = ((n*xi_yi)-xi*yi)/(n*xi_2-xi^2);
//b0 = (yi-xi*b1)/(n);
//
//printf("f(44)=%d %d*x = %d",b0,b1,b0+b1*44);
//
//printf("\n\nY = %f + %fX",b0,b1);
//
//printf("\n\nMétodo dos Minimos Quadrados Matricial:");
//
//A = [1 1.3;1 3.4;1 5.1;1 6.8 ;1 8.0];
//b = [2 5.2 3.8 6.1 5.8]
//x = inv(A'*A)*(A'*b');
//printf("\nSolução X :\n");
//disp(x);
//
//
//printf("\n\nAjuste Polinomial\n");
//
//A = [1 0 0;
// 1 1 1;
// 1 2 4;
// 1 3 9];
//b = [1 2.5 2.8 3.8];
//x = inv(A'*A)*(A'*b');
//
//printf("Solução x:");
//disp(x);
//
//disp(inv(A)*x);
//
//A = [4 6 14;6 14 36; 14 36 98];
//b = [9.8 19.5 45.2];
//
//x = inv(A)*b';
//disp(X=lsq(A,b));
//
//x=[0.3 0.5 0.7 0.9 1.1 1.3];
//y=[3.3 2.1 1.4 1.2 0.9 0.8];
//m=length(x);
//g1=x.^2;
//g2=x.^1;
//g3=x.^0;
//a11=sum(g1.*g1);
//a12=sum(g1.*g2);
//a13=sum(g1.*g3);
//a21=sum(g2.*g1);
//a22=sum(g2.*g2);
//a23=sum(g2.*g3);
//a31=sum(g3.*g1);
//a32=sum(g3.*g2);
//a33=sum(g3.*g3);
//b1=sum(y.*g1);
//b2=sum(y.*g2);
//b3=sum(y.*g3);
//a=[a11 a12 a13; a21 a22 a23; a31 a32 a33];
//b=[b1; b2; b3];
//f=(a\b)';
//y1=f(1)*g1+f(2)*g2+f(3)*g3;
//dt=sqrt(sum((y-y1).^2)/m)
//g1=exp(x);
//g2=exp(-x);
//g3=x.^0;
//a11=sum(g1.*g1);
//a12=sum(g1.*g2);
//a13=sum(g1.*g3);
//a21=sum(g2.*g1);
//a22=sum(g2.*g2);
//a23=sum(g2.*g3);
//a31=sum(g3.*g1);
//a32=sum(g3.*g2);
//a33=sum(g3.*g3);
//b1=sum(y.*g1);
//b2=sum(y.*g2);
//b3=sum(y.*g3);
//a=[a11 a12 a13; a21 a22 a23; a31 a32 a33];
//b=[b1; b2; b3];
//f=(a\b)';
//y2=f(1)*g1+f(2)*g2+f(3)*g3;
//dt=sqrt(sum((y-y2).^2)/m)
//plot(x,y,'*red',x,y1,'-blue',x,y2,'-black');
//plot((- 0.0379866)*x^2+2.049802118034*x- 13.037471,(- 0.0379866*2)*x+2.049802118034);
//A = [4 7.5;7.5 16.57];
//
//b = [10.2 14.73];
//
//
//A = [3 3.5;3.5 5.25];b=[8 6.5];
//x = inv(A)*b';
//
//A = [1 1.4 2 3.1];
//b = [4 3.7 2 0.5];
//disp(x);
//
//disp(A*x);
//
//ym = 0;
//Y = zeros(0);
//for i = 1: 4
//
// Y(i)= x(1)+(x(2)*A(i));
// ym = ym + b(i)
//
//end
//
//ym = ym/4;
//disp(ym);
//
//sumx = 0;
//sumy = 0;
//sumxy = 0;
//sumx2 = 0;
//sumY = 0;
//for i = 1 : 4
// sumx = sumx + A(i);
// sumxy = sumxy + A(i)*b(i);
// sumx2 = sumx2 + A(i)^2;
// sumy = sumy + b(i);
// sumY = sumY + Y(i);
//end
//
//R2 = 1 - ( (sumy-sumY)^2/(sumy-ym)^2 );
//disp(R2); |
865b9a9c8a5189d5ee773e116075bdd879086209 | 181f67b4868e49ca80872d6ac088a51540f90da6 | /186A10/centroid.sce | dc132fdb84d220a0a9b74efaeaad2f4b3be073d4 | [] | no_license | nobody51/AP186 | 567f25ba1ad7f71ad2983860078eeaccffa46080 | cb916fc9b38b508026403a2227ffc76d490fe948 | refs/heads/master | 2021-08-28T09:35:55.488122 | 2017-12-11T21:34:46 | 2017-12-11T21:34:46 | 104,969,401 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 411 | sce | centroid.sce | firstAxis = [];
secondAxis = [];
for count=1:11
I = imread("C:\Users\ADMIN\Documents\PHYSICS\6thYear\186\AP186\186A10\cleaned\cleanPen"+string(count)+".jpg");
[A,BB,centroid]=imblobprop(I);
firstAxis(count)=mean(centroid(1,:));
secondAxis(count)=mean(centroid(2,:));
end
disp('x-axis values in pixel coordinates');
disp(firstAxis);
disp('y-axis values in pixel coordinates');
disp(secondAxis);
|
f900a8296ff1f19656dccc708bad19e9467e24aa | 449d555969bfd7befe906877abab098c6e63a0e8 | /3845/CH2/EX2.3/Ex2_3.sce | ca88641f45c098b708bc75e31ba08471629874dd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 516 | sce | Ex2_3.sce | //Example 2.3
displacement_a=+2;//Displacement in part (a) (km), See Example 2.2
distance_a=abs(displacement_a);//Distance traveled in part (a) (km)
printf('Distance travelled in part (a) = %0.2f km',distance_a)
displacement_b=-1.5;//Displacement in part (b) (km), See Example 2.2
distance_b=abs(displacement_b);//Distance traveled in part (b) (km)
printf('\nDistance travelled in part (b) = %0.2f km',distance_b)
//Openstax - College Physics
//Download for free at http://cnx.org/content/col11406/latest
|
79ca5848b6793f3c3853f2232cefd329148341ba | 449d555969bfd7befe906877abab098c6e63a0e8 | /61/CH3/EX3.4/ex3_4.sce | c173ae4e881df32b967c0db00f32eadcae8ee1d5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 257 | sce | ex3_4.sce | //ex3.4
P_D_max=400*10^-3; //power in watts
df=3.2*10^-3 //derating factor in watts per celsius
del_T=(90-50); //in celsius, temperature difference
P_D_derated=P_D_max-df*del_T;
disp(P_D_derated,'maximum power dissipated at 90 degree celsius') |
1426155513206c41e6525dccbe589b7a3bb65570 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2825/CH3/EX3.17/Ex3_17.sce | 695a877b9f3bba788bfd37f641294a451e0710ad | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 162 | sce | Ex3_17.sce | //Ex3_17 Pg-192
clc
C=20 //capacitance in pF
V=5 //supply voltage in V
K=C*sqrt(V)
C_V1=K/sqrt(V+1)
printf("Capacitance for 1V increase =%.1f pF",C_V1)
|
40142545e9dd24dae216e5da2a3ace9484c4362b | b61214213da59c049ec1a018e815f4feb95bccca | /lexers/Scilab/example_ZDT3.sce | a402b48d9a074e52b3a2d0d0ab7efece74a584d0 | [] | no_license | Alexey-T/lexer_tests | 25ab893f928fe2ac073c153e349c140fd3bd8678 | 3d26a98a4f9a2ae12c4074ea90b9416d75736b83 | refs/heads/master | 2023-08-17T13:07:10.432096 | 2023-08-13T06:51:15 | 2023-08-13T06:51:15 | 74,854,492 | 3 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 4,142 | sce | example_ZDT3.sce | // Copyright 2012 Manolo Venturin, EnginSoft S.P.A.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Multiobjective optimization of the zdt3 function
clear
ieee(2);
// ZDT3 multiobjective function
function f = zdt3(x)
f1 = x(1);
g = 1 + 9 * sum(x(2:$)) / (length(x)-1);
h = 1 -sqrt(f1 ./ g) - f1 ./ g .* sin(10*%pi*f1);
f = [f1, g.*h];
endfunction
// Min boundary function
function Res = min_bd_zdt3(n)
if ~isdef('n','local') then n = 10; end;
Res = zeros(n,1);
endfunction
// Max boundary function
function Res = max_bd_zdt3(n)
if ~isdef('n','local') then n = 10; end;
Res = ones(n,1);
endfunction
// Problem dimension
dim = 2;
// Example of use of the genetic algorithm
funcname = 'zdt3';
PopSize = 400;
Proba_cross = 0.7;
Proba_mut = 0.1;
NbGen = 30;
NbCouples = 110;
Log = %T;
pressure = 0.1;
// Setting paramters of optim_nsga2 function
ga_params = init_param();
// Parameters to adapt to the shape of the optimization problem
ga_params = add_param(ga_params,'minbound',min_bd_zdt3(dim));
ga_params = add_param(ga_params,'maxbound',max_bd_zdt3(dim));
ga_params = add_param(ga_params,'dimension',dim);
ga_params = add_param(ga_params,'beta',0);
ga_params = add_param(ga_params,'delta',0.1);
// Parameters to fine tune the Genetic algorithm.
// All these parameters are optional for continuous optimization.
// If you need to adapt the GA to a special problem.
ga_params = add_param(ga_params,'init_func',init_ga_default);
ga_params = add_param(ga_params,'crossover_func',crossover_ga_default);
ga_params = add_param(ga_params,'mutation_func',mutation_ga_default);
ga_params = add_param(ga_params,'codage_func',coding_ga_identity);
ga_params = add_param(ga_params,'nb_couples',NbCouples);
ga_params = add_param(ga_params,'pressure',pressure);
// Define s function shortcut
deff('y=fobjs(x)','y = zdt3(x);');
// Performing optimization
printf("Performing optimization:");
[pop_opt, fobj_pop_opt, pop_init, fobj_pop_init] = optim_nsga2(fobjs, PopSize, NbGen, Proba_mut, Proba_cross, Log, ga_params);
// Compute Pareto front and filter
[f_pareto,pop_pareto] = pareto_filter(fobj_pop_opt,pop_opt);
// Optimal front function definition
function f2 = optimal_front(f1)
f2 = 1 - sqrt(f1) - f1.*sin(10*%pi*f1);
indf = find(f1>0.0830015349 & f1<=0.1822287280);
f2(indf) = %nan;
indf = find(f1>0.2577623634 & f1<=0.4093136748);
f2(indf) = %nan;
indf = find(f1>0.4538821041 & f1<=0.6183967944);
f2(indf) = %nan;
indf = find(f1>0.6525117038 & f1<=0.8233317983);
f2(indf) = %nan;
indf = find(f1>0.8518328654);
f2(indf) = %nan;
endfunction
// Compute the optimal front
f1_opt = linspace(0,1,1001);
f2_opt = optimal_front(f1_opt);
// Plot solution: Pareto front
scf(1);
// Plotting final population
plot(fobj_pop_opt(:,1),fobj_pop_opt(:,2),'g.');
// Plotting Pareto population
plot(f_pareto(:,1),f_pareto(:,2),'k.');
plot(f1_opt, f2_opt, 'r-');
title("Pareto front (#NbGen="+string(NbGen)+")","fontsize",3);
xlabel("$f_1$","fontsize",4);
ylabel("$f_2$","fontsize",4);
legend(['Final pop.','Pareto pop.','Pareto front.']);
// Transform list to vector for plotting Pareto set
npop = length(pop_opt);
pop_opt = matrix(list2vec(pop_opt),dim,npop)';
nfpop = length(pop_pareto);
pop_pareto = matrix(list2vec(pop_pareto),dim,nfpop)';
// Plot the Pareto set
scf(2);
// Plotting final population
plot(pop_opt(:,1),pop_opt(:,2),'g.');
// Plotting Pareto population
plot(pop_pareto(:,1),pop_pareto(:,2),'k.');
title("Pareto Set","fontsize",3);
xlabel("$x_1$","fontsize",4);
ylabel("$x_2$","fontsize",4);
legend(['Final pop.','Pareto pop.']);
|
be2bfb7ea42ce0191a211d10604ad5f58543cd8f | fe8d8fdfd76a35c2c7840989d444c052e301728a | /basic_statistics/make_histogram.sce | 77dc15a8b115e0c2f321eb72e9309f5a97c8b1d6 | [
"MIT"
] | permissive | KASHIHARAAkira/scilab_signal_analysis | a7522d678f6255aaa43e5a0ea14dec2387955712 | 20036ad50f7e099b52066ad8d4f439d412927984 | refs/heads/main | 2023-03-21T05:11:32.372462 | 2021-03-23T00:22:43 | 2021-03-23T00:22:43 | 348,306,832 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 634 | sce | make_histogram.sce | rangeData = 2:1001; // 1から1000の範囲を示します。
DATA = csvRead("./src/data.csv",',', [], 'string'); // data.csvを読み込みます。
TEMP = DATA(rangeData, 2).'; // 読み込んだデータの中から、気温データだけを抽出します。
TEMP = strtod(TEMP); // 文字列データとして読み込んだので、数値に変換します。
// データを線グラフに描画する
histplot([16:36],TEMP, normalization=%f) // 気温データをヒストグラムで表示する
ylabel("Count [-]"); // y軸のラベルを表示
xlabel("Temperature [degree]"); // x軸のラベルを表示
|
ed3601199e62b65f017d5c4841cd4c2e5f122127 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3440/CH9/EX9.6/Ex9_6.sce | 097f9a8e1a7eec2462ade718143ff25a33e19351 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 71 | sce | Ex9_6.sce | clc
T0=110//degree C
T=27+T0*log(2)
disp(T,"T in degree C is= ")
|
83479d9a120af5b85bccc8e38576318662560918 | 449d555969bfd7befe906877abab098c6e63a0e8 | /61/CH10/EX10.15/ex10_15.sce | 57fdc3a0d503dec166a0b58afbb290f84d8474cb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 78 | sce | ex10_15.sce | //ex10.15
f_cu=2000;
f_cl=200;
BW=f_cu-f_cl;
disp(BW,'bandwidth in hertz') |
adbca73f57f77806bee45c9757c2aafec53535bf | 449d555969bfd7befe906877abab098c6e63a0e8 | /2660/CH5/EX5.31/Ex5_31.sce | 41e7e39db4c9df2cbc1fbeac6f22da4973c0e888 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,304 | sce | Ex5_31.sce | clc
// capstan lathe
tc1 = 300 // total cost in Rs
mc1 = 2.5 // material cost per piece in Rs
olc1 = 5 // operation labour cost per hour in Rs
ct1 = 5 // cycle time per piece in min.
slc1 = 20 // setting up labour cost in Rs per hour
st1 = 1 // setting up time in hour
mo1 = 300/100 // machine over heads of operation labour cost
o1 = mo1*olc1 // overheads of capstan lathe in Rs per hour
fc1 = tc1 + slc1*st1 + o1*st1 // fixed cost of capstan lathe in Rs
vc1 = mc1 + (olc1*ct1)/60 + (o1*ct1)/60 // variable cost in Rs
// Automatic (single spindle)
tc2 = 300 // total cost in Rs
cc2 = 1500 // cost of cams in Rs
mc2 = 2.5 // material cost per piece in Rs
olc2 = 2 // operation labour cost per hour in Rs
ct2 = 1 // cycle time per piece in min.
slc2 = 20 // setting up labour cost in Rs per hour
st2 = 8 // setting up time in hour
mo2 = 1000/100 // machine over heads of operation labour cost
o2 = mo2*olc2 // overheads of single spindle in Rs per hour
fc2 = tc2 + cc2 + slc2*st2 + o2*st2 // fixed cost of single spindle in Rs
vc2 = mc2 + (olc2*ct2)/60 + (slc2)/60 // variable cost in Rs
q = (fc2-fc1)/(vc1-vc2) // break even quantity
printf("\n Break even quantity for a component which can be produced on either the capstan lathe or single spindle automatic = %d pieces" , q)
|
e9e7bacbccd0764f04b471e8fd9c1ad98568e3b7 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.3.1/Unix-Windows/scilab-2.3/macros/scicos/getparpath.sci | 1795a6b349cca6df2703e475b21480b95f0831d7 | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 960 | sci | getparpath.sci | function ppath=getparpath(scs_m,bpath,ppath)
// getparpath - computes path to block parameter data structure in scicos structure
//%Syntax
// ppath=getparpath(scs_m) standard call
// ppath=getparpath(scs_m,bpath,ppath) recursive call
//%Parameters
// scs_m : scicos data structure
// bpath : current path to scs_m
// ppath : list, each element is a vector giving the path to a block
// with non empty rpar or ipar or states
//!
excluded=['IN_f','OUT_f','CLKIN_f','CLKOUT_f','CLKINV_f','CLKOUTV_f']
[lhs,rhs]=argn(0)
if rhs<2 then bpath=[],end
if rhs<3 then ppath=list(),end
for k=2:size(scs_m)
o=scs_m(k)
if o(1)=='Block' then
if and(o(5)<>excluded) then
model=o(3)
if model(1)=='super'|model(1)=='csuper' then
o=get_tree_elt(scs_m,[k,3,8])
ppath=getparpath(o,[bpath k],ppath)
else
if model(6)<>[]|model(7)<>[]|model(8)<>[]|model(9)<>[] then
ppath(size(ppath)+1)=[bpath k],
end
end
end
end
end
|
5318ab0684ce01c1dd34ce2c59f32dcd5c7cdc2d | 449d555969bfd7befe906877abab098c6e63a0e8 | /572/CH13/EX13.10/c13_10.sce | fc3c8493d2ebbf59cc838d6ee7fc2cd9bf93abf3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,233 | sce | c13_10.sce | //(13.10) Determine the change in entropy of the system of Example 13.6 in kJ/K.
//solution
Rbar = 8.314 //universal gas constant in SI units
//The chemical equation for the complete combustion of methane with oxygen is
//CH4 + 2O2 ----> CO2 + 2H2O
yCH4 = 1/3
yO2 = 2/3
yCO2 = 1/3
yH2O = 2/3
//from table A-25
sbarCH4atTref = 186.16 //in kj/kmol.K
sbarO2atTref = 205.03 //in kj/kmol.K
sbarCH4 = sbarCH4atTref - Rbar*log(yCH4)
sbarO2 = sbarO2atTref - Rbar*log(yO2)
p2 = 3.02 //in atm
pref = 1 //in atm
//with help from table A-23
sbarCO2 = 263.559 - Rbar*log(yCO2*p2/pref) //in kj/kmol.K
sbarH2O = 228.321 - Rbar*log(yH2O*p2/pref) //in kj/kmol.K
deltaS = sbarCO2 + 2*sbarH2O - sbarCH4 -2*sbarO2 //in kj/K
printf('the chenge in entropy of the system in kJ/K is: %f',deltaS) |
25f40a6fdcb34e094fb0b2bc53c10ef3c6e93b70 | 449d555969bfd7befe906877abab098c6e63a0e8 | /530/CH9/EX9.8/example_9_8.sce | 72c96259ad70f75161178cdb41d7ee0ab5f9484a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,056 | sce | example_9_8.sce | clear;
clc;
// A Textbook on HEAT TRANSFER by S P SUKHATME
// Chapter 9
// Mass Transfer
// Example 9.8
// Page 369
printf("Example 9.8, Page 369 \n \n");
V = 0.5 ; // [m/s]
T_h = 30 ; // [C]
T_c = 26 ; // [C]
Tm = (T_h+T_c)/2;
// From table A.2
rho = 1.173 ; // [kg/m^3]
Cp = 1005 ; // [J/kg K]
k = 0.02654 ; // [W/m K]
alpha = k/(rho*Cp); // [m^2/s]
// From Table 9.2 at 301 K
Dab = 2.5584*10^-5 ; // [m^2/s]
lambda = 2439.2*10^3 ; // [J/kg]
// Substituting in equation 9.7.5
// let difference = rho_aw-rho_a infinity
difference = rho*Cp*((alpha/Dab)^(2/3))*(T_h-T_c)/lambda;
// From steam table
Psat = 3363;
rho_aw = Psat/(8314/18*299);
rho_inf = rho_aw - difference;
x = rho_inf/rho; // mole fraction of water vapour in air stream
PP = rho_inf*8314/18*303; // Partial pressure of water vapour in air stream
// From steam table partial pressure of water vapour at 30 C
PP_30 = 4246 ; // [N/m^2]
rel_H = PP/PP_30;
percent = rel_H*100;
printf("Relative humidity = %f i.e. %f percent ",rel_H,percent); |
47d8dcd05b1e8e0e507b5bcc6c7cbd4af24287f2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1088/CH1/EX1.2/Example2.sce | b616263309a4c99d9b7bd086e934c92c251f6c66 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 268 | sce | Example2.sce | clear()
//clc()
disp("Example 2 : Clear the current session window at the press of a key")
printf("\n**********************************************************\n")
disp("Answer :")
disp("")
disp("Press any key to clear the Session window ")
halt("")
//clc()
|
27ee44ffc8e1a978a3e4892e19edec7a26a8bec9 | fd7a25076f7e59bdd5cf288a37259d52c17275a1 | /TP01/zhang.sce | ff3b954e2ea7b2351fee74a21bc798fa1a9d2ca5 | [
"MIT"
] | permissive | Barchid/VISA | f8d402f9b3b392f2c25a9fe48e26f12443f2d507 | 1b8842e5985ab3f60580c25c9b9563634d4c8708 | refs/heads/master | 2020-07-28T04:44:30.033374 | 2020-01-06T00:10:19 | 2020-01-06T00:10:19 | 209,313,232 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,960 | sce | zhang.sce | []// -----------------------------------------------------------------------
// Methode de Zhang pour la calibration d'une camera
// Copyright (C) 2010-2017 Universite Lille 1
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
// -----------------------------------------------------------------------
// Definition des fonctions utilitaires
exec ('glue.sci', -1);
exec ('methodes.sci', -1);
// Nombre d'images
ni = 4;
// Lire les coordonnees des points de la mire dans la scene
M = read('points.txt', -1, 2)';
np = size(M, 2);
M = [M; zeros(1, np); ones(1, np)];
sansZ = [1, 2, 4];
// Initialiser la matrice des contraintes
V = [];
// Matrices des homographies
H = zeros(3, 3, ni);
// Coordonnees de tous les points image
m = zeros(3, np, ni);
// Boucler pour toutes les images
for i = 1:ni
// Lire les points de l'image
m(1:2,:,i) = read('points-'+string(i)+'.txt', -1, 2)';
m(3,:,i) = ones(1, np);
// Estimer l'homographie entre la mire et l' image
H(:,:,i) = ZhangHomography(M(sansZ,:), m(:,:,i));
// Ajouter deux lignes de contraintes dans V
V = [V; ZhangConstraints(H(:,:,i))];
end
// Calculer le vecteur b
b = SmallestRightSingular(V);
// Estimation de la matrice intrinseque
A = IntrinsicMatrix(b);
iA = inv(A);
// Estimations des matrices extrinseques
E = zeros(3, 4, ni);
for i = 1:ni
E(:,:,i) = ExtrinsicMatrix(iA, H(:,:,i));
end
|
bacf12ed63ee8743a03061c6716eff6fb9f68d29 | 449d555969bfd7befe906877abab098c6e63a0e8 | /896/CH1/EX1.7/7.sce | b7d15a99cdb71d1d38fa02de84965457ee1f26f0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 376 | sce | 7.sce | clc
//Example 1.7
//Calculate the wt of metallic aluminium deposited in an electrolytic cell
I=50000//Ampere or Coulumbs/sec
//1 hr = 3600 sec
I1=50000*3600//C/hr
//96500 C = 1 gm.eq
//1 mole of aluminium = 3 gm.eq
//1 mole of aluminium = 27 gm
m=I1*(1/96500)*(27/3)/1000//Kg/hr
printf("the wt of metallic aluminium deposited in an electrolytic cell is %f Kg/hr",m); |
a0098849ad0079eb5d9731cb6afc7fa46f36f519 | cb795495d7cb7e053c51236279bdfedf3e4b7a37 | /Scilab/Iris & Pima India using ANN/pima.sce | 170b93db20b95cff506573c8c84c36a3b0ef27e3 | [
"MIT"
] | permissive | memr5/Machine-Learning-Portfolio | 7b21443912deb8381518fcf0c12b4fd15ecbb9a6 | 31a9430aa957949c3f9e05e696f25f7200e21263 | refs/heads/master | 2021-07-17T15:48:05.964583 | 2020-04-23T12:35:58 | 2020-04-23T12:35:58 | 201,817,591 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,893 | sce | pima.sce | data = csvRead('pima-indians-diabetes.csv')
X = data(:,1:8)'
y = data(:,9)'
// Train-Test split
[X, y] = ann_pat_shuffle(X, y)
split = floor(size(X)(2)*0.7)
X_train = X(:,1:split)
y_train = y(:,1:split)
X_test = X(:,split+1:size(X)(2))
y_test = y(:,split+1:size(X)(2))
// Filling missing values
for i=2:6
temp0 = X_train(i,:)
if i == 4 || i == 5 then
temp1 = median(temp0(temp0~=0))
else
temp1 = mean(temp0(temp0~=0))
end
temp0(temp0==0) = temp1
X_train(i,:) = temp0
end
for i=2:6
temp0 = X_test(i,:)
if i == 4 || i == 5 then
temp1 = median(temp0(temp0~=0))
else
temp1 = mean(temp0(temp0~=0))
end
temp0(temp0==0) = temp1
X_test(i,:) = temp0
end
// MinMax Normalization
X_train_normalized = (X_train - min(X_train,'c') * ones(1,split) )./((max(X_train,'c')-min(X_train,'c'))*ones(1,split))
X_test_normalized = (X_test - min(X_train,'c') * ones(1,size(X)(2) - split) )./((max(X_train,'c')-min(X_train,'c'))*ones(1,size(X)(2) - split))
// Modeling
N = [8 8 8 1]
W = ann_FF_init(N)
lp = [0.1,0.00001]
T = 50
t = 1
train_losses = []
test_losses = []
train_accuracies = []
test_accuracies = []
while t<=T
W_updated = ann_FF_Std_online(X_train_normalized, y_train, N, W, lp, 1)
//W_updated = ann_FF_Std_batch(X_train, y_train, N, W, lp, 1)
W = W_updated
y_train_predicted = ann_FF_run(X_train_normalized, N, W)
y_test_predicted = ann_FF_run(X_test_normalized, N, W)
disp(t,"Epoch: ")
train_loss = ann_sum_of_sqr(y_train_predicted, y_train)/split
disp(train_loss,'Training Loss: ')
test_loss = ann_sum_of_sqr(y_test_predicted, y_test)/(size(X)(2) - split)
disp(test_loss,'Testset Loss: ')
train_accuracy = 1 - ann_sum_of_sqr(y_train_predicted>=0.5,y_train)/split
test_accuracy = 1 - ann_sum_of_sqr(y_test_predicted>=0.5,y_test)/(size(X)(2) - split)
disp(train_accuracy,'Training Accuracy: ')
disp(test_accuracy,'Test Accuracy: ')
disp("")
train_losses = [train_losses train_loss]
test_losses = [test_losses test_loss]
train_accuracies = [train_accuracies train_accuracy]
test_accuracies = [test_accuracies test_accuracy]
if t>=2 then
clf(1)
figure(1)
plot((1:t)',[train_losses;test_losses]')
//plot(1:t,test_losses,c='b')
xlabel('Epochs')
ylabel('Loss')
title('Train & Test Losses')
hl=legend(['train loss';'test loss']');
clf(2)
figure(2)
plot((1:t)',[train_accuracies;test_accuracies]')
//plot(1:t,test_accuracies,c='b')
xlabel('Epochs')
ylabel('Accuracy')
title('Train & Test Accuracy')
ha=legend(['train accuracy';'test accuracy']');
end
// Callback
if test_accuracy >= 0.95
break
end
t = t+1
end
|
df4cea733a9bd3682cc181e73940335d486ed72d | c89c3eb73e1c7b9f26076ad36749b4fd9ee2a69d | /My Implementations/OR16Way.tst | a24f0284c571afb9458902ace797456287969a88 | [] | no_license | gvela024/Elements-Of-Computing-Systems | cef0f824a4ca775ff7d2353a49c6510134db83da | 65a2b40979439b0d77e6fab1b3faa4b1a78ddd03 | refs/heads/master | 2021-01-22T03:13:48.244660 | 2015-12-26T00:53:51 | 2015-12-26T00:53:51 | 41,272,979 | 0 | 0 | null | 2015-11-11T22:27:40 | 2015-08-24T00:17:59 | Assembly | UTF-8 | Scilab | false | false | 134 | tst | OR16Way.tst | load OR16Way.hdl,
output-file OR16Way.out,
output-list in0%B1.16.1 out0;
set in0 %X0000, eval, output;
set in0 %X0200, eval, output;
|
e6380958597515fedf94b15d224ba6111b03194d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1727/CH8/EX8.1/8_1.sce | 86ebd487ff4faabca1da02ed43b59b280fee3c17 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 328 | sce | 8_1.sce | clc
//Initialization of variables
b=4 //m
y=1.2 //m
sf=0.001
n=0.012
gam=9.81*1000
//calculations
A=b*y
R=A/(b+ 2*y)
Q=1/n *A*R^(2/3) *sf^(1/2)
T=gam*R*sf
//results
printf("Discharge = %.3f m^3/s",Q)
printf("\n bed shear = %.2f N/m^2",T)
//The answer in textbook is wrong for discharge. Please use a calculator.
|
370cc35b06355c2bd00ebeb9675d35f1d7234c59 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2159/CH4/EX4.6/46.sce | 1120ad9b6c690e55beb0c33e87de04bc3589dff4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 205 | sce | 46.sce | // problem 4.6
b=2
d=3
H1=4
H2=7
H=0.8+H1
Cd=0.62
g=9.81
Q1=(2*Cd*b*((2*g)^0.5)*((H*H*H)^0.5-(H1*H1*H1)^0.5))/3
Q2=Cd*b*(H2-H)*((2*g*H)^0.5)
Q=Q1+Q2
q=Q*1000
disp(q,"Discharge in litres/sec")
|
a55e2459827af4e913a7dae31604376b8ba40e0e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2021/CH6/EX6.6/EX6_6.sce | 62928e77d52439b4da6bb7291b91451dfe16795e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 317 | sce | EX6_6.sce | //Finding of Pressure Difference
//Given
g=9.81;
spgr=0.9;
spgr1=13.6;
rho=1000;
rho1=spgr*1000*g;
zd=0.3;
gd=25;
x=(spgr1/spgr)-1;
x1=((gd*x)/100)+zd;
//To find
pd=x1*rho1;disp(x1);
disp("Pressure Difference ="+string(pd)+" N/m^2");
pd1=pd/10000;
disp("Pressure Difference ="+string(pd1)+" N/cm^2");
|
3b4b6d24c6dc94b348ce8a6a72ee63f05b62c42a | 9651e8d97efa545ec67b74488e570618d7175865 | /Project/Improved-Ray-Tracer/executables/for_windows_rendering/scenes/glass_w_straw/glass_w_straw.sce | 6305529aeeffb898ec459a3c21179d9ed9c9e0e1 | [] | no_license | Ghalicb/computer-graphic-concepts | ae3f97be77b285e9f222200699c734f7c658b378 | 8995f1ad7e924c062e2df88b0d88db9fe0b5d95c | refs/heads/master | 2022-09-04T18:24:18.315890 | 2020-05-13T13:36:49 | 2020-05-13T13:36:49 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,061 | sce | glass_w_straw.sce | #The origin is at the center of the box
# maximum recursion depth and number of paths per pixel
max_depth 10
paths_per_pixel 1500
# camera: eye, center, up, fovy, width, height
camera -150 200 600 0 1 -4 0 1 0 80 1000 1000
# background color
background 0 0 0
# AreaLights : center, color, block_side, x_parts, y_parts
areaLight 0 899 0 1.0 1.0 1.0 100 2 2
# planes: center, normal, material
# ground, roof and back wall (white)
plane 0 -700 0 0 1 0 0.03 0.16 0.25 0 0 0.0 1.0
plane 0 900 0 0 -1 0 0.8 0.8 0.8 0 0 0.0 1.0
plane 0 0 -700 0 0 1 0.8 0.8 0.8 0 0 0.0 1.0
# left (red) and right (green) walls
plane -700 0 0 1 0 0 0.8 0.8 0.8 0 0 0.0 1.0
plane 700 0 0 -1 0 0 0.8 0.8 0.8 0 0 0.0 1.0
# closed cylinders : center, radius, axis, height, material
# glass
closedCylinder -30 -160 -10 200 0 1 0 300 1.0 1.0 1.0 0 1 1.33 0.0
#straw
cylinder 44 -74 -10 30 200 200 0 700 1.0 0.0 0.0 0 0 0.0 0.7
|
df641ea72f6674b56fd0bdc874b2c2a7809018a4 | 676ffceabdfe022b6381807def2ea401302430ac | /library/Demos/LocalRegions/Tests/LocProject_Diff3D_Reg_Hex_Lagrange_Basis_P6_Q7.tst | e2ef5492bed3d0f264e476d280a10170c8ccebae | [
"MIT"
] | permissive | mathLab/ITHACA-SEM | 3adf7a49567040398d758f4ee258276fee80065e | 065a269e3f18f2fc9d9f4abd9d47abba14d0933b | refs/heads/master | 2022-07-06T23:42:51.869689 | 2022-06-21T13:27:18 | 2022-06-21T13:27:18 | 136,485,665 | 10 | 5 | MIT | 2019-05-15T08:31:40 | 2018-06-07T14:01:54 | Makefile | UTF-8 | Scilab | false | false | 633 | tst | LocProject_Diff3D_Reg_Hex_Lagrange_Basis_P6_Q7.tst | <?xml version="1.0" encoding="utf-8"?>
<test>
<description>LocProject_Diff3D Reg. Hex Lagrange Basis, P=6, Q=7</description>
<executable>LocProject</executable>
<parameters>-s hexahedron -b GLL_Lagrange GLL_Lagrange GLL_Lagrange -o 6 6 6 -p 7 7 7 -c 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 1.0 0.0 1.0 1.0 1.0 1.0 0.0 1.0 1.0 -d</parameters>
<metrics>
<metric type="L2" id="1">
<value tolerance="1e-08">5.89495e-13</value>
</metric>
<metric type="Linf" id="2">
<value tolerance="1e-08">2.44995e-11</value>
</metric>
</metrics>
</test>
|
e15f2dbd3a24d48d4720040fafc7d158a87ee7dd | 449d555969bfd7befe906877abab098c6e63a0e8 | /991/CH6/EX6.15/Example6_15.sce | baa5c550d07b091b3c52d283c2a0c13fa4cca15c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 180 | sce | Example6_15.sce | //Example 6.15
clc
format(5)
beta_dc=100
alpha_dc=beta_dc/(1+beta_dc)
disp(alpha_dc,"The d.c. current gain of the transistor in CB mode is, alpha_dc = beta_dc/(1+beta_dc) = ") |
936c0b89072621d0bffcf896fc2a28b62d9ec9c0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2705/CH5/EX5.3/Ex5_3.sce | 71188b43b2f88b7c2d89e9953c60b2640cfd6eb0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 425 | sce | Ex5_3.sce | clear;
clc;
disp('Example 5.3');
// aim : To determine
// the new volume of the gas
// Given values
V1 = 10000;// [mm^3]
T1 = 273+18;// [K]
T2 = 273+85;// [K]
// solution
// since pressure exerted on the apparatus is constant so using charle's law V/T=constant
// hence
V2 = V1*T2/T1;// [mm^3]
mprintf('\n The new volume of the gas trapped in the apparatus is = %f mm^3\n',V2);
// End
|
d91e8037687e1bf23a2f3663d28456bf4b93618f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1442/CH14/EX14.5/14_5.sce | 2747af5fc3b623232265ca32a47d3944e2e06cb5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 349 | sce | 14_5.sce | clc
//initialisation of variables
s2= 5.7905 //kJ/kg K
s1= 4.4728 //kJ/kg K
s3= 4.64437 //kJ/kg K
s4= 5.7883 //kJ/kg K
s5= 6.2036 //kJ/kg K
s6= 5.9128 //kJ/kg K
//CALCULATIONS
S1= s2-s1
S2= s4-s3
S3= s5-s6
//RESULTS
printf (' Entropy= %.4f kJ/kg K',S1)
printf (' \n Entropy= %.4f kJ/kg K',S2)
printf (' \n Entropy= %.4f kJ/kg K',S3)
|
e0aa23d1aa33e52363e6aab05b185be92c9b20ab | 449d555969bfd7befe906877abab098c6e63a0e8 | /20/CH2/EX2.29.131/example2_29_pg131.sce | f67a9454f38c96be0bd6eb62d06d1eb813f20a41 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,102 | sce | example2_29_pg131.sce | // Example2_29_pg131.sce
// Positive Negative and Zero sequence voltages
// Theory of Alternating Current Machinery by Alexander Langsdorf
// First Edition 1999, Thirty Second reprint
// Tata McGraw Hill Publishing Company
// Example in Page 131
clear; clc; close;
// Given data
V_1 = 1000 + 50*%i;
V_2 = -800 + 100*%i;
V_3 = -1100 - 270*%i;
a = cos(2*%pi/3) + %i*sin(2*%pi/3);
// Calculations
disp('According to Equations 2-90, 2-88 and 2-89');
V_0 = (V_1 + V_2 + V_3)/3;
V_1p = (V_1 + V_2*a + V_3*a^2)/3;
V_1n = (V_1 + V_2*a^(-1) + V_3*a^(-2))/3;
printf("\n\nZero sequence voltage is = %0.4f /_ %0.2f Volts \nPositive sequence voltage is = %0.4f /_ %0.2f Volts \nNegative sequence voltage is = %0.4f /_ %0.2f Volts\n",abs(V_0),atan(imag(V_0)/real(V_0))*180/%pi, abs(V_1p),atan(imag(V_1p)/real(V_1p))*180/%pi, abs(V_1n),atan(imag(V_1n)/real(V_1n))*180/%pi);
// Result
// According to Equations 2-90, 2-88 and 2-89
//
//
// Zero sequence voltage is = 302.6549 /_ 7.59 Volts
// Positive sequence voltage is = 558.9050 /_ 13.62 Volts
// Negative sequence voltage is = 757.9524 /_ -3.15 Volts
|
591f80211501607e96277f03d2cbb9112a3195b6 | 00e20965b325210cb29d4887402a2d5d7f9368fc | /Labs6_9/Course/test2.tst | d12df90637e1dbeadf1d4200a9e2ab25eb526c58 | [] | no_license | hxnchar/KPIlabs | 375f414b3666d4a09e5aed09cf8f9763ac15f819 | 5d5ebffd18d75e46bc06b194bfac70ec82bf6014 | refs/heads/main | 2023-05-01T06:42:39.814773 | 2021-05-20T10:36:52 | 2021-05-20T10:36:52 | 344,482,733 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,142 | tst | test2.tst | 5
1.Сформулюйте теорему Піфагора
+а)У прямокутному трикутнику квадрат гіпотенузи дорівнює сумі квадратів катетів.
б)У прямокутному трикутнику квадрат гіпотенузи/2 дорівнює сумі квадратів катетів.
в)У прямокутному трикутнику квадрат медіани дорівнює сумі квадратів катетів.
2.Сформулюйте математичний запис теореми Піфагора
+а)a^2+b^2=c^2
б)a^2+b^2=c^2/2
в)a^2+b^2=m^2, де m - довжина медіани
3.У прямокутному трикутнику катети 12 і 5 ,яка буде гіпотенуза?
+а)13
б)14
в)15
4.У прямокутному трикутнику один кут дорівнює 45 градусів, які кути в трикутнику?
+а)45 90 45
б)45 80 45
в)45 90 55
5.У прямокутному трикутнику катети 3 і 4 ,яка буде гіпотенуза?
а)4
+б)5
в)8 |
b4b29178f38d158f535cafb4bd30f5e0ccd46dca | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.5/macros/scicos/getblocklink.sci | 51b8f92b36df56c45e8a4c44e02e81de73aee6bd | [
"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 | 480 | sci | getblocklink.sci | function [k,wh]=getblocklink(objs,pt)
// Copyright INRIA
n=size(objs)
wh=[];
x=pt(1);y=pt(2)
data=[]
k=[]
eps=4
for i=2:n //loop on objects
o=objs(i)
if o(1)=='Block' then
graphics=o(2)
[orig,sz]=graphics(1:2)
data=[(orig(1)-x)*(orig(1)+sz(1)-x),(orig(2)-y)*(orig(2)+sz(2)-y)]
if data(1)<0&data(2)<0 then k=i,break,end
elseif o(1)=='Link' then
xx=o(2);yy=o(3);
[d,ptp,ind]=dist2polyline(xx,yy,pt)
if d<eps then k=i,wh=ind,break,end
end
end
|
e8c609a5760476921ae643cc4cd26d7a41eae0bd | 66106821c3fd692db68c20ab2934f0ce400c0890 | /test/disassembler/ldpd.instr.tst | 0ebae28423fdb5cbc387464e3e3b5fa0fb703206 | [] | 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 | 1,514 | tst | ldpd.instr.tst | ; @Harness: disassembler
; @Result: PASS
section .text size=0x00000046 vma=0x00000000 lma=0x00000000 offset=0x00000034 ;2**0
section .data size=0x00000000 vma=0x00000000 lma=0x00000000 offset=0x0000007a ;2**0
start .text:
label 0x00000000 ".text":
0x0: 0x0e 0x90 ld r0, -X
0x2: 0x1e 0x90 ld r1, -X
0x4: 0x2e 0x90 ld r2, -X
0x6: 0x3e 0x90 ld r3, -X
0x8: 0x4e 0x90 ld r4, -X
0xa: 0x5e 0x90 ld r5, -X
0xc: 0x6e 0x90 ld r6, -X
0xe: 0x7e 0x90 ld r7, -X
0x10: 0x8e 0x90 ld r8, -X
0x12: 0x9e 0x90 ld r9, -X
0x14: 0xae 0x90 ld r10, -X
0x16: 0xbe 0x90 ld r11, -X
0x18: 0xce 0x90 ld r12, -X
0x1a: 0xde 0x90 ld r13, -X
0x1c: 0xee 0x90 ld r14, -X
0x1e: 0xfe 0x90 ld r15, -X
0x20: 0x0e 0x91 ld r16, -X
0x22: 0x1e 0x91 ld r17, -X
0x24: 0x2e 0x91 ld r18, -X
0x26: 0x3e 0x91 ld r19, -X
0x28: 0x4e 0x91 ld r20, -X
0x2a: 0x5e 0x91 ld r21, -X
0x2c: 0x6e 0x91 ld r22, -X
0x2e: 0x7e 0x91 ld r23, -X
0x30: 0x8e 0x91 ld r24, -X
0x32: 0x9e 0x91 ld r25, -X
0x34: 0xae 0x91 ld r26, -X ; undefined
0x36: 0xbe 0x91 ld r27, -X ; undefined
0x38: 0xce 0x91 ld r28, -X
0x3a: 0xde 0x91 ld r29, -X
0x3c: 0xee 0x91 ld r30, -X
0x3e: 0xfe 0x91 ld r31, -X
0x40: 0x0e 0x90 ld r0, -X
0x42: 0x0a 0x90 ld r0, -Y
0x44: 0x02 0x90 ld r0, -Z
start .data:
|
00259133ce25aca1fdc1fcbb6925a5d3d4cb9466 | 449d555969bfd7befe906877abab098c6e63a0e8 | /830/CH8/EX8.2.2/Freq_Sampling_Technique2.sce | 23ddf28e0fda8e759f85f64447f4160198972000 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 976 | sce | Freq_Sampling_Technique2.sce | //Graphical//
//Example 8.2.2
//Design of FIR Filter using Frequecny Sampling Technique
//Low Pass Filter Design
clear;
clc;
close;
M =32;
T1 = 0.3789795; //for alpha = 0 (Type I)
Hr = [1,1,1,1,1,1,T1,0,0,0,0,0,0,0,0,0];
for k =1:length(Hr)
G(k)=((-1)^(k-1))*Hr(k);
end
h = zeros(1,M);
U = (M-1)/2
for n = 1:M
h1 = 0;
for k = 2:U+1
h1 =G(k)*cos((2*%pi/M)*(k-1)*((n-1)+(1/2)))+h1;
end
h(n) = (1/M)* (G(1)+2*h1);
end
h
[hzm,fr]=frmag(h,256);
hzm_dB = 20*log10(hzm)./max(hzm);
figure
plot(2*fr,hzm)
a=gca();
xlabel('Normalized Digital Frequency W');
ylabel('Magnitude');
title('Frequency Response 0f FIR LPF using Frequency Sampling Technique with M = 15 with Cutoff Frequency = 0.466')
xgrid(2)
figure
plot(2*fr,hzm_dB)
a=gca();
xlabel('Normalized Digital Frequency W');
ylabel('Magnitude in dB');
title('Frequency Response 0f FIR LPF using Frequency Sampling Technique with M = 15 with Cutoff Frequency = 0.466')
xgrid(2)
|
ab854c32ce7d310fd35356f4f3838e4562dea031 | 449d555969bfd7befe906877abab098c6e63a0e8 | /686/CH12/EX12.1/Ex12_1.sci | 55379e6d475e7489a75c4103bcf6f55098a554b9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 799 | sci | Ex12_1.sci | clc();
clear;
// To calculate the heat transfer coefficient
L = 1029; // Heat of evaporation in Btu/lb
n = 0.654*10^-5; // Kinematic viscosity in Btu/hr-ft-F
p = 62; // density in lb/ft^3
k = 0.367; // Thermal conductivity in Btu/hr-ft^2-F
g = 32.2; // Gravity
x = 3/12; // Distance from upper edge in ft
ts = 114; // Saturation temperature in F
tw = 105; // Wall temperature in F
h = (g*k^3*p*L*3600/(4*n*x*(ts-tw)))^0.25; // Heat transfer coefficient
hav = h*4/3; // Avg heat transfer coefficient
printf("The average heat transfer coefficient is %d Btu/hr-ft^2-F",hav);
|
064bb4e4c24bc5e418a0b0f3442279c886d36866 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1938/CH5/EX5.7/5_7.sce | e4f2d8c56ca37d0db679a247f5a467e28c41d41c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,138 | sce | 5_7.sce | clc,clear
printf('Example 5.7\n\n')
//case(i)
V_L=440
V_ph=V_L/sqrt(3)
phi=acos(0.8)
//armature resistance drop from the graph
//RS=1.1 cm and scale =50 V/cm
arm_leak_resis= 1.1*50 //armature leakage resistance
OB=V_ph*cos(phi)
AB=V_ph*sin(phi) + arm_leak_resis
E_1ph= sqrt( OB^2+AB^2 )
F_f1=6.1 //corresponding value from OCC
F_AR=3.1*1
F_R= sqrt( F_f1^2 + F_AR^2 -2*F_f1*F_AR*cosd(90+acosd(0.8)) )
E_ph=328 //voltage corresponding to F_R=8.33 A from OCC graph
regulation1= 100*(E_ph - V_ph)/V_ph
printf('(i)Regulation for 0.8 pf lagging is %.2f percent \n',regulation1)
//case(ii)
OC=V_ph*cos(phi)
BC=V_ph*sin(phi) - arm_leak_resis
E_1ph= sqrt( OC^2+BC^2 )
F_f1=6.1 //corresponding value from OCC
F_R= sqrt( F_f1^2 + F_AR^2 -2*F_f1*F_AR*cosd(90-acosd(0.8)) )
E_ph=90 //volatge corresponding to F_R=3.34 A from OCC graph
regulation2= 100*(E_ph - V_ph)/V_ph
printf('(ii)Regulation for 0.8 pf leading is %.2f percent \n',regulation2)
printf('\nThe answer in part (ii) doesnt match with textbook because of calculation mistake done in last step in the textbook')
|
5ab2430198e4be70e6a506545c782e054c5a6919 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1427/CH4/EX4.3/4_3.sce | bf70424fcff0171848539d49fca1b361c8f1b2a2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 364 | sce | 4_3.sce | //ques-4.3
//Calculating COD of effluent sample
clc
V=25;//volume of effluent (in mL)
v=8.3;//volume of dichromate (in mL)
M=0.001;//molarity of dichromate
//1000mL of 0.001M dichromate = 6x8x0.001g of oxygen
O=(6*8*M*v)/1000;//oxygen in 25mL sample (in g)
O=O*(1000/25);//oxygen in 1L sample (in g)
printf("COD of effluent sample is %.2f ppm.",O*1000);
|
1223ca9c8b460d17b72dc6916753a21a165adbf3 | a45f93853fdb67523e71e3e7fb88c4298eae1ef7 | /Screens/Connection Failed Bad Game Data Screen.tst | 2e00e2018120cda6c484830cdbfb582b5f6717ec | [] | no_license | voarsh/Disney-Treasure-Planet-Battle-at-Procyon | 68192cbfdf8b823bc8399e3ea1e62d4976b74aed | 99cbbc70701ef6e8f9d95eba1052635de992910f | refs/heads/master | 2020-04-16T01:44:03.761947 | 2016-06-08T10:25:05 | 2016-06-08T10:25:05 | 38,745,932 | 3 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,022 | tst | Connection Failed Bad Game Data Screen.tst | ScreenName String 'Connection Failed Bad Game Data Screen'
ImplName String 'Dialog Screen'
ElementChunkArray Int 6
ScreenElementType Int 0
ImplName String 'Front End Dialog Screen Backdrop'
TabIndex Int 1
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 67, 185, 562, 427 ) # left,top,right,bottom
ScreenElementType Int 1
ImplName String 'Open Dialog Previous Button'
TabIndex Int 2
Selectable Bool True
Enabled Bool True
ReferenceArea Rect( 321, 334, 468, 378 ) # left,top,right,bottom
Font String 'BlackChancery16'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_OK'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Center Justify Label'
TabIndex Int 7
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 4, 244, 800, 279 ) # left,top,right,bottom
Font String 'UniversLightBold14'
Text String 'IDGS_TPFRONTENDTEXT01_UNABLE_TO_JOIN_GAME'
Color Colour( 0.000000, 0.000000, 0.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Center Justify Label'
TabIndex Int 8
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 0, 236, 800, 284 ) # left,top,right,bottom
Font String 'UniversLightBold14'
Text String 'IDGS_TPFRONTENDTEXT01_UNABLE_TO_JOIN_GAME'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Center Justify Label'
TabIndex Int 9
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 4, 285, 800, 317 ) # left,top,right,bottom
Font String 'UniversLightBold14'
Text String 'IDGS_TPFRONTENDTEXT01_UNABLE_TO_JOIN_GAME_DATA_BAD'
Color Colour( 0.000000, 0.000000, 0.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Center Justify Label'
TabIndex Int 10
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 0, 280, 800, 317 ) # left,top,right,bottom
Font String 'UniversLightBold14'
Text String 'IDGS_TPFRONTENDTEXT01_UNABLE_TO_JOIN_GAME_DATA_BAD'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
|
76ecb99e388f88e01aff4bf08b2ba304ca7d5620 | 97135f725c599527ba0fd95a5289373c755daf3b | /Examples/test-suite/scilab/voidtest_runme.sci | 87011a48de86bc0367020f78be1d7a28c6d97129 | [] | no_license | maqalaqil/swag-c- | b8880cfc92424d5bbca1fe15ed98663a41063f27 | 6fd1ba2bf1d353f24c116a3c89a8540292b86a7d | refs/heads/master | 2020-07-06T21:02:08.949652 | 2019-09-01T07:56:55 | 2019-09-01T07:56:55 | 203,137,066 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 398 | sci | voidtest_runme.sci | exec("alaqiltest.start", -1);
globalfunc();
f = new_Foo();
Foo_memberfunc(f);
Foo_staticmemberfunc();
v1 = vfunc1(f);
checkequal(alaqil_this(v1), alaqil_this(f), "vfunc1(f) <> f");
v2 = vfunc2(f);
checkequal(alaqil_this(v2), alaqil_this(f), "vfunc2(f) <> f");
v3 = vfunc3(v1);
checkequal(alaqil_this(v3), alaqil_this(f), "vfunc3(f) <> f");
Foo_memberfunc(v3);
exec("alaqiltest.quit", -1);
|
416b26a35a67530dfd632a0ce7e73b8bbe67f693 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1697/CH7/EX7.4/Exa7_4.sce | 5c36424ba48a269290803fc234ce0e051bca0443 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 265 | sce | Exa7_4.sce | //Exa 7.4
clc;
clear;
close;
//given data :
f=3000;//in MHz
f=f*10^6;//in Hz
d=20;//in feet
d=20*0.3048;//in meter
c=3*10^8;//in m/s
lambda=c/f;//in meters
r=2*d^2/lambda;//in meters
disp(r,"Minimum distance between primary and secondary in meters : "); |
c97ef9a32705d81971693080127911e75df476ed | 449d555969bfd7befe906877abab098c6e63a0e8 | /689/CH17/EX17.3/3.sce | 40e274eec10a3e2bb4cf4e5ff9f2cc19ebfe6695 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 188 | sce | 3.sce | clc; funcprot(0);
//Example 17.2 Time to Climb Formula
//Variable Initialisation
h1 = 8000;
h2 = 13600;
//Calculation
H = h1^2/(2*h1-h2);
//Results
disp(H,"Ceiling (ft) : ");
|
dd71ae6c1d4b9c2a227c92d6662a29fd4f9ccddc | 29d8820a457f748f5bb162c5a84ce51437271a23 | /discrete-time-signals.sce | fbfac44fb9c5c255b291c599046a17f7120b7ac8 | [] | no_license | pscretn/scilab-dsp | eb79c9ce10292724dc731f8b160dfec515603f96 | ad35c46f6217866da2af8d9b9417a2ab22d71ff0 | refs/heads/master | 2023-02-26T23:22:21.969133 | 2020-11-29T17:25:20 | 2020-11-29T17:25:20 | 317,001,029 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 777 | sce | discrete-time-signals.sce | clc
clear
close
x=[0:1:9]
//discrete ramp//
subplot(3,2,1)
title("discrete ramp ")
plot2d3(x,x)
xlabel('time')
ylabel("amplitude")
//discrete step//
y=[ones(1,10)]
subplot(3,2,2)
plot2d3(x,y)
title("discrete step ")
xlabel('time')
ylabel("amplitude")
//discrete exponential//
subplot(3,2,3)
x=[0:0.1:1]
y=exp(x);
plot2d3(x,y)
title("discrete exponential ")
xlabel('time')
ylabel("amplitude")
//discrete sine//
subplot(3,2,4)
x=[-%pi:0.05:%pi]
y=sin(x);
plot2d3(x,y)
title("discrete sine ")
xlabel('time')
ylabel("amplitude")
//discrete impulse //
subplot(3,2,5)
plot2d3(0,5)
title("discrete impulse ")
xlabel('time')
ylabel("amplitude")
//discrete cosine//
subplot(3,2,6)
x=[-%pi:0.05:%pi]
y=cos(x);
plot2d3(x,y)
title("discrete cosine ")
xlabel('time')
ylabel("amplitude")
|
88c769bf17f805fb49b915bfa495b5bd2e451ee9 | 743902c2406b7976cc824458091bd276b916d47c | /test/ACATS/BD/BD8002A.TST | 00bb7726f05bec0d100aa0e5f9bc0c1144de567c | [
"LicenseRef-scancode-warranty-disclaimer"
] | no_license | OneWingedShark/Byron | f220d419bbe938ed9df588e0a1073f74bbcc03a2 | 18305e400be9a31d1b1e55a6da4d984c6a8926df | refs/heads/master | 2020-12-24T16:33:29.242045 | 2020-05-16T23:29:29 | 2020-05-16T23:29:29 | 41,644,524 | 55 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 3,665 | tst | BD8002A.TST | -- BD8002A.TST
-- Grant of Unlimited Rights
--
-- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
-- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained
-- unlimited rights in the software and documentation contained herein.
-- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making
-- this public release, the Government intends to confer upon all
-- recipients unlimited rights equal to those held by the Government.
-- These rights include rights to use, duplicate, release or disclose the
-- released technical data and computer software in whole or in part, in
-- any manner and for any purpose whatsoever, and to have or permit others
-- to do so.
--
-- DISCLAIMER
--
-- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
-- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED
-- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
-- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE
-- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
-- PARTICULAR PURPOSE OF SAID MATERIAL.
--*
-- OBJECTIVE:
-- IF MACHINE CODE INSERTIONS ARE SUPPORTED, CHECK THAT NEITHER
-- A USER-DEFINED RECORD TYPE NOR A TYPE DERIVED FROM A RECORD
-- TYPE IN 'MACHINE_CODE' CAN BE USED IN A CODE STATEMENT.
-- APPLICABILITY CRITERIA:
-- THIS TEST IS APPLICABLE ONLY TO IMPLEMENTATIONS THAT SUPPORT
-- MACHINE CODE INSERTIONS.
-- IF SUCH INSERTIONS ARE NOT SUPPORTED, THE "WITH MACHINE_CODE;"
-- CLAUSE MUST BE REJECTED.
-- MACRO SUBSTITUTION:
-- IF MACHINE CODE INSERTIONS ARE SUPPORTED THEN A RECORD TYPE NAME
-- DEFINED IN THE PACKAGE 'MACHINE_CODE' MUST BE SUBSTITUTED FOR
-- THE MACRO $RECORD_NAME AND A DISCRIMINANT PART, AS APPROPRIATE,
-- MUST BE SUBSTITUTED FOR THE MACRO $OPTIONAL_DISC. A RECORD TYPE
-- DEFINITION OF THAT RECORD MUST BE SUBSTITUTED FOR THE MACRO
-- $RECORD_DEFINITION. THE MACRO $MACHINE_CODE_STATEMENT MUST BE
-- REPLACED BY A VALID CODE STATEMENT WHICH CONTAINS THE NAME
-- DEFINED IN THE MACRO SUBSTITUTION FOR $RECORD_NAME.
-- IF MACHINE CODE INSERTIONS ARE NOT SUPPORTED, THEN SUBSTITUTE
-- THE ADA NULL STATEMENT (IE: NULL;) FOR $MACHINE_CODE_STATEMENT,
-- NO_SUCH_MACHINE_CODE_TYPE FOR $RECORD_NAME,
-- NO_SUCH_MACHINE_CODE_DISC FOR $OPTIONAL_DISC, AND A TYPE
-- DEFINITION OF A NULL RECORD FOR $RECORD_DEFINITION.
-- HISTORY:
-- DHH 08/26/88 CREATED ORIGINAL TEST.
-- RJW 03/28/90 ADDED MACRO $RECORD_NAME_FOLLOWED_BY_OPTIONAL_DISC.
-- THS 09/20/90 REWORDED HEADER AND REPLACED MACRO
-- $RECORD_NAME_FOLLOWED_BY_OPTIONAL_DISC WITH
-- A CATENATION OF $RECORD_NAME & $OPTIONAL_DISC.
WITH SYSTEM; USE SYSTEM;
WITH MACHINE_CODE; -- N/A => ERROR.
USE MACHINE_CODE;
PROCEDURE BD8002A IS
PROCEDURE M_CODE1 IS
TYPE $RECORD_NAME IS NEW
MACHINE_CODE.$RECORD_NAME;
PROCEDURE MACH_CODE IS
BEGIN
$MACHINE_CODE_STATEMENT -- ERROR:
END MACH_CODE;
BEGIN
NULL;
END M_CODE1;
PROCEDURE M_CODE2 IS
TYPE $RECORD_NAME$OPTIONAL_DISC IS
$RECORD_DEFINITION
PROCEDURE MACH_CODE IS
BEGIN
$MACHINE_CODE_STATEMENT -- ERROR:
END MACH_CODE;
BEGIN
NULL;
END M_CODE2;
BEGIN
NULL;
END BD8002A;
|
c25aabce792853518eefafae8982bb05761df3ae | 449d555969bfd7befe906877abab098c6e63a0e8 | /2096/CH1/EX1.59/ex_1_59.sce | 7e0fcbe0201e673d3f23b7ff487cc9d2b07ba1cd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 661 | sce | ex_1_59.sce | //Example 1.59://READING
clc;
clear;
q=[5.30,5.73,6.77,5.26,4.33,5.45,6.09,5.64,5.81,5.75];//length in mm
AM= mean(q);//arithematic mean in mm
for i= 1:10
qb(i)= q(i)-AM;
end
Q= [qb(1),qb(2),qb(3),qb(4),qb(5),qb(6),qb(7),qb(8),qb(9),qb(10)];//
AV=(-qb(1)-qb(2)+qb(3)+qb(4)-qb(5)-qb(6)+qb(7)+qb(8)-qb(9)+qb(10))/10;//
SD=stdev(Q);//standard deviation
for i=1:10
B(i)= (qb(i))/SD;//
disp(B(i))
end
V=SD^2;//variance
disp(AM,"arithematic mean in mm")
disp(SD,"standard deviation in mm")
disp("it is given that for 10 readings the ratio of deviation to standard deviation is not to exceed 1.96 and therefore reading no. 5 i.e. 4.33m should be rejected") |
1920b6b6ebaada7f317342bcf9f9f3cc06e8980f | 449d555969bfd7befe906877abab098c6e63a0e8 | /34/CH2/EX2.7/Ch2Exa7.sci | 72fd3607471e414c6fa1cd827bd757b64c49eece | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 624 | sci | Ch2Exa7.sci |
M= 4.9; //Linear attenuation coefficient for gamma ray in water, m^(-1)
I= 2.0; //Original intensity of gamma ray, MeV
//Part (a)
x= 10; //distance travelled under water, cm
x= x/100; //converting to m
Irel= %e^(-(M*x)); //Relative intensity
disp(Irel,"Relative intensity of the beam is: ")
//Result
// Relative intensity of the beam is:
// 0.6126264
//Part(b)
Ip= I/100; //Present intensity, 1 percent of Original, MeV
x2= log(I/Ip)/M; //distance travelled, m
disp(x2,"The distance travelled by the beam is: ")
//Result
// The distance travelled by the beam is:
// 0.9398307 |
834f186bca9ea14e84e67531c740029abeb91cab | 449d555969bfd7befe906877abab098c6e63a0e8 | /61/CH8/EX8.10/ex8_10.sce | a65a00a2b93c960755df73bbdf1ef13457ba7a67 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 461 | sce | ex8_10.sce | //ex8.10
V_DD=-15; //p=channel MOSFET
g_m=2000*10^-6; //minimum value from datasheets
R_D=10*10^3;
R_L=10*10^3;
R_S=4.7*10^3;
R_d=(R_D*R_L)/(R_D+R_L); //effective drain resistance
A_v=g_m*R_d;
R_in_source=1/g_m;
R_in=(R_in_source*R_S)/(R_in_source+R_S); //signal souce sees R_S in parallel with input resistance at source terminal(R_in_source)
disp(A_v,'minimum voltage gain')
disp(R_in,'Input resistance seen from signal source in ohms') |
6ac7987afa5a1eb2065eb2d3213ad89221044d8c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2375/CH10/EX10.13/ex10_13.sce | f00505456403afbda67109418fd214c2ce4a8268 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 667 | sce | ex10_13.sce | // Exa 10.13
clc;
clear;
close;
format('v',6)
// Given data
R1 = 20;// in k ohm
R1 = R1 * 10^3;// in ohm
R2 = 20;// in k ohm
R2 = R2 * 10^3;// in ohm
h_ie = 2;// in k ohm
h_ie = h_ie * 10^3;// in ohm
R_L = 1;// in k ohm
R_L = R_L * 10^3;// in ohm
R_E = 100;// in ohm
h_fe = 80;
A = (-h_fe*R_L)/h_ie;
disp(A,"The value of A is");
Beta = R_E/R_L;
disp(Beta,"The value of Beta is");
Rif = h_ie + (1+h_fe)*R_E;// in ohm
Rif = Rif * 10^-3;// in k ohm
disp(Rif,"The value of R_if in k ohm is");
Af = (-h_fe*R_L)/(Rif*10^3);
disp(Af,"The value of Af is");
AB = A*Beta;
AB= real(20*log10(AB));// in dß
disp(AB,"The value of loopgain in dß is");
|
adce9fb351e72779c45c9b94a4716dcc4978fa44 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.3/Unix-Windows/scilab-2.3/examples/link-examples/ext5c.sce | 7dbe0dbfb5a82ac1c8b990aebccd21f37e701aa8 | [
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain",
"MIT"
] | 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 | 194 | sce | ext5c.sce | host('make /tmp/ext5c.o');
link('/tmp/ext5c.o','ext5c','C');
// reading vector a in scilab internal stack
Amatrix=[1,2,3];b=[2,3,4];
c=fort('ext5c',b,1,'d','out',[1,3],2,'d');
c-(Amatrix+2*b)
|
f5b3ddd2c11e5af392e4786731f96474a0239a79 | 449d555969bfd7befe906877abab098c6e63a0e8 | /542/CH11/EX11.8/Example_11_8.sce | 24f7f12ebf87726ac0a06e41519f2e37efc28517 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,782 | sce | Example_11_8.sce | clear;
clc;
printf('Example 11.8'); //Example 11.8
// Find Number of theoretical plates needed and the position of entry for the feed by mccabe thiele method
F = 100; //Feed [kmol]
function[f]=Feed(x)
f(1)=x(1)+x(2)-100; //Overall mass Balance
f(2)=0.9*x(1)+.1*x(2)-(100*.4); //A balance on MVC,benzene
funcprot(0)
endfunction
x = [50 50];
product = fsolve(x,Feed);
//Using notation of figure 11.13
Ln = 3*product(1);
Vn = Ln + product(1);
//Reflux to the plate
Lm = Ln + F;
Vm = Lm - product(2);
//Equilibrium Data
y=[0 .127 .252 .379 .498 .594 .708 .818 .9 1];
x=[0 .048 .12 .208 .298 .382 .492 .644 .79 1];
//Diagnol Line
y3 = [0 1];
x3 = [0 1];
//Top Equilibrium Line equation 11.35
x1 = linspace(0,.985,100);
y1 = (Ln/Vn)*x1 + (product(1)/Vn);
//Equilibrium Line equation 11.37
x2 = linspace(0.048,.44,100);
y2 = (Lm/Vm)*x2 - (product(2)/Vm)*.1;
clf();
//Setting initial point A x = .985 at top eqm line
xm = [.985 .965 .965 .92 .92 .825 .825 .655 .655 .44 .44 .255 .255 .125 .125 .048];
ym = [.985 .985 .965 .965 .92 .92 .825 .825 .655 .655 .44 .44 .255 .255 .125 .125];
xp = [.985 .965 .92 .825 .655 .44 .255 .125 .048];
yp = [.985 .965 .92 .825 .655 .44 .255 .125 .048];
plot(x,y,x3,y3,x1,y1,x2,y2,xm,ym);
xtitle("Mccabe Thiele Method", "Mole fraction of C6H6 in Liwuid (x)", "Mole Fraction C6H6 in Vapor (y)");
legend ("Equilirium Plot", "Diagnol Line","Top Eqm Line", "Bottom Eqm Line",5);
xset('window',1);
for(i=2:8)
plot(xp(i),yp(i),"o-");
xtitle("Equilibrium plot","mole fraction C6H6 in liquid(x)","mole fractionC6H6 in vapour(y)");
end
printf("\n\n The Number of stages are then counted highlighted points that is number of plates required as 7");
//END |
9fcd51fa1f3c9e19f9a5ec186d694899666f7c8c | c90039f74887835096a93884110d643c4823e530 | /doc/oficial/dados para treinamento RNA/RNA_ANALISE_TECNICA/Indicador/Sinal/RNA_SINAL.sce | ef788ee9e14e5363d4894e373a9d47b4e2a28cdc | [] | no_license | igorlima/CellInvest | da991366b329b5d8021e9b949d7b726023489ec8 | c5411247e504b8a8d0ad77d32d41bbd2aee39930 | refs/heads/master | 2020-04-06T03:40:05.614164 | 2012-10-23T12:58:20 | 2012-10-23T12:58:20 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 607 | sce | RNA_SINAL.sce | path_rna_sinal = get_absolute_file_path('RNA_SINAL.sce');
exec( path_rna_sinal+"\HISTOGRAMA\RNA_HISTOGRAMA.sce" );
exec( path_rna_sinal+"\MACD\RNA_MACD.sce" );
N_SINAL = getN( path_rna_sinal + "\N_SINAL.txt" );
W_SINAL = getW( path_rna_sinal, "SINAL" );
function saida_da_rna = rna_sinal( macdLine, macdSinal, alphaMacdLine, alphaMacdSinal, alphaHIST )
valorMACD = [rna_MACD( macdLine, macdSinal, alphaMacdLine, alphaMacdSinal )];
valorHISTOGRAMA = [rna_HISTOGRAMA( alphaHIST )];
valorSINAL = [valorMACD;valorHISTOGRAMA];
saida_da_rna = ann_FF_run( [valorSINAL], N_SINAL, W_SINAL );
endfunction
|
3c41cdd027e309b71237d7e3595e6c9538f46ec4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1427/CH1/EX1.5/1_5.sce | af2edcb74d8ab2656a371c77e46c6c0cfaefc5ac | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 532 | sce | 1_5.sce | //ques-1.5
//Calculating amount of lime required
clc
A=25;//content of Calcium carbonate in water (in ppm)
B=144;//content of Magnesium carbonate in water (in ppm)
C=95;//content of Magnesium chloride in water (in ppm)
V=50000;//volume of water given (in L)
a1=(A/100)*100;//CaCO3 equivalent of A (in ppm)
a2=(B/84)*100;//CaCO3 equivalent of B (in ppm)
a3=(C/95)*100;//CaCO3 equivalent of C (in ppm)
lime=(a1+2*a2+a3)*V*(74/100);//lime requirement (in mg)
printf("Lime required for softening is %.3f kg.",lime/1000000);
|
c20064d371df8d4799c72db572f29e9c6155f705 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3636/CH11/EX11.6/Ex11_6.sce | 5276ef8b143835e0f3ac7576ce9af6a2b487d8c8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 240 | sce | Ex11_6.sce | clear;
clc;
Beff=250 //effective gain
B1=25 //current gain of transistor
B2=8.65 //effective gain of Darlington-pair
iB=50*10^-3 //in A
//Calculation
iC2=iB*(Beff-B1)
iE2=(1+(1/B2))*iC2
mprintf("Emitter current= %2.2f A",iE2)
|
af2e018ae7017ec223d03bcd5476bec5eece0ae5 | 527c41bcbfe7e4743e0e8897b058eaaf206558c7 | /Positive_Negative_test/Netezza-Base-InverseCumulativeDistribuionFunctions/FLInvCDFGamma-Netezza-01.tst | d6b2ef23caeeff6b03e825446b1fc861fe3439c9 | [] | no_license | kamleshm/intern_fuzzy | c2dd079bf08bede6bca79af898036d7a538ab4e2 | aaef3c9dc9edf3759ef0b981597746d411d05d34 | refs/heads/master | 2021-01-23T06:25:46.162332 | 2017-07-12T07:12:25 | 2017-07-12T07:12:25 | 93,021,923 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,284 | tst | FLInvCDFGamma-Netezza-01.tst |
-- Fuzzy Logix, LLC: Functional Testing Script for DB Lytix functions on Netezza
--
-- Copyright (c): 2014 Fuzzy Logix, LLC
--
-- NOTICE: All information contained herein is, and remains the property of Fuzzy Logix, LLC.
-- The intellectual and technical concepts contained herein are proprietary to Fuzzy Logix, LLC.
-- and may be covered by U.S. and Foreign Patents, patents in process, and are protected by trade
-- secret or copyright law. Dissemination of this information or reproduction of this material is
-- strictly forbidden unless prior written permission is obtained from Fuzzy Logix, LLC.
--
--
-- Functional Test Specifications:
--
-- Test Category: Inverse Cumulative Distribution Function
--
-- Test Unit Number: FLInvCDFGamma-Netezza-01
--
-- Name(s): FLInvCDFGamma
--
-- Description: Scalar function which returns the inverse of the Gamma cumulative distribution
--
-- Applications:
--
-- Signature: FLInvCDFGamma(param A, param B, param C, CDF)
--
-- Parameters: See Documentation
--
-- Return value: Double Precision
--
-- Last Updated: 11-18-2014
--
-- Author: Surya Deepak Garimella
--
-- BEGIN: TEST SCRIPT
--.run file=../PulsarLogOn.sql
-- BEGIN: POSITIVE TEST(s)
-- Test with normal and extreme scale factor values
-- Test case 1a:
SELECT 0.25 AS CValue,
FLInvCDFGamma( 0.0, 1.0, 2.0, 0.25) AS FLInvCDFGamma;
-- Test case 1b:
SELECT 0.25 AS CValue,
FLInvCDFGamma( 0.0, 1e300, 2.0, 0.25) AS FLInvCDFGamma;
-- Expected failure due to Netezza system limitation above 1e308
-- Test case 1c:
SELECT 0.25 AS CValue,
FLInvCDFGamma( 0.0, 1e310, 2.0, 0.25) AS FLInvCDFGamma;
-- END: POSITIVE TEST(s)
-- BEGIN: NEGATIVE TEST(s)
-- Category 1: Out of boundary condition test cases
-- Case 1a: P < 0.0
SELECT 0.25 AS Prob,
FLInvCDFGamma( 0.0, 1.0, 2.0, -0.25) FLInvCDFGamma;
-- Case 1b: P == 1.0
SELECT 0.25 AS Prob,
FLInvCDFGamma( 0.0, 1.0, 2.0, 1.0) FLInvCDFGamma;
-- Case 1c: P > 1.0
SELECT 0.25 AS Prob,
FLInvCDFGamma( 0.0, 1.0, 2.0, 2.0) FLInvCDFGamma;
-- Case 1d: Scale < 0.0
SELECT 0.25 AS Prob,
FLInvCDFGamma( 0.0, -0.1, 2.0, 0.25) FLInvCDFGamma;
-- Case 1e: Scale == 0.0
SELECT 0.25 AS Prob,
FLInvCDFGamma( 0.0, 0.0, 2.0, 0.25) FLInvCDFGamma;
-- Case 1f: Shape < 0.0
SELECT 0.25 AS Prob,
FLInvCDFGamma( 0.0, 0.0, -2.0, 0.25) FLInvCDFGamma;
-- Case 1g: Shape == 0.0
SELECT 0.25 AS Prob,
FLInvCDFGamma( 0.0, 1.0, 0.0, 0.25) FLInvCDFGamma;
-- Case 1h: Shape > 100.0
SELECT 0.25 AS Prob,
FLInvCDFGamma( 0.0, 1.0, 102.0, 0.25) FLInvCDFGamma;
-- Category 2: Undefined results or error conditions due to equality
-- Case 2a,2b:
-- Not Applicable
-- Category 3: Data type mismatch conditions -
-- Test with most likely mismatched data type for the function which is
-- usually data types within the parameter list
--
-- Not applicable - all parameters are double precision
-- Category 4: Test function with non-matching # of parameters
-- Case 4a: Fewer than expected # of parameters
SELECT 0.25 AS Prob,
FLInvCDFGamma(0.25, 0.0, 1.0) FLInvCDFGamma;
-- Case 4b: More than expected # of parameters
SELECT 0.25 AS Prob,
FLInvCDFGamma(0.25, 0.0, 0.0, 1.0, 2.0) FLInvCDFGamma;
-- END: NEGATIVE TEST(s)
-- END: TEST SCRIPT
|
f9a3954ec430085953aa0dd266a024b0d72371b0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2381/CH5/EX5.1/ex_1.sce | 2974635e84f4d3fc16cb37a3b2fd95447398374b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 152 | sce | ex_1.sce | //Example 1 // wavelength
clc;
clear;
close;
//given data :
v=960;// in m/s
n=3600/60;// in per sec
lamda=v/n;
disp(lamda,"The wavelength,lamda(m) = ")
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.